diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 2cde425..7164f3c 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -1,4 +1,4 @@ -name: Build wheels +name: Download, extract, build, and test wheels on: pull_request: @@ -10,19 +10,14 @@ on: jobs: build-wheels: - name: Build wheels + name: Download, extract, build, and wheels runs-on: ${{ matrix.os }} timeout-minutes: 5 strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest] - python-version: [3.9, 3.11, 3.13] - exclude: - - os: windows-latest - python-version: 3.9 - - os: windows-latest - python-version: 3.13 + os: [ubuntu-latest, windows-latest, ubuntu-24.04-arm] + python-version: [3.13] steps: - uses: actions/checkout@v4 @@ -39,15 +34,21 @@ jobs: - name: Install the project run: uv sync + + - name: Download and extract the mscl assets + run: | + uv run download_and_extract_assets.py - - name: Build the wheel - run: uv build --wheel + - name: Build the wheels + run: | + uv run run_build.py - - name: Initialize test environment + # There should be only one wheel so it should work: + - name: Initialize test environment and install wheel run: | uv init --no-workspace test cd test - uv add ../dist/*.whl + uv add "$(python -c 'import glob; print(glob.glob("../dist/*.whl")[0])')" - name: Verify installation run: uv run -- python -c "from python_mscl import mscl" \ No newline at end of file diff --git a/.gitignore b/.gitignore index 9a53a9e..dd5971d 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,7 @@ wheels/ # Exclude local .deb and .zip files from mscl: mscl_release_assets/*.zip mscl_release_assets/*.deb +mscl_release_assets/ # VSCode: .vscode/ @@ -22,3 +23,4 @@ mscl_release_assets/*.deb # Exclude build downloaded mscl files: src/python_mscl/mscl.py src/python_mscl/_mscl.so +src/python_mscl/mscl.pyd diff --git a/README.md b/README.md index 1d3d5d4..92cc8cb 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,9 @@ Unofficial Python package for the [Microstrain Communication Library](https://github.com/LORD-MicroStrain/MSCL/tree/master). -This library just makes it so that we can install the MSCL library using pip. Wheels are not provided. This will fetch the necessary files for your architecture and python -version, and then build the wheel for you. +This library just makes it so that we can install the MSCL library using pip, and directly provides the wheels! -It is therefore recommended to use a cache for your CI or package manager, unless you're okay with the ~20MB download every time you run your CI. +Only Python 3.x wheels are provided. If you need Python 2.x wheels, please open an issue. ### Installation @@ -21,11 +20,6 @@ from python_mscl import mscl # ... use the MSCL library as you normally would ``` -### Windows support: - -The latest mscl version (v67.0.0) only has a .zip for python 3.11. It has been confirmed that it does not work on other python versions (You would get an import error). However the build itself would still go through. - - ### Versioning system: This repository follows the same versioning system as the MSCL library. This is reflected in the tags of this repository. @@ -44,13 +38,17 @@ The below steps assume you have [`uv`](https://docs.astral.sh/uv/) installed. 1. Clone the repo and `cd` into it. 2. Optional: Create a .env file and insert your GITHUB_TOKEN= to make requests to the GitHub API. -3. Edit & run `uv run main.py` to fetch the latest tagged MSCL releases and extract them. -4. Run `uv build`, which will build the source distribution and wheel for your python -version and architecture. +3. Edit & run `uv run download_and_extract_assets.py` to fetch the latest tagged MSCL releases and extract them. +4. Run `uv run run_build.py`, which will build the source distribution and wheel for your python +version and architecture. The wheels will be placed in the `dist/` directory. Notes for me, the maintainer: -5. Optional: Run `uv publish` to publish the package to PyPI. To upload to TestPyPI, uncomment lines in `pyproject.toml`, and run `uv publish --index testpypi dist/*.tar.gz`. -6. Optional: To check if the package worked correctly: `uv add --index https://test.pypi.org/simple/ --index-strategy unsafe-best-match python-mscl` in a new uv project directory. +5. Make sure that the constants in `constants.py` are updated, and that the MSCL repo still follows their +versioning system. If not, update rest of the files accordingly. + +6. Optional: Run `uv publish` to publish the package to PyPI. To upload to TestPyPI, uncomment lines in `pyproject.toml`, and run `uv publish --index testpypi dist/*.whl`. + +7. Optional: To check if the package worked correctly: `uv add --index https://test.pypi.org/simple/ --index-strategy unsafe-best-match python-mscl` in a new uv project directory. ## Issues: diff --git a/build_helpers/release_downloader.py b/build_helpers/release_downloader.py index 9118bb7..a705f77 100644 --- a/build_helpers/release_downloader.py +++ b/build_helpers/release_downloader.py @@ -8,6 +8,8 @@ from github.GitRelease import GitRelease from github.GitReleaseAsset import GitReleaseAsset +from constants import ASSET_DIRECTORY, ReleaseAsset + class GithubDownloader: """Manages downloading the Github release assets for the mscl library, along with the @@ -18,6 +20,7 @@ def __init__(self): self.mscl_repo = "LORD-MicroStrain/MSCL" self.python_mscl_repo = "harshil21/python-mscl" self.latest_release = None + self.asset_dir = Path(ASSET_DIRECTORY) def get_latest_release(self) -> GitRelease: """Returns the latest stable release for the given repo.""" @@ -33,13 +36,19 @@ def get_latest_release(self) -> GitRelease: break return self.latest_release - def download_release_assets(self, output_dir: str): - """Downloads the release assets for the given repo and tag.""" + def download_release_assets(self, only_release: ReleaseAsset | None = None) -> None: + """Downloads the release assets from the MSCL repository. + + Args: + only_release: If set, only download the release asset for the given Python version and + architecture. If not set, download all the release assets. + """ release = self.get_latest_release() - output_path = Path(output_dir) + output_path = Path(self.asset_dir) output_path.mkdir(parents=True, exist_ok=True) asset: GitReleaseAsset + print(f"Downloading release assets for {only_release=}") for asset in release.get_assets(): # Don't download the "Documentation" or "Examples" if "Documentation" in asset.name or "Examples" in asset.name: @@ -51,22 +60,17 @@ def download_release_assets(self, output_dir: str): if "3" not in asset.name: continue + # Extract the python version, arch, and platform from the only_release, if set: + if only_release: + if only_release.python_version not in asset.name: + continue + if only_release.arch not in asset.name: + continue + self.download_asset(output_path, asset) + print(f"Downloaded {asset.name}") def download_asset(self, output_path: Path, asset: GitReleaseAsset) -> None: response = requests.get(asset.browser_download_url, timeout=15) asset_path = output_path / asset.name asset_path.write_bytes(response.content) - - def download_assets_from_folder(self, tag: str, folder_name: str) -> None: - """Downloads all the files under the `folder_name` for the given tag, from the - root of the repository.""" - - repo = self.github.get_repo(self.python_mscl_repo) - contents = repo.get_contents(folder_name, ref=tag) - - for content in contents: - if content.type == "file": - response = requests.get(content.download_url, timeout=15) - file_path = Path(content.name) - file_path.write_bytes(response.content) diff --git a/build_helpers/release_extractor.py b/build_helpers/release_extractor.py index e1ffbec..9741a84 100644 --- a/build_helpers/release_extractor.py +++ b/build_helpers/release_extractor.py @@ -1,17 +1,19 @@ """Extracts the .deb and .zip releases for the mscl library.""" import os +import shutil import subprocess from pathlib import Path +from zipfile import ZipFile + +from constants import ASSET_DIRECTORY, MSCL_VERSION -MSCL_VERSION = "v67.0.0" -"""The mscl version to extract.""" class ReleaseExtractor: """Will extract the .deb and .zip releases for the mscl library.""" def __init__(self): - self.asset_dir = Path("mscl_release_assets") + self.asset_dir = Path(ASSET_DIRECTORY) def extract_assets(self): """Extracts the .deb and .zip releases into the same directory.""" @@ -77,18 +79,19 @@ def extract_zip(self, file: Path) -> None: # Create a directory to extract the .zip file. Syntax: mscl--- parts = file.stem.split("_") arch, py_ver = parts[2], parts[3] - mscl_versioned_name = f"mscl-Windows-{arch}-{py_ver}-{MSCL_VERSION}" + mscl_versioned_name = f"mscl-Windows_{arch}-{py_ver}-{MSCL_VERSION}" mscl_versioned_dir = cwd / self.asset_dir / mscl_versioned_name # If output directory exists, remove it: if mscl_versioned_dir.exists(): - os.system(f"rm -rf {mscl_versioned_dir}") + shutil.rmtree(mscl_versioned_dir) mscl_versioned_dir.mkdir(parents=True, exist_ok=True) - file_relative = file.absolute().relative_to(mscl_versioned_dir, walk_up=True) # Extract the .zip file - subprocess.run(["unzip", str(file_relative)], cwd=mscl_versioned_dir, check=True) # noqa: S603, S607 + with ZipFile(file, "r") as zip_ref: + zip_ref.extractall(mscl_versioned_dir) + print("Extracted the zip file.") found_mscl_py = list(mscl_versioned_dir.rglob("mscl.py")) found_mscl_pyd = list(mscl_versioned_dir.rglob("_mscl.pyd")) @@ -106,8 +109,18 @@ def extract_zip(self, file: Path) -> None: # Delete the remaining files in mscl_versioned_dir: for f in mscl_versioned_dir.iterdir(): if f.stem in (mscl_py.stem, mscl_pyd.stem): + print(f"Skipping deletion of {f}") continue if f.is_dir(): - os.system(f"rm -rf {f}") + print(f"Deleting the directory {f}") + shutil.rmtree(f) else: + print(f"Deleting {f}") f.unlink() + + # Confirm that the files still exist after deleting the rest: + found_mscl_py = list(mscl_versioned_dir.rglob("mscl.py")) + found_mscl_pyd = list(mscl_versioned_dir.rglob("_mscl.pyd")) + + if not found_mscl_py or not found_mscl_pyd: + raise FileNotFoundError(f"Deleted mscl.py or _mscl.pyd in {mscl_versioned_dir}!") diff --git a/constants.py b/constants.py new file mode 100644 index 0000000..328f05a --- /dev/null +++ b/constants.py @@ -0,0 +1,38 @@ +"""File to store common constants used in the project.""" + +from pathlib import Path +from typing import NamedTuple + + +# Named tuple to store the release asset information: +class ReleaseAsset(NamedTuple): + """Named tuple to store the release asset information. + + Args: + python_version: The Python version of the release asset. E.g. "Python3.9". + arch: The architecture of the release asset. E.g. "amd64". + """ + + python_version: str + arch: str + + +ASSET_DIRECTORY = Path("mscl_release_assets") +"""The directory to store the downloaded release assets.""" + + +# Keep this the same as the one in `hatch_build.py`! +MSCL_VERSION = "v67.0.1" +"""The mscl version to extract from the `ASSET_DIRECTORY`. The +downloader will download the latest version despite this version number.""" + + +MACHINE_MAPPING_TO_ARCH = { + # Linux: + "x86_64": "amd64", + "aarch64": "arm64", + "armv7l": "armhf", + # Windows: + "AMD64": "Windows_x64", + "x86": "Windows_x86", +} diff --git a/download_and_extract_assets.py b/download_and_extract_assets.py new file mode 100644 index 0000000..f336f40 --- /dev/null +++ b/download_and_extract_assets.py @@ -0,0 +1,41 @@ +"""Entry point for downloading and extracting mscl release assets.""" + +import os +import platform +import sys + +from build_helpers.release_downloader import GithubDownloader, ReleaseAsset +from build_helpers.release_extractor import ReleaseExtractor +from constants import MACHINE_MAPPING_TO_ARCH + + +def main(github_actions: bool = False) -> None: + """Entry point to fetch the latest release assets from the Github repository & extract them. + + :param github_actions: If the script is running in a Github Actions environment. If true, + the script will download and extract the release asset of only the python version and + architecture and OS type detected. + """ + gh = GithubDownloader() + if github_actions: + print(f"Downloading on {sys.version_info=}, {platform.machine()=}") + gh.download_release_assets( + ReleaseAsset( + python_version=f"Python{sys.version_info.major}.{sys.version_info.minor}", + arch=MACHINE_MAPPING_TO_ARCH.get(platform.machine()), + ) + ) + else: + gh.download_release_assets() + + re = ReleaseExtractor() + re.extract_assets() + + +if __name__ == "__main__": + if os.getenv("GITHUB_ACTIONS", "false") == "true": + print("Running in Github Actions environment.") + main(github_actions=True) + else: + print("Running locally") + main() diff --git a/hatch_build.py b/hatch_build.py index d1f95e1..bd574e5 100644 --- a/hatch_build.py +++ b/hatch_build.py @@ -1,32 +1,67 @@ """Specifies a hatch build hook to create the wheel for mscl.""" -import platform +import os import shutil -import sys from pathlib import Path - -sys.path.insert(0, str(Path(__file__).parent)) +from typing import ClassVar from hatchling.builders.hooks.plugin.interface import BuildHookInterface -from build_helpers.release_downloader import GithubDownloader +# This is specified here instead of in the constants since we get import errors: +MSCL_VERSION = "v67.0.1" +"""The mscl version to build the wheels from.""" + +BUILD_ARCH = os.getenv("BUILD_ARCH", "false") +"""The build architecture to use for the wheels. This determines the tag for the wheel. + +This will be the arch in folder name (e.g., amd64, arm64, armhf, Windows-x64, Windows-x86). +""" + +PYTHON_BUILD_VERSION = os.getenv("PYTHON_BUILD_VERSION", "false") +"""The Python build version to use for the wheels. This determines the tag for the wheel. -MSCL_VERSION = "v67.0.0" -"""The mscl version to build the wheels of.""" +This will be the python version in folder name (e.g., Python3.9, Python3.11, etc). +""" class CustomBuildHook(BuildHookInterface): """Build hook to build wheels from the extracted .deb/.zip files.""" - def _python_tag(self) -> str: + PYTHON_VER_MAPPING: ClassVar[dict[str, str]] = { + "Python3.9": "cp39", + "Python3.10": "cp310", + "Python3.11": "cp311", + "Python3.12": "cp312", + "Python3.13": "cp313", + } + """The mapping of Python versions of the folder to the Python tags for the wheel.""" + + PYTHON_BUILD_MAPPING: ClassVar[dict[str, str]] = { + "amd64": "manylinux2014_x86_64", + "arm64": "manylinux2014_aarch64", + "armhf": "manylinux2014_armv7l", + "Windows_x64": "win_amd64", + "Windows_x86": "win32", + } + """The mapping of architectures (in the folder name) to the platform tags for the wheel.""" + + def _python_tag(self) -> str | None: """Generate the Python tag (e.g., py39 for Python 3.9).""" - major = sys.version_info.major - minor = sys.version_info.minor - return f"cp{major}{minor}" + try: + return self.PYTHON_VER_MAPPING.get(PYTHON_BUILD_VERSION) + except KeyError as e: + raise RuntimeError(f"Unknown Python version: {PYTHON_BUILD_VERSION}") from e - def _platform_tag(self) -> str: + def _platform_tag(self) -> str | None: """Generate the platform tag (e.g., linux_x86_64).""" - return platform.system().lower() + "_" + platform.machine() + try: + return self.PYTHON_BUILD_MAPPING.get(BUILD_ARCH) + except KeyError as e: + raise RuntimeError(f"Unknown platform: {BUILD_ARCH}") from e + + def _make_tag(self) -> str: + """Generate the tag for the wheel (e.g., py39-linux_x86_64).""" + return f"{self._python_tag()}-{self._python_tag()}-{self._platform_tag()}" def initialize(self, version, build_data): """ @@ -34,76 +69,37 @@ def initialize(self, version, build_data): We can download & extract the .deb here, and place mscl.py and _mscl.so into src/mscl_pip/. """ - if self.target_name != "wheel": + # Don't run build hook when a user is installing the wheel: + if PYTHON_BUILD_VERSION == "false" and BUILD_ARCH == "false": return build_data["pure_python"] = False - self.app.display_info(f"Running on {version=} and {build_data=}") - self.app.display_info(self.target_name) + self.app.display_info( + f"Running on {version=} on {build_data=}, with " + f"{PYTHON_BUILD_VERSION=} and {BUILD_ARCH=}" + ) # --- STEP 1: Determine which python version and arch we are on: --- - # a) Python version: - # syntax: Python. - - py_version = f"Python{sys.version_info.major}.{sys.version_info.minor}" - - # b) Architecture: - # possible values: amd64, arm64, armhf. - - arch = platform.machine() - if arch == "x86_64": - mscl_arch = "amd64" - elif arch == "aarch64": - mscl_arch = "arm64" - elif arch == "armv7l": - mscl_arch = "armhf" - elif arch == "AMD64": # Windows - mscl_arch = "x64" - elif arch == "x86": # Windows - mscl_arch = "x86" - else: - raise RuntimeError(f"Unknown architecture: {arch}") + # Build the folder name based on the python version and arch in the environment variables. - # --- STEP 2: Download the 2 mscl files (mscl.py and _mscl.so) from the git repo: --- - # Folder name: mscl--- -> Linux - # Folder name: mscl-Windows--- -> Windows + folder_name = f"mscl-{BUILD_ARCH}-{PYTHON_BUILD_VERSION}-{MSCL_VERSION}" - # a) Create the folder name: - - if platform.system() == "Linux": - build_data["tag"] = f"{self._python_tag()}-{self._python_tag()}-{self._platform_tag()}" - folder_name = f"mscl-{mscl_arch}-{py_version}-{MSCL_VERSION}" - - # Windows is best effort matching since there's only python 3.11 available for v67.0.0: - else: - if mscl_arch == "x64": - build_data["tag"] = "py3-none-win_amd64" - elif mscl_arch == "x86": - build_data["tag"] = "py3-none-win32" - folder_name = f"mscl-Windows-{mscl_arch}-Python3.11-{MSCL_VERSION}" - - # b) Use PyGithub to download the files from the folder: - self.app.display_waiting(f"Downloading files for {folder_name}...") - - gh = GithubDownloader() - gh.download_assets_from_folder( - tag=MSCL_VERSION, - folder_name=f"mscl_release_assets/{folder_name}", - ) - - self.app.display_success("Downloaded files successfully.") + build_data["tag"] = self._make_tag() # --- STEP 3: Copy the files ("_mscl.so" & "mscl.py") to the src/mscl/ directory: --- # Move from root (i.e. cwd) to src/mscl - # Use shutil.move() to move the files. self.remove_existing_files(Path("src/python_mscl/"), ["_mscl.so", "_mscl.pyd", "mscl.py"]) - shutil.move("mscl.py", "src/python_mscl/") - if platform.system() == "Windows": - shutil.move("_mscl.pyd", "src/python_mscl/") + + # Copy files from mscl_release_assets/folder_name to src/mscl/: + p = (Path("mscl_release_assets") / folder_name).absolute() + + shutil.copy(p / "mscl.py", "src/python_mscl/") + if BUILD_ARCH.startswith("Windows"): # Windows uses _mscl.pyd + shutil.copy(p / "_mscl.pyd", "src/python_mscl/") build_data["artifacts"] = ["_mscl.pyd", "mscl.py"] else: - shutil.move("_mscl.so", "src/python_mscl/") + shutil.copy(p / "_mscl.so", "src/python_mscl/") build_data["artifacts"] = ["_mscl.so", "mscl.py"] self.app.display_success("Moved files to src/python_mscl/ successfully. Building wheel...") diff --git a/main.py b/main.py deleted file mode 100644 index 2593e1d..0000000 --- a/main.py +++ /dev/null @@ -1,16 +0,0 @@ -"""Entry point for scripts.""" - -# from build_helpers.release_downloader import GithubDownloader -# from build_helpers.release_extractor import ReleaseExtractor - - -def main(): - """Entry point to fetch the latest release assets from the Github repository & extract them.""" - # gh = GithubDownloader() - # gh.download_release_assets("mscl_release_assets") - # re = ReleaseExtractor() - # re.extract_assets() - - -if __name__ == "__main__": - main() diff --git a/mscl_release_assets/mscl-Windows-x64-Python3.11-v67.0.0/_mscl.pyd b/mscl_release_assets/mscl-Windows-x64-Python3.11-v67.0.0/_mscl.pyd deleted file mode 100644 index 6f13704..0000000 Binary files a/mscl_release_assets/mscl-Windows-x64-Python3.11-v67.0.0/_mscl.pyd and /dev/null differ diff --git a/mscl_release_assets/mscl-Windows-x64-Python3.11-v67.0.0/mscl.py b/mscl_release_assets/mscl-Windows-x64-Python3.11-v67.0.0/mscl.py deleted file mode 100644 index da4681b..0000000 --- a/mscl_release_assets/mscl-Windows-x64-Python3.11-v67.0.0/mscl.py +++ /dev/null @@ -1,18521 +0,0 @@ -# This file was automatically generated by SWIG (http://www.swig.org). -# Version 4.0.2 -# -# Do not make changes to this file unless you know what you are doing--modify -# the SWIG interface file instead. - -from sys import version_info as _swig_python_version_info -if _swig_python_version_info < (2, 7, 0): - raise RuntimeError("Python 2.7 or later required") - -# Import the low-level C/C++ module -if __package__ or "." in __name__: - from . import _mscl -else: - import _mscl - -try: - import builtins as __builtin__ -except ImportError: - import __builtin__ - -def _swig_repr(self): - try: - strthis = "proxy of " + self.this.__repr__() - except __builtin__.Exception: - strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - - -def _swig_setattr_nondynamic_instance_variable(set): - def set_instance_attr(self, name, value): - if name == "thisown": - self.this.own(value) - elif name == "this": - set(self, name, value) - elif hasattr(self, name) and isinstance(getattr(type(self), name), property): - set(self, name, value) - else: - raise AttributeError("You cannot add instance attributes to %s" % self) - return set_instance_attr - - -def _swig_setattr_nondynamic_class_variable(set): - def set_class_attr(cls, name, value): - if hasattr(cls, name) and not isinstance(getattr(cls, name), property): - set(cls, name, value) - else: - raise AttributeError("You cannot add class attributes to %s" % cls) - return set_class_attr - - -def _swig_add_metaclass(metaclass): - """Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass""" - def wrapper(cls): - return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy()) - return wrapper - - -class _SwigNonDynamicMeta(type): - """Meta class to enforce nondynamic attributes (no new attributes) for a class""" - __setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__) - - -class SwigPyIterator(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_SwigPyIterator - - def value(self): - return _mscl.SwigPyIterator_value(self) - - def incr(self, n=1): - return _mscl.SwigPyIterator_incr(self, n) - - def decr(self, n=1): - return _mscl.SwigPyIterator_decr(self, n) - - def distance(self, x): - return _mscl.SwigPyIterator_distance(self, x) - - def equal(self, x): - return _mscl.SwigPyIterator_equal(self, x) - - def copy(self): - return _mscl.SwigPyIterator_copy(self) - - def next(self): - return _mscl.SwigPyIterator_next(self) - - def __next__(self): - return _mscl.SwigPyIterator___next__(self) - - def previous(self): - return _mscl.SwigPyIterator_previous(self) - - def advance(self, n): - return _mscl.SwigPyIterator_advance(self, n) - - def __eq__(self, x): - return _mscl.SwigPyIterator___eq__(self, x) - - def __ne__(self, x): - return _mscl.SwigPyIterator___ne__(self, x) - - def __iadd__(self, n): - return _mscl.SwigPyIterator___iadd__(self, n) - - def __isub__(self, n): - return _mscl.SwigPyIterator___isub__(self, n) - - def __add__(self, n): - return _mscl.SwigPyIterator___add__(self, n) - - def __sub__(self, *args): - return _mscl.SwigPyIterator___sub__(self, *args) - def __iter__(self): - return self - -# Register SwigPyIterator in _mscl: -_mscl.SwigPyIterator_swigregister(SwigPyIterator) - -SHARED_PTR_DISOWN = _mscl.SHARED_PTR_DISOWN -valueType_float = _mscl.valueType_float -valueType_double = _mscl.valueType_double -valueType_uint8 = _mscl.valueType_uint8 -valueType_uint16 = _mscl.valueType_uint16 -valueType_uint32 = _mscl.valueType_uint32 -valueType_int16 = _mscl.valueType_int16 -valueType_int32 = _mscl.valueType_int32 -valueType_bool = _mscl.valueType_bool -valueType_Vector = _mscl.valueType_Vector -valueType_Matrix = _mscl.valueType_Matrix -valueType_Timestamp = _mscl.valueType_Timestamp -valueType_string = _mscl.valueType_string -valueType_Bytes = _mscl.valueType_Bytes -valueType_StructuralHealth = _mscl.valueType_StructuralHealth -valueType_RfSweep = _mscl.valueType_RfSweep -valueType_ChannelMask = _mscl.valueType_ChannelMask -valueType_int8 = _mscl.valueType_int8 -valueType_uint64 = _mscl.valueType_uint64 -deviceState_idle = _mscl.deviceState_idle -deviceState_sleep = _mscl.deviceState_sleep -deviceState_sampling = _mscl.deviceState_sampling -deviceState_sampling_lostBeacon = _mscl.deviceState_sampling_lostBeacon -deviceState_sampling_inactive = _mscl.deviceState_sampling_inactive -deviceState_unknown = _mscl.deviceState_unknown -class BitMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BitMask_swiginit(self, _mscl.new_BitMask(*args)) - __swig_destroy__ = _mscl.delete_BitMask - - def __eq__(self, other): - return _mscl.BitMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.BitMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.BitMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.BitMask___gt__(self, other) - - def fromMask(self, val): - return _mscl.BitMask_fromMask(self, val) - - def toMask(self): - return _mscl.BitMask_toMask(self) - - def enabledCount(self): - return _mscl.BitMask_enabledCount(self) - - def enabled(self, bitIndex): - return _mscl.BitMask_enabled(self, bitIndex) - - def enable(self, bitIndex, enable=True): - return _mscl.BitMask_enable(self, bitIndex, enable) - - def lastBitEnabled(self): - return _mscl.BitMask_lastBitEnabled(self) - -# Register BitMask in _mscl: -_mscl.BitMask_swigregister(BitMask) - -class ChannelMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_CHANNELS = _mscl.ChannelMask_MAX_CHANNELS - - def __init__(self, *args): - _mscl.ChannelMask_swiginit(self, _mscl.new_ChannelMask(*args)) - __swig_destroy__ = _mscl.delete_ChannelMask - - def __eq__(self, other): - return _mscl.ChannelMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.ChannelMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.ChannelMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.ChannelMask___gt__(self, other) - - def fromMask(self, channelMask): - return _mscl.ChannelMask_fromMask(self, channelMask) - - def toMask(self): - return _mscl.ChannelMask_toMask(self) - - def count(self): - return _mscl.ChannelMask_count(self) - - def enabled(self, channel): - return _mscl.ChannelMask_enabled(self, channel) - - def enable(self, channel, enable=True): - return _mscl.ChannelMask_enable(self, channel, enable) - - def lastChEnabled(self): - return _mscl.ChannelMask_lastChEnabled(self) - -# Register ChannelMask in _mscl: -_mscl.ChannelMask_swigregister(ChannelMask) - -class Value(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_Value - - def storedAs(self): - return _mscl.Value_storedAs(self) - - def as_float(self): - return _mscl.Value_as_float(self) - - def as_double(self): - return _mscl.Value_as_double(self) - - def as_uint8(self): - return _mscl.Value_as_uint8(self) - - def as_uint16(self): - return _mscl.Value_as_uint16(self) - - def as_uint32(self): - return _mscl.Value_as_uint32(self) - - def as_uint64(self): - return _mscl.Value_as_uint64(self) - - def as_int8(self): - return _mscl.Value_as_int8(self) - - def as_int16(self): - return _mscl.Value_as_int16(self) - - def as_int32(self): - return _mscl.Value_as_int32(self) - - def as_bool(self): - return _mscl.Value_as_bool(self) - - def as_ChannelMask(self): - return _mscl.Value_as_ChannelMask(self) - - def as_string(self): - return _mscl.Value_as_string(self) - - def __init__(self): - _mscl.Value_swiginit(self, _mscl.new_Value()) - -# Register Value in _mscl: -_mscl.Value_swigregister(Value) - -class Bin(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, start, end, count): - _mscl.Bin_swiginit(self, _mscl.new_Bin(start, end, count)) - - def start(self): - return _mscl.Bin_start(self) - - def end(self): - return _mscl.Bin_end(self) - - def count(self): - return _mscl.Bin_count(self) - __swig_destroy__ = _mscl.delete_Bin - -# Register Bin in _mscl: -_mscl.Bin_swigregister(Bin) - -class Histogram(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, binsStart, binsSize): - _mscl.Histogram_swiginit(self, _mscl.new_Histogram(binsStart, binsSize)) - - def binsStart(self): - return _mscl.Histogram_binsStart(self) - - def binsSize(self): - return _mscl.Histogram_binsSize(self) - - def bins(self): - return _mscl.Histogram_bins(self) - - def addBin(self, bin): - return _mscl.Histogram_addBin(self, bin) - __swig_destroy__ = _mscl.delete_Histogram - -# Register Histogram in _mscl: -_mscl.Histogram_swigregister(Histogram) - -class Timestamp(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INTERNAL = _mscl.Timestamp_INTERNAL - EXTERNAL = _mscl.Timestamp_EXTERNAL - TIME_OF_ARRIVAL = _mscl.Timestamp_TIME_OF_ARRIVAL - GPS = _mscl.Timestamp_GPS - UNIX = _mscl.Timestamp_UNIX - UTC = _mscl.Timestamp_UTC - - def __init__(self, *args): - _mscl.Timestamp_swiginit(self, _mscl.new_Timestamp(*args)) - __swig_destroy__ = _mscl.delete_Timestamp - - def nanoseconds(self, *args): - return _mscl.Timestamp_nanoseconds(self, *args) - - def seconds(self, *args): - return _mscl.Timestamp_seconds(self, *args) - - def storedEpoch(self): - return _mscl.Timestamp_storedEpoch(self) - - def __str__(self): - return _mscl.Timestamp___str__(self) - - def setTime(self, *args): - return _mscl.Timestamp_setTime(self, *args) - - def setTimeNow(self): - return _mscl.Timestamp_setTimeNow(self) - - @staticmethod - def timeNow(): - return _mscl.Timestamp_timeNow() - - @staticmethod - def setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - - @staticmethod - def getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - - @staticmethod - def gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - - @staticmethod - def utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -# Register Timestamp in _mscl: -_mscl.Timestamp_swigregister(Timestamp) - -def Timestamp_timeNow(): - return _mscl.Timestamp_timeNow() - -def Timestamp_setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - -def Timestamp_getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - -def Timestamp_gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - -def Timestamp_utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -class TimeSpan(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - NANOSECONDS_PER_MICROSECOND = _mscl.TimeSpan_NANOSECONDS_PER_MICROSECOND - NANOSECONDS_PER_MILLISECOND = _mscl.TimeSpan_NANOSECONDS_PER_MILLISECOND - NANOSECONDS_PER_SECOND = _mscl.TimeSpan_NANOSECONDS_PER_SECOND - - def getNanoseconds(self): - return _mscl.TimeSpan_getNanoseconds(self) - - def getMicroseconds(self): - return _mscl.TimeSpan_getMicroseconds(self) - - def getMilliseconds(self): - return _mscl.TimeSpan_getMilliseconds(self) - - def getSeconds(self): - return _mscl.TimeSpan_getSeconds(self) - - @staticmethod - def NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - - @staticmethod - def MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - - @staticmethod - def MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - - @staticmethod - def Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - - @staticmethod - def Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - - @staticmethod - def Hours(hours): - return _mscl.TimeSpan_Hours(hours) - - @staticmethod - def Days(days): - return _mscl.TimeSpan_Days(days) - __swig_destroy__ = _mscl.delete_TimeSpan - -# Register TimeSpan in _mscl: -_mscl.TimeSpan_swigregister(TimeSpan) - -def TimeSpan_NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - -def TimeSpan_MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - -def TimeSpan_MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - -def TimeSpan_Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - -def TimeSpan_Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - -def TimeSpan_Hours(hours): - return _mscl.TimeSpan_Hours(hours) - -def TimeSpan_Days(days): - return _mscl.TimeSpan_Days(days) - -class Version(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Version_swiginit(self, _mscl.new_Version(*args)) - - def __eq__(self, cmp): - return _mscl.Version___eq__(self, cmp) - - def __ne__(self, cmp): - return _mscl.Version___ne__(self, cmp) - - def __lt__(self, cmp): - return _mscl.Version___lt__(self, cmp) - - def __le__(self, cmp): - return _mscl.Version___le__(self, cmp) - - def __gt__(self, cmp): - return _mscl.Version___gt__(self, cmp) - - def __ge__(self, cmp): - return _mscl.Version___ge__(self, cmp) - - def __str__(self): - return _mscl.Version___str__(self) - - def fromString(self, strVersion): - return _mscl.Version_fromString(self, strVersion) - - def majorPart(self): - return _mscl.Version_majorPart(self) - - def minorPart(self): - return _mscl.Version_minorPart(self) - - def patchPart(self): - return _mscl.Version_patchPart(self) - __swig_destroy__ = _mscl.delete_Version - -# Register Version in _mscl: -_mscl.Version_swigregister(Version) - -class DeviceInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.DeviceInfo_connectionType_serial - connectionType_tcp = _mscl.DeviceInfo_connectionType_tcp - - def __init__(self, *args): - _mscl.DeviceInfo_swiginit(self, _mscl.new_DeviceInfo(*args)) - - def description(self): - return _mscl.DeviceInfo_description(self) - - def serial(self): - return _mscl.DeviceInfo_serial(self) - - def baudRate(self): - return _mscl.DeviceInfo_baudRate(self) - - def connectionType(self): - return _mscl.DeviceInfo_connectionType(self) - __swig_destroy__ = _mscl.delete_DeviceInfo - -# Register DeviceInfo in _mscl: -_mscl.DeviceInfo_swigregister(DeviceInfo) -cvar = _mscl.cvar -MSCL_VERSION = cvar.MSCL_VERSION - -class Devices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def listBaseStations(): - return _mscl.Devices_listBaseStations() - - @staticmethod - def listInertialDevices(): - return _mscl.Devices_listInertialDevices() - - @staticmethod - def listPorts(): - return _mscl.Devices_listPorts() - __swig_destroy__ = _mscl.delete_Devices - -# Register Devices in _mscl: -_mscl.Devices_swigregister(Devices) - -def Devices_listBaseStations(): - return _mscl.Devices_listBaseStations() - -def Devices_listInertialDevices(): - return _mscl.Devices_listInertialDevices() - -def Devices_listPorts(): - return _mscl.Devices_listPorts() - -class ConnectionDebugData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ConnectionDebugData_swiginit(self, _mscl.new_ConnectionDebugData(*args)) - - def fromRead(self): - return _mscl.ConnectionDebugData_fromRead(self) - - def timestamp(self): - return _mscl.ConnectionDebugData_timestamp(self) - - def data(self): - return _mscl.ConnectionDebugData_data(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugData - -# Register ConnectionDebugData in _mscl: -_mscl.ConnectionDebugData_swigregister(ConnectionDebugData) - -class Connection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.Connection_connectionType_serial - connectionType_tcp = _mscl.Connection_connectionType_tcp - connectionType_webSocket = _mscl.Connection_connectionType_webSocket - connectionType_unixSocket = _mscl.Connection_connectionType_unixSocket - - def __init__(self): - _mscl.Connection_swiginit(self, _mscl.new_Connection()) - - @staticmethod - def Serial(*args): - return _mscl.Connection_Serial(*args) - - @staticmethod - def TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - - @staticmethod - def WebSocket(host, port): - return _mscl.Connection_WebSocket(host, port) - - @staticmethod - def Mock(): - return _mscl.Connection_Mock() - - def description(self): - return _mscl.Connection_description(self) - - def port(self): - return _mscl.Connection_port(self) - - def type(self): - return _mscl.Connection_type(self) - - def disconnect(self): - return _mscl.Connection_disconnect(self) - - def reconnect(self): - return _mscl.Connection_reconnect(self) - - def write(self, bytes): - return _mscl.Connection_write(self, bytes) - - def writeStr(self, bytes): - return _mscl.Connection_writeStr(self, bytes) - - def clearBuffer(self): - return _mscl.Connection_clearBuffer(self) - - def byteReadPos(self): - return _mscl.Connection_byteReadPos(self) - - def byteAppendPos(self): - return _mscl.Connection_byteAppendPos(self) - - def rawByteMode(self, *args): - return _mscl.Connection_rawByteMode(self, *args) - - def getRawBytes(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytes(self, timeout, maxBytes, minBytes) - - def getRawBytesStr(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytesStr(self, timeout, maxBytes, minBytes) - - def getRawBytesWithPattern(self, pattern, timeout=0): - return _mscl.Connection_getRawBytesWithPattern(self, pattern, timeout) - - def debugMode(self, *args): - return _mscl.Connection_debugMode(self, *args) - - def getDebugData(self, timeout=0): - return _mscl.Connection_getDebugData(self, timeout) - - def updateBaudRate(self, baudRate): - return _mscl.Connection_updateBaudRate(self, baudRate) - __swig_destroy__ = _mscl.delete_Connection - -# Register Connection in _mscl: -_mscl.Connection_swigregister(Connection) - -def Connection_Serial(*args): - return _mscl.Connection_Serial(*args) - -def Connection_TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - -def Connection_WebSocket(host, port): - return _mscl.Connection_WebSocket(host, port) - -def Connection_Mock(): - return _mscl.Connection_Mock() - -class WsdaInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.WsdaInfo_swiginit(self, _mscl.new_WsdaInfo(*args)) - - def ipAddress(self): - return _mscl.WsdaInfo_ipAddress(self) - - def port(self): - return _mscl.WsdaInfo_port(self) - - def name(self): - return _mscl.WsdaInfo_name(self) - __swig_destroy__ = _mscl.delete_WsdaInfo - -# Register WsdaInfo in _mscl: -_mscl.WsdaInfo_swigregister(WsdaInfo) - -class WsdaFinder(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WsdaFinder_swiginit(self, _mscl.new_WsdaFinder()) - __swig_destroy__ = _mscl.delete_WsdaFinder - - def found(self): - return _mscl.WsdaFinder_found(self) - - def restart(self): - return _mscl.WsdaFinder_restart(self) - -# Register WsdaFinder in _mscl: -_mscl.WsdaFinder_swigregister(WsdaFinder) - -class WirelessTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - beacon_none = _mscl.WirelessTypes_beacon_none - beacon_internalTimer = _mscl.WirelessTypes_beacon_internalTimer - beacon_internalPPS = _mscl.WirelessTypes_beacon_internalPPS - beacon_externalPPS = _mscl.WirelessTypes_beacon_externalPPS - microcontroller_18F452 = _mscl.WirelessTypes_microcontroller_18F452 - microcontroller_18F4620 = _mscl.WirelessTypes_microcontroller_18F4620 - microcontroller_18F46K20 = _mscl.WirelessTypes_microcontroller_18F46K20 - microcontroller_18F67K90 = _mscl.WirelessTypes_microcontroller_18F67K90 - microcontroller_EFM32WG990F256 = _mscl.WirelessTypes_microcontroller_EFM32WG990F256 - microcontroller_EFR32FG1P132F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32FG1P132F256GM48 - microcontroller_EFR32MG1P232F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32MG1P232F256GM48 - collectionMethod_logOnly = _mscl.WirelessTypes_collectionMethod_logOnly - collectionMethod_transmitOnly = _mscl.WirelessTypes_collectionMethod_transmitOnly - collectionMethod_logAndTransmit = _mscl.WirelessTypes_collectionMethod_logAndTransmit - dataType_first = _mscl.WirelessTypes_dataType_first - dataType_uint16_shifted = _mscl.WirelessTypes_dataType_uint16_shifted - dataType_float32 = _mscl.WirelessTypes_dataType_float32 - dataType_uint16_12bitRes = _mscl.WirelessTypes_dataType_uint16_12bitRes - dataType_uint32 = _mscl.WirelessTypes_dataType_uint32 - dataType_uint16 = _mscl.WirelessTypes_dataType_uint16 - dataType_float32_noCals = _mscl.WirelessTypes_dataType_float32_noCals - dataType_uint24_18bitRes = _mscl.WirelessTypes_dataType_uint24_18bitRes - dataType_uint16_18bitTrunc = _mscl.WirelessTypes_dataType_uint16_18bitTrunc - dataType_int24_20bit = _mscl.WirelessTypes_dataType_int24_20bit - dataType_int16_20bitTrunc = _mscl.WirelessTypes_dataType_int16_20bitTrunc - dataType_uint24 = _mscl.WirelessTypes_dataType_uint24 - dataType_uint16_24bitTrunc = _mscl.WirelessTypes_dataType_uint16_24bitTrunc - dataType_int16_x10 = _mscl.WirelessTypes_dataType_int16_x10 - dataType_last = _mscl.WirelessTypes_dataType_last - dataFormat_raw_uint16 = _mscl.WirelessTypes_dataFormat_raw_uint16 - dataFormat_cal_float = _mscl.WirelessTypes_dataFormat_cal_float - dataFormat_raw_uint24 = _mscl.WirelessTypes_dataFormat_raw_uint24 - dataFormat_raw_int24 = _mscl.WirelessTypes_dataFormat_raw_int24 - dataFormat_raw_int16 = _mscl.WirelessTypes_dataFormat_raw_int16 - dataFormat_cal_int16_x10 = _mscl.WirelessTypes_dataFormat_cal_int16_x10 - syncMode_continuous = _mscl.WirelessTypes_syncMode_continuous - syncMode_burst = _mscl.WirelessTypes_syncMode_burst - samplingMode_sync = _mscl.WirelessTypes_samplingMode_sync - samplingMode_syncBurst = _mscl.WirelessTypes_samplingMode_syncBurst - samplingMode_nonSync = _mscl.WirelessTypes_samplingMode_nonSync - samplingMode_armedDatalog = _mscl.WirelessTypes_samplingMode_armedDatalog - samplingMode_syncEvent = _mscl.WirelessTypes_samplingMode_syncEvent - samplingMode_nonSyncEvent = _mscl.WirelessTypes_samplingMode_nonSyncEvent - defaultMode_idle = _mscl.WirelessTypes_defaultMode_idle - defaultMode_ldc = _mscl.WirelessTypes_defaultMode_ldc - defaultMode_datalog = _mscl.WirelessTypes_defaultMode_datalog - defaultMode_sleep = _mscl.WirelessTypes_defaultMode_sleep - defaultMode_sync = _mscl.WirelessTypes_defaultMode_sync - freq_unknown = _mscl.WirelessTypes_freq_unknown - freq_11 = _mscl.WirelessTypes_freq_11 - freq_12 = _mscl.WirelessTypes_freq_12 - freq_13 = _mscl.WirelessTypes_freq_13 - freq_14 = _mscl.WirelessTypes_freq_14 - freq_15 = _mscl.WirelessTypes_freq_15 - freq_16 = _mscl.WirelessTypes_freq_16 - freq_17 = _mscl.WirelessTypes_freq_17 - freq_18 = _mscl.WirelessTypes_freq_18 - freq_19 = _mscl.WirelessTypes_freq_19 - freq_20 = _mscl.WirelessTypes_freq_20 - freq_21 = _mscl.WirelessTypes_freq_21 - freq_22 = _mscl.WirelessTypes_freq_22 - freq_23 = _mscl.WirelessTypes_freq_23 - freq_24 = _mscl.WirelessTypes_freq_24 - freq_25 = _mscl.WirelessTypes_freq_25 - freq_26 = _mscl.WirelessTypes_freq_26 - power_20dBm = _mscl.WirelessTypes_power_20dBm - power_16dBm = _mscl.WirelessTypes_power_16dBm - power_15dBm = _mscl.WirelessTypes_power_15dBm - power_12dBm = _mscl.WirelessTypes_power_12dBm - power_11dBm = _mscl.WirelessTypes_power_11dBm - power_10dBm = _mscl.WirelessTypes_power_10dBm - power_5dBm = _mscl.WirelessTypes_power_5dBm - power_1dBm = _mscl.WirelessTypes_power_1dBm - power_0dBm = _mscl.WirelessTypes_power_0dBm - retransmission_off = _mscl.WirelessTypes_retransmission_off - retransmission_on = _mscl.WirelessTypes_retransmission_on - retransmission_disabled = _mscl.WirelessTypes_retransmission_disabled - trigger_userInit = _mscl.WirelessTypes_trigger_userInit - trigger_ceiling = _mscl.WirelessTypes_trigger_ceiling - trigger_floor = _mscl.WirelessTypes_trigger_floor - trigger_rampUp = _mscl.WirelessTypes_trigger_rampUp - trigger_rampDown = _mscl.WirelessTypes_trigger_rampDown - equation_none = _mscl.WirelessTypes_equation_none - equation_standard = _mscl.WirelessTypes_equation_standard - unit_none = _mscl.WirelessTypes_unit_none - unit_other_bits = _mscl.WirelessTypes_unit_other_bits - unit_strain_strain = _mscl.WirelessTypes_unit_strain_strain - unit_strain_microStrain = _mscl.WirelessTypes_unit_strain_microStrain - unit_accel_g = _mscl.WirelessTypes_unit_accel_g - unit_accel_mPerSec2 = _mscl.WirelessTypes_unit_accel_mPerSec2 - unit_volts_volts = _mscl.WirelessTypes_unit_volts_volts - unit_volts_millivolts = _mscl.WirelessTypes_unit_volts_millivolts - unit_volts_microvolts = _mscl.WirelessTypes_unit_volts_microvolts - unit_temp_celsius = _mscl.WirelessTypes_unit_temp_celsius - unit_temp_kelvin = _mscl.WirelessTypes_unit_temp_kelvin - unit_temp_fahrenheit = _mscl.WirelessTypes_unit_temp_fahrenheit - unit_displacement_meters = _mscl.WirelessTypes_unit_displacement_meters - unit_displacement_millimeters = _mscl.WirelessTypes_unit_displacement_millimeters - unit_displacement_micrometers = _mscl.WirelessTypes_unit_displacement_micrometers - unit_force_lbf = _mscl.WirelessTypes_unit_force_lbf - unit_force_newtons = _mscl.WirelessTypes_unit_force_newtons - unit_force_kiloNewtons = _mscl.WirelessTypes_unit_force_kiloNewtons - unit_mass_kilograms = _mscl.WirelessTypes_unit_mass_kilograms - unit_pressure_bar = _mscl.WirelessTypes_unit_pressure_bar - unit_pressure_psi = _mscl.WirelessTypes_unit_pressure_psi - unit_pressure_atm = _mscl.WirelessTypes_unit_pressure_atm - unit_pressure_mmHg = _mscl.WirelessTypes_unit_pressure_mmHg - unit_pressure_pascal = _mscl.WirelessTypes_unit_pressure_pascal - unit_pressure_megaPascal = _mscl.WirelessTypes_unit_pressure_megaPascal - unit_pressure_kiloPascal = _mscl.WirelessTypes_unit_pressure_kiloPascal - unit_angDisplacement_degrees = _mscl.WirelessTypes_unit_angDisplacement_degrees - unit_angVelocity_degreesPerSec = _mscl.WirelessTypes_unit_angVelocity_degreesPerSec - unit_angVelocity_radiansPerSec = _mscl.WirelessTypes_unit_angVelocity_radiansPerSec - unit_other_percent = _mscl.WirelessTypes_unit_other_percent - unit_freq_rpm = _mscl.WirelessTypes_unit_freq_rpm - unit_freq_hertz = _mscl.WirelessTypes_unit_freq_hertz - unit_rh_percentRh = _mscl.WirelessTypes_unit_rh_percentRh - unit_other_mVperV = _mscl.WirelessTypes_unit_other_mVperV - unit_accel_milliG = _mscl.WirelessTypes_unit_accel_milliG - unit_accel_ftPerSec2 = _mscl.WirelessTypes_unit_accel_ftPerSec2 - unit_other_percentLife = _mscl.WirelessTypes_unit_other_percentLife - unit_other_count = _mscl.WirelessTypes_unit_other_count - unit_displacement_feet = _mscl.WirelessTypes_unit_displacement_feet - unit_displacement_inches = _mscl.WirelessTypes_unit_displacement_inches - unit_displacement_yards = _mscl.WirelessTypes_unit_displacement_yards - unit_displacement_miles = _mscl.WirelessTypes_unit_displacement_miles - unit_displacement_nautMiles = _mscl.WirelessTypes_unit_displacement_nautMiles - unit_displacement_thouInch = _mscl.WirelessTypes_unit_displacement_thouInch - unit_displacement_hundInch = _mscl.WirelessTypes_unit_displacement_hundInch - unit_displacement_kilometers = _mscl.WirelessTypes_unit_displacement_kilometers - unit_displacement_centimeters = _mscl.WirelessTypes_unit_displacement_centimeters - unit_irradiance_wattsPerSqMeter = _mscl.WirelessTypes_unit_irradiance_wattsPerSqMeter - unit_par_microEinstein = _mscl.WirelessTypes_unit_par_microEinstein - unit_mass_pound = _mscl.WirelessTypes_unit_mass_pound - unit_power_watt = _mscl.WirelessTypes_unit_power_watt - unit_power_milliwatt = _mscl.WirelessTypes_unit_power_milliwatt - unit_power_horsepower = _mscl.WirelessTypes_unit_power_horsepower - unit_reactivePower_var = _mscl.WirelessTypes_unit_reactivePower_var - unit_energy_wattHour = _mscl.WirelessTypes_unit_energy_wattHour - unit_energy_kiloWattHour = _mscl.WirelessTypes_unit_energy_kiloWattHour - unit_reactiveEnergy_VARh = _mscl.WirelessTypes_unit_reactiveEnergy_VARh - unit_reactiveEnergy_kVARh = _mscl.WirelessTypes_unit_reactiveEnergy_kVARh - unit_current_ampere = _mscl.WirelessTypes_unit_current_ampere - unit_current_milliampere = _mscl.WirelessTypes_unit_current_milliampere - unit_current_microampere = _mscl.WirelessTypes_unit_current_microampere - unit_pressure_millibar = _mscl.WirelessTypes_unit_pressure_millibar - unit_pressure_inHg = _mscl.WirelessTypes_unit_pressure_inHg - unit_rssi_dBm = _mscl.WirelessTypes_unit_rssi_dBm - unit_freq_kiloHertz = _mscl.WirelessTypes_unit_freq_kiloHertz - unit_angDisplacement_radians = _mscl.WirelessTypes_unit_angDisplacement_radians - unit_velocity_metersPerSec = _mscl.WirelessTypes_unit_velocity_metersPerSec - unit_velocity_kilometersPerSec = _mscl.WirelessTypes_unit_velocity_kilometersPerSec - unit_velocity_kilometersPerHr = _mscl.WirelessTypes_unit_velocity_kilometersPerHr - unit_velocity_milesPerHr = _mscl.WirelessTypes_unit_velocity_milesPerHr - unit_velocity_knots = _mscl.WirelessTypes_unit_velocity_knots - unit_volume_cubicMeter = _mscl.WirelessTypes_unit_volume_cubicMeter - unit_volume_cubicFt = _mscl.WirelessTypes_unit_volume_cubicFt - unit_volume_liters = _mscl.WirelessTypes_unit_volume_liters - unit_volume_gallon = _mscl.WirelessTypes_unit_volume_gallon - unit_flowRate_cubicMetersPerSec = _mscl.WirelessTypes_unit_flowRate_cubicMetersPerSec - unit_flowRate_cubicFtPerSec = _mscl.WirelessTypes_unit_flowRate_cubicFtPerSec - unit_torque_newtonMeter = _mscl.WirelessTypes_unit_torque_newtonMeter - unit_torque_footPounds = _mscl.WirelessTypes_unit_torque_footPounds - unit_torque_inchPounds = _mscl.WirelessTypes_unit_torque_inchPounds - unit_time_secs = _mscl.WirelessTypes_unit_time_secs - unit_time_nanosecs = _mscl.WirelessTypes_unit_time_nanosecs - unit_time_microsecs = _mscl.WirelessTypes_unit_time_microsecs - unit_time_millisecs = _mscl.WirelessTypes_unit_time_millisecs - unit_time_minutes = _mscl.WirelessTypes_unit_time_minutes - unit_time_hours = _mscl.WirelessTypes_unit_time_hours - unit_time_days = _mscl.WirelessTypes_unit_time_days - unit_time_weeks = _mscl.WirelessTypes_unit_time_weeks - unit_other_value = _mscl.WirelessTypes_unit_other_value - unit_magneticFlux_gauss = _mscl.WirelessTypes_unit_magneticFlux_gauss - unit_other_gSec = _mscl.WirelessTypes_unit_other_gSec - unit_other_secsPerSec = _mscl.WirelessTypes_unit_other_secsPerSec - unit_rssi_dBHz = _mscl.WirelessTypes_unit_rssi_dBHz - unit_density_kgPerMeter3 = _mscl.WirelessTypes_unit_density_kgPerMeter3 - unit_other_unitless = _mscl.WirelessTypes_unit_other_unitless - unit_velocity_inchesPerSec = _mscl.WirelessTypes_unit_velocity_inchesPerSec - unit_force_kg = _mscl.WirelessTypes_unit_force_kg - unit_rawVoltage_volts = _mscl.WirelessTypes_unit_rawVoltage_volts - unit_rawVoltage_millivolts = _mscl.WirelessTypes_unit_rawVoltage_millivolts - unit_rawVoltage_microvolts = _mscl.WirelessTypes_unit_rawVoltage_microvolts - unit_resistance_ohm = _mscl.WirelessTypes_unit_resistance_ohm - unit_resistance_milliohm = _mscl.WirelessTypes_unit_resistance_milliohm - unit_resistance_kiloohm = _mscl.WirelessTypes_unit_resistance_kiloohm - unit_velocity_mmPerSec = _mscl.WirelessTypes_unit_velocity_mmPerSec - unit_mass_grams = _mscl.WirelessTypes_unit_mass_grams - unit_mass_ton = _mscl.WirelessTypes_unit_mass_ton - unit_mass_tonne = _mscl.WirelessTypes_unit_mass_tonne - chType_none = _mscl.WirelessTypes_chType_none - chType_fullDifferential = _mscl.WirelessTypes_chType_fullDifferential - chType_singleEnded = _mscl.WirelessTypes_chType_singleEnded - chType_battery = _mscl.WirelessTypes_chType_battery - chType_temperature = _mscl.WirelessTypes_chType_temperature - chType_rh = _mscl.WirelessTypes_chType_rh - chType_acceleration = _mscl.WirelessTypes_chType_acceleration - chType_displacement = _mscl.WirelessTypes_chType_displacement - chType_voltage = _mscl.WirelessTypes_chType_voltage - chType_diffTemperature = _mscl.WirelessTypes_chType_diffTemperature - chType_digital = _mscl.WirelessTypes_chType_digital - chType_tilt = _mscl.WirelessTypes_chType_tilt - voltageType_singleEnded = _mscl.WirelessTypes_voltageType_singleEnded - voltageType_differential = _mscl.WirelessTypes_voltageType_differential - settling_4ms = _mscl.WirelessTypes_settling_4ms - settling_8ms = _mscl.WirelessTypes_settling_8ms - settling_16ms = _mscl.WirelessTypes_settling_16ms - settling_32ms = _mscl.WirelessTypes_settling_32ms - settling_40ms = _mscl.WirelessTypes_settling_40ms - settling_48ms = _mscl.WirelessTypes_settling_48ms - settling_60ms = _mscl.WirelessTypes_settling_60ms - settling_101ms_90db = _mscl.WirelessTypes_settling_101ms_90db - settling_120ms_80db = _mscl.WirelessTypes_settling_120ms_80db - settling_120ms_65db = _mscl.WirelessTypes_settling_120ms_65db - settling_160ms_69db = _mscl.WirelessTypes_settling_160ms_69db - settling_200ms = _mscl.WirelessTypes_settling_200ms - transducer_thermocouple = _mscl.WirelessTypes_transducer_thermocouple - transducer_rtd = _mscl.WirelessTypes_transducer_rtd - transducer_thermistor = _mscl.WirelessTypes_transducer_thermistor - tc_uncompensated = _mscl.WirelessTypes_tc_uncompensated - tc_K = _mscl.WirelessTypes_tc_K - tc_J = _mscl.WirelessTypes_tc_J - tc_R = _mscl.WirelessTypes_tc_R - tc_S = _mscl.WirelessTypes_tc_S - tc_T = _mscl.WirelessTypes_tc_T - tc_E = _mscl.WirelessTypes_tc_E - tc_B = _mscl.WirelessTypes_tc_B - tc_N = _mscl.WirelessTypes_tc_N - tc_customPolynomial = _mscl.WirelessTypes_tc_customPolynomial - rtd_uncompensated = _mscl.WirelessTypes_rtd_uncompensated - rtd_pt10 = _mscl.WirelessTypes_rtd_pt10 - rtd_pt50 = _mscl.WirelessTypes_rtd_pt50 - rtd_pt100 = _mscl.WirelessTypes_rtd_pt100 - rtd_pt200 = _mscl.WirelessTypes_rtd_pt200 - rtd_pt500 = _mscl.WirelessTypes_rtd_pt500 - rtd_pt1000 = _mscl.WirelessTypes_rtd_pt1000 - rtd_2wire = _mscl.WirelessTypes_rtd_2wire - rtd_3wire = _mscl.WirelessTypes_rtd_3wire - rtd_4wire = _mscl.WirelessTypes_rtd_4wire - thermistor_uncompensated = _mscl.WirelessTypes_thermistor_uncompensated - thermistor_44004_44033 = _mscl.WirelessTypes_thermistor_44004_44033 - thermistor_44005_44030 = _mscl.WirelessTypes_thermistor_44005_44030 - thermistor_44007_44034 = _mscl.WirelessTypes_thermistor_44007_44034 - thermistor_44006_44031 = _mscl.WirelessTypes_thermistor_44006_44031 - thermistor_44008_44032 = _mscl.WirelessTypes_thermistor_44008_44032 - thermistor_ysi_400 = _mscl.WirelessTypes_thermistor_ysi_400 - sampleRate_104170Hz = _mscl.WirelessTypes_sampleRate_104170Hz - sampleRate_78125Hz = _mscl.WirelessTypes_sampleRate_78125Hz - sampleRate_62500Hz = _mscl.WirelessTypes_sampleRate_62500Hz - sampleRate_25000Hz = _mscl.WirelessTypes_sampleRate_25000Hz - sampleRate_12500Hz = _mscl.WirelessTypes_sampleRate_12500Hz - sampleRate_3200Hz = _mscl.WirelessTypes_sampleRate_3200Hz - sampleRate_1600Hz = _mscl.WirelessTypes_sampleRate_1600Hz - sampleRate_800Hz = _mscl.WirelessTypes_sampleRate_800Hz - sampleRate_300Hz = _mscl.WirelessTypes_sampleRate_300Hz - sampleRate_1kHz = _mscl.WirelessTypes_sampleRate_1kHz - sampleRate_2kHz = _mscl.WirelessTypes_sampleRate_2kHz - sampleRate_3kHz = _mscl.WirelessTypes_sampleRate_3kHz - sampleRate_4kHz = _mscl.WirelessTypes_sampleRate_4kHz - sampleRate_5kHz = _mscl.WirelessTypes_sampleRate_5kHz - sampleRate_6kHz = _mscl.WirelessTypes_sampleRate_6kHz - sampleRate_7kHz = _mscl.WirelessTypes_sampleRate_7kHz - sampleRate_8kHz = _mscl.WirelessTypes_sampleRate_8kHz - sampleRate_9kHz = _mscl.WirelessTypes_sampleRate_9kHz - sampleRate_10kHz = _mscl.WirelessTypes_sampleRate_10kHz - sampleRate_20kHz = _mscl.WirelessTypes_sampleRate_20kHz - sampleRate_30kHz = _mscl.WirelessTypes_sampleRate_30kHz - sampleRate_40kHz = _mscl.WirelessTypes_sampleRate_40kHz - sampleRate_50kHz = _mscl.WirelessTypes_sampleRate_50kHz - sampleRate_60kHz = _mscl.WirelessTypes_sampleRate_60kHz - sampleRate_70kHz = _mscl.WirelessTypes_sampleRate_70kHz - sampleRate_80kHz = _mscl.WirelessTypes_sampleRate_80kHz - sampleRate_90kHz = _mscl.WirelessTypes_sampleRate_90kHz - sampleRate_100kHz = _mscl.WirelessTypes_sampleRate_100kHz - sampleRate_887Hz = _mscl.WirelessTypes_sampleRate_887Hz - sampleRate_8192Hz = _mscl.WirelessTypes_sampleRate_8192Hz - sampleRate_4096Hz = _mscl.WirelessTypes_sampleRate_4096Hz - sampleRate_2048Hz = _mscl.WirelessTypes_sampleRate_2048Hz - sampleRate_1024Hz = _mscl.WirelessTypes_sampleRate_1024Hz - sampleRate_512Hz = _mscl.WirelessTypes_sampleRate_512Hz - sampleRate_256Hz = _mscl.WirelessTypes_sampleRate_256Hz - sampleRate_128Hz = _mscl.WirelessTypes_sampleRate_128Hz - sampleRate_64Hz = _mscl.WirelessTypes_sampleRate_64Hz - sampleRate_32Hz = _mscl.WirelessTypes_sampleRate_32Hz - sampleRate_16Hz = _mscl.WirelessTypes_sampleRate_16Hz - sampleRate_8Hz = _mscl.WirelessTypes_sampleRate_8Hz - sampleRate_4Hz = _mscl.WirelessTypes_sampleRate_4Hz - sampleRate_2Hz = _mscl.WirelessTypes_sampleRate_2Hz - sampleRate_1Hz = _mscl.WirelessTypes_sampleRate_1Hz - sampleRate_2Sec = _mscl.WirelessTypes_sampleRate_2Sec - sampleRate_5Sec = _mscl.WirelessTypes_sampleRate_5Sec - sampleRate_10Sec = _mscl.WirelessTypes_sampleRate_10Sec - sampleRate_30Sec = _mscl.WirelessTypes_sampleRate_30Sec - sampleRate_1Min = _mscl.WirelessTypes_sampleRate_1Min - sampleRate_2Min = _mscl.WirelessTypes_sampleRate_2Min - sampleRate_5Min = _mscl.WirelessTypes_sampleRate_5Min - sampleRate_10Min = _mscl.WirelessTypes_sampleRate_10Min - sampleRate_30Min = _mscl.WirelessTypes_sampleRate_30Min - sampleRate_60Min = _mscl.WirelessTypes_sampleRate_60Min - sampleRate_24Hours = _mscl.WirelessTypes_sampleRate_24Hours - region_usa = _mscl.WirelessTypes_region_usa - region_europeanUnion = _mscl.WirelessTypes_region_europeanUnion - region_japan = _mscl.WirelessTypes_region_japan - region_other = _mscl.WirelessTypes_region_other - region_brazil = _mscl.WirelessTypes_region_brazil - region_china = _mscl.WirelessTypes_region_china - region_australia_newzealand = _mscl.WirelessTypes_region_australia_newzealand - region_singapore = _mscl.WirelessTypes_region_singapore - region_canada = _mscl.WirelessTypes_region_canada - region_southAfrica = _mscl.WirelessTypes_region_southAfrica - region_indonesia = _mscl.WirelessTypes_region_indonesia - region_taiwan = _mscl.WirelessTypes_region_taiwan - chSetting_inputRange = _mscl.WirelessTypes_chSetting_inputRange - chSetting_filterSettlingTime = _mscl.WirelessTypes_chSetting_filterSettlingTime - chSetting_thermocoupleType = _mscl.WirelessTypes_chSetting_thermocoupleType - chSetting_linearEquation = _mscl.WirelessTypes_chSetting_linearEquation - chSetting_unit = _mscl.WirelessTypes_chSetting_unit - chSetting_equationType = _mscl.WirelessTypes_chSetting_equationType - chSetting_hardwareOffset = _mscl.WirelessTypes_chSetting_hardwareOffset - chSetting_autoBalance = _mscl.WirelessTypes_chSetting_autoBalance - chSetting_gaugeFactor = _mscl.WirelessTypes_chSetting_gaugeFactor - chSetting_antiAliasingFilter = _mscl.WirelessTypes_chSetting_antiAliasingFilter - chSetting_legacyShuntCal = _mscl.WirelessTypes_chSetting_legacyShuntCal - chSetting_autoShuntCal = _mscl.WirelessTypes_chSetting_autoShuntCal - chSetting_lowPassFilter = _mscl.WirelessTypes_chSetting_lowPassFilter - chSetting_highPassFilter = _mscl.WirelessTypes_chSetting_highPassFilter - chSetting_tempSensorOptions = _mscl.WirelessTypes_chSetting_tempSensorOptions - chSetting_debounceFilter = _mscl.WirelessTypes_chSetting_debounceFilter - chSetting_pullUpResistor = _mscl.WirelessTypes_chSetting_pullUpResistor - chSetting_factoryLinearEq = _mscl.WirelessTypes_chSetting_factoryLinearEq - chSetting_factoryUnit = _mscl.WirelessTypes_chSetting_factoryUnit - chSetting_factoryEqType = _mscl.WirelessTypes_chSetting_factoryEqType - autobalance_success = _mscl.WirelessTypes_autobalance_success - autobalance_maybeInvalid = _mscl.WirelessTypes_autobalance_maybeInvalid - autobalance_notSupportedByNode = _mscl.WirelessTypes_autobalance_notSupportedByNode - autobalance_notSupportedByCh = _mscl.WirelessTypes_autobalance_notSupportedByCh - autobalance_targetOutOfRange = _mscl.WirelessTypes_autobalance_targetOutOfRange - autobalance_failed = _mscl.WirelessTypes_autobalance_failed - autobalance_legacyNone = _mscl.WirelessTypes_autobalance_legacyNone - autobalance_notComplete = _mscl.WirelessTypes_autobalance_notComplete - autocal_success = _mscl.WirelessTypes_autocal_success - autocal_maybeInvalid_applied = _mscl.WirelessTypes_autocal_maybeInvalid_applied - autocal_maybeInvalid_notApplied = _mscl.WirelessTypes_autocal_maybeInvalid_notApplied - autocal_notComplete = _mscl.WirelessTypes_autocal_notComplete - autocalError_none = _mscl.WirelessTypes_autocalError_none - autocalError_sensorDetached = _mscl.WirelessTypes_autocalError_sensorDetached - autocalError_sensorShorted = _mscl.WirelessTypes_autocalError_sensorShorted - autocalError_unsupportedChannel = _mscl.WirelessTypes_autocalError_unsupportedChannel - autocalError_baseHighRail = _mscl.WirelessTypes_autocalError_baseHighRail - autocalError_baseLowRail = _mscl.WirelessTypes_autocalError_baseLowRail - autocalError_shuntHighRail = _mscl.WirelessTypes_autocalError_shuntHighRail - autocalError_shuntLowRail = _mscl.WirelessTypes_autocalError_shuntLowRail - autocalError_ramp = _mscl.WirelessTypes_autocalError_ramp - autocalError_noShunt = _mscl.WirelessTypes_autocalError_noShunt - autocalError_timeout = _mscl.WirelessTypes_autocalError_timeout - fatigueMode_angleStrain = _mscl.WirelessTypes_fatigueMode_angleStrain - fatigueMode_distributedAngle = _mscl.WirelessTypes_fatigueMode_distributedAngle - fatigueMode_rawGaugeStrain = _mscl.WirelessTypes_fatigueMode_rawGaugeStrain - eventTrigger_ceiling = _mscl.WirelessTypes_eventTrigger_ceiling - eventTrigger_floor = _mscl.WirelessTypes_eventTrigger_floor - filter_33000hz = _mscl.WirelessTypes_filter_33000hz - filter_20000hz = _mscl.WirelessTypes_filter_20000hz - filter_10000hz = _mscl.WirelessTypes_filter_10000hz - filter_5222hz = _mscl.WirelessTypes_filter_5222hz - filter_5000hz = _mscl.WirelessTypes_filter_5000hz - filter_4416hz = _mscl.WirelessTypes_filter_4416hz - filter_4096hz = _mscl.WirelessTypes_filter_4096hz - filter_4000hz = _mscl.WirelessTypes_filter_4000hz - filter_2208hz = _mscl.WirelessTypes_filter_2208hz - filter_2048hz = _mscl.WirelessTypes_filter_2048hz - filter_2000hz = _mscl.WirelessTypes_filter_2000hz - filter_1104hz = _mscl.WirelessTypes_filter_1104hz - filter_1024hz = _mscl.WirelessTypes_filter_1024hz - filter_1000hz = _mscl.WirelessTypes_filter_1000hz - filter_800hz = _mscl.WirelessTypes_filter_800hz - filter_552hz = _mscl.WirelessTypes_filter_552hz - filter_512hz = _mscl.WirelessTypes_filter_512hz - filter_500hz = _mscl.WirelessTypes_filter_500hz - filter_418hz = _mscl.WirelessTypes_filter_418hz - filter_294hz = _mscl.WirelessTypes_filter_294hz - filter_256hz = _mscl.WirelessTypes_filter_256hz - filter_250hz = _mscl.WirelessTypes_filter_250hz - filter_209hz = _mscl.WirelessTypes_filter_209hz - filter_200hz = _mscl.WirelessTypes_filter_200hz - filter_147hz = _mscl.WirelessTypes_filter_147hz - filter_128hz = _mscl.WirelessTypes_filter_128hz - filter_125hz = _mscl.WirelessTypes_filter_125hz - filter_104hz = _mscl.WirelessTypes_filter_104hz - filter_100hz = _mscl.WirelessTypes_filter_100hz - filter_62hz = _mscl.WirelessTypes_filter_62hz - filter_52hz = _mscl.WirelessTypes_filter_52hz - filter_50hz = _mscl.WirelessTypes_filter_50hz - filter_31hz = _mscl.WirelessTypes_filter_31hz - filter_26hz = _mscl.WirelessTypes_filter_26hz - filter_12_66hz = _mscl.WirelessTypes_filter_12_66hz - filter_2_6hz = _mscl.WirelessTypes_filter_2_6hz - highPass_off = _mscl.WirelessTypes_highPass_off - highPass_auto = _mscl.WirelessTypes_highPass_auto - cfc_10 = _mscl.WirelessTypes_cfc_10 - cfc_21 = _mscl.WirelessTypes_cfc_21 - cfc_60 = _mscl.WirelessTypes_cfc_60 - storageLimit_overwrite = _mscl.WirelessTypes_storageLimit_overwrite - storageLimit_stop = _mscl.WirelessTypes_storageLimit_stop - range_14_545mV = _mscl.WirelessTypes_range_14_545mV - range_10_236mV = _mscl.WirelessTypes_range_10_236mV - range_7_608mV = _mscl.WirelessTypes_range_7_608mV - range_4_046mV = _mscl.WirelessTypes_range_4_046mV - range_2_008mV = _mscl.WirelessTypes_range_2_008mV - range_1_511mV = _mscl.WirelessTypes_range_1_511mV - range_1_001mV = _mscl.WirelessTypes_range_1_001mV - range_0_812mV = _mscl.WirelessTypes_range_0_812mV - range_75mV = _mscl.WirelessTypes_range_75mV - range_37_5mV = _mscl.WirelessTypes_range_37_5mV - range_18_75mV = _mscl.WirelessTypes_range_18_75mV - range_9_38mV = _mscl.WirelessTypes_range_9_38mV - range_4_69mV = _mscl.WirelessTypes_range_4_69mV - range_2_34mV = _mscl.WirelessTypes_range_2_34mV - range_1_17mV = _mscl.WirelessTypes_range_1_17mV - range_0_586mV = _mscl.WirelessTypes_range_0_586mV - range_70mV = _mscl.WirelessTypes_range_70mV - range_35mV = _mscl.WirelessTypes_range_35mV - range_17_5mV = _mscl.WirelessTypes_range_17_5mV - range_8_75mV = _mscl.WirelessTypes_range_8_75mV - range_4_38mV = _mscl.WirelessTypes_range_4_38mV - range_2_19mV = _mscl.WirelessTypes_range_2_19mV - range_1_09mV = _mscl.WirelessTypes_range_1_09mV - range_0_547mV = _mscl.WirelessTypes_range_0_547mV - range_44mV = _mscl.WirelessTypes_range_44mV - range_30mV = _mscl.WirelessTypes_range_30mV - range_20mV = _mscl.WirelessTypes_range_20mV - range_15mV = _mscl.WirelessTypes_range_15mV - range_10mV = _mscl.WirelessTypes_range_10mV - range_5mV = _mscl.WirelessTypes_range_5mV - range_3mV = _mscl.WirelessTypes_range_3mV - range_2mV = _mscl.WirelessTypes_range_2mV - range_6mV = _mscl.WirelessTypes_range_6mV - range_1mV = _mscl.WirelessTypes_range_1mV - range_50mV = _mscl.WirelessTypes_range_50mV - range_2_5mV = _mscl.WirelessTypes_range_2_5mV - range_0_6mV = _mscl.WirelessTypes_range_0_6mV - range_0_35mV = _mscl.WirelessTypes_range_0_35mV - range_0_1mV = _mscl.WirelessTypes_range_0_1mV - range_156mV = _mscl.WirelessTypes_range_156mV - range_78_1mV = _mscl.WirelessTypes_range_78_1mV - range_39mV = _mscl.WirelessTypes_range_39mV - range_19_5mV = _mscl.WirelessTypes_range_19_5mV - range_9_76mV = _mscl.WirelessTypes_range_9_76mV - range_4_88mV = _mscl.WirelessTypes_range_4_88mV - range_2_44mV = _mscl.WirelessTypes_range_2_44mV - range_1_22mV = _mscl.WirelessTypes_range_1_22mV - range_10_24V = _mscl.WirelessTypes_range_10_24V - range_5_12V = _mscl.WirelessTypes_range_5_12V - range_2_56V = _mscl.WirelessTypes_range_2_56V - range_0to10_24V = _mscl.WirelessTypes_range_0to10_24V - range_0to5_12V = _mscl.WirelessTypes_range_0to5_12V - range_1_147V = _mscl.WirelessTypes_range_1_147V - range_585mV = _mscl.WirelessTypes_range_585mV - range_292_5mV = _mscl.WirelessTypes_range_292_5mV - range_146_25mV = _mscl.WirelessTypes_range_146_25mV - range_73_13mV = _mscl.WirelessTypes_range_73_13mV - range_36_56mV = _mscl.WirelessTypes_range_36_56mV - range_18_23mV = _mscl.WirelessTypes_range_18_23mV - range_9_14mV = _mscl.WirelessTypes_range_9_14mV - range_5_74V = _mscl.WirelessTypes_range_5_74V - range_2_93V = _mscl.WirelessTypes_range_2_93V - range_1_46V = _mscl.WirelessTypes_range_1_46V - range_731_3mV = _mscl.WirelessTypes_range_731_3mV - range_365_6mV = _mscl.WirelessTypes_range_365_6mV - range_182_8mV = _mscl.WirelessTypes_range_182_8mV - range_91_4mV = _mscl.WirelessTypes_range_91_4mV - range_45_7mV = _mscl.WirelessTypes_range_45_7mV - range_62_5mV = _mscl.WirelessTypes_range_62_5mV - range_31_25mV = _mscl.WirelessTypes_range_31_25mV - range_15_63mV = _mscl.WirelessTypes_range_15_63mV - range_7_81mV = _mscl.WirelessTypes_range_7_81mV - range_3_91mV = _mscl.WirelessTypes_range_3_91mV - range_1_95mV = _mscl.WirelessTypes_range_1_95mV - range_0_976mV = _mscl.WirelessTypes_range_0_976mV - range_0_488mV = _mscl.WirelessTypes_range_0_488mV - range_2G = _mscl.WirelessTypes_range_2G - range_4G = _mscl.WirelessTypes_range_4G - range_8G = _mscl.WirelessTypes_range_8G - range_10G = _mscl.WirelessTypes_range_10G - range_20G = _mscl.WirelessTypes_range_20G - range_40G = _mscl.WirelessTypes_range_40G - range_2_5V = _mscl.WirelessTypes_range_2_5V - range_1_25V = _mscl.WirelessTypes_range_1_25V - range_625mV = _mscl.WirelessTypes_range_625mV - range_312_5mV = _mscl.WirelessTypes_range_312_5mV - range_156_25mV = _mscl.WirelessTypes_range_156_25mV - range_78_125mV = _mscl.WirelessTypes_range_78_125mV - range_39_063mV = _mscl.WirelessTypes_range_39_063mV - range_19_532mV = _mscl.WirelessTypes_range_19_532mV - range_0to2_5V = _mscl.WirelessTypes_range_0to2_5V - range_0to1_25V = _mscl.WirelessTypes_range_0to1_25V - range_0to625mV = _mscl.WirelessTypes_range_0to625mV - range_0to312_5mV = _mscl.WirelessTypes_range_0to312_5mV - range_0to156_25mV = _mscl.WirelessTypes_range_0to156_25mV - range_0to78_125mV = _mscl.WirelessTypes_range_0to78_125mV - range_0to39_063mV = _mscl.WirelessTypes_range_0to39_063mV - range_0to19_532mV = _mscl.WirelessTypes_range_0to19_532mV - range_9_766mV = _mscl.WirelessTypes_range_9_766mV - range_1_35V_or_0to1000000ohm = _mscl.WirelessTypes_range_1_35V_or_0to1000000ohm - range_1_25V_or_0to10000ohm = _mscl.WirelessTypes_range_1_25V_or_0to10000ohm - range_625mV_or_0to3333_3ohm = _mscl.WirelessTypes_range_625mV_or_0to3333_3ohm - range_312_5mV_or_0to1428_6ohm = _mscl.WirelessTypes_range_312_5mV_or_0to1428_6ohm - range_156_25mV_or_0to666_67ohm = _mscl.WirelessTypes_range_156_25mV_or_0to666_67ohm - range_78_125mV_or_0to322_58ohm = _mscl.WirelessTypes_range_78_125mV_or_0to322_58ohm - range_39_0625mV_or_0to158_73ohm = _mscl.WirelessTypes_range_39_0625mV_or_0to158_73ohm - range_19_5313mV_or_0to78_74ohm = _mscl.WirelessTypes_range_19_5313mV_or_0to78_74ohm - range_750mV = _mscl.WirelessTypes_range_750mV - range_375mV = _mscl.WirelessTypes_range_375mV - range_187_5mV = _mscl.WirelessTypes_range_187_5mV - range_93_75mV = _mscl.WirelessTypes_range_93_75mV - range_46_875mV = _mscl.WirelessTypes_range_46_875mV - range_23_438mV = _mscl.WirelessTypes_range_23_438mV - range_11_719mV = _mscl.WirelessTypes_range_11_719mV - range_5_859mV = _mscl.WirelessTypes_range_5_859mV - range_0to1_5V = _mscl.WirelessTypes_range_0to1_5V - range_0to750mV = _mscl.WirelessTypes_range_0to750mV - range_0to375mV = _mscl.WirelessTypes_range_0to375mV - range_0to187_5mV = _mscl.WirelessTypes_range_0to187_5mV - range_0to93_75mV = _mscl.WirelessTypes_range_0to93_75mV - range_0to46_875mV = _mscl.WirelessTypes_range_0to46_875mV - range_0to23_438mV = _mscl.WirelessTypes_range_0to23_438mV - range_0to11_719mV = _mscl.WirelessTypes_range_0to11_719mV - range_1_5V = _mscl.WirelessTypes_range_1_5V - range_1_35V = _mscl.WirelessTypes_range_1_35V - range_0to1000000ohm = _mscl.WirelessTypes_range_0to1000000ohm - range_0to10000ohm = _mscl.WirelessTypes_range_0to10000ohm - range_0to3333_3ohm = _mscl.WirelessTypes_range_0to3333_3ohm - range_0to1428_6ohm = _mscl.WirelessTypes_range_0to1428_6ohm - range_0to666_67ohm = _mscl.WirelessTypes_range_0to666_67ohm - range_0to322_58ohm = _mscl.WirelessTypes_range_0to322_58ohm - range_0to158_73ohm = _mscl.WirelessTypes_range_0to158_73ohm - range_0to78_74ohm = _mscl.WirelessTypes_range_0to78_74ohm - range_39_0625mV = _mscl.WirelessTypes_range_39_0625mV - range_19_5313mV = _mscl.WirelessTypes_range_19_5313mV - range_125mV = _mscl.WirelessTypes_range_125mV - range_invalid = _mscl.WirelessTypes_range_invalid - dataMode_none = _mscl.WirelessTypes_dataMode_none - dataMode_raw = _mscl.WirelessTypes_dataMode_raw - dataMode_derived = _mscl.WirelessTypes_dataMode_derived - dataMode_raw_derived = _mscl.WirelessTypes_dataMode_raw_derived - derivedCategory_rms = _mscl.WirelessTypes_derivedCategory_rms - derivedCategory_peakToPeak = _mscl.WirelessTypes_derivedCategory_peakToPeak - derivedCategory_velocity = _mscl.WirelessTypes_derivedCategory_velocity - derivedCategory_crestFactor = _mscl.WirelessTypes_derivedCategory_crestFactor - derivedCategory_mean = _mscl.WirelessTypes_derivedCategory_mean - derivedAlgId_rms = _mscl.WirelessTypes_derivedAlgId_rms - derivedAlgId_peakToPeak = _mscl.WirelessTypes_derivedAlgId_peakToPeak - derivedAlgId_ips = _mscl.WirelessTypes_derivedAlgId_ips - derivedAlgId_crestFactor = _mscl.WirelessTypes_derivedAlgId_crestFactor - derivedAlgId_mean = _mscl.WirelessTypes_derivedAlgId_mean - derivedAlgId_mmps = _mscl.WirelessTypes_derivedAlgId_mmps - derivedVelocity_ips = _mscl.WirelessTypes_derivedVelocity_ips - derivedVelocity_mmps = _mscl.WirelessTypes_derivedVelocity_mmps - commProtocol_lxrs = _mscl.WirelessTypes_commProtocol_lxrs - commProtocol_lxrsPlus = _mscl.WirelessTypes_commProtocol_lxrsPlus - voltage_5120mV = _mscl.WirelessTypes_voltage_5120mV - voltage_5000mV = _mscl.WirelessTypes_voltage_5000mV - voltage_4096mV = _mscl.WirelessTypes_voltage_4096mV - voltage_3000mV = _mscl.WirelessTypes_voltage_3000mV - voltage_2800mV = _mscl.WirelessTypes_voltage_2800mV - voltage_2750mV = _mscl.WirelessTypes_voltage_2750mV - voltage_2700mV = _mscl.WirelessTypes_voltage_2700mV - voltage_2500mV = _mscl.WirelessTypes_voltage_2500mV - voltage_1500mV = _mscl.WirelessTypes_voltage_1500mV - sensorOutputMode_accel = _mscl.WirelessTypes_sensorOutputMode_accel - sensorOutputMode_tilt = _mscl.WirelessTypes_sensorOutputMode_tilt - batteryStatus_good = _mscl.WirelessTypes_batteryStatus_good - batteryStatus_low = _mscl.WirelessTypes_batteryStatus_low - batteryStatus_critical = _mscl.WirelessTypes_batteryStatus_critical - externalPower_notConnected = _mscl.WirelessTypes_externalPower_notConnected - externalPower_connected = _mscl.WirelessTypes_externalPower_connected - delayVersion_v1 = _mscl.WirelessTypes_delayVersion_v1 - delayVersion_v2 = _mscl.WirelessTypes_delayVersion_v2 - delayVersion_v3 = _mscl.WirelessTypes_delayVersion_v3 - delayVersion_v4 = _mscl.WirelessTypes_delayVersion_v4 - UNKNOWN_RSSI = _mscl.WirelessTypes_UNKNOWN_RSSI - - def __init__(self): - _mscl.WirelessTypes_swiginit(self, _mscl.new_WirelessTypes()) - __swig_destroy__ = _mscl.delete_WirelessTypes - -# Register WirelessTypes in _mscl: -_mscl.WirelessTypes_swigregister(WirelessTypes) - -class SampleRate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - rateType_seconds = _mscl.SampleRate_rateType_seconds - rateType_hertz = _mscl.SampleRate_rateType_hertz - rateType_event = _mscl.SampleRate_rateType_event - rateType_decimation = _mscl.SampleRate_rateType_decimation - - def __init__(self, *args): - _mscl.SampleRate_swiginit(self, _mscl.new_SampleRate(*args)) - - def __str__(self): - return _mscl.SampleRate___str__(self) - - def prettyStr(self): - return _mscl.SampleRate_prettyStr(self) - - def samplePeriod(self): - return _mscl.SampleRate_samplePeriod(self) - - def samplesPerSecond(self): - return _mscl.SampleRate_samplesPerSecond(self) - - def rateType(self): - return _mscl.SampleRate_rateType(self) - - def samples(self): - return _mscl.SampleRate_samples(self) - - def toWirelessSampleRate(self): - return _mscl.SampleRate_toWirelessSampleRate(self) - - def toDecimation(self, sampleRateBase): - return _mscl.SampleRate_toDecimation(self, sampleRateBase) - - @staticmethod - def Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - - @staticmethod - def KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - - @staticmethod - def Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - - @staticmethod - def Event(): - return _mscl.SampleRate_Event() - - @staticmethod - def Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - - @staticmethod - def FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - - @staticmethod - def FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - __swig_destroy__ = _mscl.delete_SampleRate - -# Register SampleRate in _mscl: -_mscl.SampleRate_swigregister(SampleRate) - -def SampleRate_Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - -def SampleRate_KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - -def SampleRate_Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - -def SampleRate_Event(): - return _mscl.SampleRate_Event() - -def SampleRate_Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - -def SampleRate_FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - -def SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - -class Matrix(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Matrix_swiginit(self, _mscl.new_Matrix()) - - def valuesType(self): - return _mscl.Matrix_valuesType(self) - - def rows(self): - return _mscl.Matrix_rows(self) - - def columns(self): - return _mscl.Matrix_columns(self) - - def as_doubleAt(self, row, column): - return _mscl.Matrix_as_doubleAt(self, row, column) - - def as_floatAt(self, row, column): - return _mscl.Matrix_as_floatAt(self, row, column) - - def as_uint16At(self, row, column): - return _mscl.Matrix_as_uint16At(self, row, column) - - def as_uint8At(self, row, column): - return _mscl.Matrix_as_uint8At(self, row, column) - - def __str__(self): - return _mscl.Matrix___str__(self) - __swig_destroy__ = _mscl.delete_Matrix - -# Register Matrix in _mscl: -_mscl.Matrix_swigregister(Matrix) - -class Vector(Matrix): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Vector_swiginit(self, _mscl.new_Vector()) - - def size(self): - return _mscl.Vector_size(self) - - def as_doubleAt(self, index): - return _mscl.Vector_as_doubleAt(self, index) - - def as_floatAt(self, index): - return _mscl.Vector_as_floatAt(self, index) - - def as_uint16At(self, index): - return _mscl.Vector_as_uint16At(self, index) - - def as_uint8At(self, index): - return _mscl.Vector_as_uint8At(self, index) - __swig_destroy__ = _mscl.delete_Vector - -# Register Vector in _mscl: -_mscl.Vector_swigregister(Vector) - -class Bitfield(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Bitfield_swiginit(self, _mscl.new_Bitfield(*args)) - __swig_destroy__ = _mscl.delete_Bitfield - - def value(self, *args): - return _mscl.Bitfield_value(self, *args) - - def get(self, mask, shiftToLsb=True): - return _mscl.Bitfield_get(self, mask, shiftToLsb) - - def set(self, mask, value, shiftRequired=True): - return _mscl.Bitfield_set(self, mask, value, shiftRequired) - - def checkBit(self, bitIndex, indexBase=0): - return _mscl.Bitfield_checkBit(self, bitIndex, indexBase) - - def setBit(self, bitIndex, value, indexBase=0): - return _mscl.Bitfield_setBit(self, bitIndex, value, indexBase) - -# Register Bitfield in _mscl: -_mscl.Bitfield_swigregister(Bitfield) - -class StructuralHealth(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, angle, uptime, damage, processingRate, histogram): - _mscl.StructuralHealth_swiginit(self, _mscl.new_StructuralHealth(angle, uptime, damage, processingRate, histogram)) - - def angle(self): - return _mscl.StructuralHealth_angle(self) - - def uptime(self): - return _mscl.StructuralHealth_uptime(self) - - def damage(self): - return _mscl.StructuralHealth_damage(self) - - def processingRate(self): - return _mscl.StructuralHealth_processingRate(self) - - def histogram(self): - return _mscl.StructuralHealth_histogram(self) - __swig_destroy__ = _mscl.delete_StructuralHealth - -# Register StructuralHealth in _mscl: -_mscl.StructuralHealth_swigregister(StructuralHealth) - -class DataPoint(Value): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - channelPropertyId_angle = _mscl.DataPoint_channelPropertyId_angle - channelPropertyId_derivedFrom = _mscl.DataPoint_channelPropertyId_derivedFrom - channelPropertyId_derivedAlgorithmId = _mscl.DataPoint_channelPropertyId_derivedAlgorithmId - __swig_destroy__ = _mscl.delete_DataPoint - - def channelProperty(self, id): - return _mscl.DataPoint_channelProperty(self, id) - - def as_Vector(self): - return _mscl.DataPoint_as_Vector(self) - - def as_Matrix(self): - return _mscl.DataPoint_as_Matrix(self) - - def as_Timestamp(self): - return _mscl.DataPoint_as_Timestamp(self) - - def as_Bytes(self): - return _mscl.DataPoint_as_Bytes(self) - - def as_StructuralHealth(self): - return _mscl.DataPoint_as_StructuralHealth(self) - - def as_RfSweep(self): - return _mscl.DataPoint_as_RfSweep(self) - - def as_string(self): - return _mscl.DataPoint_as_string(self) - -# Register DataPoint in _mscl: -_mscl.DataPoint_swigregister(DataPoint) - -class ConfigIssue(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONFIG_SAMPLING_MODE = _mscl.ConfigIssue_CONFIG_SAMPLING_MODE - CONFIG_ACTIVE_CHANNELS = _mscl.ConfigIssue_CONFIG_ACTIVE_CHANNELS - CONFIG_SAMPLE_RATE = _mscl.ConfigIssue_CONFIG_SAMPLE_RATE - CONFIG_SWEEPS = _mscl.ConfigIssue_CONFIG_SWEEPS - CONFIG_UNLIMITED_DURATION = _mscl.ConfigIssue_CONFIG_UNLIMITED_DURATION - CONFIG_DATA_FORMAT = _mscl.ConfigIssue_CONFIG_DATA_FORMAT - CONFIG_DATA_COLLECTION_METHOD = _mscl.ConfigIssue_CONFIG_DATA_COLLECTION_METHOD - CONFIG_TIME_BETWEEN_BURSTS = _mscl.ConfigIssue_CONFIG_TIME_BETWEEN_BURSTS - CONFIG_THERMOCOUPLE_TYPE = _mscl.ConfigIssue_CONFIG_THERMOCOUPLE_TYPE - CONFIG_FILTER_SETTLING_TIME = _mscl.ConfigIssue_CONFIG_FILTER_SETTLING_TIME - CONFIG_BUTTON = _mscl.ConfigIssue_CONFIG_BUTTON - CONFIG_ANALOG_PAIR = _mscl.ConfigIssue_CONFIG_ANALOG_PAIR - CONFIG_INPUT_RANGE = _mscl.ConfigIssue_CONFIG_INPUT_RANGE - CONFIG_INACTIVITY_TIMEOUT = _mscl.ConfigIssue_CONFIG_INACTIVITY_TIMEOUT - CONFIG_CHECK_RADIO_INTERVAL = _mscl.ConfigIssue_CONFIG_CHECK_RADIO_INTERVAL - CONFIG_LOST_BEACON_TIMEOUT = _mscl.ConfigIssue_CONFIG_LOST_BEACON_TIMEOUT - CONFIG_DEFAULT_MODE = _mscl.ConfigIssue_CONFIG_DEFAULT_MODE - CONFIG_TRANSMIT_POWER = _mscl.ConfigIssue_CONFIG_TRANSMIT_POWER - CONFIG_LINEAR_EQUATION = _mscl.ConfigIssue_CONFIG_LINEAR_EQUATION - CONFIG_FATIGUE = _mscl.ConfigIssue_CONFIG_FATIGUE - CONFIG_FATIGUE_MODE = _mscl.ConfigIssue_CONFIG_FATIGUE_MODE - CONFIG_FATIGUE_ANGLE_ID = _mscl.ConfigIssue_CONFIG_FATIGUE_ANGLE_ID - CONFIG_FATIGUE_SN_CURVE = _mscl.ConfigIssue_CONFIG_FATIGUE_SN_CURVE - CONFIG_FATIGUE_DIST_NUM_ANGLES = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_NUM_ANGLES - CONFIG_FATIGUE_DIST_ANGLE = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_ANGLE - CONFIG_HISTOGRAM = _mscl.ConfigIssue_CONFIG_HISTOGRAM - CONFIG_HISTOGRAM_TX_RATE = _mscl.ConfigIssue_CONFIG_HISTOGRAM_TX_RATE - CONFIG_HARDWARE_OFFSET = _mscl.ConfigIssue_CONFIG_HARDWARE_OFFSET - CONFIG_ACTIVITY_SENSE = _mscl.ConfigIssue_CONFIG_ACTIVITY_SENSE - CONFIG_GAUGE_FACTOR = _mscl.ConfigIssue_CONFIG_GAUGE_FACTOR - CONFIG_EVENT_TRIGGER = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER - CONFIG_EVENT_TRIGGER_DURATION = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_DURATION - CONFIG_EVENT_TRIGGER_MASK = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_MASK - CONFIG_DIAGNOSTIC_INTERVAL = _mscl.ConfigIssue_CONFIG_DIAGNOSTIC_INTERVAL - CONFIG_ANTI_ALIASING_FILTER = _mscl.ConfigIssue_CONFIG_ANTI_ALIASING_FILTER - CONFIG_STORAGE_LIMIT_MODE = _mscl.ConfigIssue_CONFIG_STORAGE_LIMIT_MODE - CONFIG_SENSOR_DELAY = _mscl.ConfigIssue_CONFIG_SENSOR_DELAY - CONFIG_LOW_PASS_FILTER = _mscl.ConfigIssue_CONFIG_LOW_PASS_FILTER - CONFIG_DATA_MODE = _mscl.ConfigIssue_CONFIG_DATA_MODE - CONFIG_DERIVED_DATA_RATE = _mscl.ConfigIssue_CONFIG_DERIVED_DATA_RATE - CONFIG_DERIVED_MASK_RMS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_RMS - CONFIG_DERIVED_MASK_P2P = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_P2P - CONFIG_DERIVED_MASK_IPS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_IPS - CONFIG_DERIVED_MASK_CREST_FACTOR = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_CREST_FACTOR - CONFIG_HIGH_PASS_FILTER = _mscl.ConfigIssue_CONFIG_HIGH_PASS_FILTER - CONFIG_DERIVED_MASK = _mscl.ConfigIssue_CONFIG_DERIVED_MASK - CONFIG_COMM_PROTOCOL = _mscl.ConfigIssue_CONFIG_COMM_PROTOCOL - CONFIG_DERIVED_MASK_MEAN = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_MEAN - CONFIG_GAUGE_RESISTANCE = _mscl.ConfigIssue_CONFIG_GAUGE_RESISTANCE - CONFIG_NUM_ACTIVE_GAUGES = _mscl.ConfigIssue_CONFIG_NUM_ACTIVE_GAUGES - CONFIG_TEMP_SENSOR_OPTS = _mscl.ConfigIssue_CONFIG_TEMP_SENSOR_OPTS - CONFIG_DEBOUNCE_FILTER = _mscl.ConfigIssue_CONFIG_DEBOUNCE_FILTER - CONFIG_PULLUP_RESISTOR = _mscl.ConfigIssue_CONFIG_PULLUP_RESISTOR - CONFIG_EXCITATION_VOLTAGE = _mscl.ConfigIssue_CONFIG_EXCITATION_VOLTAGE - CONFIG_DERIVED_UNIT = _mscl.ConfigIssue_CONFIG_DERIVED_UNIT - CONFIG_SENSOR_OUTPUT_MODE = _mscl.ConfigIssue_CONFIG_SENSOR_OUTPUT_MODE - CONFIG_LOW_BATTERY_THRESHOLD = _mscl.ConfigIssue_CONFIG_LOW_BATTERY_THRESHOLD - CONFIG_CFC_FILTER = _mscl.ConfigIssue_CONFIG_CFC_FILTER - - def __init__(self, *args): - _mscl.ConfigIssue_swiginit(self, _mscl.new_ConfigIssue(*args)) - - def id(self): - return _mscl.ConfigIssue_id(self) - - def description(self): - return _mscl.ConfigIssue_description(self) - - def isChannelGroupIssue(self): - return _mscl.ConfigIssue_isChannelGroupIssue(self) - - def channelMask(self): - return _mscl.ConfigIssue_channelMask(self) - __swig_destroy__ = _mscl.delete_ConfigIssue - -# Register ConfigIssue in _mscl: -_mscl.ConfigIssue_swigregister(ConfigIssue) - -class ActivitySense(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ActivitySense_swiginit(self, _mscl.new_ActivitySense()) - - def enabled(self, *args): - return _mscl.ActivitySense_enabled(self, *args) - - def activityThreshold(self, *args): - return _mscl.ActivitySense_activityThreshold(self, *args) - - def inactivityThreshold(self, *args): - return _mscl.ActivitySense_inactivityThreshold(self, *args) - - def activityTime(self, *args): - return _mscl.ActivitySense_activityTime(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.ActivitySense_inactivityTimeout(self, *args) - __swig_destroy__ = _mscl.delete_ActivitySense - -# Register ActivitySense in _mscl: -_mscl.ActivitySense_swigregister(ActivitySense) - -class Trigger(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Trigger_swiginit(self, _mscl.new_Trigger(*args)) - - def channelNumber(self, *args): - return _mscl.Trigger_channelNumber(self, *args) - - def triggerType(self, *args): - return _mscl.Trigger_triggerType(self, *args) - - def triggerValue(self, *args): - return _mscl.Trigger_triggerValue(self, *args) - __swig_destroy__ = _mscl.delete_Trigger - -# Register Trigger in _mscl: -_mscl.Trigger_swigregister(Trigger) - -class EventTriggerOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerOptions_swiginit(self, _mscl.new_EventTriggerOptions()) - - def triggerMask(self, *args): - return _mscl.EventTriggerOptions_triggerMask(self, *args) - - def anyTriggersEnabled(self): - return _mscl.EventTriggerOptions_anyTriggersEnabled(self) - - def triggerEnabled(self, triggerIndex): - return _mscl.EventTriggerOptions_triggerEnabled(self, triggerIndex) - - def enableTrigger(self, triggerIndex, enable=True): - return _mscl.EventTriggerOptions_enableTrigger(self, triggerIndex, enable) - - def preDuration(self, *args): - return _mscl.EventTriggerOptions_preDuration(self, *args) - - def postDuration(self, *args): - return _mscl.EventTriggerOptions_postDuration(self, *args) - - def trigger(self, *args): - return _mscl.EventTriggerOptions_trigger(self, *args) - - def triggers(self): - return _mscl.EventTriggerOptions_triggers(self) - __swig_destroy__ = _mscl.delete_EventTriggerOptions - -# Register EventTriggerOptions in _mscl: -_mscl.EventTriggerOptions_swigregister(EventTriggerOptions) - -class SnCurveSegment(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.SnCurveSegment_swiginit(self, _mscl.new_SnCurveSegment(*args)) - - def m(self, *args): - return _mscl.SnCurveSegment_m(self, *args) - - def logA(self, *args): - return _mscl.SnCurveSegment_logA(self, *args) - __swig_destroy__ = _mscl.delete_SnCurveSegment - -# Register SnCurveSegment in _mscl: -_mscl.SnCurveSegment_swigregister(SnCurveSegment) - -class FatigueOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FatigueOptions_swiginit(self, _mscl.new_FatigueOptions()) - - def youngsModulus(self, *args): - return _mscl.FatigueOptions_youngsModulus(self, *args) - - def poissonsRatio(self, *args): - return _mscl.FatigueOptions_poissonsRatio(self, *args) - - def peakValleyThreshold(self, *args): - return _mscl.FatigueOptions_peakValleyThreshold(self, *args) - - def debugMode(self, *args): - return _mscl.FatigueOptions_debugMode(self, *args) - - def damageAngles(self): - return _mscl.FatigueOptions_damageAngles(self) - - def damageAngle(self, *args): - return _mscl.FatigueOptions_damageAngle(self, *args) - - def snCurveSegments(self): - return _mscl.FatigueOptions_snCurveSegments(self) - - def snCurveSegment(self, *args): - return _mscl.FatigueOptions_snCurveSegment(self, *args) - - def fatigueMode(self, *args): - return _mscl.FatigueOptions_fatigueMode(self, *args) - - def distributedAngleMode_numAngles(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_numAngles(self, *args) - - def distributedAngleMode_lowerBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_lowerBound(self, *args) - - def distributedAngleMode_upperBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_upperBound(self, *args) - - def histogramEnable(self, *args): - return _mscl.FatigueOptions_histogramEnable(self, *args) - __swig_destroy__ = _mscl.delete_FatigueOptions - -# Register FatigueOptions in _mscl: -_mscl.FatigueOptions_swigregister(FatigueOptions) - -class HistogramOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HistogramOptions_swiginit(self, _mscl.new_HistogramOptions()) - - def transmitRate(self, *args): - return _mscl.HistogramOptions_transmitRate(self, *args) - - def binsStart(self, *args): - return _mscl.HistogramOptions_binsStart(self, *args) - - def binsSize(self, *args): - return _mscl.HistogramOptions_binsSize(self, *args) - __swig_destroy__ = _mscl.delete_HistogramOptions - -# Register HistogramOptions in _mscl: -_mscl.HistogramOptions_swigregister(HistogramOptions) - -class InputRangeEntry(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - inputRange = property(_mscl.InputRangeEntry_inputRange_get, _mscl.InputRangeEntry_inputRange_set) - hasGain = property(_mscl.InputRangeEntry_hasGain_get, _mscl.InputRangeEntry_hasGain_set) - gain = property(_mscl.InputRangeEntry_gain_get, _mscl.InputRangeEntry_gain_set) - - def __init__(self, *args): - _mscl.InputRangeEntry_swiginit(self, _mscl.new_InputRangeEntry(*args)) - __swig_destroy__ = _mscl.delete_InputRangeEntry - -# Register InputRangeEntry in _mscl: -_mscl.InputRangeEntry_swigregister(InputRangeEntry) - -class TempSensorOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - - @staticmethod - def RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - - @staticmethod - def Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - - def transducerType(self): - return _mscl.TempSensorOptions_transducerType(self) - - def thermocoupleType(self): - return _mscl.TempSensorOptions_thermocoupleType(self) - - def rtdType(self): - return _mscl.TempSensorOptions_rtdType(self) - - def rtdWireType(self): - return _mscl.TempSensorOptions_rtdWireType(self) - - def thermistorType(self): - return _mscl.TempSensorOptions_thermistorType(self) - __swig_destroy__ = _mscl.delete_TempSensorOptions - -# Register TempSensorOptions in _mscl: -_mscl.TempSensorOptions_swigregister(TempSensorOptions) - -def TempSensorOptions_Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - -def TempSensorOptions_RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - -def TempSensorOptions_Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - -class WirelessModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_vLink_legacy = _mscl.WirelessModels_node_vLink_legacy - node_cfBearingTempLink = _mscl.WirelessModels_node_cfBearingTempLink - node_envLink_pro = _mscl.WirelessModels_node_envLink_pro - node_gLink_2g = _mscl.WirelessModels_node_gLink_2g - node_gLink_10g = _mscl.WirelessModels_node_gLink_10g - node_gLinkII_cust_in = _mscl.WirelessModels_node_gLinkII_cust_in - node_gLinkII_2g_in = _mscl.WirelessModels_node_gLinkII_2g_in - node_gLinkII_10g_in = _mscl.WirelessModels_node_gLinkII_10g_in - node_gLinkII_cust_ex = _mscl.WirelessModels_node_gLinkII_cust_ex - node_gLinkII_2g_ex = _mscl.WirelessModels_node_gLinkII_2g_ex - node_gLinkII_10g_ex = _mscl.WirelessModels_node_gLinkII_10g_ex - node_gLink_rgd_10g = _mscl.WirelessModels_node_gLink_rgd_10g - node_gLink_200_8g = _mscl.WirelessModels_node_gLink_200_8g - node_gLink_200_40g = _mscl.WirelessModels_node_gLink_200_40g - node_gLink_200_8g_oem = _mscl.WirelessModels_node_gLink_200_8g_oem - node_gLink_200_40g_oem = _mscl.WirelessModels_node_gLink_200_40g_oem - node_gLink_200_8g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_8g_oem_mmcx - node_gLink_200_40g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_40g_oem_mmcx - node_gLink_200_8g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_8g_oem_u_fl - node_gLink_200_40g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_40g_oem_u_fl - node_gLink_200_r = _mscl.WirelessModels_node_gLink_200_r - node_sgLink_oem_S = _mscl.WirelessModels_node_sgLink_oem_S - node_sgLink = _mscl.WirelessModels_node_sgLink - node_sgLink200 = _mscl.WirelessModels_node_sgLink200 - node_sgLink200_hbridge_1K = _mscl.WirelessModels_node_sgLink200_hbridge_1K - node_sgLink200_hbridge_350 = _mscl.WirelessModels_node_sgLink200_hbridge_350 - node_sgLink200_hbridge_120 = _mscl.WirelessModels_node_sgLink200_hbridge_120 - node_sgLink200_qbridge_1K = _mscl.WirelessModels_node_sgLink200_qbridge_1K - node_sgLink200_qbridge_350 = _mscl.WirelessModels_node_sgLink200_qbridge_350 - node_sgLink200_qbridge_120 = _mscl.WirelessModels_node_sgLink200_qbridge_120 - node_sgLink_oem = _mscl.WirelessModels_node_sgLink_oem - node_sgLink_micro = _mscl.WirelessModels_node_sgLink_micro - node_sgLink200_oem = _mscl.WirelessModels_node_sgLink200_oem - node_sgLink200_oem_ufl = _mscl.WirelessModels_node_sgLink200_oem_ufl - node_sgLink200_oem_hbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K - node_sgLink200_oem_hbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K_ufl - node_sgLink200_oem_hbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120 - node_sgLink200_oem_hbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120_ufl - node_sgLink200_oem_hbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350 - node_sgLink200_oem_hbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350_ufl - node_sgLink200_oem_qbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K - node_sgLink200_oem_qbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K_ufl - node_sgLink200_oem_qbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120 - node_sgLink200_oem_qbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120_ufl - node_sgLink200_oem_qbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350 - node_sgLink200_oem_qbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350_ufl - node_sgLink_rgd = _mscl.WirelessModels_node_sgLink_rgd - node_shmLink = _mscl.WirelessModels_node_shmLink - node_tcLink_1ch = _mscl.WirelessModels_node_tcLink_1ch - node_tcLink_6ch = _mscl.WirelessModels_node_tcLink_6ch - node_tcLink_3ch = _mscl.WirelessModels_node_tcLink_3ch - node_tcLink_6ch_ip67 = _mscl.WirelessModels_node_tcLink_6ch_ip67 - node_tcLink200_oem = _mscl.WirelessModels_node_tcLink200_oem - node_tcLink200_oem_ufl = _mscl.WirelessModels_node_tcLink200_oem_ufl - node_tcLink200 = _mscl.WirelessModels_node_tcLink200 - node_rtdLink200 = _mscl.WirelessModels_node_rtdLink200 - node_tcLink_6ch_ip67_rht = _mscl.WirelessModels_node_tcLink_6ch_ip67_rht - node_vLink = _mscl.WirelessModels_node_vLink - node_vLink200 = _mscl.WirelessModels_node_vLink200 - node_vLink200_qbridge_1K = _mscl.WirelessModels_node_vLink200_qbridge_1K - node_vLink200_qbridge_120 = _mscl.WirelessModels_node_vLink200_qbridge_120 - node_vLink200_qbridge_350 = _mscl.WirelessModels_node_vLink200_qbridge_350 - node_vLink200_hbridge_1K = _mscl.WirelessModels_node_vLink200_hbridge_1K - node_vLink200_hbridge_120 = _mscl.WirelessModels_node_vLink200_hbridge_120 - node_vLink200_hbridge_350 = _mscl.WirelessModels_node_vLink200_hbridge_350 - node_iepeLink = _mscl.WirelessModels_node_iepeLink - node_dvrtLink = _mscl.WirelessModels_node_dvrtLink - node_envLink_mini = _mscl.WirelessModels_node_envLink_mini - node_wattLink = _mscl.WirelessModels_node_wattLink - node_wattLink_3Y208 = _mscl.WirelessModels_node_wattLink_3Y208 - node_wattLink_3D240 = _mscl.WirelessModels_node_wattLink_3D240 - node_wattLink_3Y400 = _mscl.WirelessModels_node_wattLink_3Y400 - node_wattLink_3D400 = _mscl.WirelessModels_node_wattLink_3D400 - node_wattLink_3Y480 = _mscl.WirelessModels_node_wattLink_3Y480 - node_wattLink_3D480 = _mscl.WirelessModels_node_wattLink_3D480 - node_wattLink_3Y600 = _mscl.WirelessModels_node_wattLink_3Y600 - node_ptLink200 = _mscl.WirelessModels_node_ptLink200 - node_rtdLink = _mscl.WirelessModels_node_rtdLink - node_shmLink2_cust1_oldNumber = _mscl.WirelessModels_node_shmLink2_cust1_oldNumber - node_shmLink2_cust1 = _mscl.WirelessModels_node_shmLink2_cust1 - node_shmLink200 = _mscl.WirelessModels_node_shmLink200 - node_shmLink201 = _mscl.WirelessModels_node_shmLink201 - node_shmLink201_qbridge_1K = _mscl.WirelessModels_node_shmLink201_qbridge_1K - node_shmLink201_qbridge_348 = _mscl.WirelessModels_node_shmLink201_qbridge_348 - node_shmLink201_hbridge_1K = _mscl.WirelessModels_node_shmLink201_hbridge_1K - node_shmLink201_hbridge_348 = _mscl.WirelessModels_node_shmLink201_hbridge_348 - node_shmLink201_fullbridge = _mscl.WirelessModels_node_shmLink201_fullbridge - node_shmLink210_fullbridge = _mscl.WirelessModels_node_shmLink210_fullbridge - node_shmLink210_qbridge_3K = _mscl.WirelessModels_node_shmLink210_qbridge_3K - node_torqueLink = _mscl.WirelessModels_node_torqueLink - node_torqueLink200_3ch = _mscl.WirelessModels_node_torqueLink200_3ch - node_torqueLink200 = _mscl.WirelessModels_node_torqueLink200 - node_torqueLink200_3ch_s = _mscl.WirelessModels_node_torqueLink200_3ch_s - node_sgLink_herm = _mscl.WirelessModels_node_sgLink_herm - node_sgLink_herm_2600 = _mscl.WirelessModels_node_sgLink_herm_2600 - node_sgLink_herm_2700 = _mscl.WirelessModels_node_sgLink_herm_2700 - node_sgLink_herm_2800 = _mscl.WirelessModels_node_sgLink_herm_2800 - node_sgLink_herm_2900 = _mscl.WirelessModels_node_sgLink_herm_2900 - node_wirelessImpactSensor = _mscl.WirelessModels_node_wirelessImpactSensor - node_gLink_200_40g_s = _mscl.WirelessModels_node_gLink_200_40g_s - base_wsda_1000 = _mscl.WirelessModels_base_wsda_1000 - base_wsda_1500 = _mscl.WirelessModels_base_wsda_1500 - base_wsda_2000 = _mscl.WirelessModels_base_wsda_2000 - base_wsdaBase_200_legacy = _mscl.WirelessModels_base_wsdaBase_200_legacy - base_wsdaBase_200 = _mscl.WirelessModels_base_wsdaBase_200 - base_wsdaBase_200_extAntenna = _mscl.WirelessModels_base_wsdaBase_200_extAntenna - base_wsdaBase_101_analog = _mscl.WirelessModels_base_wsdaBase_101_analog - base_wsdaBase_102_rs232 = _mscl.WirelessModels_base_wsdaBase_102_rs232 - base_wsdaBase_104_usb = _mscl.WirelessModels_base_wsdaBase_104_usb - base_wsi_104 = _mscl.WirelessModels_base_wsi_104 - base_wsdaBase_mini = _mscl.WirelessModels_base_wsdaBase_mini - - def __init__(self): - _mscl.WirelessModels_swiginit(self, _mscl.new_WirelessModels()) - __swig_destroy__ = _mscl.delete_WirelessModels - -# Register WirelessModels in _mscl: -_mscl.WirelessModels_swigregister(WirelessModels) - -class NodeDiscovery(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def nodeAddress(self): - return _mscl.NodeDiscovery_nodeAddress(self) - - def frequency(self): - return _mscl.NodeDiscovery_frequency(self) - - def panId(self): - return _mscl.NodeDiscovery_panId(self) - - def model(self): - return _mscl.NodeDiscovery_model(self) - - def serialNumber(self): - return _mscl.NodeDiscovery_serialNumber(self) - - def firmwareVersion(self): - return _mscl.NodeDiscovery_firmwareVersion(self) - - def defaultMode(self): - return _mscl.NodeDiscovery_defaultMode(self) - - def builtInTestResult(self): - return _mscl.NodeDiscovery_builtInTestResult(self) - - def communicationProtocol(self): - return _mscl.NodeDiscovery_communicationProtocol(self) - - def asppVersion_lxrs(self): - return _mscl.NodeDiscovery_asppVersion_lxrs(self) - - def asppVersion_lxrsPlus(self): - return _mscl.NodeDiscovery_asppVersion_lxrsPlus(self) - - def baseRssi(self): - return _mscl.NodeDiscovery_baseRssi(self) - - def timestamp(self): - return _mscl.NodeDiscovery_timestamp(self) - - def __init__(self): - _mscl.NodeDiscovery_swiginit(self, _mscl.new_NodeDiscovery()) - __swig_destroy__ = _mscl.delete_NodeDiscovery - -# Register NodeDiscovery in _mscl: -_mscl.NodeDiscovery_swigregister(NodeDiscovery) - -class LinearEquation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LinearEquation_swiginit(self, _mscl.new_LinearEquation(*args)) - - def slope(self, *args): - return _mscl.LinearEquation_slope(self, *args) - - def offset(self, *args): - return _mscl.LinearEquation_offset(self, *args) - __swig_destroy__ = _mscl.delete_LinearEquation - -# Register LinearEquation in _mscl: -_mscl.LinearEquation_swigregister(LinearEquation) - -class CalCoefficients(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CalCoefficients_swiginit(self, _mscl.new_CalCoefficients(*args)) - - def equationType(self): - return _mscl.CalCoefficients_equationType(self) - - def unit(self): - return _mscl.CalCoefficients_unit(self) - - def linearEquation(self): - return _mscl.CalCoefficients_linearEquation(self) - __swig_destroy__ = _mscl.delete_CalCoefficients - -# Register CalCoefficients in _mscl: -_mscl.CalCoefficients_swigregister(CalCoefficients) - -class ChannelGroup(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ChannelGroup_swiginit(self, _mscl.new_ChannelGroup()) - - def channels(self): - return _mscl.ChannelGroup_channels(self) - - def name(self): - return _mscl.ChannelGroup_name(self) - - def eepromLocation(self, setting): - return _mscl.ChannelGroup_eepromLocation(self, setting) - - def settings(self): - return _mscl.ChannelGroup_settings(self) - - def hasSetting(self, setting): - return _mscl.ChannelGroup_hasSetting(self, setting) - - def hasSettingAndChannel(self, setting, channelNumber): - return _mscl.ChannelGroup_hasSettingAndChannel(self, setting, channelNumber) - __swig_destroy__ = _mscl.delete_ChannelGroup - -# Register ChannelGroup in _mscl: -_mscl.ChannelGroup_swigregister(ChannelGroup) - -class WirelessChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - channel_unknown = _mscl.WirelessChannel_channel_unknown - channel_1 = _mscl.WirelessChannel_channel_1 - channel_2 = _mscl.WirelessChannel_channel_2 - channel_3 = _mscl.WirelessChannel_channel_3 - channel_4 = _mscl.WirelessChannel_channel_4 - channel_5 = _mscl.WirelessChannel_channel_5 - channel_6 = _mscl.WirelessChannel_channel_6 - channel_7 = _mscl.WirelessChannel_channel_7 - channel_8 = _mscl.WirelessChannel_channel_8 - channel_9 = _mscl.WirelessChannel_channel_9 - channel_10 = _mscl.WirelessChannel_channel_10 - channel_11 = _mscl.WirelessChannel_channel_11 - channel_12 = _mscl.WirelessChannel_channel_12 - channel_13 = _mscl.WirelessChannel_channel_13 - channel_14 = _mscl.WirelessChannel_channel_14 - channel_15 = _mscl.WirelessChannel_channel_15 - channel_16 = _mscl.WirelessChannel_channel_16 - channel_digital_1 = _mscl.WirelessChannel_channel_digital_1 - channel_digital_2 = _mscl.WirelessChannel_channel_digital_2 - channel_digital_3 = _mscl.WirelessChannel_channel_digital_3 - channel_digital_4 = _mscl.WirelessChannel_channel_digital_4 - channel_digital_5 = _mscl.WirelessChannel_channel_digital_5 - channel_digital_6 = _mscl.WirelessChannel_channel_digital_6 - channel_digital_7 = _mscl.WirelessChannel_channel_digital_7 - channel_digital_8 = _mscl.WirelessChannel_channel_digital_8 - channel_digital_9 = _mscl.WirelessChannel_channel_digital_9 - channel_digital_10 = _mscl.WirelessChannel_channel_digital_10 - channel_digital_11 = _mscl.WirelessChannel_channel_digital_11 - channel_digital_12 = _mscl.WirelessChannel_channel_digital_12 - channel_digital_13 = _mscl.WirelessChannel_channel_digital_13 - channel_digital_14 = _mscl.WirelessChannel_channel_digital_14 - channel_digital_15 = _mscl.WirelessChannel_channel_digital_15 - channel_digital_16 = _mscl.WirelessChannel_channel_digital_16 - channel_structuralHealth = _mscl.WirelessChannel_channel_structuralHealth - channel_hcl_rawBase_mag1_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_x - channel_hcl_rawBase_mag1_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_y - channel_hcl_rawBase_mag1_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_z - channel_hcl_rawBase_mag2_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_x - channel_hcl_rawBase_mag2_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_y - channel_hcl_rawBase_mag2_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_z - channel_hcl_rawBase_mag3_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_x - channel_hcl_rawBase_mag3_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_y - channel_hcl_rawBase_mag3_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_z - channel_hcl_rawBase_mag4_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_x - channel_hcl_rawBase_mag4_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_y - channel_hcl_rawBase_mag4_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_z - channel_hcl_rawBase_mag5_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_x - channel_hcl_rawBase_mag5_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_y - channel_hcl_rawBase_mag5_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_z - channel_hcl_rawBase_mag6_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_x - channel_hcl_rawBase_mag6_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_y - channel_hcl_rawBase_mag6_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_z - channel_hcl_rawBase_mag7_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_x - channel_hcl_rawBase_mag7_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_y - channel_hcl_rawBase_mag7_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_z - channel_hcl_rawBase_mag8_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_x - channel_hcl_rawBase_mag8_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_y - channel_hcl_rawBase_mag8_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_z - channel_hcl_rawBase_gyro_x = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_x - channel_hcl_rawBase_gyro_y = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_y - channel_hcl_rawBase_gyro_z = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_z - channel_error_code = _mscl.WirelessChannel_channel_error_code - channel_hcl_rawStrain_BL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL30 - channel_hcl_rawStrain_BL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL120 - channel_hcl_rawStrain_A60 = _mscl.WirelessChannel_channel_hcl_rawStrain_A60 - channel_hcl_rawStrain_A150 = _mscl.WirelessChannel_channel_hcl_rawStrain_A150 - channel_hcl_rawStrain_AL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL30 - channel_hcl_rawStrain_AL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL120 - channel_hcl_rawStrain_BR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR60 - channel_hcl_rawStrain_BR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR150 - channel_hcl_rawStrain_B30 = _mscl.WirelessChannel_channel_hcl_rawStrain_B30 - channel_hcl_rawStrain_T120 = _mscl.WirelessChannel_channel_hcl_rawStrain_T120 - channel_hcl_rawStrain_AR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR60 - channel_hcl_rawStrain_AR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR150 - channel_hcl_rawStrain_A30 = _mscl.WirelessChannel_channel_hcl_rawStrain_A30 - channel_hcl_rawStrain_A120 = _mscl.WirelessChannel_channel_hcl_rawStrain_A120 - channel_hcl_rawStrain_BL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL90 - channel_hcl_rawStrain_BL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL180 - channel_hcl_rawStrain_BR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR30 - channel_hcl_rawStrain_BR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR120 - channel_hcl_rawStrain_AL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL90 - channel_hcl_rawStrain_AL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL180 - channel_hcl_rawStrain_AR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR30 - channel_hcl_rawStrain_AR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR120 - channel_hcl_rawStrain_B90 = _mscl.WirelessChannel_channel_hcl_rawStrain_B90 - channel_hcl_rawStrain_T0 = _mscl.WirelessChannel_channel_hcl_rawStrain_T0 - channel_hcl_rawStrain_BL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL60 - channel_hcl_rawStrain_BL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL150 - channel_hcl_rawStrain_A90 = _mscl.WirelessChannel_channel_hcl_rawStrain_A90 - channel_hcl_rawStrain_A0 = _mscl.WirelessChannel_channel_hcl_rawStrain_A0 - channel_hcl_rawStrain_AL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL60 - channel_hcl_rawStrain_AL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL150 - channel_hcl_rawStrain_BR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR90 - channel_hcl_rawStrain_BR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR0 - channel_hcl_rawStrain_T60 = _mscl.WirelessChannel_channel_hcl_rawStrain_T60 - channel_hcl_rawStrain_B150 = _mscl.WirelessChannel_channel_hcl_rawStrain_B150 - channel_hcl_rawStrain_AR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR90 - channel_hcl_rawStrain_AR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR0 - channel_hcl_rawInertial_accel1 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel1 - channel_hcl_rawInertial_accel2 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel2 - channel_hcl_rawInertial_accel3 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel3 - channel_hcl_rawInertial_accel4 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel4 - channel_hcl_rawInertial_accel5 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel5 - channel_hcl_rawInertial_accel6 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel6 - channel_hcl_rawInertial_accel7 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel7 - channel_hcl_rawInertial_accel8 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel8 - channel_hcl_rawInertial_gyroX = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroX - channel_hcl_rawInertial_gyroY = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroY - channel_hcl_rawInertial_gyroZ = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroZ - channel_rawAngleStrain = _mscl.WirelessChannel_channel_rawAngleStrain - channel_beaconEcho = _mscl.WirelessChannel_channel_beaconEcho - channel_rfSweep = _mscl.WirelessChannel_channel_rfSweep - channel_diag_state = _mscl.WirelessChannel_channel_diag_state - channel_diag_runtime_idle = _mscl.WirelessChannel_channel_diag_runtime_idle - channel_diag_runtime_sleep = _mscl.WirelessChannel_channel_diag_runtime_sleep - channel_diag_runtime_activeRun = _mscl.WirelessChannel_channel_diag_runtime_activeRun - channel_diag_runtime_inactiveRun = _mscl.WirelessChannel_channel_diag_runtime_inactiveRun - channel_diag_resetCounter = _mscl.WirelessChannel_channel_diag_resetCounter - channel_diag_lowBatteryFlag = _mscl.WirelessChannel_channel_diag_lowBatteryFlag - channel_diag_sweepIndex = _mscl.WirelessChannel_channel_diag_sweepIndex - channel_diag_badSweepCount = _mscl.WirelessChannel_channel_diag_badSweepCount - channel_diag_totalTx = _mscl.WirelessChannel_channel_diag_totalTx - channel_diag_totalReTx = _mscl.WirelessChannel_channel_diag_totalReTx - channel_diag_totalDroppedPackets = _mscl.WirelessChannel_channel_diag_totalDroppedPackets - channel_diag_builtInTestResult = _mscl.WirelessChannel_channel_diag_builtInTestResult - channel_diag_eventIndex = _mscl.WirelessChannel_channel_diag_eventIndex - channel_hcl_axialLoadX = _mscl.WirelessChannel_channel_hcl_axialLoadX - channel_hcl_axialLoadY = _mscl.WirelessChannel_channel_hcl_axialLoadY - channel_hcl_axialLoadZ = _mscl.WirelessChannel_channel_hcl_axialLoadZ - channel_hcl_bendingMomentFlap = _mscl.WirelessChannel_channel_hcl_bendingMomentFlap - channel_hcl_bendingMomentLag = _mscl.WirelessChannel_channel_hcl_bendingMomentLag - channel_hcl_bendingMomentPitch = _mscl.WirelessChannel_channel_hcl_bendingMomentPitch - channel_hcl_motionFlap_mag = _mscl.WirelessChannel_channel_hcl_motionFlap_mag - channel_hcl_motionLag_mag = _mscl.WirelessChannel_channel_hcl_motionLag_mag - channel_hcl_motionPitch_mag = _mscl.WirelessChannel_channel_hcl_motionPitch_mag - channel_hcl_motionFlap_inertial = _mscl.WirelessChannel_channel_hcl_motionFlap_inertial - channel_hcl_motionLag_inertial = _mscl.WirelessChannel_channel_hcl_motionLag_inertial - channel_hcl_motionPitch_inertial = _mscl.WirelessChannel_channel_hcl_motionPitch_inertial - channel_hcl_cockingStiffness_mag = _mscl.WirelessChannel_channel_hcl_cockingStiffness_mag - channel_hcl_cockingStiffness_inertial = _mscl.WirelessChannel_channel_hcl_cockingStiffness_inertial - channel_hcl_temperature = _mscl.WirelessChannel_channel_hcl_temperature - channel_diag_externalPower = _mscl.WirelessChannel_channel_diag_externalPower - channel_diag_internalTemp = _mscl.WirelessChannel_channel_diag_internalTemp - channel_1_rms = _mscl.WirelessChannel_channel_1_rms - channel_2_rms = _mscl.WirelessChannel_channel_2_rms - channel_3_rms = _mscl.WirelessChannel_channel_3_rms - channel_4_rms = _mscl.WirelessChannel_channel_4_rms - channel_5_rms = _mscl.WirelessChannel_channel_5_rms - channel_6_rms = _mscl.WirelessChannel_channel_6_rms - channel_7_rms = _mscl.WirelessChannel_channel_7_rms - channel_8_rms = _mscl.WirelessChannel_channel_8_rms - channel_9_rms = _mscl.WirelessChannel_channel_9_rms - channel_10_rms = _mscl.WirelessChannel_channel_10_rms - channel_11_rms = _mscl.WirelessChannel_channel_11_rms - channel_12_rms = _mscl.WirelessChannel_channel_12_rms - channel_13_rms = _mscl.WirelessChannel_channel_13_rms - channel_14_rms = _mscl.WirelessChannel_channel_14_rms - channel_15_rms = _mscl.WirelessChannel_channel_15_rms - channel_16_rms = _mscl.WirelessChannel_channel_16_rms - channel_1_peakToPeak = _mscl.WirelessChannel_channel_1_peakToPeak - channel_2_peakToPeak = _mscl.WirelessChannel_channel_2_peakToPeak - channel_3_peakToPeak = _mscl.WirelessChannel_channel_3_peakToPeak - channel_4_peakToPeak = _mscl.WirelessChannel_channel_4_peakToPeak - channel_5_peakToPeak = _mscl.WirelessChannel_channel_5_peakToPeak - channel_6_peakToPeak = _mscl.WirelessChannel_channel_6_peakToPeak - channel_7_peakToPeak = _mscl.WirelessChannel_channel_7_peakToPeak - channel_8_peakToPeak = _mscl.WirelessChannel_channel_8_peakToPeak - channel_9_peakToPeak = _mscl.WirelessChannel_channel_9_peakToPeak - channel_10_peakToPeak = _mscl.WirelessChannel_channel_10_peakToPeak - channel_11_peakToPeak = _mscl.WirelessChannel_channel_11_peakToPeak - channel_12_peakToPeak = _mscl.WirelessChannel_channel_12_peakToPeak - channel_13_peakToPeak = _mscl.WirelessChannel_channel_13_peakToPeak - channel_14_peakToPeak = _mscl.WirelessChannel_channel_14_peakToPeak - channel_15_peakToPeak = _mscl.WirelessChannel_channel_15_peakToPeak - channel_16_peakToPeak = _mscl.WirelessChannel_channel_16_peakToPeak - channel_1_ips = _mscl.WirelessChannel_channel_1_ips - channel_2_ips = _mscl.WirelessChannel_channel_2_ips - channel_3_ips = _mscl.WirelessChannel_channel_3_ips - channel_4_ips = _mscl.WirelessChannel_channel_4_ips - channel_5_ips = _mscl.WirelessChannel_channel_5_ips - channel_6_ips = _mscl.WirelessChannel_channel_6_ips - channel_7_ips = _mscl.WirelessChannel_channel_7_ips - channel_8_ips = _mscl.WirelessChannel_channel_8_ips - channel_9_ips = _mscl.WirelessChannel_channel_9_ips - channel_10_ips = _mscl.WirelessChannel_channel_10_ips - channel_11_ips = _mscl.WirelessChannel_channel_11_ips - channel_12_ips = _mscl.WirelessChannel_channel_12_ips - channel_13_ips = _mscl.WirelessChannel_channel_13_ips - channel_14_ips = _mscl.WirelessChannel_channel_14_ips - channel_15_ips = _mscl.WirelessChannel_channel_15_ips - channel_16_ips = _mscl.WirelessChannel_channel_16_ips - channel_1_crestFactor = _mscl.WirelessChannel_channel_1_crestFactor - channel_2_crestFactor = _mscl.WirelessChannel_channel_2_crestFactor - channel_3_crestFactor = _mscl.WirelessChannel_channel_3_crestFactor - channel_4_crestFactor = _mscl.WirelessChannel_channel_4_crestFactor - channel_5_crestFactor = _mscl.WirelessChannel_channel_5_crestFactor - channel_6_crestFactor = _mscl.WirelessChannel_channel_6_crestFactor - channel_7_crestFactor = _mscl.WirelessChannel_channel_7_crestFactor - channel_8_crestFactor = _mscl.WirelessChannel_channel_8_crestFactor - channel_9_crestFactor = _mscl.WirelessChannel_channel_9_crestFactor - channel_10_crestFactor = _mscl.WirelessChannel_channel_10_crestFactor - channel_11_crestFactor = _mscl.WirelessChannel_channel_11_crestFactor - channel_12_crestFactor = _mscl.WirelessChannel_channel_12_crestFactor - channel_13_crestFactor = _mscl.WirelessChannel_channel_13_crestFactor - channel_14_crestFactor = _mscl.WirelessChannel_channel_14_crestFactor - channel_15_crestFactor = _mscl.WirelessChannel_channel_15_crestFactor - channel_16_crestFactor = _mscl.WirelessChannel_channel_16_crestFactor - channel_diag_syncAttempts = _mscl.WirelessChannel_channel_diag_syncAttempts - channel_diag_syncFailures = _mscl.WirelessChannel_channel_diag_syncFailures - channel_diag_secsSinceLastSync = _mscl.WirelessChannel_channel_diag_secsSinceLastSync - channel_beaconConflict = _mscl.WirelessChannel_channel_beaconConflict - channel_1_mean = _mscl.WirelessChannel_channel_1_mean - channel_2_mean = _mscl.WirelessChannel_channel_2_mean - channel_3_mean = _mscl.WirelessChannel_channel_3_mean - channel_4_mean = _mscl.WirelessChannel_channel_4_mean - channel_5_mean = _mscl.WirelessChannel_channel_5_mean - channel_6_mean = _mscl.WirelessChannel_channel_6_mean - channel_7_mean = _mscl.WirelessChannel_channel_7_mean - channel_8_mean = _mscl.WirelessChannel_channel_8_mean - channel_9_mean = _mscl.WirelessChannel_channel_9_mean - channel_10_mean = _mscl.WirelessChannel_channel_10_mean - channel_11_mean = _mscl.WirelessChannel_channel_11_mean - channel_12_mean = _mscl.WirelessChannel_channel_12_mean - channel_13_mean = _mscl.WirelessChannel_channel_13_mean - channel_14_mean = _mscl.WirelessChannel_channel_14_mean - channel_15_mean = _mscl.WirelessChannel_channel_15_mean - channel_16_mean = _mscl.WirelessChannel_channel_16_mean - channel_1_mmps = _mscl.WirelessChannel_channel_1_mmps - channel_2_mmps = _mscl.WirelessChannel_channel_2_mmps - channel_3_mmps = _mscl.WirelessChannel_channel_3_mmps - channel_4_mmps = _mscl.WirelessChannel_channel_4_mmps - channel_5_mmps = _mscl.WirelessChannel_channel_5_mmps - channel_6_mmps = _mscl.WirelessChannel_channel_6_mmps - channel_7_mmps = _mscl.WirelessChannel_channel_7_mmps - channel_8_mmps = _mscl.WirelessChannel_channel_8_mmps - channel_9_mmps = _mscl.WirelessChannel_channel_9_mmps - channel_10_mmps = _mscl.WirelessChannel_channel_10_mmps - channel_11_mmps = _mscl.WirelessChannel_channel_11_mmps - channel_12_mmps = _mscl.WirelessChannel_channel_12_mmps - channel_13_mmps = _mscl.WirelessChannel_channel_13_mmps - channel_14_mmps = _mscl.WirelessChannel_channel_14_mmps - channel_15_mmps = _mscl.WirelessChannel_channel_15_mmps - channel_16_mmps = _mscl.WirelessChannel_channel_16_mmps - channel_diag_memoryFull = _mscl.WirelessChannel_channel_diag_memoryFull - - def __init__(self, *args): - _mscl.WirelessChannel_swiginit(self, _mscl.new_WirelessChannel(*args)) - - def channelNumber(self): - return _mscl.WirelessChannel_channelNumber(self) - - def id(self): - return _mscl.WirelessChannel_id(self) - - def type(self): - return _mscl.WirelessChannel_type(self) - - def description(self): - return _mscl.WirelessChannel_description(self) - - def adcResolution(self): - return _mscl.WirelessChannel_adcResolution(self) - - def adcMaxValue(self): - return _mscl.WirelessChannel_adcMaxValue(self) - - def name(self): - return _mscl.WirelessChannel_name(self) - __swig_destroy__ = _mscl.delete_WirelessChannel - -# Register WirelessChannel in _mscl: -_mscl.WirelessChannel_swigregister(WirelessChannel) - -class WirelessDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessDataPoint_swiginit(self, _mscl.new_WirelessDataPoint()) - - def channelId(self): - return _mscl.WirelessDataPoint_channelId(self) - - def channelNumber(self): - return _mscl.WirelessDataPoint_channelNumber(self) - - def channelName(self): - return _mscl.WirelessDataPoint_channelName(self) - __swig_destroy__ = _mscl.delete_WirelessDataPoint - -# Register WirelessDataPoint in _mscl: -_mscl.WirelessDataPoint_swigregister(WirelessDataPoint) - -class DataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - samplingType_NonSync = _mscl.DataSweep_samplingType_NonSync - samplingType_NonSync_Buffered = _mscl.DataSweep_samplingType_NonSync_Buffered - samplingType_SyncSampling = _mscl.DataSweep_samplingType_SyncSampling - samplingType_SyncSampling_Burst = _mscl.DataSweep_samplingType_SyncSampling_Burst - samplingType_AsyncDigital = _mscl.DataSweep_samplingType_AsyncDigital - samplingType_AsyncDigitalAnalog = _mscl.DataSweep_samplingType_AsyncDigitalAnalog - samplingType_SHM = _mscl.DataSweep_samplingType_SHM - samplingType_BeaconEcho = _mscl.DataSweep_samplingType_BeaconEcho - samplingType_RfSweep = _mscl.DataSweep_samplingType_RfSweep - samplingType_Diagnostic = _mscl.DataSweep_samplingType_Diagnostic - - def __init__(self): - _mscl.DataSweep_swiginit(self, _mscl.new_DataSweep()) - - def timestamp(self): - return _mscl.DataSweep_timestamp(self) - - def tick(self): - return _mscl.DataSweep_tick(self) - - def sampleRate(self): - return _mscl.DataSweep_sampleRate(self) - - def nodeAddress(self): - return _mscl.DataSweep_nodeAddress(self) - - def data(self): - return _mscl.DataSweep_data(self) - - def samplingType(self): - return _mscl.DataSweep_samplingType(self) - - def nodeRssi(self): - return _mscl.DataSweep_nodeRssi(self) - - def baseRssi(self): - return _mscl.DataSweep_baseRssi(self) - - def frequency(self): - return _mscl.DataSweep_frequency(self) - - def calApplied(self): - return _mscl.DataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_DataSweep - -# Register DataSweep in _mscl: -_mscl.DataSweep_swigregister(DataSweep) - -class BaseStationAnalogPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationAnalogPair_swiginit(self, _mscl.new_BaseStationAnalogPair()) - - @staticmethod - def Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - - @staticmethod - def NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - - def nodeAddress(self, *args): - return _mscl.BaseStationAnalogPair_nodeAddress(self, *args) - - def nodeChannel(self, *args): - return _mscl.BaseStationAnalogPair_nodeChannel(self, *args) - - def expectFloatData(self, *args): - return _mscl.BaseStationAnalogPair_expectFloatData(self, *args) - - def outputVal_0V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_0V(self, *args) - - def outputVal_3V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_3V(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationAnalogPair - -# Register BaseStationAnalogPair in _mscl: -_mscl.BaseStationAnalogPair_swigregister(BaseStationAnalogPair) -BaseStationAnalogPair.CHANNEL_NOT_FLOAT = _mscl.cvar.BaseStationAnalogPair_CHANNEL_NOT_FLOAT - -def BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - -def BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - -class BaseStationButton(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - btn_nodeSleep = _mscl.BaseStationButton_btn_nodeSleep - btn_nodeStop = _mscl.BaseStationButton_btn_nodeStop - btn_enableBeacon = _mscl.BaseStationButton_btn_enableBeacon - btn_disableBeacon = _mscl.BaseStationButton_btn_disableBeacon - btn_nodeNonSyncSampling = _mscl.BaseStationButton_btn_nodeNonSyncSampling - btn_nodeSyncSampling = _mscl.BaseStationButton_btn_nodeSyncSampling - btn_nodeArmedDatalogging = _mscl.BaseStationButton_btn_nodeArmedDatalogging - btn_cyclePower = _mscl.BaseStationButton_btn_cyclePower - btn_disabled = _mscl.BaseStationButton_btn_disabled - - def __init__(self, *args): - _mscl.BaseStationButton_swiginit(self, _mscl.new_BaseStationButton(*args)) - - def command(self, *args): - return _mscl.BaseStationButton_command(self, *args) - - def nodeAddress(self, *args): - return _mscl.BaseStationButton_nodeAddress(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationButton - -# Register BaseStationButton in _mscl: -_mscl.BaseStationButton_swigregister(BaseStationButton) - -class BaseStationConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationConfig_swiginit(self, _mscl.new_BaseStationConfig()) - - def transmitPower(self, *args): - return _mscl.BaseStationConfig_transmitPower(self, *args) - - def communicationProtocol(self, *args): - return _mscl.BaseStationConfig_communicationProtocol(self, *args) - - def buttonLongPress(self, *args): - return _mscl.BaseStationConfig_buttonLongPress(self, *args) - - def buttonShortPress(self, *args): - return _mscl.BaseStationConfig_buttonShortPress(self, *args) - - def analogPairingEnable(self, *args): - return _mscl.BaseStationConfig_analogPairingEnable(self, *args) - - def analogTimeoutTime(self, *args): - return _mscl.BaseStationConfig_analogTimeoutTime(self, *args) - - def analogTimeoutVoltage(self, *args): - return _mscl.BaseStationConfig_analogTimeoutVoltage(self, *args) - - def analogExceedanceEnable(self, *args): - return _mscl.BaseStationConfig_analogExceedanceEnable(self, *args) - - def analogPairing(self, *args): - return _mscl.BaseStationConfig_analogPairing(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationConfig - -# Register BaseStationConfig in _mscl: -_mscl.BaseStationConfig_swigregister(BaseStationConfig) - -class BeaconStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BeaconStatus_swiginit(self, _mscl.new_BeaconStatus(*args)) - - def enabled(self): - return _mscl.BeaconStatus_enabled(self) - - def timestamp(self): - return _mscl.BeaconStatus_timestamp(self) - __swig_destroy__ = _mscl.delete_BeaconStatus - -# Register BeaconStatus in _mscl: -_mscl.BeaconStatus_swigregister(BeaconStatus) - -class BaseStationInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region, asppVer_lxrs, asppVer_lxrsPlus): - _mscl.BaseStationInfo_swiginit(self, _mscl.new_BaseStationInfo(fw, model, region, asppVer_lxrs, asppVer_lxrsPlus)) - __swig_destroy__ = _mscl.delete_BaseStationInfo - -# Register BaseStationInfo in _mscl: -_mscl.BaseStationInfo_swigregister(BaseStationInfo) - -class BaseStation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_BASE_COMMANDS_DEFAULT_TIMEOUT - ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT - BROADCAST_NODE_ADDRESS = _mscl.BaseStation_BROADCAST_NODE_ADDRESS - BROADCAST_NODE_ADDRESS_ASPP3 = _mscl.BaseStation_BROADCAST_NODE_ADDRESS_ASPP3 - - def __init__(self, *args): - _mscl.BaseStation_swiginit(self, _mscl.new_BaseStation(*args)) - __swig_destroy__ = _mscl.delete_BaseStation - - @staticmethod - def Mock(*args): - return _mscl.BaseStation_Mock(*args) - - @staticmethod - def deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - - def connection(self): - return _mscl.BaseStation_connection(self) - - def features(self): - return _mscl.BaseStation_features(self) - - def lastCommunicationTime(self): - return _mscl.BaseStation_lastCommunicationTime(self) - - def readWriteRetries(self, *args): - return _mscl.BaseStation_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.BaseStation_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.BaseStation_clearEepromCache(self) - - def frequency(self): - return _mscl.BaseStation_frequency(self) - - def communicationProtocol(self): - return _mscl.BaseStation_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.BaseStation_firmwareVersion(self) - - def model(self): - return _mscl.BaseStation_model(self) - - def serial(self): - return _mscl.BaseStation_serial(self) - - def name(self): - return _mscl.BaseStation_name(self) - - def microcontroller(self): - return _mscl.BaseStation_microcontroller(self) - - def regionCode(self): - return _mscl.BaseStation_regionCode(self) - - def getData(self, timeout=0, maxSweeps=0): - return _mscl.BaseStation_getData(self, timeout, maxSweeps) - - def totalData(self): - return _mscl.BaseStation_totalData(self) - - def getNodeDiscoveries(self): - return _mscl.BaseStation_getNodeDiscoveries(self) - - def timeout(self, *args): - return _mscl.BaseStation_timeout(self, *args) - - def ping(self): - return _mscl.BaseStation_ping(self) - - def readEeprom(self, eepromAddress): - return _mscl.BaseStation_readEeprom(self, eepromAddress) - - def writeEeprom(self, eepromAddress, value): - return _mscl.BaseStation_writeEeprom(self, eepromAddress, value) - - def enableBeacon(self, *args): - return _mscl.BaseStation_enableBeacon(self, *args) - - def disableBeacon(self): - return _mscl.BaseStation_disableBeacon(self) - - def beaconStatus(self): - return _mscl.BaseStation_beaconStatus(self) - - def startRfSweepMode(self, *args): - return _mscl.BaseStation_startRfSweepMode(self, *args) - - def cyclePower(self, checkComm=True): - return _mscl.BaseStation_cyclePower(self, checkComm) - - def resetRadio(self): - return _mscl.BaseStation_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.BaseStation_changeFrequency(self, frequency) - - def broadcastSetToIdle(self): - return _mscl.BaseStation_broadcastSetToIdle(self) - - def verifyConfig(self, config, outIssues): - return _mscl.BaseStation_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.BaseStation_applyConfig(self, config) - - def getTransmitPower(self): - return _mscl.BaseStation_getTransmitPower(self) - - def getButtonLongPress(self, buttonNumber): - return _mscl.BaseStation_getButtonLongPress(self, buttonNumber) - - def getButtonShortPress(self, buttonNumber): - return _mscl.BaseStation_getButtonShortPress(self, buttonNumber) - - def getAnalogPairingEnabled(self): - return _mscl.BaseStation_getAnalogPairingEnabled(self) - - def getAnalogTimeoutTime(self): - return _mscl.BaseStation_getAnalogTimeoutTime(self) - - def getAnalogTimeoutVoltage(self): - return _mscl.BaseStation_getAnalogTimeoutVoltage(self) - - def getAnalogExceedanceEnabled(self): - return _mscl.BaseStation_getAnalogExceedanceEnabled(self) - - def getAnalogPair(self, portNumber): - return _mscl.BaseStation_getAnalogPair(self, portNumber) - -# Register BaseStation in _mscl: -_mscl.BaseStation_swigregister(BaseStation) - -def BaseStation_Mock(*args): - return _mscl.BaseStation_Mock(*args) - -def BaseStation_deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - -class LoggedDataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LoggedDataSweep_swiginit(self, _mscl.new_LoggedDataSweep(*args)) - - def timestamp(self): - return _mscl.LoggedDataSweep_timestamp(self) - - def tick(self): - return _mscl.LoggedDataSweep_tick(self) - - def data(self): - return _mscl.LoggedDataSweep_data(self) - - def calApplied(self): - return _mscl.LoggedDataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweep - -# Register LoggedDataSweep in _mscl: -_mscl.LoggedDataSweep_swigregister(LoggedDataSweep) - -class RadioFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.RadioFeatures_swiginit(self, _mscl.new_RadioFeatures(*args)) - - def extendedRange(self): - return _mscl.RadioFeatures_extendedRange(self) - __swig_destroy__ = _mscl.delete_RadioFeatures - -# Register RadioFeatures in _mscl: -_mscl.RadioFeatures_swigregister(RadioFeatures) - -class WirelessNodeConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessNodeConfig_swiginit(self, _mscl.new_WirelessNodeConfig()) - SENSOR_DELAY_ALWAYS_ON = _mscl.WirelessNodeConfig_SENSOR_DELAY_ALWAYS_ON - - def defaultMode(self, *args): - return _mscl.WirelessNodeConfig_defaultMode(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.WirelessNodeConfig_inactivityTimeout(self, *args) - - def checkRadioInterval(self, *args): - return _mscl.WirelessNodeConfig_checkRadioInterval(self, *args) - - def transmitPower(self, *args): - return _mscl.WirelessNodeConfig_transmitPower(self, *args) - - def samplingMode(self, *args): - return _mscl.WirelessNodeConfig_samplingMode(self, *args) - - def sampleRate(self, *args): - return _mscl.WirelessNodeConfig_sampleRate(self, *args) - - def activeChannels(self, *args): - return _mscl.WirelessNodeConfig_activeChannels(self, *args) - - def numSweeps(self, *args): - return _mscl.WirelessNodeConfig_numSweeps(self, *args) - - def unlimitedDuration(self, *args): - return _mscl.WirelessNodeConfig_unlimitedDuration(self, *args) - - def dataFormat(self, *args): - return _mscl.WirelessNodeConfig_dataFormat(self, *args) - - def dataCollectionMethod(self, *args): - return _mscl.WirelessNodeConfig_dataCollectionMethod(self, *args) - - def timeBetweenBursts(self, *args): - return _mscl.WirelessNodeConfig_timeBetweenBursts(self, *args) - - def lostBeaconTimeout(self, *args): - return _mscl.WirelessNodeConfig_lostBeaconTimeout(self, *args) - - def pullUpResistor(self, *args): - return _mscl.WirelessNodeConfig_pullUpResistor(self, *args) - - def inputRange(self, *args): - return _mscl.WirelessNodeConfig_inputRange(self, *args) - - def hardwareOffset(self, *args): - return _mscl.WirelessNodeConfig_hardwareOffset(self, *args) - - def antiAliasingFilter(self, *args): - return _mscl.WirelessNodeConfig_antiAliasingFilter(self, *args) - - def cfcFilterConfig(self, *args): - return _mscl.WirelessNodeConfig_cfcFilterConfig(self, *args) - - def lowPassFilter(self, *args): - return _mscl.WirelessNodeConfig_lowPassFilter(self, *args) - - def highPassFilter(self, *args): - return _mscl.WirelessNodeConfig_highPassFilter(self, *args) - - def gaugeFactor(self, *args): - return _mscl.WirelessNodeConfig_gaugeFactor(self, *args) - - def gaugeResistance(self, *args): - return _mscl.WirelessNodeConfig_gaugeResistance(self, *args) - - def excitationVoltage(self, *args): - return _mscl.WirelessNodeConfig_excitationVoltage(self, *args) - - def numActiveGauges(self, *args): - return _mscl.WirelessNodeConfig_numActiveGauges(self, *args) - - def lowBatteryThreshold(self, *args): - return _mscl.WirelessNodeConfig_lowBatteryThreshold(self, *args) - - def linearEquation(self, *args): - return _mscl.WirelessNodeConfig_linearEquation(self, *args) - - def unit(self, *args): - return _mscl.WirelessNodeConfig_unit(self, *args) - - def equationType(self, *args): - return _mscl.WirelessNodeConfig_equationType(self, *args) - - def filterSettlingTime(self, *args): - return _mscl.WirelessNodeConfig_filterSettlingTime(self, *args) - - def thermocoupleType(self, *args): - return _mscl.WirelessNodeConfig_thermocoupleType(self, *args) - - def tempSensorOptions(self, *args): - return _mscl.WirelessNodeConfig_tempSensorOptions(self, *args) - - def debounceFilter(self, *args): - return _mscl.WirelessNodeConfig_debounceFilter(self, *args) - - def fatigueOptions(self, *args): - return _mscl.WirelessNodeConfig_fatigueOptions(self, *args) - - def histogramOptions(self, *args): - return _mscl.WirelessNodeConfig_histogramOptions(self, *args) - - def activitySense(self, *args): - return _mscl.WirelessNodeConfig_activitySense(self, *args) - - def eventTriggerOptions(self, *args): - return _mscl.WirelessNodeConfig_eventTriggerOptions(self, *args) - - def diagnosticInterval(self, *args): - return _mscl.WirelessNodeConfig_diagnosticInterval(self, *args) - - def storageLimitMode(self, *args): - return _mscl.WirelessNodeConfig_storageLimitMode(self, *args) - - def sensorDelay(self, *args): - return _mscl.WirelessNodeConfig_sensorDelay(self, *args) - - def dataMode(self, *args): - return _mscl.WirelessNodeConfig_dataMode(self, *args) - - def derivedDataRate(self, *args): - return _mscl.WirelessNodeConfig_derivedDataRate(self, *args) - - def derivedChannelMask(self, *args): - return _mscl.WirelessNodeConfig_derivedChannelMask(self, *args) - - def derivedVelocityUnit(self, *args): - return _mscl.WirelessNodeConfig_derivedVelocityUnit(self, *args) - - def communicationProtocol(self, *args): - return _mscl.WirelessNodeConfig_communicationProtocol(self, *args) - - def sensorOutputMode(self, *args): - return _mscl.WirelessNodeConfig_sensorOutputMode(self, *args) - - @staticmethod - def flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - - @staticmethod - def flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - __swig_destroy__ = _mscl.delete_WirelessNodeConfig - -# Register WirelessNodeConfig in _mscl: -_mscl.WirelessNodeConfig_swigregister(WirelessNodeConfig) - -def WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - -def WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - -class AutoBalanceResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoBalanceResult_swiginit(self, _mscl.new_AutoBalanceResult()) - - def errorCode(self): - return _mscl.AutoBalanceResult_errorCode(self) - - def percentAchieved(self): - return _mscl.AutoBalanceResult_percentAchieved(self) - - def hardwareOffset(self): - return _mscl.AutoBalanceResult_hardwareOffset(self) - __swig_destroy__ = _mscl.delete_AutoBalanceResult - -# Register AutoBalanceResult in _mscl: -_mscl.AutoBalanceResult_swigregister(AutoBalanceResult) - -class ShuntCalCmdInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - useInternalShunt = property(_mscl.ShuntCalCmdInfo_useInternalShunt_get, _mscl.ShuntCalCmdInfo_useInternalShunt_set) - numActiveGauges = property(_mscl.ShuntCalCmdInfo_numActiveGauges_get, _mscl.ShuntCalCmdInfo_numActiveGauges_set) - gaugeResistance = property(_mscl.ShuntCalCmdInfo_gaugeResistance_get, _mscl.ShuntCalCmdInfo_gaugeResistance_set) - shuntResistance = property(_mscl.ShuntCalCmdInfo_shuntResistance_get, _mscl.ShuntCalCmdInfo_shuntResistance_set) - gaugeFactor = property(_mscl.ShuntCalCmdInfo_gaugeFactor_get, _mscl.ShuntCalCmdInfo_gaugeFactor_set) - inputRange = property(_mscl.ShuntCalCmdInfo_inputRange_get, _mscl.ShuntCalCmdInfo_inputRange_set) - hardwareOffset = property(_mscl.ShuntCalCmdInfo_hardwareOffset_get, _mscl.ShuntCalCmdInfo_hardwareOffset_set) - excitationVoltage = property(_mscl.ShuntCalCmdInfo_excitationVoltage_get, _mscl.ShuntCalCmdInfo_excitationVoltage_set) - - def __init__(self): - _mscl.ShuntCalCmdInfo_swiginit(self, _mscl.new_ShuntCalCmdInfo()) - __swig_destroy__ = _mscl.delete_ShuntCalCmdInfo - -# Register ShuntCalCmdInfo in _mscl: -_mscl.ShuntCalCmdInfo_swigregister(ShuntCalCmdInfo) - -class AutoCalResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_AutoCalResult - - def completionFlag(self): - return _mscl.AutoCalResult_completionFlag(self) - -# Register AutoCalResult in _mscl: -_mscl.AutoCalResult_swigregister(AutoCalResult) - -class AutoCalResult_shmLink(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink_swiginit(self, _mscl.new_AutoCalResult_shmLink()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh3(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink_offsetCh1(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink_offsetCh2(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink_temperature(self) - -# Register AutoCalResult_shmLink in _mscl: -_mscl.AutoCalResult_shmLink_swigregister(AutoCalResult_shmLink) - -class AutoCalResult_shmLink201(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink201_swiginit(self, _mscl.new_AutoCalResult_shmLink201()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink201 - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh3(self) - - def slopeCh1(self): - return _mscl.AutoCalResult_shmLink201_slopeCh1(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink201_offsetCh1(self) - - def slopeCh2(self): - return _mscl.AutoCalResult_shmLink201_slopeCh2(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink201_offsetCh2(self) - - def slopeCh3(self): - return _mscl.AutoCalResult_shmLink201_slopeCh3(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink201_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink201_temperature(self) - -# Register AutoCalResult_shmLink201 in _mscl: -_mscl.AutoCalResult_shmLink201_swigregister(AutoCalResult_shmLink201) - -class AutoShuntCalResult(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoShuntCalResult_swiginit(self, _mscl.new_AutoShuntCalResult()) - __swig_destroy__ = _mscl.delete_AutoShuntCalResult - - def errorFlag(self): - return _mscl.AutoShuntCalResult_errorFlag(self) - - def slope(self): - return _mscl.AutoShuntCalResult_slope(self) - - def offset(self): - return _mscl.AutoShuntCalResult_offset(self) - - def baseMedian(self): - return _mscl.AutoShuntCalResult_baseMedian(self) - - def baseMin(self): - return _mscl.AutoShuntCalResult_baseMin(self) - - def baseMax(self): - return _mscl.AutoShuntCalResult_baseMax(self) - - def shuntMedian(self): - return _mscl.AutoShuntCalResult_shuntMedian(self) - - def shuntMin(self): - return _mscl.AutoShuntCalResult_shuntMin(self) - - def shuntMax(self): - return _mscl.AutoShuntCalResult_shuntMax(self) - -# Register AutoShuntCalResult in _mscl: -_mscl.AutoShuntCalResult_swigregister(AutoShuntCalResult) - -class PingResponse(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PingResponse_swiginit(self, _mscl.new_PingResponse()) - - def success(self): - return _mscl.PingResponse_success(self) - - def nodeRssi(self): - return _mscl.PingResponse_nodeRssi(self) - - def baseRssi(self): - return _mscl.PingResponse_baseRssi(self) - __swig_destroy__ = _mscl.delete_PingResponse - -# Register PingResponse in _mscl: -_mscl.PingResponse_swigregister(PingResponse) - -class SetToIdleStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - setToIdleResult_success = _mscl.SetToIdleStatus_setToIdleResult_success - setToIdleResult_canceled = _mscl.SetToIdleStatus_setToIdleResult_canceled - setToIdleResult_failed = _mscl.SetToIdleStatus_setToIdleResult_failed - setToIdleResult_notCompleted = _mscl.SetToIdleStatus_setToIdleResult_notCompleted - - def result(self): - return _mscl.SetToIdleStatus_result(self) - - def complete(self, timeout=10): - return _mscl.SetToIdleStatus_complete(self, timeout) - - def cancel(self): - return _mscl.SetToIdleStatus_cancel(self) - __swig_destroy__ = _mscl.delete_SetToIdleStatus - -# Register SetToIdleStatus in _mscl: -_mscl.SetToIdleStatus_swigregister(SetToIdleStatus) - -class NodeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region): - _mscl.NodeInfo_swiginit(self, _mscl.new_NodeInfo(fw, model, region)) - __swig_destroy__ = _mscl.delete_NodeInfo - -# Register NodeInfo in _mscl: -_mscl.NodeInfo_swigregister(NodeInfo) - -class WirelessNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, nodeAddress, basestation): - _mscl.WirelessNode_swiginit(self, _mscl.new_WirelessNode(nodeAddress, basestation)) - __swig_destroy__ = _mscl.delete_WirelessNode - - @staticmethod - def Mock(*args): - return _mscl.WirelessNode_Mock(*args) - - @staticmethod - def deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - - def features(self): - return _mscl.WirelessNode_features(self) - - def lastCommunicationTime(self): - return _mscl.WirelessNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.WirelessNode_lastDeviceState(self) - - def setBaseStation(self, basestation): - return _mscl.WirelessNode_setBaseStation(self, basestation) - - def getBaseStation(self): - return _mscl.WirelessNode_getBaseStation(self) - - def hasBaseStation(self, basestation): - return _mscl.WirelessNode_hasBaseStation(self, basestation) - - def useGroupRead(self, useGroup): - return _mscl.WirelessNode_useGroupRead(self, useGroup) - - def readWriteRetries(self, *args): - return _mscl.WirelessNode_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.WirelessNode_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.WirelessNode_clearEepromCache(self) - - def updateEepromCacheFromNodeDiscovery(self, nodeDisovery): - return _mscl.WirelessNode_updateEepromCacheFromNodeDiscovery(self, nodeDisovery) - - def getEepromCache(self): - return _mscl.WirelessNode_getEepromCache(self) - - def nodeAddress(self): - return _mscl.WirelessNode_nodeAddress(self) - - def frequency(self): - return _mscl.WirelessNode_frequency(self) - - def communicationProtocol(self): - return _mscl.WirelessNode_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.WirelessNode_firmwareVersion(self) - - def model(self): - return _mscl.WirelessNode_model(self) - - def serial(self): - return _mscl.WirelessNode_serial(self) - - def name(self): - return _mscl.WirelessNode_name(self) - - def microcontroller(self): - return _mscl.WirelessNode_microcontroller(self) - - def radioFeatures(self): - return _mscl.WirelessNode_radioFeatures(self) - - def dataStorageSize(self): - return _mscl.WirelessNode_dataStorageSize(self) - - def regionCode(self): - return _mscl.WirelessNode_regionCode(self) - - def ping(self): - return _mscl.WirelessNode_ping(self) - - def sleep(self): - return _mscl.WirelessNode_sleep(self) - - def cyclePower(self): - return _mscl.WirelessNode_cyclePower(self) - - def resetRadio(self): - return _mscl.WirelessNode_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.WirelessNode_changeFrequency(self, frequency) - - def setToIdle(self): - return _mscl.WirelessNode_setToIdle(self) - - def erase(self): - return _mscl.WirelessNode_erase(self) - - def startNonSyncSampling(self): - return _mscl.WirelessNode_startNonSyncSampling(self) - - def resendStartSyncSampling(self): - return _mscl.WirelessNode_resendStartSyncSampling(self) - - def clearHistogram(self): - return _mscl.WirelessNode_clearHistogram(self) - - def autoBalance(self, mask, targetPercent): - return _mscl.WirelessNode_autoBalance(self, mask, targetPercent) - - def autoCal_shmLink(self): - return _mscl.WirelessNode_autoCal_shmLink(self) - - def autoCal_shmLink201(self): - return _mscl.WirelessNode_autoCal_shmLink201(self) - - def autoShuntCal(self, mask, commandInfo): - return _mscl.WirelessNode_autoShuntCal(self, mask, commandInfo) - - def poll(self, mask): - return _mscl.WirelessNode_poll(self, mask) - - def readEeprom(self, location): - return _mscl.WirelessNode_readEeprom(self, location) - - def writeEeprom(self, location, value): - return _mscl.WirelessNode_writeEeprom(self, location, value) - - def getDiagnosticInfo(self): - return _mscl.WirelessNode_getDiagnosticInfo(self) - - def testCommunicationProtocol(self, protocol): - return _mscl.WirelessNode_testCommunicationProtocol(self, protocol) - - def verifyConfig(self, config, outIssues): - return _mscl.WirelessNode_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.WirelessNode_applyConfig(self, config) - - def getNumDatalogSessions(self): - return _mscl.WirelessNode_getNumDatalogSessions(self) - - def percentFull(self): - return _mscl.WirelessNode_percentFull(self) - - def getDefaultMode(self): - return _mscl.WirelessNode_getDefaultMode(self) - - def getInactivityTimeout(self): - return _mscl.WirelessNode_getInactivityTimeout(self) - - def getCheckRadioInterval(self): - return _mscl.WirelessNode_getCheckRadioInterval(self) - - def getTransmitPower(self): - return _mscl.WirelessNode_getTransmitPower(self) - - def getSamplingMode(self): - return _mscl.WirelessNode_getSamplingMode(self) - - def getActiveChannels(self): - return _mscl.WirelessNode_getActiveChannels(self) - - def getSampleRate(self): - return _mscl.WirelessNode_getSampleRate(self) - - def getNumSweeps(self): - return _mscl.WirelessNode_getNumSweeps(self) - - def getUnlimitedDuration(self): - return _mscl.WirelessNode_getUnlimitedDuration(self) - - def getDataFormat(self): - return _mscl.WirelessNode_getDataFormat(self) - - def getDataCollectionMethod(self): - return _mscl.WirelessNode_getDataCollectionMethod(self) - - def getTimeBetweenBursts(self): - return _mscl.WirelessNode_getTimeBetweenBursts(self) - - def getLostBeaconTimeout(self): - return _mscl.WirelessNode_getLostBeaconTimeout(self) - - def getInputRange(self, mask): - return _mscl.WirelessNode_getInputRange(self, mask) - - def getHardwareOffset(self, mask): - return _mscl.WirelessNode_getHardwareOffset(self, mask) - - def getAntiAliasingFilter(self, mask): - return _mscl.WirelessNode_getAntiAliasingFilter(self, mask) - - def getCfcFilterConfiguration(self): - return _mscl.WirelessNode_getCfcFilterConfiguration(self) - - def getLowPassFilter(self, mask): - return _mscl.WirelessNode_getLowPassFilter(self, mask) - - def getHighPassFilter(self, mask): - return _mscl.WirelessNode_getHighPassFilter(self, mask) - - def getDebounceFilter(self, mask): - return _mscl.WirelessNode_getDebounceFilter(self, mask) - - def getPullUpResistor(self, mask): - return _mscl.WirelessNode_getPullUpResistor(self, mask) - - def getSensorOutputMode(self): - return _mscl.WirelessNode_getSensorOutputMode(self) - - def getGaugeFactor(self, mask): - return _mscl.WirelessNode_getGaugeFactor(self, mask) - - def getExcitationVoltage(self): - return _mscl.WirelessNode_getExcitationVoltage(self) - - def getAdcVoltageRef(self): - return _mscl.WirelessNode_getAdcVoltageRef(self) - - def getGainAmplifierVoltageRef(self): - return _mscl.WirelessNode_getGainAmplifierVoltageRef(self) - - def getGaugeResistance(self): - return _mscl.WirelessNode_getGaugeResistance(self) - - def getNumActiveGauges(self): - return _mscl.WirelessNode_getNumActiveGauges(self) - - def getLowBatteryThreshold(self): - return _mscl.WirelessNode_getLowBatteryThreshold(self) - - def getLinearEquation(self, mask): - return _mscl.WirelessNode_getLinearEquation(self, mask) - - def getUnit(self, mask): - return _mscl.WirelessNode_getUnit(self, mask) - - def getEquationType(self, mask): - return _mscl.WirelessNode_getEquationType(self, mask) - - def getFactoryCalibrationLinearEq(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationLinearEq(self, mask) - - def getFactoryCalibrationUnit(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationUnit(self, mask) - - def getFactoryCalibrationEqType(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationEqType(self, mask) - - def getFilterSettlingTime(self, mask): - return _mscl.WirelessNode_getFilterSettlingTime(self, mask) - - def getThermocoupleType(self, mask): - return _mscl.WirelessNode_getThermocoupleType(self, mask) - - def getTempSensorOptions(self, mask): - return _mscl.WirelessNode_getTempSensorOptions(self, mask) - - def getFatigueOptions(self): - return _mscl.WirelessNode_getFatigueOptions(self) - - def getHistogramOptions(self): - return _mscl.WirelessNode_getHistogramOptions(self) - - def getActivitySense(self): - return _mscl.WirelessNode_getActivitySense(self) - - def getEventTriggerOptions(self): - return _mscl.WirelessNode_getEventTriggerOptions(self) - - def getDiagnosticInterval(self): - return _mscl.WirelessNode_getDiagnosticInterval(self) - - def getStorageLimitMode(self): - return _mscl.WirelessNode_getStorageLimitMode(self) - - def getSensorDelay(self): - return _mscl.WirelessNode_getSensorDelay(self) - - def getDataMode(self): - return _mscl.WirelessNode_getDataMode(self) - - def getDerivedDataRate(self): - return _mscl.WirelessNode_getDerivedDataRate(self) - - def getDerivedChannelMask(self, category): - return _mscl.WirelessNode_getDerivedChannelMask(self, category) - - def getDerivedVelocityUnit(self): - return _mscl.WirelessNode_getDerivedVelocityUnit(self) - -# Register WirelessNode in _mscl: -_mscl.WirelessNode_swigregister(WirelessNode) - -def WirelessNode_Mock(*args): - return _mscl.WirelessNode_Mock(*args) - -def WirelessNode_deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - -class DatalogDownloader(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.DatalogDownloader_swiginit(self, _mscl.new_DatalogDownloader(*args)) - __swig_destroy__ = _mscl.delete_DatalogDownloader - - def complete(self): - return _mscl.DatalogDownloader_complete(self) - - def percentComplete(self): - return _mscl.DatalogDownloader_percentComplete(self) - - def getNextData(self): - return _mscl.DatalogDownloader_getNextData(self) - - def metaDataUpdated(self): - return _mscl.DatalogDownloader_metaDataUpdated(self) - - def calCoefficientsUpdated(self): - return _mscl.DatalogDownloader_calCoefficientsUpdated(self) - - def startOfSession(self): - return _mscl.DatalogDownloader_startOfSession(self) - - def sessionIndex(self): - return _mscl.DatalogDownloader_sessionIndex(self) - - def sampleRate(self): - return _mscl.DatalogDownloader_sampleRate(self) - - def userString(self): - return _mscl.DatalogDownloader_userString(self) - - def calCoefficients(self): - return _mscl.DatalogDownloader_calCoefficients(self) - -# Register DatalogDownloader in _mscl: -_mscl.DatalogDownloader_swigregister(DatalogDownloader) - -class ArmedDataloggingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.ArmedDataloggingNetwork_swiginit(self, _mscl.new_ArmedDataloggingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.ArmedDataloggingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.ArmedDataloggingNetwork_removeNode(self, nodeAddress) - - def startSampling(self): - return _mscl.ArmedDataloggingNetwork_startSampling(self) - __swig_destroy__ = _mscl.delete_ArmedDataloggingNetwork - -# Register ArmedDataloggingNetwork in _mscl: -_mscl.ArmedDataloggingNetwork_swigregister(ArmedDataloggingNetwork) - -class SyncNetworkInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - status_OK = _mscl.SyncNetworkInfo_status_OK - status_PoorCommunication = _mscl.SyncNetworkInfo_status_PoorCommunication - status_DoesNotFit = _mscl.SyncNetworkInfo_status_DoesNotFit - status_Contention = _mscl.SyncNetworkInfo_status_Contention - - def __init__(self, node): - _mscl.SyncNetworkInfo_swiginit(self, _mscl.new_SyncNetworkInfo(node)) - - def status(self): - return _mscl.SyncNetworkInfo_status(self) - - def startedSampling(self): - return _mscl.SyncNetworkInfo_startedSampling(self) - - def configurationApplied(self): - return _mscl.SyncNetworkInfo_configurationApplied(self) - - def percentBandwidth(self): - return _mscl.SyncNetworkInfo_percentBandwidth(self) - - def tdmaAddress(self): - return _mscl.SyncNetworkInfo_tdmaAddress(self) - - def maxTdmaAddress(self): - return _mscl.SyncNetworkInfo_maxTdmaAddress(self) - - def transmissionPerGroup(self): - return _mscl.SyncNetworkInfo_transmissionPerGroup(self) - - def groupSize(self): - return _mscl.SyncNetworkInfo_groupSize(self) - __swig_destroy__ = _mscl.delete_SyncNetworkInfo - -# Register SyncNetworkInfo in _mscl: -_mscl.SyncNetworkInfo_swigregister(SyncNetworkInfo) - -class SyncSamplingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.SyncSamplingNetwork_swiginit(self, _mscl.new_SyncSamplingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.SyncSamplingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.SyncSamplingNetwork_removeNode(self, nodeAddress) - - def percentBandwidth(self): - return _mscl.SyncSamplingNetwork_percentBandwidth(self) - - def ok(self): - return _mscl.SyncSamplingNetwork_ok(self) - - def refresh(self): - return _mscl.SyncSamplingNetwork_refresh(self) - - def lossless(self, *args): - return _mscl.SyncSamplingNetwork_lossless(self, *args) - - def communicationProtocol(self, *args): - return _mscl.SyncSamplingNetwork_communicationProtocol(self, *args) - - def applyConfiguration(self): - return _mscl.SyncSamplingNetwork_applyConfiguration(self) - - def startSampling(self, *args): - return _mscl.SyncSamplingNetwork_startSampling(self, *args) - - def startSampling_noBeacon(self): - return _mscl.SyncSamplingNetwork_startSampling_noBeacon(self) - - def getNodeNetworkInfo(self, nodeAddress): - return _mscl.SyncSamplingNetwork_getNodeNetworkInfo(self, nodeAddress) - __swig_destroy__ = _mscl.delete_SyncSamplingNetwork - -# Register SyncSamplingNetwork in _mscl: -_mscl.SyncSamplingNetwork_swigregister(SyncSamplingNetwork) - -class NodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_NodeFeatures - - def normalizeNumSweeps(self, sweeps): - return _mscl.NodeFeatures_normalizeNumSweeps(self, sweeps) - - def normalizeTimeBetweenBursts(self, time): - return _mscl.NodeFeatures_normalizeTimeBetweenBursts(self, time) - - def channels(self): - return _mscl.NodeFeatures_channels(self) - - def channelGroups(self): - return _mscl.NodeFeatures_channelGroups(self) - - def channelType(self, channelNumber): - return _mscl.NodeFeatures_channelType(self, channelNumber) - - def supportsChannelSetting(self, setting, mask): - return _mscl.NodeFeatures_supportsChannelSetting(self, setting, mask) - - def supportsInputRangePerExcitationVoltage(self): - return _mscl.NodeFeatures_supportsInputRangePerExcitationVoltage(self) - - def supportsHardwareOffset(self): - return _mscl.NodeFeatures_supportsHardwareOffset(self) - - def supportsAntiAliasingFilter(self): - return _mscl.NodeFeatures_supportsAntiAliasingFilter(self) - - def supportsLowPassFilter(self): - return _mscl.NodeFeatures_supportsLowPassFilter(self) - - def supportsHighPassFilter(self): - return _mscl.NodeFeatures_supportsHighPassFilter(self) - - def supportsGaugeFactor(self): - return _mscl.NodeFeatures_supportsGaugeFactor(self) - - def supportsGaugeResistance(self): - return _mscl.NodeFeatures_supportsGaugeResistance(self) - - def supportsNumActiveGauges(self): - return _mscl.NodeFeatures_supportsNumActiveGauges(self) - - def supportsLostBeaconTimeout(self): - return _mscl.NodeFeatures_supportsLostBeaconTimeout(self) - - def supportsPullUpResistor(self): - return _mscl.NodeFeatures_supportsPullUpResistor(self) - - def supportsFilterSettlingTime(self): - return _mscl.NodeFeatures_supportsFilterSettlingTime(self) - - def supportsThermocoupleType(self): - return _mscl.NodeFeatures_supportsThermocoupleType(self) - - def supportsTempSensorOptions(self): - return _mscl.NodeFeatures_supportsTempSensorOptions(self) - - def supportsDebounceFilter(self): - return _mscl.NodeFeatures_supportsDebounceFilter(self) - - def supportsFatigueConfig(self): - return _mscl.NodeFeatures_supportsFatigueConfig(self) - - def supportsYoungsModConfig(self): - return _mscl.NodeFeatures_supportsYoungsModConfig(self) - - def supportsPoissonsRatioConfig(self): - return _mscl.NodeFeatures_supportsPoissonsRatioConfig(self) - - def supportsFatigueDebugModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueDebugModeConfig(self) - - def supportsFatigueModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueModeConfig(self) - - def supportsHistogramConfig(self): - return _mscl.NodeFeatures_supportsHistogramConfig(self) - - def supportsHistogramRateConfig(self): - return _mscl.NodeFeatures_supportsHistogramRateConfig(self) - - def supportsHistogramEnableConfig(self): - return _mscl.NodeFeatures_supportsHistogramEnableConfig(self) - - def supportsActivitySense(self): - return _mscl.NodeFeatures_supportsActivitySense(self) - - def supportsAutoBalance(self): - return _mscl.NodeFeatures_supportsAutoBalance(self) - - def supportsLegacyShuntCal(self): - return _mscl.NodeFeatures_supportsLegacyShuntCal(self) - - def supportsAutoCal_shm(self): - return _mscl.NodeFeatures_supportsAutoCal_shm(self) - - def supportsAutoCal_shm201(self): - return _mscl.NodeFeatures_supportsAutoCal_shm201(self) - - def supportsAutoShuntCal(self): - return _mscl.NodeFeatures_supportsAutoShuntCal(self) - - def supportsGetFactoryCal(self): - return _mscl.NodeFeatures_supportsGetFactoryCal(self) - - def supportsLimitedDuration(self): - return _mscl.NodeFeatures_supportsLimitedDuration(self) - - def supportsEventTrigger(self): - return _mscl.NodeFeatures_supportsEventTrigger(self) - - def supportsDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsDiagnosticInfo(self) - - def supportsLoggedData(self): - return _mscl.NodeFeatures_supportsLoggedData(self) - - def supportsPoll(self): - return _mscl.NodeFeatures_supportsPoll(self) - - def supportsSensorDelayConfig(self): - return _mscl.NodeFeatures_supportsSensorDelayConfig(self) - - def supportsSensorDelayAlwaysOn(self): - return _mscl.NodeFeatures_supportsSensorDelayAlwaysOn(self) - - def supportsSensorOutputMode(self): - return _mscl.NodeFeatures_supportsSensorOutputMode(self) - - def supportsCfcFilterConfiguration(self): - return _mscl.NodeFeatures_supportsCfcFilterConfiguration(self) - - def supportsChannel(self, channelNumber): - return _mscl.NodeFeatures_supportsChannel(self, channelNumber) - - def supportsSamplingMode(self, samplingMode): - return _mscl.NodeFeatures_supportsSamplingMode(self, samplingMode) - - def supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.NodeFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsDataFormat(self, dataFormat): - return _mscl.NodeFeatures_supportsDataFormat(self, dataFormat) - - def supportsDefaultMode(self, mode): - return _mscl.NodeFeatures_supportsDefaultMode(self, mode) - - def supportsDataCollectionMethod(self, collectionMethod): - return _mscl.NodeFeatures_supportsDataCollectionMethod(self, collectionMethod) - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.NodeFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsDataMode(self, dataMode): - return _mscl.NodeFeatures_supportsDataMode(self, dataMode) - - def supportsTransducerType(self, transducerType): - return _mscl.NodeFeatures_supportsTransducerType(self, transducerType) - - def supportsFatigueMode(self, mode): - return _mscl.NodeFeatures_supportsFatigueMode(self, mode) - - def supportsInputRange(self, *args): - return _mscl.NodeFeatures_supportsInputRange(self, *args) - - def supportsCentisecondEventDuration(self): - return _mscl.NodeFeatures_supportsCentisecondEventDuration(self) - - def supportsGetDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsGetDiagnosticInfo(self) - - def supportsNonSyncLogWithTimestamps(self): - return _mscl.NodeFeatures_supportsNonSyncLogWithTimestamps(self) - - def supportsDerivedCategory(self, category): - return _mscl.NodeFeatures_supportsDerivedCategory(self, category) - - def supportsRawDataMode(self): - return _mscl.NodeFeatures_supportsRawDataMode(self) - - def supportsDerivedDataMode(self): - return _mscl.NodeFeatures_supportsDerivedDataMode(self) - - def supportsDerivedVelocityUnitConfig(self): - return _mscl.NodeFeatures_supportsDerivedVelocityUnitConfig(self) - - def supportsExcitationVoltageConfig(self): - return _mscl.NodeFeatures_supportsExcitationVoltageConfig(self) - - def supportsLowBatteryThresholdConfig(self): - return _mscl.NodeFeatures_supportsLowBatteryThresholdConfig(self) - - def maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode) - - def maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode) - - def maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels): - return _mscl.NodeFeatures_maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels) - - def maxFilterSettlingTime(self, rate): - return _mscl.NodeFeatures_maxFilterSettlingTime(self, rate) - - def minInactivityTimeout(self): - return _mscl.NodeFeatures_minInactivityTimeout(self) - - def minLostBeaconTimeout(self): - return _mscl.NodeFeatures_minLostBeaconTimeout(self) - - def maxLostBeaconTimeout(self): - return _mscl.NodeFeatures_maxLostBeaconTimeout(self) - - def minCheckRadioInterval(self): - return _mscl.NodeFeatures_minCheckRadioInterval(self) - - def maxCheckRadioInterval(self): - return _mscl.NodeFeatures_maxCheckRadioInterval(self) - - def minSweeps(self): - return _mscl.NodeFeatures_minSweeps(self) - - def maxSweeps(self, samplingMode, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweeps(self, samplingMode, dataMode, dataFormat, channels) - - def maxSweepsPerBurst(self, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweepsPerBurst(self, dataMode, dataFormat, channels) - - def minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol): - return _mscl.NodeFeatures_minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol) - - def minSensorDelay(self): - return _mscl.NodeFeatures_minSensorDelay(self) - - def maxSensorDelay(self): - return _mscl.NodeFeatures_maxSensorDelay(self) - - def defaultSensorDelay(self): - return _mscl.NodeFeatures_defaultSensorDelay(self) - - def maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate): - return _mscl.NodeFeatures_maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate) - - def normalizeEventDuration(self, duration): - return _mscl.NodeFeatures_normalizeEventDuration(self, duration) - - def normalizeSensorDelay(self, delay): - return _mscl.NodeFeatures_normalizeSensorDelay(self, delay) - - def numDamageAngles(self): - return _mscl.NodeFeatures_numDamageAngles(self) - - def numSnCurveSegments(self): - return _mscl.NodeFeatures_numSnCurveSegments(self) - - def numEventTriggers(self): - return _mscl.NodeFeatures_numEventTriggers(self) - - def defaultModes(self): - return _mscl.NodeFeatures_defaultModes(self) - - def dataCollectionMethods(self): - return _mscl.NodeFeatures_dataCollectionMethods(self) - - def dataFormats(self): - return _mscl.NodeFeatures_dataFormats(self) - - def samplingModes(self): - return _mscl.NodeFeatures_samplingModes(self) - - def sampleRates(self, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_sampleRates(self, samplingMode, dataCollectionMethod, dataMode) - - def derivedDataRates(self): - return _mscl.NodeFeatures_derivedDataRates(self) - - def transmitPowers(self, *args): - return _mscl.NodeFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.NodeFeatures_commProtocols(self) - - def sensorOutputModes(self): - return _mscl.NodeFeatures_sensorOutputModes(self) - - def cfcFilters(self): - return _mscl.NodeFeatures_cfcFilters(self) - - def histogramTransmitRates(self): - return _mscl.NodeFeatures_histogramTransmitRates(self) - - def fatigueModes(self): - return _mscl.NodeFeatures_fatigueModes(self) - - def antiAliasingFilters(self): - return _mscl.NodeFeatures_antiAliasingFilters(self) - - def lowPassFilters(self): - return _mscl.NodeFeatures_lowPassFilters(self) - - def highPassFilters(self): - return _mscl.NodeFeatures_highPassFilters(self) - - def storageLimitModes(self): - return _mscl.NodeFeatures_storageLimitModes(self) - - def inputRanges(self, *args): - return _mscl.NodeFeatures_inputRanges(self, *args) - - def dataModes(self): - return _mscl.NodeFeatures_dataModes(self) - - def transducerTypes(self): - return _mscl.NodeFeatures_transducerTypes(self) - - def channelsPerDerivedCategory(self): - return _mscl.NodeFeatures_channelsPerDerivedCategory(self) - - def excitationVoltages(self): - return _mscl.NodeFeatures_excitationVoltages(self) - - def adcVoltageInputType(self): - return _mscl.NodeFeatures_adcVoltageInputType(self) - - def maxTransmitPower(self, *args): - return _mscl.NodeFeatures_maxTransmitPower(self, *args) - - def minTransmitPower(self, *args): - return _mscl.NodeFeatures_minTransmitPower(self, *args) - -# Register NodeFeatures in _mscl: -_mscl.NodeFeatures_swigregister(NodeFeatures) - -class BaseStationFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_BaseStationFeatures - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.BaseStationFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.BaseStationFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsButtons(self): - return _mscl.BaseStationFeatures_supportsButtons(self) - - def supportsAnalogPairing(self): - return _mscl.BaseStationFeatures_supportsAnalogPairing(self) - - def supportsBeaconStatus(self): - return _mscl.BaseStationFeatures_supportsBeaconStatus(self) - - def supportsRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsRfSweepMode(self) - - def supportsCustomRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsCustomRfSweepMode(self) - - def buttonCount(self): - return _mscl.BaseStationFeatures_buttonCount(self) - - def analogPortCount(self): - return _mscl.BaseStationFeatures_analogPortCount(self) - - def transmitPowers(self, *args): - return _mscl.BaseStationFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.BaseStationFeatures_commProtocols(self) - - def maxTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_maxTransmitPower(self, region, commProtocol) - - def minTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_minTransmitPower(self, region, commProtocol) - -# Register BaseStationFeatures in _mscl: -_mscl.BaseStationFeatures_swigregister(BaseStationFeatures) - -class EulerAngles(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EulerAngles_swiginit(self, _mscl.new_EulerAngles(*args)) - - def asMipFieldValues(self): - return _mscl.EulerAngles_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.EulerAngles_appendMipFieldValues(self, appendTo) - - def roll(self): - return _mscl.EulerAngles_roll(self) - - def pitch(self): - return _mscl.EulerAngles_pitch(self) - - def yaw(self): - return _mscl.EulerAngles_yaw(self) - - def heading(self): - return _mscl.EulerAngles_heading(self) - __swig_destroy__ = _mscl.delete_EulerAngles - -# Register EulerAngles in _mscl: -_mscl.EulerAngles_swigregister(EulerAngles) - -class Quaternion(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Quaternion_swiginit(self, _mscl.new_Quaternion(*args)) - - def asMipFieldValues(self): - return _mscl.Quaternion_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Quaternion_appendMipFieldValues(self, appendTo) - - def normalize(self): - return _mscl.Quaternion_normalize(self) - - def q0(self): - return _mscl.Quaternion_q0(self) - - def q1(self): - return _mscl.Quaternion_q1(self) - - def q2(self): - return _mscl.Quaternion_q2(self) - - def q3(self): - return _mscl.Quaternion_q3(self) - __swig_destroy__ = _mscl.delete_Quaternion - -# Register Quaternion in _mscl: -_mscl.Quaternion_swigregister(Quaternion) - -class Rotation(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EULER_ANGLES = _mscl.Rotation_EULER_ANGLES - QUATERNION = _mscl.Rotation_QUATERNION - - def __init__(self, *args): - _mscl.Rotation_swiginit(self, _mscl.new_Rotation(*args)) - - @staticmethod - def FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - - @staticmethod - def FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - - def asEulerAngles(self): - return _mscl.Rotation_asEulerAngles(self) - - def asQuaternion(self): - return _mscl.Rotation_asQuaternion(self) - - def asMipFieldValues(self, includeFormat=True): - return _mscl.Rotation_asMipFieldValues(self, includeFormat) - - def appendMipFieldValues(self, appendTo, includeFormat=True): - return _mscl.Rotation_appendMipFieldValues(self, appendTo, includeFormat) - - def format(self): - return _mscl.Rotation_format(self) - __swig_destroy__ = _mscl.delete_Rotation - -# Register Rotation in _mscl: -_mscl.Rotation_swigregister(Rotation) - -def Rotation_FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - -def Rotation_FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - -class Vec3f(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Vec3f_swiginit(self, _mscl.new_Vec3f(*args)) - __swig_destroy__ = _mscl.delete_Vec3f - - def fromMipFieldValues(self, data, offset=0): - return _mscl.Vec3f_fromMipFieldValues(self, data, offset) - - def asMipFieldValues(self): - return _mscl.Vec3f_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Vec3f_appendMipFieldValues(self, appendTo) - - def x(self, *args): - return _mscl.Vec3f_x(self, *args) - - def y(self, *args): - return _mscl.Vec3f_y(self, *args) - - def z(self, *args): - return _mscl.Vec3f_z(self, *args) - -# Register Vec3f in _mscl: -_mscl.Vec3f_swigregister(Vec3f) - -ECEF = _mscl.ECEF -LLH_NED = _mscl.LLH_NED -LOCAL = _mscl.LOCAL -VEHICLE = _mscl.VEHICLE -class GeometricVector(Vec3f): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - - @staticmethod - def VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - - def __init__(self, *args): - _mscl.GeometricVector_swiginit(self, _mscl.new_GeometricVector(*args)) - __swig_destroy__ = _mscl.delete_GeometricVector - - def fromMipFieldValues_includesFrame(self, data, offset=0): - return _mscl.GeometricVector_fromMipFieldValues_includesFrame(self, data, offset) - - def asMipFieldValues_includeFrame(self): - return _mscl.GeometricVector_asMipFieldValues_includeFrame(self) - - def appendMipFieldValues_includeFrame(self, appendTo): - return _mscl.GeometricVector_appendMipFieldValues_includeFrame(self, appendTo) - referenceFrame = property(_mscl.GeometricVector_referenceFrame_get, _mscl.GeometricVector_referenceFrame_set) - - def north(self, *args): - return _mscl.GeometricVector_north(self, *args) - - def east(self, *args): - return _mscl.GeometricVector_east(self, *args) - - def down(self, *args): - return _mscl.GeometricVector_down(self, *args) - -# Register GeometricVector in _mscl: -_mscl.GeometricVector_swigregister(GeometricVector) - -def GeometricVector_VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - -def GeometricVector_VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - -class PositionOffset(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.PositionOffset_swiginit(self, _mscl.new_PositionOffset(*args)) - __swig_destroy__ = _mscl.delete_PositionOffset - -# Register PositionOffset in _mscl: -_mscl.PositionOffset_swigregister(PositionOffset) - -class Velocity(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Velocity_swiginit(self, _mscl.new_Velocity(*args)) - __swig_destroy__ = _mscl.delete_Velocity - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - - @staticmethod - def NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - - @staticmethod - def Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -# Register Velocity in _mscl: -_mscl.Velocity_swigregister(Velocity) - -def Velocity_ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - -def Velocity_NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - -def Velocity_Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -class Position(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - - def __init__(self, *args): - _mscl.Position_swiginit(self, _mscl.new_Position(*args)) - __swig_destroy__ = _mscl.delete_Position - referenceFrame = property(_mscl.Position_referenceFrame_get, _mscl.Position_referenceFrame_set) - - def latitude(self, *args): - return _mscl.Position_latitude(self, *args) - - def longitude(self, *args): - return _mscl.Position_longitude(self, *args) - - def altitude(self, *args): - return _mscl.Position_altitude(self, *args) - - def height(self, *args): - return _mscl.Position_height(self, *args) - - def x(self, *args): - return _mscl.Position_x(self, *args) - - def y(self, *args): - return _mscl.Position_y(self, *args) - - def z(self, *args): - return _mscl.Position_z(self, *args) - -# Register Position in _mscl: -_mscl.Position_swigregister(Position) - -def Position_LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - -def Position_ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - -class GeometricUncertainty(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeometricUncertainty_swiginit(self, _mscl.new_GeometricUncertainty(*args)) - __swig_destroy__ = _mscl.delete_GeometricUncertainty - -# Register GeometricUncertainty in _mscl: -_mscl.GeometricUncertainty_swigregister(GeometricUncertainty) - -class MipModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_3dm_dh3 = _mscl.MipModels_node_3dm_dh3 - node_3dm_gx3_15 = _mscl.MipModels_node_3dm_gx3_15 - node_3dm_gx3_25 = _mscl.MipModels_node_3dm_gx3_25 - node_3dm_gx3_35 = _mscl.MipModels_node_3dm_gx3_35 - node_3dm_gx3_45 = _mscl.MipModels_node_3dm_gx3_45 - node_3dm_rq1_45_lt = _mscl.MipModels_node_3dm_rq1_45_lt - node_3dm_gx4_15 = _mscl.MipModels_node_3dm_gx4_15 - node_3dm_gx4_25 = _mscl.MipModels_node_3dm_gx4_25 - node_3dm_gx4_45 = _mscl.MipModels_node_3dm_gx4_45 - node_3dm_rq1_45_st = _mscl.MipModels_node_3dm_rq1_45_st - node_mv5_ar = _mscl.MipModels_node_mv5_ar - node_3dm_gx5_10 = _mscl.MipModels_node_3dm_gx5_10 - node_3dm_gx5_15 = _mscl.MipModels_node_3dm_gx5_15 - node_3dm_gx5_25 = _mscl.MipModels_node_3dm_gx5_25 - node_3dm_gx5_35 = _mscl.MipModels_node_3dm_gx5_35 - node_3dm_gx5_45 = _mscl.MipModels_node_3dm_gx5_45 - node_3dm_cv5_10 = _mscl.MipModels_node_3dm_cv5_10 - node_3dm_cv5_15 = _mscl.MipModels_node_3dm_cv5_15 - node_3dm_cv5_25 = _mscl.MipModels_node_3dm_cv5_25 - node_3dm_cv5_45 = _mscl.MipModels_node_3dm_cv5_45 - node_3dm_gq4_45 = _mscl.MipModels_node_3dm_gq4_45 - node_3dm_cx5_45 = _mscl.MipModels_node_3dm_cx5_45 - node_3dm_cx5_35 = _mscl.MipModels_node_3dm_cx5_35 - node_3dm_cx5_25 = _mscl.MipModels_node_3dm_cx5_25 - node_3dm_cx5_15 = _mscl.MipModels_node_3dm_cx5_15 - node_3dm_cx5_10 = _mscl.MipModels_node_3dm_cx5_10 - node_3dm_cl5_15 = _mscl.MipModels_node_3dm_cl5_15 - node_3dm_cl5_25 = _mscl.MipModels_node_3dm_cl5_25 - node_3dm_gq7 = _mscl.MipModels_node_3dm_gq7 - node_3dm_rtk = _mscl.MipModels_node_3dm_rtk - node_3dm_cv7_ahrs = _mscl.MipModels_node_3dm_cv7_ahrs - node_3dm_cv7_ar = _mscl.MipModels_node_3dm_cv7_ar - node_3dm_gv7_ahrs = _mscl.MipModels_node_3dm_gv7_ahrs - node_3dm_gv7_ar = _mscl.MipModels_node_3dm_gv7_ar - node_3dm_gv7_ins = _mscl.MipModels_node_3dm_gv7_ins - node_3dm_cv7_ins = _mscl.MipModels_node_3dm_cv7_ins - node_3dm_cv7_gnss_ins = _mscl.MipModels_node_3dm_cv7_gnss_ins - placeholder_matchAll = _mscl.MipModels_placeholder_matchAll - rtk_v1 = _mscl.MipModels_rtk_v1 - rtk_v2 = _mscl.MipModels_rtk_v2 - model_3dm_dh3 = _mscl.MipModels_model_3dm_dh3 - model_3dm_gx3_15 = _mscl.MipModels_model_3dm_gx3_15 - model_3dm_gx3_25 = _mscl.MipModels_model_3dm_gx3_25 - model_3dm_gx3_35 = _mscl.MipModels_model_3dm_gx3_35 - model_3dm_gx3_45 = _mscl.MipModels_model_3dm_gx3_45 - model_3dm_rq1_45_lt = _mscl.MipModels_model_3dm_rq1_45_lt - model_3dm_gx4_15 = _mscl.MipModels_model_3dm_gx4_15 - model_3dm_gx4_25 = _mscl.MipModels_model_3dm_gx4_25 - model_3dm_gx4_45 = _mscl.MipModels_model_3dm_gx4_45 - model_3dm_rq1_45_st = _mscl.MipModels_model_3dm_rq1_45_st - model_mv5_ar = _mscl.MipModels_model_mv5_ar - model_3dm_gx5_10 = _mscl.MipModels_model_3dm_gx5_10 - model_3dm_gx5_15 = _mscl.MipModels_model_3dm_gx5_15 - model_3dm_gx5_25 = _mscl.MipModels_model_3dm_gx5_25 - model_3dm_gx5_35 = _mscl.MipModels_model_3dm_gx5_35 - model_3dm_gx5_45 = _mscl.MipModels_model_3dm_gx5_45 - model_3dm_cv5_10 = _mscl.MipModels_model_3dm_cv5_10 - model_3dm_cv5_15 = _mscl.MipModels_model_3dm_cv5_15 - model_3dm_cv5_25 = _mscl.MipModels_model_3dm_cv5_25 - model_3dm_cv5_45 = _mscl.MipModels_model_3dm_cv5_45 - model_3dm_gq4_45 = _mscl.MipModels_model_3dm_gq4_45 - model_3dm_cx5_45 = _mscl.MipModels_model_3dm_cx5_45 - model_3dm_cx5_35 = _mscl.MipModels_model_3dm_cx5_35 - model_3dm_cx5_25 = _mscl.MipModels_model_3dm_cx5_25 - model_3dm_cx5_15 = _mscl.MipModels_model_3dm_cx5_15 - model_3dm_cx5_10 = _mscl.MipModels_model_3dm_cx5_10 - model_3dm_cl5_15 = _mscl.MipModels_model_3dm_cl5_15 - model_3dm_cl5_25 = _mscl.MipModels_model_3dm_cl5_25 - model_3dm_gq7 = _mscl.MipModels_model_3dm_gq7 - model_3dm_rtk_v1 = _mscl.MipModels_model_3dm_rtk_v1 - model_3dm_rtk = _mscl.MipModels_model_3dm_rtk - model_3dm_cv7_ahrs = _mscl.MipModels_model_3dm_cv7_ahrs - model_3dm_cv7_ar = _mscl.MipModels_model_3dm_cv7_ar - model_3dm_gv7_ahrs = _mscl.MipModels_model_3dm_gv7_ahrs - model_3dm_gv7_ar = _mscl.MipModels_model_3dm_gv7_ar - model_3dm_gv7_ins = _mscl.MipModels_model_3dm_gv7_ins - model_3dm_cv7_ins = _mscl.MipModels_model_3dm_cv7_ins - model_3dm_cv7_gnss_ins = _mscl.MipModels_model_3dm_cv7_gnss_ins - - @staticmethod - def modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - - @staticmethod - def modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - - @staticmethod - def modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - - @staticmethod - def nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - - @staticmethod - def modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - - @staticmethod - def nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - - @staticmethod - def modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - - @staticmethod - def stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - - def __init__(self): - _mscl.MipModels_swiginit(self, _mscl.new_MipModels()) - __swig_destroy__ = _mscl.delete_MipModels - -# Register MipModels in _mscl: -_mscl.MipModels_swigregister(MipModels) - -def MipModels_modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - -def MipModels_modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - -def MipModels_modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - -def MipModels_nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - -def MipModels_modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - -def MipModels_nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - -def MipModels_modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - -def MipModels_stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - -class MipModel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipModel_swiginit(self, _mscl.new_MipModel(*args)) - - def equals(self, compare): - return _mscl.MipModel_equals(self, compare) - - def __str__(self): - return _mscl.MipModel___str__(self) - - def nodeModel(self): - return _mscl.MipModel_nodeModel(self) - - def modifier(self): - return _mscl.MipModel_modifier(self) - - def modelNumber(self): - return _mscl.MipModel_modelNumber(self) - - def baseModel(self): - return _mscl.MipModel_baseModel(self) - __swig_destroy__ = _mscl.delete_MipModel - -# Register MipModel in _mscl: -_mscl.MipModel_swigregister(MipModel) -MipModel.mip_model_none = _mscl.cvar.MipModel_mip_model_none -MipModel.mip_model_3dm_dh3 = _mscl.cvar.MipModel_mip_model_3dm_dh3 -MipModel.mip_model_3dm_gx3_15 = _mscl.cvar.MipModel_mip_model_3dm_gx3_15 -MipModel.mip_model_3dm_gx3_25 = _mscl.cvar.MipModel_mip_model_3dm_gx3_25 -MipModel.mip_model_3dm_gx3_35 = _mscl.cvar.MipModel_mip_model_3dm_gx3_35 -MipModel.mip_model_3dm_gx3_45 = _mscl.cvar.MipModel_mip_model_3dm_gx3_45 -MipModel.mip_model_3dm_rq1_45_lt = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_lt -MipModel.mip_model_3dm_rq1_45_st = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_st -MipModel.mip_model_3dm_gx4_15 = _mscl.cvar.MipModel_mip_model_3dm_gx4_15 -MipModel.mip_model_3dm_gx4_25 = _mscl.cvar.MipModel_mip_model_3dm_gx4_25 -MipModel.mip_model_3dm_gx4_45 = _mscl.cvar.MipModel_mip_model_3dm_gx4_45 -MipModel.mip_model_mv5_ar = _mscl.cvar.MipModel_mip_model_mv5_ar -MipModel.mip_model_3dm_gx5_10 = _mscl.cvar.MipModel_mip_model_3dm_gx5_10 -MipModel.mip_model_3dm_gx5_15 = _mscl.cvar.MipModel_mip_model_3dm_gx5_15 -MipModel.mip_model_3dm_gx5_25 = _mscl.cvar.MipModel_mip_model_3dm_gx5_25 -MipModel.mip_model_3dm_gx5_35 = _mscl.cvar.MipModel_mip_model_3dm_gx5_35 -MipModel.mip_model_3dm_gx5_45 = _mscl.cvar.MipModel_mip_model_3dm_gx5_45 -MipModel.mip_model_3dm_cv5_10 = _mscl.cvar.MipModel_mip_model_3dm_cv5_10 -MipModel.mip_model_3dm_cv5_15 = _mscl.cvar.MipModel_mip_model_3dm_cv5_15 -MipModel.mip_model_3dm_cv5_25 = _mscl.cvar.MipModel_mip_model_3dm_cv5_25 -MipModel.mip_model_3dm_cv5_45 = _mscl.cvar.MipModel_mip_model_3dm_cv5_45 -MipModel.mip_model_3dm_gq4_45 = _mscl.cvar.MipModel_mip_model_3dm_gq4_45 -MipModel.mip_model_3dm_cx5_45 = _mscl.cvar.MipModel_mip_model_3dm_cx5_45 -MipModel.mip_model_3dm_cx5_35 = _mscl.cvar.MipModel_mip_model_3dm_cx5_35 -MipModel.mip_model_3dm_cx5_25 = _mscl.cvar.MipModel_mip_model_3dm_cx5_25 -MipModel.mip_model_3dm_cx5_15 = _mscl.cvar.MipModel_mip_model_3dm_cx5_15 -MipModel.mip_model_3dm_cx5_10 = _mscl.cvar.MipModel_mip_model_3dm_cx5_10 -MipModel.mip_model_3dm_cl5_15 = _mscl.cvar.MipModel_mip_model_3dm_cl5_15 -MipModel.mip_model_3dm_cl5_25 = _mscl.cvar.MipModel_mip_model_3dm_cl5_25 -MipModel.mip_model_3dm_gq7 = _mscl.cvar.MipModel_mip_model_3dm_gq7 -MipModel.mip_model_3dm_rtk_v1 = _mscl.cvar.MipModel_mip_model_3dm_rtk_v1 -MipModel.mip_model_3dm_rtk = _mscl.cvar.MipModel_mip_model_3dm_rtk -MipModel.mip_model_3dm_cv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_cv7_ahrs -MipModel.mip_model_3dm_cv7_ar = _mscl.cvar.MipModel_mip_model_3dm_cv7_ar -MipModel.mip_model_3dm_gv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_gv7_ahrs -MipModel.mip_model_3dm_gv7_ar = _mscl.cvar.MipModel_mip_model_3dm_gv7_ar -MipModel.mip_model_3dm_gv7_ins = _mscl.cvar.MipModel_mip_model_3dm_gv7_ins -MipModel.mip_model_3dm_cv7_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_ins -MipModel.mip_model_3dm_cv7_gnss_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_gnss_ins - -class DisplacementModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_digitalDemod = _mscl.DisplacementModels_node_digitalDemod - - def __init__(self): - _mscl.DisplacementModels_swiginit(self, _mscl.new_DisplacementModels()) - __swig_destroy__ = _mscl.delete_DisplacementModels - -# Register DisplacementModels in _mscl: -_mscl.DisplacementModels_swigregister(DisplacementModels) - -class MipTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CLASS_AHRS_IMU = _mscl.MipTypes_CLASS_AHRS_IMU - CLASS_GNSS = _mscl.MipTypes_CLASS_GNSS - CLASS_ESTFILTER = _mscl.MipTypes_CLASS_ESTFILTER - CLASS_DISPLACEMENT = _mscl.MipTypes_CLASS_DISPLACEMENT - CLASS_GNSS1 = _mscl.MipTypes_CLASS_GNSS1 - CLASS_GNSS2 = _mscl.MipTypes_CLASS_GNSS2 - CLASS_GNSS3 = _mscl.MipTypes_CLASS_GNSS3 - CLASS_RTK = _mscl.MipTypes_CLASS_RTK - CLASS_GNSS4 = _mscl.MipTypes_CLASS_GNSS4 - CLASS_GNSS5 = _mscl.MipTypes_CLASS_GNSS5 - CLASS_SYSTEM = _mscl.MipTypes_CLASS_SYSTEM - USE_NEW_SETTINGS = _mscl.MipTypes_USE_NEW_SETTINGS - READ_BACK_CURRENT_SETTINGS = _mscl.MipTypes_READ_BACK_CURRENT_SETTINGS - SAVE_CURRENT_SETTINGS = _mscl.MipTypes_SAVE_CURRENT_SETTINGS - LOAD_STARTUP_SETTINGS = _mscl.MipTypes_LOAD_STARTUP_SETTINGS - RESET_TO_DEFAULT = _mscl.MipTypes_RESET_TO_DEFAULT - USE_NEW_SETTINGS_NO_ACKNACK = _mscl.MipTypes_USE_NEW_SETTINGS_NO_ACKNACK - DISABLED = _mscl.MipTypes_DISABLED - ENABLED = _mscl.MipTypes_ENABLED - TIME_FRAME_WEEKS = _mscl.MipTypes_TIME_FRAME_WEEKS - TIME_FRAME_SECONDS = _mscl.MipTypes_TIME_FRAME_SECONDS - CMD_PING = _mscl.MipTypes_CMD_PING - CMD_SET_IDLE = _mscl.MipTypes_CMD_SET_IDLE - CMD_GET_DEVICE_INFO = _mscl.MipTypes_CMD_GET_DEVICE_INFO - CMD_GET_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_DESCRIPTOR_SETS - CMD_BUILT_IN_TEST = _mscl.MipTypes_CMD_BUILT_IN_TEST - CMD_RESUME = _mscl.MipTypes_CMD_RESUME - CMD_GET_EXT_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_EXT_DESCRIPTOR_SETS - CMD_COMM_PORT_SPEED = _mscl.MipTypes_CMD_COMM_PORT_SPEED - CMD_GPS_TIME_UPDATE = _mscl.MipTypes_CMD_GPS_TIME_UPDATE - CMD_RESET = _mscl.MipTypes_CMD_RESET - CMD_POLL_SENSOR_DATA = _mscl.MipTypes_CMD_POLL_SENSOR_DATA - CMD_POLL_GNSS_DATA = _mscl.MipTypes_CMD_POLL_GNSS_DATA - CMD_POLL_EF_DATA = _mscl.MipTypes_CMD_POLL_EF_DATA - CMD_GET_SENSOR_RATE_BASE = _mscl.MipTypes_CMD_GET_SENSOR_RATE_BASE - CMD_GET_GNSS_RATE_BASE = _mscl.MipTypes_CMD_GET_GNSS_RATE_BASE - CMD_GET_EF_RATE_BASE = _mscl.MipTypes_CMD_GET_EF_RATE_BASE - CMD_SENSOR_MESSAGE_FORMAT = _mscl.MipTypes_CMD_SENSOR_MESSAGE_FORMAT - CMD_GNSS_MESSAGE_FORMAT = _mscl.MipTypes_CMD_GNSS_MESSAGE_FORMAT - CMD_EF_MESSAGE_FORMAT = _mscl.MipTypes_CMD_EF_MESSAGE_FORMAT - CMD_NMEA_MESSAGE_FORMAT = _mscl.MipTypes_CMD_NMEA_MESSAGE_FORMAT - CMD_POLL = _mscl.MipTypes_CMD_POLL - CMD_GET_BASE_RATE = _mscl.MipTypes_CMD_GET_BASE_RATE - CMD_MESSAGE_FORMAT = _mscl.MipTypes_CMD_MESSAGE_FORMAT - CMD_FACTORY_STREAMING = _mscl.MipTypes_CMD_FACTORY_STREAMING - CMD_CONTINUOUS_DATA_STREAM = _mscl.MipTypes_CMD_CONTINUOUS_DATA_STREAM - CMD_RAW_RTCM_2_3_MESSAGE = _mscl.MipTypes_CMD_RAW_RTCM_2_3_MESSAGE - CMD_GNSS_CONSTELLATION_SETTINGS = _mscl.MipTypes_CMD_GNSS_CONSTELLATION_SETTINGS - CMD_GNSS_SBAS_SETTINGS = _mscl.MipTypes_CMD_GNSS_SBAS_SETTINGS - CMD_GNSS_ASSIST_FIX_CONTROL = _mscl.MipTypes_CMD_GNSS_ASSIST_FIX_CONTROL - CMD_GNSS_ASSIST_TIME_UPDATE = _mscl.MipTypes_CMD_GNSS_ASSIST_TIME_UPDATE - CMD_PPS_SOURCE = _mscl.MipTypes_CMD_PPS_SOURCE - CMD_EVENT_SUPPORT = _mscl.MipTypes_CMD_EVENT_SUPPORT - CMD_EVENT_CONTROL = _mscl.MipTypes_CMD_EVENT_CONTROL - CMD_EVENT_TRIGGER_STATUS = _mscl.MipTypes_CMD_EVENT_TRIGGER_STATUS - CMD_EVENT_ACTION_STATUS = _mscl.MipTypes_CMD_EVENT_ACTION_STATUS - CMD_EVENT_TRIGGER_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_TRIGGER_CONFIGURATION - CMD_EVENT_ACTION_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_ACTION_CONFIGURATION - CMD_SAVE_STARTUP_SETTINGS = _mscl.MipTypes_CMD_SAVE_STARTUP_SETTINGS - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM - CMD_GPS_DYNAMICS_MODE = _mscl.MipTypes_CMD_GPS_DYNAMICS_MODE - CMD_SENSOR_SIG_COND_SETTINGS = _mscl.MipTypes_CMD_SENSOR_SIG_COND_SETTINGS - CMD_SENSOR_TIMESTAMP = _mscl.MipTypes_CMD_SENSOR_TIMESTAMP - CMD_ACCEL_BIAS = _mscl.MipTypes_CMD_ACCEL_BIAS - CMD_GYRO_BIAS = _mscl.MipTypes_CMD_GYRO_BIAS - CMD_CAP_GYRO_BIAS = _mscl.MipTypes_CMD_CAP_GYRO_BIAS - CMD_MAG_HARD_IRON_OFFSET = _mscl.MipTypes_CMD_MAG_HARD_IRON_OFFSET - CMD_MAG_SOFT_IRON_MATRIX = _mscl.MipTypes_CMD_MAG_SOFT_IRON_MATRIX - CMD_CF_REALIGN_UP = _mscl.MipTypes_CMD_CF_REALIGN_UP - CMD_CF_REALIGN_NORTH = _mscl.MipTypes_CMD_CF_REALIGN_NORTH - CMD_CONING_SCULLING = _mscl.MipTypes_CMD_CONING_SCULLING - CMD_UART_BAUD_RATE = _mscl.MipTypes_CMD_UART_BAUD_RATE - CMD_GPIO_CONFIGURATION = _mscl.MipTypes_CMD_GPIO_CONFIGURATION - CMD_GPIO_STATE = _mscl.MipTypes_CMD_GPIO_STATE - CMD_ODOMETER_SETTINGS = _mscl.MipTypes_CMD_ODOMETER_SETTINGS - CMD_LOWPASS_FILTER_SETTINGS = _mscl.MipTypes_CMD_LOWPASS_FILTER_SETTINGS - CMD_COMPLEMENTARY_FILTER_SETTINGS = _mscl.MipTypes_CMD_COMPLEMENTARY_FILTER_SETTINGS - CMD_SENSOR_RANGE = _mscl.MipTypes_CMD_SENSOR_RANGE - CMD_SUPPORTED_SENSOR_RANGES = _mscl.MipTypes_CMD_SUPPORTED_SENSOR_RANGES - CMD_LOWPASS_ANTIALIASING_FILTER = _mscl.MipTypes_CMD_LOWPASS_ANTIALIASING_FILTER - CMD_DATA_STREAM_FORMAT = _mscl.MipTypes_CMD_DATA_STREAM_FORMAT - CMD_POWER_STATES = _mscl.MipTypes_CMD_POWER_STATES - CMD_GPS_STARTUP_SETTINGS = _mscl.MipTypes_CMD_GPS_STARTUP_SETTINGS - CMD_DEVICE_STATUS = _mscl.MipTypes_CMD_DEVICE_STATUS - CMD_EF_RESET_FILTER = _mscl.MipTypes_CMD_EF_RESET_FILTER - CMD_EF_INIT_ATTITUDE = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE - CMD_EF_INIT_HEADING = _mscl.MipTypes_CMD_EF_INIT_HEADING - CMD_EF_INIT_ATTITUDE_FROM_AHRS = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE_FROM_AHRS - CMD_EF_RUN_FILTER = _mscl.MipTypes_CMD_EF_RUN_FILTER - CMD_EF_VEHIC_DYNAMICS_MODE = _mscl.MipTypes_CMD_EF_VEHIC_DYNAMICS_MODE - CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER - CMD_EF_SENS_VEHIC_FRAME_OFFSET = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_OFFSET - CMD_EF_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_ANTENNA_OFFSET - CMD_EF_BIAS_EST_CTRL = _mscl.MipTypes_CMD_EF_BIAS_EST_CTRL - CMD_EF_GNSS_SRC_CTRL = _mscl.MipTypes_CMD_EF_GNSS_SRC_CTRL - CMD_EF_EXTERN_GNSS_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_GNSS_UPDATE - CMD_EF_EXTERN_HEADING_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_HEADING_UPDATE - CMD_EF_HEADING_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_HEADING_UPDATE_CTRL - CMD_EF_AUTO_INIT_CTRL = _mscl.MipTypes_CMD_EF_AUTO_INIT_CTRL - CMD_EF_ACCEL_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_ACCEL_WHT_NSE_STD_DEV - CMD_EF_GYRO_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_GYRO_WHT_NSE_STD_DEV - CMD_EF_ACCEL_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_ACCEL_BIAS_MODEL_PARAMS - CMD_EF_GYRO_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_GYRO_BIAS_MODEL_PARAMS - CMD_EF_ZERO_VEL_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_VEL_UPDATE_CTRL - CMD_EF_EXT_HEADING_UPDATE_TS = _mscl.MipTypes_CMD_EF_EXT_HEADING_UPDATE_TS - CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL - CMD_EF_TARE_ORIENT = _mscl.MipTypes_CMD_EF_TARE_ORIENT - CMD_EF_CMDED_ZERO_VEL_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_VEL_UPDATE - CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE - CMD_EF_SET_REF_POSITION = _mscl.MipTypes_CMD_EF_SET_REF_POSITION - CMD_EF_MAG_CAPTURE_AUTO_CAL = _mscl.MipTypes_CMD_EF_MAG_CAPTURE_AUTO_CAL - CMD_EF_GRAVITY_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_STD_DEV - CMD_EF_PRESS_ALT_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_PRESS_ALT_NOISE_STD_DEV - CMD_EF_GRAVITY_NOISE_MINIMUM = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_MINIMUM - CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE - CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE - CMD_EF_ENABLE_DISABLE_MEASUREMENTS = _mscl.MipTypes_CMD_EF_ENABLE_DISABLE_MEASUREMENTS - CMD_EF_MAG_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_MAG_NOISE_STD_DEV - CMD_EF_DECLINATION_SRC = _mscl.MipTypes_CMD_EF_DECLINATION_SRC - CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE - CMD_EF_ALTITUDE_AID_CTRL = _mscl.MipTypes_CMD_EF_ALTITUDE_AID_CTRL - CMD_EF_PITCH_ROLL_AID_CTRL = _mscl.MipTypes_CMD_EF_PITCH_ROLL_AID_CTRL - CMD_EF_INCLINATION_SRC = _mscl.MipTypes_CMD_EF_INCLINATION_SRC - CMD_EF_FIELD_MAGNITUDE_SRC = _mscl.MipTypes_CMD_EF_FIELD_MAGNITUDE_SRC - CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM - CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT - CMD_EF_AIDING_MEASUREMENT_ENABLE = _mscl.MipTypes_CMD_EF_AIDING_MEASUREMENT_ENABLE - CMD_EF_INITIALIZATION_CONFIG = _mscl.MipTypes_CMD_EF_INITIALIZATION_CONFIG - CMD_EF_ADAPTIVE_FILTER_OPTIONS = _mscl.MipTypes_CMD_EF_ADAPTIVE_FILTER_OPTIONS - CMD_EF_MULTI_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_MULTI_ANTENNA_OFFSET - CMD_EF_RELATIVE_POSITION_REF = _mscl.MipTypes_CMD_EF_RELATIVE_POSITION_REF - CMD_EF_LEVER_ARM_OFFSET_REF = _mscl.MipTypes_CMD_EF_LEVER_ARM_OFFSET_REF - CMD_EF_EXTERN_SPEED_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_SPEED_UPDATE - CMD_EF_SPEED_MEASUREMENT_OFFSET = _mscl.MipTypes_CMD_EF_SPEED_MEASUREMENT_OFFSET - CMD_EF_VERTICAL_GYRO_CONSTRAINT = _mscl.MipTypes_CMD_EF_VERTICAL_GYRO_CONSTRAINT - CMD_EF_WHEELED_VEHICLE_CONSTRAINT = _mscl.MipTypes_CMD_EF_WHEELED_VEHICLE_CONSTRAINT - CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL = _mscl.MipTypes_CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL - CMD_GNSS_RECEIVER_INFO = _mscl.MipTypes_CMD_GNSS_RECEIVER_INFO - CMD_GNSS_SIGNAL_CONFIG = _mscl.MipTypes_CMD_GNSS_SIGNAL_CONFIG - CMD_GNSS_SPARTN_CONFIG = _mscl.MipTypes_CMD_GNSS_SPARTN_CONFIG - CMD_GNSS_RTK_CONFIG = _mscl.MipTypes_CMD_GNSS_RTK_CONFIG - CMD_INTERFACE_CONTROL = _mscl.MipTypes_CMD_INTERFACE_CONTROL - CMD_COMMUNICATION_MODE = _mscl.MipTypes_CMD_COMMUNICATION_MODE - CMD_HARDWARE_CTRL = _mscl.MipTypes_CMD_HARDWARE_CTRL - CMD_GET_ANALOG_DISPLACEMENT_CALS = _mscl.MipTypes_CMD_GET_ANALOG_DISPLACEMENT_CALS - CMD_DISPLACEMENT_OUTPUT_RATE = _mscl.MipTypes_CMD_DISPLACEMENT_OUTPUT_RATE - CMD_DISPLACEMENT_DEVICE_TIME = _mscl.MipTypes_CMD_DISPLACEMENT_DEVICE_TIME - CMD_RTK_DEVICE_STATUS_FLAGS = _mscl.MipTypes_CMD_RTK_DEVICE_STATUS_FLAGS - CMD_RTK_ACTIVATION_CODE = _mscl.MipTypes_CMD_RTK_ACTIVATION_CODE - CMD_AIDING_FRAME_CONFIG = _mscl.MipTypes_CMD_AIDING_FRAME_CONFIG - CMD_AIDING_ECHO_CONTROL = _mscl.MipTypes_CMD_AIDING_ECHO_CONTROL - CMD_AIDING_POS_ECEF = _mscl.MipTypes_CMD_AIDING_POS_ECEF - CMD_AIDING_POS_LLH = _mscl.MipTypes_CMD_AIDING_POS_LLH - CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID - CMD_AIDING_VEL_ECEF = _mscl.MipTypes_CMD_AIDING_VEL_ECEF - CMD_AIDING_VEL_NED = _mscl.MipTypes_CMD_AIDING_VEL_NED - CMD_AIDING_VEL_BODY_FRAME = _mscl.MipTypes_CMD_AIDING_VEL_BODY_FRAME - CMD_AIDING_HEADING_TRUE = _mscl.MipTypes_CMD_AIDING_HEADING_TRUE - CMD_AIDING_MAGNETIC_FIELD = _mscl.MipTypes_CMD_AIDING_MAGNETIC_FIELD - CMD_AIDING_PRESSURE = _mscl.MipTypes_CMD_AIDING_PRESSURE - CH_FIELD_SENSOR_RAW_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_ACCEL_VEC - CH_FIELD_SENSOR_RAW_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_GYRO_VEC - CH_FIELD_SENSOR_RAW_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_MAG_VEC - CH_FIELD_SENSOR_SCALED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_ACCEL_VEC - CH_FIELD_SENSOR_SCALED_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_GYRO_VEC - CH_FIELD_SENSOR_SCALED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_MAG_VEC - CH_FIELD_SENSOR_DELTA_THETA_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_THETA_VEC - CH_FIELD_SENSOR_DELTA_VELOCITY_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_VELOCITY_VEC - CH_FIELD_SENSOR_ORIENTATION_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_MATRIX - CH_FIELD_SENSOR_ORIENTATION_QUATERNION = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_QUATERNION - CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX - CH_FIELD_SENSOR_EULER_ANGLES = _mscl.MipTypes_CH_FIELD_SENSOR_EULER_ANGLES - CH_FIELD_SENSOR_INTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_INTERNAL_TIMESTAMP - CH_FIELD_SENSOR_BEACONED_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_BEACONED_TIMESTAMP - CH_FIELD_SENSOR_STABILIZED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_MAG_VEC - CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC - CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP - CH_FIELD_SENSOR_TEMPERATURE_STATISTICS = _mscl.MipTypes_CH_FIELD_SENSOR_TEMPERATURE_STATISTICS - CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE - CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE - CH_FIELD_SENSOR_OVERRANGE_STATUS = _mscl.MipTypes_CH_FIELD_SENSOR_OVERRANGE_STATUS - CH_FIELD_SENSOR_ODOMETER_DATA = _mscl.MipTypes_CH_FIELD_SENSOR_ODOMETER_DATA - CH_FIELD_SENSOR_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EVENT_SOURCE - CH_FIELD_SENSOR_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_TICKS - CH_FIELD_SENSOR_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TICKS - CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP - CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_LLH_POSITION - CH_FIELD_GNSS_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_POSITION - CH_FIELD_GNSS_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_NED_VELOCITY - CH_FIELD_GNSS_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_VELOCITY - CH_FIELD_GNSS_DOP = _mscl.MipTypes_CH_FIELD_GNSS_DOP - CH_FIELD_GNSS_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_UTC_TIME - CH_FIELD_GNSS_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_GPS_TIME - CH_FIELD_GNSS_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO - CH_FIELD_GNSS_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_FIX_INFO - CH_FIELD_GNSS_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_HARDWARE_STATUS - CH_FIELD_GNSS_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_INFO - CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO_2 - CH_FIELD_GNSS_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_LEAP_SECONDS - CH_FIELD_GNSS_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_INFO - CH_FIELD_GNSS_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_CORRECTION - CH_FIELD_GNSS_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_RF_ERROR_DETECTION - CH_FIELD_GNSS_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_SATELLITE_STATUS - CH_FIELD_GNSS_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_RAW_OBSERVATION - CH_FIELD_GNSS_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_STATION_INFO - CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_EPHEMERIS - CH_FIELD_GNSS_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GLONASS_EPHEMERIS - CH_FIELD_GNSS_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_EPHEMERIS - CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_TICKS - CH_FIELD_GNSS_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TICKS - CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS - CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL - CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE - CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE - CH_FIELD_ESTFILTER_FILTER_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_FILTER_STATUS - CH_FIELD_ESTFILTER_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT - CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR - CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE - CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR - CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_MAG_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS - CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT - CH_FIELD_ESTFILTER_COMPENSATED_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_COMPENSATED_ACCEL - CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL - CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT - CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX - CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS_UNCERT - CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS - CH_FIELD_ESTFILTER_ECEF_VEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL - CH_FIELD_ESTFILTER_NED_RELATIVE_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_NED_RELATIVE_POS - CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS - CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS - CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY = _mscl.MipTypes_CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT - CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT - CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE - CH_FIELD_ESTFILTER_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_TICKS - CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS - CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_DISP_DISPLACEMENT_RAW = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_RAW - CH_FIELD_DISP_DISPLACEMENT_MM = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_MM - CH_FIELD_DISP_DISPLACEMENT_TS = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_TS - CH_FIELD_GNSS_1_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_LLH_POSITION - CH_FIELD_GNSS_1_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_POSITION - CH_FIELD_GNSS_1_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_NED_VELOCITY - CH_FIELD_GNSS_1_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_VELOCITY - CH_FIELD_GNSS_1_DOP = _mscl.MipTypes_CH_FIELD_GNSS_1_DOP - CH_FIELD_GNSS_1_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_UTC_TIME - CH_FIELD_GNSS_1_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_TIME - CH_FIELD_GNSS_1_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO - CH_FIELD_GNSS_1_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_FIX_INFO - CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_1_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_HARDWARE_STATUS - CH_FIELD_GNSS_1_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_INFO - CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_1_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO_2 - CH_FIELD_GNSS_1_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_LEAP_SECONDS - CH_FIELD_GNSS_1_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_INFO - CH_FIELD_GNSS_1_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_CORRECTION - CH_FIELD_GNSS_1_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_RF_ERROR_DETECTION - CH_FIELD_GNSS_1_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_SATELLITE_STATUS - CH_FIELD_GNSS_1_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_1_RAW_OBSERVATION - CH_FIELD_GNSS_1_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_STATION_INFO - CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_1_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_EPHEMERIS - CH_FIELD_GNSS_1_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GLONASS_EPHEMERIS - CH_FIELD_GNSS_1_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_EPHEMERIS - CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_1_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_TICKS - CH_FIELD_GNSS_1_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TICKS - CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_2_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_LLH_POSITION - CH_FIELD_GNSS_2_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_POSITION - CH_FIELD_GNSS_2_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_NED_VELOCITY - CH_FIELD_GNSS_2_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_VELOCITY - CH_FIELD_GNSS_2_DOP = _mscl.MipTypes_CH_FIELD_GNSS_2_DOP - CH_FIELD_GNSS_2_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_UTC_TIME - CH_FIELD_GNSS_2_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_TIME - CH_FIELD_GNSS_2_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO - CH_FIELD_GNSS_2_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_FIX_INFO - CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_2_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_HARDWARE_STATUS - CH_FIELD_GNSS_2_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_INFO - CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_2_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO_2 - CH_FIELD_GNSS_2_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_LEAP_SECONDS - CH_FIELD_GNSS_2_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_INFO - CH_FIELD_GNSS_2_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_CORRECTION - CH_FIELD_GNSS_2_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_RF_ERROR_DETECTION - CH_FIELD_GNSS_2_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_SATELLITE_STATUS - CH_FIELD_GNSS_2_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_2_RAW_OBSERVATION - CH_FIELD_GNSS_2_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_STATION_INFO - CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_2_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_EPHEMERIS - CH_FIELD_GNSS_2_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GLONASS_EPHEMERIS - CH_FIELD_GNSS_2_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_EPHEMERIS - CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_2_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_TICKS - CH_FIELD_GNSS_2_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TICKS - CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_3_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_LLH_POSITION - CH_FIELD_GNSS_3_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_POSITION - CH_FIELD_GNSS_3_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_NED_VELOCITY - CH_FIELD_GNSS_3_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_VELOCITY - CH_FIELD_GNSS_3_DOP = _mscl.MipTypes_CH_FIELD_GNSS_3_DOP - CH_FIELD_GNSS_3_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_UTC_TIME - CH_FIELD_GNSS_3_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_TIME - CH_FIELD_GNSS_3_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO - CH_FIELD_GNSS_3_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_FIX_INFO - CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_3_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_HARDWARE_STATUS - CH_FIELD_GNSS_3_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_INFO - CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_3_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO_2 - CH_FIELD_GNSS_3_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_LEAP_SECONDS - CH_FIELD_GNSS_3_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_INFO - CH_FIELD_GNSS_3_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_CORRECTION - CH_FIELD_GNSS_3_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_RF_ERROR_DETECTION - CH_FIELD_GNSS_3_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_SATELLITE_STATUS - CH_FIELD_GNSS_3_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_3_RAW_OBSERVATION - CH_FIELD_GNSS_3_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_STATION_INFO - CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_3_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_EPHEMERIS - CH_FIELD_GNSS_3_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GLONASS_EPHEMERIS - CH_FIELD_GNSS_3_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_EPHEMERIS - CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_3_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_TICKS - CH_FIELD_GNSS_3_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TICKS - CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_4_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_LLH_POSITION - CH_FIELD_GNSS_4_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_POSITION - CH_FIELD_GNSS_4_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_NED_VELOCITY - CH_FIELD_GNSS_4_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_VELOCITY - CH_FIELD_GNSS_4_DOP = _mscl.MipTypes_CH_FIELD_GNSS_4_DOP - CH_FIELD_GNSS_4_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_UTC_TIME - CH_FIELD_GNSS_4_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_TIME - CH_FIELD_GNSS_4_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO - CH_FIELD_GNSS_4_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_FIX_INFO - CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_4_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_HARDWARE_STATUS - CH_FIELD_GNSS_4_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_INFO - CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_4_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO_2 - CH_FIELD_GNSS_4_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_LEAP_SECONDS - CH_FIELD_GNSS_4_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_INFO - CH_FIELD_GNSS_4_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_CORRECTION - CH_FIELD_GNSS_4_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_RF_ERROR_DETECTION - CH_FIELD_GNSS_4_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_SATELLITE_STATUS - CH_FIELD_GNSS_4_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_4_RAW_OBSERVATION - CH_FIELD_GNSS_4_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_STATION_INFO - CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_4_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_EPHEMERIS - CH_FIELD_GNSS_4_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GLONASS_EPHEMERIS - CH_FIELD_GNSS_4_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_EPHEMERIS - CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_4_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_TICKS - CH_FIELD_GNSS_4_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TICKS - CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_5_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_LLH_POSITION - CH_FIELD_GNSS_5_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_POSITION - CH_FIELD_GNSS_5_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_NED_VELOCITY - CH_FIELD_GNSS_5_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_VELOCITY - CH_FIELD_GNSS_5_DOP = _mscl.MipTypes_CH_FIELD_GNSS_5_DOP - CH_FIELD_GNSS_5_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_UTC_TIME - CH_FIELD_GNSS_5_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_TIME - CH_FIELD_GNSS_5_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO - CH_FIELD_GNSS_5_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_FIX_INFO - CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_5_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_HARDWARE_STATUS - CH_FIELD_GNSS_5_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_INFO - CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_5_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO_2 - CH_FIELD_GNSS_5_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_LEAP_SECONDS - CH_FIELD_GNSS_5_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_INFO - CH_FIELD_GNSS_5_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_CORRECTION - CH_FIELD_GNSS_5_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_RF_ERROR_DETECTION - CH_FIELD_GNSS_5_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_SATELLITE_STATUS - CH_FIELD_GNSS_5_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_5_RAW_OBSERVATION - CH_FIELD_GNSS_5_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_STATION_INFO - CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_5_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_EPHEMERIS - CH_FIELD_GNSS_5_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GLONASS_EPHEMERIS - CH_FIELD_GNSS_5_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_EPHEMERIS - CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_5_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_TICKS - CH_FIELD_GNSS_5_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TICKS - CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_SYSTEM_BUILT_IN_TEST = _mscl.MipTypes_CH_FIELD_SYSTEM_BUILT_IN_TEST - CH_FIELD_SYSTEM_TIME_SYNC_STATUS = _mscl.MipTypes_CH_FIELD_SYSTEM_TIME_SYNC_STATUS - CH_FIELD_SYSTEM_GPIO_STATE = _mscl.MipTypes_CH_FIELD_SYSTEM_GPIO_STATE - CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE - CH_FIELD_SYSTEM_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_TICKS - CH_FIELD_SYSTEM_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TICKS - CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME - MIN_SHARED_FIELD_DESCRIPTOR = _mscl.MipTypes_MIN_SHARED_FIELD_DESCRIPTOR - CH_UNKNOWN = _mscl.MipTypes_CH_UNKNOWN - CH_X = _mscl.MipTypes_CH_X - CH_Y = _mscl.MipTypes_CH_Y - CH_Z = _mscl.MipTypes_CH_Z - CH_MATRIX = _mscl.MipTypes_CH_MATRIX - CH_QUATERNION = _mscl.MipTypes_CH_QUATERNION - CH_ROLL = _mscl.MipTypes_CH_ROLL - CH_PITCH = _mscl.MipTypes_CH_PITCH - CH_YAW = _mscl.MipTypes_CH_YAW - CH_TICK = _mscl.MipTypes_CH_TICK - CH_TIMESTAMP = _mscl.MipTypes_CH_TIMESTAMP - CH_STATUS = _mscl.MipTypes_CH_STATUS - CH_TIME_OF_WEEK = _mscl.MipTypes_CH_TIME_OF_WEEK - CH_WEEK_NUMBER = _mscl.MipTypes_CH_WEEK_NUMBER - CH_LATITUDE = _mscl.MipTypes_CH_LATITUDE - CH_LONGITUDE = _mscl.MipTypes_CH_LONGITUDE - CH_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CH_HEIGHT_ABOVE_ELLIPSOID - CH_HEIGHT_ABOVE_MSL = _mscl.MipTypes_CH_HEIGHT_ABOVE_MSL - CH_HORIZONTAL_ACCURACY = _mscl.MipTypes_CH_HORIZONTAL_ACCURACY - CH_VERTICAL_ACCURACY = _mscl.MipTypes_CH_VERTICAL_ACCURACY - CH_POSITION_ACCURACY = _mscl.MipTypes_CH_POSITION_ACCURACY - CH_NORTH = _mscl.MipTypes_CH_NORTH - CH_EAST = _mscl.MipTypes_CH_EAST - CH_DOWN = _mscl.MipTypes_CH_DOWN - CH_SPEED = _mscl.MipTypes_CH_SPEED - CH_GROUND_SPEED = _mscl.MipTypes_CH_GROUND_SPEED - CH_HEADING = _mscl.MipTypes_CH_HEADING - CH_SPEED_ACCURACY = _mscl.MipTypes_CH_SPEED_ACCURACY - CH_HEADING_ACCURACY = _mscl.MipTypes_CH_HEADING_ACCURACY - CH_VELOCITY_ACCURACY = _mscl.MipTypes_CH_VELOCITY_ACCURACY - CH_GEOMETRIC_DOP = _mscl.MipTypes_CH_GEOMETRIC_DOP - CH_POSITION_DOP = _mscl.MipTypes_CH_POSITION_DOP - CH_HORIZONTAL_DOP = _mscl.MipTypes_CH_HORIZONTAL_DOP - CH_VERTICAL_DOP = _mscl.MipTypes_CH_VERTICAL_DOP - CH_TIME_DOP = _mscl.MipTypes_CH_TIME_DOP - CH_NORTHING_DOP = _mscl.MipTypes_CH_NORTHING_DOP - CH_EASTING_DOP = _mscl.MipTypes_CH_EASTING_DOP - CH_FLAGS = _mscl.MipTypes_CH_FLAGS - CH_BIAS = _mscl.MipTypes_CH_BIAS - CH_DRIFT = _mscl.MipTypes_CH_DRIFT - CH_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_ACCURACY_ESTIMATE - CH_FIX_TYPE = _mscl.MipTypes_CH_FIX_TYPE - CH_SV_COUNT = _mscl.MipTypes_CH_SV_COUNT - CH_CHANNEL = _mscl.MipTypes_CH_CHANNEL - CH_ID = _mscl.MipTypes_CH_ID - CH_CARRIER_TO_NOISE_RATIO = _mscl.MipTypes_CH_CARRIER_TO_NOISE_RATIO - CH_AZIMUTH = _mscl.MipTypes_CH_AZIMUTH - CH_ELEVATION = _mscl.MipTypes_CH_ELEVATION - CH_SENSOR_STATE = _mscl.MipTypes_CH_SENSOR_STATE - CH_ANTENNA_STATE = _mscl.MipTypes_CH_ANTENNA_STATE - CH_ANTENNA_POWER = _mscl.MipTypes_CH_ANTENNA_POWER - CH_FILTER_STATE = _mscl.MipTypes_CH_FILTER_STATE - CH_DYNAMICS_MODE = _mscl.MipTypes_CH_DYNAMICS_MODE - CH_MAGNITUDE = _mscl.MipTypes_CH_MAGNITUDE - CH_HEADING_UNCERTAINTY = _mscl.MipTypes_CH_HEADING_UNCERTAINTY - CH_SOURCE = _mscl.MipTypes_CH_SOURCE - CH_INCLINATION = _mscl.MipTypes_CH_INCLINATION - CH_DECLINATION = _mscl.MipTypes_CH_DECLINATION - CH_PRESSURE = _mscl.MipTypes_CH_PRESSURE - CH_AGE = _mscl.MipTypes_CH_AGE - CH_NUM_CHANNELS = _mscl.MipTypes_CH_NUM_CHANNELS - CH_CORRECTION = _mscl.MipTypes_CH_CORRECTION - CH_RATE_CORRECTION = _mscl.MipTypes_CH_RATE_CORRECTION - CH_GEOMETRIC_ALTITUDE = _mscl.MipTypes_CH_GEOMETRIC_ALTITUDE - CH_GEOPOTENTIAL_ALTITUDE = _mscl.MipTypes_CH_GEOPOTENTIAL_ALTITUDE - CH_TEMPERATURE = _mscl.MipTypes_CH_TEMPERATURE - CH_DENSITY = _mscl.MipTypes_CH_DENSITY - CH_ALTITUDE = _mscl.MipTypes_CH_ALTITUDE - CH_DISPLACEMENT = _mscl.MipTypes_CH_DISPLACEMENT - CH_MAX_TEMP = _mscl.MipTypes_CH_MAX_TEMP - CH_MIN_TEMP = _mscl.MipTypes_CH_MIN_TEMP - CH_MEAN_TEMP = _mscl.MipTypes_CH_MEAN_TEMP - CH_BIAS_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_BIAS_ACCURACY_ESTIMATE - CH_DRIFT_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_DRIFT_ACCURACY_ESTIMATE - CH_SECONDS = _mscl.MipTypes_CH_SECONDS - CH_NUM_PACKETS = _mscl.MipTypes_CH_NUM_PACKETS - CH_GPS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GPS_CORRECTION_LATENCY - CH_GLONASS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GLONASS_CORRECTION_LATENCY - CH_GALILEO_CORRECTION_LATENCY = _mscl.MipTypes_CH_GALILEO_CORRECTION_LATENCY - CH_BEIDOU_CORRECTION_LATENCY = _mscl.MipTypes_CH_BEIDOU_CORRECTION_LATENCY - CH_HEIGHT = _mscl.MipTypes_CH_HEIGHT - CH_HEALTH = _mscl.MipTypes_CH_HEALTH - CH_INDEX = _mscl.MipTypes_CH_INDEX - CH_COUNT = _mscl.MipTypes_CH_COUNT - CH_SIGNAL_STRENGTH = _mscl.MipTypes_CH_SIGNAL_STRENGTH - CH_SIGNAL_QUALITY = _mscl.MipTypes_CH_SIGNAL_QUALITY - CH_RANGE = _mscl.MipTypes_CH_RANGE - CH_RANGE_UNC = _mscl.MipTypes_CH_RANGE_UNC - CH_ALPHA = _mscl.MipTypes_CH_ALPHA - CH_BETA = _mscl.MipTypes_CH_BETA - CH_DISTURBANCE_FLAGS = _mscl.MipTypes_CH_DISTURBANCE_FLAGS - CH_CARRIER_PHASE = _mscl.MipTypes_CH_CARRIER_PHASE - CH_CARRIER_PHASE_UNC = _mscl.MipTypes_CH_CARRIER_PHASE_UNC - CH_DOPPLER = _mscl.MipTypes_CH_DOPPLER - CH_DOPPLER_UNC = _mscl.MipTypes_CH_DOPPLER_UNC - CH_DELTA_TIME = _mscl.MipTypes_CH_DELTA_TIME - CH_DELTA_TICK = _mscl.MipTypes_CH_DELTA_TICK - CH_ERROR = _mscl.MipTypes_CH_ERROR - CH_ERROR_UNC = _mscl.MipTypes_CH_ERROR_UNC - CH_W = _mscl.MipTypes_CH_W - CH_M0 = _mscl.MipTypes_CH_M0 - CH_M1 = _mscl.MipTypes_CH_M1 - CH_M2 = _mscl.MipTypes_CH_M2 - CH_M3 = _mscl.MipTypes_CH_M3 - CH_M4 = _mscl.MipTypes_CH_M4 - CH_M5 = _mscl.MipTypes_CH_M5 - CH_M6 = _mscl.MipTypes_CH_M6 - CH_M7 = _mscl.MipTypes_CH_M7 - CH_M8 = _mscl.MipTypes_CH_M8 - CH_NANOSECONDS = _mscl.MipTypes_CH_NANOSECONDS - CH_VALID_FLAGS = _mscl.MipTypes_CH_VALID_FLAGS - CH_PPS_VALID = _mscl.MipTypes_CH_PPS_VALID - CH_LAST_PPS = _mscl.MipTypes_CH_LAST_PPS - CH_UDREI = _mscl.MipTypes_CH_UDREI - CH_PSEUDORANGE_CORRECTION = _mscl.MipTypes_CH_PSEUDORANGE_CORRECTION - CH_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_IONOSPHERIC_CORRECTION - CH_JAMMING_STATE = _mscl.MipTypes_CH_JAMMING_STATE - CH_SPOOFING_STATE = _mscl.MipTypes_CH_SPOOFING_STATE - CH_SYSTEM_ID = _mscl.MipTypes_CH_SYSTEM_ID - CH_SATELLITE_ID = _mscl.MipTypes_CH_SATELLITE_ID - CH_BIT_SYSTEM_GENERAL = _mscl.MipTypes_CH_BIT_SYSTEM_GENERAL - CH_BIT_SYSTEM_PROCESS = _mscl.MipTypes_CH_BIT_SYSTEM_PROCESS - CH_BIT_IMU_GENERAL = _mscl.MipTypes_CH_BIT_IMU_GENERAL - CH_BIT_IMU_SENSORS = _mscl.MipTypes_CH_BIT_IMU_SENSORS - CH_BIT_IMU_FACTORY_BITS = _mscl.MipTypes_CH_BIT_IMU_FACTORY_BITS - CH_BIT_FILTER_GENERAL = _mscl.MipTypes_CH_BIT_FILTER_GENERAL - CH_BIT_GNSS_GENERAL = _mscl.MipTypes_CH_BIT_GNSS_GENERAL - CH_BIT_GNSS_RECEIVERS = _mscl.MipTypes_CH_BIT_GNSS_RECEIVERS - - @staticmethod - def channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - - @staticmethod - def getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - - @staticmethod - def getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - - @staticmethod - def getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - - @staticmethod - def getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - - @staticmethod - def getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - - @staticmethod - def isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - - @staticmethod - def isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - - @staticmethod - def channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - - @staticmethod - def channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - - @staticmethod - def channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - - def __init__(self): - _mscl.MipTypes_swiginit(self, _mscl.new_MipTypes()) - __swig_destroy__ = _mscl.delete_MipTypes - -# Register MipTypes in _mscl: -_mscl.MipTypes_swigregister(MipTypes) - -def MipTypes_channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - -def MipTypes_getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - -def MipTypes_getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - -def MipTypes_getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - -def MipTypes_getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - -def MipTypes_getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - -def MipTypes_isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - -def MipTypes_isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - -def MipTypes_channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - -def MipTypes_channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - -def MipTypes_channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - -class MipChannelIdentifier(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - GNSS_RECEIVER_ID = _mscl.MipChannelIdentifier_GNSS_RECEIVER_ID - GNSS_BASE_STATION_ID = _mscl.MipChannelIdentifier_GNSS_BASE_STATION_ID - GNSS_CONSTELLATION = _mscl.MipChannelIdentifier_GNSS_CONSTELLATION - GNSS_SATELLITE_ID = _mscl.MipChannelIdentifier_GNSS_SATELLITE_ID - GNSS_SIGNAL_ID = _mscl.MipChannelIdentifier_GNSS_SIGNAL_ID - AIDING_MEASUREMENT_TYPE = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_TYPE - GNSS_RF_BAND = _mscl.MipChannelIdentifier_GNSS_RF_BAND - AIDING_MEASUREMENT_FRAME_ID = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_FRAME_ID - GNSS = _mscl.MipChannelIdentifier_GNSS - DUAL_ANTENNA = _mscl.MipChannelIdentifier_DUAL_ANTENNA - HEADING = _mscl.MipChannelIdentifier_HEADING - PRESSURE = _mscl.MipChannelIdentifier_PRESSURE - MAGNETOMETER = _mscl.MipChannelIdentifier_MAGNETOMETER - SPEED = _mscl.MipChannelIdentifier_SPEED - AIDING_POS_ECEF = _mscl.MipChannelIdentifier_AIDING_POS_ECEF - AIDING_POS_LLH = _mscl.MipChannelIdentifier_AIDING_POS_LLH - AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipChannelIdentifier_AIDING_HEIGHT_ABOVE_ELLIPSOID - AIDING_VEL_ECEF = _mscl.MipChannelIdentifier_AIDING_VEL_ECEF - AIDING_VEL_NED = _mscl.MipChannelIdentifier_AIDING_VEL_NED - AIDING_VEL_BODY_FRAME = _mscl.MipChannelIdentifier_AIDING_VEL_BODY_FRAME - AIDING_HEADING_TRUE = _mscl.MipChannelIdentifier_AIDING_HEADING_TRUE - AIDING_MAGNETIC_FIELD = _mscl.MipChannelIdentifier_AIDING_MAGNETIC_FIELD - AIDING_PRESSURE = _mscl.MipChannelIdentifier_AIDING_PRESSURE - UNKNOWN_CONSTELLATION = _mscl.MipChannelIdentifier_UNKNOWN_CONSTELLATION - GPS = _mscl.MipChannelIdentifier_GPS - GLONASS = _mscl.MipChannelIdentifier_GLONASS - GALILEO = _mscl.MipChannelIdentifier_GALILEO - BEIDOU = _mscl.MipChannelIdentifier_BEIDOU - UNKNOWN_SIGNAL = _mscl.MipChannelIdentifier_UNKNOWN_SIGNAL - GPS_L1CA = _mscl.MipChannelIdentifier_GPS_L1CA - GPS_L1P = _mscl.MipChannelIdentifier_GPS_L1P - GPS_L1Z = _mscl.MipChannelIdentifier_GPS_L1Z - GPS_L2CA = _mscl.MipChannelIdentifier_GPS_L2CA - GPS_L2P = _mscl.MipChannelIdentifier_GPS_L2P - GPS_L2Z = _mscl.MipChannelIdentifier_GPS_L2Z - GPS_L2CL = _mscl.MipChannelIdentifier_GPS_L2CL - GPS_L2CM = _mscl.MipChannelIdentifier_GPS_L2CM - GPS_L2CML = _mscl.MipChannelIdentifier_GPS_L2CML - GPS_L5I = _mscl.MipChannelIdentifier_GPS_L5I - GPS_L5Q = _mscl.MipChannelIdentifier_GPS_L5Q - GPS_L5IQ = _mscl.MipChannelIdentifier_GPS_L5IQ - GPS_L1CD = _mscl.MipChannelIdentifier_GPS_L1CD - GPS_L1CP = _mscl.MipChannelIdentifier_GPS_L1CP - GPS_L1CDP = _mscl.MipChannelIdentifier_GPS_L1CDP - GLONASS_G1CA = _mscl.MipChannelIdentifier_GLONASS_G1CA - GLONASS_G1P = _mscl.MipChannelIdentifier_GLONASS_G1P - GLONASS_G2C = _mscl.MipChannelIdentifier_GLONASS_G2C - GLONASS_G2P = _mscl.MipChannelIdentifier_GLONASS_G2P - GALILEO_E1C = _mscl.MipChannelIdentifier_GALILEO_E1C - GALILEO_E1A = _mscl.MipChannelIdentifier_GALILEO_E1A - GALILEO_E1B = _mscl.MipChannelIdentifier_GALILEO_E1B - GALILEO_E1BC = _mscl.MipChannelIdentifier_GALILEO_E1BC - GALILEO_E1ABC = _mscl.MipChannelIdentifier_GALILEO_E1ABC - GALILEO_E6C = _mscl.MipChannelIdentifier_GALILEO_E6C - GALILEO_E6A = _mscl.MipChannelIdentifier_GALILEO_E6A - GALILEO_E6B = _mscl.MipChannelIdentifier_GALILEO_E6B - GALILEO_E6BC = _mscl.MipChannelIdentifier_GALILEO_E6BC - GALILEO_E6ABC = _mscl.MipChannelIdentifier_GALILEO_E6ABC - GALILEO_E5BI = _mscl.MipChannelIdentifier_GALILEO_E5BI - GALILEO_E5BQ = _mscl.MipChannelIdentifier_GALILEO_E5BQ - GALILEO_E5BIQ = _mscl.MipChannelIdentifier_GALILEO_E5BIQ - GALILEO_E5ABI = _mscl.MipChannelIdentifier_GALILEO_E5ABI - GALILEO_E5ABQ = _mscl.MipChannelIdentifier_GALILEO_E5ABQ - GALILEO_E5ABIQ = _mscl.MipChannelIdentifier_GALILEO_E5ABIQ - GALILEO_E5AI = _mscl.MipChannelIdentifier_GALILEO_E5AI - GALILEO_E5AQ = _mscl.MipChannelIdentifier_GALILEO_E5AQ - GALILEO_E5AIQ = _mscl.MipChannelIdentifier_GALILEO_E5AIQ - SBAS_L1CA = _mscl.MipChannelIdentifier_SBAS_L1CA - SBAS_L5I = _mscl.MipChannelIdentifier_SBAS_L5I - SBAS_L5Q = _mscl.MipChannelIdentifier_SBAS_L5Q - SBAS_L5IQ = _mscl.MipChannelIdentifier_SBAS_L5IQ - QZSS_L1CA = _mscl.MipChannelIdentifier_QZSS_L1CA - QZSS_LEXS = _mscl.MipChannelIdentifier_QZSS_LEXS - QZSS_LEXL = _mscl.MipChannelIdentifier_QZSS_LEXL - QZSS_LEXSL = _mscl.MipChannelIdentifier_QZSS_LEXSL - QZSS_L2CM = _mscl.MipChannelIdentifier_QZSS_L2CM - QZSS_L2CL = _mscl.MipChannelIdentifier_QZSS_L2CL - QZSS_L2CML = _mscl.MipChannelIdentifier_QZSS_L2CML - QZSS_L5I = _mscl.MipChannelIdentifier_QZSS_L5I - QZSS_L5Q = _mscl.MipChannelIdentifier_QZSS_L5Q - QZSS_L5IQ = _mscl.MipChannelIdentifier_QZSS_L5IQ - QZSS_L1CD = _mscl.MipChannelIdentifier_QZSS_L1CD - QZSS_L1CP = _mscl.MipChannelIdentifier_QZSS_L1CP - QZSS_L1CDP = _mscl.MipChannelIdentifier_QZSS_L1CDP - BEIDOU_B1I = _mscl.MipChannelIdentifier_BEIDOU_B1I - BEIDOU_B1Q = _mscl.MipChannelIdentifier_BEIDOU_B1Q - BEIDOU_B1IQ = _mscl.MipChannelIdentifier_BEIDOU_B1IQ - BEIDOU_B3I = _mscl.MipChannelIdentifier_BEIDOU_B3I - BEIDOU_B3Q = _mscl.MipChannelIdentifier_BEIDOU_B3Q - BEIDOU_B3IQ = _mscl.MipChannelIdentifier_BEIDOU_B3IQ - BEIDOU_B2I = _mscl.MipChannelIdentifier_BEIDOU_B2I - BEIDOU_B2Q = _mscl.MipChannelIdentifier_BEIDOU_B2Q - BEIDOU_B2IQ = _mscl.MipChannelIdentifier_BEIDOU_B2IQ - UNKNOWN_RF_BAND = _mscl.MipChannelIdentifier_UNKNOWN_RF_BAND - RF_BAND_L1 = _mscl.MipChannelIdentifier_RF_BAND_L1 - RF_BAND_L2 = _mscl.MipChannelIdentifier_RF_BAND_L2 - RF_BAND_L5 = _mscl.MipChannelIdentifier_RF_BAND_L5 - - def __init__(self, *args): - _mscl.MipChannelIdentifier_swiginit(self, _mscl.new_MipChannelIdentifier(*args)) - __swig_destroy__ = _mscl.delete_MipChannelIdentifier - - def identifierType(self): - return _mscl.MipChannelIdentifier_identifierType(self) - - def id(self): - return _mscl.MipChannelIdentifier_id(self) - - def hasSpecifier(self): - return _mscl.MipChannelIdentifier_hasSpecifier(self) - - def specifier(self): - return _mscl.MipChannelIdentifier_specifier(self) - - def name(self, standardizedFormat=True): - return _mscl.MipChannelIdentifier_name(self, standardizedFormat) - -# Register MipChannelIdentifier in _mscl: -_mscl.MipChannelIdentifier_swigregister(MipChannelIdentifier) - -class MipCommandBytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - id = property(_mscl.MipCommandBytes_id_get, _mscl.MipCommandBytes_id_set) - commands = property(_mscl.MipCommandBytes_commands_get, _mscl.MipCommandBytes_commands_set) - buildCmdFailed = property(_mscl.MipCommandBytes_buildCmdFailed_get, _mscl.MipCommandBytes_buildCmdFailed_set) - sendCmdFailed = property(_mscl.MipCommandBytes_sendCmdFailed_get, _mscl.MipCommandBytes_sendCmdFailed_set) - - def __init__(self, *args): - _mscl.MipCommandBytes_swiginit(self, _mscl.new_MipCommandBytes(*args)) - - def add(self, cmd): - return _mscl.MipCommandBytes_add(self, cmd) - - def valid(self): - return _mscl.MipCommandBytes_valid(self) - __swig_destroy__ = _mscl.delete_MipCommandBytes - -# Register MipCommandBytes in _mscl: -_mscl.MipCommandBytes_swigregister(MipCommandBytes) - -class AidingMeasurementInput(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - ACK_NACK = _mscl.AidingMeasurementInput_ACK_NACK - ECHO_INPUT = _mscl.AidingMeasurementInput_ECHO_INPUT - - def toMipFieldValues(self): - return _mscl.AidingMeasurementInput_toMipFieldValues(self) - - def timestamp(self, *args): - return _mscl.AidingMeasurementInput_timestamp(self, *args) - - def timebase(self): - return _mscl.AidingMeasurementInput_timebase(self) - - def frameId(self, *args): - return _mscl.AidingMeasurementInput_frameId(self, *args) - - def validFlags(self, *args): - return _mscl.AidingMeasurementInput_validFlags(self, *args) - -# Register AidingMeasurementInput in _mscl: -_mscl.AidingMeasurementInput_swigregister(AidingMeasurementInput) - -class AidingMeasurementPosition(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementPosition_X - LATITUDE = _mscl.AidingMeasurementPosition_LATITUDE - Y = _mscl.AidingMeasurementPosition_Y - LONGITUDE = _mscl.AidingMeasurementPosition_LONGITUDE - Z = _mscl.AidingMeasurementPosition_Z - HEIGHT = _mscl.AidingMeasurementPosition_HEIGHT - ALTITUDE = _mscl.AidingMeasurementPosition_ALTITUDE - - def __init__(self, *args): - _mscl.AidingMeasurementPosition_swiginit(self, _mscl.new_AidingMeasurementPosition(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPosition - - def position(self, *args): - return _mscl.AidingMeasurementPosition_position(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPosition_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementPosition_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPosition_valid(self, *args) - -# Register AidingMeasurementPosition in _mscl: -_mscl.AidingMeasurementPosition_swigregister(AidingMeasurementPosition) - -class AidingMeasurementHeight(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeight_swiginit(self, _mscl.new_AidingMeasurementHeight(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeight - - def height(self, *args): - return _mscl.AidingMeasurementHeight_height(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeight_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeight_valid(self, *args) - -# Register AidingMeasurementHeight in _mscl: -_mscl.AidingMeasurementHeight_swigregister(AidingMeasurementHeight) - -class AidingMeasurementVelocity(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementVelocity_X - NORTH = _mscl.AidingMeasurementVelocity_NORTH - Y = _mscl.AidingMeasurementVelocity_Y - EAST = _mscl.AidingMeasurementVelocity_EAST - Z = _mscl.AidingMeasurementVelocity_Z - DOWN = _mscl.AidingMeasurementVelocity_DOWN - - def __init__(self, *args): - _mscl.AidingMeasurementVelocity_swiginit(self, _mscl.new_AidingMeasurementVelocity(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementVelocity - - def velocity(self, *args): - return _mscl.AidingMeasurementVelocity_velocity(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementVelocity_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementVelocity_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementVelocity_valid(self, *args) - -# Register AidingMeasurementVelocity in _mscl: -_mscl.AidingMeasurementVelocity_swigregister(AidingMeasurementVelocity) - -class AidingMeasurementHeading(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeading_swiginit(self, _mscl.new_AidingMeasurementHeading(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeading - - def heading(self, *args): - return _mscl.AidingMeasurementHeading_heading(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeading_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeading_valid(self, *args) - -# Register AidingMeasurementHeading in _mscl: -_mscl.AidingMeasurementHeading_swigregister(AidingMeasurementHeading) - -class AidingMeasurementMagneticField(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementMagneticField_X - Y = _mscl.AidingMeasurementMagneticField_Y - Z = _mscl.AidingMeasurementMagneticField_Z - - def __init__(self, *args): - _mscl.AidingMeasurementMagneticField_swiginit(self, _mscl.new_AidingMeasurementMagneticField(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementMagneticField - - def magneticField(self, *args): - return _mscl.AidingMeasurementMagneticField_magneticField(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementMagneticField_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementMagneticField_valid(self, *args) - -# Register AidingMeasurementMagneticField in _mscl: -_mscl.AidingMeasurementMagneticField_swigregister(AidingMeasurementMagneticField) - -class AidingMeasurementPressure(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementPressure_swiginit(self, _mscl.new_AidingMeasurementPressure(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPressure - - def pressure(self, *args): - return _mscl.AidingMeasurementPressure_pressure(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPressure_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPressure_valid(self, *args) - -# Register AidingMeasurementPressure in _mscl: -_mscl.AidingMeasurementPressure_swigregister(AidingMeasurementPressure) - -class GnssReceiverInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GnssReceiverInfo_swiginit(self, _mscl.new_GnssReceiverInfo(*args)) - id = property(_mscl.GnssReceiverInfo_id_get, _mscl.GnssReceiverInfo_id_set) - targetDataClass = property(_mscl.GnssReceiverInfo_targetDataClass_get, _mscl.GnssReceiverInfo_targetDataClass_set) - description = property(_mscl.GnssReceiverInfo_description_get, _mscl.GnssReceiverInfo_description_set) - module = property(_mscl.GnssReceiverInfo_module_get, _mscl.GnssReceiverInfo_module_set) - fwId = property(_mscl.GnssReceiverInfo_fwId_get, _mscl.GnssReceiverInfo_fwId_set) - fwVersion = property(_mscl.GnssReceiverInfo_fwVersion_get, _mscl.GnssReceiverInfo_fwVersion_set) - __swig_destroy__ = _mscl.delete_GnssReceiverInfo - -# Register GnssReceiverInfo in _mscl: -_mscl.GnssReceiverInfo_swigregister(GnssReceiverInfo) -GnssReceiverInfo.INFO_NOT_FOUND = _mscl.cvar.GnssReceiverInfo_INFO_NOT_FOUND - -class DeviceCommPort(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SPECIAL = _mscl.DeviceCommPort_SPECIAL - UART = _mscl.DeviceCommPort_UART - USB = _mscl.DeviceCommPort_USB - NONE = _mscl.DeviceCommPort_NONE - MIP_COMMANDS = _mscl.DeviceCommPort_MIP_COMMANDS - MIP_DATA = _mscl.DeviceCommPort_MIP_DATA - NMEA = _mscl.DeviceCommPort_NMEA - RTCM = _mscl.DeviceCommPort_RTCM - SPARTN = _mscl.DeviceCommPort_SPARTN - ALL = _mscl.DeviceCommPort_ALL - - def __init__(self, *args): - _mscl.DeviceCommPort_swiginit(self, _mscl.new_DeviceCommPort(*args)) - - def interfaceId(self): - return _mscl.DeviceCommPort_interfaceId(self) - type = property(_mscl.DeviceCommPort_type_get, _mscl.DeviceCommPort_type_set) - id = property(_mscl.DeviceCommPort_id_get, _mscl.DeviceCommPort_id_set) - inputProtocols = property(_mscl.DeviceCommPort_inputProtocols_get, _mscl.DeviceCommPort_inputProtocols_set) - outputProtocols = property(_mscl.DeviceCommPort_outputProtocols_get, _mscl.DeviceCommPort_outputProtocols_set) - __swig_destroy__ = _mscl.delete_DeviceCommPort - -# Register DeviceCommPort in _mscl: -_mscl.DeviceCommPort_swigregister(DeviceCommPort) - -class EventTypeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTypeInfo_swiginit(self, _mscl.new_EventTypeInfo(*args)) - type = property(_mscl.EventTypeInfo_type_get, _mscl.EventTypeInfo_type_set) - maxInstances = property(_mscl.EventTypeInfo_maxInstances_get, _mscl.EventTypeInfo_maxInstances_set) - __swig_destroy__ = _mscl.delete_EventTypeInfo - -# Register EventTypeInfo in _mscl: -_mscl.EventTypeInfo_swigregister(EventTypeInfo) - -class EventSupportInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - TRIGGERS = _mscl.EventSupportInfo_TRIGGERS - ACTIONS = _mscl.EventSupportInfo_ACTIONS - query = property(_mscl.EventSupportInfo_query_get, _mscl.EventSupportInfo_query_set) - maxInstances = property(_mscl.EventSupportInfo_maxInstances_get, _mscl.EventSupportInfo_maxInstances_set) - entries = property(_mscl.EventSupportInfo_entries_get, _mscl.EventSupportInfo_entries_set) - - def __init__(self): - _mscl.EventSupportInfo_swiginit(self, _mscl.new_EventSupportInfo()) - __swig_destroy__ = _mscl.delete_EventSupportInfo - -# Register EventSupportInfo in _mscl: -_mscl.EventSupportInfo_swigregister(EventSupportInfo) - -class SensorRange(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ALL = _mscl.SensorRange_ALL - ACCEL_G = _mscl.SensorRange_ACCEL_G - GYRO_DPS = _mscl.SensorRange_GYRO_DPS - MAG_GAUSS = _mscl.SensorRange_MAG_GAUSS - PRESSURE_HPA = _mscl.SensorRange_PRESSURE_HPA - - def __init__(self): - _mscl.SensorRange_swiginit(self, _mscl.new_SensorRange()) - - def type(self): - return _mscl.SensorRange_type(self) - - def range(self): - return _mscl.SensorRange_range(self) - - def id(self): - return _mscl.SensorRange_id(self) - __swig_destroy__ = _mscl.delete_SensorRange - -# Register SensorRange in _mscl: -_mscl.SensorRange_swigregister(SensorRange) - -class SupportedSensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.SupportedSensorRanges_swiginit(self, _mscl.new_SupportedSensorRanges()) - - def options(self): - return _mscl.SupportedSensorRanges_options(self) - - def lookupRecommended(self, type, range): - return _mscl.SupportedSensorRanges_lookupRecommended(self, type, range) - __swig_destroy__ = _mscl.delete_SupportedSensorRanges - -# Register SupportedSensorRanges in _mscl: -_mscl.SupportedSensorRanges_swigregister(SupportedSensorRanges) - -class InertialTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - PORTABLE_VEHICLE = _mscl.InertialTypes_PORTABLE_VEHICLE - AUTOMOTIVE_VEHICLE = _mscl.InertialTypes_AUTOMOTIVE_VEHICLE - AIRBORNE_VEHICLE = _mscl.InertialTypes_AIRBORNE_VEHICLE - AIRBORNE_HIGH_G_VEHICLE = _mscl.InertialTypes_AIRBORNE_HIGH_G_VEHICLE - GPS_PORTABLE = _mscl.InertialTypes_GPS_PORTABLE - GPS_STATIONARY = _mscl.InertialTypes_GPS_STATIONARY - GPS_PEDESTRIAN = _mscl.InertialTypes_GPS_PEDESTRIAN - GPS_AUTOMOTIVE = _mscl.InertialTypes_GPS_AUTOMOTIVE - GPS_SEA = _mscl.InertialTypes_GPS_SEA - GPS_AIRBORNE_1G = _mscl.InertialTypes_GPS_AIRBORNE_1G - GPS_AIRBORNE_2G = _mscl.InertialTypes_GPS_AIRBORNE_2G - GPS_AIRBORNE_4G = _mscl.InertialTypes_GPS_AIRBORNE_4G - RESET_ALL_AXIS = _mscl.InertialTypes_RESET_ALL_AXIS - TARE_ROLL_AXIS = _mscl.InertialTypes_TARE_ROLL_AXIS - TARE_PITCH_AXIS = _mscl.InertialTypes_TARE_PITCH_AXIS - TARE_YAW_AXIS = _mscl.InertialTypes_TARE_YAW_AXIS - INTERNAL_GNSS_ALL = _mscl.InertialTypes_INTERNAL_GNSS_ALL - EXTERNAL_GNSS = _mscl.InertialTypes_EXTERNAL_GNSS - INTERNAL_GNSS1 = _mscl.InertialTypes_INTERNAL_GNSS1 - INTERNAL_GNSS2 = _mscl.InertialTypes_INTERNAL_GNSS2 - FIX_SBAS_CORRECTIONS = _mscl.InertialTypes_FIX_SBAS_CORRECTIONS - FIX_DGNSS_CORRECTIONS = _mscl.InertialTypes_FIX_DGNSS_CORRECTIONS - FIXTYPE_3D = _mscl.InertialTypes_FIXTYPE_3D - FIXTYPE_2D = _mscl.InertialTypes_FIXTYPE_2D - FIXTYPE_TIMEONLY = _mscl.InertialTypes_FIXTYPE_TIMEONLY - FIXTYPE_NONE = _mscl.InertialTypes_FIXTYPE_NONE - FIXTYPE_INVALID = _mscl.InertialTypes_FIXTYPE_INVALID - FIXTYPE_RTK_FLOAT = _mscl.InertialTypes_FIXTYPE_RTK_FLOAT - FIXTYPE_RTK_FIXED = _mscl.InertialTypes_FIXTYPE_RTK_FIXED - FIXTYPE_DUAL_ANTENNA_NONE = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_NONE - FIXTYPE_DUAL_ANTENNA_FLOAT = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FLOAT - FIXTYPE_DUAL_ANTENNA_FIXED = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FIXED - DATA_VALID_REC_1 = _mscl.InertialTypes_DATA_VALID_REC_1 - DATA_VALID_REC_2 = _mscl.InertialTypes_DATA_VALID_REC_2 - ANTENNA_OFFSETS_VALID = _mscl.InertialTypes_ANTENNA_OFFSETS_VALID - SVFLAG_NAVIGATION = _mscl.InertialTypes_SVFLAG_NAVIGATION - SVFLAG_HEALTHY = _mscl.InertialTypes_SVFLAG_HEALTHY - DEVICE_AHRS = _mscl.InertialTypes_DEVICE_AHRS - DEVICE_GPS = _mscl.InertialTypes_DEVICE_GPS - ON_FULL_PERFORMANCE = _mscl.InertialTypes_ON_FULL_PERFORMANCE - ON_LOW_POWER = _mscl.InertialTypes_ON_LOW_POWER - SLEEP = _mscl.InertialTypes_SLEEP - OFF = _mscl.InertialTypes_OFF - STANDARD_MIP = _mscl.InertialTypes_STANDARD_MIP - WRAPPED_RAW = _mscl.InertialTypes_WRAPPED_RAW - SENSORSTATE_OFF = _mscl.InertialTypes_SENSORSTATE_OFF - SENSORSTATE_ON = _mscl.InertialTypes_SENSORSTATE_ON - SENSORSTATE_UNKNOWN = _mscl.InertialTypes_SENSORSTATE_UNKNOWN - ANTENNASTATE_INIT = _mscl.InertialTypes_ANTENNASTATE_INIT - ANTENNASTATE_SHORT = _mscl.InertialTypes_ANTENNASTATE_SHORT - ANTENNASTATE_OPEN = _mscl.InertialTypes_ANTENNASTATE_OPEN - ANTENNASTATE_GOOD = _mscl.InertialTypes_ANTENNASTATE_GOOD - ANTENNASTATE_UNKNOWN = _mscl.InertialTypes_ANTENNASTATE_UNKNOWN - ANTENNAPOWER_OFF = _mscl.InertialTypes_ANTENNAPOWER_OFF - ANTENNAPOWER_ON = _mscl.InertialTypes_ANTENNAPOWER_ON - ANTENNAPOWER_UNKNOWN = _mscl.InertialTypes_ANTENNAPOWER_UNKNOWN - FILTERSTATE_STARTUP = _mscl.InertialTypes_FILTERSTATE_STARTUP - FILTERSTATE_INIT = _mscl.InertialTypes_FILTERSTATE_INIT - FILTERSTATE_RUNNING_SLN_VALID = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_VALID - FILTERSTATE_RUNNING_SLN_ERROR = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_ERROR - FILTERSTATE_VERT_GYRO = _mscl.InertialTypes_FILTERSTATE_VERT_GYRO - FILTERSTATE_AHRS = _mscl.InertialTypes_FILTERSTATE_AHRS - FILTERSTATE_FULL_NAV = _mscl.InertialTypes_FILTERSTATE_FULL_NAV - FILTERSTATUS_IMU_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_IMU_UNAVAILABLE - FILTERSTATUS_GPS_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_GPS_UNAVAILABLE - FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC = _mscl.InertialTypes_FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC - FILTERSTATUS_POS_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_POS_COVARIANCE_HIGH_WARN - FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN - FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN - FILTERSTATUS_NAN_IN_SOLUTION = _mscl.InertialTypes_FILTERSTATUS_NAN_IN_SOLUTION - FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN - FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN - FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN - FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN - FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_CONDITION = _mscl.InertialTypes_FILTERSTATUS_CONDITION - FILTERSTATUS_ROLL_PITCH_WARNING = _mscl.InertialTypes_FILTERSTATUS_ROLL_PITCH_WARNING - FILTERSTATUS_HEADING_WARNING = _mscl.InertialTypes_FILTERSTATUS_HEADING_WARNING - FILTERSTATUS_POSITION_WARNING = _mscl.InertialTypes_FILTERSTATUS_POSITION_WARNING - FILTERSTATUS_VELOCITY_WARNING = _mscl.InertialTypes_FILTERSTATUS_VELOCITY_WARNING - FILTERSTATUS_IMU_BIAS_WARNING = _mscl.InertialTypes_FILTERSTATUS_IMU_BIAS_WARNING - FILTERSTATUS_GNSS_CLK_WARNING = _mscl.InertialTypes_FILTERSTATUS_GNSS_CLK_WARNING - FILTERSTATUS_ANT_LEVER_ARM_WARNING = _mscl.InertialTypes_FILTERSTATUS_ANT_LEVER_ARM_WARNING - FILTERSTATUS_MOUNTING_TRANSFORM_WARNING = _mscl.InertialTypes_FILTERSTATUS_MOUNTING_TRANSFORM_WARNING - FILTERSTATUS_ATT_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_ATT_NOT_INIT - FILTERSTATUS_POS_VEL_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_POS_VEL_NOT_INIT - STABLE = _mscl.InertialTypes_STABLE - CONVERGING = _mscl.InertialTypes_CONVERGING - UNSTABLE = _mscl.InertialTypes_UNSTABLE - DGNSSBASE_UDRE_SCALE_FACTOR_1_00 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_1_00 - DGNSSBASE_UDRE_SCALE_FACTOR_0_75 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_75 - DGNSSBASE_UDRE_SCALE_FACTOR_0_50 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_50 - DGNSSBASE_UDRE_SCALE_FACTOR_0_30 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_30 - DGNSSBASE_UDRE_SCALE_FACTOR_0_20 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_20 - DGNSSBASE_UDRE_SCALE_FACTOR_0_10 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_10 - DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED - DGNSSBASE_REFERENCE_STATION_NOT_WORKING = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_NOT_WORKING - HEADINGSOURCE_NONE = _mscl.InertialTypes_HEADINGSOURCE_NONE - HEADINGSOURCE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_MAGNETOMETER - HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR - HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD = _mscl.InertialTypes_HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD - HEADINGSOURCE_GNSS_DUAL_ANTENNA = _mscl.InertialTypes_HEADINGSOURCE_GNSS_DUAL_ANTENNA - ENABLE_NONE = _mscl.InertialTypes_ENABLE_NONE - ENABLE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_ENABLE_INTERNAL_MAGNETOMETER - ENABLE_INTERNAL_GNSS = _mscl.InertialTypes_ENABLE_INTERNAL_GNSS - ENABLE_EXTERNAL_MESSAGES = _mscl.InertialTypes_ENABLE_EXTERNAL_MESSAGES - ENABLE_MAGNETOMETER_AND_GNSS = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_GNSS - ENABLE_GNSS_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_GNSS_AND_EXTERNAL - ENABLE_MAGNETOMETER_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_EXTERNAL - ENABLE_ALL = _mscl.InertialTypes_ENABLE_ALL - ENABLE_GYRO_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_BIAS_ESTIMATION - ENABLE_ACCEL_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_BIAS_ESTIMATION - ENABLE_GYRO_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_SCALE_FACTOR_ESTIMATION - ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION - ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION = _mscl.InertialTypes_ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION - ENABLE_HARD_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_HARD_IRON_AUTO_CALIBRATION - ENABLE_SOFT_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_SOFT_IRON_AUTO_CALIBRATION - NONE = _mscl.InertialTypes_NONE - WORLD_MAGNETIC_MODEL = _mscl.InertialTypes_WORLD_MAGNETIC_MODEL - MANUAL = _mscl.InertialTypes_MANUAL - ADAPTIVE_MEASUREMENT_DISABLE = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_DISABLE - ADAPTIVE_MEASUREMENT_ENABLE_FIXED = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_FIXED - ADAPTIVE_MEASUREMENT_ENABLE_AUTO = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_AUTO - GNSS_POS_VEL_AIDING = _mscl.InertialTypes_GNSS_POS_VEL_AIDING - GNSS_HEADING_AIDING = _mscl.InertialTypes_GNSS_HEADING_AIDING - ALTIMETER_AIDING = _mscl.InertialTypes_ALTIMETER_AIDING - ODOMETER_AIDING = _mscl.InertialTypes_ODOMETER_AIDING - MAGNETOMETER_AIDING = _mscl.InertialTypes_MAGNETOMETER_AIDING - EXTERNAL_HEADING_AIDING = _mscl.InertialTypes_EXTERNAL_HEADING_AIDING - EXTERNAL_ALTIMETER_AIDING = _mscl.InertialTypes_EXTERNAL_ALTIMETER_AIDING - EXTERNAL_MAGNETOMETER_AIDING = _mscl.InertialTypes_EXTERNAL_MAGNETOMETER_AIDING - BODY_FRAME_VEL_AIDING = _mscl.InertialTypes_BODY_FRAME_VEL_AIDING - ALL_AIDING_MEASUREMENTS = _mscl.InertialTypes_ALL_AIDING_MEASUREMENTS - GPS = _mscl.InertialTypes_GPS - SBAS = _mscl.InertialTypes_SBAS - GALILEO = _mscl.InertialTypes_GALILEO - BEIDOU = _mscl.InertialTypes_BEIDOU - QZSS = _mscl.InertialTypes_QZSS - GLONASS = _mscl.InertialTypes_GLONASS - FILTERING_OFF = _mscl.InertialTypes_FILTERING_OFF - FILTERING_CONSERVATIVE = _mscl.InertialTypes_FILTERING_CONSERVATIVE - FILTERING_MODERATE = _mscl.InertialTypes_FILTERING_MODERATE - FILTERING_AGGRESSIVE = _mscl.InertialTypes_FILTERING_AGGRESSIVE - FACTORY_STREAMING_OVERWRITE = _mscl.InertialTypes_FACTORY_STREAMING_OVERWRITE - FACTORY_STREAMING_MERGE = _mscl.InertialTypes_FACTORY_STREAMING_MERGE - FACTORY_STREAMING_ADDITIVE = _mscl.InertialTypes_FACTORY_STREAMING_ADDITIVE - PPS_DISABLED = _mscl.InertialTypes_PPS_DISABLED - PPS_RECEIVER_1 = _mscl.InertialTypes_PPS_RECEIVER_1 - PPS_RECEIVER_2 = _mscl.InertialTypes_PPS_RECEIVER_2 - PPS_GPIO = _mscl.InertialTypes_PPS_GPIO - PPS_GENERATED = _mscl.InertialTypes_PPS_GENERATED - GNSS_AIDING_TIGHT_COUPLING = _mscl.InertialTypes_GNSS_AIDING_TIGHT_COUPLING - GNSS_AIDING_DIFFERENTIAL = _mscl.InertialTypes_GNSS_AIDING_DIFFERENTIAL - GNSS_AIDING_INTEGER_FIX = _mscl.InertialTypes_GNSS_AIDING_INTEGER_FIX - GNSS_AIDING_GPS = _mscl.InertialTypes_GNSS_AIDING_GPS - GNSS_AIDING_GLONASS = _mscl.InertialTypes_GNSS_AIDING_GLONASS - GNSS_AIDING_GALILEO = _mscl.InertialTypes_GNSS_AIDING_GALILEO - GNSS_AIDING_BEIDOU = _mscl.InertialTypes_GNSS_AIDING_BEIDOU - GNSS_AIDING_NO_FIX = _mscl.InertialTypes_GNSS_AIDING_NO_FIX - GNSS_AIDING_CONFIG_ERROR = _mscl.InertialTypes_GNSS_AIDING_CONFIG_ERROR - AIDING_MEASUREMENT_ENABLED = _mscl.InertialTypes_AIDING_MEASUREMENT_ENABLED - AIDING_MEASUREMENT_USED = _mscl.InertialTypes_AIDING_MEASUREMENT_USED - AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH - AIDING_MEASUREMENT_WARNING_SAMPLE_TIME = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_SAMPLE_TIME - AIDING_MEASUREMENT_CONFIG_ERROR = _mscl.InertialTypes_AIDING_MEASUREMENT_CONFIG_ERROR - AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED = _mscl.InertialTypes_AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED - RTK_CORRECTION_ANTENNA_POS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_POS_RECEIVED - RTK_CORRECTION_ANTENNA_DESC_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_DESC_RECEIVED - RTK_CORRECTION_GPS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GPS_RECEIVED - RTK_CORRECTION_GLONASS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GLONASS_RECEIVED - RTK_CORRECTION_GALILEO_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GALILEO_RECEIVED - RTK_CORRECTION_BEIDOU_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_BEIDOU_RECEIVED - RTK_CORRECTION_USING_GPS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GPS_MSM - RTK_CORRECTION_USING_GLONASS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GLONASS_MSM - SIGNAL_QUALITY_NONE = _mscl.InertialTypes_SIGNAL_QUALITY_NONE - SIGNAL_QUALITY_SEARCHING = _mscl.InertialTypes_SIGNAL_QUALITY_SEARCHING - SIGNAL_QUALITY_ACQUIRED = _mscl.InertialTypes_SIGNAL_QUALITY_ACQUIRED - SIGNAL_QUALITY_UNUSABLE = _mscl.InertialTypes_SIGNAL_QUALITY_UNUSABLE - SIGNAL_QUALITY_TIME_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_TIME_LOCKED - SIGNAL_QUALITY_FULLY_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_FULLY_LOCKED - OVERRANGE_ACCEL_X = _mscl.InertialTypes_OVERRANGE_ACCEL_X - OVERRANGE_ACCEL_Y = _mscl.InertialTypes_OVERRANGE_ACCEL_Y - OVERRANGE_ACCEL_Z = _mscl.InertialTypes_OVERRANGE_ACCEL_Z - OVERRANGE_GYRO_X = _mscl.InertialTypes_OVERRANGE_GYRO_X - OVERRANGE_GYRO_Y = _mscl.InertialTypes_OVERRANGE_GYRO_Y - OVERRANGE_GYRO_Z = _mscl.InertialTypes_OVERRANGE_GYRO_Z - OVERRANGE_MAG_X = _mscl.InertialTypes_OVERRANGE_MAG_X - OVERRANGE_MAG_Y = _mscl.InertialTypes_OVERRANGE_MAG_Y - OVERRANGE_MAG_Z = _mscl.InertialTypes_OVERRANGE_MAG_Z - OVERRANGE_PRESSURE = _mscl.InertialTypes_OVERRANGE_PRESSURE - UNKNOWN_SBAS_SYSTEM = _mscl.InertialTypes_UNKNOWN_SBAS_SYSTEM - WAAS = _mscl.InertialTypes_WAAS - EGNOS = _mscl.InertialTypes_EGNOS - MSAS = _mscl.InertialTypes_MSAS - GAGAN = _mscl.InertialTypes_GAGAN - SBAS_INFO_RANGE_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_RANGE_AVAILABLE - SBAS_INFO_CORRECTIONS_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_CORRECTIONS_AVAILABLE - SBAS_INFO_INTEGRITY_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_INTEGRITY_AVAILABLE - SBAS_INFO_TEST = _mscl.InertialTypes_SBAS_INFO_TEST - JAMMING_STATE_UNKNOWN = _mscl.InertialTypes_JAMMING_STATE_UNKNOWN - JAMMING_STATE_NONE = _mscl.InertialTypes_JAMMING_STATE_NONE - JAMMING_STATE_PARTIAL = _mscl.InertialTypes_JAMMING_STATE_PARTIAL - JAMMING_STATE_SIGNIFICANT = _mscl.InertialTypes_JAMMING_STATE_SIGNIFICANT - SPOOFING_STATE_UNKNOWN = _mscl.InertialTypes_SPOOFING_STATE_UNKNOWN - SPOOFING_STATE_NONE = _mscl.InertialTypes_SPOOFING_STATE_NONE - SPOOFING_STATE_PARTIAL = _mscl.InertialTypes_SPOOFING_STATE_PARTIAL - SPOOFING_STATE_SIGNIFICANT = _mscl.InertialTypes_SPOOFING_STATE_SIGNIFICANT - - def __init__(self): - _mscl.InertialTypes_swiginit(self, _mscl.new_InertialTypes()) - __swig_destroy__ = _mscl.delete_InertialTypes - -# Register InertialTypes in _mscl: -_mscl.InertialTypes_swigregister(InertialTypes) - -class NmeaMessageFormat(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_MESSAGES = _mscl.NmeaMessageFormat_MAX_MESSAGES - GGA = _mscl.NmeaMessageFormat_GGA - GLL = _mscl.NmeaMessageFormat_GLL - GSV = _mscl.NmeaMessageFormat_GSV - RMC = _mscl.NmeaMessageFormat_RMC - VTG = _mscl.NmeaMessageFormat_VTG - HDT = _mscl.NmeaMessageFormat_HDT - ZDA = _mscl.NmeaMessageFormat_ZDA - MSRA = _mscl.NmeaMessageFormat_MSRA - MSRR = _mscl.NmeaMessageFormat_MSRR - IGNORED = _mscl.NmeaMessageFormat_IGNORED - GNSS = _mscl.NmeaMessageFormat_GNSS - GPS = _mscl.NmeaMessageFormat_GPS - GALILEO = _mscl.NmeaMessageFormat_GALILEO - GLONASS = _mscl.NmeaMessageFormat_GLONASS - - def __init__(self): - _mscl.NmeaMessageFormat_swiginit(self, _mscl.new_NmeaMessageFormat()) - __swig_destroy__ = _mscl.delete_NmeaMessageFormat - - def sentenceType(self, *args): - return _mscl.NmeaMessageFormat_sentenceType(self, *args) - - def talkerId(self, *args): - return _mscl.NmeaMessageFormat_talkerId(self, *args) - - def sourceDataClass(self, *args): - return _mscl.NmeaMessageFormat_sourceDataClass(self, *args) - - def sampleRate(self, *args): - return _mscl.NmeaMessageFormat_sampleRate(self, *args) - - @staticmethod - def talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - - @staticmethod - def dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - - @staticmethod - def supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - - @staticmethod - def toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -# Register NmeaMessageFormat in _mscl: -_mscl.NmeaMessageFormat_swigregister(NmeaMessageFormat) -NmeaMessageFormat.MAX_FREQUENCY = _mscl.cvar.NmeaMessageFormat_MAX_FREQUENCY - -def NmeaMessageFormat_talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - -def NmeaMessageFormat_dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - -def NmeaMessageFormat_supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - -def NmeaMessageFormat_toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -class Matrix_3x3(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Matrix_3x3_swiginit(self, _mscl.new_Matrix_3x3(*args)) - __swig_destroy__ = _mscl.delete_Matrix_3x3 - - def set(self, row, col, value): - return _mscl.Matrix_3x3_set(self, row, col, value) - - def at(self, row, col): - return _mscl.Matrix_3x3_at(self, row, col) - - def __str__(self): - return _mscl.Matrix_3x3___str__(self) - - def asMipFieldValues(self): - return _mscl.Matrix_3x3_asMipFieldValues(self) - -# Register Matrix_3x3 in _mscl: -_mscl.Matrix_3x3_swigregister(Matrix_3x3) - -class TimeUpdate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, timeOfWeek, weekNumber, timeAccuracy=0): - _mscl.TimeUpdate_swiginit(self, _mscl.new_TimeUpdate(timeOfWeek, weekNumber, timeAccuracy)) - __swig_destroy__ = _mscl.delete_TimeUpdate - - def timeOfWeek(self): - return _mscl.TimeUpdate_timeOfWeek(self) - - def weekNumber(self): - return _mscl.TimeUpdate_weekNumber(self) - - def timeAccuracy(self): - return _mscl.TimeUpdate_timeAccuracy(self) - -# Register TimeUpdate in _mscl: -_mscl.TimeUpdate_swigregister(TimeUpdate) - -class ZUPTSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, enable, threshold): - _mscl.ZUPTSettingsData_swiginit(self, _mscl.new_ZUPTSettingsData(enable, threshold)) - enabled = property(_mscl.ZUPTSettingsData_enabled_get, _mscl.ZUPTSettingsData_enabled_set) - threshold = property(_mscl.ZUPTSettingsData_threshold_get, _mscl.ZUPTSettingsData_threshold_set) - __swig_destroy__ = _mscl.delete_ZUPTSettingsData - -# Register ZUPTSettingsData in _mscl: -_mscl.ZUPTSettingsData_swigregister(ZUPTSettingsData) - -class FixedReferencePositionData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.FixedReferencePositionData_swiginit(self, _mscl.new_FixedReferencePositionData(*args)) - enable = property(_mscl.FixedReferencePositionData_enable_get, _mscl.FixedReferencePositionData_enable_set) - referencePosition = property(_mscl.FixedReferencePositionData_referencePosition_get, _mscl.FixedReferencePositionData_referencePosition_set) - __swig_destroy__ = _mscl.delete_FixedReferencePositionData - -# Register FixedReferencePositionData in _mscl: -_mscl.FixedReferencePositionData_swigregister(FixedReferencePositionData) - -class SBASSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enableSBAS = property(_mscl.SBASSettingsData_enableSBAS_get, _mscl.SBASSettingsData_enableSBAS_set) - enableRanging = property(_mscl.SBASSettingsData_enableRanging_get, _mscl.SBASSettingsData_enableRanging_set) - enableCorrectionData = property(_mscl.SBASSettingsData_enableCorrectionData_get, _mscl.SBASSettingsData_enableCorrectionData_set) - applyIntegrityInfo = property(_mscl.SBASSettingsData_applyIntegrityInfo_get, _mscl.SBASSettingsData_applyIntegrityInfo_set) - satellitePRNs = property(_mscl.SBASSettingsData_satellitePRNs_get, _mscl.SBASSettingsData_satellitePRNs_set) - - def __init__(self): - _mscl.SBASSettingsData_swiginit(self, _mscl.new_SBASSettingsData()) - __swig_destroy__ = _mscl.delete_SBASSettingsData - -# Register SBASSettingsData in _mscl: -_mscl.SBASSettingsData_swigregister(SBASSettingsData) - -class Constellation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - constellationID = property(_mscl.Constellation_constellationID_get, _mscl.Constellation_constellationID_set) - enabled = property(_mscl.Constellation_enabled_get, _mscl.Constellation_enabled_set) - reservedChannelCount = property(_mscl.Constellation_reservedChannelCount_get, _mscl.Constellation_reservedChannelCount_set) - maxChannels = property(_mscl.Constellation_maxChannels_get, _mscl.Constellation_maxChannels_set) - enableL1SAIF = property(_mscl.Constellation_enableL1SAIF_get, _mscl.Constellation_enableL1SAIF_set) - - def __init__(self): - _mscl.Constellation_swiginit(self, _mscl.new_Constellation()) - __swig_destroy__ = _mscl.delete_Constellation - -# Register Constellation in _mscl: -_mscl.Constellation_swigregister(Constellation) - -class ConstellationSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - maxChannelsAvailable = property(_mscl.ConstellationSettingsData_maxChannelsAvailable_get, _mscl.ConstellationSettingsData_maxChannelsAvailable_set) - maxChannelsToUse = property(_mscl.ConstellationSettingsData_maxChannelsToUse_get, _mscl.ConstellationSettingsData_maxChannelsToUse_set) - constellations = property(_mscl.ConstellationSettingsData_constellations_get, _mscl.ConstellationSettingsData_constellations_set) - - def __init__(self): - _mscl.ConstellationSettingsData_swiginit(self, _mscl.new_ConstellationSettingsData()) - __swig_destroy__ = _mscl.delete_ConstellationSettingsData - -# Register ConstellationSettingsData in _mscl: -_mscl.ConstellationSettingsData_swigregister(ConstellationSettingsData) - -class LowPassFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SET_TO_HALF_REPORTING_RATE = _mscl.LowPassFilterData_SET_TO_HALF_REPORTING_RATE - USER_SPECIFIED_CUTOFF_FREQ = _mscl.LowPassFilterData_USER_SPECIFIED_CUTOFF_FREQ - - def __init__(self, *args): - _mscl.LowPassFilterData_swiginit(self, _mscl.new_LowPassFilterData(*args)) - dataDescriptor = property(_mscl.LowPassFilterData_dataDescriptor_get, _mscl.LowPassFilterData_dataDescriptor_set) - manualFilterBandwidthConfig = property(_mscl.LowPassFilterData_manualFilterBandwidthConfig_get, _mscl.LowPassFilterData_manualFilterBandwidthConfig_set) - applyLowPassFilter = property(_mscl.LowPassFilterData_applyLowPassFilter_get, _mscl.LowPassFilterData_applyLowPassFilter_set) - cutoffFrequency = property(_mscl.LowPassFilterData_cutoffFrequency_get, _mscl.LowPassFilterData_cutoffFrequency_set) - - @staticmethod - def getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - - @staticmethod - def getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - __swig_destroy__ = _mscl.delete_LowPassFilterData - -# Register LowPassFilterData in _mscl: -_mscl.LowPassFilterData_swigregister(LowPassFilterData) - -def LowPassFilterData_getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - -def LowPassFilterData_getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - -class ComplementaryFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ComplementaryFilterData_swiginit(self, _mscl.new_ComplementaryFilterData()) - upCompensationEnabled = property(_mscl.ComplementaryFilterData_upCompensationEnabled_get, _mscl.ComplementaryFilterData_upCompensationEnabled_set) - upCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_upCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_upCompensationTimeInSeconds_set) - northCompensationEnabled = property(_mscl.ComplementaryFilterData_northCompensationEnabled_get, _mscl.ComplementaryFilterData_northCompensationEnabled_set) - northCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_northCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_northCompensationTimeInSeconds_set) - __swig_destroy__ = _mscl.delete_ComplementaryFilterData - -# Register ComplementaryFilterData in _mscl: -_mscl.ComplementaryFilterData_swigregister(ComplementaryFilterData) - -class PpsPulseInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PpsPulseInfo_swiginit(self, _mscl.new_PpsPulseInfo()) - count = property(_mscl.PpsPulseInfo_count_get, _mscl.PpsPulseInfo_count_set) - lastTimeinMS = property(_mscl.PpsPulseInfo_lastTimeinMS_get, _mscl.PpsPulseInfo_lastTimeinMS_set) - __swig_destroy__ = _mscl.delete_PpsPulseInfo - -# Register PpsPulseInfo in _mscl: -_mscl.PpsPulseInfo_swigregister(PpsPulseInfo) - -class StreamInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.StreamInfo_swiginit(self, _mscl.new_StreamInfo()) - enabled = property(_mscl.StreamInfo_enabled_get, _mscl.StreamInfo_enabled_set) - outgoingPacketsDropped = property(_mscl.StreamInfo_outgoingPacketsDropped_get, _mscl.StreamInfo_outgoingPacketsDropped_set) - __swig_destroy__ = _mscl.delete_StreamInfo - -# Register StreamInfo in _mscl: -_mscl.StreamInfo_swigregister(StreamInfo) - -class DeviceMessageInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.DeviceMessageInfo_swiginit(self, _mscl.new_DeviceMessageInfo()) - messageParsingErrors = property(_mscl.DeviceMessageInfo_messageParsingErrors_get, _mscl.DeviceMessageInfo_messageParsingErrors_set) - messagesRead = property(_mscl.DeviceMessageInfo_messagesRead_get, _mscl.DeviceMessageInfo_messagesRead_set) - lastMessageReadinMS = property(_mscl.DeviceMessageInfo_lastMessageReadinMS_get, _mscl.DeviceMessageInfo_lastMessageReadinMS_set) - __swig_destroy__ = _mscl.delete_DeviceMessageInfo - -# Register DeviceMessageInfo in _mscl: -_mscl.DeviceMessageInfo_swigregister(DeviceMessageInfo) - -class PortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PortInfo_swiginit(self, _mscl.new_PortInfo()) - bytesWritten = property(_mscl.PortInfo_bytesWritten_get, _mscl.PortInfo_bytesWritten_set) - bytesRead = property(_mscl.PortInfo_bytesRead_get, _mscl.PortInfo_bytesRead_set) - overrunsOnWrite = property(_mscl.PortInfo_overrunsOnWrite_get, _mscl.PortInfo_overrunsOnWrite_set) - overrunsOnRead = property(_mscl.PortInfo_overrunsOnRead_get, _mscl.PortInfo_overrunsOnRead_set) - __swig_destroy__ = _mscl.delete_PortInfo - -# Register PortInfo in _mscl: -_mscl.PortInfo_swigregister(PortInfo) - -class TemperatureInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.TemperatureInfo_swiginit(self, _mscl.new_TemperatureInfo()) - onBoardTemp = property(_mscl.TemperatureInfo_onBoardTemp_get, _mscl.TemperatureInfo_onBoardTemp_set) - lastReadInMS = property(_mscl.TemperatureInfo_lastReadInMS_get, _mscl.TemperatureInfo_lastReadInMS_set) - error = property(_mscl.TemperatureInfo_error_get, _mscl.TemperatureInfo_error_set) - __swig_destroy__ = _mscl.delete_TemperatureInfo - -# Register TemperatureInfo in _mscl: -_mscl.TemperatureInfo_swigregister(TemperatureInfo) - -ModelNumber = _mscl.ModelNumber -StatusStructure_Value = _mscl.StatusStructure_Value -SystemState_Value = _mscl.SystemState_Value -gnss1PpsPulseInfo_Count = _mscl.gnss1PpsPulseInfo_Count -gnss1PpsPulseInfo_LastTimeinMS = _mscl.gnss1PpsPulseInfo_LastTimeinMS -GnssPowerStateOn = _mscl.GnssPowerStateOn -ImuStreamInfo_Enabled = _mscl.ImuStreamInfo_Enabled -ImuStreamInfo_PacketsDropped = _mscl.ImuStreamInfo_PacketsDropped -GnssStreamInfo_Enabled = _mscl.GnssStreamInfo_Enabled -GnssStreamInfo_PacketsDropped = _mscl.GnssStreamInfo_PacketsDropped -EstimationFilterStreamInfo_Enabled = _mscl.EstimationFilterStreamInfo_Enabled -EstimationFilterStreamInfo_PacketsDropped = _mscl.EstimationFilterStreamInfo_PacketsDropped -ComPortInfo_BytesRead = _mscl.ComPortInfo_BytesRead -ComPortInfo_BytesWritten = _mscl.ComPortInfo_BytesWritten -ComPortInfo_OverrunsOnRead = _mscl.ComPortInfo_OverrunsOnRead -ComPortInfo_OverrunsOnWrite = _mscl.ComPortInfo_OverrunsOnWrite -ImuMessageInfo_LastMessageReadinMS = _mscl.ImuMessageInfo_LastMessageReadinMS -ImuMessageInfo_MessageParsingErrors = _mscl.ImuMessageInfo_MessageParsingErrors -ImuMessageInfo_MessagesRead = _mscl.ImuMessageInfo_MessagesRead -GnssMessageInfo_LastMessageReadinMS = _mscl.GnssMessageInfo_LastMessageReadinMS -GnssMessageInfo_MessageParsingErrors = _mscl.GnssMessageInfo_MessageParsingErrors -GnssMessageInfo_MessagesRead = _mscl.GnssMessageInfo_MessagesRead -TemperatureInfo_Error = _mscl.TemperatureInfo_Error -TemperatureInfo_LastReadInMS = _mscl.TemperatureInfo_LastReadInMS -TemperatureInfo_OnBoardTemp = _mscl.TemperatureInfo_OnBoardTemp -PowerState = _mscl.PowerState -GyroRange = _mscl.GyroRange -AccelRange = _mscl.AccelRange -HasMagnetometer = _mscl.HasMagnetometer -HasPressure = _mscl.HasPressure -class DeviceStatusData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_BASIC_STATUS_STRUCTURE - DIAGNOSTIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_DIAGNOSTIC_STATUS_STRUCTURE - SYSTEM_INITIALIZATION = _mscl.DeviceStatusData_SYSTEM_INITIALIZATION - SYSTEM_STARTUP = _mscl.DeviceStatusData_SYSTEM_STARTUP - SYSTEM_RUNNING = _mscl.DeviceStatusData_SYSTEM_RUNNING - - def __init__(self): - _mscl.DeviceStatusData_swiginit(self, _mscl.new_DeviceStatusData()) - modelNumber = property(_mscl.DeviceStatusData_modelNumber_get, _mscl.DeviceStatusData_modelNumber_set) - statusStructure = property(_mscl.DeviceStatusData_statusStructure_get, _mscl.DeviceStatusData_statusStructure_set) - systemTimerInMS = property(_mscl.DeviceStatusData_systemTimerInMS_get, _mscl.DeviceStatusData_systemTimerInMS_set) - - def systemState(self, *args): - return _mscl.DeviceStatusData_systemState(self, *args) - - def gnssPowerStateOn(self, *args): - return _mscl.DeviceStatusData_gnssPowerStateOn(self, *args) - - def gnss1PpsPulseInfo(self, *args): - return _mscl.DeviceStatusData_gnss1PpsPulseInfo(self, *args) - - def imuStreamInfo(self, *args): - return _mscl.DeviceStatusData_imuStreamInfo(self, *args) - - def gnssStreamInfo(self, *args): - return _mscl.DeviceStatusData_gnssStreamInfo(self, *args) - - def estimationFilterStreamInfo(self, *args): - return _mscl.DeviceStatusData_estimationFilterStreamInfo(self, *args) - - def imuMessageInfo(self, *args): - return _mscl.DeviceStatusData_imuMessageInfo(self, *args) - - def gnssMessageInfo(self, *args): - return _mscl.DeviceStatusData_gnssMessageInfo(self, *args) - - def comPortInfo(self, *args): - return _mscl.DeviceStatusData_comPortInfo(self, *args) - - def usbPortInfo(self, *args): - return _mscl.DeviceStatusData_usbPortInfo(self, *args) - - def hasMagnetometer(self, *args): - return _mscl.DeviceStatusData_hasMagnetometer(self, *args) - - def magnetometerInitializationFailed(self, *args): - return _mscl.DeviceStatusData_magnetometerInitializationFailed(self, *args) - - def hasPressure(self, *args): - return _mscl.DeviceStatusData_hasPressure(self, *args) - - def pressureInitializationFailed(self, *args): - return _mscl.DeviceStatusData_pressureInitializationFailed(self, *args) - - def gnssReceiverInitializationFailed(self, *args): - return _mscl.DeviceStatusData_gnssReceiverInitializationFailed(self, *args) - - def coldStartOnPowerOn(self, *args): - return _mscl.DeviceStatusData_coldStartOnPowerOn(self, *args) - - def temperatureInfo(self, *args): - return _mscl.DeviceStatusData_temperatureInfo(self, *args) - - def powerState(self, *args): - return _mscl.DeviceStatusData_powerState(self, *args) - - def gyroRange(self, *args): - return _mscl.DeviceStatusData_gyroRange(self, *args) - - def accelRange(self, *args): - return _mscl.DeviceStatusData_accelRange(self, *args) - - def asMap(self): - return _mscl.DeviceStatusData_asMap(self) - - def asValueMap(self): - return _mscl.DeviceStatusData_asValueMap(self) - __swig_destroy__ = _mscl.delete_DeviceStatusData - -# Register DeviceStatusData in _mscl: -_mscl.DeviceStatusData_swigregister(DeviceStatusData) - -class ExternalGNSSUpdateData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - gpsTimeOfWeek = property(_mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_get, _mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_set) - gpsWeekNumber = property(_mscl.ExternalGNSSUpdateData_gpsWeekNumber_get, _mscl.ExternalGNSSUpdateData_gpsWeekNumber_set) - lattitude = property(_mscl.ExternalGNSSUpdateData_lattitude_get, _mscl.ExternalGNSSUpdateData_lattitude_set) - longitude = property(_mscl.ExternalGNSSUpdateData_longitude_get, _mscl.ExternalGNSSUpdateData_longitude_set) - altitudeAboveWGS84Ellipsoid = property(_mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_get, _mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_set) - northVelocity = property(_mscl.ExternalGNSSUpdateData_northVelocity_get, _mscl.ExternalGNSSUpdateData_northVelocity_set) - eastVelocity = property(_mscl.ExternalGNSSUpdateData_eastVelocity_get, _mscl.ExternalGNSSUpdateData_eastVelocity_set) - downVelocity = property(_mscl.ExternalGNSSUpdateData_downVelocity_get, _mscl.ExternalGNSSUpdateData_downVelocity_set) - northPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_northPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_northPositionUncertainty_set) - eastPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_eastPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_eastPositionUncertainty_set) - downPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_downPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_downPositionUncertainty_set) - northVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_northVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_northVelocityUncertainty_set) - eastVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_set) - downVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_downVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_downVelocityUncertainty_set) - - def __init__(self): - _mscl.ExternalGNSSUpdateData_swiginit(self, _mscl.new_ExternalGNSSUpdateData()) - __swig_destroy__ = _mscl.delete_ExternalGNSSUpdateData - -# Register ExternalGNSSUpdateData in _mscl: -_mscl.ExternalGNSSUpdateData_swigregister(ExternalGNSSUpdateData) - -class HeadingUpdateOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsOptionId(self): - return _mscl.HeadingUpdateOptions_AsOptionId(self) - - def __init__(self, *args): - _mscl.HeadingUpdateOptions_swiginit(self, _mscl.new_HeadingUpdateOptions(*args)) - useInternalMagnetometer = property(_mscl.HeadingUpdateOptions_useInternalMagnetometer_get, _mscl.HeadingUpdateOptions_useInternalMagnetometer_set) - useInternalGNSSVelocityVector = property(_mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_get, _mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_set) - useExternalHeadingMessages = property(_mscl.HeadingUpdateOptions_useExternalHeadingMessages_get, _mscl.HeadingUpdateOptions_useExternalHeadingMessages_set) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptions - -# Register HeadingUpdateOptions in _mscl: -_mscl.HeadingUpdateOptions_swigregister(HeadingUpdateOptions) - -Automatic = _mscl.Automatic -UserSpecified_Heading = _mscl.UserSpecified_Heading -UserSpecified_Attitude = _mscl.UserSpecified_Attitude -UserSpecified_All = _mscl.UserSpecified_All -GNSS_DualAntenna = _mscl.GNSS_DualAntenna -GNSS_Kinematic = _mscl.GNSS_Kinematic -Magnetometer = _mscl.Magnetometer -External = _mscl.External -class HeadingAlignmentMethod(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.HeadingAlignmentMethod_swiginit(self, _mscl.new_HeadingAlignmentMethod(*args)) - value = property(_mscl.HeadingAlignmentMethod_value_get, _mscl.HeadingAlignmentMethod_value_set) - - def select(self, option): - return _mscl.HeadingAlignmentMethod_select(self, option) - - def deselect(self, option): - return _mscl.HeadingAlignmentMethod_deselect(self, option) - - def selected(self, option): - return _mscl.HeadingAlignmentMethod_selected(self, option) - __swig_destroy__ = _mscl.delete_HeadingAlignmentMethod - -# Register HeadingAlignmentMethod in _mscl: -_mscl.HeadingAlignmentMethod_swigregister(HeadingAlignmentMethod) - -class FilterInitializationValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FilterInitializationValues_swiginit(self, _mscl.new_FilterInitializationValues()) - autoInitialize = property(_mscl.FilterInitializationValues_autoInitialize_get, _mscl.FilterInitializationValues_autoInitialize_set) - initialValuesSource = property(_mscl.FilterInitializationValues_initialValuesSource_get, _mscl.FilterInitializationValues_initialValuesSource_set) - autoHeadingAlignmentMethod = property(_mscl.FilterInitializationValues_autoHeadingAlignmentMethod_get, _mscl.FilterInitializationValues_autoHeadingAlignmentMethod_set) - initialAttitude = property(_mscl.FilterInitializationValues_initialAttitude_get, _mscl.FilterInitializationValues_initialAttitude_set) - initialPosition = property(_mscl.FilterInitializationValues_initialPosition_get, _mscl.FilterInitializationValues_initialPosition_set) - initialVelocity = property(_mscl.FilterInitializationValues_initialVelocity_get, _mscl.FilterInitializationValues_initialVelocity_set) - referenceFrame = property(_mscl.FilterInitializationValues_referenceFrame_get, _mscl.FilterInitializationValues_referenceFrame_set) - - def manualHeading(self): - return _mscl.FilterInitializationValues_manualHeading(self) - - def manualAttitude(self): - return _mscl.FilterInitializationValues_manualAttitude(self) - - def manualPositionVelocity(self): - return _mscl.FilterInitializationValues_manualPositionVelocity(self) - __swig_destroy__ = _mscl.delete_FilterInitializationValues - -# Register FilterInitializationValues in _mscl: -_mscl.FilterInitializationValues_swigregister(FilterInitializationValues) - -class TareAxisValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def asUint8(self): - return _mscl.TareAxisValues_asUint8(self) - - def __init__(self, tareRollAxis, tarePitchAxis, tareYawAxis): - _mscl.TareAxisValues_swiginit(self, _mscl.new_TareAxisValues(tareRollAxis, tarePitchAxis, tareYawAxis)) - tareRollAxis = property(_mscl.TareAxisValues_tareRollAxis_get, _mscl.TareAxisValues_tareRollAxis_set) - tarePitchAxis = property(_mscl.TareAxisValues_tarePitchAxis_get, _mscl.TareAxisValues_tarePitchAxis_set) - tareYawAxis = property(_mscl.TareAxisValues_tareYawAxis_get, _mscl.TareAxisValues_tareYawAxis_set) - __swig_destroy__ = _mscl.delete_TareAxisValues - -# Register TareAxisValues in _mscl: -_mscl.TareAxisValues_swigregister(TareAxisValues) - -class GeographicSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeographicSourceOptions_swiginit(self, _mscl.new_GeographicSourceOptions(*args)) - source = property(_mscl.GeographicSourceOptions_source_get, _mscl.GeographicSourceOptions_source_set) - manual = property(_mscl.GeographicSourceOptions_manual_get, _mscl.GeographicSourceOptions_manual_set) - __swig_destroy__ = _mscl.delete_GeographicSourceOptions - -# Register GeographicSourceOptions in _mscl: -_mscl.GeographicSourceOptions_swigregister(GeographicSourceOptions) - -class EstimationControlOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsUint16(self): - return _mscl.EstimationControlOptions_AsUint16(self) - - def __init__(self, *args): - _mscl.EstimationControlOptions_swiginit(self, _mscl.new_EstimationControlOptions(*args)) - enableGyroBiasEstimation = property(_mscl.EstimationControlOptions_enableGyroBiasEstimation_get, _mscl.EstimationControlOptions_enableGyroBiasEstimation_set) - enableAccelBiasEstimation = property(_mscl.EstimationControlOptions_enableAccelBiasEstimation_get, _mscl.EstimationControlOptions_enableAccelBiasEstimation_set) - enableGyroScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_set) - enableAccelScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_set) - enableGNSSAntennaOffsetEstimation = property(_mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_get, _mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_set) - enableHardIronAutoCalibration = property(_mscl.EstimationControlOptions_enableHardIronAutoCalibration_get, _mscl.EstimationControlOptions_enableHardIronAutoCalibration_set) - enableSoftIronAutoCalibration = property(_mscl.EstimationControlOptions_enableSoftIronAutoCalibration_get, _mscl.EstimationControlOptions_enableSoftIronAutoCalibration_set) - __swig_destroy__ = _mscl.delete_EstimationControlOptions - -# Register EstimationControlOptions in _mscl: -_mscl.EstimationControlOptions_swigregister(EstimationControlOptions) - -class HeadingData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HeadingData_swiginit(self, _mscl.new_HeadingData()) - TRUE_HEADING = _mscl.HeadingData_TRUE_HEADING - MAGNETIC_HEADING = _mscl.HeadingData_MAGNETIC_HEADING - heading = property(_mscl.HeadingData_heading_get, _mscl.HeadingData_heading_set) - headingAngle = property(_mscl.HeadingData_headingAngle_get, _mscl.HeadingData_headingAngle_set) - headingAngleUncertainty = property(_mscl.HeadingData_headingAngleUncertainty_get, _mscl.HeadingData_headingAngleUncertainty_set) - __swig_destroy__ = _mscl.delete_HeadingData - -# Register HeadingData in _mscl: -_mscl.HeadingData_swigregister(HeadingData) - -class AdaptiveMeasurementData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AdaptiveMeasurementData_swiginit(self, _mscl.new_AdaptiveMeasurementData()) - mode = property(_mscl.AdaptiveMeasurementData_mode_get, _mscl.AdaptiveMeasurementData_mode_set) - lowPassFilterCutoff = property(_mscl.AdaptiveMeasurementData_lowPassFilterCutoff_get, _mscl.AdaptiveMeasurementData_lowPassFilterCutoff_set) - lowLimit = property(_mscl.AdaptiveMeasurementData_lowLimit_get, _mscl.AdaptiveMeasurementData_lowLimit_set) - highLimit = property(_mscl.AdaptiveMeasurementData_highLimit_get, _mscl.AdaptiveMeasurementData_highLimit_set) - lowLimitUncertainty = property(_mscl.AdaptiveMeasurementData_lowLimitUncertainty_get, _mscl.AdaptiveMeasurementData_lowLimitUncertainty_set) - highLimitUncertainty = property(_mscl.AdaptiveMeasurementData_highLimitUncertainty_get, _mscl.AdaptiveMeasurementData_highLimitUncertainty_set) - minUncertainty = property(_mscl.AdaptiveMeasurementData_minUncertainty_get, _mscl.AdaptiveMeasurementData_minUncertainty_set) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementData - -# Register AdaptiveMeasurementData in _mscl: -_mscl.AdaptiveMeasurementData_swigregister(AdaptiveMeasurementData) - -class AutoAdaptiveFilterOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AutoAdaptiveFilterOptions_swiginit(self, _mscl.new_AutoAdaptiveFilterOptions(*args)) - level = property(_mscl.AutoAdaptiveFilterOptions_level_get, _mscl.AutoAdaptiveFilterOptions_level_set) - timeLimit = property(_mscl.AutoAdaptiveFilterOptions_timeLimit_get, _mscl.AutoAdaptiveFilterOptions_timeLimit_set) - __swig_destroy__ = _mscl.delete_AutoAdaptiveFilterOptions - -# Register AutoAdaptiveFilterOptions in _mscl: -_mscl.AutoAdaptiveFilterOptions_swigregister(AutoAdaptiveFilterOptions) - -class SignalConditioningValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ENABLE_ORIENTATION_CALC = _mscl.SignalConditioningValues_ENABLE_ORIENTATION_CALC - ENABLE_CONING_SCULLING = _mscl.SignalConditioningValues_ENABLE_CONING_SCULLING - ENABLE_FINITE_SIZE_CORRECTION = _mscl.SignalConditioningValues_ENABLE_FINITE_SIZE_CORRECTION - DISABLE_MAGNETOMETER = _mscl.SignalConditioningValues_DISABLE_MAGNETOMETER - DISABLE_NORTH_COMP = _mscl.SignalConditioningValues_DISABLE_NORTH_COMP - DISABLE_UP_COMP = _mscl.SignalConditioningValues_DISABLE_UP_COMP - ENABLE_QUATERNION_CALC = _mscl.SignalConditioningValues_ENABLE_QUATERNION_CALC - HIGH = _mscl.SignalConditioningValues_HIGH - LOW = _mscl.SignalConditioningValues_LOW - dataConditioningFlags = property(_mscl.SignalConditioningValues_dataConditioningFlags_get, _mscl.SignalConditioningValues_dataConditioningFlags_set) - orientationCalcDecimation = property(_mscl.SignalConditioningValues_orientationCalcDecimation_get, _mscl.SignalConditioningValues_orientationCalcDecimation_set) - accelGyroFilterWidth = property(_mscl.SignalConditioningValues_accelGyroFilterWidth_get, _mscl.SignalConditioningValues_accelGyroFilterWidth_set) - magFilterWidth = property(_mscl.SignalConditioningValues_magFilterWidth_get, _mscl.SignalConditioningValues_magFilterWidth_set) - upCompensation = property(_mscl.SignalConditioningValues_upCompensation_get, _mscl.SignalConditioningValues_upCompensation_set) - northCompensation = property(_mscl.SignalConditioningValues_northCompensation_get, _mscl.SignalConditioningValues_northCompensation_set) - magBandwidthPower = property(_mscl.SignalConditioningValues_magBandwidthPower_get, _mscl.SignalConditioningValues_magBandwidthPower_set) - - def __init__(self): - _mscl.SignalConditioningValues_swiginit(self, _mscl.new_SignalConditioningValues()) - - def conditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_conditioningOptionOn(self, *args) - - def setConditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOn(self, *args) - - def setConditioningOptionOff(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOff(self, *args) - __swig_destroy__ = _mscl.delete_SignalConditioningValues - -# Register SignalConditioningValues in _mscl: -_mscl.SignalConditioningValues_swigregister(SignalConditioningValues) - -class EnableDisableMeasurements(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ACCELEROMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_ACCELEROMETER_MEASUREMENTS - MAGNETOMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_MAGNETOMETER_MEASUREMENTS - - def __init__(self, *args): - _mscl.EnableDisableMeasurements_swiginit(self, _mscl.new_EnableDisableMeasurements(*args)) - measurementOptions = property(_mscl.EnableDisableMeasurements_measurementOptions_get, _mscl.EnableDisableMeasurements_measurementOptions_set) - - def optionEnabled(self, *args): - return _mscl.EnableDisableMeasurements_optionEnabled(self, *args) - - def enableOption(self, *args): - return _mscl.EnableDisableMeasurements_enableOption(self, *args) - - def disableOption(self, *args): - return _mscl.EnableDisableMeasurements_disableOption(self, *args) - __swig_destroy__ = _mscl.delete_EnableDisableMeasurements - -# Register EnableDisableMeasurements in _mscl: -_mscl.EnableDisableMeasurements_swigregister(EnableDisableMeasurements) - -class RTKDeviceStatusFlags(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MODEM_STATE = _mscl.RTKDeviceStatusFlags_MODEM_STATE - CONNECTION_TYPE = _mscl.RTKDeviceStatusFlags_CONNECTION_TYPE - RSSI = _mscl.RTKDeviceStatusFlags_RSSI - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_SIGNAL_QUALITY - TOWER_CHANGE_INDICATOR = _mscl.RTKDeviceStatusFlags_TOWER_CHANGE_INDICATOR - NMEA_TIMEOUT = _mscl.RTKDeviceStatusFlags_NMEA_TIMEOUT - SERVER_TIMEOUT = _mscl.RTKDeviceStatusFlags_SERVER_TIMEOUT - RTCM_TIMEOUT = _mscl.RTKDeviceStatusFlags_RTCM_TIMEOUT - DEVICE_OUT_OF_RANGE = _mscl.RTKDeviceStatusFlags_DEVICE_OUT_OF_RANGE - CORRECTIONS_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_CORRECTIONS_UNAVAILABLE - VERSION = _mscl.RTKDeviceStatusFlags_VERSION - OFF = _mscl.RTKDeviceStatusFlags_OFF - NO_NETWORK = _mscl.RTKDeviceStatusFlags_NO_NETWORK - NETWORK_CONNECTED = _mscl.RTKDeviceStatusFlags_NETWORK_CONNECTED - CONFIGURING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_CONFIGURING_DATA_CONTEXT - ACTIVATING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_ACTIVATING_DATA_CONTEXT - CONFIGURING_SOCKET = _mscl.RTKDeviceStatusFlags_CONFIGURING_SOCKET - WAITING_ON_SERVER_HANDSHAKE = _mscl.RTKDeviceStatusFlags_WAITING_ON_SERVER_HANDSHAKE - CONNECTED_AND_IDLE = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_IDLE - CONNECTED_AND_STREAMING = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_STREAMING - NO_CONNECTION = _mscl.RTKDeviceStatusFlags_NO_CONNECTION - CONNECTION_2G = _mscl.RTKDeviceStatusFlags_CONNECTION_2G - CONNECTION_3G = _mscl.RTKDeviceStatusFlags_CONNECTION_3G - CONNECTION_4G = _mscl.RTKDeviceStatusFlags_CONNECTION_4G - CONNECTION_5G = _mscl.RTKDeviceStatusFlags_CONNECTION_5G - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_swiginit(self, _mscl.new_RTKDeviceStatusFlags(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_version(self) - - def modemState(self, *args): - return _mscl.RTKDeviceStatusFlags_modemState(self, *args) - - def connectionType(self, *args): - return _mscl.RTKDeviceStatusFlags_connectionType(self, *args) - - def rssi(self, *args): - return _mscl.RTKDeviceStatusFlags_rssi(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_signalQuality(self, *args) - - def towerChangeIndicator(self, *args): - return _mscl.RTKDeviceStatusFlags_towerChangeIndicator(self, *args) - - def nmeaTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_nmeaTimeout(self, *args) - - def serverTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_serverTimeout(self, *args) - - def rtcmTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_rtcmTimeout(self, *args) - - def deviceOutOfRange(self, *args): - return _mscl.RTKDeviceStatusFlags_deviceOutOfRange(self, *args) - - def correctionsUnavailable(self, *args): - return _mscl.RTKDeviceStatusFlags_correctionsUnavailable(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags - -# Register RTKDeviceStatusFlags in _mscl: -_mscl.RTKDeviceStatusFlags_swigregister(RTKDeviceStatusFlags) - -class RTKDeviceStatusFlags_v1(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONTROLLER_STATE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATE - PLATFORM_STATE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATE - CONTROLLER_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATUS_CODE - PLATFORM_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATUS_CODE - RESET_REASON = _mscl.RTKDeviceStatusFlags_v1_RESET_REASON - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_v1_SIGNAL_QUALITY - VERSION = _mscl.RTKDeviceStatusFlags_v1_VERSION - IDLE = _mscl.RTKDeviceStatusFlags_v1_IDLE - ACTIVE = _mscl.RTKDeviceStatusFlags_v1_ACTIVE - MODEM_OFF = _mscl.RTKDeviceStatusFlags_v1_MODEM_OFF - MODEM_POWERING_ON = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_ON - MODEM_CONFIGURE = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONFIGURE - MODEM_POWERING_DOWN = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_DOWN - MODEM_READY = _mscl.RTKDeviceStatusFlags_v1_MODEM_READY - MODEM_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTING - MODEM_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_DISCONNECTING - MODEM_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTED - SERVICE_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTING - SERVICE_CONNECTION_FAILED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_FAILED - SERVICE_CONNECTION_CANCELED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_CANCELED - SERVICE_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_DISCONNECTING - SERVICE_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTED - PLATFORM_ERROR = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_ERROR - RESET_MODEM = _mscl.RTKDeviceStatusFlags_v1_RESET_MODEM - CONTROLLER_OK = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_OK - WAITING_NMEA = _mscl.RTKDeviceStatusFlags_v1_WAITING_NMEA - RTK_TIMEOUT = _mscl.RTKDeviceStatusFlags_v1_RTK_TIMEOUT - RTK_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_v1_RTK_UNAVAILABLE - CONFIG_INVALID = _mscl.RTKDeviceStatusFlags_v1_CONFIG_INVALID - PLATFORM_OK = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_OK - RTK_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_RTK_CONNECTION_DROPPED - CELL_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_CELL_CONNECTION_DROPPED - MODEM_ERROR = _mscl.RTKDeviceStatusFlags_v1_MODEM_ERROR - POWER_ON = _mscl.RTKDeviceStatusFlags_v1_POWER_ON - UNKNOWN = _mscl.RTKDeviceStatusFlags_v1_UNKNOWN - SOFT_RESET = _mscl.RTKDeviceStatusFlags_v1_SOFT_RESET - HARDWARE_ERROR_RESET = _mscl.RTKDeviceStatusFlags_v1_HARDWARE_ERROR_RESET - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_v1_swiginit(self, _mscl.new_RTKDeviceStatusFlags_v1(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_v1_version(self) - - def controllerState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerState(self, *args) - - def platformState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformState(self, *args) - - def controllerStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerStatusCode(self, *args) - - def platformStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformStatusCode(self, *args) - - def resetReason(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_resetReason(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_signalQuality(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags_v1 - -# Register RTKDeviceStatusFlags_v1 in _mscl: -_mscl.RTKDeviceStatusFlags_v1_swigregister(RTKDeviceStatusFlags_v1) - -class GnssSignalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - L1CA = _mscl.GnssSignalConfiguration_L1CA - L2C = _mscl.GnssSignalConfiguration_L2C - L1OF = _mscl.GnssSignalConfiguration_L1OF - L2OF = _mscl.GnssSignalConfiguration_L2OF - E1 = _mscl.GnssSignalConfiguration_E1 - E5B = _mscl.GnssSignalConfiguration_E5B - B1 = _mscl.GnssSignalConfiguration_B1 - B2 = _mscl.GnssSignalConfiguration_B2 - - def __init__(self): - _mscl.GnssSignalConfiguration_swiginit(self, _mscl.new_GnssSignalConfiguration()) - - def enableGpsSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGpsSignal(self, signal, enable) - - def gpsSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_gpsSignalEnabled(self, signal) - - def gpsSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_gpsSignalValue(self, *args) - - def enableGlonassSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGlonassSignal(self, signal, enable) - - def glonassSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_glonassSignalEnabled(self, signal) - - def glonassSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_glonassSignalValue(self, *args) - - def enableGalileoSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGalileoSignal(self, signal, enable) - - def galileoSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_galileoSignalEnabled(self, signal) - - def galileoSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_galileoSignalValue(self, *args) - - def enableBeiDouSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableBeiDouSignal(self, signal, enable) - - def beidouSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_beidouSignalEnabled(self, signal) - - def beidouSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_beidouSignalValue(self, *args) - __swig_destroy__ = _mscl.delete_GnssSignalConfiguration - -# Register GnssSignalConfiguration in _mscl: -_mscl.GnssSignalConfiguration_swigregister(GnssSignalConfiguration) - -class GnssSpartnConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - KEY_SIZE = _mscl.GnssSpartnConfiguration_KEY_SIZE - NONE = _mscl.GnssSpartnConfiguration_NONE - NETWORK = _mscl.GnssSpartnConfiguration_NETWORK - LBAND = _mscl.GnssSpartnConfiguration_LBAND - - def __init__(self): - _mscl.GnssSpartnConfiguration_swiginit(self, _mscl.new_GnssSpartnConfiguration()) - - def enable(self, enable): - return _mscl.GnssSpartnConfiguration_enable(self, enable) - - def enabled(self): - return _mscl.GnssSpartnConfiguration_enabled(self) - - def type(self, *args): - return _mscl.GnssSpartnConfiguration_type(self, *args) - - def currentKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyTow(self, *args) - - def currentKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyWeek(self, *args) - - def currentKey(self, *args): - return _mscl.GnssSpartnConfiguration_currentKey(self, *args) - - def nextKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyTow(self, *args) - - def nextKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyWeek(self, *args) - - def nextKey(self, *args): - return _mscl.GnssSpartnConfiguration_nextKey(self, *args) - __swig_destroy__ = _mscl.delete_GnssSpartnConfiguration - -# Register GnssSpartnConfiguration in _mscl: -_mscl.GnssSpartnConfiguration_swigregister(GnssSpartnConfiguration) - -class PositionReferenceConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - autoConfig = property(_mscl.PositionReferenceConfiguration_autoConfig_get, _mscl.PositionReferenceConfiguration_autoConfig_set) - position = property(_mscl.PositionReferenceConfiguration_position_get, _mscl.PositionReferenceConfiguration_position_set) - - def __init__(self): - _mscl.PositionReferenceConfiguration_swiginit(self, _mscl.new_PositionReferenceConfiguration()) - __swig_destroy__ = _mscl.delete_PositionReferenceConfiguration - -# Register PositionReferenceConfiguration in _mscl: -_mscl.PositionReferenceConfiguration_swigregister(PositionReferenceConfiguration) - -class AntennaLeverArmCalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enabled = property(_mscl.AntennaLeverArmCalConfiguration_enabled_get, _mscl.AntennaLeverArmCalConfiguration_enabled_set) - maxOffsetError = property(_mscl.AntennaLeverArmCalConfiguration_maxOffsetError_get, _mscl.AntennaLeverArmCalConfiguration_maxOffsetError_set) - - def __init__(self): - _mscl.AntennaLeverArmCalConfiguration_swiginit(self, _mscl.new_AntennaLeverArmCalConfiguration()) - __swig_destroy__ = _mscl.delete_AntennaLeverArmCalConfiguration - -# Register AntennaLeverArmCalConfiguration in _mscl: -_mscl.AntennaLeverArmCalConfiguration_swigregister(AntennaLeverArmCalConfiguration) - -class OdometerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.OdometerConfiguration_DISABLED - SINGLE = _mscl.OdometerConfiguration_SINGLE - QUADRATURE = _mscl.OdometerConfiguration_QUADRATURE - - def __init__(self): - _mscl.OdometerConfiguration_swiginit(self, _mscl.new_OdometerConfiguration()) - - def mode(self, *args): - return _mscl.OdometerConfiguration_mode(self, *args) - - def uncertainty(self, *args): - return _mscl.OdometerConfiguration_uncertainty(self, *args) - - def scaling(self, *args): - return _mscl.OdometerConfiguration_scaling(self, *args) - __swig_destroy__ = _mscl.delete_OdometerConfiguration - -# Register OdometerConfiguration in _mscl: -_mscl.OdometerConfiguration_swigregister(OdometerConfiguration) - -class GpioConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - UNUSED_FEATURE = _mscl.GpioConfiguration_UNUSED_FEATURE - GPIO_FEATURE = _mscl.GpioConfiguration_GPIO_FEATURE - PPS_FEATURE = _mscl.GpioConfiguration_PPS_FEATURE - ENCODER_FEATURE = _mscl.GpioConfiguration_ENCODER_FEATURE - EVENT_TIMESTAMP_FEATURE = _mscl.GpioConfiguration_EVENT_TIMESTAMP_FEATURE - UART_FEATURE = _mscl.GpioConfiguration_UART_FEATURE - GPIO_UNUSED = _mscl.GpioConfiguration_GPIO_UNUSED - GPIO_INPUT = _mscl.GpioConfiguration_GPIO_INPUT - GPIO_OUTPUT_LOW = _mscl.GpioConfiguration_GPIO_OUTPUT_LOW - GPIO_OUTPUT_HIGH = _mscl.GpioConfiguration_GPIO_OUTPUT_HIGH - PPS_UNUSED = _mscl.GpioConfiguration_PPS_UNUSED - PPS_INPUT = _mscl.GpioConfiguration_PPS_INPUT - PPS_OUTPUT = _mscl.GpioConfiguration_PPS_OUTPUT - ENCODER_UNUSED = _mscl.GpioConfiguration_ENCODER_UNUSED - ENCODER_A = _mscl.GpioConfiguration_ENCODER_A - ENCODER_B = _mscl.GpioConfiguration_ENCODER_B - TIMESTAMP_UNUSED = _mscl.GpioConfiguration_TIMESTAMP_UNUSED - TIMESTAMP_RISING = _mscl.GpioConfiguration_TIMESTAMP_RISING - TIMESTAMP_FALLING = _mscl.GpioConfiguration_TIMESTAMP_FALLING - TIMESTAMP_EITHER = _mscl.GpioConfiguration_TIMESTAMP_EITHER - UART_UNUSED = _mscl.GpioConfiguration_UART_UNUSED - UART_PORT2_TX = _mscl.GpioConfiguration_UART_PORT2_TX - UART_PORT2_RX = _mscl.GpioConfiguration_UART_PORT2_RX - UART_PORT3_TX = _mscl.GpioConfiguration_UART_PORT3_TX - UART_PORT3_RX = _mscl.GpioConfiguration_UART_PORT3_RX - NONE = _mscl.GpioConfiguration_NONE - OPEN_DRAIN = _mscl.GpioConfiguration_OPEN_DRAIN - PULLDOWN = _mscl.GpioConfiguration_PULLDOWN - PULLUP = _mscl.GpioConfiguration_PULLUP - pinMode = property(_mscl.GpioConfiguration_pinMode_get, _mscl.GpioConfiguration_pinMode_set) - pin = property(_mscl.GpioConfiguration_pin_get, _mscl.GpioConfiguration_pin_set) - feature = property(_mscl.GpioConfiguration_feature_get, _mscl.GpioConfiguration_feature_set) - behavior = property(_mscl.GpioConfiguration_behavior_get, _mscl.GpioConfiguration_behavior_set) - - def pinModeValue(self, *args): - return _mscl.GpioConfiguration_pinModeValue(self, *args) - - def __init__(self): - _mscl.GpioConfiguration_swiginit(self, _mscl.new_GpioConfiguration()) - __swig_destroy__ = _mscl.delete_GpioConfiguration - -# Register GpioConfiguration in _mscl: -_mscl.GpioConfiguration_swigregister(GpioConfiguration) - -DISABLED = _mscl.DISABLED -ENABLED = _mscl.ENABLED -TEST = _mscl.TEST -TEST_PULSE = _mscl.TEST_PULSE -class EventTriggerGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventTriggerGpioParameter_DISABLED - WHILE_HIGH = _mscl.EventTriggerGpioParameter_WHILE_HIGH - WHILE_LOW = _mscl.EventTriggerGpioParameter_WHILE_LOW - EDGE = _mscl.EventTriggerGpioParameter_EDGE - pin = property(_mscl.EventTriggerGpioParameter_pin_get, _mscl.EventTriggerGpioParameter_pin_set) - mode = property(_mscl.EventTriggerGpioParameter_mode_get, _mscl.EventTriggerGpioParameter_mode_set) - - def __init__(self): - _mscl.EventTriggerGpioParameter_swiginit(self, _mscl.new_EventTriggerGpioParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerGpioParameter - -# Register EventTriggerGpioParameter in _mscl: -_mscl.EventTriggerGpioParameter_swigregister(EventTriggerGpioParameter) - -class EventTriggerThresholdParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - WINDOW_TYPE = _mscl.EventTriggerThresholdParameter_WINDOW_TYPE - INTERVAL_TYPE = _mscl.EventTriggerThresholdParameter_INTERVAL_TYPE - type = property(_mscl.EventTriggerThresholdParameter_type_get, _mscl.EventTriggerThresholdParameter_type_set) - lowThreshold = property(_mscl.EventTriggerThresholdParameter_lowThreshold_get, _mscl.EventTriggerThresholdParameter_lowThreshold_set) - highThreshold = property(_mscl.EventTriggerThresholdParameter_highThreshold_get, _mscl.EventTriggerThresholdParameter_highThreshold_set) - - def channel(self, *args): - return _mscl.EventTriggerThresholdParameter_channel(self, *args) - - def channelField(self): - return _mscl.EventTriggerThresholdParameter_channelField(self) - - def channelQualifier(self): - return _mscl.EventTriggerThresholdParameter_channelQualifier(self) - - def channelIndex(self): - return _mscl.EventTriggerThresholdParameter_channelIndex(self) - - def __init__(self): - _mscl.EventTriggerThresholdParameter_swiginit(self, _mscl.new_EventTriggerThresholdParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerThresholdParameter - -# Register EventTriggerThresholdParameter in _mscl: -_mscl.EventTriggerThresholdParameter_swigregister(EventTriggerThresholdParameter) - -class EventTriggerCombinationParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_INPUT_TRIGGERS = _mscl.EventTriggerCombinationParameter_MAX_INPUT_TRIGGERS - LOGIC_NEVER = _mscl.EventTriggerCombinationParameter_LOGIC_NEVER - LOGIC_ALWAYS = _mscl.EventTriggerCombinationParameter_LOGIC_ALWAYS - LOGIC_NONE = _mscl.EventTriggerCombinationParameter_LOGIC_NONE - LOGIC_OR = _mscl.EventTriggerCombinationParameter_LOGIC_OR - LOGIC_NAND = _mscl.EventTriggerCombinationParameter_LOGIC_NAND - LOGIC_XOR_ONE = _mscl.EventTriggerCombinationParameter_LOGIC_XOR_ONE - LOGIC_ONLY_A = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_A - LOGIC_ONLY_B = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_B - LOGIC_ONLY_C = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_C - LOGIC_ONLY_D = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_D - LOGIC_AND_AB = _mscl.EventTriggerCombinationParameter_LOGIC_AND_AB - LOGIC_AB_OR_C = _mscl.EventTriggerCombinationParameter_LOGIC_AB_OR_C - LOGIC_AND = _mscl.EventTriggerCombinationParameter_LOGIC_AND - logicTable = property(_mscl.EventTriggerCombinationParameter_logicTable_get, _mscl.EventTriggerCombinationParameter_logicTable_set) - inputTriggers = property(_mscl.EventTriggerCombinationParameter_inputTriggers_get, _mscl.EventTriggerCombinationParameter_inputTriggers_set) - - def __init__(self): - _mscl.EventTriggerCombinationParameter_swiginit(self, _mscl.new_EventTriggerCombinationParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerCombinationParameter - -# Register EventTriggerCombinationParameter in _mscl: -_mscl.EventTriggerCombinationParameter_swigregister(EventTriggerCombinationParameter) - -class EventTriggerParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerParameters_swiginit(self, _mscl.new_EventTriggerParameters()) - gpio = property(_mscl.EventTriggerParameters_gpio_get, _mscl.EventTriggerParameters_gpio_set) - threshold = property(_mscl.EventTriggerParameters_threshold_get, _mscl.EventTriggerParameters_threshold_set) - combination = property(_mscl.EventTriggerParameters_combination_get, _mscl.EventTriggerParameters_combination_set) - __swig_destroy__ = _mscl.delete_EventTriggerParameters - -# Register EventTriggerParameters in _mscl: -_mscl.EventTriggerParameters_swigregister(EventTriggerParameters) - -class EventTriggerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventTriggerConfiguration_NONE - GPIO_TRIGGER = _mscl.EventTriggerConfiguration_GPIO_TRIGGER - THRESHOLD_TRIGGER = _mscl.EventTriggerConfiguration_THRESHOLD_TRIGGER - COMBINATION_TRIGGER = _mscl.EventTriggerConfiguration_COMBINATION_TRIGGER - instance = property(_mscl.EventTriggerConfiguration_instance_get, _mscl.EventTriggerConfiguration_instance_set) - trigger = property(_mscl.EventTriggerConfiguration_trigger_get, _mscl.EventTriggerConfiguration_trigger_set) - parameters = property(_mscl.EventTriggerConfiguration_parameters_get, _mscl.EventTriggerConfiguration_parameters_set) - - def __init__(self): - _mscl.EventTriggerConfiguration_swiginit(self, _mscl.new_EventTriggerConfiguration()) - __swig_destroy__ = _mscl.delete_EventTriggerConfiguration - -# Register EventTriggerConfiguration in _mscl: -_mscl.EventTriggerConfiguration_swigregister(EventTriggerConfiguration) - -class EventActionGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventActionGpioParameter_DISABLED - ACTIVE_HIGH = _mscl.EventActionGpioParameter_ACTIVE_HIGH - ACTIVE_LOW = _mscl.EventActionGpioParameter_ACTIVE_LOW - ONESHOT_HIGH = _mscl.EventActionGpioParameter_ONESHOT_HIGH - ONESHOT_LOW = _mscl.EventActionGpioParameter_ONESHOT_LOW - TOGGLE = _mscl.EventActionGpioParameter_TOGGLE - pin = property(_mscl.EventActionGpioParameter_pin_get, _mscl.EventActionGpioParameter_pin_set) - mode = property(_mscl.EventActionGpioParameter_mode_get, _mscl.EventActionGpioParameter_mode_set) - - def __init__(self): - _mscl.EventActionGpioParameter_swiginit(self, _mscl.new_EventActionGpioParameter()) - __swig_destroy__ = _mscl.delete_EventActionGpioParameter - -# Register EventActionGpioParameter in _mscl: -_mscl.EventActionGpioParameter_swigregister(EventActionGpioParameter) - -class EventActionMessageParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_DESCRIPTORS = _mscl.EventActionMessageParameter_MAX_DESCRIPTORS - sampleRate = property(_mscl.EventActionMessageParameter_sampleRate_get, _mscl.EventActionMessageParameter_sampleRate_set) - - def dataClass(self): - return _mscl.EventActionMessageParameter_dataClass(self) - - def setChannelFields(self, dataClass, fields): - return _mscl.EventActionMessageParameter_setChannelFields(self, dataClass, fields) - - def getChannelFields(self): - return _mscl.EventActionMessageParameter_getChannelFields(self) - - def __init__(self): - _mscl.EventActionMessageParameter_swiginit(self, _mscl.new_EventActionMessageParameter()) - __swig_destroy__ = _mscl.delete_EventActionMessageParameter - -# Register EventActionMessageParameter in _mscl: -_mscl.EventActionMessageParameter_swigregister(EventActionMessageParameter) - -class EventActionParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventActionParameters_swiginit(self, _mscl.new_EventActionParameters()) - gpio = property(_mscl.EventActionParameters_gpio_get, _mscl.EventActionParameters_gpio_set) - message = property(_mscl.EventActionParameters_message_get, _mscl.EventActionParameters_message_set) - __swig_destroy__ = _mscl.delete_EventActionParameters - -# Register EventActionParameters in _mscl: -_mscl.EventActionParameters_swigregister(EventActionParameters) - -class EventActionConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventActionConfiguration_NONE - GPIO = _mscl.EventActionConfiguration_GPIO - MESSAGE = _mscl.EventActionConfiguration_MESSAGE - instance = property(_mscl.EventActionConfiguration_instance_get, _mscl.EventActionConfiguration_instance_set) - trigger = property(_mscl.EventActionConfiguration_trigger_get, _mscl.EventActionConfiguration_trigger_set) - type = property(_mscl.EventActionConfiguration_type_get, _mscl.EventActionConfiguration_type_set) - parameters = property(_mscl.EventActionConfiguration_parameters_get, _mscl.EventActionConfiguration_parameters_set) - - def __init__(self): - _mscl.EventActionConfiguration_swiginit(self, _mscl.new_EventActionConfiguration()) - __swig_destroy__ = _mscl.delete_EventActionConfiguration - -# Register EventActionConfiguration in _mscl: -_mscl.EventActionConfiguration_swigregister(EventActionConfiguration) - -class EventTriggerInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTriggerInfo_swiginit(self, _mscl.new_EventTriggerInfo(*args)) - ACTIVE = _mscl.EventTriggerInfo_ACTIVE - ENABLED = _mscl.EventTriggerInfo_ENABLED - TEST = _mscl.EventTriggerInfo_TEST - type = property(_mscl.EventTriggerInfo_type_get, _mscl.EventTriggerInfo_type_set) - instanceId = property(_mscl.EventTriggerInfo_instanceId_get, _mscl.EventTriggerInfo_instanceId_set) - - def isActive(self): - return _mscl.EventTriggerInfo_isActive(self) - - def isEnabled(self): - return _mscl.EventTriggerInfo_isEnabled(self) - - def isTestMode(self): - return _mscl.EventTriggerInfo_isTestMode(self) - - def setStatus(self, value): - return _mscl.EventTriggerInfo_setStatus(self, value) - __swig_destroy__ = _mscl.delete_EventTriggerInfo - -# Register EventTriggerInfo in _mscl: -_mscl.EventTriggerInfo_swigregister(EventTriggerInfo) - -class EventActionInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventActionInfo_swiginit(self, _mscl.new_EventActionInfo(*args)) - type = property(_mscl.EventActionInfo_type_get, _mscl.EventActionInfo_type_set) - triggerId = property(_mscl.EventActionInfo_triggerId_get, _mscl.EventActionInfo_triggerId_set) - instanceId = property(_mscl.EventActionInfo_instanceId_get, _mscl.EventActionInfo_instanceId_set) - __swig_destroy__ = _mscl.delete_EventActionInfo - -# Register EventActionInfo in _mscl: -_mscl.EventActionInfo_swigregister(EventActionInfo) - -class MeasurementReferenceFrame(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MeasurementReferenceFrame_swiginit(self, _mscl.new_MeasurementReferenceFrame(*args)) - - def asMipFieldValues(self): - return _mscl.MeasurementReferenceFrame_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.MeasurementReferenceFrame_appendMipFieldValues(self, appendTo) - - def translation(self, *args): - return _mscl.MeasurementReferenceFrame_translation(self, *args) - - def rotation(self, *args): - return _mscl.MeasurementReferenceFrame_rotation(self, *args) - - def errorTrackingEnabled(self): - return _mscl.MeasurementReferenceFrame_errorTrackingEnabled(self) - - def enableErrorTracking(self, enable=True): - return _mscl.MeasurementReferenceFrame_enableErrorTracking(self, enable) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrame - -# Register MeasurementReferenceFrame in _mscl: -_mscl.MeasurementReferenceFrame_swigregister(MeasurementReferenceFrame) - -class MipChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipChannel_swiginit(self, _mscl.new_MipChannel(*args)) - - def channelField(self): - return _mscl.MipChannel_channelField(self) - - def sampleRate(self): - return _mscl.MipChannel_sampleRate(self) - - def rateDecimation(self, sampleRateBase): - return _mscl.MipChannel_rateDecimation(self, sampleRateBase) - __swig_destroy__ = _mscl.delete_MipChannel - -# Register MipChannel in _mscl: -_mscl.MipChannel_swigregister(MipChannel) - -class MipPacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MIP_ACK_NACK_ERROR_NONE = _mscl.MipPacket_MIP_ACK_NACK_ERROR_NONE - MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND - MIP_ACK_NACK_ERROR_CHECKSUM_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_CHECKSUM_INVALID - MIP_ACK_NACK_ERROR_PARAMETER_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_PARAMETER_INVALID - MIP_ACK_NACK_ERROR_COMMAND_FAILED = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_FAILED - MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT - MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET - - def __init__(self): - _mscl.MipPacket_swiginit(self, _mscl.new_MipPacket()) - - @staticmethod - def isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - - def descriptorSet(self): - return _mscl.MipPacket_descriptorSet(self) - - def payload(self): - return _mscl.MipPacket_payload(self) - __swig_destroy__ = _mscl.delete_MipPacket - -# Register MipPacket in _mscl: -_mscl.MipPacket_swigregister(MipPacket) - -def MipPacket_isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - -class MipDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def field(self): - return _mscl.MipDataPoint_field(self) - - def qualifier(self): - return _mscl.MipDataPoint_qualifier(self) - - def hasAddlIdentifiers(self): - return _mscl.MipDataPoint_hasAddlIdentifiers(self) - - def addlIdentifiers(self): - return _mscl.MipDataPoint_addlIdentifiers(self) - - def hasValidFlag(self): - return _mscl.MipDataPoint_hasValidFlag(self) - - def valid(self): - return _mscl.MipDataPoint_valid(self) - - def channelName(self, includeAddlIds=True, consolidatedFormat=False): - return _mscl.MipDataPoint_channelName(self, includeAddlIds, consolidatedFormat) - __swig_destroy__ = _mscl.delete_MipDataPoint - -# Register MipDataPoint in _mscl: -_mscl.MipDataPoint_swigregister(MipDataPoint) - -class ContinuousBIT(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def as_MipDataPoints(self): - return _mscl.ContinuousBIT_as_MipDataPoints(self) - - @staticmethod - def getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - - def data(self): - return _mscl.ContinuousBIT_data(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_bufferOverrun(self) - - def imuClockFault(self): - return _mscl.ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_pressureSelfTestFail(self) - - def filterTimingOverrun(self): - return _mscl.ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.ContinuousBIT_filterTimingUnderrun(self) - -# Register ContinuousBIT in _mscl: -_mscl.ContinuousBIT_swigregister(ContinuousBIT) - -def ContinuousBIT_getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - -class ContinuousBIT_System_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - SYSTEM_CLOCK_FAILURE = _mscl.ContinuousBIT_System_General_SYSTEM_CLOCK_FAILURE - POWER_FAULT = _mscl.ContinuousBIT_System_General_POWER_FAULT - FIRMWARE_FAULT = _mscl.ContinuousBIT_System_General_FIRMWARE_FAULT - TIMING_OVERLOAD = _mscl.ContinuousBIT_System_General_TIMING_OVERLOAD - BUFFER_OVERRUN = _mscl.ContinuousBIT_System_General_BUFFER_OVERRUN - - def flags(self): - return _mscl.ContinuousBIT_System_General_flags(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_System_General_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_System_General_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_System_General_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_System_General_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_System_General_bufferOverrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_General - -# Register ContinuousBIT_System_General in _mscl: -_mscl.ContinuousBIT_System_General_swigregister(ContinuousBIT_System_General) - -class ContinuousBIT_System_Process(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def flags(self): - return _mscl.ContinuousBIT_System_Process_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_Process - -# Register ContinuousBIT_System_Process in _mscl: -_mscl.ContinuousBIT_System_Process_swigregister(ContinuousBIT_System_Process) - -class ContinuousBIT_System(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_System_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_System_GENERAL_FLAGS - PROCESS_FLAGS = _mscl.ContinuousBIT_System_PROCESS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_System_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System - -# Register ContinuousBIT_System in _mscl: -_mscl.ContinuousBIT_System_swigregister(ContinuousBIT_System) - -class ContinuousBIT_IMU_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - CLOCK_FAULT = _mscl.ContinuousBIT_IMU_General_CLOCK_FAULT - COMMUNICATION_FAULT = _mscl.ContinuousBIT_IMU_General_COMMUNICATION_FAULT - TIMING_OVERRUN = _mscl.ContinuousBIT_IMU_General_TIMING_OVERRUN - CALIBRATION_ERROR_ACCEL = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_ACCEL - CALIBRATION_ERROR_GYRO = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_GYRO - CALIBRATION_ERROR_MAG = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_MAG - - def flags(self): - return _mscl.ContinuousBIT_IMU_General_flags(self) - - def clockFault(self): - return _mscl.ContinuousBIT_IMU_General_clockFault(self) - - def communicationFault(self): - return _mscl.ContinuousBIT_IMU_General_communicationFault(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_IMU_General_timingOverrun(self) - - def calibrationErrorAccel(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorAccel(self) - - def calibrationErrorGyro(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorGyro(self) - - def calibrationErrorMag(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorMag(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_General - -# Register ContinuousBIT_IMU_General in _mscl: -_mscl.ContinuousBIT_IMU_General_swigregister(ContinuousBIT_IMU_General) - -class ContinuousBIT_IMU_Sensors(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - ACCEL_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_GENERAL_FAULT - ACCEL_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_OVERRANGE - ACCEL_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_SELF_TEST_FAIL - GYRO_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_GYRO_GENERAL_FAULT - GYRO_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_GYRO_OVERRANGE - GYRO_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_GYRO_SELF_TEST_FAIL - MAG_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_MAG_GENERAL_FAULT - MAG_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_MAG_OVERRANGE - MAG_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_MAG_SELF_TEST_FAIL - PRESSURE_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_GENERAL_FAULT - PRESSURE_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_OVERRANGE - PRESSURE_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_SELF_TEST_FAIL - - def flags(self): - return _mscl.ContinuousBIT_IMU_Sensors_flags(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureSelfTestFail(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_Sensors - -# Register ContinuousBIT_IMU_Sensors in _mscl: -_mscl.ContinuousBIT_IMU_Sensors_swigregister(ContinuousBIT_IMU_Sensors) - -class ContinuousBIT_IMU(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_IMU_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_IMU_GENERAL_FLAGS - SENSORS_FLAGS = _mscl.ContinuousBIT_IMU_SENSORS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_IMU_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU - -# Register ContinuousBIT_IMU in _mscl: -_mscl.ContinuousBIT_IMU_swigregister(ContinuousBIT_IMU) - -class ContinuousBIT_Filter_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - TIMING_OVERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_OVERRUN - TIMING_UNDERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_UNDERRUN - - def flags(self): - return _mscl.ContinuousBIT_Filter_General_flags(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_Filter_General_timingOverrun(self) - - def timingUnderrun(self): - return _mscl.ContinuousBIT_Filter_General_timingUnderrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter_General - -# Register ContinuousBIT_Filter_General in _mscl: -_mscl.ContinuousBIT_Filter_General_swigregister(ContinuousBIT_Filter_General) - -class ContinuousBIT_Filter(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_Filter_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_Filter_GENERAL_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_Filter_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter - -# Register ContinuousBIT_Filter in _mscl: -_mscl.ContinuousBIT_Filter_swigregister(ContinuousBIT_Filter) - -class CV7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_General_swiginit(self, _mscl.new_CV7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_General - -# Register CV7ContinuousBIT_System_General in _mscl: -_mscl.CV7ContinuousBIT_System_General_swigregister(CV7ContinuousBIT_System_General) - -class CV7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_Process_swiginit(self, _mscl.new_CV7ContinuousBIT_System_Process(*args)) - IMU_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_IMU_PROCESS_FAULT - IMU_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_IMU_RATE_MISMATCH - IMU_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_IMU_DROPPED_DATA - IMU_STUCK = _mscl.CV7ContinuousBIT_System_Process_IMU_STUCK - FILTER_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_FILTER_PROCESS_FAULT - FILTER_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_FILTER_DROPPED_DATA - FILTER_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_FILTER_RATE_MISMATCH - FILTER_STUCK = _mscl.CV7ContinuousBIT_System_Process_FILTER_STUCK - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_filterStuck(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_Process - -# Register CV7ContinuousBIT_System_Process in _mscl: -_mscl.CV7ContinuousBIT_System_Process_swigregister(CV7ContinuousBIT_System_Process) - -class CV7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_swiginit(self, _mscl.new_CV7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.CV7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System - -# Register CV7ContinuousBIT_System in _mscl: -_mscl.CV7ContinuousBIT_System_swigregister(CV7ContinuousBIT_System) - -class CV7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_General - -# Register CV7ContinuousBIT_IMU_General in _mscl: -_mscl.CV7ContinuousBIT_IMU_General_swigregister(CV7ContinuousBIT_IMU_General) - -class CV7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_Sensors - -# Register CV7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.CV7ContinuousBIT_IMU_Sensors_swigregister(CV7ContinuousBIT_IMU_Sensors) - -class CV7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU(*args)) - FACTORY_BITS_INVALID = _mscl.CV7ContinuousBIT_IMU_FACTORY_BITS_INVALID - - def general(self): - return _mscl.CV7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.CV7ContinuousBIT_IMU_sensors(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_IMU_factoryBitsInvalid(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU - -# Register CV7ContinuousBIT_IMU in _mscl: -_mscl.CV7ContinuousBIT_IMU_swigregister(CV7ContinuousBIT_IMU) - -class CV7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter_General(*args)) - FAULT = _mscl.CV7ContinuousBIT_Filter_General_FAULT - - def fault(self): - return _mscl.CV7ContinuousBIT_Filter_General_fault(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter_General - -# Register CV7ContinuousBIT_Filter_General in _mscl: -_mscl.CV7ContinuousBIT_Filter_General_swigregister(CV7ContinuousBIT_Filter_General) - -class CV7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter - -# Register CV7ContinuousBIT_Filter in _mscl: -_mscl.CV7ContinuousBIT_Filter_swigregister(CV7ContinuousBIT_Filter) - -class CV7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.CV7ContinuousBIT_swiginit(self, _mscl.new_CV7ContinuousBIT(bytes)) - - def system(self): - return _mscl.CV7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.CV7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.CV7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.CV7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.CV7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.CV7ContinuousBIT_bufferOverrun(self) - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_filterStuck(self) - - def imu(self): - return _mscl.CV7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.CV7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.CV7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.CV7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.CV7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.CV7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.CV7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.CV7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.CV7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.CV7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.CV7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.CV7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.CV7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.CV7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.CV7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.CV7ContinuousBIT_pressureSelfTestFail(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_factoryBitsInvalid(self) - - def filter(self): - return _mscl.CV7ContinuousBIT_filter(self) - - def filterFault(self): - return _mscl.CV7ContinuousBIT_filterFault(self) - - def filterTimingOverrun(self): - return _mscl.CV7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.CV7ContinuousBIT_filterTimingUnderrun(self) - - def as_MipDataPoints(self): - return _mscl.CV7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT - -# Register CV7ContinuousBIT in _mscl: -_mscl.CV7ContinuousBIT_swigregister(CV7ContinuousBIT) - -class GQ7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_General - -# Register GQ7ContinuousBIT_System_General in _mscl: -_mscl.GQ7ContinuousBIT_System_General_swigregister(GQ7ContinuousBIT_System_General) - -class GQ7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_Process_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_Process(*args)) - IMU_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_CONTROL_LINE_FAULT - IMU_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_COMMAND_RESPONSE_FAULT - IMU_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_SPI_TRANSFER_FAULT - IMU_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_DATA_FRAME_FAULT - FILTER_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_CONTROL_LINE_FAULT - FILTER_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_COMMAND_RESPONSE_FAULT - FILTER_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_SPI_TRANSFER_FAULT - FILTER_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_DATA_FRAME_FAULT - GNSS_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_CONTROL_LINE_FAULT - GNSS_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_COMMAND_RESPONSE_FAULT - GNSS_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_SPI_TRANSFER_FAULT - GNSS_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_DATA_FRAME_FAULT - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssDataFrameFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_Process - -# Register GQ7ContinuousBIT_System_Process in _mscl: -_mscl.GQ7ContinuousBIT_System_Process_swigregister(GQ7ContinuousBIT_System_Process) - -class GQ7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_swiginit(self, _mscl.new_GQ7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.GQ7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System - -# Register GQ7ContinuousBIT_System in _mscl: -_mscl.GQ7ContinuousBIT_System_swigregister(GQ7ContinuousBIT_System) - -class GQ7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_General - -# Register GQ7ContinuousBIT_IMU_General in _mscl: -_mscl.GQ7ContinuousBIT_IMU_General_swigregister(GQ7ContinuousBIT_IMU_General) - -class GQ7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_Sensors - -# Register GQ7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.GQ7ContinuousBIT_IMU_Sensors_swigregister(GQ7ContinuousBIT_IMU_Sensors) - -class GQ7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.GQ7ContinuousBIT_IMU_sensors(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU - -# Register GQ7ContinuousBIT_IMU in _mscl: -_mscl.GQ7ContinuousBIT_IMU_swigregister(GQ7ContinuousBIT_IMU) - -class GQ7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_HARDWARE_FAULT - COMMUNICATION_ERROR_IMU_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_IMU_SPI - COMMUNICATION_ERROR_GNSS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_GNSS_SPI - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_COMMS_UART = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_UART - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationError(self) - - def communicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorImuSpi(self) - - def communicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorGnssSpi(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsSpi(self) - - def communicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsUart(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter_General - -# Register GQ7ContinuousBIT_Filter_General in _mscl: -_mscl.GQ7ContinuousBIT_Filter_General_swigregister(GQ7ContinuousBIT_Filter_General) - -class GQ7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter - -# Register GQ7ContinuousBIT_Filter in _mscl: -_mscl.GQ7ContinuousBIT_Filter_swigregister(GQ7ContinuousBIT_Filter) - -class GQ7ContinuousBIT_GNSS_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_HARDWARE_FAULT - COMMUNICATION_ERROR_COMMS_SERIAL = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SERIAL - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_NAV_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_NAV_SPI - GPS_TIME_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_GPS_TIME_FAULT - TIMING_OVERRUN = _mscl.GQ7ContinuousBIT_GNSS_General_TIMING_OVERRUN - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_flags(self) - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationError(self) - - def communicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSerial(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSpi(self) - - def communicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_gpsTimeFault(self) - - def timingOverrun(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_timingOverrun(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_General - -# Register GQ7ContinuousBIT_GNSS_General in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_General_swigregister(GQ7ContinuousBIT_GNSS_General) - -class GQ7ContinuousBIT_GNSS_Receivers(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_Receivers_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_Receivers(*args)) - POWER_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_1 - FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_1 - SHORTED_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_1 - OPEN_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_1 - SOLUTION_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_1 - POWER_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_2 - FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_2 - SHORTED_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_2 - OPEN_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_2 - SOLUTION_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_2 - RTCM_COMMUNICATION_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTCM_COMMUNICATION_FAULT - RTK_DONGLE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTK_DONGLE_FAULT - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_flags(self) - - def powerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver1(self) - - def faultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver1(self) - - def shortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna1(self) - - def openAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna1(self) - - def solutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver1(self) - - def powerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver2(self) - - def faultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver2(self) - - def shortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna2(self) - - def openAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna2(self) - - def solutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtkDongleFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_Receivers - -# Register GQ7ContinuousBIT_GNSS_Receivers in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_Receivers_swigregister(GQ7ContinuousBIT_GNSS_Receivers) - -class GQ7ContinuousBIT_GNSS(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS(*args)) - RESPONSE_OFFSET = _mscl.GQ7ContinuousBIT_GNSS_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_GENERAL_FLAGS - RECEIVERS_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_RECEIVERS_FLAGS - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_flags(self) - - def general(self): - return _mscl.GQ7ContinuousBIT_GNSS_general(self) - - def receivers(self): - return _mscl.GQ7ContinuousBIT_GNSS_receivers(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS - -# Register GQ7ContinuousBIT_GNSS in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_swigregister(GQ7ContinuousBIT_GNSS) - -class GQ7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.GQ7ContinuousBIT_swiginit(self, _mscl.new_GQ7ContinuousBIT(bytes)) - - def system(self): - return _mscl.GQ7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.GQ7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.GQ7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.GQ7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.GQ7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.GQ7ContinuousBIT_bufferOverrun(self) - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_gnssDataFrameFault(self) - - def imu(self): - return _mscl.GQ7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.GQ7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.GQ7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.GQ7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.GQ7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.GQ7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.GQ7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.GQ7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.GQ7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.GQ7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_pressureSelfTestFail(self) - - def filter(self): - return _mscl.GQ7ContinuousBIT_filter(self) - - def filterClockFault(self): - return _mscl.GQ7ContinuousBIT_filterClockFault(self) - - def filterHardwareFault(self): - return _mscl.GQ7ContinuousBIT_filterHardwareFault(self) - - def filterTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingUnderrun(self) - - def filterCommunicationError(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationError(self) - - def filterCommunicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorImuSpi(self) - - def filterCommunicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorGnssSpi(self) - - def filterCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsSpi(self) - - def filterCommunicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsUart(self) - - def gnss(self): - return _mscl.GQ7ContinuousBIT_gnss(self) - - def gnssClockFault(self): - return _mscl.GQ7ContinuousBIT_gnssClockFault(self) - - def gnssHardwareFault(self): - return _mscl.GQ7ContinuousBIT_gnssHardwareFault(self) - - def gnssCommunicationError(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationError(self) - - def gnssCommunicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSerial(self) - - def gnssCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSpi(self) - - def gnssCommunicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_gpsTimeFault(self) - - def gnssTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_gnssTimingOverrun(self) - - def gnssPowerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver1(self) - - def gnssFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver1(self) - - def gnssShortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna1(self) - - def gnssOpenAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna1(self) - - def gnssSolutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver1(self) - - def gnssPowerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver2(self) - - def gnssFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver2(self) - - def gnssShortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna2(self) - - def gnssOpenAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna2(self) - - def gnssSolutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_rtkDongleFault(self) - - def as_MipDataPoints(self): - return _mscl.GQ7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT - -# Register GQ7ContinuousBIT in _mscl: -_mscl.GQ7ContinuousBIT_swigregister(GQ7ContinuousBIT) - -class MipSharedDataFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EVENT_SOURCE_NONE = _mscl.MipSharedDataFields_EVENT_SOURCE_NONE - EVENT_SOURCE_UNKNOWN = _mscl.MipSharedDataFields_EVENT_SOURCE_UNKNOWN - - def __init__(self): - _mscl.MipSharedDataFields_swiginit(self, _mscl.new_MipSharedDataFields()) - - def hasEventSource(self): - return _mscl.MipSharedDataFields_hasEventSource(self) - - def eventSource(self): - return _mscl.MipSharedDataFields_eventSource(self) - - def hasTicks(self): - return _mscl.MipSharedDataFields_hasTicks(self) - - def ticks(self): - return _mscl.MipSharedDataFields_ticks(self) - - def hasDeltaTicks(self): - return _mscl.MipSharedDataFields_hasDeltaTicks(self) - - def deltaTicks(self): - return _mscl.MipSharedDataFields_deltaTicks(self) - - def hasGpsTimestamp(self): - return _mscl.MipSharedDataFields_hasGpsTimestamp(self) - - def gpsTimestamp(self): - return _mscl.MipSharedDataFields_gpsTimestamp(self) - - def gpsTimestampValid(self): - return _mscl.MipSharedDataFields_gpsTimestampValid(self) - - def hasDeltaTime(self): - return _mscl.MipSharedDataFields_hasDeltaTime(self) - - def deltaTime(self): - return _mscl.MipSharedDataFields_deltaTime(self) - - def hasReferenceTime(self): - return _mscl.MipSharedDataFields_hasReferenceTime(self) - - def referenceTime(self): - return _mscl.MipSharedDataFields_referenceTime(self) - - def hasDeltaReferenceTime(self): - return _mscl.MipSharedDataFields_hasDeltaReferenceTime(self) - - def deltaReferenceTime(self): - return _mscl.MipSharedDataFields_deltaReferenceTime(self) - - def hasExternalTimestamp(self): - return _mscl.MipSharedDataFields_hasExternalTimestamp(self) - - def externalTimestamp(self): - return _mscl.MipSharedDataFields_externalTimestamp(self) - - def externalTimestampValid(self): - return _mscl.MipSharedDataFields_externalTimestampValid(self) - - def hasDeltaExternalTime(self): - return _mscl.MipSharedDataFields_hasDeltaExternalTime(self) - - def deltaExternalTime(self): - return _mscl.MipSharedDataFields_deltaExternalTime(self) - - def deltaExternalTimeValid(self): - return _mscl.MipSharedDataFields_deltaExternalTimeValid(self) - - def get(self, *args): - return _mscl.MipSharedDataFields_get(self, *args) - __swig_destroy__ = _mscl.delete_MipSharedDataFields - -# Register MipSharedDataFields in _mscl: -_mscl.MipSharedDataFields_swigregister(MipSharedDataFields) - -class MipDataPacket(MipPacket): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipDataPacket_swiginit(self, _mscl.new_MipDataPacket(*args)) - - def data(self): - return _mscl.MipDataPacket_data(self) - - def shared(self): - return _mscl.MipDataPacket_shared(self) - - def collectedTimestamp(self): - return _mscl.MipDataPacket_collectedTimestamp(self) - - def deviceTimestamp(self): - return _mscl.MipDataPacket_deviceTimestamp(self) - - def hasDeviceTime(self): - return _mscl.MipDataPacket_hasDeviceTime(self) - - def deviceTimeValid(self): - return _mscl.MipDataPacket_deviceTimeValid(self) - - def deviceTimeFlags(self): - return _mscl.MipDataPacket_deviceTimeFlags(self) - __swig_destroy__ = _mscl.delete_MipDataPacket - -# Register MipDataPacket in _mscl: -_mscl.MipDataPacket_swigregister(MipDataPacket) - -class RawBytePacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INVALID_PACKET = _mscl.RawBytePacket_INVALID_PACKET - DATA_PACKET = _mscl.RawBytePacket_DATA_PACKET - COMMAND_PACKET = _mscl.RawBytePacket_COMMAND_PACKET - NO_PACKET_FOUND = _mscl.RawBytePacket_NO_PACKET_FOUND - FROM_READ = _mscl.RawBytePacket_FROM_READ - FROM_SEND = _mscl.RawBytePacket_FROM_SEND - - def __init__(self): - _mscl.RawBytePacket_swiginit(self, _mscl.new_RawBytePacket()) - - def type(self, *args): - return _mscl.RawBytePacket_type(self, *args) - - def source(self, *args): - return _mscl.RawBytePacket_source(self, *args) - - def payload(self, *args): - return _mscl.RawBytePacket_payload(self, *args) - __swig_destroy__ = _mscl.delete_RawBytePacket - -# Register RawBytePacket in _mscl: -_mscl.RawBytePacket_swigregister(RawBytePacket) - -class MipNodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_MipNodeFeatures - - @staticmethod - def isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - - def supportsCategory(self, dataClass): - return _mscl.MipNodeFeatures_supportsCategory(self, dataClass) - - def supportsCommand(self, commandId): - return _mscl.MipNodeFeatures_supportsCommand(self, commandId) - - def supportedCommands(self): - return _mscl.MipNodeFeatures_supportedCommands(self) - - def supportsChannelField(self, fieldId): - return _mscl.MipNodeFeatures_supportsChannelField(self, fieldId) - - def filterSupportedChannelFields(self, fields): - return _mscl.MipNodeFeatures_filterSupportedChannelFields(self, fields) - - def supportedChannelFields(self, *args): - return _mscl.MipNodeFeatures_supportedChannelFields(self, *args) - - def supportedSampleRates(self, dataClass): - return _mscl.MipNodeFeatures_supportedSampleRates(self, dataClass) - - def baseDataRate(self, dataClass): - return _mscl.MipNodeFeatures_baseDataRate(self, dataClass) - - def gnssReceiverInfo(self): - return _mscl.MipNodeFeatures_gnssReceiverInfo(self) - - def supportedGnssSources(self): - return _mscl.MipNodeFeatures_supportedGnssSources(self) - - def supportedSensorRanges(self, *args): - return _mscl.MipNodeFeatures_supportedSensorRanges(self, *args) - - def getCommPortInfo(self): - return _mscl.MipNodeFeatures_getCommPortInfo(self) - - def useLegacyIdsForEnableDataStream(self): - return _mscl.MipNodeFeatures_useLegacyIdsForEnableDataStream(self) - - def supportedHeadingUpdateOptions(self): - return _mscl.MipNodeFeatures_supportedHeadingUpdateOptions(self) - - def supportedHeadingAlignmentMethods(self): - return _mscl.MipNodeFeatures_supportedHeadingAlignmentMethods(self) - - def supportedStatusSelectors(self): - return _mscl.MipNodeFeatures_supportedStatusSelectors(self) - - def supportedEstimationControlOptions(self): - return _mscl.MipNodeFeatures_supportedEstimationControlOptions(self) - - def supportedVehicleModeTypes(self): - return _mscl.MipNodeFeatures_supportedVehicleModeTypes(self) - - def supportedAdaptiveMeasurementModes(self): - return _mscl.MipNodeFeatures_supportedAdaptiveMeasurementModes(self) - - def supportedAdaptiveFilterLevels(self): - return _mscl.MipNodeFeatures_supportedAdaptiveFilterLevels(self) - - def supportedAidingMeasurementOptions(self): - return _mscl.MipNodeFeatures_supportedAidingMeasurementOptions(self) - - def supportedPpsSourceOptions(self): - return _mscl.MipNodeFeatures_supportedPpsSourceOptions(self) - - def supportedGpioPins(self): - return _mscl.MipNodeFeatures_supportedGpioPins(self) - - def supportedGpioPinModes(self, feature, behavior): - return _mscl.MipNodeFeatures_supportedGpioPinModes(self, feature, behavior) - - def supportedGpioBehaviors(self, feature, pin): - return _mscl.MipNodeFeatures_supportedGpioBehaviors(self, feature, pin) - - def supportedGpioFeatures(self, pin): - return _mscl.MipNodeFeatures_supportedGpioFeatures(self, pin) - - def supportedGpioConfigurations(self): - return _mscl.MipNodeFeatures_supportedGpioConfigurations(self) - - def supportedGnssSignalConfigurations(self): - return _mscl.MipNodeFeatures_supportedGnssSignalConfigurations(self) - - def supportedDeclinationSources(self): - return _mscl.MipNodeFeatures_supportedDeclinationSources(self) - - def supportedInclinationSources(self): - return _mscl.MipNodeFeatures_supportedInclinationSources(self) - - def supportedMagneticMagnitudeSources(self): - return _mscl.MipNodeFeatures_supportedMagneticMagnitudeSources(self) - - def supportedEventThresholdChannels(self): - return _mscl.MipNodeFeatures_supportedEventThresholdChannels(self) - - def supportedEventActionInfo(self): - return _mscl.MipNodeFeatures_supportedEventActionInfo(self) - - def supportedEventTriggerInfo(self): - return _mscl.MipNodeFeatures_supportedEventTriggerInfo(self) - - def supportsNorthCompensation(self): - return _mscl.MipNodeFeatures_supportsNorthCompensation(self) - - def supportedLowPassFilterChannelFields(self): - return _mscl.MipNodeFeatures_supportedLowPassFilterChannelFields(self) - - def maxMeasurementReferenceFrameId(self): - return _mscl.MipNodeFeatures_maxMeasurementReferenceFrameId(self) - -# Register MipNodeFeatures in _mscl: -_mscl.MipNodeFeatures_swigregister(MipNodeFeatures) - -def MipNodeFeatures_isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - -class MipNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.MipNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - def getConfigCommandBytes(self): - return _mscl.MipNode_getConfigCommandBytes(self) - - def sendCommandBytes(self, *args): - return _mscl.MipNode_sendCommandBytes(self, *args) - - @staticmethod - def deviceName(serial): - return _mscl.MipNode_deviceName(serial) - - def connection(self): - return _mscl.MipNode_connection(self) - - def features(self): - return _mscl.MipNode_features(self) - - def clearDeviceInfo(self): - return _mscl.MipNode_clearDeviceInfo(self) - - def lastCommunicationTime(self): - return _mscl.MipNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.MipNode_lastDeviceState(self) - - def setLastDeviceState(self, state): - return _mscl.MipNode_setLastDeviceState(self, state) - - def firmwareVersion(self): - return _mscl.MipNode_firmwareVersion(self) - - def model(self): - return _mscl.MipNode_model(self) - - def modelName(self): - return _mscl.MipNode_modelName(self) - - def modelNumber(self): - return _mscl.MipNode_modelNumber(self) - - def serialNumber(self): - return _mscl.MipNode_serialNumber(self) - - def lotNumber(self): - return _mscl.MipNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.MipNode_deviceOptions(self) - - def timeout(self, *args): - return _mscl.MipNode_timeout(self, *args) - - def name(self): - return _mscl.MipNode_name(self) - - def ping(self): - return _mscl.MipNode_ping(self) - - def setToIdle(self): - return _mscl.MipNode_setToIdle(self) - - def cyclePower(self): - return _mscl.MipNode_cyclePower(self) - - def resume(self): - return _mscl.MipNode_resume(self) - - def getCommunicationMode(self): - return _mscl.MipNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.MipNode_setCommunicationMode(self, communicationMode) - - def saveSettingsAsStartup(self, *args): - return _mscl.MipNode_saveSettingsAsStartup(self, *args) - - def loadStartupSettings(self, *args): - return _mscl.MipNode_loadStartupSettings(self, *args) - - def loadFactoryDefaultSettings(self, *args): - return _mscl.MipNode_loadFactoryDefaultSettings(self, *args) - - def setUARTBaudRate(self, *args): - return _mscl.MipNode_setUARTBaudRate(self, *args) - - def getUARTBaudRate(self, portId=1): - return _mscl.MipNode_getUARTBaudRate(self, portId) - - def getRawBytePackets(self, timeout=0, maxPackets=0): - return _mscl.MipNode_getRawBytePackets(self, timeout, maxPackets) - -# Register MipNode in _mscl: -_mscl.MipNode_swigregister(MipNode) - -def MipNode_deviceName(serial): - return _mscl.MipNode_deviceName(serial) - -class InertialNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.InertialNode_swiginit(self, _mscl.new_InertialNode(connection)) - __swig_destroy__ = _mscl.delete_InertialNode - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.InertialNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.InertialNode_totalPackets(self) - - def pollData(self, *args): - return _mscl.InertialNode_pollData(self, *args) - - def getDataRateBase(self, dataClass): - return _mscl.InertialNode_getDataRateBase(self, dataClass) - - def getActiveChannelFields(self, dataClass): - return _mscl.InertialNode_getActiveChannelFields(self, dataClass) - - def setActiveChannelFields(self, dataClass, channels): - return _mscl.InertialNode_setActiveChannelFields(self, dataClass, channels) - - def saveActiveChannelFields(self, dataClass): - return _mscl.InertialNode_saveActiveChannelFields(self, dataClass) - - def setFactoryStreamingChannels(self, option): - return _mscl.InertialNode_setFactoryStreamingChannels(self, option) - - def getInterfaceControl(self, interfaceId): - return _mscl.InertialNode_getInterfaceControl(self, interfaceId) - - def setInterfaceControl(self, *args): - return _mscl.InertialNode_setInterfaceControl(self, *args) - - def getCommunicationMode(self): - return _mscl.InertialNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.InertialNode_setCommunicationMode(self, communicationMode) - - def isDataStreamEnabled(self, dataClass): - return _mscl.InertialNode_isDataStreamEnabled(self, dataClass) - - def enableDataStream(self, dataClass, enable=True, resumeStreaming=True): - return _mscl.InertialNode_enableDataStream(self, dataClass, enable, resumeStreaming) - - def resetFilter(self): - return _mscl.InertialNode_resetFilter(self) - - def runFilter(self): - return _mscl.InertialNode_runFilter(self) - - def getAutoInitialization(self): - return _mscl.InertialNode_getAutoInitialization(self) - - def setAutoInitialization(self, enable): - return _mscl.InertialNode_setAutoInitialization(self, enable) - - def getAltitudeAid(self): - return _mscl.InertialNode_getAltitudeAid(self) - - def setAltitudeAid(self, enable): - return _mscl.InertialNode_setAltitudeAid(self, enable) - - def getPitchRollAid(self): - return _mscl.InertialNode_getPitchRollAid(self) - - def setPitchRollAid(self, enable): - return _mscl.InertialNode_setPitchRollAid(self, enable) - - def enableVerticalGyroConstraint(self, enable): - return _mscl.InertialNode_enableVerticalGyroConstraint(self, enable) - - def verticalGyroConstraintEnabled(self): - return _mscl.InertialNode_verticalGyroConstraintEnabled(self) - - def enableWheeledVehicleConstraint(self, enable): - return _mscl.InertialNode_enableWheeledVehicleConstraint(self, enable) - - def wheeledVehicleConstraintEnabled(self): - return _mscl.InertialNode_wheeledVehicleConstraintEnabled(self) - - def setVelocityZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setVelocityZUPT(self, ZUPTSettings) - - def getVelocityZUPT(self): - return _mscl.InertialNode_getVelocityZUPT(self) - - def setAngularRateZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setAngularRateZUPT(self, ZUPTSettings) - - def getAngularRateZUPT(self): - return _mscl.InertialNode_getAngularRateZUPT(self) - - def cmdedVelZUPT(self): - return _mscl.InertialNode_cmdedVelZUPT(self) - - def cmdedAngRateZUPT(self): - return _mscl.InertialNode_cmdedAngRateZUPT(self) - - def setInitialAttitude(self, attitude): - return _mscl.InertialNode_setInitialAttitude(self, attitude) - - def setInitialHeading(self, heading): - return _mscl.InertialNode_setInitialHeading(self, heading) - - def getInitialFilterConfiguration(self): - return _mscl.InertialNode_getInitialFilterConfiguration(self) - - def setInitialFilterConfiguration(self, filterConfig): - return _mscl.InertialNode_setInitialFilterConfiguration(self, filterConfig) - - def getSensorToVehicleRotation_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleRotation_eulerAngles(self) - - def setSensorToVehicleRotation_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleRotation_eulerAngles(self, angles) - - def getSensorToVehicleRotation_matrix(self): - return _mscl.InertialNode_getSensorToVehicleRotation_matrix(self) - - def setSensorToVehicleRotation_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleRotation_matrix(self, dcm) - - def getSensorToVehicleRotation_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleRotation_quaternion(self) - - def setSensorToVehicleRotation_quaternion(self, rotation): - return _mscl.InertialNode_setSensorToVehicleRotation_quaternion(self, rotation) - - def getSensorToVehicleTransform_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleTransform_eulerAngles(self) - - def setSensorToVehicleTransform_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleTransform_eulerAngles(self, angles) - - def getSensorToVehicleTransform_matrix(self): - return _mscl.InertialNode_getSensorToVehicleTransform_matrix(self) - - def setSensorToVehicleTransform_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleTransform_matrix(self, dcm) - - def getSensorToVehicleTransform_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleTransform_quaternion(self) - - def setSensorToVehicleTransform_quaternion(self, transformation): - return _mscl.InertialNode_setSensorToVehicleTransform_quaternion(self, transformation) - - def getSensorToVehicleOffset(self): - return _mscl.InertialNode_getSensorToVehicleOffset(self) - - def setSensorToVehicleOffset(self, offset): - return _mscl.InertialNode_setSensorToVehicleOffset(self, offset) - - def getAntennaOffset(self): - return _mscl.InertialNode_getAntennaOffset(self) - - def setAntennaOffset(self, offset): - return _mscl.InertialNode_setAntennaOffset(self, offset) - - def getGNSSAssistedFixControl(self): - return _mscl.InertialNode_getGNSSAssistedFixControl(self) - - def setGNSSAssistedFixControl(self, enableAssistedFix): - return _mscl.InertialNode_setGNSSAssistedFixControl(self, enableAssistedFix) - - def getGNSSAssistTimeUpdate(self): - return _mscl.InertialNode_getGNSSAssistTimeUpdate(self) - - def setGNSSAssistTimeUpdate(self, timeUpdate): - return _mscl.InertialNode_setGNSSAssistTimeUpdate(self, timeUpdate) - - def getGPSTimeUpdate(self, timeFrame): - return _mscl.InertialNode_getGPSTimeUpdate(self, timeFrame) - - def setGPSTimeUpdate(self, arg2, timeData): - return _mscl.InertialNode_setGPSTimeUpdate(self, arg2, timeData) - - def setConstellationSettings(self, dataToUse): - return _mscl.InertialNode_setConstellationSettings(self, dataToUse) - - def getConstellationSettings(self): - return _mscl.InertialNode_getConstellationSettings(self) - - def setSBASSettings(self, dataToUse): - return _mscl.InertialNode_setSBASSettings(self, dataToUse) - - def getSBASSettings(self): - return _mscl.InertialNode_getSBASSettings(self) - - def setAccelerometerBias(self, biasVector): - return _mscl.InertialNode_setAccelerometerBias(self, biasVector) - - def getAccelerometerBias(self): - return _mscl.InertialNode_getAccelerometerBias(self) - - def setGyroBias(self, biasVector): - return _mscl.InertialNode_setGyroBias(self, biasVector) - - def getGyroBias(self): - return _mscl.InertialNode_getGyroBias(self) - - def captureGyroBias(self, samplingTime): - return _mscl.InertialNode_captureGyroBias(self, samplingTime) - - def findMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_findMagnetometerCaptureAutoCalibration(self) - - def saveMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_saveMagnetometerCaptureAutoCalibration(self) - - def setMagnetometerSoftIronMatrix(self, matrix): - return _mscl.InertialNode_setMagnetometerSoftIronMatrix(self, matrix) - - def getMagnetometerSoftIronMatrix(self): - return _mscl.InertialNode_getMagnetometerSoftIronMatrix(self) - - def setMagnetometerHardIronOffset(self, offsetVector): - return _mscl.InertialNode_setMagnetometerHardIronOffset(self, offsetVector) - - def getMagnetometerHardIronOffset(self): - return _mscl.InertialNode_getMagnetometerHardIronOffset(self) - - def setConingAndScullingEnable(self, enable): - return _mscl.InertialNode_setConingAndScullingEnable(self, enable) - - def getConingAndScullingEnable(self): - return _mscl.InertialNode_getConingAndScullingEnable(self) - - def setLowPassFilterSettings(self, data): - return _mscl.InertialNode_setLowPassFilterSettings(self, data) - - def getLowPassFilterSettings(self, dataDescriptors): - return _mscl.InertialNode_getLowPassFilterSettings(self, dataDescriptors) - - def setComplementaryFilterSettings(self, data): - return _mscl.InertialNode_setComplementaryFilterSettings(self, data) - - def getComplementaryFilterSettings(self): - return _mscl.InertialNode_getComplementaryFilterSettings(self) - - def getBasicDeviceStatus(self): - return _mscl.InertialNode_getBasicDeviceStatus(self) - - def getDiagnosticDeviceStatus(self): - return _mscl.InertialNode_getDiagnosticDeviceStatus(self) - - def sendRawRTCM_2_3Message(self, theMessage): - return _mscl.InertialNode_sendRawRTCM_2_3Message(self, theMessage) - - def setVehicleDynamicsMode(self, mode): - return _mscl.InertialNode_setVehicleDynamicsMode(self, mode) - - def getVehicleDynamicsMode(self): - return _mscl.InertialNode_getVehicleDynamicsMode(self) - - def setEstimationControlFlags(self, flags): - return _mscl.InertialNode_setEstimationControlFlags(self, flags) - - def getEstimationControlFlags(self): - return _mscl.InertialNode_getEstimationControlFlags(self) - - def setInclinationSource(self, options): - return _mscl.InertialNode_setInclinationSource(self, options) - - def getInclinationSource(self): - return _mscl.InertialNode_getInclinationSource(self) - - def setDeclinationSource(self, options): - return _mscl.InertialNode_setDeclinationSource(self, options) - - def getDeclinationSource(self): - return _mscl.InertialNode_getDeclinationSource(self) - - def setMagneticFieldMagnitudeSource(self, options): - return _mscl.InertialNode_setMagneticFieldMagnitudeSource(self, options) - - def getMagneticFieldMagnitudeSource(self): - return _mscl.InertialNode_getMagneticFieldMagnitudeSource(self) - - def setGNSS_SourceControl(self, gnssSource): - return _mscl.InertialNode_setGNSS_SourceControl(self, gnssSource) - - def getGNSS_SourceControl(self): - return _mscl.InertialNode_getGNSS_SourceControl(self) - - def sendExternalGNSSUpdate(self, gnssUpdateData): - return _mscl.InertialNode_sendExternalGNSSUpdate(self, gnssUpdateData) - - def setHeadingUpdateControl(self, headingUpdateOptions): - return _mscl.InertialNode_setHeadingUpdateControl(self, headingUpdateOptions) - - def tareOrientation(self, axisValue): - return _mscl.InertialNode_tareOrientation(self, axisValue) - - def getHeadingUpdateControl(self): - return _mscl.InertialNode_getHeadingUpdateControl(self) - - def setGravityErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setGravityErrorAdaptiveMeasurement(self, data) - - def getGravityErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getGravityErrorAdaptiveMeasurement(self) - - def setMagnetometerErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagnetometerErrorAdaptiveMeasurement(self, data) - - def getMagnetometerErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagnetometerErrorAdaptiveMeasurement(self) - - def setMagDipAngleErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagDipAngleErrorAdaptiveMeasurement(self, data) - - def getMagDipAngleErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagDipAngleErrorAdaptiveMeasurement(self) - - def setMagNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setMagNoiseStandardDeviation(self, data) - - def getMagNoiseStandardDeviation(self): - return _mscl.InertialNode_getMagNoiseStandardDeviation(self) - - def setGravNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGravNoiseStandardDeviation(self, data) - - def getGravNoiseStandardDeviation(self): - return _mscl.InertialNode_getGravNoiseStandardDeviation(self) - - def setAccelNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setAccelNoiseStandardDeviation(self, data) - - def getAccelNoiseStandardDeviation(self): - return _mscl.InertialNode_getAccelNoiseStandardDeviation(self) - - def setGyroNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGyroNoiseStandardDeviation(self, data) - - def getGyroNoiseStandardDeviation(self): - return _mscl.InertialNode_getGyroNoiseStandardDeviation(self) - - def setPressureAltNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setPressureAltNoiseStandardDeviation(self, data) - - def getPressureAltNoiseStandardDeviation(self): - return _mscl.InertialNode_getPressureAltNoiseStandardDeviation(self) - - def setHardIronOffsetProcessNoise(self, data): - return _mscl.InertialNode_setHardIronOffsetProcessNoise(self, data) - - def getHardIronOffsetProcessNoise(self): - return _mscl.InertialNode_getHardIronOffsetProcessNoise(self) - - def setAccelBiasModelParams(self, data): - return _mscl.InertialNode_setAccelBiasModelParams(self, data) - - def getAccelBiasModelParams(self): - return _mscl.InertialNode_getAccelBiasModelParams(self) - - def setGyroBiasModelParams(self, data): - return _mscl.InertialNode_setGyroBiasModelParams(self, data) - - def getGyroBiasModelParams(self): - return _mscl.InertialNode_getGyroBiasModelParams(self) - - def setSoftIronMatrixProcessNoise(self, data): - return _mscl.InertialNode_setSoftIronMatrixProcessNoise(self, data) - - def getSoftIronMatrixProcessNoise(self): - return _mscl.InertialNode_getSoftIronMatrixProcessNoise(self) - - def setFixedReferencePosition(self, data): - return _mscl.InertialNode_setFixedReferencePosition(self, data) - - def getFixedReferencePosition(self): - return _mscl.InertialNode_getFixedReferencePosition(self) - - def setGPSDynamicsMode(self, data): - return _mscl.InertialNode_setGPSDynamicsMode(self, data) - - def getGPSDynamicsMode(self): - return _mscl.InertialNode_getGPSDynamicsMode(self) - - def setDevicePowerState(self, device, data): - return _mscl.InertialNode_setDevicePowerState(self, device, data) - - def getDevicePowerState(self, device): - return _mscl.InertialNode_getDevicePowerState(self, device) - - def setDeviceStreamFormat(self, device, data): - return _mscl.InertialNode_setDeviceStreamFormat(self, device, data) - - def getDeviceStreamFormat(self, device): - return _mscl.InertialNode_getDeviceStreamFormat(self, device) - - def setSignalConditioningSettings(self, data): - return _mscl.InertialNode_setSignalConditioningSettings(self, data) - - def getSignalConditioningSettings(self): - return _mscl.InertialNode_getSignalConditioningSettings(self) - - def setEnableDisableMeasurements(self, data): - return _mscl.InertialNode_setEnableDisableMeasurements(self, data) - - def getEnableDisableMeasurements(self): - return _mscl.InertialNode_getEnableDisableMeasurements(self) - - def setGravityNoiseMinimum(self, data): - return _mscl.InertialNode_setGravityNoiseMinimum(self, data) - - def getGravityNoiseMinimum(self): - return _mscl.InertialNode_getGravityNoiseMinimum(self) - - def sendExternalHeadingUpdate(self, *args): - return _mscl.InertialNode_sendExternalHeadingUpdate(self, *args) - - def aidingMeasurementEnabled(self, aidingSource): - return _mscl.InertialNode_aidingMeasurementEnabled(self, aidingSource) - - def enableDisableAidingMeasurement(self, aidingSource, enable): - return _mscl.InertialNode_enableDisableAidingMeasurement(self, aidingSource, enable) - - def getAdaptiveFilterOptions(self): - return _mscl.InertialNode_getAdaptiveFilterOptions(self) - - def setAdaptiveFilterOptions(self, options): - return _mscl.InertialNode_setAdaptiveFilterOptions(self, options) - - def getMultiAntennaOffset(self, receiverId): - return _mscl.InertialNode_getMultiAntennaOffset(self, receiverId) - - def setMultiAntennaOffset(self, receiverId, offset): - return _mscl.InertialNode_setMultiAntennaOffset(self, receiverId, offset) - - def getPpsSource(self): - return _mscl.InertialNode_getPpsSource(self) - - def setPpsSource(self, ppsSource): - return _mscl.InertialNode_setPpsSource(self, ppsSource) - - def getOdometerConfig(self): - return _mscl.InertialNode_getOdometerConfig(self) - - def setOdometerConfig(self, config): - return _mscl.InertialNode_setOdometerConfig(self, config) - - def getSensorRange(self, sensorRangeType): - return _mscl.InertialNode_getSensorRange(self, sensorRangeType) - - def setSensorRange(self, *args): - return _mscl.InertialNode_setSensorRange(self, *args) - - def getGpioConfig(self, pin): - return _mscl.InertialNode_getGpioConfig(self, pin) - - def setGpioConfig(self, config): - return _mscl.InertialNode_setGpioConfig(self, config) - - def getGpioState(self, pin): - return _mscl.InertialNode_getGpioState(self, pin) - - def setGpioState(self, pin, state): - return _mscl.InertialNode_setGpioState(self, pin, state) - - def getEventTriggerMode(self, instance): - return _mscl.InertialNode_getEventTriggerMode(self, instance) - - def setEventTriggerMode(self, instance, mode): - return _mscl.InertialNode_setEventTriggerMode(self, instance, mode) - - def getEventTriggerConfig(self, instance): - return _mscl.InertialNode_getEventTriggerConfig(self, instance) - - def setEventTriggerConfig(self, config): - return _mscl.InertialNode_setEventTriggerConfig(self, config) - - def getEventActionConfig(self, instance): - return _mscl.InertialNode_getEventActionConfig(self, instance) - - def setEventActionConfig(self, config, validateSupported=True): - return _mscl.InertialNode_setEventActionConfig(self, config, validateSupported) - - def getAntennaLeverArmCal(self): - return _mscl.InertialNode_getAntennaLeverArmCal(self) - - def setAntennaLeverArmCal(self, config): - return _mscl.InertialNode_setAntennaLeverArmCal(self, config) - - def getRelativePositionReference(self): - return _mscl.InertialNode_getRelativePositionReference(self) - - def setRelativePositionReference(self, ref): - return _mscl.InertialNode_setRelativePositionReference(self, ref) - - def getLeverArmReferenceOffset(self): - return _mscl.InertialNode_getLeverArmReferenceOffset(self) - - def setLeverArmReferenceOffset(self, offset): - return _mscl.InertialNode_setLeverArmReferenceOffset(self, offset) - - def sendExternalSpeedMeasurementUpdate(self, tow, speed, unc): - return _mscl.InertialNode_sendExternalSpeedMeasurementUpdate(self, tow, speed, unc) - - def getSpeedMeasurementOffset(self): - return _mscl.InertialNode_getSpeedMeasurementOffset(self) - - def setSpeedMeasurementOffset(self, offset): - return _mscl.InertialNode_setSpeedMeasurementOffset(self, offset) - - def getGnssSignalConfig(self): - return _mscl.InertialNode_getGnssSignalConfig(self) - - def setGnssSignalConfig(self, config): - return _mscl.InertialNode_setGnssSignalConfig(self, config) - - def getGnssSpartnConfig(self): - return _mscl.InertialNode_getGnssSpartnConfig(self) - - def setGnssSpartnConfig(self, config): - return _mscl.InertialNode_setGnssSpartnConfig(self, config) - - def rtkEnabled(self): - return _mscl.InertialNode_rtkEnabled(self) - - def enableRtk(self, enable): - return _mscl.InertialNode_enableRtk(self, enable) - - def getEventTriggerStatus(self, *args): - return _mscl.InertialNode_getEventTriggerStatus(self, *args) - - def getEventActionStatus(self, *args): - return _mscl.InertialNode_getEventActionStatus(self, *args) - - def getNmeaMessageFormat(self): - return _mscl.InertialNode_getNmeaMessageFormat(self) - - def setNmeaMessageFormat(self, nmeaFormats): - return _mscl.InertialNode_setNmeaMessageFormat(self, nmeaFormats) - - def getAidingMeasurementReferenceFrames(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrames(self, *args) - - def setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds=False): - return _mscl.InertialNode_setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds) - - def getAidingMeasurementReferenceFrame(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrame(self, *args) - - def setAidingMeasurementReferenceFrame(self, id, frame): - return _mscl.InertialNode_setAidingMeasurementReferenceFrame(self, id, frame) - - def setAidingMeasurementResponseMode(self, mode): - return _mscl.InertialNode_setAidingMeasurementResponseMode(self, mode) - - def getAidingMeasurementResponseMode(self): - return _mscl.InertialNode_getAidingMeasurementResponseMode(self) - - def sendAidingMeasurement(self, *args): - return _mscl.InertialNode_sendAidingMeasurement(self, *args) - - def sendAidingMeasurement_readEcho(self, *args): - return _mscl.InertialNode_sendAidingMeasurement_readEcho(self, *args) - -# Register InertialNode in _mscl: -_mscl.InertialNode_swigregister(InertialNode) - -class DisplacementNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.DisplacementNode_swiginit(self, _mscl.new_DisplacementNode(connection)) - __swig_destroy__ = _mscl.delete_DisplacementNode - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.DisplacementNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - @staticmethod - def deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - - def connection(self): - return _mscl.DisplacementNode_connection(self) - - def features(self): - return _mscl.DisplacementNode_features(self) - - def lastCommunicationTime(self): - return _mscl.DisplacementNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.DisplacementNode_lastDeviceState(self) - - def firmwareVersion(self): - return _mscl.DisplacementNode_firmwareVersion(self) - - def model(self): - return _mscl.DisplacementNode_model(self) - - def modelName(self): - return _mscl.DisplacementNode_modelName(self) - - def modelNumber(self): - return _mscl.DisplacementNode_modelNumber(self) - - def serialNumber(self): - return _mscl.DisplacementNode_serialNumber(self) - - def lotNumber(self): - return _mscl.DisplacementNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.DisplacementNode_deviceOptions(self) - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.DisplacementNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.DisplacementNode_totalPackets(self) - - def timeout(self, *args): - return _mscl.DisplacementNode_timeout(self, *args) - - def name(self): - return _mscl.DisplacementNode_name(self) - - def ping(self): - return _mscl.DisplacementNode_ping(self) - - def setToIdle(self): - return _mscl.DisplacementNode_setToIdle(self) - - def cyclePower(self): - return _mscl.DisplacementNode_cyclePower(self) - - def resume(self): - return _mscl.DisplacementNode_resume(self) - - def getDisplacementOutputDataRate(self): - return _mscl.DisplacementNode_getDisplacementOutputDataRate(self) - - def getAnalogToDisplacementCal(self): - return _mscl.DisplacementNode_getAnalogToDisplacementCal(self) - - def setDeviceTime(self, *args): - return _mscl.DisplacementNode_setDeviceTime(self, *args) - -# Register DisplacementNode in _mscl: -_mscl.DisplacementNode_swigregister(DisplacementNode) - -def DisplacementNode_deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - -class RTKNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.RTKNode_swiginit(self, _mscl.new_RTKNode(connection)) - __swig_destroy__ = _mscl.delete_RTKNode - - def getCommunicationMode(self): - return _mscl.RTKNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.RTKNode_setCommunicationMode(self, communicationMode) - - def getDeviceStatusFlags(self): - return _mscl.RTKNode_getDeviceStatusFlags(self) - - def getActivationCode(self): - return _mscl.RTKNode_getActivationCode(self) - - def getStatusBitfieldVersion(self): - return _mscl.RTKNode_getStatusBitfieldVersion(self) - -# Register RTKNode in _mscl: -_mscl.RTKNode_swigregister(RTKNode) - -class ChannelData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelData___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelData___bool__(self) - - def __len__(self): - return _mscl.ChannelData___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelData___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelData___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelData___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelData___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelData___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelData___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelData_pop(self) - - def append(self, x): - return _mscl.ChannelData_append(self, x) - - def empty(self): - return _mscl.ChannelData_empty(self) - - def size(self): - return _mscl.ChannelData_size(self) - - def swap(self, v): - return _mscl.ChannelData_swap(self, v) - - def begin(self): - return _mscl.ChannelData_begin(self) - - def end(self): - return _mscl.ChannelData_end(self) - - def rbegin(self): - return _mscl.ChannelData_rbegin(self) - - def rend(self): - return _mscl.ChannelData_rend(self) - - def clear(self): - return _mscl.ChannelData_clear(self) - - def get_allocator(self): - return _mscl.ChannelData_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelData_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelData_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelData_swiginit(self, _mscl.new_ChannelData(*args)) - - def push_back(self, x): - return _mscl.ChannelData_push_back(self, x) - - def front(self): - return _mscl.ChannelData_front(self) - - def back(self): - return _mscl.ChannelData_back(self) - - def assign(self, n, x): - return _mscl.ChannelData_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelData_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelData_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelData_reserve(self, n) - - def capacity(self): - return _mscl.ChannelData_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelData - -# Register ChannelData in _mscl: -_mscl.ChannelData_swigregister(ChannelData) - -class MipDataPoints(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPoints_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPoints___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPoints___bool__(self) - - def __len__(self): - return _mscl.MipDataPoints___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPoints___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPoints___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPoints___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPoints___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPoints___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPoints___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPoints_pop(self) - - def append(self, x): - return _mscl.MipDataPoints_append(self, x) - - def empty(self): - return _mscl.MipDataPoints_empty(self) - - def size(self): - return _mscl.MipDataPoints_size(self) - - def swap(self, v): - return _mscl.MipDataPoints_swap(self, v) - - def begin(self): - return _mscl.MipDataPoints_begin(self) - - def end(self): - return _mscl.MipDataPoints_end(self) - - def rbegin(self): - return _mscl.MipDataPoints_rbegin(self) - - def rend(self): - return _mscl.MipDataPoints_rend(self) - - def clear(self): - return _mscl.MipDataPoints_clear(self) - - def get_allocator(self): - return _mscl.MipDataPoints_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPoints_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPoints_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPoints_swiginit(self, _mscl.new_MipDataPoints(*args)) - - def push_back(self, x): - return _mscl.MipDataPoints_push_back(self, x) - - def front(self): - return _mscl.MipDataPoints_front(self) - - def back(self): - return _mscl.MipDataPoints_back(self) - - def assign(self, n, x): - return _mscl.MipDataPoints_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPoints_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPoints_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPoints_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPoints_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPoints - -# Register MipDataPoints in _mscl: -_mscl.MipDataPoints_swigregister(MipDataPoints) - -class Bytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bytes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bytes___nonzero__(self) - - def __bool__(self): - return _mscl.Bytes___bool__(self) - - def __len__(self): - return _mscl.Bytes___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bytes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bytes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bytes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bytes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bytes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bytes___setitem__(self, *args) - - def pop(self): - return _mscl.Bytes_pop(self) - - def append(self, x): - return _mscl.Bytes_append(self, x) - - def empty(self): - return _mscl.Bytes_empty(self) - - def size(self): - return _mscl.Bytes_size(self) - - def swap(self, v): - return _mscl.Bytes_swap(self, v) - - def begin(self): - return _mscl.Bytes_begin(self) - - def end(self): - return _mscl.Bytes_end(self) - - def rbegin(self): - return _mscl.Bytes_rbegin(self) - - def rend(self): - return _mscl.Bytes_rend(self) - - def clear(self): - return _mscl.Bytes_clear(self) - - def get_allocator(self): - return _mscl.Bytes_get_allocator(self) - - def pop_back(self): - return _mscl.Bytes_pop_back(self) - - def erase(self, *args): - return _mscl.Bytes_erase(self, *args) - - def __init__(self, *args): - _mscl.Bytes_swiginit(self, _mscl.new_Bytes(*args)) - - def push_back(self, x): - return _mscl.Bytes_push_back(self, x) - - def front(self): - return _mscl.Bytes_front(self) - - def back(self): - return _mscl.Bytes_back(self) - - def assign(self, n, x): - return _mscl.Bytes_assign(self, n, x) - - def resize(self, *args): - return _mscl.Bytes_resize(self, *args) - - def insert(self, *args): - return _mscl.Bytes_insert(self, *args) - - def reserve(self, n): - return _mscl.Bytes_reserve(self, n) - - def capacity(self): - return _mscl.Bytes_capacity(self) - __swig_destroy__ = _mscl.delete_Bytes - -# Register Bytes in _mscl: -_mscl.Bytes_swigregister(Bytes) - -class BytesCollection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.BytesCollection_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.BytesCollection___nonzero__(self) - - def __bool__(self): - return _mscl.BytesCollection___bool__(self) - - def __len__(self): - return _mscl.BytesCollection___len__(self) - - def __getslice__(self, i, j): - return _mscl.BytesCollection___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.BytesCollection___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.BytesCollection___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.BytesCollection___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.BytesCollection___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.BytesCollection___setitem__(self, *args) - - def pop(self): - return _mscl.BytesCollection_pop(self) - - def append(self, x): - return _mscl.BytesCollection_append(self, x) - - def empty(self): - return _mscl.BytesCollection_empty(self) - - def size(self): - return _mscl.BytesCollection_size(self) - - def swap(self, v): - return _mscl.BytesCollection_swap(self, v) - - def begin(self): - return _mscl.BytesCollection_begin(self) - - def end(self): - return _mscl.BytesCollection_end(self) - - def rbegin(self): - return _mscl.BytesCollection_rbegin(self) - - def rend(self): - return _mscl.BytesCollection_rend(self) - - def clear(self): - return _mscl.BytesCollection_clear(self) - - def get_allocator(self): - return _mscl.BytesCollection_get_allocator(self) - - def pop_back(self): - return _mscl.BytesCollection_pop_back(self) - - def erase(self, *args): - return _mscl.BytesCollection_erase(self, *args) - - def __init__(self, *args): - _mscl.BytesCollection_swiginit(self, _mscl.new_BytesCollection(*args)) - - def push_back(self, x): - return _mscl.BytesCollection_push_back(self, x) - - def front(self): - return _mscl.BytesCollection_front(self) - - def back(self): - return _mscl.BytesCollection_back(self) - - def assign(self, n, x): - return _mscl.BytesCollection_assign(self, n, x) - - def resize(self, *args): - return _mscl.BytesCollection_resize(self, *args) - - def insert(self, *args): - return _mscl.BytesCollection_insert(self, *args) - - def reserve(self, n): - return _mscl.BytesCollection_reserve(self, n) - - def capacity(self): - return _mscl.BytesCollection_capacity(self) - __swig_destroy__ = _mscl.delete_BytesCollection - -# Register BytesCollection in _mscl: -_mscl.BytesCollection_swigregister(BytesCollection) - -class DeviceList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceList___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceList___bool__(self) - - def __len__(self): - return _mscl.DeviceList___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceList___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceList___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceList_has_key(self, key) - - def keys(self): - return _mscl.DeviceList_keys(self) - - def values(self): - return _mscl.DeviceList_values(self) - - def items(self): - return _mscl.DeviceList_items(self) - - def __contains__(self, key): - return _mscl.DeviceList___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceList_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceList_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceList___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceList_asdict(self) - - def __init__(self, *args): - _mscl.DeviceList_swiginit(self, _mscl.new_DeviceList(*args)) - - def empty(self): - return _mscl.DeviceList_empty(self) - - def size(self): - return _mscl.DeviceList_size(self) - - def swap(self, v): - return _mscl.DeviceList_swap(self, v) - - def begin(self): - return _mscl.DeviceList_begin(self) - - def end(self): - return _mscl.DeviceList_end(self) - - def rbegin(self): - return _mscl.DeviceList_rbegin(self) - - def rend(self): - return _mscl.DeviceList_rend(self) - - def clear(self): - return _mscl.DeviceList_clear(self) - - def get_allocator(self): - return _mscl.DeviceList_get_allocator(self) - - def count(self, x): - return _mscl.DeviceList_count(self, x) - - def erase(self, *args): - return _mscl.DeviceList_erase(self, *args) - - def find(self, x): - return _mscl.DeviceList_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceList_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceList_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceList - -# Register DeviceList in _mscl: -_mscl.DeviceList_swigregister(DeviceList) - -class NodeDiscoveries(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NodeDiscoveries_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NodeDiscoveries___nonzero__(self) - - def __bool__(self): - return _mscl.NodeDiscoveries___bool__(self) - - def __len__(self): - return _mscl.NodeDiscoveries___len__(self) - - def __getslice__(self, i, j): - return _mscl.NodeDiscoveries___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NodeDiscoveries___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NodeDiscoveries___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NodeDiscoveries___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NodeDiscoveries___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NodeDiscoveries___setitem__(self, *args) - - def pop(self): - return _mscl.NodeDiscoveries_pop(self) - - def append(self, x): - return _mscl.NodeDiscoveries_append(self, x) - - def empty(self): - return _mscl.NodeDiscoveries_empty(self) - - def size(self): - return _mscl.NodeDiscoveries_size(self) - - def swap(self, v): - return _mscl.NodeDiscoveries_swap(self, v) - - def begin(self): - return _mscl.NodeDiscoveries_begin(self) - - def end(self): - return _mscl.NodeDiscoveries_end(self) - - def rbegin(self): - return _mscl.NodeDiscoveries_rbegin(self) - - def rend(self): - return _mscl.NodeDiscoveries_rend(self) - - def clear(self): - return _mscl.NodeDiscoveries_clear(self) - - def get_allocator(self): - return _mscl.NodeDiscoveries_get_allocator(self) - - def pop_back(self): - return _mscl.NodeDiscoveries_pop_back(self) - - def erase(self, *args): - return _mscl.NodeDiscoveries_erase(self, *args) - - def __init__(self, *args): - _mscl.NodeDiscoveries_swiginit(self, _mscl.new_NodeDiscoveries(*args)) - - def push_back(self, x): - return _mscl.NodeDiscoveries_push_back(self, x) - - def front(self): - return _mscl.NodeDiscoveries_front(self) - - def back(self): - return _mscl.NodeDiscoveries_back(self) - - def assign(self, n, x): - return _mscl.NodeDiscoveries_assign(self, n, x) - - def resize(self, *args): - return _mscl.NodeDiscoveries_resize(self, *args) - - def insert(self, *args): - return _mscl.NodeDiscoveries_insert(self, *args) - - def reserve(self, n): - return _mscl.NodeDiscoveries_reserve(self, n) - - def capacity(self): - return _mscl.NodeDiscoveries_capacity(self) - __swig_destroy__ = _mscl.delete_NodeDiscoveries - -# Register NodeDiscoveries in _mscl: -_mscl.NodeDiscoveries_swigregister(NodeDiscoveries) - -class DataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.DataSweeps___bool__(self) - - def __len__(self): - return _mscl.DataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.DataSweeps_pop(self) - - def append(self, x): - return _mscl.DataSweeps_append(self, x) - - def empty(self): - return _mscl.DataSweeps_empty(self) - - def size(self): - return _mscl.DataSweeps_size(self) - - def swap(self, v): - return _mscl.DataSweeps_swap(self, v) - - def begin(self): - return _mscl.DataSweeps_begin(self) - - def end(self): - return _mscl.DataSweeps_end(self) - - def rbegin(self): - return _mscl.DataSweeps_rbegin(self) - - def rend(self): - return _mscl.DataSweeps_rend(self) - - def clear(self): - return _mscl.DataSweeps_clear(self) - - def get_allocator(self): - return _mscl.DataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.DataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.DataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.DataSweeps_swiginit(self, _mscl.new_DataSweeps(*args)) - - def push_back(self, x): - return _mscl.DataSweeps_push_back(self, x) - - def front(self): - return _mscl.DataSweeps_front(self) - - def back(self): - return _mscl.DataSweeps_back(self) - - def assign(self, n, x): - return _mscl.DataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.DataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.DataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.DataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_DataSweeps - -# Register DataSweeps in _mscl: -_mscl.DataSweeps_swigregister(DataSweeps) - -class LoggedDataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LoggedDataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LoggedDataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.LoggedDataSweeps___bool__(self) - - def __len__(self): - return _mscl.LoggedDataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.LoggedDataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LoggedDataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LoggedDataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LoggedDataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LoggedDataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LoggedDataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.LoggedDataSweeps_pop(self) - - def append(self, x): - return _mscl.LoggedDataSweeps_append(self, x) - - def empty(self): - return _mscl.LoggedDataSweeps_empty(self) - - def size(self): - return _mscl.LoggedDataSweeps_size(self) - - def swap(self, v): - return _mscl.LoggedDataSweeps_swap(self, v) - - def begin(self): - return _mscl.LoggedDataSweeps_begin(self) - - def end(self): - return _mscl.LoggedDataSweeps_end(self) - - def rbegin(self): - return _mscl.LoggedDataSweeps_rbegin(self) - - def rend(self): - return _mscl.LoggedDataSweeps_rend(self) - - def clear(self): - return _mscl.LoggedDataSweeps_clear(self) - - def get_allocator(self): - return _mscl.LoggedDataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.LoggedDataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.LoggedDataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.LoggedDataSweeps_swiginit(self, _mscl.new_LoggedDataSweeps(*args)) - - def push_back(self, x): - return _mscl.LoggedDataSweeps_push_back(self, x) - - def front(self): - return _mscl.LoggedDataSweeps_front(self) - - def back(self): - return _mscl.LoggedDataSweeps_back(self) - - def assign(self, n, x): - return _mscl.LoggedDataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.LoggedDataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.LoggedDataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.LoggedDataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.LoggedDataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweeps - -# Register LoggedDataSweeps in _mscl: -_mscl.LoggedDataSweeps_swigregister(LoggedDataSweeps) - -class MipDataPackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPackets___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPackets___bool__(self) - - def __len__(self): - return _mscl.MipDataPackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPackets___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPackets_pop(self) - - def append(self, x): - return _mscl.MipDataPackets_append(self, x) - - def empty(self): - return _mscl.MipDataPackets_empty(self) - - def size(self): - return _mscl.MipDataPackets_size(self) - - def swap(self, v): - return _mscl.MipDataPackets_swap(self, v) - - def begin(self): - return _mscl.MipDataPackets_begin(self) - - def end(self): - return _mscl.MipDataPackets_end(self) - - def rbegin(self): - return _mscl.MipDataPackets_rbegin(self) - - def rend(self): - return _mscl.MipDataPackets_rend(self) - - def clear(self): - return _mscl.MipDataPackets_clear(self) - - def get_allocator(self): - return _mscl.MipDataPackets_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPackets_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPackets_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPackets_swiginit(self, _mscl.new_MipDataPackets(*args)) - - def push_back(self, x): - return _mscl.MipDataPackets_push_back(self, x) - - def front(self): - return _mscl.MipDataPackets_front(self) - - def back(self): - return _mscl.MipDataPackets_back(self) - - def assign(self, n, x): - return _mscl.MipDataPackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPackets_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPackets_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPackets_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPackets_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPackets - -# Register MipDataPackets in _mscl: -_mscl.MipDataPackets_swigregister(MipDataPackets) - -class RawBytePackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RawBytePackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RawBytePackets___nonzero__(self) - - def __bool__(self): - return _mscl.RawBytePackets___bool__(self) - - def __len__(self): - return _mscl.RawBytePackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.RawBytePackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.RawBytePackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.RawBytePackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.RawBytePackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.RawBytePackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.RawBytePackets___setitem__(self, *args) - - def pop(self): - return _mscl.RawBytePackets_pop(self) - - def append(self, x): - return _mscl.RawBytePackets_append(self, x) - - def empty(self): - return _mscl.RawBytePackets_empty(self) - - def size(self): - return _mscl.RawBytePackets_size(self) - - def swap(self, v): - return _mscl.RawBytePackets_swap(self, v) - - def begin(self): - return _mscl.RawBytePackets_begin(self) - - def end(self): - return _mscl.RawBytePackets_end(self) - - def rbegin(self): - return _mscl.RawBytePackets_rbegin(self) - - def rend(self): - return _mscl.RawBytePackets_rend(self) - - def clear(self): - return _mscl.RawBytePackets_clear(self) - - def get_allocator(self): - return _mscl.RawBytePackets_get_allocator(self) - - def pop_back(self): - return _mscl.RawBytePackets_pop_back(self) - - def erase(self, *args): - return _mscl.RawBytePackets_erase(self, *args) - - def __init__(self, *args): - _mscl.RawBytePackets_swiginit(self, _mscl.new_RawBytePackets(*args)) - - def push_back(self, x): - return _mscl.RawBytePackets_push_back(self, x) - - def front(self): - return _mscl.RawBytePackets_front(self) - - def back(self): - return _mscl.RawBytePackets_back(self) - - def assign(self, n, x): - return _mscl.RawBytePackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.RawBytePackets_resize(self, *args) - - def insert(self, *args): - return _mscl.RawBytePackets_insert(self, *args) - - def reserve(self, n): - return _mscl.RawBytePackets_reserve(self, n) - - def capacity(self): - return _mscl.RawBytePackets_capacity(self) - __swig_destroy__ = _mscl.delete_RawBytePackets - -# Register RawBytePackets in _mscl: -_mscl.RawBytePackets_swigregister(RawBytePackets) - -class MipChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannels___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannels___bool__(self) - - def __len__(self): - return _mscl.MipChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannels___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannels_pop(self) - - def append(self, x): - return _mscl.MipChannels_append(self, x) - - def empty(self): - return _mscl.MipChannels_empty(self) - - def size(self): - return _mscl.MipChannels_size(self) - - def swap(self, v): - return _mscl.MipChannels_swap(self, v) - - def begin(self): - return _mscl.MipChannels_begin(self) - - def end(self): - return _mscl.MipChannels_end(self) - - def rbegin(self): - return _mscl.MipChannels_rbegin(self) - - def rend(self): - return _mscl.MipChannels_rend(self) - - def clear(self): - return _mscl.MipChannels_clear(self) - - def get_allocator(self): - return _mscl.MipChannels_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannels_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannels_swiginit(self, _mscl.new_MipChannels(*args)) - - def push_back(self, x): - return _mscl.MipChannels_push_back(self, x) - - def front(self): - return _mscl.MipChannels_front(self) - - def back(self): - return _mscl.MipChannels_back(self) - - def assign(self, n, x): - return _mscl.MipChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannels_reserve(self, n) - - def capacity(self): - return _mscl.MipChannels_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannels - -# Register MipChannels in _mscl: -_mscl.MipChannels_swigregister(MipChannels) - -class DataCollectionMethods(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataCollectionMethods_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataCollectionMethods___nonzero__(self) - - def __bool__(self): - return _mscl.DataCollectionMethods___bool__(self) - - def __len__(self): - return _mscl.DataCollectionMethods___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataCollectionMethods___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataCollectionMethods___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataCollectionMethods___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataCollectionMethods___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataCollectionMethods___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataCollectionMethods___setitem__(self, *args) - - def pop(self): - return _mscl.DataCollectionMethods_pop(self) - - def append(self, x): - return _mscl.DataCollectionMethods_append(self, x) - - def empty(self): - return _mscl.DataCollectionMethods_empty(self) - - def size(self): - return _mscl.DataCollectionMethods_size(self) - - def swap(self, v): - return _mscl.DataCollectionMethods_swap(self, v) - - def begin(self): - return _mscl.DataCollectionMethods_begin(self) - - def end(self): - return _mscl.DataCollectionMethods_end(self) - - def rbegin(self): - return _mscl.DataCollectionMethods_rbegin(self) - - def rend(self): - return _mscl.DataCollectionMethods_rend(self) - - def clear(self): - return _mscl.DataCollectionMethods_clear(self) - - def get_allocator(self): - return _mscl.DataCollectionMethods_get_allocator(self) - - def pop_back(self): - return _mscl.DataCollectionMethods_pop_back(self) - - def erase(self, *args): - return _mscl.DataCollectionMethods_erase(self, *args) - - def __init__(self, *args): - _mscl.DataCollectionMethods_swiginit(self, _mscl.new_DataCollectionMethods(*args)) - - def push_back(self, x): - return _mscl.DataCollectionMethods_push_back(self, x) - - def front(self): - return _mscl.DataCollectionMethods_front(self) - - def back(self): - return _mscl.DataCollectionMethods_back(self) - - def assign(self, n, x): - return _mscl.DataCollectionMethods_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataCollectionMethods_resize(self, *args) - - def insert(self, *args): - return _mscl.DataCollectionMethods_insert(self, *args) - - def reserve(self, n): - return _mscl.DataCollectionMethods_reserve(self, n) - - def capacity(self): - return _mscl.DataCollectionMethods_capacity(self) - __swig_destroy__ = _mscl.delete_DataCollectionMethods - -# Register DataCollectionMethods in _mscl: -_mscl.DataCollectionMethods_swigregister(DataCollectionMethods) - -class DataFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataFormats___nonzero__(self) - - def __bool__(self): - return _mscl.DataFormats___bool__(self) - - def __len__(self): - return _mscl.DataFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataFormats___setitem__(self, *args) - - def pop(self): - return _mscl.DataFormats_pop(self) - - def append(self, x): - return _mscl.DataFormats_append(self, x) - - def empty(self): - return _mscl.DataFormats_empty(self) - - def size(self): - return _mscl.DataFormats_size(self) - - def swap(self, v): - return _mscl.DataFormats_swap(self, v) - - def begin(self): - return _mscl.DataFormats_begin(self) - - def end(self): - return _mscl.DataFormats_end(self) - - def rbegin(self): - return _mscl.DataFormats_rbegin(self) - - def rend(self): - return _mscl.DataFormats_rend(self) - - def clear(self): - return _mscl.DataFormats_clear(self) - - def get_allocator(self): - return _mscl.DataFormats_get_allocator(self) - - def pop_back(self): - return _mscl.DataFormats_pop_back(self) - - def erase(self, *args): - return _mscl.DataFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.DataFormats_swiginit(self, _mscl.new_DataFormats(*args)) - - def push_back(self, x): - return _mscl.DataFormats_push_back(self, x) - - def front(self): - return _mscl.DataFormats_front(self) - - def back(self): - return _mscl.DataFormats_back(self) - - def assign(self, n, x): - return _mscl.DataFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.DataFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.DataFormats_reserve(self, n) - - def capacity(self): - return _mscl.DataFormats_capacity(self) - __swig_destroy__ = _mscl.delete_DataFormats - -# Register DataFormats in _mscl: -_mscl.DataFormats_swigregister(DataFormats) - -class WirelessSampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessSampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessSampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessSampleRates___bool__(self) - - def __len__(self): - return _mscl.WirelessSampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessSampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessSampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessSampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessSampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessSampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessSampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessSampleRates_pop(self) - - def append(self, x): - return _mscl.WirelessSampleRates_append(self, x) - - def empty(self): - return _mscl.WirelessSampleRates_empty(self) - - def size(self): - return _mscl.WirelessSampleRates_size(self) - - def swap(self, v): - return _mscl.WirelessSampleRates_swap(self, v) - - def begin(self): - return _mscl.WirelessSampleRates_begin(self) - - def end(self): - return _mscl.WirelessSampleRates_end(self) - - def rbegin(self): - return _mscl.WirelessSampleRates_rbegin(self) - - def rend(self): - return _mscl.WirelessSampleRates_rend(self) - - def clear(self): - return _mscl.WirelessSampleRates_clear(self) - - def get_allocator(self): - return _mscl.WirelessSampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessSampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessSampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessSampleRates_swiginit(self, _mscl.new_WirelessSampleRates(*args)) - - def push_back(self, x): - return _mscl.WirelessSampleRates_push_back(self, x) - - def front(self): - return _mscl.WirelessSampleRates_front(self) - - def back(self): - return _mscl.WirelessSampleRates_back(self) - - def assign(self, n, x): - return _mscl.WirelessSampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessSampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessSampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessSampleRates_reserve(self, n) - - def capacity(self): - return _mscl.WirelessSampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessSampleRates - -# Register WirelessSampleRates in _mscl: -_mscl.WirelessSampleRates_swigregister(WirelessSampleRates) - -class SamplingModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SamplingModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SamplingModes___nonzero__(self) - - def __bool__(self): - return _mscl.SamplingModes___bool__(self) - - def __len__(self): - return _mscl.SamplingModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SamplingModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SamplingModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SamplingModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SamplingModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SamplingModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SamplingModes___setitem__(self, *args) - - def pop(self): - return _mscl.SamplingModes_pop(self) - - def append(self, x): - return _mscl.SamplingModes_append(self, x) - - def empty(self): - return _mscl.SamplingModes_empty(self) - - def size(self): - return _mscl.SamplingModes_size(self) - - def swap(self, v): - return _mscl.SamplingModes_swap(self, v) - - def begin(self): - return _mscl.SamplingModes_begin(self) - - def end(self): - return _mscl.SamplingModes_end(self) - - def rbegin(self): - return _mscl.SamplingModes_rbegin(self) - - def rend(self): - return _mscl.SamplingModes_rend(self) - - def clear(self): - return _mscl.SamplingModes_clear(self) - - def get_allocator(self): - return _mscl.SamplingModes_get_allocator(self) - - def pop_back(self): - return _mscl.SamplingModes_pop_back(self) - - def erase(self, *args): - return _mscl.SamplingModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SamplingModes_swiginit(self, _mscl.new_SamplingModes(*args)) - - def push_back(self, x): - return _mscl.SamplingModes_push_back(self, x) - - def front(self): - return _mscl.SamplingModes_front(self) - - def back(self): - return _mscl.SamplingModes_back(self) - - def assign(self, n, x): - return _mscl.SamplingModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SamplingModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SamplingModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SamplingModes_reserve(self, n) - - def capacity(self): - return _mscl.SamplingModes_capacity(self) - __swig_destroy__ = _mscl.delete_SamplingModes - -# Register SamplingModes in _mscl: -_mscl.SamplingModes_swigregister(SamplingModes) - -class DefaultModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DefaultModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DefaultModes___nonzero__(self) - - def __bool__(self): - return _mscl.DefaultModes___bool__(self) - - def __len__(self): - return _mscl.DefaultModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DefaultModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DefaultModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DefaultModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DefaultModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DefaultModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DefaultModes___setitem__(self, *args) - - def pop(self): - return _mscl.DefaultModes_pop(self) - - def append(self, x): - return _mscl.DefaultModes_append(self, x) - - def empty(self): - return _mscl.DefaultModes_empty(self) - - def size(self): - return _mscl.DefaultModes_size(self) - - def swap(self, v): - return _mscl.DefaultModes_swap(self, v) - - def begin(self): - return _mscl.DefaultModes_begin(self) - - def end(self): - return _mscl.DefaultModes_end(self) - - def rbegin(self): - return _mscl.DefaultModes_rbegin(self) - - def rend(self): - return _mscl.DefaultModes_rend(self) - - def clear(self): - return _mscl.DefaultModes_clear(self) - - def get_allocator(self): - return _mscl.DefaultModes_get_allocator(self) - - def pop_back(self): - return _mscl.DefaultModes_pop_back(self) - - def erase(self, *args): - return _mscl.DefaultModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DefaultModes_swiginit(self, _mscl.new_DefaultModes(*args)) - - def push_back(self, x): - return _mscl.DefaultModes_push_back(self, x) - - def front(self): - return _mscl.DefaultModes_front(self) - - def back(self): - return _mscl.DefaultModes_back(self) - - def assign(self, n, x): - return _mscl.DefaultModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DefaultModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DefaultModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DefaultModes_reserve(self, n) - - def capacity(self): - return _mscl.DefaultModes_capacity(self) - __swig_destroy__ = _mscl.delete_DefaultModes - -# Register DefaultModes in _mscl: -_mscl.DefaultModes_swigregister(DefaultModes) - -class TransmitPowers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransmitPowers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransmitPowers___nonzero__(self) - - def __bool__(self): - return _mscl.TransmitPowers___bool__(self) - - def __len__(self): - return _mscl.TransmitPowers___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransmitPowers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransmitPowers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransmitPowers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransmitPowers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransmitPowers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransmitPowers___setitem__(self, *args) - - def pop(self): - return _mscl.TransmitPowers_pop(self) - - def append(self, x): - return _mscl.TransmitPowers_append(self, x) - - def empty(self): - return _mscl.TransmitPowers_empty(self) - - def size(self): - return _mscl.TransmitPowers_size(self) - - def swap(self, v): - return _mscl.TransmitPowers_swap(self, v) - - def begin(self): - return _mscl.TransmitPowers_begin(self) - - def end(self): - return _mscl.TransmitPowers_end(self) - - def rbegin(self): - return _mscl.TransmitPowers_rbegin(self) - - def rend(self): - return _mscl.TransmitPowers_rend(self) - - def clear(self): - return _mscl.TransmitPowers_clear(self) - - def get_allocator(self): - return _mscl.TransmitPowers_get_allocator(self) - - def pop_back(self): - return _mscl.TransmitPowers_pop_back(self) - - def erase(self, *args): - return _mscl.TransmitPowers_erase(self, *args) - - def __init__(self, *args): - _mscl.TransmitPowers_swiginit(self, _mscl.new_TransmitPowers(*args)) - - def push_back(self, x): - return _mscl.TransmitPowers_push_back(self, x) - - def front(self): - return _mscl.TransmitPowers_front(self) - - def back(self): - return _mscl.TransmitPowers_back(self) - - def assign(self, n, x): - return _mscl.TransmitPowers_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransmitPowers_resize(self, *args) - - def insert(self, *args): - return _mscl.TransmitPowers_insert(self, *args) - - def reserve(self, n): - return _mscl.TransmitPowers_reserve(self, n) - - def capacity(self): - return _mscl.TransmitPowers_capacity(self) - __swig_destroy__ = _mscl.delete_TransmitPowers - -# Register TransmitPowers in _mscl: -_mscl.TransmitPowers_swigregister(TransmitPowers) - -class ChannelGroupSettings(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroupSettings_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroupSettings___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroupSettings___bool__(self) - - def __len__(self): - return _mscl.ChannelGroupSettings___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroupSettings___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroupSettings___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroupSettings___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroupSettings___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroupSettings___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroupSettings___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroupSettings_pop(self) - - def append(self, x): - return _mscl.ChannelGroupSettings_append(self, x) - - def empty(self): - return _mscl.ChannelGroupSettings_empty(self) - - def size(self): - return _mscl.ChannelGroupSettings_size(self) - - def swap(self, v): - return _mscl.ChannelGroupSettings_swap(self, v) - - def begin(self): - return _mscl.ChannelGroupSettings_begin(self) - - def end(self): - return _mscl.ChannelGroupSettings_end(self) - - def rbegin(self): - return _mscl.ChannelGroupSettings_rbegin(self) - - def rend(self): - return _mscl.ChannelGroupSettings_rend(self) - - def clear(self): - return _mscl.ChannelGroupSettings_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroupSettings_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroupSettings_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroupSettings_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroupSettings_swiginit(self, _mscl.new_ChannelGroupSettings(*args)) - - def push_back(self, x): - return _mscl.ChannelGroupSettings_push_back(self, x) - - def front(self): - return _mscl.ChannelGroupSettings_front(self) - - def back(self): - return _mscl.ChannelGroupSettings_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroupSettings_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroupSettings_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroupSettings_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroupSettings_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroupSettings_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroupSettings - -# Register ChannelGroupSettings in _mscl: -_mscl.ChannelGroupSettings_swigregister(ChannelGroupSettings) - -class FatigueModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.FatigueModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.FatigueModes___nonzero__(self) - - def __bool__(self): - return _mscl.FatigueModes___bool__(self) - - def __len__(self): - return _mscl.FatigueModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.FatigueModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.FatigueModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.FatigueModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.FatigueModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.FatigueModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.FatigueModes___setitem__(self, *args) - - def pop(self): - return _mscl.FatigueModes_pop(self) - - def append(self, x): - return _mscl.FatigueModes_append(self, x) - - def empty(self): - return _mscl.FatigueModes_empty(self) - - def size(self): - return _mscl.FatigueModes_size(self) - - def swap(self, v): - return _mscl.FatigueModes_swap(self, v) - - def begin(self): - return _mscl.FatigueModes_begin(self) - - def end(self): - return _mscl.FatigueModes_end(self) - - def rbegin(self): - return _mscl.FatigueModes_rbegin(self) - - def rend(self): - return _mscl.FatigueModes_rend(self) - - def clear(self): - return _mscl.FatigueModes_clear(self) - - def get_allocator(self): - return _mscl.FatigueModes_get_allocator(self) - - def pop_back(self): - return _mscl.FatigueModes_pop_back(self) - - def erase(self, *args): - return _mscl.FatigueModes_erase(self, *args) - - def __init__(self, *args): - _mscl.FatigueModes_swiginit(self, _mscl.new_FatigueModes(*args)) - - def push_back(self, x): - return _mscl.FatigueModes_push_back(self, x) - - def front(self): - return _mscl.FatigueModes_front(self) - - def back(self): - return _mscl.FatigueModes_back(self) - - def assign(self, n, x): - return _mscl.FatigueModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.FatigueModes_resize(self, *args) - - def insert(self, *args): - return _mscl.FatigueModes_insert(self, *args) - - def reserve(self, n): - return _mscl.FatigueModes_reserve(self, n) - - def capacity(self): - return _mscl.FatigueModes_capacity(self) - __swig_destroy__ = _mscl.delete_FatigueModes - -# Register FatigueModes in _mscl: -_mscl.FatigueModes_swigregister(FatigueModes) - -class Filters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Filters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Filters___nonzero__(self) - - def __bool__(self): - return _mscl.Filters___bool__(self) - - def __len__(self): - return _mscl.Filters___len__(self) - - def __getslice__(self, i, j): - return _mscl.Filters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Filters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Filters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Filters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Filters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Filters___setitem__(self, *args) - - def pop(self): - return _mscl.Filters_pop(self) - - def append(self, x): - return _mscl.Filters_append(self, x) - - def empty(self): - return _mscl.Filters_empty(self) - - def size(self): - return _mscl.Filters_size(self) - - def swap(self, v): - return _mscl.Filters_swap(self, v) - - def begin(self): - return _mscl.Filters_begin(self) - - def end(self): - return _mscl.Filters_end(self) - - def rbegin(self): - return _mscl.Filters_rbegin(self) - - def rend(self): - return _mscl.Filters_rend(self) - - def clear(self): - return _mscl.Filters_clear(self) - - def get_allocator(self): - return _mscl.Filters_get_allocator(self) - - def pop_back(self): - return _mscl.Filters_pop_back(self) - - def erase(self, *args): - return _mscl.Filters_erase(self, *args) - - def __init__(self, *args): - _mscl.Filters_swiginit(self, _mscl.new_Filters(*args)) - - def push_back(self, x): - return _mscl.Filters_push_back(self, x) - - def front(self): - return _mscl.Filters_front(self) - - def back(self): - return _mscl.Filters_back(self) - - def assign(self, n, x): - return _mscl.Filters_assign(self, n, x) - - def resize(self, *args): - return _mscl.Filters_resize(self, *args) - - def insert(self, *args): - return _mscl.Filters_insert(self, *args) - - def reserve(self, n): - return _mscl.Filters_reserve(self, n) - - def capacity(self): - return _mscl.Filters_capacity(self) - __swig_destroy__ = _mscl.delete_Filters - -# Register Filters in _mscl: -_mscl.Filters_swigregister(Filters) - -class HighPassFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HighPassFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HighPassFilters___nonzero__(self) - - def __bool__(self): - return _mscl.HighPassFilters___bool__(self) - - def __len__(self): - return _mscl.HighPassFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.HighPassFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HighPassFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HighPassFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HighPassFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HighPassFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HighPassFilters___setitem__(self, *args) - - def pop(self): - return _mscl.HighPassFilters_pop(self) - - def append(self, x): - return _mscl.HighPassFilters_append(self, x) - - def empty(self): - return _mscl.HighPassFilters_empty(self) - - def size(self): - return _mscl.HighPassFilters_size(self) - - def swap(self, v): - return _mscl.HighPassFilters_swap(self, v) - - def begin(self): - return _mscl.HighPassFilters_begin(self) - - def end(self): - return _mscl.HighPassFilters_end(self) - - def rbegin(self): - return _mscl.HighPassFilters_rbegin(self) - - def rend(self): - return _mscl.HighPassFilters_rend(self) - - def clear(self): - return _mscl.HighPassFilters_clear(self) - - def get_allocator(self): - return _mscl.HighPassFilters_get_allocator(self) - - def pop_back(self): - return _mscl.HighPassFilters_pop_back(self) - - def erase(self, *args): - return _mscl.HighPassFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.HighPassFilters_swiginit(self, _mscl.new_HighPassFilters(*args)) - - def push_back(self, x): - return _mscl.HighPassFilters_push_back(self, x) - - def front(self): - return _mscl.HighPassFilters_front(self) - - def back(self): - return _mscl.HighPassFilters_back(self) - - def assign(self, n, x): - return _mscl.HighPassFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.HighPassFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.HighPassFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.HighPassFilters_reserve(self, n) - - def capacity(self): - return _mscl.HighPassFilters_capacity(self) - __swig_destroy__ = _mscl.delete_HighPassFilters - -# Register HighPassFilters in _mscl: -_mscl.HighPassFilters_swigregister(HighPassFilters) - -class StorageLimitModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StorageLimitModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StorageLimitModes___nonzero__(self) - - def __bool__(self): - return _mscl.StorageLimitModes___bool__(self) - - def __len__(self): - return _mscl.StorageLimitModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.StorageLimitModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StorageLimitModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StorageLimitModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StorageLimitModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StorageLimitModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StorageLimitModes___setitem__(self, *args) - - def pop(self): - return _mscl.StorageLimitModes_pop(self) - - def append(self, x): - return _mscl.StorageLimitModes_append(self, x) - - def empty(self): - return _mscl.StorageLimitModes_empty(self) - - def size(self): - return _mscl.StorageLimitModes_size(self) - - def swap(self, v): - return _mscl.StorageLimitModes_swap(self, v) - - def begin(self): - return _mscl.StorageLimitModes_begin(self) - - def end(self): - return _mscl.StorageLimitModes_end(self) - - def rbegin(self): - return _mscl.StorageLimitModes_rbegin(self) - - def rend(self): - return _mscl.StorageLimitModes_rend(self) - - def clear(self): - return _mscl.StorageLimitModes_clear(self) - - def get_allocator(self): - return _mscl.StorageLimitModes_get_allocator(self) - - def pop_back(self): - return _mscl.StorageLimitModes_pop_back(self) - - def erase(self, *args): - return _mscl.StorageLimitModes_erase(self, *args) - - def __init__(self, *args): - _mscl.StorageLimitModes_swiginit(self, _mscl.new_StorageLimitModes(*args)) - - def push_back(self, x): - return _mscl.StorageLimitModes_push_back(self, x) - - def front(self): - return _mscl.StorageLimitModes_front(self) - - def back(self): - return _mscl.StorageLimitModes_back(self) - - def assign(self, n, x): - return _mscl.StorageLimitModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.StorageLimitModes_resize(self, *args) - - def insert(self, *args): - return _mscl.StorageLimitModes_insert(self, *args) - - def reserve(self, n): - return _mscl.StorageLimitModes_reserve(self, n) - - def capacity(self): - return _mscl.StorageLimitModes_capacity(self) - __swig_destroy__ = _mscl.delete_StorageLimitModes - -# Register StorageLimitModes in _mscl: -_mscl.StorageLimitModes_swigregister(StorageLimitModes) - -class InputRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.InputRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.InputRanges___nonzero__(self) - - def __bool__(self): - return _mscl.InputRanges___bool__(self) - - def __len__(self): - return _mscl.InputRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.InputRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.InputRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.InputRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.InputRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.InputRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.InputRanges___setitem__(self, *args) - - def pop(self): - return _mscl.InputRanges_pop(self) - - def append(self, x): - return _mscl.InputRanges_append(self, x) - - def empty(self): - return _mscl.InputRanges_empty(self) - - def size(self): - return _mscl.InputRanges_size(self) - - def swap(self, v): - return _mscl.InputRanges_swap(self, v) - - def begin(self): - return _mscl.InputRanges_begin(self) - - def end(self): - return _mscl.InputRanges_end(self) - - def rbegin(self): - return _mscl.InputRanges_rbegin(self) - - def rend(self): - return _mscl.InputRanges_rend(self) - - def clear(self): - return _mscl.InputRanges_clear(self) - - def get_allocator(self): - return _mscl.InputRanges_get_allocator(self) - - def pop_back(self): - return _mscl.InputRanges_pop_back(self) - - def erase(self, *args): - return _mscl.InputRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.InputRanges_swiginit(self, _mscl.new_InputRanges(*args)) - - def push_back(self, x): - return _mscl.InputRanges_push_back(self, x) - - def front(self): - return _mscl.InputRanges_front(self) - - def back(self): - return _mscl.InputRanges_back(self) - - def assign(self, n, x): - return _mscl.InputRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.InputRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.InputRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.InputRanges_reserve(self, n) - - def capacity(self): - return _mscl.InputRanges_capacity(self) - __swig_destroy__ = _mscl.delete_InputRanges - -# Register InputRanges in _mscl: -_mscl.InputRanges_swigregister(InputRanges) - -class DataModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataModes___nonzero__(self) - - def __bool__(self): - return _mscl.DataModes___bool__(self) - - def __len__(self): - return _mscl.DataModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataModes___setitem__(self, *args) - - def pop(self): - return _mscl.DataModes_pop(self) - - def append(self, x): - return _mscl.DataModes_append(self, x) - - def empty(self): - return _mscl.DataModes_empty(self) - - def size(self): - return _mscl.DataModes_size(self) - - def swap(self, v): - return _mscl.DataModes_swap(self, v) - - def begin(self): - return _mscl.DataModes_begin(self) - - def end(self): - return _mscl.DataModes_end(self) - - def rbegin(self): - return _mscl.DataModes_rbegin(self) - - def rend(self): - return _mscl.DataModes_rend(self) - - def clear(self): - return _mscl.DataModes_clear(self) - - def get_allocator(self): - return _mscl.DataModes_get_allocator(self) - - def pop_back(self): - return _mscl.DataModes_pop_back(self) - - def erase(self, *args): - return _mscl.DataModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DataModes_swiginit(self, _mscl.new_DataModes(*args)) - - def push_back(self, x): - return _mscl.DataModes_push_back(self, x) - - def front(self): - return _mscl.DataModes_front(self) - - def back(self): - return _mscl.DataModes_back(self) - - def assign(self, n, x): - return _mscl.DataModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DataModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DataModes_reserve(self, n) - - def capacity(self): - return _mscl.DataModes_capacity(self) - __swig_destroy__ = _mscl.delete_DataModes - -# Register DataModes in _mscl: -_mscl.DataModes_swigregister(DataModes) - -class CommProtocols(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommProtocols_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommProtocols___nonzero__(self) - - def __bool__(self): - return _mscl.CommProtocols___bool__(self) - - def __len__(self): - return _mscl.CommProtocols___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommProtocols___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommProtocols___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommProtocols___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommProtocols___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommProtocols___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommProtocols___setitem__(self, *args) - - def pop(self): - return _mscl.CommProtocols_pop(self) - - def append(self, x): - return _mscl.CommProtocols_append(self, x) - - def empty(self): - return _mscl.CommProtocols_empty(self) - - def size(self): - return _mscl.CommProtocols_size(self) - - def swap(self, v): - return _mscl.CommProtocols_swap(self, v) - - def begin(self): - return _mscl.CommProtocols_begin(self) - - def end(self): - return _mscl.CommProtocols_end(self) - - def rbegin(self): - return _mscl.CommProtocols_rbegin(self) - - def rend(self): - return _mscl.CommProtocols_rend(self) - - def clear(self): - return _mscl.CommProtocols_clear(self) - - def get_allocator(self): - return _mscl.CommProtocols_get_allocator(self) - - def pop_back(self): - return _mscl.CommProtocols_pop_back(self) - - def erase(self, *args): - return _mscl.CommProtocols_erase(self, *args) - - def __init__(self, *args): - _mscl.CommProtocols_swiginit(self, _mscl.new_CommProtocols(*args)) - - def push_back(self, x): - return _mscl.CommProtocols_push_back(self, x) - - def front(self): - return _mscl.CommProtocols_front(self) - - def back(self): - return _mscl.CommProtocols_back(self) - - def assign(self, n, x): - return _mscl.CommProtocols_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommProtocols_resize(self, *args) - - def insert(self, *args): - return _mscl.CommProtocols_insert(self, *args) - - def reserve(self, n): - return _mscl.CommProtocols_reserve(self, n) - - def capacity(self): - return _mscl.CommProtocols_capacity(self) - __swig_destroy__ = _mscl.delete_CommProtocols - -# Register CommProtocols in _mscl: -_mscl.CommProtocols_swigregister(CommProtocols) - -class Voltages(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Voltages_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Voltages___nonzero__(self) - - def __bool__(self): - return _mscl.Voltages___bool__(self) - - def __len__(self): - return _mscl.Voltages___len__(self) - - def __getslice__(self, i, j): - return _mscl.Voltages___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Voltages___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Voltages___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Voltages___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Voltages___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Voltages___setitem__(self, *args) - - def pop(self): - return _mscl.Voltages_pop(self) - - def append(self, x): - return _mscl.Voltages_append(self, x) - - def empty(self): - return _mscl.Voltages_empty(self) - - def size(self): - return _mscl.Voltages_size(self) - - def swap(self, v): - return _mscl.Voltages_swap(self, v) - - def begin(self): - return _mscl.Voltages_begin(self) - - def end(self): - return _mscl.Voltages_end(self) - - def rbegin(self): - return _mscl.Voltages_rbegin(self) - - def rend(self): - return _mscl.Voltages_rend(self) - - def clear(self): - return _mscl.Voltages_clear(self) - - def get_allocator(self): - return _mscl.Voltages_get_allocator(self) - - def pop_back(self): - return _mscl.Voltages_pop_back(self) - - def erase(self, *args): - return _mscl.Voltages_erase(self, *args) - - def __init__(self, *args): - _mscl.Voltages_swiginit(self, _mscl.new_Voltages(*args)) - - def push_back(self, x): - return _mscl.Voltages_push_back(self, x) - - def front(self): - return _mscl.Voltages_front(self) - - def back(self): - return _mscl.Voltages_back(self) - - def assign(self, n, x): - return _mscl.Voltages_assign(self, n, x) - - def resize(self, *args): - return _mscl.Voltages_resize(self, *args) - - def insert(self, *args): - return _mscl.Voltages_insert(self, *args) - - def reserve(self, n): - return _mscl.Voltages_reserve(self, n) - - def capacity(self): - return _mscl.Voltages_capacity(self) - __swig_destroy__ = _mscl.delete_Voltages - -# Register Voltages in _mscl: -_mscl.Voltages_swigregister(Voltages) - -class SensorOutputModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorOutputModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorOutputModes___nonzero__(self) - - def __bool__(self): - return _mscl.SensorOutputModes___bool__(self) - - def __len__(self): - return _mscl.SensorOutputModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorOutputModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorOutputModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorOutputModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorOutputModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorOutputModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorOutputModes___setitem__(self, *args) - - def pop(self): - return _mscl.SensorOutputModes_pop(self) - - def append(self, x): - return _mscl.SensorOutputModes_append(self, x) - - def empty(self): - return _mscl.SensorOutputModes_empty(self) - - def size(self): - return _mscl.SensorOutputModes_size(self) - - def swap(self, v): - return _mscl.SensorOutputModes_swap(self, v) - - def begin(self): - return _mscl.SensorOutputModes_begin(self) - - def end(self): - return _mscl.SensorOutputModes_end(self) - - def rbegin(self): - return _mscl.SensorOutputModes_rbegin(self) - - def rend(self): - return _mscl.SensorOutputModes_rend(self) - - def clear(self): - return _mscl.SensorOutputModes_clear(self) - - def get_allocator(self): - return _mscl.SensorOutputModes_get_allocator(self) - - def pop_back(self): - return _mscl.SensorOutputModes_pop_back(self) - - def erase(self, *args): - return _mscl.SensorOutputModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorOutputModes_swiginit(self, _mscl.new_SensorOutputModes(*args)) - - def push_back(self, x): - return _mscl.SensorOutputModes_push_back(self, x) - - def front(self): - return _mscl.SensorOutputModes_front(self) - - def back(self): - return _mscl.SensorOutputModes_back(self) - - def assign(self, n, x): - return _mscl.SensorOutputModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorOutputModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorOutputModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorOutputModes_reserve(self, n) - - def capacity(self): - return _mscl.SensorOutputModes_capacity(self) - __swig_destroy__ = _mscl.delete_SensorOutputModes - -# Register SensorOutputModes in _mscl: -_mscl.SensorOutputModes_swigregister(SensorOutputModes) - -class CfcFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CfcFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CfcFilters___nonzero__(self) - - def __bool__(self): - return _mscl.CfcFilters___bool__(self) - - def __len__(self): - return _mscl.CfcFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.CfcFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CfcFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CfcFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CfcFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CfcFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CfcFilters___setitem__(self, *args) - - def pop(self): - return _mscl.CfcFilters_pop(self) - - def append(self, x): - return _mscl.CfcFilters_append(self, x) - - def empty(self): - return _mscl.CfcFilters_empty(self) - - def size(self): - return _mscl.CfcFilters_size(self) - - def swap(self, v): - return _mscl.CfcFilters_swap(self, v) - - def begin(self): - return _mscl.CfcFilters_begin(self) - - def end(self): - return _mscl.CfcFilters_end(self) - - def rbegin(self): - return _mscl.CfcFilters_rbegin(self) - - def rend(self): - return _mscl.CfcFilters_rend(self) - - def clear(self): - return _mscl.CfcFilters_clear(self) - - def get_allocator(self): - return _mscl.CfcFilters_get_allocator(self) - - def pop_back(self): - return _mscl.CfcFilters_pop_back(self) - - def erase(self, *args): - return _mscl.CfcFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.CfcFilters_swiginit(self, _mscl.new_CfcFilters(*args)) - - def push_back(self, x): - return _mscl.CfcFilters_push_back(self, x) - - def front(self): - return _mscl.CfcFilters_front(self) - - def back(self): - return _mscl.CfcFilters_back(self) - - def assign(self, n, x): - return _mscl.CfcFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.CfcFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.CfcFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.CfcFilters_reserve(self, n) - - def capacity(self): - return _mscl.CfcFilters_capacity(self) - __swig_destroy__ = _mscl.delete_CfcFilters - -# Register CfcFilters in _mscl: -_mscl.CfcFilters_swigregister(CfcFilters) - -class TransducerTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransducerTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransducerTypes___nonzero__(self) - - def __bool__(self): - return _mscl.TransducerTypes___bool__(self) - - def __len__(self): - return _mscl.TransducerTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransducerTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransducerTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransducerTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransducerTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransducerTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransducerTypes___setitem__(self, *args) - - def pop(self): - return _mscl.TransducerTypes_pop(self) - - def append(self, x): - return _mscl.TransducerTypes_append(self, x) - - def empty(self): - return _mscl.TransducerTypes_empty(self) - - def size(self): - return _mscl.TransducerTypes_size(self) - - def swap(self, v): - return _mscl.TransducerTypes_swap(self, v) - - def begin(self): - return _mscl.TransducerTypes_begin(self) - - def end(self): - return _mscl.TransducerTypes_end(self) - - def rbegin(self): - return _mscl.TransducerTypes_rbegin(self) - - def rend(self): - return _mscl.TransducerTypes_rend(self) - - def clear(self): - return _mscl.TransducerTypes_clear(self) - - def get_allocator(self): - return _mscl.TransducerTypes_get_allocator(self) - - def pop_back(self): - return _mscl.TransducerTypes_pop_back(self) - - def erase(self, *args): - return _mscl.TransducerTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.TransducerTypes_swiginit(self, _mscl.new_TransducerTypes(*args)) - - def push_back(self, x): - return _mscl.TransducerTypes_push_back(self, x) - - def front(self): - return _mscl.TransducerTypes_front(self) - - def back(self): - return _mscl.TransducerTypes_back(self) - - def assign(self, n, x): - return _mscl.TransducerTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransducerTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.TransducerTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.TransducerTypes_reserve(self, n) - - def capacity(self): - return _mscl.TransducerTypes_capacity(self) - __swig_destroy__ = _mscl.delete_TransducerTypes - -# Register TransducerTypes in _mscl: -_mscl.TransducerTypes_swigregister(TransducerTypes) - -class EepromMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EepromMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EepromMap___nonzero__(self) - - def __bool__(self): - return _mscl.EepromMap___bool__(self) - - def __len__(self): - return _mscl.EepromMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.EepromMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.EepromMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.EepromMap_has_key(self, key) - - def keys(self): - return _mscl.EepromMap_keys(self) - - def values(self): - return _mscl.EepromMap_values(self) - - def items(self): - return _mscl.EepromMap_items(self) - - def __contains__(self, key): - return _mscl.EepromMap___contains__(self, key) - - def key_iterator(self): - return _mscl.EepromMap_key_iterator(self) - - def value_iterator(self): - return _mscl.EepromMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.EepromMap___setitem__(self, *args) - - def asdict(self): - return _mscl.EepromMap_asdict(self) - - def __init__(self, *args): - _mscl.EepromMap_swiginit(self, _mscl.new_EepromMap(*args)) - - def empty(self): - return _mscl.EepromMap_empty(self) - - def size(self): - return _mscl.EepromMap_size(self) - - def swap(self, v): - return _mscl.EepromMap_swap(self, v) - - def begin(self): - return _mscl.EepromMap_begin(self) - - def end(self): - return _mscl.EepromMap_end(self) - - def rbegin(self): - return _mscl.EepromMap_rbegin(self) - - def rend(self): - return _mscl.EepromMap_rend(self) - - def clear(self): - return _mscl.EepromMap_clear(self) - - def get_allocator(self): - return _mscl.EepromMap_get_allocator(self) - - def count(self, x): - return _mscl.EepromMap_count(self, x) - - def erase(self, *args): - return _mscl.EepromMap_erase(self, *args) - - def find(self, x): - return _mscl.EepromMap_find(self, x) - - def lower_bound(self, x): - return _mscl.EepromMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.EepromMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_EepromMap - -# Register EepromMap in _mscl: -_mscl.EepromMap_swigregister(EepromMap) - -class DerivedChannelMasks(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DerivedChannelMasks_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DerivedChannelMasks___nonzero__(self) - - def __bool__(self): - return _mscl.DerivedChannelMasks___bool__(self) - - def __len__(self): - return _mscl.DerivedChannelMasks___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DerivedChannelMasks___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DerivedChannelMasks___delitem__(self, key) - - def has_key(self, key): - return _mscl.DerivedChannelMasks_has_key(self, key) - - def keys(self): - return _mscl.DerivedChannelMasks_keys(self) - - def values(self): - return _mscl.DerivedChannelMasks_values(self) - - def items(self): - return _mscl.DerivedChannelMasks_items(self) - - def __contains__(self, key): - return _mscl.DerivedChannelMasks___contains__(self, key) - - def key_iterator(self): - return _mscl.DerivedChannelMasks_key_iterator(self) - - def value_iterator(self): - return _mscl.DerivedChannelMasks_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DerivedChannelMasks___setitem__(self, *args) - - def asdict(self): - return _mscl.DerivedChannelMasks_asdict(self) - - def __init__(self, *args): - _mscl.DerivedChannelMasks_swiginit(self, _mscl.new_DerivedChannelMasks(*args)) - - def empty(self): - return _mscl.DerivedChannelMasks_empty(self) - - def size(self): - return _mscl.DerivedChannelMasks_size(self) - - def swap(self, v): - return _mscl.DerivedChannelMasks_swap(self, v) - - def begin(self): - return _mscl.DerivedChannelMasks_begin(self) - - def end(self): - return _mscl.DerivedChannelMasks_end(self) - - def rbegin(self): - return _mscl.DerivedChannelMasks_rbegin(self) - - def rend(self): - return _mscl.DerivedChannelMasks_rend(self) - - def clear(self): - return _mscl.DerivedChannelMasks_clear(self) - - def get_allocator(self): - return _mscl.DerivedChannelMasks_get_allocator(self) - - def count(self, x): - return _mscl.DerivedChannelMasks_count(self, x) - - def erase(self, *args): - return _mscl.DerivedChannelMasks_erase(self, *args) - - def find(self, x): - return _mscl.DerivedChannelMasks_find(self, x) - - def lower_bound(self, x): - return _mscl.DerivedChannelMasks_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DerivedChannelMasks_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DerivedChannelMasks - -# Register DerivedChannelMasks in _mscl: -_mscl.DerivedChannelMasks_swigregister(DerivedChannelMasks) - -class DeviceStatusMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusMap_keys(self) - - def values(self): - return _mscl.DeviceStatusMap_values(self) - - def items(self): - return _mscl.DeviceStatusMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusMap_swiginit(self, _mscl.new_DeviceStatusMap(*args)) - - def empty(self): - return _mscl.DeviceStatusMap_empty(self) - - def size(self): - return _mscl.DeviceStatusMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusMap_begin(self) - - def end(self): - return _mscl.DeviceStatusMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusMap - -# Register DeviceStatusMap in _mscl: -_mscl.DeviceStatusMap_swigregister(DeviceStatusMap) - -class DeviceStatusValueMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusValueMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusValueMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusValueMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusValueMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusValueMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusValueMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusValueMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusValueMap_keys(self) - - def values(self): - return _mscl.DeviceStatusValueMap_values(self) - - def items(self): - return _mscl.DeviceStatusValueMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusValueMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusValueMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusValueMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusValueMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusValueMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusValueMap_swiginit(self, _mscl.new_DeviceStatusValueMap(*args)) - - def empty(self): - return _mscl.DeviceStatusValueMap_empty(self) - - def size(self): - return _mscl.DeviceStatusValueMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusValueMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusValueMap_begin(self) - - def end(self): - return _mscl.DeviceStatusValueMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusValueMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusValueMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusValueMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusValueMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusValueMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusValueMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusValueMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusValueMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusValueMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusValueMap - -# Register DeviceStatusValueMap in _mscl: -_mscl.DeviceStatusValueMap_swigregister(DeviceStatusValueMap) - -class SampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.SampleRates___bool__(self) - - def __len__(self): - return _mscl.SampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.SampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.SampleRates_pop(self) - - def append(self, x): - return _mscl.SampleRates_append(self, x) - - def empty(self): - return _mscl.SampleRates_empty(self) - - def size(self): - return _mscl.SampleRates_size(self) - - def swap(self, v): - return _mscl.SampleRates_swap(self, v) - - def begin(self): - return _mscl.SampleRates_begin(self) - - def end(self): - return _mscl.SampleRates_end(self) - - def rbegin(self): - return _mscl.SampleRates_rbegin(self) - - def rend(self): - return _mscl.SampleRates_rend(self) - - def clear(self): - return _mscl.SampleRates_clear(self) - - def get_allocator(self): - return _mscl.SampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.SampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.SampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.SampleRates_swiginit(self, _mscl.new_SampleRates(*args)) - - def push_back(self, x): - return _mscl.SampleRates_push_back(self, x) - - def front(self): - return _mscl.SampleRates_front(self) - - def back(self): - return _mscl.SampleRates_back(self) - - def assign(self, n, x): - return _mscl.SampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.SampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.SampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.SampleRates_reserve(self, n) - - def capacity(self): - return _mscl.SampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_SampleRates - -# Register SampleRates in _mscl: -_mscl.SampleRates_swigregister(SampleRates) - -class ConfigIssues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConfigIssues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConfigIssues___nonzero__(self) - - def __bool__(self): - return _mscl.ConfigIssues___bool__(self) - - def __len__(self): - return _mscl.ConfigIssues___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConfigIssues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConfigIssues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConfigIssues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConfigIssues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConfigIssues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConfigIssues___setitem__(self, *args) - - def pop(self): - return _mscl.ConfigIssues_pop(self) - - def append(self, x): - return _mscl.ConfigIssues_append(self, x) - - def empty(self): - return _mscl.ConfigIssues_empty(self) - - def size(self): - return _mscl.ConfigIssues_size(self) - - def swap(self, v): - return _mscl.ConfigIssues_swap(self, v) - - def begin(self): - return _mscl.ConfigIssues_begin(self) - - def end(self): - return _mscl.ConfigIssues_end(self) - - def rbegin(self): - return _mscl.ConfigIssues_rbegin(self) - - def rend(self): - return _mscl.ConfigIssues_rend(self) - - def clear(self): - return _mscl.ConfigIssues_clear(self) - - def get_allocator(self): - return _mscl.ConfigIssues_get_allocator(self) - - def pop_back(self): - return _mscl.ConfigIssues_pop_back(self) - - def erase(self, *args): - return _mscl.ConfigIssues_erase(self, *args) - - def __init__(self, *args): - _mscl.ConfigIssues_swiginit(self, _mscl.new_ConfigIssues(*args)) - - def push_back(self, x): - return _mscl.ConfigIssues_push_back(self, x) - - def front(self): - return _mscl.ConfigIssues_front(self) - - def back(self): - return _mscl.ConfigIssues_back(self) - - def assign(self, n, x): - return _mscl.ConfigIssues_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConfigIssues_resize(self, *args) - - def insert(self, *args): - return _mscl.ConfigIssues_insert(self, *args) - - def reserve(self, n): - return _mscl.ConfigIssues_reserve(self, n) - - def capacity(self): - return _mscl.ConfigIssues_capacity(self) - __swig_destroy__ = _mscl.delete_ConfigIssues - -# Register ConfigIssues in _mscl: -_mscl.ConfigIssues_swigregister(ConfigIssues) - -class MipChannelFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelFields_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelFields___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelFields___bool__(self) - - def __len__(self): - return _mscl.MipChannelFields___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelFields___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelFields___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelFields___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelFields___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelFields___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelFields___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelFields_pop(self) - - def append(self, x): - return _mscl.MipChannelFields_append(self, x) - - def empty(self): - return _mscl.MipChannelFields_empty(self) - - def size(self): - return _mscl.MipChannelFields_size(self) - - def swap(self, v): - return _mscl.MipChannelFields_swap(self, v) - - def begin(self): - return _mscl.MipChannelFields_begin(self) - - def end(self): - return _mscl.MipChannelFields_end(self) - - def rbegin(self): - return _mscl.MipChannelFields_rbegin(self) - - def rend(self): - return _mscl.MipChannelFields_rend(self) - - def clear(self): - return _mscl.MipChannelFields_clear(self) - - def get_allocator(self): - return _mscl.MipChannelFields_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelFields_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelFields_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelFields_swiginit(self, _mscl.new_MipChannelFields(*args)) - - def push_back(self, x): - return _mscl.MipChannelFields_push_back(self, x) - - def front(self): - return _mscl.MipChannelFields_front(self) - - def back(self): - return _mscl.MipChannelFields_back(self) - - def assign(self, n, x): - return _mscl.MipChannelFields_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelFields_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelFields_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelFields_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelFields_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelFields - -# Register MipChannelFields in _mscl: -_mscl.MipChannelFields_swigregister(MipChannelFields) - -class MipCommands(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommands_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommands___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommands___bool__(self) - - def __len__(self): - return _mscl.MipCommands___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommands___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommands___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommands___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommands___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommands___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommands___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommands_pop(self) - - def append(self, x): - return _mscl.MipCommands_append(self, x) - - def empty(self): - return _mscl.MipCommands_empty(self) - - def size(self): - return _mscl.MipCommands_size(self) - - def swap(self, v): - return _mscl.MipCommands_swap(self, v) - - def begin(self): - return _mscl.MipCommands_begin(self) - - def end(self): - return _mscl.MipCommands_end(self) - - def rbegin(self): - return _mscl.MipCommands_rbegin(self) - - def rend(self): - return _mscl.MipCommands_rend(self) - - def clear(self): - return _mscl.MipCommands_clear(self) - - def get_allocator(self): - return _mscl.MipCommands_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommands_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommands_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommands_swiginit(self, _mscl.new_MipCommands(*args)) - - def push_back(self, x): - return _mscl.MipCommands_push_back(self, x) - - def front(self): - return _mscl.MipCommands_front(self) - - def back(self): - return _mscl.MipCommands_back(self) - - def assign(self, n, x): - return _mscl.MipCommands_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommands_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommands_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommands_reserve(self, n) - - def capacity(self): - return _mscl.MipCommands_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommands - -# Register MipCommands in _mscl: -_mscl.MipCommands_swigregister(MipCommands) - -class MipDataClasses(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataClasses_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataClasses___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataClasses___bool__(self) - - def __len__(self): - return _mscl.MipDataClasses___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataClasses___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataClasses___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataClasses___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataClasses___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataClasses___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataClasses___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataClasses_pop(self) - - def append(self, x): - return _mscl.MipDataClasses_append(self, x) - - def empty(self): - return _mscl.MipDataClasses_empty(self) - - def size(self): - return _mscl.MipDataClasses_size(self) - - def swap(self, v): - return _mscl.MipDataClasses_swap(self, v) - - def begin(self): - return _mscl.MipDataClasses_begin(self) - - def end(self): - return _mscl.MipDataClasses_end(self) - - def rbegin(self): - return _mscl.MipDataClasses_rbegin(self) - - def rend(self): - return _mscl.MipDataClasses_rend(self) - - def clear(self): - return _mscl.MipDataClasses_clear(self) - - def get_allocator(self): - return _mscl.MipDataClasses_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataClasses_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataClasses_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataClasses_swiginit(self, _mscl.new_MipDataClasses(*args)) - - def push_back(self, x): - return _mscl.MipDataClasses_push_back(self, x) - - def front(self): - return _mscl.MipDataClasses_front(self) - - def back(self): - return _mscl.MipDataClasses_back(self) - - def assign(self, n, x): - return _mscl.MipDataClasses_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataClasses_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataClasses_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataClasses_reserve(self, n) - - def capacity(self): - return _mscl.MipDataClasses_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataClasses - -# Register MipDataClasses in _mscl: -_mscl.MipDataClasses_swigregister(MipDataClasses) - -class MipChannelIdentifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelIdentifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelIdentifiers___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelIdentifiers___bool__(self) - - def __len__(self): - return _mscl.MipChannelIdentifiers___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelIdentifiers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelIdentifiers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelIdentifiers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelIdentifiers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelIdentifiers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelIdentifiers___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelIdentifiers_pop(self) - - def append(self, x): - return _mscl.MipChannelIdentifiers_append(self, x) - - def empty(self): - return _mscl.MipChannelIdentifiers_empty(self) - - def size(self): - return _mscl.MipChannelIdentifiers_size(self) - - def swap(self, v): - return _mscl.MipChannelIdentifiers_swap(self, v) - - def begin(self): - return _mscl.MipChannelIdentifiers_begin(self) - - def end(self): - return _mscl.MipChannelIdentifiers_end(self) - - def rbegin(self): - return _mscl.MipChannelIdentifiers_rbegin(self) - - def rend(self): - return _mscl.MipChannelIdentifiers_rend(self) - - def clear(self): - return _mscl.MipChannelIdentifiers_clear(self) - - def get_allocator(self): - return _mscl.MipChannelIdentifiers_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelIdentifiers_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelIdentifiers_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelIdentifiers_swiginit(self, _mscl.new_MipChannelIdentifiers(*args)) - - def push_back(self, x): - return _mscl.MipChannelIdentifiers_push_back(self, x) - - def front(self): - return _mscl.MipChannelIdentifiers_front(self) - - def back(self): - return _mscl.MipChannelIdentifiers_back(self) - - def assign(self, n, x): - return _mscl.MipChannelIdentifiers_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelIdentifiers_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelIdentifiers_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelIdentifiers_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelIdentifiers_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelIdentifiers - -# Register MipChannelIdentifiers in _mscl: -_mscl.MipChannelIdentifiers_swigregister(MipChannelIdentifiers) - -class MipCommandSet(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandSet_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandSet___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandSet___bool__(self) - - def __len__(self): - return _mscl.MipCommandSet___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandSet___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandSet___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandSet___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandSet___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandSet___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandSet___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandSet_pop(self) - - def append(self, x): - return _mscl.MipCommandSet_append(self, x) - - def empty(self): - return _mscl.MipCommandSet_empty(self) - - def size(self): - return _mscl.MipCommandSet_size(self) - - def swap(self, v): - return _mscl.MipCommandSet_swap(self, v) - - def begin(self): - return _mscl.MipCommandSet_begin(self) - - def end(self): - return _mscl.MipCommandSet_end(self) - - def rbegin(self): - return _mscl.MipCommandSet_rbegin(self) - - def rend(self): - return _mscl.MipCommandSet_rend(self) - - def clear(self): - return _mscl.MipCommandSet_clear(self) - - def get_allocator(self): - return _mscl.MipCommandSet_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandSet_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandSet_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandSet_swiginit(self, _mscl.new_MipCommandSet(*args)) - - def push_back(self, x): - return _mscl.MipCommandSet_push_back(self, x) - - def front(self): - return _mscl.MipCommandSet_front(self) - - def back(self): - return _mscl.MipCommandSet_back(self) - - def assign(self, n, x): - return _mscl.MipCommandSet_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandSet_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandSet_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandSet_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandSet_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandSet - -# Register MipCommandSet in _mscl: -_mscl.MipCommandSet_swigregister(MipCommandSet) - -class MipFieldValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipFieldValues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipFieldValues___nonzero__(self) - - def __bool__(self): - return _mscl.MipFieldValues___bool__(self) - - def __len__(self): - return _mscl.MipFieldValues___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipFieldValues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipFieldValues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipFieldValues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipFieldValues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipFieldValues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipFieldValues___setitem__(self, *args) - - def pop(self): - return _mscl.MipFieldValues_pop(self) - - def append(self, x): - return _mscl.MipFieldValues_append(self, x) - - def empty(self): - return _mscl.MipFieldValues_empty(self) - - def size(self): - return _mscl.MipFieldValues_size(self) - - def swap(self, v): - return _mscl.MipFieldValues_swap(self, v) - - def begin(self): - return _mscl.MipFieldValues_begin(self) - - def end(self): - return _mscl.MipFieldValues_end(self) - - def rbegin(self): - return _mscl.MipFieldValues_rbegin(self) - - def rend(self): - return _mscl.MipFieldValues_rend(self) - - def clear(self): - return _mscl.MipFieldValues_clear(self) - - def get_allocator(self): - return _mscl.MipFieldValues_get_allocator(self) - - def pop_back(self): - return _mscl.MipFieldValues_pop_back(self) - - def erase(self, *args): - return _mscl.MipFieldValues_erase(self, *args) - - def __init__(self, *args): - _mscl.MipFieldValues_swiginit(self, _mscl.new_MipFieldValues(*args)) - - def push_back(self, x): - return _mscl.MipFieldValues_push_back(self, x) - - def front(self): - return _mscl.MipFieldValues_front(self) - - def back(self): - return _mscl.MipFieldValues_back(self) - - def assign(self, n, x): - return _mscl.MipFieldValues_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipFieldValues_resize(self, *args) - - def insert(self, *args): - return _mscl.MipFieldValues_insert(self, *args) - - def reserve(self, n): - return _mscl.MipFieldValues_reserve(self, n) - - def capacity(self): - return _mscl.MipFieldValues_capacity(self) - __swig_destroy__ = _mscl.delete_MipFieldValues - -# Register MipFieldValues in _mscl: -_mscl.MipFieldValues_swigregister(MipFieldValues) - -class MipCommandParamPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipCommandParamPair_swiginit(self, _mscl.new_MipCommandParamPair(*args)) - first = property(_mscl.MipCommandParamPair_first_get, _mscl.MipCommandParamPair_first_set) - second = property(_mscl.MipCommandParamPair_second_get, _mscl.MipCommandParamPair_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_MipCommandParamPair - -# Register MipCommandParamPair in _mscl: -_mscl.MipCommandParamPair_swigregister(MipCommandParamPair) - -class MipCommandParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandParameters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandParameters___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandParameters___bool__(self) - - def __len__(self): - return _mscl.MipCommandParameters___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandParameters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandParameters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandParameters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandParameters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandParameters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandParameters___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandParameters_pop(self) - - def append(self, x): - return _mscl.MipCommandParameters_append(self, x) - - def empty(self): - return _mscl.MipCommandParameters_empty(self) - - def size(self): - return _mscl.MipCommandParameters_size(self) - - def swap(self, v): - return _mscl.MipCommandParameters_swap(self, v) - - def begin(self): - return _mscl.MipCommandParameters_begin(self) - - def end(self): - return _mscl.MipCommandParameters_end(self) - - def rbegin(self): - return _mscl.MipCommandParameters_rbegin(self) - - def rend(self): - return _mscl.MipCommandParameters_rend(self) - - def clear(self): - return _mscl.MipCommandParameters_clear(self) - - def get_allocator(self): - return _mscl.MipCommandParameters_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandParameters_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandParameters_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandParameters_swiginit(self, _mscl.new_MipCommandParameters(*args)) - - def push_back(self, x): - return _mscl.MipCommandParameters_push_back(self, x) - - def front(self): - return _mscl.MipCommandParameters_front(self) - - def back(self): - return _mscl.MipCommandParameters_back(self) - - def assign(self, n, x): - return _mscl.MipCommandParameters_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandParameters_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandParameters_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandParameters_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandParameters_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandParameters - -# Register MipCommandParameters in _mscl: -_mscl.MipCommandParameters_swigregister(MipCommandParameters) - -class ChannelIndex(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ChannelIndex_swiginit(self, _mscl.new_ChannelIndex(*args)) - first = property(_mscl.ChannelIndex_first_get, _mscl.ChannelIndex_first_set) - second = property(_mscl.ChannelIndex_second_get, _mscl.ChannelIndex_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_ChannelIndex - -# Register ChannelIndex in _mscl: -_mscl.ChannelIndex_swigregister(ChannelIndex) - -class ChannelIndices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelIndices_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelIndices___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelIndices___bool__(self) - - def __len__(self): - return _mscl.ChannelIndices___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelIndices___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelIndices___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelIndices___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelIndices___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelIndices___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelIndices___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelIndices_pop(self) - - def append(self, x): - return _mscl.ChannelIndices_append(self, x) - - def empty(self): - return _mscl.ChannelIndices_empty(self) - - def size(self): - return _mscl.ChannelIndices_size(self) - - def swap(self, v): - return _mscl.ChannelIndices_swap(self, v) - - def begin(self): - return _mscl.ChannelIndices_begin(self) - - def end(self): - return _mscl.ChannelIndices_end(self) - - def rbegin(self): - return _mscl.ChannelIndices_rbegin(self) - - def rend(self): - return _mscl.ChannelIndices_rend(self) - - def clear(self): - return _mscl.ChannelIndices_clear(self) - - def get_allocator(self): - return _mscl.ChannelIndices_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelIndices_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelIndices_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelIndices_swiginit(self, _mscl.new_ChannelIndices(*args)) - - def push_back(self, x): - return _mscl.ChannelIndices_push_back(self, x) - - def front(self): - return _mscl.ChannelIndices_front(self) - - def back(self): - return _mscl.ChannelIndices_back(self) - - def assign(self, n, x): - return _mscl.ChannelIndices_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelIndices_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelIndices_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelIndices_reserve(self, n) - - def capacity(self): - return _mscl.ChannelIndices_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelIndices - -# Register ChannelIndices in _mscl: -_mscl.ChannelIndices_swigregister(ChannelIndices) - -class ChannelFieldQualifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelFieldQualifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelFieldQualifiers___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelFieldQualifiers___bool__(self) - - def __len__(self): - return _mscl.ChannelFieldQualifiers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelFieldQualifiers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelFieldQualifiers___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelFieldQualifiers_has_key(self, key) - - def keys(self): - return _mscl.ChannelFieldQualifiers_keys(self) - - def values(self): - return _mscl.ChannelFieldQualifiers_values(self) - - def items(self): - return _mscl.ChannelFieldQualifiers_items(self) - - def __contains__(self, key): - return _mscl.ChannelFieldQualifiers___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelFieldQualifiers_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelFieldQualifiers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelFieldQualifiers___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelFieldQualifiers_asdict(self) - - def __init__(self, *args): - _mscl.ChannelFieldQualifiers_swiginit(self, _mscl.new_ChannelFieldQualifiers(*args)) - - def empty(self): - return _mscl.ChannelFieldQualifiers_empty(self) - - def size(self): - return _mscl.ChannelFieldQualifiers_size(self) - - def swap(self, v): - return _mscl.ChannelFieldQualifiers_swap(self, v) - - def begin(self): - return _mscl.ChannelFieldQualifiers_begin(self) - - def end(self): - return _mscl.ChannelFieldQualifiers_end(self) - - def rbegin(self): - return _mscl.ChannelFieldQualifiers_rbegin(self) - - def rend(self): - return _mscl.ChannelFieldQualifiers_rend(self) - - def clear(self): - return _mscl.ChannelFieldQualifiers_clear(self) - - def get_allocator(self): - return _mscl.ChannelFieldQualifiers_get_allocator(self) - - def count(self, x): - return _mscl.ChannelFieldQualifiers_count(self, x) - - def erase(self, *args): - return _mscl.ChannelFieldQualifiers_erase(self, *args) - - def find(self, x): - return _mscl.ChannelFieldQualifiers_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelFieldQualifiers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelFieldQualifiers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelFieldQualifiers - -# Register ChannelFieldQualifiers in _mscl: -_mscl.ChannelFieldQualifiers_swigregister(ChannelFieldQualifiers) - -class GnssReceivers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssReceivers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssReceivers___nonzero__(self) - - def __bool__(self): - return _mscl.GnssReceivers___bool__(self) - - def __len__(self): - return _mscl.GnssReceivers___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssReceivers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssReceivers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssReceivers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssReceivers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssReceivers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssReceivers___setitem__(self, *args) - - def pop(self): - return _mscl.GnssReceivers_pop(self) - - def append(self, x): - return _mscl.GnssReceivers_append(self, x) - - def empty(self): - return _mscl.GnssReceivers_empty(self) - - def size(self): - return _mscl.GnssReceivers_size(self) - - def swap(self, v): - return _mscl.GnssReceivers_swap(self, v) - - def begin(self): - return _mscl.GnssReceivers_begin(self) - - def end(self): - return _mscl.GnssReceivers_end(self) - - def rbegin(self): - return _mscl.GnssReceivers_rbegin(self) - - def rend(self): - return _mscl.GnssReceivers_rend(self) - - def clear(self): - return _mscl.GnssReceivers_clear(self) - - def get_allocator(self): - return _mscl.GnssReceivers_get_allocator(self) - - def pop_back(self): - return _mscl.GnssReceivers_pop_back(self) - - def erase(self, *args): - return _mscl.GnssReceivers_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssReceivers_swiginit(self, _mscl.new_GnssReceivers(*args)) - - def push_back(self, x): - return _mscl.GnssReceivers_push_back(self, x) - - def front(self): - return _mscl.GnssReceivers_front(self) - - def back(self): - return _mscl.GnssReceivers_back(self) - - def assign(self, n, x): - return _mscl.GnssReceivers_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssReceivers_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssReceivers_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssReceivers_reserve(self, n) - - def capacity(self): - return _mscl.GnssReceivers_capacity(self) - __swig_destroy__ = _mscl.delete_GnssReceivers - -# Register GnssReceivers in _mscl: -_mscl.GnssReceivers_swigregister(GnssReceivers) - -class SensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRanges___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRanges___bool__(self) - - def __len__(self): - return _mscl.SensorRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorRanges___setitem__(self, *args) - - def pop(self): - return _mscl.SensorRanges_pop(self) - - def append(self, x): - return _mscl.SensorRanges_append(self, x) - - def empty(self): - return _mscl.SensorRanges_empty(self) - - def size(self): - return _mscl.SensorRanges_size(self) - - def swap(self, v): - return _mscl.SensorRanges_swap(self, v) - - def begin(self): - return _mscl.SensorRanges_begin(self) - - def end(self): - return _mscl.SensorRanges_end(self) - - def rbegin(self): - return _mscl.SensorRanges_rbegin(self) - - def rend(self): - return _mscl.SensorRanges_rend(self) - - def clear(self): - return _mscl.SensorRanges_clear(self) - - def get_allocator(self): - return _mscl.SensorRanges_get_allocator(self) - - def pop_back(self): - return _mscl.SensorRanges_pop_back(self) - - def erase(self, *args): - return _mscl.SensorRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorRanges_swiginit(self, _mscl.new_SensorRanges(*args)) - - def push_back(self, x): - return _mscl.SensorRanges_push_back(self, x) - - def front(self): - return _mscl.SensorRanges_front(self) - - def back(self): - return _mscl.SensorRanges_back(self) - - def assign(self, n, x): - return _mscl.SensorRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorRanges_reserve(self, n) - - def capacity(self): - return _mscl.SensorRanges_capacity(self) - __swig_destroy__ = _mscl.delete_SensorRanges - -# Register SensorRanges in _mscl: -_mscl.SensorRanges_swigregister(SensorRanges) - -class SensorRangeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRangeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRangeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRangeOptions___bool__(self) - - def __len__(self): - return _mscl.SensorRangeOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SensorRangeOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SensorRangeOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.SensorRangeOptions_has_key(self, key) - - def keys(self): - return _mscl.SensorRangeOptions_keys(self) - - def values(self): - return _mscl.SensorRangeOptions_values(self) - - def items(self): - return _mscl.SensorRangeOptions_items(self) - - def __contains__(self, key): - return _mscl.SensorRangeOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.SensorRangeOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.SensorRangeOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SensorRangeOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.SensorRangeOptions_asdict(self) - - def __init__(self, *args): - _mscl.SensorRangeOptions_swiginit(self, _mscl.new_SensorRangeOptions(*args)) - - def empty(self): - return _mscl.SensorRangeOptions_empty(self) - - def size(self): - return _mscl.SensorRangeOptions_size(self) - - def swap(self, v): - return _mscl.SensorRangeOptions_swap(self, v) - - def begin(self): - return _mscl.SensorRangeOptions_begin(self) - - def end(self): - return _mscl.SensorRangeOptions_end(self) - - def rbegin(self): - return _mscl.SensorRangeOptions_rbegin(self) - - def rend(self): - return _mscl.SensorRangeOptions_rend(self) - - def clear(self): - return _mscl.SensorRangeOptions_clear(self) - - def get_allocator(self): - return _mscl.SensorRangeOptions_get_allocator(self) - - def count(self, x): - return _mscl.SensorRangeOptions_count(self, x) - - def erase(self, *args): - return _mscl.SensorRangeOptions_erase(self, *args) - - def find(self, x): - return _mscl.SensorRangeOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.SensorRangeOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SensorRangeOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SensorRangeOptions - -# Register SensorRangeOptions in _mscl: -_mscl.SensorRangeOptions_swigregister(SensorRangeOptions) - -class CommPortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommPortInfo_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommPortInfo___nonzero__(self) - - def __bool__(self): - return _mscl.CommPortInfo___bool__(self) - - def __len__(self): - return _mscl.CommPortInfo___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommPortInfo___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommPortInfo___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommPortInfo___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommPortInfo___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommPortInfo___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommPortInfo___setitem__(self, *args) - - def pop(self): - return _mscl.CommPortInfo_pop(self) - - def append(self, x): - return _mscl.CommPortInfo_append(self, x) - - def empty(self): - return _mscl.CommPortInfo_empty(self) - - def size(self): - return _mscl.CommPortInfo_size(self) - - def swap(self, v): - return _mscl.CommPortInfo_swap(self, v) - - def begin(self): - return _mscl.CommPortInfo_begin(self) - - def end(self): - return _mscl.CommPortInfo_end(self) - - def rbegin(self): - return _mscl.CommPortInfo_rbegin(self) - - def rend(self): - return _mscl.CommPortInfo_rend(self) - - def clear(self): - return _mscl.CommPortInfo_clear(self) - - def get_allocator(self): - return _mscl.CommPortInfo_get_allocator(self) - - def pop_back(self): - return _mscl.CommPortInfo_pop_back(self) - - def erase(self, *args): - return _mscl.CommPortInfo_erase(self, *args) - - def __init__(self, *args): - _mscl.CommPortInfo_swiginit(self, _mscl.new_CommPortInfo(*args)) - - def push_back(self, x): - return _mscl.CommPortInfo_push_back(self, x) - - def front(self): - return _mscl.CommPortInfo_front(self) - - def back(self): - return _mscl.CommPortInfo_back(self) - - def assign(self, n, x): - return _mscl.CommPortInfo_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommPortInfo_resize(self, *args) - - def insert(self, *args): - return _mscl.CommPortInfo_insert(self, *args) - - def reserve(self, n): - return _mscl.CommPortInfo_reserve(self, n) - - def capacity(self): - return _mscl.CommPortInfo_capacity(self) - __swig_destroy__ = _mscl.delete_CommPortInfo - -# Register CommPortInfo in _mscl: -_mscl.CommPortInfo_swigregister(CommPortInfo) - -class EventTriggerStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTriggerStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTriggerStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventTriggerStatus___bool__(self) - - def __len__(self): - return _mscl.EventTriggerStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTriggerStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTriggerStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTriggerStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTriggerStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTriggerStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTriggerStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventTriggerStatus_pop(self) - - def append(self, x): - return _mscl.EventTriggerStatus_append(self, x) - - def empty(self): - return _mscl.EventTriggerStatus_empty(self) - - def size(self): - return _mscl.EventTriggerStatus_size(self) - - def swap(self, v): - return _mscl.EventTriggerStatus_swap(self, v) - - def begin(self): - return _mscl.EventTriggerStatus_begin(self) - - def end(self): - return _mscl.EventTriggerStatus_end(self) - - def rbegin(self): - return _mscl.EventTriggerStatus_rbegin(self) - - def rend(self): - return _mscl.EventTriggerStatus_rend(self) - - def clear(self): - return _mscl.EventTriggerStatus_clear(self) - - def get_allocator(self): - return _mscl.EventTriggerStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventTriggerStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventTriggerStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTriggerStatus_swiginit(self, _mscl.new_EventTriggerStatus(*args)) - - def push_back(self, x): - return _mscl.EventTriggerStatus_push_back(self, x) - - def front(self): - return _mscl.EventTriggerStatus_front(self) - - def back(self): - return _mscl.EventTriggerStatus_back(self) - - def assign(self, n, x): - return _mscl.EventTriggerStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTriggerStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTriggerStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTriggerStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventTriggerStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventTriggerStatus - -# Register EventTriggerStatus in _mscl: -_mscl.EventTriggerStatus_swigregister(EventTriggerStatus) - -class EventActionStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventActionStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventActionStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventActionStatus___bool__(self) - - def __len__(self): - return _mscl.EventActionStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventActionStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventActionStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventActionStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventActionStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventActionStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventActionStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventActionStatus_pop(self) - - def append(self, x): - return _mscl.EventActionStatus_append(self, x) - - def empty(self): - return _mscl.EventActionStatus_empty(self) - - def size(self): - return _mscl.EventActionStatus_size(self) - - def swap(self, v): - return _mscl.EventActionStatus_swap(self, v) - - def begin(self): - return _mscl.EventActionStatus_begin(self) - - def end(self): - return _mscl.EventActionStatus_end(self) - - def rbegin(self): - return _mscl.EventActionStatus_rbegin(self) - - def rend(self): - return _mscl.EventActionStatus_rend(self) - - def clear(self): - return _mscl.EventActionStatus_clear(self) - - def get_allocator(self): - return _mscl.EventActionStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventActionStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventActionStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventActionStatus_swiginit(self, _mscl.new_EventActionStatus(*args)) - - def push_back(self, x): - return _mscl.EventActionStatus_push_back(self, x) - - def front(self): - return _mscl.EventActionStatus_front(self) - - def back(self): - return _mscl.EventActionStatus_back(self) - - def assign(self, n, x): - return _mscl.EventActionStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventActionStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventActionStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventActionStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventActionStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventActionStatus - -# Register EventActionStatus in _mscl: -_mscl.EventActionStatus_swigregister(EventActionStatus) - -class ChannelGroups(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroups_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroups___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroups___bool__(self) - - def __len__(self): - return _mscl.ChannelGroups___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroups___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroups___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroups___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroups___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroups___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroups___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroups_pop(self) - - def append(self, x): - return _mscl.ChannelGroups_append(self, x) - - def empty(self): - return _mscl.ChannelGroups_empty(self) - - def size(self): - return _mscl.ChannelGroups_size(self) - - def swap(self, v): - return _mscl.ChannelGroups_swap(self, v) - - def begin(self): - return _mscl.ChannelGroups_begin(self) - - def end(self): - return _mscl.ChannelGroups_end(self) - - def rbegin(self): - return _mscl.ChannelGroups_rbegin(self) - - def rend(self): - return _mscl.ChannelGroups_rend(self) - - def clear(self): - return _mscl.ChannelGroups_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroups_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroups_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroups_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroups_swiginit(self, _mscl.new_ChannelGroups(*args)) - - def push_back(self, x): - return _mscl.ChannelGroups_push_back(self, x) - - def front(self): - return _mscl.ChannelGroups_front(self) - - def back(self): - return _mscl.ChannelGroups_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroups_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroups_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroups_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroups_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroups_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroups - -# Register ChannelGroups in _mscl: -_mscl.ChannelGroups_swigregister(ChannelGroups) - -class WirelessChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessChannels___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessChannels___bool__(self) - - def __len__(self): - return _mscl.WirelessChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessChannels___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessChannels_pop(self) - - def append(self, x): - return _mscl.WirelessChannels_append(self, x) - - def empty(self): - return _mscl.WirelessChannels_empty(self) - - def size(self): - return _mscl.WirelessChannels_size(self) - - def swap(self, v): - return _mscl.WirelessChannels_swap(self, v) - - def begin(self): - return _mscl.WirelessChannels_begin(self) - - def end(self): - return _mscl.WirelessChannels_end(self) - - def rbegin(self): - return _mscl.WirelessChannels_rbegin(self) - - def rend(self): - return _mscl.WirelessChannels_rend(self) - - def clear(self): - return _mscl.WirelessChannels_clear(self) - - def get_allocator(self): - return _mscl.WirelessChannels_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessChannels_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessChannels_swiginit(self, _mscl.new_WirelessChannels(*args)) - - def push_back(self, x): - return _mscl.WirelessChannels_push_back(self, x) - - def front(self): - return _mscl.WirelessChannels_front(self) - - def back(self): - return _mscl.WirelessChannels_back(self) - - def assign(self, n, x): - return _mscl.WirelessChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessChannels_reserve(self, n) - - def capacity(self): - return _mscl.WirelessChannels_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessChannels - -# Register WirelessChannels in _mscl: -_mscl.WirelessChannels_swigregister(WirelessChannels) - -class DamageAngles(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DamageAngles_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DamageAngles___nonzero__(self) - - def __bool__(self): - return _mscl.DamageAngles___bool__(self) - - def __len__(self): - return _mscl.DamageAngles___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DamageAngles___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DamageAngles___delitem__(self, key) - - def has_key(self, key): - return _mscl.DamageAngles_has_key(self, key) - - def keys(self): - return _mscl.DamageAngles_keys(self) - - def values(self): - return _mscl.DamageAngles_values(self) - - def items(self): - return _mscl.DamageAngles_items(self) - - def __contains__(self, key): - return _mscl.DamageAngles___contains__(self, key) - - def key_iterator(self): - return _mscl.DamageAngles_key_iterator(self) - - def value_iterator(self): - return _mscl.DamageAngles_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DamageAngles___setitem__(self, *args) - - def asdict(self): - return _mscl.DamageAngles_asdict(self) - - def __init__(self, *args): - _mscl.DamageAngles_swiginit(self, _mscl.new_DamageAngles(*args)) - - def empty(self): - return _mscl.DamageAngles_empty(self) - - def size(self): - return _mscl.DamageAngles_size(self) - - def swap(self, v): - return _mscl.DamageAngles_swap(self, v) - - def begin(self): - return _mscl.DamageAngles_begin(self) - - def end(self): - return _mscl.DamageAngles_end(self) - - def rbegin(self): - return _mscl.DamageAngles_rbegin(self) - - def rend(self): - return _mscl.DamageAngles_rend(self) - - def clear(self): - return _mscl.DamageAngles_clear(self) - - def get_allocator(self): - return _mscl.DamageAngles_get_allocator(self) - - def count(self, x): - return _mscl.DamageAngles_count(self, x) - - def erase(self, *args): - return _mscl.DamageAngles_erase(self, *args) - - def find(self, x): - return _mscl.DamageAngles_find(self, x) - - def lower_bound(self, x): - return _mscl.DamageAngles_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DamageAngles_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DamageAngles - -# Register DamageAngles in _mscl: -_mscl.DamageAngles_swigregister(DamageAngles) - -class SnCurveSegments(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SnCurveSegments_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SnCurveSegments___nonzero__(self) - - def __bool__(self): - return _mscl.SnCurveSegments___bool__(self) - - def __len__(self): - return _mscl.SnCurveSegments___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SnCurveSegments___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SnCurveSegments___delitem__(self, key) - - def has_key(self, key): - return _mscl.SnCurveSegments_has_key(self, key) - - def keys(self): - return _mscl.SnCurveSegments_keys(self) - - def values(self): - return _mscl.SnCurveSegments_values(self) - - def items(self): - return _mscl.SnCurveSegments_items(self) - - def __contains__(self, key): - return _mscl.SnCurveSegments___contains__(self, key) - - def key_iterator(self): - return _mscl.SnCurveSegments_key_iterator(self) - - def value_iterator(self): - return _mscl.SnCurveSegments_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SnCurveSegments___setitem__(self, *args) - - def asdict(self): - return _mscl.SnCurveSegments_asdict(self) - - def __init__(self, *args): - _mscl.SnCurveSegments_swiginit(self, _mscl.new_SnCurveSegments(*args)) - - def empty(self): - return _mscl.SnCurveSegments_empty(self) - - def size(self): - return _mscl.SnCurveSegments_size(self) - - def swap(self, v): - return _mscl.SnCurveSegments_swap(self, v) - - def begin(self): - return _mscl.SnCurveSegments_begin(self) - - def end(self): - return _mscl.SnCurveSegments_end(self) - - def rbegin(self): - return _mscl.SnCurveSegments_rbegin(self) - - def rend(self): - return _mscl.SnCurveSegments_rend(self) - - def clear(self): - return _mscl.SnCurveSegments_clear(self) - - def get_allocator(self): - return _mscl.SnCurveSegments_get_allocator(self) - - def count(self, x): - return _mscl.SnCurveSegments_count(self, x) - - def erase(self, *args): - return _mscl.SnCurveSegments_erase(self, *args) - - def find(self, x): - return _mscl.SnCurveSegments_find(self, x) - - def lower_bound(self, x): - return _mscl.SnCurveSegments_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SnCurveSegments_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SnCurveSegments - -# Register SnCurveSegments in _mscl: -_mscl.SnCurveSegments_swigregister(SnCurveSegments) - -class RfSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RfSweep_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RfSweep___nonzero__(self) - - def __bool__(self): - return _mscl.RfSweep___bool__(self) - - def __len__(self): - return _mscl.RfSweep___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.RfSweep___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.RfSweep___delitem__(self, key) - - def has_key(self, key): - return _mscl.RfSweep_has_key(self, key) - - def keys(self): - return _mscl.RfSweep_keys(self) - - def values(self): - return _mscl.RfSweep_values(self) - - def items(self): - return _mscl.RfSweep_items(self) - - def __contains__(self, key): - return _mscl.RfSweep___contains__(self, key) - - def key_iterator(self): - return _mscl.RfSweep_key_iterator(self) - - def value_iterator(self): - return _mscl.RfSweep_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.RfSweep___setitem__(self, *args) - - def asdict(self): - return _mscl.RfSweep_asdict(self) - - def __init__(self, *args): - _mscl.RfSweep_swiginit(self, _mscl.new_RfSweep(*args)) - - def empty(self): - return _mscl.RfSweep_empty(self) - - def size(self): - return _mscl.RfSweep_size(self) - - def swap(self, v): - return _mscl.RfSweep_swap(self, v) - - def begin(self): - return _mscl.RfSweep_begin(self) - - def end(self): - return _mscl.RfSweep_end(self) - - def rbegin(self): - return _mscl.RfSweep_rbegin(self) - - def rend(self): - return _mscl.RfSweep_rend(self) - - def clear(self): - return _mscl.RfSweep_clear(self) - - def get_allocator(self): - return _mscl.RfSweep_get_allocator(self) - - def count(self, x): - return _mscl.RfSweep_count(self, x) - - def erase(self, *args): - return _mscl.RfSweep_erase(self, *args) - - def find(self, x): - return _mscl.RfSweep_find(self, x) - - def lower_bound(self, x): - return _mscl.RfSweep_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.RfSweep_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_RfSweep - -# Register RfSweep in _mscl: -_mscl.RfSweep_swigregister(RfSweep) - -class Triggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Triggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Triggers___nonzero__(self) - - def __bool__(self): - return _mscl.Triggers___bool__(self) - - def __len__(self): - return _mscl.Triggers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.Triggers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.Triggers___delitem__(self, key) - - def has_key(self, key): - return _mscl.Triggers_has_key(self, key) - - def keys(self): - return _mscl.Triggers_keys(self) - - def values(self): - return _mscl.Triggers_values(self) - - def items(self): - return _mscl.Triggers_items(self) - - def __contains__(self, key): - return _mscl.Triggers___contains__(self, key) - - def key_iterator(self): - return _mscl.Triggers_key_iterator(self) - - def value_iterator(self): - return _mscl.Triggers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.Triggers___setitem__(self, *args) - - def asdict(self): - return _mscl.Triggers_asdict(self) - - def __init__(self, *args): - _mscl.Triggers_swiginit(self, _mscl.new_Triggers(*args)) - - def empty(self): - return _mscl.Triggers_empty(self) - - def size(self): - return _mscl.Triggers_size(self) - - def swap(self, v): - return _mscl.Triggers_swap(self, v) - - def begin(self): - return _mscl.Triggers_begin(self) - - def end(self): - return _mscl.Triggers_end(self) - - def rbegin(self): - return _mscl.Triggers_rbegin(self) - - def rend(self): - return _mscl.Triggers_rend(self) - - def clear(self): - return _mscl.Triggers_clear(self) - - def get_allocator(self): - return _mscl.Triggers_get_allocator(self) - - def count(self, x): - return _mscl.Triggers_count(self, x) - - def erase(self, *args): - return _mscl.Triggers_erase(self, *args) - - def find(self, x): - return _mscl.Triggers_find(self, x) - - def lower_bound(self, x): - return _mscl.Triggers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.Triggers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_Triggers - -# Register Triggers in _mscl: -_mscl.Triggers_swigregister(Triggers) - -class ChannelCalMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelCalMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelCalMap___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelCalMap___bool__(self) - - def __len__(self): - return _mscl.ChannelCalMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelCalMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelCalMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelCalMap_has_key(self, key) - - def keys(self): - return _mscl.ChannelCalMap_keys(self) - - def values(self): - return _mscl.ChannelCalMap_values(self) - - def items(self): - return _mscl.ChannelCalMap_items(self) - - def __contains__(self, key): - return _mscl.ChannelCalMap___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelCalMap_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelCalMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelCalMap___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelCalMap_asdict(self) - - def __init__(self, *args): - _mscl.ChannelCalMap_swiginit(self, _mscl.new_ChannelCalMap(*args)) - - def empty(self): - return _mscl.ChannelCalMap_empty(self) - - def size(self): - return _mscl.ChannelCalMap_size(self) - - def swap(self, v): - return _mscl.ChannelCalMap_swap(self, v) - - def begin(self): - return _mscl.ChannelCalMap_begin(self) - - def end(self): - return _mscl.ChannelCalMap_end(self) - - def rbegin(self): - return _mscl.ChannelCalMap_rbegin(self) - - def rend(self): - return _mscl.ChannelCalMap_rend(self) - - def clear(self): - return _mscl.ChannelCalMap_clear(self) - - def get_allocator(self): - return _mscl.ChannelCalMap_get_allocator(self) - - def count(self, x): - return _mscl.ChannelCalMap_count(self, x) - - def erase(self, *args): - return _mscl.ChannelCalMap_erase(self, *args) - - def find(self, x): - return _mscl.ChannelCalMap_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelCalMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelCalMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelCalMap - -# Register ChannelCalMap in _mscl: -_mscl.ChannelCalMap_swigregister(ChannelCalMap) - -class WirelessPollData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessPollData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessPollData___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessPollData___bool__(self) - - def __len__(self): - return _mscl.WirelessPollData___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.WirelessPollData___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.WirelessPollData___delitem__(self, key) - - def has_key(self, key): - return _mscl.WirelessPollData_has_key(self, key) - - def keys(self): - return _mscl.WirelessPollData_keys(self) - - def values(self): - return _mscl.WirelessPollData_values(self) - - def items(self): - return _mscl.WirelessPollData_items(self) - - def __contains__(self, key): - return _mscl.WirelessPollData___contains__(self, key) - - def key_iterator(self): - return _mscl.WirelessPollData_key_iterator(self) - - def value_iterator(self): - return _mscl.WirelessPollData_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.WirelessPollData___setitem__(self, *args) - - def asdict(self): - return _mscl.WirelessPollData_asdict(self) - - def __init__(self, *args): - _mscl.WirelessPollData_swiginit(self, _mscl.new_WirelessPollData(*args)) - - def empty(self): - return _mscl.WirelessPollData_empty(self) - - def size(self): - return _mscl.WirelessPollData_size(self) - - def swap(self, v): - return _mscl.WirelessPollData_swap(self, v) - - def begin(self): - return _mscl.WirelessPollData_begin(self) - - def end(self): - return _mscl.WirelessPollData_end(self) - - def rbegin(self): - return _mscl.WirelessPollData_rbegin(self) - - def rend(self): - return _mscl.WirelessPollData_rend(self) - - def clear(self): - return _mscl.WirelessPollData_clear(self) - - def get_allocator(self): - return _mscl.WirelessPollData_get_allocator(self) - - def count(self, x): - return _mscl.WirelessPollData_count(self, x) - - def erase(self, *args): - return _mscl.WirelessPollData_erase(self, *args) - - def find(self, x): - return _mscl.WirelessPollData_find(self, x) - - def lower_bound(self, x): - return _mscl.WirelessPollData_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.WirelessPollData_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_WirelessPollData - -# Register WirelessPollData in _mscl: -_mscl.WirelessPollData_swigregister(WirelessPollData) - -class ConnectionDebugDataVec(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConnectionDebugDataVec_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConnectionDebugDataVec___nonzero__(self) - - def __bool__(self): - return _mscl.ConnectionDebugDataVec___bool__(self) - - def __len__(self): - return _mscl.ConnectionDebugDataVec___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConnectionDebugDataVec___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConnectionDebugDataVec___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConnectionDebugDataVec___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConnectionDebugDataVec___setitem__(self, *args) - - def pop(self): - return _mscl.ConnectionDebugDataVec_pop(self) - - def append(self, x): - return _mscl.ConnectionDebugDataVec_append(self, x) - - def empty(self): - return _mscl.ConnectionDebugDataVec_empty(self) - - def size(self): - return _mscl.ConnectionDebugDataVec_size(self) - - def swap(self, v): - return _mscl.ConnectionDebugDataVec_swap(self, v) - - def begin(self): - return _mscl.ConnectionDebugDataVec_begin(self) - - def end(self): - return _mscl.ConnectionDebugDataVec_end(self) - - def rbegin(self): - return _mscl.ConnectionDebugDataVec_rbegin(self) - - def rend(self): - return _mscl.ConnectionDebugDataVec_rend(self) - - def clear(self): - return _mscl.ConnectionDebugDataVec_clear(self) - - def get_allocator(self): - return _mscl.ConnectionDebugDataVec_get_allocator(self) - - def pop_back(self): - return _mscl.ConnectionDebugDataVec_pop_back(self) - - def erase(self, *args): - return _mscl.ConnectionDebugDataVec_erase(self, *args) - - def __init__(self, *args): - _mscl.ConnectionDebugDataVec_swiginit(self, _mscl.new_ConnectionDebugDataVec(*args)) - - def push_back(self, x): - return _mscl.ConnectionDebugDataVec_push_back(self, x) - - def front(self): - return _mscl.ConnectionDebugDataVec_front(self) - - def back(self): - return _mscl.ConnectionDebugDataVec_back(self) - - def assign(self, n, x): - return _mscl.ConnectionDebugDataVec_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConnectionDebugDataVec_resize(self, *args) - - def insert(self, *args): - return _mscl.ConnectionDebugDataVec_insert(self, *args) - - def reserve(self, n): - return _mscl.ConnectionDebugDataVec_reserve(self, n) - - def capacity(self): - return _mscl.ConnectionDebugDataVec_capacity(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugDataVec - -# Register ConnectionDebugDataVec in _mscl: -_mscl.ConnectionDebugDataVec_swigregister(ConnectionDebugDataVec) - -class SatellitePRNs(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SatellitePRNs_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SatellitePRNs___nonzero__(self) - - def __bool__(self): - return _mscl.SatellitePRNs___bool__(self) - - def __len__(self): - return _mscl.SatellitePRNs___len__(self) - - def __getslice__(self, i, j): - return _mscl.SatellitePRNs___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SatellitePRNs___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SatellitePRNs___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SatellitePRNs___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SatellitePRNs___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SatellitePRNs___setitem__(self, *args) - - def pop(self): - return _mscl.SatellitePRNs_pop(self) - - def append(self, x): - return _mscl.SatellitePRNs_append(self, x) - - def empty(self): - return _mscl.SatellitePRNs_empty(self) - - def size(self): - return _mscl.SatellitePRNs_size(self) - - def swap(self, v): - return _mscl.SatellitePRNs_swap(self, v) - - def begin(self): - return _mscl.SatellitePRNs_begin(self) - - def end(self): - return _mscl.SatellitePRNs_end(self) - - def rbegin(self): - return _mscl.SatellitePRNs_rbegin(self) - - def rend(self): - return _mscl.SatellitePRNs_rend(self) - - def clear(self): - return _mscl.SatellitePRNs_clear(self) - - def get_allocator(self): - return _mscl.SatellitePRNs_get_allocator(self) - - def pop_back(self): - return _mscl.SatellitePRNs_pop_back(self) - - def erase(self, *args): - return _mscl.SatellitePRNs_erase(self, *args) - - def __init__(self, *args): - _mscl.SatellitePRNs_swiginit(self, _mscl.new_SatellitePRNs(*args)) - - def push_back(self, x): - return _mscl.SatellitePRNs_push_back(self, x) - - def front(self): - return _mscl.SatellitePRNs_front(self) - - def back(self): - return _mscl.SatellitePRNs_back(self) - - def assign(self, n, x): - return _mscl.SatellitePRNs_assign(self, n, x) - - def resize(self, *args): - return _mscl.SatellitePRNs_resize(self, *args) - - def insert(self, *args): - return _mscl.SatellitePRNs_insert(self, *args) - - def reserve(self, n): - return _mscl.SatellitePRNs_reserve(self, n) - - def capacity(self): - return _mscl.SatellitePRNs_capacity(self) - __swig_destroy__ = _mscl.delete_SatellitePRNs - -# Register SatellitePRNs in _mscl: -_mscl.SatellitePRNs_swigregister(SatellitePRNs) - -class Constellations(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Constellations_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Constellations___nonzero__(self) - - def __bool__(self): - return _mscl.Constellations___bool__(self) - - def __len__(self): - return _mscl.Constellations___len__(self) - - def __getslice__(self, i, j): - return _mscl.Constellations___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Constellations___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Constellations___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Constellations___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Constellations___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Constellations___setitem__(self, *args) - - def pop(self): - return _mscl.Constellations_pop(self) - - def append(self, x): - return _mscl.Constellations_append(self, x) - - def empty(self): - return _mscl.Constellations_empty(self) - - def size(self): - return _mscl.Constellations_size(self) - - def swap(self, v): - return _mscl.Constellations_swap(self, v) - - def begin(self): - return _mscl.Constellations_begin(self) - - def end(self): - return _mscl.Constellations_end(self) - - def rbegin(self): - return _mscl.Constellations_rbegin(self) - - def rend(self): - return _mscl.Constellations_rend(self) - - def clear(self): - return _mscl.Constellations_clear(self) - - def get_allocator(self): - return _mscl.Constellations_get_allocator(self) - - def pop_back(self): - return _mscl.Constellations_pop_back(self) - - def erase(self, *args): - return _mscl.Constellations_erase(self, *args) - - def __init__(self, *args): - _mscl.Constellations_swiginit(self, _mscl.new_Constellations(*args)) - - def push_back(self, x): - return _mscl.Constellations_push_back(self, x) - - def front(self): - return _mscl.Constellations_front(self) - - def back(self): - return _mscl.Constellations_back(self) - - def assign(self, n, x): - return _mscl.Constellations_assign(self, n, x) - - def resize(self, *args): - return _mscl.Constellations_resize(self, *args) - - def insert(self, *args): - return _mscl.Constellations_insert(self, *args) - - def reserve(self, n): - return _mscl.Constellations_reserve(self, n) - - def capacity(self): - return _mscl.Constellations_capacity(self) - __swig_destroy__ = _mscl.delete_Constellations - -# Register Constellations in _mscl: -_mscl.Constellations_swigregister(Constellations) - -class HeadingUpdateOptionsList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HeadingUpdateOptionsList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HeadingUpdateOptionsList___nonzero__(self) - - def __bool__(self): - return _mscl.HeadingUpdateOptionsList___bool__(self) - - def __len__(self): - return _mscl.HeadingUpdateOptionsList___len__(self) - - def __getslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HeadingUpdateOptionsList___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___setitem__(self, *args) - - def pop(self): - return _mscl.HeadingUpdateOptionsList_pop(self) - - def append(self, x): - return _mscl.HeadingUpdateOptionsList_append(self, x) - - def empty(self): - return _mscl.HeadingUpdateOptionsList_empty(self) - - def size(self): - return _mscl.HeadingUpdateOptionsList_size(self) - - def swap(self, v): - return _mscl.HeadingUpdateOptionsList_swap(self, v) - - def begin(self): - return _mscl.HeadingUpdateOptionsList_begin(self) - - def end(self): - return _mscl.HeadingUpdateOptionsList_end(self) - - def rbegin(self): - return _mscl.HeadingUpdateOptionsList_rbegin(self) - - def rend(self): - return _mscl.HeadingUpdateOptionsList_rend(self) - - def clear(self): - return _mscl.HeadingUpdateOptionsList_clear(self) - - def get_allocator(self): - return _mscl.HeadingUpdateOptionsList_get_allocator(self) - - def pop_back(self): - return _mscl.HeadingUpdateOptionsList_pop_back(self) - - def erase(self, *args): - return _mscl.HeadingUpdateOptionsList_erase(self, *args) - - def __init__(self, *args): - _mscl.HeadingUpdateOptionsList_swiginit(self, _mscl.new_HeadingUpdateOptionsList(*args)) - - def push_back(self, x): - return _mscl.HeadingUpdateOptionsList_push_back(self, x) - - def front(self): - return _mscl.HeadingUpdateOptionsList_front(self) - - def back(self): - return _mscl.HeadingUpdateOptionsList_back(self) - - def assign(self, n, x): - return _mscl.HeadingUpdateOptionsList_assign(self, n, x) - - def resize(self, *args): - return _mscl.HeadingUpdateOptionsList_resize(self, *args) - - def insert(self, *args): - return _mscl.HeadingUpdateOptionsList_insert(self, *args) - - def reserve(self, n): - return _mscl.HeadingUpdateOptionsList_reserve(self, n) - - def capacity(self): - return _mscl.HeadingUpdateOptionsList_capacity(self) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptionsList - -# Register HeadingUpdateOptionsList in _mscl: -_mscl.HeadingUpdateOptionsList_swigregister(HeadingUpdateOptionsList) - -class AdaptiveMeasurementModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveMeasurementModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveMeasurementModes___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveMeasurementModes___bool__(self) - - def __len__(self): - return _mscl.AdaptiveMeasurementModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveMeasurementModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveMeasurementModes_pop(self) - - def append(self, x): - return _mscl.AdaptiveMeasurementModes_append(self, x) - - def empty(self): - return _mscl.AdaptiveMeasurementModes_empty(self) - - def size(self): - return _mscl.AdaptiveMeasurementModes_size(self) - - def swap(self, v): - return _mscl.AdaptiveMeasurementModes_swap(self, v) - - def begin(self): - return _mscl.AdaptiveMeasurementModes_begin(self) - - def end(self): - return _mscl.AdaptiveMeasurementModes_end(self) - - def rbegin(self): - return _mscl.AdaptiveMeasurementModes_rbegin(self) - - def rend(self): - return _mscl.AdaptiveMeasurementModes_rend(self) - - def clear(self): - return _mscl.AdaptiveMeasurementModes_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveMeasurementModes_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveMeasurementModes_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveMeasurementModes_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveMeasurementModes_swiginit(self, _mscl.new_AdaptiveMeasurementModes(*args)) - - def push_back(self, x): - return _mscl.AdaptiveMeasurementModes_push_back(self, x) - - def front(self): - return _mscl.AdaptiveMeasurementModes_front(self) - - def back(self): - return _mscl.AdaptiveMeasurementModes_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveMeasurementModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveMeasurementModes_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveMeasurementModes_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveMeasurementModes_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveMeasurementModes_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementModes - -# Register AdaptiveMeasurementModes in _mscl: -_mscl.AdaptiveMeasurementModes_swigregister(AdaptiveMeasurementModes) - -class GeometricVectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeometricVectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeometricVectors___nonzero__(self) - - def __bool__(self): - return _mscl.GeometricVectors___bool__(self) - - def __len__(self): - return _mscl.GeometricVectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeometricVectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeometricVectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeometricVectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeometricVectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeometricVectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeometricVectors___setitem__(self, *args) - - def pop(self): - return _mscl.GeometricVectors_pop(self) - - def append(self, x): - return _mscl.GeometricVectors_append(self, x) - - def empty(self): - return _mscl.GeometricVectors_empty(self) - - def size(self): - return _mscl.GeometricVectors_size(self) - - def swap(self, v): - return _mscl.GeometricVectors_swap(self, v) - - def begin(self): - return _mscl.GeometricVectors_begin(self) - - def end(self): - return _mscl.GeometricVectors_end(self) - - def rbegin(self): - return _mscl.GeometricVectors_rbegin(self) - - def rend(self): - return _mscl.GeometricVectors_rend(self) - - def clear(self): - return _mscl.GeometricVectors_clear(self) - - def get_allocator(self): - return _mscl.GeometricVectors_get_allocator(self) - - def pop_back(self): - return _mscl.GeometricVectors_pop_back(self) - - def erase(self, *args): - return _mscl.GeometricVectors_erase(self, *args) - - def __init__(self, *args): - _mscl.GeometricVectors_swiginit(self, _mscl.new_GeometricVectors(*args)) - - def push_back(self, x): - return _mscl.GeometricVectors_push_back(self, x) - - def front(self): - return _mscl.GeometricVectors_front(self) - - def back(self): - return _mscl.GeometricVectors_back(self) - - def assign(self, n, x): - return _mscl.GeometricVectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeometricVectors_resize(self, *args) - - def insert(self, *args): - return _mscl.GeometricVectors_insert(self, *args) - - def reserve(self, n): - return _mscl.GeometricVectors_reserve(self, n) - - def capacity(self): - return _mscl.GeometricVectors_capacity(self) - __swig_destroy__ = _mscl.delete_GeometricVectors - -# Register GeometricVectors in _mscl: -_mscl.GeometricVectors_swigregister(GeometricVectors) - -class Matrix_3x3s(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Matrix_3x3s_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Matrix_3x3s___nonzero__(self) - - def __bool__(self): - return _mscl.Matrix_3x3s___bool__(self) - - def __len__(self): - return _mscl.Matrix_3x3s___len__(self) - - def __getslice__(self, i, j): - return _mscl.Matrix_3x3s___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Matrix_3x3s___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Matrix_3x3s___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Matrix_3x3s___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Matrix_3x3s___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Matrix_3x3s___setitem__(self, *args) - - def pop(self): - return _mscl.Matrix_3x3s_pop(self) - - def append(self, x): - return _mscl.Matrix_3x3s_append(self, x) - - def empty(self): - return _mscl.Matrix_3x3s_empty(self) - - def size(self): - return _mscl.Matrix_3x3s_size(self) - - def swap(self, v): - return _mscl.Matrix_3x3s_swap(self, v) - - def begin(self): - return _mscl.Matrix_3x3s_begin(self) - - def end(self): - return _mscl.Matrix_3x3s_end(self) - - def rbegin(self): - return _mscl.Matrix_3x3s_rbegin(self) - - def rend(self): - return _mscl.Matrix_3x3s_rend(self) - - def clear(self): - return _mscl.Matrix_3x3s_clear(self) - - def get_allocator(self): - return _mscl.Matrix_3x3s_get_allocator(self) - - def pop_back(self): - return _mscl.Matrix_3x3s_pop_back(self) - - def erase(self, *args): - return _mscl.Matrix_3x3s_erase(self, *args) - - def __init__(self, *args): - _mscl.Matrix_3x3s_swiginit(self, _mscl.new_Matrix_3x3s(*args)) - - def push_back(self, x): - return _mscl.Matrix_3x3s_push_back(self, x) - - def front(self): - return _mscl.Matrix_3x3s_front(self) - - def back(self): - return _mscl.Matrix_3x3s_back(self) - - def assign(self, n, x): - return _mscl.Matrix_3x3s_assign(self, n, x) - - def resize(self, *args): - return _mscl.Matrix_3x3s_resize(self, *args) - - def insert(self, *args): - return _mscl.Matrix_3x3s_insert(self, *args) - - def reserve(self, n): - return _mscl.Matrix_3x3s_reserve(self, n) - - def capacity(self): - return _mscl.Matrix_3x3s_capacity(self) - __swig_destroy__ = _mscl.delete_Matrix_3x3s - -# Register Matrix_3x3s in _mscl: -_mscl.Matrix_3x3s_swigregister(Matrix_3x3s) - -class StatusSelectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StatusSelectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StatusSelectors___nonzero__(self) - - def __bool__(self): - return _mscl.StatusSelectors___bool__(self) - - def __len__(self): - return _mscl.StatusSelectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.StatusSelectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StatusSelectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StatusSelectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StatusSelectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StatusSelectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StatusSelectors___setitem__(self, *args) - - def pop(self): - return _mscl.StatusSelectors_pop(self) - - def append(self, x): - return _mscl.StatusSelectors_append(self, x) - - def empty(self): - return _mscl.StatusSelectors_empty(self) - - def size(self): - return _mscl.StatusSelectors_size(self) - - def swap(self, v): - return _mscl.StatusSelectors_swap(self, v) - - def begin(self): - return _mscl.StatusSelectors_begin(self) - - def end(self): - return _mscl.StatusSelectors_end(self) - - def rbegin(self): - return _mscl.StatusSelectors_rbegin(self) - - def rend(self): - return _mscl.StatusSelectors_rend(self) - - def clear(self): - return _mscl.StatusSelectors_clear(self) - - def get_allocator(self): - return _mscl.StatusSelectors_get_allocator(self) - - def pop_back(self): - return _mscl.StatusSelectors_pop_back(self) - - def erase(self, *args): - return _mscl.StatusSelectors_erase(self, *args) - - def __init__(self, *args): - _mscl.StatusSelectors_swiginit(self, _mscl.new_StatusSelectors(*args)) - - def push_back(self, x): - return _mscl.StatusSelectors_push_back(self, x) - - def front(self): - return _mscl.StatusSelectors_front(self) - - def back(self): - return _mscl.StatusSelectors_back(self) - - def assign(self, n, x): - return _mscl.StatusSelectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.StatusSelectors_resize(self, *args) - - def insert(self, *args): - return _mscl.StatusSelectors_insert(self, *args) - - def reserve(self, n): - return _mscl.StatusSelectors_reserve(self, n) - - def capacity(self): - return _mscl.StatusSelectors_capacity(self) - __swig_destroy__ = _mscl.delete_StatusSelectors - -# Register StatusSelectors in _mscl: -_mscl.StatusSelectors_swigregister(StatusSelectors) - -class VehicleModeTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.VehicleModeTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.VehicleModeTypes___nonzero__(self) - - def __bool__(self): - return _mscl.VehicleModeTypes___bool__(self) - - def __len__(self): - return _mscl.VehicleModeTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.VehicleModeTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.VehicleModeTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.VehicleModeTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.VehicleModeTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.VehicleModeTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.VehicleModeTypes___setitem__(self, *args) - - def pop(self): - return _mscl.VehicleModeTypes_pop(self) - - def append(self, x): - return _mscl.VehicleModeTypes_append(self, x) - - def empty(self): - return _mscl.VehicleModeTypes_empty(self) - - def size(self): - return _mscl.VehicleModeTypes_size(self) - - def swap(self, v): - return _mscl.VehicleModeTypes_swap(self, v) - - def begin(self): - return _mscl.VehicleModeTypes_begin(self) - - def end(self): - return _mscl.VehicleModeTypes_end(self) - - def rbegin(self): - return _mscl.VehicleModeTypes_rbegin(self) - - def rend(self): - return _mscl.VehicleModeTypes_rend(self) - - def clear(self): - return _mscl.VehicleModeTypes_clear(self) - - def get_allocator(self): - return _mscl.VehicleModeTypes_get_allocator(self) - - def pop_back(self): - return _mscl.VehicleModeTypes_pop_back(self) - - def erase(self, *args): - return _mscl.VehicleModeTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.VehicleModeTypes_swiginit(self, _mscl.new_VehicleModeTypes(*args)) - - def push_back(self, x): - return _mscl.VehicleModeTypes_push_back(self, x) - - def front(self): - return _mscl.VehicleModeTypes_front(self) - - def back(self): - return _mscl.VehicleModeTypes_back(self) - - def assign(self, n, x): - return _mscl.VehicleModeTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.VehicleModeTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.VehicleModeTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.VehicleModeTypes_reserve(self, n) - - def capacity(self): - return _mscl.VehicleModeTypes_capacity(self) - __swig_destroy__ = _mscl.delete_VehicleModeTypes - -# Register VehicleModeTypes in _mscl: -_mscl.VehicleModeTypes_swigregister(VehicleModeTypes) - -class AdaptiveFilterLevels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveFilterLevels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveFilterLevels___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveFilterLevels___bool__(self) - - def __len__(self): - return _mscl.AdaptiveFilterLevels___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveFilterLevels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveFilterLevels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveFilterLevels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveFilterLevels___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveFilterLevels_pop(self) - - def append(self, x): - return _mscl.AdaptiveFilterLevels_append(self, x) - - def empty(self): - return _mscl.AdaptiveFilterLevels_empty(self) - - def size(self): - return _mscl.AdaptiveFilterLevels_size(self) - - def swap(self, v): - return _mscl.AdaptiveFilterLevels_swap(self, v) - - def begin(self): - return _mscl.AdaptiveFilterLevels_begin(self) - - def end(self): - return _mscl.AdaptiveFilterLevels_end(self) - - def rbegin(self): - return _mscl.AdaptiveFilterLevels_rbegin(self) - - def rend(self): - return _mscl.AdaptiveFilterLevels_rend(self) - - def clear(self): - return _mscl.AdaptiveFilterLevels_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveFilterLevels_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveFilterLevels_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveFilterLevels_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveFilterLevels_swiginit(self, _mscl.new_AdaptiveFilterLevels(*args)) - - def push_back(self, x): - return _mscl.AdaptiveFilterLevels_push_back(self, x) - - def front(self): - return _mscl.AdaptiveFilterLevels_front(self) - - def back(self): - return _mscl.AdaptiveFilterLevels_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveFilterLevels_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveFilterLevels_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveFilterLevels_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveFilterLevels_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveFilterLevels_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveFilterLevels - -# Register AdaptiveFilterLevels in _mscl: -_mscl.AdaptiveFilterLevels_swigregister(AdaptiveFilterLevels) - -class LowPassFilterConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LowPassFilterConfig_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LowPassFilterConfig___nonzero__(self) - - def __bool__(self): - return _mscl.LowPassFilterConfig___bool__(self) - - def __len__(self): - return _mscl.LowPassFilterConfig___len__(self) - - def __getslice__(self, i, j): - return _mscl.LowPassFilterConfig___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LowPassFilterConfig___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LowPassFilterConfig___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LowPassFilterConfig___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LowPassFilterConfig___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LowPassFilterConfig___setitem__(self, *args) - - def pop(self): - return _mscl.LowPassFilterConfig_pop(self) - - def append(self, x): - return _mscl.LowPassFilterConfig_append(self, x) - - def empty(self): - return _mscl.LowPassFilterConfig_empty(self) - - def size(self): - return _mscl.LowPassFilterConfig_size(self) - - def swap(self, v): - return _mscl.LowPassFilterConfig_swap(self, v) - - def begin(self): - return _mscl.LowPassFilterConfig_begin(self) - - def end(self): - return _mscl.LowPassFilterConfig_end(self) - - def rbegin(self): - return _mscl.LowPassFilterConfig_rbegin(self) - - def rend(self): - return _mscl.LowPassFilterConfig_rend(self) - - def clear(self): - return _mscl.LowPassFilterConfig_clear(self) - - def get_allocator(self): - return _mscl.LowPassFilterConfig_get_allocator(self) - - def pop_back(self): - return _mscl.LowPassFilterConfig_pop_back(self) - - def erase(self, *args): - return _mscl.LowPassFilterConfig_erase(self, *args) - - def __init__(self, *args): - _mscl.LowPassFilterConfig_swiginit(self, _mscl.new_LowPassFilterConfig(*args)) - - def push_back(self, x): - return _mscl.LowPassFilterConfig_push_back(self, x) - - def front(self): - return _mscl.LowPassFilterConfig_front(self) - - def back(self): - return _mscl.LowPassFilterConfig_back(self) - - def assign(self, n, x): - return _mscl.LowPassFilterConfig_assign(self, n, x) - - def resize(self, *args): - return _mscl.LowPassFilterConfig_resize(self, *args) - - def insert(self, *args): - return _mscl.LowPassFilterConfig_insert(self, *args) - - def reserve(self, n): - return _mscl.LowPassFilterConfig_reserve(self, n) - - def capacity(self): - return _mscl.LowPassFilterConfig_capacity(self) - __swig_destroy__ = _mscl.delete_LowPassFilterConfig - -# Register LowPassFilterConfig in _mscl: -_mscl.LowPassFilterConfig_swigregister(LowPassFilterConfig) - -class AidingMeasurementSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AidingMeasurementSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AidingMeasurementSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.AidingMeasurementSourceOptions___bool__(self) - - def __len__(self): - return _mscl.AidingMeasurementSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.AidingMeasurementSourceOptions_pop(self) - - def append(self, x): - return _mscl.AidingMeasurementSourceOptions_append(self, x) - - def empty(self): - return _mscl.AidingMeasurementSourceOptions_empty(self) - - def size(self): - return _mscl.AidingMeasurementSourceOptions_size(self) - - def swap(self, v): - return _mscl.AidingMeasurementSourceOptions_swap(self, v) - - def begin(self): - return _mscl.AidingMeasurementSourceOptions_begin(self) - - def end(self): - return _mscl.AidingMeasurementSourceOptions_end(self) - - def rbegin(self): - return _mscl.AidingMeasurementSourceOptions_rbegin(self) - - def rend(self): - return _mscl.AidingMeasurementSourceOptions_rend(self) - - def clear(self): - return _mscl.AidingMeasurementSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.AidingMeasurementSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.AidingMeasurementSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.AidingMeasurementSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.AidingMeasurementSourceOptions_swiginit(self, _mscl.new_AidingMeasurementSourceOptions(*args)) - - def push_back(self, x): - return _mscl.AidingMeasurementSourceOptions_push_back(self, x) - - def front(self): - return _mscl.AidingMeasurementSourceOptions_front(self) - - def back(self): - return _mscl.AidingMeasurementSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.AidingMeasurementSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.AidingMeasurementSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.AidingMeasurementSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.AidingMeasurementSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.AidingMeasurementSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_AidingMeasurementSourceOptions - -# Register AidingMeasurementSourceOptions in _mscl: -_mscl.AidingMeasurementSourceOptions_swigregister(AidingMeasurementSourceOptions) - -class PpsSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.PpsSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.PpsSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.PpsSourceOptions___bool__(self) - - def __len__(self): - return _mscl.PpsSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.PpsSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.PpsSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.PpsSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.PpsSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.PpsSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.PpsSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.PpsSourceOptions_pop(self) - - def append(self, x): - return _mscl.PpsSourceOptions_append(self, x) - - def empty(self): - return _mscl.PpsSourceOptions_empty(self) - - def size(self): - return _mscl.PpsSourceOptions_size(self) - - def swap(self, v): - return _mscl.PpsSourceOptions_swap(self, v) - - def begin(self): - return _mscl.PpsSourceOptions_begin(self) - - def end(self): - return _mscl.PpsSourceOptions_end(self) - - def rbegin(self): - return _mscl.PpsSourceOptions_rbegin(self) - - def rend(self): - return _mscl.PpsSourceOptions_rend(self) - - def clear(self): - return _mscl.PpsSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.PpsSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.PpsSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.PpsSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.PpsSourceOptions_swiginit(self, _mscl.new_PpsSourceOptions(*args)) - - def push_back(self, x): - return _mscl.PpsSourceOptions_push_back(self, x) - - def front(self): - return _mscl.PpsSourceOptions_front(self) - - def back(self): - return _mscl.PpsSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.PpsSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.PpsSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.PpsSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.PpsSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.PpsSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_PpsSourceOptions - -# Register PpsSourceOptions in _mscl: -_mscl.PpsSourceOptions_swigregister(PpsSourceOptions) - -class GeographicSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeographicSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeographicSources___nonzero__(self) - - def __bool__(self): - return _mscl.GeographicSources___bool__(self) - - def __len__(self): - return _mscl.GeographicSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeographicSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeographicSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeographicSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeographicSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeographicSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeographicSources___setitem__(self, *args) - - def pop(self): - return _mscl.GeographicSources_pop(self) - - def append(self, x): - return _mscl.GeographicSources_append(self, x) - - def empty(self): - return _mscl.GeographicSources_empty(self) - - def size(self): - return _mscl.GeographicSources_size(self) - - def swap(self, v): - return _mscl.GeographicSources_swap(self, v) - - def begin(self): - return _mscl.GeographicSources_begin(self) - - def end(self): - return _mscl.GeographicSources_end(self) - - def rbegin(self): - return _mscl.GeographicSources_rbegin(self) - - def rend(self): - return _mscl.GeographicSources_rend(self) - - def clear(self): - return _mscl.GeographicSources_clear(self) - - def get_allocator(self): - return _mscl.GeographicSources_get_allocator(self) - - def pop_back(self): - return _mscl.GeographicSources_pop_back(self) - - def erase(self, *args): - return _mscl.GeographicSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GeographicSources_swiginit(self, _mscl.new_GeographicSources(*args)) - - def push_back(self, x): - return _mscl.GeographicSources_push_back(self, x) - - def front(self): - return _mscl.GeographicSources_front(self) - - def back(self): - return _mscl.GeographicSources_back(self) - - def assign(self, n, x): - return _mscl.GeographicSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeographicSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GeographicSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GeographicSources_reserve(self, n) - - def capacity(self): - return _mscl.GeographicSources_capacity(self) - __swig_destroy__ = _mscl.delete_GeographicSources - -# Register GeographicSources in _mscl: -_mscl.GeographicSources_swigregister(GeographicSources) - -class GnssSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSources___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSources___bool__(self) - - def __len__(self): - return _mscl.GnssSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssSources___setitem__(self, *args) - - def pop(self): - return _mscl.GnssSources_pop(self) - - def append(self, x): - return _mscl.GnssSources_append(self, x) - - def empty(self): - return _mscl.GnssSources_empty(self) - - def size(self): - return _mscl.GnssSources_size(self) - - def swap(self, v): - return _mscl.GnssSources_swap(self, v) - - def begin(self): - return _mscl.GnssSources_begin(self) - - def end(self): - return _mscl.GnssSources_end(self) - - def rbegin(self): - return _mscl.GnssSources_rbegin(self) - - def rend(self): - return _mscl.GnssSources_rend(self) - - def clear(self): - return _mscl.GnssSources_clear(self) - - def get_allocator(self): - return _mscl.GnssSources_get_allocator(self) - - def pop_back(self): - return _mscl.GnssSources_pop_back(self) - - def erase(self, *args): - return _mscl.GnssSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssSources_swiginit(self, _mscl.new_GnssSources(*args)) - - def push_back(self, x): - return _mscl.GnssSources_push_back(self, x) - - def front(self): - return _mscl.GnssSources_front(self) - - def back(self): - return _mscl.GnssSources_back(self) - - def assign(self, n, x): - return _mscl.GnssSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssSources_reserve(self, n) - - def capacity(self): - return _mscl.GnssSources_capacity(self) - __swig_destroy__ = _mscl.delete_GnssSources - -# Register GnssSources in _mscl: -_mscl.GnssSources_swigregister(GnssSources) - -class GnssSignalConfigOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSignalConfigOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSignalConfigOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSignalConfigOptions___bool__(self) - - def __len__(self): - return _mscl.GnssSignalConfigOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GnssSignalConfigOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GnssSignalConfigOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GnssSignalConfigOptions_has_key(self, key) - - def keys(self): - return _mscl.GnssSignalConfigOptions_keys(self) - - def values(self): - return _mscl.GnssSignalConfigOptions_values(self) - - def items(self): - return _mscl.GnssSignalConfigOptions_items(self) - - def __contains__(self, key): - return _mscl.GnssSignalConfigOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GnssSignalConfigOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GnssSignalConfigOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GnssSignalConfigOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GnssSignalConfigOptions_asdict(self) - - def __init__(self, *args): - _mscl.GnssSignalConfigOptions_swiginit(self, _mscl.new_GnssSignalConfigOptions(*args)) - - def empty(self): - return _mscl.GnssSignalConfigOptions_empty(self) - - def size(self): - return _mscl.GnssSignalConfigOptions_size(self) - - def swap(self, v): - return _mscl.GnssSignalConfigOptions_swap(self, v) - - def begin(self): - return _mscl.GnssSignalConfigOptions_begin(self) - - def end(self): - return _mscl.GnssSignalConfigOptions_end(self) - - def rbegin(self): - return _mscl.GnssSignalConfigOptions_rbegin(self) - - def rend(self): - return _mscl.GnssSignalConfigOptions_rend(self) - - def clear(self): - return _mscl.GnssSignalConfigOptions_clear(self) - - def get_allocator(self): - return _mscl.GnssSignalConfigOptions_get_allocator(self) - - def count(self, x): - return _mscl.GnssSignalConfigOptions_count(self, x) - - def erase(self, *args): - return _mscl.GnssSignalConfigOptions_erase(self, *args) - - def find(self, x): - return _mscl.GnssSignalConfigOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GnssSignalConfigOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GnssSignalConfigOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GnssSignalConfigOptions - -# Register GnssSignalConfigOptions in _mscl: -_mscl.GnssSignalConfigOptions_swigregister(GnssSignalConfigOptions) - -class NmeaMessageFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NmeaMessageFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NmeaMessageFormats___nonzero__(self) - - def __bool__(self): - return _mscl.NmeaMessageFormats___bool__(self) - - def __len__(self): - return _mscl.NmeaMessageFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.NmeaMessageFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NmeaMessageFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NmeaMessageFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NmeaMessageFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NmeaMessageFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NmeaMessageFormats___setitem__(self, *args) - - def pop(self): - return _mscl.NmeaMessageFormats_pop(self) - - def append(self, x): - return _mscl.NmeaMessageFormats_append(self, x) - - def empty(self): - return _mscl.NmeaMessageFormats_empty(self) - - def size(self): - return _mscl.NmeaMessageFormats_size(self) - - def swap(self, v): - return _mscl.NmeaMessageFormats_swap(self, v) - - def begin(self): - return _mscl.NmeaMessageFormats_begin(self) - - def end(self): - return _mscl.NmeaMessageFormats_end(self) - - def rbegin(self): - return _mscl.NmeaMessageFormats_rbegin(self) - - def rend(self): - return _mscl.NmeaMessageFormats_rend(self) - - def clear(self): - return _mscl.NmeaMessageFormats_clear(self) - - def get_allocator(self): - return _mscl.NmeaMessageFormats_get_allocator(self) - - def pop_back(self): - return _mscl.NmeaMessageFormats_pop_back(self) - - def erase(self, *args): - return _mscl.NmeaMessageFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.NmeaMessageFormats_swiginit(self, _mscl.new_NmeaMessageFormats(*args)) - - def push_back(self, x): - return _mscl.NmeaMessageFormats_push_back(self, x) - - def front(self): - return _mscl.NmeaMessageFormats_front(self) - - def back(self): - return _mscl.NmeaMessageFormats_back(self) - - def assign(self, n, x): - return _mscl.NmeaMessageFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.NmeaMessageFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.NmeaMessageFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.NmeaMessageFormats_reserve(self, n) - - def capacity(self): - return _mscl.NmeaMessageFormats_capacity(self) - __swig_destroy__ = _mscl.delete_NmeaMessageFormats - -# Register NmeaMessageFormats in _mscl: -_mscl.NmeaMessageFormats_swigregister(NmeaMessageFormats) - -class GpioPinModeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinModeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinModeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinModeOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinModeOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.GpioPinModeOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GpioPinModeOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GpioPinModeOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GpioPinModeOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GpioPinModeOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GpioPinModeOptions___setitem__(self, *args) - - def pop(self): - return _mscl.GpioPinModeOptions_pop(self) - - def append(self, x): - return _mscl.GpioPinModeOptions_append(self, x) - - def empty(self): - return _mscl.GpioPinModeOptions_empty(self) - - def size(self): - return _mscl.GpioPinModeOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinModeOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinModeOptions_begin(self) - - def end(self): - return _mscl.GpioPinModeOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinModeOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinModeOptions_rend(self) - - def clear(self): - return _mscl.GpioPinModeOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinModeOptions_get_allocator(self) - - def pop_back(self): - return _mscl.GpioPinModeOptions_pop_back(self) - - def erase(self, *args): - return _mscl.GpioPinModeOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.GpioPinModeOptions_swiginit(self, _mscl.new_GpioPinModeOptions(*args)) - - def push_back(self, x): - return _mscl.GpioPinModeOptions_push_back(self, x) - - def front(self): - return _mscl.GpioPinModeOptions_front(self) - - def back(self): - return _mscl.GpioPinModeOptions_back(self) - - def assign(self, n, x): - return _mscl.GpioPinModeOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.GpioPinModeOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.GpioPinModeOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.GpioPinModeOptions_reserve(self, n) - - def capacity(self): - return _mscl.GpioPinModeOptions_capacity(self) - __swig_destroy__ = _mscl.delete_GpioPinModeOptions - -# Register GpioPinModeOptions in _mscl: -_mscl.GpioPinModeOptions_swigregister(GpioPinModeOptions) - -class GpioBehaviorModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioBehaviorModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioBehaviorModes___nonzero__(self) - - def __bool__(self): - return _mscl.GpioBehaviorModes___bool__(self) - - def __len__(self): - return _mscl.GpioBehaviorModes___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioBehaviorModes___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioBehaviorModes___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioBehaviorModes_has_key(self, key) - - def keys(self): - return _mscl.GpioBehaviorModes_keys(self) - - def values(self): - return _mscl.GpioBehaviorModes_values(self) - - def items(self): - return _mscl.GpioBehaviorModes_items(self) - - def __contains__(self, key): - return _mscl.GpioBehaviorModes___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioBehaviorModes_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioBehaviorModes_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioBehaviorModes___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioBehaviorModes_asdict(self) - - def __init__(self, *args): - _mscl.GpioBehaviorModes_swiginit(self, _mscl.new_GpioBehaviorModes(*args)) - - def empty(self): - return _mscl.GpioBehaviorModes_empty(self) - - def size(self): - return _mscl.GpioBehaviorModes_size(self) - - def swap(self, v): - return _mscl.GpioBehaviorModes_swap(self, v) - - def begin(self): - return _mscl.GpioBehaviorModes_begin(self) - - def end(self): - return _mscl.GpioBehaviorModes_end(self) - - def rbegin(self): - return _mscl.GpioBehaviorModes_rbegin(self) - - def rend(self): - return _mscl.GpioBehaviorModes_rend(self) - - def clear(self): - return _mscl.GpioBehaviorModes_clear(self) - - def get_allocator(self): - return _mscl.GpioBehaviorModes_get_allocator(self) - - def count(self, x): - return _mscl.GpioBehaviorModes_count(self, x) - - def erase(self, *args): - return _mscl.GpioBehaviorModes_erase(self, *args) - - def find(self, x): - return _mscl.GpioBehaviorModes_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioBehaviorModes_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioBehaviorModes_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioBehaviorModes - -# Register GpioBehaviorModes in _mscl: -_mscl.GpioBehaviorModes_swigregister(GpioBehaviorModes) - -class GpioFeatureBehaviors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioFeatureBehaviors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioFeatureBehaviors___nonzero__(self) - - def __bool__(self): - return _mscl.GpioFeatureBehaviors___bool__(self) - - def __len__(self): - return _mscl.GpioFeatureBehaviors___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioFeatureBehaviors___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioFeatureBehaviors___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioFeatureBehaviors_has_key(self, key) - - def keys(self): - return _mscl.GpioFeatureBehaviors_keys(self) - - def values(self): - return _mscl.GpioFeatureBehaviors_values(self) - - def items(self): - return _mscl.GpioFeatureBehaviors_items(self) - - def __contains__(self, key): - return _mscl.GpioFeatureBehaviors___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioFeatureBehaviors_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioFeatureBehaviors_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioFeatureBehaviors___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioFeatureBehaviors_asdict(self) - - def __init__(self, *args): - _mscl.GpioFeatureBehaviors_swiginit(self, _mscl.new_GpioFeatureBehaviors(*args)) - - def empty(self): - return _mscl.GpioFeatureBehaviors_empty(self) - - def size(self): - return _mscl.GpioFeatureBehaviors_size(self) - - def swap(self, v): - return _mscl.GpioFeatureBehaviors_swap(self, v) - - def begin(self): - return _mscl.GpioFeatureBehaviors_begin(self) - - def end(self): - return _mscl.GpioFeatureBehaviors_end(self) - - def rbegin(self): - return _mscl.GpioFeatureBehaviors_rbegin(self) - - def rend(self): - return _mscl.GpioFeatureBehaviors_rend(self) - - def clear(self): - return _mscl.GpioFeatureBehaviors_clear(self) - - def get_allocator(self): - return _mscl.GpioFeatureBehaviors_get_allocator(self) - - def count(self, x): - return _mscl.GpioFeatureBehaviors_count(self, x) - - def erase(self, *args): - return _mscl.GpioFeatureBehaviors_erase(self, *args) - - def find(self, x): - return _mscl.GpioFeatureBehaviors_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioFeatureBehaviors_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioFeatureBehaviors_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioFeatureBehaviors - -# Register GpioFeatureBehaviors in _mscl: -_mscl.GpioFeatureBehaviors_swigregister(GpioFeatureBehaviors) - -class GpioPinOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioPinOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioPinOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioPinOptions_has_key(self, key) - - def keys(self): - return _mscl.GpioPinOptions_keys(self) - - def values(self): - return _mscl.GpioPinOptions_values(self) - - def items(self): - return _mscl.GpioPinOptions_items(self) - - def __contains__(self, key): - return _mscl.GpioPinOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioPinOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioPinOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioPinOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioPinOptions_asdict(self) - - def __init__(self, *args): - _mscl.GpioPinOptions_swiginit(self, _mscl.new_GpioPinOptions(*args)) - - def empty(self): - return _mscl.GpioPinOptions_empty(self) - - def size(self): - return _mscl.GpioPinOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinOptions_begin(self) - - def end(self): - return _mscl.GpioPinOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinOptions_rend(self) - - def clear(self): - return _mscl.GpioPinOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinOptions_get_allocator(self) - - def count(self, x): - return _mscl.GpioPinOptions_count(self, x) - - def erase(self, *args): - return _mscl.GpioPinOptions_erase(self, *args) - - def find(self, x): - return _mscl.GpioPinOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioPinOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioPinOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioPinOptions - -# Register GpioPinOptions in _mscl: -_mscl.GpioPinOptions_swigregister(GpioPinOptions) - -class EventInputTriggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventInputTriggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventInputTriggers___nonzero__(self) - - def __bool__(self): - return _mscl.EventInputTriggers___bool__(self) - - def __len__(self): - return _mscl.EventInputTriggers___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventInputTriggers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventInputTriggers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventInputTriggers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventInputTriggers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventInputTriggers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventInputTriggers___setitem__(self, *args) - - def __init__(self, *args): - _mscl.EventInputTriggers_swiginit(self, _mscl.new_EventInputTriggers(*args)) - - def empty(self): - return _mscl.EventInputTriggers_empty(self) - - def size(self): - return _mscl.EventInputTriggers_size(self) - - def swap(self, v): - return _mscl.EventInputTriggers_swap(self, v) - - def begin(self): - return _mscl.EventInputTriggers_begin(self) - - def end(self): - return _mscl.EventInputTriggers_end(self) - - def rbegin(self): - return _mscl.EventInputTriggers_rbegin(self) - - def rend(self): - return _mscl.EventInputTriggers_rend(self) - - def front(self): - return _mscl.EventInputTriggers_front(self) - - def back(self): - return _mscl.EventInputTriggers_back(self) - - def fill(self, u): - return _mscl.EventInputTriggers_fill(self, u) - __swig_destroy__ = _mscl.delete_EventInputTriggers - -# Register EventInputTriggers in _mscl: -_mscl.EventInputTriggers_swigregister(EventInputTriggers) - -class EventTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTypes___nonzero__(self) - - def __bool__(self): - return _mscl.EventTypes___bool__(self) - - def __len__(self): - return _mscl.EventTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTypes___setitem__(self, *args) - - def pop(self): - return _mscl.EventTypes_pop(self) - - def append(self, x): - return _mscl.EventTypes_append(self, x) - - def empty(self): - return _mscl.EventTypes_empty(self) - - def size(self): - return _mscl.EventTypes_size(self) - - def swap(self, v): - return _mscl.EventTypes_swap(self, v) - - def begin(self): - return _mscl.EventTypes_begin(self) - - def end(self): - return _mscl.EventTypes_end(self) - - def rbegin(self): - return _mscl.EventTypes_rbegin(self) - - def rend(self): - return _mscl.EventTypes_rend(self) - - def clear(self): - return _mscl.EventTypes_clear(self) - - def get_allocator(self): - return _mscl.EventTypes_get_allocator(self) - - def pop_back(self): - return _mscl.EventTypes_pop_back(self) - - def erase(self, *args): - return _mscl.EventTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTypes_swiginit(self, _mscl.new_EventTypes(*args)) - - def push_back(self, x): - return _mscl.EventTypes_push_back(self, x) - - def front(self): - return _mscl.EventTypes_front(self) - - def back(self): - return _mscl.EventTypes_back(self) - - def assign(self, n, x): - return _mscl.EventTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTypes_reserve(self, n) - - def capacity(self): - return _mscl.EventTypes_capacity(self) - __swig_destroy__ = _mscl.delete_EventTypes - -# Register EventTypes in _mscl: -_mscl.EventTypes_swigregister(EventTypes) - -class MeasurementReferenceFrames(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MeasurementReferenceFrames_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MeasurementReferenceFrames___nonzero__(self) - - def __bool__(self): - return _mscl.MeasurementReferenceFrames___bool__(self) - - def __len__(self): - return _mscl.MeasurementReferenceFrames___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.MeasurementReferenceFrames___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.MeasurementReferenceFrames___delitem__(self, key) - - def has_key(self, key): - return _mscl.MeasurementReferenceFrames_has_key(self, key) - - def keys(self): - return _mscl.MeasurementReferenceFrames_keys(self) - - def values(self): - return _mscl.MeasurementReferenceFrames_values(self) - - def items(self): - return _mscl.MeasurementReferenceFrames_items(self) - - def __contains__(self, key): - return _mscl.MeasurementReferenceFrames___contains__(self, key) - - def key_iterator(self): - return _mscl.MeasurementReferenceFrames_key_iterator(self) - - def value_iterator(self): - return _mscl.MeasurementReferenceFrames_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.MeasurementReferenceFrames___setitem__(self, *args) - - def asdict(self): - return _mscl.MeasurementReferenceFrames_asdict(self) - - def __init__(self, *args): - _mscl.MeasurementReferenceFrames_swiginit(self, _mscl.new_MeasurementReferenceFrames(*args)) - - def empty(self): - return _mscl.MeasurementReferenceFrames_empty(self) - - def size(self): - return _mscl.MeasurementReferenceFrames_size(self) - - def swap(self, v): - return _mscl.MeasurementReferenceFrames_swap(self, v) - - def begin(self): - return _mscl.MeasurementReferenceFrames_begin(self) - - def end(self): - return _mscl.MeasurementReferenceFrames_end(self) - - def rbegin(self): - return _mscl.MeasurementReferenceFrames_rbegin(self) - - def rend(self): - return _mscl.MeasurementReferenceFrames_rend(self) - - def clear(self): - return _mscl.MeasurementReferenceFrames_clear(self) - - def get_allocator(self): - return _mscl.MeasurementReferenceFrames_get_allocator(self) - - def count(self, x): - return _mscl.MeasurementReferenceFrames_count(self, x) - - def erase(self, *args): - return _mscl.MeasurementReferenceFrames_erase(self, *args) - - def find(self, x): - return _mscl.MeasurementReferenceFrames_find(self, x) - - def lower_bound(self, x): - return _mscl.MeasurementReferenceFrames_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.MeasurementReferenceFrames_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrames - -# Register MeasurementReferenceFrames in _mscl: -_mscl.MeasurementReferenceFrames_swigregister(MeasurementReferenceFrames) - -class WsdaMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WsdaMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WsdaMap___nonzero__(self) - - def __bool__(self): - return _mscl.WsdaMap___bool__(self) - - def __len__(self): - return _mscl.WsdaMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.WsdaMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.WsdaMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.WsdaMap_has_key(self, key) - - def keys(self): - return _mscl.WsdaMap_keys(self) - - def values(self): - return _mscl.WsdaMap_values(self) - - def items(self): - return _mscl.WsdaMap_items(self) - - def __contains__(self, key): - return _mscl.WsdaMap___contains__(self, key) - - def key_iterator(self): - return _mscl.WsdaMap_key_iterator(self) - - def value_iterator(self): - return _mscl.WsdaMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.WsdaMap___setitem__(self, *args) - - def asdict(self): - return _mscl.WsdaMap_asdict(self) - - def __init__(self, *args): - _mscl.WsdaMap_swiginit(self, _mscl.new_WsdaMap(*args)) - - def empty(self): - return _mscl.WsdaMap_empty(self) - - def size(self): - return _mscl.WsdaMap_size(self) - - def swap(self, v): - return _mscl.WsdaMap_swap(self, v) - - def begin(self): - return _mscl.WsdaMap_begin(self) - - def end(self): - return _mscl.WsdaMap_end(self) - - def rbegin(self): - return _mscl.WsdaMap_rbegin(self) - - def rend(self): - return _mscl.WsdaMap_rend(self) - - def clear(self): - return _mscl.WsdaMap_clear(self) - - def get_allocator(self): - return _mscl.WsdaMap_get_allocator(self) - - def count(self, x): - return _mscl.WsdaMap_count(self, x) - - def erase(self, *args): - return _mscl.WsdaMap_erase(self, *args) - - def find(self, x): - return _mscl.WsdaMap_find(self, x) - - def lower_bound(self, x): - return _mscl.WsdaMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.WsdaMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_WsdaMap - -# Register WsdaMap in _mscl: -_mscl.WsdaMap_swigregister(WsdaMap) - -class Bins(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bins_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bins___nonzero__(self) - - def __bool__(self): - return _mscl.Bins___bool__(self) - - def __len__(self): - return _mscl.Bins___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bins___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bins___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bins___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bins___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bins___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bins___setitem__(self, *args) - - def pop(self): - return _mscl.Bins_pop(self) - - def append(self, x): - return _mscl.Bins_append(self, x) - - def empty(self): - return _mscl.Bins_empty(self) - - def size(self): - return _mscl.Bins_size(self) - - def swap(self, v): - return _mscl.Bins_swap(self, v) - - def begin(self): - return _mscl.Bins_begin(self) - - def end(self): - return _mscl.Bins_end(self) - - def rbegin(self): - return _mscl.Bins_rbegin(self) - - def rend(self): - return _mscl.Bins_rend(self) - - def clear(self): - return _mscl.Bins_clear(self) - - def get_allocator(self): - return _mscl.Bins_get_allocator(self) - - def pop_back(self): - return _mscl.Bins_pop_back(self) - - def erase(self, *args): - return _mscl.Bins_erase(self, *args) - - def __init__(self, *args): - _mscl.Bins_swiginit(self, _mscl.new_Bins(*args)) - - def push_back(self, x): - return _mscl.Bins_push_back(self, x) - - def front(self): - return _mscl.Bins_front(self) - - def back(self): - return _mscl.Bins_back(self) - - def assign(self, n, x): - return _mscl.Bins_assign(self, n, x) - - def insert(self, *args): - return _mscl.Bins_insert(self, *args) - - def reserve(self, n): - return _mscl.Bins_reserve(self, n) - - def capacity(self): - return _mscl.Bins_capacity(self) - __swig_destroy__ = _mscl.delete_Bins - -# Register Bins in _mscl: -_mscl.Bins_swigregister(Bins) - -class Error(Exception): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_swiginit(self, _mscl.new_Error(*args)) - __swig_destroy__ = _mscl.delete_Error - - def what(self): - return _mscl.Error_what(self) - - def __str__(self): - return _mscl.Error___str__(self) - -# Register Error in _mscl: -_mscl.Error_swigregister(Error) - -class Error_NotSupported(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NotSupported_swiginit(self, _mscl.new_Error_NotSupported(*args)) - __swig_destroy__ = _mscl.delete_Error_NotSupported - -# Register Error_NotSupported in _mscl: -_mscl.Error_NotSupported_swigregister(Error_NotSupported) - -class Error_NoData(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NoData_swiginit(self, _mscl.new_Error_NoData(*args)) - __swig_destroy__ = _mscl.delete_Error_NoData - -# Register Error_NoData in _mscl: -_mscl.Error_NoData_swigregister(Error_NoData) - -class Error_BadDataType(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Error_BadDataType_swiginit(self, _mscl.new_Error_BadDataType()) - __swig_destroy__ = _mscl.delete_Error_BadDataType - -# Register Error_BadDataType in _mscl: -_mscl.Error_BadDataType_swigregister(Error_BadDataType) - -class Error_UnknownSampleRate(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_UnknownSampleRate_swiginit(self, _mscl.new_Error_UnknownSampleRate(*args)) - __swig_destroy__ = _mscl.delete_Error_UnknownSampleRate - -# Register Error_UnknownSampleRate in _mscl: -_mscl.Error_UnknownSampleRate_swigregister(Error_UnknownSampleRate) - -class Error_Communication(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Communication_swiginit(self, _mscl.new_Error_Communication(*args)) - __swig_destroy__ = _mscl.delete_Error_Communication - -# Register Error_Communication in _mscl: -_mscl.Error_Communication_swigregister(Error_Communication) - -class Error_NodeCommunication(Error_Communication): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NodeCommunication_swiginit(self, _mscl.new_Error_NodeCommunication(*args)) - - def nodeAddress(self): - return _mscl.Error_NodeCommunication_nodeAddress(self) - __swig_destroy__ = _mscl.delete_Error_NodeCommunication - -# Register Error_NodeCommunication in _mscl: -_mscl.Error_NodeCommunication_swigregister(Error_NodeCommunication) - -class Error_Connection(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Connection_swiginit(self, _mscl.new_Error_Connection(*args)) - __swig_destroy__ = _mscl.delete_Error_Connection - - def code(self): - return _mscl.Error_Connection_code(self) - - def value(self): - return _mscl.Error_Connection_value(self) - -# Register Error_Connection in _mscl: -_mscl.Error_Connection_swigregister(Error_Connection) - -class Error_InvalidSerialPort(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code): - _mscl.Error_InvalidSerialPort_swiginit(self, _mscl.new_Error_InvalidSerialPort(code)) - __swig_destroy__ = _mscl.delete_Error_InvalidSerialPort - -# Register Error_InvalidSerialPort in _mscl: -_mscl.Error_InvalidSerialPort_swigregister(Error_InvalidSerialPort) - -class Error_InvalidTcpServer(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidTcpServer_swiginit(self, _mscl.new_Error_InvalidTcpServer(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidTcpServer - -# Register Error_InvalidTcpServer in _mscl: -_mscl.Error_InvalidTcpServer_swigregister(Error_InvalidTcpServer) - -class Error_InvalidUnixSocket(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidUnixSocket_swiginit(self, _mscl.new_Error_InvalidUnixSocket(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidUnixSocket - -# Register Error_InvalidUnixSocket in _mscl: -_mscl.Error_InvalidUnixSocket_swigregister(Error_InvalidUnixSocket) - -class Error_MipCmdFailed(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_MipCmdFailed_swiginit(self, _mscl.new_Error_MipCmdFailed(*args)) - __swig_destroy__ = _mscl.delete_Error_MipCmdFailed - - def code(self): - return _mscl.Error_MipCmdFailed_code(self) - - def value(self): - return _mscl.Error_MipCmdFailed_value(self) - -# Register Error_MipCmdFailed in _mscl: -_mscl.Error_MipCmdFailed_swigregister(Error_MipCmdFailed) - -class Error_InvalidConfig(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_InvalidConfig_swiginit(self, _mscl.new_Error_InvalidConfig(*args)) - __swig_destroy__ = _mscl.delete_Error_InvalidConfig - - def issues(self): - return _mscl.Error_InvalidConfig_issues(self) - -# Register Error_InvalidConfig in _mscl: -_mscl.Error_InvalidConfig_swigregister(Error_InvalidConfig) - -class Error_InvalidNodeConfig(Error_InvalidConfig): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, issues, nodeAddress): - _mscl.Error_InvalidNodeConfig_swiginit(self, _mscl.new_Error_InvalidNodeConfig(issues, nodeAddress)) - __swig_destroy__ = _mscl.delete_Error_InvalidNodeConfig - - def nodeAddress(self): - return _mscl.Error_InvalidNodeConfig_nodeAddress(self) - -# Register Error_InvalidNodeConfig in _mscl: -_mscl.Error_InvalidNodeConfig_swigregister(Error_InvalidNodeConfig) - - - diff --git a/mscl_release_assets/mscl-Windows-x86-Python3.11-v67.0.0/_mscl.pyd b/mscl_release_assets/mscl-Windows-x86-Python3.11-v67.0.0/_mscl.pyd deleted file mode 100644 index 518c484..0000000 Binary files a/mscl_release_assets/mscl-Windows-x86-Python3.11-v67.0.0/_mscl.pyd and /dev/null differ diff --git a/mscl_release_assets/mscl-Windows-x86-Python3.11-v67.0.0/mscl.py b/mscl_release_assets/mscl-Windows-x86-Python3.11-v67.0.0/mscl.py deleted file mode 100644 index da4681b..0000000 --- a/mscl_release_assets/mscl-Windows-x86-Python3.11-v67.0.0/mscl.py +++ /dev/null @@ -1,18521 +0,0 @@ -# This file was automatically generated by SWIG (http://www.swig.org). -# Version 4.0.2 -# -# Do not make changes to this file unless you know what you are doing--modify -# the SWIG interface file instead. - -from sys import version_info as _swig_python_version_info -if _swig_python_version_info < (2, 7, 0): - raise RuntimeError("Python 2.7 or later required") - -# Import the low-level C/C++ module -if __package__ or "." in __name__: - from . import _mscl -else: - import _mscl - -try: - import builtins as __builtin__ -except ImportError: - import __builtin__ - -def _swig_repr(self): - try: - strthis = "proxy of " + self.this.__repr__() - except __builtin__.Exception: - strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - - -def _swig_setattr_nondynamic_instance_variable(set): - def set_instance_attr(self, name, value): - if name == "thisown": - self.this.own(value) - elif name == "this": - set(self, name, value) - elif hasattr(self, name) and isinstance(getattr(type(self), name), property): - set(self, name, value) - else: - raise AttributeError("You cannot add instance attributes to %s" % self) - return set_instance_attr - - -def _swig_setattr_nondynamic_class_variable(set): - def set_class_attr(cls, name, value): - if hasattr(cls, name) and not isinstance(getattr(cls, name), property): - set(cls, name, value) - else: - raise AttributeError("You cannot add class attributes to %s" % cls) - return set_class_attr - - -def _swig_add_metaclass(metaclass): - """Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass""" - def wrapper(cls): - return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy()) - return wrapper - - -class _SwigNonDynamicMeta(type): - """Meta class to enforce nondynamic attributes (no new attributes) for a class""" - __setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__) - - -class SwigPyIterator(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_SwigPyIterator - - def value(self): - return _mscl.SwigPyIterator_value(self) - - def incr(self, n=1): - return _mscl.SwigPyIterator_incr(self, n) - - def decr(self, n=1): - return _mscl.SwigPyIterator_decr(self, n) - - def distance(self, x): - return _mscl.SwigPyIterator_distance(self, x) - - def equal(self, x): - return _mscl.SwigPyIterator_equal(self, x) - - def copy(self): - return _mscl.SwigPyIterator_copy(self) - - def next(self): - return _mscl.SwigPyIterator_next(self) - - def __next__(self): - return _mscl.SwigPyIterator___next__(self) - - def previous(self): - return _mscl.SwigPyIterator_previous(self) - - def advance(self, n): - return _mscl.SwigPyIterator_advance(self, n) - - def __eq__(self, x): - return _mscl.SwigPyIterator___eq__(self, x) - - def __ne__(self, x): - return _mscl.SwigPyIterator___ne__(self, x) - - def __iadd__(self, n): - return _mscl.SwigPyIterator___iadd__(self, n) - - def __isub__(self, n): - return _mscl.SwigPyIterator___isub__(self, n) - - def __add__(self, n): - return _mscl.SwigPyIterator___add__(self, n) - - def __sub__(self, *args): - return _mscl.SwigPyIterator___sub__(self, *args) - def __iter__(self): - return self - -# Register SwigPyIterator in _mscl: -_mscl.SwigPyIterator_swigregister(SwigPyIterator) - -SHARED_PTR_DISOWN = _mscl.SHARED_PTR_DISOWN -valueType_float = _mscl.valueType_float -valueType_double = _mscl.valueType_double -valueType_uint8 = _mscl.valueType_uint8 -valueType_uint16 = _mscl.valueType_uint16 -valueType_uint32 = _mscl.valueType_uint32 -valueType_int16 = _mscl.valueType_int16 -valueType_int32 = _mscl.valueType_int32 -valueType_bool = _mscl.valueType_bool -valueType_Vector = _mscl.valueType_Vector -valueType_Matrix = _mscl.valueType_Matrix -valueType_Timestamp = _mscl.valueType_Timestamp -valueType_string = _mscl.valueType_string -valueType_Bytes = _mscl.valueType_Bytes -valueType_StructuralHealth = _mscl.valueType_StructuralHealth -valueType_RfSweep = _mscl.valueType_RfSweep -valueType_ChannelMask = _mscl.valueType_ChannelMask -valueType_int8 = _mscl.valueType_int8 -valueType_uint64 = _mscl.valueType_uint64 -deviceState_idle = _mscl.deviceState_idle -deviceState_sleep = _mscl.deviceState_sleep -deviceState_sampling = _mscl.deviceState_sampling -deviceState_sampling_lostBeacon = _mscl.deviceState_sampling_lostBeacon -deviceState_sampling_inactive = _mscl.deviceState_sampling_inactive -deviceState_unknown = _mscl.deviceState_unknown -class BitMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BitMask_swiginit(self, _mscl.new_BitMask(*args)) - __swig_destroy__ = _mscl.delete_BitMask - - def __eq__(self, other): - return _mscl.BitMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.BitMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.BitMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.BitMask___gt__(self, other) - - def fromMask(self, val): - return _mscl.BitMask_fromMask(self, val) - - def toMask(self): - return _mscl.BitMask_toMask(self) - - def enabledCount(self): - return _mscl.BitMask_enabledCount(self) - - def enabled(self, bitIndex): - return _mscl.BitMask_enabled(self, bitIndex) - - def enable(self, bitIndex, enable=True): - return _mscl.BitMask_enable(self, bitIndex, enable) - - def lastBitEnabled(self): - return _mscl.BitMask_lastBitEnabled(self) - -# Register BitMask in _mscl: -_mscl.BitMask_swigregister(BitMask) - -class ChannelMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_CHANNELS = _mscl.ChannelMask_MAX_CHANNELS - - def __init__(self, *args): - _mscl.ChannelMask_swiginit(self, _mscl.new_ChannelMask(*args)) - __swig_destroy__ = _mscl.delete_ChannelMask - - def __eq__(self, other): - return _mscl.ChannelMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.ChannelMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.ChannelMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.ChannelMask___gt__(self, other) - - def fromMask(self, channelMask): - return _mscl.ChannelMask_fromMask(self, channelMask) - - def toMask(self): - return _mscl.ChannelMask_toMask(self) - - def count(self): - return _mscl.ChannelMask_count(self) - - def enabled(self, channel): - return _mscl.ChannelMask_enabled(self, channel) - - def enable(self, channel, enable=True): - return _mscl.ChannelMask_enable(self, channel, enable) - - def lastChEnabled(self): - return _mscl.ChannelMask_lastChEnabled(self) - -# Register ChannelMask in _mscl: -_mscl.ChannelMask_swigregister(ChannelMask) - -class Value(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_Value - - def storedAs(self): - return _mscl.Value_storedAs(self) - - def as_float(self): - return _mscl.Value_as_float(self) - - def as_double(self): - return _mscl.Value_as_double(self) - - def as_uint8(self): - return _mscl.Value_as_uint8(self) - - def as_uint16(self): - return _mscl.Value_as_uint16(self) - - def as_uint32(self): - return _mscl.Value_as_uint32(self) - - def as_uint64(self): - return _mscl.Value_as_uint64(self) - - def as_int8(self): - return _mscl.Value_as_int8(self) - - def as_int16(self): - return _mscl.Value_as_int16(self) - - def as_int32(self): - return _mscl.Value_as_int32(self) - - def as_bool(self): - return _mscl.Value_as_bool(self) - - def as_ChannelMask(self): - return _mscl.Value_as_ChannelMask(self) - - def as_string(self): - return _mscl.Value_as_string(self) - - def __init__(self): - _mscl.Value_swiginit(self, _mscl.new_Value()) - -# Register Value in _mscl: -_mscl.Value_swigregister(Value) - -class Bin(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, start, end, count): - _mscl.Bin_swiginit(self, _mscl.new_Bin(start, end, count)) - - def start(self): - return _mscl.Bin_start(self) - - def end(self): - return _mscl.Bin_end(self) - - def count(self): - return _mscl.Bin_count(self) - __swig_destroy__ = _mscl.delete_Bin - -# Register Bin in _mscl: -_mscl.Bin_swigregister(Bin) - -class Histogram(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, binsStart, binsSize): - _mscl.Histogram_swiginit(self, _mscl.new_Histogram(binsStart, binsSize)) - - def binsStart(self): - return _mscl.Histogram_binsStart(self) - - def binsSize(self): - return _mscl.Histogram_binsSize(self) - - def bins(self): - return _mscl.Histogram_bins(self) - - def addBin(self, bin): - return _mscl.Histogram_addBin(self, bin) - __swig_destroy__ = _mscl.delete_Histogram - -# Register Histogram in _mscl: -_mscl.Histogram_swigregister(Histogram) - -class Timestamp(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INTERNAL = _mscl.Timestamp_INTERNAL - EXTERNAL = _mscl.Timestamp_EXTERNAL - TIME_OF_ARRIVAL = _mscl.Timestamp_TIME_OF_ARRIVAL - GPS = _mscl.Timestamp_GPS - UNIX = _mscl.Timestamp_UNIX - UTC = _mscl.Timestamp_UTC - - def __init__(self, *args): - _mscl.Timestamp_swiginit(self, _mscl.new_Timestamp(*args)) - __swig_destroy__ = _mscl.delete_Timestamp - - def nanoseconds(self, *args): - return _mscl.Timestamp_nanoseconds(self, *args) - - def seconds(self, *args): - return _mscl.Timestamp_seconds(self, *args) - - def storedEpoch(self): - return _mscl.Timestamp_storedEpoch(self) - - def __str__(self): - return _mscl.Timestamp___str__(self) - - def setTime(self, *args): - return _mscl.Timestamp_setTime(self, *args) - - def setTimeNow(self): - return _mscl.Timestamp_setTimeNow(self) - - @staticmethod - def timeNow(): - return _mscl.Timestamp_timeNow() - - @staticmethod - def setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - - @staticmethod - def getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - - @staticmethod - def gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - - @staticmethod - def utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -# Register Timestamp in _mscl: -_mscl.Timestamp_swigregister(Timestamp) - -def Timestamp_timeNow(): - return _mscl.Timestamp_timeNow() - -def Timestamp_setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - -def Timestamp_getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - -def Timestamp_gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - -def Timestamp_utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -class TimeSpan(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - NANOSECONDS_PER_MICROSECOND = _mscl.TimeSpan_NANOSECONDS_PER_MICROSECOND - NANOSECONDS_PER_MILLISECOND = _mscl.TimeSpan_NANOSECONDS_PER_MILLISECOND - NANOSECONDS_PER_SECOND = _mscl.TimeSpan_NANOSECONDS_PER_SECOND - - def getNanoseconds(self): - return _mscl.TimeSpan_getNanoseconds(self) - - def getMicroseconds(self): - return _mscl.TimeSpan_getMicroseconds(self) - - def getMilliseconds(self): - return _mscl.TimeSpan_getMilliseconds(self) - - def getSeconds(self): - return _mscl.TimeSpan_getSeconds(self) - - @staticmethod - def NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - - @staticmethod - def MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - - @staticmethod - def MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - - @staticmethod - def Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - - @staticmethod - def Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - - @staticmethod - def Hours(hours): - return _mscl.TimeSpan_Hours(hours) - - @staticmethod - def Days(days): - return _mscl.TimeSpan_Days(days) - __swig_destroy__ = _mscl.delete_TimeSpan - -# Register TimeSpan in _mscl: -_mscl.TimeSpan_swigregister(TimeSpan) - -def TimeSpan_NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - -def TimeSpan_MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - -def TimeSpan_MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - -def TimeSpan_Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - -def TimeSpan_Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - -def TimeSpan_Hours(hours): - return _mscl.TimeSpan_Hours(hours) - -def TimeSpan_Days(days): - return _mscl.TimeSpan_Days(days) - -class Version(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Version_swiginit(self, _mscl.new_Version(*args)) - - def __eq__(self, cmp): - return _mscl.Version___eq__(self, cmp) - - def __ne__(self, cmp): - return _mscl.Version___ne__(self, cmp) - - def __lt__(self, cmp): - return _mscl.Version___lt__(self, cmp) - - def __le__(self, cmp): - return _mscl.Version___le__(self, cmp) - - def __gt__(self, cmp): - return _mscl.Version___gt__(self, cmp) - - def __ge__(self, cmp): - return _mscl.Version___ge__(self, cmp) - - def __str__(self): - return _mscl.Version___str__(self) - - def fromString(self, strVersion): - return _mscl.Version_fromString(self, strVersion) - - def majorPart(self): - return _mscl.Version_majorPart(self) - - def minorPart(self): - return _mscl.Version_minorPart(self) - - def patchPart(self): - return _mscl.Version_patchPart(self) - __swig_destroy__ = _mscl.delete_Version - -# Register Version in _mscl: -_mscl.Version_swigregister(Version) - -class DeviceInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.DeviceInfo_connectionType_serial - connectionType_tcp = _mscl.DeviceInfo_connectionType_tcp - - def __init__(self, *args): - _mscl.DeviceInfo_swiginit(self, _mscl.new_DeviceInfo(*args)) - - def description(self): - return _mscl.DeviceInfo_description(self) - - def serial(self): - return _mscl.DeviceInfo_serial(self) - - def baudRate(self): - return _mscl.DeviceInfo_baudRate(self) - - def connectionType(self): - return _mscl.DeviceInfo_connectionType(self) - __swig_destroy__ = _mscl.delete_DeviceInfo - -# Register DeviceInfo in _mscl: -_mscl.DeviceInfo_swigregister(DeviceInfo) -cvar = _mscl.cvar -MSCL_VERSION = cvar.MSCL_VERSION - -class Devices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def listBaseStations(): - return _mscl.Devices_listBaseStations() - - @staticmethod - def listInertialDevices(): - return _mscl.Devices_listInertialDevices() - - @staticmethod - def listPorts(): - return _mscl.Devices_listPorts() - __swig_destroy__ = _mscl.delete_Devices - -# Register Devices in _mscl: -_mscl.Devices_swigregister(Devices) - -def Devices_listBaseStations(): - return _mscl.Devices_listBaseStations() - -def Devices_listInertialDevices(): - return _mscl.Devices_listInertialDevices() - -def Devices_listPorts(): - return _mscl.Devices_listPorts() - -class ConnectionDebugData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ConnectionDebugData_swiginit(self, _mscl.new_ConnectionDebugData(*args)) - - def fromRead(self): - return _mscl.ConnectionDebugData_fromRead(self) - - def timestamp(self): - return _mscl.ConnectionDebugData_timestamp(self) - - def data(self): - return _mscl.ConnectionDebugData_data(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugData - -# Register ConnectionDebugData in _mscl: -_mscl.ConnectionDebugData_swigregister(ConnectionDebugData) - -class Connection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.Connection_connectionType_serial - connectionType_tcp = _mscl.Connection_connectionType_tcp - connectionType_webSocket = _mscl.Connection_connectionType_webSocket - connectionType_unixSocket = _mscl.Connection_connectionType_unixSocket - - def __init__(self): - _mscl.Connection_swiginit(self, _mscl.new_Connection()) - - @staticmethod - def Serial(*args): - return _mscl.Connection_Serial(*args) - - @staticmethod - def TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - - @staticmethod - def WebSocket(host, port): - return _mscl.Connection_WebSocket(host, port) - - @staticmethod - def Mock(): - return _mscl.Connection_Mock() - - def description(self): - return _mscl.Connection_description(self) - - def port(self): - return _mscl.Connection_port(self) - - def type(self): - return _mscl.Connection_type(self) - - def disconnect(self): - return _mscl.Connection_disconnect(self) - - def reconnect(self): - return _mscl.Connection_reconnect(self) - - def write(self, bytes): - return _mscl.Connection_write(self, bytes) - - def writeStr(self, bytes): - return _mscl.Connection_writeStr(self, bytes) - - def clearBuffer(self): - return _mscl.Connection_clearBuffer(self) - - def byteReadPos(self): - return _mscl.Connection_byteReadPos(self) - - def byteAppendPos(self): - return _mscl.Connection_byteAppendPos(self) - - def rawByteMode(self, *args): - return _mscl.Connection_rawByteMode(self, *args) - - def getRawBytes(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytes(self, timeout, maxBytes, minBytes) - - def getRawBytesStr(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytesStr(self, timeout, maxBytes, minBytes) - - def getRawBytesWithPattern(self, pattern, timeout=0): - return _mscl.Connection_getRawBytesWithPattern(self, pattern, timeout) - - def debugMode(self, *args): - return _mscl.Connection_debugMode(self, *args) - - def getDebugData(self, timeout=0): - return _mscl.Connection_getDebugData(self, timeout) - - def updateBaudRate(self, baudRate): - return _mscl.Connection_updateBaudRate(self, baudRate) - __swig_destroy__ = _mscl.delete_Connection - -# Register Connection in _mscl: -_mscl.Connection_swigregister(Connection) - -def Connection_Serial(*args): - return _mscl.Connection_Serial(*args) - -def Connection_TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - -def Connection_WebSocket(host, port): - return _mscl.Connection_WebSocket(host, port) - -def Connection_Mock(): - return _mscl.Connection_Mock() - -class WsdaInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.WsdaInfo_swiginit(self, _mscl.new_WsdaInfo(*args)) - - def ipAddress(self): - return _mscl.WsdaInfo_ipAddress(self) - - def port(self): - return _mscl.WsdaInfo_port(self) - - def name(self): - return _mscl.WsdaInfo_name(self) - __swig_destroy__ = _mscl.delete_WsdaInfo - -# Register WsdaInfo in _mscl: -_mscl.WsdaInfo_swigregister(WsdaInfo) - -class WsdaFinder(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WsdaFinder_swiginit(self, _mscl.new_WsdaFinder()) - __swig_destroy__ = _mscl.delete_WsdaFinder - - def found(self): - return _mscl.WsdaFinder_found(self) - - def restart(self): - return _mscl.WsdaFinder_restart(self) - -# Register WsdaFinder in _mscl: -_mscl.WsdaFinder_swigregister(WsdaFinder) - -class WirelessTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - beacon_none = _mscl.WirelessTypes_beacon_none - beacon_internalTimer = _mscl.WirelessTypes_beacon_internalTimer - beacon_internalPPS = _mscl.WirelessTypes_beacon_internalPPS - beacon_externalPPS = _mscl.WirelessTypes_beacon_externalPPS - microcontroller_18F452 = _mscl.WirelessTypes_microcontroller_18F452 - microcontroller_18F4620 = _mscl.WirelessTypes_microcontroller_18F4620 - microcontroller_18F46K20 = _mscl.WirelessTypes_microcontroller_18F46K20 - microcontroller_18F67K90 = _mscl.WirelessTypes_microcontroller_18F67K90 - microcontroller_EFM32WG990F256 = _mscl.WirelessTypes_microcontroller_EFM32WG990F256 - microcontroller_EFR32FG1P132F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32FG1P132F256GM48 - microcontroller_EFR32MG1P232F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32MG1P232F256GM48 - collectionMethod_logOnly = _mscl.WirelessTypes_collectionMethod_logOnly - collectionMethod_transmitOnly = _mscl.WirelessTypes_collectionMethod_transmitOnly - collectionMethod_logAndTransmit = _mscl.WirelessTypes_collectionMethod_logAndTransmit - dataType_first = _mscl.WirelessTypes_dataType_first - dataType_uint16_shifted = _mscl.WirelessTypes_dataType_uint16_shifted - dataType_float32 = _mscl.WirelessTypes_dataType_float32 - dataType_uint16_12bitRes = _mscl.WirelessTypes_dataType_uint16_12bitRes - dataType_uint32 = _mscl.WirelessTypes_dataType_uint32 - dataType_uint16 = _mscl.WirelessTypes_dataType_uint16 - dataType_float32_noCals = _mscl.WirelessTypes_dataType_float32_noCals - dataType_uint24_18bitRes = _mscl.WirelessTypes_dataType_uint24_18bitRes - dataType_uint16_18bitTrunc = _mscl.WirelessTypes_dataType_uint16_18bitTrunc - dataType_int24_20bit = _mscl.WirelessTypes_dataType_int24_20bit - dataType_int16_20bitTrunc = _mscl.WirelessTypes_dataType_int16_20bitTrunc - dataType_uint24 = _mscl.WirelessTypes_dataType_uint24 - dataType_uint16_24bitTrunc = _mscl.WirelessTypes_dataType_uint16_24bitTrunc - dataType_int16_x10 = _mscl.WirelessTypes_dataType_int16_x10 - dataType_last = _mscl.WirelessTypes_dataType_last - dataFormat_raw_uint16 = _mscl.WirelessTypes_dataFormat_raw_uint16 - dataFormat_cal_float = _mscl.WirelessTypes_dataFormat_cal_float - dataFormat_raw_uint24 = _mscl.WirelessTypes_dataFormat_raw_uint24 - dataFormat_raw_int24 = _mscl.WirelessTypes_dataFormat_raw_int24 - dataFormat_raw_int16 = _mscl.WirelessTypes_dataFormat_raw_int16 - dataFormat_cal_int16_x10 = _mscl.WirelessTypes_dataFormat_cal_int16_x10 - syncMode_continuous = _mscl.WirelessTypes_syncMode_continuous - syncMode_burst = _mscl.WirelessTypes_syncMode_burst - samplingMode_sync = _mscl.WirelessTypes_samplingMode_sync - samplingMode_syncBurst = _mscl.WirelessTypes_samplingMode_syncBurst - samplingMode_nonSync = _mscl.WirelessTypes_samplingMode_nonSync - samplingMode_armedDatalog = _mscl.WirelessTypes_samplingMode_armedDatalog - samplingMode_syncEvent = _mscl.WirelessTypes_samplingMode_syncEvent - samplingMode_nonSyncEvent = _mscl.WirelessTypes_samplingMode_nonSyncEvent - defaultMode_idle = _mscl.WirelessTypes_defaultMode_idle - defaultMode_ldc = _mscl.WirelessTypes_defaultMode_ldc - defaultMode_datalog = _mscl.WirelessTypes_defaultMode_datalog - defaultMode_sleep = _mscl.WirelessTypes_defaultMode_sleep - defaultMode_sync = _mscl.WirelessTypes_defaultMode_sync - freq_unknown = _mscl.WirelessTypes_freq_unknown - freq_11 = _mscl.WirelessTypes_freq_11 - freq_12 = _mscl.WirelessTypes_freq_12 - freq_13 = _mscl.WirelessTypes_freq_13 - freq_14 = _mscl.WirelessTypes_freq_14 - freq_15 = _mscl.WirelessTypes_freq_15 - freq_16 = _mscl.WirelessTypes_freq_16 - freq_17 = _mscl.WirelessTypes_freq_17 - freq_18 = _mscl.WirelessTypes_freq_18 - freq_19 = _mscl.WirelessTypes_freq_19 - freq_20 = _mscl.WirelessTypes_freq_20 - freq_21 = _mscl.WirelessTypes_freq_21 - freq_22 = _mscl.WirelessTypes_freq_22 - freq_23 = _mscl.WirelessTypes_freq_23 - freq_24 = _mscl.WirelessTypes_freq_24 - freq_25 = _mscl.WirelessTypes_freq_25 - freq_26 = _mscl.WirelessTypes_freq_26 - power_20dBm = _mscl.WirelessTypes_power_20dBm - power_16dBm = _mscl.WirelessTypes_power_16dBm - power_15dBm = _mscl.WirelessTypes_power_15dBm - power_12dBm = _mscl.WirelessTypes_power_12dBm - power_11dBm = _mscl.WirelessTypes_power_11dBm - power_10dBm = _mscl.WirelessTypes_power_10dBm - power_5dBm = _mscl.WirelessTypes_power_5dBm - power_1dBm = _mscl.WirelessTypes_power_1dBm - power_0dBm = _mscl.WirelessTypes_power_0dBm - retransmission_off = _mscl.WirelessTypes_retransmission_off - retransmission_on = _mscl.WirelessTypes_retransmission_on - retransmission_disabled = _mscl.WirelessTypes_retransmission_disabled - trigger_userInit = _mscl.WirelessTypes_trigger_userInit - trigger_ceiling = _mscl.WirelessTypes_trigger_ceiling - trigger_floor = _mscl.WirelessTypes_trigger_floor - trigger_rampUp = _mscl.WirelessTypes_trigger_rampUp - trigger_rampDown = _mscl.WirelessTypes_trigger_rampDown - equation_none = _mscl.WirelessTypes_equation_none - equation_standard = _mscl.WirelessTypes_equation_standard - unit_none = _mscl.WirelessTypes_unit_none - unit_other_bits = _mscl.WirelessTypes_unit_other_bits - unit_strain_strain = _mscl.WirelessTypes_unit_strain_strain - unit_strain_microStrain = _mscl.WirelessTypes_unit_strain_microStrain - unit_accel_g = _mscl.WirelessTypes_unit_accel_g - unit_accel_mPerSec2 = _mscl.WirelessTypes_unit_accel_mPerSec2 - unit_volts_volts = _mscl.WirelessTypes_unit_volts_volts - unit_volts_millivolts = _mscl.WirelessTypes_unit_volts_millivolts - unit_volts_microvolts = _mscl.WirelessTypes_unit_volts_microvolts - unit_temp_celsius = _mscl.WirelessTypes_unit_temp_celsius - unit_temp_kelvin = _mscl.WirelessTypes_unit_temp_kelvin - unit_temp_fahrenheit = _mscl.WirelessTypes_unit_temp_fahrenheit - unit_displacement_meters = _mscl.WirelessTypes_unit_displacement_meters - unit_displacement_millimeters = _mscl.WirelessTypes_unit_displacement_millimeters - unit_displacement_micrometers = _mscl.WirelessTypes_unit_displacement_micrometers - unit_force_lbf = _mscl.WirelessTypes_unit_force_lbf - unit_force_newtons = _mscl.WirelessTypes_unit_force_newtons - unit_force_kiloNewtons = _mscl.WirelessTypes_unit_force_kiloNewtons - unit_mass_kilograms = _mscl.WirelessTypes_unit_mass_kilograms - unit_pressure_bar = _mscl.WirelessTypes_unit_pressure_bar - unit_pressure_psi = _mscl.WirelessTypes_unit_pressure_psi - unit_pressure_atm = _mscl.WirelessTypes_unit_pressure_atm - unit_pressure_mmHg = _mscl.WirelessTypes_unit_pressure_mmHg - unit_pressure_pascal = _mscl.WirelessTypes_unit_pressure_pascal - unit_pressure_megaPascal = _mscl.WirelessTypes_unit_pressure_megaPascal - unit_pressure_kiloPascal = _mscl.WirelessTypes_unit_pressure_kiloPascal - unit_angDisplacement_degrees = _mscl.WirelessTypes_unit_angDisplacement_degrees - unit_angVelocity_degreesPerSec = _mscl.WirelessTypes_unit_angVelocity_degreesPerSec - unit_angVelocity_radiansPerSec = _mscl.WirelessTypes_unit_angVelocity_radiansPerSec - unit_other_percent = _mscl.WirelessTypes_unit_other_percent - unit_freq_rpm = _mscl.WirelessTypes_unit_freq_rpm - unit_freq_hertz = _mscl.WirelessTypes_unit_freq_hertz - unit_rh_percentRh = _mscl.WirelessTypes_unit_rh_percentRh - unit_other_mVperV = _mscl.WirelessTypes_unit_other_mVperV - unit_accel_milliG = _mscl.WirelessTypes_unit_accel_milliG - unit_accel_ftPerSec2 = _mscl.WirelessTypes_unit_accel_ftPerSec2 - unit_other_percentLife = _mscl.WirelessTypes_unit_other_percentLife - unit_other_count = _mscl.WirelessTypes_unit_other_count - unit_displacement_feet = _mscl.WirelessTypes_unit_displacement_feet - unit_displacement_inches = _mscl.WirelessTypes_unit_displacement_inches - unit_displacement_yards = _mscl.WirelessTypes_unit_displacement_yards - unit_displacement_miles = _mscl.WirelessTypes_unit_displacement_miles - unit_displacement_nautMiles = _mscl.WirelessTypes_unit_displacement_nautMiles - unit_displacement_thouInch = _mscl.WirelessTypes_unit_displacement_thouInch - unit_displacement_hundInch = _mscl.WirelessTypes_unit_displacement_hundInch - unit_displacement_kilometers = _mscl.WirelessTypes_unit_displacement_kilometers - unit_displacement_centimeters = _mscl.WirelessTypes_unit_displacement_centimeters - unit_irradiance_wattsPerSqMeter = _mscl.WirelessTypes_unit_irradiance_wattsPerSqMeter - unit_par_microEinstein = _mscl.WirelessTypes_unit_par_microEinstein - unit_mass_pound = _mscl.WirelessTypes_unit_mass_pound - unit_power_watt = _mscl.WirelessTypes_unit_power_watt - unit_power_milliwatt = _mscl.WirelessTypes_unit_power_milliwatt - unit_power_horsepower = _mscl.WirelessTypes_unit_power_horsepower - unit_reactivePower_var = _mscl.WirelessTypes_unit_reactivePower_var - unit_energy_wattHour = _mscl.WirelessTypes_unit_energy_wattHour - unit_energy_kiloWattHour = _mscl.WirelessTypes_unit_energy_kiloWattHour - unit_reactiveEnergy_VARh = _mscl.WirelessTypes_unit_reactiveEnergy_VARh - unit_reactiveEnergy_kVARh = _mscl.WirelessTypes_unit_reactiveEnergy_kVARh - unit_current_ampere = _mscl.WirelessTypes_unit_current_ampere - unit_current_milliampere = _mscl.WirelessTypes_unit_current_milliampere - unit_current_microampere = _mscl.WirelessTypes_unit_current_microampere - unit_pressure_millibar = _mscl.WirelessTypes_unit_pressure_millibar - unit_pressure_inHg = _mscl.WirelessTypes_unit_pressure_inHg - unit_rssi_dBm = _mscl.WirelessTypes_unit_rssi_dBm - unit_freq_kiloHertz = _mscl.WirelessTypes_unit_freq_kiloHertz - unit_angDisplacement_radians = _mscl.WirelessTypes_unit_angDisplacement_radians - unit_velocity_metersPerSec = _mscl.WirelessTypes_unit_velocity_metersPerSec - unit_velocity_kilometersPerSec = _mscl.WirelessTypes_unit_velocity_kilometersPerSec - unit_velocity_kilometersPerHr = _mscl.WirelessTypes_unit_velocity_kilometersPerHr - unit_velocity_milesPerHr = _mscl.WirelessTypes_unit_velocity_milesPerHr - unit_velocity_knots = _mscl.WirelessTypes_unit_velocity_knots - unit_volume_cubicMeter = _mscl.WirelessTypes_unit_volume_cubicMeter - unit_volume_cubicFt = _mscl.WirelessTypes_unit_volume_cubicFt - unit_volume_liters = _mscl.WirelessTypes_unit_volume_liters - unit_volume_gallon = _mscl.WirelessTypes_unit_volume_gallon - unit_flowRate_cubicMetersPerSec = _mscl.WirelessTypes_unit_flowRate_cubicMetersPerSec - unit_flowRate_cubicFtPerSec = _mscl.WirelessTypes_unit_flowRate_cubicFtPerSec - unit_torque_newtonMeter = _mscl.WirelessTypes_unit_torque_newtonMeter - unit_torque_footPounds = _mscl.WirelessTypes_unit_torque_footPounds - unit_torque_inchPounds = _mscl.WirelessTypes_unit_torque_inchPounds - unit_time_secs = _mscl.WirelessTypes_unit_time_secs - unit_time_nanosecs = _mscl.WirelessTypes_unit_time_nanosecs - unit_time_microsecs = _mscl.WirelessTypes_unit_time_microsecs - unit_time_millisecs = _mscl.WirelessTypes_unit_time_millisecs - unit_time_minutes = _mscl.WirelessTypes_unit_time_minutes - unit_time_hours = _mscl.WirelessTypes_unit_time_hours - unit_time_days = _mscl.WirelessTypes_unit_time_days - unit_time_weeks = _mscl.WirelessTypes_unit_time_weeks - unit_other_value = _mscl.WirelessTypes_unit_other_value - unit_magneticFlux_gauss = _mscl.WirelessTypes_unit_magneticFlux_gauss - unit_other_gSec = _mscl.WirelessTypes_unit_other_gSec - unit_other_secsPerSec = _mscl.WirelessTypes_unit_other_secsPerSec - unit_rssi_dBHz = _mscl.WirelessTypes_unit_rssi_dBHz - unit_density_kgPerMeter3 = _mscl.WirelessTypes_unit_density_kgPerMeter3 - unit_other_unitless = _mscl.WirelessTypes_unit_other_unitless - unit_velocity_inchesPerSec = _mscl.WirelessTypes_unit_velocity_inchesPerSec - unit_force_kg = _mscl.WirelessTypes_unit_force_kg - unit_rawVoltage_volts = _mscl.WirelessTypes_unit_rawVoltage_volts - unit_rawVoltage_millivolts = _mscl.WirelessTypes_unit_rawVoltage_millivolts - unit_rawVoltage_microvolts = _mscl.WirelessTypes_unit_rawVoltage_microvolts - unit_resistance_ohm = _mscl.WirelessTypes_unit_resistance_ohm - unit_resistance_milliohm = _mscl.WirelessTypes_unit_resistance_milliohm - unit_resistance_kiloohm = _mscl.WirelessTypes_unit_resistance_kiloohm - unit_velocity_mmPerSec = _mscl.WirelessTypes_unit_velocity_mmPerSec - unit_mass_grams = _mscl.WirelessTypes_unit_mass_grams - unit_mass_ton = _mscl.WirelessTypes_unit_mass_ton - unit_mass_tonne = _mscl.WirelessTypes_unit_mass_tonne - chType_none = _mscl.WirelessTypes_chType_none - chType_fullDifferential = _mscl.WirelessTypes_chType_fullDifferential - chType_singleEnded = _mscl.WirelessTypes_chType_singleEnded - chType_battery = _mscl.WirelessTypes_chType_battery - chType_temperature = _mscl.WirelessTypes_chType_temperature - chType_rh = _mscl.WirelessTypes_chType_rh - chType_acceleration = _mscl.WirelessTypes_chType_acceleration - chType_displacement = _mscl.WirelessTypes_chType_displacement - chType_voltage = _mscl.WirelessTypes_chType_voltage - chType_diffTemperature = _mscl.WirelessTypes_chType_diffTemperature - chType_digital = _mscl.WirelessTypes_chType_digital - chType_tilt = _mscl.WirelessTypes_chType_tilt - voltageType_singleEnded = _mscl.WirelessTypes_voltageType_singleEnded - voltageType_differential = _mscl.WirelessTypes_voltageType_differential - settling_4ms = _mscl.WirelessTypes_settling_4ms - settling_8ms = _mscl.WirelessTypes_settling_8ms - settling_16ms = _mscl.WirelessTypes_settling_16ms - settling_32ms = _mscl.WirelessTypes_settling_32ms - settling_40ms = _mscl.WirelessTypes_settling_40ms - settling_48ms = _mscl.WirelessTypes_settling_48ms - settling_60ms = _mscl.WirelessTypes_settling_60ms - settling_101ms_90db = _mscl.WirelessTypes_settling_101ms_90db - settling_120ms_80db = _mscl.WirelessTypes_settling_120ms_80db - settling_120ms_65db = _mscl.WirelessTypes_settling_120ms_65db - settling_160ms_69db = _mscl.WirelessTypes_settling_160ms_69db - settling_200ms = _mscl.WirelessTypes_settling_200ms - transducer_thermocouple = _mscl.WirelessTypes_transducer_thermocouple - transducer_rtd = _mscl.WirelessTypes_transducer_rtd - transducer_thermistor = _mscl.WirelessTypes_transducer_thermistor - tc_uncompensated = _mscl.WirelessTypes_tc_uncompensated - tc_K = _mscl.WirelessTypes_tc_K - tc_J = _mscl.WirelessTypes_tc_J - tc_R = _mscl.WirelessTypes_tc_R - tc_S = _mscl.WirelessTypes_tc_S - tc_T = _mscl.WirelessTypes_tc_T - tc_E = _mscl.WirelessTypes_tc_E - tc_B = _mscl.WirelessTypes_tc_B - tc_N = _mscl.WirelessTypes_tc_N - tc_customPolynomial = _mscl.WirelessTypes_tc_customPolynomial - rtd_uncompensated = _mscl.WirelessTypes_rtd_uncompensated - rtd_pt10 = _mscl.WirelessTypes_rtd_pt10 - rtd_pt50 = _mscl.WirelessTypes_rtd_pt50 - rtd_pt100 = _mscl.WirelessTypes_rtd_pt100 - rtd_pt200 = _mscl.WirelessTypes_rtd_pt200 - rtd_pt500 = _mscl.WirelessTypes_rtd_pt500 - rtd_pt1000 = _mscl.WirelessTypes_rtd_pt1000 - rtd_2wire = _mscl.WirelessTypes_rtd_2wire - rtd_3wire = _mscl.WirelessTypes_rtd_3wire - rtd_4wire = _mscl.WirelessTypes_rtd_4wire - thermistor_uncompensated = _mscl.WirelessTypes_thermistor_uncompensated - thermistor_44004_44033 = _mscl.WirelessTypes_thermistor_44004_44033 - thermistor_44005_44030 = _mscl.WirelessTypes_thermistor_44005_44030 - thermistor_44007_44034 = _mscl.WirelessTypes_thermistor_44007_44034 - thermistor_44006_44031 = _mscl.WirelessTypes_thermistor_44006_44031 - thermistor_44008_44032 = _mscl.WirelessTypes_thermistor_44008_44032 - thermistor_ysi_400 = _mscl.WirelessTypes_thermistor_ysi_400 - sampleRate_104170Hz = _mscl.WirelessTypes_sampleRate_104170Hz - sampleRate_78125Hz = _mscl.WirelessTypes_sampleRate_78125Hz - sampleRate_62500Hz = _mscl.WirelessTypes_sampleRate_62500Hz - sampleRate_25000Hz = _mscl.WirelessTypes_sampleRate_25000Hz - sampleRate_12500Hz = _mscl.WirelessTypes_sampleRate_12500Hz - sampleRate_3200Hz = _mscl.WirelessTypes_sampleRate_3200Hz - sampleRate_1600Hz = _mscl.WirelessTypes_sampleRate_1600Hz - sampleRate_800Hz = _mscl.WirelessTypes_sampleRate_800Hz - sampleRate_300Hz = _mscl.WirelessTypes_sampleRate_300Hz - sampleRate_1kHz = _mscl.WirelessTypes_sampleRate_1kHz - sampleRate_2kHz = _mscl.WirelessTypes_sampleRate_2kHz - sampleRate_3kHz = _mscl.WirelessTypes_sampleRate_3kHz - sampleRate_4kHz = _mscl.WirelessTypes_sampleRate_4kHz - sampleRate_5kHz = _mscl.WirelessTypes_sampleRate_5kHz - sampleRate_6kHz = _mscl.WirelessTypes_sampleRate_6kHz - sampleRate_7kHz = _mscl.WirelessTypes_sampleRate_7kHz - sampleRate_8kHz = _mscl.WirelessTypes_sampleRate_8kHz - sampleRate_9kHz = _mscl.WirelessTypes_sampleRate_9kHz - sampleRate_10kHz = _mscl.WirelessTypes_sampleRate_10kHz - sampleRate_20kHz = _mscl.WirelessTypes_sampleRate_20kHz - sampleRate_30kHz = _mscl.WirelessTypes_sampleRate_30kHz - sampleRate_40kHz = _mscl.WirelessTypes_sampleRate_40kHz - sampleRate_50kHz = _mscl.WirelessTypes_sampleRate_50kHz - sampleRate_60kHz = _mscl.WirelessTypes_sampleRate_60kHz - sampleRate_70kHz = _mscl.WirelessTypes_sampleRate_70kHz - sampleRate_80kHz = _mscl.WirelessTypes_sampleRate_80kHz - sampleRate_90kHz = _mscl.WirelessTypes_sampleRate_90kHz - sampleRate_100kHz = _mscl.WirelessTypes_sampleRate_100kHz - sampleRate_887Hz = _mscl.WirelessTypes_sampleRate_887Hz - sampleRate_8192Hz = _mscl.WirelessTypes_sampleRate_8192Hz - sampleRate_4096Hz = _mscl.WirelessTypes_sampleRate_4096Hz - sampleRate_2048Hz = _mscl.WirelessTypes_sampleRate_2048Hz - sampleRate_1024Hz = _mscl.WirelessTypes_sampleRate_1024Hz - sampleRate_512Hz = _mscl.WirelessTypes_sampleRate_512Hz - sampleRate_256Hz = _mscl.WirelessTypes_sampleRate_256Hz - sampleRate_128Hz = _mscl.WirelessTypes_sampleRate_128Hz - sampleRate_64Hz = _mscl.WirelessTypes_sampleRate_64Hz - sampleRate_32Hz = _mscl.WirelessTypes_sampleRate_32Hz - sampleRate_16Hz = _mscl.WirelessTypes_sampleRate_16Hz - sampleRate_8Hz = _mscl.WirelessTypes_sampleRate_8Hz - sampleRate_4Hz = _mscl.WirelessTypes_sampleRate_4Hz - sampleRate_2Hz = _mscl.WirelessTypes_sampleRate_2Hz - sampleRate_1Hz = _mscl.WirelessTypes_sampleRate_1Hz - sampleRate_2Sec = _mscl.WirelessTypes_sampleRate_2Sec - sampleRate_5Sec = _mscl.WirelessTypes_sampleRate_5Sec - sampleRate_10Sec = _mscl.WirelessTypes_sampleRate_10Sec - sampleRate_30Sec = _mscl.WirelessTypes_sampleRate_30Sec - sampleRate_1Min = _mscl.WirelessTypes_sampleRate_1Min - sampleRate_2Min = _mscl.WirelessTypes_sampleRate_2Min - sampleRate_5Min = _mscl.WirelessTypes_sampleRate_5Min - sampleRate_10Min = _mscl.WirelessTypes_sampleRate_10Min - sampleRate_30Min = _mscl.WirelessTypes_sampleRate_30Min - sampleRate_60Min = _mscl.WirelessTypes_sampleRate_60Min - sampleRate_24Hours = _mscl.WirelessTypes_sampleRate_24Hours - region_usa = _mscl.WirelessTypes_region_usa - region_europeanUnion = _mscl.WirelessTypes_region_europeanUnion - region_japan = _mscl.WirelessTypes_region_japan - region_other = _mscl.WirelessTypes_region_other - region_brazil = _mscl.WirelessTypes_region_brazil - region_china = _mscl.WirelessTypes_region_china - region_australia_newzealand = _mscl.WirelessTypes_region_australia_newzealand - region_singapore = _mscl.WirelessTypes_region_singapore - region_canada = _mscl.WirelessTypes_region_canada - region_southAfrica = _mscl.WirelessTypes_region_southAfrica - region_indonesia = _mscl.WirelessTypes_region_indonesia - region_taiwan = _mscl.WirelessTypes_region_taiwan - chSetting_inputRange = _mscl.WirelessTypes_chSetting_inputRange - chSetting_filterSettlingTime = _mscl.WirelessTypes_chSetting_filterSettlingTime - chSetting_thermocoupleType = _mscl.WirelessTypes_chSetting_thermocoupleType - chSetting_linearEquation = _mscl.WirelessTypes_chSetting_linearEquation - chSetting_unit = _mscl.WirelessTypes_chSetting_unit - chSetting_equationType = _mscl.WirelessTypes_chSetting_equationType - chSetting_hardwareOffset = _mscl.WirelessTypes_chSetting_hardwareOffset - chSetting_autoBalance = _mscl.WirelessTypes_chSetting_autoBalance - chSetting_gaugeFactor = _mscl.WirelessTypes_chSetting_gaugeFactor - chSetting_antiAliasingFilter = _mscl.WirelessTypes_chSetting_antiAliasingFilter - chSetting_legacyShuntCal = _mscl.WirelessTypes_chSetting_legacyShuntCal - chSetting_autoShuntCal = _mscl.WirelessTypes_chSetting_autoShuntCal - chSetting_lowPassFilter = _mscl.WirelessTypes_chSetting_lowPassFilter - chSetting_highPassFilter = _mscl.WirelessTypes_chSetting_highPassFilter - chSetting_tempSensorOptions = _mscl.WirelessTypes_chSetting_tempSensorOptions - chSetting_debounceFilter = _mscl.WirelessTypes_chSetting_debounceFilter - chSetting_pullUpResistor = _mscl.WirelessTypes_chSetting_pullUpResistor - chSetting_factoryLinearEq = _mscl.WirelessTypes_chSetting_factoryLinearEq - chSetting_factoryUnit = _mscl.WirelessTypes_chSetting_factoryUnit - chSetting_factoryEqType = _mscl.WirelessTypes_chSetting_factoryEqType - autobalance_success = _mscl.WirelessTypes_autobalance_success - autobalance_maybeInvalid = _mscl.WirelessTypes_autobalance_maybeInvalid - autobalance_notSupportedByNode = _mscl.WirelessTypes_autobalance_notSupportedByNode - autobalance_notSupportedByCh = _mscl.WirelessTypes_autobalance_notSupportedByCh - autobalance_targetOutOfRange = _mscl.WirelessTypes_autobalance_targetOutOfRange - autobalance_failed = _mscl.WirelessTypes_autobalance_failed - autobalance_legacyNone = _mscl.WirelessTypes_autobalance_legacyNone - autobalance_notComplete = _mscl.WirelessTypes_autobalance_notComplete - autocal_success = _mscl.WirelessTypes_autocal_success - autocal_maybeInvalid_applied = _mscl.WirelessTypes_autocal_maybeInvalid_applied - autocal_maybeInvalid_notApplied = _mscl.WirelessTypes_autocal_maybeInvalid_notApplied - autocal_notComplete = _mscl.WirelessTypes_autocal_notComplete - autocalError_none = _mscl.WirelessTypes_autocalError_none - autocalError_sensorDetached = _mscl.WirelessTypes_autocalError_sensorDetached - autocalError_sensorShorted = _mscl.WirelessTypes_autocalError_sensorShorted - autocalError_unsupportedChannel = _mscl.WirelessTypes_autocalError_unsupportedChannel - autocalError_baseHighRail = _mscl.WirelessTypes_autocalError_baseHighRail - autocalError_baseLowRail = _mscl.WirelessTypes_autocalError_baseLowRail - autocalError_shuntHighRail = _mscl.WirelessTypes_autocalError_shuntHighRail - autocalError_shuntLowRail = _mscl.WirelessTypes_autocalError_shuntLowRail - autocalError_ramp = _mscl.WirelessTypes_autocalError_ramp - autocalError_noShunt = _mscl.WirelessTypes_autocalError_noShunt - autocalError_timeout = _mscl.WirelessTypes_autocalError_timeout - fatigueMode_angleStrain = _mscl.WirelessTypes_fatigueMode_angleStrain - fatigueMode_distributedAngle = _mscl.WirelessTypes_fatigueMode_distributedAngle - fatigueMode_rawGaugeStrain = _mscl.WirelessTypes_fatigueMode_rawGaugeStrain - eventTrigger_ceiling = _mscl.WirelessTypes_eventTrigger_ceiling - eventTrigger_floor = _mscl.WirelessTypes_eventTrigger_floor - filter_33000hz = _mscl.WirelessTypes_filter_33000hz - filter_20000hz = _mscl.WirelessTypes_filter_20000hz - filter_10000hz = _mscl.WirelessTypes_filter_10000hz - filter_5222hz = _mscl.WirelessTypes_filter_5222hz - filter_5000hz = _mscl.WirelessTypes_filter_5000hz - filter_4416hz = _mscl.WirelessTypes_filter_4416hz - filter_4096hz = _mscl.WirelessTypes_filter_4096hz - filter_4000hz = _mscl.WirelessTypes_filter_4000hz - filter_2208hz = _mscl.WirelessTypes_filter_2208hz - filter_2048hz = _mscl.WirelessTypes_filter_2048hz - filter_2000hz = _mscl.WirelessTypes_filter_2000hz - filter_1104hz = _mscl.WirelessTypes_filter_1104hz - filter_1024hz = _mscl.WirelessTypes_filter_1024hz - filter_1000hz = _mscl.WirelessTypes_filter_1000hz - filter_800hz = _mscl.WirelessTypes_filter_800hz - filter_552hz = _mscl.WirelessTypes_filter_552hz - filter_512hz = _mscl.WirelessTypes_filter_512hz - filter_500hz = _mscl.WirelessTypes_filter_500hz - filter_418hz = _mscl.WirelessTypes_filter_418hz - filter_294hz = _mscl.WirelessTypes_filter_294hz - filter_256hz = _mscl.WirelessTypes_filter_256hz - filter_250hz = _mscl.WirelessTypes_filter_250hz - filter_209hz = _mscl.WirelessTypes_filter_209hz - filter_200hz = _mscl.WirelessTypes_filter_200hz - filter_147hz = _mscl.WirelessTypes_filter_147hz - filter_128hz = _mscl.WirelessTypes_filter_128hz - filter_125hz = _mscl.WirelessTypes_filter_125hz - filter_104hz = _mscl.WirelessTypes_filter_104hz - filter_100hz = _mscl.WirelessTypes_filter_100hz - filter_62hz = _mscl.WirelessTypes_filter_62hz - filter_52hz = _mscl.WirelessTypes_filter_52hz - filter_50hz = _mscl.WirelessTypes_filter_50hz - filter_31hz = _mscl.WirelessTypes_filter_31hz - filter_26hz = _mscl.WirelessTypes_filter_26hz - filter_12_66hz = _mscl.WirelessTypes_filter_12_66hz - filter_2_6hz = _mscl.WirelessTypes_filter_2_6hz - highPass_off = _mscl.WirelessTypes_highPass_off - highPass_auto = _mscl.WirelessTypes_highPass_auto - cfc_10 = _mscl.WirelessTypes_cfc_10 - cfc_21 = _mscl.WirelessTypes_cfc_21 - cfc_60 = _mscl.WirelessTypes_cfc_60 - storageLimit_overwrite = _mscl.WirelessTypes_storageLimit_overwrite - storageLimit_stop = _mscl.WirelessTypes_storageLimit_stop - range_14_545mV = _mscl.WirelessTypes_range_14_545mV - range_10_236mV = _mscl.WirelessTypes_range_10_236mV - range_7_608mV = _mscl.WirelessTypes_range_7_608mV - range_4_046mV = _mscl.WirelessTypes_range_4_046mV - range_2_008mV = _mscl.WirelessTypes_range_2_008mV - range_1_511mV = _mscl.WirelessTypes_range_1_511mV - range_1_001mV = _mscl.WirelessTypes_range_1_001mV - range_0_812mV = _mscl.WirelessTypes_range_0_812mV - range_75mV = _mscl.WirelessTypes_range_75mV - range_37_5mV = _mscl.WirelessTypes_range_37_5mV - range_18_75mV = _mscl.WirelessTypes_range_18_75mV - range_9_38mV = _mscl.WirelessTypes_range_9_38mV - range_4_69mV = _mscl.WirelessTypes_range_4_69mV - range_2_34mV = _mscl.WirelessTypes_range_2_34mV - range_1_17mV = _mscl.WirelessTypes_range_1_17mV - range_0_586mV = _mscl.WirelessTypes_range_0_586mV - range_70mV = _mscl.WirelessTypes_range_70mV - range_35mV = _mscl.WirelessTypes_range_35mV - range_17_5mV = _mscl.WirelessTypes_range_17_5mV - range_8_75mV = _mscl.WirelessTypes_range_8_75mV - range_4_38mV = _mscl.WirelessTypes_range_4_38mV - range_2_19mV = _mscl.WirelessTypes_range_2_19mV - range_1_09mV = _mscl.WirelessTypes_range_1_09mV - range_0_547mV = _mscl.WirelessTypes_range_0_547mV - range_44mV = _mscl.WirelessTypes_range_44mV - range_30mV = _mscl.WirelessTypes_range_30mV - range_20mV = _mscl.WirelessTypes_range_20mV - range_15mV = _mscl.WirelessTypes_range_15mV - range_10mV = _mscl.WirelessTypes_range_10mV - range_5mV = _mscl.WirelessTypes_range_5mV - range_3mV = _mscl.WirelessTypes_range_3mV - range_2mV = _mscl.WirelessTypes_range_2mV - range_6mV = _mscl.WirelessTypes_range_6mV - range_1mV = _mscl.WirelessTypes_range_1mV - range_50mV = _mscl.WirelessTypes_range_50mV - range_2_5mV = _mscl.WirelessTypes_range_2_5mV - range_0_6mV = _mscl.WirelessTypes_range_0_6mV - range_0_35mV = _mscl.WirelessTypes_range_0_35mV - range_0_1mV = _mscl.WirelessTypes_range_0_1mV - range_156mV = _mscl.WirelessTypes_range_156mV - range_78_1mV = _mscl.WirelessTypes_range_78_1mV - range_39mV = _mscl.WirelessTypes_range_39mV - range_19_5mV = _mscl.WirelessTypes_range_19_5mV - range_9_76mV = _mscl.WirelessTypes_range_9_76mV - range_4_88mV = _mscl.WirelessTypes_range_4_88mV - range_2_44mV = _mscl.WirelessTypes_range_2_44mV - range_1_22mV = _mscl.WirelessTypes_range_1_22mV - range_10_24V = _mscl.WirelessTypes_range_10_24V - range_5_12V = _mscl.WirelessTypes_range_5_12V - range_2_56V = _mscl.WirelessTypes_range_2_56V - range_0to10_24V = _mscl.WirelessTypes_range_0to10_24V - range_0to5_12V = _mscl.WirelessTypes_range_0to5_12V - range_1_147V = _mscl.WirelessTypes_range_1_147V - range_585mV = _mscl.WirelessTypes_range_585mV - range_292_5mV = _mscl.WirelessTypes_range_292_5mV - range_146_25mV = _mscl.WirelessTypes_range_146_25mV - range_73_13mV = _mscl.WirelessTypes_range_73_13mV - range_36_56mV = _mscl.WirelessTypes_range_36_56mV - range_18_23mV = _mscl.WirelessTypes_range_18_23mV - range_9_14mV = _mscl.WirelessTypes_range_9_14mV - range_5_74V = _mscl.WirelessTypes_range_5_74V - range_2_93V = _mscl.WirelessTypes_range_2_93V - range_1_46V = _mscl.WirelessTypes_range_1_46V - range_731_3mV = _mscl.WirelessTypes_range_731_3mV - range_365_6mV = _mscl.WirelessTypes_range_365_6mV - range_182_8mV = _mscl.WirelessTypes_range_182_8mV - range_91_4mV = _mscl.WirelessTypes_range_91_4mV - range_45_7mV = _mscl.WirelessTypes_range_45_7mV - range_62_5mV = _mscl.WirelessTypes_range_62_5mV - range_31_25mV = _mscl.WirelessTypes_range_31_25mV - range_15_63mV = _mscl.WirelessTypes_range_15_63mV - range_7_81mV = _mscl.WirelessTypes_range_7_81mV - range_3_91mV = _mscl.WirelessTypes_range_3_91mV - range_1_95mV = _mscl.WirelessTypes_range_1_95mV - range_0_976mV = _mscl.WirelessTypes_range_0_976mV - range_0_488mV = _mscl.WirelessTypes_range_0_488mV - range_2G = _mscl.WirelessTypes_range_2G - range_4G = _mscl.WirelessTypes_range_4G - range_8G = _mscl.WirelessTypes_range_8G - range_10G = _mscl.WirelessTypes_range_10G - range_20G = _mscl.WirelessTypes_range_20G - range_40G = _mscl.WirelessTypes_range_40G - range_2_5V = _mscl.WirelessTypes_range_2_5V - range_1_25V = _mscl.WirelessTypes_range_1_25V - range_625mV = _mscl.WirelessTypes_range_625mV - range_312_5mV = _mscl.WirelessTypes_range_312_5mV - range_156_25mV = _mscl.WirelessTypes_range_156_25mV - range_78_125mV = _mscl.WirelessTypes_range_78_125mV - range_39_063mV = _mscl.WirelessTypes_range_39_063mV - range_19_532mV = _mscl.WirelessTypes_range_19_532mV - range_0to2_5V = _mscl.WirelessTypes_range_0to2_5V - range_0to1_25V = _mscl.WirelessTypes_range_0to1_25V - range_0to625mV = _mscl.WirelessTypes_range_0to625mV - range_0to312_5mV = _mscl.WirelessTypes_range_0to312_5mV - range_0to156_25mV = _mscl.WirelessTypes_range_0to156_25mV - range_0to78_125mV = _mscl.WirelessTypes_range_0to78_125mV - range_0to39_063mV = _mscl.WirelessTypes_range_0to39_063mV - range_0to19_532mV = _mscl.WirelessTypes_range_0to19_532mV - range_9_766mV = _mscl.WirelessTypes_range_9_766mV - range_1_35V_or_0to1000000ohm = _mscl.WirelessTypes_range_1_35V_or_0to1000000ohm - range_1_25V_or_0to10000ohm = _mscl.WirelessTypes_range_1_25V_or_0to10000ohm - range_625mV_or_0to3333_3ohm = _mscl.WirelessTypes_range_625mV_or_0to3333_3ohm - range_312_5mV_or_0to1428_6ohm = _mscl.WirelessTypes_range_312_5mV_or_0to1428_6ohm - range_156_25mV_or_0to666_67ohm = _mscl.WirelessTypes_range_156_25mV_or_0to666_67ohm - range_78_125mV_or_0to322_58ohm = _mscl.WirelessTypes_range_78_125mV_or_0to322_58ohm - range_39_0625mV_or_0to158_73ohm = _mscl.WirelessTypes_range_39_0625mV_or_0to158_73ohm - range_19_5313mV_or_0to78_74ohm = _mscl.WirelessTypes_range_19_5313mV_or_0to78_74ohm - range_750mV = _mscl.WirelessTypes_range_750mV - range_375mV = _mscl.WirelessTypes_range_375mV - range_187_5mV = _mscl.WirelessTypes_range_187_5mV - range_93_75mV = _mscl.WirelessTypes_range_93_75mV - range_46_875mV = _mscl.WirelessTypes_range_46_875mV - range_23_438mV = _mscl.WirelessTypes_range_23_438mV - range_11_719mV = _mscl.WirelessTypes_range_11_719mV - range_5_859mV = _mscl.WirelessTypes_range_5_859mV - range_0to1_5V = _mscl.WirelessTypes_range_0to1_5V - range_0to750mV = _mscl.WirelessTypes_range_0to750mV - range_0to375mV = _mscl.WirelessTypes_range_0to375mV - range_0to187_5mV = _mscl.WirelessTypes_range_0to187_5mV - range_0to93_75mV = _mscl.WirelessTypes_range_0to93_75mV - range_0to46_875mV = _mscl.WirelessTypes_range_0to46_875mV - range_0to23_438mV = _mscl.WirelessTypes_range_0to23_438mV - range_0to11_719mV = _mscl.WirelessTypes_range_0to11_719mV - range_1_5V = _mscl.WirelessTypes_range_1_5V - range_1_35V = _mscl.WirelessTypes_range_1_35V - range_0to1000000ohm = _mscl.WirelessTypes_range_0to1000000ohm - range_0to10000ohm = _mscl.WirelessTypes_range_0to10000ohm - range_0to3333_3ohm = _mscl.WirelessTypes_range_0to3333_3ohm - range_0to1428_6ohm = _mscl.WirelessTypes_range_0to1428_6ohm - range_0to666_67ohm = _mscl.WirelessTypes_range_0to666_67ohm - range_0to322_58ohm = _mscl.WirelessTypes_range_0to322_58ohm - range_0to158_73ohm = _mscl.WirelessTypes_range_0to158_73ohm - range_0to78_74ohm = _mscl.WirelessTypes_range_0to78_74ohm - range_39_0625mV = _mscl.WirelessTypes_range_39_0625mV - range_19_5313mV = _mscl.WirelessTypes_range_19_5313mV - range_125mV = _mscl.WirelessTypes_range_125mV - range_invalid = _mscl.WirelessTypes_range_invalid - dataMode_none = _mscl.WirelessTypes_dataMode_none - dataMode_raw = _mscl.WirelessTypes_dataMode_raw - dataMode_derived = _mscl.WirelessTypes_dataMode_derived - dataMode_raw_derived = _mscl.WirelessTypes_dataMode_raw_derived - derivedCategory_rms = _mscl.WirelessTypes_derivedCategory_rms - derivedCategory_peakToPeak = _mscl.WirelessTypes_derivedCategory_peakToPeak - derivedCategory_velocity = _mscl.WirelessTypes_derivedCategory_velocity - derivedCategory_crestFactor = _mscl.WirelessTypes_derivedCategory_crestFactor - derivedCategory_mean = _mscl.WirelessTypes_derivedCategory_mean - derivedAlgId_rms = _mscl.WirelessTypes_derivedAlgId_rms - derivedAlgId_peakToPeak = _mscl.WirelessTypes_derivedAlgId_peakToPeak - derivedAlgId_ips = _mscl.WirelessTypes_derivedAlgId_ips - derivedAlgId_crestFactor = _mscl.WirelessTypes_derivedAlgId_crestFactor - derivedAlgId_mean = _mscl.WirelessTypes_derivedAlgId_mean - derivedAlgId_mmps = _mscl.WirelessTypes_derivedAlgId_mmps - derivedVelocity_ips = _mscl.WirelessTypes_derivedVelocity_ips - derivedVelocity_mmps = _mscl.WirelessTypes_derivedVelocity_mmps - commProtocol_lxrs = _mscl.WirelessTypes_commProtocol_lxrs - commProtocol_lxrsPlus = _mscl.WirelessTypes_commProtocol_lxrsPlus - voltage_5120mV = _mscl.WirelessTypes_voltage_5120mV - voltage_5000mV = _mscl.WirelessTypes_voltage_5000mV - voltage_4096mV = _mscl.WirelessTypes_voltage_4096mV - voltage_3000mV = _mscl.WirelessTypes_voltage_3000mV - voltage_2800mV = _mscl.WirelessTypes_voltage_2800mV - voltage_2750mV = _mscl.WirelessTypes_voltage_2750mV - voltage_2700mV = _mscl.WirelessTypes_voltage_2700mV - voltage_2500mV = _mscl.WirelessTypes_voltage_2500mV - voltage_1500mV = _mscl.WirelessTypes_voltage_1500mV - sensorOutputMode_accel = _mscl.WirelessTypes_sensorOutputMode_accel - sensorOutputMode_tilt = _mscl.WirelessTypes_sensorOutputMode_tilt - batteryStatus_good = _mscl.WirelessTypes_batteryStatus_good - batteryStatus_low = _mscl.WirelessTypes_batteryStatus_low - batteryStatus_critical = _mscl.WirelessTypes_batteryStatus_critical - externalPower_notConnected = _mscl.WirelessTypes_externalPower_notConnected - externalPower_connected = _mscl.WirelessTypes_externalPower_connected - delayVersion_v1 = _mscl.WirelessTypes_delayVersion_v1 - delayVersion_v2 = _mscl.WirelessTypes_delayVersion_v2 - delayVersion_v3 = _mscl.WirelessTypes_delayVersion_v3 - delayVersion_v4 = _mscl.WirelessTypes_delayVersion_v4 - UNKNOWN_RSSI = _mscl.WirelessTypes_UNKNOWN_RSSI - - def __init__(self): - _mscl.WirelessTypes_swiginit(self, _mscl.new_WirelessTypes()) - __swig_destroy__ = _mscl.delete_WirelessTypes - -# Register WirelessTypes in _mscl: -_mscl.WirelessTypes_swigregister(WirelessTypes) - -class SampleRate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - rateType_seconds = _mscl.SampleRate_rateType_seconds - rateType_hertz = _mscl.SampleRate_rateType_hertz - rateType_event = _mscl.SampleRate_rateType_event - rateType_decimation = _mscl.SampleRate_rateType_decimation - - def __init__(self, *args): - _mscl.SampleRate_swiginit(self, _mscl.new_SampleRate(*args)) - - def __str__(self): - return _mscl.SampleRate___str__(self) - - def prettyStr(self): - return _mscl.SampleRate_prettyStr(self) - - def samplePeriod(self): - return _mscl.SampleRate_samplePeriod(self) - - def samplesPerSecond(self): - return _mscl.SampleRate_samplesPerSecond(self) - - def rateType(self): - return _mscl.SampleRate_rateType(self) - - def samples(self): - return _mscl.SampleRate_samples(self) - - def toWirelessSampleRate(self): - return _mscl.SampleRate_toWirelessSampleRate(self) - - def toDecimation(self, sampleRateBase): - return _mscl.SampleRate_toDecimation(self, sampleRateBase) - - @staticmethod - def Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - - @staticmethod - def KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - - @staticmethod - def Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - - @staticmethod - def Event(): - return _mscl.SampleRate_Event() - - @staticmethod - def Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - - @staticmethod - def FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - - @staticmethod - def FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - __swig_destroy__ = _mscl.delete_SampleRate - -# Register SampleRate in _mscl: -_mscl.SampleRate_swigregister(SampleRate) - -def SampleRate_Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - -def SampleRate_KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - -def SampleRate_Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - -def SampleRate_Event(): - return _mscl.SampleRate_Event() - -def SampleRate_Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - -def SampleRate_FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - -def SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - -class Matrix(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Matrix_swiginit(self, _mscl.new_Matrix()) - - def valuesType(self): - return _mscl.Matrix_valuesType(self) - - def rows(self): - return _mscl.Matrix_rows(self) - - def columns(self): - return _mscl.Matrix_columns(self) - - def as_doubleAt(self, row, column): - return _mscl.Matrix_as_doubleAt(self, row, column) - - def as_floatAt(self, row, column): - return _mscl.Matrix_as_floatAt(self, row, column) - - def as_uint16At(self, row, column): - return _mscl.Matrix_as_uint16At(self, row, column) - - def as_uint8At(self, row, column): - return _mscl.Matrix_as_uint8At(self, row, column) - - def __str__(self): - return _mscl.Matrix___str__(self) - __swig_destroy__ = _mscl.delete_Matrix - -# Register Matrix in _mscl: -_mscl.Matrix_swigregister(Matrix) - -class Vector(Matrix): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Vector_swiginit(self, _mscl.new_Vector()) - - def size(self): - return _mscl.Vector_size(self) - - def as_doubleAt(self, index): - return _mscl.Vector_as_doubleAt(self, index) - - def as_floatAt(self, index): - return _mscl.Vector_as_floatAt(self, index) - - def as_uint16At(self, index): - return _mscl.Vector_as_uint16At(self, index) - - def as_uint8At(self, index): - return _mscl.Vector_as_uint8At(self, index) - __swig_destroy__ = _mscl.delete_Vector - -# Register Vector in _mscl: -_mscl.Vector_swigregister(Vector) - -class Bitfield(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Bitfield_swiginit(self, _mscl.new_Bitfield(*args)) - __swig_destroy__ = _mscl.delete_Bitfield - - def value(self, *args): - return _mscl.Bitfield_value(self, *args) - - def get(self, mask, shiftToLsb=True): - return _mscl.Bitfield_get(self, mask, shiftToLsb) - - def set(self, mask, value, shiftRequired=True): - return _mscl.Bitfield_set(self, mask, value, shiftRequired) - - def checkBit(self, bitIndex, indexBase=0): - return _mscl.Bitfield_checkBit(self, bitIndex, indexBase) - - def setBit(self, bitIndex, value, indexBase=0): - return _mscl.Bitfield_setBit(self, bitIndex, value, indexBase) - -# Register Bitfield in _mscl: -_mscl.Bitfield_swigregister(Bitfield) - -class StructuralHealth(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, angle, uptime, damage, processingRate, histogram): - _mscl.StructuralHealth_swiginit(self, _mscl.new_StructuralHealth(angle, uptime, damage, processingRate, histogram)) - - def angle(self): - return _mscl.StructuralHealth_angle(self) - - def uptime(self): - return _mscl.StructuralHealth_uptime(self) - - def damage(self): - return _mscl.StructuralHealth_damage(self) - - def processingRate(self): - return _mscl.StructuralHealth_processingRate(self) - - def histogram(self): - return _mscl.StructuralHealth_histogram(self) - __swig_destroy__ = _mscl.delete_StructuralHealth - -# Register StructuralHealth in _mscl: -_mscl.StructuralHealth_swigregister(StructuralHealth) - -class DataPoint(Value): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - channelPropertyId_angle = _mscl.DataPoint_channelPropertyId_angle - channelPropertyId_derivedFrom = _mscl.DataPoint_channelPropertyId_derivedFrom - channelPropertyId_derivedAlgorithmId = _mscl.DataPoint_channelPropertyId_derivedAlgorithmId - __swig_destroy__ = _mscl.delete_DataPoint - - def channelProperty(self, id): - return _mscl.DataPoint_channelProperty(self, id) - - def as_Vector(self): - return _mscl.DataPoint_as_Vector(self) - - def as_Matrix(self): - return _mscl.DataPoint_as_Matrix(self) - - def as_Timestamp(self): - return _mscl.DataPoint_as_Timestamp(self) - - def as_Bytes(self): - return _mscl.DataPoint_as_Bytes(self) - - def as_StructuralHealth(self): - return _mscl.DataPoint_as_StructuralHealth(self) - - def as_RfSweep(self): - return _mscl.DataPoint_as_RfSweep(self) - - def as_string(self): - return _mscl.DataPoint_as_string(self) - -# Register DataPoint in _mscl: -_mscl.DataPoint_swigregister(DataPoint) - -class ConfigIssue(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONFIG_SAMPLING_MODE = _mscl.ConfigIssue_CONFIG_SAMPLING_MODE - CONFIG_ACTIVE_CHANNELS = _mscl.ConfigIssue_CONFIG_ACTIVE_CHANNELS - CONFIG_SAMPLE_RATE = _mscl.ConfigIssue_CONFIG_SAMPLE_RATE - CONFIG_SWEEPS = _mscl.ConfigIssue_CONFIG_SWEEPS - CONFIG_UNLIMITED_DURATION = _mscl.ConfigIssue_CONFIG_UNLIMITED_DURATION - CONFIG_DATA_FORMAT = _mscl.ConfigIssue_CONFIG_DATA_FORMAT - CONFIG_DATA_COLLECTION_METHOD = _mscl.ConfigIssue_CONFIG_DATA_COLLECTION_METHOD - CONFIG_TIME_BETWEEN_BURSTS = _mscl.ConfigIssue_CONFIG_TIME_BETWEEN_BURSTS - CONFIG_THERMOCOUPLE_TYPE = _mscl.ConfigIssue_CONFIG_THERMOCOUPLE_TYPE - CONFIG_FILTER_SETTLING_TIME = _mscl.ConfigIssue_CONFIG_FILTER_SETTLING_TIME - CONFIG_BUTTON = _mscl.ConfigIssue_CONFIG_BUTTON - CONFIG_ANALOG_PAIR = _mscl.ConfigIssue_CONFIG_ANALOG_PAIR - CONFIG_INPUT_RANGE = _mscl.ConfigIssue_CONFIG_INPUT_RANGE - CONFIG_INACTIVITY_TIMEOUT = _mscl.ConfigIssue_CONFIG_INACTIVITY_TIMEOUT - CONFIG_CHECK_RADIO_INTERVAL = _mscl.ConfigIssue_CONFIG_CHECK_RADIO_INTERVAL - CONFIG_LOST_BEACON_TIMEOUT = _mscl.ConfigIssue_CONFIG_LOST_BEACON_TIMEOUT - CONFIG_DEFAULT_MODE = _mscl.ConfigIssue_CONFIG_DEFAULT_MODE - CONFIG_TRANSMIT_POWER = _mscl.ConfigIssue_CONFIG_TRANSMIT_POWER - CONFIG_LINEAR_EQUATION = _mscl.ConfigIssue_CONFIG_LINEAR_EQUATION - CONFIG_FATIGUE = _mscl.ConfigIssue_CONFIG_FATIGUE - CONFIG_FATIGUE_MODE = _mscl.ConfigIssue_CONFIG_FATIGUE_MODE - CONFIG_FATIGUE_ANGLE_ID = _mscl.ConfigIssue_CONFIG_FATIGUE_ANGLE_ID - CONFIG_FATIGUE_SN_CURVE = _mscl.ConfigIssue_CONFIG_FATIGUE_SN_CURVE - CONFIG_FATIGUE_DIST_NUM_ANGLES = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_NUM_ANGLES - CONFIG_FATIGUE_DIST_ANGLE = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_ANGLE - CONFIG_HISTOGRAM = _mscl.ConfigIssue_CONFIG_HISTOGRAM - CONFIG_HISTOGRAM_TX_RATE = _mscl.ConfigIssue_CONFIG_HISTOGRAM_TX_RATE - CONFIG_HARDWARE_OFFSET = _mscl.ConfigIssue_CONFIG_HARDWARE_OFFSET - CONFIG_ACTIVITY_SENSE = _mscl.ConfigIssue_CONFIG_ACTIVITY_SENSE - CONFIG_GAUGE_FACTOR = _mscl.ConfigIssue_CONFIG_GAUGE_FACTOR - CONFIG_EVENT_TRIGGER = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER - CONFIG_EVENT_TRIGGER_DURATION = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_DURATION - CONFIG_EVENT_TRIGGER_MASK = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_MASK - CONFIG_DIAGNOSTIC_INTERVAL = _mscl.ConfigIssue_CONFIG_DIAGNOSTIC_INTERVAL - CONFIG_ANTI_ALIASING_FILTER = _mscl.ConfigIssue_CONFIG_ANTI_ALIASING_FILTER - CONFIG_STORAGE_LIMIT_MODE = _mscl.ConfigIssue_CONFIG_STORAGE_LIMIT_MODE - CONFIG_SENSOR_DELAY = _mscl.ConfigIssue_CONFIG_SENSOR_DELAY - CONFIG_LOW_PASS_FILTER = _mscl.ConfigIssue_CONFIG_LOW_PASS_FILTER - CONFIG_DATA_MODE = _mscl.ConfigIssue_CONFIG_DATA_MODE - CONFIG_DERIVED_DATA_RATE = _mscl.ConfigIssue_CONFIG_DERIVED_DATA_RATE - CONFIG_DERIVED_MASK_RMS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_RMS - CONFIG_DERIVED_MASK_P2P = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_P2P - CONFIG_DERIVED_MASK_IPS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_IPS - CONFIG_DERIVED_MASK_CREST_FACTOR = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_CREST_FACTOR - CONFIG_HIGH_PASS_FILTER = _mscl.ConfigIssue_CONFIG_HIGH_PASS_FILTER - CONFIG_DERIVED_MASK = _mscl.ConfigIssue_CONFIG_DERIVED_MASK - CONFIG_COMM_PROTOCOL = _mscl.ConfigIssue_CONFIG_COMM_PROTOCOL - CONFIG_DERIVED_MASK_MEAN = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_MEAN - CONFIG_GAUGE_RESISTANCE = _mscl.ConfigIssue_CONFIG_GAUGE_RESISTANCE - CONFIG_NUM_ACTIVE_GAUGES = _mscl.ConfigIssue_CONFIG_NUM_ACTIVE_GAUGES - CONFIG_TEMP_SENSOR_OPTS = _mscl.ConfigIssue_CONFIG_TEMP_SENSOR_OPTS - CONFIG_DEBOUNCE_FILTER = _mscl.ConfigIssue_CONFIG_DEBOUNCE_FILTER - CONFIG_PULLUP_RESISTOR = _mscl.ConfigIssue_CONFIG_PULLUP_RESISTOR - CONFIG_EXCITATION_VOLTAGE = _mscl.ConfigIssue_CONFIG_EXCITATION_VOLTAGE - CONFIG_DERIVED_UNIT = _mscl.ConfigIssue_CONFIG_DERIVED_UNIT - CONFIG_SENSOR_OUTPUT_MODE = _mscl.ConfigIssue_CONFIG_SENSOR_OUTPUT_MODE - CONFIG_LOW_BATTERY_THRESHOLD = _mscl.ConfigIssue_CONFIG_LOW_BATTERY_THRESHOLD - CONFIG_CFC_FILTER = _mscl.ConfigIssue_CONFIG_CFC_FILTER - - def __init__(self, *args): - _mscl.ConfigIssue_swiginit(self, _mscl.new_ConfigIssue(*args)) - - def id(self): - return _mscl.ConfigIssue_id(self) - - def description(self): - return _mscl.ConfigIssue_description(self) - - def isChannelGroupIssue(self): - return _mscl.ConfigIssue_isChannelGroupIssue(self) - - def channelMask(self): - return _mscl.ConfigIssue_channelMask(self) - __swig_destroy__ = _mscl.delete_ConfigIssue - -# Register ConfigIssue in _mscl: -_mscl.ConfigIssue_swigregister(ConfigIssue) - -class ActivitySense(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ActivitySense_swiginit(self, _mscl.new_ActivitySense()) - - def enabled(self, *args): - return _mscl.ActivitySense_enabled(self, *args) - - def activityThreshold(self, *args): - return _mscl.ActivitySense_activityThreshold(self, *args) - - def inactivityThreshold(self, *args): - return _mscl.ActivitySense_inactivityThreshold(self, *args) - - def activityTime(self, *args): - return _mscl.ActivitySense_activityTime(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.ActivitySense_inactivityTimeout(self, *args) - __swig_destroy__ = _mscl.delete_ActivitySense - -# Register ActivitySense in _mscl: -_mscl.ActivitySense_swigregister(ActivitySense) - -class Trigger(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Trigger_swiginit(self, _mscl.new_Trigger(*args)) - - def channelNumber(self, *args): - return _mscl.Trigger_channelNumber(self, *args) - - def triggerType(self, *args): - return _mscl.Trigger_triggerType(self, *args) - - def triggerValue(self, *args): - return _mscl.Trigger_triggerValue(self, *args) - __swig_destroy__ = _mscl.delete_Trigger - -# Register Trigger in _mscl: -_mscl.Trigger_swigregister(Trigger) - -class EventTriggerOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerOptions_swiginit(self, _mscl.new_EventTriggerOptions()) - - def triggerMask(self, *args): - return _mscl.EventTriggerOptions_triggerMask(self, *args) - - def anyTriggersEnabled(self): - return _mscl.EventTriggerOptions_anyTriggersEnabled(self) - - def triggerEnabled(self, triggerIndex): - return _mscl.EventTriggerOptions_triggerEnabled(self, triggerIndex) - - def enableTrigger(self, triggerIndex, enable=True): - return _mscl.EventTriggerOptions_enableTrigger(self, triggerIndex, enable) - - def preDuration(self, *args): - return _mscl.EventTriggerOptions_preDuration(self, *args) - - def postDuration(self, *args): - return _mscl.EventTriggerOptions_postDuration(self, *args) - - def trigger(self, *args): - return _mscl.EventTriggerOptions_trigger(self, *args) - - def triggers(self): - return _mscl.EventTriggerOptions_triggers(self) - __swig_destroy__ = _mscl.delete_EventTriggerOptions - -# Register EventTriggerOptions in _mscl: -_mscl.EventTriggerOptions_swigregister(EventTriggerOptions) - -class SnCurveSegment(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.SnCurveSegment_swiginit(self, _mscl.new_SnCurveSegment(*args)) - - def m(self, *args): - return _mscl.SnCurveSegment_m(self, *args) - - def logA(self, *args): - return _mscl.SnCurveSegment_logA(self, *args) - __swig_destroy__ = _mscl.delete_SnCurveSegment - -# Register SnCurveSegment in _mscl: -_mscl.SnCurveSegment_swigregister(SnCurveSegment) - -class FatigueOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FatigueOptions_swiginit(self, _mscl.new_FatigueOptions()) - - def youngsModulus(self, *args): - return _mscl.FatigueOptions_youngsModulus(self, *args) - - def poissonsRatio(self, *args): - return _mscl.FatigueOptions_poissonsRatio(self, *args) - - def peakValleyThreshold(self, *args): - return _mscl.FatigueOptions_peakValleyThreshold(self, *args) - - def debugMode(self, *args): - return _mscl.FatigueOptions_debugMode(self, *args) - - def damageAngles(self): - return _mscl.FatigueOptions_damageAngles(self) - - def damageAngle(self, *args): - return _mscl.FatigueOptions_damageAngle(self, *args) - - def snCurveSegments(self): - return _mscl.FatigueOptions_snCurveSegments(self) - - def snCurveSegment(self, *args): - return _mscl.FatigueOptions_snCurveSegment(self, *args) - - def fatigueMode(self, *args): - return _mscl.FatigueOptions_fatigueMode(self, *args) - - def distributedAngleMode_numAngles(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_numAngles(self, *args) - - def distributedAngleMode_lowerBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_lowerBound(self, *args) - - def distributedAngleMode_upperBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_upperBound(self, *args) - - def histogramEnable(self, *args): - return _mscl.FatigueOptions_histogramEnable(self, *args) - __swig_destroy__ = _mscl.delete_FatigueOptions - -# Register FatigueOptions in _mscl: -_mscl.FatigueOptions_swigregister(FatigueOptions) - -class HistogramOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HistogramOptions_swiginit(self, _mscl.new_HistogramOptions()) - - def transmitRate(self, *args): - return _mscl.HistogramOptions_transmitRate(self, *args) - - def binsStart(self, *args): - return _mscl.HistogramOptions_binsStart(self, *args) - - def binsSize(self, *args): - return _mscl.HistogramOptions_binsSize(self, *args) - __swig_destroy__ = _mscl.delete_HistogramOptions - -# Register HistogramOptions in _mscl: -_mscl.HistogramOptions_swigregister(HistogramOptions) - -class InputRangeEntry(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - inputRange = property(_mscl.InputRangeEntry_inputRange_get, _mscl.InputRangeEntry_inputRange_set) - hasGain = property(_mscl.InputRangeEntry_hasGain_get, _mscl.InputRangeEntry_hasGain_set) - gain = property(_mscl.InputRangeEntry_gain_get, _mscl.InputRangeEntry_gain_set) - - def __init__(self, *args): - _mscl.InputRangeEntry_swiginit(self, _mscl.new_InputRangeEntry(*args)) - __swig_destroy__ = _mscl.delete_InputRangeEntry - -# Register InputRangeEntry in _mscl: -_mscl.InputRangeEntry_swigregister(InputRangeEntry) - -class TempSensorOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - - @staticmethod - def RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - - @staticmethod - def Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - - def transducerType(self): - return _mscl.TempSensorOptions_transducerType(self) - - def thermocoupleType(self): - return _mscl.TempSensorOptions_thermocoupleType(self) - - def rtdType(self): - return _mscl.TempSensorOptions_rtdType(self) - - def rtdWireType(self): - return _mscl.TempSensorOptions_rtdWireType(self) - - def thermistorType(self): - return _mscl.TempSensorOptions_thermistorType(self) - __swig_destroy__ = _mscl.delete_TempSensorOptions - -# Register TempSensorOptions in _mscl: -_mscl.TempSensorOptions_swigregister(TempSensorOptions) - -def TempSensorOptions_Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - -def TempSensorOptions_RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - -def TempSensorOptions_Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - -class WirelessModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_vLink_legacy = _mscl.WirelessModels_node_vLink_legacy - node_cfBearingTempLink = _mscl.WirelessModels_node_cfBearingTempLink - node_envLink_pro = _mscl.WirelessModels_node_envLink_pro - node_gLink_2g = _mscl.WirelessModels_node_gLink_2g - node_gLink_10g = _mscl.WirelessModels_node_gLink_10g - node_gLinkII_cust_in = _mscl.WirelessModels_node_gLinkII_cust_in - node_gLinkII_2g_in = _mscl.WirelessModels_node_gLinkII_2g_in - node_gLinkII_10g_in = _mscl.WirelessModels_node_gLinkII_10g_in - node_gLinkII_cust_ex = _mscl.WirelessModels_node_gLinkII_cust_ex - node_gLinkII_2g_ex = _mscl.WirelessModels_node_gLinkII_2g_ex - node_gLinkII_10g_ex = _mscl.WirelessModels_node_gLinkII_10g_ex - node_gLink_rgd_10g = _mscl.WirelessModels_node_gLink_rgd_10g - node_gLink_200_8g = _mscl.WirelessModels_node_gLink_200_8g - node_gLink_200_40g = _mscl.WirelessModels_node_gLink_200_40g - node_gLink_200_8g_oem = _mscl.WirelessModels_node_gLink_200_8g_oem - node_gLink_200_40g_oem = _mscl.WirelessModels_node_gLink_200_40g_oem - node_gLink_200_8g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_8g_oem_mmcx - node_gLink_200_40g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_40g_oem_mmcx - node_gLink_200_8g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_8g_oem_u_fl - node_gLink_200_40g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_40g_oem_u_fl - node_gLink_200_r = _mscl.WirelessModels_node_gLink_200_r - node_sgLink_oem_S = _mscl.WirelessModels_node_sgLink_oem_S - node_sgLink = _mscl.WirelessModels_node_sgLink - node_sgLink200 = _mscl.WirelessModels_node_sgLink200 - node_sgLink200_hbridge_1K = _mscl.WirelessModels_node_sgLink200_hbridge_1K - node_sgLink200_hbridge_350 = _mscl.WirelessModels_node_sgLink200_hbridge_350 - node_sgLink200_hbridge_120 = _mscl.WirelessModels_node_sgLink200_hbridge_120 - node_sgLink200_qbridge_1K = _mscl.WirelessModels_node_sgLink200_qbridge_1K - node_sgLink200_qbridge_350 = _mscl.WirelessModels_node_sgLink200_qbridge_350 - node_sgLink200_qbridge_120 = _mscl.WirelessModels_node_sgLink200_qbridge_120 - node_sgLink_oem = _mscl.WirelessModels_node_sgLink_oem - node_sgLink_micro = _mscl.WirelessModels_node_sgLink_micro - node_sgLink200_oem = _mscl.WirelessModels_node_sgLink200_oem - node_sgLink200_oem_ufl = _mscl.WirelessModels_node_sgLink200_oem_ufl - node_sgLink200_oem_hbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K - node_sgLink200_oem_hbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K_ufl - node_sgLink200_oem_hbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120 - node_sgLink200_oem_hbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120_ufl - node_sgLink200_oem_hbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350 - node_sgLink200_oem_hbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350_ufl - node_sgLink200_oem_qbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K - node_sgLink200_oem_qbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K_ufl - node_sgLink200_oem_qbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120 - node_sgLink200_oem_qbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120_ufl - node_sgLink200_oem_qbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350 - node_sgLink200_oem_qbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350_ufl - node_sgLink_rgd = _mscl.WirelessModels_node_sgLink_rgd - node_shmLink = _mscl.WirelessModels_node_shmLink - node_tcLink_1ch = _mscl.WirelessModels_node_tcLink_1ch - node_tcLink_6ch = _mscl.WirelessModels_node_tcLink_6ch - node_tcLink_3ch = _mscl.WirelessModels_node_tcLink_3ch - node_tcLink_6ch_ip67 = _mscl.WirelessModels_node_tcLink_6ch_ip67 - node_tcLink200_oem = _mscl.WirelessModels_node_tcLink200_oem - node_tcLink200_oem_ufl = _mscl.WirelessModels_node_tcLink200_oem_ufl - node_tcLink200 = _mscl.WirelessModels_node_tcLink200 - node_rtdLink200 = _mscl.WirelessModels_node_rtdLink200 - node_tcLink_6ch_ip67_rht = _mscl.WirelessModels_node_tcLink_6ch_ip67_rht - node_vLink = _mscl.WirelessModels_node_vLink - node_vLink200 = _mscl.WirelessModels_node_vLink200 - node_vLink200_qbridge_1K = _mscl.WirelessModels_node_vLink200_qbridge_1K - node_vLink200_qbridge_120 = _mscl.WirelessModels_node_vLink200_qbridge_120 - node_vLink200_qbridge_350 = _mscl.WirelessModels_node_vLink200_qbridge_350 - node_vLink200_hbridge_1K = _mscl.WirelessModels_node_vLink200_hbridge_1K - node_vLink200_hbridge_120 = _mscl.WirelessModels_node_vLink200_hbridge_120 - node_vLink200_hbridge_350 = _mscl.WirelessModels_node_vLink200_hbridge_350 - node_iepeLink = _mscl.WirelessModels_node_iepeLink - node_dvrtLink = _mscl.WirelessModels_node_dvrtLink - node_envLink_mini = _mscl.WirelessModels_node_envLink_mini - node_wattLink = _mscl.WirelessModels_node_wattLink - node_wattLink_3Y208 = _mscl.WirelessModels_node_wattLink_3Y208 - node_wattLink_3D240 = _mscl.WirelessModels_node_wattLink_3D240 - node_wattLink_3Y400 = _mscl.WirelessModels_node_wattLink_3Y400 - node_wattLink_3D400 = _mscl.WirelessModels_node_wattLink_3D400 - node_wattLink_3Y480 = _mscl.WirelessModels_node_wattLink_3Y480 - node_wattLink_3D480 = _mscl.WirelessModels_node_wattLink_3D480 - node_wattLink_3Y600 = _mscl.WirelessModels_node_wattLink_3Y600 - node_ptLink200 = _mscl.WirelessModels_node_ptLink200 - node_rtdLink = _mscl.WirelessModels_node_rtdLink - node_shmLink2_cust1_oldNumber = _mscl.WirelessModels_node_shmLink2_cust1_oldNumber - node_shmLink2_cust1 = _mscl.WirelessModels_node_shmLink2_cust1 - node_shmLink200 = _mscl.WirelessModels_node_shmLink200 - node_shmLink201 = _mscl.WirelessModels_node_shmLink201 - node_shmLink201_qbridge_1K = _mscl.WirelessModels_node_shmLink201_qbridge_1K - node_shmLink201_qbridge_348 = _mscl.WirelessModels_node_shmLink201_qbridge_348 - node_shmLink201_hbridge_1K = _mscl.WirelessModels_node_shmLink201_hbridge_1K - node_shmLink201_hbridge_348 = _mscl.WirelessModels_node_shmLink201_hbridge_348 - node_shmLink201_fullbridge = _mscl.WirelessModels_node_shmLink201_fullbridge - node_shmLink210_fullbridge = _mscl.WirelessModels_node_shmLink210_fullbridge - node_shmLink210_qbridge_3K = _mscl.WirelessModels_node_shmLink210_qbridge_3K - node_torqueLink = _mscl.WirelessModels_node_torqueLink - node_torqueLink200_3ch = _mscl.WirelessModels_node_torqueLink200_3ch - node_torqueLink200 = _mscl.WirelessModels_node_torqueLink200 - node_torqueLink200_3ch_s = _mscl.WirelessModels_node_torqueLink200_3ch_s - node_sgLink_herm = _mscl.WirelessModels_node_sgLink_herm - node_sgLink_herm_2600 = _mscl.WirelessModels_node_sgLink_herm_2600 - node_sgLink_herm_2700 = _mscl.WirelessModels_node_sgLink_herm_2700 - node_sgLink_herm_2800 = _mscl.WirelessModels_node_sgLink_herm_2800 - node_sgLink_herm_2900 = _mscl.WirelessModels_node_sgLink_herm_2900 - node_wirelessImpactSensor = _mscl.WirelessModels_node_wirelessImpactSensor - node_gLink_200_40g_s = _mscl.WirelessModels_node_gLink_200_40g_s - base_wsda_1000 = _mscl.WirelessModels_base_wsda_1000 - base_wsda_1500 = _mscl.WirelessModels_base_wsda_1500 - base_wsda_2000 = _mscl.WirelessModels_base_wsda_2000 - base_wsdaBase_200_legacy = _mscl.WirelessModels_base_wsdaBase_200_legacy - base_wsdaBase_200 = _mscl.WirelessModels_base_wsdaBase_200 - base_wsdaBase_200_extAntenna = _mscl.WirelessModels_base_wsdaBase_200_extAntenna - base_wsdaBase_101_analog = _mscl.WirelessModels_base_wsdaBase_101_analog - base_wsdaBase_102_rs232 = _mscl.WirelessModels_base_wsdaBase_102_rs232 - base_wsdaBase_104_usb = _mscl.WirelessModels_base_wsdaBase_104_usb - base_wsi_104 = _mscl.WirelessModels_base_wsi_104 - base_wsdaBase_mini = _mscl.WirelessModels_base_wsdaBase_mini - - def __init__(self): - _mscl.WirelessModels_swiginit(self, _mscl.new_WirelessModels()) - __swig_destroy__ = _mscl.delete_WirelessModels - -# Register WirelessModels in _mscl: -_mscl.WirelessModels_swigregister(WirelessModels) - -class NodeDiscovery(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def nodeAddress(self): - return _mscl.NodeDiscovery_nodeAddress(self) - - def frequency(self): - return _mscl.NodeDiscovery_frequency(self) - - def panId(self): - return _mscl.NodeDiscovery_panId(self) - - def model(self): - return _mscl.NodeDiscovery_model(self) - - def serialNumber(self): - return _mscl.NodeDiscovery_serialNumber(self) - - def firmwareVersion(self): - return _mscl.NodeDiscovery_firmwareVersion(self) - - def defaultMode(self): - return _mscl.NodeDiscovery_defaultMode(self) - - def builtInTestResult(self): - return _mscl.NodeDiscovery_builtInTestResult(self) - - def communicationProtocol(self): - return _mscl.NodeDiscovery_communicationProtocol(self) - - def asppVersion_lxrs(self): - return _mscl.NodeDiscovery_asppVersion_lxrs(self) - - def asppVersion_lxrsPlus(self): - return _mscl.NodeDiscovery_asppVersion_lxrsPlus(self) - - def baseRssi(self): - return _mscl.NodeDiscovery_baseRssi(self) - - def timestamp(self): - return _mscl.NodeDiscovery_timestamp(self) - - def __init__(self): - _mscl.NodeDiscovery_swiginit(self, _mscl.new_NodeDiscovery()) - __swig_destroy__ = _mscl.delete_NodeDiscovery - -# Register NodeDiscovery in _mscl: -_mscl.NodeDiscovery_swigregister(NodeDiscovery) - -class LinearEquation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LinearEquation_swiginit(self, _mscl.new_LinearEquation(*args)) - - def slope(self, *args): - return _mscl.LinearEquation_slope(self, *args) - - def offset(self, *args): - return _mscl.LinearEquation_offset(self, *args) - __swig_destroy__ = _mscl.delete_LinearEquation - -# Register LinearEquation in _mscl: -_mscl.LinearEquation_swigregister(LinearEquation) - -class CalCoefficients(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CalCoefficients_swiginit(self, _mscl.new_CalCoefficients(*args)) - - def equationType(self): - return _mscl.CalCoefficients_equationType(self) - - def unit(self): - return _mscl.CalCoefficients_unit(self) - - def linearEquation(self): - return _mscl.CalCoefficients_linearEquation(self) - __swig_destroy__ = _mscl.delete_CalCoefficients - -# Register CalCoefficients in _mscl: -_mscl.CalCoefficients_swigregister(CalCoefficients) - -class ChannelGroup(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ChannelGroup_swiginit(self, _mscl.new_ChannelGroup()) - - def channels(self): - return _mscl.ChannelGroup_channels(self) - - def name(self): - return _mscl.ChannelGroup_name(self) - - def eepromLocation(self, setting): - return _mscl.ChannelGroup_eepromLocation(self, setting) - - def settings(self): - return _mscl.ChannelGroup_settings(self) - - def hasSetting(self, setting): - return _mscl.ChannelGroup_hasSetting(self, setting) - - def hasSettingAndChannel(self, setting, channelNumber): - return _mscl.ChannelGroup_hasSettingAndChannel(self, setting, channelNumber) - __swig_destroy__ = _mscl.delete_ChannelGroup - -# Register ChannelGroup in _mscl: -_mscl.ChannelGroup_swigregister(ChannelGroup) - -class WirelessChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - channel_unknown = _mscl.WirelessChannel_channel_unknown - channel_1 = _mscl.WirelessChannel_channel_1 - channel_2 = _mscl.WirelessChannel_channel_2 - channel_3 = _mscl.WirelessChannel_channel_3 - channel_4 = _mscl.WirelessChannel_channel_4 - channel_5 = _mscl.WirelessChannel_channel_5 - channel_6 = _mscl.WirelessChannel_channel_6 - channel_7 = _mscl.WirelessChannel_channel_7 - channel_8 = _mscl.WirelessChannel_channel_8 - channel_9 = _mscl.WirelessChannel_channel_9 - channel_10 = _mscl.WirelessChannel_channel_10 - channel_11 = _mscl.WirelessChannel_channel_11 - channel_12 = _mscl.WirelessChannel_channel_12 - channel_13 = _mscl.WirelessChannel_channel_13 - channel_14 = _mscl.WirelessChannel_channel_14 - channel_15 = _mscl.WirelessChannel_channel_15 - channel_16 = _mscl.WirelessChannel_channel_16 - channel_digital_1 = _mscl.WirelessChannel_channel_digital_1 - channel_digital_2 = _mscl.WirelessChannel_channel_digital_2 - channel_digital_3 = _mscl.WirelessChannel_channel_digital_3 - channel_digital_4 = _mscl.WirelessChannel_channel_digital_4 - channel_digital_5 = _mscl.WirelessChannel_channel_digital_5 - channel_digital_6 = _mscl.WirelessChannel_channel_digital_6 - channel_digital_7 = _mscl.WirelessChannel_channel_digital_7 - channel_digital_8 = _mscl.WirelessChannel_channel_digital_8 - channel_digital_9 = _mscl.WirelessChannel_channel_digital_9 - channel_digital_10 = _mscl.WirelessChannel_channel_digital_10 - channel_digital_11 = _mscl.WirelessChannel_channel_digital_11 - channel_digital_12 = _mscl.WirelessChannel_channel_digital_12 - channel_digital_13 = _mscl.WirelessChannel_channel_digital_13 - channel_digital_14 = _mscl.WirelessChannel_channel_digital_14 - channel_digital_15 = _mscl.WirelessChannel_channel_digital_15 - channel_digital_16 = _mscl.WirelessChannel_channel_digital_16 - channel_structuralHealth = _mscl.WirelessChannel_channel_structuralHealth - channel_hcl_rawBase_mag1_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_x - channel_hcl_rawBase_mag1_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_y - channel_hcl_rawBase_mag1_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_z - channel_hcl_rawBase_mag2_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_x - channel_hcl_rawBase_mag2_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_y - channel_hcl_rawBase_mag2_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_z - channel_hcl_rawBase_mag3_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_x - channel_hcl_rawBase_mag3_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_y - channel_hcl_rawBase_mag3_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_z - channel_hcl_rawBase_mag4_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_x - channel_hcl_rawBase_mag4_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_y - channel_hcl_rawBase_mag4_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_z - channel_hcl_rawBase_mag5_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_x - channel_hcl_rawBase_mag5_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_y - channel_hcl_rawBase_mag5_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_z - channel_hcl_rawBase_mag6_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_x - channel_hcl_rawBase_mag6_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_y - channel_hcl_rawBase_mag6_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_z - channel_hcl_rawBase_mag7_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_x - channel_hcl_rawBase_mag7_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_y - channel_hcl_rawBase_mag7_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_z - channel_hcl_rawBase_mag8_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_x - channel_hcl_rawBase_mag8_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_y - channel_hcl_rawBase_mag8_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_z - channel_hcl_rawBase_gyro_x = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_x - channel_hcl_rawBase_gyro_y = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_y - channel_hcl_rawBase_gyro_z = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_z - channel_error_code = _mscl.WirelessChannel_channel_error_code - channel_hcl_rawStrain_BL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL30 - channel_hcl_rawStrain_BL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL120 - channel_hcl_rawStrain_A60 = _mscl.WirelessChannel_channel_hcl_rawStrain_A60 - channel_hcl_rawStrain_A150 = _mscl.WirelessChannel_channel_hcl_rawStrain_A150 - channel_hcl_rawStrain_AL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL30 - channel_hcl_rawStrain_AL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL120 - channel_hcl_rawStrain_BR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR60 - channel_hcl_rawStrain_BR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR150 - channel_hcl_rawStrain_B30 = _mscl.WirelessChannel_channel_hcl_rawStrain_B30 - channel_hcl_rawStrain_T120 = _mscl.WirelessChannel_channel_hcl_rawStrain_T120 - channel_hcl_rawStrain_AR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR60 - channel_hcl_rawStrain_AR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR150 - channel_hcl_rawStrain_A30 = _mscl.WirelessChannel_channel_hcl_rawStrain_A30 - channel_hcl_rawStrain_A120 = _mscl.WirelessChannel_channel_hcl_rawStrain_A120 - channel_hcl_rawStrain_BL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL90 - channel_hcl_rawStrain_BL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL180 - channel_hcl_rawStrain_BR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR30 - channel_hcl_rawStrain_BR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR120 - channel_hcl_rawStrain_AL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL90 - channel_hcl_rawStrain_AL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL180 - channel_hcl_rawStrain_AR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR30 - channel_hcl_rawStrain_AR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR120 - channel_hcl_rawStrain_B90 = _mscl.WirelessChannel_channel_hcl_rawStrain_B90 - channel_hcl_rawStrain_T0 = _mscl.WirelessChannel_channel_hcl_rawStrain_T0 - channel_hcl_rawStrain_BL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL60 - channel_hcl_rawStrain_BL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL150 - channel_hcl_rawStrain_A90 = _mscl.WirelessChannel_channel_hcl_rawStrain_A90 - channel_hcl_rawStrain_A0 = _mscl.WirelessChannel_channel_hcl_rawStrain_A0 - channel_hcl_rawStrain_AL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL60 - channel_hcl_rawStrain_AL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL150 - channel_hcl_rawStrain_BR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR90 - channel_hcl_rawStrain_BR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR0 - channel_hcl_rawStrain_T60 = _mscl.WirelessChannel_channel_hcl_rawStrain_T60 - channel_hcl_rawStrain_B150 = _mscl.WirelessChannel_channel_hcl_rawStrain_B150 - channel_hcl_rawStrain_AR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR90 - channel_hcl_rawStrain_AR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR0 - channel_hcl_rawInertial_accel1 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel1 - channel_hcl_rawInertial_accel2 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel2 - channel_hcl_rawInertial_accel3 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel3 - channel_hcl_rawInertial_accel4 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel4 - channel_hcl_rawInertial_accel5 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel5 - channel_hcl_rawInertial_accel6 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel6 - channel_hcl_rawInertial_accel7 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel7 - channel_hcl_rawInertial_accel8 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel8 - channel_hcl_rawInertial_gyroX = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroX - channel_hcl_rawInertial_gyroY = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroY - channel_hcl_rawInertial_gyroZ = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroZ - channel_rawAngleStrain = _mscl.WirelessChannel_channel_rawAngleStrain - channel_beaconEcho = _mscl.WirelessChannel_channel_beaconEcho - channel_rfSweep = _mscl.WirelessChannel_channel_rfSweep - channel_diag_state = _mscl.WirelessChannel_channel_diag_state - channel_diag_runtime_idle = _mscl.WirelessChannel_channel_diag_runtime_idle - channel_diag_runtime_sleep = _mscl.WirelessChannel_channel_diag_runtime_sleep - channel_diag_runtime_activeRun = _mscl.WirelessChannel_channel_diag_runtime_activeRun - channel_diag_runtime_inactiveRun = _mscl.WirelessChannel_channel_diag_runtime_inactiveRun - channel_diag_resetCounter = _mscl.WirelessChannel_channel_diag_resetCounter - channel_diag_lowBatteryFlag = _mscl.WirelessChannel_channel_diag_lowBatteryFlag - channel_diag_sweepIndex = _mscl.WirelessChannel_channel_diag_sweepIndex - channel_diag_badSweepCount = _mscl.WirelessChannel_channel_diag_badSweepCount - channel_diag_totalTx = _mscl.WirelessChannel_channel_diag_totalTx - channel_diag_totalReTx = _mscl.WirelessChannel_channel_diag_totalReTx - channel_diag_totalDroppedPackets = _mscl.WirelessChannel_channel_diag_totalDroppedPackets - channel_diag_builtInTestResult = _mscl.WirelessChannel_channel_diag_builtInTestResult - channel_diag_eventIndex = _mscl.WirelessChannel_channel_diag_eventIndex - channel_hcl_axialLoadX = _mscl.WirelessChannel_channel_hcl_axialLoadX - channel_hcl_axialLoadY = _mscl.WirelessChannel_channel_hcl_axialLoadY - channel_hcl_axialLoadZ = _mscl.WirelessChannel_channel_hcl_axialLoadZ - channel_hcl_bendingMomentFlap = _mscl.WirelessChannel_channel_hcl_bendingMomentFlap - channel_hcl_bendingMomentLag = _mscl.WirelessChannel_channel_hcl_bendingMomentLag - channel_hcl_bendingMomentPitch = _mscl.WirelessChannel_channel_hcl_bendingMomentPitch - channel_hcl_motionFlap_mag = _mscl.WirelessChannel_channel_hcl_motionFlap_mag - channel_hcl_motionLag_mag = _mscl.WirelessChannel_channel_hcl_motionLag_mag - channel_hcl_motionPitch_mag = _mscl.WirelessChannel_channel_hcl_motionPitch_mag - channel_hcl_motionFlap_inertial = _mscl.WirelessChannel_channel_hcl_motionFlap_inertial - channel_hcl_motionLag_inertial = _mscl.WirelessChannel_channel_hcl_motionLag_inertial - channel_hcl_motionPitch_inertial = _mscl.WirelessChannel_channel_hcl_motionPitch_inertial - channel_hcl_cockingStiffness_mag = _mscl.WirelessChannel_channel_hcl_cockingStiffness_mag - channel_hcl_cockingStiffness_inertial = _mscl.WirelessChannel_channel_hcl_cockingStiffness_inertial - channel_hcl_temperature = _mscl.WirelessChannel_channel_hcl_temperature - channel_diag_externalPower = _mscl.WirelessChannel_channel_diag_externalPower - channel_diag_internalTemp = _mscl.WirelessChannel_channel_diag_internalTemp - channel_1_rms = _mscl.WirelessChannel_channel_1_rms - channel_2_rms = _mscl.WirelessChannel_channel_2_rms - channel_3_rms = _mscl.WirelessChannel_channel_3_rms - channel_4_rms = _mscl.WirelessChannel_channel_4_rms - channel_5_rms = _mscl.WirelessChannel_channel_5_rms - channel_6_rms = _mscl.WirelessChannel_channel_6_rms - channel_7_rms = _mscl.WirelessChannel_channel_7_rms - channel_8_rms = _mscl.WirelessChannel_channel_8_rms - channel_9_rms = _mscl.WirelessChannel_channel_9_rms - channel_10_rms = _mscl.WirelessChannel_channel_10_rms - channel_11_rms = _mscl.WirelessChannel_channel_11_rms - channel_12_rms = _mscl.WirelessChannel_channel_12_rms - channel_13_rms = _mscl.WirelessChannel_channel_13_rms - channel_14_rms = _mscl.WirelessChannel_channel_14_rms - channel_15_rms = _mscl.WirelessChannel_channel_15_rms - channel_16_rms = _mscl.WirelessChannel_channel_16_rms - channel_1_peakToPeak = _mscl.WirelessChannel_channel_1_peakToPeak - channel_2_peakToPeak = _mscl.WirelessChannel_channel_2_peakToPeak - channel_3_peakToPeak = _mscl.WirelessChannel_channel_3_peakToPeak - channel_4_peakToPeak = _mscl.WirelessChannel_channel_4_peakToPeak - channel_5_peakToPeak = _mscl.WirelessChannel_channel_5_peakToPeak - channel_6_peakToPeak = _mscl.WirelessChannel_channel_6_peakToPeak - channel_7_peakToPeak = _mscl.WirelessChannel_channel_7_peakToPeak - channel_8_peakToPeak = _mscl.WirelessChannel_channel_8_peakToPeak - channel_9_peakToPeak = _mscl.WirelessChannel_channel_9_peakToPeak - channel_10_peakToPeak = _mscl.WirelessChannel_channel_10_peakToPeak - channel_11_peakToPeak = _mscl.WirelessChannel_channel_11_peakToPeak - channel_12_peakToPeak = _mscl.WirelessChannel_channel_12_peakToPeak - channel_13_peakToPeak = _mscl.WirelessChannel_channel_13_peakToPeak - channel_14_peakToPeak = _mscl.WirelessChannel_channel_14_peakToPeak - channel_15_peakToPeak = _mscl.WirelessChannel_channel_15_peakToPeak - channel_16_peakToPeak = _mscl.WirelessChannel_channel_16_peakToPeak - channel_1_ips = _mscl.WirelessChannel_channel_1_ips - channel_2_ips = _mscl.WirelessChannel_channel_2_ips - channel_3_ips = _mscl.WirelessChannel_channel_3_ips - channel_4_ips = _mscl.WirelessChannel_channel_4_ips - channel_5_ips = _mscl.WirelessChannel_channel_5_ips - channel_6_ips = _mscl.WirelessChannel_channel_6_ips - channel_7_ips = _mscl.WirelessChannel_channel_7_ips - channel_8_ips = _mscl.WirelessChannel_channel_8_ips - channel_9_ips = _mscl.WirelessChannel_channel_9_ips - channel_10_ips = _mscl.WirelessChannel_channel_10_ips - channel_11_ips = _mscl.WirelessChannel_channel_11_ips - channel_12_ips = _mscl.WirelessChannel_channel_12_ips - channel_13_ips = _mscl.WirelessChannel_channel_13_ips - channel_14_ips = _mscl.WirelessChannel_channel_14_ips - channel_15_ips = _mscl.WirelessChannel_channel_15_ips - channel_16_ips = _mscl.WirelessChannel_channel_16_ips - channel_1_crestFactor = _mscl.WirelessChannel_channel_1_crestFactor - channel_2_crestFactor = _mscl.WirelessChannel_channel_2_crestFactor - channel_3_crestFactor = _mscl.WirelessChannel_channel_3_crestFactor - channel_4_crestFactor = _mscl.WirelessChannel_channel_4_crestFactor - channel_5_crestFactor = _mscl.WirelessChannel_channel_5_crestFactor - channel_6_crestFactor = _mscl.WirelessChannel_channel_6_crestFactor - channel_7_crestFactor = _mscl.WirelessChannel_channel_7_crestFactor - channel_8_crestFactor = _mscl.WirelessChannel_channel_8_crestFactor - channel_9_crestFactor = _mscl.WirelessChannel_channel_9_crestFactor - channel_10_crestFactor = _mscl.WirelessChannel_channel_10_crestFactor - channel_11_crestFactor = _mscl.WirelessChannel_channel_11_crestFactor - channel_12_crestFactor = _mscl.WirelessChannel_channel_12_crestFactor - channel_13_crestFactor = _mscl.WirelessChannel_channel_13_crestFactor - channel_14_crestFactor = _mscl.WirelessChannel_channel_14_crestFactor - channel_15_crestFactor = _mscl.WirelessChannel_channel_15_crestFactor - channel_16_crestFactor = _mscl.WirelessChannel_channel_16_crestFactor - channel_diag_syncAttempts = _mscl.WirelessChannel_channel_diag_syncAttempts - channel_diag_syncFailures = _mscl.WirelessChannel_channel_diag_syncFailures - channel_diag_secsSinceLastSync = _mscl.WirelessChannel_channel_diag_secsSinceLastSync - channel_beaconConflict = _mscl.WirelessChannel_channel_beaconConflict - channel_1_mean = _mscl.WirelessChannel_channel_1_mean - channel_2_mean = _mscl.WirelessChannel_channel_2_mean - channel_3_mean = _mscl.WirelessChannel_channel_3_mean - channel_4_mean = _mscl.WirelessChannel_channel_4_mean - channel_5_mean = _mscl.WirelessChannel_channel_5_mean - channel_6_mean = _mscl.WirelessChannel_channel_6_mean - channel_7_mean = _mscl.WirelessChannel_channel_7_mean - channel_8_mean = _mscl.WirelessChannel_channel_8_mean - channel_9_mean = _mscl.WirelessChannel_channel_9_mean - channel_10_mean = _mscl.WirelessChannel_channel_10_mean - channel_11_mean = _mscl.WirelessChannel_channel_11_mean - channel_12_mean = _mscl.WirelessChannel_channel_12_mean - channel_13_mean = _mscl.WirelessChannel_channel_13_mean - channel_14_mean = _mscl.WirelessChannel_channel_14_mean - channel_15_mean = _mscl.WirelessChannel_channel_15_mean - channel_16_mean = _mscl.WirelessChannel_channel_16_mean - channel_1_mmps = _mscl.WirelessChannel_channel_1_mmps - channel_2_mmps = _mscl.WirelessChannel_channel_2_mmps - channel_3_mmps = _mscl.WirelessChannel_channel_3_mmps - channel_4_mmps = _mscl.WirelessChannel_channel_4_mmps - channel_5_mmps = _mscl.WirelessChannel_channel_5_mmps - channel_6_mmps = _mscl.WirelessChannel_channel_6_mmps - channel_7_mmps = _mscl.WirelessChannel_channel_7_mmps - channel_8_mmps = _mscl.WirelessChannel_channel_8_mmps - channel_9_mmps = _mscl.WirelessChannel_channel_9_mmps - channel_10_mmps = _mscl.WirelessChannel_channel_10_mmps - channel_11_mmps = _mscl.WirelessChannel_channel_11_mmps - channel_12_mmps = _mscl.WirelessChannel_channel_12_mmps - channel_13_mmps = _mscl.WirelessChannel_channel_13_mmps - channel_14_mmps = _mscl.WirelessChannel_channel_14_mmps - channel_15_mmps = _mscl.WirelessChannel_channel_15_mmps - channel_16_mmps = _mscl.WirelessChannel_channel_16_mmps - channel_diag_memoryFull = _mscl.WirelessChannel_channel_diag_memoryFull - - def __init__(self, *args): - _mscl.WirelessChannel_swiginit(self, _mscl.new_WirelessChannel(*args)) - - def channelNumber(self): - return _mscl.WirelessChannel_channelNumber(self) - - def id(self): - return _mscl.WirelessChannel_id(self) - - def type(self): - return _mscl.WirelessChannel_type(self) - - def description(self): - return _mscl.WirelessChannel_description(self) - - def adcResolution(self): - return _mscl.WirelessChannel_adcResolution(self) - - def adcMaxValue(self): - return _mscl.WirelessChannel_adcMaxValue(self) - - def name(self): - return _mscl.WirelessChannel_name(self) - __swig_destroy__ = _mscl.delete_WirelessChannel - -# Register WirelessChannel in _mscl: -_mscl.WirelessChannel_swigregister(WirelessChannel) - -class WirelessDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessDataPoint_swiginit(self, _mscl.new_WirelessDataPoint()) - - def channelId(self): - return _mscl.WirelessDataPoint_channelId(self) - - def channelNumber(self): - return _mscl.WirelessDataPoint_channelNumber(self) - - def channelName(self): - return _mscl.WirelessDataPoint_channelName(self) - __swig_destroy__ = _mscl.delete_WirelessDataPoint - -# Register WirelessDataPoint in _mscl: -_mscl.WirelessDataPoint_swigregister(WirelessDataPoint) - -class DataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - samplingType_NonSync = _mscl.DataSweep_samplingType_NonSync - samplingType_NonSync_Buffered = _mscl.DataSweep_samplingType_NonSync_Buffered - samplingType_SyncSampling = _mscl.DataSweep_samplingType_SyncSampling - samplingType_SyncSampling_Burst = _mscl.DataSweep_samplingType_SyncSampling_Burst - samplingType_AsyncDigital = _mscl.DataSweep_samplingType_AsyncDigital - samplingType_AsyncDigitalAnalog = _mscl.DataSweep_samplingType_AsyncDigitalAnalog - samplingType_SHM = _mscl.DataSweep_samplingType_SHM - samplingType_BeaconEcho = _mscl.DataSweep_samplingType_BeaconEcho - samplingType_RfSweep = _mscl.DataSweep_samplingType_RfSweep - samplingType_Diagnostic = _mscl.DataSweep_samplingType_Diagnostic - - def __init__(self): - _mscl.DataSweep_swiginit(self, _mscl.new_DataSweep()) - - def timestamp(self): - return _mscl.DataSweep_timestamp(self) - - def tick(self): - return _mscl.DataSweep_tick(self) - - def sampleRate(self): - return _mscl.DataSweep_sampleRate(self) - - def nodeAddress(self): - return _mscl.DataSweep_nodeAddress(self) - - def data(self): - return _mscl.DataSweep_data(self) - - def samplingType(self): - return _mscl.DataSweep_samplingType(self) - - def nodeRssi(self): - return _mscl.DataSweep_nodeRssi(self) - - def baseRssi(self): - return _mscl.DataSweep_baseRssi(self) - - def frequency(self): - return _mscl.DataSweep_frequency(self) - - def calApplied(self): - return _mscl.DataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_DataSweep - -# Register DataSweep in _mscl: -_mscl.DataSweep_swigregister(DataSweep) - -class BaseStationAnalogPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationAnalogPair_swiginit(self, _mscl.new_BaseStationAnalogPair()) - - @staticmethod - def Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - - @staticmethod - def NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - - def nodeAddress(self, *args): - return _mscl.BaseStationAnalogPair_nodeAddress(self, *args) - - def nodeChannel(self, *args): - return _mscl.BaseStationAnalogPair_nodeChannel(self, *args) - - def expectFloatData(self, *args): - return _mscl.BaseStationAnalogPair_expectFloatData(self, *args) - - def outputVal_0V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_0V(self, *args) - - def outputVal_3V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_3V(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationAnalogPair - -# Register BaseStationAnalogPair in _mscl: -_mscl.BaseStationAnalogPair_swigregister(BaseStationAnalogPair) -BaseStationAnalogPair.CHANNEL_NOT_FLOAT = _mscl.cvar.BaseStationAnalogPair_CHANNEL_NOT_FLOAT - -def BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - -def BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - -class BaseStationButton(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - btn_nodeSleep = _mscl.BaseStationButton_btn_nodeSleep - btn_nodeStop = _mscl.BaseStationButton_btn_nodeStop - btn_enableBeacon = _mscl.BaseStationButton_btn_enableBeacon - btn_disableBeacon = _mscl.BaseStationButton_btn_disableBeacon - btn_nodeNonSyncSampling = _mscl.BaseStationButton_btn_nodeNonSyncSampling - btn_nodeSyncSampling = _mscl.BaseStationButton_btn_nodeSyncSampling - btn_nodeArmedDatalogging = _mscl.BaseStationButton_btn_nodeArmedDatalogging - btn_cyclePower = _mscl.BaseStationButton_btn_cyclePower - btn_disabled = _mscl.BaseStationButton_btn_disabled - - def __init__(self, *args): - _mscl.BaseStationButton_swiginit(self, _mscl.new_BaseStationButton(*args)) - - def command(self, *args): - return _mscl.BaseStationButton_command(self, *args) - - def nodeAddress(self, *args): - return _mscl.BaseStationButton_nodeAddress(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationButton - -# Register BaseStationButton in _mscl: -_mscl.BaseStationButton_swigregister(BaseStationButton) - -class BaseStationConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationConfig_swiginit(self, _mscl.new_BaseStationConfig()) - - def transmitPower(self, *args): - return _mscl.BaseStationConfig_transmitPower(self, *args) - - def communicationProtocol(self, *args): - return _mscl.BaseStationConfig_communicationProtocol(self, *args) - - def buttonLongPress(self, *args): - return _mscl.BaseStationConfig_buttonLongPress(self, *args) - - def buttonShortPress(self, *args): - return _mscl.BaseStationConfig_buttonShortPress(self, *args) - - def analogPairingEnable(self, *args): - return _mscl.BaseStationConfig_analogPairingEnable(self, *args) - - def analogTimeoutTime(self, *args): - return _mscl.BaseStationConfig_analogTimeoutTime(self, *args) - - def analogTimeoutVoltage(self, *args): - return _mscl.BaseStationConfig_analogTimeoutVoltage(self, *args) - - def analogExceedanceEnable(self, *args): - return _mscl.BaseStationConfig_analogExceedanceEnable(self, *args) - - def analogPairing(self, *args): - return _mscl.BaseStationConfig_analogPairing(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationConfig - -# Register BaseStationConfig in _mscl: -_mscl.BaseStationConfig_swigregister(BaseStationConfig) - -class BeaconStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BeaconStatus_swiginit(self, _mscl.new_BeaconStatus(*args)) - - def enabled(self): - return _mscl.BeaconStatus_enabled(self) - - def timestamp(self): - return _mscl.BeaconStatus_timestamp(self) - __swig_destroy__ = _mscl.delete_BeaconStatus - -# Register BeaconStatus in _mscl: -_mscl.BeaconStatus_swigregister(BeaconStatus) - -class BaseStationInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region, asppVer_lxrs, asppVer_lxrsPlus): - _mscl.BaseStationInfo_swiginit(self, _mscl.new_BaseStationInfo(fw, model, region, asppVer_lxrs, asppVer_lxrsPlus)) - __swig_destroy__ = _mscl.delete_BaseStationInfo - -# Register BaseStationInfo in _mscl: -_mscl.BaseStationInfo_swigregister(BaseStationInfo) - -class BaseStation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_BASE_COMMANDS_DEFAULT_TIMEOUT - ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT - BROADCAST_NODE_ADDRESS = _mscl.BaseStation_BROADCAST_NODE_ADDRESS - BROADCAST_NODE_ADDRESS_ASPP3 = _mscl.BaseStation_BROADCAST_NODE_ADDRESS_ASPP3 - - def __init__(self, *args): - _mscl.BaseStation_swiginit(self, _mscl.new_BaseStation(*args)) - __swig_destroy__ = _mscl.delete_BaseStation - - @staticmethod - def Mock(*args): - return _mscl.BaseStation_Mock(*args) - - @staticmethod - def deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - - def connection(self): - return _mscl.BaseStation_connection(self) - - def features(self): - return _mscl.BaseStation_features(self) - - def lastCommunicationTime(self): - return _mscl.BaseStation_lastCommunicationTime(self) - - def readWriteRetries(self, *args): - return _mscl.BaseStation_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.BaseStation_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.BaseStation_clearEepromCache(self) - - def frequency(self): - return _mscl.BaseStation_frequency(self) - - def communicationProtocol(self): - return _mscl.BaseStation_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.BaseStation_firmwareVersion(self) - - def model(self): - return _mscl.BaseStation_model(self) - - def serial(self): - return _mscl.BaseStation_serial(self) - - def name(self): - return _mscl.BaseStation_name(self) - - def microcontroller(self): - return _mscl.BaseStation_microcontroller(self) - - def regionCode(self): - return _mscl.BaseStation_regionCode(self) - - def getData(self, timeout=0, maxSweeps=0): - return _mscl.BaseStation_getData(self, timeout, maxSweeps) - - def totalData(self): - return _mscl.BaseStation_totalData(self) - - def getNodeDiscoveries(self): - return _mscl.BaseStation_getNodeDiscoveries(self) - - def timeout(self, *args): - return _mscl.BaseStation_timeout(self, *args) - - def ping(self): - return _mscl.BaseStation_ping(self) - - def readEeprom(self, eepromAddress): - return _mscl.BaseStation_readEeprom(self, eepromAddress) - - def writeEeprom(self, eepromAddress, value): - return _mscl.BaseStation_writeEeprom(self, eepromAddress, value) - - def enableBeacon(self, *args): - return _mscl.BaseStation_enableBeacon(self, *args) - - def disableBeacon(self): - return _mscl.BaseStation_disableBeacon(self) - - def beaconStatus(self): - return _mscl.BaseStation_beaconStatus(self) - - def startRfSweepMode(self, *args): - return _mscl.BaseStation_startRfSweepMode(self, *args) - - def cyclePower(self, checkComm=True): - return _mscl.BaseStation_cyclePower(self, checkComm) - - def resetRadio(self): - return _mscl.BaseStation_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.BaseStation_changeFrequency(self, frequency) - - def broadcastSetToIdle(self): - return _mscl.BaseStation_broadcastSetToIdle(self) - - def verifyConfig(self, config, outIssues): - return _mscl.BaseStation_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.BaseStation_applyConfig(self, config) - - def getTransmitPower(self): - return _mscl.BaseStation_getTransmitPower(self) - - def getButtonLongPress(self, buttonNumber): - return _mscl.BaseStation_getButtonLongPress(self, buttonNumber) - - def getButtonShortPress(self, buttonNumber): - return _mscl.BaseStation_getButtonShortPress(self, buttonNumber) - - def getAnalogPairingEnabled(self): - return _mscl.BaseStation_getAnalogPairingEnabled(self) - - def getAnalogTimeoutTime(self): - return _mscl.BaseStation_getAnalogTimeoutTime(self) - - def getAnalogTimeoutVoltage(self): - return _mscl.BaseStation_getAnalogTimeoutVoltage(self) - - def getAnalogExceedanceEnabled(self): - return _mscl.BaseStation_getAnalogExceedanceEnabled(self) - - def getAnalogPair(self, portNumber): - return _mscl.BaseStation_getAnalogPair(self, portNumber) - -# Register BaseStation in _mscl: -_mscl.BaseStation_swigregister(BaseStation) - -def BaseStation_Mock(*args): - return _mscl.BaseStation_Mock(*args) - -def BaseStation_deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - -class LoggedDataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LoggedDataSweep_swiginit(self, _mscl.new_LoggedDataSweep(*args)) - - def timestamp(self): - return _mscl.LoggedDataSweep_timestamp(self) - - def tick(self): - return _mscl.LoggedDataSweep_tick(self) - - def data(self): - return _mscl.LoggedDataSweep_data(self) - - def calApplied(self): - return _mscl.LoggedDataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweep - -# Register LoggedDataSweep in _mscl: -_mscl.LoggedDataSweep_swigregister(LoggedDataSweep) - -class RadioFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.RadioFeatures_swiginit(self, _mscl.new_RadioFeatures(*args)) - - def extendedRange(self): - return _mscl.RadioFeatures_extendedRange(self) - __swig_destroy__ = _mscl.delete_RadioFeatures - -# Register RadioFeatures in _mscl: -_mscl.RadioFeatures_swigregister(RadioFeatures) - -class WirelessNodeConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessNodeConfig_swiginit(self, _mscl.new_WirelessNodeConfig()) - SENSOR_DELAY_ALWAYS_ON = _mscl.WirelessNodeConfig_SENSOR_DELAY_ALWAYS_ON - - def defaultMode(self, *args): - return _mscl.WirelessNodeConfig_defaultMode(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.WirelessNodeConfig_inactivityTimeout(self, *args) - - def checkRadioInterval(self, *args): - return _mscl.WirelessNodeConfig_checkRadioInterval(self, *args) - - def transmitPower(self, *args): - return _mscl.WirelessNodeConfig_transmitPower(self, *args) - - def samplingMode(self, *args): - return _mscl.WirelessNodeConfig_samplingMode(self, *args) - - def sampleRate(self, *args): - return _mscl.WirelessNodeConfig_sampleRate(self, *args) - - def activeChannels(self, *args): - return _mscl.WirelessNodeConfig_activeChannels(self, *args) - - def numSweeps(self, *args): - return _mscl.WirelessNodeConfig_numSweeps(self, *args) - - def unlimitedDuration(self, *args): - return _mscl.WirelessNodeConfig_unlimitedDuration(self, *args) - - def dataFormat(self, *args): - return _mscl.WirelessNodeConfig_dataFormat(self, *args) - - def dataCollectionMethod(self, *args): - return _mscl.WirelessNodeConfig_dataCollectionMethod(self, *args) - - def timeBetweenBursts(self, *args): - return _mscl.WirelessNodeConfig_timeBetweenBursts(self, *args) - - def lostBeaconTimeout(self, *args): - return _mscl.WirelessNodeConfig_lostBeaconTimeout(self, *args) - - def pullUpResistor(self, *args): - return _mscl.WirelessNodeConfig_pullUpResistor(self, *args) - - def inputRange(self, *args): - return _mscl.WirelessNodeConfig_inputRange(self, *args) - - def hardwareOffset(self, *args): - return _mscl.WirelessNodeConfig_hardwareOffset(self, *args) - - def antiAliasingFilter(self, *args): - return _mscl.WirelessNodeConfig_antiAliasingFilter(self, *args) - - def cfcFilterConfig(self, *args): - return _mscl.WirelessNodeConfig_cfcFilterConfig(self, *args) - - def lowPassFilter(self, *args): - return _mscl.WirelessNodeConfig_lowPassFilter(self, *args) - - def highPassFilter(self, *args): - return _mscl.WirelessNodeConfig_highPassFilter(self, *args) - - def gaugeFactor(self, *args): - return _mscl.WirelessNodeConfig_gaugeFactor(self, *args) - - def gaugeResistance(self, *args): - return _mscl.WirelessNodeConfig_gaugeResistance(self, *args) - - def excitationVoltage(self, *args): - return _mscl.WirelessNodeConfig_excitationVoltage(self, *args) - - def numActiveGauges(self, *args): - return _mscl.WirelessNodeConfig_numActiveGauges(self, *args) - - def lowBatteryThreshold(self, *args): - return _mscl.WirelessNodeConfig_lowBatteryThreshold(self, *args) - - def linearEquation(self, *args): - return _mscl.WirelessNodeConfig_linearEquation(self, *args) - - def unit(self, *args): - return _mscl.WirelessNodeConfig_unit(self, *args) - - def equationType(self, *args): - return _mscl.WirelessNodeConfig_equationType(self, *args) - - def filterSettlingTime(self, *args): - return _mscl.WirelessNodeConfig_filterSettlingTime(self, *args) - - def thermocoupleType(self, *args): - return _mscl.WirelessNodeConfig_thermocoupleType(self, *args) - - def tempSensorOptions(self, *args): - return _mscl.WirelessNodeConfig_tempSensorOptions(self, *args) - - def debounceFilter(self, *args): - return _mscl.WirelessNodeConfig_debounceFilter(self, *args) - - def fatigueOptions(self, *args): - return _mscl.WirelessNodeConfig_fatigueOptions(self, *args) - - def histogramOptions(self, *args): - return _mscl.WirelessNodeConfig_histogramOptions(self, *args) - - def activitySense(self, *args): - return _mscl.WirelessNodeConfig_activitySense(self, *args) - - def eventTriggerOptions(self, *args): - return _mscl.WirelessNodeConfig_eventTriggerOptions(self, *args) - - def diagnosticInterval(self, *args): - return _mscl.WirelessNodeConfig_diagnosticInterval(self, *args) - - def storageLimitMode(self, *args): - return _mscl.WirelessNodeConfig_storageLimitMode(self, *args) - - def sensorDelay(self, *args): - return _mscl.WirelessNodeConfig_sensorDelay(self, *args) - - def dataMode(self, *args): - return _mscl.WirelessNodeConfig_dataMode(self, *args) - - def derivedDataRate(self, *args): - return _mscl.WirelessNodeConfig_derivedDataRate(self, *args) - - def derivedChannelMask(self, *args): - return _mscl.WirelessNodeConfig_derivedChannelMask(self, *args) - - def derivedVelocityUnit(self, *args): - return _mscl.WirelessNodeConfig_derivedVelocityUnit(self, *args) - - def communicationProtocol(self, *args): - return _mscl.WirelessNodeConfig_communicationProtocol(self, *args) - - def sensorOutputMode(self, *args): - return _mscl.WirelessNodeConfig_sensorOutputMode(self, *args) - - @staticmethod - def flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - - @staticmethod - def flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - __swig_destroy__ = _mscl.delete_WirelessNodeConfig - -# Register WirelessNodeConfig in _mscl: -_mscl.WirelessNodeConfig_swigregister(WirelessNodeConfig) - -def WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - -def WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - -class AutoBalanceResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoBalanceResult_swiginit(self, _mscl.new_AutoBalanceResult()) - - def errorCode(self): - return _mscl.AutoBalanceResult_errorCode(self) - - def percentAchieved(self): - return _mscl.AutoBalanceResult_percentAchieved(self) - - def hardwareOffset(self): - return _mscl.AutoBalanceResult_hardwareOffset(self) - __swig_destroy__ = _mscl.delete_AutoBalanceResult - -# Register AutoBalanceResult in _mscl: -_mscl.AutoBalanceResult_swigregister(AutoBalanceResult) - -class ShuntCalCmdInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - useInternalShunt = property(_mscl.ShuntCalCmdInfo_useInternalShunt_get, _mscl.ShuntCalCmdInfo_useInternalShunt_set) - numActiveGauges = property(_mscl.ShuntCalCmdInfo_numActiveGauges_get, _mscl.ShuntCalCmdInfo_numActiveGauges_set) - gaugeResistance = property(_mscl.ShuntCalCmdInfo_gaugeResistance_get, _mscl.ShuntCalCmdInfo_gaugeResistance_set) - shuntResistance = property(_mscl.ShuntCalCmdInfo_shuntResistance_get, _mscl.ShuntCalCmdInfo_shuntResistance_set) - gaugeFactor = property(_mscl.ShuntCalCmdInfo_gaugeFactor_get, _mscl.ShuntCalCmdInfo_gaugeFactor_set) - inputRange = property(_mscl.ShuntCalCmdInfo_inputRange_get, _mscl.ShuntCalCmdInfo_inputRange_set) - hardwareOffset = property(_mscl.ShuntCalCmdInfo_hardwareOffset_get, _mscl.ShuntCalCmdInfo_hardwareOffset_set) - excitationVoltage = property(_mscl.ShuntCalCmdInfo_excitationVoltage_get, _mscl.ShuntCalCmdInfo_excitationVoltage_set) - - def __init__(self): - _mscl.ShuntCalCmdInfo_swiginit(self, _mscl.new_ShuntCalCmdInfo()) - __swig_destroy__ = _mscl.delete_ShuntCalCmdInfo - -# Register ShuntCalCmdInfo in _mscl: -_mscl.ShuntCalCmdInfo_swigregister(ShuntCalCmdInfo) - -class AutoCalResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_AutoCalResult - - def completionFlag(self): - return _mscl.AutoCalResult_completionFlag(self) - -# Register AutoCalResult in _mscl: -_mscl.AutoCalResult_swigregister(AutoCalResult) - -class AutoCalResult_shmLink(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink_swiginit(self, _mscl.new_AutoCalResult_shmLink()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh3(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink_offsetCh1(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink_offsetCh2(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink_temperature(self) - -# Register AutoCalResult_shmLink in _mscl: -_mscl.AutoCalResult_shmLink_swigregister(AutoCalResult_shmLink) - -class AutoCalResult_shmLink201(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink201_swiginit(self, _mscl.new_AutoCalResult_shmLink201()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink201 - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh3(self) - - def slopeCh1(self): - return _mscl.AutoCalResult_shmLink201_slopeCh1(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink201_offsetCh1(self) - - def slopeCh2(self): - return _mscl.AutoCalResult_shmLink201_slopeCh2(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink201_offsetCh2(self) - - def slopeCh3(self): - return _mscl.AutoCalResult_shmLink201_slopeCh3(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink201_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink201_temperature(self) - -# Register AutoCalResult_shmLink201 in _mscl: -_mscl.AutoCalResult_shmLink201_swigregister(AutoCalResult_shmLink201) - -class AutoShuntCalResult(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoShuntCalResult_swiginit(self, _mscl.new_AutoShuntCalResult()) - __swig_destroy__ = _mscl.delete_AutoShuntCalResult - - def errorFlag(self): - return _mscl.AutoShuntCalResult_errorFlag(self) - - def slope(self): - return _mscl.AutoShuntCalResult_slope(self) - - def offset(self): - return _mscl.AutoShuntCalResult_offset(self) - - def baseMedian(self): - return _mscl.AutoShuntCalResult_baseMedian(self) - - def baseMin(self): - return _mscl.AutoShuntCalResult_baseMin(self) - - def baseMax(self): - return _mscl.AutoShuntCalResult_baseMax(self) - - def shuntMedian(self): - return _mscl.AutoShuntCalResult_shuntMedian(self) - - def shuntMin(self): - return _mscl.AutoShuntCalResult_shuntMin(self) - - def shuntMax(self): - return _mscl.AutoShuntCalResult_shuntMax(self) - -# Register AutoShuntCalResult in _mscl: -_mscl.AutoShuntCalResult_swigregister(AutoShuntCalResult) - -class PingResponse(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PingResponse_swiginit(self, _mscl.new_PingResponse()) - - def success(self): - return _mscl.PingResponse_success(self) - - def nodeRssi(self): - return _mscl.PingResponse_nodeRssi(self) - - def baseRssi(self): - return _mscl.PingResponse_baseRssi(self) - __swig_destroy__ = _mscl.delete_PingResponse - -# Register PingResponse in _mscl: -_mscl.PingResponse_swigregister(PingResponse) - -class SetToIdleStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - setToIdleResult_success = _mscl.SetToIdleStatus_setToIdleResult_success - setToIdleResult_canceled = _mscl.SetToIdleStatus_setToIdleResult_canceled - setToIdleResult_failed = _mscl.SetToIdleStatus_setToIdleResult_failed - setToIdleResult_notCompleted = _mscl.SetToIdleStatus_setToIdleResult_notCompleted - - def result(self): - return _mscl.SetToIdleStatus_result(self) - - def complete(self, timeout=10): - return _mscl.SetToIdleStatus_complete(self, timeout) - - def cancel(self): - return _mscl.SetToIdleStatus_cancel(self) - __swig_destroy__ = _mscl.delete_SetToIdleStatus - -# Register SetToIdleStatus in _mscl: -_mscl.SetToIdleStatus_swigregister(SetToIdleStatus) - -class NodeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region): - _mscl.NodeInfo_swiginit(self, _mscl.new_NodeInfo(fw, model, region)) - __swig_destroy__ = _mscl.delete_NodeInfo - -# Register NodeInfo in _mscl: -_mscl.NodeInfo_swigregister(NodeInfo) - -class WirelessNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, nodeAddress, basestation): - _mscl.WirelessNode_swiginit(self, _mscl.new_WirelessNode(nodeAddress, basestation)) - __swig_destroy__ = _mscl.delete_WirelessNode - - @staticmethod - def Mock(*args): - return _mscl.WirelessNode_Mock(*args) - - @staticmethod - def deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - - def features(self): - return _mscl.WirelessNode_features(self) - - def lastCommunicationTime(self): - return _mscl.WirelessNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.WirelessNode_lastDeviceState(self) - - def setBaseStation(self, basestation): - return _mscl.WirelessNode_setBaseStation(self, basestation) - - def getBaseStation(self): - return _mscl.WirelessNode_getBaseStation(self) - - def hasBaseStation(self, basestation): - return _mscl.WirelessNode_hasBaseStation(self, basestation) - - def useGroupRead(self, useGroup): - return _mscl.WirelessNode_useGroupRead(self, useGroup) - - def readWriteRetries(self, *args): - return _mscl.WirelessNode_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.WirelessNode_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.WirelessNode_clearEepromCache(self) - - def updateEepromCacheFromNodeDiscovery(self, nodeDisovery): - return _mscl.WirelessNode_updateEepromCacheFromNodeDiscovery(self, nodeDisovery) - - def getEepromCache(self): - return _mscl.WirelessNode_getEepromCache(self) - - def nodeAddress(self): - return _mscl.WirelessNode_nodeAddress(self) - - def frequency(self): - return _mscl.WirelessNode_frequency(self) - - def communicationProtocol(self): - return _mscl.WirelessNode_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.WirelessNode_firmwareVersion(self) - - def model(self): - return _mscl.WirelessNode_model(self) - - def serial(self): - return _mscl.WirelessNode_serial(self) - - def name(self): - return _mscl.WirelessNode_name(self) - - def microcontroller(self): - return _mscl.WirelessNode_microcontroller(self) - - def radioFeatures(self): - return _mscl.WirelessNode_radioFeatures(self) - - def dataStorageSize(self): - return _mscl.WirelessNode_dataStorageSize(self) - - def regionCode(self): - return _mscl.WirelessNode_regionCode(self) - - def ping(self): - return _mscl.WirelessNode_ping(self) - - def sleep(self): - return _mscl.WirelessNode_sleep(self) - - def cyclePower(self): - return _mscl.WirelessNode_cyclePower(self) - - def resetRadio(self): - return _mscl.WirelessNode_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.WirelessNode_changeFrequency(self, frequency) - - def setToIdle(self): - return _mscl.WirelessNode_setToIdle(self) - - def erase(self): - return _mscl.WirelessNode_erase(self) - - def startNonSyncSampling(self): - return _mscl.WirelessNode_startNonSyncSampling(self) - - def resendStartSyncSampling(self): - return _mscl.WirelessNode_resendStartSyncSampling(self) - - def clearHistogram(self): - return _mscl.WirelessNode_clearHistogram(self) - - def autoBalance(self, mask, targetPercent): - return _mscl.WirelessNode_autoBalance(self, mask, targetPercent) - - def autoCal_shmLink(self): - return _mscl.WirelessNode_autoCal_shmLink(self) - - def autoCal_shmLink201(self): - return _mscl.WirelessNode_autoCal_shmLink201(self) - - def autoShuntCal(self, mask, commandInfo): - return _mscl.WirelessNode_autoShuntCal(self, mask, commandInfo) - - def poll(self, mask): - return _mscl.WirelessNode_poll(self, mask) - - def readEeprom(self, location): - return _mscl.WirelessNode_readEeprom(self, location) - - def writeEeprom(self, location, value): - return _mscl.WirelessNode_writeEeprom(self, location, value) - - def getDiagnosticInfo(self): - return _mscl.WirelessNode_getDiagnosticInfo(self) - - def testCommunicationProtocol(self, protocol): - return _mscl.WirelessNode_testCommunicationProtocol(self, protocol) - - def verifyConfig(self, config, outIssues): - return _mscl.WirelessNode_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.WirelessNode_applyConfig(self, config) - - def getNumDatalogSessions(self): - return _mscl.WirelessNode_getNumDatalogSessions(self) - - def percentFull(self): - return _mscl.WirelessNode_percentFull(self) - - def getDefaultMode(self): - return _mscl.WirelessNode_getDefaultMode(self) - - def getInactivityTimeout(self): - return _mscl.WirelessNode_getInactivityTimeout(self) - - def getCheckRadioInterval(self): - return _mscl.WirelessNode_getCheckRadioInterval(self) - - def getTransmitPower(self): - return _mscl.WirelessNode_getTransmitPower(self) - - def getSamplingMode(self): - return _mscl.WirelessNode_getSamplingMode(self) - - def getActiveChannels(self): - return _mscl.WirelessNode_getActiveChannels(self) - - def getSampleRate(self): - return _mscl.WirelessNode_getSampleRate(self) - - def getNumSweeps(self): - return _mscl.WirelessNode_getNumSweeps(self) - - def getUnlimitedDuration(self): - return _mscl.WirelessNode_getUnlimitedDuration(self) - - def getDataFormat(self): - return _mscl.WirelessNode_getDataFormat(self) - - def getDataCollectionMethod(self): - return _mscl.WirelessNode_getDataCollectionMethod(self) - - def getTimeBetweenBursts(self): - return _mscl.WirelessNode_getTimeBetweenBursts(self) - - def getLostBeaconTimeout(self): - return _mscl.WirelessNode_getLostBeaconTimeout(self) - - def getInputRange(self, mask): - return _mscl.WirelessNode_getInputRange(self, mask) - - def getHardwareOffset(self, mask): - return _mscl.WirelessNode_getHardwareOffset(self, mask) - - def getAntiAliasingFilter(self, mask): - return _mscl.WirelessNode_getAntiAliasingFilter(self, mask) - - def getCfcFilterConfiguration(self): - return _mscl.WirelessNode_getCfcFilterConfiguration(self) - - def getLowPassFilter(self, mask): - return _mscl.WirelessNode_getLowPassFilter(self, mask) - - def getHighPassFilter(self, mask): - return _mscl.WirelessNode_getHighPassFilter(self, mask) - - def getDebounceFilter(self, mask): - return _mscl.WirelessNode_getDebounceFilter(self, mask) - - def getPullUpResistor(self, mask): - return _mscl.WirelessNode_getPullUpResistor(self, mask) - - def getSensorOutputMode(self): - return _mscl.WirelessNode_getSensorOutputMode(self) - - def getGaugeFactor(self, mask): - return _mscl.WirelessNode_getGaugeFactor(self, mask) - - def getExcitationVoltage(self): - return _mscl.WirelessNode_getExcitationVoltage(self) - - def getAdcVoltageRef(self): - return _mscl.WirelessNode_getAdcVoltageRef(self) - - def getGainAmplifierVoltageRef(self): - return _mscl.WirelessNode_getGainAmplifierVoltageRef(self) - - def getGaugeResistance(self): - return _mscl.WirelessNode_getGaugeResistance(self) - - def getNumActiveGauges(self): - return _mscl.WirelessNode_getNumActiveGauges(self) - - def getLowBatteryThreshold(self): - return _mscl.WirelessNode_getLowBatteryThreshold(self) - - def getLinearEquation(self, mask): - return _mscl.WirelessNode_getLinearEquation(self, mask) - - def getUnit(self, mask): - return _mscl.WirelessNode_getUnit(self, mask) - - def getEquationType(self, mask): - return _mscl.WirelessNode_getEquationType(self, mask) - - def getFactoryCalibrationLinearEq(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationLinearEq(self, mask) - - def getFactoryCalibrationUnit(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationUnit(self, mask) - - def getFactoryCalibrationEqType(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationEqType(self, mask) - - def getFilterSettlingTime(self, mask): - return _mscl.WirelessNode_getFilterSettlingTime(self, mask) - - def getThermocoupleType(self, mask): - return _mscl.WirelessNode_getThermocoupleType(self, mask) - - def getTempSensorOptions(self, mask): - return _mscl.WirelessNode_getTempSensorOptions(self, mask) - - def getFatigueOptions(self): - return _mscl.WirelessNode_getFatigueOptions(self) - - def getHistogramOptions(self): - return _mscl.WirelessNode_getHistogramOptions(self) - - def getActivitySense(self): - return _mscl.WirelessNode_getActivitySense(self) - - def getEventTriggerOptions(self): - return _mscl.WirelessNode_getEventTriggerOptions(self) - - def getDiagnosticInterval(self): - return _mscl.WirelessNode_getDiagnosticInterval(self) - - def getStorageLimitMode(self): - return _mscl.WirelessNode_getStorageLimitMode(self) - - def getSensorDelay(self): - return _mscl.WirelessNode_getSensorDelay(self) - - def getDataMode(self): - return _mscl.WirelessNode_getDataMode(self) - - def getDerivedDataRate(self): - return _mscl.WirelessNode_getDerivedDataRate(self) - - def getDerivedChannelMask(self, category): - return _mscl.WirelessNode_getDerivedChannelMask(self, category) - - def getDerivedVelocityUnit(self): - return _mscl.WirelessNode_getDerivedVelocityUnit(self) - -# Register WirelessNode in _mscl: -_mscl.WirelessNode_swigregister(WirelessNode) - -def WirelessNode_Mock(*args): - return _mscl.WirelessNode_Mock(*args) - -def WirelessNode_deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - -class DatalogDownloader(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.DatalogDownloader_swiginit(self, _mscl.new_DatalogDownloader(*args)) - __swig_destroy__ = _mscl.delete_DatalogDownloader - - def complete(self): - return _mscl.DatalogDownloader_complete(self) - - def percentComplete(self): - return _mscl.DatalogDownloader_percentComplete(self) - - def getNextData(self): - return _mscl.DatalogDownloader_getNextData(self) - - def metaDataUpdated(self): - return _mscl.DatalogDownloader_metaDataUpdated(self) - - def calCoefficientsUpdated(self): - return _mscl.DatalogDownloader_calCoefficientsUpdated(self) - - def startOfSession(self): - return _mscl.DatalogDownloader_startOfSession(self) - - def sessionIndex(self): - return _mscl.DatalogDownloader_sessionIndex(self) - - def sampleRate(self): - return _mscl.DatalogDownloader_sampleRate(self) - - def userString(self): - return _mscl.DatalogDownloader_userString(self) - - def calCoefficients(self): - return _mscl.DatalogDownloader_calCoefficients(self) - -# Register DatalogDownloader in _mscl: -_mscl.DatalogDownloader_swigregister(DatalogDownloader) - -class ArmedDataloggingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.ArmedDataloggingNetwork_swiginit(self, _mscl.new_ArmedDataloggingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.ArmedDataloggingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.ArmedDataloggingNetwork_removeNode(self, nodeAddress) - - def startSampling(self): - return _mscl.ArmedDataloggingNetwork_startSampling(self) - __swig_destroy__ = _mscl.delete_ArmedDataloggingNetwork - -# Register ArmedDataloggingNetwork in _mscl: -_mscl.ArmedDataloggingNetwork_swigregister(ArmedDataloggingNetwork) - -class SyncNetworkInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - status_OK = _mscl.SyncNetworkInfo_status_OK - status_PoorCommunication = _mscl.SyncNetworkInfo_status_PoorCommunication - status_DoesNotFit = _mscl.SyncNetworkInfo_status_DoesNotFit - status_Contention = _mscl.SyncNetworkInfo_status_Contention - - def __init__(self, node): - _mscl.SyncNetworkInfo_swiginit(self, _mscl.new_SyncNetworkInfo(node)) - - def status(self): - return _mscl.SyncNetworkInfo_status(self) - - def startedSampling(self): - return _mscl.SyncNetworkInfo_startedSampling(self) - - def configurationApplied(self): - return _mscl.SyncNetworkInfo_configurationApplied(self) - - def percentBandwidth(self): - return _mscl.SyncNetworkInfo_percentBandwidth(self) - - def tdmaAddress(self): - return _mscl.SyncNetworkInfo_tdmaAddress(self) - - def maxTdmaAddress(self): - return _mscl.SyncNetworkInfo_maxTdmaAddress(self) - - def transmissionPerGroup(self): - return _mscl.SyncNetworkInfo_transmissionPerGroup(self) - - def groupSize(self): - return _mscl.SyncNetworkInfo_groupSize(self) - __swig_destroy__ = _mscl.delete_SyncNetworkInfo - -# Register SyncNetworkInfo in _mscl: -_mscl.SyncNetworkInfo_swigregister(SyncNetworkInfo) - -class SyncSamplingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.SyncSamplingNetwork_swiginit(self, _mscl.new_SyncSamplingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.SyncSamplingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.SyncSamplingNetwork_removeNode(self, nodeAddress) - - def percentBandwidth(self): - return _mscl.SyncSamplingNetwork_percentBandwidth(self) - - def ok(self): - return _mscl.SyncSamplingNetwork_ok(self) - - def refresh(self): - return _mscl.SyncSamplingNetwork_refresh(self) - - def lossless(self, *args): - return _mscl.SyncSamplingNetwork_lossless(self, *args) - - def communicationProtocol(self, *args): - return _mscl.SyncSamplingNetwork_communicationProtocol(self, *args) - - def applyConfiguration(self): - return _mscl.SyncSamplingNetwork_applyConfiguration(self) - - def startSampling(self, *args): - return _mscl.SyncSamplingNetwork_startSampling(self, *args) - - def startSampling_noBeacon(self): - return _mscl.SyncSamplingNetwork_startSampling_noBeacon(self) - - def getNodeNetworkInfo(self, nodeAddress): - return _mscl.SyncSamplingNetwork_getNodeNetworkInfo(self, nodeAddress) - __swig_destroy__ = _mscl.delete_SyncSamplingNetwork - -# Register SyncSamplingNetwork in _mscl: -_mscl.SyncSamplingNetwork_swigregister(SyncSamplingNetwork) - -class NodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_NodeFeatures - - def normalizeNumSweeps(self, sweeps): - return _mscl.NodeFeatures_normalizeNumSweeps(self, sweeps) - - def normalizeTimeBetweenBursts(self, time): - return _mscl.NodeFeatures_normalizeTimeBetweenBursts(self, time) - - def channels(self): - return _mscl.NodeFeatures_channels(self) - - def channelGroups(self): - return _mscl.NodeFeatures_channelGroups(self) - - def channelType(self, channelNumber): - return _mscl.NodeFeatures_channelType(self, channelNumber) - - def supportsChannelSetting(self, setting, mask): - return _mscl.NodeFeatures_supportsChannelSetting(self, setting, mask) - - def supportsInputRangePerExcitationVoltage(self): - return _mscl.NodeFeatures_supportsInputRangePerExcitationVoltage(self) - - def supportsHardwareOffset(self): - return _mscl.NodeFeatures_supportsHardwareOffset(self) - - def supportsAntiAliasingFilter(self): - return _mscl.NodeFeatures_supportsAntiAliasingFilter(self) - - def supportsLowPassFilter(self): - return _mscl.NodeFeatures_supportsLowPassFilter(self) - - def supportsHighPassFilter(self): - return _mscl.NodeFeatures_supportsHighPassFilter(self) - - def supportsGaugeFactor(self): - return _mscl.NodeFeatures_supportsGaugeFactor(self) - - def supportsGaugeResistance(self): - return _mscl.NodeFeatures_supportsGaugeResistance(self) - - def supportsNumActiveGauges(self): - return _mscl.NodeFeatures_supportsNumActiveGauges(self) - - def supportsLostBeaconTimeout(self): - return _mscl.NodeFeatures_supportsLostBeaconTimeout(self) - - def supportsPullUpResistor(self): - return _mscl.NodeFeatures_supportsPullUpResistor(self) - - def supportsFilterSettlingTime(self): - return _mscl.NodeFeatures_supportsFilterSettlingTime(self) - - def supportsThermocoupleType(self): - return _mscl.NodeFeatures_supportsThermocoupleType(self) - - def supportsTempSensorOptions(self): - return _mscl.NodeFeatures_supportsTempSensorOptions(self) - - def supportsDebounceFilter(self): - return _mscl.NodeFeatures_supportsDebounceFilter(self) - - def supportsFatigueConfig(self): - return _mscl.NodeFeatures_supportsFatigueConfig(self) - - def supportsYoungsModConfig(self): - return _mscl.NodeFeatures_supportsYoungsModConfig(self) - - def supportsPoissonsRatioConfig(self): - return _mscl.NodeFeatures_supportsPoissonsRatioConfig(self) - - def supportsFatigueDebugModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueDebugModeConfig(self) - - def supportsFatigueModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueModeConfig(self) - - def supportsHistogramConfig(self): - return _mscl.NodeFeatures_supportsHistogramConfig(self) - - def supportsHistogramRateConfig(self): - return _mscl.NodeFeatures_supportsHistogramRateConfig(self) - - def supportsHistogramEnableConfig(self): - return _mscl.NodeFeatures_supportsHistogramEnableConfig(self) - - def supportsActivitySense(self): - return _mscl.NodeFeatures_supportsActivitySense(self) - - def supportsAutoBalance(self): - return _mscl.NodeFeatures_supportsAutoBalance(self) - - def supportsLegacyShuntCal(self): - return _mscl.NodeFeatures_supportsLegacyShuntCal(self) - - def supportsAutoCal_shm(self): - return _mscl.NodeFeatures_supportsAutoCal_shm(self) - - def supportsAutoCal_shm201(self): - return _mscl.NodeFeatures_supportsAutoCal_shm201(self) - - def supportsAutoShuntCal(self): - return _mscl.NodeFeatures_supportsAutoShuntCal(self) - - def supportsGetFactoryCal(self): - return _mscl.NodeFeatures_supportsGetFactoryCal(self) - - def supportsLimitedDuration(self): - return _mscl.NodeFeatures_supportsLimitedDuration(self) - - def supportsEventTrigger(self): - return _mscl.NodeFeatures_supportsEventTrigger(self) - - def supportsDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsDiagnosticInfo(self) - - def supportsLoggedData(self): - return _mscl.NodeFeatures_supportsLoggedData(self) - - def supportsPoll(self): - return _mscl.NodeFeatures_supportsPoll(self) - - def supportsSensorDelayConfig(self): - return _mscl.NodeFeatures_supportsSensorDelayConfig(self) - - def supportsSensorDelayAlwaysOn(self): - return _mscl.NodeFeatures_supportsSensorDelayAlwaysOn(self) - - def supportsSensorOutputMode(self): - return _mscl.NodeFeatures_supportsSensorOutputMode(self) - - def supportsCfcFilterConfiguration(self): - return _mscl.NodeFeatures_supportsCfcFilterConfiguration(self) - - def supportsChannel(self, channelNumber): - return _mscl.NodeFeatures_supportsChannel(self, channelNumber) - - def supportsSamplingMode(self, samplingMode): - return _mscl.NodeFeatures_supportsSamplingMode(self, samplingMode) - - def supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.NodeFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsDataFormat(self, dataFormat): - return _mscl.NodeFeatures_supportsDataFormat(self, dataFormat) - - def supportsDefaultMode(self, mode): - return _mscl.NodeFeatures_supportsDefaultMode(self, mode) - - def supportsDataCollectionMethod(self, collectionMethod): - return _mscl.NodeFeatures_supportsDataCollectionMethod(self, collectionMethod) - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.NodeFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsDataMode(self, dataMode): - return _mscl.NodeFeatures_supportsDataMode(self, dataMode) - - def supportsTransducerType(self, transducerType): - return _mscl.NodeFeatures_supportsTransducerType(self, transducerType) - - def supportsFatigueMode(self, mode): - return _mscl.NodeFeatures_supportsFatigueMode(self, mode) - - def supportsInputRange(self, *args): - return _mscl.NodeFeatures_supportsInputRange(self, *args) - - def supportsCentisecondEventDuration(self): - return _mscl.NodeFeatures_supportsCentisecondEventDuration(self) - - def supportsGetDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsGetDiagnosticInfo(self) - - def supportsNonSyncLogWithTimestamps(self): - return _mscl.NodeFeatures_supportsNonSyncLogWithTimestamps(self) - - def supportsDerivedCategory(self, category): - return _mscl.NodeFeatures_supportsDerivedCategory(self, category) - - def supportsRawDataMode(self): - return _mscl.NodeFeatures_supportsRawDataMode(self) - - def supportsDerivedDataMode(self): - return _mscl.NodeFeatures_supportsDerivedDataMode(self) - - def supportsDerivedVelocityUnitConfig(self): - return _mscl.NodeFeatures_supportsDerivedVelocityUnitConfig(self) - - def supportsExcitationVoltageConfig(self): - return _mscl.NodeFeatures_supportsExcitationVoltageConfig(self) - - def supportsLowBatteryThresholdConfig(self): - return _mscl.NodeFeatures_supportsLowBatteryThresholdConfig(self) - - def maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode) - - def maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode) - - def maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels): - return _mscl.NodeFeatures_maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels) - - def maxFilterSettlingTime(self, rate): - return _mscl.NodeFeatures_maxFilterSettlingTime(self, rate) - - def minInactivityTimeout(self): - return _mscl.NodeFeatures_minInactivityTimeout(self) - - def minLostBeaconTimeout(self): - return _mscl.NodeFeatures_minLostBeaconTimeout(self) - - def maxLostBeaconTimeout(self): - return _mscl.NodeFeatures_maxLostBeaconTimeout(self) - - def minCheckRadioInterval(self): - return _mscl.NodeFeatures_minCheckRadioInterval(self) - - def maxCheckRadioInterval(self): - return _mscl.NodeFeatures_maxCheckRadioInterval(self) - - def minSweeps(self): - return _mscl.NodeFeatures_minSweeps(self) - - def maxSweeps(self, samplingMode, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweeps(self, samplingMode, dataMode, dataFormat, channels) - - def maxSweepsPerBurst(self, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweepsPerBurst(self, dataMode, dataFormat, channels) - - def minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol): - return _mscl.NodeFeatures_minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol) - - def minSensorDelay(self): - return _mscl.NodeFeatures_minSensorDelay(self) - - def maxSensorDelay(self): - return _mscl.NodeFeatures_maxSensorDelay(self) - - def defaultSensorDelay(self): - return _mscl.NodeFeatures_defaultSensorDelay(self) - - def maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate): - return _mscl.NodeFeatures_maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate) - - def normalizeEventDuration(self, duration): - return _mscl.NodeFeatures_normalizeEventDuration(self, duration) - - def normalizeSensorDelay(self, delay): - return _mscl.NodeFeatures_normalizeSensorDelay(self, delay) - - def numDamageAngles(self): - return _mscl.NodeFeatures_numDamageAngles(self) - - def numSnCurveSegments(self): - return _mscl.NodeFeatures_numSnCurveSegments(self) - - def numEventTriggers(self): - return _mscl.NodeFeatures_numEventTriggers(self) - - def defaultModes(self): - return _mscl.NodeFeatures_defaultModes(self) - - def dataCollectionMethods(self): - return _mscl.NodeFeatures_dataCollectionMethods(self) - - def dataFormats(self): - return _mscl.NodeFeatures_dataFormats(self) - - def samplingModes(self): - return _mscl.NodeFeatures_samplingModes(self) - - def sampleRates(self, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_sampleRates(self, samplingMode, dataCollectionMethod, dataMode) - - def derivedDataRates(self): - return _mscl.NodeFeatures_derivedDataRates(self) - - def transmitPowers(self, *args): - return _mscl.NodeFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.NodeFeatures_commProtocols(self) - - def sensorOutputModes(self): - return _mscl.NodeFeatures_sensorOutputModes(self) - - def cfcFilters(self): - return _mscl.NodeFeatures_cfcFilters(self) - - def histogramTransmitRates(self): - return _mscl.NodeFeatures_histogramTransmitRates(self) - - def fatigueModes(self): - return _mscl.NodeFeatures_fatigueModes(self) - - def antiAliasingFilters(self): - return _mscl.NodeFeatures_antiAliasingFilters(self) - - def lowPassFilters(self): - return _mscl.NodeFeatures_lowPassFilters(self) - - def highPassFilters(self): - return _mscl.NodeFeatures_highPassFilters(self) - - def storageLimitModes(self): - return _mscl.NodeFeatures_storageLimitModes(self) - - def inputRanges(self, *args): - return _mscl.NodeFeatures_inputRanges(self, *args) - - def dataModes(self): - return _mscl.NodeFeatures_dataModes(self) - - def transducerTypes(self): - return _mscl.NodeFeatures_transducerTypes(self) - - def channelsPerDerivedCategory(self): - return _mscl.NodeFeatures_channelsPerDerivedCategory(self) - - def excitationVoltages(self): - return _mscl.NodeFeatures_excitationVoltages(self) - - def adcVoltageInputType(self): - return _mscl.NodeFeatures_adcVoltageInputType(self) - - def maxTransmitPower(self, *args): - return _mscl.NodeFeatures_maxTransmitPower(self, *args) - - def minTransmitPower(self, *args): - return _mscl.NodeFeatures_minTransmitPower(self, *args) - -# Register NodeFeatures in _mscl: -_mscl.NodeFeatures_swigregister(NodeFeatures) - -class BaseStationFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_BaseStationFeatures - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.BaseStationFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.BaseStationFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsButtons(self): - return _mscl.BaseStationFeatures_supportsButtons(self) - - def supportsAnalogPairing(self): - return _mscl.BaseStationFeatures_supportsAnalogPairing(self) - - def supportsBeaconStatus(self): - return _mscl.BaseStationFeatures_supportsBeaconStatus(self) - - def supportsRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsRfSweepMode(self) - - def supportsCustomRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsCustomRfSweepMode(self) - - def buttonCount(self): - return _mscl.BaseStationFeatures_buttonCount(self) - - def analogPortCount(self): - return _mscl.BaseStationFeatures_analogPortCount(self) - - def transmitPowers(self, *args): - return _mscl.BaseStationFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.BaseStationFeatures_commProtocols(self) - - def maxTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_maxTransmitPower(self, region, commProtocol) - - def minTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_minTransmitPower(self, region, commProtocol) - -# Register BaseStationFeatures in _mscl: -_mscl.BaseStationFeatures_swigregister(BaseStationFeatures) - -class EulerAngles(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EulerAngles_swiginit(self, _mscl.new_EulerAngles(*args)) - - def asMipFieldValues(self): - return _mscl.EulerAngles_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.EulerAngles_appendMipFieldValues(self, appendTo) - - def roll(self): - return _mscl.EulerAngles_roll(self) - - def pitch(self): - return _mscl.EulerAngles_pitch(self) - - def yaw(self): - return _mscl.EulerAngles_yaw(self) - - def heading(self): - return _mscl.EulerAngles_heading(self) - __swig_destroy__ = _mscl.delete_EulerAngles - -# Register EulerAngles in _mscl: -_mscl.EulerAngles_swigregister(EulerAngles) - -class Quaternion(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Quaternion_swiginit(self, _mscl.new_Quaternion(*args)) - - def asMipFieldValues(self): - return _mscl.Quaternion_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Quaternion_appendMipFieldValues(self, appendTo) - - def normalize(self): - return _mscl.Quaternion_normalize(self) - - def q0(self): - return _mscl.Quaternion_q0(self) - - def q1(self): - return _mscl.Quaternion_q1(self) - - def q2(self): - return _mscl.Quaternion_q2(self) - - def q3(self): - return _mscl.Quaternion_q3(self) - __swig_destroy__ = _mscl.delete_Quaternion - -# Register Quaternion in _mscl: -_mscl.Quaternion_swigregister(Quaternion) - -class Rotation(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EULER_ANGLES = _mscl.Rotation_EULER_ANGLES - QUATERNION = _mscl.Rotation_QUATERNION - - def __init__(self, *args): - _mscl.Rotation_swiginit(self, _mscl.new_Rotation(*args)) - - @staticmethod - def FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - - @staticmethod - def FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - - def asEulerAngles(self): - return _mscl.Rotation_asEulerAngles(self) - - def asQuaternion(self): - return _mscl.Rotation_asQuaternion(self) - - def asMipFieldValues(self, includeFormat=True): - return _mscl.Rotation_asMipFieldValues(self, includeFormat) - - def appendMipFieldValues(self, appendTo, includeFormat=True): - return _mscl.Rotation_appendMipFieldValues(self, appendTo, includeFormat) - - def format(self): - return _mscl.Rotation_format(self) - __swig_destroy__ = _mscl.delete_Rotation - -# Register Rotation in _mscl: -_mscl.Rotation_swigregister(Rotation) - -def Rotation_FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - -def Rotation_FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - -class Vec3f(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Vec3f_swiginit(self, _mscl.new_Vec3f(*args)) - __swig_destroy__ = _mscl.delete_Vec3f - - def fromMipFieldValues(self, data, offset=0): - return _mscl.Vec3f_fromMipFieldValues(self, data, offset) - - def asMipFieldValues(self): - return _mscl.Vec3f_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Vec3f_appendMipFieldValues(self, appendTo) - - def x(self, *args): - return _mscl.Vec3f_x(self, *args) - - def y(self, *args): - return _mscl.Vec3f_y(self, *args) - - def z(self, *args): - return _mscl.Vec3f_z(self, *args) - -# Register Vec3f in _mscl: -_mscl.Vec3f_swigregister(Vec3f) - -ECEF = _mscl.ECEF -LLH_NED = _mscl.LLH_NED -LOCAL = _mscl.LOCAL -VEHICLE = _mscl.VEHICLE -class GeometricVector(Vec3f): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - - @staticmethod - def VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - - def __init__(self, *args): - _mscl.GeometricVector_swiginit(self, _mscl.new_GeometricVector(*args)) - __swig_destroy__ = _mscl.delete_GeometricVector - - def fromMipFieldValues_includesFrame(self, data, offset=0): - return _mscl.GeometricVector_fromMipFieldValues_includesFrame(self, data, offset) - - def asMipFieldValues_includeFrame(self): - return _mscl.GeometricVector_asMipFieldValues_includeFrame(self) - - def appendMipFieldValues_includeFrame(self, appendTo): - return _mscl.GeometricVector_appendMipFieldValues_includeFrame(self, appendTo) - referenceFrame = property(_mscl.GeometricVector_referenceFrame_get, _mscl.GeometricVector_referenceFrame_set) - - def north(self, *args): - return _mscl.GeometricVector_north(self, *args) - - def east(self, *args): - return _mscl.GeometricVector_east(self, *args) - - def down(self, *args): - return _mscl.GeometricVector_down(self, *args) - -# Register GeometricVector in _mscl: -_mscl.GeometricVector_swigregister(GeometricVector) - -def GeometricVector_VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - -def GeometricVector_VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - -class PositionOffset(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.PositionOffset_swiginit(self, _mscl.new_PositionOffset(*args)) - __swig_destroy__ = _mscl.delete_PositionOffset - -# Register PositionOffset in _mscl: -_mscl.PositionOffset_swigregister(PositionOffset) - -class Velocity(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Velocity_swiginit(self, _mscl.new_Velocity(*args)) - __swig_destroy__ = _mscl.delete_Velocity - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - - @staticmethod - def NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - - @staticmethod - def Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -# Register Velocity in _mscl: -_mscl.Velocity_swigregister(Velocity) - -def Velocity_ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - -def Velocity_NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - -def Velocity_Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -class Position(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - - def __init__(self, *args): - _mscl.Position_swiginit(self, _mscl.new_Position(*args)) - __swig_destroy__ = _mscl.delete_Position - referenceFrame = property(_mscl.Position_referenceFrame_get, _mscl.Position_referenceFrame_set) - - def latitude(self, *args): - return _mscl.Position_latitude(self, *args) - - def longitude(self, *args): - return _mscl.Position_longitude(self, *args) - - def altitude(self, *args): - return _mscl.Position_altitude(self, *args) - - def height(self, *args): - return _mscl.Position_height(self, *args) - - def x(self, *args): - return _mscl.Position_x(self, *args) - - def y(self, *args): - return _mscl.Position_y(self, *args) - - def z(self, *args): - return _mscl.Position_z(self, *args) - -# Register Position in _mscl: -_mscl.Position_swigregister(Position) - -def Position_LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - -def Position_ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - -class GeometricUncertainty(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeometricUncertainty_swiginit(self, _mscl.new_GeometricUncertainty(*args)) - __swig_destroy__ = _mscl.delete_GeometricUncertainty - -# Register GeometricUncertainty in _mscl: -_mscl.GeometricUncertainty_swigregister(GeometricUncertainty) - -class MipModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_3dm_dh3 = _mscl.MipModels_node_3dm_dh3 - node_3dm_gx3_15 = _mscl.MipModels_node_3dm_gx3_15 - node_3dm_gx3_25 = _mscl.MipModels_node_3dm_gx3_25 - node_3dm_gx3_35 = _mscl.MipModels_node_3dm_gx3_35 - node_3dm_gx3_45 = _mscl.MipModels_node_3dm_gx3_45 - node_3dm_rq1_45_lt = _mscl.MipModels_node_3dm_rq1_45_lt - node_3dm_gx4_15 = _mscl.MipModels_node_3dm_gx4_15 - node_3dm_gx4_25 = _mscl.MipModels_node_3dm_gx4_25 - node_3dm_gx4_45 = _mscl.MipModels_node_3dm_gx4_45 - node_3dm_rq1_45_st = _mscl.MipModels_node_3dm_rq1_45_st - node_mv5_ar = _mscl.MipModels_node_mv5_ar - node_3dm_gx5_10 = _mscl.MipModels_node_3dm_gx5_10 - node_3dm_gx5_15 = _mscl.MipModels_node_3dm_gx5_15 - node_3dm_gx5_25 = _mscl.MipModels_node_3dm_gx5_25 - node_3dm_gx5_35 = _mscl.MipModels_node_3dm_gx5_35 - node_3dm_gx5_45 = _mscl.MipModels_node_3dm_gx5_45 - node_3dm_cv5_10 = _mscl.MipModels_node_3dm_cv5_10 - node_3dm_cv5_15 = _mscl.MipModels_node_3dm_cv5_15 - node_3dm_cv5_25 = _mscl.MipModels_node_3dm_cv5_25 - node_3dm_cv5_45 = _mscl.MipModels_node_3dm_cv5_45 - node_3dm_gq4_45 = _mscl.MipModels_node_3dm_gq4_45 - node_3dm_cx5_45 = _mscl.MipModels_node_3dm_cx5_45 - node_3dm_cx5_35 = _mscl.MipModels_node_3dm_cx5_35 - node_3dm_cx5_25 = _mscl.MipModels_node_3dm_cx5_25 - node_3dm_cx5_15 = _mscl.MipModels_node_3dm_cx5_15 - node_3dm_cx5_10 = _mscl.MipModels_node_3dm_cx5_10 - node_3dm_cl5_15 = _mscl.MipModels_node_3dm_cl5_15 - node_3dm_cl5_25 = _mscl.MipModels_node_3dm_cl5_25 - node_3dm_gq7 = _mscl.MipModels_node_3dm_gq7 - node_3dm_rtk = _mscl.MipModels_node_3dm_rtk - node_3dm_cv7_ahrs = _mscl.MipModels_node_3dm_cv7_ahrs - node_3dm_cv7_ar = _mscl.MipModels_node_3dm_cv7_ar - node_3dm_gv7_ahrs = _mscl.MipModels_node_3dm_gv7_ahrs - node_3dm_gv7_ar = _mscl.MipModels_node_3dm_gv7_ar - node_3dm_gv7_ins = _mscl.MipModels_node_3dm_gv7_ins - node_3dm_cv7_ins = _mscl.MipModels_node_3dm_cv7_ins - node_3dm_cv7_gnss_ins = _mscl.MipModels_node_3dm_cv7_gnss_ins - placeholder_matchAll = _mscl.MipModels_placeholder_matchAll - rtk_v1 = _mscl.MipModels_rtk_v1 - rtk_v2 = _mscl.MipModels_rtk_v2 - model_3dm_dh3 = _mscl.MipModels_model_3dm_dh3 - model_3dm_gx3_15 = _mscl.MipModels_model_3dm_gx3_15 - model_3dm_gx3_25 = _mscl.MipModels_model_3dm_gx3_25 - model_3dm_gx3_35 = _mscl.MipModels_model_3dm_gx3_35 - model_3dm_gx3_45 = _mscl.MipModels_model_3dm_gx3_45 - model_3dm_rq1_45_lt = _mscl.MipModels_model_3dm_rq1_45_lt - model_3dm_gx4_15 = _mscl.MipModels_model_3dm_gx4_15 - model_3dm_gx4_25 = _mscl.MipModels_model_3dm_gx4_25 - model_3dm_gx4_45 = _mscl.MipModels_model_3dm_gx4_45 - model_3dm_rq1_45_st = _mscl.MipModels_model_3dm_rq1_45_st - model_mv5_ar = _mscl.MipModels_model_mv5_ar - model_3dm_gx5_10 = _mscl.MipModels_model_3dm_gx5_10 - model_3dm_gx5_15 = _mscl.MipModels_model_3dm_gx5_15 - model_3dm_gx5_25 = _mscl.MipModels_model_3dm_gx5_25 - model_3dm_gx5_35 = _mscl.MipModels_model_3dm_gx5_35 - model_3dm_gx5_45 = _mscl.MipModels_model_3dm_gx5_45 - model_3dm_cv5_10 = _mscl.MipModels_model_3dm_cv5_10 - model_3dm_cv5_15 = _mscl.MipModels_model_3dm_cv5_15 - model_3dm_cv5_25 = _mscl.MipModels_model_3dm_cv5_25 - model_3dm_cv5_45 = _mscl.MipModels_model_3dm_cv5_45 - model_3dm_gq4_45 = _mscl.MipModels_model_3dm_gq4_45 - model_3dm_cx5_45 = _mscl.MipModels_model_3dm_cx5_45 - model_3dm_cx5_35 = _mscl.MipModels_model_3dm_cx5_35 - model_3dm_cx5_25 = _mscl.MipModels_model_3dm_cx5_25 - model_3dm_cx5_15 = _mscl.MipModels_model_3dm_cx5_15 - model_3dm_cx5_10 = _mscl.MipModels_model_3dm_cx5_10 - model_3dm_cl5_15 = _mscl.MipModels_model_3dm_cl5_15 - model_3dm_cl5_25 = _mscl.MipModels_model_3dm_cl5_25 - model_3dm_gq7 = _mscl.MipModels_model_3dm_gq7 - model_3dm_rtk_v1 = _mscl.MipModels_model_3dm_rtk_v1 - model_3dm_rtk = _mscl.MipModels_model_3dm_rtk - model_3dm_cv7_ahrs = _mscl.MipModels_model_3dm_cv7_ahrs - model_3dm_cv7_ar = _mscl.MipModels_model_3dm_cv7_ar - model_3dm_gv7_ahrs = _mscl.MipModels_model_3dm_gv7_ahrs - model_3dm_gv7_ar = _mscl.MipModels_model_3dm_gv7_ar - model_3dm_gv7_ins = _mscl.MipModels_model_3dm_gv7_ins - model_3dm_cv7_ins = _mscl.MipModels_model_3dm_cv7_ins - model_3dm_cv7_gnss_ins = _mscl.MipModels_model_3dm_cv7_gnss_ins - - @staticmethod - def modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - - @staticmethod - def modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - - @staticmethod - def modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - - @staticmethod - def nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - - @staticmethod - def modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - - @staticmethod - def nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - - @staticmethod - def modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - - @staticmethod - def stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - - def __init__(self): - _mscl.MipModels_swiginit(self, _mscl.new_MipModels()) - __swig_destroy__ = _mscl.delete_MipModels - -# Register MipModels in _mscl: -_mscl.MipModels_swigregister(MipModels) - -def MipModels_modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - -def MipModels_modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - -def MipModels_modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - -def MipModels_nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - -def MipModels_modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - -def MipModels_nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - -def MipModels_modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - -def MipModels_stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - -class MipModel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipModel_swiginit(self, _mscl.new_MipModel(*args)) - - def equals(self, compare): - return _mscl.MipModel_equals(self, compare) - - def __str__(self): - return _mscl.MipModel___str__(self) - - def nodeModel(self): - return _mscl.MipModel_nodeModel(self) - - def modifier(self): - return _mscl.MipModel_modifier(self) - - def modelNumber(self): - return _mscl.MipModel_modelNumber(self) - - def baseModel(self): - return _mscl.MipModel_baseModel(self) - __swig_destroy__ = _mscl.delete_MipModel - -# Register MipModel in _mscl: -_mscl.MipModel_swigregister(MipModel) -MipModel.mip_model_none = _mscl.cvar.MipModel_mip_model_none -MipModel.mip_model_3dm_dh3 = _mscl.cvar.MipModel_mip_model_3dm_dh3 -MipModel.mip_model_3dm_gx3_15 = _mscl.cvar.MipModel_mip_model_3dm_gx3_15 -MipModel.mip_model_3dm_gx3_25 = _mscl.cvar.MipModel_mip_model_3dm_gx3_25 -MipModel.mip_model_3dm_gx3_35 = _mscl.cvar.MipModel_mip_model_3dm_gx3_35 -MipModel.mip_model_3dm_gx3_45 = _mscl.cvar.MipModel_mip_model_3dm_gx3_45 -MipModel.mip_model_3dm_rq1_45_lt = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_lt -MipModel.mip_model_3dm_rq1_45_st = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_st -MipModel.mip_model_3dm_gx4_15 = _mscl.cvar.MipModel_mip_model_3dm_gx4_15 -MipModel.mip_model_3dm_gx4_25 = _mscl.cvar.MipModel_mip_model_3dm_gx4_25 -MipModel.mip_model_3dm_gx4_45 = _mscl.cvar.MipModel_mip_model_3dm_gx4_45 -MipModel.mip_model_mv5_ar = _mscl.cvar.MipModel_mip_model_mv5_ar -MipModel.mip_model_3dm_gx5_10 = _mscl.cvar.MipModel_mip_model_3dm_gx5_10 -MipModel.mip_model_3dm_gx5_15 = _mscl.cvar.MipModel_mip_model_3dm_gx5_15 -MipModel.mip_model_3dm_gx5_25 = _mscl.cvar.MipModel_mip_model_3dm_gx5_25 -MipModel.mip_model_3dm_gx5_35 = _mscl.cvar.MipModel_mip_model_3dm_gx5_35 -MipModel.mip_model_3dm_gx5_45 = _mscl.cvar.MipModel_mip_model_3dm_gx5_45 -MipModel.mip_model_3dm_cv5_10 = _mscl.cvar.MipModel_mip_model_3dm_cv5_10 -MipModel.mip_model_3dm_cv5_15 = _mscl.cvar.MipModel_mip_model_3dm_cv5_15 -MipModel.mip_model_3dm_cv5_25 = _mscl.cvar.MipModel_mip_model_3dm_cv5_25 -MipModel.mip_model_3dm_cv5_45 = _mscl.cvar.MipModel_mip_model_3dm_cv5_45 -MipModel.mip_model_3dm_gq4_45 = _mscl.cvar.MipModel_mip_model_3dm_gq4_45 -MipModel.mip_model_3dm_cx5_45 = _mscl.cvar.MipModel_mip_model_3dm_cx5_45 -MipModel.mip_model_3dm_cx5_35 = _mscl.cvar.MipModel_mip_model_3dm_cx5_35 -MipModel.mip_model_3dm_cx5_25 = _mscl.cvar.MipModel_mip_model_3dm_cx5_25 -MipModel.mip_model_3dm_cx5_15 = _mscl.cvar.MipModel_mip_model_3dm_cx5_15 -MipModel.mip_model_3dm_cx5_10 = _mscl.cvar.MipModel_mip_model_3dm_cx5_10 -MipModel.mip_model_3dm_cl5_15 = _mscl.cvar.MipModel_mip_model_3dm_cl5_15 -MipModel.mip_model_3dm_cl5_25 = _mscl.cvar.MipModel_mip_model_3dm_cl5_25 -MipModel.mip_model_3dm_gq7 = _mscl.cvar.MipModel_mip_model_3dm_gq7 -MipModel.mip_model_3dm_rtk_v1 = _mscl.cvar.MipModel_mip_model_3dm_rtk_v1 -MipModel.mip_model_3dm_rtk = _mscl.cvar.MipModel_mip_model_3dm_rtk -MipModel.mip_model_3dm_cv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_cv7_ahrs -MipModel.mip_model_3dm_cv7_ar = _mscl.cvar.MipModel_mip_model_3dm_cv7_ar -MipModel.mip_model_3dm_gv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_gv7_ahrs -MipModel.mip_model_3dm_gv7_ar = _mscl.cvar.MipModel_mip_model_3dm_gv7_ar -MipModel.mip_model_3dm_gv7_ins = _mscl.cvar.MipModel_mip_model_3dm_gv7_ins -MipModel.mip_model_3dm_cv7_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_ins -MipModel.mip_model_3dm_cv7_gnss_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_gnss_ins - -class DisplacementModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_digitalDemod = _mscl.DisplacementModels_node_digitalDemod - - def __init__(self): - _mscl.DisplacementModels_swiginit(self, _mscl.new_DisplacementModels()) - __swig_destroy__ = _mscl.delete_DisplacementModels - -# Register DisplacementModels in _mscl: -_mscl.DisplacementModels_swigregister(DisplacementModels) - -class MipTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CLASS_AHRS_IMU = _mscl.MipTypes_CLASS_AHRS_IMU - CLASS_GNSS = _mscl.MipTypes_CLASS_GNSS - CLASS_ESTFILTER = _mscl.MipTypes_CLASS_ESTFILTER - CLASS_DISPLACEMENT = _mscl.MipTypes_CLASS_DISPLACEMENT - CLASS_GNSS1 = _mscl.MipTypes_CLASS_GNSS1 - CLASS_GNSS2 = _mscl.MipTypes_CLASS_GNSS2 - CLASS_GNSS3 = _mscl.MipTypes_CLASS_GNSS3 - CLASS_RTK = _mscl.MipTypes_CLASS_RTK - CLASS_GNSS4 = _mscl.MipTypes_CLASS_GNSS4 - CLASS_GNSS5 = _mscl.MipTypes_CLASS_GNSS5 - CLASS_SYSTEM = _mscl.MipTypes_CLASS_SYSTEM - USE_NEW_SETTINGS = _mscl.MipTypes_USE_NEW_SETTINGS - READ_BACK_CURRENT_SETTINGS = _mscl.MipTypes_READ_BACK_CURRENT_SETTINGS - SAVE_CURRENT_SETTINGS = _mscl.MipTypes_SAVE_CURRENT_SETTINGS - LOAD_STARTUP_SETTINGS = _mscl.MipTypes_LOAD_STARTUP_SETTINGS - RESET_TO_DEFAULT = _mscl.MipTypes_RESET_TO_DEFAULT - USE_NEW_SETTINGS_NO_ACKNACK = _mscl.MipTypes_USE_NEW_SETTINGS_NO_ACKNACK - DISABLED = _mscl.MipTypes_DISABLED - ENABLED = _mscl.MipTypes_ENABLED - TIME_FRAME_WEEKS = _mscl.MipTypes_TIME_FRAME_WEEKS - TIME_FRAME_SECONDS = _mscl.MipTypes_TIME_FRAME_SECONDS - CMD_PING = _mscl.MipTypes_CMD_PING - CMD_SET_IDLE = _mscl.MipTypes_CMD_SET_IDLE - CMD_GET_DEVICE_INFO = _mscl.MipTypes_CMD_GET_DEVICE_INFO - CMD_GET_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_DESCRIPTOR_SETS - CMD_BUILT_IN_TEST = _mscl.MipTypes_CMD_BUILT_IN_TEST - CMD_RESUME = _mscl.MipTypes_CMD_RESUME - CMD_GET_EXT_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_EXT_DESCRIPTOR_SETS - CMD_COMM_PORT_SPEED = _mscl.MipTypes_CMD_COMM_PORT_SPEED - CMD_GPS_TIME_UPDATE = _mscl.MipTypes_CMD_GPS_TIME_UPDATE - CMD_RESET = _mscl.MipTypes_CMD_RESET - CMD_POLL_SENSOR_DATA = _mscl.MipTypes_CMD_POLL_SENSOR_DATA - CMD_POLL_GNSS_DATA = _mscl.MipTypes_CMD_POLL_GNSS_DATA - CMD_POLL_EF_DATA = _mscl.MipTypes_CMD_POLL_EF_DATA - CMD_GET_SENSOR_RATE_BASE = _mscl.MipTypes_CMD_GET_SENSOR_RATE_BASE - CMD_GET_GNSS_RATE_BASE = _mscl.MipTypes_CMD_GET_GNSS_RATE_BASE - CMD_GET_EF_RATE_BASE = _mscl.MipTypes_CMD_GET_EF_RATE_BASE - CMD_SENSOR_MESSAGE_FORMAT = _mscl.MipTypes_CMD_SENSOR_MESSAGE_FORMAT - CMD_GNSS_MESSAGE_FORMAT = _mscl.MipTypes_CMD_GNSS_MESSAGE_FORMAT - CMD_EF_MESSAGE_FORMAT = _mscl.MipTypes_CMD_EF_MESSAGE_FORMAT - CMD_NMEA_MESSAGE_FORMAT = _mscl.MipTypes_CMD_NMEA_MESSAGE_FORMAT - CMD_POLL = _mscl.MipTypes_CMD_POLL - CMD_GET_BASE_RATE = _mscl.MipTypes_CMD_GET_BASE_RATE - CMD_MESSAGE_FORMAT = _mscl.MipTypes_CMD_MESSAGE_FORMAT - CMD_FACTORY_STREAMING = _mscl.MipTypes_CMD_FACTORY_STREAMING - CMD_CONTINUOUS_DATA_STREAM = _mscl.MipTypes_CMD_CONTINUOUS_DATA_STREAM - CMD_RAW_RTCM_2_3_MESSAGE = _mscl.MipTypes_CMD_RAW_RTCM_2_3_MESSAGE - CMD_GNSS_CONSTELLATION_SETTINGS = _mscl.MipTypes_CMD_GNSS_CONSTELLATION_SETTINGS - CMD_GNSS_SBAS_SETTINGS = _mscl.MipTypes_CMD_GNSS_SBAS_SETTINGS - CMD_GNSS_ASSIST_FIX_CONTROL = _mscl.MipTypes_CMD_GNSS_ASSIST_FIX_CONTROL - CMD_GNSS_ASSIST_TIME_UPDATE = _mscl.MipTypes_CMD_GNSS_ASSIST_TIME_UPDATE - CMD_PPS_SOURCE = _mscl.MipTypes_CMD_PPS_SOURCE - CMD_EVENT_SUPPORT = _mscl.MipTypes_CMD_EVENT_SUPPORT - CMD_EVENT_CONTROL = _mscl.MipTypes_CMD_EVENT_CONTROL - CMD_EVENT_TRIGGER_STATUS = _mscl.MipTypes_CMD_EVENT_TRIGGER_STATUS - CMD_EVENT_ACTION_STATUS = _mscl.MipTypes_CMD_EVENT_ACTION_STATUS - CMD_EVENT_TRIGGER_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_TRIGGER_CONFIGURATION - CMD_EVENT_ACTION_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_ACTION_CONFIGURATION - CMD_SAVE_STARTUP_SETTINGS = _mscl.MipTypes_CMD_SAVE_STARTUP_SETTINGS - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM - CMD_GPS_DYNAMICS_MODE = _mscl.MipTypes_CMD_GPS_DYNAMICS_MODE - CMD_SENSOR_SIG_COND_SETTINGS = _mscl.MipTypes_CMD_SENSOR_SIG_COND_SETTINGS - CMD_SENSOR_TIMESTAMP = _mscl.MipTypes_CMD_SENSOR_TIMESTAMP - CMD_ACCEL_BIAS = _mscl.MipTypes_CMD_ACCEL_BIAS - CMD_GYRO_BIAS = _mscl.MipTypes_CMD_GYRO_BIAS - CMD_CAP_GYRO_BIAS = _mscl.MipTypes_CMD_CAP_GYRO_BIAS - CMD_MAG_HARD_IRON_OFFSET = _mscl.MipTypes_CMD_MAG_HARD_IRON_OFFSET - CMD_MAG_SOFT_IRON_MATRIX = _mscl.MipTypes_CMD_MAG_SOFT_IRON_MATRIX - CMD_CF_REALIGN_UP = _mscl.MipTypes_CMD_CF_REALIGN_UP - CMD_CF_REALIGN_NORTH = _mscl.MipTypes_CMD_CF_REALIGN_NORTH - CMD_CONING_SCULLING = _mscl.MipTypes_CMD_CONING_SCULLING - CMD_UART_BAUD_RATE = _mscl.MipTypes_CMD_UART_BAUD_RATE - CMD_GPIO_CONFIGURATION = _mscl.MipTypes_CMD_GPIO_CONFIGURATION - CMD_GPIO_STATE = _mscl.MipTypes_CMD_GPIO_STATE - CMD_ODOMETER_SETTINGS = _mscl.MipTypes_CMD_ODOMETER_SETTINGS - CMD_LOWPASS_FILTER_SETTINGS = _mscl.MipTypes_CMD_LOWPASS_FILTER_SETTINGS - CMD_COMPLEMENTARY_FILTER_SETTINGS = _mscl.MipTypes_CMD_COMPLEMENTARY_FILTER_SETTINGS - CMD_SENSOR_RANGE = _mscl.MipTypes_CMD_SENSOR_RANGE - CMD_SUPPORTED_SENSOR_RANGES = _mscl.MipTypes_CMD_SUPPORTED_SENSOR_RANGES - CMD_LOWPASS_ANTIALIASING_FILTER = _mscl.MipTypes_CMD_LOWPASS_ANTIALIASING_FILTER - CMD_DATA_STREAM_FORMAT = _mscl.MipTypes_CMD_DATA_STREAM_FORMAT - CMD_POWER_STATES = _mscl.MipTypes_CMD_POWER_STATES - CMD_GPS_STARTUP_SETTINGS = _mscl.MipTypes_CMD_GPS_STARTUP_SETTINGS - CMD_DEVICE_STATUS = _mscl.MipTypes_CMD_DEVICE_STATUS - CMD_EF_RESET_FILTER = _mscl.MipTypes_CMD_EF_RESET_FILTER - CMD_EF_INIT_ATTITUDE = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE - CMD_EF_INIT_HEADING = _mscl.MipTypes_CMD_EF_INIT_HEADING - CMD_EF_INIT_ATTITUDE_FROM_AHRS = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE_FROM_AHRS - CMD_EF_RUN_FILTER = _mscl.MipTypes_CMD_EF_RUN_FILTER - CMD_EF_VEHIC_DYNAMICS_MODE = _mscl.MipTypes_CMD_EF_VEHIC_DYNAMICS_MODE - CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER - CMD_EF_SENS_VEHIC_FRAME_OFFSET = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_OFFSET - CMD_EF_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_ANTENNA_OFFSET - CMD_EF_BIAS_EST_CTRL = _mscl.MipTypes_CMD_EF_BIAS_EST_CTRL - CMD_EF_GNSS_SRC_CTRL = _mscl.MipTypes_CMD_EF_GNSS_SRC_CTRL - CMD_EF_EXTERN_GNSS_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_GNSS_UPDATE - CMD_EF_EXTERN_HEADING_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_HEADING_UPDATE - CMD_EF_HEADING_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_HEADING_UPDATE_CTRL - CMD_EF_AUTO_INIT_CTRL = _mscl.MipTypes_CMD_EF_AUTO_INIT_CTRL - CMD_EF_ACCEL_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_ACCEL_WHT_NSE_STD_DEV - CMD_EF_GYRO_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_GYRO_WHT_NSE_STD_DEV - CMD_EF_ACCEL_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_ACCEL_BIAS_MODEL_PARAMS - CMD_EF_GYRO_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_GYRO_BIAS_MODEL_PARAMS - CMD_EF_ZERO_VEL_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_VEL_UPDATE_CTRL - CMD_EF_EXT_HEADING_UPDATE_TS = _mscl.MipTypes_CMD_EF_EXT_HEADING_UPDATE_TS - CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL - CMD_EF_TARE_ORIENT = _mscl.MipTypes_CMD_EF_TARE_ORIENT - CMD_EF_CMDED_ZERO_VEL_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_VEL_UPDATE - CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE - CMD_EF_SET_REF_POSITION = _mscl.MipTypes_CMD_EF_SET_REF_POSITION - CMD_EF_MAG_CAPTURE_AUTO_CAL = _mscl.MipTypes_CMD_EF_MAG_CAPTURE_AUTO_CAL - CMD_EF_GRAVITY_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_STD_DEV - CMD_EF_PRESS_ALT_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_PRESS_ALT_NOISE_STD_DEV - CMD_EF_GRAVITY_NOISE_MINIMUM = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_MINIMUM - CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE - CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE - CMD_EF_ENABLE_DISABLE_MEASUREMENTS = _mscl.MipTypes_CMD_EF_ENABLE_DISABLE_MEASUREMENTS - CMD_EF_MAG_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_MAG_NOISE_STD_DEV - CMD_EF_DECLINATION_SRC = _mscl.MipTypes_CMD_EF_DECLINATION_SRC - CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE - CMD_EF_ALTITUDE_AID_CTRL = _mscl.MipTypes_CMD_EF_ALTITUDE_AID_CTRL - CMD_EF_PITCH_ROLL_AID_CTRL = _mscl.MipTypes_CMD_EF_PITCH_ROLL_AID_CTRL - CMD_EF_INCLINATION_SRC = _mscl.MipTypes_CMD_EF_INCLINATION_SRC - CMD_EF_FIELD_MAGNITUDE_SRC = _mscl.MipTypes_CMD_EF_FIELD_MAGNITUDE_SRC - CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM - CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT - CMD_EF_AIDING_MEASUREMENT_ENABLE = _mscl.MipTypes_CMD_EF_AIDING_MEASUREMENT_ENABLE - CMD_EF_INITIALIZATION_CONFIG = _mscl.MipTypes_CMD_EF_INITIALIZATION_CONFIG - CMD_EF_ADAPTIVE_FILTER_OPTIONS = _mscl.MipTypes_CMD_EF_ADAPTIVE_FILTER_OPTIONS - CMD_EF_MULTI_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_MULTI_ANTENNA_OFFSET - CMD_EF_RELATIVE_POSITION_REF = _mscl.MipTypes_CMD_EF_RELATIVE_POSITION_REF - CMD_EF_LEVER_ARM_OFFSET_REF = _mscl.MipTypes_CMD_EF_LEVER_ARM_OFFSET_REF - CMD_EF_EXTERN_SPEED_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_SPEED_UPDATE - CMD_EF_SPEED_MEASUREMENT_OFFSET = _mscl.MipTypes_CMD_EF_SPEED_MEASUREMENT_OFFSET - CMD_EF_VERTICAL_GYRO_CONSTRAINT = _mscl.MipTypes_CMD_EF_VERTICAL_GYRO_CONSTRAINT - CMD_EF_WHEELED_VEHICLE_CONSTRAINT = _mscl.MipTypes_CMD_EF_WHEELED_VEHICLE_CONSTRAINT - CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL = _mscl.MipTypes_CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL - CMD_GNSS_RECEIVER_INFO = _mscl.MipTypes_CMD_GNSS_RECEIVER_INFO - CMD_GNSS_SIGNAL_CONFIG = _mscl.MipTypes_CMD_GNSS_SIGNAL_CONFIG - CMD_GNSS_SPARTN_CONFIG = _mscl.MipTypes_CMD_GNSS_SPARTN_CONFIG - CMD_GNSS_RTK_CONFIG = _mscl.MipTypes_CMD_GNSS_RTK_CONFIG - CMD_INTERFACE_CONTROL = _mscl.MipTypes_CMD_INTERFACE_CONTROL - CMD_COMMUNICATION_MODE = _mscl.MipTypes_CMD_COMMUNICATION_MODE - CMD_HARDWARE_CTRL = _mscl.MipTypes_CMD_HARDWARE_CTRL - CMD_GET_ANALOG_DISPLACEMENT_CALS = _mscl.MipTypes_CMD_GET_ANALOG_DISPLACEMENT_CALS - CMD_DISPLACEMENT_OUTPUT_RATE = _mscl.MipTypes_CMD_DISPLACEMENT_OUTPUT_RATE - CMD_DISPLACEMENT_DEVICE_TIME = _mscl.MipTypes_CMD_DISPLACEMENT_DEVICE_TIME - CMD_RTK_DEVICE_STATUS_FLAGS = _mscl.MipTypes_CMD_RTK_DEVICE_STATUS_FLAGS - CMD_RTK_ACTIVATION_CODE = _mscl.MipTypes_CMD_RTK_ACTIVATION_CODE - CMD_AIDING_FRAME_CONFIG = _mscl.MipTypes_CMD_AIDING_FRAME_CONFIG - CMD_AIDING_ECHO_CONTROL = _mscl.MipTypes_CMD_AIDING_ECHO_CONTROL - CMD_AIDING_POS_ECEF = _mscl.MipTypes_CMD_AIDING_POS_ECEF - CMD_AIDING_POS_LLH = _mscl.MipTypes_CMD_AIDING_POS_LLH - CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID - CMD_AIDING_VEL_ECEF = _mscl.MipTypes_CMD_AIDING_VEL_ECEF - CMD_AIDING_VEL_NED = _mscl.MipTypes_CMD_AIDING_VEL_NED - CMD_AIDING_VEL_BODY_FRAME = _mscl.MipTypes_CMD_AIDING_VEL_BODY_FRAME - CMD_AIDING_HEADING_TRUE = _mscl.MipTypes_CMD_AIDING_HEADING_TRUE - CMD_AIDING_MAGNETIC_FIELD = _mscl.MipTypes_CMD_AIDING_MAGNETIC_FIELD - CMD_AIDING_PRESSURE = _mscl.MipTypes_CMD_AIDING_PRESSURE - CH_FIELD_SENSOR_RAW_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_ACCEL_VEC - CH_FIELD_SENSOR_RAW_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_GYRO_VEC - CH_FIELD_SENSOR_RAW_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_MAG_VEC - CH_FIELD_SENSOR_SCALED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_ACCEL_VEC - CH_FIELD_SENSOR_SCALED_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_GYRO_VEC - CH_FIELD_SENSOR_SCALED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_MAG_VEC - CH_FIELD_SENSOR_DELTA_THETA_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_THETA_VEC - CH_FIELD_SENSOR_DELTA_VELOCITY_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_VELOCITY_VEC - CH_FIELD_SENSOR_ORIENTATION_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_MATRIX - CH_FIELD_SENSOR_ORIENTATION_QUATERNION = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_QUATERNION - CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX - CH_FIELD_SENSOR_EULER_ANGLES = _mscl.MipTypes_CH_FIELD_SENSOR_EULER_ANGLES - CH_FIELD_SENSOR_INTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_INTERNAL_TIMESTAMP - CH_FIELD_SENSOR_BEACONED_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_BEACONED_TIMESTAMP - CH_FIELD_SENSOR_STABILIZED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_MAG_VEC - CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC - CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP - CH_FIELD_SENSOR_TEMPERATURE_STATISTICS = _mscl.MipTypes_CH_FIELD_SENSOR_TEMPERATURE_STATISTICS - CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE - CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE - CH_FIELD_SENSOR_OVERRANGE_STATUS = _mscl.MipTypes_CH_FIELD_SENSOR_OVERRANGE_STATUS - CH_FIELD_SENSOR_ODOMETER_DATA = _mscl.MipTypes_CH_FIELD_SENSOR_ODOMETER_DATA - CH_FIELD_SENSOR_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EVENT_SOURCE - CH_FIELD_SENSOR_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_TICKS - CH_FIELD_SENSOR_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TICKS - CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP - CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_LLH_POSITION - CH_FIELD_GNSS_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_POSITION - CH_FIELD_GNSS_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_NED_VELOCITY - CH_FIELD_GNSS_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_VELOCITY - CH_FIELD_GNSS_DOP = _mscl.MipTypes_CH_FIELD_GNSS_DOP - CH_FIELD_GNSS_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_UTC_TIME - CH_FIELD_GNSS_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_GPS_TIME - CH_FIELD_GNSS_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO - CH_FIELD_GNSS_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_FIX_INFO - CH_FIELD_GNSS_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_HARDWARE_STATUS - CH_FIELD_GNSS_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_INFO - CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO_2 - CH_FIELD_GNSS_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_LEAP_SECONDS - CH_FIELD_GNSS_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_INFO - CH_FIELD_GNSS_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_CORRECTION - CH_FIELD_GNSS_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_RF_ERROR_DETECTION - CH_FIELD_GNSS_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_SATELLITE_STATUS - CH_FIELD_GNSS_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_RAW_OBSERVATION - CH_FIELD_GNSS_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_STATION_INFO - CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_EPHEMERIS - CH_FIELD_GNSS_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GLONASS_EPHEMERIS - CH_FIELD_GNSS_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_EPHEMERIS - CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_TICKS - CH_FIELD_GNSS_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TICKS - CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS - CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL - CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE - CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE - CH_FIELD_ESTFILTER_FILTER_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_FILTER_STATUS - CH_FIELD_ESTFILTER_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT - CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR - CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE - CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR - CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_MAG_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS - CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT - CH_FIELD_ESTFILTER_COMPENSATED_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_COMPENSATED_ACCEL - CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL - CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT - CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX - CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS_UNCERT - CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS - CH_FIELD_ESTFILTER_ECEF_VEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL - CH_FIELD_ESTFILTER_NED_RELATIVE_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_NED_RELATIVE_POS - CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS - CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS - CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY = _mscl.MipTypes_CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT - CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT - CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE - CH_FIELD_ESTFILTER_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_TICKS - CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS - CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_DISP_DISPLACEMENT_RAW = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_RAW - CH_FIELD_DISP_DISPLACEMENT_MM = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_MM - CH_FIELD_DISP_DISPLACEMENT_TS = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_TS - CH_FIELD_GNSS_1_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_LLH_POSITION - CH_FIELD_GNSS_1_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_POSITION - CH_FIELD_GNSS_1_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_NED_VELOCITY - CH_FIELD_GNSS_1_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_VELOCITY - CH_FIELD_GNSS_1_DOP = _mscl.MipTypes_CH_FIELD_GNSS_1_DOP - CH_FIELD_GNSS_1_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_UTC_TIME - CH_FIELD_GNSS_1_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_TIME - CH_FIELD_GNSS_1_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO - CH_FIELD_GNSS_1_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_FIX_INFO - CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_1_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_HARDWARE_STATUS - CH_FIELD_GNSS_1_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_INFO - CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_1_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO_2 - CH_FIELD_GNSS_1_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_LEAP_SECONDS - CH_FIELD_GNSS_1_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_INFO - CH_FIELD_GNSS_1_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_CORRECTION - CH_FIELD_GNSS_1_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_RF_ERROR_DETECTION - CH_FIELD_GNSS_1_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_SATELLITE_STATUS - CH_FIELD_GNSS_1_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_1_RAW_OBSERVATION - CH_FIELD_GNSS_1_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_STATION_INFO - CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_1_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_EPHEMERIS - CH_FIELD_GNSS_1_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GLONASS_EPHEMERIS - CH_FIELD_GNSS_1_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_EPHEMERIS - CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_1_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_TICKS - CH_FIELD_GNSS_1_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TICKS - CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_2_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_LLH_POSITION - CH_FIELD_GNSS_2_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_POSITION - CH_FIELD_GNSS_2_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_NED_VELOCITY - CH_FIELD_GNSS_2_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_VELOCITY - CH_FIELD_GNSS_2_DOP = _mscl.MipTypes_CH_FIELD_GNSS_2_DOP - CH_FIELD_GNSS_2_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_UTC_TIME - CH_FIELD_GNSS_2_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_TIME - CH_FIELD_GNSS_2_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO - CH_FIELD_GNSS_2_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_FIX_INFO - CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_2_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_HARDWARE_STATUS - CH_FIELD_GNSS_2_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_INFO - CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_2_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO_2 - CH_FIELD_GNSS_2_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_LEAP_SECONDS - CH_FIELD_GNSS_2_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_INFO - CH_FIELD_GNSS_2_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_CORRECTION - CH_FIELD_GNSS_2_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_RF_ERROR_DETECTION - CH_FIELD_GNSS_2_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_SATELLITE_STATUS - CH_FIELD_GNSS_2_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_2_RAW_OBSERVATION - CH_FIELD_GNSS_2_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_STATION_INFO - CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_2_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_EPHEMERIS - CH_FIELD_GNSS_2_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GLONASS_EPHEMERIS - CH_FIELD_GNSS_2_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_EPHEMERIS - CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_2_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_TICKS - CH_FIELD_GNSS_2_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TICKS - CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_3_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_LLH_POSITION - CH_FIELD_GNSS_3_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_POSITION - CH_FIELD_GNSS_3_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_NED_VELOCITY - CH_FIELD_GNSS_3_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_VELOCITY - CH_FIELD_GNSS_3_DOP = _mscl.MipTypes_CH_FIELD_GNSS_3_DOP - CH_FIELD_GNSS_3_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_UTC_TIME - CH_FIELD_GNSS_3_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_TIME - CH_FIELD_GNSS_3_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO - CH_FIELD_GNSS_3_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_FIX_INFO - CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_3_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_HARDWARE_STATUS - CH_FIELD_GNSS_3_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_INFO - CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_3_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO_2 - CH_FIELD_GNSS_3_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_LEAP_SECONDS - CH_FIELD_GNSS_3_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_INFO - CH_FIELD_GNSS_3_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_CORRECTION - CH_FIELD_GNSS_3_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_RF_ERROR_DETECTION - CH_FIELD_GNSS_3_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_SATELLITE_STATUS - CH_FIELD_GNSS_3_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_3_RAW_OBSERVATION - CH_FIELD_GNSS_3_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_STATION_INFO - CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_3_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_EPHEMERIS - CH_FIELD_GNSS_3_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GLONASS_EPHEMERIS - CH_FIELD_GNSS_3_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_EPHEMERIS - CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_3_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_TICKS - CH_FIELD_GNSS_3_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TICKS - CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_4_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_LLH_POSITION - CH_FIELD_GNSS_4_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_POSITION - CH_FIELD_GNSS_4_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_NED_VELOCITY - CH_FIELD_GNSS_4_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_VELOCITY - CH_FIELD_GNSS_4_DOP = _mscl.MipTypes_CH_FIELD_GNSS_4_DOP - CH_FIELD_GNSS_4_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_UTC_TIME - CH_FIELD_GNSS_4_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_TIME - CH_FIELD_GNSS_4_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO - CH_FIELD_GNSS_4_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_FIX_INFO - CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_4_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_HARDWARE_STATUS - CH_FIELD_GNSS_4_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_INFO - CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_4_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO_2 - CH_FIELD_GNSS_4_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_LEAP_SECONDS - CH_FIELD_GNSS_4_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_INFO - CH_FIELD_GNSS_4_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_CORRECTION - CH_FIELD_GNSS_4_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_RF_ERROR_DETECTION - CH_FIELD_GNSS_4_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_SATELLITE_STATUS - CH_FIELD_GNSS_4_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_4_RAW_OBSERVATION - CH_FIELD_GNSS_4_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_STATION_INFO - CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_4_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_EPHEMERIS - CH_FIELD_GNSS_4_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GLONASS_EPHEMERIS - CH_FIELD_GNSS_4_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_EPHEMERIS - CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_4_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_TICKS - CH_FIELD_GNSS_4_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TICKS - CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_5_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_LLH_POSITION - CH_FIELD_GNSS_5_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_POSITION - CH_FIELD_GNSS_5_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_NED_VELOCITY - CH_FIELD_GNSS_5_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_VELOCITY - CH_FIELD_GNSS_5_DOP = _mscl.MipTypes_CH_FIELD_GNSS_5_DOP - CH_FIELD_GNSS_5_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_UTC_TIME - CH_FIELD_GNSS_5_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_TIME - CH_FIELD_GNSS_5_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO - CH_FIELD_GNSS_5_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_FIX_INFO - CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_5_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_HARDWARE_STATUS - CH_FIELD_GNSS_5_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_INFO - CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_5_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO_2 - CH_FIELD_GNSS_5_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_LEAP_SECONDS - CH_FIELD_GNSS_5_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_INFO - CH_FIELD_GNSS_5_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_CORRECTION - CH_FIELD_GNSS_5_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_RF_ERROR_DETECTION - CH_FIELD_GNSS_5_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_SATELLITE_STATUS - CH_FIELD_GNSS_5_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_5_RAW_OBSERVATION - CH_FIELD_GNSS_5_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_STATION_INFO - CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_5_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_EPHEMERIS - CH_FIELD_GNSS_5_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GLONASS_EPHEMERIS - CH_FIELD_GNSS_5_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_EPHEMERIS - CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_5_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_TICKS - CH_FIELD_GNSS_5_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TICKS - CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_SYSTEM_BUILT_IN_TEST = _mscl.MipTypes_CH_FIELD_SYSTEM_BUILT_IN_TEST - CH_FIELD_SYSTEM_TIME_SYNC_STATUS = _mscl.MipTypes_CH_FIELD_SYSTEM_TIME_SYNC_STATUS - CH_FIELD_SYSTEM_GPIO_STATE = _mscl.MipTypes_CH_FIELD_SYSTEM_GPIO_STATE - CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE - CH_FIELD_SYSTEM_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_TICKS - CH_FIELD_SYSTEM_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TICKS - CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME - MIN_SHARED_FIELD_DESCRIPTOR = _mscl.MipTypes_MIN_SHARED_FIELD_DESCRIPTOR - CH_UNKNOWN = _mscl.MipTypes_CH_UNKNOWN - CH_X = _mscl.MipTypes_CH_X - CH_Y = _mscl.MipTypes_CH_Y - CH_Z = _mscl.MipTypes_CH_Z - CH_MATRIX = _mscl.MipTypes_CH_MATRIX - CH_QUATERNION = _mscl.MipTypes_CH_QUATERNION - CH_ROLL = _mscl.MipTypes_CH_ROLL - CH_PITCH = _mscl.MipTypes_CH_PITCH - CH_YAW = _mscl.MipTypes_CH_YAW - CH_TICK = _mscl.MipTypes_CH_TICK - CH_TIMESTAMP = _mscl.MipTypes_CH_TIMESTAMP - CH_STATUS = _mscl.MipTypes_CH_STATUS - CH_TIME_OF_WEEK = _mscl.MipTypes_CH_TIME_OF_WEEK - CH_WEEK_NUMBER = _mscl.MipTypes_CH_WEEK_NUMBER - CH_LATITUDE = _mscl.MipTypes_CH_LATITUDE - CH_LONGITUDE = _mscl.MipTypes_CH_LONGITUDE - CH_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CH_HEIGHT_ABOVE_ELLIPSOID - CH_HEIGHT_ABOVE_MSL = _mscl.MipTypes_CH_HEIGHT_ABOVE_MSL - CH_HORIZONTAL_ACCURACY = _mscl.MipTypes_CH_HORIZONTAL_ACCURACY - CH_VERTICAL_ACCURACY = _mscl.MipTypes_CH_VERTICAL_ACCURACY - CH_POSITION_ACCURACY = _mscl.MipTypes_CH_POSITION_ACCURACY - CH_NORTH = _mscl.MipTypes_CH_NORTH - CH_EAST = _mscl.MipTypes_CH_EAST - CH_DOWN = _mscl.MipTypes_CH_DOWN - CH_SPEED = _mscl.MipTypes_CH_SPEED - CH_GROUND_SPEED = _mscl.MipTypes_CH_GROUND_SPEED - CH_HEADING = _mscl.MipTypes_CH_HEADING - CH_SPEED_ACCURACY = _mscl.MipTypes_CH_SPEED_ACCURACY - CH_HEADING_ACCURACY = _mscl.MipTypes_CH_HEADING_ACCURACY - CH_VELOCITY_ACCURACY = _mscl.MipTypes_CH_VELOCITY_ACCURACY - CH_GEOMETRIC_DOP = _mscl.MipTypes_CH_GEOMETRIC_DOP - CH_POSITION_DOP = _mscl.MipTypes_CH_POSITION_DOP - CH_HORIZONTAL_DOP = _mscl.MipTypes_CH_HORIZONTAL_DOP - CH_VERTICAL_DOP = _mscl.MipTypes_CH_VERTICAL_DOP - CH_TIME_DOP = _mscl.MipTypes_CH_TIME_DOP - CH_NORTHING_DOP = _mscl.MipTypes_CH_NORTHING_DOP - CH_EASTING_DOP = _mscl.MipTypes_CH_EASTING_DOP - CH_FLAGS = _mscl.MipTypes_CH_FLAGS - CH_BIAS = _mscl.MipTypes_CH_BIAS - CH_DRIFT = _mscl.MipTypes_CH_DRIFT - CH_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_ACCURACY_ESTIMATE - CH_FIX_TYPE = _mscl.MipTypes_CH_FIX_TYPE - CH_SV_COUNT = _mscl.MipTypes_CH_SV_COUNT - CH_CHANNEL = _mscl.MipTypes_CH_CHANNEL - CH_ID = _mscl.MipTypes_CH_ID - CH_CARRIER_TO_NOISE_RATIO = _mscl.MipTypes_CH_CARRIER_TO_NOISE_RATIO - CH_AZIMUTH = _mscl.MipTypes_CH_AZIMUTH - CH_ELEVATION = _mscl.MipTypes_CH_ELEVATION - CH_SENSOR_STATE = _mscl.MipTypes_CH_SENSOR_STATE - CH_ANTENNA_STATE = _mscl.MipTypes_CH_ANTENNA_STATE - CH_ANTENNA_POWER = _mscl.MipTypes_CH_ANTENNA_POWER - CH_FILTER_STATE = _mscl.MipTypes_CH_FILTER_STATE - CH_DYNAMICS_MODE = _mscl.MipTypes_CH_DYNAMICS_MODE - CH_MAGNITUDE = _mscl.MipTypes_CH_MAGNITUDE - CH_HEADING_UNCERTAINTY = _mscl.MipTypes_CH_HEADING_UNCERTAINTY - CH_SOURCE = _mscl.MipTypes_CH_SOURCE - CH_INCLINATION = _mscl.MipTypes_CH_INCLINATION - CH_DECLINATION = _mscl.MipTypes_CH_DECLINATION - CH_PRESSURE = _mscl.MipTypes_CH_PRESSURE - CH_AGE = _mscl.MipTypes_CH_AGE - CH_NUM_CHANNELS = _mscl.MipTypes_CH_NUM_CHANNELS - CH_CORRECTION = _mscl.MipTypes_CH_CORRECTION - CH_RATE_CORRECTION = _mscl.MipTypes_CH_RATE_CORRECTION - CH_GEOMETRIC_ALTITUDE = _mscl.MipTypes_CH_GEOMETRIC_ALTITUDE - CH_GEOPOTENTIAL_ALTITUDE = _mscl.MipTypes_CH_GEOPOTENTIAL_ALTITUDE - CH_TEMPERATURE = _mscl.MipTypes_CH_TEMPERATURE - CH_DENSITY = _mscl.MipTypes_CH_DENSITY - CH_ALTITUDE = _mscl.MipTypes_CH_ALTITUDE - CH_DISPLACEMENT = _mscl.MipTypes_CH_DISPLACEMENT - CH_MAX_TEMP = _mscl.MipTypes_CH_MAX_TEMP - CH_MIN_TEMP = _mscl.MipTypes_CH_MIN_TEMP - CH_MEAN_TEMP = _mscl.MipTypes_CH_MEAN_TEMP - CH_BIAS_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_BIAS_ACCURACY_ESTIMATE - CH_DRIFT_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_DRIFT_ACCURACY_ESTIMATE - CH_SECONDS = _mscl.MipTypes_CH_SECONDS - CH_NUM_PACKETS = _mscl.MipTypes_CH_NUM_PACKETS - CH_GPS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GPS_CORRECTION_LATENCY - CH_GLONASS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GLONASS_CORRECTION_LATENCY - CH_GALILEO_CORRECTION_LATENCY = _mscl.MipTypes_CH_GALILEO_CORRECTION_LATENCY - CH_BEIDOU_CORRECTION_LATENCY = _mscl.MipTypes_CH_BEIDOU_CORRECTION_LATENCY - CH_HEIGHT = _mscl.MipTypes_CH_HEIGHT - CH_HEALTH = _mscl.MipTypes_CH_HEALTH - CH_INDEX = _mscl.MipTypes_CH_INDEX - CH_COUNT = _mscl.MipTypes_CH_COUNT - CH_SIGNAL_STRENGTH = _mscl.MipTypes_CH_SIGNAL_STRENGTH - CH_SIGNAL_QUALITY = _mscl.MipTypes_CH_SIGNAL_QUALITY - CH_RANGE = _mscl.MipTypes_CH_RANGE - CH_RANGE_UNC = _mscl.MipTypes_CH_RANGE_UNC - CH_ALPHA = _mscl.MipTypes_CH_ALPHA - CH_BETA = _mscl.MipTypes_CH_BETA - CH_DISTURBANCE_FLAGS = _mscl.MipTypes_CH_DISTURBANCE_FLAGS - CH_CARRIER_PHASE = _mscl.MipTypes_CH_CARRIER_PHASE - CH_CARRIER_PHASE_UNC = _mscl.MipTypes_CH_CARRIER_PHASE_UNC - CH_DOPPLER = _mscl.MipTypes_CH_DOPPLER - CH_DOPPLER_UNC = _mscl.MipTypes_CH_DOPPLER_UNC - CH_DELTA_TIME = _mscl.MipTypes_CH_DELTA_TIME - CH_DELTA_TICK = _mscl.MipTypes_CH_DELTA_TICK - CH_ERROR = _mscl.MipTypes_CH_ERROR - CH_ERROR_UNC = _mscl.MipTypes_CH_ERROR_UNC - CH_W = _mscl.MipTypes_CH_W - CH_M0 = _mscl.MipTypes_CH_M0 - CH_M1 = _mscl.MipTypes_CH_M1 - CH_M2 = _mscl.MipTypes_CH_M2 - CH_M3 = _mscl.MipTypes_CH_M3 - CH_M4 = _mscl.MipTypes_CH_M4 - CH_M5 = _mscl.MipTypes_CH_M5 - CH_M6 = _mscl.MipTypes_CH_M6 - CH_M7 = _mscl.MipTypes_CH_M7 - CH_M8 = _mscl.MipTypes_CH_M8 - CH_NANOSECONDS = _mscl.MipTypes_CH_NANOSECONDS - CH_VALID_FLAGS = _mscl.MipTypes_CH_VALID_FLAGS - CH_PPS_VALID = _mscl.MipTypes_CH_PPS_VALID - CH_LAST_PPS = _mscl.MipTypes_CH_LAST_PPS - CH_UDREI = _mscl.MipTypes_CH_UDREI - CH_PSEUDORANGE_CORRECTION = _mscl.MipTypes_CH_PSEUDORANGE_CORRECTION - CH_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_IONOSPHERIC_CORRECTION - CH_JAMMING_STATE = _mscl.MipTypes_CH_JAMMING_STATE - CH_SPOOFING_STATE = _mscl.MipTypes_CH_SPOOFING_STATE - CH_SYSTEM_ID = _mscl.MipTypes_CH_SYSTEM_ID - CH_SATELLITE_ID = _mscl.MipTypes_CH_SATELLITE_ID - CH_BIT_SYSTEM_GENERAL = _mscl.MipTypes_CH_BIT_SYSTEM_GENERAL - CH_BIT_SYSTEM_PROCESS = _mscl.MipTypes_CH_BIT_SYSTEM_PROCESS - CH_BIT_IMU_GENERAL = _mscl.MipTypes_CH_BIT_IMU_GENERAL - CH_BIT_IMU_SENSORS = _mscl.MipTypes_CH_BIT_IMU_SENSORS - CH_BIT_IMU_FACTORY_BITS = _mscl.MipTypes_CH_BIT_IMU_FACTORY_BITS - CH_BIT_FILTER_GENERAL = _mscl.MipTypes_CH_BIT_FILTER_GENERAL - CH_BIT_GNSS_GENERAL = _mscl.MipTypes_CH_BIT_GNSS_GENERAL - CH_BIT_GNSS_RECEIVERS = _mscl.MipTypes_CH_BIT_GNSS_RECEIVERS - - @staticmethod - def channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - - @staticmethod - def getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - - @staticmethod - def getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - - @staticmethod - def getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - - @staticmethod - def getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - - @staticmethod - def getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - - @staticmethod - def isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - - @staticmethod - def isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - - @staticmethod - def channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - - @staticmethod - def channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - - @staticmethod - def channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - - def __init__(self): - _mscl.MipTypes_swiginit(self, _mscl.new_MipTypes()) - __swig_destroy__ = _mscl.delete_MipTypes - -# Register MipTypes in _mscl: -_mscl.MipTypes_swigregister(MipTypes) - -def MipTypes_channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - -def MipTypes_getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - -def MipTypes_getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - -def MipTypes_getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - -def MipTypes_getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - -def MipTypes_getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - -def MipTypes_isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - -def MipTypes_isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - -def MipTypes_channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - -def MipTypes_channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - -def MipTypes_channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - -class MipChannelIdentifier(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - GNSS_RECEIVER_ID = _mscl.MipChannelIdentifier_GNSS_RECEIVER_ID - GNSS_BASE_STATION_ID = _mscl.MipChannelIdentifier_GNSS_BASE_STATION_ID - GNSS_CONSTELLATION = _mscl.MipChannelIdentifier_GNSS_CONSTELLATION - GNSS_SATELLITE_ID = _mscl.MipChannelIdentifier_GNSS_SATELLITE_ID - GNSS_SIGNAL_ID = _mscl.MipChannelIdentifier_GNSS_SIGNAL_ID - AIDING_MEASUREMENT_TYPE = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_TYPE - GNSS_RF_BAND = _mscl.MipChannelIdentifier_GNSS_RF_BAND - AIDING_MEASUREMENT_FRAME_ID = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_FRAME_ID - GNSS = _mscl.MipChannelIdentifier_GNSS - DUAL_ANTENNA = _mscl.MipChannelIdentifier_DUAL_ANTENNA - HEADING = _mscl.MipChannelIdentifier_HEADING - PRESSURE = _mscl.MipChannelIdentifier_PRESSURE - MAGNETOMETER = _mscl.MipChannelIdentifier_MAGNETOMETER - SPEED = _mscl.MipChannelIdentifier_SPEED - AIDING_POS_ECEF = _mscl.MipChannelIdentifier_AIDING_POS_ECEF - AIDING_POS_LLH = _mscl.MipChannelIdentifier_AIDING_POS_LLH - AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipChannelIdentifier_AIDING_HEIGHT_ABOVE_ELLIPSOID - AIDING_VEL_ECEF = _mscl.MipChannelIdentifier_AIDING_VEL_ECEF - AIDING_VEL_NED = _mscl.MipChannelIdentifier_AIDING_VEL_NED - AIDING_VEL_BODY_FRAME = _mscl.MipChannelIdentifier_AIDING_VEL_BODY_FRAME - AIDING_HEADING_TRUE = _mscl.MipChannelIdentifier_AIDING_HEADING_TRUE - AIDING_MAGNETIC_FIELD = _mscl.MipChannelIdentifier_AIDING_MAGNETIC_FIELD - AIDING_PRESSURE = _mscl.MipChannelIdentifier_AIDING_PRESSURE - UNKNOWN_CONSTELLATION = _mscl.MipChannelIdentifier_UNKNOWN_CONSTELLATION - GPS = _mscl.MipChannelIdentifier_GPS - GLONASS = _mscl.MipChannelIdentifier_GLONASS - GALILEO = _mscl.MipChannelIdentifier_GALILEO - BEIDOU = _mscl.MipChannelIdentifier_BEIDOU - UNKNOWN_SIGNAL = _mscl.MipChannelIdentifier_UNKNOWN_SIGNAL - GPS_L1CA = _mscl.MipChannelIdentifier_GPS_L1CA - GPS_L1P = _mscl.MipChannelIdentifier_GPS_L1P - GPS_L1Z = _mscl.MipChannelIdentifier_GPS_L1Z - GPS_L2CA = _mscl.MipChannelIdentifier_GPS_L2CA - GPS_L2P = _mscl.MipChannelIdentifier_GPS_L2P - GPS_L2Z = _mscl.MipChannelIdentifier_GPS_L2Z - GPS_L2CL = _mscl.MipChannelIdentifier_GPS_L2CL - GPS_L2CM = _mscl.MipChannelIdentifier_GPS_L2CM - GPS_L2CML = _mscl.MipChannelIdentifier_GPS_L2CML - GPS_L5I = _mscl.MipChannelIdentifier_GPS_L5I - GPS_L5Q = _mscl.MipChannelIdentifier_GPS_L5Q - GPS_L5IQ = _mscl.MipChannelIdentifier_GPS_L5IQ - GPS_L1CD = _mscl.MipChannelIdentifier_GPS_L1CD - GPS_L1CP = _mscl.MipChannelIdentifier_GPS_L1CP - GPS_L1CDP = _mscl.MipChannelIdentifier_GPS_L1CDP - GLONASS_G1CA = _mscl.MipChannelIdentifier_GLONASS_G1CA - GLONASS_G1P = _mscl.MipChannelIdentifier_GLONASS_G1P - GLONASS_G2C = _mscl.MipChannelIdentifier_GLONASS_G2C - GLONASS_G2P = _mscl.MipChannelIdentifier_GLONASS_G2P - GALILEO_E1C = _mscl.MipChannelIdentifier_GALILEO_E1C - GALILEO_E1A = _mscl.MipChannelIdentifier_GALILEO_E1A - GALILEO_E1B = _mscl.MipChannelIdentifier_GALILEO_E1B - GALILEO_E1BC = _mscl.MipChannelIdentifier_GALILEO_E1BC - GALILEO_E1ABC = _mscl.MipChannelIdentifier_GALILEO_E1ABC - GALILEO_E6C = _mscl.MipChannelIdentifier_GALILEO_E6C - GALILEO_E6A = _mscl.MipChannelIdentifier_GALILEO_E6A - GALILEO_E6B = _mscl.MipChannelIdentifier_GALILEO_E6B - GALILEO_E6BC = _mscl.MipChannelIdentifier_GALILEO_E6BC - GALILEO_E6ABC = _mscl.MipChannelIdentifier_GALILEO_E6ABC - GALILEO_E5BI = _mscl.MipChannelIdentifier_GALILEO_E5BI - GALILEO_E5BQ = _mscl.MipChannelIdentifier_GALILEO_E5BQ - GALILEO_E5BIQ = _mscl.MipChannelIdentifier_GALILEO_E5BIQ - GALILEO_E5ABI = _mscl.MipChannelIdentifier_GALILEO_E5ABI - GALILEO_E5ABQ = _mscl.MipChannelIdentifier_GALILEO_E5ABQ - GALILEO_E5ABIQ = _mscl.MipChannelIdentifier_GALILEO_E5ABIQ - GALILEO_E5AI = _mscl.MipChannelIdentifier_GALILEO_E5AI - GALILEO_E5AQ = _mscl.MipChannelIdentifier_GALILEO_E5AQ - GALILEO_E5AIQ = _mscl.MipChannelIdentifier_GALILEO_E5AIQ - SBAS_L1CA = _mscl.MipChannelIdentifier_SBAS_L1CA - SBAS_L5I = _mscl.MipChannelIdentifier_SBAS_L5I - SBAS_L5Q = _mscl.MipChannelIdentifier_SBAS_L5Q - SBAS_L5IQ = _mscl.MipChannelIdentifier_SBAS_L5IQ - QZSS_L1CA = _mscl.MipChannelIdentifier_QZSS_L1CA - QZSS_LEXS = _mscl.MipChannelIdentifier_QZSS_LEXS - QZSS_LEXL = _mscl.MipChannelIdentifier_QZSS_LEXL - QZSS_LEXSL = _mscl.MipChannelIdentifier_QZSS_LEXSL - QZSS_L2CM = _mscl.MipChannelIdentifier_QZSS_L2CM - QZSS_L2CL = _mscl.MipChannelIdentifier_QZSS_L2CL - QZSS_L2CML = _mscl.MipChannelIdentifier_QZSS_L2CML - QZSS_L5I = _mscl.MipChannelIdentifier_QZSS_L5I - QZSS_L5Q = _mscl.MipChannelIdentifier_QZSS_L5Q - QZSS_L5IQ = _mscl.MipChannelIdentifier_QZSS_L5IQ - QZSS_L1CD = _mscl.MipChannelIdentifier_QZSS_L1CD - QZSS_L1CP = _mscl.MipChannelIdentifier_QZSS_L1CP - QZSS_L1CDP = _mscl.MipChannelIdentifier_QZSS_L1CDP - BEIDOU_B1I = _mscl.MipChannelIdentifier_BEIDOU_B1I - BEIDOU_B1Q = _mscl.MipChannelIdentifier_BEIDOU_B1Q - BEIDOU_B1IQ = _mscl.MipChannelIdentifier_BEIDOU_B1IQ - BEIDOU_B3I = _mscl.MipChannelIdentifier_BEIDOU_B3I - BEIDOU_B3Q = _mscl.MipChannelIdentifier_BEIDOU_B3Q - BEIDOU_B3IQ = _mscl.MipChannelIdentifier_BEIDOU_B3IQ - BEIDOU_B2I = _mscl.MipChannelIdentifier_BEIDOU_B2I - BEIDOU_B2Q = _mscl.MipChannelIdentifier_BEIDOU_B2Q - BEIDOU_B2IQ = _mscl.MipChannelIdentifier_BEIDOU_B2IQ - UNKNOWN_RF_BAND = _mscl.MipChannelIdentifier_UNKNOWN_RF_BAND - RF_BAND_L1 = _mscl.MipChannelIdentifier_RF_BAND_L1 - RF_BAND_L2 = _mscl.MipChannelIdentifier_RF_BAND_L2 - RF_BAND_L5 = _mscl.MipChannelIdentifier_RF_BAND_L5 - - def __init__(self, *args): - _mscl.MipChannelIdentifier_swiginit(self, _mscl.new_MipChannelIdentifier(*args)) - __swig_destroy__ = _mscl.delete_MipChannelIdentifier - - def identifierType(self): - return _mscl.MipChannelIdentifier_identifierType(self) - - def id(self): - return _mscl.MipChannelIdentifier_id(self) - - def hasSpecifier(self): - return _mscl.MipChannelIdentifier_hasSpecifier(self) - - def specifier(self): - return _mscl.MipChannelIdentifier_specifier(self) - - def name(self, standardizedFormat=True): - return _mscl.MipChannelIdentifier_name(self, standardizedFormat) - -# Register MipChannelIdentifier in _mscl: -_mscl.MipChannelIdentifier_swigregister(MipChannelIdentifier) - -class MipCommandBytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - id = property(_mscl.MipCommandBytes_id_get, _mscl.MipCommandBytes_id_set) - commands = property(_mscl.MipCommandBytes_commands_get, _mscl.MipCommandBytes_commands_set) - buildCmdFailed = property(_mscl.MipCommandBytes_buildCmdFailed_get, _mscl.MipCommandBytes_buildCmdFailed_set) - sendCmdFailed = property(_mscl.MipCommandBytes_sendCmdFailed_get, _mscl.MipCommandBytes_sendCmdFailed_set) - - def __init__(self, *args): - _mscl.MipCommandBytes_swiginit(self, _mscl.new_MipCommandBytes(*args)) - - def add(self, cmd): - return _mscl.MipCommandBytes_add(self, cmd) - - def valid(self): - return _mscl.MipCommandBytes_valid(self) - __swig_destroy__ = _mscl.delete_MipCommandBytes - -# Register MipCommandBytes in _mscl: -_mscl.MipCommandBytes_swigregister(MipCommandBytes) - -class AidingMeasurementInput(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - ACK_NACK = _mscl.AidingMeasurementInput_ACK_NACK - ECHO_INPUT = _mscl.AidingMeasurementInput_ECHO_INPUT - - def toMipFieldValues(self): - return _mscl.AidingMeasurementInput_toMipFieldValues(self) - - def timestamp(self, *args): - return _mscl.AidingMeasurementInput_timestamp(self, *args) - - def timebase(self): - return _mscl.AidingMeasurementInput_timebase(self) - - def frameId(self, *args): - return _mscl.AidingMeasurementInput_frameId(self, *args) - - def validFlags(self, *args): - return _mscl.AidingMeasurementInput_validFlags(self, *args) - -# Register AidingMeasurementInput in _mscl: -_mscl.AidingMeasurementInput_swigregister(AidingMeasurementInput) - -class AidingMeasurementPosition(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementPosition_X - LATITUDE = _mscl.AidingMeasurementPosition_LATITUDE - Y = _mscl.AidingMeasurementPosition_Y - LONGITUDE = _mscl.AidingMeasurementPosition_LONGITUDE - Z = _mscl.AidingMeasurementPosition_Z - HEIGHT = _mscl.AidingMeasurementPosition_HEIGHT - ALTITUDE = _mscl.AidingMeasurementPosition_ALTITUDE - - def __init__(self, *args): - _mscl.AidingMeasurementPosition_swiginit(self, _mscl.new_AidingMeasurementPosition(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPosition - - def position(self, *args): - return _mscl.AidingMeasurementPosition_position(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPosition_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementPosition_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPosition_valid(self, *args) - -# Register AidingMeasurementPosition in _mscl: -_mscl.AidingMeasurementPosition_swigregister(AidingMeasurementPosition) - -class AidingMeasurementHeight(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeight_swiginit(self, _mscl.new_AidingMeasurementHeight(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeight - - def height(self, *args): - return _mscl.AidingMeasurementHeight_height(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeight_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeight_valid(self, *args) - -# Register AidingMeasurementHeight in _mscl: -_mscl.AidingMeasurementHeight_swigregister(AidingMeasurementHeight) - -class AidingMeasurementVelocity(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementVelocity_X - NORTH = _mscl.AidingMeasurementVelocity_NORTH - Y = _mscl.AidingMeasurementVelocity_Y - EAST = _mscl.AidingMeasurementVelocity_EAST - Z = _mscl.AidingMeasurementVelocity_Z - DOWN = _mscl.AidingMeasurementVelocity_DOWN - - def __init__(self, *args): - _mscl.AidingMeasurementVelocity_swiginit(self, _mscl.new_AidingMeasurementVelocity(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementVelocity - - def velocity(self, *args): - return _mscl.AidingMeasurementVelocity_velocity(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementVelocity_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementVelocity_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementVelocity_valid(self, *args) - -# Register AidingMeasurementVelocity in _mscl: -_mscl.AidingMeasurementVelocity_swigregister(AidingMeasurementVelocity) - -class AidingMeasurementHeading(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeading_swiginit(self, _mscl.new_AidingMeasurementHeading(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeading - - def heading(self, *args): - return _mscl.AidingMeasurementHeading_heading(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeading_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeading_valid(self, *args) - -# Register AidingMeasurementHeading in _mscl: -_mscl.AidingMeasurementHeading_swigregister(AidingMeasurementHeading) - -class AidingMeasurementMagneticField(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementMagneticField_X - Y = _mscl.AidingMeasurementMagneticField_Y - Z = _mscl.AidingMeasurementMagneticField_Z - - def __init__(self, *args): - _mscl.AidingMeasurementMagneticField_swiginit(self, _mscl.new_AidingMeasurementMagneticField(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementMagneticField - - def magneticField(self, *args): - return _mscl.AidingMeasurementMagneticField_magneticField(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementMagneticField_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementMagneticField_valid(self, *args) - -# Register AidingMeasurementMagneticField in _mscl: -_mscl.AidingMeasurementMagneticField_swigregister(AidingMeasurementMagneticField) - -class AidingMeasurementPressure(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementPressure_swiginit(self, _mscl.new_AidingMeasurementPressure(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPressure - - def pressure(self, *args): - return _mscl.AidingMeasurementPressure_pressure(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPressure_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPressure_valid(self, *args) - -# Register AidingMeasurementPressure in _mscl: -_mscl.AidingMeasurementPressure_swigregister(AidingMeasurementPressure) - -class GnssReceiverInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GnssReceiverInfo_swiginit(self, _mscl.new_GnssReceiverInfo(*args)) - id = property(_mscl.GnssReceiverInfo_id_get, _mscl.GnssReceiverInfo_id_set) - targetDataClass = property(_mscl.GnssReceiverInfo_targetDataClass_get, _mscl.GnssReceiverInfo_targetDataClass_set) - description = property(_mscl.GnssReceiverInfo_description_get, _mscl.GnssReceiverInfo_description_set) - module = property(_mscl.GnssReceiverInfo_module_get, _mscl.GnssReceiverInfo_module_set) - fwId = property(_mscl.GnssReceiverInfo_fwId_get, _mscl.GnssReceiverInfo_fwId_set) - fwVersion = property(_mscl.GnssReceiverInfo_fwVersion_get, _mscl.GnssReceiverInfo_fwVersion_set) - __swig_destroy__ = _mscl.delete_GnssReceiverInfo - -# Register GnssReceiverInfo in _mscl: -_mscl.GnssReceiverInfo_swigregister(GnssReceiverInfo) -GnssReceiverInfo.INFO_NOT_FOUND = _mscl.cvar.GnssReceiverInfo_INFO_NOT_FOUND - -class DeviceCommPort(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SPECIAL = _mscl.DeviceCommPort_SPECIAL - UART = _mscl.DeviceCommPort_UART - USB = _mscl.DeviceCommPort_USB - NONE = _mscl.DeviceCommPort_NONE - MIP_COMMANDS = _mscl.DeviceCommPort_MIP_COMMANDS - MIP_DATA = _mscl.DeviceCommPort_MIP_DATA - NMEA = _mscl.DeviceCommPort_NMEA - RTCM = _mscl.DeviceCommPort_RTCM - SPARTN = _mscl.DeviceCommPort_SPARTN - ALL = _mscl.DeviceCommPort_ALL - - def __init__(self, *args): - _mscl.DeviceCommPort_swiginit(self, _mscl.new_DeviceCommPort(*args)) - - def interfaceId(self): - return _mscl.DeviceCommPort_interfaceId(self) - type = property(_mscl.DeviceCommPort_type_get, _mscl.DeviceCommPort_type_set) - id = property(_mscl.DeviceCommPort_id_get, _mscl.DeviceCommPort_id_set) - inputProtocols = property(_mscl.DeviceCommPort_inputProtocols_get, _mscl.DeviceCommPort_inputProtocols_set) - outputProtocols = property(_mscl.DeviceCommPort_outputProtocols_get, _mscl.DeviceCommPort_outputProtocols_set) - __swig_destroy__ = _mscl.delete_DeviceCommPort - -# Register DeviceCommPort in _mscl: -_mscl.DeviceCommPort_swigregister(DeviceCommPort) - -class EventTypeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTypeInfo_swiginit(self, _mscl.new_EventTypeInfo(*args)) - type = property(_mscl.EventTypeInfo_type_get, _mscl.EventTypeInfo_type_set) - maxInstances = property(_mscl.EventTypeInfo_maxInstances_get, _mscl.EventTypeInfo_maxInstances_set) - __swig_destroy__ = _mscl.delete_EventTypeInfo - -# Register EventTypeInfo in _mscl: -_mscl.EventTypeInfo_swigregister(EventTypeInfo) - -class EventSupportInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - TRIGGERS = _mscl.EventSupportInfo_TRIGGERS - ACTIONS = _mscl.EventSupportInfo_ACTIONS - query = property(_mscl.EventSupportInfo_query_get, _mscl.EventSupportInfo_query_set) - maxInstances = property(_mscl.EventSupportInfo_maxInstances_get, _mscl.EventSupportInfo_maxInstances_set) - entries = property(_mscl.EventSupportInfo_entries_get, _mscl.EventSupportInfo_entries_set) - - def __init__(self): - _mscl.EventSupportInfo_swiginit(self, _mscl.new_EventSupportInfo()) - __swig_destroy__ = _mscl.delete_EventSupportInfo - -# Register EventSupportInfo in _mscl: -_mscl.EventSupportInfo_swigregister(EventSupportInfo) - -class SensorRange(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ALL = _mscl.SensorRange_ALL - ACCEL_G = _mscl.SensorRange_ACCEL_G - GYRO_DPS = _mscl.SensorRange_GYRO_DPS - MAG_GAUSS = _mscl.SensorRange_MAG_GAUSS - PRESSURE_HPA = _mscl.SensorRange_PRESSURE_HPA - - def __init__(self): - _mscl.SensorRange_swiginit(self, _mscl.new_SensorRange()) - - def type(self): - return _mscl.SensorRange_type(self) - - def range(self): - return _mscl.SensorRange_range(self) - - def id(self): - return _mscl.SensorRange_id(self) - __swig_destroy__ = _mscl.delete_SensorRange - -# Register SensorRange in _mscl: -_mscl.SensorRange_swigregister(SensorRange) - -class SupportedSensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.SupportedSensorRanges_swiginit(self, _mscl.new_SupportedSensorRanges()) - - def options(self): - return _mscl.SupportedSensorRanges_options(self) - - def lookupRecommended(self, type, range): - return _mscl.SupportedSensorRanges_lookupRecommended(self, type, range) - __swig_destroy__ = _mscl.delete_SupportedSensorRanges - -# Register SupportedSensorRanges in _mscl: -_mscl.SupportedSensorRanges_swigregister(SupportedSensorRanges) - -class InertialTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - PORTABLE_VEHICLE = _mscl.InertialTypes_PORTABLE_VEHICLE - AUTOMOTIVE_VEHICLE = _mscl.InertialTypes_AUTOMOTIVE_VEHICLE - AIRBORNE_VEHICLE = _mscl.InertialTypes_AIRBORNE_VEHICLE - AIRBORNE_HIGH_G_VEHICLE = _mscl.InertialTypes_AIRBORNE_HIGH_G_VEHICLE - GPS_PORTABLE = _mscl.InertialTypes_GPS_PORTABLE - GPS_STATIONARY = _mscl.InertialTypes_GPS_STATIONARY - GPS_PEDESTRIAN = _mscl.InertialTypes_GPS_PEDESTRIAN - GPS_AUTOMOTIVE = _mscl.InertialTypes_GPS_AUTOMOTIVE - GPS_SEA = _mscl.InertialTypes_GPS_SEA - GPS_AIRBORNE_1G = _mscl.InertialTypes_GPS_AIRBORNE_1G - GPS_AIRBORNE_2G = _mscl.InertialTypes_GPS_AIRBORNE_2G - GPS_AIRBORNE_4G = _mscl.InertialTypes_GPS_AIRBORNE_4G - RESET_ALL_AXIS = _mscl.InertialTypes_RESET_ALL_AXIS - TARE_ROLL_AXIS = _mscl.InertialTypes_TARE_ROLL_AXIS - TARE_PITCH_AXIS = _mscl.InertialTypes_TARE_PITCH_AXIS - TARE_YAW_AXIS = _mscl.InertialTypes_TARE_YAW_AXIS - INTERNAL_GNSS_ALL = _mscl.InertialTypes_INTERNAL_GNSS_ALL - EXTERNAL_GNSS = _mscl.InertialTypes_EXTERNAL_GNSS - INTERNAL_GNSS1 = _mscl.InertialTypes_INTERNAL_GNSS1 - INTERNAL_GNSS2 = _mscl.InertialTypes_INTERNAL_GNSS2 - FIX_SBAS_CORRECTIONS = _mscl.InertialTypes_FIX_SBAS_CORRECTIONS - FIX_DGNSS_CORRECTIONS = _mscl.InertialTypes_FIX_DGNSS_CORRECTIONS - FIXTYPE_3D = _mscl.InertialTypes_FIXTYPE_3D - FIXTYPE_2D = _mscl.InertialTypes_FIXTYPE_2D - FIXTYPE_TIMEONLY = _mscl.InertialTypes_FIXTYPE_TIMEONLY - FIXTYPE_NONE = _mscl.InertialTypes_FIXTYPE_NONE - FIXTYPE_INVALID = _mscl.InertialTypes_FIXTYPE_INVALID - FIXTYPE_RTK_FLOAT = _mscl.InertialTypes_FIXTYPE_RTK_FLOAT - FIXTYPE_RTK_FIXED = _mscl.InertialTypes_FIXTYPE_RTK_FIXED - FIXTYPE_DUAL_ANTENNA_NONE = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_NONE - FIXTYPE_DUAL_ANTENNA_FLOAT = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FLOAT - FIXTYPE_DUAL_ANTENNA_FIXED = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FIXED - DATA_VALID_REC_1 = _mscl.InertialTypes_DATA_VALID_REC_1 - DATA_VALID_REC_2 = _mscl.InertialTypes_DATA_VALID_REC_2 - ANTENNA_OFFSETS_VALID = _mscl.InertialTypes_ANTENNA_OFFSETS_VALID - SVFLAG_NAVIGATION = _mscl.InertialTypes_SVFLAG_NAVIGATION - SVFLAG_HEALTHY = _mscl.InertialTypes_SVFLAG_HEALTHY - DEVICE_AHRS = _mscl.InertialTypes_DEVICE_AHRS - DEVICE_GPS = _mscl.InertialTypes_DEVICE_GPS - ON_FULL_PERFORMANCE = _mscl.InertialTypes_ON_FULL_PERFORMANCE - ON_LOW_POWER = _mscl.InertialTypes_ON_LOW_POWER - SLEEP = _mscl.InertialTypes_SLEEP - OFF = _mscl.InertialTypes_OFF - STANDARD_MIP = _mscl.InertialTypes_STANDARD_MIP - WRAPPED_RAW = _mscl.InertialTypes_WRAPPED_RAW - SENSORSTATE_OFF = _mscl.InertialTypes_SENSORSTATE_OFF - SENSORSTATE_ON = _mscl.InertialTypes_SENSORSTATE_ON - SENSORSTATE_UNKNOWN = _mscl.InertialTypes_SENSORSTATE_UNKNOWN - ANTENNASTATE_INIT = _mscl.InertialTypes_ANTENNASTATE_INIT - ANTENNASTATE_SHORT = _mscl.InertialTypes_ANTENNASTATE_SHORT - ANTENNASTATE_OPEN = _mscl.InertialTypes_ANTENNASTATE_OPEN - ANTENNASTATE_GOOD = _mscl.InertialTypes_ANTENNASTATE_GOOD - ANTENNASTATE_UNKNOWN = _mscl.InertialTypes_ANTENNASTATE_UNKNOWN - ANTENNAPOWER_OFF = _mscl.InertialTypes_ANTENNAPOWER_OFF - ANTENNAPOWER_ON = _mscl.InertialTypes_ANTENNAPOWER_ON - ANTENNAPOWER_UNKNOWN = _mscl.InertialTypes_ANTENNAPOWER_UNKNOWN - FILTERSTATE_STARTUP = _mscl.InertialTypes_FILTERSTATE_STARTUP - FILTERSTATE_INIT = _mscl.InertialTypes_FILTERSTATE_INIT - FILTERSTATE_RUNNING_SLN_VALID = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_VALID - FILTERSTATE_RUNNING_SLN_ERROR = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_ERROR - FILTERSTATE_VERT_GYRO = _mscl.InertialTypes_FILTERSTATE_VERT_GYRO - FILTERSTATE_AHRS = _mscl.InertialTypes_FILTERSTATE_AHRS - FILTERSTATE_FULL_NAV = _mscl.InertialTypes_FILTERSTATE_FULL_NAV - FILTERSTATUS_IMU_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_IMU_UNAVAILABLE - FILTERSTATUS_GPS_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_GPS_UNAVAILABLE - FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC = _mscl.InertialTypes_FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC - FILTERSTATUS_POS_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_POS_COVARIANCE_HIGH_WARN - FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN - FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN - FILTERSTATUS_NAN_IN_SOLUTION = _mscl.InertialTypes_FILTERSTATUS_NAN_IN_SOLUTION - FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN - FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN - FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN - FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN - FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_CONDITION = _mscl.InertialTypes_FILTERSTATUS_CONDITION - FILTERSTATUS_ROLL_PITCH_WARNING = _mscl.InertialTypes_FILTERSTATUS_ROLL_PITCH_WARNING - FILTERSTATUS_HEADING_WARNING = _mscl.InertialTypes_FILTERSTATUS_HEADING_WARNING - FILTERSTATUS_POSITION_WARNING = _mscl.InertialTypes_FILTERSTATUS_POSITION_WARNING - FILTERSTATUS_VELOCITY_WARNING = _mscl.InertialTypes_FILTERSTATUS_VELOCITY_WARNING - FILTERSTATUS_IMU_BIAS_WARNING = _mscl.InertialTypes_FILTERSTATUS_IMU_BIAS_WARNING - FILTERSTATUS_GNSS_CLK_WARNING = _mscl.InertialTypes_FILTERSTATUS_GNSS_CLK_WARNING - FILTERSTATUS_ANT_LEVER_ARM_WARNING = _mscl.InertialTypes_FILTERSTATUS_ANT_LEVER_ARM_WARNING - FILTERSTATUS_MOUNTING_TRANSFORM_WARNING = _mscl.InertialTypes_FILTERSTATUS_MOUNTING_TRANSFORM_WARNING - FILTERSTATUS_ATT_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_ATT_NOT_INIT - FILTERSTATUS_POS_VEL_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_POS_VEL_NOT_INIT - STABLE = _mscl.InertialTypes_STABLE - CONVERGING = _mscl.InertialTypes_CONVERGING - UNSTABLE = _mscl.InertialTypes_UNSTABLE - DGNSSBASE_UDRE_SCALE_FACTOR_1_00 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_1_00 - DGNSSBASE_UDRE_SCALE_FACTOR_0_75 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_75 - DGNSSBASE_UDRE_SCALE_FACTOR_0_50 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_50 - DGNSSBASE_UDRE_SCALE_FACTOR_0_30 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_30 - DGNSSBASE_UDRE_SCALE_FACTOR_0_20 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_20 - DGNSSBASE_UDRE_SCALE_FACTOR_0_10 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_10 - DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED - DGNSSBASE_REFERENCE_STATION_NOT_WORKING = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_NOT_WORKING - HEADINGSOURCE_NONE = _mscl.InertialTypes_HEADINGSOURCE_NONE - HEADINGSOURCE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_MAGNETOMETER - HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR - HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD = _mscl.InertialTypes_HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD - HEADINGSOURCE_GNSS_DUAL_ANTENNA = _mscl.InertialTypes_HEADINGSOURCE_GNSS_DUAL_ANTENNA - ENABLE_NONE = _mscl.InertialTypes_ENABLE_NONE - ENABLE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_ENABLE_INTERNAL_MAGNETOMETER - ENABLE_INTERNAL_GNSS = _mscl.InertialTypes_ENABLE_INTERNAL_GNSS - ENABLE_EXTERNAL_MESSAGES = _mscl.InertialTypes_ENABLE_EXTERNAL_MESSAGES - ENABLE_MAGNETOMETER_AND_GNSS = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_GNSS - ENABLE_GNSS_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_GNSS_AND_EXTERNAL - ENABLE_MAGNETOMETER_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_EXTERNAL - ENABLE_ALL = _mscl.InertialTypes_ENABLE_ALL - ENABLE_GYRO_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_BIAS_ESTIMATION - ENABLE_ACCEL_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_BIAS_ESTIMATION - ENABLE_GYRO_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_SCALE_FACTOR_ESTIMATION - ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION - ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION = _mscl.InertialTypes_ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION - ENABLE_HARD_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_HARD_IRON_AUTO_CALIBRATION - ENABLE_SOFT_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_SOFT_IRON_AUTO_CALIBRATION - NONE = _mscl.InertialTypes_NONE - WORLD_MAGNETIC_MODEL = _mscl.InertialTypes_WORLD_MAGNETIC_MODEL - MANUAL = _mscl.InertialTypes_MANUAL - ADAPTIVE_MEASUREMENT_DISABLE = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_DISABLE - ADAPTIVE_MEASUREMENT_ENABLE_FIXED = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_FIXED - ADAPTIVE_MEASUREMENT_ENABLE_AUTO = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_AUTO - GNSS_POS_VEL_AIDING = _mscl.InertialTypes_GNSS_POS_VEL_AIDING - GNSS_HEADING_AIDING = _mscl.InertialTypes_GNSS_HEADING_AIDING - ALTIMETER_AIDING = _mscl.InertialTypes_ALTIMETER_AIDING - ODOMETER_AIDING = _mscl.InertialTypes_ODOMETER_AIDING - MAGNETOMETER_AIDING = _mscl.InertialTypes_MAGNETOMETER_AIDING - EXTERNAL_HEADING_AIDING = _mscl.InertialTypes_EXTERNAL_HEADING_AIDING - EXTERNAL_ALTIMETER_AIDING = _mscl.InertialTypes_EXTERNAL_ALTIMETER_AIDING - EXTERNAL_MAGNETOMETER_AIDING = _mscl.InertialTypes_EXTERNAL_MAGNETOMETER_AIDING - BODY_FRAME_VEL_AIDING = _mscl.InertialTypes_BODY_FRAME_VEL_AIDING - ALL_AIDING_MEASUREMENTS = _mscl.InertialTypes_ALL_AIDING_MEASUREMENTS - GPS = _mscl.InertialTypes_GPS - SBAS = _mscl.InertialTypes_SBAS - GALILEO = _mscl.InertialTypes_GALILEO - BEIDOU = _mscl.InertialTypes_BEIDOU - QZSS = _mscl.InertialTypes_QZSS - GLONASS = _mscl.InertialTypes_GLONASS - FILTERING_OFF = _mscl.InertialTypes_FILTERING_OFF - FILTERING_CONSERVATIVE = _mscl.InertialTypes_FILTERING_CONSERVATIVE - FILTERING_MODERATE = _mscl.InertialTypes_FILTERING_MODERATE - FILTERING_AGGRESSIVE = _mscl.InertialTypes_FILTERING_AGGRESSIVE - FACTORY_STREAMING_OVERWRITE = _mscl.InertialTypes_FACTORY_STREAMING_OVERWRITE - FACTORY_STREAMING_MERGE = _mscl.InertialTypes_FACTORY_STREAMING_MERGE - FACTORY_STREAMING_ADDITIVE = _mscl.InertialTypes_FACTORY_STREAMING_ADDITIVE - PPS_DISABLED = _mscl.InertialTypes_PPS_DISABLED - PPS_RECEIVER_1 = _mscl.InertialTypes_PPS_RECEIVER_1 - PPS_RECEIVER_2 = _mscl.InertialTypes_PPS_RECEIVER_2 - PPS_GPIO = _mscl.InertialTypes_PPS_GPIO - PPS_GENERATED = _mscl.InertialTypes_PPS_GENERATED - GNSS_AIDING_TIGHT_COUPLING = _mscl.InertialTypes_GNSS_AIDING_TIGHT_COUPLING - GNSS_AIDING_DIFFERENTIAL = _mscl.InertialTypes_GNSS_AIDING_DIFFERENTIAL - GNSS_AIDING_INTEGER_FIX = _mscl.InertialTypes_GNSS_AIDING_INTEGER_FIX - GNSS_AIDING_GPS = _mscl.InertialTypes_GNSS_AIDING_GPS - GNSS_AIDING_GLONASS = _mscl.InertialTypes_GNSS_AIDING_GLONASS - GNSS_AIDING_GALILEO = _mscl.InertialTypes_GNSS_AIDING_GALILEO - GNSS_AIDING_BEIDOU = _mscl.InertialTypes_GNSS_AIDING_BEIDOU - GNSS_AIDING_NO_FIX = _mscl.InertialTypes_GNSS_AIDING_NO_FIX - GNSS_AIDING_CONFIG_ERROR = _mscl.InertialTypes_GNSS_AIDING_CONFIG_ERROR - AIDING_MEASUREMENT_ENABLED = _mscl.InertialTypes_AIDING_MEASUREMENT_ENABLED - AIDING_MEASUREMENT_USED = _mscl.InertialTypes_AIDING_MEASUREMENT_USED - AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH - AIDING_MEASUREMENT_WARNING_SAMPLE_TIME = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_SAMPLE_TIME - AIDING_MEASUREMENT_CONFIG_ERROR = _mscl.InertialTypes_AIDING_MEASUREMENT_CONFIG_ERROR - AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED = _mscl.InertialTypes_AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED - RTK_CORRECTION_ANTENNA_POS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_POS_RECEIVED - RTK_CORRECTION_ANTENNA_DESC_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_DESC_RECEIVED - RTK_CORRECTION_GPS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GPS_RECEIVED - RTK_CORRECTION_GLONASS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GLONASS_RECEIVED - RTK_CORRECTION_GALILEO_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GALILEO_RECEIVED - RTK_CORRECTION_BEIDOU_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_BEIDOU_RECEIVED - RTK_CORRECTION_USING_GPS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GPS_MSM - RTK_CORRECTION_USING_GLONASS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GLONASS_MSM - SIGNAL_QUALITY_NONE = _mscl.InertialTypes_SIGNAL_QUALITY_NONE - SIGNAL_QUALITY_SEARCHING = _mscl.InertialTypes_SIGNAL_QUALITY_SEARCHING - SIGNAL_QUALITY_ACQUIRED = _mscl.InertialTypes_SIGNAL_QUALITY_ACQUIRED - SIGNAL_QUALITY_UNUSABLE = _mscl.InertialTypes_SIGNAL_QUALITY_UNUSABLE - SIGNAL_QUALITY_TIME_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_TIME_LOCKED - SIGNAL_QUALITY_FULLY_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_FULLY_LOCKED - OVERRANGE_ACCEL_X = _mscl.InertialTypes_OVERRANGE_ACCEL_X - OVERRANGE_ACCEL_Y = _mscl.InertialTypes_OVERRANGE_ACCEL_Y - OVERRANGE_ACCEL_Z = _mscl.InertialTypes_OVERRANGE_ACCEL_Z - OVERRANGE_GYRO_X = _mscl.InertialTypes_OVERRANGE_GYRO_X - OVERRANGE_GYRO_Y = _mscl.InertialTypes_OVERRANGE_GYRO_Y - OVERRANGE_GYRO_Z = _mscl.InertialTypes_OVERRANGE_GYRO_Z - OVERRANGE_MAG_X = _mscl.InertialTypes_OVERRANGE_MAG_X - OVERRANGE_MAG_Y = _mscl.InertialTypes_OVERRANGE_MAG_Y - OVERRANGE_MAG_Z = _mscl.InertialTypes_OVERRANGE_MAG_Z - OVERRANGE_PRESSURE = _mscl.InertialTypes_OVERRANGE_PRESSURE - UNKNOWN_SBAS_SYSTEM = _mscl.InertialTypes_UNKNOWN_SBAS_SYSTEM - WAAS = _mscl.InertialTypes_WAAS - EGNOS = _mscl.InertialTypes_EGNOS - MSAS = _mscl.InertialTypes_MSAS - GAGAN = _mscl.InertialTypes_GAGAN - SBAS_INFO_RANGE_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_RANGE_AVAILABLE - SBAS_INFO_CORRECTIONS_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_CORRECTIONS_AVAILABLE - SBAS_INFO_INTEGRITY_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_INTEGRITY_AVAILABLE - SBAS_INFO_TEST = _mscl.InertialTypes_SBAS_INFO_TEST - JAMMING_STATE_UNKNOWN = _mscl.InertialTypes_JAMMING_STATE_UNKNOWN - JAMMING_STATE_NONE = _mscl.InertialTypes_JAMMING_STATE_NONE - JAMMING_STATE_PARTIAL = _mscl.InertialTypes_JAMMING_STATE_PARTIAL - JAMMING_STATE_SIGNIFICANT = _mscl.InertialTypes_JAMMING_STATE_SIGNIFICANT - SPOOFING_STATE_UNKNOWN = _mscl.InertialTypes_SPOOFING_STATE_UNKNOWN - SPOOFING_STATE_NONE = _mscl.InertialTypes_SPOOFING_STATE_NONE - SPOOFING_STATE_PARTIAL = _mscl.InertialTypes_SPOOFING_STATE_PARTIAL - SPOOFING_STATE_SIGNIFICANT = _mscl.InertialTypes_SPOOFING_STATE_SIGNIFICANT - - def __init__(self): - _mscl.InertialTypes_swiginit(self, _mscl.new_InertialTypes()) - __swig_destroy__ = _mscl.delete_InertialTypes - -# Register InertialTypes in _mscl: -_mscl.InertialTypes_swigregister(InertialTypes) - -class NmeaMessageFormat(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_MESSAGES = _mscl.NmeaMessageFormat_MAX_MESSAGES - GGA = _mscl.NmeaMessageFormat_GGA - GLL = _mscl.NmeaMessageFormat_GLL - GSV = _mscl.NmeaMessageFormat_GSV - RMC = _mscl.NmeaMessageFormat_RMC - VTG = _mscl.NmeaMessageFormat_VTG - HDT = _mscl.NmeaMessageFormat_HDT - ZDA = _mscl.NmeaMessageFormat_ZDA - MSRA = _mscl.NmeaMessageFormat_MSRA - MSRR = _mscl.NmeaMessageFormat_MSRR - IGNORED = _mscl.NmeaMessageFormat_IGNORED - GNSS = _mscl.NmeaMessageFormat_GNSS - GPS = _mscl.NmeaMessageFormat_GPS - GALILEO = _mscl.NmeaMessageFormat_GALILEO - GLONASS = _mscl.NmeaMessageFormat_GLONASS - - def __init__(self): - _mscl.NmeaMessageFormat_swiginit(self, _mscl.new_NmeaMessageFormat()) - __swig_destroy__ = _mscl.delete_NmeaMessageFormat - - def sentenceType(self, *args): - return _mscl.NmeaMessageFormat_sentenceType(self, *args) - - def talkerId(self, *args): - return _mscl.NmeaMessageFormat_talkerId(self, *args) - - def sourceDataClass(self, *args): - return _mscl.NmeaMessageFormat_sourceDataClass(self, *args) - - def sampleRate(self, *args): - return _mscl.NmeaMessageFormat_sampleRate(self, *args) - - @staticmethod - def talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - - @staticmethod - def dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - - @staticmethod - def supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - - @staticmethod - def toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -# Register NmeaMessageFormat in _mscl: -_mscl.NmeaMessageFormat_swigregister(NmeaMessageFormat) -NmeaMessageFormat.MAX_FREQUENCY = _mscl.cvar.NmeaMessageFormat_MAX_FREQUENCY - -def NmeaMessageFormat_talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - -def NmeaMessageFormat_dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - -def NmeaMessageFormat_supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - -def NmeaMessageFormat_toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -class Matrix_3x3(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Matrix_3x3_swiginit(self, _mscl.new_Matrix_3x3(*args)) - __swig_destroy__ = _mscl.delete_Matrix_3x3 - - def set(self, row, col, value): - return _mscl.Matrix_3x3_set(self, row, col, value) - - def at(self, row, col): - return _mscl.Matrix_3x3_at(self, row, col) - - def __str__(self): - return _mscl.Matrix_3x3___str__(self) - - def asMipFieldValues(self): - return _mscl.Matrix_3x3_asMipFieldValues(self) - -# Register Matrix_3x3 in _mscl: -_mscl.Matrix_3x3_swigregister(Matrix_3x3) - -class TimeUpdate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, timeOfWeek, weekNumber, timeAccuracy=0): - _mscl.TimeUpdate_swiginit(self, _mscl.new_TimeUpdate(timeOfWeek, weekNumber, timeAccuracy)) - __swig_destroy__ = _mscl.delete_TimeUpdate - - def timeOfWeek(self): - return _mscl.TimeUpdate_timeOfWeek(self) - - def weekNumber(self): - return _mscl.TimeUpdate_weekNumber(self) - - def timeAccuracy(self): - return _mscl.TimeUpdate_timeAccuracy(self) - -# Register TimeUpdate in _mscl: -_mscl.TimeUpdate_swigregister(TimeUpdate) - -class ZUPTSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, enable, threshold): - _mscl.ZUPTSettingsData_swiginit(self, _mscl.new_ZUPTSettingsData(enable, threshold)) - enabled = property(_mscl.ZUPTSettingsData_enabled_get, _mscl.ZUPTSettingsData_enabled_set) - threshold = property(_mscl.ZUPTSettingsData_threshold_get, _mscl.ZUPTSettingsData_threshold_set) - __swig_destroy__ = _mscl.delete_ZUPTSettingsData - -# Register ZUPTSettingsData in _mscl: -_mscl.ZUPTSettingsData_swigregister(ZUPTSettingsData) - -class FixedReferencePositionData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.FixedReferencePositionData_swiginit(self, _mscl.new_FixedReferencePositionData(*args)) - enable = property(_mscl.FixedReferencePositionData_enable_get, _mscl.FixedReferencePositionData_enable_set) - referencePosition = property(_mscl.FixedReferencePositionData_referencePosition_get, _mscl.FixedReferencePositionData_referencePosition_set) - __swig_destroy__ = _mscl.delete_FixedReferencePositionData - -# Register FixedReferencePositionData in _mscl: -_mscl.FixedReferencePositionData_swigregister(FixedReferencePositionData) - -class SBASSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enableSBAS = property(_mscl.SBASSettingsData_enableSBAS_get, _mscl.SBASSettingsData_enableSBAS_set) - enableRanging = property(_mscl.SBASSettingsData_enableRanging_get, _mscl.SBASSettingsData_enableRanging_set) - enableCorrectionData = property(_mscl.SBASSettingsData_enableCorrectionData_get, _mscl.SBASSettingsData_enableCorrectionData_set) - applyIntegrityInfo = property(_mscl.SBASSettingsData_applyIntegrityInfo_get, _mscl.SBASSettingsData_applyIntegrityInfo_set) - satellitePRNs = property(_mscl.SBASSettingsData_satellitePRNs_get, _mscl.SBASSettingsData_satellitePRNs_set) - - def __init__(self): - _mscl.SBASSettingsData_swiginit(self, _mscl.new_SBASSettingsData()) - __swig_destroy__ = _mscl.delete_SBASSettingsData - -# Register SBASSettingsData in _mscl: -_mscl.SBASSettingsData_swigregister(SBASSettingsData) - -class Constellation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - constellationID = property(_mscl.Constellation_constellationID_get, _mscl.Constellation_constellationID_set) - enabled = property(_mscl.Constellation_enabled_get, _mscl.Constellation_enabled_set) - reservedChannelCount = property(_mscl.Constellation_reservedChannelCount_get, _mscl.Constellation_reservedChannelCount_set) - maxChannels = property(_mscl.Constellation_maxChannels_get, _mscl.Constellation_maxChannels_set) - enableL1SAIF = property(_mscl.Constellation_enableL1SAIF_get, _mscl.Constellation_enableL1SAIF_set) - - def __init__(self): - _mscl.Constellation_swiginit(self, _mscl.new_Constellation()) - __swig_destroy__ = _mscl.delete_Constellation - -# Register Constellation in _mscl: -_mscl.Constellation_swigregister(Constellation) - -class ConstellationSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - maxChannelsAvailable = property(_mscl.ConstellationSettingsData_maxChannelsAvailable_get, _mscl.ConstellationSettingsData_maxChannelsAvailable_set) - maxChannelsToUse = property(_mscl.ConstellationSettingsData_maxChannelsToUse_get, _mscl.ConstellationSettingsData_maxChannelsToUse_set) - constellations = property(_mscl.ConstellationSettingsData_constellations_get, _mscl.ConstellationSettingsData_constellations_set) - - def __init__(self): - _mscl.ConstellationSettingsData_swiginit(self, _mscl.new_ConstellationSettingsData()) - __swig_destroy__ = _mscl.delete_ConstellationSettingsData - -# Register ConstellationSettingsData in _mscl: -_mscl.ConstellationSettingsData_swigregister(ConstellationSettingsData) - -class LowPassFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SET_TO_HALF_REPORTING_RATE = _mscl.LowPassFilterData_SET_TO_HALF_REPORTING_RATE - USER_SPECIFIED_CUTOFF_FREQ = _mscl.LowPassFilterData_USER_SPECIFIED_CUTOFF_FREQ - - def __init__(self, *args): - _mscl.LowPassFilterData_swiginit(self, _mscl.new_LowPassFilterData(*args)) - dataDescriptor = property(_mscl.LowPassFilterData_dataDescriptor_get, _mscl.LowPassFilterData_dataDescriptor_set) - manualFilterBandwidthConfig = property(_mscl.LowPassFilterData_manualFilterBandwidthConfig_get, _mscl.LowPassFilterData_manualFilterBandwidthConfig_set) - applyLowPassFilter = property(_mscl.LowPassFilterData_applyLowPassFilter_get, _mscl.LowPassFilterData_applyLowPassFilter_set) - cutoffFrequency = property(_mscl.LowPassFilterData_cutoffFrequency_get, _mscl.LowPassFilterData_cutoffFrequency_set) - - @staticmethod - def getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - - @staticmethod - def getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - __swig_destroy__ = _mscl.delete_LowPassFilterData - -# Register LowPassFilterData in _mscl: -_mscl.LowPassFilterData_swigregister(LowPassFilterData) - -def LowPassFilterData_getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - -def LowPassFilterData_getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - -class ComplementaryFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ComplementaryFilterData_swiginit(self, _mscl.new_ComplementaryFilterData()) - upCompensationEnabled = property(_mscl.ComplementaryFilterData_upCompensationEnabled_get, _mscl.ComplementaryFilterData_upCompensationEnabled_set) - upCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_upCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_upCompensationTimeInSeconds_set) - northCompensationEnabled = property(_mscl.ComplementaryFilterData_northCompensationEnabled_get, _mscl.ComplementaryFilterData_northCompensationEnabled_set) - northCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_northCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_northCompensationTimeInSeconds_set) - __swig_destroy__ = _mscl.delete_ComplementaryFilterData - -# Register ComplementaryFilterData in _mscl: -_mscl.ComplementaryFilterData_swigregister(ComplementaryFilterData) - -class PpsPulseInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PpsPulseInfo_swiginit(self, _mscl.new_PpsPulseInfo()) - count = property(_mscl.PpsPulseInfo_count_get, _mscl.PpsPulseInfo_count_set) - lastTimeinMS = property(_mscl.PpsPulseInfo_lastTimeinMS_get, _mscl.PpsPulseInfo_lastTimeinMS_set) - __swig_destroy__ = _mscl.delete_PpsPulseInfo - -# Register PpsPulseInfo in _mscl: -_mscl.PpsPulseInfo_swigregister(PpsPulseInfo) - -class StreamInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.StreamInfo_swiginit(self, _mscl.new_StreamInfo()) - enabled = property(_mscl.StreamInfo_enabled_get, _mscl.StreamInfo_enabled_set) - outgoingPacketsDropped = property(_mscl.StreamInfo_outgoingPacketsDropped_get, _mscl.StreamInfo_outgoingPacketsDropped_set) - __swig_destroy__ = _mscl.delete_StreamInfo - -# Register StreamInfo in _mscl: -_mscl.StreamInfo_swigregister(StreamInfo) - -class DeviceMessageInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.DeviceMessageInfo_swiginit(self, _mscl.new_DeviceMessageInfo()) - messageParsingErrors = property(_mscl.DeviceMessageInfo_messageParsingErrors_get, _mscl.DeviceMessageInfo_messageParsingErrors_set) - messagesRead = property(_mscl.DeviceMessageInfo_messagesRead_get, _mscl.DeviceMessageInfo_messagesRead_set) - lastMessageReadinMS = property(_mscl.DeviceMessageInfo_lastMessageReadinMS_get, _mscl.DeviceMessageInfo_lastMessageReadinMS_set) - __swig_destroy__ = _mscl.delete_DeviceMessageInfo - -# Register DeviceMessageInfo in _mscl: -_mscl.DeviceMessageInfo_swigregister(DeviceMessageInfo) - -class PortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PortInfo_swiginit(self, _mscl.new_PortInfo()) - bytesWritten = property(_mscl.PortInfo_bytesWritten_get, _mscl.PortInfo_bytesWritten_set) - bytesRead = property(_mscl.PortInfo_bytesRead_get, _mscl.PortInfo_bytesRead_set) - overrunsOnWrite = property(_mscl.PortInfo_overrunsOnWrite_get, _mscl.PortInfo_overrunsOnWrite_set) - overrunsOnRead = property(_mscl.PortInfo_overrunsOnRead_get, _mscl.PortInfo_overrunsOnRead_set) - __swig_destroy__ = _mscl.delete_PortInfo - -# Register PortInfo in _mscl: -_mscl.PortInfo_swigregister(PortInfo) - -class TemperatureInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.TemperatureInfo_swiginit(self, _mscl.new_TemperatureInfo()) - onBoardTemp = property(_mscl.TemperatureInfo_onBoardTemp_get, _mscl.TemperatureInfo_onBoardTemp_set) - lastReadInMS = property(_mscl.TemperatureInfo_lastReadInMS_get, _mscl.TemperatureInfo_lastReadInMS_set) - error = property(_mscl.TemperatureInfo_error_get, _mscl.TemperatureInfo_error_set) - __swig_destroy__ = _mscl.delete_TemperatureInfo - -# Register TemperatureInfo in _mscl: -_mscl.TemperatureInfo_swigregister(TemperatureInfo) - -ModelNumber = _mscl.ModelNumber -StatusStructure_Value = _mscl.StatusStructure_Value -SystemState_Value = _mscl.SystemState_Value -gnss1PpsPulseInfo_Count = _mscl.gnss1PpsPulseInfo_Count -gnss1PpsPulseInfo_LastTimeinMS = _mscl.gnss1PpsPulseInfo_LastTimeinMS -GnssPowerStateOn = _mscl.GnssPowerStateOn -ImuStreamInfo_Enabled = _mscl.ImuStreamInfo_Enabled -ImuStreamInfo_PacketsDropped = _mscl.ImuStreamInfo_PacketsDropped -GnssStreamInfo_Enabled = _mscl.GnssStreamInfo_Enabled -GnssStreamInfo_PacketsDropped = _mscl.GnssStreamInfo_PacketsDropped -EstimationFilterStreamInfo_Enabled = _mscl.EstimationFilterStreamInfo_Enabled -EstimationFilterStreamInfo_PacketsDropped = _mscl.EstimationFilterStreamInfo_PacketsDropped -ComPortInfo_BytesRead = _mscl.ComPortInfo_BytesRead -ComPortInfo_BytesWritten = _mscl.ComPortInfo_BytesWritten -ComPortInfo_OverrunsOnRead = _mscl.ComPortInfo_OverrunsOnRead -ComPortInfo_OverrunsOnWrite = _mscl.ComPortInfo_OverrunsOnWrite -ImuMessageInfo_LastMessageReadinMS = _mscl.ImuMessageInfo_LastMessageReadinMS -ImuMessageInfo_MessageParsingErrors = _mscl.ImuMessageInfo_MessageParsingErrors -ImuMessageInfo_MessagesRead = _mscl.ImuMessageInfo_MessagesRead -GnssMessageInfo_LastMessageReadinMS = _mscl.GnssMessageInfo_LastMessageReadinMS -GnssMessageInfo_MessageParsingErrors = _mscl.GnssMessageInfo_MessageParsingErrors -GnssMessageInfo_MessagesRead = _mscl.GnssMessageInfo_MessagesRead -TemperatureInfo_Error = _mscl.TemperatureInfo_Error -TemperatureInfo_LastReadInMS = _mscl.TemperatureInfo_LastReadInMS -TemperatureInfo_OnBoardTemp = _mscl.TemperatureInfo_OnBoardTemp -PowerState = _mscl.PowerState -GyroRange = _mscl.GyroRange -AccelRange = _mscl.AccelRange -HasMagnetometer = _mscl.HasMagnetometer -HasPressure = _mscl.HasPressure -class DeviceStatusData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_BASIC_STATUS_STRUCTURE - DIAGNOSTIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_DIAGNOSTIC_STATUS_STRUCTURE - SYSTEM_INITIALIZATION = _mscl.DeviceStatusData_SYSTEM_INITIALIZATION - SYSTEM_STARTUP = _mscl.DeviceStatusData_SYSTEM_STARTUP - SYSTEM_RUNNING = _mscl.DeviceStatusData_SYSTEM_RUNNING - - def __init__(self): - _mscl.DeviceStatusData_swiginit(self, _mscl.new_DeviceStatusData()) - modelNumber = property(_mscl.DeviceStatusData_modelNumber_get, _mscl.DeviceStatusData_modelNumber_set) - statusStructure = property(_mscl.DeviceStatusData_statusStructure_get, _mscl.DeviceStatusData_statusStructure_set) - systemTimerInMS = property(_mscl.DeviceStatusData_systemTimerInMS_get, _mscl.DeviceStatusData_systemTimerInMS_set) - - def systemState(self, *args): - return _mscl.DeviceStatusData_systemState(self, *args) - - def gnssPowerStateOn(self, *args): - return _mscl.DeviceStatusData_gnssPowerStateOn(self, *args) - - def gnss1PpsPulseInfo(self, *args): - return _mscl.DeviceStatusData_gnss1PpsPulseInfo(self, *args) - - def imuStreamInfo(self, *args): - return _mscl.DeviceStatusData_imuStreamInfo(self, *args) - - def gnssStreamInfo(self, *args): - return _mscl.DeviceStatusData_gnssStreamInfo(self, *args) - - def estimationFilterStreamInfo(self, *args): - return _mscl.DeviceStatusData_estimationFilterStreamInfo(self, *args) - - def imuMessageInfo(self, *args): - return _mscl.DeviceStatusData_imuMessageInfo(self, *args) - - def gnssMessageInfo(self, *args): - return _mscl.DeviceStatusData_gnssMessageInfo(self, *args) - - def comPortInfo(self, *args): - return _mscl.DeviceStatusData_comPortInfo(self, *args) - - def usbPortInfo(self, *args): - return _mscl.DeviceStatusData_usbPortInfo(self, *args) - - def hasMagnetometer(self, *args): - return _mscl.DeviceStatusData_hasMagnetometer(self, *args) - - def magnetometerInitializationFailed(self, *args): - return _mscl.DeviceStatusData_magnetometerInitializationFailed(self, *args) - - def hasPressure(self, *args): - return _mscl.DeviceStatusData_hasPressure(self, *args) - - def pressureInitializationFailed(self, *args): - return _mscl.DeviceStatusData_pressureInitializationFailed(self, *args) - - def gnssReceiverInitializationFailed(self, *args): - return _mscl.DeviceStatusData_gnssReceiverInitializationFailed(self, *args) - - def coldStartOnPowerOn(self, *args): - return _mscl.DeviceStatusData_coldStartOnPowerOn(self, *args) - - def temperatureInfo(self, *args): - return _mscl.DeviceStatusData_temperatureInfo(self, *args) - - def powerState(self, *args): - return _mscl.DeviceStatusData_powerState(self, *args) - - def gyroRange(self, *args): - return _mscl.DeviceStatusData_gyroRange(self, *args) - - def accelRange(self, *args): - return _mscl.DeviceStatusData_accelRange(self, *args) - - def asMap(self): - return _mscl.DeviceStatusData_asMap(self) - - def asValueMap(self): - return _mscl.DeviceStatusData_asValueMap(self) - __swig_destroy__ = _mscl.delete_DeviceStatusData - -# Register DeviceStatusData in _mscl: -_mscl.DeviceStatusData_swigregister(DeviceStatusData) - -class ExternalGNSSUpdateData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - gpsTimeOfWeek = property(_mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_get, _mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_set) - gpsWeekNumber = property(_mscl.ExternalGNSSUpdateData_gpsWeekNumber_get, _mscl.ExternalGNSSUpdateData_gpsWeekNumber_set) - lattitude = property(_mscl.ExternalGNSSUpdateData_lattitude_get, _mscl.ExternalGNSSUpdateData_lattitude_set) - longitude = property(_mscl.ExternalGNSSUpdateData_longitude_get, _mscl.ExternalGNSSUpdateData_longitude_set) - altitudeAboveWGS84Ellipsoid = property(_mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_get, _mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_set) - northVelocity = property(_mscl.ExternalGNSSUpdateData_northVelocity_get, _mscl.ExternalGNSSUpdateData_northVelocity_set) - eastVelocity = property(_mscl.ExternalGNSSUpdateData_eastVelocity_get, _mscl.ExternalGNSSUpdateData_eastVelocity_set) - downVelocity = property(_mscl.ExternalGNSSUpdateData_downVelocity_get, _mscl.ExternalGNSSUpdateData_downVelocity_set) - northPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_northPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_northPositionUncertainty_set) - eastPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_eastPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_eastPositionUncertainty_set) - downPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_downPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_downPositionUncertainty_set) - northVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_northVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_northVelocityUncertainty_set) - eastVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_set) - downVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_downVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_downVelocityUncertainty_set) - - def __init__(self): - _mscl.ExternalGNSSUpdateData_swiginit(self, _mscl.new_ExternalGNSSUpdateData()) - __swig_destroy__ = _mscl.delete_ExternalGNSSUpdateData - -# Register ExternalGNSSUpdateData in _mscl: -_mscl.ExternalGNSSUpdateData_swigregister(ExternalGNSSUpdateData) - -class HeadingUpdateOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsOptionId(self): - return _mscl.HeadingUpdateOptions_AsOptionId(self) - - def __init__(self, *args): - _mscl.HeadingUpdateOptions_swiginit(self, _mscl.new_HeadingUpdateOptions(*args)) - useInternalMagnetometer = property(_mscl.HeadingUpdateOptions_useInternalMagnetometer_get, _mscl.HeadingUpdateOptions_useInternalMagnetometer_set) - useInternalGNSSVelocityVector = property(_mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_get, _mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_set) - useExternalHeadingMessages = property(_mscl.HeadingUpdateOptions_useExternalHeadingMessages_get, _mscl.HeadingUpdateOptions_useExternalHeadingMessages_set) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptions - -# Register HeadingUpdateOptions in _mscl: -_mscl.HeadingUpdateOptions_swigregister(HeadingUpdateOptions) - -Automatic = _mscl.Automatic -UserSpecified_Heading = _mscl.UserSpecified_Heading -UserSpecified_Attitude = _mscl.UserSpecified_Attitude -UserSpecified_All = _mscl.UserSpecified_All -GNSS_DualAntenna = _mscl.GNSS_DualAntenna -GNSS_Kinematic = _mscl.GNSS_Kinematic -Magnetometer = _mscl.Magnetometer -External = _mscl.External -class HeadingAlignmentMethod(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.HeadingAlignmentMethod_swiginit(self, _mscl.new_HeadingAlignmentMethod(*args)) - value = property(_mscl.HeadingAlignmentMethod_value_get, _mscl.HeadingAlignmentMethod_value_set) - - def select(self, option): - return _mscl.HeadingAlignmentMethod_select(self, option) - - def deselect(self, option): - return _mscl.HeadingAlignmentMethod_deselect(self, option) - - def selected(self, option): - return _mscl.HeadingAlignmentMethod_selected(self, option) - __swig_destroy__ = _mscl.delete_HeadingAlignmentMethod - -# Register HeadingAlignmentMethod in _mscl: -_mscl.HeadingAlignmentMethod_swigregister(HeadingAlignmentMethod) - -class FilterInitializationValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FilterInitializationValues_swiginit(self, _mscl.new_FilterInitializationValues()) - autoInitialize = property(_mscl.FilterInitializationValues_autoInitialize_get, _mscl.FilterInitializationValues_autoInitialize_set) - initialValuesSource = property(_mscl.FilterInitializationValues_initialValuesSource_get, _mscl.FilterInitializationValues_initialValuesSource_set) - autoHeadingAlignmentMethod = property(_mscl.FilterInitializationValues_autoHeadingAlignmentMethod_get, _mscl.FilterInitializationValues_autoHeadingAlignmentMethod_set) - initialAttitude = property(_mscl.FilterInitializationValues_initialAttitude_get, _mscl.FilterInitializationValues_initialAttitude_set) - initialPosition = property(_mscl.FilterInitializationValues_initialPosition_get, _mscl.FilterInitializationValues_initialPosition_set) - initialVelocity = property(_mscl.FilterInitializationValues_initialVelocity_get, _mscl.FilterInitializationValues_initialVelocity_set) - referenceFrame = property(_mscl.FilterInitializationValues_referenceFrame_get, _mscl.FilterInitializationValues_referenceFrame_set) - - def manualHeading(self): - return _mscl.FilterInitializationValues_manualHeading(self) - - def manualAttitude(self): - return _mscl.FilterInitializationValues_manualAttitude(self) - - def manualPositionVelocity(self): - return _mscl.FilterInitializationValues_manualPositionVelocity(self) - __swig_destroy__ = _mscl.delete_FilterInitializationValues - -# Register FilterInitializationValues in _mscl: -_mscl.FilterInitializationValues_swigregister(FilterInitializationValues) - -class TareAxisValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def asUint8(self): - return _mscl.TareAxisValues_asUint8(self) - - def __init__(self, tareRollAxis, tarePitchAxis, tareYawAxis): - _mscl.TareAxisValues_swiginit(self, _mscl.new_TareAxisValues(tareRollAxis, tarePitchAxis, tareYawAxis)) - tareRollAxis = property(_mscl.TareAxisValues_tareRollAxis_get, _mscl.TareAxisValues_tareRollAxis_set) - tarePitchAxis = property(_mscl.TareAxisValues_tarePitchAxis_get, _mscl.TareAxisValues_tarePitchAxis_set) - tareYawAxis = property(_mscl.TareAxisValues_tareYawAxis_get, _mscl.TareAxisValues_tareYawAxis_set) - __swig_destroy__ = _mscl.delete_TareAxisValues - -# Register TareAxisValues in _mscl: -_mscl.TareAxisValues_swigregister(TareAxisValues) - -class GeographicSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeographicSourceOptions_swiginit(self, _mscl.new_GeographicSourceOptions(*args)) - source = property(_mscl.GeographicSourceOptions_source_get, _mscl.GeographicSourceOptions_source_set) - manual = property(_mscl.GeographicSourceOptions_manual_get, _mscl.GeographicSourceOptions_manual_set) - __swig_destroy__ = _mscl.delete_GeographicSourceOptions - -# Register GeographicSourceOptions in _mscl: -_mscl.GeographicSourceOptions_swigregister(GeographicSourceOptions) - -class EstimationControlOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsUint16(self): - return _mscl.EstimationControlOptions_AsUint16(self) - - def __init__(self, *args): - _mscl.EstimationControlOptions_swiginit(self, _mscl.new_EstimationControlOptions(*args)) - enableGyroBiasEstimation = property(_mscl.EstimationControlOptions_enableGyroBiasEstimation_get, _mscl.EstimationControlOptions_enableGyroBiasEstimation_set) - enableAccelBiasEstimation = property(_mscl.EstimationControlOptions_enableAccelBiasEstimation_get, _mscl.EstimationControlOptions_enableAccelBiasEstimation_set) - enableGyroScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_set) - enableAccelScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_set) - enableGNSSAntennaOffsetEstimation = property(_mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_get, _mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_set) - enableHardIronAutoCalibration = property(_mscl.EstimationControlOptions_enableHardIronAutoCalibration_get, _mscl.EstimationControlOptions_enableHardIronAutoCalibration_set) - enableSoftIronAutoCalibration = property(_mscl.EstimationControlOptions_enableSoftIronAutoCalibration_get, _mscl.EstimationControlOptions_enableSoftIronAutoCalibration_set) - __swig_destroy__ = _mscl.delete_EstimationControlOptions - -# Register EstimationControlOptions in _mscl: -_mscl.EstimationControlOptions_swigregister(EstimationControlOptions) - -class HeadingData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HeadingData_swiginit(self, _mscl.new_HeadingData()) - TRUE_HEADING = _mscl.HeadingData_TRUE_HEADING - MAGNETIC_HEADING = _mscl.HeadingData_MAGNETIC_HEADING - heading = property(_mscl.HeadingData_heading_get, _mscl.HeadingData_heading_set) - headingAngle = property(_mscl.HeadingData_headingAngle_get, _mscl.HeadingData_headingAngle_set) - headingAngleUncertainty = property(_mscl.HeadingData_headingAngleUncertainty_get, _mscl.HeadingData_headingAngleUncertainty_set) - __swig_destroy__ = _mscl.delete_HeadingData - -# Register HeadingData in _mscl: -_mscl.HeadingData_swigregister(HeadingData) - -class AdaptiveMeasurementData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AdaptiveMeasurementData_swiginit(self, _mscl.new_AdaptiveMeasurementData()) - mode = property(_mscl.AdaptiveMeasurementData_mode_get, _mscl.AdaptiveMeasurementData_mode_set) - lowPassFilterCutoff = property(_mscl.AdaptiveMeasurementData_lowPassFilterCutoff_get, _mscl.AdaptiveMeasurementData_lowPassFilterCutoff_set) - lowLimit = property(_mscl.AdaptiveMeasurementData_lowLimit_get, _mscl.AdaptiveMeasurementData_lowLimit_set) - highLimit = property(_mscl.AdaptiveMeasurementData_highLimit_get, _mscl.AdaptiveMeasurementData_highLimit_set) - lowLimitUncertainty = property(_mscl.AdaptiveMeasurementData_lowLimitUncertainty_get, _mscl.AdaptiveMeasurementData_lowLimitUncertainty_set) - highLimitUncertainty = property(_mscl.AdaptiveMeasurementData_highLimitUncertainty_get, _mscl.AdaptiveMeasurementData_highLimitUncertainty_set) - minUncertainty = property(_mscl.AdaptiveMeasurementData_minUncertainty_get, _mscl.AdaptiveMeasurementData_minUncertainty_set) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementData - -# Register AdaptiveMeasurementData in _mscl: -_mscl.AdaptiveMeasurementData_swigregister(AdaptiveMeasurementData) - -class AutoAdaptiveFilterOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AutoAdaptiveFilterOptions_swiginit(self, _mscl.new_AutoAdaptiveFilterOptions(*args)) - level = property(_mscl.AutoAdaptiveFilterOptions_level_get, _mscl.AutoAdaptiveFilterOptions_level_set) - timeLimit = property(_mscl.AutoAdaptiveFilterOptions_timeLimit_get, _mscl.AutoAdaptiveFilterOptions_timeLimit_set) - __swig_destroy__ = _mscl.delete_AutoAdaptiveFilterOptions - -# Register AutoAdaptiveFilterOptions in _mscl: -_mscl.AutoAdaptiveFilterOptions_swigregister(AutoAdaptiveFilterOptions) - -class SignalConditioningValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ENABLE_ORIENTATION_CALC = _mscl.SignalConditioningValues_ENABLE_ORIENTATION_CALC - ENABLE_CONING_SCULLING = _mscl.SignalConditioningValues_ENABLE_CONING_SCULLING - ENABLE_FINITE_SIZE_CORRECTION = _mscl.SignalConditioningValues_ENABLE_FINITE_SIZE_CORRECTION - DISABLE_MAGNETOMETER = _mscl.SignalConditioningValues_DISABLE_MAGNETOMETER - DISABLE_NORTH_COMP = _mscl.SignalConditioningValues_DISABLE_NORTH_COMP - DISABLE_UP_COMP = _mscl.SignalConditioningValues_DISABLE_UP_COMP - ENABLE_QUATERNION_CALC = _mscl.SignalConditioningValues_ENABLE_QUATERNION_CALC - HIGH = _mscl.SignalConditioningValues_HIGH - LOW = _mscl.SignalConditioningValues_LOW - dataConditioningFlags = property(_mscl.SignalConditioningValues_dataConditioningFlags_get, _mscl.SignalConditioningValues_dataConditioningFlags_set) - orientationCalcDecimation = property(_mscl.SignalConditioningValues_orientationCalcDecimation_get, _mscl.SignalConditioningValues_orientationCalcDecimation_set) - accelGyroFilterWidth = property(_mscl.SignalConditioningValues_accelGyroFilterWidth_get, _mscl.SignalConditioningValues_accelGyroFilterWidth_set) - magFilterWidth = property(_mscl.SignalConditioningValues_magFilterWidth_get, _mscl.SignalConditioningValues_magFilterWidth_set) - upCompensation = property(_mscl.SignalConditioningValues_upCompensation_get, _mscl.SignalConditioningValues_upCompensation_set) - northCompensation = property(_mscl.SignalConditioningValues_northCompensation_get, _mscl.SignalConditioningValues_northCompensation_set) - magBandwidthPower = property(_mscl.SignalConditioningValues_magBandwidthPower_get, _mscl.SignalConditioningValues_magBandwidthPower_set) - - def __init__(self): - _mscl.SignalConditioningValues_swiginit(self, _mscl.new_SignalConditioningValues()) - - def conditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_conditioningOptionOn(self, *args) - - def setConditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOn(self, *args) - - def setConditioningOptionOff(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOff(self, *args) - __swig_destroy__ = _mscl.delete_SignalConditioningValues - -# Register SignalConditioningValues in _mscl: -_mscl.SignalConditioningValues_swigregister(SignalConditioningValues) - -class EnableDisableMeasurements(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ACCELEROMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_ACCELEROMETER_MEASUREMENTS - MAGNETOMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_MAGNETOMETER_MEASUREMENTS - - def __init__(self, *args): - _mscl.EnableDisableMeasurements_swiginit(self, _mscl.new_EnableDisableMeasurements(*args)) - measurementOptions = property(_mscl.EnableDisableMeasurements_measurementOptions_get, _mscl.EnableDisableMeasurements_measurementOptions_set) - - def optionEnabled(self, *args): - return _mscl.EnableDisableMeasurements_optionEnabled(self, *args) - - def enableOption(self, *args): - return _mscl.EnableDisableMeasurements_enableOption(self, *args) - - def disableOption(self, *args): - return _mscl.EnableDisableMeasurements_disableOption(self, *args) - __swig_destroy__ = _mscl.delete_EnableDisableMeasurements - -# Register EnableDisableMeasurements in _mscl: -_mscl.EnableDisableMeasurements_swigregister(EnableDisableMeasurements) - -class RTKDeviceStatusFlags(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MODEM_STATE = _mscl.RTKDeviceStatusFlags_MODEM_STATE - CONNECTION_TYPE = _mscl.RTKDeviceStatusFlags_CONNECTION_TYPE - RSSI = _mscl.RTKDeviceStatusFlags_RSSI - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_SIGNAL_QUALITY - TOWER_CHANGE_INDICATOR = _mscl.RTKDeviceStatusFlags_TOWER_CHANGE_INDICATOR - NMEA_TIMEOUT = _mscl.RTKDeviceStatusFlags_NMEA_TIMEOUT - SERVER_TIMEOUT = _mscl.RTKDeviceStatusFlags_SERVER_TIMEOUT - RTCM_TIMEOUT = _mscl.RTKDeviceStatusFlags_RTCM_TIMEOUT - DEVICE_OUT_OF_RANGE = _mscl.RTKDeviceStatusFlags_DEVICE_OUT_OF_RANGE - CORRECTIONS_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_CORRECTIONS_UNAVAILABLE - VERSION = _mscl.RTKDeviceStatusFlags_VERSION - OFF = _mscl.RTKDeviceStatusFlags_OFF - NO_NETWORK = _mscl.RTKDeviceStatusFlags_NO_NETWORK - NETWORK_CONNECTED = _mscl.RTKDeviceStatusFlags_NETWORK_CONNECTED - CONFIGURING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_CONFIGURING_DATA_CONTEXT - ACTIVATING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_ACTIVATING_DATA_CONTEXT - CONFIGURING_SOCKET = _mscl.RTKDeviceStatusFlags_CONFIGURING_SOCKET - WAITING_ON_SERVER_HANDSHAKE = _mscl.RTKDeviceStatusFlags_WAITING_ON_SERVER_HANDSHAKE - CONNECTED_AND_IDLE = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_IDLE - CONNECTED_AND_STREAMING = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_STREAMING - NO_CONNECTION = _mscl.RTKDeviceStatusFlags_NO_CONNECTION - CONNECTION_2G = _mscl.RTKDeviceStatusFlags_CONNECTION_2G - CONNECTION_3G = _mscl.RTKDeviceStatusFlags_CONNECTION_3G - CONNECTION_4G = _mscl.RTKDeviceStatusFlags_CONNECTION_4G - CONNECTION_5G = _mscl.RTKDeviceStatusFlags_CONNECTION_5G - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_swiginit(self, _mscl.new_RTKDeviceStatusFlags(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_version(self) - - def modemState(self, *args): - return _mscl.RTKDeviceStatusFlags_modemState(self, *args) - - def connectionType(self, *args): - return _mscl.RTKDeviceStatusFlags_connectionType(self, *args) - - def rssi(self, *args): - return _mscl.RTKDeviceStatusFlags_rssi(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_signalQuality(self, *args) - - def towerChangeIndicator(self, *args): - return _mscl.RTKDeviceStatusFlags_towerChangeIndicator(self, *args) - - def nmeaTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_nmeaTimeout(self, *args) - - def serverTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_serverTimeout(self, *args) - - def rtcmTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_rtcmTimeout(self, *args) - - def deviceOutOfRange(self, *args): - return _mscl.RTKDeviceStatusFlags_deviceOutOfRange(self, *args) - - def correctionsUnavailable(self, *args): - return _mscl.RTKDeviceStatusFlags_correctionsUnavailable(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags - -# Register RTKDeviceStatusFlags in _mscl: -_mscl.RTKDeviceStatusFlags_swigregister(RTKDeviceStatusFlags) - -class RTKDeviceStatusFlags_v1(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONTROLLER_STATE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATE - PLATFORM_STATE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATE - CONTROLLER_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATUS_CODE - PLATFORM_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATUS_CODE - RESET_REASON = _mscl.RTKDeviceStatusFlags_v1_RESET_REASON - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_v1_SIGNAL_QUALITY - VERSION = _mscl.RTKDeviceStatusFlags_v1_VERSION - IDLE = _mscl.RTKDeviceStatusFlags_v1_IDLE - ACTIVE = _mscl.RTKDeviceStatusFlags_v1_ACTIVE - MODEM_OFF = _mscl.RTKDeviceStatusFlags_v1_MODEM_OFF - MODEM_POWERING_ON = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_ON - MODEM_CONFIGURE = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONFIGURE - MODEM_POWERING_DOWN = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_DOWN - MODEM_READY = _mscl.RTKDeviceStatusFlags_v1_MODEM_READY - MODEM_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTING - MODEM_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_DISCONNECTING - MODEM_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTED - SERVICE_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTING - SERVICE_CONNECTION_FAILED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_FAILED - SERVICE_CONNECTION_CANCELED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_CANCELED - SERVICE_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_DISCONNECTING - SERVICE_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTED - PLATFORM_ERROR = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_ERROR - RESET_MODEM = _mscl.RTKDeviceStatusFlags_v1_RESET_MODEM - CONTROLLER_OK = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_OK - WAITING_NMEA = _mscl.RTKDeviceStatusFlags_v1_WAITING_NMEA - RTK_TIMEOUT = _mscl.RTKDeviceStatusFlags_v1_RTK_TIMEOUT - RTK_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_v1_RTK_UNAVAILABLE - CONFIG_INVALID = _mscl.RTKDeviceStatusFlags_v1_CONFIG_INVALID - PLATFORM_OK = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_OK - RTK_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_RTK_CONNECTION_DROPPED - CELL_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_CELL_CONNECTION_DROPPED - MODEM_ERROR = _mscl.RTKDeviceStatusFlags_v1_MODEM_ERROR - POWER_ON = _mscl.RTKDeviceStatusFlags_v1_POWER_ON - UNKNOWN = _mscl.RTKDeviceStatusFlags_v1_UNKNOWN - SOFT_RESET = _mscl.RTKDeviceStatusFlags_v1_SOFT_RESET - HARDWARE_ERROR_RESET = _mscl.RTKDeviceStatusFlags_v1_HARDWARE_ERROR_RESET - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_v1_swiginit(self, _mscl.new_RTKDeviceStatusFlags_v1(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_v1_version(self) - - def controllerState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerState(self, *args) - - def platformState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformState(self, *args) - - def controllerStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerStatusCode(self, *args) - - def platformStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformStatusCode(self, *args) - - def resetReason(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_resetReason(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_signalQuality(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags_v1 - -# Register RTKDeviceStatusFlags_v1 in _mscl: -_mscl.RTKDeviceStatusFlags_v1_swigregister(RTKDeviceStatusFlags_v1) - -class GnssSignalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - L1CA = _mscl.GnssSignalConfiguration_L1CA - L2C = _mscl.GnssSignalConfiguration_L2C - L1OF = _mscl.GnssSignalConfiguration_L1OF - L2OF = _mscl.GnssSignalConfiguration_L2OF - E1 = _mscl.GnssSignalConfiguration_E1 - E5B = _mscl.GnssSignalConfiguration_E5B - B1 = _mscl.GnssSignalConfiguration_B1 - B2 = _mscl.GnssSignalConfiguration_B2 - - def __init__(self): - _mscl.GnssSignalConfiguration_swiginit(self, _mscl.new_GnssSignalConfiguration()) - - def enableGpsSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGpsSignal(self, signal, enable) - - def gpsSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_gpsSignalEnabled(self, signal) - - def gpsSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_gpsSignalValue(self, *args) - - def enableGlonassSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGlonassSignal(self, signal, enable) - - def glonassSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_glonassSignalEnabled(self, signal) - - def glonassSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_glonassSignalValue(self, *args) - - def enableGalileoSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGalileoSignal(self, signal, enable) - - def galileoSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_galileoSignalEnabled(self, signal) - - def galileoSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_galileoSignalValue(self, *args) - - def enableBeiDouSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableBeiDouSignal(self, signal, enable) - - def beidouSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_beidouSignalEnabled(self, signal) - - def beidouSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_beidouSignalValue(self, *args) - __swig_destroy__ = _mscl.delete_GnssSignalConfiguration - -# Register GnssSignalConfiguration in _mscl: -_mscl.GnssSignalConfiguration_swigregister(GnssSignalConfiguration) - -class GnssSpartnConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - KEY_SIZE = _mscl.GnssSpartnConfiguration_KEY_SIZE - NONE = _mscl.GnssSpartnConfiguration_NONE - NETWORK = _mscl.GnssSpartnConfiguration_NETWORK - LBAND = _mscl.GnssSpartnConfiguration_LBAND - - def __init__(self): - _mscl.GnssSpartnConfiguration_swiginit(self, _mscl.new_GnssSpartnConfiguration()) - - def enable(self, enable): - return _mscl.GnssSpartnConfiguration_enable(self, enable) - - def enabled(self): - return _mscl.GnssSpartnConfiguration_enabled(self) - - def type(self, *args): - return _mscl.GnssSpartnConfiguration_type(self, *args) - - def currentKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyTow(self, *args) - - def currentKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyWeek(self, *args) - - def currentKey(self, *args): - return _mscl.GnssSpartnConfiguration_currentKey(self, *args) - - def nextKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyTow(self, *args) - - def nextKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyWeek(self, *args) - - def nextKey(self, *args): - return _mscl.GnssSpartnConfiguration_nextKey(self, *args) - __swig_destroy__ = _mscl.delete_GnssSpartnConfiguration - -# Register GnssSpartnConfiguration in _mscl: -_mscl.GnssSpartnConfiguration_swigregister(GnssSpartnConfiguration) - -class PositionReferenceConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - autoConfig = property(_mscl.PositionReferenceConfiguration_autoConfig_get, _mscl.PositionReferenceConfiguration_autoConfig_set) - position = property(_mscl.PositionReferenceConfiguration_position_get, _mscl.PositionReferenceConfiguration_position_set) - - def __init__(self): - _mscl.PositionReferenceConfiguration_swiginit(self, _mscl.new_PositionReferenceConfiguration()) - __swig_destroy__ = _mscl.delete_PositionReferenceConfiguration - -# Register PositionReferenceConfiguration in _mscl: -_mscl.PositionReferenceConfiguration_swigregister(PositionReferenceConfiguration) - -class AntennaLeverArmCalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enabled = property(_mscl.AntennaLeverArmCalConfiguration_enabled_get, _mscl.AntennaLeverArmCalConfiguration_enabled_set) - maxOffsetError = property(_mscl.AntennaLeverArmCalConfiguration_maxOffsetError_get, _mscl.AntennaLeverArmCalConfiguration_maxOffsetError_set) - - def __init__(self): - _mscl.AntennaLeverArmCalConfiguration_swiginit(self, _mscl.new_AntennaLeverArmCalConfiguration()) - __swig_destroy__ = _mscl.delete_AntennaLeverArmCalConfiguration - -# Register AntennaLeverArmCalConfiguration in _mscl: -_mscl.AntennaLeverArmCalConfiguration_swigregister(AntennaLeverArmCalConfiguration) - -class OdometerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.OdometerConfiguration_DISABLED - SINGLE = _mscl.OdometerConfiguration_SINGLE - QUADRATURE = _mscl.OdometerConfiguration_QUADRATURE - - def __init__(self): - _mscl.OdometerConfiguration_swiginit(self, _mscl.new_OdometerConfiguration()) - - def mode(self, *args): - return _mscl.OdometerConfiguration_mode(self, *args) - - def uncertainty(self, *args): - return _mscl.OdometerConfiguration_uncertainty(self, *args) - - def scaling(self, *args): - return _mscl.OdometerConfiguration_scaling(self, *args) - __swig_destroy__ = _mscl.delete_OdometerConfiguration - -# Register OdometerConfiguration in _mscl: -_mscl.OdometerConfiguration_swigregister(OdometerConfiguration) - -class GpioConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - UNUSED_FEATURE = _mscl.GpioConfiguration_UNUSED_FEATURE - GPIO_FEATURE = _mscl.GpioConfiguration_GPIO_FEATURE - PPS_FEATURE = _mscl.GpioConfiguration_PPS_FEATURE - ENCODER_FEATURE = _mscl.GpioConfiguration_ENCODER_FEATURE - EVENT_TIMESTAMP_FEATURE = _mscl.GpioConfiguration_EVENT_TIMESTAMP_FEATURE - UART_FEATURE = _mscl.GpioConfiguration_UART_FEATURE - GPIO_UNUSED = _mscl.GpioConfiguration_GPIO_UNUSED - GPIO_INPUT = _mscl.GpioConfiguration_GPIO_INPUT - GPIO_OUTPUT_LOW = _mscl.GpioConfiguration_GPIO_OUTPUT_LOW - GPIO_OUTPUT_HIGH = _mscl.GpioConfiguration_GPIO_OUTPUT_HIGH - PPS_UNUSED = _mscl.GpioConfiguration_PPS_UNUSED - PPS_INPUT = _mscl.GpioConfiguration_PPS_INPUT - PPS_OUTPUT = _mscl.GpioConfiguration_PPS_OUTPUT - ENCODER_UNUSED = _mscl.GpioConfiguration_ENCODER_UNUSED - ENCODER_A = _mscl.GpioConfiguration_ENCODER_A - ENCODER_B = _mscl.GpioConfiguration_ENCODER_B - TIMESTAMP_UNUSED = _mscl.GpioConfiguration_TIMESTAMP_UNUSED - TIMESTAMP_RISING = _mscl.GpioConfiguration_TIMESTAMP_RISING - TIMESTAMP_FALLING = _mscl.GpioConfiguration_TIMESTAMP_FALLING - TIMESTAMP_EITHER = _mscl.GpioConfiguration_TIMESTAMP_EITHER - UART_UNUSED = _mscl.GpioConfiguration_UART_UNUSED - UART_PORT2_TX = _mscl.GpioConfiguration_UART_PORT2_TX - UART_PORT2_RX = _mscl.GpioConfiguration_UART_PORT2_RX - UART_PORT3_TX = _mscl.GpioConfiguration_UART_PORT3_TX - UART_PORT3_RX = _mscl.GpioConfiguration_UART_PORT3_RX - NONE = _mscl.GpioConfiguration_NONE - OPEN_DRAIN = _mscl.GpioConfiguration_OPEN_DRAIN - PULLDOWN = _mscl.GpioConfiguration_PULLDOWN - PULLUP = _mscl.GpioConfiguration_PULLUP - pinMode = property(_mscl.GpioConfiguration_pinMode_get, _mscl.GpioConfiguration_pinMode_set) - pin = property(_mscl.GpioConfiguration_pin_get, _mscl.GpioConfiguration_pin_set) - feature = property(_mscl.GpioConfiguration_feature_get, _mscl.GpioConfiguration_feature_set) - behavior = property(_mscl.GpioConfiguration_behavior_get, _mscl.GpioConfiguration_behavior_set) - - def pinModeValue(self, *args): - return _mscl.GpioConfiguration_pinModeValue(self, *args) - - def __init__(self): - _mscl.GpioConfiguration_swiginit(self, _mscl.new_GpioConfiguration()) - __swig_destroy__ = _mscl.delete_GpioConfiguration - -# Register GpioConfiguration in _mscl: -_mscl.GpioConfiguration_swigregister(GpioConfiguration) - -DISABLED = _mscl.DISABLED -ENABLED = _mscl.ENABLED -TEST = _mscl.TEST -TEST_PULSE = _mscl.TEST_PULSE -class EventTriggerGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventTriggerGpioParameter_DISABLED - WHILE_HIGH = _mscl.EventTriggerGpioParameter_WHILE_HIGH - WHILE_LOW = _mscl.EventTriggerGpioParameter_WHILE_LOW - EDGE = _mscl.EventTriggerGpioParameter_EDGE - pin = property(_mscl.EventTriggerGpioParameter_pin_get, _mscl.EventTriggerGpioParameter_pin_set) - mode = property(_mscl.EventTriggerGpioParameter_mode_get, _mscl.EventTriggerGpioParameter_mode_set) - - def __init__(self): - _mscl.EventTriggerGpioParameter_swiginit(self, _mscl.new_EventTriggerGpioParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerGpioParameter - -# Register EventTriggerGpioParameter in _mscl: -_mscl.EventTriggerGpioParameter_swigregister(EventTriggerGpioParameter) - -class EventTriggerThresholdParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - WINDOW_TYPE = _mscl.EventTriggerThresholdParameter_WINDOW_TYPE - INTERVAL_TYPE = _mscl.EventTriggerThresholdParameter_INTERVAL_TYPE - type = property(_mscl.EventTriggerThresholdParameter_type_get, _mscl.EventTriggerThresholdParameter_type_set) - lowThreshold = property(_mscl.EventTriggerThresholdParameter_lowThreshold_get, _mscl.EventTriggerThresholdParameter_lowThreshold_set) - highThreshold = property(_mscl.EventTriggerThresholdParameter_highThreshold_get, _mscl.EventTriggerThresholdParameter_highThreshold_set) - - def channel(self, *args): - return _mscl.EventTriggerThresholdParameter_channel(self, *args) - - def channelField(self): - return _mscl.EventTriggerThresholdParameter_channelField(self) - - def channelQualifier(self): - return _mscl.EventTriggerThresholdParameter_channelQualifier(self) - - def channelIndex(self): - return _mscl.EventTriggerThresholdParameter_channelIndex(self) - - def __init__(self): - _mscl.EventTriggerThresholdParameter_swiginit(self, _mscl.new_EventTriggerThresholdParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerThresholdParameter - -# Register EventTriggerThresholdParameter in _mscl: -_mscl.EventTriggerThresholdParameter_swigregister(EventTriggerThresholdParameter) - -class EventTriggerCombinationParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_INPUT_TRIGGERS = _mscl.EventTriggerCombinationParameter_MAX_INPUT_TRIGGERS - LOGIC_NEVER = _mscl.EventTriggerCombinationParameter_LOGIC_NEVER - LOGIC_ALWAYS = _mscl.EventTriggerCombinationParameter_LOGIC_ALWAYS - LOGIC_NONE = _mscl.EventTriggerCombinationParameter_LOGIC_NONE - LOGIC_OR = _mscl.EventTriggerCombinationParameter_LOGIC_OR - LOGIC_NAND = _mscl.EventTriggerCombinationParameter_LOGIC_NAND - LOGIC_XOR_ONE = _mscl.EventTriggerCombinationParameter_LOGIC_XOR_ONE - LOGIC_ONLY_A = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_A - LOGIC_ONLY_B = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_B - LOGIC_ONLY_C = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_C - LOGIC_ONLY_D = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_D - LOGIC_AND_AB = _mscl.EventTriggerCombinationParameter_LOGIC_AND_AB - LOGIC_AB_OR_C = _mscl.EventTriggerCombinationParameter_LOGIC_AB_OR_C - LOGIC_AND = _mscl.EventTriggerCombinationParameter_LOGIC_AND - logicTable = property(_mscl.EventTriggerCombinationParameter_logicTable_get, _mscl.EventTriggerCombinationParameter_logicTable_set) - inputTriggers = property(_mscl.EventTriggerCombinationParameter_inputTriggers_get, _mscl.EventTriggerCombinationParameter_inputTriggers_set) - - def __init__(self): - _mscl.EventTriggerCombinationParameter_swiginit(self, _mscl.new_EventTriggerCombinationParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerCombinationParameter - -# Register EventTriggerCombinationParameter in _mscl: -_mscl.EventTriggerCombinationParameter_swigregister(EventTriggerCombinationParameter) - -class EventTriggerParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerParameters_swiginit(self, _mscl.new_EventTriggerParameters()) - gpio = property(_mscl.EventTriggerParameters_gpio_get, _mscl.EventTriggerParameters_gpio_set) - threshold = property(_mscl.EventTriggerParameters_threshold_get, _mscl.EventTriggerParameters_threshold_set) - combination = property(_mscl.EventTriggerParameters_combination_get, _mscl.EventTriggerParameters_combination_set) - __swig_destroy__ = _mscl.delete_EventTriggerParameters - -# Register EventTriggerParameters in _mscl: -_mscl.EventTriggerParameters_swigregister(EventTriggerParameters) - -class EventTriggerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventTriggerConfiguration_NONE - GPIO_TRIGGER = _mscl.EventTriggerConfiguration_GPIO_TRIGGER - THRESHOLD_TRIGGER = _mscl.EventTriggerConfiguration_THRESHOLD_TRIGGER - COMBINATION_TRIGGER = _mscl.EventTriggerConfiguration_COMBINATION_TRIGGER - instance = property(_mscl.EventTriggerConfiguration_instance_get, _mscl.EventTriggerConfiguration_instance_set) - trigger = property(_mscl.EventTriggerConfiguration_trigger_get, _mscl.EventTriggerConfiguration_trigger_set) - parameters = property(_mscl.EventTriggerConfiguration_parameters_get, _mscl.EventTriggerConfiguration_parameters_set) - - def __init__(self): - _mscl.EventTriggerConfiguration_swiginit(self, _mscl.new_EventTriggerConfiguration()) - __swig_destroy__ = _mscl.delete_EventTriggerConfiguration - -# Register EventTriggerConfiguration in _mscl: -_mscl.EventTriggerConfiguration_swigregister(EventTriggerConfiguration) - -class EventActionGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventActionGpioParameter_DISABLED - ACTIVE_HIGH = _mscl.EventActionGpioParameter_ACTIVE_HIGH - ACTIVE_LOW = _mscl.EventActionGpioParameter_ACTIVE_LOW - ONESHOT_HIGH = _mscl.EventActionGpioParameter_ONESHOT_HIGH - ONESHOT_LOW = _mscl.EventActionGpioParameter_ONESHOT_LOW - TOGGLE = _mscl.EventActionGpioParameter_TOGGLE - pin = property(_mscl.EventActionGpioParameter_pin_get, _mscl.EventActionGpioParameter_pin_set) - mode = property(_mscl.EventActionGpioParameter_mode_get, _mscl.EventActionGpioParameter_mode_set) - - def __init__(self): - _mscl.EventActionGpioParameter_swiginit(self, _mscl.new_EventActionGpioParameter()) - __swig_destroy__ = _mscl.delete_EventActionGpioParameter - -# Register EventActionGpioParameter in _mscl: -_mscl.EventActionGpioParameter_swigregister(EventActionGpioParameter) - -class EventActionMessageParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_DESCRIPTORS = _mscl.EventActionMessageParameter_MAX_DESCRIPTORS - sampleRate = property(_mscl.EventActionMessageParameter_sampleRate_get, _mscl.EventActionMessageParameter_sampleRate_set) - - def dataClass(self): - return _mscl.EventActionMessageParameter_dataClass(self) - - def setChannelFields(self, dataClass, fields): - return _mscl.EventActionMessageParameter_setChannelFields(self, dataClass, fields) - - def getChannelFields(self): - return _mscl.EventActionMessageParameter_getChannelFields(self) - - def __init__(self): - _mscl.EventActionMessageParameter_swiginit(self, _mscl.new_EventActionMessageParameter()) - __swig_destroy__ = _mscl.delete_EventActionMessageParameter - -# Register EventActionMessageParameter in _mscl: -_mscl.EventActionMessageParameter_swigregister(EventActionMessageParameter) - -class EventActionParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventActionParameters_swiginit(self, _mscl.new_EventActionParameters()) - gpio = property(_mscl.EventActionParameters_gpio_get, _mscl.EventActionParameters_gpio_set) - message = property(_mscl.EventActionParameters_message_get, _mscl.EventActionParameters_message_set) - __swig_destroy__ = _mscl.delete_EventActionParameters - -# Register EventActionParameters in _mscl: -_mscl.EventActionParameters_swigregister(EventActionParameters) - -class EventActionConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventActionConfiguration_NONE - GPIO = _mscl.EventActionConfiguration_GPIO - MESSAGE = _mscl.EventActionConfiguration_MESSAGE - instance = property(_mscl.EventActionConfiguration_instance_get, _mscl.EventActionConfiguration_instance_set) - trigger = property(_mscl.EventActionConfiguration_trigger_get, _mscl.EventActionConfiguration_trigger_set) - type = property(_mscl.EventActionConfiguration_type_get, _mscl.EventActionConfiguration_type_set) - parameters = property(_mscl.EventActionConfiguration_parameters_get, _mscl.EventActionConfiguration_parameters_set) - - def __init__(self): - _mscl.EventActionConfiguration_swiginit(self, _mscl.new_EventActionConfiguration()) - __swig_destroy__ = _mscl.delete_EventActionConfiguration - -# Register EventActionConfiguration in _mscl: -_mscl.EventActionConfiguration_swigregister(EventActionConfiguration) - -class EventTriggerInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTriggerInfo_swiginit(self, _mscl.new_EventTriggerInfo(*args)) - ACTIVE = _mscl.EventTriggerInfo_ACTIVE - ENABLED = _mscl.EventTriggerInfo_ENABLED - TEST = _mscl.EventTriggerInfo_TEST - type = property(_mscl.EventTriggerInfo_type_get, _mscl.EventTriggerInfo_type_set) - instanceId = property(_mscl.EventTriggerInfo_instanceId_get, _mscl.EventTriggerInfo_instanceId_set) - - def isActive(self): - return _mscl.EventTriggerInfo_isActive(self) - - def isEnabled(self): - return _mscl.EventTriggerInfo_isEnabled(self) - - def isTestMode(self): - return _mscl.EventTriggerInfo_isTestMode(self) - - def setStatus(self, value): - return _mscl.EventTriggerInfo_setStatus(self, value) - __swig_destroy__ = _mscl.delete_EventTriggerInfo - -# Register EventTriggerInfo in _mscl: -_mscl.EventTriggerInfo_swigregister(EventTriggerInfo) - -class EventActionInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventActionInfo_swiginit(self, _mscl.new_EventActionInfo(*args)) - type = property(_mscl.EventActionInfo_type_get, _mscl.EventActionInfo_type_set) - triggerId = property(_mscl.EventActionInfo_triggerId_get, _mscl.EventActionInfo_triggerId_set) - instanceId = property(_mscl.EventActionInfo_instanceId_get, _mscl.EventActionInfo_instanceId_set) - __swig_destroy__ = _mscl.delete_EventActionInfo - -# Register EventActionInfo in _mscl: -_mscl.EventActionInfo_swigregister(EventActionInfo) - -class MeasurementReferenceFrame(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MeasurementReferenceFrame_swiginit(self, _mscl.new_MeasurementReferenceFrame(*args)) - - def asMipFieldValues(self): - return _mscl.MeasurementReferenceFrame_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.MeasurementReferenceFrame_appendMipFieldValues(self, appendTo) - - def translation(self, *args): - return _mscl.MeasurementReferenceFrame_translation(self, *args) - - def rotation(self, *args): - return _mscl.MeasurementReferenceFrame_rotation(self, *args) - - def errorTrackingEnabled(self): - return _mscl.MeasurementReferenceFrame_errorTrackingEnabled(self) - - def enableErrorTracking(self, enable=True): - return _mscl.MeasurementReferenceFrame_enableErrorTracking(self, enable) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrame - -# Register MeasurementReferenceFrame in _mscl: -_mscl.MeasurementReferenceFrame_swigregister(MeasurementReferenceFrame) - -class MipChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipChannel_swiginit(self, _mscl.new_MipChannel(*args)) - - def channelField(self): - return _mscl.MipChannel_channelField(self) - - def sampleRate(self): - return _mscl.MipChannel_sampleRate(self) - - def rateDecimation(self, sampleRateBase): - return _mscl.MipChannel_rateDecimation(self, sampleRateBase) - __swig_destroy__ = _mscl.delete_MipChannel - -# Register MipChannel in _mscl: -_mscl.MipChannel_swigregister(MipChannel) - -class MipPacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MIP_ACK_NACK_ERROR_NONE = _mscl.MipPacket_MIP_ACK_NACK_ERROR_NONE - MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND - MIP_ACK_NACK_ERROR_CHECKSUM_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_CHECKSUM_INVALID - MIP_ACK_NACK_ERROR_PARAMETER_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_PARAMETER_INVALID - MIP_ACK_NACK_ERROR_COMMAND_FAILED = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_FAILED - MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT - MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET - - def __init__(self): - _mscl.MipPacket_swiginit(self, _mscl.new_MipPacket()) - - @staticmethod - def isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - - def descriptorSet(self): - return _mscl.MipPacket_descriptorSet(self) - - def payload(self): - return _mscl.MipPacket_payload(self) - __swig_destroy__ = _mscl.delete_MipPacket - -# Register MipPacket in _mscl: -_mscl.MipPacket_swigregister(MipPacket) - -def MipPacket_isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - -class MipDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def field(self): - return _mscl.MipDataPoint_field(self) - - def qualifier(self): - return _mscl.MipDataPoint_qualifier(self) - - def hasAddlIdentifiers(self): - return _mscl.MipDataPoint_hasAddlIdentifiers(self) - - def addlIdentifiers(self): - return _mscl.MipDataPoint_addlIdentifiers(self) - - def hasValidFlag(self): - return _mscl.MipDataPoint_hasValidFlag(self) - - def valid(self): - return _mscl.MipDataPoint_valid(self) - - def channelName(self, includeAddlIds=True, consolidatedFormat=False): - return _mscl.MipDataPoint_channelName(self, includeAddlIds, consolidatedFormat) - __swig_destroy__ = _mscl.delete_MipDataPoint - -# Register MipDataPoint in _mscl: -_mscl.MipDataPoint_swigregister(MipDataPoint) - -class ContinuousBIT(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def as_MipDataPoints(self): - return _mscl.ContinuousBIT_as_MipDataPoints(self) - - @staticmethod - def getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - - def data(self): - return _mscl.ContinuousBIT_data(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_bufferOverrun(self) - - def imuClockFault(self): - return _mscl.ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_pressureSelfTestFail(self) - - def filterTimingOverrun(self): - return _mscl.ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.ContinuousBIT_filterTimingUnderrun(self) - -# Register ContinuousBIT in _mscl: -_mscl.ContinuousBIT_swigregister(ContinuousBIT) - -def ContinuousBIT_getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - -class ContinuousBIT_System_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - SYSTEM_CLOCK_FAILURE = _mscl.ContinuousBIT_System_General_SYSTEM_CLOCK_FAILURE - POWER_FAULT = _mscl.ContinuousBIT_System_General_POWER_FAULT - FIRMWARE_FAULT = _mscl.ContinuousBIT_System_General_FIRMWARE_FAULT - TIMING_OVERLOAD = _mscl.ContinuousBIT_System_General_TIMING_OVERLOAD - BUFFER_OVERRUN = _mscl.ContinuousBIT_System_General_BUFFER_OVERRUN - - def flags(self): - return _mscl.ContinuousBIT_System_General_flags(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_System_General_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_System_General_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_System_General_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_System_General_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_System_General_bufferOverrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_General - -# Register ContinuousBIT_System_General in _mscl: -_mscl.ContinuousBIT_System_General_swigregister(ContinuousBIT_System_General) - -class ContinuousBIT_System_Process(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def flags(self): - return _mscl.ContinuousBIT_System_Process_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_Process - -# Register ContinuousBIT_System_Process in _mscl: -_mscl.ContinuousBIT_System_Process_swigregister(ContinuousBIT_System_Process) - -class ContinuousBIT_System(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_System_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_System_GENERAL_FLAGS - PROCESS_FLAGS = _mscl.ContinuousBIT_System_PROCESS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_System_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System - -# Register ContinuousBIT_System in _mscl: -_mscl.ContinuousBIT_System_swigregister(ContinuousBIT_System) - -class ContinuousBIT_IMU_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - CLOCK_FAULT = _mscl.ContinuousBIT_IMU_General_CLOCK_FAULT - COMMUNICATION_FAULT = _mscl.ContinuousBIT_IMU_General_COMMUNICATION_FAULT - TIMING_OVERRUN = _mscl.ContinuousBIT_IMU_General_TIMING_OVERRUN - CALIBRATION_ERROR_ACCEL = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_ACCEL - CALIBRATION_ERROR_GYRO = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_GYRO - CALIBRATION_ERROR_MAG = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_MAG - - def flags(self): - return _mscl.ContinuousBIT_IMU_General_flags(self) - - def clockFault(self): - return _mscl.ContinuousBIT_IMU_General_clockFault(self) - - def communicationFault(self): - return _mscl.ContinuousBIT_IMU_General_communicationFault(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_IMU_General_timingOverrun(self) - - def calibrationErrorAccel(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorAccel(self) - - def calibrationErrorGyro(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorGyro(self) - - def calibrationErrorMag(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorMag(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_General - -# Register ContinuousBIT_IMU_General in _mscl: -_mscl.ContinuousBIT_IMU_General_swigregister(ContinuousBIT_IMU_General) - -class ContinuousBIT_IMU_Sensors(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - ACCEL_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_GENERAL_FAULT - ACCEL_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_OVERRANGE - ACCEL_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_SELF_TEST_FAIL - GYRO_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_GYRO_GENERAL_FAULT - GYRO_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_GYRO_OVERRANGE - GYRO_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_GYRO_SELF_TEST_FAIL - MAG_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_MAG_GENERAL_FAULT - MAG_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_MAG_OVERRANGE - MAG_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_MAG_SELF_TEST_FAIL - PRESSURE_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_GENERAL_FAULT - PRESSURE_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_OVERRANGE - PRESSURE_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_SELF_TEST_FAIL - - def flags(self): - return _mscl.ContinuousBIT_IMU_Sensors_flags(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureSelfTestFail(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_Sensors - -# Register ContinuousBIT_IMU_Sensors in _mscl: -_mscl.ContinuousBIT_IMU_Sensors_swigregister(ContinuousBIT_IMU_Sensors) - -class ContinuousBIT_IMU(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_IMU_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_IMU_GENERAL_FLAGS - SENSORS_FLAGS = _mscl.ContinuousBIT_IMU_SENSORS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_IMU_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU - -# Register ContinuousBIT_IMU in _mscl: -_mscl.ContinuousBIT_IMU_swigregister(ContinuousBIT_IMU) - -class ContinuousBIT_Filter_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - TIMING_OVERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_OVERRUN - TIMING_UNDERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_UNDERRUN - - def flags(self): - return _mscl.ContinuousBIT_Filter_General_flags(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_Filter_General_timingOverrun(self) - - def timingUnderrun(self): - return _mscl.ContinuousBIT_Filter_General_timingUnderrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter_General - -# Register ContinuousBIT_Filter_General in _mscl: -_mscl.ContinuousBIT_Filter_General_swigregister(ContinuousBIT_Filter_General) - -class ContinuousBIT_Filter(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_Filter_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_Filter_GENERAL_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_Filter_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter - -# Register ContinuousBIT_Filter in _mscl: -_mscl.ContinuousBIT_Filter_swigregister(ContinuousBIT_Filter) - -class CV7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_General_swiginit(self, _mscl.new_CV7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_General - -# Register CV7ContinuousBIT_System_General in _mscl: -_mscl.CV7ContinuousBIT_System_General_swigregister(CV7ContinuousBIT_System_General) - -class CV7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_Process_swiginit(self, _mscl.new_CV7ContinuousBIT_System_Process(*args)) - IMU_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_IMU_PROCESS_FAULT - IMU_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_IMU_RATE_MISMATCH - IMU_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_IMU_DROPPED_DATA - IMU_STUCK = _mscl.CV7ContinuousBIT_System_Process_IMU_STUCK - FILTER_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_FILTER_PROCESS_FAULT - FILTER_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_FILTER_DROPPED_DATA - FILTER_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_FILTER_RATE_MISMATCH - FILTER_STUCK = _mscl.CV7ContinuousBIT_System_Process_FILTER_STUCK - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_filterStuck(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_Process - -# Register CV7ContinuousBIT_System_Process in _mscl: -_mscl.CV7ContinuousBIT_System_Process_swigregister(CV7ContinuousBIT_System_Process) - -class CV7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_swiginit(self, _mscl.new_CV7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.CV7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System - -# Register CV7ContinuousBIT_System in _mscl: -_mscl.CV7ContinuousBIT_System_swigregister(CV7ContinuousBIT_System) - -class CV7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_General - -# Register CV7ContinuousBIT_IMU_General in _mscl: -_mscl.CV7ContinuousBIT_IMU_General_swigregister(CV7ContinuousBIT_IMU_General) - -class CV7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_Sensors - -# Register CV7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.CV7ContinuousBIT_IMU_Sensors_swigregister(CV7ContinuousBIT_IMU_Sensors) - -class CV7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU(*args)) - FACTORY_BITS_INVALID = _mscl.CV7ContinuousBIT_IMU_FACTORY_BITS_INVALID - - def general(self): - return _mscl.CV7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.CV7ContinuousBIT_IMU_sensors(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_IMU_factoryBitsInvalid(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU - -# Register CV7ContinuousBIT_IMU in _mscl: -_mscl.CV7ContinuousBIT_IMU_swigregister(CV7ContinuousBIT_IMU) - -class CV7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter_General(*args)) - FAULT = _mscl.CV7ContinuousBIT_Filter_General_FAULT - - def fault(self): - return _mscl.CV7ContinuousBIT_Filter_General_fault(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter_General - -# Register CV7ContinuousBIT_Filter_General in _mscl: -_mscl.CV7ContinuousBIT_Filter_General_swigregister(CV7ContinuousBIT_Filter_General) - -class CV7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter - -# Register CV7ContinuousBIT_Filter in _mscl: -_mscl.CV7ContinuousBIT_Filter_swigregister(CV7ContinuousBIT_Filter) - -class CV7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.CV7ContinuousBIT_swiginit(self, _mscl.new_CV7ContinuousBIT(bytes)) - - def system(self): - return _mscl.CV7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.CV7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.CV7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.CV7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.CV7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.CV7ContinuousBIT_bufferOverrun(self) - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_filterStuck(self) - - def imu(self): - return _mscl.CV7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.CV7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.CV7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.CV7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.CV7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.CV7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.CV7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.CV7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.CV7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.CV7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.CV7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.CV7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.CV7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.CV7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.CV7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.CV7ContinuousBIT_pressureSelfTestFail(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_factoryBitsInvalid(self) - - def filter(self): - return _mscl.CV7ContinuousBIT_filter(self) - - def filterFault(self): - return _mscl.CV7ContinuousBIT_filterFault(self) - - def filterTimingOverrun(self): - return _mscl.CV7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.CV7ContinuousBIT_filterTimingUnderrun(self) - - def as_MipDataPoints(self): - return _mscl.CV7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT - -# Register CV7ContinuousBIT in _mscl: -_mscl.CV7ContinuousBIT_swigregister(CV7ContinuousBIT) - -class GQ7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_General - -# Register GQ7ContinuousBIT_System_General in _mscl: -_mscl.GQ7ContinuousBIT_System_General_swigregister(GQ7ContinuousBIT_System_General) - -class GQ7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_Process_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_Process(*args)) - IMU_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_CONTROL_LINE_FAULT - IMU_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_COMMAND_RESPONSE_FAULT - IMU_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_SPI_TRANSFER_FAULT - IMU_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_DATA_FRAME_FAULT - FILTER_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_CONTROL_LINE_FAULT - FILTER_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_COMMAND_RESPONSE_FAULT - FILTER_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_SPI_TRANSFER_FAULT - FILTER_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_DATA_FRAME_FAULT - GNSS_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_CONTROL_LINE_FAULT - GNSS_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_COMMAND_RESPONSE_FAULT - GNSS_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_SPI_TRANSFER_FAULT - GNSS_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_DATA_FRAME_FAULT - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssDataFrameFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_Process - -# Register GQ7ContinuousBIT_System_Process in _mscl: -_mscl.GQ7ContinuousBIT_System_Process_swigregister(GQ7ContinuousBIT_System_Process) - -class GQ7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_swiginit(self, _mscl.new_GQ7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.GQ7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System - -# Register GQ7ContinuousBIT_System in _mscl: -_mscl.GQ7ContinuousBIT_System_swigregister(GQ7ContinuousBIT_System) - -class GQ7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_General - -# Register GQ7ContinuousBIT_IMU_General in _mscl: -_mscl.GQ7ContinuousBIT_IMU_General_swigregister(GQ7ContinuousBIT_IMU_General) - -class GQ7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_Sensors - -# Register GQ7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.GQ7ContinuousBIT_IMU_Sensors_swigregister(GQ7ContinuousBIT_IMU_Sensors) - -class GQ7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.GQ7ContinuousBIT_IMU_sensors(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU - -# Register GQ7ContinuousBIT_IMU in _mscl: -_mscl.GQ7ContinuousBIT_IMU_swigregister(GQ7ContinuousBIT_IMU) - -class GQ7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_HARDWARE_FAULT - COMMUNICATION_ERROR_IMU_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_IMU_SPI - COMMUNICATION_ERROR_GNSS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_GNSS_SPI - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_COMMS_UART = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_UART - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationError(self) - - def communicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorImuSpi(self) - - def communicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorGnssSpi(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsSpi(self) - - def communicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsUart(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter_General - -# Register GQ7ContinuousBIT_Filter_General in _mscl: -_mscl.GQ7ContinuousBIT_Filter_General_swigregister(GQ7ContinuousBIT_Filter_General) - -class GQ7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter - -# Register GQ7ContinuousBIT_Filter in _mscl: -_mscl.GQ7ContinuousBIT_Filter_swigregister(GQ7ContinuousBIT_Filter) - -class GQ7ContinuousBIT_GNSS_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_HARDWARE_FAULT - COMMUNICATION_ERROR_COMMS_SERIAL = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SERIAL - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_NAV_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_NAV_SPI - GPS_TIME_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_GPS_TIME_FAULT - TIMING_OVERRUN = _mscl.GQ7ContinuousBIT_GNSS_General_TIMING_OVERRUN - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_flags(self) - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationError(self) - - def communicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSerial(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSpi(self) - - def communicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_gpsTimeFault(self) - - def timingOverrun(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_timingOverrun(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_General - -# Register GQ7ContinuousBIT_GNSS_General in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_General_swigregister(GQ7ContinuousBIT_GNSS_General) - -class GQ7ContinuousBIT_GNSS_Receivers(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_Receivers_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_Receivers(*args)) - POWER_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_1 - FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_1 - SHORTED_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_1 - OPEN_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_1 - SOLUTION_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_1 - POWER_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_2 - FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_2 - SHORTED_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_2 - OPEN_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_2 - SOLUTION_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_2 - RTCM_COMMUNICATION_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTCM_COMMUNICATION_FAULT - RTK_DONGLE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTK_DONGLE_FAULT - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_flags(self) - - def powerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver1(self) - - def faultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver1(self) - - def shortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna1(self) - - def openAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna1(self) - - def solutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver1(self) - - def powerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver2(self) - - def faultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver2(self) - - def shortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna2(self) - - def openAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna2(self) - - def solutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtkDongleFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_Receivers - -# Register GQ7ContinuousBIT_GNSS_Receivers in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_Receivers_swigregister(GQ7ContinuousBIT_GNSS_Receivers) - -class GQ7ContinuousBIT_GNSS(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS(*args)) - RESPONSE_OFFSET = _mscl.GQ7ContinuousBIT_GNSS_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_GENERAL_FLAGS - RECEIVERS_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_RECEIVERS_FLAGS - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_flags(self) - - def general(self): - return _mscl.GQ7ContinuousBIT_GNSS_general(self) - - def receivers(self): - return _mscl.GQ7ContinuousBIT_GNSS_receivers(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS - -# Register GQ7ContinuousBIT_GNSS in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_swigregister(GQ7ContinuousBIT_GNSS) - -class GQ7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.GQ7ContinuousBIT_swiginit(self, _mscl.new_GQ7ContinuousBIT(bytes)) - - def system(self): - return _mscl.GQ7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.GQ7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.GQ7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.GQ7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.GQ7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.GQ7ContinuousBIT_bufferOverrun(self) - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_gnssDataFrameFault(self) - - def imu(self): - return _mscl.GQ7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.GQ7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.GQ7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.GQ7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.GQ7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.GQ7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.GQ7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.GQ7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.GQ7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.GQ7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_pressureSelfTestFail(self) - - def filter(self): - return _mscl.GQ7ContinuousBIT_filter(self) - - def filterClockFault(self): - return _mscl.GQ7ContinuousBIT_filterClockFault(self) - - def filterHardwareFault(self): - return _mscl.GQ7ContinuousBIT_filterHardwareFault(self) - - def filterTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingUnderrun(self) - - def filterCommunicationError(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationError(self) - - def filterCommunicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorImuSpi(self) - - def filterCommunicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorGnssSpi(self) - - def filterCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsSpi(self) - - def filterCommunicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsUart(self) - - def gnss(self): - return _mscl.GQ7ContinuousBIT_gnss(self) - - def gnssClockFault(self): - return _mscl.GQ7ContinuousBIT_gnssClockFault(self) - - def gnssHardwareFault(self): - return _mscl.GQ7ContinuousBIT_gnssHardwareFault(self) - - def gnssCommunicationError(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationError(self) - - def gnssCommunicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSerial(self) - - def gnssCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSpi(self) - - def gnssCommunicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_gpsTimeFault(self) - - def gnssTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_gnssTimingOverrun(self) - - def gnssPowerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver1(self) - - def gnssFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver1(self) - - def gnssShortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna1(self) - - def gnssOpenAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna1(self) - - def gnssSolutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver1(self) - - def gnssPowerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver2(self) - - def gnssFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver2(self) - - def gnssShortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna2(self) - - def gnssOpenAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna2(self) - - def gnssSolutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_rtkDongleFault(self) - - def as_MipDataPoints(self): - return _mscl.GQ7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT - -# Register GQ7ContinuousBIT in _mscl: -_mscl.GQ7ContinuousBIT_swigregister(GQ7ContinuousBIT) - -class MipSharedDataFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EVENT_SOURCE_NONE = _mscl.MipSharedDataFields_EVENT_SOURCE_NONE - EVENT_SOURCE_UNKNOWN = _mscl.MipSharedDataFields_EVENT_SOURCE_UNKNOWN - - def __init__(self): - _mscl.MipSharedDataFields_swiginit(self, _mscl.new_MipSharedDataFields()) - - def hasEventSource(self): - return _mscl.MipSharedDataFields_hasEventSource(self) - - def eventSource(self): - return _mscl.MipSharedDataFields_eventSource(self) - - def hasTicks(self): - return _mscl.MipSharedDataFields_hasTicks(self) - - def ticks(self): - return _mscl.MipSharedDataFields_ticks(self) - - def hasDeltaTicks(self): - return _mscl.MipSharedDataFields_hasDeltaTicks(self) - - def deltaTicks(self): - return _mscl.MipSharedDataFields_deltaTicks(self) - - def hasGpsTimestamp(self): - return _mscl.MipSharedDataFields_hasGpsTimestamp(self) - - def gpsTimestamp(self): - return _mscl.MipSharedDataFields_gpsTimestamp(self) - - def gpsTimestampValid(self): - return _mscl.MipSharedDataFields_gpsTimestampValid(self) - - def hasDeltaTime(self): - return _mscl.MipSharedDataFields_hasDeltaTime(self) - - def deltaTime(self): - return _mscl.MipSharedDataFields_deltaTime(self) - - def hasReferenceTime(self): - return _mscl.MipSharedDataFields_hasReferenceTime(self) - - def referenceTime(self): - return _mscl.MipSharedDataFields_referenceTime(self) - - def hasDeltaReferenceTime(self): - return _mscl.MipSharedDataFields_hasDeltaReferenceTime(self) - - def deltaReferenceTime(self): - return _mscl.MipSharedDataFields_deltaReferenceTime(self) - - def hasExternalTimestamp(self): - return _mscl.MipSharedDataFields_hasExternalTimestamp(self) - - def externalTimestamp(self): - return _mscl.MipSharedDataFields_externalTimestamp(self) - - def externalTimestampValid(self): - return _mscl.MipSharedDataFields_externalTimestampValid(self) - - def hasDeltaExternalTime(self): - return _mscl.MipSharedDataFields_hasDeltaExternalTime(self) - - def deltaExternalTime(self): - return _mscl.MipSharedDataFields_deltaExternalTime(self) - - def deltaExternalTimeValid(self): - return _mscl.MipSharedDataFields_deltaExternalTimeValid(self) - - def get(self, *args): - return _mscl.MipSharedDataFields_get(self, *args) - __swig_destroy__ = _mscl.delete_MipSharedDataFields - -# Register MipSharedDataFields in _mscl: -_mscl.MipSharedDataFields_swigregister(MipSharedDataFields) - -class MipDataPacket(MipPacket): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipDataPacket_swiginit(self, _mscl.new_MipDataPacket(*args)) - - def data(self): - return _mscl.MipDataPacket_data(self) - - def shared(self): - return _mscl.MipDataPacket_shared(self) - - def collectedTimestamp(self): - return _mscl.MipDataPacket_collectedTimestamp(self) - - def deviceTimestamp(self): - return _mscl.MipDataPacket_deviceTimestamp(self) - - def hasDeviceTime(self): - return _mscl.MipDataPacket_hasDeviceTime(self) - - def deviceTimeValid(self): - return _mscl.MipDataPacket_deviceTimeValid(self) - - def deviceTimeFlags(self): - return _mscl.MipDataPacket_deviceTimeFlags(self) - __swig_destroy__ = _mscl.delete_MipDataPacket - -# Register MipDataPacket in _mscl: -_mscl.MipDataPacket_swigregister(MipDataPacket) - -class RawBytePacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INVALID_PACKET = _mscl.RawBytePacket_INVALID_PACKET - DATA_PACKET = _mscl.RawBytePacket_DATA_PACKET - COMMAND_PACKET = _mscl.RawBytePacket_COMMAND_PACKET - NO_PACKET_FOUND = _mscl.RawBytePacket_NO_PACKET_FOUND - FROM_READ = _mscl.RawBytePacket_FROM_READ - FROM_SEND = _mscl.RawBytePacket_FROM_SEND - - def __init__(self): - _mscl.RawBytePacket_swiginit(self, _mscl.new_RawBytePacket()) - - def type(self, *args): - return _mscl.RawBytePacket_type(self, *args) - - def source(self, *args): - return _mscl.RawBytePacket_source(self, *args) - - def payload(self, *args): - return _mscl.RawBytePacket_payload(self, *args) - __swig_destroy__ = _mscl.delete_RawBytePacket - -# Register RawBytePacket in _mscl: -_mscl.RawBytePacket_swigregister(RawBytePacket) - -class MipNodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_MipNodeFeatures - - @staticmethod - def isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - - def supportsCategory(self, dataClass): - return _mscl.MipNodeFeatures_supportsCategory(self, dataClass) - - def supportsCommand(self, commandId): - return _mscl.MipNodeFeatures_supportsCommand(self, commandId) - - def supportedCommands(self): - return _mscl.MipNodeFeatures_supportedCommands(self) - - def supportsChannelField(self, fieldId): - return _mscl.MipNodeFeatures_supportsChannelField(self, fieldId) - - def filterSupportedChannelFields(self, fields): - return _mscl.MipNodeFeatures_filterSupportedChannelFields(self, fields) - - def supportedChannelFields(self, *args): - return _mscl.MipNodeFeatures_supportedChannelFields(self, *args) - - def supportedSampleRates(self, dataClass): - return _mscl.MipNodeFeatures_supportedSampleRates(self, dataClass) - - def baseDataRate(self, dataClass): - return _mscl.MipNodeFeatures_baseDataRate(self, dataClass) - - def gnssReceiverInfo(self): - return _mscl.MipNodeFeatures_gnssReceiverInfo(self) - - def supportedGnssSources(self): - return _mscl.MipNodeFeatures_supportedGnssSources(self) - - def supportedSensorRanges(self, *args): - return _mscl.MipNodeFeatures_supportedSensorRanges(self, *args) - - def getCommPortInfo(self): - return _mscl.MipNodeFeatures_getCommPortInfo(self) - - def useLegacyIdsForEnableDataStream(self): - return _mscl.MipNodeFeatures_useLegacyIdsForEnableDataStream(self) - - def supportedHeadingUpdateOptions(self): - return _mscl.MipNodeFeatures_supportedHeadingUpdateOptions(self) - - def supportedHeadingAlignmentMethods(self): - return _mscl.MipNodeFeatures_supportedHeadingAlignmentMethods(self) - - def supportedStatusSelectors(self): - return _mscl.MipNodeFeatures_supportedStatusSelectors(self) - - def supportedEstimationControlOptions(self): - return _mscl.MipNodeFeatures_supportedEstimationControlOptions(self) - - def supportedVehicleModeTypes(self): - return _mscl.MipNodeFeatures_supportedVehicleModeTypes(self) - - def supportedAdaptiveMeasurementModes(self): - return _mscl.MipNodeFeatures_supportedAdaptiveMeasurementModes(self) - - def supportedAdaptiveFilterLevels(self): - return _mscl.MipNodeFeatures_supportedAdaptiveFilterLevels(self) - - def supportedAidingMeasurementOptions(self): - return _mscl.MipNodeFeatures_supportedAidingMeasurementOptions(self) - - def supportedPpsSourceOptions(self): - return _mscl.MipNodeFeatures_supportedPpsSourceOptions(self) - - def supportedGpioPins(self): - return _mscl.MipNodeFeatures_supportedGpioPins(self) - - def supportedGpioPinModes(self, feature, behavior): - return _mscl.MipNodeFeatures_supportedGpioPinModes(self, feature, behavior) - - def supportedGpioBehaviors(self, feature, pin): - return _mscl.MipNodeFeatures_supportedGpioBehaviors(self, feature, pin) - - def supportedGpioFeatures(self, pin): - return _mscl.MipNodeFeatures_supportedGpioFeatures(self, pin) - - def supportedGpioConfigurations(self): - return _mscl.MipNodeFeatures_supportedGpioConfigurations(self) - - def supportedGnssSignalConfigurations(self): - return _mscl.MipNodeFeatures_supportedGnssSignalConfigurations(self) - - def supportedDeclinationSources(self): - return _mscl.MipNodeFeatures_supportedDeclinationSources(self) - - def supportedInclinationSources(self): - return _mscl.MipNodeFeatures_supportedInclinationSources(self) - - def supportedMagneticMagnitudeSources(self): - return _mscl.MipNodeFeatures_supportedMagneticMagnitudeSources(self) - - def supportedEventThresholdChannels(self): - return _mscl.MipNodeFeatures_supportedEventThresholdChannels(self) - - def supportedEventActionInfo(self): - return _mscl.MipNodeFeatures_supportedEventActionInfo(self) - - def supportedEventTriggerInfo(self): - return _mscl.MipNodeFeatures_supportedEventTriggerInfo(self) - - def supportsNorthCompensation(self): - return _mscl.MipNodeFeatures_supportsNorthCompensation(self) - - def supportedLowPassFilterChannelFields(self): - return _mscl.MipNodeFeatures_supportedLowPassFilterChannelFields(self) - - def maxMeasurementReferenceFrameId(self): - return _mscl.MipNodeFeatures_maxMeasurementReferenceFrameId(self) - -# Register MipNodeFeatures in _mscl: -_mscl.MipNodeFeatures_swigregister(MipNodeFeatures) - -def MipNodeFeatures_isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - -class MipNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.MipNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - def getConfigCommandBytes(self): - return _mscl.MipNode_getConfigCommandBytes(self) - - def sendCommandBytes(self, *args): - return _mscl.MipNode_sendCommandBytes(self, *args) - - @staticmethod - def deviceName(serial): - return _mscl.MipNode_deviceName(serial) - - def connection(self): - return _mscl.MipNode_connection(self) - - def features(self): - return _mscl.MipNode_features(self) - - def clearDeviceInfo(self): - return _mscl.MipNode_clearDeviceInfo(self) - - def lastCommunicationTime(self): - return _mscl.MipNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.MipNode_lastDeviceState(self) - - def setLastDeviceState(self, state): - return _mscl.MipNode_setLastDeviceState(self, state) - - def firmwareVersion(self): - return _mscl.MipNode_firmwareVersion(self) - - def model(self): - return _mscl.MipNode_model(self) - - def modelName(self): - return _mscl.MipNode_modelName(self) - - def modelNumber(self): - return _mscl.MipNode_modelNumber(self) - - def serialNumber(self): - return _mscl.MipNode_serialNumber(self) - - def lotNumber(self): - return _mscl.MipNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.MipNode_deviceOptions(self) - - def timeout(self, *args): - return _mscl.MipNode_timeout(self, *args) - - def name(self): - return _mscl.MipNode_name(self) - - def ping(self): - return _mscl.MipNode_ping(self) - - def setToIdle(self): - return _mscl.MipNode_setToIdle(self) - - def cyclePower(self): - return _mscl.MipNode_cyclePower(self) - - def resume(self): - return _mscl.MipNode_resume(self) - - def getCommunicationMode(self): - return _mscl.MipNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.MipNode_setCommunicationMode(self, communicationMode) - - def saveSettingsAsStartup(self, *args): - return _mscl.MipNode_saveSettingsAsStartup(self, *args) - - def loadStartupSettings(self, *args): - return _mscl.MipNode_loadStartupSettings(self, *args) - - def loadFactoryDefaultSettings(self, *args): - return _mscl.MipNode_loadFactoryDefaultSettings(self, *args) - - def setUARTBaudRate(self, *args): - return _mscl.MipNode_setUARTBaudRate(self, *args) - - def getUARTBaudRate(self, portId=1): - return _mscl.MipNode_getUARTBaudRate(self, portId) - - def getRawBytePackets(self, timeout=0, maxPackets=0): - return _mscl.MipNode_getRawBytePackets(self, timeout, maxPackets) - -# Register MipNode in _mscl: -_mscl.MipNode_swigregister(MipNode) - -def MipNode_deviceName(serial): - return _mscl.MipNode_deviceName(serial) - -class InertialNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.InertialNode_swiginit(self, _mscl.new_InertialNode(connection)) - __swig_destroy__ = _mscl.delete_InertialNode - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.InertialNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.InertialNode_totalPackets(self) - - def pollData(self, *args): - return _mscl.InertialNode_pollData(self, *args) - - def getDataRateBase(self, dataClass): - return _mscl.InertialNode_getDataRateBase(self, dataClass) - - def getActiveChannelFields(self, dataClass): - return _mscl.InertialNode_getActiveChannelFields(self, dataClass) - - def setActiveChannelFields(self, dataClass, channels): - return _mscl.InertialNode_setActiveChannelFields(self, dataClass, channels) - - def saveActiveChannelFields(self, dataClass): - return _mscl.InertialNode_saveActiveChannelFields(self, dataClass) - - def setFactoryStreamingChannels(self, option): - return _mscl.InertialNode_setFactoryStreamingChannels(self, option) - - def getInterfaceControl(self, interfaceId): - return _mscl.InertialNode_getInterfaceControl(self, interfaceId) - - def setInterfaceControl(self, *args): - return _mscl.InertialNode_setInterfaceControl(self, *args) - - def getCommunicationMode(self): - return _mscl.InertialNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.InertialNode_setCommunicationMode(self, communicationMode) - - def isDataStreamEnabled(self, dataClass): - return _mscl.InertialNode_isDataStreamEnabled(self, dataClass) - - def enableDataStream(self, dataClass, enable=True, resumeStreaming=True): - return _mscl.InertialNode_enableDataStream(self, dataClass, enable, resumeStreaming) - - def resetFilter(self): - return _mscl.InertialNode_resetFilter(self) - - def runFilter(self): - return _mscl.InertialNode_runFilter(self) - - def getAutoInitialization(self): - return _mscl.InertialNode_getAutoInitialization(self) - - def setAutoInitialization(self, enable): - return _mscl.InertialNode_setAutoInitialization(self, enable) - - def getAltitudeAid(self): - return _mscl.InertialNode_getAltitudeAid(self) - - def setAltitudeAid(self, enable): - return _mscl.InertialNode_setAltitudeAid(self, enable) - - def getPitchRollAid(self): - return _mscl.InertialNode_getPitchRollAid(self) - - def setPitchRollAid(self, enable): - return _mscl.InertialNode_setPitchRollAid(self, enable) - - def enableVerticalGyroConstraint(self, enable): - return _mscl.InertialNode_enableVerticalGyroConstraint(self, enable) - - def verticalGyroConstraintEnabled(self): - return _mscl.InertialNode_verticalGyroConstraintEnabled(self) - - def enableWheeledVehicleConstraint(self, enable): - return _mscl.InertialNode_enableWheeledVehicleConstraint(self, enable) - - def wheeledVehicleConstraintEnabled(self): - return _mscl.InertialNode_wheeledVehicleConstraintEnabled(self) - - def setVelocityZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setVelocityZUPT(self, ZUPTSettings) - - def getVelocityZUPT(self): - return _mscl.InertialNode_getVelocityZUPT(self) - - def setAngularRateZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setAngularRateZUPT(self, ZUPTSettings) - - def getAngularRateZUPT(self): - return _mscl.InertialNode_getAngularRateZUPT(self) - - def cmdedVelZUPT(self): - return _mscl.InertialNode_cmdedVelZUPT(self) - - def cmdedAngRateZUPT(self): - return _mscl.InertialNode_cmdedAngRateZUPT(self) - - def setInitialAttitude(self, attitude): - return _mscl.InertialNode_setInitialAttitude(self, attitude) - - def setInitialHeading(self, heading): - return _mscl.InertialNode_setInitialHeading(self, heading) - - def getInitialFilterConfiguration(self): - return _mscl.InertialNode_getInitialFilterConfiguration(self) - - def setInitialFilterConfiguration(self, filterConfig): - return _mscl.InertialNode_setInitialFilterConfiguration(self, filterConfig) - - def getSensorToVehicleRotation_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleRotation_eulerAngles(self) - - def setSensorToVehicleRotation_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleRotation_eulerAngles(self, angles) - - def getSensorToVehicleRotation_matrix(self): - return _mscl.InertialNode_getSensorToVehicleRotation_matrix(self) - - def setSensorToVehicleRotation_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleRotation_matrix(self, dcm) - - def getSensorToVehicleRotation_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleRotation_quaternion(self) - - def setSensorToVehicleRotation_quaternion(self, rotation): - return _mscl.InertialNode_setSensorToVehicleRotation_quaternion(self, rotation) - - def getSensorToVehicleTransform_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleTransform_eulerAngles(self) - - def setSensorToVehicleTransform_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleTransform_eulerAngles(self, angles) - - def getSensorToVehicleTransform_matrix(self): - return _mscl.InertialNode_getSensorToVehicleTransform_matrix(self) - - def setSensorToVehicleTransform_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleTransform_matrix(self, dcm) - - def getSensorToVehicleTransform_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleTransform_quaternion(self) - - def setSensorToVehicleTransform_quaternion(self, transformation): - return _mscl.InertialNode_setSensorToVehicleTransform_quaternion(self, transformation) - - def getSensorToVehicleOffset(self): - return _mscl.InertialNode_getSensorToVehicleOffset(self) - - def setSensorToVehicleOffset(self, offset): - return _mscl.InertialNode_setSensorToVehicleOffset(self, offset) - - def getAntennaOffset(self): - return _mscl.InertialNode_getAntennaOffset(self) - - def setAntennaOffset(self, offset): - return _mscl.InertialNode_setAntennaOffset(self, offset) - - def getGNSSAssistedFixControl(self): - return _mscl.InertialNode_getGNSSAssistedFixControl(self) - - def setGNSSAssistedFixControl(self, enableAssistedFix): - return _mscl.InertialNode_setGNSSAssistedFixControl(self, enableAssistedFix) - - def getGNSSAssistTimeUpdate(self): - return _mscl.InertialNode_getGNSSAssistTimeUpdate(self) - - def setGNSSAssistTimeUpdate(self, timeUpdate): - return _mscl.InertialNode_setGNSSAssistTimeUpdate(self, timeUpdate) - - def getGPSTimeUpdate(self, timeFrame): - return _mscl.InertialNode_getGPSTimeUpdate(self, timeFrame) - - def setGPSTimeUpdate(self, arg2, timeData): - return _mscl.InertialNode_setGPSTimeUpdate(self, arg2, timeData) - - def setConstellationSettings(self, dataToUse): - return _mscl.InertialNode_setConstellationSettings(self, dataToUse) - - def getConstellationSettings(self): - return _mscl.InertialNode_getConstellationSettings(self) - - def setSBASSettings(self, dataToUse): - return _mscl.InertialNode_setSBASSettings(self, dataToUse) - - def getSBASSettings(self): - return _mscl.InertialNode_getSBASSettings(self) - - def setAccelerometerBias(self, biasVector): - return _mscl.InertialNode_setAccelerometerBias(self, biasVector) - - def getAccelerometerBias(self): - return _mscl.InertialNode_getAccelerometerBias(self) - - def setGyroBias(self, biasVector): - return _mscl.InertialNode_setGyroBias(self, biasVector) - - def getGyroBias(self): - return _mscl.InertialNode_getGyroBias(self) - - def captureGyroBias(self, samplingTime): - return _mscl.InertialNode_captureGyroBias(self, samplingTime) - - def findMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_findMagnetometerCaptureAutoCalibration(self) - - def saveMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_saveMagnetometerCaptureAutoCalibration(self) - - def setMagnetometerSoftIronMatrix(self, matrix): - return _mscl.InertialNode_setMagnetometerSoftIronMatrix(self, matrix) - - def getMagnetometerSoftIronMatrix(self): - return _mscl.InertialNode_getMagnetometerSoftIronMatrix(self) - - def setMagnetometerHardIronOffset(self, offsetVector): - return _mscl.InertialNode_setMagnetometerHardIronOffset(self, offsetVector) - - def getMagnetometerHardIronOffset(self): - return _mscl.InertialNode_getMagnetometerHardIronOffset(self) - - def setConingAndScullingEnable(self, enable): - return _mscl.InertialNode_setConingAndScullingEnable(self, enable) - - def getConingAndScullingEnable(self): - return _mscl.InertialNode_getConingAndScullingEnable(self) - - def setLowPassFilterSettings(self, data): - return _mscl.InertialNode_setLowPassFilterSettings(self, data) - - def getLowPassFilterSettings(self, dataDescriptors): - return _mscl.InertialNode_getLowPassFilterSettings(self, dataDescriptors) - - def setComplementaryFilterSettings(self, data): - return _mscl.InertialNode_setComplementaryFilterSettings(self, data) - - def getComplementaryFilterSettings(self): - return _mscl.InertialNode_getComplementaryFilterSettings(self) - - def getBasicDeviceStatus(self): - return _mscl.InertialNode_getBasicDeviceStatus(self) - - def getDiagnosticDeviceStatus(self): - return _mscl.InertialNode_getDiagnosticDeviceStatus(self) - - def sendRawRTCM_2_3Message(self, theMessage): - return _mscl.InertialNode_sendRawRTCM_2_3Message(self, theMessage) - - def setVehicleDynamicsMode(self, mode): - return _mscl.InertialNode_setVehicleDynamicsMode(self, mode) - - def getVehicleDynamicsMode(self): - return _mscl.InertialNode_getVehicleDynamicsMode(self) - - def setEstimationControlFlags(self, flags): - return _mscl.InertialNode_setEstimationControlFlags(self, flags) - - def getEstimationControlFlags(self): - return _mscl.InertialNode_getEstimationControlFlags(self) - - def setInclinationSource(self, options): - return _mscl.InertialNode_setInclinationSource(self, options) - - def getInclinationSource(self): - return _mscl.InertialNode_getInclinationSource(self) - - def setDeclinationSource(self, options): - return _mscl.InertialNode_setDeclinationSource(self, options) - - def getDeclinationSource(self): - return _mscl.InertialNode_getDeclinationSource(self) - - def setMagneticFieldMagnitudeSource(self, options): - return _mscl.InertialNode_setMagneticFieldMagnitudeSource(self, options) - - def getMagneticFieldMagnitudeSource(self): - return _mscl.InertialNode_getMagneticFieldMagnitudeSource(self) - - def setGNSS_SourceControl(self, gnssSource): - return _mscl.InertialNode_setGNSS_SourceControl(self, gnssSource) - - def getGNSS_SourceControl(self): - return _mscl.InertialNode_getGNSS_SourceControl(self) - - def sendExternalGNSSUpdate(self, gnssUpdateData): - return _mscl.InertialNode_sendExternalGNSSUpdate(self, gnssUpdateData) - - def setHeadingUpdateControl(self, headingUpdateOptions): - return _mscl.InertialNode_setHeadingUpdateControl(self, headingUpdateOptions) - - def tareOrientation(self, axisValue): - return _mscl.InertialNode_tareOrientation(self, axisValue) - - def getHeadingUpdateControl(self): - return _mscl.InertialNode_getHeadingUpdateControl(self) - - def setGravityErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setGravityErrorAdaptiveMeasurement(self, data) - - def getGravityErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getGravityErrorAdaptiveMeasurement(self) - - def setMagnetometerErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagnetometerErrorAdaptiveMeasurement(self, data) - - def getMagnetometerErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagnetometerErrorAdaptiveMeasurement(self) - - def setMagDipAngleErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagDipAngleErrorAdaptiveMeasurement(self, data) - - def getMagDipAngleErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagDipAngleErrorAdaptiveMeasurement(self) - - def setMagNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setMagNoiseStandardDeviation(self, data) - - def getMagNoiseStandardDeviation(self): - return _mscl.InertialNode_getMagNoiseStandardDeviation(self) - - def setGravNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGravNoiseStandardDeviation(self, data) - - def getGravNoiseStandardDeviation(self): - return _mscl.InertialNode_getGravNoiseStandardDeviation(self) - - def setAccelNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setAccelNoiseStandardDeviation(self, data) - - def getAccelNoiseStandardDeviation(self): - return _mscl.InertialNode_getAccelNoiseStandardDeviation(self) - - def setGyroNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGyroNoiseStandardDeviation(self, data) - - def getGyroNoiseStandardDeviation(self): - return _mscl.InertialNode_getGyroNoiseStandardDeviation(self) - - def setPressureAltNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setPressureAltNoiseStandardDeviation(self, data) - - def getPressureAltNoiseStandardDeviation(self): - return _mscl.InertialNode_getPressureAltNoiseStandardDeviation(self) - - def setHardIronOffsetProcessNoise(self, data): - return _mscl.InertialNode_setHardIronOffsetProcessNoise(self, data) - - def getHardIronOffsetProcessNoise(self): - return _mscl.InertialNode_getHardIronOffsetProcessNoise(self) - - def setAccelBiasModelParams(self, data): - return _mscl.InertialNode_setAccelBiasModelParams(self, data) - - def getAccelBiasModelParams(self): - return _mscl.InertialNode_getAccelBiasModelParams(self) - - def setGyroBiasModelParams(self, data): - return _mscl.InertialNode_setGyroBiasModelParams(self, data) - - def getGyroBiasModelParams(self): - return _mscl.InertialNode_getGyroBiasModelParams(self) - - def setSoftIronMatrixProcessNoise(self, data): - return _mscl.InertialNode_setSoftIronMatrixProcessNoise(self, data) - - def getSoftIronMatrixProcessNoise(self): - return _mscl.InertialNode_getSoftIronMatrixProcessNoise(self) - - def setFixedReferencePosition(self, data): - return _mscl.InertialNode_setFixedReferencePosition(self, data) - - def getFixedReferencePosition(self): - return _mscl.InertialNode_getFixedReferencePosition(self) - - def setGPSDynamicsMode(self, data): - return _mscl.InertialNode_setGPSDynamicsMode(self, data) - - def getGPSDynamicsMode(self): - return _mscl.InertialNode_getGPSDynamicsMode(self) - - def setDevicePowerState(self, device, data): - return _mscl.InertialNode_setDevicePowerState(self, device, data) - - def getDevicePowerState(self, device): - return _mscl.InertialNode_getDevicePowerState(self, device) - - def setDeviceStreamFormat(self, device, data): - return _mscl.InertialNode_setDeviceStreamFormat(self, device, data) - - def getDeviceStreamFormat(self, device): - return _mscl.InertialNode_getDeviceStreamFormat(self, device) - - def setSignalConditioningSettings(self, data): - return _mscl.InertialNode_setSignalConditioningSettings(self, data) - - def getSignalConditioningSettings(self): - return _mscl.InertialNode_getSignalConditioningSettings(self) - - def setEnableDisableMeasurements(self, data): - return _mscl.InertialNode_setEnableDisableMeasurements(self, data) - - def getEnableDisableMeasurements(self): - return _mscl.InertialNode_getEnableDisableMeasurements(self) - - def setGravityNoiseMinimum(self, data): - return _mscl.InertialNode_setGravityNoiseMinimum(self, data) - - def getGravityNoiseMinimum(self): - return _mscl.InertialNode_getGravityNoiseMinimum(self) - - def sendExternalHeadingUpdate(self, *args): - return _mscl.InertialNode_sendExternalHeadingUpdate(self, *args) - - def aidingMeasurementEnabled(self, aidingSource): - return _mscl.InertialNode_aidingMeasurementEnabled(self, aidingSource) - - def enableDisableAidingMeasurement(self, aidingSource, enable): - return _mscl.InertialNode_enableDisableAidingMeasurement(self, aidingSource, enable) - - def getAdaptiveFilterOptions(self): - return _mscl.InertialNode_getAdaptiveFilterOptions(self) - - def setAdaptiveFilterOptions(self, options): - return _mscl.InertialNode_setAdaptiveFilterOptions(self, options) - - def getMultiAntennaOffset(self, receiverId): - return _mscl.InertialNode_getMultiAntennaOffset(self, receiverId) - - def setMultiAntennaOffset(self, receiverId, offset): - return _mscl.InertialNode_setMultiAntennaOffset(self, receiverId, offset) - - def getPpsSource(self): - return _mscl.InertialNode_getPpsSource(self) - - def setPpsSource(self, ppsSource): - return _mscl.InertialNode_setPpsSource(self, ppsSource) - - def getOdometerConfig(self): - return _mscl.InertialNode_getOdometerConfig(self) - - def setOdometerConfig(self, config): - return _mscl.InertialNode_setOdometerConfig(self, config) - - def getSensorRange(self, sensorRangeType): - return _mscl.InertialNode_getSensorRange(self, sensorRangeType) - - def setSensorRange(self, *args): - return _mscl.InertialNode_setSensorRange(self, *args) - - def getGpioConfig(self, pin): - return _mscl.InertialNode_getGpioConfig(self, pin) - - def setGpioConfig(self, config): - return _mscl.InertialNode_setGpioConfig(self, config) - - def getGpioState(self, pin): - return _mscl.InertialNode_getGpioState(self, pin) - - def setGpioState(self, pin, state): - return _mscl.InertialNode_setGpioState(self, pin, state) - - def getEventTriggerMode(self, instance): - return _mscl.InertialNode_getEventTriggerMode(self, instance) - - def setEventTriggerMode(self, instance, mode): - return _mscl.InertialNode_setEventTriggerMode(self, instance, mode) - - def getEventTriggerConfig(self, instance): - return _mscl.InertialNode_getEventTriggerConfig(self, instance) - - def setEventTriggerConfig(self, config): - return _mscl.InertialNode_setEventTriggerConfig(self, config) - - def getEventActionConfig(self, instance): - return _mscl.InertialNode_getEventActionConfig(self, instance) - - def setEventActionConfig(self, config, validateSupported=True): - return _mscl.InertialNode_setEventActionConfig(self, config, validateSupported) - - def getAntennaLeverArmCal(self): - return _mscl.InertialNode_getAntennaLeverArmCal(self) - - def setAntennaLeverArmCal(self, config): - return _mscl.InertialNode_setAntennaLeverArmCal(self, config) - - def getRelativePositionReference(self): - return _mscl.InertialNode_getRelativePositionReference(self) - - def setRelativePositionReference(self, ref): - return _mscl.InertialNode_setRelativePositionReference(self, ref) - - def getLeverArmReferenceOffset(self): - return _mscl.InertialNode_getLeverArmReferenceOffset(self) - - def setLeverArmReferenceOffset(self, offset): - return _mscl.InertialNode_setLeverArmReferenceOffset(self, offset) - - def sendExternalSpeedMeasurementUpdate(self, tow, speed, unc): - return _mscl.InertialNode_sendExternalSpeedMeasurementUpdate(self, tow, speed, unc) - - def getSpeedMeasurementOffset(self): - return _mscl.InertialNode_getSpeedMeasurementOffset(self) - - def setSpeedMeasurementOffset(self, offset): - return _mscl.InertialNode_setSpeedMeasurementOffset(self, offset) - - def getGnssSignalConfig(self): - return _mscl.InertialNode_getGnssSignalConfig(self) - - def setGnssSignalConfig(self, config): - return _mscl.InertialNode_setGnssSignalConfig(self, config) - - def getGnssSpartnConfig(self): - return _mscl.InertialNode_getGnssSpartnConfig(self) - - def setGnssSpartnConfig(self, config): - return _mscl.InertialNode_setGnssSpartnConfig(self, config) - - def rtkEnabled(self): - return _mscl.InertialNode_rtkEnabled(self) - - def enableRtk(self, enable): - return _mscl.InertialNode_enableRtk(self, enable) - - def getEventTriggerStatus(self, *args): - return _mscl.InertialNode_getEventTriggerStatus(self, *args) - - def getEventActionStatus(self, *args): - return _mscl.InertialNode_getEventActionStatus(self, *args) - - def getNmeaMessageFormat(self): - return _mscl.InertialNode_getNmeaMessageFormat(self) - - def setNmeaMessageFormat(self, nmeaFormats): - return _mscl.InertialNode_setNmeaMessageFormat(self, nmeaFormats) - - def getAidingMeasurementReferenceFrames(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrames(self, *args) - - def setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds=False): - return _mscl.InertialNode_setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds) - - def getAidingMeasurementReferenceFrame(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrame(self, *args) - - def setAidingMeasurementReferenceFrame(self, id, frame): - return _mscl.InertialNode_setAidingMeasurementReferenceFrame(self, id, frame) - - def setAidingMeasurementResponseMode(self, mode): - return _mscl.InertialNode_setAidingMeasurementResponseMode(self, mode) - - def getAidingMeasurementResponseMode(self): - return _mscl.InertialNode_getAidingMeasurementResponseMode(self) - - def sendAidingMeasurement(self, *args): - return _mscl.InertialNode_sendAidingMeasurement(self, *args) - - def sendAidingMeasurement_readEcho(self, *args): - return _mscl.InertialNode_sendAidingMeasurement_readEcho(self, *args) - -# Register InertialNode in _mscl: -_mscl.InertialNode_swigregister(InertialNode) - -class DisplacementNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.DisplacementNode_swiginit(self, _mscl.new_DisplacementNode(connection)) - __swig_destroy__ = _mscl.delete_DisplacementNode - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.DisplacementNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - @staticmethod - def deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - - def connection(self): - return _mscl.DisplacementNode_connection(self) - - def features(self): - return _mscl.DisplacementNode_features(self) - - def lastCommunicationTime(self): - return _mscl.DisplacementNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.DisplacementNode_lastDeviceState(self) - - def firmwareVersion(self): - return _mscl.DisplacementNode_firmwareVersion(self) - - def model(self): - return _mscl.DisplacementNode_model(self) - - def modelName(self): - return _mscl.DisplacementNode_modelName(self) - - def modelNumber(self): - return _mscl.DisplacementNode_modelNumber(self) - - def serialNumber(self): - return _mscl.DisplacementNode_serialNumber(self) - - def lotNumber(self): - return _mscl.DisplacementNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.DisplacementNode_deviceOptions(self) - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.DisplacementNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.DisplacementNode_totalPackets(self) - - def timeout(self, *args): - return _mscl.DisplacementNode_timeout(self, *args) - - def name(self): - return _mscl.DisplacementNode_name(self) - - def ping(self): - return _mscl.DisplacementNode_ping(self) - - def setToIdle(self): - return _mscl.DisplacementNode_setToIdle(self) - - def cyclePower(self): - return _mscl.DisplacementNode_cyclePower(self) - - def resume(self): - return _mscl.DisplacementNode_resume(self) - - def getDisplacementOutputDataRate(self): - return _mscl.DisplacementNode_getDisplacementOutputDataRate(self) - - def getAnalogToDisplacementCal(self): - return _mscl.DisplacementNode_getAnalogToDisplacementCal(self) - - def setDeviceTime(self, *args): - return _mscl.DisplacementNode_setDeviceTime(self, *args) - -# Register DisplacementNode in _mscl: -_mscl.DisplacementNode_swigregister(DisplacementNode) - -def DisplacementNode_deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - -class RTKNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.RTKNode_swiginit(self, _mscl.new_RTKNode(connection)) - __swig_destroy__ = _mscl.delete_RTKNode - - def getCommunicationMode(self): - return _mscl.RTKNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.RTKNode_setCommunicationMode(self, communicationMode) - - def getDeviceStatusFlags(self): - return _mscl.RTKNode_getDeviceStatusFlags(self) - - def getActivationCode(self): - return _mscl.RTKNode_getActivationCode(self) - - def getStatusBitfieldVersion(self): - return _mscl.RTKNode_getStatusBitfieldVersion(self) - -# Register RTKNode in _mscl: -_mscl.RTKNode_swigregister(RTKNode) - -class ChannelData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelData___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelData___bool__(self) - - def __len__(self): - return _mscl.ChannelData___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelData___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelData___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelData___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelData___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelData___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelData___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelData_pop(self) - - def append(self, x): - return _mscl.ChannelData_append(self, x) - - def empty(self): - return _mscl.ChannelData_empty(self) - - def size(self): - return _mscl.ChannelData_size(self) - - def swap(self, v): - return _mscl.ChannelData_swap(self, v) - - def begin(self): - return _mscl.ChannelData_begin(self) - - def end(self): - return _mscl.ChannelData_end(self) - - def rbegin(self): - return _mscl.ChannelData_rbegin(self) - - def rend(self): - return _mscl.ChannelData_rend(self) - - def clear(self): - return _mscl.ChannelData_clear(self) - - def get_allocator(self): - return _mscl.ChannelData_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelData_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelData_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelData_swiginit(self, _mscl.new_ChannelData(*args)) - - def push_back(self, x): - return _mscl.ChannelData_push_back(self, x) - - def front(self): - return _mscl.ChannelData_front(self) - - def back(self): - return _mscl.ChannelData_back(self) - - def assign(self, n, x): - return _mscl.ChannelData_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelData_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelData_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelData_reserve(self, n) - - def capacity(self): - return _mscl.ChannelData_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelData - -# Register ChannelData in _mscl: -_mscl.ChannelData_swigregister(ChannelData) - -class MipDataPoints(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPoints_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPoints___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPoints___bool__(self) - - def __len__(self): - return _mscl.MipDataPoints___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPoints___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPoints___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPoints___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPoints___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPoints___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPoints___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPoints_pop(self) - - def append(self, x): - return _mscl.MipDataPoints_append(self, x) - - def empty(self): - return _mscl.MipDataPoints_empty(self) - - def size(self): - return _mscl.MipDataPoints_size(self) - - def swap(self, v): - return _mscl.MipDataPoints_swap(self, v) - - def begin(self): - return _mscl.MipDataPoints_begin(self) - - def end(self): - return _mscl.MipDataPoints_end(self) - - def rbegin(self): - return _mscl.MipDataPoints_rbegin(self) - - def rend(self): - return _mscl.MipDataPoints_rend(self) - - def clear(self): - return _mscl.MipDataPoints_clear(self) - - def get_allocator(self): - return _mscl.MipDataPoints_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPoints_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPoints_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPoints_swiginit(self, _mscl.new_MipDataPoints(*args)) - - def push_back(self, x): - return _mscl.MipDataPoints_push_back(self, x) - - def front(self): - return _mscl.MipDataPoints_front(self) - - def back(self): - return _mscl.MipDataPoints_back(self) - - def assign(self, n, x): - return _mscl.MipDataPoints_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPoints_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPoints_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPoints_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPoints_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPoints - -# Register MipDataPoints in _mscl: -_mscl.MipDataPoints_swigregister(MipDataPoints) - -class Bytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bytes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bytes___nonzero__(self) - - def __bool__(self): - return _mscl.Bytes___bool__(self) - - def __len__(self): - return _mscl.Bytes___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bytes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bytes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bytes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bytes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bytes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bytes___setitem__(self, *args) - - def pop(self): - return _mscl.Bytes_pop(self) - - def append(self, x): - return _mscl.Bytes_append(self, x) - - def empty(self): - return _mscl.Bytes_empty(self) - - def size(self): - return _mscl.Bytes_size(self) - - def swap(self, v): - return _mscl.Bytes_swap(self, v) - - def begin(self): - return _mscl.Bytes_begin(self) - - def end(self): - return _mscl.Bytes_end(self) - - def rbegin(self): - return _mscl.Bytes_rbegin(self) - - def rend(self): - return _mscl.Bytes_rend(self) - - def clear(self): - return _mscl.Bytes_clear(self) - - def get_allocator(self): - return _mscl.Bytes_get_allocator(self) - - def pop_back(self): - return _mscl.Bytes_pop_back(self) - - def erase(self, *args): - return _mscl.Bytes_erase(self, *args) - - def __init__(self, *args): - _mscl.Bytes_swiginit(self, _mscl.new_Bytes(*args)) - - def push_back(self, x): - return _mscl.Bytes_push_back(self, x) - - def front(self): - return _mscl.Bytes_front(self) - - def back(self): - return _mscl.Bytes_back(self) - - def assign(self, n, x): - return _mscl.Bytes_assign(self, n, x) - - def resize(self, *args): - return _mscl.Bytes_resize(self, *args) - - def insert(self, *args): - return _mscl.Bytes_insert(self, *args) - - def reserve(self, n): - return _mscl.Bytes_reserve(self, n) - - def capacity(self): - return _mscl.Bytes_capacity(self) - __swig_destroy__ = _mscl.delete_Bytes - -# Register Bytes in _mscl: -_mscl.Bytes_swigregister(Bytes) - -class BytesCollection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.BytesCollection_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.BytesCollection___nonzero__(self) - - def __bool__(self): - return _mscl.BytesCollection___bool__(self) - - def __len__(self): - return _mscl.BytesCollection___len__(self) - - def __getslice__(self, i, j): - return _mscl.BytesCollection___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.BytesCollection___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.BytesCollection___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.BytesCollection___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.BytesCollection___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.BytesCollection___setitem__(self, *args) - - def pop(self): - return _mscl.BytesCollection_pop(self) - - def append(self, x): - return _mscl.BytesCollection_append(self, x) - - def empty(self): - return _mscl.BytesCollection_empty(self) - - def size(self): - return _mscl.BytesCollection_size(self) - - def swap(self, v): - return _mscl.BytesCollection_swap(self, v) - - def begin(self): - return _mscl.BytesCollection_begin(self) - - def end(self): - return _mscl.BytesCollection_end(self) - - def rbegin(self): - return _mscl.BytesCollection_rbegin(self) - - def rend(self): - return _mscl.BytesCollection_rend(self) - - def clear(self): - return _mscl.BytesCollection_clear(self) - - def get_allocator(self): - return _mscl.BytesCollection_get_allocator(self) - - def pop_back(self): - return _mscl.BytesCollection_pop_back(self) - - def erase(self, *args): - return _mscl.BytesCollection_erase(self, *args) - - def __init__(self, *args): - _mscl.BytesCollection_swiginit(self, _mscl.new_BytesCollection(*args)) - - def push_back(self, x): - return _mscl.BytesCollection_push_back(self, x) - - def front(self): - return _mscl.BytesCollection_front(self) - - def back(self): - return _mscl.BytesCollection_back(self) - - def assign(self, n, x): - return _mscl.BytesCollection_assign(self, n, x) - - def resize(self, *args): - return _mscl.BytesCollection_resize(self, *args) - - def insert(self, *args): - return _mscl.BytesCollection_insert(self, *args) - - def reserve(self, n): - return _mscl.BytesCollection_reserve(self, n) - - def capacity(self): - return _mscl.BytesCollection_capacity(self) - __swig_destroy__ = _mscl.delete_BytesCollection - -# Register BytesCollection in _mscl: -_mscl.BytesCollection_swigregister(BytesCollection) - -class DeviceList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceList___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceList___bool__(self) - - def __len__(self): - return _mscl.DeviceList___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceList___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceList___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceList_has_key(self, key) - - def keys(self): - return _mscl.DeviceList_keys(self) - - def values(self): - return _mscl.DeviceList_values(self) - - def items(self): - return _mscl.DeviceList_items(self) - - def __contains__(self, key): - return _mscl.DeviceList___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceList_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceList_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceList___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceList_asdict(self) - - def __init__(self, *args): - _mscl.DeviceList_swiginit(self, _mscl.new_DeviceList(*args)) - - def empty(self): - return _mscl.DeviceList_empty(self) - - def size(self): - return _mscl.DeviceList_size(self) - - def swap(self, v): - return _mscl.DeviceList_swap(self, v) - - def begin(self): - return _mscl.DeviceList_begin(self) - - def end(self): - return _mscl.DeviceList_end(self) - - def rbegin(self): - return _mscl.DeviceList_rbegin(self) - - def rend(self): - return _mscl.DeviceList_rend(self) - - def clear(self): - return _mscl.DeviceList_clear(self) - - def get_allocator(self): - return _mscl.DeviceList_get_allocator(self) - - def count(self, x): - return _mscl.DeviceList_count(self, x) - - def erase(self, *args): - return _mscl.DeviceList_erase(self, *args) - - def find(self, x): - return _mscl.DeviceList_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceList_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceList_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceList - -# Register DeviceList in _mscl: -_mscl.DeviceList_swigregister(DeviceList) - -class NodeDiscoveries(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NodeDiscoveries_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NodeDiscoveries___nonzero__(self) - - def __bool__(self): - return _mscl.NodeDiscoveries___bool__(self) - - def __len__(self): - return _mscl.NodeDiscoveries___len__(self) - - def __getslice__(self, i, j): - return _mscl.NodeDiscoveries___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NodeDiscoveries___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NodeDiscoveries___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NodeDiscoveries___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NodeDiscoveries___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NodeDiscoveries___setitem__(self, *args) - - def pop(self): - return _mscl.NodeDiscoveries_pop(self) - - def append(self, x): - return _mscl.NodeDiscoveries_append(self, x) - - def empty(self): - return _mscl.NodeDiscoveries_empty(self) - - def size(self): - return _mscl.NodeDiscoveries_size(self) - - def swap(self, v): - return _mscl.NodeDiscoveries_swap(self, v) - - def begin(self): - return _mscl.NodeDiscoveries_begin(self) - - def end(self): - return _mscl.NodeDiscoveries_end(self) - - def rbegin(self): - return _mscl.NodeDiscoveries_rbegin(self) - - def rend(self): - return _mscl.NodeDiscoveries_rend(self) - - def clear(self): - return _mscl.NodeDiscoveries_clear(self) - - def get_allocator(self): - return _mscl.NodeDiscoveries_get_allocator(self) - - def pop_back(self): - return _mscl.NodeDiscoveries_pop_back(self) - - def erase(self, *args): - return _mscl.NodeDiscoveries_erase(self, *args) - - def __init__(self, *args): - _mscl.NodeDiscoveries_swiginit(self, _mscl.new_NodeDiscoveries(*args)) - - def push_back(self, x): - return _mscl.NodeDiscoveries_push_back(self, x) - - def front(self): - return _mscl.NodeDiscoveries_front(self) - - def back(self): - return _mscl.NodeDiscoveries_back(self) - - def assign(self, n, x): - return _mscl.NodeDiscoveries_assign(self, n, x) - - def resize(self, *args): - return _mscl.NodeDiscoveries_resize(self, *args) - - def insert(self, *args): - return _mscl.NodeDiscoveries_insert(self, *args) - - def reserve(self, n): - return _mscl.NodeDiscoveries_reserve(self, n) - - def capacity(self): - return _mscl.NodeDiscoveries_capacity(self) - __swig_destroy__ = _mscl.delete_NodeDiscoveries - -# Register NodeDiscoveries in _mscl: -_mscl.NodeDiscoveries_swigregister(NodeDiscoveries) - -class DataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.DataSweeps___bool__(self) - - def __len__(self): - return _mscl.DataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.DataSweeps_pop(self) - - def append(self, x): - return _mscl.DataSweeps_append(self, x) - - def empty(self): - return _mscl.DataSweeps_empty(self) - - def size(self): - return _mscl.DataSweeps_size(self) - - def swap(self, v): - return _mscl.DataSweeps_swap(self, v) - - def begin(self): - return _mscl.DataSweeps_begin(self) - - def end(self): - return _mscl.DataSweeps_end(self) - - def rbegin(self): - return _mscl.DataSweeps_rbegin(self) - - def rend(self): - return _mscl.DataSweeps_rend(self) - - def clear(self): - return _mscl.DataSweeps_clear(self) - - def get_allocator(self): - return _mscl.DataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.DataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.DataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.DataSweeps_swiginit(self, _mscl.new_DataSweeps(*args)) - - def push_back(self, x): - return _mscl.DataSweeps_push_back(self, x) - - def front(self): - return _mscl.DataSweeps_front(self) - - def back(self): - return _mscl.DataSweeps_back(self) - - def assign(self, n, x): - return _mscl.DataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.DataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.DataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.DataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_DataSweeps - -# Register DataSweeps in _mscl: -_mscl.DataSweeps_swigregister(DataSweeps) - -class LoggedDataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LoggedDataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LoggedDataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.LoggedDataSweeps___bool__(self) - - def __len__(self): - return _mscl.LoggedDataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.LoggedDataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LoggedDataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LoggedDataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LoggedDataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LoggedDataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LoggedDataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.LoggedDataSweeps_pop(self) - - def append(self, x): - return _mscl.LoggedDataSweeps_append(self, x) - - def empty(self): - return _mscl.LoggedDataSweeps_empty(self) - - def size(self): - return _mscl.LoggedDataSweeps_size(self) - - def swap(self, v): - return _mscl.LoggedDataSweeps_swap(self, v) - - def begin(self): - return _mscl.LoggedDataSweeps_begin(self) - - def end(self): - return _mscl.LoggedDataSweeps_end(self) - - def rbegin(self): - return _mscl.LoggedDataSweeps_rbegin(self) - - def rend(self): - return _mscl.LoggedDataSweeps_rend(self) - - def clear(self): - return _mscl.LoggedDataSweeps_clear(self) - - def get_allocator(self): - return _mscl.LoggedDataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.LoggedDataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.LoggedDataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.LoggedDataSweeps_swiginit(self, _mscl.new_LoggedDataSweeps(*args)) - - def push_back(self, x): - return _mscl.LoggedDataSweeps_push_back(self, x) - - def front(self): - return _mscl.LoggedDataSweeps_front(self) - - def back(self): - return _mscl.LoggedDataSweeps_back(self) - - def assign(self, n, x): - return _mscl.LoggedDataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.LoggedDataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.LoggedDataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.LoggedDataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.LoggedDataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweeps - -# Register LoggedDataSweeps in _mscl: -_mscl.LoggedDataSweeps_swigregister(LoggedDataSweeps) - -class MipDataPackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPackets___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPackets___bool__(self) - - def __len__(self): - return _mscl.MipDataPackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPackets___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPackets_pop(self) - - def append(self, x): - return _mscl.MipDataPackets_append(self, x) - - def empty(self): - return _mscl.MipDataPackets_empty(self) - - def size(self): - return _mscl.MipDataPackets_size(self) - - def swap(self, v): - return _mscl.MipDataPackets_swap(self, v) - - def begin(self): - return _mscl.MipDataPackets_begin(self) - - def end(self): - return _mscl.MipDataPackets_end(self) - - def rbegin(self): - return _mscl.MipDataPackets_rbegin(self) - - def rend(self): - return _mscl.MipDataPackets_rend(self) - - def clear(self): - return _mscl.MipDataPackets_clear(self) - - def get_allocator(self): - return _mscl.MipDataPackets_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPackets_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPackets_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPackets_swiginit(self, _mscl.new_MipDataPackets(*args)) - - def push_back(self, x): - return _mscl.MipDataPackets_push_back(self, x) - - def front(self): - return _mscl.MipDataPackets_front(self) - - def back(self): - return _mscl.MipDataPackets_back(self) - - def assign(self, n, x): - return _mscl.MipDataPackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPackets_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPackets_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPackets_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPackets_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPackets - -# Register MipDataPackets in _mscl: -_mscl.MipDataPackets_swigregister(MipDataPackets) - -class RawBytePackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RawBytePackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RawBytePackets___nonzero__(self) - - def __bool__(self): - return _mscl.RawBytePackets___bool__(self) - - def __len__(self): - return _mscl.RawBytePackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.RawBytePackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.RawBytePackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.RawBytePackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.RawBytePackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.RawBytePackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.RawBytePackets___setitem__(self, *args) - - def pop(self): - return _mscl.RawBytePackets_pop(self) - - def append(self, x): - return _mscl.RawBytePackets_append(self, x) - - def empty(self): - return _mscl.RawBytePackets_empty(self) - - def size(self): - return _mscl.RawBytePackets_size(self) - - def swap(self, v): - return _mscl.RawBytePackets_swap(self, v) - - def begin(self): - return _mscl.RawBytePackets_begin(self) - - def end(self): - return _mscl.RawBytePackets_end(self) - - def rbegin(self): - return _mscl.RawBytePackets_rbegin(self) - - def rend(self): - return _mscl.RawBytePackets_rend(self) - - def clear(self): - return _mscl.RawBytePackets_clear(self) - - def get_allocator(self): - return _mscl.RawBytePackets_get_allocator(self) - - def pop_back(self): - return _mscl.RawBytePackets_pop_back(self) - - def erase(self, *args): - return _mscl.RawBytePackets_erase(self, *args) - - def __init__(self, *args): - _mscl.RawBytePackets_swiginit(self, _mscl.new_RawBytePackets(*args)) - - def push_back(self, x): - return _mscl.RawBytePackets_push_back(self, x) - - def front(self): - return _mscl.RawBytePackets_front(self) - - def back(self): - return _mscl.RawBytePackets_back(self) - - def assign(self, n, x): - return _mscl.RawBytePackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.RawBytePackets_resize(self, *args) - - def insert(self, *args): - return _mscl.RawBytePackets_insert(self, *args) - - def reserve(self, n): - return _mscl.RawBytePackets_reserve(self, n) - - def capacity(self): - return _mscl.RawBytePackets_capacity(self) - __swig_destroy__ = _mscl.delete_RawBytePackets - -# Register RawBytePackets in _mscl: -_mscl.RawBytePackets_swigregister(RawBytePackets) - -class MipChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannels___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannels___bool__(self) - - def __len__(self): - return _mscl.MipChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannels___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannels_pop(self) - - def append(self, x): - return _mscl.MipChannels_append(self, x) - - def empty(self): - return _mscl.MipChannels_empty(self) - - def size(self): - return _mscl.MipChannels_size(self) - - def swap(self, v): - return _mscl.MipChannels_swap(self, v) - - def begin(self): - return _mscl.MipChannels_begin(self) - - def end(self): - return _mscl.MipChannels_end(self) - - def rbegin(self): - return _mscl.MipChannels_rbegin(self) - - def rend(self): - return _mscl.MipChannels_rend(self) - - def clear(self): - return _mscl.MipChannels_clear(self) - - def get_allocator(self): - return _mscl.MipChannels_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannels_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannels_swiginit(self, _mscl.new_MipChannels(*args)) - - def push_back(self, x): - return _mscl.MipChannels_push_back(self, x) - - def front(self): - return _mscl.MipChannels_front(self) - - def back(self): - return _mscl.MipChannels_back(self) - - def assign(self, n, x): - return _mscl.MipChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannels_reserve(self, n) - - def capacity(self): - return _mscl.MipChannels_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannels - -# Register MipChannels in _mscl: -_mscl.MipChannels_swigregister(MipChannels) - -class DataCollectionMethods(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataCollectionMethods_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataCollectionMethods___nonzero__(self) - - def __bool__(self): - return _mscl.DataCollectionMethods___bool__(self) - - def __len__(self): - return _mscl.DataCollectionMethods___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataCollectionMethods___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataCollectionMethods___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataCollectionMethods___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataCollectionMethods___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataCollectionMethods___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataCollectionMethods___setitem__(self, *args) - - def pop(self): - return _mscl.DataCollectionMethods_pop(self) - - def append(self, x): - return _mscl.DataCollectionMethods_append(self, x) - - def empty(self): - return _mscl.DataCollectionMethods_empty(self) - - def size(self): - return _mscl.DataCollectionMethods_size(self) - - def swap(self, v): - return _mscl.DataCollectionMethods_swap(self, v) - - def begin(self): - return _mscl.DataCollectionMethods_begin(self) - - def end(self): - return _mscl.DataCollectionMethods_end(self) - - def rbegin(self): - return _mscl.DataCollectionMethods_rbegin(self) - - def rend(self): - return _mscl.DataCollectionMethods_rend(self) - - def clear(self): - return _mscl.DataCollectionMethods_clear(self) - - def get_allocator(self): - return _mscl.DataCollectionMethods_get_allocator(self) - - def pop_back(self): - return _mscl.DataCollectionMethods_pop_back(self) - - def erase(self, *args): - return _mscl.DataCollectionMethods_erase(self, *args) - - def __init__(self, *args): - _mscl.DataCollectionMethods_swiginit(self, _mscl.new_DataCollectionMethods(*args)) - - def push_back(self, x): - return _mscl.DataCollectionMethods_push_back(self, x) - - def front(self): - return _mscl.DataCollectionMethods_front(self) - - def back(self): - return _mscl.DataCollectionMethods_back(self) - - def assign(self, n, x): - return _mscl.DataCollectionMethods_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataCollectionMethods_resize(self, *args) - - def insert(self, *args): - return _mscl.DataCollectionMethods_insert(self, *args) - - def reserve(self, n): - return _mscl.DataCollectionMethods_reserve(self, n) - - def capacity(self): - return _mscl.DataCollectionMethods_capacity(self) - __swig_destroy__ = _mscl.delete_DataCollectionMethods - -# Register DataCollectionMethods in _mscl: -_mscl.DataCollectionMethods_swigregister(DataCollectionMethods) - -class DataFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataFormats___nonzero__(self) - - def __bool__(self): - return _mscl.DataFormats___bool__(self) - - def __len__(self): - return _mscl.DataFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataFormats___setitem__(self, *args) - - def pop(self): - return _mscl.DataFormats_pop(self) - - def append(self, x): - return _mscl.DataFormats_append(self, x) - - def empty(self): - return _mscl.DataFormats_empty(self) - - def size(self): - return _mscl.DataFormats_size(self) - - def swap(self, v): - return _mscl.DataFormats_swap(self, v) - - def begin(self): - return _mscl.DataFormats_begin(self) - - def end(self): - return _mscl.DataFormats_end(self) - - def rbegin(self): - return _mscl.DataFormats_rbegin(self) - - def rend(self): - return _mscl.DataFormats_rend(self) - - def clear(self): - return _mscl.DataFormats_clear(self) - - def get_allocator(self): - return _mscl.DataFormats_get_allocator(self) - - def pop_back(self): - return _mscl.DataFormats_pop_back(self) - - def erase(self, *args): - return _mscl.DataFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.DataFormats_swiginit(self, _mscl.new_DataFormats(*args)) - - def push_back(self, x): - return _mscl.DataFormats_push_back(self, x) - - def front(self): - return _mscl.DataFormats_front(self) - - def back(self): - return _mscl.DataFormats_back(self) - - def assign(self, n, x): - return _mscl.DataFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.DataFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.DataFormats_reserve(self, n) - - def capacity(self): - return _mscl.DataFormats_capacity(self) - __swig_destroy__ = _mscl.delete_DataFormats - -# Register DataFormats in _mscl: -_mscl.DataFormats_swigregister(DataFormats) - -class WirelessSampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessSampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessSampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessSampleRates___bool__(self) - - def __len__(self): - return _mscl.WirelessSampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessSampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessSampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessSampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessSampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessSampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessSampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessSampleRates_pop(self) - - def append(self, x): - return _mscl.WirelessSampleRates_append(self, x) - - def empty(self): - return _mscl.WirelessSampleRates_empty(self) - - def size(self): - return _mscl.WirelessSampleRates_size(self) - - def swap(self, v): - return _mscl.WirelessSampleRates_swap(self, v) - - def begin(self): - return _mscl.WirelessSampleRates_begin(self) - - def end(self): - return _mscl.WirelessSampleRates_end(self) - - def rbegin(self): - return _mscl.WirelessSampleRates_rbegin(self) - - def rend(self): - return _mscl.WirelessSampleRates_rend(self) - - def clear(self): - return _mscl.WirelessSampleRates_clear(self) - - def get_allocator(self): - return _mscl.WirelessSampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessSampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessSampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessSampleRates_swiginit(self, _mscl.new_WirelessSampleRates(*args)) - - def push_back(self, x): - return _mscl.WirelessSampleRates_push_back(self, x) - - def front(self): - return _mscl.WirelessSampleRates_front(self) - - def back(self): - return _mscl.WirelessSampleRates_back(self) - - def assign(self, n, x): - return _mscl.WirelessSampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessSampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessSampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessSampleRates_reserve(self, n) - - def capacity(self): - return _mscl.WirelessSampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessSampleRates - -# Register WirelessSampleRates in _mscl: -_mscl.WirelessSampleRates_swigregister(WirelessSampleRates) - -class SamplingModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SamplingModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SamplingModes___nonzero__(self) - - def __bool__(self): - return _mscl.SamplingModes___bool__(self) - - def __len__(self): - return _mscl.SamplingModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SamplingModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SamplingModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SamplingModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SamplingModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SamplingModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SamplingModes___setitem__(self, *args) - - def pop(self): - return _mscl.SamplingModes_pop(self) - - def append(self, x): - return _mscl.SamplingModes_append(self, x) - - def empty(self): - return _mscl.SamplingModes_empty(self) - - def size(self): - return _mscl.SamplingModes_size(self) - - def swap(self, v): - return _mscl.SamplingModes_swap(self, v) - - def begin(self): - return _mscl.SamplingModes_begin(self) - - def end(self): - return _mscl.SamplingModes_end(self) - - def rbegin(self): - return _mscl.SamplingModes_rbegin(self) - - def rend(self): - return _mscl.SamplingModes_rend(self) - - def clear(self): - return _mscl.SamplingModes_clear(self) - - def get_allocator(self): - return _mscl.SamplingModes_get_allocator(self) - - def pop_back(self): - return _mscl.SamplingModes_pop_back(self) - - def erase(self, *args): - return _mscl.SamplingModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SamplingModes_swiginit(self, _mscl.new_SamplingModes(*args)) - - def push_back(self, x): - return _mscl.SamplingModes_push_back(self, x) - - def front(self): - return _mscl.SamplingModes_front(self) - - def back(self): - return _mscl.SamplingModes_back(self) - - def assign(self, n, x): - return _mscl.SamplingModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SamplingModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SamplingModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SamplingModes_reserve(self, n) - - def capacity(self): - return _mscl.SamplingModes_capacity(self) - __swig_destroy__ = _mscl.delete_SamplingModes - -# Register SamplingModes in _mscl: -_mscl.SamplingModes_swigregister(SamplingModes) - -class DefaultModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DefaultModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DefaultModes___nonzero__(self) - - def __bool__(self): - return _mscl.DefaultModes___bool__(self) - - def __len__(self): - return _mscl.DefaultModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DefaultModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DefaultModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DefaultModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DefaultModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DefaultModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DefaultModes___setitem__(self, *args) - - def pop(self): - return _mscl.DefaultModes_pop(self) - - def append(self, x): - return _mscl.DefaultModes_append(self, x) - - def empty(self): - return _mscl.DefaultModes_empty(self) - - def size(self): - return _mscl.DefaultModes_size(self) - - def swap(self, v): - return _mscl.DefaultModes_swap(self, v) - - def begin(self): - return _mscl.DefaultModes_begin(self) - - def end(self): - return _mscl.DefaultModes_end(self) - - def rbegin(self): - return _mscl.DefaultModes_rbegin(self) - - def rend(self): - return _mscl.DefaultModes_rend(self) - - def clear(self): - return _mscl.DefaultModes_clear(self) - - def get_allocator(self): - return _mscl.DefaultModes_get_allocator(self) - - def pop_back(self): - return _mscl.DefaultModes_pop_back(self) - - def erase(self, *args): - return _mscl.DefaultModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DefaultModes_swiginit(self, _mscl.new_DefaultModes(*args)) - - def push_back(self, x): - return _mscl.DefaultModes_push_back(self, x) - - def front(self): - return _mscl.DefaultModes_front(self) - - def back(self): - return _mscl.DefaultModes_back(self) - - def assign(self, n, x): - return _mscl.DefaultModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DefaultModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DefaultModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DefaultModes_reserve(self, n) - - def capacity(self): - return _mscl.DefaultModes_capacity(self) - __swig_destroy__ = _mscl.delete_DefaultModes - -# Register DefaultModes in _mscl: -_mscl.DefaultModes_swigregister(DefaultModes) - -class TransmitPowers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransmitPowers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransmitPowers___nonzero__(self) - - def __bool__(self): - return _mscl.TransmitPowers___bool__(self) - - def __len__(self): - return _mscl.TransmitPowers___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransmitPowers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransmitPowers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransmitPowers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransmitPowers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransmitPowers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransmitPowers___setitem__(self, *args) - - def pop(self): - return _mscl.TransmitPowers_pop(self) - - def append(self, x): - return _mscl.TransmitPowers_append(self, x) - - def empty(self): - return _mscl.TransmitPowers_empty(self) - - def size(self): - return _mscl.TransmitPowers_size(self) - - def swap(self, v): - return _mscl.TransmitPowers_swap(self, v) - - def begin(self): - return _mscl.TransmitPowers_begin(self) - - def end(self): - return _mscl.TransmitPowers_end(self) - - def rbegin(self): - return _mscl.TransmitPowers_rbegin(self) - - def rend(self): - return _mscl.TransmitPowers_rend(self) - - def clear(self): - return _mscl.TransmitPowers_clear(self) - - def get_allocator(self): - return _mscl.TransmitPowers_get_allocator(self) - - def pop_back(self): - return _mscl.TransmitPowers_pop_back(self) - - def erase(self, *args): - return _mscl.TransmitPowers_erase(self, *args) - - def __init__(self, *args): - _mscl.TransmitPowers_swiginit(self, _mscl.new_TransmitPowers(*args)) - - def push_back(self, x): - return _mscl.TransmitPowers_push_back(self, x) - - def front(self): - return _mscl.TransmitPowers_front(self) - - def back(self): - return _mscl.TransmitPowers_back(self) - - def assign(self, n, x): - return _mscl.TransmitPowers_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransmitPowers_resize(self, *args) - - def insert(self, *args): - return _mscl.TransmitPowers_insert(self, *args) - - def reserve(self, n): - return _mscl.TransmitPowers_reserve(self, n) - - def capacity(self): - return _mscl.TransmitPowers_capacity(self) - __swig_destroy__ = _mscl.delete_TransmitPowers - -# Register TransmitPowers in _mscl: -_mscl.TransmitPowers_swigregister(TransmitPowers) - -class ChannelGroupSettings(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroupSettings_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroupSettings___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroupSettings___bool__(self) - - def __len__(self): - return _mscl.ChannelGroupSettings___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroupSettings___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroupSettings___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroupSettings___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroupSettings___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroupSettings___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroupSettings___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroupSettings_pop(self) - - def append(self, x): - return _mscl.ChannelGroupSettings_append(self, x) - - def empty(self): - return _mscl.ChannelGroupSettings_empty(self) - - def size(self): - return _mscl.ChannelGroupSettings_size(self) - - def swap(self, v): - return _mscl.ChannelGroupSettings_swap(self, v) - - def begin(self): - return _mscl.ChannelGroupSettings_begin(self) - - def end(self): - return _mscl.ChannelGroupSettings_end(self) - - def rbegin(self): - return _mscl.ChannelGroupSettings_rbegin(self) - - def rend(self): - return _mscl.ChannelGroupSettings_rend(self) - - def clear(self): - return _mscl.ChannelGroupSettings_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroupSettings_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroupSettings_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroupSettings_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroupSettings_swiginit(self, _mscl.new_ChannelGroupSettings(*args)) - - def push_back(self, x): - return _mscl.ChannelGroupSettings_push_back(self, x) - - def front(self): - return _mscl.ChannelGroupSettings_front(self) - - def back(self): - return _mscl.ChannelGroupSettings_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroupSettings_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroupSettings_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroupSettings_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroupSettings_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroupSettings_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroupSettings - -# Register ChannelGroupSettings in _mscl: -_mscl.ChannelGroupSettings_swigregister(ChannelGroupSettings) - -class FatigueModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.FatigueModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.FatigueModes___nonzero__(self) - - def __bool__(self): - return _mscl.FatigueModes___bool__(self) - - def __len__(self): - return _mscl.FatigueModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.FatigueModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.FatigueModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.FatigueModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.FatigueModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.FatigueModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.FatigueModes___setitem__(self, *args) - - def pop(self): - return _mscl.FatigueModes_pop(self) - - def append(self, x): - return _mscl.FatigueModes_append(self, x) - - def empty(self): - return _mscl.FatigueModes_empty(self) - - def size(self): - return _mscl.FatigueModes_size(self) - - def swap(self, v): - return _mscl.FatigueModes_swap(self, v) - - def begin(self): - return _mscl.FatigueModes_begin(self) - - def end(self): - return _mscl.FatigueModes_end(self) - - def rbegin(self): - return _mscl.FatigueModes_rbegin(self) - - def rend(self): - return _mscl.FatigueModes_rend(self) - - def clear(self): - return _mscl.FatigueModes_clear(self) - - def get_allocator(self): - return _mscl.FatigueModes_get_allocator(self) - - def pop_back(self): - return _mscl.FatigueModes_pop_back(self) - - def erase(self, *args): - return _mscl.FatigueModes_erase(self, *args) - - def __init__(self, *args): - _mscl.FatigueModes_swiginit(self, _mscl.new_FatigueModes(*args)) - - def push_back(self, x): - return _mscl.FatigueModes_push_back(self, x) - - def front(self): - return _mscl.FatigueModes_front(self) - - def back(self): - return _mscl.FatigueModes_back(self) - - def assign(self, n, x): - return _mscl.FatigueModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.FatigueModes_resize(self, *args) - - def insert(self, *args): - return _mscl.FatigueModes_insert(self, *args) - - def reserve(self, n): - return _mscl.FatigueModes_reserve(self, n) - - def capacity(self): - return _mscl.FatigueModes_capacity(self) - __swig_destroy__ = _mscl.delete_FatigueModes - -# Register FatigueModes in _mscl: -_mscl.FatigueModes_swigregister(FatigueModes) - -class Filters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Filters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Filters___nonzero__(self) - - def __bool__(self): - return _mscl.Filters___bool__(self) - - def __len__(self): - return _mscl.Filters___len__(self) - - def __getslice__(self, i, j): - return _mscl.Filters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Filters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Filters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Filters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Filters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Filters___setitem__(self, *args) - - def pop(self): - return _mscl.Filters_pop(self) - - def append(self, x): - return _mscl.Filters_append(self, x) - - def empty(self): - return _mscl.Filters_empty(self) - - def size(self): - return _mscl.Filters_size(self) - - def swap(self, v): - return _mscl.Filters_swap(self, v) - - def begin(self): - return _mscl.Filters_begin(self) - - def end(self): - return _mscl.Filters_end(self) - - def rbegin(self): - return _mscl.Filters_rbegin(self) - - def rend(self): - return _mscl.Filters_rend(self) - - def clear(self): - return _mscl.Filters_clear(self) - - def get_allocator(self): - return _mscl.Filters_get_allocator(self) - - def pop_back(self): - return _mscl.Filters_pop_back(self) - - def erase(self, *args): - return _mscl.Filters_erase(self, *args) - - def __init__(self, *args): - _mscl.Filters_swiginit(self, _mscl.new_Filters(*args)) - - def push_back(self, x): - return _mscl.Filters_push_back(self, x) - - def front(self): - return _mscl.Filters_front(self) - - def back(self): - return _mscl.Filters_back(self) - - def assign(self, n, x): - return _mscl.Filters_assign(self, n, x) - - def resize(self, *args): - return _mscl.Filters_resize(self, *args) - - def insert(self, *args): - return _mscl.Filters_insert(self, *args) - - def reserve(self, n): - return _mscl.Filters_reserve(self, n) - - def capacity(self): - return _mscl.Filters_capacity(self) - __swig_destroy__ = _mscl.delete_Filters - -# Register Filters in _mscl: -_mscl.Filters_swigregister(Filters) - -class HighPassFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HighPassFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HighPassFilters___nonzero__(self) - - def __bool__(self): - return _mscl.HighPassFilters___bool__(self) - - def __len__(self): - return _mscl.HighPassFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.HighPassFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HighPassFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HighPassFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HighPassFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HighPassFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HighPassFilters___setitem__(self, *args) - - def pop(self): - return _mscl.HighPassFilters_pop(self) - - def append(self, x): - return _mscl.HighPassFilters_append(self, x) - - def empty(self): - return _mscl.HighPassFilters_empty(self) - - def size(self): - return _mscl.HighPassFilters_size(self) - - def swap(self, v): - return _mscl.HighPassFilters_swap(self, v) - - def begin(self): - return _mscl.HighPassFilters_begin(self) - - def end(self): - return _mscl.HighPassFilters_end(self) - - def rbegin(self): - return _mscl.HighPassFilters_rbegin(self) - - def rend(self): - return _mscl.HighPassFilters_rend(self) - - def clear(self): - return _mscl.HighPassFilters_clear(self) - - def get_allocator(self): - return _mscl.HighPassFilters_get_allocator(self) - - def pop_back(self): - return _mscl.HighPassFilters_pop_back(self) - - def erase(self, *args): - return _mscl.HighPassFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.HighPassFilters_swiginit(self, _mscl.new_HighPassFilters(*args)) - - def push_back(self, x): - return _mscl.HighPassFilters_push_back(self, x) - - def front(self): - return _mscl.HighPassFilters_front(self) - - def back(self): - return _mscl.HighPassFilters_back(self) - - def assign(self, n, x): - return _mscl.HighPassFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.HighPassFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.HighPassFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.HighPassFilters_reserve(self, n) - - def capacity(self): - return _mscl.HighPassFilters_capacity(self) - __swig_destroy__ = _mscl.delete_HighPassFilters - -# Register HighPassFilters in _mscl: -_mscl.HighPassFilters_swigregister(HighPassFilters) - -class StorageLimitModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StorageLimitModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StorageLimitModes___nonzero__(self) - - def __bool__(self): - return _mscl.StorageLimitModes___bool__(self) - - def __len__(self): - return _mscl.StorageLimitModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.StorageLimitModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StorageLimitModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StorageLimitModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StorageLimitModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StorageLimitModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StorageLimitModes___setitem__(self, *args) - - def pop(self): - return _mscl.StorageLimitModes_pop(self) - - def append(self, x): - return _mscl.StorageLimitModes_append(self, x) - - def empty(self): - return _mscl.StorageLimitModes_empty(self) - - def size(self): - return _mscl.StorageLimitModes_size(self) - - def swap(self, v): - return _mscl.StorageLimitModes_swap(self, v) - - def begin(self): - return _mscl.StorageLimitModes_begin(self) - - def end(self): - return _mscl.StorageLimitModes_end(self) - - def rbegin(self): - return _mscl.StorageLimitModes_rbegin(self) - - def rend(self): - return _mscl.StorageLimitModes_rend(self) - - def clear(self): - return _mscl.StorageLimitModes_clear(self) - - def get_allocator(self): - return _mscl.StorageLimitModes_get_allocator(self) - - def pop_back(self): - return _mscl.StorageLimitModes_pop_back(self) - - def erase(self, *args): - return _mscl.StorageLimitModes_erase(self, *args) - - def __init__(self, *args): - _mscl.StorageLimitModes_swiginit(self, _mscl.new_StorageLimitModes(*args)) - - def push_back(self, x): - return _mscl.StorageLimitModes_push_back(self, x) - - def front(self): - return _mscl.StorageLimitModes_front(self) - - def back(self): - return _mscl.StorageLimitModes_back(self) - - def assign(self, n, x): - return _mscl.StorageLimitModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.StorageLimitModes_resize(self, *args) - - def insert(self, *args): - return _mscl.StorageLimitModes_insert(self, *args) - - def reserve(self, n): - return _mscl.StorageLimitModes_reserve(self, n) - - def capacity(self): - return _mscl.StorageLimitModes_capacity(self) - __swig_destroy__ = _mscl.delete_StorageLimitModes - -# Register StorageLimitModes in _mscl: -_mscl.StorageLimitModes_swigregister(StorageLimitModes) - -class InputRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.InputRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.InputRanges___nonzero__(self) - - def __bool__(self): - return _mscl.InputRanges___bool__(self) - - def __len__(self): - return _mscl.InputRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.InputRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.InputRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.InputRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.InputRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.InputRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.InputRanges___setitem__(self, *args) - - def pop(self): - return _mscl.InputRanges_pop(self) - - def append(self, x): - return _mscl.InputRanges_append(self, x) - - def empty(self): - return _mscl.InputRanges_empty(self) - - def size(self): - return _mscl.InputRanges_size(self) - - def swap(self, v): - return _mscl.InputRanges_swap(self, v) - - def begin(self): - return _mscl.InputRanges_begin(self) - - def end(self): - return _mscl.InputRanges_end(self) - - def rbegin(self): - return _mscl.InputRanges_rbegin(self) - - def rend(self): - return _mscl.InputRanges_rend(self) - - def clear(self): - return _mscl.InputRanges_clear(self) - - def get_allocator(self): - return _mscl.InputRanges_get_allocator(self) - - def pop_back(self): - return _mscl.InputRanges_pop_back(self) - - def erase(self, *args): - return _mscl.InputRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.InputRanges_swiginit(self, _mscl.new_InputRanges(*args)) - - def push_back(self, x): - return _mscl.InputRanges_push_back(self, x) - - def front(self): - return _mscl.InputRanges_front(self) - - def back(self): - return _mscl.InputRanges_back(self) - - def assign(self, n, x): - return _mscl.InputRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.InputRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.InputRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.InputRanges_reserve(self, n) - - def capacity(self): - return _mscl.InputRanges_capacity(self) - __swig_destroy__ = _mscl.delete_InputRanges - -# Register InputRanges in _mscl: -_mscl.InputRanges_swigregister(InputRanges) - -class DataModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataModes___nonzero__(self) - - def __bool__(self): - return _mscl.DataModes___bool__(self) - - def __len__(self): - return _mscl.DataModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataModes___setitem__(self, *args) - - def pop(self): - return _mscl.DataModes_pop(self) - - def append(self, x): - return _mscl.DataModes_append(self, x) - - def empty(self): - return _mscl.DataModes_empty(self) - - def size(self): - return _mscl.DataModes_size(self) - - def swap(self, v): - return _mscl.DataModes_swap(self, v) - - def begin(self): - return _mscl.DataModes_begin(self) - - def end(self): - return _mscl.DataModes_end(self) - - def rbegin(self): - return _mscl.DataModes_rbegin(self) - - def rend(self): - return _mscl.DataModes_rend(self) - - def clear(self): - return _mscl.DataModes_clear(self) - - def get_allocator(self): - return _mscl.DataModes_get_allocator(self) - - def pop_back(self): - return _mscl.DataModes_pop_back(self) - - def erase(self, *args): - return _mscl.DataModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DataModes_swiginit(self, _mscl.new_DataModes(*args)) - - def push_back(self, x): - return _mscl.DataModes_push_back(self, x) - - def front(self): - return _mscl.DataModes_front(self) - - def back(self): - return _mscl.DataModes_back(self) - - def assign(self, n, x): - return _mscl.DataModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DataModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DataModes_reserve(self, n) - - def capacity(self): - return _mscl.DataModes_capacity(self) - __swig_destroy__ = _mscl.delete_DataModes - -# Register DataModes in _mscl: -_mscl.DataModes_swigregister(DataModes) - -class CommProtocols(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommProtocols_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommProtocols___nonzero__(self) - - def __bool__(self): - return _mscl.CommProtocols___bool__(self) - - def __len__(self): - return _mscl.CommProtocols___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommProtocols___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommProtocols___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommProtocols___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommProtocols___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommProtocols___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommProtocols___setitem__(self, *args) - - def pop(self): - return _mscl.CommProtocols_pop(self) - - def append(self, x): - return _mscl.CommProtocols_append(self, x) - - def empty(self): - return _mscl.CommProtocols_empty(self) - - def size(self): - return _mscl.CommProtocols_size(self) - - def swap(self, v): - return _mscl.CommProtocols_swap(self, v) - - def begin(self): - return _mscl.CommProtocols_begin(self) - - def end(self): - return _mscl.CommProtocols_end(self) - - def rbegin(self): - return _mscl.CommProtocols_rbegin(self) - - def rend(self): - return _mscl.CommProtocols_rend(self) - - def clear(self): - return _mscl.CommProtocols_clear(self) - - def get_allocator(self): - return _mscl.CommProtocols_get_allocator(self) - - def pop_back(self): - return _mscl.CommProtocols_pop_back(self) - - def erase(self, *args): - return _mscl.CommProtocols_erase(self, *args) - - def __init__(self, *args): - _mscl.CommProtocols_swiginit(self, _mscl.new_CommProtocols(*args)) - - def push_back(self, x): - return _mscl.CommProtocols_push_back(self, x) - - def front(self): - return _mscl.CommProtocols_front(self) - - def back(self): - return _mscl.CommProtocols_back(self) - - def assign(self, n, x): - return _mscl.CommProtocols_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommProtocols_resize(self, *args) - - def insert(self, *args): - return _mscl.CommProtocols_insert(self, *args) - - def reserve(self, n): - return _mscl.CommProtocols_reserve(self, n) - - def capacity(self): - return _mscl.CommProtocols_capacity(self) - __swig_destroy__ = _mscl.delete_CommProtocols - -# Register CommProtocols in _mscl: -_mscl.CommProtocols_swigregister(CommProtocols) - -class Voltages(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Voltages_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Voltages___nonzero__(self) - - def __bool__(self): - return _mscl.Voltages___bool__(self) - - def __len__(self): - return _mscl.Voltages___len__(self) - - def __getslice__(self, i, j): - return _mscl.Voltages___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Voltages___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Voltages___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Voltages___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Voltages___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Voltages___setitem__(self, *args) - - def pop(self): - return _mscl.Voltages_pop(self) - - def append(self, x): - return _mscl.Voltages_append(self, x) - - def empty(self): - return _mscl.Voltages_empty(self) - - def size(self): - return _mscl.Voltages_size(self) - - def swap(self, v): - return _mscl.Voltages_swap(self, v) - - def begin(self): - return _mscl.Voltages_begin(self) - - def end(self): - return _mscl.Voltages_end(self) - - def rbegin(self): - return _mscl.Voltages_rbegin(self) - - def rend(self): - return _mscl.Voltages_rend(self) - - def clear(self): - return _mscl.Voltages_clear(self) - - def get_allocator(self): - return _mscl.Voltages_get_allocator(self) - - def pop_back(self): - return _mscl.Voltages_pop_back(self) - - def erase(self, *args): - return _mscl.Voltages_erase(self, *args) - - def __init__(self, *args): - _mscl.Voltages_swiginit(self, _mscl.new_Voltages(*args)) - - def push_back(self, x): - return _mscl.Voltages_push_back(self, x) - - def front(self): - return _mscl.Voltages_front(self) - - def back(self): - return _mscl.Voltages_back(self) - - def assign(self, n, x): - return _mscl.Voltages_assign(self, n, x) - - def resize(self, *args): - return _mscl.Voltages_resize(self, *args) - - def insert(self, *args): - return _mscl.Voltages_insert(self, *args) - - def reserve(self, n): - return _mscl.Voltages_reserve(self, n) - - def capacity(self): - return _mscl.Voltages_capacity(self) - __swig_destroy__ = _mscl.delete_Voltages - -# Register Voltages in _mscl: -_mscl.Voltages_swigregister(Voltages) - -class SensorOutputModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorOutputModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorOutputModes___nonzero__(self) - - def __bool__(self): - return _mscl.SensorOutputModes___bool__(self) - - def __len__(self): - return _mscl.SensorOutputModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorOutputModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorOutputModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorOutputModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorOutputModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorOutputModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorOutputModes___setitem__(self, *args) - - def pop(self): - return _mscl.SensorOutputModes_pop(self) - - def append(self, x): - return _mscl.SensorOutputModes_append(self, x) - - def empty(self): - return _mscl.SensorOutputModes_empty(self) - - def size(self): - return _mscl.SensorOutputModes_size(self) - - def swap(self, v): - return _mscl.SensorOutputModes_swap(self, v) - - def begin(self): - return _mscl.SensorOutputModes_begin(self) - - def end(self): - return _mscl.SensorOutputModes_end(self) - - def rbegin(self): - return _mscl.SensorOutputModes_rbegin(self) - - def rend(self): - return _mscl.SensorOutputModes_rend(self) - - def clear(self): - return _mscl.SensorOutputModes_clear(self) - - def get_allocator(self): - return _mscl.SensorOutputModes_get_allocator(self) - - def pop_back(self): - return _mscl.SensorOutputModes_pop_back(self) - - def erase(self, *args): - return _mscl.SensorOutputModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorOutputModes_swiginit(self, _mscl.new_SensorOutputModes(*args)) - - def push_back(self, x): - return _mscl.SensorOutputModes_push_back(self, x) - - def front(self): - return _mscl.SensorOutputModes_front(self) - - def back(self): - return _mscl.SensorOutputModes_back(self) - - def assign(self, n, x): - return _mscl.SensorOutputModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorOutputModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorOutputModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorOutputModes_reserve(self, n) - - def capacity(self): - return _mscl.SensorOutputModes_capacity(self) - __swig_destroy__ = _mscl.delete_SensorOutputModes - -# Register SensorOutputModes in _mscl: -_mscl.SensorOutputModes_swigregister(SensorOutputModes) - -class CfcFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CfcFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CfcFilters___nonzero__(self) - - def __bool__(self): - return _mscl.CfcFilters___bool__(self) - - def __len__(self): - return _mscl.CfcFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.CfcFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CfcFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CfcFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CfcFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CfcFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CfcFilters___setitem__(self, *args) - - def pop(self): - return _mscl.CfcFilters_pop(self) - - def append(self, x): - return _mscl.CfcFilters_append(self, x) - - def empty(self): - return _mscl.CfcFilters_empty(self) - - def size(self): - return _mscl.CfcFilters_size(self) - - def swap(self, v): - return _mscl.CfcFilters_swap(self, v) - - def begin(self): - return _mscl.CfcFilters_begin(self) - - def end(self): - return _mscl.CfcFilters_end(self) - - def rbegin(self): - return _mscl.CfcFilters_rbegin(self) - - def rend(self): - return _mscl.CfcFilters_rend(self) - - def clear(self): - return _mscl.CfcFilters_clear(self) - - def get_allocator(self): - return _mscl.CfcFilters_get_allocator(self) - - def pop_back(self): - return _mscl.CfcFilters_pop_back(self) - - def erase(self, *args): - return _mscl.CfcFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.CfcFilters_swiginit(self, _mscl.new_CfcFilters(*args)) - - def push_back(self, x): - return _mscl.CfcFilters_push_back(self, x) - - def front(self): - return _mscl.CfcFilters_front(self) - - def back(self): - return _mscl.CfcFilters_back(self) - - def assign(self, n, x): - return _mscl.CfcFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.CfcFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.CfcFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.CfcFilters_reserve(self, n) - - def capacity(self): - return _mscl.CfcFilters_capacity(self) - __swig_destroy__ = _mscl.delete_CfcFilters - -# Register CfcFilters in _mscl: -_mscl.CfcFilters_swigregister(CfcFilters) - -class TransducerTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransducerTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransducerTypes___nonzero__(self) - - def __bool__(self): - return _mscl.TransducerTypes___bool__(self) - - def __len__(self): - return _mscl.TransducerTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransducerTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransducerTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransducerTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransducerTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransducerTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransducerTypes___setitem__(self, *args) - - def pop(self): - return _mscl.TransducerTypes_pop(self) - - def append(self, x): - return _mscl.TransducerTypes_append(self, x) - - def empty(self): - return _mscl.TransducerTypes_empty(self) - - def size(self): - return _mscl.TransducerTypes_size(self) - - def swap(self, v): - return _mscl.TransducerTypes_swap(self, v) - - def begin(self): - return _mscl.TransducerTypes_begin(self) - - def end(self): - return _mscl.TransducerTypes_end(self) - - def rbegin(self): - return _mscl.TransducerTypes_rbegin(self) - - def rend(self): - return _mscl.TransducerTypes_rend(self) - - def clear(self): - return _mscl.TransducerTypes_clear(self) - - def get_allocator(self): - return _mscl.TransducerTypes_get_allocator(self) - - def pop_back(self): - return _mscl.TransducerTypes_pop_back(self) - - def erase(self, *args): - return _mscl.TransducerTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.TransducerTypes_swiginit(self, _mscl.new_TransducerTypes(*args)) - - def push_back(self, x): - return _mscl.TransducerTypes_push_back(self, x) - - def front(self): - return _mscl.TransducerTypes_front(self) - - def back(self): - return _mscl.TransducerTypes_back(self) - - def assign(self, n, x): - return _mscl.TransducerTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransducerTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.TransducerTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.TransducerTypes_reserve(self, n) - - def capacity(self): - return _mscl.TransducerTypes_capacity(self) - __swig_destroy__ = _mscl.delete_TransducerTypes - -# Register TransducerTypes in _mscl: -_mscl.TransducerTypes_swigregister(TransducerTypes) - -class EepromMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EepromMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EepromMap___nonzero__(self) - - def __bool__(self): - return _mscl.EepromMap___bool__(self) - - def __len__(self): - return _mscl.EepromMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.EepromMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.EepromMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.EepromMap_has_key(self, key) - - def keys(self): - return _mscl.EepromMap_keys(self) - - def values(self): - return _mscl.EepromMap_values(self) - - def items(self): - return _mscl.EepromMap_items(self) - - def __contains__(self, key): - return _mscl.EepromMap___contains__(self, key) - - def key_iterator(self): - return _mscl.EepromMap_key_iterator(self) - - def value_iterator(self): - return _mscl.EepromMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.EepromMap___setitem__(self, *args) - - def asdict(self): - return _mscl.EepromMap_asdict(self) - - def __init__(self, *args): - _mscl.EepromMap_swiginit(self, _mscl.new_EepromMap(*args)) - - def empty(self): - return _mscl.EepromMap_empty(self) - - def size(self): - return _mscl.EepromMap_size(self) - - def swap(self, v): - return _mscl.EepromMap_swap(self, v) - - def begin(self): - return _mscl.EepromMap_begin(self) - - def end(self): - return _mscl.EepromMap_end(self) - - def rbegin(self): - return _mscl.EepromMap_rbegin(self) - - def rend(self): - return _mscl.EepromMap_rend(self) - - def clear(self): - return _mscl.EepromMap_clear(self) - - def get_allocator(self): - return _mscl.EepromMap_get_allocator(self) - - def count(self, x): - return _mscl.EepromMap_count(self, x) - - def erase(self, *args): - return _mscl.EepromMap_erase(self, *args) - - def find(self, x): - return _mscl.EepromMap_find(self, x) - - def lower_bound(self, x): - return _mscl.EepromMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.EepromMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_EepromMap - -# Register EepromMap in _mscl: -_mscl.EepromMap_swigregister(EepromMap) - -class DerivedChannelMasks(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DerivedChannelMasks_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DerivedChannelMasks___nonzero__(self) - - def __bool__(self): - return _mscl.DerivedChannelMasks___bool__(self) - - def __len__(self): - return _mscl.DerivedChannelMasks___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DerivedChannelMasks___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DerivedChannelMasks___delitem__(self, key) - - def has_key(self, key): - return _mscl.DerivedChannelMasks_has_key(self, key) - - def keys(self): - return _mscl.DerivedChannelMasks_keys(self) - - def values(self): - return _mscl.DerivedChannelMasks_values(self) - - def items(self): - return _mscl.DerivedChannelMasks_items(self) - - def __contains__(self, key): - return _mscl.DerivedChannelMasks___contains__(self, key) - - def key_iterator(self): - return _mscl.DerivedChannelMasks_key_iterator(self) - - def value_iterator(self): - return _mscl.DerivedChannelMasks_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DerivedChannelMasks___setitem__(self, *args) - - def asdict(self): - return _mscl.DerivedChannelMasks_asdict(self) - - def __init__(self, *args): - _mscl.DerivedChannelMasks_swiginit(self, _mscl.new_DerivedChannelMasks(*args)) - - def empty(self): - return _mscl.DerivedChannelMasks_empty(self) - - def size(self): - return _mscl.DerivedChannelMasks_size(self) - - def swap(self, v): - return _mscl.DerivedChannelMasks_swap(self, v) - - def begin(self): - return _mscl.DerivedChannelMasks_begin(self) - - def end(self): - return _mscl.DerivedChannelMasks_end(self) - - def rbegin(self): - return _mscl.DerivedChannelMasks_rbegin(self) - - def rend(self): - return _mscl.DerivedChannelMasks_rend(self) - - def clear(self): - return _mscl.DerivedChannelMasks_clear(self) - - def get_allocator(self): - return _mscl.DerivedChannelMasks_get_allocator(self) - - def count(self, x): - return _mscl.DerivedChannelMasks_count(self, x) - - def erase(self, *args): - return _mscl.DerivedChannelMasks_erase(self, *args) - - def find(self, x): - return _mscl.DerivedChannelMasks_find(self, x) - - def lower_bound(self, x): - return _mscl.DerivedChannelMasks_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DerivedChannelMasks_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DerivedChannelMasks - -# Register DerivedChannelMasks in _mscl: -_mscl.DerivedChannelMasks_swigregister(DerivedChannelMasks) - -class DeviceStatusMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusMap_keys(self) - - def values(self): - return _mscl.DeviceStatusMap_values(self) - - def items(self): - return _mscl.DeviceStatusMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusMap_swiginit(self, _mscl.new_DeviceStatusMap(*args)) - - def empty(self): - return _mscl.DeviceStatusMap_empty(self) - - def size(self): - return _mscl.DeviceStatusMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusMap_begin(self) - - def end(self): - return _mscl.DeviceStatusMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusMap - -# Register DeviceStatusMap in _mscl: -_mscl.DeviceStatusMap_swigregister(DeviceStatusMap) - -class DeviceStatusValueMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusValueMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusValueMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusValueMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusValueMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusValueMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusValueMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusValueMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusValueMap_keys(self) - - def values(self): - return _mscl.DeviceStatusValueMap_values(self) - - def items(self): - return _mscl.DeviceStatusValueMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusValueMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusValueMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusValueMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusValueMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusValueMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusValueMap_swiginit(self, _mscl.new_DeviceStatusValueMap(*args)) - - def empty(self): - return _mscl.DeviceStatusValueMap_empty(self) - - def size(self): - return _mscl.DeviceStatusValueMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusValueMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusValueMap_begin(self) - - def end(self): - return _mscl.DeviceStatusValueMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusValueMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusValueMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusValueMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusValueMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusValueMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusValueMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusValueMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusValueMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusValueMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusValueMap - -# Register DeviceStatusValueMap in _mscl: -_mscl.DeviceStatusValueMap_swigregister(DeviceStatusValueMap) - -class SampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.SampleRates___bool__(self) - - def __len__(self): - return _mscl.SampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.SampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.SampleRates_pop(self) - - def append(self, x): - return _mscl.SampleRates_append(self, x) - - def empty(self): - return _mscl.SampleRates_empty(self) - - def size(self): - return _mscl.SampleRates_size(self) - - def swap(self, v): - return _mscl.SampleRates_swap(self, v) - - def begin(self): - return _mscl.SampleRates_begin(self) - - def end(self): - return _mscl.SampleRates_end(self) - - def rbegin(self): - return _mscl.SampleRates_rbegin(self) - - def rend(self): - return _mscl.SampleRates_rend(self) - - def clear(self): - return _mscl.SampleRates_clear(self) - - def get_allocator(self): - return _mscl.SampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.SampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.SampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.SampleRates_swiginit(self, _mscl.new_SampleRates(*args)) - - def push_back(self, x): - return _mscl.SampleRates_push_back(self, x) - - def front(self): - return _mscl.SampleRates_front(self) - - def back(self): - return _mscl.SampleRates_back(self) - - def assign(self, n, x): - return _mscl.SampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.SampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.SampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.SampleRates_reserve(self, n) - - def capacity(self): - return _mscl.SampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_SampleRates - -# Register SampleRates in _mscl: -_mscl.SampleRates_swigregister(SampleRates) - -class ConfigIssues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConfigIssues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConfigIssues___nonzero__(self) - - def __bool__(self): - return _mscl.ConfigIssues___bool__(self) - - def __len__(self): - return _mscl.ConfigIssues___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConfigIssues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConfigIssues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConfigIssues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConfigIssues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConfigIssues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConfigIssues___setitem__(self, *args) - - def pop(self): - return _mscl.ConfigIssues_pop(self) - - def append(self, x): - return _mscl.ConfigIssues_append(self, x) - - def empty(self): - return _mscl.ConfigIssues_empty(self) - - def size(self): - return _mscl.ConfigIssues_size(self) - - def swap(self, v): - return _mscl.ConfigIssues_swap(self, v) - - def begin(self): - return _mscl.ConfigIssues_begin(self) - - def end(self): - return _mscl.ConfigIssues_end(self) - - def rbegin(self): - return _mscl.ConfigIssues_rbegin(self) - - def rend(self): - return _mscl.ConfigIssues_rend(self) - - def clear(self): - return _mscl.ConfigIssues_clear(self) - - def get_allocator(self): - return _mscl.ConfigIssues_get_allocator(self) - - def pop_back(self): - return _mscl.ConfigIssues_pop_back(self) - - def erase(self, *args): - return _mscl.ConfigIssues_erase(self, *args) - - def __init__(self, *args): - _mscl.ConfigIssues_swiginit(self, _mscl.new_ConfigIssues(*args)) - - def push_back(self, x): - return _mscl.ConfigIssues_push_back(self, x) - - def front(self): - return _mscl.ConfigIssues_front(self) - - def back(self): - return _mscl.ConfigIssues_back(self) - - def assign(self, n, x): - return _mscl.ConfigIssues_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConfigIssues_resize(self, *args) - - def insert(self, *args): - return _mscl.ConfigIssues_insert(self, *args) - - def reserve(self, n): - return _mscl.ConfigIssues_reserve(self, n) - - def capacity(self): - return _mscl.ConfigIssues_capacity(self) - __swig_destroy__ = _mscl.delete_ConfigIssues - -# Register ConfigIssues in _mscl: -_mscl.ConfigIssues_swigregister(ConfigIssues) - -class MipChannelFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelFields_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelFields___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelFields___bool__(self) - - def __len__(self): - return _mscl.MipChannelFields___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelFields___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelFields___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelFields___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelFields___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelFields___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelFields___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelFields_pop(self) - - def append(self, x): - return _mscl.MipChannelFields_append(self, x) - - def empty(self): - return _mscl.MipChannelFields_empty(self) - - def size(self): - return _mscl.MipChannelFields_size(self) - - def swap(self, v): - return _mscl.MipChannelFields_swap(self, v) - - def begin(self): - return _mscl.MipChannelFields_begin(self) - - def end(self): - return _mscl.MipChannelFields_end(self) - - def rbegin(self): - return _mscl.MipChannelFields_rbegin(self) - - def rend(self): - return _mscl.MipChannelFields_rend(self) - - def clear(self): - return _mscl.MipChannelFields_clear(self) - - def get_allocator(self): - return _mscl.MipChannelFields_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelFields_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelFields_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelFields_swiginit(self, _mscl.new_MipChannelFields(*args)) - - def push_back(self, x): - return _mscl.MipChannelFields_push_back(self, x) - - def front(self): - return _mscl.MipChannelFields_front(self) - - def back(self): - return _mscl.MipChannelFields_back(self) - - def assign(self, n, x): - return _mscl.MipChannelFields_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelFields_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelFields_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelFields_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelFields_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelFields - -# Register MipChannelFields in _mscl: -_mscl.MipChannelFields_swigregister(MipChannelFields) - -class MipCommands(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommands_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommands___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommands___bool__(self) - - def __len__(self): - return _mscl.MipCommands___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommands___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommands___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommands___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommands___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommands___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommands___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommands_pop(self) - - def append(self, x): - return _mscl.MipCommands_append(self, x) - - def empty(self): - return _mscl.MipCommands_empty(self) - - def size(self): - return _mscl.MipCommands_size(self) - - def swap(self, v): - return _mscl.MipCommands_swap(self, v) - - def begin(self): - return _mscl.MipCommands_begin(self) - - def end(self): - return _mscl.MipCommands_end(self) - - def rbegin(self): - return _mscl.MipCommands_rbegin(self) - - def rend(self): - return _mscl.MipCommands_rend(self) - - def clear(self): - return _mscl.MipCommands_clear(self) - - def get_allocator(self): - return _mscl.MipCommands_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommands_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommands_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommands_swiginit(self, _mscl.new_MipCommands(*args)) - - def push_back(self, x): - return _mscl.MipCommands_push_back(self, x) - - def front(self): - return _mscl.MipCommands_front(self) - - def back(self): - return _mscl.MipCommands_back(self) - - def assign(self, n, x): - return _mscl.MipCommands_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommands_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommands_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommands_reserve(self, n) - - def capacity(self): - return _mscl.MipCommands_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommands - -# Register MipCommands in _mscl: -_mscl.MipCommands_swigregister(MipCommands) - -class MipDataClasses(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataClasses_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataClasses___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataClasses___bool__(self) - - def __len__(self): - return _mscl.MipDataClasses___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataClasses___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataClasses___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataClasses___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataClasses___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataClasses___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataClasses___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataClasses_pop(self) - - def append(self, x): - return _mscl.MipDataClasses_append(self, x) - - def empty(self): - return _mscl.MipDataClasses_empty(self) - - def size(self): - return _mscl.MipDataClasses_size(self) - - def swap(self, v): - return _mscl.MipDataClasses_swap(self, v) - - def begin(self): - return _mscl.MipDataClasses_begin(self) - - def end(self): - return _mscl.MipDataClasses_end(self) - - def rbegin(self): - return _mscl.MipDataClasses_rbegin(self) - - def rend(self): - return _mscl.MipDataClasses_rend(self) - - def clear(self): - return _mscl.MipDataClasses_clear(self) - - def get_allocator(self): - return _mscl.MipDataClasses_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataClasses_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataClasses_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataClasses_swiginit(self, _mscl.new_MipDataClasses(*args)) - - def push_back(self, x): - return _mscl.MipDataClasses_push_back(self, x) - - def front(self): - return _mscl.MipDataClasses_front(self) - - def back(self): - return _mscl.MipDataClasses_back(self) - - def assign(self, n, x): - return _mscl.MipDataClasses_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataClasses_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataClasses_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataClasses_reserve(self, n) - - def capacity(self): - return _mscl.MipDataClasses_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataClasses - -# Register MipDataClasses in _mscl: -_mscl.MipDataClasses_swigregister(MipDataClasses) - -class MipChannelIdentifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelIdentifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelIdentifiers___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelIdentifiers___bool__(self) - - def __len__(self): - return _mscl.MipChannelIdentifiers___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelIdentifiers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelIdentifiers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelIdentifiers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelIdentifiers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelIdentifiers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelIdentifiers___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelIdentifiers_pop(self) - - def append(self, x): - return _mscl.MipChannelIdentifiers_append(self, x) - - def empty(self): - return _mscl.MipChannelIdentifiers_empty(self) - - def size(self): - return _mscl.MipChannelIdentifiers_size(self) - - def swap(self, v): - return _mscl.MipChannelIdentifiers_swap(self, v) - - def begin(self): - return _mscl.MipChannelIdentifiers_begin(self) - - def end(self): - return _mscl.MipChannelIdentifiers_end(self) - - def rbegin(self): - return _mscl.MipChannelIdentifiers_rbegin(self) - - def rend(self): - return _mscl.MipChannelIdentifiers_rend(self) - - def clear(self): - return _mscl.MipChannelIdentifiers_clear(self) - - def get_allocator(self): - return _mscl.MipChannelIdentifiers_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelIdentifiers_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelIdentifiers_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelIdentifiers_swiginit(self, _mscl.new_MipChannelIdentifiers(*args)) - - def push_back(self, x): - return _mscl.MipChannelIdentifiers_push_back(self, x) - - def front(self): - return _mscl.MipChannelIdentifiers_front(self) - - def back(self): - return _mscl.MipChannelIdentifiers_back(self) - - def assign(self, n, x): - return _mscl.MipChannelIdentifiers_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelIdentifiers_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelIdentifiers_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelIdentifiers_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelIdentifiers_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelIdentifiers - -# Register MipChannelIdentifiers in _mscl: -_mscl.MipChannelIdentifiers_swigregister(MipChannelIdentifiers) - -class MipCommandSet(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandSet_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandSet___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandSet___bool__(self) - - def __len__(self): - return _mscl.MipCommandSet___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandSet___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandSet___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandSet___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandSet___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandSet___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandSet___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandSet_pop(self) - - def append(self, x): - return _mscl.MipCommandSet_append(self, x) - - def empty(self): - return _mscl.MipCommandSet_empty(self) - - def size(self): - return _mscl.MipCommandSet_size(self) - - def swap(self, v): - return _mscl.MipCommandSet_swap(self, v) - - def begin(self): - return _mscl.MipCommandSet_begin(self) - - def end(self): - return _mscl.MipCommandSet_end(self) - - def rbegin(self): - return _mscl.MipCommandSet_rbegin(self) - - def rend(self): - return _mscl.MipCommandSet_rend(self) - - def clear(self): - return _mscl.MipCommandSet_clear(self) - - def get_allocator(self): - return _mscl.MipCommandSet_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandSet_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandSet_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandSet_swiginit(self, _mscl.new_MipCommandSet(*args)) - - def push_back(self, x): - return _mscl.MipCommandSet_push_back(self, x) - - def front(self): - return _mscl.MipCommandSet_front(self) - - def back(self): - return _mscl.MipCommandSet_back(self) - - def assign(self, n, x): - return _mscl.MipCommandSet_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandSet_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandSet_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandSet_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandSet_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandSet - -# Register MipCommandSet in _mscl: -_mscl.MipCommandSet_swigregister(MipCommandSet) - -class MipFieldValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipFieldValues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipFieldValues___nonzero__(self) - - def __bool__(self): - return _mscl.MipFieldValues___bool__(self) - - def __len__(self): - return _mscl.MipFieldValues___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipFieldValues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipFieldValues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipFieldValues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipFieldValues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipFieldValues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipFieldValues___setitem__(self, *args) - - def pop(self): - return _mscl.MipFieldValues_pop(self) - - def append(self, x): - return _mscl.MipFieldValues_append(self, x) - - def empty(self): - return _mscl.MipFieldValues_empty(self) - - def size(self): - return _mscl.MipFieldValues_size(self) - - def swap(self, v): - return _mscl.MipFieldValues_swap(self, v) - - def begin(self): - return _mscl.MipFieldValues_begin(self) - - def end(self): - return _mscl.MipFieldValues_end(self) - - def rbegin(self): - return _mscl.MipFieldValues_rbegin(self) - - def rend(self): - return _mscl.MipFieldValues_rend(self) - - def clear(self): - return _mscl.MipFieldValues_clear(self) - - def get_allocator(self): - return _mscl.MipFieldValues_get_allocator(self) - - def pop_back(self): - return _mscl.MipFieldValues_pop_back(self) - - def erase(self, *args): - return _mscl.MipFieldValues_erase(self, *args) - - def __init__(self, *args): - _mscl.MipFieldValues_swiginit(self, _mscl.new_MipFieldValues(*args)) - - def push_back(self, x): - return _mscl.MipFieldValues_push_back(self, x) - - def front(self): - return _mscl.MipFieldValues_front(self) - - def back(self): - return _mscl.MipFieldValues_back(self) - - def assign(self, n, x): - return _mscl.MipFieldValues_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipFieldValues_resize(self, *args) - - def insert(self, *args): - return _mscl.MipFieldValues_insert(self, *args) - - def reserve(self, n): - return _mscl.MipFieldValues_reserve(self, n) - - def capacity(self): - return _mscl.MipFieldValues_capacity(self) - __swig_destroy__ = _mscl.delete_MipFieldValues - -# Register MipFieldValues in _mscl: -_mscl.MipFieldValues_swigregister(MipFieldValues) - -class MipCommandParamPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipCommandParamPair_swiginit(self, _mscl.new_MipCommandParamPair(*args)) - first = property(_mscl.MipCommandParamPair_first_get, _mscl.MipCommandParamPair_first_set) - second = property(_mscl.MipCommandParamPair_second_get, _mscl.MipCommandParamPair_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_MipCommandParamPair - -# Register MipCommandParamPair in _mscl: -_mscl.MipCommandParamPair_swigregister(MipCommandParamPair) - -class MipCommandParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandParameters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandParameters___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandParameters___bool__(self) - - def __len__(self): - return _mscl.MipCommandParameters___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandParameters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandParameters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandParameters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandParameters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandParameters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandParameters___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandParameters_pop(self) - - def append(self, x): - return _mscl.MipCommandParameters_append(self, x) - - def empty(self): - return _mscl.MipCommandParameters_empty(self) - - def size(self): - return _mscl.MipCommandParameters_size(self) - - def swap(self, v): - return _mscl.MipCommandParameters_swap(self, v) - - def begin(self): - return _mscl.MipCommandParameters_begin(self) - - def end(self): - return _mscl.MipCommandParameters_end(self) - - def rbegin(self): - return _mscl.MipCommandParameters_rbegin(self) - - def rend(self): - return _mscl.MipCommandParameters_rend(self) - - def clear(self): - return _mscl.MipCommandParameters_clear(self) - - def get_allocator(self): - return _mscl.MipCommandParameters_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandParameters_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandParameters_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandParameters_swiginit(self, _mscl.new_MipCommandParameters(*args)) - - def push_back(self, x): - return _mscl.MipCommandParameters_push_back(self, x) - - def front(self): - return _mscl.MipCommandParameters_front(self) - - def back(self): - return _mscl.MipCommandParameters_back(self) - - def assign(self, n, x): - return _mscl.MipCommandParameters_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandParameters_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandParameters_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandParameters_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandParameters_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandParameters - -# Register MipCommandParameters in _mscl: -_mscl.MipCommandParameters_swigregister(MipCommandParameters) - -class ChannelIndex(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ChannelIndex_swiginit(self, _mscl.new_ChannelIndex(*args)) - first = property(_mscl.ChannelIndex_first_get, _mscl.ChannelIndex_first_set) - second = property(_mscl.ChannelIndex_second_get, _mscl.ChannelIndex_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_ChannelIndex - -# Register ChannelIndex in _mscl: -_mscl.ChannelIndex_swigregister(ChannelIndex) - -class ChannelIndices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelIndices_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelIndices___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelIndices___bool__(self) - - def __len__(self): - return _mscl.ChannelIndices___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelIndices___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelIndices___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelIndices___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelIndices___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelIndices___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelIndices___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelIndices_pop(self) - - def append(self, x): - return _mscl.ChannelIndices_append(self, x) - - def empty(self): - return _mscl.ChannelIndices_empty(self) - - def size(self): - return _mscl.ChannelIndices_size(self) - - def swap(self, v): - return _mscl.ChannelIndices_swap(self, v) - - def begin(self): - return _mscl.ChannelIndices_begin(self) - - def end(self): - return _mscl.ChannelIndices_end(self) - - def rbegin(self): - return _mscl.ChannelIndices_rbegin(self) - - def rend(self): - return _mscl.ChannelIndices_rend(self) - - def clear(self): - return _mscl.ChannelIndices_clear(self) - - def get_allocator(self): - return _mscl.ChannelIndices_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelIndices_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelIndices_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelIndices_swiginit(self, _mscl.new_ChannelIndices(*args)) - - def push_back(self, x): - return _mscl.ChannelIndices_push_back(self, x) - - def front(self): - return _mscl.ChannelIndices_front(self) - - def back(self): - return _mscl.ChannelIndices_back(self) - - def assign(self, n, x): - return _mscl.ChannelIndices_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelIndices_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelIndices_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelIndices_reserve(self, n) - - def capacity(self): - return _mscl.ChannelIndices_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelIndices - -# Register ChannelIndices in _mscl: -_mscl.ChannelIndices_swigregister(ChannelIndices) - -class ChannelFieldQualifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelFieldQualifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelFieldQualifiers___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelFieldQualifiers___bool__(self) - - def __len__(self): - return _mscl.ChannelFieldQualifiers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelFieldQualifiers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelFieldQualifiers___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelFieldQualifiers_has_key(self, key) - - def keys(self): - return _mscl.ChannelFieldQualifiers_keys(self) - - def values(self): - return _mscl.ChannelFieldQualifiers_values(self) - - def items(self): - return _mscl.ChannelFieldQualifiers_items(self) - - def __contains__(self, key): - return _mscl.ChannelFieldQualifiers___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelFieldQualifiers_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelFieldQualifiers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelFieldQualifiers___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelFieldQualifiers_asdict(self) - - def __init__(self, *args): - _mscl.ChannelFieldQualifiers_swiginit(self, _mscl.new_ChannelFieldQualifiers(*args)) - - def empty(self): - return _mscl.ChannelFieldQualifiers_empty(self) - - def size(self): - return _mscl.ChannelFieldQualifiers_size(self) - - def swap(self, v): - return _mscl.ChannelFieldQualifiers_swap(self, v) - - def begin(self): - return _mscl.ChannelFieldQualifiers_begin(self) - - def end(self): - return _mscl.ChannelFieldQualifiers_end(self) - - def rbegin(self): - return _mscl.ChannelFieldQualifiers_rbegin(self) - - def rend(self): - return _mscl.ChannelFieldQualifiers_rend(self) - - def clear(self): - return _mscl.ChannelFieldQualifiers_clear(self) - - def get_allocator(self): - return _mscl.ChannelFieldQualifiers_get_allocator(self) - - def count(self, x): - return _mscl.ChannelFieldQualifiers_count(self, x) - - def erase(self, *args): - return _mscl.ChannelFieldQualifiers_erase(self, *args) - - def find(self, x): - return _mscl.ChannelFieldQualifiers_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelFieldQualifiers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelFieldQualifiers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelFieldQualifiers - -# Register ChannelFieldQualifiers in _mscl: -_mscl.ChannelFieldQualifiers_swigregister(ChannelFieldQualifiers) - -class GnssReceivers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssReceivers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssReceivers___nonzero__(self) - - def __bool__(self): - return _mscl.GnssReceivers___bool__(self) - - def __len__(self): - return _mscl.GnssReceivers___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssReceivers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssReceivers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssReceivers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssReceivers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssReceivers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssReceivers___setitem__(self, *args) - - def pop(self): - return _mscl.GnssReceivers_pop(self) - - def append(self, x): - return _mscl.GnssReceivers_append(self, x) - - def empty(self): - return _mscl.GnssReceivers_empty(self) - - def size(self): - return _mscl.GnssReceivers_size(self) - - def swap(self, v): - return _mscl.GnssReceivers_swap(self, v) - - def begin(self): - return _mscl.GnssReceivers_begin(self) - - def end(self): - return _mscl.GnssReceivers_end(self) - - def rbegin(self): - return _mscl.GnssReceivers_rbegin(self) - - def rend(self): - return _mscl.GnssReceivers_rend(self) - - def clear(self): - return _mscl.GnssReceivers_clear(self) - - def get_allocator(self): - return _mscl.GnssReceivers_get_allocator(self) - - def pop_back(self): - return _mscl.GnssReceivers_pop_back(self) - - def erase(self, *args): - return _mscl.GnssReceivers_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssReceivers_swiginit(self, _mscl.new_GnssReceivers(*args)) - - def push_back(self, x): - return _mscl.GnssReceivers_push_back(self, x) - - def front(self): - return _mscl.GnssReceivers_front(self) - - def back(self): - return _mscl.GnssReceivers_back(self) - - def assign(self, n, x): - return _mscl.GnssReceivers_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssReceivers_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssReceivers_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssReceivers_reserve(self, n) - - def capacity(self): - return _mscl.GnssReceivers_capacity(self) - __swig_destroy__ = _mscl.delete_GnssReceivers - -# Register GnssReceivers in _mscl: -_mscl.GnssReceivers_swigregister(GnssReceivers) - -class SensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRanges___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRanges___bool__(self) - - def __len__(self): - return _mscl.SensorRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorRanges___setitem__(self, *args) - - def pop(self): - return _mscl.SensorRanges_pop(self) - - def append(self, x): - return _mscl.SensorRanges_append(self, x) - - def empty(self): - return _mscl.SensorRanges_empty(self) - - def size(self): - return _mscl.SensorRanges_size(self) - - def swap(self, v): - return _mscl.SensorRanges_swap(self, v) - - def begin(self): - return _mscl.SensorRanges_begin(self) - - def end(self): - return _mscl.SensorRanges_end(self) - - def rbegin(self): - return _mscl.SensorRanges_rbegin(self) - - def rend(self): - return _mscl.SensorRanges_rend(self) - - def clear(self): - return _mscl.SensorRanges_clear(self) - - def get_allocator(self): - return _mscl.SensorRanges_get_allocator(self) - - def pop_back(self): - return _mscl.SensorRanges_pop_back(self) - - def erase(self, *args): - return _mscl.SensorRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorRanges_swiginit(self, _mscl.new_SensorRanges(*args)) - - def push_back(self, x): - return _mscl.SensorRanges_push_back(self, x) - - def front(self): - return _mscl.SensorRanges_front(self) - - def back(self): - return _mscl.SensorRanges_back(self) - - def assign(self, n, x): - return _mscl.SensorRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorRanges_reserve(self, n) - - def capacity(self): - return _mscl.SensorRanges_capacity(self) - __swig_destroy__ = _mscl.delete_SensorRanges - -# Register SensorRanges in _mscl: -_mscl.SensorRanges_swigregister(SensorRanges) - -class SensorRangeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRangeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRangeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRangeOptions___bool__(self) - - def __len__(self): - return _mscl.SensorRangeOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SensorRangeOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SensorRangeOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.SensorRangeOptions_has_key(self, key) - - def keys(self): - return _mscl.SensorRangeOptions_keys(self) - - def values(self): - return _mscl.SensorRangeOptions_values(self) - - def items(self): - return _mscl.SensorRangeOptions_items(self) - - def __contains__(self, key): - return _mscl.SensorRangeOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.SensorRangeOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.SensorRangeOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SensorRangeOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.SensorRangeOptions_asdict(self) - - def __init__(self, *args): - _mscl.SensorRangeOptions_swiginit(self, _mscl.new_SensorRangeOptions(*args)) - - def empty(self): - return _mscl.SensorRangeOptions_empty(self) - - def size(self): - return _mscl.SensorRangeOptions_size(self) - - def swap(self, v): - return _mscl.SensorRangeOptions_swap(self, v) - - def begin(self): - return _mscl.SensorRangeOptions_begin(self) - - def end(self): - return _mscl.SensorRangeOptions_end(self) - - def rbegin(self): - return _mscl.SensorRangeOptions_rbegin(self) - - def rend(self): - return _mscl.SensorRangeOptions_rend(self) - - def clear(self): - return _mscl.SensorRangeOptions_clear(self) - - def get_allocator(self): - return _mscl.SensorRangeOptions_get_allocator(self) - - def count(self, x): - return _mscl.SensorRangeOptions_count(self, x) - - def erase(self, *args): - return _mscl.SensorRangeOptions_erase(self, *args) - - def find(self, x): - return _mscl.SensorRangeOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.SensorRangeOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SensorRangeOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SensorRangeOptions - -# Register SensorRangeOptions in _mscl: -_mscl.SensorRangeOptions_swigregister(SensorRangeOptions) - -class CommPortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommPortInfo_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommPortInfo___nonzero__(self) - - def __bool__(self): - return _mscl.CommPortInfo___bool__(self) - - def __len__(self): - return _mscl.CommPortInfo___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommPortInfo___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommPortInfo___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommPortInfo___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommPortInfo___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommPortInfo___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommPortInfo___setitem__(self, *args) - - def pop(self): - return _mscl.CommPortInfo_pop(self) - - def append(self, x): - return _mscl.CommPortInfo_append(self, x) - - def empty(self): - return _mscl.CommPortInfo_empty(self) - - def size(self): - return _mscl.CommPortInfo_size(self) - - def swap(self, v): - return _mscl.CommPortInfo_swap(self, v) - - def begin(self): - return _mscl.CommPortInfo_begin(self) - - def end(self): - return _mscl.CommPortInfo_end(self) - - def rbegin(self): - return _mscl.CommPortInfo_rbegin(self) - - def rend(self): - return _mscl.CommPortInfo_rend(self) - - def clear(self): - return _mscl.CommPortInfo_clear(self) - - def get_allocator(self): - return _mscl.CommPortInfo_get_allocator(self) - - def pop_back(self): - return _mscl.CommPortInfo_pop_back(self) - - def erase(self, *args): - return _mscl.CommPortInfo_erase(self, *args) - - def __init__(self, *args): - _mscl.CommPortInfo_swiginit(self, _mscl.new_CommPortInfo(*args)) - - def push_back(self, x): - return _mscl.CommPortInfo_push_back(self, x) - - def front(self): - return _mscl.CommPortInfo_front(self) - - def back(self): - return _mscl.CommPortInfo_back(self) - - def assign(self, n, x): - return _mscl.CommPortInfo_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommPortInfo_resize(self, *args) - - def insert(self, *args): - return _mscl.CommPortInfo_insert(self, *args) - - def reserve(self, n): - return _mscl.CommPortInfo_reserve(self, n) - - def capacity(self): - return _mscl.CommPortInfo_capacity(self) - __swig_destroy__ = _mscl.delete_CommPortInfo - -# Register CommPortInfo in _mscl: -_mscl.CommPortInfo_swigregister(CommPortInfo) - -class EventTriggerStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTriggerStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTriggerStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventTriggerStatus___bool__(self) - - def __len__(self): - return _mscl.EventTriggerStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTriggerStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTriggerStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTriggerStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTriggerStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTriggerStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTriggerStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventTriggerStatus_pop(self) - - def append(self, x): - return _mscl.EventTriggerStatus_append(self, x) - - def empty(self): - return _mscl.EventTriggerStatus_empty(self) - - def size(self): - return _mscl.EventTriggerStatus_size(self) - - def swap(self, v): - return _mscl.EventTriggerStatus_swap(self, v) - - def begin(self): - return _mscl.EventTriggerStatus_begin(self) - - def end(self): - return _mscl.EventTriggerStatus_end(self) - - def rbegin(self): - return _mscl.EventTriggerStatus_rbegin(self) - - def rend(self): - return _mscl.EventTriggerStatus_rend(self) - - def clear(self): - return _mscl.EventTriggerStatus_clear(self) - - def get_allocator(self): - return _mscl.EventTriggerStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventTriggerStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventTriggerStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTriggerStatus_swiginit(self, _mscl.new_EventTriggerStatus(*args)) - - def push_back(self, x): - return _mscl.EventTriggerStatus_push_back(self, x) - - def front(self): - return _mscl.EventTriggerStatus_front(self) - - def back(self): - return _mscl.EventTriggerStatus_back(self) - - def assign(self, n, x): - return _mscl.EventTriggerStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTriggerStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTriggerStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTriggerStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventTriggerStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventTriggerStatus - -# Register EventTriggerStatus in _mscl: -_mscl.EventTriggerStatus_swigregister(EventTriggerStatus) - -class EventActionStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventActionStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventActionStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventActionStatus___bool__(self) - - def __len__(self): - return _mscl.EventActionStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventActionStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventActionStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventActionStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventActionStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventActionStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventActionStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventActionStatus_pop(self) - - def append(self, x): - return _mscl.EventActionStatus_append(self, x) - - def empty(self): - return _mscl.EventActionStatus_empty(self) - - def size(self): - return _mscl.EventActionStatus_size(self) - - def swap(self, v): - return _mscl.EventActionStatus_swap(self, v) - - def begin(self): - return _mscl.EventActionStatus_begin(self) - - def end(self): - return _mscl.EventActionStatus_end(self) - - def rbegin(self): - return _mscl.EventActionStatus_rbegin(self) - - def rend(self): - return _mscl.EventActionStatus_rend(self) - - def clear(self): - return _mscl.EventActionStatus_clear(self) - - def get_allocator(self): - return _mscl.EventActionStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventActionStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventActionStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventActionStatus_swiginit(self, _mscl.new_EventActionStatus(*args)) - - def push_back(self, x): - return _mscl.EventActionStatus_push_back(self, x) - - def front(self): - return _mscl.EventActionStatus_front(self) - - def back(self): - return _mscl.EventActionStatus_back(self) - - def assign(self, n, x): - return _mscl.EventActionStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventActionStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventActionStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventActionStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventActionStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventActionStatus - -# Register EventActionStatus in _mscl: -_mscl.EventActionStatus_swigregister(EventActionStatus) - -class ChannelGroups(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroups_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroups___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroups___bool__(self) - - def __len__(self): - return _mscl.ChannelGroups___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroups___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroups___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroups___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroups___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroups___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroups___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroups_pop(self) - - def append(self, x): - return _mscl.ChannelGroups_append(self, x) - - def empty(self): - return _mscl.ChannelGroups_empty(self) - - def size(self): - return _mscl.ChannelGroups_size(self) - - def swap(self, v): - return _mscl.ChannelGroups_swap(self, v) - - def begin(self): - return _mscl.ChannelGroups_begin(self) - - def end(self): - return _mscl.ChannelGroups_end(self) - - def rbegin(self): - return _mscl.ChannelGroups_rbegin(self) - - def rend(self): - return _mscl.ChannelGroups_rend(self) - - def clear(self): - return _mscl.ChannelGroups_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroups_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroups_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroups_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroups_swiginit(self, _mscl.new_ChannelGroups(*args)) - - def push_back(self, x): - return _mscl.ChannelGroups_push_back(self, x) - - def front(self): - return _mscl.ChannelGroups_front(self) - - def back(self): - return _mscl.ChannelGroups_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroups_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroups_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroups_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroups_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroups_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroups - -# Register ChannelGroups in _mscl: -_mscl.ChannelGroups_swigregister(ChannelGroups) - -class WirelessChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessChannels___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessChannels___bool__(self) - - def __len__(self): - return _mscl.WirelessChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessChannels___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessChannels_pop(self) - - def append(self, x): - return _mscl.WirelessChannels_append(self, x) - - def empty(self): - return _mscl.WirelessChannels_empty(self) - - def size(self): - return _mscl.WirelessChannels_size(self) - - def swap(self, v): - return _mscl.WirelessChannels_swap(self, v) - - def begin(self): - return _mscl.WirelessChannels_begin(self) - - def end(self): - return _mscl.WirelessChannels_end(self) - - def rbegin(self): - return _mscl.WirelessChannels_rbegin(self) - - def rend(self): - return _mscl.WirelessChannels_rend(self) - - def clear(self): - return _mscl.WirelessChannels_clear(self) - - def get_allocator(self): - return _mscl.WirelessChannels_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessChannels_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessChannels_swiginit(self, _mscl.new_WirelessChannels(*args)) - - def push_back(self, x): - return _mscl.WirelessChannels_push_back(self, x) - - def front(self): - return _mscl.WirelessChannels_front(self) - - def back(self): - return _mscl.WirelessChannels_back(self) - - def assign(self, n, x): - return _mscl.WirelessChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessChannels_reserve(self, n) - - def capacity(self): - return _mscl.WirelessChannels_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessChannels - -# Register WirelessChannels in _mscl: -_mscl.WirelessChannels_swigregister(WirelessChannels) - -class DamageAngles(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DamageAngles_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DamageAngles___nonzero__(self) - - def __bool__(self): - return _mscl.DamageAngles___bool__(self) - - def __len__(self): - return _mscl.DamageAngles___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DamageAngles___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DamageAngles___delitem__(self, key) - - def has_key(self, key): - return _mscl.DamageAngles_has_key(self, key) - - def keys(self): - return _mscl.DamageAngles_keys(self) - - def values(self): - return _mscl.DamageAngles_values(self) - - def items(self): - return _mscl.DamageAngles_items(self) - - def __contains__(self, key): - return _mscl.DamageAngles___contains__(self, key) - - def key_iterator(self): - return _mscl.DamageAngles_key_iterator(self) - - def value_iterator(self): - return _mscl.DamageAngles_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DamageAngles___setitem__(self, *args) - - def asdict(self): - return _mscl.DamageAngles_asdict(self) - - def __init__(self, *args): - _mscl.DamageAngles_swiginit(self, _mscl.new_DamageAngles(*args)) - - def empty(self): - return _mscl.DamageAngles_empty(self) - - def size(self): - return _mscl.DamageAngles_size(self) - - def swap(self, v): - return _mscl.DamageAngles_swap(self, v) - - def begin(self): - return _mscl.DamageAngles_begin(self) - - def end(self): - return _mscl.DamageAngles_end(self) - - def rbegin(self): - return _mscl.DamageAngles_rbegin(self) - - def rend(self): - return _mscl.DamageAngles_rend(self) - - def clear(self): - return _mscl.DamageAngles_clear(self) - - def get_allocator(self): - return _mscl.DamageAngles_get_allocator(self) - - def count(self, x): - return _mscl.DamageAngles_count(self, x) - - def erase(self, *args): - return _mscl.DamageAngles_erase(self, *args) - - def find(self, x): - return _mscl.DamageAngles_find(self, x) - - def lower_bound(self, x): - return _mscl.DamageAngles_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DamageAngles_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DamageAngles - -# Register DamageAngles in _mscl: -_mscl.DamageAngles_swigregister(DamageAngles) - -class SnCurveSegments(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SnCurveSegments_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SnCurveSegments___nonzero__(self) - - def __bool__(self): - return _mscl.SnCurveSegments___bool__(self) - - def __len__(self): - return _mscl.SnCurveSegments___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SnCurveSegments___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SnCurveSegments___delitem__(self, key) - - def has_key(self, key): - return _mscl.SnCurveSegments_has_key(self, key) - - def keys(self): - return _mscl.SnCurveSegments_keys(self) - - def values(self): - return _mscl.SnCurveSegments_values(self) - - def items(self): - return _mscl.SnCurveSegments_items(self) - - def __contains__(self, key): - return _mscl.SnCurveSegments___contains__(self, key) - - def key_iterator(self): - return _mscl.SnCurveSegments_key_iterator(self) - - def value_iterator(self): - return _mscl.SnCurveSegments_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SnCurveSegments___setitem__(self, *args) - - def asdict(self): - return _mscl.SnCurveSegments_asdict(self) - - def __init__(self, *args): - _mscl.SnCurveSegments_swiginit(self, _mscl.new_SnCurveSegments(*args)) - - def empty(self): - return _mscl.SnCurveSegments_empty(self) - - def size(self): - return _mscl.SnCurveSegments_size(self) - - def swap(self, v): - return _mscl.SnCurveSegments_swap(self, v) - - def begin(self): - return _mscl.SnCurveSegments_begin(self) - - def end(self): - return _mscl.SnCurveSegments_end(self) - - def rbegin(self): - return _mscl.SnCurveSegments_rbegin(self) - - def rend(self): - return _mscl.SnCurveSegments_rend(self) - - def clear(self): - return _mscl.SnCurveSegments_clear(self) - - def get_allocator(self): - return _mscl.SnCurveSegments_get_allocator(self) - - def count(self, x): - return _mscl.SnCurveSegments_count(self, x) - - def erase(self, *args): - return _mscl.SnCurveSegments_erase(self, *args) - - def find(self, x): - return _mscl.SnCurveSegments_find(self, x) - - def lower_bound(self, x): - return _mscl.SnCurveSegments_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SnCurveSegments_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SnCurveSegments - -# Register SnCurveSegments in _mscl: -_mscl.SnCurveSegments_swigregister(SnCurveSegments) - -class RfSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RfSweep_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RfSweep___nonzero__(self) - - def __bool__(self): - return _mscl.RfSweep___bool__(self) - - def __len__(self): - return _mscl.RfSweep___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.RfSweep___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.RfSweep___delitem__(self, key) - - def has_key(self, key): - return _mscl.RfSweep_has_key(self, key) - - def keys(self): - return _mscl.RfSweep_keys(self) - - def values(self): - return _mscl.RfSweep_values(self) - - def items(self): - return _mscl.RfSweep_items(self) - - def __contains__(self, key): - return _mscl.RfSweep___contains__(self, key) - - def key_iterator(self): - return _mscl.RfSweep_key_iterator(self) - - def value_iterator(self): - return _mscl.RfSweep_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.RfSweep___setitem__(self, *args) - - def asdict(self): - return _mscl.RfSweep_asdict(self) - - def __init__(self, *args): - _mscl.RfSweep_swiginit(self, _mscl.new_RfSweep(*args)) - - def empty(self): - return _mscl.RfSweep_empty(self) - - def size(self): - return _mscl.RfSweep_size(self) - - def swap(self, v): - return _mscl.RfSweep_swap(self, v) - - def begin(self): - return _mscl.RfSweep_begin(self) - - def end(self): - return _mscl.RfSweep_end(self) - - def rbegin(self): - return _mscl.RfSweep_rbegin(self) - - def rend(self): - return _mscl.RfSweep_rend(self) - - def clear(self): - return _mscl.RfSweep_clear(self) - - def get_allocator(self): - return _mscl.RfSweep_get_allocator(self) - - def count(self, x): - return _mscl.RfSweep_count(self, x) - - def erase(self, *args): - return _mscl.RfSweep_erase(self, *args) - - def find(self, x): - return _mscl.RfSweep_find(self, x) - - def lower_bound(self, x): - return _mscl.RfSweep_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.RfSweep_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_RfSweep - -# Register RfSweep in _mscl: -_mscl.RfSweep_swigregister(RfSweep) - -class Triggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Triggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Triggers___nonzero__(self) - - def __bool__(self): - return _mscl.Triggers___bool__(self) - - def __len__(self): - return _mscl.Triggers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.Triggers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.Triggers___delitem__(self, key) - - def has_key(self, key): - return _mscl.Triggers_has_key(self, key) - - def keys(self): - return _mscl.Triggers_keys(self) - - def values(self): - return _mscl.Triggers_values(self) - - def items(self): - return _mscl.Triggers_items(self) - - def __contains__(self, key): - return _mscl.Triggers___contains__(self, key) - - def key_iterator(self): - return _mscl.Triggers_key_iterator(self) - - def value_iterator(self): - return _mscl.Triggers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.Triggers___setitem__(self, *args) - - def asdict(self): - return _mscl.Triggers_asdict(self) - - def __init__(self, *args): - _mscl.Triggers_swiginit(self, _mscl.new_Triggers(*args)) - - def empty(self): - return _mscl.Triggers_empty(self) - - def size(self): - return _mscl.Triggers_size(self) - - def swap(self, v): - return _mscl.Triggers_swap(self, v) - - def begin(self): - return _mscl.Triggers_begin(self) - - def end(self): - return _mscl.Triggers_end(self) - - def rbegin(self): - return _mscl.Triggers_rbegin(self) - - def rend(self): - return _mscl.Triggers_rend(self) - - def clear(self): - return _mscl.Triggers_clear(self) - - def get_allocator(self): - return _mscl.Triggers_get_allocator(self) - - def count(self, x): - return _mscl.Triggers_count(self, x) - - def erase(self, *args): - return _mscl.Triggers_erase(self, *args) - - def find(self, x): - return _mscl.Triggers_find(self, x) - - def lower_bound(self, x): - return _mscl.Triggers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.Triggers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_Triggers - -# Register Triggers in _mscl: -_mscl.Triggers_swigregister(Triggers) - -class ChannelCalMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelCalMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelCalMap___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelCalMap___bool__(self) - - def __len__(self): - return _mscl.ChannelCalMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelCalMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelCalMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelCalMap_has_key(self, key) - - def keys(self): - return _mscl.ChannelCalMap_keys(self) - - def values(self): - return _mscl.ChannelCalMap_values(self) - - def items(self): - return _mscl.ChannelCalMap_items(self) - - def __contains__(self, key): - return _mscl.ChannelCalMap___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelCalMap_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelCalMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelCalMap___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelCalMap_asdict(self) - - def __init__(self, *args): - _mscl.ChannelCalMap_swiginit(self, _mscl.new_ChannelCalMap(*args)) - - def empty(self): - return _mscl.ChannelCalMap_empty(self) - - def size(self): - return _mscl.ChannelCalMap_size(self) - - def swap(self, v): - return _mscl.ChannelCalMap_swap(self, v) - - def begin(self): - return _mscl.ChannelCalMap_begin(self) - - def end(self): - return _mscl.ChannelCalMap_end(self) - - def rbegin(self): - return _mscl.ChannelCalMap_rbegin(self) - - def rend(self): - return _mscl.ChannelCalMap_rend(self) - - def clear(self): - return _mscl.ChannelCalMap_clear(self) - - def get_allocator(self): - return _mscl.ChannelCalMap_get_allocator(self) - - def count(self, x): - return _mscl.ChannelCalMap_count(self, x) - - def erase(self, *args): - return _mscl.ChannelCalMap_erase(self, *args) - - def find(self, x): - return _mscl.ChannelCalMap_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelCalMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelCalMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelCalMap - -# Register ChannelCalMap in _mscl: -_mscl.ChannelCalMap_swigregister(ChannelCalMap) - -class WirelessPollData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessPollData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessPollData___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessPollData___bool__(self) - - def __len__(self): - return _mscl.WirelessPollData___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.WirelessPollData___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.WirelessPollData___delitem__(self, key) - - def has_key(self, key): - return _mscl.WirelessPollData_has_key(self, key) - - def keys(self): - return _mscl.WirelessPollData_keys(self) - - def values(self): - return _mscl.WirelessPollData_values(self) - - def items(self): - return _mscl.WirelessPollData_items(self) - - def __contains__(self, key): - return _mscl.WirelessPollData___contains__(self, key) - - def key_iterator(self): - return _mscl.WirelessPollData_key_iterator(self) - - def value_iterator(self): - return _mscl.WirelessPollData_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.WirelessPollData___setitem__(self, *args) - - def asdict(self): - return _mscl.WirelessPollData_asdict(self) - - def __init__(self, *args): - _mscl.WirelessPollData_swiginit(self, _mscl.new_WirelessPollData(*args)) - - def empty(self): - return _mscl.WirelessPollData_empty(self) - - def size(self): - return _mscl.WirelessPollData_size(self) - - def swap(self, v): - return _mscl.WirelessPollData_swap(self, v) - - def begin(self): - return _mscl.WirelessPollData_begin(self) - - def end(self): - return _mscl.WirelessPollData_end(self) - - def rbegin(self): - return _mscl.WirelessPollData_rbegin(self) - - def rend(self): - return _mscl.WirelessPollData_rend(self) - - def clear(self): - return _mscl.WirelessPollData_clear(self) - - def get_allocator(self): - return _mscl.WirelessPollData_get_allocator(self) - - def count(self, x): - return _mscl.WirelessPollData_count(self, x) - - def erase(self, *args): - return _mscl.WirelessPollData_erase(self, *args) - - def find(self, x): - return _mscl.WirelessPollData_find(self, x) - - def lower_bound(self, x): - return _mscl.WirelessPollData_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.WirelessPollData_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_WirelessPollData - -# Register WirelessPollData in _mscl: -_mscl.WirelessPollData_swigregister(WirelessPollData) - -class ConnectionDebugDataVec(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConnectionDebugDataVec_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConnectionDebugDataVec___nonzero__(self) - - def __bool__(self): - return _mscl.ConnectionDebugDataVec___bool__(self) - - def __len__(self): - return _mscl.ConnectionDebugDataVec___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConnectionDebugDataVec___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConnectionDebugDataVec___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConnectionDebugDataVec___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConnectionDebugDataVec___setitem__(self, *args) - - def pop(self): - return _mscl.ConnectionDebugDataVec_pop(self) - - def append(self, x): - return _mscl.ConnectionDebugDataVec_append(self, x) - - def empty(self): - return _mscl.ConnectionDebugDataVec_empty(self) - - def size(self): - return _mscl.ConnectionDebugDataVec_size(self) - - def swap(self, v): - return _mscl.ConnectionDebugDataVec_swap(self, v) - - def begin(self): - return _mscl.ConnectionDebugDataVec_begin(self) - - def end(self): - return _mscl.ConnectionDebugDataVec_end(self) - - def rbegin(self): - return _mscl.ConnectionDebugDataVec_rbegin(self) - - def rend(self): - return _mscl.ConnectionDebugDataVec_rend(self) - - def clear(self): - return _mscl.ConnectionDebugDataVec_clear(self) - - def get_allocator(self): - return _mscl.ConnectionDebugDataVec_get_allocator(self) - - def pop_back(self): - return _mscl.ConnectionDebugDataVec_pop_back(self) - - def erase(self, *args): - return _mscl.ConnectionDebugDataVec_erase(self, *args) - - def __init__(self, *args): - _mscl.ConnectionDebugDataVec_swiginit(self, _mscl.new_ConnectionDebugDataVec(*args)) - - def push_back(self, x): - return _mscl.ConnectionDebugDataVec_push_back(self, x) - - def front(self): - return _mscl.ConnectionDebugDataVec_front(self) - - def back(self): - return _mscl.ConnectionDebugDataVec_back(self) - - def assign(self, n, x): - return _mscl.ConnectionDebugDataVec_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConnectionDebugDataVec_resize(self, *args) - - def insert(self, *args): - return _mscl.ConnectionDebugDataVec_insert(self, *args) - - def reserve(self, n): - return _mscl.ConnectionDebugDataVec_reserve(self, n) - - def capacity(self): - return _mscl.ConnectionDebugDataVec_capacity(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugDataVec - -# Register ConnectionDebugDataVec in _mscl: -_mscl.ConnectionDebugDataVec_swigregister(ConnectionDebugDataVec) - -class SatellitePRNs(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SatellitePRNs_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SatellitePRNs___nonzero__(self) - - def __bool__(self): - return _mscl.SatellitePRNs___bool__(self) - - def __len__(self): - return _mscl.SatellitePRNs___len__(self) - - def __getslice__(self, i, j): - return _mscl.SatellitePRNs___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SatellitePRNs___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SatellitePRNs___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SatellitePRNs___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SatellitePRNs___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SatellitePRNs___setitem__(self, *args) - - def pop(self): - return _mscl.SatellitePRNs_pop(self) - - def append(self, x): - return _mscl.SatellitePRNs_append(self, x) - - def empty(self): - return _mscl.SatellitePRNs_empty(self) - - def size(self): - return _mscl.SatellitePRNs_size(self) - - def swap(self, v): - return _mscl.SatellitePRNs_swap(self, v) - - def begin(self): - return _mscl.SatellitePRNs_begin(self) - - def end(self): - return _mscl.SatellitePRNs_end(self) - - def rbegin(self): - return _mscl.SatellitePRNs_rbegin(self) - - def rend(self): - return _mscl.SatellitePRNs_rend(self) - - def clear(self): - return _mscl.SatellitePRNs_clear(self) - - def get_allocator(self): - return _mscl.SatellitePRNs_get_allocator(self) - - def pop_back(self): - return _mscl.SatellitePRNs_pop_back(self) - - def erase(self, *args): - return _mscl.SatellitePRNs_erase(self, *args) - - def __init__(self, *args): - _mscl.SatellitePRNs_swiginit(self, _mscl.new_SatellitePRNs(*args)) - - def push_back(self, x): - return _mscl.SatellitePRNs_push_back(self, x) - - def front(self): - return _mscl.SatellitePRNs_front(self) - - def back(self): - return _mscl.SatellitePRNs_back(self) - - def assign(self, n, x): - return _mscl.SatellitePRNs_assign(self, n, x) - - def resize(self, *args): - return _mscl.SatellitePRNs_resize(self, *args) - - def insert(self, *args): - return _mscl.SatellitePRNs_insert(self, *args) - - def reserve(self, n): - return _mscl.SatellitePRNs_reserve(self, n) - - def capacity(self): - return _mscl.SatellitePRNs_capacity(self) - __swig_destroy__ = _mscl.delete_SatellitePRNs - -# Register SatellitePRNs in _mscl: -_mscl.SatellitePRNs_swigregister(SatellitePRNs) - -class Constellations(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Constellations_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Constellations___nonzero__(self) - - def __bool__(self): - return _mscl.Constellations___bool__(self) - - def __len__(self): - return _mscl.Constellations___len__(self) - - def __getslice__(self, i, j): - return _mscl.Constellations___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Constellations___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Constellations___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Constellations___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Constellations___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Constellations___setitem__(self, *args) - - def pop(self): - return _mscl.Constellations_pop(self) - - def append(self, x): - return _mscl.Constellations_append(self, x) - - def empty(self): - return _mscl.Constellations_empty(self) - - def size(self): - return _mscl.Constellations_size(self) - - def swap(self, v): - return _mscl.Constellations_swap(self, v) - - def begin(self): - return _mscl.Constellations_begin(self) - - def end(self): - return _mscl.Constellations_end(self) - - def rbegin(self): - return _mscl.Constellations_rbegin(self) - - def rend(self): - return _mscl.Constellations_rend(self) - - def clear(self): - return _mscl.Constellations_clear(self) - - def get_allocator(self): - return _mscl.Constellations_get_allocator(self) - - def pop_back(self): - return _mscl.Constellations_pop_back(self) - - def erase(self, *args): - return _mscl.Constellations_erase(self, *args) - - def __init__(self, *args): - _mscl.Constellations_swiginit(self, _mscl.new_Constellations(*args)) - - def push_back(self, x): - return _mscl.Constellations_push_back(self, x) - - def front(self): - return _mscl.Constellations_front(self) - - def back(self): - return _mscl.Constellations_back(self) - - def assign(self, n, x): - return _mscl.Constellations_assign(self, n, x) - - def resize(self, *args): - return _mscl.Constellations_resize(self, *args) - - def insert(self, *args): - return _mscl.Constellations_insert(self, *args) - - def reserve(self, n): - return _mscl.Constellations_reserve(self, n) - - def capacity(self): - return _mscl.Constellations_capacity(self) - __swig_destroy__ = _mscl.delete_Constellations - -# Register Constellations in _mscl: -_mscl.Constellations_swigregister(Constellations) - -class HeadingUpdateOptionsList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HeadingUpdateOptionsList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HeadingUpdateOptionsList___nonzero__(self) - - def __bool__(self): - return _mscl.HeadingUpdateOptionsList___bool__(self) - - def __len__(self): - return _mscl.HeadingUpdateOptionsList___len__(self) - - def __getslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HeadingUpdateOptionsList___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___setitem__(self, *args) - - def pop(self): - return _mscl.HeadingUpdateOptionsList_pop(self) - - def append(self, x): - return _mscl.HeadingUpdateOptionsList_append(self, x) - - def empty(self): - return _mscl.HeadingUpdateOptionsList_empty(self) - - def size(self): - return _mscl.HeadingUpdateOptionsList_size(self) - - def swap(self, v): - return _mscl.HeadingUpdateOptionsList_swap(self, v) - - def begin(self): - return _mscl.HeadingUpdateOptionsList_begin(self) - - def end(self): - return _mscl.HeadingUpdateOptionsList_end(self) - - def rbegin(self): - return _mscl.HeadingUpdateOptionsList_rbegin(self) - - def rend(self): - return _mscl.HeadingUpdateOptionsList_rend(self) - - def clear(self): - return _mscl.HeadingUpdateOptionsList_clear(self) - - def get_allocator(self): - return _mscl.HeadingUpdateOptionsList_get_allocator(self) - - def pop_back(self): - return _mscl.HeadingUpdateOptionsList_pop_back(self) - - def erase(self, *args): - return _mscl.HeadingUpdateOptionsList_erase(self, *args) - - def __init__(self, *args): - _mscl.HeadingUpdateOptionsList_swiginit(self, _mscl.new_HeadingUpdateOptionsList(*args)) - - def push_back(self, x): - return _mscl.HeadingUpdateOptionsList_push_back(self, x) - - def front(self): - return _mscl.HeadingUpdateOptionsList_front(self) - - def back(self): - return _mscl.HeadingUpdateOptionsList_back(self) - - def assign(self, n, x): - return _mscl.HeadingUpdateOptionsList_assign(self, n, x) - - def resize(self, *args): - return _mscl.HeadingUpdateOptionsList_resize(self, *args) - - def insert(self, *args): - return _mscl.HeadingUpdateOptionsList_insert(self, *args) - - def reserve(self, n): - return _mscl.HeadingUpdateOptionsList_reserve(self, n) - - def capacity(self): - return _mscl.HeadingUpdateOptionsList_capacity(self) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptionsList - -# Register HeadingUpdateOptionsList in _mscl: -_mscl.HeadingUpdateOptionsList_swigregister(HeadingUpdateOptionsList) - -class AdaptiveMeasurementModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveMeasurementModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveMeasurementModes___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveMeasurementModes___bool__(self) - - def __len__(self): - return _mscl.AdaptiveMeasurementModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveMeasurementModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveMeasurementModes_pop(self) - - def append(self, x): - return _mscl.AdaptiveMeasurementModes_append(self, x) - - def empty(self): - return _mscl.AdaptiveMeasurementModes_empty(self) - - def size(self): - return _mscl.AdaptiveMeasurementModes_size(self) - - def swap(self, v): - return _mscl.AdaptiveMeasurementModes_swap(self, v) - - def begin(self): - return _mscl.AdaptiveMeasurementModes_begin(self) - - def end(self): - return _mscl.AdaptiveMeasurementModes_end(self) - - def rbegin(self): - return _mscl.AdaptiveMeasurementModes_rbegin(self) - - def rend(self): - return _mscl.AdaptiveMeasurementModes_rend(self) - - def clear(self): - return _mscl.AdaptiveMeasurementModes_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveMeasurementModes_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveMeasurementModes_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveMeasurementModes_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveMeasurementModes_swiginit(self, _mscl.new_AdaptiveMeasurementModes(*args)) - - def push_back(self, x): - return _mscl.AdaptiveMeasurementModes_push_back(self, x) - - def front(self): - return _mscl.AdaptiveMeasurementModes_front(self) - - def back(self): - return _mscl.AdaptiveMeasurementModes_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveMeasurementModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveMeasurementModes_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveMeasurementModes_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveMeasurementModes_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveMeasurementModes_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementModes - -# Register AdaptiveMeasurementModes in _mscl: -_mscl.AdaptiveMeasurementModes_swigregister(AdaptiveMeasurementModes) - -class GeometricVectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeometricVectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeometricVectors___nonzero__(self) - - def __bool__(self): - return _mscl.GeometricVectors___bool__(self) - - def __len__(self): - return _mscl.GeometricVectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeometricVectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeometricVectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeometricVectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeometricVectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeometricVectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeometricVectors___setitem__(self, *args) - - def pop(self): - return _mscl.GeometricVectors_pop(self) - - def append(self, x): - return _mscl.GeometricVectors_append(self, x) - - def empty(self): - return _mscl.GeometricVectors_empty(self) - - def size(self): - return _mscl.GeometricVectors_size(self) - - def swap(self, v): - return _mscl.GeometricVectors_swap(self, v) - - def begin(self): - return _mscl.GeometricVectors_begin(self) - - def end(self): - return _mscl.GeometricVectors_end(self) - - def rbegin(self): - return _mscl.GeometricVectors_rbegin(self) - - def rend(self): - return _mscl.GeometricVectors_rend(self) - - def clear(self): - return _mscl.GeometricVectors_clear(self) - - def get_allocator(self): - return _mscl.GeometricVectors_get_allocator(self) - - def pop_back(self): - return _mscl.GeometricVectors_pop_back(self) - - def erase(self, *args): - return _mscl.GeometricVectors_erase(self, *args) - - def __init__(self, *args): - _mscl.GeometricVectors_swiginit(self, _mscl.new_GeometricVectors(*args)) - - def push_back(self, x): - return _mscl.GeometricVectors_push_back(self, x) - - def front(self): - return _mscl.GeometricVectors_front(self) - - def back(self): - return _mscl.GeometricVectors_back(self) - - def assign(self, n, x): - return _mscl.GeometricVectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeometricVectors_resize(self, *args) - - def insert(self, *args): - return _mscl.GeometricVectors_insert(self, *args) - - def reserve(self, n): - return _mscl.GeometricVectors_reserve(self, n) - - def capacity(self): - return _mscl.GeometricVectors_capacity(self) - __swig_destroy__ = _mscl.delete_GeometricVectors - -# Register GeometricVectors in _mscl: -_mscl.GeometricVectors_swigregister(GeometricVectors) - -class Matrix_3x3s(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Matrix_3x3s_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Matrix_3x3s___nonzero__(self) - - def __bool__(self): - return _mscl.Matrix_3x3s___bool__(self) - - def __len__(self): - return _mscl.Matrix_3x3s___len__(self) - - def __getslice__(self, i, j): - return _mscl.Matrix_3x3s___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Matrix_3x3s___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Matrix_3x3s___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Matrix_3x3s___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Matrix_3x3s___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Matrix_3x3s___setitem__(self, *args) - - def pop(self): - return _mscl.Matrix_3x3s_pop(self) - - def append(self, x): - return _mscl.Matrix_3x3s_append(self, x) - - def empty(self): - return _mscl.Matrix_3x3s_empty(self) - - def size(self): - return _mscl.Matrix_3x3s_size(self) - - def swap(self, v): - return _mscl.Matrix_3x3s_swap(self, v) - - def begin(self): - return _mscl.Matrix_3x3s_begin(self) - - def end(self): - return _mscl.Matrix_3x3s_end(self) - - def rbegin(self): - return _mscl.Matrix_3x3s_rbegin(self) - - def rend(self): - return _mscl.Matrix_3x3s_rend(self) - - def clear(self): - return _mscl.Matrix_3x3s_clear(self) - - def get_allocator(self): - return _mscl.Matrix_3x3s_get_allocator(self) - - def pop_back(self): - return _mscl.Matrix_3x3s_pop_back(self) - - def erase(self, *args): - return _mscl.Matrix_3x3s_erase(self, *args) - - def __init__(self, *args): - _mscl.Matrix_3x3s_swiginit(self, _mscl.new_Matrix_3x3s(*args)) - - def push_back(self, x): - return _mscl.Matrix_3x3s_push_back(self, x) - - def front(self): - return _mscl.Matrix_3x3s_front(self) - - def back(self): - return _mscl.Matrix_3x3s_back(self) - - def assign(self, n, x): - return _mscl.Matrix_3x3s_assign(self, n, x) - - def resize(self, *args): - return _mscl.Matrix_3x3s_resize(self, *args) - - def insert(self, *args): - return _mscl.Matrix_3x3s_insert(self, *args) - - def reserve(self, n): - return _mscl.Matrix_3x3s_reserve(self, n) - - def capacity(self): - return _mscl.Matrix_3x3s_capacity(self) - __swig_destroy__ = _mscl.delete_Matrix_3x3s - -# Register Matrix_3x3s in _mscl: -_mscl.Matrix_3x3s_swigregister(Matrix_3x3s) - -class StatusSelectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StatusSelectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StatusSelectors___nonzero__(self) - - def __bool__(self): - return _mscl.StatusSelectors___bool__(self) - - def __len__(self): - return _mscl.StatusSelectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.StatusSelectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StatusSelectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StatusSelectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StatusSelectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StatusSelectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StatusSelectors___setitem__(self, *args) - - def pop(self): - return _mscl.StatusSelectors_pop(self) - - def append(self, x): - return _mscl.StatusSelectors_append(self, x) - - def empty(self): - return _mscl.StatusSelectors_empty(self) - - def size(self): - return _mscl.StatusSelectors_size(self) - - def swap(self, v): - return _mscl.StatusSelectors_swap(self, v) - - def begin(self): - return _mscl.StatusSelectors_begin(self) - - def end(self): - return _mscl.StatusSelectors_end(self) - - def rbegin(self): - return _mscl.StatusSelectors_rbegin(self) - - def rend(self): - return _mscl.StatusSelectors_rend(self) - - def clear(self): - return _mscl.StatusSelectors_clear(self) - - def get_allocator(self): - return _mscl.StatusSelectors_get_allocator(self) - - def pop_back(self): - return _mscl.StatusSelectors_pop_back(self) - - def erase(self, *args): - return _mscl.StatusSelectors_erase(self, *args) - - def __init__(self, *args): - _mscl.StatusSelectors_swiginit(self, _mscl.new_StatusSelectors(*args)) - - def push_back(self, x): - return _mscl.StatusSelectors_push_back(self, x) - - def front(self): - return _mscl.StatusSelectors_front(self) - - def back(self): - return _mscl.StatusSelectors_back(self) - - def assign(self, n, x): - return _mscl.StatusSelectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.StatusSelectors_resize(self, *args) - - def insert(self, *args): - return _mscl.StatusSelectors_insert(self, *args) - - def reserve(self, n): - return _mscl.StatusSelectors_reserve(self, n) - - def capacity(self): - return _mscl.StatusSelectors_capacity(self) - __swig_destroy__ = _mscl.delete_StatusSelectors - -# Register StatusSelectors in _mscl: -_mscl.StatusSelectors_swigregister(StatusSelectors) - -class VehicleModeTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.VehicleModeTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.VehicleModeTypes___nonzero__(self) - - def __bool__(self): - return _mscl.VehicleModeTypes___bool__(self) - - def __len__(self): - return _mscl.VehicleModeTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.VehicleModeTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.VehicleModeTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.VehicleModeTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.VehicleModeTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.VehicleModeTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.VehicleModeTypes___setitem__(self, *args) - - def pop(self): - return _mscl.VehicleModeTypes_pop(self) - - def append(self, x): - return _mscl.VehicleModeTypes_append(self, x) - - def empty(self): - return _mscl.VehicleModeTypes_empty(self) - - def size(self): - return _mscl.VehicleModeTypes_size(self) - - def swap(self, v): - return _mscl.VehicleModeTypes_swap(self, v) - - def begin(self): - return _mscl.VehicleModeTypes_begin(self) - - def end(self): - return _mscl.VehicleModeTypes_end(self) - - def rbegin(self): - return _mscl.VehicleModeTypes_rbegin(self) - - def rend(self): - return _mscl.VehicleModeTypes_rend(self) - - def clear(self): - return _mscl.VehicleModeTypes_clear(self) - - def get_allocator(self): - return _mscl.VehicleModeTypes_get_allocator(self) - - def pop_back(self): - return _mscl.VehicleModeTypes_pop_back(self) - - def erase(self, *args): - return _mscl.VehicleModeTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.VehicleModeTypes_swiginit(self, _mscl.new_VehicleModeTypes(*args)) - - def push_back(self, x): - return _mscl.VehicleModeTypes_push_back(self, x) - - def front(self): - return _mscl.VehicleModeTypes_front(self) - - def back(self): - return _mscl.VehicleModeTypes_back(self) - - def assign(self, n, x): - return _mscl.VehicleModeTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.VehicleModeTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.VehicleModeTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.VehicleModeTypes_reserve(self, n) - - def capacity(self): - return _mscl.VehicleModeTypes_capacity(self) - __swig_destroy__ = _mscl.delete_VehicleModeTypes - -# Register VehicleModeTypes in _mscl: -_mscl.VehicleModeTypes_swigregister(VehicleModeTypes) - -class AdaptiveFilterLevels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveFilterLevels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveFilterLevels___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveFilterLevels___bool__(self) - - def __len__(self): - return _mscl.AdaptiveFilterLevels___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveFilterLevels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveFilterLevels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveFilterLevels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveFilterLevels___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveFilterLevels_pop(self) - - def append(self, x): - return _mscl.AdaptiveFilterLevels_append(self, x) - - def empty(self): - return _mscl.AdaptiveFilterLevels_empty(self) - - def size(self): - return _mscl.AdaptiveFilterLevels_size(self) - - def swap(self, v): - return _mscl.AdaptiveFilterLevels_swap(self, v) - - def begin(self): - return _mscl.AdaptiveFilterLevels_begin(self) - - def end(self): - return _mscl.AdaptiveFilterLevels_end(self) - - def rbegin(self): - return _mscl.AdaptiveFilterLevels_rbegin(self) - - def rend(self): - return _mscl.AdaptiveFilterLevels_rend(self) - - def clear(self): - return _mscl.AdaptiveFilterLevels_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveFilterLevels_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveFilterLevels_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveFilterLevels_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveFilterLevels_swiginit(self, _mscl.new_AdaptiveFilterLevels(*args)) - - def push_back(self, x): - return _mscl.AdaptiveFilterLevels_push_back(self, x) - - def front(self): - return _mscl.AdaptiveFilterLevels_front(self) - - def back(self): - return _mscl.AdaptiveFilterLevels_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveFilterLevels_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveFilterLevels_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveFilterLevels_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveFilterLevels_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveFilterLevels_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveFilterLevels - -# Register AdaptiveFilterLevels in _mscl: -_mscl.AdaptiveFilterLevels_swigregister(AdaptiveFilterLevels) - -class LowPassFilterConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LowPassFilterConfig_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LowPassFilterConfig___nonzero__(self) - - def __bool__(self): - return _mscl.LowPassFilterConfig___bool__(self) - - def __len__(self): - return _mscl.LowPassFilterConfig___len__(self) - - def __getslice__(self, i, j): - return _mscl.LowPassFilterConfig___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LowPassFilterConfig___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LowPassFilterConfig___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LowPassFilterConfig___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LowPassFilterConfig___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LowPassFilterConfig___setitem__(self, *args) - - def pop(self): - return _mscl.LowPassFilterConfig_pop(self) - - def append(self, x): - return _mscl.LowPassFilterConfig_append(self, x) - - def empty(self): - return _mscl.LowPassFilterConfig_empty(self) - - def size(self): - return _mscl.LowPassFilterConfig_size(self) - - def swap(self, v): - return _mscl.LowPassFilterConfig_swap(self, v) - - def begin(self): - return _mscl.LowPassFilterConfig_begin(self) - - def end(self): - return _mscl.LowPassFilterConfig_end(self) - - def rbegin(self): - return _mscl.LowPassFilterConfig_rbegin(self) - - def rend(self): - return _mscl.LowPassFilterConfig_rend(self) - - def clear(self): - return _mscl.LowPassFilterConfig_clear(self) - - def get_allocator(self): - return _mscl.LowPassFilterConfig_get_allocator(self) - - def pop_back(self): - return _mscl.LowPassFilterConfig_pop_back(self) - - def erase(self, *args): - return _mscl.LowPassFilterConfig_erase(self, *args) - - def __init__(self, *args): - _mscl.LowPassFilterConfig_swiginit(self, _mscl.new_LowPassFilterConfig(*args)) - - def push_back(self, x): - return _mscl.LowPassFilterConfig_push_back(self, x) - - def front(self): - return _mscl.LowPassFilterConfig_front(self) - - def back(self): - return _mscl.LowPassFilterConfig_back(self) - - def assign(self, n, x): - return _mscl.LowPassFilterConfig_assign(self, n, x) - - def resize(self, *args): - return _mscl.LowPassFilterConfig_resize(self, *args) - - def insert(self, *args): - return _mscl.LowPassFilterConfig_insert(self, *args) - - def reserve(self, n): - return _mscl.LowPassFilterConfig_reserve(self, n) - - def capacity(self): - return _mscl.LowPassFilterConfig_capacity(self) - __swig_destroy__ = _mscl.delete_LowPassFilterConfig - -# Register LowPassFilterConfig in _mscl: -_mscl.LowPassFilterConfig_swigregister(LowPassFilterConfig) - -class AidingMeasurementSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AidingMeasurementSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AidingMeasurementSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.AidingMeasurementSourceOptions___bool__(self) - - def __len__(self): - return _mscl.AidingMeasurementSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.AidingMeasurementSourceOptions_pop(self) - - def append(self, x): - return _mscl.AidingMeasurementSourceOptions_append(self, x) - - def empty(self): - return _mscl.AidingMeasurementSourceOptions_empty(self) - - def size(self): - return _mscl.AidingMeasurementSourceOptions_size(self) - - def swap(self, v): - return _mscl.AidingMeasurementSourceOptions_swap(self, v) - - def begin(self): - return _mscl.AidingMeasurementSourceOptions_begin(self) - - def end(self): - return _mscl.AidingMeasurementSourceOptions_end(self) - - def rbegin(self): - return _mscl.AidingMeasurementSourceOptions_rbegin(self) - - def rend(self): - return _mscl.AidingMeasurementSourceOptions_rend(self) - - def clear(self): - return _mscl.AidingMeasurementSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.AidingMeasurementSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.AidingMeasurementSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.AidingMeasurementSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.AidingMeasurementSourceOptions_swiginit(self, _mscl.new_AidingMeasurementSourceOptions(*args)) - - def push_back(self, x): - return _mscl.AidingMeasurementSourceOptions_push_back(self, x) - - def front(self): - return _mscl.AidingMeasurementSourceOptions_front(self) - - def back(self): - return _mscl.AidingMeasurementSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.AidingMeasurementSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.AidingMeasurementSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.AidingMeasurementSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.AidingMeasurementSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.AidingMeasurementSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_AidingMeasurementSourceOptions - -# Register AidingMeasurementSourceOptions in _mscl: -_mscl.AidingMeasurementSourceOptions_swigregister(AidingMeasurementSourceOptions) - -class PpsSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.PpsSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.PpsSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.PpsSourceOptions___bool__(self) - - def __len__(self): - return _mscl.PpsSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.PpsSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.PpsSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.PpsSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.PpsSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.PpsSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.PpsSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.PpsSourceOptions_pop(self) - - def append(self, x): - return _mscl.PpsSourceOptions_append(self, x) - - def empty(self): - return _mscl.PpsSourceOptions_empty(self) - - def size(self): - return _mscl.PpsSourceOptions_size(self) - - def swap(self, v): - return _mscl.PpsSourceOptions_swap(self, v) - - def begin(self): - return _mscl.PpsSourceOptions_begin(self) - - def end(self): - return _mscl.PpsSourceOptions_end(self) - - def rbegin(self): - return _mscl.PpsSourceOptions_rbegin(self) - - def rend(self): - return _mscl.PpsSourceOptions_rend(self) - - def clear(self): - return _mscl.PpsSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.PpsSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.PpsSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.PpsSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.PpsSourceOptions_swiginit(self, _mscl.new_PpsSourceOptions(*args)) - - def push_back(self, x): - return _mscl.PpsSourceOptions_push_back(self, x) - - def front(self): - return _mscl.PpsSourceOptions_front(self) - - def back(self): - return _mscl.PpsSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.PpsSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.PpsSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.PpsSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.PpsSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.PpsSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_PpsSourceOptions - -# Register PpsSourceOptions in _mscl: -_mscl.PpsSourceOptions_swigregister(PpsSourceOptions) - -class GeographicSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeographicSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeographicSources___nonzero__(self) - - def __bool__(self): - return _mscl.GeographicSources___bool__(self) - - def __len__(self): - return _mscl.GeographicSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeographicSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeographicSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeographicSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeographicSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeographicSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeographicSources___setitem__(self, *args) - - def pop(self): - return _mscl.GeographicSources_pop(self) - - def append(self, x): - return _mscl.GeographicSources_append(self, x) - - def empty(self): - return _mscl.GeographicSources_empty(self) - - def size(self): - return _mscl.GeographicSources_size(self) - - def swap(self, v): - return _mscl.GeographicSources_swap(self, v) - - def begin(self): - return _mscl.GeographicSources_begin(self) - - def end(self): - return _mscl.GeographicSources_end(self) - - def rbegin(self): - return _mscl.GeographicSources_rbegin(self) - - def rend(self): - return _mscl.GeographicSources_rend(self) - - def clear(self): - return _mscl.GeographicSources_clear(self) - - def get_allocator(self): - return _mscl.GeographicSources_get_allocator(self) - - def pop_back(self): - return _mscl.GeographicSources_pop_back(self) - - def erase(self, *args): - return _mscl.GeographicSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GeographicSources_swiginit(self, _mscl.new_GeographicSources(*args)) - - def push_back(self, x): - return _mscl.GeographicSources_push_back(self, x) - - def front(self): - return _mscl.GeographicSources_front(self) - - def back(self): - return _mscl.GeographicSources_back(self) - - def assign(self, n, x): - return _mscl.GeographicSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeographicSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GeographicSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GeographicSources_reserve(self, n) - - def capacity(self): - return _mscl.GeographicSources_capacity(self) - __swig_destroy__ = _mscl.delete_GeographicSources - -# Register GeographicSources in _mscl: -_mscl.GeographicSources_swigregister(GeographicSources) - -class GnssSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSources___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSources___bool__(self) - - def __len__(self): - return _mscl.GnssSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssSources___setitem__(self, *args) - - def pop(self): - return _mscl.GnssSources_pop(self) - - def append(self, x): - return _mscl.GnssSources_append(self, x) - - def empty(self): - return _mscl.GnssSources_empty(self) - - def size(self): - return _mscl.GnssSources_size(self) - - def swap(self, v): - return _mscl.GnssSources_swap(self, v) - - def begin(self): - return _mscl.GnssSources_begin(self) - - def end(self): - return _mscl.GnssSources_end(self) - - def rbegin(self): - return _mscl.GnssSources_rbegin(self) - - def rend(self): - return _mscl.GnssSources_rend(self) - - def clear(self): - return _mscl.GnssSources_clear(self) - - def get_allocator(self): - return _mscl.GnssSources_get_allocator(self) - - def pop_back(self): - return _mscl.GnssSources_pop_back(self) - - def erase(self, *args): - return _mscl.GnssSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssSources_swiginit(self, _mscl.new_GnssSources(*args)) - - def push_back(self, x): - return _mscl.GnssSources_push_back(self, x) - - def front(self): - return _mscl.GnssSources_front(self) - - def back(self): - return _mscl.GnssSources_back(self) - - def assign(self, n, x): - return _mscl.GnssSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssSources_reserve(self, n) - - def capacity(self): - return _mscl.GnssSources_capacity(self) - __swig_destroy__ = _mscl.delete_GnssSources - -# Register GnssSources in _mscl: -_mscl.GnssSources_swigregister(GnssSources) - -class GnssSignalConfigOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSignalConfigOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSignalConfigOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSignalConfigOptions___bool__(self) - - def __len__(self): - return _mscl.GnssSignalConfigOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GnssSignalConfigOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GnssSignalConfigOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GnssSignalConfigOptions_has_key(self, key) - - def keys(self): - return _mscl.GnssSignalConfigOptions_keys(self) - - def values(self): - return _mscl.GnssSignalConfigOptions_values(self) - - def items(self): - return _mscl.GnssSignalConfigOptions_items(self) - - def __contains__(self, key): - return _mscl.GnssSignalConfigOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GnssSignalConfigOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GnssSignalConfigOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GnssSignalConfigOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GnssSignalConfigOptions_asdict(self) - - def __init__(self, *args): - _mscl.GnssSignalConfigOptions_swiginit(self, _mscl.new_GnssSignalConfigOptions(*args)) - - def empty(self): - return _mscl.GnssSignalConfigOptions_empty(self) - - def size(self): - return _mscl.GnssSignalConfigOptions_size(self) - - def swap(self, v): - return _mscl.GnssSignalConfigOptions_swap(self, v) - - def begin(self): - return _mscl.GnssSignalConfigOptions_begin(self) - - def end(self): - return _mscl.GnssSignalConfigOptions_end(self) - - def rbegin(self): - return _mscl.GnssSignalConfigOptions_rbegin(self) - - def rend(self): - return _mscl.GnssSignalConfigOptions_rend(self) - - def clear(self): - return _mscl.GnssSignalConfigOptions_clear(self) - - def get_allocator(self): - return _mscl.GnssSignalConfigOptions_get_allocator(self) - - def count(self, x): - return _mscl.GnssSignalConfigOptions_count(self, x) - - def erase(self, *args): - return _mscl.GnssSignalConfigOptions_erase(self, *args) - - def find(self, x): - return _mscl.GnssSignalConfigOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GnssSignalConfigOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GnssSignalConfigOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GnssSignalConfigOptions - -# Register GnssSignalConfigOptions in _mscl: -_mscl.GnssSignalConfigOptions_swigregister(GnssSignalConfigOptions) - -class NmeaMessageFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NmeaMessageFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NmeaMessageFormats___nonzero__(self) - - def __bool__(self): - return _mscl.NmeaMessageFormats___bool__(self) - - def __len__(self): - return _mscl.NmeaMessageFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.NmeaMessageFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NmeaMessageFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NmeaMessageFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NmeaMessageFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NmeaMessageFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NmeaMessageFormats___setitem__(self, *args) - - def pop(self): - return _mscl.NmeaMessageFormats_pop(self) - - def append(self, x): - return _mscl.NmeaMessageFormats_append(self, x) - - def empty(self): - return _mscl.NmeaMessageFormats_empty(self) - - def size(self): - return _mscl.NmeaMessageFormats_size(self) - - def swap(self, v): - return _mscl.NmeaMessageFormats_swap(self, v) - - def begin(self): - return _mscl.NmeaMessageFormats_begin(self) - - def end(self): - return _mscl.NmeaMessageFormats_end(self) - - def rbegin(self): - return _mscl.NmeaMessageFormats_rbegin(self) - - def rend(self): - return _mscl.NmeaMessageFormats_rend(self) - - def clear(self): - return _mscl.NmeaMessageFormats_clear(self) - - def get_allocator(self): - return _mscl.NmeaMessageFormats_get_allocator(self) - - def pop_back(self): - return _mscl.NmeaMessageFormats_pop_back(self) - - def erase(self, *args): - return _mscl.NmeaMessageFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.NmeaMessageFormats_swiginit(self, _mscl.new_NmeaMessageFormats(*args)) - - def push_back(self, x): - return _mscl.NmeaMessageFormats_push_back(self, x) - - def front(self): - return _mscl.NmeaMessageFormats_front(self) - - def back(self): - return _mscl.NmeaMessageFormats_back(self) - - def assign(self, n, x): - return _mscl.NmeaMessageFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.NmeaMessageFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.NmeaMessageFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.NmeaMessageFormats_reserve(self, n) - - def capacity(self): - return _mscl.NmeaMessageFormats_capacity(self) - __swig_destroy__ = _mscl.delete_NmeaMessageFormats - -# Register NmeaMessageFormats in _mscl: -_mscl.NmeaMessageFormats_swigregister(NmeaMessageFormats) - -class GpioPinModeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinModeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinModeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinModeOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinModeOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.GpioPinModeOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GpioPinModeOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GpioPinModeOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GpioPinModeOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GpioPinModeOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GpioPinModeOptions___setitem__(self, *args) - - def pop(self): - return _mscl.GpioPinModeOptions_pop(self) - - def append(self, x): - return _mscl.GpioPinModeOptions_append(self, x) - - def empty(self): - return _mscl.GpioPinModeOptions_empty(self) - - def size(self): - return _mscl.GpioPinModeOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinModeOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinModeOptions_begin(self) - - def end(self): - return _mscl.GpioPinModeOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinModeOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinModeOptions_rend(self) - - def clear(self): - return _mscl.GpioPinModeOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinModeOptions_get_allocator(self) - - def pop_back(self): - return _mscl.GpioPinModeOptions_pop_back(self) - - def erase(self, *args): - return _mscl.GpioPinModeOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.GpioPinModeOptions_swiginit(self, _mscl.new_GpioPinModeOptions(*args)) - - def push_back(self, x): - return _mscl.GpioPinModeOptions_push_back(self, x) - - def front(self): - return _mscl.GpioPinModeOptions_front(self) - - def back(self): - return _mscl.GpioPinModeOptions_back(self) - - def assign(self, n, x): - return _mscl.GpioPinModeOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.GpioPinModeOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.GpioPinModeOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.GpioPinModeOptions_reserve(self, n) - - def capacity(self): - return _mscl.GpioPinModeOptions_capacity(self) - __swig_destroy__ = _mscl.delete_GpioPinModeOptions - -# Register GpioPinModeOptions in _mscl: -_mscl.GpioPinModeOptions_swigregister(GpioPinModeOptions) - -class GpioBehaviorModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioBehaviorModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioBehaviorModes___nonzero__(self) - - def __bool__(self): - return _mscl.GpioBehaviorModes___bool__(self) - - def __len__(self): - return _mscl.GpioBehaviorModes___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioBehaviorModes___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioBehaviorModes___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioBehaviorModes_has_key(self, key) - - def keys(self): - return _mscl.GpioBehaviorModes_keys(self) - - def values(self): - return _mscl.GpioBehaviorModes_values(self) - - def items(self): - return _mscl.GpioBehaviorModes_items(self) - - def __contains__(self, key): - return _mscl.GpioBehaviorModes___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioBehaviorModes_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioBehaviorModes_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioBehaviorModes___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioBehaviorModes_asdict(self) - - def __init__(self, *args): - _mscl.GpioBehaviorModes_swiginit(self, _mscl.new_GpioBehaviorModes(*args)) - - def empty(self): - return _mscl.GpioBehaviorModes_empty(self) - - def size(self): - return _mscl.GpioBehaviorModes_size(self) - - def swap(self, v): - return _mscl.GpioBehaviorModes_swap(self, v) - - def begin(self): - return _mscl.GpioBehaviorModes_begin(self) - - def end(self): - return _mscl.GpioBehaviorModes_end(self) - - def rbegin(self): - return _mscl.GpioBehaviorModes_rbegin(self) - - def rend(self): - return _mscl.GpioBehaviorModes_rend(self) - - def clear(self): - return _mscl.GpioBehaviorModes_clear(self) - - def get_allocator(self): - return _mscl.GpioBehaviorModes_get_allocator(self) - - def count(self, x): - return _mscl.GpioBehaviorModes_count(self, x) - - def erase(self, *args): - return _mscl.GpioBehaviorModes_erase(self, *args) - - def find(self, x): - return _mscl.GpioBehaviorModes_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioBehaviorModes_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioBehaviorModes_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioBehaviorModes - -# Register GpioBehaviorModes in _mscl: -_mscl.GpioBehaviorModes_swigregister(GpioBehaviorModes) - -class GpioFeatureBehaviors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioFeatureBehaviors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioFeatureBehaviors___nonzero__(self) - - def __bool__(self): - return _mscl.GpioFeatureBehaviors___bool__(self) - - def __len__(self): - return _mscl.GpioFeatureBehaviors___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioFeatureBehaviors___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioFeatureBehaviors___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioFeatureBehaviors_has_key(self, key) - - def keys(self): - return _mscl.GpioFeatureBehaviors_keys(self) - - def values(self): - return _mscl.GpioFeatureBehaviors_values(self) - - def items(self): - return _mscl.GpioFeatureBehaviors_items(self) - - def __contains__(self, key): - return _mscl.GpioFeatureBehaviors___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioFeatureBehaviors_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioFeatureBehaviors_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioFeatureBehaviors___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioFeatureBehaviors_asdict(self) - - def __init__(self, *args): - _mscl.GpioFeatureBehaviors_swiginit(self, _mscl.new_GpioFeatureBehaviors(*args)) - - def empty(self): - return _mscl.GpioFeatureBehaviors_empty(self) - - def size(self): - return _mscl.GpioFeatureBehaviors_size(self) - - def swap(self, v): - return _mscl.GpioFeatureBehaviors_swap(self, v) - - def begin(self): - return _mscl.GpioFeatureBehaviors_begin(self) - - def end(self): - return _mscl.GpioFeatureBehaviors_end(self) - - def rbegin(self): - return _mscl.GpioFeatureBehaviors_rbegin(self) - - def rend(self): - return _mscl.GpioFeatureBehaviors_rend(self) - - def clear(self): - return _mscl.GpioFeatureBehaviors_clear(self) - - def get_allocator(self): - return _mscl.GpioFeatureBehaviors_get_allocator(self) - - def count(self, x): - return _mscl.GpioFeatureBehaviors_count(self, x) - - def erase(self, *args): - return _mscl.GpioFeatureBehaviors_erase(self, *args) - - def find(self, x): - return _mscl.GpioFeatureBehaviors_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioFeatureBehaviors_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioFeatureBehaviors_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioFeatureBehaviors - -# Register GpioFeatureBehaviors in _mscl: -_mscl.GpioFeatureBehaviors_swigregister(GpioFeatureBehaviors) - -class GpioPinOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioPinOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioPinOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioPinOptions_has_key(self, key) - - def keys(self): - return _mscl.GpioPinOptions_keys(self) - - def values(self): - return _mscl.GpioPinOptions_values(self) - - def items(self): - return _mscl.GpioPinOptions_items(self) - - def __contains__(self, key): - return _mscl.GpioPinOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioPinOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioPinOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioPinOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioPinOptions_asdict(self) - - def __init__(self, *args): - _mscl.GpioPinOptions_swiginit(self, _mscl.new_GpioPinOptions(*args)) - - def empty(self): - return _mscl.GpioPinOptions_empty(self) - - def size(self): - return _mscl.GpioPinOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinOptions_begin(self) - - def end(self): - return _mscl.GpioPinOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinOptions_rend(self) - - def clear(self): - return _mscl.GpioPinOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinOptions_get_allocator(self) - - def count(self, x): - return _mscl.GpioPinOptions_count(self, x) - - def erase(self, *args): - return _mscl.GpioPinOptions_erase(self, *args) - - def find(self, x): - return _mscl.GpioPinOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioPinOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioPinOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioPinOptions - -# Register GpioPinOptions in _mscl: -_mscl.GpioPinOptions_swigregister(GpioPinOptions) - -class EventInputTriggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventInputTriggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventInputTriggers___nonzero__(self) - - def __bool__(self): - return _mscl.EventInputTriggers___bool__(self) - - def __len__(self): - return _mscl.EventInputTriggers___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventInputTriggers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventInputTriggers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventInputTriggers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventInputTriggers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventInputTriggers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventInputTriggers___setitem__(self, *args) - - def __init__(self, *args): - _mscl.EventInputTriggers_swiginit(self, _mscl.new_EventInputTriggers(*args)) - - def empty(self): - return _mscl.EventInputTriggers_empty(self) - - def size(self): - return _mscl.EventInputTriggers_size(self) - - def swap(self, v): - return _mscl.EventInputTriggers_swap(self, v) - - def begin(self): - return _mscl.EventInputTriggers_begin(self) - - def end(self): - return _mscl.EventInputTriggers_end(self) - - def rbegin(self): - return _mscl.EventInputTriggers_rbegin(self) - - def rend(self): - return _mscl.EventInputTriggers_rend(self) - - def front(self): - return _mscl.EventInputTriggers_front(self) - - def back(self): - return _mscl.EventInputTriggers_back(self) - - def fill(self, u): - return _mscl.EventInputTriggers_fill(self, u) - __swig_destroy__ = _mscl.delete_EventInputTriggers - -# Register EventInputTriggers in _mscl: -_mscl.EventInputTriggers_swigregister(EventInputTriggers) - -class EventTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTypes___nonzero__(self) - - def __bool__(self): - return _mscl.EventTypes___bool__(self) - - def __len__(self): - return _mscl.EventTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTypes___setitem__(self, *args) - - def pop(self): - return _mscl.EventTypes_pop(self) - - def append(self, x): - return _mscl.EventTypes_append(self, x) - - def empty(self): - return _mscl.EventTypes_empty(self) - - def size(self): - return _mscl.EventTypes_size(self) - - def swap(self, v): - return _mscl.EventTypes_swap(self, v) - - def begin(self): - return _mscl.EventTypes_begin(self) - - def end(self): - return _mscl.EventTypes_end(self) - - def rbegin(self): - return _mscl.EventTypes_rbegin(self) - - def rend(self): - return _mscl.EventTypes_rend(self) - - def clear(self): - return _mscl.EventTypes_clear(self) - - def get_allocator(self): - return _mscl.EventTypes_get_allocator(self) - - def pop_back(self): - return _mscl.EventTypes_pop_back(self) - - def erase(self, *args): - return _mscl.EventTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTypes_swiginit(self, _mscl.new_EventTypes(*args)) - - def push_back(self, x): - return _mscl.EventTypes_push_back(self, x) - - def front(self): - return _mscl.EventTypes_front(self) - - def back(self): - return _mscl.EventTypes_back(self) - - def assign(self, n, x): - return _mscl.EventTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTypes_reserve(self, n) - - def capacity(self): - return _mscl.EventTypes_capacity(self) - __swig_destroy__ = _mscl.delete_EventTypes - -# Register EventTypes in _mscl: -_mscl.EventTypes_swigregister(EventTypes) - -class MeasurementReferenceFrames(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MeasurementReferenceFrames_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MeasurementReferenceFrames___nonzero__(self) - - def __bool__(self): - return _mscl.MeasurementReferenceFrames___bool__(self) - - def __len__(self): - return _mscl.MeasurementReferenceFrames___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.MeasurementReferenceFrames___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.MeasurementReferenceFrames___delitem__(self, key) - - def has_key(self, key): - return _mscl.MeasurementReferenceFrames_has_key(self, key) - - def keys(self): - return _mscl.MeasurementReferenceFrames_keys(self) - - def values(self): - return _mscl.MeasurementReferenceFrames_values(self) - - def items(self): - return _mscl.MeasurementReferenceFrames_items(self) - - def __contains__(self, key): - return _mscl.MeasurementReferenceFrames___contains__(self, key) - - def key_iterator(self): - return _mscl.MeasurementReferenceFrames_key_iterator(self) - - def value_iterator(self): - return _mscl.MeasurementReferenceFrames_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.MeasurementReferenceFrames___setitem__(self, *args) - - def asdict(self): - return _mscl.MeasurementReferenceFrames_asdict(self) - - def __init__(self, *args): - _mscl.MeasurementReferenceFrames_swiginit(self, _mscl.new_MeasurementReferenceFrames(*args)) - - def empty(self): - return _mscl.MeasurementReferenceFrames_empty(self) - - def size(self): - return _mscl.MeasurementReferenceFrames_size(self) - - def swap(self, v): - return _mscl.MeasurementReferenceFrames_swap(self, v) - - def begin(self): - return _mscl.MeasurementReferenceFrames_begin(self) - - def end(self): - return _mscl.MeasurementReferenceFrames_end(self) - - def rbegin(self): - return _mscl.MeasurementReferenceFrames_rbegin(self) - - def rend(self): - return _mscl.MeasurementReferenceFrames_rend(self) - - def clear(self): - return _mscl.MeasurementReferenceFrames_clear(self) - - def get_allocator(self): - return _mscl.MeasurementReferenceFrames_get_allocator(self) - - def count(self, x): - return _mscl.MeasurementReferenceFrames_count(self, x) - - def erase(self, *args): - return _mscl.MeasurementReferenceFrames_erase(self, *args) - - def find(self, x): - return _mscl.MeasurementReferenceFrames_find(self, x) - - def lower_bound(self, x): - return _mscl.MeasurementReferenceFrames_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.MeasurementReferenceFrames_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrames - -# Register MeasurementReferenceFrames in _mscl: -_mscl.MeasurementReferenceFrames_swigregister(MeasurementReferenceFrames) - -class WsdaMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WsdaMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WsdaMap___nonzero__(self) - - def __bool__(self): - return _mscl.WsdaMap___bool__(self) - - def __len__(self): - return _mscl.WsdaMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.WsdaMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.WsdaMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.WsdaMap_has_key(self, key) - - def keys(self): - return _mscl.WsdaMap_keys(self) - - def values(self): - return _mscl.WsdaMap_values(self) - - def items(self): - return _mscl.WsdaMap_items(self) - - def __contains__(self, key): - return _mscl.WsdaMap___contains__(self, key) - - def key_iterator(self): - return _mscl.WsdaMap_key_iterator(self) - - def value_iterator(self): - return _mscl.WsdaMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.WsdaMap___setitem__(self, *args) - - def asdict(self): - return _mscl.WsdaMap_asdict(self) - - def __init__(self, *args): - _mscl.WsdaMap_swiginit(self, _mscl.new_WsdaMap(*args)) - - def empty(self): - return _mscl.WsdaMap_empty(self) - - def size(self): - return _mscl.WsdaMap_size(self) - - def swap(self, v): - return _mscl.WsdaMap_swap(self, v) - - def begin(self): - return _mscl.WsdaMap_begin(self) - - def end(self): - return _mscl.WsdaMap_end(self) - - def rbegin(self): - return _mscl.WsdaMap_rbegin(self) - - def rend(self): - return _mscl.WsdaMap_rend(self) - - def clear(self): - return _mscl.WsdaMap_clear(self) - - def get_allocator(self): - return _mscl.WsdaMap_get_allocator(self) - - def count(self, x): - return _mscl.WsdaMap_count(self, x) - - def erase(self, *args): - return _mscl.WsdaMap_erase(self, *args) - - def find(self, x): - return _mscl.WsdaMap_find(self, x) - - def lower_bound(self, x): - return _mscl.WsdaMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.WsdaMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_WsdaMap - -# Register WsdaMap in _mscl: -_mscl.WsdaMap_swigregister(WsdaMap) - -class Bins(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bins_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bins___nonzero__(self) - - def __bool__(self): - return _mscl.Bins___bool__(self) - - def __len__(self): - return _mscl.Bins___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bins___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bins___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bins___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bins___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bins___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bins___setitem__(self, *args) - - def pop(self): - return _mscl.Bins_pop(self) - - def append(self, x): - return _mscl.Bins_append(self, x) - - def empty(self): - return _mscl.Bins_empty(self) - - def size(self): - return _mscl.Bins_size(self) - - def swap(self, v): - return _mscl.Bins_swap(self, v) - - def begin(self): - return _mscl.Bins_begin(self) - - def end(self): - return _mscl.Bins_end(self) - - def rbegin(self): - return _mscl.Bins_rbegin(self) - - def rend(self): - return _mscl.Bins_rend(self) - - def clear(self): - return _mscl.Bins_clear(self) - - def get_allocator(self): - return _mscl.Bins_get_allocator(self) - - def pop_back(self): - return _mscl.Bins_pop_back(self) - - def erase(self, *args): - return _mscl.Bins_erase(self, *args) - - def __init__(self, *args): - _mscl.Bins_swiginit(self, _mscl.new_Bins(*args)) - - def push_back(self, x): - return _mscl.Bins_push_back(self, x) - - def front(self): - return _mscl.Bins_front(self) - - def back(self): - return _mscl.Bins_back(self) - - def assign(self, n, x): - return _mscl.Bins_assign(self, n, x) - - def insert(self, *args): - return _mscl.Bins_insert(self, *args) - - def reserve(self, n): - return _mscl.Bins_reserve(self, n) - - def capacity(self): - return _mscl.Bins_capacity(self) - __swig_destroy__ = _mscl.delete_Bins - -# Register Bins in _mscl: -_mscl.Bins_swigregister(Bins) - -class Error(Exception): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_swiginit(self, _mscl.new_Error(*args)) - __swig_destroy__ = _mscl.delete_Error - - def what(self): - return _mscl.Error_what(self) - - def __str__(self): - return _mscl.Error___str__(self) - -# Register Error in _mscl: -_mscl.Error_swigregister(Error) - -class Error_NotSupported(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NotSupported_swiginit(self, _mscl.new_Error_NotSupported(*args)) - __swig_destroy__ = _mscl.delete_Error_NotSupported - -# Register Error_NotSupported in _mscl: -_mscl.Error_NotSupported_swigregister(Error_NotSupported) - -class Error_NoData(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NoData_swiginit(self, _mscl.new_Error_NoData(*args)) - __swig_destroy__ = _mscl.delete_Error_NoData - -# Register Error_NoData in _mscl: -_mscl.Error_NoData_swigregister(Error_NoData) - -class Error_BadDataType(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Error_BadDataType_swiginit(self, _mscl.new_Error_BadDataType()) - __swig_destroy__ = _mscl.delete_Error_BadDataType - -# Register Error_BadDataType in _mscl: -_mscl.Error_BadDataType_swigregister(Error_BadDataType) - -class Error_UnknownSampleRate(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_UnknownSampleRate_swiginit(self, _mscl.new_Error_UnknownSampleRate(*args)) - __swig_destroy__ = _mscl.delete_Error_UnknownSampleRate - -# Register Error_UnknownSampleRate in _mscl: -_mscl.Error_UnknownSampleRate_swigregister(Error_UnknownSampleRate) - -class Error_Communication(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Communication_swiginit(self, _mscl.new_Error_Communication(*args)) - __swig_destroy__ = _mscl.delete_Error_Communication - -# Register Error_Communication in _mscl: -_mscl.Error_Communication_swigregister(Error_Communication) - -class Error_NodeCommunication(Error_Communication): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NodeCommunication_swiginit(self, _mscl.new_Error_NodeCommunication(*args)) - - def nodeAddress(self): - return _mscl.Error_NodeCommunication_nodeAddress(self) - __swig_destroy__ = _mscl.delete_Error_NodeCommunication - -# Register Error_NodeCommunication in _mscl: -_mscl.Error_NodeCommunication_swigregister(Error_NodeCommunication) - -class Error_Connection(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Connection_swiginit(self, _mscl.new_Error_Connection(*args)) - __swig_destroy__ = _mscl.delete_Error_Connection - - def code(self): - return _mscl.Error_Connection_code(self) - - def value(self): - return _mscl.Error_Connection_value(self) - -# Register Error_Connection in _mscl: -_mscl.Error_Connection_swigregister(Error_Connection) - -class Error_InvalidSerialPort(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code): - _mscl.Error_InvalidSerialPort_swiginit(self, _mscl.new_Error_InvalidSerialPort(code)) - __swig_destroy__ = _mscl.delete_Error_InvalidSerialPort - -# Register Error_InvalidSerialPort in _mscl: -_mscl.Error_InvalidSerialPort_swigregister(Error_InvalidSerialPort) - -class Error_InvalidTcpServer(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidTcpServer_swiginit(self, _mscl.new_Error_InvalidTcpServer(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidTcpServer - -# Register Error_InvalidTcpServer in _mscl: -_mscl.Error_InvalidTcpServer_swigregister(Error_InvalidTcpServer) - -class Error_InvalidUnixSocket(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidUnixSocket_swiginit(self, _mscl.new_Error_InvalidUnixSocket(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidUnixSocket - -# Register Error_InvalidUnixSocket in _mscl: -_mscl.Error_InvalidUnixSocket_swigregister(Error_InvalidUnixSocket) - -class Error_MipCmdFailed(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_MipCmdFailed_swiginit(self, _mscl.new_Error_MipCmdFailed(*args)) - __swig_destroy__ = _mscl.delete_Error_MipCmdFailed - - def code(self): - return _mscl.Error_MipCmdFailed_code(self) - - def value(self): - return _mscl.Error_MipCmdFailed_value(self) - -# Register Error_MipCmdFailed in _mscl: -_mscl.Error_MipCmdFailed_swigregister(Error_MipCmdFailed) - -class Error_InvalidConfig(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_InvalidConfig_swiginit(self, _mscl.new_Error_InvalidConfig(*args)) - __swig_destroy__ = _mscl.delete_Error_InvalidConfig - - def issues(self): - return _mscl.Error_InvalidConfig_issues(self) - -# Register Error_InvalidConfig in _mscl: -_mscl.Error_InvalidConfig_swigregister(Error_InvalidConfig) - -class Error_InvalidNodeConfig(Error_InvalidConfig): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, issues, nodeAddress): - _mscl.Error_InvalidNodeConfig_swiginit(self, _mscl.new_Error_InvalidNodeConfig(issues, nodeAddress)) - __swig_destroy__ = _mscl.delete_Error_InvalidNodeConfig - - def nodeAddress(self): - return _mscl.Error_InvalidNodeConfig_nodeAddress(self) - -# Register Error_InvalidNodeConfig in _mscl: -_mscl.Error_InvalidNodeConfig_swigregister(Error_InvalidNodeConfig) - - - diff --git a/mscl_release_assets/mscl-amd64-Python3.10-v67.0.0/_mscl.so b/mscl_release_assets/mscl-amd64-Python3.10-v67.0.0/_mscl.so deleted file mode 100644 index 1faf3f6..0000000 Binary files a/mscl_release_assets/mscl-amd64-Python3.10-v67.0.0/_mscl.so and /dev/null differ diff --git a/mscl_release_assets/mscl-amd64-Python3.10-v67.0.0/mscl.py b/mscl_release_assets/mscl-amd64-Python3.10-v67.0.0/mscl.py deleted file mode 100644 index daa6217..0000000 --- a/mscl_release_assets/mscl-amd64-Python3.10-v67.0.0/mscl.py +++ /dev/null @@ -1,18376 +0,0 @@ -# This file was automatically generated by SWIG (http://www.swig.org). -# Version 4.0.1 -# -# Do not make changes to this file unless you know what you are doing--modify -# the SWIG interface file instead. - -from sys import version_info as _swig_python_version_info -if _swig_python_version_info < (2, 7, 0): - raise RuntimeError("Python 2.7 or later required") - -# Import the low-level C/C++ module -if __package__ or "." in __name__: - from . import _mscl -else: - import _mscl - -try: - import builtins as __builtin__ -except ImportError: - import __builtin__ - -def _swig_repr(self): - try: - strthis = "proxy of " + self.this.__repr__() - except __builtin__.Exception: - strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - - -def _swig_setattr_nondynamic_instance_variable(set): - def set_instance_attr(self, name, value): - if name == "thisown": - self.this.own(value) - elif name == "this": - set(self, name, value) - elif hasattr(self, name) and isinstance(getattr(type(self), name), property): - set(self, name, value) - else: - raise AttributeError("You cannot add instance attributes to %s" % self) - return set_instance_attr - - -def _swig_setattr_nondynamic_class_variable(set): - def set_class_attr(cls, name, value): - if hasattr(cls, name) and not isinstance(getattr(cls, name), property): - set(cls, name, value) - else: - raise AttributeError("You cannot add class attributes to %s" % cls) - return set_class_attr - - -def _swig_add_metaclass(metaclass): - """Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass""" - def wrapper(cls): - return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy()) - return wrapper - - -class _SwigNonDynamicMeta(type): - """Meta class to enforce nondynamic attributes (no new attributes) for a class""" - __setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__) - - -class SwigPyIterator(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_SwigPyIterator - - def value(self): - return _mscl.SwigPyIterator_value(self) - - def incr(self, n=1): - return _mscl.SwigPyIterator_incr(self, n) - - def decr(self, n=1): - return _mscl.SwigPyIterator_decr(self, n) - - def distance(self, x): - return _mscl.SwigPyIterator_distance(self, x) - - def equal(self, x): - return _mscl.SwigPyIterator_equal(self, x) - - def copy(self): - return _mscl.SwigPyIterator_copy(self) - - def next(self): - return _mscl.SwigPyIterator_next(self) - - def __next__(self): - return _mscl.SwigPyIterator___next__(self) - - def previous(self): - return _mscl.SwigPyIterator_previous(self) - - def advance(self, n): - return _mscl.SwigPyIterator_advance(self, n) - - def __eq__(self, x): - return _mscl.SwigPyIterator___eq__(self, x) - - def __ne__(self, x): - return _mscl.SwigPyIterator___ne__(self, x) - - def __iadd__(self, n): - return _mscl.SwigPyIterator___iadd__(self, n) - - def __isub__(self, n): - return _mscl.SwigPyIterator___isub__(self, n) - - def __add__(self, n): - return _mscl.SwigPyIterator___add__(self, n) - - def __sub__(self, *args): - return _mscl.SwigPyIterator___sub__(self, *args) - def __iter__(self): - return self - -# Register SwigPyIterator in _mscl: -_mscl.SwigPyIterator_swigregister(SwigPyIterator) - -SHARED_PTR_DISOWN = _mscl.SHARED_PTR_DISOWN -valueType_float = _mscl.valueType_float -valueType_double = _mscl.valueType_double -valueType_uint8 = _mscl.valueType_uint8 -valueType_uint16 = _mscl.valueType_uint16 -valueType_uint32 = _mscl.valueType_uint32 -valueType_int16 = _mscl.valueType_int16 -valueType_int32 = _mscl.valueType_int32 -valueType_bool = _mscl.valueType_bool -valueType_Vector = _mscl.valueType_Vector -valueType_Matrix = _mscl.valueType_Matrix -valueType_Timestamp = _mscl.valueType_Timestamp -valueType_string = _mscl.valueType_string -valueType_Bytes = _mscl.valueType_Bytes -valueType_StructuralHealth = _mscl.valueType_StructuralHealth -valueType_RfSweep = _mscl.valueType_RfSweep -valueType_ChannelMask = _mscl.valueType_ChannelMask -valueType_int8 = _mscl.valueType_int8 -valueType_uint64 = _mscl.valueType_uint64 -deviceState_idle = _mscl.deviceState_idle -deviceState_sleep = _mscl.deviceState_sleep -deviceState_sampling = _mscl.deviceState_sampling -deviceState_sampling_lostBeacon = _mscl.deviceState_sampling_lostBeacon -deviceState_sampling_inactive = _mscl.deviceState_sampling_inactive -deviceState_unknown = _mscl.deviceState_unknown -class BitMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BitMask_swiginit(self, _mscl.new_BitMask(*args)) - __swig_destroy__ = _mscl.delete_BitMask - - def __eq__(self, other): - return _mscl.BitMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.BitMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.BitMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.BitMask___gt__(self, other) - - def fromMask(self, val): - return _mscl.BitMask_fromMask(self, val) - - def toMask(self): - return _mscl.BitMask_toMask(self) - - def enabledCount(self): - return _mscl.BitMask_enabledCount(self) - - def enabled(self, bitIndex): - return _mscl.BitMask_enabled(self, bitIndex) - - def enable(self, bitIndex, enable=True): - return _mscl.BitMask_enable(self, bitIndex, enable) - - def lastBitEnabled(self): - return _mscl.BitMask_lastBitEnabled(self) - -# Register BitMask in _mscl: -_mscl.BitMask_swigregister(BitMask) - -class ChannelMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_CHANNELS = _mscl.ChannelMask_MAX_CHANNELS - - def __init__(self, *args): - _mscl.ChannelMask_swiginit(self, _mscl.new_ChannelMask(*args)) - __swig_destroy__ = _mscl.delete_ChannelMask - - def __eq__(self, other): - return _mscl.ChannelMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.ChannelMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.ChannelMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.ChannelMask___gt__(self, other) - - def fromMask(self, channelMask): - return _mscl.ChannelMask_fromMask(self, channelMask) - - def toMask(self): - return _mscl.ChannelMask_toMask(self) - - def count(self): - return _mscl.ChannelMask_count(self) - - def enabled(self, channel): - return _mscl.ChannelMask_enabled(self, channel) - - def enable(self, channel, enable=True): - return _mscl.ChannelMask_enable(self, channel, enable) - - def lastChEnabled(self): - return _mscl.ChannelMask_lastChEnabled(self) - -# Register ChannelMask in _mscl: -_mscl.ChannelMask_swigregister(ChannelMask) - -class Value(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_Value - - def storedAs(self): - return _mscl.Value_storedAs(self) - - def as_float(self): - return _mscl.Value_as_float(self) - - def as_double(self): - return _mscl.Value_as_double(self) - - def as_uint8(self): - return _mscl.Value_as_uint8(self) - - def as_uint16(self): - return _mscl.Value_as_uint16(self) - - def as_uint32(self): - return _mscl.Value_as_uint32(self) - - def as_uint64(self): - return _mscl.Value_as_uint64(self) - - def as_int8(self): - return _mscl.Value_as_int8(self) - - def as_int16(self): - return _mscl.Value_as_int16(self) - - def as_int32(self): - return _mscl.Value_as_int32(self) - - def as_bool(self): - return _mscl.Value_as_bool(self) - - def as_ChannelMask(self): - return _mscl.Value_as_ChannelMask(self) - - def as_string(self): - return _mscl.Value_as_string(self) - - def __init__(self): - _mscl.Value_swiginit(self, _mscl.new_Value()) - -# Register Value in _mscl: -_mscl.Value_swigregister(Value) - -class Bin(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, start, end, count): - _mscl.Bin_swiginit(self, _mscl.new_Bin(start, end, count)) - - def start(self): - return _mscl.Bin_start(self) - - def end(self): - return _mscl.Bin_end(self) - - def count(self): - return _mscl.Bin_count(self) - __swig_destroy__ = _mscl.delete_Bin - -# Register Bin in _mscl: -_mscl.Bin_swigregister(Bin) - -class Histogram(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, binsStart, binsSize): - _mscl.Histogram_swiginit(self, _mscl.new_Histogram(binsStart, binsSize)) - - def binsStart(self): - return _mscl.Histogram_binsStart(self) - - def binsSize(self): - return _mscl.Histogram_binsSize(self) - - def bins(self): - return _mscl.Histogram_bins(self) - - def addBin(self, bin): - return _mscl.Histogram_addBin(self, bin) - __swig_destroy__ = _mscl.delete_Histogram - -# Register Histogram in _mscl: -_mscl.Histogram_swigregister(Histogram) - -class Timestamp(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INTERNAL = _mscl.Timestamp_INTERNAL - EXTERNAL = _mscl.Timestamp_EXTERNAL - TIME_OF_ARRIVAL = _mscl.Timestamp_TIME_OF_ARRIVAL - GPS = _mscl.Timestamp_GPS - UNIX = _mscl.Timestamp_UNIX - UTC = _mscl.Timestamp_UTC - - def __init__(self, *args): - _mscl.Timestamp_swiginit(self, _mscl.new_Timestamp(*args)) - __swig_destroy__ = _mscl.delete_Timestamp - - def nanoseconds(self, *args): - return _mscl.Timestamp_nanoseconds(self, *args) - - def seconds(self, *args): - return _mscl.Timestamp_seconds(self, *args) - - def storedEpoch(self): - return _mscl.Timestamp_storedEpoch(self) - - def __str__(self): - return _mscl.Timestamp___str__(self) - - def setTime(self, *args): - return _mscl.Timestamp_setTime(self, *args) - - def setTimeNow(self): - return _mscl.Timestamp_setTimeNow(self) - - @staticmethod - def timeNow(): - return _mscl.Timestamp_timeNow() - - @staticmethod - def setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - - @staticmethod - def getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - - @staticmethod - def gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - - @staticmethod - def utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -# Register Timestamp in _mscl: -_mscl.Timestamp_swigregister(Timestamp) - -def Timestamp_timeNow(): - return _mscl.Timestamp_timeNow() - -def Timestamp_setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - -def Timestamp_getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - -def Timestamp_gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - -def Timestamp_utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -class TimeSpan(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - NANOSECONDS_PER_MICROSECOND = _mscl.TimeSpan_NANOSECONDS_PER_MICROSECOND - NANOSECONDS_PER_MILLISECOND = _mscl.TimeSpan_NANOSECONDS_PER_MILLISECOND - NANOSECONDS_PER_SECOND = _mscl.TimeSpan_NANOSECONDS_PER_SECOND - - def getNanoseconds(self): - return _mscl.TimeSpan_getNanoseconds(self) - - def getMicroseconds(self): - return _mscl.TimeSpan_getMicroseconds(self) - - def getMilliseconds(self): - return _mscl.TimeSpan_getMilliseconds(self) - - def getSeconds(self): - return _mscl.TimeSpan_getSeconds(self) - - @staticmethod - def NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - - @staticmethod - def MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - - @staticmethod - def MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - - @staticmethod - def Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - - @staticmethod - def Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - - @staticmethod - def Hours(hours): - return _mscl.TimeSpan_Hours(hours) - - @staticmethod - def Days(days): - return _mscl.TimeSpan_Days(days) - __swig_destroy__ = _mscl.delete_TimeSpan - -# Register TimeSpan in _mscl: -_mscl.TimeSpan_swigregister(TimeSpan) - -def TimeSpan_NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - -def TimeSpan_MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - -def TimeSpan_MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - -def TimeSpan_Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - -def TimeSpan_Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - -def TimeSpan_Hours(hours): - return _mscl.TimeSpan_Hours(hours) - -def TimeSpan_Days(days): - return _mscl.TimeSpan_Days(days) - -class Version(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Version_swiginit(self, _mscl.new_Version(*args)) - - def __eq__(self, cmp): - return _mscl.Version___eq__(self, cmp) - - def __ne__(self, cmp): - return _mscl.Version___ne__(self, cmp) - - def __lt__(self, cmp): - return _mscl.Version___lt__(self, cmp) - - def __le__(self, cmp): - return _mscl.Version___le__(self, cmp) - - def __gt__(self, cmp): - return _mscl.Version___gt__(self, cmp) - - def __ge__(self, cmp): - return _mscl.Version___ge__(self, cmp) - - def __str__(self): - return _mscl.Version___str__(self) - - def fromString(self, strVersion): - return _mscl.Version_fromString(self, strVersion) - - def majorPart(self): - return _mscl.Version_majorPart(self) - - def minorPart(self): - return _mscl.Version_minorPart(self) - - def patchPart(self): - return _mscl.Version_patchPart(self) - __swig_destroy__ = _mscl.delete_Version - -# Register Version in _mscl: -_mscl.Version_swigregister(Version) - -class DeviceInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.DeviceInfo_connectionType_serial - connectionType_tcp = _mscl.DeviceInfo_connectionType_tcp - - def __init__(self, *args): - _mscl.DeviceInfo_swiginit(self, _mscl.new_DeviceInfo(*args)) - - def description(self): - return _mscl.DeviceInfo_description(self) - - def serial(self): - return _mscl.DeviceInfo_serial(self) - - def baudRate(self): - return _mscl.DeviceInfo_baudRate(self) - - def connectionType(self): - return _mscl.DeviceInfo_connectionType(self) - __swig_destroy__ = _mscl.delete_DeviceInfo - -# Register DeviceInfo in _mscl: -_mscl.DeviceInfo_swigregister(DeviceInfo) -cvar = _mscl.cvar -MSCL_VERSION = cvar.MSCL_VERSION - -class Devices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def listBaseStations(): - return _mscl.Devices_listBaseStations() - - @staticmethod - def listInertialDevices(): - return _mscl.Devices_listInertialDevices() - - @staticmethod - def listPorts(): - return _mscl.Devices_listPorts() - __swig_destroy__ = _mscl.delete_Devices - -# Register Devices in _mscl: -_mscl.Devices_swigregister(Devices) - -def Devices_listBaseStations(): - return _mscl.Devices_listBaseStations() - -def Devices_listInertialDevices(): - return _mscl.Devices_listInertialDevices() - -def Devices_listPorts(): - return _mscl.Devices_listPorts() - -class ConnectionDebugData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ConnectionDebugData_swiginit(self, _mscl.new_ConnectionDebugData(*args)) - - def fromRead(self): - return _mscl.ConnectionDebugData_fromRead(self) - - def timestamp(self): - return _mscl.ConnectionDebugData_timestamp(self) - - def data(self): - return _mscl.ConnectionDebugData_data(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugData - -# Register ConnectionDebugData in _mscl: -_mscl.ConnectionDebugData_swigregister(ConnectionDebugData) - -class Connection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.Connection_connectionType_serial - connectionType_tcp = _mscl.Connection_connectionType_tcp - connectionType_webSocket = _mscl.Connection_connectionType_webSocket - connectionType_unixSocket = _mscl.Connection_connectionType_unixSocket - - def __init__(self): - _mscl.Connection_swiginit(self, _mscl.new_Connection()) - - @staticmethod - def Serial(*args): - return _mscl.Connection_Serial(*args) - - @staticmethod - def TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - - @staticmethod - def UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - - @staticmethod - def Mock(): - return _mscl.Connection_Mock() - - def description(self): - return _mscl.Connection_description(self) - - def port(self): - return _mscl.Connection_port(self) - - def type(self): - return _mscl.Connection_type(self) - - def disconnect(self): - return _mscl.Connection_disconnect(self) - - def reconnect(self): - return _mscl.Connection_reconnect(self) - - def write(self, bytes): - return _mscl.Connection_write(self, bytes) - - def writeStr(self, bytes): - return _mscl.Connection_writeStr(self, bytes) - - def clearBuffer(self): - return _mscl.Connection_clearBuffer(self) - - def byteReadPos(self): - return _mscl.Connection_byteReadPos(self) - - def byteAppendPos(self): - return _mscl.Connection_byteAppendPos(self) - - def rawByteMode(self, *args): - return _mscl.Connection_rawByteMode(self, *args) - - def getRawBytes(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytes(self, timeout, maxBytes, minBytes) - - def getRawBytesStr(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytesStr(self, timeout, maxBytes, minBytes) - - def getRawBytesWithPattern(self, pattern, timeout=0): - return _mscl.Connection_getRawBytesWithPattern(self, pattern, timeout) - - def debugMode(self, *args): - return _mscl.Connection_debugMode(self, *args) - - def getDebugData(self, timeout=0): - return _mscl.Connection_getDebugData(self, timeout) - - def updateBaudRate(self, baudRate): - return _mscl.Connection_updateBaudRate(self, baudRate) - __swig_destroy__ = _mscl.delete_Connection - -# Register Connection in _mscl: -_mscl.Connection_swigregister(Connection) - -def Connection_Serial(*args): - return _mscl.Connection_Serial(*args) - -def Connection_TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - -def Connection_UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - -def Connection_Mock(): - return _mscl.Connection_Mock() - -class WirelessTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - beacon_none = _mscl.WirelessTypes_beacon_none - beacon_internalTimer = _mscl.WirelessTypes_beacon_internalTimer - beacon_internalPPS = _mscl.WirelessTypes_beacon_internalPPS - beacon_externalPPS = _mscl.WirelessTypes_beacon_externalPPS - microcontroller_18F452 = _mscl.WirelessTypes_microcontroller_18F452 - microcontroller_18F4620 = _mscl.WirelessTypes_microcontroller_18F4620 - microcontroller_18F46K20 = _mscl.WirelessTypes_microcontroller_18F46K20 - microcontroller_18F67K90 = _mscl.WirelessTypes_microcontroller_18F67K90 - microcontroller_EFM32WG990F256 = _mscl.WirelessTypes_microcontroller_EFM32WG990F256 - microcontroller_EFR32FG1P132F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32FG1P132F256GM48 - microcontroller_EFR32MG1P232F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32MG1P232F256GM48 - collectionMethod_logOnly = _mscl.WirelessTypes_collectionMethod_logOnly - collectionMethod_transmitOnly = _mscl.WirelessTypes_collectionMethod_transmitOnly - collectionMethod_logAndTransmit = _mscl.WirelessTypes_collectionMethod_logAndTransmit - dataType_first = _mscl.WirelessTypes_dataType_first - dataType_uint16_shifted = _mscl.WirelessTypes_dataType_uint16_shifted - dataType_float32 = _mscl.WirelessTypes_dataType_float32 - dataType_uint16_12bitRes = _mscl.WirelessTypes_dataType_uint16_12bitRes - dataType_uint32 = _mscl.WirelessTypes_dataType_uint32 - dataType_uint16 = _mscl.WirelessTypes_dataType_uint16 - dataType_float32_noCals = _mscl.WirelessTypes_dataType_float32_noCals - dataType_uint24_18bitRes = _mscl.WirelessTypes_dataType_uint24_18bitRes - dataType_uint16_18bitTrunc = _mscl.WirelessTypes_dataType_uint16_18bitTrunc - dataType_int24_20bit = _mscl.WirelessTypes_dataType_int24_20bit - dataType_int16_20bitTrunc = _mscl.WirelessTypes_dataType_int16_20bitTrunc - dataType_uint24 = _mscl.WirelessTypes_dataType_uint24 - dataType_uint16_24bitTrunc = _mscl.WirelessTypes_dataType_uint16_24bitTrunc - dataType_int16_x10 = _mscl.WirelessTypes_dataType_int16_x10 - dataType_last = _mscl.WirelessTypes_dataType_last - dataFormat_raw_uint16 = _mscl.WirelessTypes_dataFormat_raw_uint16 - dataFormat_cal_float = _mscl.WirelessTypes_dataFormat_cal_float - dataFormat_raw_uint24 = _mscl.WirelessTypes_dataFormat_raw_uint24 - dataFormat_raw_int24 = _mscl.WirelessTypes_dataFormat_raw_int24 - dataFormat_raw_int16 = _mscl.WirelessTypes_dataFormat_raw_int16 - dataFormat_cal_int16_x10 = _mscl.WirelessTypes_dataFormat_cal_int16_x10 - syncMode_continuous = _mscl.WirelessTypes_syncMode_continuous - syncMode_burst = _mscl.WirelessTypes_syncMode_burst - samplingMode_sync = _mscl.WirelessTypes_samplingMode_sync - samplingMode_syncBurst = _mscl.WirelessTypes_samplingMode_syncBurst - samplingMode_nonSync = _mscl.WirelessTypes_samplingMode_nonSync - samplingMode_armedDatalog = _mscl.WirelessTypes_samplingMode_armedDatalog - samplingMode_syncEvent = _mscl.WirelessTypes_samplingMode_syncEvent - samplingMode_nonSyncEvent = _mscl.WirelessTypes_samplingMode_nonSyncEvent - defaultMode_idle = _mscl.WirelessTypes_defaultMode_idle - defaultMode_ldc = _mscl.WirelessTypes_defaultMode_ldc - defaultMode_datalog = _mscl.WirelessTypes_defaultMode_datalog - defaultMode_sleep = _mscl.WirelessTypes_defaultMode_sleep - defaultMode_sync = _mscl.WirelessTypes_defaultMode_sync - freq_unknown = _mscl.WirelessTypes_freq_unknown - freq_11 = _mscl.WirelessTypes_freq_11 - freq_12 = _mscl.WirelessTypes_freq_12 - freq_13 = _mscl.WirelessTypes_freq_13 - freq_14 = _mscl.WirelessTypes_freq_14 - freq_15 = _mscl.WirelessTypes_freq_15 - freq_16 = _mscl.WirelessTypes_freq_16 - freq_17 = _mscl.WirelessTypes_freq_17 - freq_18 = _mscl.WirelessTypes_freq_18 - freq_19 = _mscl.WirelessTypes_freq_19 - freq_20 = _mscl.WirelessTypes_freq_20 - freq_21 = _mscl.WirelessTypes_freq_21 - freq_22 = _mscl.WirelessTypes_freq_22 - freq_23 = _mscl.WirelessTypes_freq_23 - freq_24 = _mscl.WirelessTypes_freq_24 - freq_25 = _mscl.WirelessTypes_freq_25 - freq_26 = _mscl.WirelessTypes_freq_26 - power_20dBm = _mscl.WirelessTypes_power_20dBm - power_16dBm = _mscl.WirelessTypes_power_16dBm - power_15dBm = _mscl.WirelessTypes_power_15dBm - power_12dBm = _mscl.WirelessTypes_power_12dBm - power_11dBm = _mscl.WirelessTypes_power_11dBm - power_10dBm = _mscl.WirelessTypes_power_10dBm - power_5dBm = _mscl.WirelessTypes_power_5dBm - power_1dBm = _mscl.WirelessTypes_power_1dBm - power_0dBm = _mscl.WirelessTypes_power_0dBm - retransmission_off = _mscl.WirelessTypes_retransmission_off - retransmission_on = _mscl.WirelessTypes_retransmission_on - retransmission_disabled = _mscl.WirelessTypes_retransmission_disabled - trigger_userInit = _mscl.WirelessTypes_trigger_userInit - trigger_ceiling = _mscl.WirelessTypes_trigger_ceiling - trigger_floor = _mscl.WirelessTypes_trigger_floor - trigger_rampUp = _mscl.WirelessTypes_trigger_rampUp - trigger_rampDown = _mscl.WirelessTypes_trigger_rampDown - equation_none = _mscl.WirelessTypes_equation_none - equation_standard = _mscl.WirelessTypes_equation_standard - unit_none = _mscl.WirelessTypes_unit_none - unit_other_bits = _mscl.WirelessTypes_unit_other_bits - unit_strain_strain = _mscl.WirelessTypes_unit_strain_strain - unit_strain_microStrain = _mscl.WirelessTypes_unit_strain_microStrain - unit_accel_g = _mscl.WirelessTypes_unit_accel_g - unit_accel_mPerSec2 = _mscl.WirelessTypes_unit_accel_mPerSec2 - unit_volts_volts = _mscl.WirelessTypes_unit_volts_volts - unit_volts_millivolts = _mscl.WirelessTypes_unit_volts_millivolts - unit_volts_microvolts = _mscl.WirelessTypes_unit_volts_microvolts - unit_temp_celsius = _mscl.WirelessTypes_unit_temp_celsius - unit_temp_kelvin = _mscl.WirelessTypes_unit_temp_kelvin - unit_temp_fahrenheit = _mscl.WirelessTypes_unit_temp_fahrenheit - unit_displacement_meters = _mscl.WirelessTypes_unit_displacement_meters - unit_displacement_millimeters = _mscl.WirelessTypes_unit_displacement_millimeters - unit_displacement_micrometers = _mscl.WirelessTypes_unit_displacement_micrometers - unit_force_lbf = _mscl.WirelessTypes_unit_force_lbf - unit_force_newtons = _mscl.WirelessTypes_unit_force_newtons - unit_force_kiloNewtons = _mscl.WirelessTypes_unit_force_kiloNewtons - unit_mass_kilograms = _mscl.WirelessTypes_unit_mass_kilograms - unit_pressure_bar = _mscl.WirelessTypes_unit_pressure_bar - unit_pressure_psi = _mscl.WirelessTypes_unit_pressure_psi - unit_pressure_atm = _mscl.WirelessTypes_unit_pressure_atm - unit_pressure_mmHg = _mscl.WirelessTypes_unit_pressure_mmHg - unit_pressure_pascal = _mscl.WirelessTypes_unit_pressure_pascal - unit_pressure_megaPascal = _mscl.WirelessTypes_unit_pressure_megaPascal - unit_pressure_kiloPascal = _mscl.WirelessTypes_unit_pressure_kiloPascal - unit_angDisplacement_degrees = _mscl.WirelessTypes_unit_angDisplacement_degrees - unit_angVelocity_degreesPerSec = _mscl.WirelessTypes_unit_angVelocity_degreesPerSec - unit_angVelocity_radiansPerSec = _mscl.WirelessTypes_unit_angVelocity_radiansPerSec - unit_other_percent = _mscl.WirelessTypes_unit_other_percent - unit_freq_rpm = _mscl.WirelessTypes_unit_freq_rpm - unit_freq_hertz = _mscl.WirelessTypes_unit_freq_hertz - unit_rh_percentRh = _mscl.WirelessTypes_unit_rh_percentRh - unit_other_mVperV = _mscl.WirelessTypes_unit_other_mVperV - unit_accel_milliG = _mscl.WirelessTypes_unit_accel_milliG - unit_accel_ftPerSec2 = _mscl.WirelessTypes_unit_accel_ftPerSec2 - unit_other_percentLife = _mscl.WirelessTypes_unit_other_percentLife - unit_other_count = _mscl.WirelessTypes_unit_other_count - unit_displacement_feet = _mscl.WirelessTypes_unit_displacement_feet - unit_displacement_inches = _mscl.WirelessTypes_unit_displacement_inches - unit_displacement_yards = _mscl.WirelessTypes_unit_displacement_yards - unit_displacement_miles = _mscl.WirelessTypes_unit_displacement_miles - unit_displacement_nautMiles = _mscl.WirelessTypes_unit_displacement_nautMiles - unit_displacement_thouInch = _mscl.WirelessTypes_unit_displacement_thouInch - unit_displacement_hundInch = _mscl.WirelessTypes_unit_displacement_hundInch - unit_displacement_kilometers = _mscl.WirelessTypes_unit_displacement_kilometers - unit_displacement_centimeters = _mscl.WirelessTypes_unit_displacement_centimeters - unit_irradiance_wattsPerSqMeter = _mscl.WirelessTypes_unit_irradiance_wattsPerSqMeter - unit_par_microEinstein = _mscl.WirelessTypes_unit_par_microEinstein - unit_mass_pound = _mscl.WirelessTypes_unit_mass_pound - unit_power_watt = _mscl.WirelessTypes_unit_power_watt - unit_power_milliwatt = _mscl.WirelessTypes_unit_power_milliwatt - unit_power_horsepower = _mscl.WirelessTypes_unit_power_horsepower - unit_reactivePower_var = _mscl.WirelessTypes_unit_reactivePower_var - unit_energy_wattHour = _mscl.WirelessTypes_unit_energy_wattHour - unit_energy_kiloWattHour = _mscl.WirelessTypes_unit_energy_kiloWattHour - unit_reactiveEnergy_VARh = _mscl.WirelessTypes_unit_reactiveEnergy_VARh - unit_reactiveEnergy_kVARh = _mscl.WirelessTypes_unit_reactiveEnergy_kVARh - unit_current_ampere = _mscl.WirelessTypes_unit_current_ampere - unit_current_milliampere = _mscl.WirelessTypes_unit_current_milliampere - unit_current_microampere = _mscl.WirelessTypes_unit_current_microampere - unit_pressure_millibar = _mscl.WirelessTypes_unit_pressure_millibar - unit_pressure_inHg = _mscl.WirelessTypes_unit_pressure_inHg - unit_rssi_dBm = _mscl.WirelessTypes_unit_rssi_dBm - unit_freq_kiloHertz = _mscl.WirelessTypes_unit_freq_kiloHertz - unit_angDisplacement_radians = _mscl.WirelessTypes_unit_angDisplacement_radians - unit_velocity_metersPerSec = _mscl.WirelessTypes_unit_velocity_metersPerSec - unit_velocity_kilometersPerSec = _mscl.WirelessTypes_unit_velocity_kilometersPerSec - unit_velocity_kilometersPerHr = _mscl.WirelessTypes_unit_velocity_kilometersPerHr - unit_velocity_milesPerHr = _mscl.WirelessTypes_unit_velocity_milesPerHr - unit_velocity_knots = _mscl.WirelessTypes_unit_velocity_knots - unit_volume_cubicMeter = _mscl.WirelessTypes_unit_volume_cubicMeter - unit_volume_cubicFt = _mscl.WirelessTypes_unit_volume_cubicFt - unit_volume_liters = _mscl.WirelessTypes_unit_volume_liters - unit_volume_gallon = _mscl.WirelessTypes_unit_volume_gallon - unit_flowRate_cubicMetersPerSec = _mscl.WirelessTypes_unit_flowRate_cubicMetersPerSec - unit_flowRate_cubicFtPerSec = _mscl.WirelessTypes_unit_flowRate_cubicFtPerSec - unit_torque_newtonMeter = _mscl.WirelessTypes_unit_torque_newtonMeter - unit_torque_footPounds = _mscl.WirelessTypes_unit_torque_footPounds - unit_torque_inchPounds = _mscl.WirelessTypes_unit_torque_inchPounds - unit_time_secs = _mscl.WirelessTypes_unit_time_secs - unit_time_nanosecs = _mscl.WirelessTypes_unit_time_nanosecs - unit_time_microsecs = _mscl.WirelessTypes_unit_time_microsecs - unit_time_millisecs = _mscl.WirelessTypes_unit_time_millisecs - unit_time_minutes = _mscl.WirelessTypes_unit_time_minutes - unit_time_hours = _mscl.WirelessTypes_unit_time_hours - unit_time_days = _mscl.WirelessTypes_unit_time_days - unit_time_weeks = _mscl.WirelessTypes_unit_time_weeks - unit_other_value = _mscl.WirelessTypes_unit_other_value - unit_magneticFlux_gauss = _mscl.WirelessTypes_unit_magneticFlux_gauss - unit_other_gSec = _mscl.WirelessTypes_unit_other_gSec - unit_other_secsPerSec = _mscl.WirelessTypes_unit_other_secsPerSec - unit_rssi_dBHz = _mscl.WirelessTypes_unit_rssi_dBHz - unit_density_kgPerMeter3 = _mscl.WirelessTypes_unit_density_kgPerMeter3 - unit_other_unitless = _mscl.WirelessTypes_unit_other_unitless - unit_velocity_inchesPerSec = _mscl.WirelessTypes_unit_velocity_inchesPerSec - unit_force_kg = _mscl.WirelessTypes_unit_force_kg - unit_rawVoltage_volts = _mscl.WirelessTypes_unit_rawVoltage_volts - unit_rawVoltage_millivolts = _mscl.WirelessTypes_unit_rawVoltage_millivolts - unit_rawVoltage_microvolts = _mscl.WirelessTypes_unit_rawVoltage_microvolts - unit_resistance_ohm = _mscl.WirelessTypes_unit_resistance_ohm - unit_resistance_milliohm = _mscl.WirelessTypes_unit_resistance_milliohm - unit_resistance_kiloohm = _mscl.WirelessTypes_unit_resistance_kiloohm - unit_velocity_mmPerSec = _mscl.WirelessTypes_unit_velocity_mmPerSec - unit_mass_grams = _mscl.WirelessTypes_unit_mass_grams - unit_mass_ton = _mscl.WirelessTypes_unit_mass_ton - unit_mass_tonne = _mscl.WirelessTypes_unit_mass_tonne - chType_none = _mscl.WirelessTypes_chType_none - chType_fullDifferential = _mscl.WirelessTypes_chType_fullDifferential - chType_singleEnded = _mscl.WirelessTypes_chType_singleEnded - chType_battery = _mscl.WirelessTypes_chType_battery - chType_temperature = _mscl.WirelessTypes_chType_temperature - chType_rh = _mscl.WirelessTypes_chType_rh - chType_acceleration = _mscl.WirelessTypes_chType_acceleration - chType_displacement = _mscl.WirelessTypes_chType_displacement - chType_voltage = _mscl.WirelessTypes_chType_voltage - chType_diffTemperature = _mscl.WirelessTypes_chType_diffTemperature - chType_digital = _mscl.WirelessTypes_chType_digital - chType_tilt = _mscl.WirelessTypes_chType_tilt - voltageType_singleEnded = _mscl.WirelessTypes_voltageType_singleEnded - voltageType_differential = _mscl.WirelessTypes_voltageType_differential - settling_4ms = _mscl.WirelessTypes_settling_4ms - settling_8ms = _mscl.WirelessTypes_settling_8ms - settling_16ms = _mscl.WirelessTypes_settling_16ms - settling_32ms = _mscl.WirelessTypes_settling_32ms - settling_40ms = _mscl.WirelessTypes_settling_40ms - settling_48ms = _mscl.WirelessTypes_settling_48ms - settling_60ms = _mscl.WirelessTypes_settling_60ms - settling_101ms_90db = _mscl.WirelessTypes_settling_101ms_90db - settling_120ms_80db = _mscl.WirelessTypes_settling_120ms_80db - settling_120ms_65db = _mscl.WirelessTypes_settling_120ms_65db - settling_160ms_69db = _mscl.WirelessTypes_settling_160ms_69db - settling_200ms = _mscl.WirelessTypes_settling_200ms - transducer_thermocouple = _mscl.WirelessTypes_transducer_thermocouple - transducer_rtd = _mscl.WirelessTypes_transducer_rtd - transducer_thermistor = _mscl.WirelessTypes_transducer_thermistor - tc_uncompensated = _mscl.WirelessTypes_tc_uncompensated - tc_K = _mscl.WirelessTypes_tc_K - tc_J = _mscl.WirelessTypes_tc_J - tc_R = _mscl.WirelessTypes_tc_R - tc_S = _mscl.WirelessTypes_tc_S - tc_T = _mscl.WirelessTypes_tc_T - tc_E = _mscl.WirelessTypes_tc_E - tc_B = _mscl.WirelessTypes_tc_B - tc_N = _mscl.WirelessTypes_tc_N - tc_customPolynomial = _mscl.WirelessTypes_tc_customPolynomial - rtd_uncompensated = _mscl.WirelessTypes_rtd_uncompensated - rtd_pt10 = _mscl.WirelessTypes_rtd_pt10 - rtd_pt50 = _mscl.WirelessTypes_rtd_pt50 - rtd_pt100 = _mscl.WirelessTypes_rtd_pt100 - rtd_pt200 = _mscl.WirelessTypes_rtd_pt200 - rtd_pt500 = _mscl.WirelessTypes_rtd_pt500 - rtd_pt1000 = _mscl.WirelessTypes_rtd_pt1000 - rtd_2wire = _mscl.WirelessTypes_rtd_2wire - rtd_3wire = _mscl.WirelessTypes_rtd_3wire - rtd_4wire = _mscl.WirelessTypes_rtd_4wire - thermistor_uncompensated = _mscl.WirelessTypes_thermistor_uncompensated - thermistor_44004_44033 = _mscl.WirelessTypes_thermistor_44004_44033 - thermistor_44005_44030 = _mscl.WirelessTypes_thermistor_44005_44030 - thermistor_44007_44034 = _mscl.WirelessTypes_thermistor_44007_44034 - thermistor_44006_44031 = _mscl.WirelessTypes_thermistor_44006_44031 - thermistor_44008_44032 = _mscl.WirelessTypes_thermistor_44008_44032 - thermistor_ysi_400 = _mscl.WirelessTypes_thermistor_ysi_400 - sampleRate_104170Hz = _mscl.WirelessTypes_sampleRate_104170Hz - sampleRate_78125Hz = _mscl.WirelessTypes_sampleRate_78125Hz - sampleRate_62500Hz = _mscl.WirelessTypes_sampleRate_62500Hz - sampleRate_25000Hz = _mscl.WirelessTypes_sampleRate_25000Hz - sampleRate_12500Hz = _mscl.WirelessTypes_sampleRate_12500Hz - sampleRate_3200Hz = _mscl.WirelessTypes_sampleRate_3200Hz - sampleRate_1600Hz = _mscl.WirelessTypes_sampleRate_1600Hz - sampleRate_800Hz = _mscl.WirelessTypes_sampleRate_800Hz - sampleRate_300Hz = _mscl.WirelessTypes_sampleRate_300Hz - sampleRate_1kHz = _mscl.WirelessTypes_sampleRate_1kHz - sampleRate_2kHz = _mscl.WirelessTypes_sampleRate_2kHz - sampleRate_3kHz = _mscl.WirelessTypes_sampleRate_3kHz - sampleRate_4kHz = _mscl.WirelessTypes_sampleRate_4kHz - sampleRate_5kHz = _mscl.WirelessTypes_sampleRate_5kHz - sampleRate_6kHz = _mscl.WirelessTypes_sampleRate_6kHz - sampleRate_7kHz = _mscl.WirelessTypes_sampleRate_7kHz - sampleRate_8kHz = _mscl.WirelessTypes_sampleRate_8kHz - sampleRate_9kHz = _mscl.WirelessTypes_sampleRate_9kHz - sampleRate_10kHz = _mscl.WirelessTypes_sampleRate_10kHz - sampleRate_20kHz = _mscl.WirelessTypes_sampleRate_20kHz - sampleRate_30kHz = _mscl.WirelessTypes_sampleRate_30kHz - sampleRate_40kHz = _mscl.WirelessTypes_sampleRate_40kHz - sampleRate_50kHz = _mscl.WirelessTypes_sampleRate_50kHz - sampleRate_60kHz = _mscl.WirelessTypes_sampleRate_60kHz - sampleRate_70kHz = _mscl.WirelessTypes_sampleRate_70kHz - sampleRate_80kHz = _mscl.WirelessTypes_sampleRate_80kHz - sampleRate_90kHz = _mscl.WirelessTypes_sampleRate_90kHz - sampleRate_100kHz = _mscl.WirelessTypes_sampleRate_100kHz - sampleRate_887Hz = _mscl.WirelessTypes_sampleRate_887Hz - sampleRate_8192Hz = _mscl.WirelessTypes_sampleRate_8192Hz - sampleRate_4096Hz = _mscl.WirelessTypes_sampleRate_4096Hz - sampleRate_2048Hz = _mscl.WirelessTypes_sampleRate_2048Hz - sampleRate_1024Hz = _mscl.WirelessTypes_sampleRate_1024Hz - sampleRate_512Hz = _mscl.WirelessTypes_sampleRate_512Hz - sampleRate_256Hz = _mscl.WirelessTypes_sampleRate_256Hz - sampleRate_128Hz = _mscl.WirelessTypes_sampleRate_128Hz - sampleRate_64Hz = _mscl.WirelessTypes_sampleRate_64Hz - sampleRate_32Hz = _mscl.WirelessTypes_sampleRate_32Hz - sampleRate_16Hz = _mscl.WirelessTypes_sampleRate_16Hz - sampleRate_8Hz = _mscl.WirelessTypes_sampleRate_8Hz - sampleRate_4Hz = _mscl.WirelessTypes_sampleRate_4Hz - sampleRate_2Hz = _mscl.WirelessTypes_sampleRate_2Hz - sampleRate_1Hz = _mscl.WirelessTypes_sampleRate_1Hz - sampleRate_2Sec = _mscl.WirelessTypes_sampleRate_2Sec - sampleRate_5Sec = _mscl.WirelessTypes_sampleRate_5Sec - sampleRate_10Sec = _mscl.WirelessTypes_sampleRate_10Sec - sampleRate_30Sec = _mscl.WirelessTypes_sampleRate_30Sec - sampleRate_1Min = _mscl.WirelessTypes_sampleRate_1Min - sampleRate_2Min = _mscl.WirelessTypes_sampleRate_2Min - sampleRate_5Min = _mscl.WirelessTypes_sampleRate_5Min - sampleRate_10Min = _mscl.WirelessTypes_sampleRate_10Min - sampleRate_30Min = _mscl.WirelessTypes_sampleRate_30Min - sampleRate_60Min = _mscl.WirelessTypes_sampleRate_60Min - sampleRate_24Hours = _mscl.WirelessTypes_sampleRate_24Hours - region_usa = _mscl.WirelessTypes_region_usa - region_europeanUnion = _mscl.WirelessTypes_region_europeanUnion - region_japan = _mscl.WirelessTypes_region_japan - region_other = _mscl.WirelessTypes_region_other - region_brazil = _mscl.WirelessTypes_region_brazil - region_china = _mscl.WirelessTypes_region_china - region_australia_newzealand = _mscl.WirelessTypes_region_australia_newzealand - region_singapore = _mscl.WirelessTypes_region_singapore - region_canada = _mscl.WirelessTypes_region_canada - region_southAfrica = _mscl.WirelessTypes_region_southAfrica - region_indonesia = _mscl.WirelessTypes_region_indonesia - region_taiwan = _mscl.WirelessTypes_region_taiwan - chSetting_inputRange = _mscl.WirelessTypes_chSetting_inputRange - chSetting_filterSettlingTime = _mscl.WirelessTypes_chSetting_filterSettlingTime - chSetting_thermocoupleType = _mscl.WirelessTypes_chSetting_thermocoupleType - chSetting_linearEquation = _mscl.WirelessTypes_chSetting_linearEquation - chSetting_unit = _mscl.WirelessTypes_chSetting_unit - chSetting_equationType = _mscl.WirelessTypes_chSetting_equationType - chSetting_hardwareOffset = _mscl.WirelessTypes_chSetting_hardwareOffset - chSetting_autoBalance = _mscl.WirelessTypes_chSetting_autoBalance - chSetting_gaugeFactor = _mscl.WirelessTypes_chSetting_gaugeFactor - chSetting_antiAliasingFilter = _mscl.WirelessTypes_chSetting_antiAliasingFilter - chSetting_legacyShuntCal = _mscl.WirelessTypes_chSetting_legacyShuntCal - chSetting_autoShuntCal = _mscl.WirelessTypes_chSetting_autoShuntCal - chSetting_lowPassFilter = _mscl.WirelessTypes_chSetting_lowPassFilter - chSetting_highPassFilter = _mscl.WirelessTypes_chSetting_highPassFilter - chSetting_tempSensorOptions = _mscl.WirelessTypes_chSetting_tempSensorOptions - chSetting_debounceFilter = _mscl.WirelessTypes_chSetting_debounceFilter - chSetting_pullUpResistor = _mscl.WirelessTypes_chSetting_pullUpResistor - chSetting_factoryLinearEq = _mscl.WirelessTypes_chSetting_factoryLinearEq - chSetting_factoryUnit = _mscl.WirelessTypes_chSetting_factoryUnit - chSetting_factoryEqType = _mscl.WirelessTypes_chSetting_factoryEqType - autobalance_success = _mscl.WirelessTypes_autobalance_success - autobalance_maybeInvalid = _mscl.WirelessTypes_autobalance_maybeInvalid - autobalance_notSupportedByNode = _mscl.WirelessTypes_autobalance_notSupportedByNode - autobalance_notSupportedByCh = _mscl.WirelessTypes_autobalance_notSupportedByCh - autobalance_targetOutOfRange = _mscl.WirelessTypes_autobalance_targetOutOfRange - autobalance_failed = _mscl.WirelessTypes_autobalance_failed - autobalance_legacyNone = _mscl.WirelessTypes_autobalance_legacyNone - autobalance_notComplete = _mscl.WirelessTypes_autobalance_notComplete - autocal_success = _mscl.WirelessTypes_autocal_success - autocal_maybeInvalid_applied = _mscl.WirelessTypes_autocal_maybeInvalid_applied - autocal_maybeInvalid_notApplied = _mscl.WirelessTypes_autocal_maybeInvalid_notApplied - autocal_notComplete = _mscl.WirelessTypes_autocal_notComplete - autocalError_none = _mscl.WirelessTypes_autocalError_none - autocalError_sensorDetached = _mscl.WirelessTypes_autocalError_sensorDetached - autocalError_sensorShorted = _mscl.WirelessTypes_autocalError_sensorShorted - autocalError_unsupportedChannel = _mscl.WirelessTypes_autocalError_unsupportedChannel - autocalError_baseHighRail = _mscl.WirelessTypes_autocalError_baseHighRail - autocalError_baseLowRail = _mscl.WirelessTypes_autocalError_baseLowRail - autocalError_shuntHighRail = _mscl.WirelessTypes_autocalError_shuntHighRail - autocalError_shuntLowRail = _mscl.WirelessTypes_autocalError_shuntLowRail - autocalError_ramp = _mscl.WirelessTypes_autocalError_ramp - autocalError_noShunt = _mscl.WirelessTypes_autocalError_noShunt - autocalError_timeout = _mscl.WirelessTypes_autocalError_timeout - fatigueMode_angleStrain = _mscl.WirelessTypes_fatigueMode_angleStrain - fatigueMode_distributedAngle = _mscl.WirelessTypes_fatigueMode_distributedAngle - fatigueMode_rawGaugeStrain = _mscl.WirelessTypes_fatigueMode_rawGaugeStrain - eventTrigger_ceiling = _mscl.WirelessTypes_eventTrigger_ceiling - eventTrigger_floor = _mscl.WirelessTypes_eventTrigger_floor - filter_33000hz = _mscl.WirelessTypes_filter_33000hz - filter_20000hz = _mscl.WirelessTypes_filter_20000hz - filter_10000hz = _mscl.WirelessTypes_filter_10000hz - filter_5222hz = _mscl.WirelessTypes_filter_5222hz - filter_5000hz = _mscl.WirelessTypes_filter_5000hz - filter_4416hz = _mscl.WirelessTypes_filter_4416hz - filter_4096hz = _mscl.WirelessTypes_filter_4096hz - filter_4000hz = _mscl.WirelessTypes_filter_4000hz - filter_2208hz = _mscl.WirelessTypes_filter_2208hz - filter_2048hz = _mscl.WirelessTypes_filter_2048hz - filter_2000hz = _mscl.WirelessTypes_filter_2000hz - filter_1104hz = _mscl.WirelessTypes_filter_1104hz - filter_1024hz = _mscl.WirelessTypes_filter_1024hz - filter_1000hz = _mscl.WirelessTypes_filter_1000hz - filter_800hz = _mscl.WirelessTypes_filter_800hz - filter_552hz = _mscl.WirelessTypes_filter_552hz - filter_512hz = _mscl.WirelessTypes_filter_512hz - filter_500hz = _mscl.WirelessTypes_filter_500hz - filter_418hz = _mscl.WirelessTypes_filter_418hz - filter_294hz = _mscl.WirelessTypes_filter_294hz - filter_256hz = _mscl.WirelessTypes_filter_256hz - filter_250hz = _mscl.WirelessTypes_filter_250hz - filter_209hz = _mscl.WirelessTypes_filter_209hz - filter_200hz = _mscl.WirelessTypes_filter_200hz - filter_147hz = _mscl.WirelessTypes_filter_147hz - filter_128hz = _mscl.WirelessTypes_filter_128hz - filter_125hz = _mscl.WirelessTypes_filter_125hz - filter_104hz = _mscl.WirelessTypes_filter_104hz - filter_100hz = _mscl.WirelessTypes_filter_100hz - filter_62hz = _mscl.WirelessTypes_filter_62hz - filter_52hz = _mscl.WirelessTypes_filter_52hz - filter_50hz = _mscl.WirelessTypes_filter_50hz - filter_31hz = _mscl.WirelessTypes_filter_31hz - filter_26hz = _mscl.WirelessTypes_filter_26hz - filter_12_66hz = _mscl.WirelessTypes_filter_12_66hz - filter_2_6hz = _mscl.WirelessTypes_filter_2_6hz - highPass_off = _mscl.WirelessTypes_highPass_off - highPass_auto = _mscl.WirelessTypes_highPass_auto - cfc_10 = _mscl.WirelessTypes_cfc_10 - cfc_21 = _mscl.WirelessTypes_cfc_21 - cfc_60 = _mscl.WirelessTypes_cfc_60 - storageLimit_overwrite = _mscl.WirelessTypes_storageLimit_overwrite - storageLimit_stop = _mscl.WirelessTypes_storageLimit_stop - range_14_545mV = _mscl.WirelessTypes_range_14_545mV - range_10_236mV = _mscl.WirelessTypes_range_10_236mV - range_7_608mV = _mscl.WirelessTypes_range_7_608mV - range_4_046mV = _mscl.WirelessTypes_range_4_046mV - range_2_008mV = _mscl.WirelessTypes_range_2_008mV - range_1_511mV = _mscl.WirelessTypes_range_1_511mV - range_1_001mV = _mscl.WirelessTypes_range_1_001mV - range_0_812mV = _mscl.WirelessTypes_range_0_812mV - range_75mV = _mscl.WirelessTypes_range_75mV - range_37_5mV = _mscl.WirelessTypes_range_37_5mV - range_18_75mV = _mscl.WirelessTypes_range_18_75mV - range_9_38mV = _mscl.WirelessTypes_range_9_38mV - range_4_69mV = _mscl.WirelessTypes_range_4_69mV - range_2_34mV = _mscl.WirelessTypes_range_2_34mV - range_1_17mV = _mscl.WirelessTypes_range_1_17mV - range_0_586mV = _mscl.WirelessTypes_range_0_586mV - range_70mV = _mscl.WirelessTypes_range_70mV - range_35mV = _mscl.WirelessTypes_range_35mV - range_17_5mV = _mscl.WirelessTypes_range_17_5mV - range_8_75mV = _mscl.WirelessTypes_range_8_75mV - range_4_38mV = _mscl.WirelessTypes_range_4_38mV - range_2_19mV = _mscl.WirelessTypes_range_2_19mV - range_1_09mV = _mscl.WirelessTypes_range_1_09mV - range_0_547mV = _mscl.WirelessTypes_range_0_547mV - range_44mV = _mscl.WirelessTypes_range_44mV - range_30mV = _mscl.WirelessTypes_range_30mV - range_20mV = _mscl.WirelessTypes_range_20mV - range_15mV = _mscl.WirelessTypes_range_15mV - range_10mV = _mscl.WirelessTypes_range_10mV - range_5mV = _mscl.WirelessTypes_range_5mV - range_3mV = _mscl.WirelessTypes_range_3mV - range_2mV = _mscl.WirelessTypes_range_2mV - range_6mV = _mscl.WirelessTypes_range_6mV - range_1mV = _mscl.WirelessTypes_range_1mV - range_50mV = _mscl.WirelessTypes_range_50mV - range_2_5mV = _mscl.WirelessTypes_range_2_5mV - range_0_6mV = _mscl.WirelessTypes_range_0_6mV - range_0_35mV = _mscl.WirelessTypes_range_0_35mV - range_0_1mV = _mscl.WirelessTypes_range_0_1mV - range_156mV = _mscl.WirelessTypes_range_156mV - range_78_1mV = _mscl.WirelessTypes_range_78_1mV - range_39mV = _mscl.WirelessTypes_range_39mV - range_19_5mV = _mscl.WirelessTypes_range_19_5mV - range_9_76mV = _mscl.WirelessTypes_range_9_76mV - range_4_88mV = _mscl.WirelessTypes_range_4_88mV - range_2_44mV = _mscl.WirelessTypes_range_2_44mV - range_1_22mV = _mscl.WirelessTypes_range_1_22mV - range_10_24V = _mscl.WirelessTypes_range_10_24V - range_5_12V = _mscl.WirelessTypes_range_5_12V - range_2_56V = _mscl.WirelessTypes_range_2_56V - range_0to10_24V = _mscl.WirelessTypes_range_0to10_24V - range_0to5_12V = _mscl.WirelessTypes_range_0to5_12V - range_1_147V = _mscl.WirelessTypes_range_1_147V - range_585mV = _mscl.WirelessTypes_range_585mV - range_292_5mV = _mscl.WirelessTypes_range_292_5mV - range_146_25mV = _mscl.WirelessTypes_range_146_25mV - range_73_13mV = _mscl.WirelessTypes_range_73_13mV - range_36_56mV = _mscl.WirelessTypes_range_36_56mV - range_18_23mV = _mscl.WirelessTypes_range_18_23mV - range_9_14mV = _mscl.WirelessTypes_range_9_14mV - range_5_74V = _mscl.WirelessTypes_range_5_74V - range_2_93V = _mscl.WirelessTypes_range_2_93V - range_1_46V = _mscl.WirelessTypes_range_1_46V - range_731_3mV = _mscl.WirelessTypes_range_731_3mV - range_365_6mV = _mscl.WirelessTypes_range_365_6mV - range_182_8mV = _mscl.WirelessTypes_range_182_8mV - range_91_4mV = _mscl.WirelessTypes_range_91_4mV - range_45_7mV = _mscl.WirelessTypes_range_45_7mV - range_62_5mV = _mscl.WirelessTypes_range_62_5mV - range_31_25mV = _mscl.WirelessTypes_range_31_25mV - range_15_63mV = _mscl.WirelessTypes_range_15_63mV - range_7_81mV = _mscl.WirelessTypes_range_7_81mV - range_3_91mV = _mscl.WirelessTypes_range_3_91mV - range_1_95mV = _mscl.WirelessTypes_range_1_95mV - range_0_976mV = _mscl.WirelessTypes_range_0_976mV - range_0_488mV = _mscl.WirelessTypes_range_0_488mV - range_2G = _mscl.WirelessTypes_range_2G - range_4G = _mscl.WirelessTypes_range_4G - range_8G = _mscl.WirelessTypes_range_8G - range_10G = _mscl.WirelessTypes_range_10G - range_20G = _mscl.WirelessTypes_range_20G - range_40G = _mscl.WirelessTypes_range_40G - range_2_5V = _mscl.WirelessTypes_range_2_5V - range_1_25V = _mscl.WirelessTypes_range_1_25V - range_625mV = _mscl.WirelessTypes_range_625mV - range_312_5mV = _mscl.WirelessTypes_range_312_5mV - range_156_25mV = _mscl.WirelessTypes_range_156_25mV - range_78_125mV = _mscl.WirelessTypes_range_78_125mV - range_39_063mV = _mscl.WirelessTypes_range_39_063mV - range_19_532mV = _mscl.WirelessTypes_range_19_532mV - range_0to2_5V = _mscl.WirelessTypes_range_0to2_5V - range_0to1_25V = _mscl.WirelessTypes_range_0to1_25V - range_0to625mV = _mscl.WirelessTypes_range_0to625mV - range_0to312_5mV = _mscl.WirelessTypes_range_0to312_5mV - range_0to156_25mV = _mscl.WirelessTypes_range_0to156_25mV - range_0to78_125mV = _mscl.WirelessTypes_range_0to78_125mV - range_0to39_063mV = _mscl.WirelessTypes_range_0to39_063mV - range_0to19_532mV = _mscl.WirelessTypes_range_0to19_532mV - range_9_766mV = _mscl.WirelessTypes_range_9_766mV - range_1_35V_or_0to1000000ohm = _mscl.WirelessTypes_range_1_35V_or_0to1000000ohm - range_1_25V_or_0to10000ohm = _mscl.WirelessTypes_range_1_25V_or_0to10000ohm - range_625mV_or_0to3333_3ohm = _mscl.WirelessTypes_range_625mV_or_0to3333_3ohm - range_312_5mV_or_0to1428_6ohm = _mscl.WirelessTypes_range_312_5mV_or_0to1428_6ohm - range_156_25mV_or_0to666_67ohm = _mscl.WirelessTypes_range_156_25mV_or_0to666_67ohm - range_78_125mV_or_0to322_58ohm = _mscl.WirelessTypes_range_78_125mV_or_0to322_58ohm - range_39_0625mV_or_0to158_73ohm = _mscl.WirelessTypes_range_39_0625mV_or_0to158_73ohm - range_19_5313mV_or_0to78_74ohm = _mscl.WirelessTypes_range_19_5313mV_or_0to78_74ohm - range_750mV = _mscl.WirelessTypes_range_750mV - range_375mV = _mscl.WirelessTypes_range_375mV - range_187_5mV = _mscl.WirelessTypes_range_187_5mV - range_93_75mV = _mscl.WirelessTypes_range_93_75mV - range_46_875mV = _mscl.WirelessTypes_range_46_875mV - range_23_438mV = _mscl.WirelessTypes_range_23_438mV - range_11_719mV = _mscl.WirelessTypes_range_11_719mV - range_5_859mV = _mscl.WirelessTypes_range_5_859mV - range_0to1_5V = _mscl.WirelessTypes_range_0to1_5V - range_0to750mV = _mscl.WirelessTypes_range_0to750mV - range_0to375mV = _mscl.WirelessTypes_range_0to375mV - range_0to187_5mV = _mscl.WirelessTypes_range_0to187_5mV - range_0to93_75mV = _mscl.WirelessTypes_range_0to93_75mV - range_0to46_875mV = _mscl.WirelessTypes_range_0to46_875mV - range_0to23_438mV = _mscl.WirelessTypes_range_0to23_438mV - range_0to11_719mV = _mscl.WirelessTypes_range_0to11_719mV - range_1_5V = _mscl.WirelessTypes_range_1_5V - range_1_35V = _mscl.WirelessTypes_range_1_35V - range_0to1000000ohm = _mscl.WirelessTypes_range_0to1000000ohm - range_0to10000ohm = _mscl.WirelessTypes_range_0to10000ohm - range_0to3333_3ohm = _mscl.WirelessTypes_range_0to3333_3ohm - range_0to1428_6ohm = _mscl.WirelessTypes_range_0to1428_6ohm - range_0to666_67ohm = _mscl.WirelessTypes_range_0to666_67ohm - range_0to322_58ohm = _mscl.WirelessTypes_range_0to322_58ohm - range_0to158_73ohm = _mscl.WirelessTypes_range_0to158_73ohm - range_0to78_74ohm = _mscl.WirelessTypes_range_0to78_74ohm - range_39_0625mV = _mscl.WirelessTypes_range_39_0625mV - range_19_5313mV = _mscl.WirelessTypes_range_19_5313mV - range_125mV = _mscl.WirelessTypes_range_125mV - range_invalid = _mscl.WirelessTypes_range_invalid - dataMode_none = _mscl.WirelessTypes_dataMode_none - dataMode_raw = _mscl.WirelessTypes_dataMode_raw - dataMode_derived = _mscl.WirelessTypes_dataMode_derived - dataMode_raw_derived = _mscl.WirelessTypes_dataMode_raw_derived - derivedCategory_rms = _mscl.WirelessTypes_derivedCategory_rms - derivedCategory_peakToPeak = _mscl.WirelessTypes_derivedCategory_peakToPeak - derivedCategory_velocity = _mscl.WirelessTypes_derivedCategory_velocity - derivedCategory_crestFactor = _mscl.WirelessTypes_derivedCategory_crestFactor - derivedCategory_mean = _mscl.WirelessTypes_derivedCategory_mean - derivedAlgId_rms = _mscl.WirelessTypes_derivedAlgId_rms - derivedAlgId_peakToPeak = _mscl.WirelessTypes_derivedAlgId_peakToPeak - derivedAlgId_ips = _mscl.WirelessTypes_derivedAlgId_ips - derivedAlgId_crestFactor = _mscl.WirelessTypes_derivedAlgId_crestFactor - derivedAlgId_mean = _mscl.WirelessTypes_derivedAlgId_mean - derivedAlgId_mmps = _mscl.WirelessTypes_derivedAlgId_mmps - derivedVelocity_ips = _mscl.WirelessTypes_derivedVelocity_ips - derivedVelocity_mmps = _mscl.WirelessTypes_derivedVelocity_mmps - commProtocol_lxrs = _mscl.WirelessTypes_commProtocol_lxrs - commProtocol_lxrsPlus = _mscl.WirelessTypes_commProtocol_lxrsPlus - voltage_5120mV = _mscl.WirelessTypes_voltage_5120mV - voltage_5000mV = _mscl.WirelessTypes_voltage_5000mV - voltage_4096mV = _mscl.WirelessTypes_voltage_4096mV - voltage_3000mV = _mscl.WirelessTypes_voltage_3000mV - voltage_2800mV = _mscl.WirelessTypes_voltage_2800mV - voltage_2750mV = _mscl.WirelessTypes_voltage_2750mV - voltage_2700mV = _mscl.WirelessTypes_voltage_2700mV - voltage_2500mV = _mscl.WirelessTypes_voltage_2500mV - voltage_1500mV = _mscl.WirelessTypes_voltage_1500mV - sensorOutputMode_accel = _mscl.WirelessTypes_sensorOutputMode_accel - sensorOutputMode_tilt = _mscl.WirelessTypes_sensorOutputMode_tilt - batteryStatus_good = _mscl.WirelessTypes_batteryStatus_good - batteryStatus_low = _mscl.WirelessTypes_batteryStatus_low - batteryStatus_critical = _mscl.WirelessTypes_batteryStatus_critical - externalPower_notConnected = _mscl.WirelessTypes_externalPower_notConnected - externalPower_connected = _mscl.WirelessTypes_externalPower_connected - delayVersion_v1 = _mscl.WirelessTypes_delayVersion_v1 - delayVersion_v2 = _mscl.WirelessTypes_delayVersion_v2 - delayVersion_v3 = _mscl.WirelessTypes_delayVersion_v3 - delayVersion_v4 = _mscl.WirelessTypes_delayVersion_v4 - UNKNOWN_RSSI = _mscl.WirelessTypes_UNKNOWN_RSSI - - def __init__(self): - _mscl.WirelessTypes_swiginit(self, _mscl.new_WirelessTypes()) - __swig_destroy__ = _mscl.delete_WirelessTypes - -# Register WirelessTypes in _mscl: -_mscl.WirelessTypes_swigregister(WirelessTypes) - -class SampleRate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - rateType_seconds = _mscl.SampleRate_rateType_seconds - rateType_hertz = _mscl.SampleRate_rateType_hertz - rateType_event = _mscl.SampleRate_rateType_event - rateType_decimation = _mscl.SampleRate_rateType_decimation - - def __init__(self, *args): - _mscl.SampleRate_swiginit(self, _mscl.new_SampleRate(*args)) - - def __str__(self): - return _mscl.SampleRate___str__(self) - - def prettyStr(self): - return _mscl.SampleRate_prettyStr(self) - - def samplePeriod(self): - return _mscl.SampleRate_samplePeriod(self) - - def samplesPerSecond(self): - return _mscl.SampleRate_samplesPerSecond(self) - - def rateType(self): - return _mscl.SampleRate_rateType(self) - - def samples(self): - return _mscl.SampleRate_samples(self) - - def toWirelessSampleRate(self): - return _mscl.SampleRate_toWirelessSampleRate(self) - - def toDecimation(self, sampleRateBase): - return _mscl.SampleRate_toDecimation(self, sampleRateBase) - - @staticmethod - def Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - - @staticmethod - def KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - - @staticmethod - def Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - - @staticmethod - def Event(): - return _mscl.SampleRate_Event() - - @staticmethod - def Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - - @staticmethod - def FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - - @staticmethod - def FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - __swig_destroy__ = _mscl.delete_SampleRate - -# Register SampleRate in _mscl: -_mscl.SampleRate_swigregister(SampleRate) - -def SampleRate_Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - -def SampleRate_KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - -def SampleRate_Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - -def SampleRate_Event(): - return _mscl.SampleRate_Event() - -def SampleRate_Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - -def SampleRate_FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - -def SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - -class Matrix(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Matrix_swiginit(self, _mscl.new_Matrix()) - - def valuesType(self): - return _mscl.Matrix_valuesType(self) - - def rows(self): - return _mscl.Matrix_rows(self) - - def columns(self): - return _mscl.Matrix_columns(self) - - def as_doubleAt(self, row, column): - return _mscl.Matrix_as_doubleAt(self, row, column) - - def as_floatAt(self, row, column): - return _mscl.Matrix_as_floatAt(self, row, column) - - def as_uint16At(self, row, column): - return _mscl.Matrix_as_uint16At(self, row, column) - - def as_uint8At(self, row, column): - return _mscl.Matrix_as_uint8At(self, row, column) - - def __str__(self): - return _mscl.Matrix___str__(self) - __swig_destroy__ = _mscl.delete_Matrix - -# Register Matrix in _mscl: -_mscl.Matrix_swigregister(Matrix) - -class Vector(Matrix): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Vector_swiginit(self, _mscl.new_Vector()) - - def size(self): - return _mscl.Vector_size(self) - - def as_doubleAt(self, index): - return _mscl.Vector_as_doubleAt(self, index) - - def as_floatAt(self, index): - return _mscl.Vector_as_floatAt(self, index) - - def as_uint16At(self, index): - return _mscl.Vector_as_uint16At(self, index) - - def as_uint8At(self, index): - return _mscl.Vector_as_uint8At(self, index) - __swig_destroy__ = _mscl.delete_Vector - -# Register Vector in _mscl: -_mscl.Vector_swigregister(Vector) - -class Bitfield(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Bitfield_swiginit(self, _mscl.new_Bitfield(*args)) - __swig_destroy__ = _mscl.delete_Bitfield - - def value(self, *args): - return _mscl.Bitfield_value(self, *args) - - def get(self, mask, shiftToLsb=True): - return _mscl.Bitfield_get(self, mask, shiftToLsb) - - def set(self, mask, value, shiftRequired=True): - return _mscl.Bitfield_set(self, mask, value, shiftRequired) - - def checkBit(self, bitIndex, indexBase=0): - return _mscl.Bitfield_checkBit(self, bitIndex, indexBase) - - def setBit(self, bitIndex, value, indexBase=0): - return _mscl.Bitfield_setBit(self, bitIndex, value, indexBase) - -# Register Bitfield in _mscl: -_mscl.Bitfield_swigregister(Bitfield) - -class StructuralHealth(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, angle, uptime, damage, processingRate, histogram): - _mscl.StructuralHealth_swiginit(self, _mscl.new_StructuralHealth(angle, uptime, damage, processingRate, histogram)) - - def angle(self): - return _mscl.StructuralHealth_angle(self) - - def uptime(self): - return _mscl.StructuralHealth_uptime(self) - - def damage(self): - return _mscl.StructuralHealth_damage(self) - - def processingRate(self): - return _mscl.StructuralHealth_processingRate(self) - - def histogram(self): - return _mscl.StructuralHealth_histogram(self) - __swig_destroy__ = _mscl.delete_StructuralHealth - -# Register StructuralHealth in _mscl: -_mscl.StructuralHealth_swigregister(StructuralHealth) - -class DataPoint(Value): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - channelPropertyId_angle = _mscl.DataPoint_channelPropertyId_angle - channelPropertyId_derivedFrom = _mscl.DataPoint_channelPropertyId_derivedFrom - channelPropertyId_derivedAlgorithmId = _mscl.DataPoint_channelPropertyId_derivedAlgorithmId - __swig_destroy__ = _mscl.delete_DataPoint - - def channelProperty(self, id): - return _mscl.DataPoint_channelProperty(self, id) - - def as_Vector(self): - return _mscl.DataPoint_as_Vector(self) - - def as_Matrix(self): - return _mscl.DataPoint_as_Matrix(self) - - def as_Timestamp(self): - return _mscl.DataPoint_as_Timestamp(self) - - def as_Bytes(self): - return _mscl.DataPoint_as_Bytes(self) - - def as_StructuralHealth(self): - return _mscl.DataPoint_as_StructuralHealth(self) - - def as_RfSweep(self): - return _mscl.DataPoint_as_RfSweep(self) - - def as_string(self): - return _mscl.DataPoint_as_string(self) - -# Register DataPoint in _mscl: -_mscl.DataPoint_swigregister(DataPoint) - -class ConfigIssue(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONFIG_SAMPLING_MODE = _mscl.ConfigIssue_CONFIG_SAMPLING_MODE - CONFIG_ACTIVE_CHANNELS = _mscl.ConfigIssue_CONFIG_ACTIVE_CHANNELS - CONFIG_SAMPLE_RATE = _mscl.ConfigIssue_CONFIG_SAMPLE_RATE - CONFIG_SWEEPS = _mscl.ConfigIssue_CONFIG_SWEEPS - CONFIG_UNLIMITED_DURATION = _mscl.ConfigIssue_CONFIG_UNLIMITED_DURATION - CONFIG_DATA_FORMAT = _mscl.ConfigIssue_CONFIG_DATA_FORMAT - CONFIG_DATA_COLLECTION_METHOD = _mscl.ConfigIssue_CONFIG_DATA_COLLECTION_METHOD - CONFIG_TIME_BETWEEN_BURSTS = _mscl.ConfigIssue_CONFIG_TIME_BETWEEN_BURSTS - CONFIG_THERMOCOUPLE_TYPE = _mscl.ConfigIssue_CONFIG_THERMOCOUPLE_TYPE - CONFIG_FILTER_SETTLING_TIME = _mscl.ConfigIssue_CONFIG_FILTER_SETTLING_TIME - CONFIG_BUTTON = _mscl.ConfigIssue_CONFIG_BUTTON - CONFIG_ANALOG_PAIR = _mscl.ConfigIssue_CONFIG_ANALOG_PAIR - CONFIG_INPUT_RANGE = _mscl.ConfigIssue_CONFIG_INPUT_RANGE - CONFIG_INACTIVITY_TIMEOUT = _mscl.ConfigIssue_CONFIG_INACTIVITY_TIMEOUT - CONFIG_CHECK_RADIO_INTERVAL = _mscl.ConfigIssue_CONFIG_CHECK_RADIO_INTERVAL - CONFIG_LOST_BEACON_TIMEOUT = _mscl.ConfigIssue_CONFIG_LOST_BEACON_TIMEOUT - CONFIG_DEFAULT_MODE = _mscl.ConfigIssue_CONFIG_DEFAULT_MODE - CONFIG_TRANSMIT_POWER = _mscl.ConfigIssue_CONFIG_TRANSMIT_POWER - CONFIG_LINEAR_EQUATION = _mscl.ConfigIssue_CONFIG_LINEAR_EQUATION - CONFIG_FATIGUE = _mscl.ConfigIssue_CONFIG_FATIGUE - CONFIG_FATIGUE_MODE = _mscl.ConfigIssue_CONFIG_FATIGUE_MODE - CONFIG_FATIGUE_ANGLE_ID = _mscl.ConfigIssue_CONFIG_FATIGUE_ANGLE_ID - CONFIG_FATIGUE_SN_CURVE = _mscl.ConfigIssue_CONFIG_FATIGUE_SN_CURVE - CONFIG_FATIGUE_DIST_NUM_ANGLES = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_NUM_ANGLES - CONFIG_FATIGUE_DIST_ANGLE = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_ANGLE - CONFIG_HISTOGRAM = _mscl.ConfigIssue_CONFIG_HISTOGRAM - CONFIG_HISTOGRAM_TX_RATE = _mscl.ConfigIssue_CONFIG_HISTOGRAM_TX_RATE - CONFIG_HARDWARE_OFFSET = _mscl.ConfigIssue_CONFIG_HARDWARE_OFFSET - CONFIG_ACTIVITY_SENSE = _mscl.ConfigIssue_CONFIG_ACTIVITY_SENSE - CONFIG_GAUGE_FACTOR = _mscl.ConfigIssue_CONFIG_GAUGE_FACTOR - CONFIG_EVENT_TRIGGER = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER - CONFIG_EVENT_TRIGGER_DURATION = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_DURATION - CONFIG_EVENT_TRIGGER_MASK = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_MASK - CONFIG_DIAGNOSTIC_INTERVAL = _mscl.ConfigIssue_CONFIG_DIAGNOSTIC_INTERVAL - CONFIG_ANTI_ALIASING_FILTER = _mscl.ConfigIssue_CONFIG_ANTI_ALIASING_FILTER - CONFIG_STORAGE_LIMIT_MODE = _mscl.ConfigIssue_CONFIG_STORAGE_LIMIT_MODE - CONFIG_SENSOR_DELAY = _mscl.ConfigIssue_CONFIG_SENSOR_DELAY - CONFIG_LOW_PASS_FILTER = _mscl.ConfigIssue_CONFIG_LOW_PASS_FILTER - CONFIG_DATA_MODE = _mscl.ConfigIssue_CONFIG_DATA_MODE - CONFIG_DERIVED_DATA_RATE = _mscl.ConfigIssue_CONFIG_DERIVED_DATA_RATE - CONFIG_DERIVED_MASK_RMS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_RMS - CONFIG_DERIVED_MASK_P2P = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_P2P - CONFIG_DERIVED_MASK_IPS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_IPS - CONFIG_DERIVED_MASK_CREST_FACTOR = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_CREST_FACTOR - CONFIG_HIGH_PASS_FILTER = _mscl.ConfigIssue_CONFIG_HIGH_PASS_FILTER - CONFIG_DERIVED_MASK = _mscl.ConfigIssue_CONFIG_DERIVED_MASK - CONFIG_COMM_PROTOCOL = _mscl.ConfigIssue_CONFIG_COMM_PROTOCOL - CONFIG_DERIVED_MASK_MEAN = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_MEAN - CONFIG_GAUGE_RESISTANCE = _mscl.ConfigIssue_CONFIG_GAUGE_RESISTANCE - CONFIG_NUM_ACTIVE_GAUGES = _mscl.ConfigIssue_CONFIG_NUM_ACTIVE_GAUGES - CONFIG_TEMP_SENSOR_OPTS = _mscl.ConfigIssue_CONFIG_TEMP_SENSOR_OPTS - CONFIG_DEBOUNCE_FILTER = _mscl.ConfigIssue_CONFIG_DEBOUNCE_FILTER - CONFIG_PULLUP_RESISTOR = _mscl.ConfigIssue_CONFIG_PULLUP_RESISTOR - CONFIG_EXCITATION_VOLTAGE = _mscl.ConfigIssue_CONFIG_EXCITATION_VOLTAGE - CONFIG_DERIVED_UNIT = _mscl.ConfigIssue_CONFIG_DERIVED_UNIT - CONFIG_SENSOR_OUTPUT_MODE = _mscl.ConfigIssue_CONFIG_SENSOR_OUTPUT_MODE - CONFIG_LOW_BATTERY_THRESHOLD = _mscl.ConfigIssue_CONFIG_LOW_BATTERY_THRESHOLD - CONFIG_CFC_FILTER = _mscl.ConfigIssue_CONFIG_CFC_FILTER - - def __init__(self, *args): - _mscl.ConfigIssue_swiginit(self, _mscl.new_ConfigIssue(*args)) - - def id(self): - return _mscl.ConfigIssue_id(self) - - def description(self): - return _mscl.ConfigIssue_description(self) - - def isChannelGroupIssue(self): - return _mscl.ConfigIssue_isChannelGroupIssue(self) - - def channelMask(self): - return _mscl.ConfigIssue_channelMask(self) - __swig_destroy__ = _mscl.delete_ConfigIssue - -# Register ConfigIssue in _mscl: -_mscl.ConfigIssue_swigregister(ConfigIssue) - -class ActivitySense(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ActivitySense_swiginit(self, _mscl.new_ActivitySense()) - - def enabled(self, *args): - return _mscl.ActivitySense_enabled(self, *args) - - def activityThreshold(self, *args): - return _mscl.ActivitySense_activityThreshold(self, *args) - - def inactivityThreshold(self, *args): - return _mscl.ActivitySense_inactivityThreshold(self, *args) - - def activityTime(self, *args): - return _mscl.ActivitySense_activityTime(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.ActivitySense_inactivityTimeout(self, *args) - __swig_destroy__ = _mscl.delete_ActivitySense - -# Register ActivitySense in _mscl: -_mscl.ActivitySense_swigregister(ActivitySense) - -class Trigger(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Trigger_swiginit(self, _mscl.new_Trigger(*args)) - - def channelNumber(self, *args): - return _mscl.Trigger_channelNumber(self, *args) - - def triggerType(self, *args): - return _mscl.Trigger_triggerType(self, *args) - - def triggerValue(self, *args): - return _mscl.Trigger_triggerValue(self, *args) - __swig_destroy__ = _mscl.delete_Trigger - -# Register Trigger in _mscl: -_mscl.Trigger_swigregister(Trigger) - -class EventTriggerOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerOptions_swiginit(self, _mscl.new_EventTriggerOptions()) - - def triggerMask(self, *args): - return _mscl.EventTriggerOptions_triggerMask(self, *args) - - def anyTriggersEnabled(self): - return _mscl.EventTriggerOptions_anyTriggersEnabled(self) - - def triggerEnabled(self, triggerIndex): - return _mscl.EventTriggerOptions_triggerEnabled(self, triggerIndex) - - def enableTrigger(self, triggerIndex, enable=True): - return _mscl.EventTriggerOptions_enableTrigger(self, triggerIndex, enable) - - def preDuration(self, *args): - return _mscl.EventTriggerOptions_preDuration(self, *args) - - def postDuration(self, *args): - return _mscl.EventTriggerOptions_postDuration(self, *args) - - def trigger(self, *args): - return _mscl.EventTriggerOptions_trigger(self, *args) - - def triggers(self): - return _mscl.EventTriggerOptions_triggers(self) - __swig_destroy__ = _mscl.delete_EventTriggerOptions - -# Register EventTriggerOptions in _mscl: -_mscl.EventTriggerOptions_swigregister(EventTriggerOptions) - -class SnCurveSegment(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.SnCurveSegment_swiginit(self, _mscl.new_SnCurveSegment(*args)) - - def m(self, *args): - return _mscl.SnCurveSegment_m(self, *args) - - def logA(self, *args): - return _mscl.SnCurveSegment_logA(self, *args) - __swig_destroy__ = _mscl.delete_SnCurveSegment - -# Register SnCurveSegment in _mscl: -_mscl.SnCurveSegment_swigregister(SnCurveSegment) - -class FatigueOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FatigueOptions_swiginit(self, _mscl.new_FatigueOptions()) - - def youngsModulus(self, *args): - return _mscl.FatigueOptions_youngsModulus(self, *args) - - def poissonsRatio(self, *args): - return _mscl.FatigueOptions_poissonsRatio(self, *args) - - def peakValleyThreshold(self, *args): - return _mscl.FatigueOptions_peakValleyThreshold(self, *args) - - def debugMode(self, *args): - return _mscl.FatigueOptions_debugMode(self, *args) - - def damageAngles(self): - return _mscl.FatigueOptions_damageAngles(self) - - def damageAngle(self, *args): - return _mscl.FatigueOptions_damageAngle(self, *args) - - def snCurveSegments(self): - return _mscl.FatigueOptions_snCurveSegments(self) - - def snCurveSegment(self, *args): - return _mscl.FatigueOptions_snCurveSegment(self, *args) - - def fatigueMode(self, *args): - return _mscl.FatigueOptions_fatigueMode(self, *args) - - def distributedAngleMode_numAngles(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_numAngles(self, *args) - - def distributedAngleMode_lowerBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_lowerBound(self, *args) - - def distributedAngleMode_upperBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_upperBound(self, *args) - - def histogramEnable(self, *args): - return _mscl.FatigueOptions_histogramEnable(self, *args) - __swig_destroy__ = _mscl.delete_FatigueOptions - -# Register FatigueOptions in _mscl: -_mscl.FatigueOptions_swigregister(FatigueOptions) - -class HistogramOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HistogramOptions_swiginit(self, _mscl.new_HistogramOptions()) - - def transmitRate(self, *args): - return _mscl.HistogramOptions_transmitRate(self, *args) - - def binsStart(self, *args): - return _mscl.HistogramOptions_binsStart(self, *args) - - def binsSize(self, *args): - return _mscl.HistogramOptions_binsSize(self, *args) - __swig_destroy__ = _mscl.delete_HistogramOptions - -# Register HistogramOptions in _mscl: -_mscl.HistogramOptions_swigregister(HistogramOptions) - -class InputRangeEntry(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - inputRange = property(_mscl.InputRangeEntry_inputRange_get, _mscl.InputRangeEntry_inputRange_set) - hasGain = property(_mscl.InputRangeEntry_hasGain_get, _mscl.InputRangeEntry_hasGain_set) - gain = property(_mscl.InputRangeEntry_gain_get, _mscl.InputRangeEntry_gain_set) - - def __init__(self, *args): - _mscl.InputRangeEntry_swiginit(self, _mscl.new_InputRangeEntry(*args)) - __swig_destroy__ = _mscl.delete_InputRangeEntry - -# Register InputRangeEntry in _mscl: -_mscl.InputRangeEntry_swigregister(InputRangeEntry) - -class TempSensorOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - - @staticmethod - def RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - - @staticmethod - def Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - - def transducerType(self): - return _mscl.TempSensorOptions_transducerType(self) - - def thermocoupleType(self): - return _mscl.TempSensorOptions_thermocoupleType(self) - - def rtdType(self): - return _mscl.TempSensorOptions_rtdType(self) - - def rtdWireType(self): - return _mscl.TempSensorOptions_rtdWireType(self) - - def thermistorType(self): - return _mscl.TempSensorOptions_thermistorType(self) - __swig_destroy__ = _mscl.delete_TempSensorOptions - -# Register TempSensorOptions in _mscl: -_mscl.TempSensorOptions_swigregister(TempSensorOptions) - -def TempSensorOptions_Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - -def TempSensorOptions_RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - -def TempSensorOptions_Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - -class WirelessModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_vLink_legacy = _mscl.WirelessModels_node_vLink_legacy - node_cfBearingTempLink = _mscl.WirelessModels_node_cfBearingTempLink - node_envLink_pro = _mscl.WirelessModels_node_envLink_pro - node_gLink_2g = _mscl.WirelessModels_node_gLink_2g - node_gLink_10g = _mscl.WirelessModels_node_gLink_10g - node_gLinkII_cust_in = _mscl.WirelessModels_node_gLinkII_cust_in - node_gLinkII_2g_in = _mscl.WirelessModels_node_gLinkII_2g_in - node_gLinkII_10g_in = _mscl.WirelessModels_node_gLinkII_10g_in - node_gLinkII_cust_ex = _mscl.WirelessModels_node_gLinkII_cust_ex - node_gLinkII_2g_ex = _mscl.WirelessModels_node_gLinkII_2g_ex - node_gLinkII_10g_ex = _mscl.WirelessModels_node_gLinkII_10g_ex - node_gLink_rgd_10g = _mscl.WirelessModels_node_gLink_rgd_10g - node_gLink_200_8g = _mscl.WirelessModels_node_gLink_200_8g - node_gLink_200_40g = _mscl.WirelessModels_node_gLink_200_40g - node_gLink_200_8g_oem = _mscl.WirelessModels_node_gLink_200_8g_oem - node_gLink_200_40g_oem = _mscl.WirelessModels_node_gLink_200_40g_oem - node_gLink_200_8g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_8g_oem_mmcx - node_gLink_200_40g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_40g_oem_mmcx - node_gLink_200_8g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_8g_oem_u_fl - node_gLink_200_40g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_40g_oem_u_fl - node_gLink_200_r = _mscl.WirelessModels_node_gLink_200_r - node_sgLink_oem_S = _mscl.WirelessModels_node_sgLink_oem_S - node_sgLink = _mscl.WirelessModels_node_sgLink - node_sgLink200 = _mscl.WirelessModels_node_sgLink200 - node_sgLink200_hbridge_1K = _mscl.WirelessModels_node_sgLink200_hbridge_1K - node_sgLink200_hbridge_350 = _mscl.WirelessModels_node_sgLink200_hbridge_350 - node_sgLink200_hbridge_120 = _mscl.WirelessModels_node_sgLink200_hbridge_120 - node_sgLink200_qbridge_1K = _mscl.WirelessModels_node_sgLink200_qbridge_1K - node_sgLink200_qbridge_350 = _mscl.WirelessModels_node_sgLink200_qbridge_350 - node_sgLink200_qbridge_120 = _mscl.WirelessModels_node_sgLink200_qbridge_120 - node_sgLink_oem = _mscl.WirelessModels_node_sgLink_oem - node_sgLink_micro = _mscl.WirelessModels_node_sgLink_micro - node_sgLink200_oem = _mscl.WirelessModels_node_sgLink200_oem - node_sgLink200_oem_ufl = _mscl.WirelessModels_node_sgLink200_oem_ufl - node_sgLink200_oem_hbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K - node_sgLink200_oem_hbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K_ufl - node_sgLink200_oem_hbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120 - node_sgLink200_oem_hbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120_ufl - node_sgLink200_oem_hbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350 - node_sgLink200_oem_hbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350_ufl - node_sgLink200_oem_qbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K - node_sgLink200_oem_qbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K_ufl - node_sgLink200_oem_qbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120 - node_sgLink200_oem_qbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120_ufl - node_sgLink200_oem_qbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350 - node_sgLink200_oem_qbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350_ufl - node_sgLink_rgd = _mscl.WirelessModels_node_sgLink_rgd - node_shmLink = _mscl.WirelessModels_node_shmLink - node_tcLink_1ch = _mscl.WirelessModels_node_tcLink_1ch - node_tcLink_6ch = _mscl.WirelessModels_node_tcLink_6ch - node_tcLink_3ch = _mscl.WirelessModels_node_tcLink_3ch - node_tcLink_6ch_ip67 = _mscl.WirelessModels_node_tcLink_6ch_ip67 - node_tcLink200_oem = _mscl.WirelessModels_node_tcLink200_oem - node_tcLink200_oem_ufl = _mscl.WirelessModels_node_tcLink200_oem_ufl - node_tcLink200 = _mscl.WirelessModels_node_tcLink200 - node_rtdLink200 = _mscl.WirelessModels_node_rtdLink200 - node_tcLink_6ch_ip67_rht = _mscl.WirelessModels_node_tcLink_6ch_ip67_rht - node_vLink = _mscl.WirelessModels_node_vLink - node_vLink200 = _mscl.WirelessModels_node_vLink200 - node_vLink200_qbridge_1K = _mscl.WirelessModels_node_vLink200_qbridge_1K - node_vLink200_qbridge_120 = _mscl.WirelessModels_node_vLink200_qbridge_120 - node_vLink200_qbridge_350 = _mscl.WirelessModels_node_vLink200_qbridge_350 - node_vLink200_hbridge_1K = _mscl.WirelessModels_node_vLink200_hbridge_1K - node_vLink200_hbridge_120 = _mscl.WirelessModels_node_vLink200_hbridge_120 - node_vLink200_hbridge_350 = _mscl.WirelessModels_node_vLink200_hbridge_350 - node_iepeLink = _mscl.WirelessModels_node_iepeLink - node_dvrtLink = _mscl.WirelessModels_node_dvrtLink - node_envLink_mini = _mscl.WirelessModels_node_envLink_mini - node_wattLink = _mscl.WirelessModels_node_wattLink - node_wattLink_3Y208 = _mscl.WirelessModels_node_wattLink_3Y208 - node_wattLink_3D240 = _mscl.WirelessModels_node_wattLink_3D240 - node_wattLink_3Y400 = _mscl.WirelessModels_node_wattLink_3Y400 - node_wattLink_3D400 = _mscl.WirelessModels_node_wattLink_3D400 - node_wattLink_3Y480 = _mscl.WirelessModels_node_wattLink_3Y480 - node_wattLink_3D480 = _mscl.WirelessModels_node_wattLink_3D480 - node_wattLink_3Y600 = _mscl.WirelessModels_node_wattLink_3Y600 - node_ptLink200 = _mscl.WirelessModels_node_ptLink200 - node_rtdLink = _mscl.WirelessModels_node_rtdLink - node_shmLink2_cust1_oldNumber = _mscl.WirelessModels_node_shmLink2_cust1_oldNumber - node_shmLink2_cust1 = _mscl.WirelessModels_node_shmLink2_cust1 - node_shmLink200 = _mscl.WirelessModels_node_shmLink200 - node_shmLink201 = _mscl.WirelessModels_node_shmLink201 - node_shmLink201_qbridge_1K = _mscl.WirelessModels_node_shmLink201_qbridge_1K - node_shmLink201_qbridge_348 = _mscl.WirelessModels_node_shmLink201_qbridge_348 - node_shmLink201_hbridge_1K = _mscl.WirelessModels_node_shmLink201_hbridge_1K - node_shmLink201_hbridge_348 = _mscl.WirelessModels_node_shmLink201_hbridge_348 - node_shmLink201_fullbridge = _mscl.WirelessModels_node_shmLink201_fullbridge - node_shmLink210_fullbridge = _mscl.WirelessModels_node_shmLink210_fullbridge - node_shmLink210_qbridge_3K = _mscl.WirelessModels_node_shmLink210_qbridge_3K - node_torqueLink = _mscl.WirelessModels_node_torqueLink - node_torqueLink200_3ch = _mscl.WirelessModels_node_torqueLink200_3ch - node_torqueLink200 = _mscl.WirelessModels_node_torqueLink200 - node_torqueLink200_3ch_s = _mscl.WirelessModels_node_torqueLink200_3ch_s - node_sgLink_herm = _mscl.WirelessModels_node_sgLink_herm - node_sgLink_herm_2600 = _mscl.WirelessModels_node_sgLink_herm_2600 - node_sgLink_herm_2700 = _mscl.WirelessModels_node_sgLink_herm_2700 - node_sgLink_herm_2800 = _mscl.WirelessModels_node_sgLink_herm_2800 - node_sgLink_herm_2900 = _mscl.WirelessModels_node_sgLink_herm_2900 - node_wirelessImpactSensor = _mscl.WirelessModels_node_wirelessImpactSensor - node_gLink_200_40g_s = _mscl.WirelessModels_node_gLink_200_40g_s - base_wsda_1000 = _mscl.WirelessModels_base_wsda_1000 - base_wsda_1500 = _mscl.WirelessModels_base_wsda_1500 - base_wsda_2000 = _mscl.WirelessModels_base_wsda_2000 - base_wsdaBase_200_legacy = _mscl.WirelessModels_base_wsdaBase_200_legacy - base_wsdaBase_200 = _mscl.WirelessModels_base_wsdaBase_200 - base_wsdaBase_200_extAntenna = _mscl.WirelessModels_base_wsdaBase_200_extAntenna - base_wsdaBase_101_analog = _mscl.WirelessModels_base_wsdaBase_101_analog - base_wsdaBase_102_rs232 = _mscl.WirelessModels_base_wsdaBase_102_rs232 - base_wsdaBase_104_usb = _mscl.WirelessModels_base_wsdaBase_104_usb - base_wsi_104 = _mscl.WirelessModels_base_wsi_104 - base_wsdaBase_mini = _mscl.WirelessModels_base_wsdaBase_mini - - def __init__(self): - _mscl.WirelessModels_swiginit(self, _mscl.new_WirelessModels()) - __swig_destroy__ = _mscl.delete_WirelessModels - -# Register WirelessModels in _mscl: -_mscl.WirelessModels_swigregister(WirelessModels) - -class NodeDiscovery(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def nodeAddress(self): - return _mscl.NodeDiscovery_nodeAddress(self) - - def frequency(self): - return _mscl.NodeDiscovery_frequency(self) - - def panId(self): - return _mscl.NodeDiscovery_panId(self) - - def model(self): - return _mscl.NodeDiscovery_model(self) - - def serialNumber(self): - return _mscl.NodeDiscovery_serialNumber(self) - - def firmwareVersion(self): - return _mscl.NodeDiscovery_firmwareVersion(self) - - def defaultMode(self): - return _mscl.NodeDiscovery_defaultMode(self) - - def builtInTestResult(self): - return _mscl.NodeDiscovery_builtInTestResult(self) - - def communicationProtocol(self): - return _mscl.NodeDiscovery_communicationProtocol(self) - - def asppVersion_lxrs(self): - return _mscl.NodeDiscovery_asppVersion_lxrs(self) - - def asppVersion_lxrsPlus(self): - return _mscl.NodeDiscovery_asppVersion_lxrsPlus(self) - - def baseRssi(self): - return _mscl.NodeDiscovery_baseRssi(self) - - def timestamp(self): - return _mscl.NodeDiscovery_timestamp(self) - - def __init__(self): - _mscl.NodeDiscovery_swiginit(self, _mscl.new_NodeDiscovery()) - __swig_destroy__ = _mscl.delete_NodeDiscovery - -# Register NodeDiscovery in _mscl: -_mscl.NodeDiscovery_swigregister(NodeDiscovery) - -class LinearEquation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LinearEquation_swiginit(self, _mscl.new_LinearEquation(*args)) - - def slope(self, *args): - return _mscl.LinearEquation_slope(self, *args) - - def offset(self, *args): - return _mscl.LinearEquation_offset(self, *args) - __swig_destroy__ = _mscl.delete_LinearEquation - -# Register LinearEquation in _mscl: -_mscl.LinearEquation_swigregister(LinearEquation) - -class CalCoefficients(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CalCoefficients_swiginit(self, _mscl.new_CalCoefficients(*args)) - - def equationType(self): - return _mscl.CalCoefficients_equationType(self) - - def unit(self): - return _mscl.CalCoefficients_unit(self) - - def linearEquation(self): - return _mscl.CalCoefficients_linearEquation(self) - __swig_destroy__ = _mscl.delete_CalCoefficients - -# Register CalCoefficients in _mscl: -_mscl.CalCoefficients_swigregister(CalCoefficients) - -class ChannelGroup(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ChannelGroup_swiginit(self, _mscl.new_ChannelGroup()) - - def channels(self): - return _mscl.ChannelGroup_channels(self) - - def name(self): - return _mscl.ChannelGroup_name(self) - - def eepromLocation(self, setting): - return _mscl.ChannelGroup_eepromLocation(self, setting) - - def settings(self): - return _mscl.ChannelGroup_settings(self) - - def hasSetting(self, setting): - return _mscl.ChannelGroup_hasSetting(self, setting) - - def hasSettingAndChannel(self, setting, channelNumber): - return _mscl.ChannelGroup_hasSettingAndChannel(self, setting, channelNumber) - __swig_destroy__ = _mscl.delete_ChannelGroup - -# Register ChannelGroup in _mscl: -_mscl.ChannelGroup_swigregister(ChannelGroup) - -class WirelessChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - channel_unknown = _mscl.WirelessChannel_channel_unknown - channel_1 = _mscl.WirelessChannel_channel_1 - channel_2 = _mscl.WirelessChannel_channel_2 - channel_3 = _mscl.WirelessChannel_channel_3 - channel_4 = _mscl.WirelessChannel_channel_4 - channel_5 = _mscl.WirelessChannel_channel_5 - channel_6 = _mscl.WirelessChannel_channel_6 - channel_7 = _mscl.WirelessChannel_channel_7 - channel_8 = _mscl.WirelessChannel_channel_8 - channel_9 = _mscl.WirelessChannel_channel_9 - channel_10 = _mscl.WirelessChannel_channel_10 - channel_11 = _mscl.WirelessChannel_channel_11 - channel_12 = _mscl.WirelessChannel_channel_12 - channel_13 = _mscl.WirelessChannel_channel_13 - channel_14 = _mscl.WirelessChannel_channel_14 - channel_15 = _mscl.WirelessChannel_channel_15 - channel_16 = _mscl.WirelessChannel_channel_16 - channel_digital_1 = _mscl.WirelessChannel_channel_digital_1 - channel_digital_2 = _mscl.WirelessChannel_channel_digital_2 - channel_digital_3 = _mscl.WirelessChannel_channel_digital_3 - channel_digital_4 = _mscl.WirelessChannel_channel_digital_4 - channel_digital_5 = _mscl.WirelessChannel_channel_digital_5 - channel_digital_6 = _mscl.WirelessChannel_channel_digital_6 - channel_digital_7 = _mscl.WirelessChannel_channel_digital_7 - channel_digital_8 = _mscl.WirelessChannel_channel_digital_8 - channel_digital_9 = _mscl.WirelessChannel_channel_digital_9 - channel_digital_10 = _mscl.WirelessChannel_channel_digital_10 - channel_digital_11 = _mscl.WirelessChannel_channel_digital_11 - channel_digital_12 = _mscl.WirelessChannel_channel_digital_12 - channel_digital_13 = _mscl.WirelessChannel_channel_digital_13 - channel_digital_14 = _mscl.WirelessChannel_channel_digital_14 - channel_digital_15 = _mscl.WirelessChannel_channel_digital_15 - channel_digital_16 = _mscl.WirelessChannel_channel_digital_16 - channel_structuralHealth = _mscl.WirelessChannel_channel_structuralHealth - channel_hcl_rawBase_mag1_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_x - channel_hcl_rawBase_mag1_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_y - channel_hcl_rawBase_mag1_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_z - channel_hcl_rawBase_mag2_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_x - channel_hcl_rawBase_mag2_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_y - channel_hcl_rawBase_mag2_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_z - channel_hcl_rawBase_mag3_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_x - channel_hcl_rawBase_mag3_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_y - channel_hcl_rawBase_mag3_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_z - channel_hcl_rawBase_mag4_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_x - channel_hcl_rawBase_mag4_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_y - channel_hcl_rawBase_mag4_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_z - channel_hcl_rawBase_mag5_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_x - channel_hcl_rawBase_mag5_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_y - channel_hcl_rawBase_mag5_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_z - channel_hcl_rawBase_mag6_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_x - channel_hcl_rawBase_mag6_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_y - channel_hcl_rawBase_mag6_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_z - channel_hcl_rawBase_mag7_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_x - channel_hcl_rawBase_mag7_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_y - channel_hcl_rawBase_mag7_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_z - channel_hcl_rawBase_mag8_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_x - channel_hcl_rawBase_mag8_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_y - channel_hcl_rawBase_mag8_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_z - channel_hcl_rawBase_gyro_x = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_x - channel_hcl_rawBase_gyro_y = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_y - channel_hcl_rawBase_gyro_z = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_z - channel_error_code = _mscl.WirelessChannel_channel_error_code - channel_hcl_rawStrain_BL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL30 - channel_hcl_rawStrain_BL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL120 - channel_hcl_rawStrain_A60 = _mscl.WirelessChannel_channel_hcl_rawStrain_A60 - channel_hcl_rawStrain_A150 = _mscl.WirelessChannel_channel_hcl_rawStrain_A150 - channel_hcl_rawStrain_AL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL30 - channel_hcl_rawStrain_AL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL120 - channel_hcl_rawStrain_BR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR60 - channel_hcl_rawStrain_BR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR150 - channel_hcl_rawStrain_B30 = _mscl.WirelessChannel_channel_hcl_rawStrain_B30 - channel_hcl_rawStrain_T120 = _mscl.WirelessChannel_channel_hcl_rawStrain_T120 - channel_hcl_rawStrain_AR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR60 - channel_hcl_rawStrain_AR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR150 - channel_hcl_rawStrain_A30 = _mscl.WirelessChannel_channel_hcl_rawStrain_A30 - channel_hcl_rawStrain_A120 = _mscl.WirelessChannel_channel_hcl_rawStrain_A120 - channel_hcl_rawStrain_BL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL90 - channel_hcl_rawStrain_BL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL180 - channel_hcl_rawStrain_BR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR30 - channel_hcl_rawStrain_BR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR120 - channel_hcl_rawStrain_AL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL90 - channel_hcl_rawStrain_AL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL180 - channel_hcl_rawStrain_AR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR30 - channel_hcl_rawStrain_AR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR120 - channel_hcl_rawStrain_B90 = _mscl.WirelessChannel_channel_hcl_rawStrain_B90 - channel_hcl_rawStrain_T0 = _mscl.WirelessChannel_channel_hcl_rawStrain_T0 - channel_hcl_rawStrain_BL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL60 - channel_hcl_rawStrain_BL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL150 - channel_hcl_rawStrain_A90 = _mscl.WirelessChannel_channel_hcl_rawStrain_A90 - channel_hcl_rawStrain_A0 = _mscl.WirelessChannel_channel_hcl_rawStrain_A0 - channel_hcl_rawStrain_AL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL60 - channel_hcl_rawStrain_AL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL150 - channel_hcl_rawStrain_BR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR90 - channel_hcl_rawStrain_BR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR0 - channel_hcl_rawStrain_T60 = _mscl.WirelessChannel_channel_hcl_rawStrain_T60 - channel_hcl_rawStrain_B150 = _mscl.WirelessChannel_channel_hcl_rawStrain_B150 - channel_hcl_rawStrain_AR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR90 - channel_hcl_rawStrain_AR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR0 - channel_hcl_rawInertial_accel1 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel1 - channel_hcl_rawInertial_accel2 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel2 - channel_hcl_rawInertial_accel3 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel3 - channel_hcl_rawInertial_accel4 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel4 - channel_hcl_rawInertial_accel5 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel5 - channel_hcl_rawInertial_accel6 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel6 - channel_hcl_rawInertial_accel7 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel7 - channel_hcl_rawInertial_accel8 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel8 - channel_hcl_rawInertial_gyroX = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroX - channel_hcl_rawInertial_gyroY = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroY - channel_hcl_rawInertial_gyroZ = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroZ - channel_rawAngleStrain = _mscl.WirelessChannel_channel_rawAngleStrain - channel_beaconEcho = _mscl.WirelessChannel_channel_beaconEcho - channel_rfSweep = _mscl.WirelessChannel_channel_rfSweep - channel_diag_state = _mscl.WirelessChannel_channel_diag_state - channel_diag_runtime_idle = _mscl.WirelessChannel_channel_diag_runtime_idle - channel_diag_runtime_sleep = _mscl.WirelessChannel_channel_diag_runtime_sleep - channel_diag_runtime_activeRun = _mscl.WirelessChannel_channel_diag_runtime_activeRun - channel_diag_runtime_inactiveRun = _mscl.WirelessChannel_channel_diag_runtime_inactiveRun - channel_diag_resetCounter = _mscl.WirelessChannel_channel_diag_resetCounter - channel_diag_lowBatteryFlag = _mscl.WirelessChannel_channel_diag_lowBatteryFlag - channel_diag_sweepIndex = _mscl.WirelessChannel_channel_diag_sweepIndex - channel_diag_badSweepCount = _mscl.WirelessChannel_channel_diag_badSweepCount - channel_diag_totalTx = _mscl.WirelessChannel_channel_diag_totalTx - channel_diag_totalReTx = _mscl.WirelessChannel_channel_diag_totalReTx - channel_diag_totalDroppedPackets = _mscl.WirelessChannel_channel_diag_totalDroppedPackets - channel_diag_builtInTestResult = _mscl.WirelessChannel_channel_diag_builtInTestResult - channel_diag_eventIndex = _mscl.WirelessChannel_channel_diag_eventIndex - channel_hcl_axialLoadX = _mscl.WirelessChannel_channel_hcl_axialLoadX - channel_hcl_axialLoadY = _mscl.WirelessChannel_channel_hcl_axialLoadY - channel_hcl_axialLoadZ = _mscl.WirelessChannel_channel_hcl_axialLoadZ - channel_hcl_bendingMomentFlap = _mscl.WirelessChannel_channel_hcl_bendingMomentFlap - channel_hcl_bendingMomentLag = _mscl.WirelessChannel_channel_hcl_bendingMomentLag - channel_hcl_bendingMomentPitch = _mscl.WirelessChannel_channel_hcl_bendingMomentPitch - channel_hcl_motionFlap_mag = _mscl.WirelessChannel_channel_hcl_motionFlap_mag - channel_hcl_motionLag_mag = _mscl.WirelessChannel_channel_hcl_motionLag_mag - channel_hcl_motionPitch_mag = _mscl.WirelessChannel_channel_hcl_motionPitch_mag - channel_hcl_motionFlap_inertial = _mscl.WirelessChannel_channel_hcl_motionFlap_inertial - channel_hcl_motionLag_inertial = _mscl.WirelessChannel_channel_hcl_motionLag_inertial - channel_hcl_motionPitch_inertial = _mscl.WirelessChannel_channel_hcl_motionPitch_inertial - channel_hcl_cockingStiffness_mag = _mscl.WirelessChannel_channel_hcl_cockingStiffness_mag - channel_hcl_cockingStiffness_inertial = _mscl.WirelessChannel_channel_hcl_cockingStiffness_inertial - channel_hcl_temperature = _mscl.WirelessChannel_channel_hcl_temperature - channel_diag_externalPower = _mscl.WirelessChannel_channel_diag_externalPower - channel_diag_internalTemp = _mscl.WirelessChannel_channel_diag_internalTemp - channel_1_rms = _mscl.WirelessChannel_channel_1_rms - channel_2_rms = _mscl.WirelessChannel_channel_2_rms - channel_3_rms = _mscl.WirelessChannel_channel_3_rms - channel_4_rms = _mscl.WirelessChannel_channel_4_rms - channel_5_rms = _mscl.WirelessChannel_channel_5_rms - channel_6_rms = _mscl.WirelessChannel_channel_6_rms - channel_7_rms = _mscl.WirelessChannel_channel_7_rms - channel_8_rms = _mscl.WirelessChannel_channel_8_rms - channel_9_rms = _mscl.WirelessChannel_channel_9_rms - channel_10_rms = _mscl.WirelessChannel_channel_10_rms - channel_11_rms = _mscl.WirelessChannel_channel_11_rms - channel_12_rms = _mscl.WirelessChannel_channel_12_rms - channel_13_rms = _mscl.WirelessChannel_channel_13_rms - channel_14_rms = _mscl.WirelessChannel_channel_14_rms - channel_15_rms = _mscl.WirelessChannel_channel_15_rms - channel_16_rms = _mscl.WirelessChannel_channel_16_rms - channel_1_peakToPeak = _mscl.WirelessChannel_channel_1_peakToPeak - channel_2_peakToPeak = _mscl.WirelessChannel_channel_2_peakToPeak - channel_3_peakToPeak = _mscl.WirelessChannel_channel_3_peakToPeak - channel_4_peakToPeak = _mscl.WirelessChannel_channel_4_peakToPeak - channel_5_peakToPeak = _mscl.WirelessChannel_channel_5_peakToPeak - channel_6_peakToPeak = _mscl.WirelessChannel_channel_6_peakToPeak - channel_7_peakToPeak = _mscl.WirelessChannel_channel_7_peakToPeak - channel_8_peakToPeak = _mscl.WirelessChannel_channel_8_peakToPeak - channel_9_peakToPeak = _mscl.WirelessChannel_channel_9_peakToPeak - channel_10_peakToPeak = _mscl.WirelessChannel_channel_10_peakToPeak - channel_11_peakToPeak = _mscl.WirelessChannel_channel_11_peakToPeak - channel_12_peakToPeak = _mscl.WirelessChannel_channel_12_peakToPeak - channel_13_peakToPeak = _mscl.WirelessChannel_channel_13_peakToPeak - channel_14_peakToPeak = _mscl.WirelessChannel_channel_14_peakToPeak - channel_15_peakToPeak = _mscl.WirelessChannel_channel_15_peakToPeak - channel_16_peakToPeak = _mscl.WirelessChannel_channel_16_peakToPeak - channel_1_ips = _mscl.WirelessChannel_channel_1_ips - channel_2_ips = _mscl.WirelessChannel_channel_2_ips - channel_3_ips = _mscl.WirelessChannel_channel_3_ips - channel_4_ips = _mscl.WirelessChannel_channel_4_ips - channel_5_ips = _mscl.WirelessChannel_channel_5_ips - channel_6_ips = _mscl.WirelessChannel_channel_6_ips - channel_7_ips = _mscl.WirelessChannel_channel_7_ips - channel_8_ips = _mscl.WirelessChannel_channel_8_ips - channel_9_ips = _mscl.WirelessChannel_channel_9_ips - channel_10_ips = _mscl.WirelessChannel_channel_10_ips - channel_11_ips = _mscl.WirelessChannel_channel_11_ips - channel_12_ips = _mscl.WirelessChannel_channel_12_ips - channel_13_ips = _mscl.WirelessChannel_channel_13_ips - channel_14_ips = _mscl.WirelessChannel_channel_14_ips - channel_15_ips = _mscl.WirelessChannel_channel_15_ips - channel_16_ips = _mscl.WirelessChannel_channel_16_ips - channel_1_crestFactor = _mscl.WirelessChannel_channel_1_crestFactor - channel_2_crestFactor = _mscl.WirelessChannel_channel_2_crestFactor - channel_3_crestFactor = _mscl.WirelessChannel_channel_3_crestFactor - channel_4_crestFactor = _mscl.WirelessChannel_channel_4_crestFactor - channel_5_crestFactor = _mscl.WirelessChannel_channel_5_crestFactor - channel_6_crestFactor = _mscl.WirelessChannel_channel_6_crestFactor - channel_7_crestFactor = _mscl.WirelessChannel_channel_7_crestFactor - channel_8_crestFactor = _mscl.WirelessChannel_channel_8_crestFactor - channel_9_crestFactor = _mscl.WirelessChannel_channel_9_crestFactor - channel_10_crestFactor = _mscl.WirelessChannel_channel_10_crestFactor - channel_11_crestFactor = _mscl.WirelessChannel_channel_11_crestFactor - channel_12_crestFactor = _mscl.WirelessChannel_channel_12_crestFactor - channel_13_crestFactor = _mscl.WirelessChannel_channel_13_crestFactor - channel_14_crestFactor = _mscl.WirelessChannel_channel_14_crestFactor - channel_15_crestFactor = _mscl.WirelessChannel_channel_15_crestFactor - channel_16_crestFactor = _mscl.WirelessChannel_channel_16_crestFactor - channel_diag_syncAttempts = _mscl.WirelessChannel_channel_diag_syncAttempts - channel_diag_syncFailures = _mscl.WirelessChannel_channel_diag_syncFailures - channel_diag_secsSinceLastSync = _mscl.WirelessChannel_channel_diag_secsSinceLastSync - channel_beaconConflict = _mscl.WirelessChannel_channel_beaconConflict - channel_1_mean = _mscl.WirelessChannel_channel_1_mean - channel_2_mean = _mscl.WirelessChannel_channel_2_mean - channel_3_mean = _mscl.WirelessChannel_channel_3_mean - channel_4_mean = _mscl.WirelessChannel_channel_4_mean - channel_5_mean = _mscl.WirelessChannel_channel_5_mean - channel_6_mean = _mscl.WirelessChannel_channel_6_mean - channel_7_mean = _mscl.WirelessChannel_channel_7_mean - channel_8_mean = _mscl.WirelessChannel_channel_8_mean - channel_9_mean = _mscl.WirelessChannel_channel_9_mean - channel_10_mean = _mscl.WirelessChannel_channel_10_mean - channel_11_mean = _mscl.WirelessChannel_channel_11_mean - channel_12_mean = _mscl.WirelessChannel_channel_12_mean - channel_13_mean = _mscl.WirelessChannel_channel_13_mean - channel_14_mean = _mscl.WirelessChannel_channel_14_mean - channel_15_mean = _mscl.WirelessChannel_channel_15_mean - channel_16_mean = _mscl.WirelessChannel_channel_16_mean - channel_1_mmps = _mscl.WirelessChannel_channel_1_mmps - channel_2_mmps = _mscl.WirelessChannel_channel_2_mmps - channel_3_mmps = _mscl.WirelessChannel_channel_3_mmps - channel_4_mmps = _mscl.WirelessChannel_channel_4_mmps - channel_5_mmps = _mscl.WirelessChannel_channel_5_mmps - channel_6_mmps = _mscl.WirelessChannel_channel_6_mmps - channel_7_mmps = _mscl.WirelessChannel_channel_7_mmps - channel_8_mmps = _mscl.WirelessChannel_channel_8_mmps - channel_9_mmps = _mscl.WirelessChannel_channel_9_mmps - channel_10_mmps = _mscl.WirelessChannel_channel_10_mmps - channel_11_mmps = _mscl.WirelessChannel_channel_11_mmps - channel_12_mmps = _mscl.WirelessChannel_channel_12_mmps - channel_13_mmps = _mscl.WirelessChannel_channel_13_mmps - channel_14_mmps = _mscl.WirelessChannel_channel_14_mmps - channel_15_mmps = _mscl.WirelessChannel_channel_15_mmps - channel_16_mmps = _mscl.WirelessChannel_channel_16_mmps - channel_diag_memoryFull = _mscl.WirelessChannel_channel_diag_memoryFull - - def __init__(self, *args): - _mscl.WirelessChannel_swiginit(self, _mscl.new_WirelessChannel(*args)) - - def channelNumber(self): - return _mscl.WirelessChannel_channelNumber(self) - - def id(self): - return _mscl.WirelessChannel_id(self) - - def type(self): - return _mscl.WirelessChannel_type(self) - - def description(self): - return _mscl.WirelessChannel_description(self) - - def adcResolution(self): - return _mscl.WirelessChannel_adcResolution(self) - - def adcMaxValue(self): - return _mscl.WirelessChannel_adcMaxValue(self) - - def name(self): - return _mscl.WirelessChannel_name(self) - __swig_destroy__ = _mscl.delete_WirelessChannel - -# Register WirelessChannel in _mscl: -_mscl.WirelessChannel_swigregister(WirelessChannel) - -class WirelessDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessDataPoint_swiginit(self, _mscl.new_WirelessDataPoint()) - - def channelId(self): - return _mscl.WirelessDataPoint_channelId(self) - - def channelNumber(self): - return _mscl.WirelessDataPoint_channelNumber(self) - - def channelName(self): - return _mscl.WirelessDataPoint_channelName(self) - __swig_destroy__ = _mscl.delete_WirelessDataPoint - -# Register WirelessDataPoint in _mscl: -_mscl.WirelessDataPoint_swigregister(WirelessDataPoint) - -class DataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - samplingType_NonSync = _mscl.DataSweep_samplingType_NonSync - samplingType_NonSync_Buffered = _mscl.DataSweep_samplingType_NonSync_Buffered - samplingType_SyncSampling = _mscl.DataSweep_samplingType_SyncSampling - samplingType_SyncSampling_Burst = _mscl.DataSweep_samplingType_SyncSampling_Burst - samplingType_AsyncDigital = _mscl.DataSweep_samplingType_AsyncDigital - samplingType_AsyncDigitalAnalog = _mscl.DataSweep_samplingType_AsyncDigitalAnalog - samplingType_SHM = _mscl.DataSweep_samplingType_SHM - samplingType_BeaconEcho = _mscl.DataSweep_samplingType_BeaconEcho - samplingType_RfSweep = _mscl.DataSweep_samplingType_RfSweep - samplingType_Diagnostic = _mscl.DataSweep_samplingType_Diagnostic - - def __init__(self): - _mscl.DataSweep_swiginit(self, _mscl.new_DataSweep()) - - def timestamp(self): - return _mscl.DataSweep_timestamp(self) - - def tick(self): - return _mscl.DataSweep_tick(self) - - def sampleRate(self): - return _mscl.DataSweep_sampleRate(self) - - def nodeAddress(self): - return _mscl.DataSweep_nodeAddress(self) - - def data(self): - return _mscl.DataSweep_data(self) - - def samplingType(self): - return _mscl.DataSweep_samplingType(self) - - def nodeRssi(self): - return _mscl.DataSweep_nodeRssi(self) - - def baseRssi(self): - return _mscl.DataSweep_baseRssi(self) - - def frequency(self): - return _mscl.DataSweep_frequency(self) - - def calApplied(self): - return _mscl.DataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_DataSweep - -# Register DataSweep in _mscl: -_mscl.DataSweep_swigregister(DataSweep) - -class BaseStationAnalogPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationAnalogPair_swiginit(self, _mscl.new_BaseStationAnalogPair()) - - @staticmethod - def Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - - @staticmethod - def NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - - def nodeAddress(self, *args): - return _mscl.BaseStationAnalogPair_nodeAddress(self, *args) - - def nodeChannel(self, *args): - return _mscl.BaseStationAnalogPair_nodeChannel(self, *args) - - def expectFloatData(self, *args): - return _mscl.BaseStationAnalogPair_expectFloatData(self, *args) - - def outputVal_0V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_0V(self, *args) - - def outputVal_3V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_3V(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationAnalogPair - -# Register BaseStationAnalogPair in _mscl: -_mscl.BaseStationAnalogPair_swigregister(BaseStationAnalogPair) -BaseStationAnalogPair.CHANNEL_NOT_FLOAT = _mscl.cvar.BaseStationAnalogPair_CHANNEL_NOT_FLOAT - -def BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - -def BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - -class BaseStationButton(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - btn_nodeSleep = _mscl.BaseStationButton_btn_nodeSleep - btn_nodeStop = _mscl.BaseStationButton_btn_nodeStop - btn_enableBeacon = _mscl.BaseStationButton_btn_enableBeacon - btn_disableBeacon = _mscl.BaseStationButton_btn_disableBeacon - btn_nodeNonSyncSampling = _mscl.BaseStationButton_btn_nodeNonSyncSampling - btn_nodeSyncSampling = _mscl.BaseStationButton_btn_nodeSyncSampling - btn_nodeArmedDatalogging = _mscl.BaseStationButton_btn_nodeArmedDatalogging - btn_cyclePower = _mscl.BaseStationButton_btn_cyclePower - btn_disabled = _mscl.BaseStationButton_btn_disabled - - def __init__(self, *args): - _mscl.BaseStationButton_swiginit(self, _mscl.new_BaseStationButton(*args)) - - def command(self, *args): - return _mscl.BaseStationButton_command(self, *args) - - def nodeAddress(self, *args): - return _mscl.BaseStationButton_nodeAddress(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationButton - -# Register BaseStationButton in _mscl: -_mscl.BaseStationButton_swigregister(BaseStationButton) - -class BaseStationConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationConfig_swiginit(self, _mscl.new_BaseStationConfig()) - - def transmitPower(self, *args): - return _mscl.BaseStationConfig_transmitPower(self, *args) - - def communicationProtocol(self, *args): - return _mscl.BaseStationConfig_communicationProtocol(self, *args) - - def buttonLongPress(self, *args): - return _mscl.BaseStationConfig_buttonLongPress(self, *args) - - def buttonShortPress(self, *args): - return _mscl.BaseStationConfig_buttonShortPress(self, *args) - - def analogPairingEnable(self, *args): - return _mscl.BaseStationConfig_analogPairingEnable(self, *args) - - def analogTimeoutTime(self, *args): - return _mscl.BaseStationConfig_analogTimeoutTime(self, *args) - - def analogTimeoutVoltage(self, *args): - return _mscl.BaseStationConfig_analogTimeoutVoltage(self, *args) - - def analogExceedanceEnable(self, *args): - return _mscl.BaseStationConfig_analogExceedanceEnable(self, *args) - - def analogPairing(self, *args): - return _mscl.BaseStationConfig_analogPairing(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationConfig - -# Register BaseStationConfig in _mscl: -_mscl.BaseStationConfig_swigregister(BaseStationConfig) - -class BeaconStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BeaconStatus_swiginit(self, _mscl.new_BeaconStatus(*args)) - - def enabled(self): - return _mscl.BeaconStatus_enabled(self) - - def timestamp(self): - return _mscl.BeaconStatus_timestamp(self) - __swig_destroy__ = _mscl.delete_BeaconStatus - -# Register BeaconStatus in _mscl: -_mscl.BeaconStatus_swigregister(BeaconStatus) - -class BaseStationInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region, asppVer_lxrs, asppVer_lxrsPlus): - _mscl.BaseStationInfo_swiginit(self, _mscl.new_BaseStationInfo(fw, model, region, asppVer_lxrs, asppVer_lxrsPlus)) - __swig_destroy__ = _mscl.delete_BaseStationInfo - -# Register BaseStationInfo in _mscl: -_mscl.BaseStationInfo_swigregister(BaseStationInfo) - -class BaseStation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_BASE_COMMANDS_DEFAULT_TIMEOUT - ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT - BROADCAST_NODE_ADDRESS = _mscl.BaseStation_BROADCAST_NODE_ADDRESS - BROADCAST_NODE_ADDRESS_ASPP3 = _mscl.BaseStation_BROADCAST_NODE_ADDRESS_ASPP3 - - def __init__(self, *args): - _mscl.BaseStation_swiginit(self, _mscl.new_BaseStation(*args)) - __swig_destroy__ = _mscl.delete_BaseStation - - @staticmethod - def Mock(*args): - return _mscl.BaseStation_Mock(*args) - - @staticmethod - def deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - - def connection(self): - return _mscl.BaseStation_connection(self) - - def features(self): - return _mscl.BaseStation_features(self) - - def lastCommunicationTime(self): - return _mscl.BaseStation_lastCommunicationTime(self) - - def readWriteRetries(self, *args): - return _mscl.BaseStation_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.BaseStation_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.BaseStation_clearEepromCache(self) - - def frequency(self): - return _mscl.BaseStation_frequency(self) - - def communicationProtocol(self): - return _mscl.BaseStation_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.BaseStation_firmwareVersion(self) - - def model(self): - return _mscl.BaseStation_model(self) - - def serial(self): - return _mscl.BaseStation_serial(self) - - def name(self): - return _mscl.BaseStation_name(self) - - def microcontroller(self): - return _mscl.BaseStation_microcontroller(self) - - def regionCode(self): - return _mscl.BaseStation_regionCode(self) - - def getData(self, timeout=0, maxSweeps=0): - return _mscl.BaseStation_getData(self, timeout, maxSweeps) - - def totalData(self): - return _mscl.BaseStation_totalData(self) - - def getNodeDiscoveries(self): - return _mscl.BaseStation_getNodeDiscoveries(self) - - def timeout(self, *args): - return _mscl.BaseStation_timeout(self, *args) - - def ping(self): - return _mscl.BaseStation_ping(self) - - def readEeprom(self, eepromAddress): - return _mscl.BaseStation_readEeprom(self, eepromAddress) - - def writeEeprom(self, eepromAddress, value): - return _mscl.BaseStation_writeEeprom(self, eepromAddress, value) - - def enableBeacon(self, *args): - return _mscl.BaseStation_enableBeacon(self, *args) - - def disableBeacon(self): - return _mscl.BaseStation_disableBeacon(self) - - def beaconStatus(self): - return _mscl.BaseStation_beaconStatus(self) - - def startRfSweepMode(self, *args): - return _mscl.BaseStation_startRfSweepMode(self, *args) - - def cyclePower(self, checkComm=True): - return _mscl.BaseStation_cyclePower(self, checkComm) - - def resetRadio(self): - return _mscl.BaseStation_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.BaseStation_changeFrequency(self, frequency) - - def broadcastSetToIdle(self): - return _mscl.BaseStation_broadcastSetToIdle(self) - - def verifyConfig(self, config, outIssues): - return _mscl.BaseStation_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.BaseStation_applyConfig(self, config) - - def getTransmitPower(self): - return _mscl.BaseStation_getTransmitPower(self) - - def getButtonLongPress(self, buttonNumber): - return _mscl.BaseStation_getButtonLongPress(self, buttonNumber) - - def getButtonShortPress(self, buttonNumber): - return _mscl.BaseStation_getButtonShortPress(self, buttonNumber) - - def getAnalogPairingEnabled(self): - return _mscl.BaseStation_getAnalogPairingEnabled(self) - - def getAnalogTimeoutTime(self): - return _mscl.BaseStation_getAnalogTimeoutTime(self) - - def getAnalogTimeoutVoltage(self): - return _mscl.BaseStation_getAnalogTimeoutVoltage(self) - - def getAnalogExceedanceEnabled(self): - return _mscl.BaseStation_getAnalogExceedanceEnabled(self) - - def getAnalogPair(self, portNumber): - return _mscl.BaseStation_getAnalogPair(self, portNumber) - -# Register BaseStation in _mscl: -_mscl.BaseStation_swigregister(BaseStation) - -def BaseStation_Mock(*args): - return _mscl.BaseStation_Mock(*args) - -def BaseStation_deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - -class LoggedDataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LoggedDataSweep_swiginit(self, _mscl.new_LoggedDataSweep(*args)) - - def timestamp(self): - return _mscl.LoggedDataSweep_timestamp(self) - - def tick(self): - return _mscl.LoggedDataSweep_tick(self) - - def data(self): - return _mscl.LoggedDataSweep_data(self) - - def calApplied(self): - return _mscl.LoggedDataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweep - -# Register LoggedDataSweep in _mscl: -_mscl.LoggedDataSweep_swigregister(LoggedDataSweep) - -class RadioFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.RadioFeatures_swiginit(self, _mscl.new_RadioFeatures(*args)) - - def extendedRange(self): - return _mscl.RadioFeatures_extendedRange(self) - __swig_destroy__ = _mscl.delete_RadioFeatures - -# Register RadioFeatures in _mscl: -_mscl.RadioFeatures_swigregister(RadioFeatures) - -class WirelessNodeConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessNodeConfig_swiginit(self, _mscl.new_WirelessNodeConfig()) - SENSOR_DELAY_ALWAYS_ON = _mscl.WirelessNodeConfig_SENSOR_DELAY_ALWAYS_ON - - def defaultMode(self, *args): - return _mscl.WirelessNodeConfig_defaultMode(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.WirelessNodeConfig_inactivityTimeout(self, *args) - - def checkRadioInterval(self, *args): - return _mscl.WirelessNodeConfig_checkRadioInterval(self, *args) - - def transmitPower(self, *args): - return _mscl.WirelessNodeConfig_transmitPower(self, *args) - - def samplingMode(self, *args): - return _mscl.WirelessNodeConfig_samplingMode(self, *args) - - def sampleRate(self, *args): - return _mscl.WirelessNodeConfig_sampleRate(self, *args) - - def activeChannels(self, *args): - return _mscl.WirelessNodeConfig_activeChannels(self, *args) - - def numSweeps(self, *args): - return _mscl.WirelessNodeConfig_numSweeps(self, *args) - - def unlimitedDuration(self, *args): - return _mscl.WirelessNodeConfig_unlimitedDuration(self, *args) - - def dataFormat(self, *args): - return _mscl.WirelessNodeConfig_dataFormat(self, *args) - - def dataCollectionMethod(self, *args): - return _mscl.WirelessNodeConfig_dataCollectionMethod(self, *args) - - def timeBetweenBursts(self, *args): - return _mscl.WirelessNodeConfig_timeBetweenBursts(self, *args) - - def lostBeaconTimeout(self, *args): - return _mscl.WirelessNodeConfig_lostBeaconTimeout(self, *args) - - def pullUpResistor(self, *args): - return _mscl.WirelessNodeConfig_pullUpResistor(self, *args) - - def inputRange(self, *args): - return _mscl.WirelessNodeConfig_inputRange(self, *args) - - def hardwareOffset(self, *args): - return _mscl.WirelessNodeConfig_hardwareOffset(self, *args) - - def antiAliasingFilter(self, *args): - return _mscl.WirelessNodeConfig_antiAliasingFilter(self, *args) - - def cfcFilterConfig(self, *args): - return _mscl.WirelessNodeConfig_cfcFilterConfig(self, *args) - - def lowPassFilter(self, *args): - return _mscl.WirelessNodeConfig_lowPassFilter(self, *args) - - def highPassFilter(self, *args): - return _mscl.WirelessNodeConfig_highPassFilter(self, *args) - - def gaugeFactor(self, *args): - return _mscl.WirelessNodeConfig_gaugeFactor(self, *args) - - def gaugeResistance(self, *args): - return _mscl.WirelessNodeConfig_gaugeResistance(self, *args) - - def excitationVoltage(self, *args): - return _mscl.WirelessNodeConfig_excitationVoltage(self, *args) - - def numActiveGauges(self, *args): - return _mscl.WirelessNodeConfig_numActiveGauges(self, *args) - - def lowBatteryThreshold(self, *args): - return _mscl.WirelessNodeConfig_lowBatteryThreshold(self, *args) - - def linearEquation(self, *args): - return _mscl.WirelessNodeConfig_linearEquation(self, *args) - - def unit(self, *args): - return _mscl.WirelessNodeConfig_unit(self, *args) - - def equationType(self, *args): - return _mscl.WirelessNodeConfig_equationType(self, *args) - - def filterSettlingTime(self, *args): - return _mscl.WirelessNodeConfig_filterSettlingTime(self, *args) - - def thermocoupleType(self, *args): - return _mscl.WirelessNodeConfig_thermocoupleType(self, *args) - - def tempSensorOptions(self, *args): - return _mscl.WirelessNodeConfig_tempSensorOptions(self, *args) - - def debounceFilter(self, *args): - return _mscl.WirelessNodeConfig_debounceFilter(self, *args) - - def fatigueOptions(self, *args): - return _mscl.WirelessNodeConfig_fatigueOptions(self, *args) - - def histogramOptions(self, *args): - return _mscl.WirelessNodeConfig_histogramOptions(self, *args) - - def activitySense(self, *args): - return _mscl.WirelessNodeConfig_activitySense(self, *args) - - def eventTriggerOptions(self, *args): - return _mscl.WirelessNodeConfig_eventTriggerOptions(self, *args) - - def diagnosticInterval(self, *args): - return _mscl.WirelessNodeConfig_diagnosticInterval(self, *args) - - def storageLimitMode(self, *args): - return _mscl.WirelessNodeConfig_storageLimitMode(self, *args) - - def sensorDelay(self, *args): - return _mscl.WirelessNodeConfig_sensorDelay(self, *args) - - def dataMode(self, *args): - return _mscl.WirelessNodeConfig_dataMode(self, *args) - - def derivedDataRate(self, *args): - return _mscl.WirelessNodeConfig_derivedDataRate(self, *args) - - def derivedChannelMask(self, *args): - return _mscl.WirelessNodeConfig_derivedChannelMask(self, *args) - - def derivedVelocityUnit(self, *args): - return _mscl.WirelessNodeConfig_derivedVelocityUnit(self, *args) - - def communicationProtocol(self, *args): - return _mscl.WirelessNodeConfig_communicationProtocol(self, *args) - - def sensorOutputMode(self, *args): - return _mscl.WirelessNodeConfig_sensorOutputMode(self, *args) - - @staticmethod - def flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - - @staticmethod - def flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - __swig_destroy__ = _mscl.delete_WirelessNodeConfig - -# Register WirelessNodeConfig in _mscl: -_mscl.WirelessNodeConfig_swigregister(WirelessNodeConfig) - -def WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - -def WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - -class AutoBalanceResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoBalanceResult_swiginit(self, _mscl.new_AutoBalanceResult()) - - def errorCode(self): - return _mscl.AutoBalanceResult_errorCode(self) - - def percentAchieved(self): - return _mscl.AutoBalanceResult_percentAchieved(self) - - def hardwareOffset(self): - return _mscl.AutoBalanceResult_hardwareOffset(self) - __swig_destroy__ = _mscl.delete_AutoBalanceResult - -# Register AutoBalanceResult in _mscl: -_mscl.AutoBalanceResult_swigregister(AutoBalanceResult) - -class ShuntCalCmdInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - useInternalShunt = property(_mscl.ShuntCalCmdInfo_useInternalShunt_get, _mscl.ShuntCalCmdInfo_useInternalShunt_set) - numActiveGauges = property(_mscl.ShuntCalCmdInfo_numActiveGauges_get, _mscl.ShuntCalCmdInfo_numActiveGauges_set) - gaugeResistance = property(_mscl.ShuntCalCmdInfo_gaugeResistance_get, _mscl.ShuntCalCmdInfo_gaugeResistance_set) - shuntResistance = property(_mscl.ShuntCalCmdInfo_shuntResistance_get, _mscl.ShuntCalCmdInfo_shuntResistance_set) - gaugeFactor = property(_mscl.ShuntCalCmdInfo_gaugeFactor_get, _mscl.ShuntCalCmdInfo_gaugeFactor_set) - inputRange = property(_mscl.ShuntCalCmdInfo_inputRange_get, _mscl.ShuntCalCmdInfo_inputRange_set) - hardwareOffset = property(_mscl.ShuntCalCmdInfo_hardwareOffset_get, _mscl.ShuntCalCmdInfo_hardwareOffset_set) - excitationVoltage = property(_mscl.ShuntCalCmdInfo_excitationVoltage_get, _mscl.ShuntCalCmdInfo_excitationVoltage_set) - - def __init__(self): - _mscl.ShuntCalCmdInfo_swiginit(self, _mscl.new_ShuntCalCmdInfo()) - __swig_destroy__ = _mscl.delete_ShuntCalCmdInfo - -# Register ShuntCalCmdInfo in _mscl: -_mscl.ShuntCalCmdInfo_swigregister(ShuntCalCmdInfo) - -class AutoCalResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_AutoCalResult - - def completionFlag(self): - return _mscl.AutoCalResult_completionFlag(self) - -# Register AutoCalResult in _mscl: -_mscl.AutoCalResult_swigregister(AutoCalResult) - -class AutoCalResult_shmLink(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink_swiginit(self, _mscl.new_AutoCalResult_shmLink()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh3(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink_offsetCh1(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink_offsetCh2(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink_temperature(self) - -# Register AutoCalResult_shmLink in _mscl: -_mscl.AutoCalResult_shmLink_swigregister(AutoCalResult_shmLink) - -class AutoCalResult_shmLink201(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink201_swiginit(self, _mscl.new_AutoCalResult_shmLink201()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink201 - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh3(self) - - def slopeCh1(self): - return _mscl.AutoCalResult_shmLink201_slopeCh1(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink201_offsetCh1(self) - - def slopeCh2(self): - return _mscl.AutoCalResult_shmLink201_slopeCh2(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink201_offsetCh2(self) - - def slopeCh3(self): - return _mscl.AutoCalResult_shmLink201_slopeCh3(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink201_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink201_temperature(self) - -# Register AutoCalResult_shmLink201 in _mscl: -_mscl.AutoCalResult_shmLink201_swigregister(AutoCalResult_shmLink201) - -class AutoShuntCalResult(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoShuntCalResult_swiginit(self, _mscl.new_AutoShuntCalResult()) - __swig_destroy__ = _mscl.delete_AutoShuntCalResult - - def errorFlag(self): - return _mscl.AutoShuntCalResult_errorFlag(self) - - def slope(self): - return _mscl.AutoShuntCalResult_slope(self) - - def offset(self): - return _mscl.AutoShuntCalResult_offset(self) - - def baseMedian(self): - return _mscl.AutoShuntCalResult_baseMedian(self) - - def baseMin(self): - return _mscl.AutoShuntCalResult_baseMin(self) - - def baseMax(self): - return _mscl.AutoShuntCalResult_baseMax(self) - - def shuntMedian(self): - return _mscl.AutoShuntCalResult_shuntMedian(self) - - def shuntMin(self): - return _mscl.AutoShuntCalResult_shuntMin(self) - - def shuntMax(self): - return _mscl.AutoShuntCalResult_shuntMax(self) - -# Register AutoShuntCalResult in _mscl: -_mscl.AutoShuntCalResult_swigregister(AutoShuntCalResult) - -class PingResponse(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PingResponse_swiginit(self, _mscl.new_PingResponse()) - - def success(self): - return _mscl.PingResponse_success(self) - - def nodeRssi(self): - return _mscl.PingResponse_nodeRssi(self) - - def baseRssi(self): - return _mscl.PingResponse_baseRssi(self) - __swig_destroy__ = _mscl.delete_PingResponse - -# Register PingResponse in _mscl: -_mscl.PingResponse_swigregister(PingResponse) - -class SetToIdleStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - setToIdleResult_success = _mscl.SetToIdleStatus_setToIdleResult_success - setToIdleResult_canceled = _mscl.SetToIdleStatus_setToIdleResult_canceled - setToIdleResult_failed = _mscl.SetToIdleStatus_setToIdleResult_failed - setToIdleResult_notCompleted = _mscl.SetToIdleStatus_setToIdleResult_notCompleted - - def result(self): - return _mscl.SetToIdleStatus_result(self) - - def complete(self, timeout=10): - return _mscl.SetToIdleStatus_complete(self, timeout) - - def cancel(self): - return _mscl.SetToIdleStatus_cancel(self) - __swig_destroy__ = _mscl.delete_SetToIdleStatus - -# Register SetToIdleStatus in _mscl: -_mscl.SetToIdleStatus_swigregister(SetToIdleStatus) - -class NodeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region): - _mscl.NodeInfo_swiginit(self, _mscl.new_NodeInfo(fw, model, region)) - __swig_destroy__ = _mscl.delete_NodeInfo - -# Register NodeInfo in _mscl: -_mscl.NodeInfo_swigregister(NodeInfo) - -class WirelessNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, nodeAddress, basestation): - _mscl.WirelessNode_swiginit(self, _mscl.new_WirelessNode(nodeAddress, basestation)) - __swig_destroy__ = _mscl.delete_WirelessNode - - @staticmethod - def Mock(*args): - return _mscl.WirelessNode_Mock(*args) - - @staticmethod - def deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - - def features(self): - return _mscl.WirelessNode_features(self) - - def lastCommunicationTime(self): - return _mscl.WirelessNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.WirelessNode_lastDeviceState(self) - - def setBaseStation(self, basestation): - return _mscl.WirelessNode_setBaseStation(self, basestation) - - def getBaseStation(self): - return _mscl.WirelessNode_getBaseStation(self) - - def hasBaseStation(self, basestation): - return _mscl.WirelessNode_hasBaseStation(self, basestation) - - def useGroupRead(self, useGroup): - return _mscl.WirelessNode_useGroupRead(self, useGroup) - - def readWriteRetries(self, *args): - return _mscl.WirelessNode_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.WirelessNode_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.WirelessNode_clearEepromCache(self) - - def updateEepromCacheFromNodeDiscovery(self, nodeDisovery): - return _mscl.WirelessNode_updateEepromCacheFromNodeDiscovery(self, nodeDisovery) - - def getEepromCache(self): - return _mscl.WirelessNode_getEepromCache(self) - - def nodeAddress(self): - return _mscl.WirelessNode_nodeAddress(self) - - def frequency(self): - return _mscl.WirelessNode_frequency(self) - - def communicationProtocol(self): - return _mscl.WirelessNode_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.WirelessNode_firmwareVersion(self) - - def model(self): - return _mscl.WirelessNode_model(self) - - def serial(self): - return _mscl.WirelessNode_serial(self) - - def name(self): - return _mscl.WirelessNode_name(self) - - def microcontroller(self): - return _mscl.WirelessNode_microcontroller(self) - - def radioFeatures(self): - return _mscl.WirelessNode_radioFeatures(self) - - def dataStorageSize(self): - return _mscl.WirelessNode_dataStorageSize(self) - - def regionCode(self): - return _mscl.WirelessNode_regionCode(self) - - def ping(self): - return _mscl.WirelessNode_ping(self) - - def sleep(self): - return _mscl.WirelessNode_sleep(self) - - def cyclePower(self): - return _mscl.WirelessNode_cyclePower(self) - - def resetRadio(self): - return _mscl.WirelessNode_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.WirelessNode_changeFrequency(self, frequency) - - def setToIdle(self): - return _mscl.WirelessNode_setToIdle(self) - - def erase(self): - return _mscl.WirelessNode_erase(self) - - def startNonSyncSampling(self): - return _mscl.WirelessNode_startNonSyncSampling(self) - - def resendStartSyncSampling(self): - return _mscl.WirelessNode_resendStartSyncSampling(self) - - def clearHistogram(self): - return _mscl.WirelessNode_clearHistogram(self) - - def autoBalance(self, mask, targetPercent): - return _mscl.WirelessNode_autoBalance(self, mask, targetPercent) - - def autoCal_shmLink(self): - return _mscl.WirelessNode_autoCal_shmLink(self) - - def autoCal_shmLink201(self): - return _mscl.WirelessNode_autoCal_shmLink201(self) - - def autoShuntCal(self, mask, commandInfo): - return _mscl.WirelessNode_autoShuntCal(self, mask, commandInfo) - - def poll(self, mask): - return _mscl.WirelessNode_poll(self, mask) - - def readEeprom(self, location): - return _mscl.WirelessNode_readEeprom(self, location) - - def writeEeprom(self, location, value): - return _mscl.WirelessNode_writeEeprom(self, location, value) - - def getDiagnosticInfo(self): - return _mscl.WirelessNode_getDiagnosticInfo(self) - - def testCommunicationProtocol(self, protocol): - return _mscl.WirelessNode_testCommunicationProtocol(self, protocol) - - def verifyConfig(self, config, outIssues): - return _mscl.WirelessNode_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.WirelessNode_applyConfig(self, config) - - def getNumDatalogSessions(self): - return _mscl.WirelessNode_getNumDatalogSessions(self) - - def percentFull(self): - return _mscl.WirelessNode_percentFull(self) - - def getDefaultMode(self): - return _mscl.WirelessNode_getDefaultMode(self) - - def getInactivityTimeout(self): - return _mscl.WirelessNode_getInactivityTimeout(self) - - def getCheckRadioInterval(self): - return _mscl.WirelessNode_getCheckRadioInterval(self) - - def getTransmitPower(self): - return _mscl.WirelessNode_getTransmitPower(self) - - def getSamplingMode(self): - return _mscl.WirelessNode_getSamplingMode(self) - - def getActiveChannels(self): - return _mscl.WirelessNode_getActiveChannels(self) - - def getSampleRate(self): - return _mscl.WirelessNode_getSampleRate(self) - - def getNumSweeps(self): - return _mscl.WirelessNode_getNumSweeps(self) - - def getUnlimitedDuration(self): - return _mscl.WirelessNode_getUnlimitedDuration(self) - - def getDataFormat(self): - return _mscl.WirelessNode_getDataFormat(self) - - def getDataCollectionMethod(self): - return _mscl.WirelessNode_getDataCollectionMethod(self) - - def getTimeBetweenBursts(self): - return _mscl.WirelessNode_getTimeBetweenBursts(self) - - def getLostBeaconTimeout(self): - return _mscl.WirelessNode_getLostBeaconTimeout(self) - - def getInputRange(self, mask): - return _mscl.WirelessNode_getInputRange(self, mask) - - def getHardwareOffset(self, mask): - return _mscl.WirelessNode_getHardwareOffset(self, mask) - - def getAntiAliasingFilter(self, mask): - return _mscl.WirelessNode_getAntiAliasingFilter(self, mask) - - def getCfcFilterConfiguration(self): - return _mscl.WirelessNode_getCfcFilterConfiguration(self) - - def getLowPassFilter(self, mask): - return _mscl.WirelessNode_getLowPassFilter(self, mask) - - def getHighPassFilter(self, mask): - return _mscl.WirelessNode_getHighPassFilter(self, mask) - - def getDebounceFilter(self, mask): - return _mscl.WirelessNode_getDebounceFilter(self, mask) - - def getPullUpResistor(self, mask): - return _mscl.WirelessNode_getPullUpResistor(self, mask) - - def getSensorOutputMode(self): - return _mscl.WirelessNode_getSensorOutputMode(self) - - def getGaugeFactor(self, mask): - return _mscl.WirelessNode_getGaugeFactor(self, mask) - - def getExcitationVoltage(self): - return _mscl.WirelessNode_getExcitationVoltage(self) - - def getAdcVoltageRef(self): - return _mscl.WirelessNode_getAdcVoltageRef(self) - - def getGainAmplifierVoltageRef(self): - return _mscl.WirelessNode_getGainAmplifierVoltageRef(self) - - def getGaugeResistance(self): - return _mscl.WirelessNode_getGaugeResistance(self) - - def getNumActiveGauges(self): - return _mscl.WirelessNode_getNumActiveGauges(self) - - def getLowBatteryThreshold(self): - return _mscl.WirelessNode_getLowBatteryThreshold(self) - - def getLinearEquation(self, mask): - return _mscl.WirelessNode_getLinearEquation(self, mask) - - def getUnit(self, mask): - return _mscl.WirelessNode_getUnit(self, mask) - - def getEquationType(self, mask): - return _mscl.WirelessNode_getEquationType(self, mask) - - def getFactoryCalibrationLinearEq(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationLinearEq(self, mask) - - def getFactoryCalibrationUnit(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationUnit(self, mask) - - def getFactoryCalibrationEqType(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationEqType(self, mask) - - def getFilterSettlingTime(self, mask): - return _mscl.WirelessNode_getFilterSettlingTime(self, mask) - - def getThermocoupleType(self, mask): - return _mscl.WirelessNode_getThermocoupleType(self, mask) - - def getTempSensorOptions(self, mask): - return _mscl.WirelessNode_getTempSensorOptions(self, mask) - - def getFatigueOptions(self): - return _mscl.WirelessNode_getFatigueOptions(self) - - def getHistogramOptions(self): - return _mscl.WirelessNode_getHistogramOptions(self) - - def getActivitySense(self): - return _mscl.WirelessNode_getActivitySense(self) - - def getEventTriggerOptions(self): - return _mscl.WirelessNode_getEventTriggerOptions(self) - - def getDiagnosticInterval(self): - return _mscl.WirelessNode_getDiagnosticInterval(self) - - def getStorageLimitMode(self): - return _mscl.WirelessNode_getStorageLimitMode(self) - - def getSensorDelay(self): - return _mscl.WirelessNode_getSensorDelay(self) - - def getDataMode(self): - return _mscl.WirelessNode_getDataMode(self) - - def getDerivedDataRate(self): - return _mscl.WirelessNode_getDerivedDataRate(self) - - def getDerivedChannelMask(self, category): - return _mscl.WirelessNode_getDerivedChannelMask(self, category) - - def getDerivedVelocityUnit(self): - return _mscl.WirelessNode_getDerivedVelocityUnit(self) - -# Register WirelessNode in _mscl: -_mscl.WirelessNode_swigregister(WirelessNode) - -def WirelessNode_Mock(*args): - return _mscl.WirelessNode_Mock(*args) - -def WirelessNode_deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - -class DatalogDownloader(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.DatalogDownloader_swiginit(self, _mscl.new_DatalogDownloader(*args)) - __swig_destroy__ = _mscl.delete_DatalogDownloader - - def complete(self): - return _mscl.DatalogDownloader_complete(self) - - def percentComplete(self): - return _mscl.DatalogDownloader_percentComplete(self) - - def getNextData(self): - return _mscl.DatalogDownloader_getNextData(self) - - def metaDataUpdated(self): - return _mscl.DatalogDownloader_metaDataUpdated(self) - - def calCoefficientsUpdated(self): - return _mscl.DatalogDownloader_calCoefficientsUpdated(self) - - def startOfSession(self): - return _mscl.DatalogDownloader_startOfSession(self) - - def sessionIndex(self): - return _mscl.DatalogDownloader_sessionIndex(self) - - def sampleRate(self): - return _mscl.DatalogDownloader_sampleRate(self) - - def userString(self): - return _mscl.DatalogDownloader_userString(self) - - def calCoefficients(self): - return _mscl.DatalogDownloader_calCoefficients(self) - -# Register DatalogDownloader in _mscl: -_mscl.DatalogDownloader_swigregister(DatalogDownloader) - -class ArmedDataloggingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.ArmedDataloggingNetwork_swiginit(self, _mscl.new_ArmedDataloggingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.ArmedDataloggingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.ArmedDataloggingNetwork_removeNode(self, nodeAddress) - - def startSampling(self): - return _mscl.ArmedDataloggingNetwork_startSampling(self) - __swig_destroy__ = _mscl.delete_ArmedDataloggingNetwork - -# Register ArmedDataloggingNetwork in _mscl: -_mscl.ArmedDataloggingNetwork_swigregister(ArmedDataloggingNetwork) - -class SyncNetworkInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - status_OK = _mscl.SyncNetworkInfo_status_OK - status_PoorCommunication = _mscl.SyncNetworkInfo_status_PoorCommunication - status_DoesNotFit = _mscl.SyncNetworkInfo_status_DoesNotFit - status_Contention = _mscl.SyncNetworkInfo_status_Contention - - def __init__(self, node): - _mscl.SyncNetworkInfo_swiginit(self, _mscl.new_SyncNetworkInfo(node)) - - def status(self): - return _mscl.SyncNetworkInfo_status(self) - - def startedSampling(self): - return _mscl.SyncNetworkInfo_startedSampling(self) - - def configurationApplied(self): - return _mscl.SyncNetworkInfo_configurationApplied(self) - - def percentBandwidth(self): - return _mscl.SyncNetworkInfo_percentBandwidth(self) - - def tdmaAddress(self): - return _mscl.SyncNetworkInfo_tdmaAddress(self) - - def maxTdmaAddress(self): - return _mscl.SyncNetworkInfo_maxTdmaAddress(self) - - def transmissionPerGroup(self): - return _mscl.SyncNetworkInfo_transmissionPerGroup(self) - - def groupSize(self): - return _mscl.SyncNetworkInfo_groupSize(self) - __swig_destroy__ = _mscl.delete_SyncNetworkInfo - -# Register SyncNetworkInfo in _mscl: -_mscl.SyncNetworkInfo_swigregister(SyncNetworkInfo) - -class SyncSamplingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.SyncSamplingNetwork_swiginit(self, _mscl.new_SyncSamplingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.SyncSamplingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.SyncSamplingNetwork_removeNode(self, nodeAddress) - - def percentBandwidth(self): - return _mscl.SyncSamplingNetwork_percentBandwidth(self) - - def ok(self): - return _mscl.SyncSamplingNetwork_ok(self) - - def refresh(self): - return _mscl.SyncSamplingNetwork_refresh(self) - - def lossless(self, *args): - return _mscl.SyncSamplingNetwork_lossless(self, *args) - - def communicationProtocol(self, *args): - return _mscl.SyncSamplingNetwork_communicationProtocol(self, *args) - - def applyConfiguration(self): - return _mscl.SyncSamplingNetwork_applyConfiguration(self) - - def startSampling(self, *args): - return _mscl.SyncSamplingNetwork_startSampling(self, *args) - - def startSampling_noBeacon(self): - return _mscl.SyncSamplingNetwork_startSampling_noBeacon(self) - - def getNodeNetworkInfo(self, nodeAddress): - return _mscl.SyncSamplingNetwork_getNodeNetworkInfo(self, nodeAddress) - __swig_destroy__ = _mscl.delete_SyncSamplingNetwork - -# Register SyncSamplingNetwork in _mscl: -_mscl.SyncSamplingNetwork_swigregister(SyncSamplingNetwork) - -class NodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_NodeFeatures - - def normalizeNumSweeps(self, sweeps): - return _mscl.NodeFeatures_normalizeNumSweeps(self, sweeps) - - def normalizeTimeBetweenBursts(self, time): - return _mscl.NodeFeatures_normalizeTimeBetweenBursts(self, time) - - def channels(self): - return _mscl.NodeFeatures_channels(self) - - def channelGroups(self): - return _mscl.NodeFeatures_channelGroups(self) - - def channelType(self, channelNumber): - return _mscl.NodeFeatures_channelType(self, channelNumber) - - def supportsChannelSetting(self, setting, mask): - return _mscl.NodeFeatures_supportsChannelSetting(self, setting, mask) - - def supportsInputRangePerExcitationVoltage(self): - return _mscl.NodeFeatures_supportsInputRangePerExcitationVoltage(self) - - def supportsHardwareOffset(self): - return _mscl.NodeFeatures_supportsHardwareOffset(self) - - def supportsAntiAliasingFilter(self): - return _mscl.NodeFeatures_supportsAntiAliasingFilter(self) - - def supportsLowPassFilter(self): - return _mscl.NodeFeatures_supportsLowPassFilter(self) - - def supportsHighPassFilter(self): - return _mscl.NodeFeatures_supportsHighPassFilter(self) - - def supportsGaugeFactor(self): - return _mscl.NodeFeatures_supportsGaugeFactor(self) - - def supportsGaugeResistance(self): - return _mscl.NodeFeatures_supportsGaugeResistance(self) - - def supportsNumActiveGauges(self): - return _mscl.NodeFeatures_supportsNumActiveGauges(self) - - def supportsLostBeaconTimeout(self): - return _mscl.NodeFeatures_supportsLostBeaconTimeout(self) - - def supportsPullUpResistor(self): - return _mscl.NodeFeatures_supportsPullUpResistor(self) - - def supportsFilterSettlingTime(self): - return _mscl.NodeFeatures_supportsFilterSettlingTime(self) - - def supportsThermocoupleType(self): - return _mscl.NodeFeatures_supportsThermocoupleType(self) - - def supportsTempSensorOptions(self): - return _mscl.NodeFeatures_supportsTempSensorOptions(self) - - def supportsDebounceFilter(self): - return _mscl.NodeFeatures_supportsDebounceFilter(self) - - def supportsFatigueConfig(self): - return _mscl.NodeFeatures_supportsFatigueConfig(self) - - def supportsYoungsModConfig(self): - return _mscl.NodeFeatures_supportsYoungsModConfig(self) - - def supportsPoissonsRatioConfig(self): - return _mscl.NodeFeatures_supportsPoissonsRatioConfig(self) - - def supportsFatigueDebugModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueDebugModeConfig(self) - - def supportsFatigueModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueModeConfig(self) - - def supportsHistogramConfig(self): - return _mscl.NodeFeatures_supportsHistogramConfig(self) - - def supportsHistogramRateConfig(self): - return _mscl.NodeFeatures_supportsHistogramRateConfig(self) - - def supportsHistogramEnableConfig(self): - return _mscl.NodeFeatures_supportsHistogramEnableConfig(self) - - def supportsActivitySense(self): - return _mscl.NodeFeatures_supportsActivitySense(self) - - def supportsAutoBalance(self): - return _mscl.NodeFeatures_supportsAutoBalance(self) - - def supportsLegacyShuntCal(self): - return _mscl.NodeFeatures_supportsLegacyShuntCal(self) - - def supportsAutoCal_shm(self): - return _mscl.NodeFeatures_supportsAutoCal_shm(self) - - def supportsAutoCal_shm201(self): - return _mscl.NodeFeatures_supportsAutoCal_shm201(self) - - def supportsAutoShuntCal(self): - return _mscl.NodeFeatures_supportsAutoShuntCal(self) - - def supportsGetFactoryCal(self): - return _mscl.NodeFeatures_supportsGetFactoryCal(self) - - def supportsLimitedDuration(self): - return _mscl.NodeFeatures_supportsLimitedDuration(self) - - def supportsEventTrigger(self): - return _mscl.NodeFeatures_supportsEventTrigger(self) - - def supportsDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsDiagnosticInfo(self) - - def supportsLoggedData(self): - return _mscl.NodeFeatures_supportsLoggedData(self) - - def supportsPoll(self): - return _mscl.NodeFeatures_supportsPoll(self) - - def supportsSensorDelayConfig(self): - return _mscl.NodeFeatures_supportsSensorDelayConfig(self) - - def supportsSensorDelayAlwaysOn(self): - return _mscl.NodeFeatures_supportsSensorDelayAlwaysOn(self) - - def supportsSensorOutputMode(self): - return _mscl.NodeFeatures_supportsSensorOutputMode(self) - - def supportsCfcFilterConfiguration(self): - return _mscl.NodeFeatures_supportsCfcFilterConfiguration(self) - - def supportsChannel(self, channelNumber): - return _mscl.NodeFeatures_supportsChannel(self, channelNumber) - - def supportsSamplingMode(self, samplingMode): - return _mscl.NodeFeatures_supportsSamplingMode(self, samplingMode) - - def supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.NodeFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsDataFormat(self, dataFormat): - return _mscl.NodeFeatures_supportsDataFormat(self, dataFormat) - - def supportsDefaultMode(self, mode): - return _mscl.NodeFeatures_supportsDefaultMode(self, mode) - - def supportsDataCollectionMethod(self, collectionMethod): - return _mscl.NodeFeatures_supportsDataCollectionMethod(self, collectionMethod) - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.NodeFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsDataMode(self, dataMode): - return _mscl.NodeFeatures_supportsDataMode(self, dataMode) - - def supportsTransducerType(self, transducerType): - return _mscl.NodeFeatures_supportsTransducerType(self, transducerType) - - def supportsFatigueMode(self, mode): - return _mscl.NodeFeatures_supportsFatigueMode(self, mode) - - def supportsInputRange(self, *args): - return _mscl.NodeFeatures_supportsInputRange(self, *args) - - def supportsCentisecondEventDuration(self): - return _mscl.NodeFeatures_supportsCentisecondEventDuration(self) - - def supportsGetDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsGetDiagnosticInfo(self) - - def supportsNonSyncLogWithTimestamps(self): - return _mscl.NodeFeatures_supportsNonSyncLogWithTimestamps(self) - - def supportsDerivedCategory(self, category): - return _mscl.NodeFeatures_supportsDerivedCategory(self, category) - - def supportsRawDataMode(self): - return _mscl.NodeFeatures_supportsRawDataMode(self) - - def supportsDerivedDataMode(self): - return _mscl.NodeFeatures_supportsDerivedDataMode(self) - - def supportsDerivedVelocityUnitConfig(self): - return _mscl.NodeFeatures_supportsDerivedVelocityUnitConfig(self) - - def supportsExcitationVoltageConfig(self): - return _mscl.NodeFeatures_supportsExcitationVoltageConfig(self) - - def supportsLowBatteryThresholdConfig(self): - return _mscl.NodeFeatures_supportsLowBatteryThresholdConfig(self) - - def maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode) - - def maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode) - - def maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels): - return _mscl.NodeFeatures_maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels) - - def maxFilterSettlingTime(self, rate): - return _mscl.NodeFeatures_maxFilterSettlingTime(self, rate) - - def minInactivityTimeout(self): - return _mscl.NodeFeatures_minInactivityTimeout(self) - - def minLostBeaconTimeout(self): - return _mscl.NodeFeatures_minLostBeaconTimeout(self) - - def maxLostBeaconTimeout(self): - return _mscl.NodeFeatures_maxLostBeaconTimeout(self) - - def minCheckRadioInterval(self): - return _mscl.NodeFeatures_minCheckRadioInterval(self) - - def maxCheckRadioInterval(self): - return _mscl.NodeFeatures_maxCheckRadioInterval(self) - - def minSweeps(self): - return _mscl.NodeFeatures_minSweeps(self) - - def maxSweeps(self, samplingMode, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweeps(self, samplingMode, dataMode, dataFormat, channels) - - def maxSweepsPerBurst(self, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweepsPerBurst(self, dataMode, dataFormat, channels) - - def minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol): - return _mscl.NodeFeatures_minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol) - - def minSensorDelay(self): - return _mscl.NodeFeatures_minSensorDelay(self) - - def maxSensorDelay(self): - return _mscl.NodeFeatures_maxSensorDelay(self) - - def defaultSensorDelay(self): - return _mscl.NodeFeatures_defaultSensorDelay(self) - - def maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate): - return _mscl.NodeFeatures_maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate) - - def normalizeEventDuration(self, duration): - return _mscl.NodeFeatures_normalizeEventDuration(self, duration) - - def normalizeSensorDelay(self, delay): - return _mscl.NodeFeatures_normalizeSensorDelay(self, delay) - - def numDamageAngles(self): - return _mscl.NodeFeatures_numDamageAngles(self) - - def numSnCurveSegments(self): - return _mscl.NodeFeatures_numSnCurveSegments(self) - - def numEventTriggers(self): - return _mscl.NodeFeatures_numEventTriggers(self) - - def defaultModes(self): - return _mscl.NodeFeatures_defaultModes(self) - - def dataCollectionMethods(self): - return _mscl.NodeFeatures_dataCollectionMethods(self) - - def dataFormats(self): - return _mscl.NodeFeatures_dataFormats(self) - - def samplingModes(self): - return _mscl.NodeFeatures_samplingModes(self) - - def sampleRates(self, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_sampleRates(self, samplingMode, dataCollectionMethod, dataMode) - - def derivedDataRates(self): - return _mscl.NodeFeatures_derivedDataRates(self) - - def transmitPowers(self, *args): - return _mscl.NodeFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.NodeFeatures_commProtocols(self) - - def sensorOutputModes(self): - return _mscl.NodeFeatures_sensorOutputModes(self) - - def cfcFilters(self): - return _mscl.NodeFeatures_cfcFilters(self) - - def histogramTransmitRates(self): - return _mscl.NodeFeatures_histogramTransmitRates(self) - - def fatigueModes(self): - return _mscl.NodeFeatures_fatigueModes(self) - - def antiAliasingFilters(self): - return _mscl.NodeFeatures_antiAliasingFilters(self) - - def lowPassFilters(self): - return _mscl.NodeFeatures_lowPassFilters(self) - - def highPassFilters(self): - return _mscl.NodeFeatures_highPassFilters(self) - - def storageLimitModes(self): - return _mscl.NodeFeatures_storageLimitModes(self) - - def inputRanges(self, *args): - return _mscl.NodeFeatures_inputRanges(self, *args) - - def dataModes(self): - return _mscl.NodeFeatures_dataModes(self) - - def transducerTypes(self): - return _mscl.NodeFeatures_transducerTypes(self) - - def channelsPerDerivedCategory(self): - return _mscl.NodeFeatures_channelsPerDerivedCategory(self) - - def excitationVoltages(self): - return _mscl.NodeFeatures_excitationVoltages(self) - - def adcVoltageInputType(self): - return _mscl.NodeFeatures_adcVoltageInputType(self) - - def maxTransmitPower(self, *args): - return _mscl.NodeFeatures_maxTransmitPower(self, *args) - - def minTransmitPower(self, *args): - return _mscl.NodeFeatures_minTransmitPower(self, *args) - -# Register NodeFeatures in _mscl: -_mscl.NodeFeatures_swigregister(NodeFeatures) - -class BaseStationFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_BaseStationFeatures - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.BaseStationFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.BaseStationFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsButtons(self): - return _mscl.BaseStationFeatures_supportsButtons(self) - - def supportsAnalogPairing(self): - return _mscl.BaseStationFeatures_supportsAnalogPairing(self) - - def supportsBeaconStatus(self): - return _mscl.BaseStationFeatures_supportsBeaconStatus(self) - - def supportsRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsRfSweepMode(self) - - def supportsCustomRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsCustomRfSweepMode(self) - - def buttonCount(self): - return _mscl.BaseStationFeatures_buttonCount(self) - - def analogPortCount(self): - return _mscl.BaseStationFeatures_analogPortCount(self) - - def transmitPowers(self, *args): - return _mscl.BaseStationFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.BaseStationFeatures_commProtocols(self) - - def maxTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_maxTransmitPower(self, region, commProtocol) - - def minTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_minTransmitPower(self, region, commProtocol) - -# Register BaseStationFeatures in _mscl: -_mscl.BaseStationFeatures_swigregister(BaseStationFeatures) - -class EulerAngles(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EulerAngles_swiginit(self, _mscl.new_EulerAngles(*args)) - - def asMipFieldValues(self): - return _mscl.EulerAngles_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.EulerAngles_appendMipFieldValues(self, appendTo) - - def roll(self): - return _mscl.EulerAngles_roll(self) - - def pitch(self): - return _mscl.EulerAngles_pitch(self) - - def yaw(self): - return _mscl.EulerAngles_yaw(self) - - def heading(self): - return _mscl.EulerAngles_heading(self) - __swig_destroy__ = _mscl.delete_EulerAngles - -# Register EulerAngles in _mscl: -_mscl.EulerAngles_swigregister(EulerAngles) - -class Quaternion(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Quaternion_swiginit(self, _mscl.new_Quaternion(*args)) - - def asMipFieldValues(self): - return _mscl.Quaternion_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Quaternion_appendMipFieldValues(self, appendTo) - - def normalize(self): - return _mscl.Quaternion_normalize(self) - - def q0(self): - return _mscl.Quaternion_q0(self) - - def q1(self): - return _mscl.Quaternion_q1(self) - - def q2(self): - return _mscl.Quaternion_q2(self) - - def q3(self): - return _mscl.Quaternion_q3(self) - __swig_destroy__ = _mscl.delete_Quaternion - -# Register Quaternion in _mscl: -_mscl.Quaternion_swigregister(Quaternion) - -class Rotation(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EULER_ANGLES = _mscl.Rotation_EULER_ANGLES - QUATERNION = _mscl.Rotation_QUATERNION - - def __init__(self, *args): - _mscl.Rotation_swiginit(self, _mscl.new_Rotation(*args)) - - @staticmethod - def FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - - @staticmethod - def FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - - def asEulerAngles(self): - return _mscl.Rotation_asEulerAngles(self) - - def asQuaternion(self): - return _mscl.Rotation_asQuaternion(self) - - def asMipFieldValues(self, includeFormat=True): - return _mscl.Rotation_asMipFieldValues(self, includeFormat) - - def appendMipFieldValues(self, appendTo, includeFormat=True): - return _mscl.Rotation_appendMipFieldValues(self, appendTo, includeFormat) - - def format(self): - return _mscl.Rotation_format(self) - __swig_destroy__ = _mscl.delete_Rotation - -# Register Rotation in _mscl: -_mscl.Rotation_swigregister(Rotation) - -def Rotation_FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - -def Rotation_FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - -class Vec3f(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Vec3f_swiginit(self, _mscl.new_Vec3f(*args)) - __swig_destroy__ = _mscl.delete_Vec3f - - def fromMipFieldValues(self, data, offset=0): - return _mscl.Vec3f_fromMipFieldValues(self, data, offset) - - def asMipFieldValues(self): - return _mscl.Vec3f_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Vec3f_appendMipFieldValues(self, appendTo) - - def x(self, *args): - return _mscl.Vec3f_x(self, *args) - - def y(self, *args): - return _mscl.Vec3f_y(self, *args) - - def z(self, *args): - return _mscl.Vec3f_z(self, *args) - -# Register Vec3f in _mscl: -_mscl.Vec3f_swigregister(Vec3f) - -ECEF = _mscl.ECEF -LLH_NED = _mscl.LLH_NED -LOCAL = _mscl.LOCAL -VEHICLE = _mscl.VEHICLE -class GeometricVector(Vec3f): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - - @staticmethod - def VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - - def __init__(self, *args): - _mscl.GeometricVector_swiginit(self, _mscl.new_GeometricVector(*args)) - __swig_destroy__ = _mscl.delete_GeometricVector - - def fromMipFieldValues_includesFrame(self, data, offset=0): - return _mscl.GeometricVector_fromMipFieldValues_includesFrame(self, data, offset) - - def asMipFieldValues_includeFrame(self): - return _mscl.GeometricVector_asMipFieldValues_includeFrame(self) - - def appendMipFieldValues_includeFrame(self, appendTo): - return _mscl.GeometricVector_appendMipFieldValues_includeFrame(self, appendTo) - referenceFrame = property(_mscl.GeometricVector_referenceFrame_get, _mscl.GeometricVector_referenceFrame_set) - - def north(self, *args): - return _mscl.GeometricVector_north(self, *args) - - def east(self, *args): - return _mscl.GeometricVector_east(self, *args) - - def down(self, *args): - return _mscl.GeometricVector_down(self, *args) - -# Register GeometricVector in _mscl: -_mscl.GeometricVector_swigregister(GeometricVector) - -def GeometricVector_VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - -def GeometricVector_VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - -class PositionOffset(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.PositionOffset_swiginit(self, _mscl.new_PositionOffset(*args)) - __swig_destroy__ = _mscl.delete_PositionOffset - -# Register PositionOffset in _mscl: -_mscl.PositionOffset_swigregister(PositionOffset) - -class Velocity(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Velocity_swiginit(self, _mscl.new_Velocity(*args)) - __swig_destroy__ = _mscl.delete_Velocity - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - - @staticmethod - def NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - - @staticmethod - def Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -# Register Velocity in _mscl: -_mscl.Velocity_swigregister(Velocity) - -def Velocity_ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - -def Velocity_NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - -def Velocity_Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -class Position(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - - def __init__(self, *args): - _mscl.Position_swiginit(self, _mscl.new_Position(*args)) - __swig_destroy__ = _mscl.delete_Position - referenceFrame = property(_mscl.Position_referenceFrame_get, _mscl.Position_referenceFrame_set) - - def latitude(self, *args): - return _mscl.Position_latitude(self, *args) - - def longitude(self, *args): - return _mscl.Position_longitude(self, *args) - - def altitude(self, *args): - return _mscl.Position_altitude(self, *args) - - def height(self, *args): - return _mscl.Position_height(self, *args) - - def x(self, *args): - return _mscl.Position_x(self, *args) - - def y(self, *args): - return _mscl.Position_y(self, *args) - - def z(self, *args): - return _mscl.Position_z(self, *args) - -# Register Position in _mscl: -_mscl.Position_swigregister(Position) - -def Position_LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - -def Position_ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - -class GeometricUncertainty(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeometricUncertainty_swiginit(self, _mscl.new_GeometricUncertainty(*args)) - __swig_destroy__ = _mscl.delete_GeometricUncertainty - -# Register GeometricUncertainty in _mscl: -_mscl.GeometricUncertainty_swigregister(GeometricUncertainty) - -class MipModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_3dm_dh3 = _mscl.MipModels_node_3dm_dh3 - node_3dm_gx3_15 = _mscl.MipModels_node_3dm_gx3_15 - node_3dm_gx3_25 = _mscl.MipModels_node_3dm_gx3_25 - node_3dm_gx3_35 = _mscl.MipModels_node_3dm_gx3_35 - node_3dm_gx3_45 = _mscl.MipModels_node_3dm_gx3_45 - node_3dm_rq1_45_lt = _mscl.MipModels_node_3dm_rq1_45_lt - node_3dm_gx4_15 = _mscl.MipModels_node_3dm_gx4_15 - node_3dm_gx4_25 = _mscl.MipModels_node_3dm_gx4_25 - node_3dm_gx4_45 = _mscl.MipModels_node_3dm_gx4_45 - node_3dm_rq1_45_st = _mscl.MipModels_node_3dm_rq1_45_st - node_mv5_ar = _mscl.MipModels_node_mv5_ar - node_3dm_gx5_10 = _mscl.MipModels_node_3dm_gx5_10 - node_3dm_gx5_15 = _mscl.MipModels_node_3dm_gx5_15 - node_3dm_gx5_25 = _mscl.MipModels_node_3dm_gx5_25 - node_3dm_gx5_35 = _mscl.MipModels_node_3dm_gx5_35 - node_3dm_gx5_45 = _mscl.MipModels_node_3dm_gx5_45 - node_3dm_cv5_10 = _mscl.MipModels_node_3dm_cv5_10 - node_3dm_cv5_15 = _mscl.MipModels_node_3dm_cv5_15 - node_3dm_cv5_25 = _mscl.MipModels_node_3dm_cv5_25 - node_3dm_cv5_45 = _mscl.MipModels_node_3dm_cv5_45 - node_3dm_gq4_45 = _mscl.MipModels_node_3dm_gq4_45 - node_3dm_cx5_45 = _mscl.MipModels_node_3dm_cx5_45 - node_3dm_cx5_35 = _mscl.MipModels_node_3dm_cx5_35 - node_3dm_cx5_25 = _mscl.MipModels_node_3dm_cx5_25 - node_3dm_cx5_15 = _mscl.MipModels_node_3dm_cx5_15 - node_3dm_cx5_10 = _mscl.MipModels_node_3dm_cx5_10 - node_3dm_cl5_15 = _mscl.MipModels_node_3dm_cl5_15 - node_3dm_cl5_25 = _mscl.MipModels_node_3dm_cl5_25 - node_3dm_gq7 = _mscl.MipModels_node_3dm_gq7 - node_3dm_rtk = _mscl.MipModels_node_3dm_rtk - node_3dm_cv7_ahrs = _mscl.MipModels_node_3dm_cv7_ahrs - node_3dm_cv7_ar = _mscl.MipModels_node_3dm_cv7_ar - node_3dm_gv7_ahrs = _mscl.MipModels_node_3dm_gv7_ahrs - node_3dm_gv7_ar = _mscl.MipModels_node_3dm_gv7_ar - node_3dm_gv7_ins = _mscl.MipModels_node_3dm_gv7_ins - node_3dm_cv7_ins = _mscl.MipModels_node_3dm_cv7_ins - node_3dm_cv7_gnss_ins = _mscl.MipModels_node_3dm_cv7_gnss_ins - placeholder_matchAll = _mscl.MipModels_placeholder_matchAll - rtk_v1 = _mscl.MipModels_rtk_v1 - rtk_v2 = _mscl.MipModels_rtk_v2 - model_3dm_dh3 = _mscl.MipModels_model_3dm_dh3 - model_3dm_gx3_15 = _mscl.MipModels_model_3dm_gx3_15 - model_3dm_gx3_25 = _mscl.MipModels_model_3dm_gx3_25 - model_3dm_gx3_35 = _mscl.MipModels_model_3dm_gx3_35 - model_3dm_gx3_45 = _mscl.MipModels_model_3dm_gx3_45 - model_3dm_rq1_45_lt = _mscl.MipModels_model_3dm_rq1_45_lt - model_3dm_gx4_15 = _mscl.MipModels_model_3dm_gx4_15 - model_3dm_gx4_25 = _mscl.MipModels_model_3dm_gx4_25 - model_3dm_gx4_45 = _mscl.MipModels_model_3dm_gx4_45 - model_3dm_rq1_45_st = _mscl.MipModels_model_3dm_rq1_45_st - model_mv5_ar = _mscl.MipModels_model_mv5_ar - model_3dm_gx5_10 = _mscl.MipModels_model_3dm_gx5_10 - model_3dm_gx5_15 = _mscl.MipModels_model_3dm_gx5_15 - model_3dm_gx5_25 = _mscl.MipModels_model_3dm_gx5_25 - model_3dm_gx5_35 = _mscl.MipModels_model_3dm_gx5_35 - model_3dm_gx5_45 = _mscl.MipModels_model_3dm_gx5_45 - model_3dm_cv5_10 = _mscl.MipModels_model_3dm_cv5_10 - model_3dm_cv5_15 = _mscl.MipModels_model_3dm_cv5_15 - model_3dm_cv5_25 = _mscl.MipModels_model_3dm_cv5_25 - model_3dm_cv5_45 = _mscl.MipModels_model_3dm_cv5_45 - model_3dm_gq4_45 = _mscl.MipModels_model_3dm_gq4_45 - model_3dm_cx5_45 = _mscl.MipModels_model_3dm_cx5_45 - model_3dm_cx5_35 = _mscl.MipModels_model_3dm_cx5_35 - model_3dm_cx5_25 = _mscl.MipModels_model_3dm_cx5_25 - model_3dm_cx5_15 = _mscl.MipModels_model_3dm_cx5_15 - model_3dm_cx5_10 = _mscl.MipModels_model_3dm_cx5_10 - model_3dm_cl5_15 = _mscl.MipModels_model_3dm_cl5_15 - model_3dm_cl5_25 = _mscl.MipModels_model_3dm_cl5_25 - model_3dm_gq7 = _mscl.MipModels_model_3dm_gq7 - model_3dm_rtk_v1 = _mscl.MipModels_model_3dm_rtk_v1 - model_3dm_rtk = _mscl.MipModels_model_3dm_rtk - model_3dm_cv7_ahrs = _mscl.MipModels_model_3dm_cv7_ahrs - model_3dm_cv7_ar = _mscl.MipModels_model_3dm_cv7_ar - model_3dm_gv7_ahrs = _mscl.MipModels_model_3dm_gv7_ahrs - model_3dm_gv7_ar = _mscl.MipModels_model_3dm_gv7_ar - model_3dm_gv7_ins = _mscl.MipModels_model_3dm_gv7_ins - model_3dm_cv7_ins = _mscl.MipModels_model_3dm_cv7_ins - model_3dm_cv7_gnss_ins = _mscl.MipModels_model_3dm_cv7_gnss_ins - - @staticmethod - def modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - - @staticmethod - def modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - - @staticmethod - def modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - - @staticmethod - def nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - - @staticmethod - def modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - - @staticmethod - def nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - - @staticmethod - def modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - - @staticmethod - def stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - - def __init__(self): - _mscl.MipModels_swiginit(self, _mscl.new_MipModels()) - __swig_destroy__ = _mscl.delete_MipModels - -# Register MipModels in _mscl: -_mscl.MipModels_swigregister(MipModels) - -def MipModels_modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - -def MipModels_modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - -def MipModels_modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - -def MipModels_nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - -def MipModels_modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - -def MipModels_nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - -def MipModels_modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - -def MipModels_stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - -class MipModel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipModel_swiginit(self, _mscl.new_MipModel(*args)) - - def equals(self, compare): - return _mscl.MipModel_equals(self, compare) - - def __str__(self): - return _mscl.MipModel___str__(self) - - def nodeModel(self): - return _mscl.MipModel_nodeModel(self) - - def modifier(self): - return _mscl.MipModel_modifier(self) - - def modelNumber(self): - return _mscl.MipModel_modelNumber(self) - - def baseModel(self): - return _mscl.MipModel_baseModel(self) - __swig_destroy__ = _mscl.delete_MipModel - -# Register MipModel in _mscl: -_mscl.MipModel_swigregister(MipModel) -MipModel.mip_model_none = _mscl.cvar.MipModel_mip_model_none -MipModel.mip_model_3dm_dh3 = _mscl.cvar.MipModel_mip_model_3dm_dh3 -MipModel.mip_model_3dm_gx3_15 = _mscl.cvar.MipModel_mip_model_3dm_gx3_15 -MipModel.mip_model_3dm_gx3_25 = _mscl.cvar.MipModel_mip_model_3dm_gx3_25 -MipModel.mip_model_3dm_gx3_35 = _mscl.cvar.MipModel_mip_model_3dm_gx3_35 -MipModel.mip_model_3dm_gx3_45 = _mscl.cvar.MipModel_mip_model_3dm_gx3_45 -MipModel.mip_model_3dm_rq1_45_lt = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_lt -MipModel.mip_model_3dm_rq1_45_st = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_st -MipModel.mip_model_3dm_gx4_15 = _mscl.cvar.MipModel_mip_model_3dm_gx4_15 -MipModel.mip_model_3dm_gx4_25 = _mscl.cvar.MipModel_mip_model_3dm_gx4_25 -MipModel.mip_model_3dm_gx4_45 = _mscl.cvar.MipModel_mip_model_3dm_gx4_45 -MipModel.mip_model_mv5_ar = _mscl.cvar.MipModel_mip_model_mv5_ar -MipModel.mip_model_3dm_gx5_10 = _mscl.cvar.MipModel_mip_model_3dm_gx5_10 -MipModel.mip_model_3dm_gx5_15 = _mscl.cvar.MipModel_mip_model_3dm_gx5_15 -MipModel.mip_model_3dm_gx5_25 = _mscl.cvar.MipModel_mip_model_3dm_gx5_25 -MipModel.mip_model_3dm_gx5_35 = _mscl.cvar.MipModel_mip_model_3dm_gx5_35 -MipModel.mip_model_3dm_gx5_45 = _mscl.cvar.MipModel_mip_model_3dm_gx5_45 -MipModel.mip_model_3dm_cv5_10 = _mscl.cvar.MipModel_mip_model_3dm_cv5_10 -MipModel.mip_model_3dm_cv5_15 = _mscl.cvar.MipModel_mip_model_3dm_cv5_15 -MipModel.mip_model_3dm_cv5_25 = _mscl.cvar.MipModel_mip_model_3dm_cv5_25 -MipModel.mip_model_3dm_cv5_45 = _mscl.cvar.MipModel_mip_model_3dm_cv5_45 -MipModel.mip_model_3dm_gq4_45 = _mscl.cvar.MipModel_mip_model_3dm_gq4_45 -MipModel.mip_model_3dm_cx5_45 = _mscl.cvar.MipModel_mip_model_3dm_cx5_45 -MipModel.mip_model_3dm_cx5_35 = _mscl.cvar.MipModel_mip_model_3dm_cx5_35 -MipModel.mip_model_3dm_cx5_25 = _mscl.cvar.MipModel_mip_model_3dm_cx5_25 -MipModel.mip_model_3dm_cx5_15 = _mscl.cvar.MipModel_mip_model_3dm_cx5_15 -MipModel.mip_model_3dm_cx5_10 = _mscl.cvar.MipModel_mip_model_3dm_cx5_10 -MipModel.mip_model_3dm_cl5_15 = _mscl.cvar.MipModel_mip_model_3dm_cl5_15 -MipModel.mip_model_3dm_cl5_25 = _mscl.cvar.MipModel_mip_model_3dm_cl5_25 -MipModel.mip_model_3dm_gq7 = _mscl.cvar.MipModel_mip_model_3dm_gq7 -MipModel.mip_model_3dm_rtk_v1 = _mscl.cvar.MipModel_mip_model_3dm_rtk_v1 -MipModel.mip_model_3dm_rtk = _mscl.cvar.MipModel_mip_model_3dm_rtk -MipModel.mip_model_3dm_cv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_cv7_ahrs -MipModel.mip_model_3dm_cv7_ar = _mscl.cvar.MipModel_mip_model_3dm_cv7_ar -MipModel.mip_model_3dm_gv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_gv7_ahrs -MipModel.mip_model_3dm_gv7_ar = _mscl.cvar.MipModel_mip_model_3dm_gv7_ar -MipModel.mip_model_3dm_gv7_ins = _mscl.cvar.MipModel_mip_model_3dm_gv7_ins -MipModel.mip_model_3dm_cv7_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_ins -MipModel.mip_model_3dm_cv7_gnss_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_gnss_ins - -class DisplacementModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_digitalDemod = _mscl.DisplacementModels_node_digitalDemod - - def __init__(self): - _mscl.DisplacementModels_swiginit(self, _mscl.new_DisplacementModels()) - __swig_destroy__ = _mscl.delete_DisplacementModels - -# Register DisplacementModels in _mscl: -_mscl.DisplacementModels_swigregister(DisplacementModels) - -class MipTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CLASS_AHRS_IMU = _mscl.MipTypes_CLASS_AHRS_IMU - CLASS_GNSS = _mscl.MipTypes_CLASS_GNSS - CLASS_ESTFILTER = _mscl.MipTypes_CLASS_ESTFILTER - CLASS_DISPLACEMENT = _mscl.MipTypes_CLASS_DISPLACEMENT - CLASS_GNSS1 = _mscl.MipTypes_CLASS_GNSS1 - CLASS_GNSS2 = _mscl.MipTypes_CLASS_GNSS2 - CLASS_GNSS3 = _mscl.MipTypes_CLASS_GNSS3 - CLASS_RTK = _mscl.MipTypes_CLASS_RTK - CLASS_GNSS4 = _mscl.MipTypes_CLASS_GNSS4 - CLASS_GNSS5 = _mscl.MipTypes_CLASS_GNSS5 - CLASS_SYSTEM = _mscl.MipTypes_CLASS_SYSTEM - USE_NEW_SETTINGS = _mscl.MipTypes_USE_NEW_SETTINGS - READ_BACK_CURRENT_SETTINGS = _mscl.MipTypes_READ_BACK_CURRENT_SETTINGS - SAVE_CURRENT_SETTINGS = _mscl.MipTypes_SAVE_CURRENT_SETTINGS - LOAD_STARTUP_SETTINGS = _mscl.MipTypes_LOAD_STARTUP_SETTINGS - RESET_TO_DEFAULT = _mscl.MipTypes_RESET_TO_DEFAULT - USE_NEW_SETTINGS_NO_ACKNACK = _mscl.MipTypes_USE_NEW_SETTINGS_NO_ACKNACK - DISABLED = _mscl.MipTypes_DISABLED - ENABLED = _mscl.MipTypes_ENABLED - TIME_FRAME_WEEKS = _mscl.MipTypes_TIME_FRAME_WEEKS - TIME_FRAME_SECONDS = _mscl.MipTypes_TIME_FRAME_SECONDS - CMD_PING = _mscl.MipTypes_CMD_PING - CMD_SET_IDLE = _mscl.MipTypes_CMD_SET_IDLE - CMD_GET_DEVICE_INFO = _mscl.MipTypes_CMD_GET_DEVICE_INFO - CMD_GET_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_DESCRIPTOR_SETS - CMD_BUILT_IN_TEST = _mscl.MipTypes_CMD_BUILT_IN_TEST - CMD_RESUME = _mscl.MipTypes_CMD_RESUME - CMD_GET_EXT_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_EXT_DESCRIPTOR_SETS - CMD_COMM_PORT_SPEED = _mscl.MipTypes_CMD_COMM_PORT_SPEED - CMD_GPS_TIME_UPDATE = _mscl.MipTypes_CMD_GPS_TIME_UPDATE - CMD_RESET = _mscl.MipTypes_CMD_RESET - CMD_POLL_SENSOR_DATA = _mscl.MipTypes_CMD_POLL_SENSOR_DATA - CMD_POLL_GNSS_DATA = _mscl.MipTypes_CMD_POLL_GNSS_DATA - CMD_POLL_EF_DATA = _mscl.MipTypes_CMD_POLL_EF_DATA - CMD_GET_SENSOR_RATE_BASE = _mscl.MipTypes_CMD_GET_SENSOR_RATE_BASE - CMD_GET_GNSS_RATE_BASE = _mscl.MipTypes_CMD_GET_GNSS_RATE_BASE - CMD_GET_EF_RATE_BASE = _mscl.MipTypes_CMD_GET_EF_RATE_BASE - CMD_SENSOR_MESSAGE_FORMAT = _mscl.MipTypes_CMD_SENSOR_MESSAGE_FORMAT - CMD_GNSS_MESSAGE_FORMAT = _mscl.MipTypes_CMD_GNSS_MESSAGE_FORMAT - CMD_EF_MESSAGE_FORMAT = _mscl.MipTypes_CMD_EF_MESSAGE_FORMAT - CMD_NMEA_MESSAGE_FORMAT = _mscl.MipTypes_CMD_NMEA_MESSAGE_FORMAT - CMD_POLL = _mscl.MipTypes_CMD_POLL - CMD_GET_BASE_RATE = _mscl.MipTypes_CMD_GET_BASE_RATE - CMD_MESSAGE_FORMAT = _mscl.MipTypes_CMD_MESSAGE_FORMAT - CMD_FACTORY_STREAMING = _mscl.MipTypes_CMD_FACTORY_STREAMING - CMD_CONTINUOUS_DATA_STREAM = _mscl.MipTypes_CMD_CONTINUOUS_DATA_STREAM - CMD_RAW_RTCM_2_3_MESSAGE = _mscl.MipTypes_CMD_RAW_RTCM_2_3_MESSAGE - CMD_GNSS_CONSTELLATION_SETTINGS = _mscl.MipTypes_CMD_GNSS_CONSTELLATION_SETTINGS - CMD_GNSS_SBAS_SETTINGS = _mscl.MipTypes_CMD_GNSS_SBAS_SETTINGS - CMD_GNSS_ASSIST_FIX_CONTROL = _mscl.MipTypes_CMD_GNSS_ASSIST_FIX_CONTROL - CMD_GNSS_ASSIST_TIME_UPDATE = _mscl.MipTypes_CMD_GNSS_ASSIST_TIME_UPDATE - CMD_PPS_SOURCE = _mscl.MipTypes_CMD_PPS_SOURCE - CMD_EVENT_SUPPORT = _mscl.MipTypes_CMD_EVENT_SUPPORT - CMD_EVENT_CONTROL = _mscl.MipTypes_CMD_EVENT_CONTROL - CMD_EVENT_TRIGGER_STATUS = _mscl.MipTypes_CMD_EVENT_TRIGGER_STATUS - CMD_EVENT_ACTION_STATUS = _mscl.MipTypes_CMD_EVENT_ACTION_STATUS - CMD_EVENT_TRIGGER_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_TRIGGER_CONFIGURATION - CMD_EVENT_ACTION_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_ACTION_CONFIGURATION - CMD_SAVE_STARTUP_SETTINGS = _mscl.MipTypes_CMD_SAVE_STARTUP_SETTINGS - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM - CMD_GPS_DYNAMICS_MODE = _mscl.MipTypes_CMD_GPS_DYNAMICS_MODE - CMD_SENSOR_SIG_COND_SETTINGS = _mscl.MipTypes_CMD_SENSOR_SIG_COND_SETTINGS - CMD_SENSOR_TIMESTAMP = _mscl.MipTypes_CMD_SENSOR_TIMESTAMP - CMD_ACCEL_BIAS = _mscl.MipTypes_CMD_ACCEL_BIAS - CMD_GYRO_BIAS = _mscl.MipTypes_CMD_GYRO_BIAS - CMD_CAP_GYRO_BIAS = _mscl.MipTypes_CMD_CAP_GYRO_BIAS - CMD_MAG_HARD_IRON_OFFSET = _mscl.MipTypes_CMD_MAG_HARD_IRON_OFFSET - CMD_MAG_SOFT_IRON_MATRIX = _mscl.MipTypes_CMD_MAG_SOFT_IRON_MATRIX - CMD_CF_REALIGN_UP = _mscl.MipTypes_CMD_CF_REALIGN_UP - CMD_CF_REALIGN_NORTH = _mscl.MipTypes_CMD_CF_REALIGN_NORTH - CMD_CONING_SCULLING = _mscl.MipTypes_CMD_CONING_SCULLING - CMD_UART_BAUD_RATE = _mscl.MipTypes_CMD_UART_BAUD_RATE - CMD_GPIO_CONFIGURATION = _mscl.MipTypes_CMD_GPIO_CONFIGURATION - CMD_GPIO_STATE = _mscl.MipTypes_CMD_GPIO_STATE - CMD_ODOMETER_SETTINGS = _mscl.MipTypes_CMD_ODOMETER_SETTINGS - CMD_LOWPASS_FILTER_SETTINGS = _mscl.MipTypes_CMD_LOWPASS_FILTER_SETTINGS - CMD_COMPLEMENTARY_FILTER_SETTINGS = _mscl.MipTypes_CMD_COMPLEMENTARY_FILTER_SETTINGS - CMD_SENSOR_RANGE = _mscl.MipTypes_CMD_SENSOR_RANGE - CMD_SUPPORTED_SENSOR_RANGES = _mscl.MipTypes_CMD_SUPPORTED_SENSOR_RANGES - CMD_LOWPASS_ANTIALIASING_FILTER = _mscl.MipTypes_CMD_LOWPASS_ANTIALIASING_FILTER - CMD_DATA_STREAM_FORMAT = _mscl.MipTypes_CMD_DATA_STREAM_FORMAT - CMD_POWER_STATES = _mscl.MipTypes_CMD_POWER_STATES - CMD_GPS_STARTUP_SETTINGS = _mscl.MipTypes_CMD_GPS_STARTUP_SETTINGS - CMD_DEVICE_STATUS = _mscl.MipTypes_CMD_DEVICE_STATUS - CMD_EF_RESET_FILTER = _mscl.MipTypes_CMD_EF_RESET_FILTER - CMD_EF_INIT_ATTITUDE = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE - CMD_EF_INIT_HEADING = _mscl.MipTypes_CMD_EF_INIT_HEADING - CMD_EF_INIT_ATTITUDE_FROM_AHRS = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE_FROM_AHRS - CMD_EF_RUN_FILTER = _mscl.MipTypes_CMD_EF_RUN_FILTER - CMD_EF_VEHIC_DYNAMICS_MODE = _mscl.MipTypes_CMD_EF_VEHIC_DYNAMICS_MODE - CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER - CMD_EF_SENS_VEHIC_FRAME_OFFSET = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_OFFSET - CMD_EF_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_ANTENNA_OFFSET - CMD_EF_BIAS_EST_CTRL = _mscl.MipTypes_CMD_EF_BIAS_EST_CTRL - CMD_EF_GNSS_SRC_CTRL = _mscl.MipTypes_CMD_EF_GNSS_SRC_CTRL - CMD_EF_EXTERN_GNSS_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_GNSS_UPDATE - CMD_EF_EXTERN_HEADING_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_HEADING_UPDATE - CMD_EF_HEADING_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_HEADING_UPDATE_CTRL - CMD_EF_AUTO_INIT_CTRL = _mscl.MipTypes_CMD_EF_AUTO_INIT_CTRL - CMD_EF_ACCEL_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_ACCEL_WHT_NSE_STD_DEV - CMD_EF_GYRO_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_GYRO_WHT_NSE_STD_DEV - CMD_EF_ACCEL_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_ACCEL_BIAS_MODEL_PARAMS - CMD_EF_GYRO_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_GYRO_BIAS_MODEL_PARAMS - CMD_EF_ZERO_VEL_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_VEL_UPDATE_CTRL - CMD_EF_EXT_HEADING_UPDATE_TS = _mscl.MipTypes_CMD_EF_EXT_HEADING_UPDATE_TS - CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL - CMD_EF_TARE_ORIENT = _mscl.MipTypes_CMD_EF_TARE_ORIENT - CMD_EF_CMDED_ZERO_VEL_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_VEL_UPDATE - CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE - CMD_EF_SET_REF_POSITION = _mscl.MipTypes_CMD_EF_SET_REF_POSITION - CMD_EF_MAG_CAPTURE_AUTO_CAL = _mscl.MipTypes_CMD_EF_MAG_CAPTURE_AUTO_CAL - CMD_EF_GRAVITY_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_STD_DEV - CMD_EF_PRESS_ALT_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_PRESS_ALT_NOISE_STD_DEV - CMD_EF_GRAVITY_NOISE_MINIMUM = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_MINIMUM - CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE - CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE - CMD_EF_ENABLE_DISABLE_MEASUREMENTS = _mscl.MipTypes_CMD_EF_ENABLE_DISABLE_MEASUREMENTS - CMD_EF_MAG_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_MAG_NOISE_STD_DEV - CMD_EF_DECLINATION_SRC = _mscl.MipTypes_CMD_EF_DECLINATION_SRC - CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE - CMD_EF_ALTITUDE_AID_CTRL = _mscl.MipTypes_CMD_EF_ALTITUDE_AID_CTRL - CMD_EF_PITCH_ROLL_AID_CTRL = _mscl.MipTypes_CMD_EF_PITCH_ROLL_AID_CTRL - CMD_EF_INCLINATION_SRC = _mscl.MipTypes_CMD_EF_INCLINATION_SRC - CMD_EF_FIELD_MAGNITUDE_SRC = _mscl.MipTypes_CMD_EF_FIELD_MAGNITUDE_SRC - CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM - CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT - CMD_EF_AIDING_MEASUREMENT_ENABLE = _mscl.MipTypes_CMD_EF_AIDING_MEASUREMENT_ENABLE - CMD_EF_INITIALIZATION_CONFIG = _mscl.MipTypes_CMD_EF_INITIALIZATION_CONFIG - CMD_EF_ADAPTIVE_FILTER_OPTIONS = _mscl.MipTypes_CMD_EF_ADAPTIVE_FILTER_OPTIONS - CMD_EF_MULTI_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_MULTI_ANTENNA_OFFSET - CMD_EF_RELATIVE_POSITION_REF = _mscl.MipTypes_CMD_EF_RELATIVE_POSITION_REF - CMD_EF_LEVER_ARM_OFFSET_REF = _mscl.MipTypes_CMD_EF_LEVER_ARM_OFFSET_REF - CMD_EF_EXTERN_SPEED_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_SPEED_UPDATE - CMD_EF_SPEED_MEASUREMENT_OFFSET = _mscl.MipTypes_CMD_EF_SPEED_MEASUREMENT_OFFSET - CMD_EF_VERTICAL_GYRO_CONSTRAINT = _mscl.MipTypes_CMD_EF_VERTICAL_GYRO_CONSTRAINT - CMD_EF_WHEELED_VEHICLE_CONSTRAINT = _mscl.MipTypes_CMD_EF_WHEELED_VEHICLE_CONSTRAINT - CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL = _mscl.MipTypes_CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL - CMD_GNSS_RECEIVER_INFO = _mscl.MipTypes_CMD_GNSS_RECEIVER_INFO - CMD_GNSS_SIGNAL_CONFIG = _mscl.MipTypes_CMD_GNSS_SIGNAL_CONFIG - CMD_GNSS_SPARTN_CONFIG = _mscl.MipTypes_CMD_GNSS_SPARTN_CONFIG - CMD_GNSS_RTK_CONFIG = _mscl.MipTypes_CMD_GNSS_RTK_CONFIG - CMD_INTERFACE_CONTROL = _mscl.MipTypes_CMD_INTERFACE_CONTROL - CMD_COMMUNICATION_MODE = _mscl.MipTypes_CMD_COMMUNICATION_MODE - CMD_HARDWARE_CTRL = _mscl.MipTypes_CMD_HARDWARE_CTRL - CMD_GET_ANALOG_DISPLACEMENT_CALS = _mscl.MipTypes_CMD_GET_ANALOG_DISPLACEMENT_CALS - CMD_DISPLACEMENT_OUTPUT_RATE = _mscl.MipTypes_CMD_DISPLACEMENT_OUTPUT_RATE - CMD_DISPLACEMENT_DEVICE_TIME = _mscl.MipTypes_CMD_DISPLACEMENT_DEVICE_TIME - CMD_RTK_DEVICE_STATUS_FLAGS = _mscl.MipTypes_CMD_RTK_DEVICE_STATUS_FLAGS - CMD_RTK_ACTIVATION_CODE = _mscl.MipTypes_CMD_RTK_ACTIVATION_CODE - CMD_AIDING_FRAME_CONFIG = _mscl.MipTypes_CMD_AIDING_FRAME_CONFIG - CMD_AIDING_ECHO_CONTROL = _mscl.MipTypes_CMD_AIDING_ECHO_CONTROL - CMD_AIDING_POS_ECEF = _mscl.MipTypes_CMD_AIDING_POS_ECEF - CMD_AIDING_POS_LLH = _mscl.MipTypes_CMD_AIDING_POS_LLH - CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID - CMD_AIDING_VEL_ECEF = _mscl.MipTypes_CMD_AIDING_VEL_ECEF - CMD_AIDING_VEL_NED = _mscl.MipTypes_CMD_AIDING_VEL_NED - CMD_AIDING_VEL_BODY_FRAME = _mscl.MipTypes_CMD_AIDING_VEL_BODY_FRAME - CMD_AIDING_HEADING_TRUE = _mscl.MipTypes_CMD_AIDING_HEADING_TRUE - CMD_AIDING_MAGNETIC_FIELD = _mscl.MipTypes_CMD_AIDING_MAGNETIC_FIELD - CMD_AIDING_PRESSURE = _mscl.MipTypes_CMD_AIDING_PRESSURE - CH_FIELD_SENSOR_RAW_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_ACCEL_VEC - CH_FIELD_SENSOR_RAW_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_GYRO_VEC - CH_FIELD_SENSOR_RAW_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_MAG_VEC - CH_FIELD_SENSOR_SCALED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_ACCEL_VEC - CH_FIELD_SENSOR_SCALED_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_GYRO_VEC - CH_FIELD_SENSOR_SCALED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_MAG_VEC - CH_FIELD_SENSOR_DELTA_THETA_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_THETA_VEC - CH_FIELD_SENSOR_DELTA_VELOCITY_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_VELOCITY_VEC - CH_FIELD_SENSOR_ORIENTATION_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_MATRIX - CH_FIELD_SENSOR_ORIENTATION_QUATERNION = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_QUATERNION - CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX - CH_FIELD_SENSOR_EULER_ANGLES = _mscl.MipTypes_CH_FIELD_SENSOR_EULER_ANGLES - CH_FIELD_SENSOR_INTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_INTERNAL_TIMESTAMP - CH_FIELD_SENSOR_BEACONED_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_BEACONED_TIMESTAMP - CH_FIELD_SENSOR_STABILIZED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_MAG_VEC - CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC - CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP - CH_FIELD_SENSOR_TEMPERATURE_STATISTICS = _mscl.MipTypes_CH_FIELD_SENSOR_TEMPERATURE_STATISTICS - CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE - CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE - CH_FIELD_SENSOR_OVERRANGE_STATUS = _mscl.MipTypes_CH_FIELD_SENSOR_OVERRANGE_STATUS - CH_FIELD_SENSOR_ODOMETER_DATA = _mscl.MipTypes_CH_FIELD_SENSOR_ODOMETER_DATA - CH_FIELD_SENSOR_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EVENT_SOURCE - CH_FIELD_SENSOR_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_TICKS - CH_FIELD_SENSOR_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TICKS - CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP - CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_LLH_POSITION - CH_FIELD_GNSS_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_POSITION - CH_FIELD_GNSS_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_NED_VELOCITY - CH_FIELD_GNSS_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_VELOCITY - CH_FIELD_GNSS_DOP = _mscl.MipTypes_CH_FIELD_GNSS_DOP - CH_FIELD_GNSS_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_UTC_TIME - CH_FIELD_GNSS_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_GPS_TIME - CH_FIELD_GNSS_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO - CH_FIELD_GNSS_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_FIX_INFO - CH_FIELD_GNSS_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_HARDWARE_STATUS - CH_FIELD_GNSS_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_INFO - CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO_2 - CH_FIELD_GNSS_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_LEAP_SECONDS - CH_FIELD_GNSS_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_INFO - CH_FIELD_GNSS_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_CORRECTION - CH_FIELD_GNSS_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_RF_ERROR_DETECTION - CH_FIELD_GNSS_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_SATELLITE_STATUS - CH_FIELD_GNSS_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_RAW_OBSERVATION - CH_FIELD_GNSS_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_STATION_INFO - CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_EPHEMERIS - CH_FIELD_GNSS_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GLONASS_EPHEMERIS - CH_FIELD_GNSS_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_EPHEMERIS - CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_TICKS - CH_FIELD_GNSS_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TICKS - CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS - CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL - CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE - CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE - CH_FIELD_ESTFILTER_FILTER_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_FILTER_STATUS - CH_FIELD_ESTFILTER_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT - CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR - CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE - CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR - CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_MAG_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS - CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT - CH_FIELD_ESTFILTER_COMPENSATED_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_COMPENSATED_ACCEL - CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL - CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT - CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX - CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS_UNCERT - CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS - CH_FIELD_ESTFILTER_ECEF_VEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL - CH_FIELD_ESTFILTER_NED_RELATIVE_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_NED_RELATIVE_POS - CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS - CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS - CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY = _mscl.MipTypes_CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT - CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT - CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE - CH_FIELD_ESTFILTER_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_TICKS - CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS - CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_DISP_DISPLACEMENT_RAW = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_RAW - CH_FIELD_DISP_DISPLACEMENT_MM = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_MM - CH_FIELD_DISP_DISPLACEMENT_TS = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_TS - CH_FIELD_GNSS_1_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_LLH_POSITION - CH_FIELD_GNSS_1_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_POSITION - CH_FIELD_GNSS_1_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_NED_VELOCITY - CH_FIELD_GNSS_1_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_VELOCITY - CH_FIELD_GNSS_1_DOP = _mscl.MipTypes_CH_FIELD_GNSS_1_DOP - CH_FIELD_GNSS_1_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_UTC_TIME - CH_FIELD_GNSS_1_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_TIME - CH_FIELD_GNSS_1_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO - CH_FIELD_GNSS_1_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_FIX_INFO - CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_1_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_HARDWARE_STATUS - CH_FIELD_GNSS_1_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_INFO - CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_1_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO_2 - CH_FIELD_GNSS_1_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_LEAP_SECONDS - CH_FIELD_GNSS_1_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_INFO - CH_FIELD_GNSS_1_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_CORRECTION - CH_FIELD_GNSS_1_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_RF_ERROR_DETECTION - CH_FIELD_GNSS_1_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_SATELLITE_STATUS - CH_FIELD_GNSS_1_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_1_RAW_OBSERVATION - CH_FIELD_GNSS_1_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_STATION_INFO - CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_1_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_EPHEMERIS - CH_FIELD_GNSS_1_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GLONASS_EPHEMERIS - CH_FIELD_GNSS_1_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_EPHEMERIS - CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_1_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_TICKS - CH_FIELD_GNSS_1_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TICKS - CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_2_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_LLH_POSITION - CH_FIELD_GNSS_2_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_POSITION - CH_FIELD_GNSS_2_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_NED_VELOCITY - CH_FIELD_GNSS_2_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_VELOCITY - CH_FIELD_GNSS_2_DOP = _mscl.MipTypes_CH_FIELD_GNSS_2_DOP - CH_FIELD_GNSS_2_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_UTC_TIME - CH_FIELD_GNSS_2_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_TIME - CH_FIELD_GNSS_2_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO - CH_FIELD_GNSS_2_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_FIX_INFO - CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_2_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_HARDWARE_STATUS - CH_FIELD_GNSS_2_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_INFO - CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_2_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO_2 - CH_FIELD_GNSS_2_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_LEAP_SECONDS - CH_FIELD_GNSS_2_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_INFO - CH_FIELD_GNSS_2_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_CORRECTION - CH_FIELD_GNSS_2_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_RF_ERROR_DETECTION - CH_FIELD_GNSS_2_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_SATELLITE_STATUS - CH_FIELD_GNSS_2_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_2_RAW_OBSERVATION - CH_FIELD_GNSS_2_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_STATION_INFO - CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_2_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_EPHEMERIS - CH_FIELD_GNSS_2_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GLONASS_EPHEMERIS - CH_FIELD_GNSS_2_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_EPHEMERIS - CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_2_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_TICKS - CH_FIELD_GNSS_2_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TICKS - CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_3_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_LLH_POSITION - CH_FIELD_GNSS_3_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_POSITION - CH_FIELD_GNSS_3_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_NED_VELOCITY - CH_FIELD_GNSS_3_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_VELOCITY - CH_FIELD_GNSS_3_DOP = _mscl.MipTypes_CH_FIELD_GNSS_3_DOP - CH_FIELD_GNSS_3_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_UTC_TIME - CH_FIELD_GNSS_3_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_TIME - CH_FIELD_GNSS_3_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO - CH_FIELD_GNSS_3_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_FIX_INFO - CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_3_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_HARDWARE_STATUS - CH_FIELD_GNSS_3_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_INFO - CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_3_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO_2 - CH_FIELD_GNSS_3_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_LEAP_SECONDS - CH_FIELD_GNSS_3_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_INFO - CH_FIELD_GNSS_3_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_CORRECTION - CH_FIELD_GNSS_3_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_RF_ERROR_DETECTION - CH_FIELD_GNSS_3_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_SATELLITE_STATUS - CH_FIELD_GNSS_3_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_3_RAW_OBSERVATION - CH_FIELD_GNSS_3_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_STATION_INFO - CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_3_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_EPHEMERIS - CH_FIELD_GNSS_3_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GLONASS_EPHEMERIS - CH_FIELD_GNSS_3_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_EPHEMERIS - CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_3_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_TICKS - CH_FIELD_GNSS_3_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TICKS - CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_4_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_LLH_POSITION - CH_FIELD_GNSS_4_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_POSITION - CH_FIELD_GNSS_4_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_NED_VELOCITY - CH_FIELD_GNSS_4_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_VELOCITY - CH_FIELD_GNSS_4_DOP = _mscl.MipTypes_CH_FIELD_GNSS_4_DOP - CH_FIELD_GNSS_4_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_UTC_TIME - CH_FIELD_GNSS_4_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_TIME - CH_FIELD_GNSS_4_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO - CH_FIELD_GNSS_4_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_FIX_INFO - CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_4_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_HARDWARE_STATUS - CH_FIELD_GNSS_4_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_INFO - CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_4_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO_2 - CH_FIELD_GNSS_4_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_LEAP_SECONDS - CH_FIELD_GNSS_4_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_INFO - CH_FIELD_GNSS_4_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_CORRECTION - CH_FIELD_GNSS_4_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_RF_ERROR_DETECTION - CH_FIELD_GNSS_4_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_SATELLITE_STATUS - CH_FIELD_GNSS_4_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_4_RAW_OBSERVATION - CH_FIELD_GNSS_4_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_STATION_INFO - CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_4_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_EPHEMERIS - CH_FIELD_GNSS_4_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GLONASS_EPHEMERIS - CH_FIELD_GNSS_4_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_EPHEMERIS - CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_4_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_TICKS - CH_FIELD_GNSS_4_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TICKS - CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_5_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_LLH_POSITION - CH_FIELD_GNSS_5_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_POSITION - CH_FIELD_GNSS_5_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_NED_VELOCITY - CH_FIELD_GNSS_5_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_VELOCITY - CH_FIELD_GNSS_5_DOP = _mscl.MipTypes_CH_FIELD_GNSS_5_DOP - CH_FIELD_GNSS_5_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_UTC_TIME - CH_FIELD_GNSS_5_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_TIME - CH_FIELD_GNSS_5_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO - CH_FIELD_GNSS_5_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_FIX_INFO - CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_5_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_HARDWARE_STATUS - CH_FIELD_GNSS_5_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_INFO - CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_5_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO_2 - CH_FIELD_GNSS_5_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_LEAP_SECONDS - CH_FIELD_GNSS_5_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_INFO - CH_FIELD_GNSS_5_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_CORRECTION - CH_FIELD_GNSS_5_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_RF_ERROR_DETECTION - CH_FIELD_GNSS_5_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_SATELLITE_STATUS - CH_FIELD_GNSS_5_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_5_RAW_OBSERVATION - CH_FIELD_GNSS_5_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_STATION_INFO - CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_5_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_EPHEMERIS - CH_FIELD_GNSS_5_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GLONASS_EPHEMERIS - CH_FIELD_GNSS_5_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_EPHEMERIS - CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_5_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_TICKS - CH_FIELD_GNSS_5_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TICKS - CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_SYSTEM_BUILT_IN_TEST = _mscl.MipTypes_CH_FIELD_SYSTEM_BUILT_IN_TEST - CH_FIELD_SYSTEM_TIME_SYNC_STATUS = _mscl.MipTypes_CH_FIELD_SYSTEM_TIME_SYNC_STATUS - CH_FIELD_SYSTEM_GPIO_STATE = _mscl.MipTypes_CH_FIELD_SYSTEM_GPIO_STATE - CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE - CH_FIELD_SYSTEM_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_TICKS - CH_FIELD_SYSTEM_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TICKS - CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME - MIN_SHARED_FIELD_DESCRIPTOR = _mscl.MipTypes_MIN_SHARED_FIELD_DESCRIPTOR - CH_UNKNOWN = _mscl.MipTypes_CH_UNKNOWN - CH_X = _mscl.MipTypes_CH_X - CH_Y = _mscl.MipTypes_CH_Y - CH_Z = _mscl.MipTypes_CH_Z - CH_MATRIX = _mscl.MipTypes_CH_MATRIX - CH_QUATERNION = _mscl.MipTypes_CH_QUATERNION - CH_ROLL = _mscl.MipTypes_CH_ROLL - CH_PITCH = _mscl.MipTypes_CH_PITCH - CH_YAW = _mscl.MipTypes_CH_YAW - CH_TICK = _mscl.MipTypes_CH_TICK - CH_TIMESTAMP = _mscl.MipTypes_CH_TIMESTAMP - CH_STATUS = _mscl.MipTypes_CH_STATUS - CH_TIME_OF_WEEK = _mscl.MipTypes_CH_TIME_OF_WEEK - CH_WEEK_NUMBER = _mscl.MipTypes_CH_WEEK_NUMBER - CH_LATITUDE = _mscl.MipTypes_CH_LATITUDE - CH_LONGITUDE = _mscl.MipTypes_CH_LONGITUDE - CH_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CH_HEIGHT_ABOVE_ELLIPSOID - CH_HEIGHT_ABOVE_MSL = _mscl.MipTypes_CH_HEIGHT_ABOVE_MSL - CH_HORIZONTAL_ACCURACY = _mscl.MipTypes_CH_HORIZONTAL_ACCURACY - CH_VERTICAL_ACCURACY = _mscl.MipTypes_CH_VERTICAL_ACCURACY - CH_POSITION_ACCURACY = _mscl.MipTypes_CH_POSITION_ACCURACY - CH_NORTH = _mscl.MipTypes_CH_NORTH - CH_EAST = _mscl.MipTypes_CH_EAST - CH_DOWN = _mscl.MipTypes_CH_DOWN - CH_SPEED = _mscl.MipTypes_CH_SPEED - CH_GROUND_SPEED = _mscl.MipTypes_CH_GROUND_SPEED - CH_HEADING = _mscl.MipTypes_CH_HEADING - CH_SPEED_ACCURACY = _mscl.MipTypes_CH_SPEED_ACCURACY - CH_HEADING_ACCURACY = _mscl.MipTypes_CH_HEADING_ACCURACY - CH_VELOCITY_ACCURACY = _mscl.MipTypes_CH_VELOCITY_ACCURACY - CH_GEOMETRIC_DOP = _mscl.MipTypes_CH_GEOMETRIC_DOP - CH_POSITION_DOP = _mscl.MipTypes_CH_POSITION_DOP - CH_HORIZONTAL_DOP = _mscl.MipTypes_CH_HORIZONTAL_DOP - CH_VERTICAL_DOP = _mscl.MipTypes_CH_VERTICAL_DOP - CH_TIME_DOP = _mscl.MipTypes_CH_TIME_DOP - CH_NORTHING_DOP = _mscl.MipTypes_CH_NORTHING_DOP - CH_EASTING_DOP = _mscl.MipTypes_CH_EASTING_DOP - CH_FLAGS = _mscl.MipTypes_CH_FLAGS - CH_BIAS = _mscl.MipTypes_CH_BIAS - CH_DRIFT = _mscl.MipTypes_CH_DRIFT - CH_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_ACCURACY_ESTIMATE - CH_FIX_TYPE = _mscl.MipTypes_CH_FIX_TYPE - CH_SV_COUNT = _mscl.MipTypes_CH_SV_COUNT - CH_CHANNEL = _mscl.MipTypes_CH_CHANNEL - CH_ID = _mscl.MipTypes_CH_ID - CH_CARRIER_TO_NOISE_RATIO = _mscl.MipTypes_CH_CARRIER_TO_NOISE_RATIO - CH_AZIMUTH = _mscl.MipTypes_CH_AZIMUTH - CH_ELEVATION = _mscl.MipTypes_CH_ELEVATION - CH_SENSOR_STATE = _mscl.MipTypes_CH_SENSOR_STATE - CH_ANTENNA_STATE = _mscl.MipTypes_CH_ANTENNA_STATE - CH_ANTENNA_POWER = _mscl.MipTypes_CH_ANTENNA_POWER - CH_FILTER_STATE = _mscl.MipTypes_CH_FILTER_STATE - CH_DYNAMICS_MODE = _mscl.MipTypes_CH_DYNAMICS_MODE - CH_MAGNITUDE = _mscl.MipTypes_CH_MAGNITUDE - CH_HEADING_UNCERTAINTY = _mscl.MipTypes_CH_HEADING_UNCERTAINTY - CH_SOURCE = _mscl.MipTypes_CH_SOURCE - CH_INCLINATION = _mscl.MipTypes_CH_INCLINATION - CH_DECLINATION = _mscl.MipTypes_CH_DECLINATION - CH_PRESSURE = _mscl.MipTypes_CH_PRESSURE - CH_AGE = _mscl.MipTypes_CH_AGE - CH_NUM_CHANNELS = _mscl.MipTypes_CH_NUM_CHANNELS - CH_CORRECTION = _mscl.MipTypes_CH_CORRECTION - CH_RATE_CORRECTION = _mscl.MipTypes_CH_RATE_CORRECTION - CH_GEOMETRIC_ALTITUDE = _mscl.MipTypes_CH_GEOMETRIC_ALTITUDE - CH_GEOPOTENTIAL_ALTITUDE = _mscl.MipTypes_CH_GEOPOTENTIAL_ALTITUDE - CH_TEMPERATURE = _mscl.MipTypes_CH_TEMPERATURE - CH_DENSITY = _mscl.MipTypes_CH_DENSITY - CH_ALTITUDE = _mscl.MipTypes_CH_ALTITUDE - CH_DISPLACEMENT = _mscl.MipTypes_CH_DISPLACEMENT - CH_MAX_TEMP = _mscl.MipTypes_CH_MAX_TEMP - CH_MIN_TEMP = _mscl.MipTypes_CH_MIN_TEMP - CH_MEAN_TEMP = _mscl.MipTypes_CH_MEAN_TEMP - CH_BIAS_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_BIAS_ACCURACY_ESTIMATE - CH_DRIFT_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_DRIFT_ACCURACY_ESTIMATE - CH_SECONDS = _mscl.MipTypes_CH_SECONDS - CH_NUM_PACKETS = _mscl.MipTypes_CH_NUM_PACKETS - CH_GPS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GPS_CORRECTION_LATENCY - CH_GLONASS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GLONASS_CORRECTION_LATENCY - CH_GALILEO_CORRECTION_LATENCY = _mscl.MipTypes_CH_GALILEO_CORRECTION_LATENCY - CH_BEIDOU_CORRECTION_LATENCY = _mscl.MipTypes_CH_BEIDOU_CORRECTION_LATENCY - CH_HEIGHT = _mscl.MipTypes_CH_HEIGHT - CH_HEALTH = _mscl.MipTypes_CH_HEALTH - CH_INDEX = _mscl.MipTypes_CH_INDEX - CH_COUNT = _mscl.MipTypes_CH_COUNT - CH_SIGNAL_STRENGTH = _mscl.MipTypes_CH_SIGNAL_STRENGTH - CH_SIGNAL_QUALITY = _mscl.MipTypes_CH_SIGNAL_QUALITY - CH_RANGE = _mscl.MipTypes_CH_RANGE - CH_RANGE_UNC = _mscl.MipTypes_CH_RANGE_UNC - CH_ALPHA = _mscl.MipTypes_CH_ALPHA - CH_BETA = _mscl.MipTypes_CH_BETA - CH_DISTURBANCE_FLAGS = _mscl.MipTypes_CH_DISTURBANCE_FLAGS - CH_CARRIER_PHASE = _mscl.MipTypes_CH_CARRIER_PHASE - CH_CARRIER_PHASE_UNC = _mscl.MipTypes_CH_CARRIER_PHASE_UNC - CH_DOPPLER = _mscl.MipTypes_CH_DOPPLER - CH_DOPPLER_UNC = _mscl.MipTypes_CH_DOPPLER_UNC - CH_DELTA_TIME = _mscl.MipTypes_CH_DELTA_TIME - CH_DELTA_TICK = _mscl.MipTypes_CH_DELTA_TICK - CH_ERROR = _mscl.MipTypes_CH_ERROR - CH_ERROR_UNC = _mscl.MipTypes_CH_ERROR_UNC - CH_W = _mscl.MipTypes_CH_W - CH_M0 = _mscl.MipTypes_CH_M0 - CH_M1 = _mscl.MipTypes_CH_M1 - CH_M2 = _mscl.MipTypes_CH_M2 - CH_M3 = _mscl.MipTypes_CH_M3 - CH_M4 = _mscl.MipTypes_CH_M4 - CH_M5 = _mscl.MipTypes_CH_M5 - CH_M6 = _mscl.MipTypes_CH_M6 - CH_M7 = _mscl.MipTypes_CH_M7 - CH_M8 = _mscl.MipTypes_CH_M8 - CH_NANOSECONDS = _mscl.MipTypes_CH_NANOSECONDS - CH_VALID_FLAGS = _mscl.MipTypes_CH_VALID_FLAGS - CH_PPS_VALID = _mscl.MipTypes_CH_PPS_VALID - CH_LAST_PPS = _mscl.MipTypes_CH_LAST_PPS - CH_UDREI = _mscl.MipTypes_CH_UDREI - CH_PSEUDORANGE_CORRECTION = _mscl.MipTypes_CH_PSEUDORANGE_CORRECTION - CH_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_IONOSPHERIC_CORRECTION - CH_JAMMING_STATE = _mscl.MipTypes_CH_JAMMING_STATE - CH_SPOOFING_STATE = _mscl.MipTypes_CH_SPOOFING_STATE - CH_SYSTEM_ID = _mscl.MipTypes_CH_SYSTEM_ID - CH_SATELLITE_ID = _mscl.MipTypes_CH_SATELLITE_ID - CH_BIT_SYSTEM_GENERAL = _mscl.MipTypes_CH_BIT_SYSTEM_GENERAL - CH_BIT_SYSTEM_PROCESS = _mscl.MipTypes_CH_BIT_SYSTEM_PROCESS - CH_BIT_IMU_GENERAL = _mscl.MipTypes_CH_BIT_IMU_GENERAL - CH_BIT_IMU_SENSORS = _mscl.MipTypes_CH_BIT_IMU_SENSORS - CH_BIT_IMU_FACTORY_BITS = _mscl.MipTypes_CH_BIT_IMU_FACTORY_BITS - CH_BIT_FILTER_GENERAL = _mscl.MipTypes_CH_BIT_FILTER_GENERAL - CH_BIT_GNSS_GENERAL = _mscl.MipTypes_CH_BIT_GNSS_GENERAL - CH_BIT_GNSS_RECEIVERS = _mscl.MipTypes_CH_BIT_GNSS_RECEIVERS - - @staticmethod - def channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - - @staticmethod - def getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - - @staticmethod - def getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - - @staticmethod - def getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - - @staticmethod - def getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - - @staticmethod - def getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - - @staticmethod - def isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - - @staticmethod - def isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - - @staticmethod - def channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - - @staticmethod - def channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - - @staticmethod - def channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - - def __init__(self): - _mscl.MipTypes_swiginit(self, _mscl.new_MipTypes()) - __swig_destroy__ = _mscl.delete_MipTypes - -# Register MipTypes in _mscl: -_mscl.MipTypes_swigregister(MipTypes) - -def MipTypes_channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - -def MipTypes_getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - -def MipTypes_getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - -def MipTypes_getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - -def MipTypes_getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - -def MipTypes_getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - -def MipTypes_isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - -def MipTypes_isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - -def MipTypes_channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - -def MipTypes_channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - -def MipTypes_channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - -class MipChannelIdentifier(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - GNSS_RECEIVER_ID = _mscl.MipChannelIdentifier_GNSS_RECEIVER_ID - GNSS_BASE_STATION_ID = _mscl.MipChannelIdentifier_GNSS_BASE_STATION_ID - GNSS_CONSTELLATION = _mscl.MipChannelIdentifier_GNSS_CONSTELLATION - GNSS_SATELLITE_ID = _mscl.MipChannelIdentifier_GNSS_SATELLITE_ID - GNSS_SIGNAL_ID = _mscl.MipChannelIdentifier_GNSS_SIGNAL_ID - AIDING_MEASUREMENT_TYPE = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_TYPE - GNSS_RF_BAND = _mscl.MipChannelIdentifier_GNSS_RF_BAND - AIDING_MEASUREMENT_FRAME_ID = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_FRAME_ID - GNSS = _mscl.MipChannelIdentifier_GNSS - DUAL_ANTENNA = _mscl.MipChannelIdentifier_DUAL_ANTENNA - HEADING = _mscl.MipChannelIdentifier_HEADING - PRESSURE = _mscl.MipChannelIdentifier_PRESSURE - MAGNETOMETER = _mscl.MipChannelIdentifier_MAGNETOMETER - SPEED = _mscl.MipChannelIdentifier_SPEED - AIDING_POS_ECEF = _mscl.MipChannelIdentifier_AIDING_POS_ECEF - AIDING_POS_LLH = _mscl.MipChannelIdentifier_AIDING_POS_LLH - AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipChannelIdentifier_AIDING_HEIGHT_ABOVE_ELLIPSOID - AIDING_VEL_ECEF = _mscl.MipChannelIdentifier_AIDING_VEL_ECEF - AIDING_VEL_NED = _mscl.MipChannelIdentifier_AIDING_VEL_NED - AIDING_VEL_BODY_FRAME = _mscl.MipChannelIdentifier_AIDING_VEL_BODY_FRAME - AIDING_HEADING_TRUE = _mscl.MipChannelIdentifier_AIDING_HEADING_TRUE - AIDING_MAGNETIC_FIELD = _mscl.MipChannelIdentifier_AIDING_MAGNETIC_FIELD - AIDING_PRESSURE = _mscl.MipChannelIdentifier_AIDING_PRESSURE - UNKNOWN_CONSTELLATION = _mscl.MipChannelIdentifier_UNKNOWN_CONSTELLATION - GPS = _mscl.MipChannelIdentifier_GPS - GLONASS = _mscl.MipChannelIdentifier_GLONASS - GALILEO = _mscl.MipChannelIdentifier_GALILEO - BEIDOU = _mscl.MipChannelIdentifier_BEIDOU - UNKNOWN_SIGNAL = _mscl.MipChannelIdentifier_UNKNOWN_SIGNAL - GPS_L1CA = _mscl.MipChannelIdentifier_GPS_L1CA - GPS_L1P = _mscl.MipChannelIdentifier_GPS_L1P - GPS_L1Z = _mscl.MipChannelIdentifier_GPS_L1Z - GPS_L2CA = _mscl.MipChannelIdentifier_GPS_L2CA - GPS_L2P = _mscl.MipChannelIdentifier_GPS_L2P - GPS_L2Z = _mscl.MipChannelIdentifier_GPS_L2Z - GPS_L2CL = _mscl.MipChannelIdentifier_GPS_L2CL - GPS_L2CM = _mscl.MipChannelIdentifier_GPS_L2CM - GPS_L2CML = _mscl.MipChannelIdentifier_GPS_L2CML - GPS_L5I = _mscl.MipChannelIdentifier_GPS_L5I - GPS_L5Q = _mscl.MipChannelIdentifier_GPS_L5Q - GPS_L5IQ = _mscl.MipChannelIdentifier_GPS_L5IQ - GPS_L1CD = _mscl.MipChannelIdentifier_GPS_L1CD - GPS_L1CP = _mscl.MipChannelIdentifier_GPS_L1CP - GPS_L1CDP = _mscl.MipChannelIdentifier_GPS_L1CDP - GLONASS_G1CA = _mscl.MipChannelIdentifier_GLONASS_G1CA - GLONASS_G1P = _mscl.MipChannelIdentifier_GLONASS_G1P - GLONASS_G2C = _mscl.MipChannelIdentifier_GLONASS_G2C - GLONASS_G2P = _mscl.MipChannelIdentifier_GLONASS_G2P - GALILEO_E1C = _mscl.MipChannelIdentifier_GALILEO_E1C - GALILEO_E1A = _mscl.MipChannelIdentifier_GALILEO_E1A - GALILEO_E1B = _mscl.MipChannelIdentifier_GALILEO_E1B - GALILEO_E1BC = _mscl.MipChannelIdentifier_GALILEO_E1BC - GALILEO_E1ABC = _mscl.MipChannelIdentifier_GALILEO_E1ABC - GALILEO_E6C = _mscl.MipChannelIdentifier_GALILEO_E6C - GALILEO_E6A = _mscl.MipChannelIdentifier_GALILEO_E6A - GALILEO_E6B = _mscl.MipChannelIdentifier_GALILEO_E6B - GALILEO_E6BC = _mscl.MipChannelIdentifier_GALILEO_E6BC - GALILEO_E6ABC = _mscl.MipChannelIdentifier_GALILEO_E6ABC - GALILEO_E5BI = _mscl.MipChannelIdentifier_GALILEO_E5BI - GALILEO_E5BQ = _mscl.MipChannelIdentifier_GALILEO_E5BQ - GALILEO_E5BIQ = _mscl.MipChannelIdentifier_GALILEO_E5BIQ - GALILEO_E5ABI = _mscl.MipChannelIdentifier_GALILEO_E5ABI - GALILEO_E5ABQ = _mscl.MipChannelIdentifier_GALILEO_E5ABQ - GALILEO_E5ABIQ = _mscl.MipChannelIdentifier_GALILEO_E5ABIQ - GALILEO_E5AI = _mscl.MipChannelIdentifier_GALILEO_E5AI - GALILEO_E5AQ = _mscl.MipChannelIdentifier_GALILEO_E5AQ - GALILEO_E5AIQ = _mscl.MipChannelIdentifier_GALILEO_E5AIQ - SBAS_L1CA = _mscl.MipChannelIdentifier_SBAS_L1CA - SBAS_L5I = _mscl.MipChannelIdentifier_SBAS_L5I - SBAS_L5Q = _mscl.MipChannelIdentifier_SBAS_L5Q - SBAS_L5IQ = _mscl.MipChannelIdentifier_SBAS_L5IQ - QZSS_L1CA = _mscl.MipChannelIdentifier_QZSS_L1CA - QZSS_LEXS = _mscl.MipChannelIdentifier_QZSS_LEXS - QZSS_LEXL = _mscl.MipChannelIdentifier_QZSS_LEXL - QZSS_LEXSL = _mscl.MipChannelIdentifier_QZSS_LEXSL - QZSS_L2CM = _mscl.MipChannelIdentifier_QZSS_L2CM - QZSS_L2CL = _mscl.MipChannelIdentifier_QZSS_L2CL - QZSS_L2CML = _mscl.MipChannelIdentifier_QZSS_L2CML - QZSS_L5I = _mscl.MipChannelIdentifier_QZSS_L5I - QZSS_L5Q = _mscl.MipChannelIdentifier_QZSS_L5Q - QZSS_L5IQ = _mscl.MipChannelIdentifier_QZSS_L5IQ - QZSS_L1CD = _mscl.MipChannelIdentifier_QZSS_L1CD - QZSS_L1CP = _mscl.MipChannelIdentifier_QZSS_L1CP - QZSS_L1CDP = _mscl.MipChannelIdentifier_QZSS_L1CDP - BEIDOU_B1I = _mscl.MipChannelIdentifier_BEIDOU_B1I - BEIDOU_B1Q = _mscl.MipChannelIdentifier_BEIDOU_B1Q - BEIDOU_B1IQ = _mscl.MipChannelIdentifier_BEIDOU_B1IQ - BEIDOU_B3I = _mscl.MipChannelIdentifier_BEIDOU_B3I - BEIDOU_B3Q = _mscl.MipChannelIdentifier_BEIDOU_B3Q - BEIDOU_B3IQ = _mscl.MipChannelIdentifier_BEIDOU_B3IQ - BEIDOU_B2I = _mscl.MipChannelIdentifier_BEIDOU_B2I - BEIDOU_B2Q = _mscl.MipChannelIdentifier_BEIDOU_B2Q - BEIDOU_B2IQ = _mscl.MipChannelIdentifier_BEIDOU_B2IQ - UNKNOWN_RF_BAND = _mscl.MipChannelIdentifier_UNKNOWN_RF_BAND - RF_BAND_L1 = _mscl.MipChannelIdentifier_RF_BAND_L1 - RF_BAND_L2 = _mscl.MipChannelIdentifier_RF_BAND_L2 - RF_BAND_L5 = _mscl.MipChannelIdentifier_RF_BAND_L5 - - def __init__(self, *args): - _mscl.MipChannelIdentifier_swiginit(self, _mscl.new_MipChannelIdentifier(*args)) - __swig_destroy__ = _mscl.delete_MipChannelIdentifier - - def identifierType(self): - return _mscl.MipChannelIdentifier_identifierType(self) - - def id(self): - return _mscl.MipChannelIdentifier_id(self) - - def hasSpecifier(self): - return _mscl.MipChannelIdentifier_hasSpecifier(self) - - def specifier(self): - return _mscl.MipChannelIdentifier_specifier(self) - - def name(self, standardizedFormat=True): - return _mscl.MipChannelIdentifier_name(self, standardizedFormat) - -# Register MipChannelIdentifier in _mscl: -_mscl.MipChannelIdentifier_swigregister(MipChannelIdentifier) - -class MipCommandBytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - id = property(_mscl.MipCommandBytes_id_get, _mscl.MipCommandBytes_id_set) - commands = property(_mscl.MipCommandBytes_commands_get, _mscl.MipCommandBytes_commands_set) - buildCmdFailed = property(_mscl.MipCommandBytes_buildCmdFailed_get, _mscl.MipCommandBytes_buildCmdFailed_set) - sendCmdFailed = property(_mscl.MipCommandBytes_sendCmdFailed_get, _mscl.MipCommandBytes_sendCmdFailed_set) - - def __init__(self, *args): - _mscl.MipCommandBytes_swiginit(self, _mscl.new_MipCommandBytes(*args)) - - def add(self, cmd): - return _mscl.MipCommandBytes_add(self, cmd) - - def valid(self): - return _mscl.MipCommandBytes_valid(self) - __swig_destroy__ = _mscl.delete_MipCommandBytes - -# Register MipCommandBytes in _mscl: -_mscl.MipCommandBytes_swigregister(MipCommandBytes) - -class AidingMeasurementInput(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - ACK_NACK = _mscl.AidingMeasurementInput_ACK_NACK - ECHO_INPUT = _mscl.AidingMeasurementInput_ECHO_INPUT - - def toMipFieldValues(self): - return _mscl.AidingMeasurementInput_toMipFieldValues(self) - - def timestamp(self, *args): - return _mscl.AidingMeasurementInput_timestamp(self, *args) - - def timebase(self): - return _mscl.AidingMeasurementInput_timebase(self) - - def frameId(self, *args): - return _mscl.AidingMeasurementInput_frameId(self, *args) - - def validFlags(self, *args): - return _mscl.AidingMeasurementInput_validFlags(self, *args) - -# Register AidingMeasurementInput in _mscl: -_mscl.AidingMeasurementInput_swigregister(AidingMeasurementInput) - -class AidingMeasurementPosition(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementPosition_X - LATITUDE = _mscl.AidingMeasurementPosition_LATITUDE - Y = _mscl.AidingMeasurementPosition_Y - LONGITUDE = _mscl.AidingMeasurementPosition_LONGITUDE - Z = _mscl.AidingMeasurementPosition_Z - HEIGHT = _mscl.AidingMeasurementPosition_HEIGHT - ALTITUDE = _mscl.AidingMeasurementPosition_ALTITUDE - - def __init__(self, *args): - _mscl.AidingMeasurementPosition_swiginit(self, _mscl.new_AidingMeasurementPosition(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPosition - - def position(self, *args): - return _mscl.AidingMeasurementPosition_position(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPosition_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementPosition_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPosition_valid(self, *args) - -# Register AidingMeasurementPosition in _mscl: -_mscl.AidingMeasurementPosition_swigregister(AidingMeasurementPosition) - -class AidingMeasurementHeight(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeight_swiginit(self, _mscl.new_AidingMeasurementHeight(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeight - - def height(self, *args): - return _mscl.AidingMeasurementHeight_height(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeight_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeight_valid(self, *args) - -# Register AidingMeasurementHeight in _mscl: -_mscl.AidingMeasurementHeight_swigregister(AidingMeasurementHeight) - -class AidingMeasurementVelocity(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementVelocity_X - NORTH = _mscl.AidingMeasurementVelocity_NORTH - Y = _mscl.AidingMeasurementVelocity_Y - EAST = _mscl.AidingMeasurementVelocity_EAST - Z = _mscl.AidingMeasurementVelocity_Z - DOWN = _mscl.AidingMeasurementVelocity_DOWN - - def __init__(self, *args): - _mscl.AidingMeasurementVelocity_swiginit(self, _mscl.new_AidingMeasurementVelocity(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementVelocity - - def velocity(self, *args): - return _mscl.AidingMeasurementVelocity_velocity(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementVelocity_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementVelocity_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementVelocity_valid(self, *args) - -# Register AidingMeasurementVelocity in _mscl: -_mscl.AidingMeasurementVelocity_swigregister(AidingMeasurementVelocity) - -class AidingMeasurementHeading(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeading_swiginit(self, _mscl.new_AidingMeasurementHeading(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeading - - def heading(self, *args): - return _mscl.AidingMeasurementHeading_heading(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeading_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeading_valid(self, *args) - -# Register AidingMeasurementHeading in _mscl: -_mscl.AidingMeasurementHeading_swigregister(AidingMeasurementHeading) - -class AidingMeasurementMagneticField(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementMagneticField_X - Y = _mscl.AidingMeasurementMagneticField_Y - Z = _mscl.AidingMeasurementMagneticField_Z - - def __init__(self, *args): - _mscl.AidingMeasurementMagneticField_swiginit(self, _mscl.new_AidingMeasurementMagneticField(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementMagneticField - - def magneticField(self, *args): - return _mscl.AidingMeasurementMagneticField_magneticField(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementMagneticField_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementMagneticField_valid(self, *args) - -# Register AidingMeasurementMagneticField in _mscl: -_mscl.AidingMeasurementMagneticField_swigregister(AidingMeasurementMagneticField) - -class AidingMeasurementPressure(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementPressure_swiginit(self, _mscl.new_AidingMeasurementPressure(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPressure - - def pressure(self, *args): - return _mscl.AidingMeasurementPressure_pressure(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPressure_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPressure_valid(self, *args) - -# Register AidingMeasurementPressure in _mscl: -_mscl.AidingMeasurementPressure_swigregister(AidingMeasurementPressure) - -class GnssReceiverInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GnssReceiverInfo_swiginit(self, _mscl.new_GnssReceiverInfo(*args)) - id = property(_mscl.GnssReceiverInfo_id_get, _mscl.GnssReceiverInfo_id_set) - targetDataClass = property(_mscl.GnssReceiverInfo_targetDataClass_get, _mscl.GnssReceiverInfo_targetDataClass_set) - description = property(_mscl.GnssReceiverInfo_description_get, _mscl.GnssReceiverInfo_description_set) - module = property(_mscl.GnssReceiverInfo_module_get, _mscl.GnssReceiverInfo_module_set) - fwId = property(_mscl.GnssReceiverInfo_fwId_get, _mscl.GnssReceiverInfo_fwId_set) - fwVersion = property(_mscl.GnssReceiverInfo_fwVersion_get, _mscl.GnssReceiverInfo_fwVersion_set) - __swig_destroy__ = _mscl.delete_GnssReceiverInfo - -# Register GnssReceiverInfo in _mscl: -_mscl.GnssReceiverInfo_swigregister(GnssReceiverInfo) -GnssReceiverInfo.INFO_NOT_FOUND = _mscl.cvar.GnssReceiverInfo_INFO_NOT_FOUND - -class DeviceCommPort(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SPECIAL = _mscl.DeviceCommPort_SPECIAL - UART = _mscl.DeviceCommPort_UART - USB = _mscl.DeviceCommPort_USB - NONE = _mscl.DeviceCommPort_NONE - MIP_COMMANDS = _mscl.DeviceCommPort_MIP_COMMANDS - MIP_DATA = _mscl.DeviceCommPort_MIP_DATA - NMEA = _mscl.DeviceCommPort_NMEA - RTCM = _mscl.DeviceCommPort_RTCM - SPARTN = _mscl.DeviceCommPort_SPARTN - ALL = _mscl.DeviceCommPort_ALL - - def __init__(self, *args): - _mscl.DeviceCommPort_swiginit(self, _mscl.new_DeviceCommPort(*args)) - - def interfaceId(self): - return _mscl.DeviceCommPort_interfaceId(self) - type = property(_mscl.DeviceCommPort_type_get, _mscl.DeviceCommPort_type_set) - id = property(_mscl.DeviceCommPort_id_get, _mscl.DeviceCommPort_id_set) - inputProtocols = property(_mscl.DeviceCommPort_inputProtocols_get, _mscl.DeviceCommPort_inputProtocols_set) - outputProtocols = property(_mscl.DeviceCommPort_outputProtocols_get, _mscl.DeviceCommPort_outputProtocols_set) - __swig_destroy__ = _mscl.delete_DeviceCommPort - -# Register DeviceCommPort in _mscl: -_mscl.DeviceCommPort_swigregister(DeviceCommPort) - -class EventTypeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTypeInfo_swiginit(self, _mscl.new_EventTypeInfo(*args)) - type = property(_mscl.EventTypeInfo_type_get, _mscl.EventTypeInfo_type_set) - maxInstances = property(_mscl.EventTypeInfo_maxInstances_get, _mscl.EventTypeInfo_maxInstances_set) - __swig_destroy__ = _mscl.delete_EventTypeInfo - -# Register EventTypeInfo in _mscl: -_mscl.EventTypeInfo_swigregister(EventTypeInfo) - -class EventSupportInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - TRIGGERS = _mscl.EventSupportInfo_TRIGGERS - ACTIONS = _mscl.EventSupportInfo_ACTIONS - query = property(_mscl.EventSupportInfo_query_get, _mscl.EventSupportInfo_query_set) - maxInstances = property(_mscl.EventSupportInfo_maxInstances_get, _mscl.EventSupportInfo_maxInstances_set) - entries = property(_mscl.EventSupportInfo_entries_get, _mscl.EventSupportInfo_entries_set) - - def __init__(self): - _mscl.EventSupportInfo_swiginit(self, _mscl.new_EventSupportInfo()) - __swig_destroy__ = _mscl.delete_EventSupportInfo - -# Register EventSupportInfo in _mscl: -_mscl.EventSupportInfo_swigregister(EventSupportInfo) - -class SensorRange(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ALL = _mscl.SensorRange_ALL - ACCEL_G = _mscl.SensorRange_ACCEL_G - GYRO_DPS = _mscl.SensorRange_GYRO_DPS - MAG_GAUSS = _mscl.SensorRange_MAG_GAUSS - PRESSURE_HPA = _mscl.SensorRange_PRESSURE_HPA - - def __init__(self): - _mscl.SensorRange_swiginit(self, _mscl.new_SensorRange()) - - def type(self): - return _mscl.SensorRange_type(self) - - def range(self): - return _mscl.SensorRange_range(self) - - def id(self): - return _mscl.SensorRange_id(self) - __swig_destroy__ = _mscl.delete_SensorRange - -# Register SensorRange in _mscl: -_mscl.SensorRange_swigregister(SensorRange) - -class SupportedSensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.SupportedSensorRanges_swiginit(self, _mscl.new_SupportedSensorRanges()) - - def options(self): - return _mscl.SupportedSensorRanges_options(self) - - def lookupRecommended(self, type, range): - return _mscl.SupportedSensorRanges_lookupRecommended(self, type, range) - __swig_destroy__ = _mscl.delete_SupportedSensorRanges - -# Register SupportedSensorRanges in _mscl: -_mscl.SupportedSensorRanges_swigregister(SupportedSensorRanges) - -class InertialTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - PORTABLE_VEHICLE = _mscl.InertialTypes_PORTABLE_VEHICLE - AUTOMOTIVE_VEHICLE = _mscl.InertialTypes_AUTOMOTIVE_VEHICLE - AIRBORNE_VEHICLE = _mscl.InertialTypes_AIRBORNE_VEHICLE - AIRBORNE_HIGH_G_VEHICLE = _mscl.InertialTypes_AIRBORNE_HIGH_G_VEHICLE - GPS_PORTABLE = _mscl.InertialTypes_GPS_PORTABLE - GPS_STATIONARY = _mscl.InertialTypes_GPS_STATIONARY - GPS_PEDESTRIAN = _mscl.InertialTypes_GPS_PEDESTRIAN - GPS_AUTOMOTIVE = _mscl.InertialTypes_GPS_AUTOMOTIVE - GPS_SEA = _mscl.InertialTypes_GPS_SEA - GPS_AIRBORNE_1G = _mscl.InertialTypes_GPS_AIRBORNE_1G - GPS_AIRBORNE_2G = _mscl.InertialTypes_GPS_AIRBORNE_2G - GPS_AIRBORNE_4G = _mscl.InertialTypes_GPS_AIRBORNE_4G - RESET_ALL_AXIS = _mscl.InertialTypes_RESET_ALL_AXIS - TARE_ROLL_AXIS = _mscl.InertialTypes_TARE_ROLL_AXIS - TARE_PITCH_AXIS = _mscl.InertialTypes_TARE_PITCH_AXIS - TARE_YAW_AXIS = _mscl.InertialTypes_TARE_YAW_AXIS - INTERNAL_GNSS_ALL = _mscl.InertialTypes_INTERNAL_GNSS_ALL - EXTERNAL_GNSS = _mscl.InertialTypes_EXTERNAL_GNSS - INTERNAL_GNSS1 = _mscl.InertialTypes_INTERNAL_GNSS1 - INTERNAL_GNSS2 = _mscl.InertialTypes_INTERNAL_GNSS2 - FIX_SBAS_CORRECTIONS = _mscl.InertialTypes_FIX_SBAS_CORRECTIONS - FIX_DGNSS_CORRECTIONS = _mscl.InertialTypes_FIX_DGNSS_CORRECTIONS - FIXTYPE_3D = _mscl.InertialTypes_FIXTYPE_3D - FIXTYPE_2D = _mscl.InertialTypes_FIXTYPE_2D - FIXTYPE_TIMEONLY = _mscl.InertialTypes_FIXTYPE_TIMEONLY - FIXTYPE_NONE = _mscl.InertialTypes_FIXTYPE_NONE - FIXTYPE_INVALID = _mscl.InertialTypes_FIXTYPE_INVALID - FIXTYPE_RTK_FLOAT = _mscl.InertialTypes_FIXTYPE_RTK_FLOAT - FIXTYPE_RTK_FIXED = _mscl.InertialTypes_FIXTYPE_RTK_FIXED - FIXTYPE_DUAL_ANTENNA_NONE = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_NONE - FIXTYPE_DUAL_ANTENNA_FLOAT = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FLOAT - FIXTYPE_DUAL_ANTENNA_FIXED = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FIXED - DATA_VALID_REC_1 = _mscl.InertialTypes_DATA_VALID_REC_1 - DATA_VALID_REC_2 = _mscl.InertialTypes_DATA_VALID_REC_2 - ANTENNA_OFFSETS_VALID = _mscl.InertialTypes_ANTENNA_OFFSETS_VALID - SVFLAG_NAVIGATION = _mscl.InertialTypes_SVFLAG_NAVIGATION - SVFLAG_HEALTHY = _mscl.InertialTypes_SVFLAG_HEALTHY - DEVICE_AHRS = _mscl.InertialTypes_DEVICE_AHRS - DEVICE_GPS = _mscl.InertialTypes_DEVICE_GPS - ON_FULL_PERFORMANCE = _mscl.InertialTypes_ON_FULL_PERFORMANCE - ON_LOW_POWER = _mscl.InertialTypes_ON_LOW_POWER - SLEEP = _mscl.InertialTypes_SLEEP - OFF = _mscl.InertialTypes_OFF - STANDARD_MIP = _mscl.InertialTypes_STANDARD_MIP - WRAPPED_RAW = _mscl.InertialTypes_WRAPPED_RAW - SENSORSTATE_OFF = _mscl.InertialTypes_SENSORSTATE_OFF - SENSORSTATE_ON = _mscl.InertialTypes_SENSORSTATE_ON - SENSORSTATE_UNKNOWN = _mscl.InertialTypes_SENSORSTATE_UNKNOWN - ANTENNASTATE_INIT = _mscl.InertialTypes_ANTENNASTATE_INIT - ANTENNASTATE_SHORT = _mscl.InertialTypes_ANTENNASTATE_SHORT - ANTENNASTATE_OPEN = _mscl.InertialTypes_ANTENNASTATE_OPEN - ANTENNASTATE_GOOD = _mscl.InertialTypes_ANTENNASTATE_GOOD - ANTENNASTATE_UNKNOWN = _mscl.InertialTypes_ANTENNASTATE_UNKNOWN - ANTENNAPOWER_OFF = _mscl.InertialTypes_ANTENNAPOWER_OFF - ANTENNAPOWER_ON = _mscl.InertialTypes_ANTENNAPOWER_ON - ANTENNAPOWER_UNKNOWN = _mscl.InertialTypes_ANTENNAPOWER_UNKNOWN - FILTERSTATE_STARTUP = _mscl.InertialTypes_FILTERSTATE_STARTUP - FILTERSTATE_INIT = _mscl.InertialTypes_FILTERSTATE_INIT - FILTERSTATE_RUNNING_SLN_VALID = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_VALID - FILTERSTATE_RUNNING_SLN_ERROR = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_ERROR - FILTERSTATE_VERT_GYRO = _mscl.InertialTypes_FILTERSTATE_VERT_GYRO - FILTERSTATE_AHRS = _mscl.InertialTypes_FILTERSTATE_AHRS - FILTERSTATE_FULL_NAV = _mscl.InertialTypes_FILTERSTATE_FULL_NAV - FILTERSTATUS_IMU_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_IMU_UNAVAILABLE - FILTERSTATUS_GPS_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_GPS_UNAVAILABLE - FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC = _mscl.InertialTypes_FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC - FILTERSTATUS_POS_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_POS_COVARIANCE_HIGH_WARN - FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN - FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN - FILTERSTATUS_NAN_IN_SOLUTION = _mscl.InertialTypes_FILTERSTATUS_NAN_IN_SOLUTION - FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN - FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN - FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN - FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN - FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_CONDITION = _mscl.InertialTypes_FILTERSTATUS_CONDITION - FILTERSTATUS_ROLL_PITCH_WARNING = _mscl.InertialTypes_FILTERSTATUS_ROLL_PITCH_WARNING - FILTERSTATUS_HEADING_WARNING = _mscl.InertialTypes_FILTERSTATUS_HEADING_WARNING - FILTERSTATUS_POSITION_WARNING = _mscl.InertialTypes_FILTERSTATUS_POSITION_WARNING - FILTERSTATUS_VELOCITY_WARNING = _mscl.InertialTypes_FILTERSTATUS_VELOCITY_WARNING - FILTERSTATUS_IMU_BIAS_WARNING = _mscl.InertialTypes_FILTERSTATUS_IMU_BIAS_WARNING - FILTERSTATUS_GNSS_CLK_WARNING = _mscl.InertialTypes_FILTERSTATUS_GNSS_CLK_WARNING - FILTERSTATUS_ANT_LEVER_ARM_WARNING = _mscl.InertialTypes_FILTERSTATUS_ANT_LEVER_ARM_WARNING - FILTERSTATUS_MOUNTING_TRANSFORM_WARNING = _mscl.InertialTypes_FILTERSTATUS_MOUNTING_TRANSFORM_WARNING - FILTERSTATUS_ATT_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_ATT_NOT_INIT - FILTERSTATUS_POS_VEL_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_POS_VEL_NOT_INIT - STABLE = _mscl.InertialTypes_STABLE - CONVERGING = _mscl.InertialTypes_CONVERGING - UNSTABLE = _mscl.InertialTypes_UNSTABLE - DGNSSBASE_UDRE_SCALE_FACTOR_1_00 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_1_00 - DGNSSBASE_UDRE_SCALE_FACTOR_0_75 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_75 - DGNSSBASE_UDRE_SCALE_FACTOR_0_50 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_50 - DGNSSBASE_UDRE_SCALE_FACTOR_0_30 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_30 - DGNSSBASE_UDRE_SCALE_FACTOR_0_20 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_20 - DGNSSBASE_UDRE_SCALE_FACTOR_0_10 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_10 - DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED - DGNSSBASE_REFERENCE_STATION_NOT_WORKING = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_NOT_WORKING - HEADINGSOURCE_NONE = _mscl.InertialTypes_HEADINGSOURCE_NONE - HEADINGSOURCE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_MAGNETOMETER - HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR - HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD = _mscl.InertialTypes_HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD - HEADINGSOURCE_GNSS_DUAL_ANTENNA = _mscl.InertialTypes_HEADINGSOURCE_GNSS_DUAL_ANTENNA - ENABLE_NONE = _mscl.InertialTypes_ENABLE_NONE - ENABLE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_ENABLE_INTERNAL_MAGNETOMETER - ENABLE_INTERNAL_GNSS = _mscl.InertialTypes_ENABLE_INTERNAL_GNSS - ENABLE_EXTERNAL_MESSAGES = _mscl.InertialTypes_ENABLE_EXTERNAL_MESSAGES - ENABLE_MAGNETOMETER_AND_GNSS = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_GNSS - ENABLE_GNSS_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_GNSS_AND_EXTERNAL - ENABLE_MAGNETOMETER_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_EXTERNAL - ENABLE_ALL = _mscl.InertialTypes_ENABLE_ALL - ENABLE_GYRO_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_BIAS_ESTIMATION - ENABLE_ACCEL_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_BIAS_ESTIMATION - ENABLE_GYRO_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_SCALE_FACTOR_ESTIMATION - ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION - ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION = _mscl.InertialTypes_ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION - ENABLE_HARD_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_HARD_IRON_AUTO_CALIBRATION - ENABLE_SOFT_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_SOFT_IRON_AUTO_CALIBRATION - NONE = _mscl.InertialTypes_NONE - WORLD_MAGNETIC_MODEL = _mscl.InertialTypes_WORLD_MAGNETIC_MODEL - MANUAL = _mscl.InertialTypes_MANUAL - ADAPTIVE_MEASUREMENT_DISABLE = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_DISABLE - ADAPTIVE_MEASUREMENT_ENABLE_FIXED = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_FIXED - ADAPTIVE_MEASUREMENT_ENABLE_AUTO = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_AUTO - GNSS_POS_VEL_AIDING = _mscl.InertialTypes_GNSS_POS_VEL_AIDING - GNSS_HEADING_AIDING = _mscl.InertialTypes_GNSS_HEADING_AIDING - ALTIMETER_AIDING = _mscl.InertialTypes_ALTIMETER_AIDING - ODOMETER_AIDING = _mscl.InertialTypes_ODOMETER_AIDING - MAGNETOMETER_AIDING = _mscl.InertialTypes_MAGNETOMETER_AIDING - EXTERNAL_HEADING_AIDING = _mscl.InertialTypes_EXTERNAL_HEADING_AIDING - EXTERNAL_ALTIMETER_AIDING = _mscl.InertialTypes_EXTERNAL_ALTIMETER_AIDING - EXTERNAL_MAGNETOMETER_AIDING = _mscl.InertialTypes_EXTERNAL_MAGNETOMETER_AIDING - BODY_FRAME_VEL_AIDING = _mscl.InertialTypes_BODY_FRAME_VEL_AIDING - ALL_AIDING_MEASUREMENTS = _mscl.InertialTypes_ALL_AIDING_MEASUREMENTS - GPS = _mscl.InertialTypes_GPS - SBAS = _mscl.InertialTypes_SBAS - GALILEO = _mscl.InertialTypes_GALILEO - BEIDOU = _mscl.InertialTypes_BEIDOU - QZSS = _mscl.InertialTypes_QZSS - GLONASS = _mscl.InertialTypes_GLONASS - FILTERING_OFF = _mscl.InertialTypes_FILTERING_OFF - FILTERING_CONSERVATIVE = _mscl.InertialTypes_FILTERING_CONSERVATIVE - FILTERING_MODERATE = _mscl.InertialTypes_FILTERING_MODERATE - FILTERING_AGGRESSIVE = _mscl.InertialTypes_FILTERING_AGGRESSIVE - FACTORY_STREAMING_OVERWRITE = _mscl.InertialTypes_FACTORY_STREAMING_OVERWRITE - FACTORY_STREAMING_MERGE = _mscl.InertialTypes_FACTORY_STREAMING_MERGE - FACTORY_STREAMING_ADDITIVE = _mscl.InertialTypes_FACTORY_STREAMING_ADDITIVE - PPS_DISABLED = _mscl.InertialTypes_PPS_DISABLED - PPS_RECEIVER_1 = _mscl.InertialTypes_PPS_RECEIVER_1 - PPS_RECEIVER_2 = _mscl.InertialTypes_PPS_RECEIVER_2 - PPS_GPIO = _mscl.InertialTypes_PPS_GPIO - PPS_GENERATED = _mscl.InertialTypes_PPS_GENERATED - GNSS_AIDING_TIGHT_COUPLING = _mscl.InertialTypes_GNSS_AIDING_TIGHT_COUPLING - GNSS_AIDING_DIFFERENTIAL = _mscl.InertialTypes_GNSS_AIDING_DIFFERENTIAL - GNSS_AIDING_INTEGER_FIX = _mscl.InertialTypes_GNSS_AIDING_INTEGER_FIX - GNSS_AIDING_GPS = _mscl.InertialTypes_GNSS_AIDING_GPS - GNSS_AIDING_GLONASS = _mscl.InertialTypes_GNSS_AIDING_GLONASS - GNSS_AIDING_GALILEO = _mscl.InertialTypes_GNSS_AIDING_GALILEO - GNSS_AIDING_BEIDOU = _mscl.InertialTypes_GNSS_AIDING_BEIDOU - GNSS_AIDING_NO_FIX = _mscl.InertialTypes_GNSS_AIDING_NO_FIX - GNSS_AIDING_CONFIG_ERROR = _mscl.InertialTypes_GNSS_AIDING_CONFIG_ERROR - AIDING_MEASUREMENT_ENABLED = _mscl.InertialTypes_AIDING_MEASUREMENT_ENABLED - AIDING_MEASUREMENT_USED = _mscl.InertialTypes_AIDING_MEASUREMENT_USED - AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH - AIDING_MEASUREMENT_WARNING_SAMPLE_TIME = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_SAMPLE_TIME - AIDING_MEASUREMENT_CONFIG_ERROR = _mscl.InertialTypes_AIDING_MEASUREMENT_CONFIG_ERROR - AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED = _mscl.InertialTypes_AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED - RTK_CORRECTION_ANTENNA_POS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_POS_RECEIVED - RTK_CORRECTION_ANTENNA_DESC_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_DESC_RECEIVED - RTK_CORRECTION_GPS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GPS_RECEIVED - RTK_CORRECTION_GLONASS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GLONASS_RECEIVED - RTK_CORRECTION_GALILEO_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GALILEO_RECEIVED - RTK_CORRECTION_BEIDOU_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_BEIDOU_RECEIVED - RTK_CORRECTION_USING_GPS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GPS_MSM - RTK_CORRECTION_USING_GLONASS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GLONASS_MSM - SIGNAL_QUALITY_NONE = _mscl.InertialTypes_SIGNAL_QUALITY_NONE - SIGNAL_QUALITY_SEARCHING = _mscl.InertialTypes_SIGNAL_QUALITY_SEARCHING - SIGNAL_QUALITY_ACQUIRED = _mscl.InertialTypes_SIGNAL_QUALITY_ACQUIRED - SIGNAL_QUALITY_UNUSABLE = _mscl.InertialTypes_SIGNAL_QUALITY_UNUSABLE - SIGNAL_QUALITY_TIME_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_TIME_LOCKED - SIGNAL_QUALITY_FULLY_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_FULLY_LOCKED - OVERRANGE_ACCEL_X = _mscl.InertialTypes_OVERRANGE_ACCEL_X - OVERRANGE_ACCEL_Y = _mscl.InertialTypes_OVERRANGE_ACCEL_Y - OVERRANGE_ACCEL_Z = _mscl.InertialTypes_OVERRANGE_ACCEL_Z - OVERRANGE_GYRO_X = _mscl.InertialTypes_OVERRANGE_GYRO_X - OVERRANGE_GYRO_Y = _mscl.InertialTypes_OVERRANGE_GYRO_Y - OVERRANGE_GYRO_Z = _mscl.InertialTypes_OVERRANGE_GYRO_Z - OVERRANGE_MAG_X = _mscl.InertialTypes_OVERRANGE_MAG_X - OVERRANGE_MAG_Y = _mscl.InertialTypes_OVERRANGE_MAG_Y - OVERRANGE_MAG_Z = _mscl.InertialTypes_OVERRANGE_MAG_Z - OVERRANGE_PRESSURE = _mscl.InertialTypes_OVERRANGE_PRESSURE - UNKNOWN_SBAS_SYSTEM = _mscl.InertialTypes_UNKNOWN_SBAS_SYSTEM - WAAS = _mscl.InertialTypes_WAAS - EGNOS = _mscl.InertialTypes_EGNOS - MSAS = _mscl.InertialTypes_MSAS - GAGAN = _mscl.InertialTypes_GAGAN - SBAS_INFO_RANGE_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_RANGE_AVAILABLE - SBAS_INFO_CORRECTIONS_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_CORRECTIONS_AVAILABLE - SBAS_INFO_INTEGRITY_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_INTEGRITY_AVAILABLE - SBAS_INFO_TEST = _mscl.InertialTypes_SBAS_INFO_TEST - JAMMING_STATE_UNKNOWN = _mscl.InertialTypes_JAMMING_STATE_UNKNOWN - JAMMING_STATE_NONE = _mscl.InertialTypes_JAMMING_STATE_NONE - JAMMING_STATE_PARTIAL = _mscl.InertialTypes_JAMMING_STATE_PARTIAL - JAMMING_STATE_SIGNIFICANT = _mscl.InertialTypes_JAMMING_STATE_SIGNIFICANT - SPOOFING_STATE_UNKNOWN = _mscl.InertialTypes_SPOOFING_STATE_UNKNOWN - SPOOFING_STATE_NONE = _mscl.InertialTypes_SPOOFING_STATE_NONE - SPOOFING_STATE_PARTIAL = _mscl.InertialTypes_SPOOFING_STATE_PARTIAL - SPOOFING_STATE_SIGNIFICANT = _mscl.InertialTypes_SPOOFING_STATE_SIGNIFICANT - - def __init__(self): - _mscl.InertialTypes_swiginit(self, _mscl.new_InertialTypes()) - __swig_destroy__ = _mscl.delete_InertialTypes - -# Register InertialTypes in _mscl: -_mscl.InertialTypes_swigregister(InertialTypes) - -class NmeaMessageFormat(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_MESSAGES = _mscl.NmeaMessageFormat_MAX_MESSAGES - GGA = _mscl.NmeaMessageFormat_GGA - GLL = _mscl.NmeaMessageFormat_GLL - GSV = _mscl.NmeaMessageFormat_GSV - RMC = _mscl.NmeaMessageFormat_RMC - VTG = _mscl.NmeaMessageFormat_VTG - HDT = _mscl.NmeaMessageFormat_HDT - ZDA = _mscl.NmeaMessageFormat_ZDA - MSRA = _mscl.NmeaMessageFormat_MSRA - MSRR = _mscl.NmeaMessageFormat_MSRR - IGNORED = _mscl.NmeaMessageFormat_IGNORED - GNSS = _mscl.NmeaMessageFormat_GNSS - GPS = _mscl.NmeaMessageFormat_GPS - GALILEO = _mscl.NmeaMessageFormat_GALILEO - GLONASS = _mscl.NmeaMessageFormat_GLONASS - - def __init__(self): - _mscl.NmeaMessageFormat_swiginit(self, _mscl.new_NmeaMessageFormat()) - __swig_destroy__ = _mscl.delete_NmeaMessageFormat - - def sentenceType(self, *args): - return _mscl.NmeaMessageFormat_sentenceType(self, *args) - - def talkerId(self, *args): - return _mscl.NmeaMessageFormat_talkerId(self, *args) - - def sourceDataClass(self, *args): - return _mscl.NmeaMessageFormat_sourceDataClass(self, *args) - - def sampleRate(self, *args): - return _mscl.NmeaMessageFormat_sampleRate(self, *args) - - @staticmethod - def talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - - @staticmethod - def dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - - @staticmethod - def supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - - @staticmethod - def toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -# Register NmeaMessageFormat in _mscl: -_mscl.NmeaMessageFormat_swigregister(NmeaMessageFormat) -NmeaMessageFormat.MAX_FREQUENCY = _mscl.cvar.NmeaMessageFormat_MAX_FREQUENCY - -def NmeaMessageFormat_talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - -def NmeaMessageFormat_dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - -def NmeaMessageFormat_supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - -def NmeaMessageFormat_toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -class Matrix_3x3(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Matrix_3x3_swiginit(self, _mscl.new_Matrix_3x3(*args)) - __swig_destroy__ = _mscl.delete_Matrix_3x3 - - def set(self, row, col, value): - return _mscl.Matrix_3x3_set(self, row, col, value) - - def at(self, row, col): - return _mscl.Matrix_3x3_at(self, row, col) - - def __str__(self): - return _mscl.Matrix_3x3___str__(self) - - def asMipFieldValues(self): - return _mscl.Matrix_3x3_asMipFieldValues(self) - -# Register Matrix_3x3 in _mscl: -_mscl.Matrix_3x3_swigregister(Matrix_3x3) - -class TimeUpdate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, timeOfWeek, weekNumber, timeAccuracy=0): - _mscl.TimeUpdate_swiginit(self, _mscl.new_TimeUpdate(timeOfWeek, weekNumber, timeAccuracy)) - __swig_destroy__ = _mscl.delete_TimeUpdate - - def timeOfWeek(self): - return _mscl.TimeUpdate_timeOfWeek(self) - - def weekNumber(self): - return _mscl.TimeUpdate_weekNumber(self) - - def timeAccuracy(self): - return _mscl.TimeUpdate_timeAccuracy(self) - -# Register TimeUpdate in _mscl: -_mscl.TimeUpdate_swigregister(TimeUpdate) - -class ZUPTSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, enable, threshold): - _mscl.ZUPTSettingsData_swiginit(self, _mscl.new_ZUPTSettingsData(enable, threshold)) - enabled = property(_mscl.ZUPTSettingsData_enabled_get, _mscl.ZUPTSettingsData_enabled_set) - threshold = property(_mscl.ZUPTSettingsData_threshold_get, _mscl.ZUPTSettingsData_threshold_set) - __swig_destroy__ = _mscl.delete_ZUPTSettingsData - -# Register ZUPTSettingsData in _mscl: -_mscl.ZUPTSettingsData_swigregister(ZUPTSettingsData) - -class FixedReferencePositionData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.FixedReferencePositionData_swiginit(self, _mscl.new_FixedReferencePositionData(*args)) - enable = property(_mscl.FixedReferencePositionData_enable_get, _mscl.FixedReferencePositionData_enable_set) - referencePosition = property(_mscl.FixedReferencePositionData_referencePosition_get, _mscl.FixedReferencePositionData_referencePosition_set) - __swig_destroy__ = _mscl.delete_FixedReferencePositionData - -# Register FixedReferencePositionData in _mscl: -_mscl.FixedReferencePositionData_swigregister(FixedReferencePositionData) - -class SBASSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enableSBAS = property(_mscl.SBASSettingsData_enableSBAS_get, _mscl.SBASSettingsData_enableSBAS_set) - enableRanging = property(_mscl.SBASSettingsData_enableRanging_get, _mscl.SBASSettingsData_enableRanging_set) - enableCorrectionData = property(_mscl.SBASSettingsData_enableCorrectionData_get, _mscl.SBASSettingsData_enableCorrectionData_set) - applyIntegrityInfo = property(_mscl.SBASSettingsData_applyIntegrityInfo_get, _mscl.SBASSettingsData_applyIntegrityInfo_set) - satellitePRNs = property(_mscl.SBASSettingsData_satellitePRNs_get, _mscl.SBASSettingsData_satellitePRNs_set) - - def __init__(self): - _mscl.SBASSettingsData_swiginit(self, _mscl.new_SBASSettingsData()) - __swig_destroy__ = _mscl.delete_SBASSettingsData - -# Register SBASSettingsData in _mscl: -_mscl.SBASSettingsData_swigregister(SBASSettingsData) - -class Constellation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - constellationID = property(_mscl.Constellation_constellationID_get, _mscl.Constellation_constellationID_set) - enabled = property(_mscl.Constellation_enabled_get, _mscl.Constellation_enabled_set) - reservedChannelCount = property(_mscl.Constellation_reservedChannelCount_get, _mscl.Constellation_reservedChannelCount_set) - maxChannels = property(_mscl.Constellation_maxChannels_get, _mscl.Constellation_maxChannels_set) - enableL1SAIF = property(_mscl.Constellation_enableL1SAIF_get, _mscl.Constellation_enableL1SAIF_set) - - def __init__(self): - _mscl.Constellation_swiginit(self, _mscl.new_Constellation()) - __swig_destroy__ = _mscl.delete_Constellation - -# Register Constellation in _mscl: -_mscl.Constellation_swigregister(Constellation) - -class ConstellationSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - maxChannelsAvailable = property(_mscl.ConstellationSettingsData_maxChannelsAvailable_get, _mscl.ConstellationSettingsData_maxChannelsAvailable_set) - maxChannelsToUse = property(_mscl.ConstellationSettingsData_maxChannelsToUse_get, _mscl.ConstellationSettingsData_maxChannelsToUse_set) - constellations = property(_mscl.ConstellationSettingsData_constellations_get, _mscl.ConstellationSettingsData_constellations_set) - - def __init__(self): - _mscl.ConstellationSettingsData_swiginit(self, _mscl.new_ConstellationSettingsData()) - __swig_destroy__ = _mscl.delete_ConstellationSettingsData - -# Register ConstellationSettingsData in _mscl: -_mscl.ConstellationSettingsData_swigregister(ConstellationSettingsData) - -class LowPassFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SET_TO_HALF_REPORTING_RATE = _mscl.LowPassFilterData_SET_TO_HALF_REPORTING_RATE - USER_SPECIFIED_CUTOFF_FREQ = _mscl.LowPassFilterData_USER_SPECIFIED_CUTOFF_FREQ - - def __init__(self, *args): - _mscl.LowPassFilterData_swiginit(self, _mscl.new_LowPassFilterData(*args)) - dataDescriptor = property(_mscl.LowPassFilterData_dataDescriptor_get, _mscl.LowPassFilterData_dataDescriptor_set) - manualFilterBandwidthConfig = property(_mscl.LowPassFilterData_manualFilterBandwidthConfig_get, _mscl.LowPassFilterData_manualFilterBandwidthConfig_set) - applyLowPassFilter = property(_mscl.LowPassFilterData_applyLowPassFilter_get, _mscl.LowPassFilterData_applyLowPassFilter_set) - cutoffFrequency = property(_mscl.LowPassFilterData_cutoffFrequency_get, _mscl.LowPassFilterData_cutoffFrequency_set) - - @staticmethod - def getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - - @staticmethod - def getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - __swig_destroy__ = _mscl.delete_LowPassFilterData - -# Register LowPassFilterData in _mscl: -_mscl.LowPassFilterData_swigregister(LowPassFilterData) - -def LowPassFilterData_getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - -def LowPassFilterData_getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - -class ComplementaryFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ComplementaryFilterData_swiginit(self, _mscl.new_ComplementaryFilterData()) - upCompensationEnabled = property(_mscl.ComplementaryFilterData_upCompensationEnabled_get, _mscl.ComplementaryFilterData_upCompensationEnabled_set) - upCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_upCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_upCompensationTimeInSeconds_set) - northCompensationEnabled = property(_mscl.ComplementaryFilterData_northCompensationEnabled_get, _mscl.ComplementaryFilterData_northCompensationEnabled_set) - northCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_northCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_northCompensationTimeInSeconds_set) - __swig_destroy__ = _mscl.delete_ComplementaryFilterData - -# Register ComplementaryFilterData in _mscl: -_mscl.ComplementaryFilterData_swigregister(ComplementaryFilterData) - -class PpsPulseInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PpsPulseInfo_swiginit(self, _mscl.new_PpsPulseInfo()) - count = property(_mscl.PpsPulseInfo_count_get, _mscl.PpsPulseInfo_count_set) - lastTimeinMS = property(_mscl.PpsPulseInfo_lastTimeinMS_get, _mscl.PpsPulseInfo_lastTimeinMS_set) - __swig_destroy__ = _mscl.delete_PpsPulseInfo - -# Register PpsPulseInfo in _mscl: -_mscl.PpsPulseInfo_swigregister(PpsPulseInfo) - -class StreamInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.StreamInfo_swiginit(self, _mscl.new_StreamInfo()) - enabled = property(_mscl.StreamInfo_enabled_get, _mscl.StreamInfo_enabled_set) - outgoingPacketsDropped = property(_mscl.StreamInfo_outgoingPacketsDropped_get, _mscl.StreamInfo_outgoingPacketsDropped_set) - __swig_destroy__ = _mscl.delete_StreamInfo - -# Register StreamInfo in _mscl: -_mscl.StreamInfo_swigregister(StreamInfo) - -class DeviceMessageInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.DeviceMessageInfo_swiginit(self, _mscl.new_DeviceMessageInfo()) - messageParsingErrors = property(_mscl.DeviceMessageInfo_messageParsingErrors_get, _mscl.DeviceMessageInfo_messageParsingErrors_set) - messagesRead = property(_mscl.DeviceMessageInfo_messagesRead_get, _mscl.DeviceMessageInfo_messagesRead_set) - lastMessageReadinMS = property(_mscl.DeviceMessageInfo_lastMessageReadinMS_get, _mscl.DeviceMessageInfo_lastMessageReadinMS_set) - __swig_destroy__ = _mscl.delete_DeviceMessageInfo - -# Register DeviceMessageInfo in _mscl: -_mscl.DeviceMessageInfo_swigregister(DeviceMessageInfo) - -class PortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PortInfo_swiginit(self, _mscl.new_PortInfo()) - bytesWritten = property(_mscl.PortInfo_bytesWritten_get, _mscl.PortInfo_bytesWritten_set) - bytesRead = property(_mscl.PortInfo_bytesRead_get, _mscl.PortInfo_bytesRead_set) - overrunsOnWrite = property(_mscl.PortInfo_overrunsOnWrite_get, _mscl.PortInfo_overrunsOnWrite_set) - overrunsOnRead = property(_mscl.PortInfo_overrunsOnRead_get, _mscl.PortInfo_overrunsOnRead_set) - __swig_destroy__ = _mscl.delete_PortInfo - -# Register PortInfo in _mscl: -_mscl.PortInfo_swigregister(PortInfo) - -class TemperatureInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.TemperatureInfo_swiginit(self, _mscl.new_TemperatureInfo()) - onBoardTemp = property(_mscl.TemperatureInfo_onBoardTemp_get, _mscl.TemperatureInfo_onBoardTemp_set) - lastReadInMS = property(_mscl.TemperatureInfo_lastReadInMS_get, _mscl.TemperatureInfo_lastReadInMS_set) - error = property(_mscl.TemperatureInfo_error_get, _mscl.TemperatureInfo_error_set) - __swig_destroy__ = _mscl.delete_TemperatureInfo - -# Register TemperatureInfo in _mscl: -_mscl.TemperatureInfo_swigregister(TemperatureInfo) - -ModelNumber = _mscl.ModelNumber -StatusStructure_Value = _mscl.StatusStructure_Value -SystemState_Value = _mscl.SystemState_Value -gnss1PpsPulseInfo_Count = _mscl.gnss1PpsPulseInfo_Count -gnss1PpsPulseInfo_LastTimeinMS = _mscl.gnss1PpsPulseInfo_LastTimeinMS -GnssPowerStateOn = _mscl.GnssPowerStateOn -ImuStreamInfo_Enabled = _mscl.ImuStreamInfo_Enabled -ImuStreamInfo_PacketsDropped = _mscl.ImuStreamInfo_PacketsDropped -GnssStreamInfo_Enabled = _mscl.GnssStreamInfo_Enabled -GnssStreamInfo_PacketsDropped = _mscl.GnssStreamInfo_PacketsDropped -EstimationFilterStreamInfo_Enabled = _mscl.EstimationFilterStreamInfo_Enabled -EstimationFilterStreamInfo_PacketsDropped = _mscl.EstimationFilterStreamInfo_PacketsDropped -ComPortInfo_BytesRead = _mscl.ComPortInfo_BytesRead -ComPortInfo_BytesWritten = _mscl.ComPortInfo_BytesWritten -ComPortInfo_OverrunsOnRead = _mscl.ComPortInfo_OverrunsOnRead -ComPortInfo_OverrunsOnWrite = _mscl.ComPortInfo_OverrunsOnWrite -ImuMessageInfo_LastMessageReadinMS = _mscl.ImuMessageInfo_LastMessageReadinMS -ImuMessageInfo_MessageParsingErrors = _mscl.ImuMessageInfo_MessageParsingErrors -ImuMessageInfo_MessagesRead = _mscl.ImuMessageInfo_MessagesRead -GnssMessageInfo_LastMessageReadinMS = _mscl.GnssMessageInfo_LastMessageReadinMS -GnssMessageInfo_MessageParsingErrors = _mscl.GnssMessageInfo_MessageParsingErrors -GnssMessageInfo_MessagesRead = _mscl.GnssMessageInfo_MessagesRead -TemperatureInfo_Error = _mscl.TemperatureInfo_Error -TemperatureInfo_LastReadInMS = _mscl.TemperatureInfo_LastReadInMS -TemperatureInfo_OnBoardTemp = _mscl.TemperatureInfo_OnBoardTemp -PowerState = _mscl.PowerState -GyroRange = _mscl.GyroRange -AccelRange = _mscl.AccelRange -HasMagnetometer = _mscl.HasMagnetometer -HasPressure = _mscl.HasPressure -class DeviceStatusData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_BASIC_STATUS_STRUCTURE - DIAGNOSTIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_DIAGNOSTIC_STATUS_STRUCTURE - SYSTEM_INITIALIZATION = _mscl.DeviceStatusData_SYSTEM_INITIALIZATION - SYSTEM_STARTUP = _mscl.DeviceStatusData_SYSTEM_STARTUP - SYSTEM_RUNNING = _mscl.DeviceStatusData_SYSTEM_RUNNING - - def __init__(self): - _mscl.DeviceStatusData_swiginit(self, _mscl.new_DeviceStatusData()) - modelNumber = property(_mscl.DeviceStatusData_modelNumber_get, _mscl.DeviceStatusData_modelNumber_set) - statusStructure = property(_mscl.DeviceStatusData_statusStructure_get, _mscl.DeviceStatusData_statusStructure_set) - systemTimerInMS = property(_mscl.DeviceStatusData_systemTimerInMS_get, _mscl.DeviceStatusData_systemTimerInMS_set) - - def systemState(self, *args): - return _mscl.DeviceStatusData_systemState(self, *args) - - def gnssPowerStateOn(self, *args): - return _mscl.DeviceStatusData_gnssPowerStateOn(self, *args) - - def gnss1PpsPulseInfo(self, *args): - return _mscl.DeviceStatusData_gnss1PpsPulseInfo(self, *args) - - def imuStreamInfo(self, *args): - return _mscl.DeviceStatusData_imuStreamInfo(self, *args) - - def gnssStreamInfo(self, *args): - return _mscl.DeviceStatusData_gnssStreamInfo(self, *args) - - def estimationFilterStreamInfo(self, *args): - return _mscl.DeviceStatusData_estimationFilterStreamInfo(self, *args) - - def imuMessageInfo(self, *args): - return _mscl.DeviceStatusData_imuMessageInfo(self, *args) - - def gnssMessageInfo(self, *args): - return _mscl.DeviceStatusData_gnssMessageInfo(self, *args) - - def comPortInfo(self, *args): - return _mscl.DeviceStatusData_comPortInfo(self, *args) - - def usbPortInfo(self, *args): - return _mscl.DeviceStatusData_usbPortInfo(self, *args) - - def hasMagnetometer(self, *args): - return _mscl.DeviceStatusData_hasMagnetometer(self, *args) - - def magnetometerInitializationFailed(self, *args): - return _mscl.DeviceStatusData_magnetometerInitializationFailed(self, *args) - - def hasPressure(self, *args): - return _mscl.DeviceStatusData_hasPressure(self, *args) - - def pressureInitializationFailed(self, *args): - return _mscl.DeviceStatusData_pressureInitializationFailed(self, *args) - - def gnssReceiverInitializationFailed(self, *args): - return _mscl.DeviceStatusData_gnssReceiverInitializationFailed(self, *args) - - def coldStartOnPowerOn(self, *args): - return _mscl.DeviceStatusData_coldStartOnPowerOn(self, *args) - - def temperatureInfo(self, *args): - return _mscl.DeviceStatusData_temperatureInfo(self, *args) - - def powerState(self, *args): - return _mscl.DeviceStatusData_powerState(self, *args) - - def gyroRange(self, *args): - return _mscl.DeviceStatusData_gyroRange(self, *args) - - def accelRange(self, *args): - return _mscl.DeviceStatusData_accelRange(self, *args) - - def asMap(self): - return _mscl.DeviceStatusData_asMap(self) - - def asValueMap(self): - return _mscl.DeviceStatusData_asValueMap(self) - __swig_destroy__ = _mscl.delete_DeviceStatusData - -# Register DeviceStatusData in _mscl: -_mscl.DeviceStatusData_swigregister(DeviceStatusData) - -class ExternalGNSSUpdateData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - gpsTimeOfWeek = property(_mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_get, _mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_set) - gpsWeekNumber = property(_mscl.ExternalGNSSUpdateData_gpsWeekNumber_get, _mscl.ExternalGNSSUpdateData_gpsWeekNumber_set) - lattitude = property(_mscl.ExternalGNSSUpdateData_lattitude_get, _mscl.ExternalGNSSUpdateData_lattitude_set) - longitude = property(_mscl.ExternalGNSSUpdateData_longitude_get, _mscl.ExternalGNSSUpdateData_longitude_set) - altitudeAboveWGS84Ellipsoid = property(_mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_get, _mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_set) - northVelocity = property(_mscl.ExternalGNSSUpdateData_northVelocity_get, _mscl.ExternalGNSSUpdateData_northVelocity_set) - eastVelocity = property(_mscl.ExternalGNSSUpdateData_eastVelocity_get, _mscl.ExternalGNSSUpdateData_eastVelocity_set) - downVelocity = property(_mscl.ExternalGNSSUpdateData_downVelocity_get, _mscl.ExternalGNSSUpdateData_downVelocity_set) - northPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_northPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_northPositionUncertainty_set) - eastPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_eastPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_eastPositionUncertainty_set) - downPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_downPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_downPositionUncertainty_set) - northVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_northVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_northVelocityUncertainty_set) - eastVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_set) - downVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_downVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_downVelocityUncertainty_set) - - def __init__(self): - _mscl.ExternalGNSSUpdateData_swiginit(self, _mscl.new_ExternalGNSSUpdateData()) - __swig_destroy__ = _mscl.delete_ExternalGNSSUpdateData - -# Register ExternalGNSSUpdateData in _mscl: -_mscl.ExternalGNSSUpdateData_swigregister(ExternalGNSSUpdateData) - -class HeadingUpdateOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsOptionId(self): - return _mscl.HeadingUpdateOptions_AsOptionId(self) - - def __init__(self, *args): - _mscl.HeadingUpdateOptions_swiginit(self, _mscl.new_HeadingUpdateOptions(*args)) - useInternalMagnetometer = property(_mscl.HeadingUpdateOptions_useInternalMagnetometer_get, _mscl.HeadingUpdateOptions_useInternalMagnetometer_set) - useInternalGNSSVelocityVector = property(_mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_get, _mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_set) - useExternalHeadingMessages = property(_mscl.HeadingUpdateOptions_useExternalHeadingMessages_get, _mscl.HeadingUpdateOptions_useExternalHeadingMessages_set) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptions - -# Register HeadingUpdateOptions in _mscl: -_mscl.HeadingUpdateOptions_swigregister(HeadingUpdateOptions) - -Automatic = _mscl.Automatic -UserSpecified_Heading = _mscl.UserSpecified_Heading -UserSpecified_Attitude = _mscl.UserSpecified_Attitude -UserSpecified_All = _mscl.UserSpecified_All -GNSS_DualAntenna = _mscl.GNSS_DualAntenna -GNSS_Kinematic = _mscl.GNSS_Kinematic -Magnetometer = _mscl.Magnetometer -External = _mscl.External -class HeadingAlignmentMethod(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.HeadingAlignmentMethod_swiginit(self, _mscl.new_HeadingAlignmentMethod(*args)) - value = property(_mscl.HeadingAlignmentMethod_value_get, _mscl.HeadingAlignmentMethod_value_set) - - def select(self, option): - return _mscl.HeadingAlignmentMethod_select(self, option) - - def deselect(self, option): - return _mscl.HeadingAlignmentMethod_deselect(self, option) - - def selected(self, option): - return _mscl.HeadingAlignmentMethod_selected(self, option) - __swig_destroy__ = _mscl.delete_HeadingAlignmentMethod - -# Register HeadingAlignmentMethod in _mscl: -_mscl.HeadingAlignmentMethod_swigregister(HeadingAlignmentMethod) - -class FilterInitializationValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FilterInitializationValues_swiginit(self, _mscl.new_FilterInitializationValues()) - autoInitialize = property(_mscl.FilterInitializationValues_autoInitialize_get, _mscl.FilterInitializationValues_autoInitialize_set) - initialValuesSource = property(_mscl.FilterInitializationValues_initialValuesSource_get, _mscl.FilterInitializationValues_initialValuesSource_set) - autoHeadingAlignmentMethod = property(_mscl.FilterInitializationValues_autoHeadingAlignmentMethod_get, _mscl.FilterInitializationValues_autoHeadingAlignmentMethod_set) - initialAttitude = property(_mscl.FilterInitializationValues_initialAttitude_get, _mscl.FilterInitializationValues_initialAttitude_set) - initialPosition = property(_mscl.FilterInitializationValues_initialPosition_get, _mscl.FilterInitializationValues_initialPosition_set) - initialVelocity = property(_mscl.FilterInitializationValues_initialVelocity_get, _mscl.FilterInitializationValues_initialVelocity_set) - referenceFrame = property(_mscl.FilterInitializationValues_referenceFrame_get, _mscl.FilterInitializationValues_referenceFrame_set) - - def manualHeading(self): - return _mscl.FilterInitializationValues_manualHeading(self) - - def manualAttitude(self): - return _mscl.FilterInitializationValues_manualAttitude(self) - - def manualPositionVelocity(self): - return _mscl.FilterInitializationValues_manualPositionVelocity(self) - __swig_destroy__ = _mscl.delete_FilterInitializationValues - -# Register FilterInitializationValues in _mscl: -_mscl.FilterInitializationValues_swigregister(FilterInitializationValues) - -class TareAxisValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def asUint8(self): - return _mscl.TareAxisValues_asUint8(self) - - def __init__(self, tareRollAxis, tarePitchAxis, tareYawAxis): - _mscl.TareAxisValues_swiginit(self, _mscl.new_TareAxisValues(tareRollAxis, tarePitchAxis, tareYawAxis)) - tareRollAxis = property(_mscl.TareAxisValues_tareRollAxis_get, _mscl.TareAxisValues_tareRollAxis_set) - tarePitchAxis = property(_mscl.TareAxisValues_tarePitchAxis_get, _mscl.TareAxisValues_tarePitchAxis_set) - tareYawAxis = property(_mscl.TareAxisValues_tareYawAxis_get, _mscl.TareAxisValues_tareYawAxis_set) - __swig_destroy__ = _mscl.delete_TareAxisValues - -# Register TareAxisValues in _mscl: -_mscl.TareAxisValues_swigregister(TareAxisValues) - -class GeographicSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeographicSourceOptions_swiginit(self, _mscl.new_GeographicSourceOptions(*args)) - source = property(_mscl.GeographicSourceOptions_source_get, _mscl.GeographicSourceOptions_source_set) - manual = property(_mscl.GeographicSourceOptions_manual_get, _mscl.GeographicSourceOptions_manual_set) - __swig_destroy__ = _mscl.delete_GeographicSourceOptions - -# Register GeographicSourceOptions in _mscl: -_mscl.GeographicSourceOptions_swigregister(GeographicSourceOptions) - -class EstimationControlOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsUint16(self): - return _mscl.EstimationControlOptions_AsUint16(self) - - def __init__(self, *args): - _mscl.EstimationControlOptions_swiginit(self, _mscl.new_EstimationControlOptions(*args)) - enableGyroBiasEstimation = property(_mscl.EstimationControlOptions_enableGyroBiasEstimation_get, _mscl.EstimationControlOptions_enableGyroBiasEstimation_set) - enableAccelBiasEstimation = property(_mscl.EstimationControlOptions_enableAccelBiasEstimation_get, _mscl.EstimationControlOptions_enableAccelBiasEstimation_set) - enableGyroScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_set) - enableAccelScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_set) - enableGNSSAntennaOffsetEstimation = property(_mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_get, _mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_set) - enableHardIronAutoCalibration = property(_mscl.EstimationControlOptions_enableHardIronAutoCalibration_get, _mscl.EstimationControlOptions_enableHardIronAutoCalibration_set) - enableSoftIronAutoCalibration = property(_mscl.EstimationControlOptions_enableSoftIronAutoCalibration_get, _mscl.EstimationControlOptions_enableSoftIronAutoCalibration_set) - __swig_destroy__ = _mscl.delete_EstimationControlOptions - -# Register EstimationControlOptions in _mscl: -_mscl.EstimationControlOptions_swigregister(EstimationControlOptions) - -class HeadingData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HeadingData_swiginit(self, _mscl.new_HeadingData()) - TRUE_HEADING = _mscl.HeadingData_TRUE_HEADING - MAGNETIC_HEADING = _mscl.HeadingData_MAGNETIC_HEADING - heading = property(_mscl.HeadingData_heading_get, _mscl.HeadingData_heading_set) - headingAngle = property(_mscl.HeadingData_headingAngle_get, _mscl.HeadingData_headingAngle_set) - headingAngleUncertainty = property(_mscl.HeadingData_headingAngleUncertainty_get, _mscl.HeadingData_headingAngleUncertainty_set) - __swig_destroy__ = _mscl.delete_HeadingData - -# Register HeadingData in _mscl: -_mscl.HeadingData_swigregister(HeadingData) - -class AdaptiveMeasurementData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AdaptiveMeasurementData_swiginit(self, _mscl.new_AdaptiveMeasurementData()) - mode = property(_mscl.AdaptiveMeasurementData_mode_get, _mscl.AdaptiveMeasurementData_mode_set) - lowPassFilterCutoff = property(_mscl.AdaptiveMeasurementData_lowPassFilterCutoff_get, _mscl.AdaptiveMeasurementData_lowPassFilterCutoff_set) - lowLimit = property(_mscl.AdaptiveMeasurementData_lowLimit_get, _mscl.AdaptiveMeasurementData_lowLimit_set) - highLimit = property(_mscl.AdaptiveMeasurementData_highLimit_get, _mscl.AdaptiveMeasurementData_highLimit_set) - lowLimitUncertainty = property(_mscl.AdaptiveMeasurementData_lowLimitUncertainty_get, _mscl.AdaptiveMeasurementData_lowLimitUncertainty_set) - highLimitUncertainty = property(_mscl.AdaptiveMeasurementData_highLimitUncertainty_get, _mscl.AdaptiveMeasurementData_highLimitUncertainty_set) - minUncertainty = property(_mscl.AdaptiveMeasurementData_minUncertainty_get, _mscl.AdaptiveMeasurementData_minUncertainty_set) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementData - -# Register AdaptiveMeasurementData in _mscl: -_mscl.AdaptiveMeasurementData_swigregister(AdaptiveMeasurementData) - -class AutoAdaptiveFilterOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AutoAdaptiveFilterOptions_swiginit(self, _mscl.new_AutoAdaptiveFilterOptions(*args)) - level = property(_mscl.AutoAdaptiveFilterOptions_level_get, _mscl.AutoAdaptiveFilterOptions_level_set) - timeLimit = property(_mscl.AutoAdaptiveFilterOptions_timeLimit_get, _mscl.AutoAdaptiveFilterOptions_timeLimit_set) - __swig_destroy__ = _mscl.delete_AutoAdaptiveFilterOptions - -# Register AutoAdaptiveFilterOptions in _mscl: -_mscl.AutoAdaptiveFilterOptions_swigregister(AutoAdaptiveFilterOptions) - -class SignalConditioningValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ENABLE_ORIENTATION_CALC = _mscl.SignalConditioningValues_ENABLE_ORIENTATION_CALC - ENABLE_CONING_SCULLING = _mscl.SignalConditioningValues_ENABLE_CONING_SCULLING - ENABLE_FINITE_SIZE_CORRECTION = _mscl.SignalConditioningValues_ENABLE_FINITE_SIZE_CORRECTION - DISABLE_MAGNETOMETER = _mscl.SignalConditioningValues_DISABLE_MAGNETOMETER - DISABLE_NORTH_COMP = _mscl.SignalConditioningValues_DISABLE_NORTH_COMP - DISABLE_UP_COMP = _mscl.SignalConditioningValues_DISABLE_UP_COMP - ENABLE_QUATERNION_CALC = _mscl.SignalConditioningValues_ENABLE_QUATERNION_CALC - HIGH = _mscl.SignalConditioningValues_HIGH - LOW = _mscl.SignalConditioningValues_LOW - dataConditioningFlags = property(_mscl.SignalConditioningValues_dataConditioningFlags_get, _mscl.SignalConditioningValues_dataConditioningFlags_set) - orientationCalcDecimation = property(_mscl.SignalConditioningValues_orientationCalcDecimation_get, _mscl.SignalConditioningValues_orientationCalcDecimation_set) - accelGyroFilterWidth = property(_mscl.SignalConditioningValues_accelGyroFilterWidth_get, _mscl.SignalConditioningValues_accelGyroFilterWidth_set) - magFilterWidth = property(_mscl.SignalConditioningValues_magFilterWidth_get, _mscl.SignalConditioningValues_magFilterWidth_set) - upCompensation = property(_mscl.SignalConditioningValues_upCompensation_get, _mscl.SignalConditioningValues_upCompensation_set) - northCompensation = property(_mscl.SignalConditioningValues_northCompensation_get, _mscl.SignalConditioningValues_northCompensation_set) - magBandwidthPower = property(_mscl.SignalConditioningValues_magBandwidthPower_get, _mscl.SignalConditioningValues_magBandwidthPower_set) - - def __init__(self): - _mscl.SignalConditioningValues_swiginit(self, _mscl.new_SignalConditioningValues()) - - def conditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_conditioningOptionOn(self, *args) - - def setConditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOn(self, *args) - - def setConditioningOptionOff(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOff(self, *args) - __swig_destroy__ = _mscl.delete_SignalConditioningValues - -# Register SignalConditioningValues in _mscl: -_mscl.SignalConditioningValues_swigregister(SignalConditioningValues) - -class EnableDisableMeasurements(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ACCELEROMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_ACCELEROMETER_MEASUREMENTS - MAGNETOMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_MAGNETOMETER_MEASUREMENTS - - def __init__(self, *args): - _mscl.EnableDisableMeasurements_swiginit(self, _mscl.new_EnableDisableMeasurements(*args)) - measurementOptions = property(_mscl.EnableDisableMeasurements_measurementOptions_get, _mscl.EnableDisableMeasurements_measurementOptions_set) - - def optionEnabled(self, *args): - return _mscl.EnableDisableMeasurements_optionEnabled(self, *args) - - def enableOption(self, *args): - return _mscl.EnableDisableMeasurements_enableOption(self, *args) - - def disableOption(self, *args): - return _mscl.EnableDisableMeasurements_disableOption(self, *args) - __swig_destroy__ = _mscl.delete_EnableDisableMeasurements - -# Register EnableDisableMeasurements in _mscl: -_mscl.EnableDisableMeasurements_swigregister(EnableDisableMeasurements) - -class RTKDeviceStatusFlags(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MODEM_STATE = _mscl.RTKDeviceStatusFlags_MODEM_STATE - CONNECTION_TYPE = _mscl.RTKDeviceStatusFlags_CONNECTION_TYPE - RSSI = _mscl.RTKDeviceStatusFlags_RSSI - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_SIGNAL_QUALITY - TOWER_CHANGE_INDICATOR = _mscl.RTKDeviceStatusFlags_TOWER_CHANGE_INDICATOR - NMEA_TIMEOUT = _mscl.RTKDeviceStatusFlags_NMEA_TIMEOUT - SERVER_TIMEOUT = _mscl.RTKDeviceStatusFlags_SERVER_TIMEOUT - RTCM_TIMEOUT = _mscl.RTKDeviceStatusFlags_RTCM_TIMEOUT - DEVICE_OUT_OF_RANGE = _mscl.RTKDeviceStatusFlags_DEVICE_OUT_OF_RANGE - CORRECTIONS_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_CORRECTIONS_UNAVAILABLE - VERSION = _mscl.RTKDeviceStatusFlags_VERSION - OFF = _mscl.RTKDeviceStatusFlags_OFF - NO_NETWORK = _mscl.RTKDeviceStatusFlags_NO_NETWORK - NETWORK_CONNECTED = _mscl.RTKDeviceStatusFlags_NETWORK_CONNECTED - CONFIGURING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_CONFIGURING_DATA_CONTEXT - ACTIVATING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_ACTIVATING_DATA_CONTEXT - CONFIGURING_SOCKET = _mscl.RTKDeviceStatusFlags_CONFIGURING_SOCKET - WAITING_ON_SERVER_HANDSHAKE = _mscl.RTKDeviceStatusFlags_WAITING_ON_SERVER_HANDSHAKE - CONNECTED_AND_IDLE = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_IDLE - CONNECTED_AND_STREAMING = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_STREAMING - NO_CONNECTION = _mscl.RTKDeviceStatusFlags_NO_CONNECTION - CONNECTION_2G = _mscl.RTKDeviceStatusFlags_CONNECTION_2G - CONNECTION_3G = _mscl.RTKDeviceStatusFlags_CONNECTION_3G - CONNECTION_4G = _mscl.RTKDeviceStatusFlags_CONNECTION_4G - CONNECTION_5G = _mscl.RTKDeviceStatusFlags_CONNECTION_5G - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_swiginit(self, _mscl.new_RTKDeviceStatusFlags(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_version(self) - - def modemState(self, *args): - return _mscl.RTKDeviceStatusFlags_modemState(self, *args) - - def connectionType(self, *args): - return _mscl.RTKDeviceStatusFlags_connectionType(self, *args) - - def rssi(self, *args): - return _mscl.RTKDeviceStatusFlags_rssi(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_signalQuality(self, *args) - - def towerChangeIndicator(self, *args): - return _mscl.RTKDeviceStatusFlags_towerChangeIndicator(self, *args) - - def nmeaTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_nmeaTimeout(self, *args) - - def serverTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_serverTimeout(self, *args) - - def rtcmTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_rtcmTimeout(self, *args) - - def deviceOutOfRange(self, *args): - return _mscl.RTKDeviceStatusFlags_deviceOutOfRange(self, *args) - - def correctionsUnavailable(self, *args): - return _mscl.RTKDeviceStatusFlags_correctionsUnavailable(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags - -# Register RTKDeviceStatusFlags in _mscl: -_mscl.RTKDeviceStatusFlags_swigregister(RTKDeviceStatusFlags) - -class RTKDeviceStatusFlags_v1(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONTROLLER_STATE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATE - PLATFORM_STATE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATE - CONTROLLER_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATUS_CODE - PLATFORM_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATUS_CODE - RESET_REASON = _mscl.RTKDeviceStatusFlags_v1_RESET_REASON - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_v1_SIGNAL_QUALITY - VERSION = _mscl.RTKDeviceStatusFlags_v1_VERSION - IDLE = _mscl.RTKDeviceStatusFlags_v1_IDLE - ACTIVE = _mscl.RTKDeviceStatusFlags_v1_ACTIVE - MODEM_OFF = _mscl.RTKDeviceStatusFlags_v1_MODEM_OFF - MODEM_POWERING_ON = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_ON - MODEM_CONFIGURE = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONFIGURE - MODEM_POWERING_DOWN = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_DOWN - MODEM_READY = _mscl.RTKDeviceStatusFlags_v1_MODEM_READY - MODEM_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTING - MODEM_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_DISCONNECTING - MODEM_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTED - SERVICE_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTING - SERVICE_CONNECTION_FAILED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_FAILED - SERVICE_CONNECTION_CANCELED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_CANCELED - SERVICE_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_DISCONNECTING - SERVICE_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTED - PLATFORM_ERROR = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_ERROR - RESET_MODEM = _mscl.RTKDeviceStatusFlags_v1_RESET_MODEM - CONTROLLER_OK = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_OK - WAITING_NMEA = _mscl.RTKDeviceStatusFlags_v1_WAITING_NMEA - RTK_TIMEOUT = _mscl.RTKDeviceStatusFlags_v1_RTK_TIMEOUT - RTK_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_v1_RTK_UNAVAILABLE - CONFIG_INVALID = _mscl.RTKDeviceStatusFlags_v1_CONFIG_INVALID - PLATFORM_OK = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_OK - RTK_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_RTK_CONNECTION_DROPPED - CELL_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_CELL_CONNECTION_DROPPED - MODEM_ERROR = _mscl.RTKDeviceStatusFlags_v1_MODEM_ERROR - POWER_ON = _mscl.RTKDeviceStatusFlags_v1_POWER_ON - UNKNOWN = _mscl.RTKDeviceStatusFlags_v1_UNKNOWN - SOFT_RESET = _mscl.RTKDeviceStatusFlags_v1_SOFT_RESET - HARDWARE_ERROR_RESET = _mscl.RTKDeviceStatusFlags_v1_HARDWARE_ERROR_RESET - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_v1_swiginit(self, _mscl.new_RTKDeviceStatusFlags_v1(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_v1_version(self) - - def controllerState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerState(self, *args) - - def platformState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformState(self, *args) - - def controllerStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerStatusCode(self, *args) - - def platformStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformStatusCode(self, *args) - - def resetReason(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_resetReason(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_signalQuality(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags_v1 - -# Register RTKDeviceStatusFlags_v1 in _mscl: -_mscl.RTKDeviceStatusFlags_v1_swigregister(RTKDeviceStatusFlags_v1) - -class GnssSignalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - L1CA = _mscl.GnssSignalConfiguration_L1CA - L2C = _mscl.GnssSignalConfiguration_L2C - L1OF = _mscl.GnssSignalConfiguration_L1OF - L2OF = _mscl.GnssSignalConfiguration_L2OF - E1 = _mscl.GnssSignalConfiguration_E1 - E5B = _mscl.GnssSignalConfiguration_E5B - B1 = _mscl.GnssSignalConfiguration_B1 - B2 = _mscl.GnssSignalConfiguration_B2 - - def __init__(self): - _mscl.GnssSignalConfiguration_swiginit(self, _mscl.new_GnssSignalConfiguration()) - - def enableGpsSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGpsSignal(self, signal, enable) - - def gpsSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_gpsSignalEnabled(self, signal) - - def gpsSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_gpsSignalValue(self, *args) - - def enableGlonassSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGlonassSignal(self, signal, enable) - - def glonassSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_glonassSignalEnabled(self, signal) - - def glonassSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_glonassSignalValue(self, *args) - - def enableGalileoSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGalileoSignal(self, signal, enable) - - def galileoSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_galileoSignalEnabled(self, signal) - - def galileoSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_galileoSignalValue(self, *args) - - def enableBeiDouSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableBeiDouSignal(self, signal, enable) - - def beidouSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_beidouSignalEnabled(self, signal) - - def beidouSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_beidouSignalValue(self, *args) - __swig_destroy__ = _mscl.delete_GnssSignalConfiguration - -# Register GnssSignalConfiguration in _mscl: -_mscl.GnssSignalConfiguration_swigregister(GnssSignalConfiguration) - -class GnssSpartnConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - KEY_SIZE = _mscl.GnssSpartnConfiguration_KEY_SIZE - NONE = _mscl.GnssSpartnConfiguration_NONE - NETWORK = _mscl.GnssSpartnConfiguration_NETWORK - LBAND = _mscl.GnssSpartnConfiguration_LBAND - - def __init__(self): - _mscl.GnssSpartnConfiguration_swiginit(self, _mscl.new_GnssSpartnConfiguration()) - - def enable(self, enable): - return _mscl.GnssSpartnConfiguration_enable(self, enable) - - def enabled(self): - return _mscl.GnssSpartnConfiguration_enabled(self) - - def type(self, *args): - return _mscl.GnssSpartnConfiguration_type(self, *args) - - def currentKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyTow(self, *args) - - def currentKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyWeek(self, *args) - - def currentKey(self, *args): - return _mscl.GnssSpartnConfiguration_currentKey(self, *args) - - def nextKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyTow(self, *args) - - def nextKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyWeek(self, *args) - - def nextKey(self, *args): - return _mscl.GnssSpartnConfiguration_nextKey(self, *args) - __swig_destroy__ = _mscl.delete_GnssSpartnConfiguration - -# Register GnssSpartnConfiguration in _mscl: -_mscl.GnssSpartnConfiguration_swigregister(GnssSpartnConfiguration) - -class PositionReferenceConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - autoConfig = property(_mscl.PositionReferenceConfiguration_autoConfig_get, _mscl.PositionReferenceConfiguration_autoConfig_set) - position = property(_mscl.PositionReferenceConfiguration_position_get, _mscl.PositionReferenceConfiguration_position_set) - - def __init__(self): - _mscl.PositionReferenceConfiguration_swiginit(self, _mscl.new_PositionReferenceConfiguration()) - __swig_destroy__ = _mscl.delete_PositionReferenceConfiguration - -# Register PositionReferenceConfiguration in _mscl: -_mscl.PositionReferenceConfiguration_swigregister(PositionReferenceConfiguration) - -class AntennaLeverArmCalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enabled = property(_mscl.AntennaLeverArmCalConfiguration_enabled_get, _mscl.AntennaLeverArmCalConfiguration_enabled_set) - maxOffsetError = property(_mscl.AntennaLeverArmCalConfiguration_maxOffsetError_get, _mscl.AntennaLeverArmCalConfiguration_maxOffsetError_set) - - def __init__(self): - _mscl.AntennaLeverArmCalConfiguration_swiginit(self, _mscl.new_AntennaLeverArmCalConfiguration()) - __swig_destroy__ = _mscl.delete_AntennaLeverArmCalConfiguration - -# Register AntennaLeverArmCalConfiguration in _mscl: -_mscl.AntennaLeverArmCalConfiguration_swigregister(AntennaLeverArmCalConfiguration) - -class OdometerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.OdometerConfiguration_DISABLED - SINGLE = _mscl.OdometerConfiguration_SINGLE - QUADRATURE = _mscl.OdometerConfiguration_QUADRATURE - - def __init__(self): - _mscl.OdometerConfiguration_swiginit(self, _mscl.new_OdometerConfiguration()) - - def mode(self, *args): - return _mscl.OdometerConfiguration_mode(self, *args) - - def uncertainty(self, *args): - return _mscl.OdometerConfiguration_uncertainty(self, *args) - - def scaling(self, *args): - return _mscl.OdometerConfiguration_scaling(self, *args) - __swig_destroy__ = _mscl.delete_OdometerConfiguration - -# Register OdometerConfiguration in _mscl: -_mscl.OdometerConfiguration_swigregister(OdometerConfiguration) - -class GpioConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - UNUSED_FEATURE = _mscl.GpioConfiguration_UNUSED_FEATURE - GPIO_FEATURE = _mscl.GpioConfiguration_GPIO_FEATURE - PPS_FEATURE = _mscl.GpioConfiguration_PPS_FEATURE - ENCODER_FEATURE = _mscl.GpioConfiguration_ENCODER_FEATURE - EVENT_TIMESTAMP_FEATURE = _mscl.GpioConfiguration_EVENT_TIMESTAMP_FEATURE - UART_FEATURE = _mscl.GpioConfiguration_UART_FEATURE - GPIO_UNUSED = _mscl.GpioConfiguration_GPIO_UNUSED - GPIO_INPUT = _mscl.GpioConfiguration_GPIO_INPUT - GPIO_OUTPUT_LOW = _mscl.GpioConfiguration_GPIO_OUTPUT_LOW - GPIO_OUTPUT_HIGH = _mscl.GpioConfiguration_GPIO_OUTPUT_HIGH - PPS_UNUSED = _mscl.GpioConfiguration_PPS_UNUSED - PPS_INPUT = _mscl.GpioConfiguration_PPS_INPUT - PPS_OUTPUT = _mscl.GpioConfiguration_PPS_OUTPUT - ENCODER_UNUSED = _mscl.GpioConfiguration_ENCODER_UNUSED - ENCODER_A = _mscl.GpioConfiguration_ENCODER_A - ENCODER_B = _mscl.GpioConfiguration_ENCODER_B - TIMESTAMP_UNUSED = _mscl.GpioConfiguration_TIMESTAMP_UNUSED - TIMESTAMP_RISING = _mscl.GpioConfiguration_TIMESTAMP_RISING - TIMESTAMP_FALLING = _mscl.GpioConfiguration_TIMESTAMP_FALLING - TIMESTAMP_EITHER = _mscl.GpioConfiguration_TIMESTAMP_EITHER - UART_UNUSED = _mscl.GpioConfiguration_UART_UNUSED - UART_PORT2_TX = _mscl.GpioConfiguration_UART_PORT2_TX - UART_PORT2_RX = _mscl.GpioConfiguration_UART_PORT2_RX - UART_PORT3_TX = _mscl.GpioConfiguration_UART_PORT3_TX - UART_PORT3_RX = _mscl.GpioConfiguration_UART_PORT3_RX - NONE = _mscl.GpioConfiguration_NONE - OPEN_DRAIN = _mscl.GpioConfiguration_OPEN_DRAIN - PULLDOWN = _mscl.GpioConfiguration_PULLDOWN - PULLUP = _mscl.GpioConfiguration_PULLUP - pinMode = property(_mscl.GpioConfiguration_pinMode_get, _mscl.GpioConfiguration_pinMode_set) - pin = property(_mscl.GpioConfiguration_pin_get, _mscl.GpioConfiguration_pin_set) - feature = property(_mscl.GpioConfiguration_feature_get, _mscl.GpioConfiguration_feature_set) - behavior = property(_mscl.GpioConfiguration_behavior_get, _mscl.GpioConfiguration_behavior_set) - - def pinModeValue(self, *args): - return _mscl.GpioConfiguration_pinModeValue(self, *args) - - def __init__(self): - _mscl.GpioConfiguration_swiginit(self, _mscl.new_GpioConfiguration()) - __swig_destroy__ = _mscl.delete_GpioConfiguration - -# Register GpioConfiguration in _mscl: -_mscl.GpioConfiguration_swigregister(GpioConfiguration) - -DISABLED = _mscl.DISABLED -ENABLED = _mscl.ENABLED -TEST = _mscl.TEST -TEST_PULSE = _mscl.TEST_PULSE -class EventTriggerGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventTriggerGpioParameter_DISABLED - WHILE_HIGH = _mscl.EventTriggerGpioParameter_WHILE_HIGH - WHILE_LOW = _mscl.EventTriggerGpioParameter_WHILE_LOW - EDGE = _mscl.EventTriggerGpioParameter_EDGE - pin = property(_mscl.EventTriggerGpioParameter_pin_get, _mscl.EventTriggerGpioParameter_pin_set) - mode = property(_mscl.EventTriggerGpioParameter_mode_get, _mscl.EventTriggerGpioParameter_mode_set) - - def __init__(self): - _mscl.EventTriggerGpioParameter_swiginit(self, _mscl.new_EventTriggerGpioParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerGpioParameter - -# Register EventTriggerGpioParameter in _mscl: -_mscl.EventTriggerGpioParameter_swigregister(EventTriggerGpioParameter) - -class EventTriggerThresholdParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - WINDOW_TYPE = _mscl.EventTriggerThresholdParameter_WINDOW_TYPE - INTERVAL_TYPE = _mscl.EventTriggerThresholdParameter_INTERVAL_TYPE - type = property(_mscl.EventTriggerThresholdParameter_type_get, _mscl.EventTriggerThresholdParameter_type_set) - lowThreshold = property(_mscl.EventTriggerThresholdParameter_lowThreshold_get, _mscl.EventTriggerThresholdParameter_lowThreshold_set) - highThreshold = property(_mscl.EventTriggerThresholdParameter_highThreshold_get, _mscl.EventTriggerThresholdParameter_highThreshold_set) - - def channel(self, *args): - return _mscl.EventTriggerThresholdParameter_channel(self, *args) - - def channelField(self): - return _mscl.EventTriggerThresholdParameter_channelField(self) - - def channelQualifier(self): - return _mscl.EventTriggerThresholdParameter_channelQualifier(self) - - def channelIndex(self): - return _mscl.EventTriggerThresholdParameter_channelIndex(self) - - def __init__(self): - _mscl.EventTriggerThresholdParameter_swiginit(self, _mscl.new_EventTriggerThresholdParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerThresholdParameter - -# Register EventTriggerThresholdParameter in _mscl: -_mscl.EventTriggerThresholdParameter_swigregister(EventTriggerThresholdParameter) - -class EventTriggerCombinationParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_INPUT_TRIGGERS = _mscl.EventTriggerCombinationParameter_MAX_INPUT_TRIGGERS - LOGIC_NEVER = _mscl.EventTriggerCombinationParameter_LOGIC_NEVER - LOGIC_ALWAYS = _mscl.EventTriggerCombinationParameter_LOGIC_ALWAYS - LOGIC_NONE = _mscl.EventTriggerCombinationParameter_LOGIC_NONE - LOGIC_OR = _mscl.EventTriggerCombinationParameter_LOGIC_OR - LOGIC_NAND = _mscl.EventTriggerCombinationParameter_LOGIC_NAND - LOGIC_XOR_ONE = _mscl.EventTriggerCombinationParameter_LOGIC_XOR_ONE - LOGIC_ONLY_A = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_A - LOGIC_ONLY_B = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_B - LOGIC_ONLY_C = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_C - LOGIC_ONLY_D = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_D - LOGIC_AND_AB = _mscl.EventTriggerCombinationParameter_LOGIC_AND_AB - LOGIC_AB_OR_C = _mscl.EventTriggerCombinationParameter_LOGIC_AB_OR_C - LOGIC_AND = _mscl.EventTriggerCombinationParameter_LOGIC_AND - logicTable = property(_mscl.EventTriggerCombinationParameter_logicTable_get, _mscl.EventTriggerCombinationParameter_logicTable_set) - inputTriggers = property(_mscl.EventTriggerCombinationParameter_inputTriggers_get, _mscl.EventTriggerCombinationParameter_inputTriggers_set) - - def __init__(self): - _mscl.EventTriggerCombinationParameter_swiginit(self, _mscl.new_EventTriggerCombinationParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerCombinationParameter - -# Register EventTriggerCombinationParameter in _mscl: -_mscl.EventTriggerCombinationParameter_swigregister(EventTriggerCombinationParameter) - -class EventTriggerParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerParameters_swiginit(self, _mscl.new_EventTriggerParameters()) - gpio = property(_mscl.EventTriggerParameters_gpio_get, _mscl.EventTriggerParameters_gpio_set) - threshold = property(_mscl.EventTriggerParameters_threshold_get, _mscl.EventTriggerParameters_threshold_set) - combination = property(_mscl.EventTriggerParameters_combination_get, _mscl.EventTriggerParameters_combination_set) - __swig_destroy__ = _mscl.delete_EventTriggerParameters - -# Register EventTriggerParameters in _mscl: -_mscl.EventTriggerParameters_swigregister(EventTriggerParameters) - -class EventTriggerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventTriggerConfiguration_NONE - GPIO_TRIGGER = _mscl.EventTriggerConfiguration_GPIO_TRIGGER - THRESHOLD_TRIGGER = _mscl.EventTriggerConfiguration_THRESHOLD_TRIGGER - COMBINATION_TRIGGER = _mscl.EventTriggerConfiguration_COMBINATION_TRIGGER - instance = property(_mscl.EventTriggerConfiguration_instance_get, _mscl.EventTriggerConfiguration_instance_set) - trigger = property(_mscl.EventTriggerConfiguration_trigger_get, _mscl.EventTriggerConfiguration_trigger_set) - parameters = property(_mscl.EventTriggerConfiguration_parameters_get, _mscl.EventTriggerConfiguration_parameters_set) - - def __init__(self): - _mscl.EventTriggerConfiguration_swiginit(self, _mscl.new_EventTriggerConfiguration()) - __swig_destroy__ = _mscl.delete_EventTriggerConfiguration - -# Register EventTriggerConfiguration in _mscl: -_mscl.EventTriggerConfiguration_swigregister(EventTriggerConfiguration) - -class EventActionGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventActionGpioParameter_DISABLED - ACTIVE_HIGH = _mscl.EventActionGpioParameter_ACTIVE_HIGH - ACTIVE_LOW = _mscl.EventActionGpioParameter_ACTIVE_LOW - ONESHOT_HIGH = _mscl.EventActionGpioParameter_ONESHOT_HIGH - ONESHOT_LOW = _mscl.EventActionGpioParameter_ONESHOT_LOW - TOGGLE = _mscl.EventActionGpioParameter_TOGGLE - pin = property(_mscl.EventActionGpioParameter_pin_get, _mscl.EventActionGpioParameter_pin_set) - mode = property(_mscl.EventActionGpioParameter_mode_get, _mscl.EventActionGpioParameter_mode_set) - - def __init__(self): - _mscl.EventActionGpioParameter_swiginit(self, _mscl.new_EventActionGpioParameter()) - __swig_destroy__ = _mscl.delete_EventActionGpioParameter - -# Register EventActionGpioParameter in _mscl: -_mscl.EventActionGpioParameter_swigregister(EventActionGpioParameter) - -class EventActionMessageParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_DESCRIPTORS = _mscl.EventActionMessageParameter_MAX_DESCRIPTORS - sampleRate = property(_mscl.EventActionMessageParameter_sampleRate_get, _mscl.EventActionMessageParameter_sampleRate_set) - - def dataClass(self): - return _mscl.EventActionMessageParameter_dataClass(self) - - def setChannelFields(self, dataClass, fields): - return _mscl.EventActionMessageParameter_setChannelFields(self, dataClass, fields) - - def getChannelFields(self): - return _mscl.EventActionMessageParameter_getChannelFields(self) - - def __init__(self): - _mscl.EventActionMessageParameter_swiginit(self, _mscl.new_EventActionMessageParameter()) - __swig_destroy__ = _mscl.delete_EventActionMessageParameter - -# Register EventActionMessageParameter in _mscl: -_mscl.EventActionMessageParameter_swigregister(EventActionMessageParameter) - -class EventActionParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventActionParameters_swiginit(self, _mscl.new_EventActionParameters()) - gpio = property(_mscl.EventActionParameters_gpio_get, _mscl.EventActionParameters_gpio_set) - message = property(_mscl.EventActionParameters_message_get, _mscl.EventActionParameters_message_set) - __swig_destroy__ = _mscl.delete_EventActionParameters - -# Register EventActionParameters in _mscl: -_mscl.EventActionParameters_swigregister(EventActionParameters) - -class EventActionConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventActionConfiguration_NONE - GPIO = _mscl.EventActionConfiguration_GPIO - MESSAGE = _mscl.EventActionConfiguration_MESSAGE - instance = property(_mscl.EventActionConfiguration_instance_get, _mscl.EventActionConfiguration_instance_set) - trigger = property(_mscl.EventActionConfiguration_trigger_get, _mscl.EventActionConfiguration_trigger_set) - type = property(_mscl.EventActionConfiguration_type_get, _mscl.EventActionConfiguration_type_set) - parameters = property(_mscl.EventActionConfiguration_parameters_get, _mscl.EventActionConfiguration_parameters_set) - - def __init__(self): - _mscl.EventActionConfiguration_swiginit(self, _mscl.new_EventActionConfiguration()) - __swig_destroy__ = _mscl.delete_EventActionConfiguration - -# Register EventActionConfiguration in _mscl: -_mscl.EventActionConfiguration_swigregister(EventActionConfiguration) - -class EventTriggerInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTriggerInfo_swiginit(self, _mscl.new_EventTriggerInfo(*args)) - ACTIVE = _mscl.EventTriggerInfo_ACTIVE - ENABLED = _mscl.EventTriggerInfo_ENABLED - TEST = _mscl.EventTriggerInfo_TEST - type = property(_mscl.EventTriggerInfo_type_get, _mscl.EventTriggerInfo_type_set) - instanceId = property(_mscl.EventTriggerInfo_instanceId_get, _mscl.EventTriggerInfo_instanceId_set) - - def isActive(self): - return _mscl.EventTriggerInfo_isActive(self) - - def isEnabled(self): - return _mscl.EventTriggerInfo_isEnabled(self) - - def isTestMode(self): - return _mscl.EventTriggerInfo_isTestMode(self) - - def setStatus(self, value): - return _mscl.EventTriggerInfo_setStatus(self, value) - __swig_destroy__ = _mscl.delete_EventTriggerInfo - -# Register EventTriggerInfo in _mscl: -_mscl.EventTriggerInfo_swigregister(EventTriggerInfo) - -class EventActionInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventActionInfo_swiginit(self, _mscl.new_EventActionInfo(*args)) - type = property(_mscl.EventActionInfo_type_get, _mscl.EventActionInfo_type_set) - triggerId = property(_mscl.EventActionInfo_triggerId_get, _mscl.EventActionInfo_triggerId_set) - instanceId = property(_mscl.EventActionInfo_instanceId_get, _mscl.EventActionInfo_instanceId_set) - __swig_destroy__ = _mscl.delete_EventActionInfo - -# Register EventActionInfo in _mscl: -_mscl.EventActionInfo_swigregister(EventActionInfo) - -class MeasurementReferenceFrame(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MeasurementReferenceFrame_swiginit(self, _mscl.new_MeasurementReferenceFrame(*args)) - - def asMipFieldValues(self): - return _mscl.MeasurementReferenceFrame_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.MeasurementReferenceFrame_appendMipFieldValues(self, appendTo) - - def translation(self, *args): - return _mscl.MeasurementReferenceFrame_translation(self, *args) - - def rotation(self, *args): - return _mscl.MeasurementReferenceFrame_rotation(self, *args) - - def errorTrackingEnabled(self): - return _mscl.MeasurementReferenceFrame_errorTrackingEnabled(self) - - def enableErrorTracking(self, enable=True): - return _mscl.MeasurementReferenceFrame_enableErrorTracking(self, enable) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrame - -# Register MeasurementReferenceFrame in _mscl: -_mscl.MeasurementReferenceFrame_swigregister(MeasurementReferenceFrame) - -class MipChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipChannel_swiginit(self, _mscl.new_MipChannel(*args)) - - def channelField(self): - return _mscl.MipChannel_channelField(self) - - def sampleRate(self): - return _mscl.MipChannel_sampleRate(self) - - def rateDecimation(self, sampleRateBase): - return _mscl.MipChannel_rateDecimation(self, sampleRateBase) - __swig_destroy__ = _mscl.delete_MipChannel - -# Register MipChannel in _mscl: -_mscl.MipChannel_swigregister(MipChannel) - -class MipPacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MIP_ACK_NACK_ERROR_NONE = _mscl.MipPacket_MIP_ACK_NACK_ERROR_NONE - MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND - MIP_ACK_NACK_ERROR_CHECKSUM_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_CHECKSUM_INVALID - MIP_ACK_NACK_ERROR_PARAMETER_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_PARAMETER_INVALID - MIP_ACK_NACK_ERROR_COMMAND_FAILED = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_FAILED - MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT - MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET - - def __init__(self): - _mscl.MipPacket_swiginit(self, _mscl.new_MipPacket()) - - @staticmethod - def isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - - def descriptorSet(self): - return _mscl.MipPacket_descriptorSet(self) - - def payload(self): - return _mscl.MipPacket_payload(self) - __swig_destroy__ = _mscl.delete_MipPacket - -# Register MipPacket in _mscl: -_mscl.MipPacket_swigregister(MipPacket) - -def MipPacket_isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - -class MipDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def field(self): - return _mscl.MipDataPoint_field(self) - - def qualifier(self): - return _mscl.MipDataPoint_qualifier(self) - - def hasAddlIdentifiers(self): - return _mscl.MipDataPoint_hasAddlIdentifiers(self) - - def addlIdentifiers(self): - return _mscl.MipDataPoint_addlIdentifiers(self) - - def hasValidFlag(self): - return _mscl.MipDataPoint_hasValidFlag(self) - - def valid(self): - return _mscl.MipDataPoint_valid(self) - - def channelName(self, includeAddlIds=True, consolidatedFormat=False): - return _mscl.MipDataPoint_channelName(self, includeAddlIds, consolidatedFormat) - __swig_destroy__ = _mscl.delete_MipDataPoint - -# Register MipDataPoint in _mscl: -_mscl.MipDataPoint_swigregister(MipDataPoint) - -class ContinuousBIT(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def as_MipDataPoints(self): - return _mscl.ContinuousBIT_as_MipDataPoints(self) - - @staticmethod - def getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - - def data(self): - return _mscl.ContinuousBIT_data(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_bufferOverrun(self) - - def imuClockFault(self): - return _mscl.ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_pressureSelfTestFail(self) - - def filterTimingOverrun(self): - return _mscl.ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.ContinuousBIT_filterTimingUnderrun(self) - -# Register ContinuousBIT in _mscl: -_mscl.ContinuousBIT_swigregister(ContinuousBIT) - -def ContinuousBIT_getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - -class ContinuousBIT_System_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - SYSTEM_CLOCK_FAILURE = _mscl.ContinuousBIT_System_General_SYSTEM_CLOCK_FAILURE - POWER_FAULT = _mscl.ContinuousBIT_System_General_POWER_FAULT - FIRMWARE_FAULT = _mscl.ContinuousBIT_System_General_FIRMWARE_FAULT - TIMING_OVERLOAD = _mscl.ContinuousBIT_System_General_TIMING_OVERLOAD - BUFFER_OVERRUN = _mscl.ContinuousBIT_System_General_BUFFER_OVERRUN - - def flags(self): - return _mscl.ContinuousBIT_System_General_flags(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_System_General_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_System_General_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_System_General_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_System_General_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_System_General_bufferOverrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_General - -# Register ContinuousBIT_System_General in _mscl: -_mscl.ContinuousBIT_System_General_swigregister(ContinuousBIT_System_General) - -class ContinuousBIT_System_Process(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def flags(self): - return _mscl.ContinuousBIT_System_Process_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_Process - -# Register ContinuousBIT_System_Process in _mscl: -_mscl.ContinuousBIT_System_Process_swigregister(ContinuousBIT_System_Process) - -class ContinuousBIT_System(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_System_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_System_GENERAL_FLAGS - PROCESS_FLAGS = _mscl.ContinuousBIT_System_PROCESS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_System_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System - -# Register ContinuousBIT_System in _mscl: -_mscl.ContinuousBIT_System_swigregister(ContinuousBIT_System) - -class ContinuousBIT_IMU_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - CLOCK_FAULT = _mscl.ContinuousBIT_IMU_General_CLOCK_FAULT - COMMUNICATION_FAULT = _mscl.ContinuousBIT_IMU_General_COMMUNICATION_FAULT - TIMING_OVERRUN = _mscl.ContinuousBIT_IMU_General_TIMING_OVERRUN - CALIBRATION_ERROR_ACCEL = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_ACCEL - CALIBRATION_ERROR_GYRO = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_GYRO - CALIBRATION_ERROR_MAG = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_MAG - - def flags(self): - return _mscl.ContinuousBIT_IMU_General_flags(self) - - def clockFault(self): - return _mscl.ContinuousBIT_IMU_General_clockFault(self) - - def communicationFault(self): - return _mscl.ContinuousBIT_IMU_General_communicationFault(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_IMU_General_timingOverrun(self) - - def calibrationErrorAccel(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorAccel(self) - - def calibrationErrorGyro(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorGyro(self) - - def calibrationErrorMag(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorMag(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_General - -# Register ContinuousBIT_IMU_General in _mscl: -_mscl.ContinuousBIT_IMU_General_swigregister(ContinuousBIT_IMU_General) - -class ContinuousBIT_IMU_Sensors(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - ACCEL_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_GENERAL_FAULT - ACCEL_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_OVERRANGE - ACCEL_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_SELF_TEST_FAIL - GYRO_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_GYRO_GENERAL_FAULT - GYRO_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_GYRO_OVERRANGE - GYRO_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_GYRO_SELF_TEST_FAIL - MAG_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_MAG_GENERAL_FAULT - MAG_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_MAG_OVERRANGE - MAG_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_MAG_SELF_TEST_FAIL - PRESSURE_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_GENERAL_FAULT - PRESSURE_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_OVERRANGE - PRESSURE_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_SELF_TEST_FAIL - - def flags(self): - return _mscl.ContinuousBIT_IMU_Sensors_flags(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureSelfTestFail(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_Sensors - -# Register ContinuousBIT_IMU_Sensors in _mscl: -_mscl.ContinuousBIT_IMU_Sensors_swigregister(ContinuousBIT_IMU_Sensors) - -class ContinuousBIT_IMU(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_IMU_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_IMU_GENERAL_FLAGS - SENSORS_FLAGS = _mscl.ContinuousBIT_IMU_SENSORS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_IMU_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU - -# Register ContinuousBIT_IMU in _mscl: -_mscl.ContinuousBIT_IMU_swigregister(ContinuousBIT_IMU) - -class ContinuousBIT_Filter_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - TIMING_OVERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_OVERRUN - TIMING_UNDERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_UNDERRUN - - def flags(self): - return _mscl.ContinuousBIT_Filter_General_flags(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_Filter_General_timingOverrun(self) - - def timingUnderrun(self): - return _mscl.ContinuousBIT_Filter_General_timingUnderrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter_General - -# Register ContinuousBIT_Filter_General in _mscl: -_mscl.ContinuousBIT_Filter_General_swigregister(ContinuousBIT_Filter_General) - -class ContinuousBIT_Filter(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_Filter_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_Filter_GENERAL_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_Filter_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter - -# Register ContinuousBIT_Filter in _mscl: -_mscl.ContinuousBIT_Filter_swigregister(ContinuousBIT_Filter) - -class CV7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_General_swiginit(self, _mscl.new_CV7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_General - -# Register CV7ContinuousBIT_System_General in _mscl: -_mscl.CV7ContinuousBIT_System_General_swigregister(CV7ContinuousBIT_System_General) - -class CV7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_Process_swiginit(self, _mscl.new_CV7ContinuousBIT_System_Process(*args)) - IMU_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_IMU_PROCESS_FAULT - IMU_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_IMU_RATE_MISMATCH - IMU_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_IMU_DROPPED_DATA - IMU_STUCK = _mscl.CV7ContinuousBIT_System_Process_IMU_STUCK - FILTER_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_FILTER_PROCESS_FAULT - FILTER_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_FILTER_DROPPED_DATA - FILTER_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_FILTER_RATE_MISMATCH - FILTER_STUCK = _mscl.CV7ContinuousBIT_System_Process_FILTER_STUCK - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_filterStuck(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_Process - -# Register CV7ContinuousBIT_System_Process in _mscl: -_mscl.CV7ContinuousBIT_System_Process_swigregister(CV7ContinuousBIT_System_Process) - -class CV7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_swiginit(self, _mscl.new_CV7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.CV7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System - -# Register CV7ContinuousBIT_System in _mscl: -_mscl.CV7ContinuousBIT_System_swigregister(CV7ContinuousBIT_System) - -class CV7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_General - -# Register CV7ContinuousBIT_IMU_General in _mscl: -_mscl.CV7ContinuousBIT_IMU_General_swigregister(CV7ContinuousBIT_IMU_General) - -class CV7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_Sensors - -# Register CV7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.CV7ContinuousBIT_IMU_Sensors_swigregister(CV7ContinuousBIT_IMU_Sensors) - -class CV7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU(*args)) - FACTORY_BITS_INVALID = _mscl.CV7ContinuousBIT_IMU_FACTORY_BITS_INVALID - - def general(self): - return _mscl.CV7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.CV7ContinuousBIT_IMU_sensors(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_IMU_factoryBitsInvalid(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU - -# Register CV7ContinuousBIT_IMU in _mscl: -_mscl.CV7ContinuousBIT_IMU_swigregister(CV7ContinuousBIT_IMU) - -class CV7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter_General(*args)) - FAULT = _mscl.CV7ContinuousBIT_Filter_General_FAULT - - def fault(self): - return _mscl.CV7ContinuousBIT_Filter_General_fault(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter_General - -# Register CV7ContinuousBIT_Filter_General in _mscl: -_mscl.CV7ContinuousBIT_Filter_General_swigregister(CV7ContinuousBIT_Filter_General) - -class CV7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter - -# Register CV7ContinuousBIT_Filter in _mscl: -_mscl.CV7ContinuousBIT_Filter_swigregister(CV7ContinuousBIT_Filter) - -class CV7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.CV7ContinuousBIT_swiginit(self, _mscl.new_CV7ContinuousBIT(bytes)) - - def system(self): - return _mscl.CV7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.CV7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.CV7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.CV7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.CV7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.CV7ContinuousBIT_bufferOverrun(self) - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_filterStuck(self) - - def imu(self): - return _mscl.CV7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.CV7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.CV7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.CV7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.CV7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.CV7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.CV7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.CV7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.CV7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.CV7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.CV7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.CV7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.CV7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.CV7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.CV7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.CV7ContinuousBIT_pressureSelfTestFail(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_factoryBitsInvalid(self) - - def filter(self): - return _mscl.CV7ContinuousBIT_filter(self) - - def filterFault(self): - return _mscl.CV7ContinuousBIT_filterFault(self) - - def filterTimingOverrun(self): - return _mscl.CV7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.CV7ContinuousBIT_filterTimingUnderrun(self) - - def as_MipDataPoints(self): - return _mscl.CV7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT - -# Register CV7ContinuousBIT in _mscl: -_mscl.CV7ContinuousBIT_swigregister(CV7ContinuousBIT) - -class GQ7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_General - -# Register GQ7ContinuousBIT_System_General in _mscl: -_mscl.GQ7ContinuousBIT_System_General_swigregister(GQ7ContinuousBIT_System_General) - -class GQ7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_Process_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_Process(*args)) - IMU_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_CONTROL_LINE_FAULT - IMU_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_COMMAND_RESPONSE_FAULT - IMU_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_SPI_TRANSFER_FAULT - IMU_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_DATA_FRAME_FAULT - FILTER_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_CONTROL_LINE_FAULT - FILTER_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_COMMAND_RESPONSE_FAULT - FILTER_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_SPI_TRANSFER_FAULT - FILTER_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_DATA_FRAME_FAULT - GNSS_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_CONTROL_LINE_FAULT - GNSS_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_COMMAND_RESPONSE_FAULT - GNSS_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_SPI_TRANSFER_FAULT - GNSS_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_DATA_FRAME_FAULT - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssDataFrameFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_Process - -# Register GQ7ContinuousBIT_System_Process in _mscl: -_mscl.GQ7ContinuousBIT_System_Process_swigregister(GQ7ContinuousBIT_System_Process) - -class GQ7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_swiginit(self, _mscl.new_GQ7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.GQ7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System - -# Register GQ7ContinuousBIT_System in _mscl: -_mscl.GQ7ContinuousBIT_System_swigregister(GQ7ContinuousBIT_System) - -class GQ7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_General - -# Register GQ7ContinuousBIT_IMU_General in _mscl: -_mscl.GQ7ContinuousBIT_IMU_General_swigregister(GQ7ContinuousBIT_IMU_General) - -class GQ7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_Sensors - -# Register GQ7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.GQ7ContinuousBIT_IMU_Sensors_swigregister(GQ7ContinuousBIT_IMU_Sensors) - -class GQ7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.GQ7ContinuousBIT_IMU_sensors(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU - -# Register GQ7ContinuousBIT_IMU in _mscl: -_mscl.GQ7ContinuousBIT_IMU_swigregister(GQ7ContinuousBIT_IMU) - -class GQ7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_HARDWARE_FAULT - COMMUNICATION_ERROR_IMU_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_IMU_SPI - COMMUNICATION_ERROR_GNSS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_GNSS_SPI - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_COMMS_UART = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_UART - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationError(self) - - def communicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorImuSpi(self) - - def communicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorGnssSpi(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsSpi(self) - - def communicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsUart(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter_General - -# Register GQ7ContinuousBIT_Filter_General in _mscl: -_mscl.GQ7ContinuousBIT_Filter_General_swigregister(GQ7ContinuousBIT_Filter_General) - -class GQ7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter - -# Register GQ7ContinuousBIT_Filter in _mscl: -_mscl.GQ7ContinuousBIT_Filter_swigregister(GQ7ContinuousBIT_Filter) - -class GQ7ContinuousBIT_GNSS_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_HARDWARE_FAULT - COMMUNICATION_ERROR_COMMS_SERIAL = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SERIAL - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_NAV_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_NAV_SPI - GPS_TIME_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_GPS_TIME_FAULT - TIMING_OVERRUN = _mscl.GQ7ContinuousBIT_GNSS_General_TIMING_OVERRUN - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_flags(self) - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationError(self) - - def communicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSerial(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSpi(self) - - def communicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_gpsTimeFault(self) - - def timingOverrun(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_timingOverrun(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_General - -# Register GQ7ContinuousBIT_GNSS_General in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_General_swigregister(GQ7ContinuousBIT_GNSS_General) - -class GQ7ContinuousBIT_GNSS_Receivers(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_Receivers_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_Receivers(*args)) - POWER_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_1 - FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_1 - SHORTED_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_1 - OPEN_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_1 - SOLUTION_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_1 - POWER_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_2 - FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_2 - SHORTED_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_2 - OPEN_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_2 - SOLUTION_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_2 - RTCM_COMMUNICATION_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTCM_COMMUNICATION_FAULT - RTK_DONGLE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTK_DONGLE_FAULT - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_flags(self) - - def powerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver1(self) - - def faultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver1(self) - - def shortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna1(self) - - def openAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna1(self) - - def solutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver1(self) - - def powerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver2(self) - - def faultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver2(self) - - def shortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna2(self) - - def openAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna2(self) - - def solutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtkDongleFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_Receivers - -# Register GQ7ContinuousBIT_GNSS_Receivers in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_Receivers_swigregister(GQ7ContinuousBIT_GNSS_Receivers) - -class GQ7ContinuousBIT_GNSS(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS(*args)) - RESPONSE_OFFSET = _mscl.GQ7ContinuousBIT_GNSS_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_GENERAL_FLAGS - RECEIVERS_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_RECEIVERS_FLAGS - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_flags(self) - - def general(self): - return _mscl.GQ7ContinuousBIT_GNSS_general(self) - - def receivers(self): - return _mscl.GQ7ContinuousBIT_GNSS_receivers(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS - -# Register GQ7ContinuousBIT_GNSS in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_swigregister(GQ7ContinuousBIT_GNSS) - -class GQ7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.GQ7ContinuousBIT_swiginit(self, _mscl.new_GQ7ContinuousBIT(bytes)) - - def system(self): - return _mscl.GQ7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.GQ7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.GQ7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.GQ7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.GQ7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.GQ7ContinuousBIT_bufferOverrun(self) - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_gnssDataFrameFault(self) - - def imu(self): - return _mscl.GQ7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.GQ7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.GQ7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.GQ7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.GQ7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.GQ7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.GQ7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.GQ7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.GQ7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.GQ7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_pressureSelfTestFail(self) - - def filter(self): - return _mscl.GQ7ContinuousBIT_filter(self) - - def filterClockFault(self): - return _mscl.GQ7ContinuousBIT_filterClockFault(self) - - def filterHardwareFault(self): - return _mscl.GQ7ContinuousBIT_filterHardwareFault(self) - - def filterTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingUnderrun(self) - - def filterCommunicationError(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationError(self) - - def filterCommunicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorImuSpi(self) - - def filterCommunicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorGnssSpi(self) - - def filterCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsSpi(self) - - def filterCommunicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsUart(self) - - def gnss(self): - return _mscl.GQ7ContinuousBIT_gnss(self) - - def gnssClockFault(self): - return _mscl.GQ7ContinuousBIT_gnssClockFault(self) - - def gnssHardwareFault(self): - return _mscl.GQ7ContinuousBIT_gnssHardwareFault(self) - - def gnssCommunicationError(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationError(self) - - def gnssCommunicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSerial(self) - - def gnssCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSpi(self) - - def gnssCommunicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_gpsTimeFault(self) - - def gnssTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_gnssTimingOverrun(self) - - def gnssPowerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver1(self) - - def gnssFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver1(self) - - def gnssShortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna1(self) - - def gnssOpenAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna1(self) - - def gnssSolutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver1(self) - - def gnssPowerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver2(self) - - def gnssFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver2(self) - - def gnssShortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna2(self) - - def gnssOpenAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna2(self) - - def gnssSolutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_rtkDongleFault(self) - - def as_MipDataPoints(self): - return _mscl.GQ7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT - -# Register GQ7ContinuousBIT in _mscl: -_mscl.GQ7ContinuousBIT_swigregister(GQ7ContinuousBIT) - -class MipSharedDataFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EVENT_SOURCE_NONE = _mscl.MipSharedDataFields_EVENT_SOURCE_NONE - EVENT_SOURCE_UNKNOWN = _mscl.MipSharedDataFields_EVENT_SOURCE_UNKNOWN - - def __init__(self): - _mscl.MipSharedDataFields_swiginit(self, _mscl.new_MipSharedDataFields()) - - def hasEventSource(self): - return _mscl.MipSharedDataFields_hasEventSource(self) - - def eventSource(self): - return _mscl.MipSharedDataFields_eventSource(self) - - def hasTicks(self): - return _mscl.MipSharedDataFields_hasTicks(self) - - def ticks(self): - return _mscl.MipSharedDataFields_ticks(self) - - def hasDeltaTicks(self): - return _mscl.MipSharedDataFields_hasDeltaTicks(self) - - def deltaTicks(self): - return _mscl.MipSharedDataFields_deltaTicks(self) - - def hasGpsTimestamp(self): - return _mscl.MipSharedDataFields_hasGpsTimestamp(self) - - def gpsTimestamp(self): - return _mscl.MipSharedDataFields_gpsTimestamp(self) - - def gpsTimestampValid(self): - return _mscl.MipSharedDataFields_gpsTimestampValid(self) - - def hasDeltaTime(self): - return _mscl.MipSharedDataFields_hasDeltaTime(self) - - def deltaTime(self): - return _mscl.MipSharedDataFields_deltaTime(self) - - def hasReferenceTime(self): - return _mscl.MipSharedDataFields_hasReferenceTime(self) - - def referenceTime(self): - return _mscl.MipSharedDataFields_referenceTime(self) - - def hasDeltaReferenceTime(self): - return _mscl.MipSharedDataFields_hasDeltaReferenceTime(self) - - def deltaReferenceTime(self): - return _mscl.MipSharedDataFields_deltaReferenceTime(self) - - def hasExternalTimestamp(self): - return _mscl.MipSharedDataFields_hasExternalTimestamp(self) - - def externalTimestamp(self): - return _mscl.MipSharedDataFields_externalTimestamp(self) - - def externalTimestampValid(self): - return _mscl.MipSharedDataFields_externalTimestampValid(self) - - def hasDeltaExternalTime(self): - return _mscl.MipSharedDataFields_hasDeltaExternalTime(self) - - def deltaExternalTime(self): - return _mscl.MipSharedDataFields_deltaExternalTime(self) - - def deltaExternalTimeValid(self): - return _mscl.MipSharedDataFields_deltaExternalTimeValid(self) - - def get(self, *args): - return _mscl.MipSharedDataFields_get(self, *args) - __swig_destroy__ = _mscl.delete_MipSharedDataFields - -# Register MipSharedDataFields in _mscl: -_mscl.MipSharedDataFields_swigregister(MipSharedDataFields) - -class MipDataPacket(MipPacket): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipDataPacket_swiginit(self, _mscl.new_MipDataPacket(*args)) - - def data(self): - return _mscl.MipDataPacket_data(self) - - def shared(self): - return _mscl.MipDataPacket_shared(self) - - def collectedTimestamp(self): - return _mscl.MipDataPacket_collectedTimestamp(self) - - def deviceTimestamp(self): - return _mscl.MipDataPacket_deviceTimestamp(self) - - def hasDeviceTime(self): - return _mscl.MipDataPacket_hasDeviceTime(self) - - def deviceTimeValid(self): - return _mscl.MipDataPacket_deviceTimeValid(self) - - def deviceTimeFlags(self): - return _mscl.MipDataPacket_deviceTimeFlags(self) - __swig_destroy__ = _mscl.delete_MipDataPacket - -# Register MipDataPacket in _mscl: -_mscl.MipDataPacket_swigregister(MipDataPacket) - -class RawBytePacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INVALID_PACKET = _mscl.RawBytePacket_INVALID_PACKET - DATA_PACKET = _mscl.RawBytePacket_DATA_PACKET - COMMAND_PACKET = _mscl.RawBytePacket_COMMAND_PACKET - NO_PACKET_FOUND = _mscl.RawBytePacket_NO_PACKET_FOUND - FROM_READ = _mscl.RawBytePacket_FROM_READ - FROM_SEND = _mscl.RawBytePacket_FROM_SEND - - def __init__(self): - _mscl.RawBytePacket_swiginit(self, _mscl.new_RawBytePacket()) - - def type(self, *args): - return _mscl.RawBytePacket_type(self, *args) - - def source(self, *args): - return _mscl.RawBytePacket_source(self, *args) - - def payload(self, *args): - return _mscl.RawBytePacket_payload(self, *args) - __swig_destroy__ = _mscl.delete_RawBytePacket - -# Register RawBytePacket in _mscl: -_mscl.RawBytePacket_swigregister(RawBytePacket) - -class MipNodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_MipNodeFeatures - - @staticmethod - def isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - - def supportsCategory(self, dataClass): - return _mscl.MipNodeFeatures_supportsCategory(self, dataClass) - - def supportsCommand(self, commandId): - return _mscl.MipNodeFeatures_supportsCommand(self, commandId) - - def supportedCommands(self): - return _mscl.MipNodeFeatures_supportedCommands(self) - - def supportsChannelField(self, fieldId): - return _mscl.MipNodeFeatures_supportsChannelField(self, fieldId) - - def filterSupportedChannelFields(self, fields): - return _mscl.MipNodeFeatures_filterSupportedChannelFields(self, fields) - - def supportedChannelFields(self, *args): - return _mscl.MipNodeFeatures_supportedChannelFields(self, *args) - - def supportedSampleRates(self, dataClass): - return _mscl.MipNodeFeatures_supportedSampleRates(self, dataClass) - - def baseDataRate(self, dataClass): - return _mscl.MipNodeFeatures_baseDataRate(self, dataClass) - - def gnssReceiverInfo(self): - return _mscl.MipNodeFeatures_gnssReceiverInfo(self) - - def supportedGnssSources(self): - return _mscl.MipNodeFeatures_supportedGnssSources(self) - - def supportedSensorRanges(self, *args): - return _mscl.MipNodeFeatures_supportedSensorRanges(self, *args) - - def getCommPortInfo(self): - return _mscl.MipNodeFeatures_getCommPortInfo(self) - - def useLegacyIdsForEnableDataStream(self): - return _mscl.MipNodeFeatures_useLegacyIdsForEnableDataStream(self) - - def supportedHeadingUpdateOptions(self): - return _mscl.MipNodeFeatures_supportedHeadingUpdateOptions(self) - - def supportedHeadingAlignmentMethods(self): - return _mscl.MipNodeFeatures_supportedHeadingAlignmentMethods(self) - - def supportedStatusSelectors(self): - return _mscl.MipNodeFeatures_supportedStatusSelectors(self) - - def supportedEstimationControlOptions(self): - return _mscl.MipNodeFeatures_supportedEstimationControlOptions(self) - - def supportedVehicleModeTypes(self): - return _mscl.MipNodeFeatures_supportedVehicleModeTypes(self) - - def supportedAdaptiveMeasurementModes(self): - return _mscl.MipNodeFeatures_supportedAdaptiveMeasurementModes(self) - - def supportedAdaptiveFilterLevels(self): - return _mscl.MipNodeFeatures_supportedAdaptiveFilterLevels(self) - - def supportedAidingMeasurementOptions(self): - return _mscl.MipNodeFeatures_supportedAidingMeasurementOptions(self) - - def supportedPpsSourceOptions(self): - return _mscl.MipNodeFeatures_supportedPpsSourceOptions(self) - - def supportedGpioPins(self): - return _mscl.MipNodeFeatures_supportedGpioPins(self) - - def supportedGpioPinModes(self, feature, behavior): - return _mscl.MipNodeFeatures_supportedGpioPinModes(self, feature, behavior) - - def supportedGpioBehaviors(self, feature, pin): - return _mscl.MipNodeFeatures_supportedGpioBehaviors(self, feature, pin) - - def supportedGpioFeatures(self, pin): - return _mscl.MipNodeFeatures_supportedGpioFeatures(self, pin) - - def supportedGpioConfigurations(self): - return _mscl.MipNodeFeatures_supportedGpioConfigurations(self) - - def supportedGnssSignalConfigurations(self): - return _mscl.MipNodeFeatures_supportedGnssSignalConfigurations(self) - - def supportedDeclinationSources(self): - return _mscl.MipNodeFeatures_supportedDeclinationSources(self) - - def supportedInclinationSources(self): - return _mscl.MipNodeFeatures_supportedInclinationSources(self) - - def supportedMagneticMagnitudeSources(self): - return _mscl.MipNodeFeatures_supportedMagneticMagnitudeSources(self) - - def supportedEventThresholdChannels(self): - return _mscl.MipNodeFeatures_supportedEventThresholdChannels(self) - - def supportedEventActionInfo(self): - return _mscl.MipNodeFeatures_supportedEventActionInfo(self) - - def supportedEventTriggerInfo(self): - return _mscl.MipNodeFeatures_supportedEventTriggerInfo(self) - - def supportsNorthCompensation(self): - return _mscl.MipNodeFeatures_supportsNorthCompensation(self) - - def supportedLowPassFilterChannelFields(self): - return _mscl.MipNodeFeatures_supportedLowPassFilterChannelFields(self) - - def maxMeasurementReferenceFrameId(self): - return _mscl.MipNodeFeatures_maxMeasurementReferenceFrameId(self) - -# Register MipNodeFeatures in _mscl: -_mscl.MipNodeFeatures_swigregister(MipNodeFeatures) - -def MipNodeFeatures_isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - -class MipNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.MipNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - def getConfigCommandBytes(self): - return _mscl.MipNode_getConfigCommandBytes(self) - - def sendCommandBytes(self, *args): - return _mscl.MipNode_sendCommandBytes(self, *args) - - @staticmethod - def deviceName(serial): - return _mscl.MipNode_deviceName(serial) - - def connection(self): - return _mscl.MipNode_connection(self) - - def features(self): - return _mscl.MipNode_features(self) - - def clearDeviceInfo(self): - return _mscl.MipNode_clearDeviceInfo(self) - - def lastCommunicationTime(self): - return _mscl.MipNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.MipNode_lastDeviceState(self) - - def setLastDeviceState(self, state): - return _mscl.MipNode_setLastDeviceState(self, state) - - def firmwareVersion(self): - return _mscl.MipNode_firmwareVersion(self) - - def model(self): - return _mscl.MipNode_model(self) - - def modelName(self): - return _mscl.MipNode_modelName(self) - - def modelNumber(self): - return _mscl.MipNode_modelNumber(self) - - def serialNumber(self): - return _mscl.MipNode_serialNumber(self) - - def lotNumber(self): - return _mscl.MipNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.MipNode_deviceOptions(self) - - def timeout(self, *args): - return _mscl.MipNode_timeout(self, *args) - - def name(self): - return _mscl.MipNode_name(self) - - def ping(self): - return _mscl.MipNode_ping(self) - - def setToIdle(self): - return _mscl.MipNode_setToIdle(self) - - def cyclePower(self): - return _mscl.MipNode_cyclePower(self) - - def resume(self): - return _mscl.MipNode_resume(self) - - def getCommunicationMode(self): - return _mscl.MipNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.MipNode_setCommunicationMode(self, communicationMode) - - def saveSettingsAsStartup(self, *args): - return _mscl.MipNode_saveSettingsAsStartup(self, *args) - - def loadStartupSettings(self, *args): - return _mscl.MipNode_loadStartupSettings(self, *args) - - def loadFactoryDefaultSettings(self, *args): - return _mscl.MipNode_loadFactoryDefaultSettings(self, *args) - - def setUARTBaudRate(self, *args): - return _mscl.MipNode_setUARTBaudRate(self, *args) - - def getUARTBaudRate(self, portId=1): - return _mscl.MipNode_getUARTBaudRate(self, portId) - - def getRawBytePackets(self, timeout=0, maxPackets=0): - return _mscl.MipNode_getRawBytePackets(self, timeout, maxPackets) - -# Register MipNode in _mscl: -_mscl.MipNode_swigregister(MipNode) - -def MipNode_deviceName(serial): - return _mscl.MipNode_deviceName(serial) - -class InertialNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.InertialNode_swiginit(self, _mscl.new_InertialNode(connection)) - __swig_destroy__ = _mscl.delete_InertialNode - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.InertialNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.InertialNode_totalPackets(self) - - def pollData(self, *args): - return _mscl.InertialNode_pollData(self, *args) - - def getDataRateBase(self, dataClass): - return _mscl.InertialNode_getDataRateBase(self, dataClass) - - def getActiveChannelFields(self, dataClass): - return _mscl.InertialNode_getActiveChannelFields(self, dataClass) - - def setActiveChannelFields(self, dataClass, channels): - return _mscl.InertialNode_setActiveChannelFields(self, dataClass, channels) - - def saveActiveChannelFields(self, dataClass): - return _mscl.InertialNode_saveActiveChannelFields(self, dataClass) - - def setFactoryStreamingChannels(self, option): - return _mscl.InertialNode_setFactoryStreamingChannels(self, option) - - def getInterfaceControl(self, interfaceId): - return _mscl.InertialNode_getInterfaceControl(self, interfaceId) - - def setInterfaceControl(self, *args): - return _mscl.InertialNode_setInterfaceControl(self, *args) - - def getCommunicationMode(self): - return _mscl.InertialNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.InertialNode_setCommunicationMode(self, communicationMode) - - def isDataStreamEnabled(self, dataClass): - return _mscl.InertialNode_isDataStreamEnabled(self, dataClass) - - def enableDataStream(self, dataClass, enable=True, resumeStreaming=True): - return _mscl.InertialNode_enableDataStream(self, dataClass, enable, resumeStreaming) - - def resetFilter(self): - return _mscl.InertialNode_resetFilter(self) - - def runFilter(self): - return _mscl.InertialNode_runFilter(self) - - def getAutoInitialization(self): - return _mscl.InertialNode_getAutoInitialization(self) - - def setAutoInitialization(self, enable): - return _mscl.InertialNode_setAutoInitialization(self, enable) - - def getAltitudeAid(self): - return _mscl.InertialNode_getAltitudeAid(self) - - def setAltitudeAid(self, enable): - return _mscl.InertialNode_setAltitudeAid(self, enable) - - def getPitchRollAid(self): - return _mscl.InertialNode_getPitchRollAid(self) - - def setPitchRollAid(self, enable): - return _mscl.InertialNode_setPitchRollAid(self, enable) - - def enableVerticalGyroConstraint(self, enable): - return _mscl.InertialNode_enableVerticalGyroConstraint(self, enable) - - def verticalGyroConstraintEnabled(self): - return _mscl.InertialNode_verticalGyroConstraintEnabled(self) - - def enableWheeledVehicleConstraint(self, enable): - return _mscl.InertialNode_enableWheeledVehicleConstraint(self, enable) - - def wheeledVehicleConstraintEnabled(self): - return _mscl.InertialNode_wheeledVehicleConstraintEnabled(self) - - def setVelocityZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setVelocityZUPT(self, ZUPTSettings) - - def getVelocityZUPT(self): - return _mscl.InertialNode_getVelocityZUPT(self) - - def setAngularRateZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setAngularRateZUPT(self, ZUPTSettings) - - def getAngularRateZUPT(self): - return _mscl.InertialNode_getAngularRateZUPT(self) - - def cmdedVelZUPT(self): - return _mscl.InertialNode_cmdedVelZUPT(self) - - def cmdedAngRateZUPT(self): - return _mscl.InertialNode_cmdedAngRateZUPT(self) - - def setInitialAttitude(self, attitude): - return _mscl.InertialNode_setInitialAttitude(self, attitude) - - def setInitialHeading(self, heading): - return _mscl.InertialNode_setInitialHeading(self, heading) - - def getInitialFilterConfiguration(self): - return _mscl.InertialNode_getInitialFilterConfiguration(self) - - def setInitialFilterConfiguration(self, filterConfig): - return _mscl.InertialNode_setInitialFilterConfiguration(self, filterConfig) - - def getSensorToVehicleRotation_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleRotation_eulerAngles(self) - - def setSensorToVehicleRotation_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleRotation_eulerAngles(self, angles) - - def getSensorToVehicleRotation_matrix(self): - return _mscl.InertialNode_getSensorToVehicleRotation_matrix(self) - - def setSensorToVehicleRotation_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleRotation_matrix(self, dcm) - - def getSensorToVehicleRotation_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleRotation_quaternion(self) - - def setSensorToVehicleRotation_quaternion(self, rotation): - return _mscl.InertialNode_setSensorToVehicleRotation_quaternion(self, rotation) - - def getSensorToVehicleTransform_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleTransform_eulerAngles(self) - - def setSensorToVehicleTransform_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleTransform_eulerAngles(self, angles) - - def getSensorToVehicleTransform_matrix(self): - return _mscl.InertialNode_getSensorToVehicleTransform_matrix(self) - - def setSensorToVehicleTransform_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleTransform_matrix(self, dcm) - - def getSensorToVehicleTransform_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleTransform_quaternion(self) - - def setSensorToVehicleTransform_quaternion(self, transformation): - return _mscl.InertialNode_setSensorToVehicleTransform_quaternion(self, transformation) - - def getSensorToVehicleOffset(self): - return _mscl.InertialNode_getSensorToVehicleOffset(self) - - def setSensorToVehicleOffset(self, offset): - return _mscl.InertialNode_setSensorToVehicleOffset(self, offset) - - def getAntennaOffset(self): - return _mscl.InertialNode_getAntennaOffset(self) - - def setAntennaOffset(self, offset): - return _mscl.InertialNode_setAntennaOffset(self, offset) - - def getGNSSAssistedFixControl(self): - return _mscl.InertialNode_getGNSSAssistedFixControl(self) - - def setGNSSAssistedFixControl(self, enableAssistedFix): - return _mscl.InertialNode_setGNSSAssistedFixControl(self, enableAssistedFix) - - def getGNSSAssistTimeUpdate(self): - return _mscl.InertialNode_getGNSSAssistTimeUpdate(self) - - def setGNSSAssistTimeUpdate(self, timeUpdate): - return _mscl.InertialNode_setGNSSAssistTimeUpdate(self, timeUpdate) - - def getGPSTimeUpdate(self, timeFrame): - return _mscl.InertialNode_getGPSTimeUpdate(self, timeFrame) - - def setGPSTimeUpdate(self, arg2, timeData): - return _mscl.InertialNode_setGPSTimeUpdate(self, arg2, timeData) - - def setConstellationSettings(self, dataToUse): - return _mscl.InertialNode_setConstellationSettings(self, dataToUse) - - def getConstellationSettings(self): - return _mscl.InertialNode_getConstellationSettings(self) - - def setSBASSettings(self, dataToUse): - return _mscl.InertialNode_setSBASSettings(self, dataToUse) - - def getSBASSettings(self): - return _mscl.InertialNode_getSBASSettings(self) - - def setAccelerometerBias(self, biasVector): - return _mscl.InertialNode_setAccelerometerBias(self, biasVector) - - def getAccelerometerBias(self): - return _mscl.InertialNode_getAccelerometerBias(self) - - def setGyroBias(self, biasVector): - return _mscl.InertialNode_setGyroBias(self, biasVector) - - def getGyroBias(self): - return _mscl.InertialNode_getGyroBias(self) - - def captureGyroBias(self, samplingTime): - return _mscl.InertialNode_captureGyroBias(self, samplingTime) - - def findMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_findMagnetometerCaptureAutoCalibration(self) - - def saveMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_saveMagnetometerCaptureAutoCalibration(self) - - def setMagnetometerSoftIronMatrix(self, matrix): - return _mscl.InertialNode_setMagnetometerSoftIronMatrix(self, matrix) - - def getMagnetometerSoftIronMatrix(self): - return _mscl.InertialNode_getMagnetometerSoftIronMatrix(self) - - def setMagnetometerHardIronOffset(self, offsetVector): - return _mscl.InertialNode_setMagnetometerHardIronOffset(self, offsetVector) - - def getMagnetometerHardIronOffset(self): - return _mscl.InertialNode_getMagnetometerHardIronOffset(self) - - def setConingAndScullingEnable(self, enable): - return _mscl.InertialNode_setConingAndScullingEnable(self, enable) - - def getConingAndScullingEnable(self): - return _mscl.InertialNode_getConingAndScullingEnable(self) - - def setLowPassFilterSettings(self, data): - return _mscl.InertialNode_setLowPassFilterSettings(self, data) - - def getLowPassFilterSettings(self, dataDescriptors): - return _mscl.InertialNode_getLowPassFilterSettings(self, dataDescriptors) - - def setComplementaryFilterSettings(self, data): - return _mscl.InertialNode_setComplementaryFilterSettings(self, data) - - def getComplementaryFilterSettings(self): - return _mscl.InertialNode_getComplementaryFilterSettings(self) - - def getBasicDeviceStatus(self): - return _mscl.InertialNode_getBasicDeviceStatus(self) - - def getDiagnosticDeviceStatus(self): - return _mscl.InertialNode_getDiagnosticDeviceStatus(self) - - def sendRawRTCM_2_3Message(self, theMessage): - return _mscl.InertialNode_sendRawRTCM_2_3Message(self, theMessage) - - def setVehicleDynamicsMode(self, mode): - return _mscl.InertialNode_setVehicleDynamicsMode(self, mode) - - def getVehicleDynamicsMode(self): - return _mscl.InertialNode_getVehicleDynamicsMode(self) - - def setEstimationControlFlags(self, flags): - return _mscl.InertialNode_setEstimationControlFlags(self, flags) - - def getEstimationControlFlags(self): - return _mscl.InertialNode_getEstimationControlFlags(self) - - def setInclinationSource(self, options): - return _mscl.InertialNode_setInclinationSource(self, options) - - def getInclinationSource(self): - return _mscl.InertialNode_getInclinationSource(self) - - def setDeclinationSource(self, options): - return _mscl.InertialNode_setDeclinationSource(self, options) - - def getDeclinationSource(self): - return _mscl.InertialNode_getDeclinationSource(self) - - def setMagneticFieldMagnitudeSource(self, options): - return _mscl.InertialNode_setMagneticFieldMagnitudeSource(self, options) - - def getMagneticFieldMagnitudeSource(self): - return _mscl.InertialNode_getMagneticFieldMagnitudeSource(self) - - def setGNSS_SourceControl(self, gnssSource): - return _mscl.InertialNode_setGNSS_SourceControl(self, gnssSource) - - def getGNSS_SourceControl(self): - return _mscl.InertialNode_getGNSS_SourceControl(self) - - def sendExternalGNSSUpdate(self, gnssUpdateData): - return _mscl.InertialNode_sendExternalGNSSUpdate(self, gnssUpdateData) - - def setHeadingUpdateControl(self, headingUpdateOptions): - return _mscl.InertialNode_setHeadingUpdateControl(self, headingUpdateOptions) - - def tareOrientation(self, axisValue): - return _mscl.InertialNode_tareOrientation(self, axisValue) - - def getHeadingUpdateControl(self): - return _mscl.InertialNode_getHeadingUpdateControl(self) - - def setGravityErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setGravityErrorAdaptiveMeasurement(self, data) - - def getGravityErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getGravityErrorAdaptiveMeasurement(self) - - def setMagnetometerErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagnetometerErrorAdaptiveMeasurement(self, data) - - def getMagnetometerErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagnetometerErrorAdaptiveMeasurement(self) - - def setMagDipAngleErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagDipAngleErrorAdaptiveMeasurement(self, data) - - def getMagDipAngleErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagDipAngleErrorAdaptiveMeasurement(self) - - def setMagNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setMagNoiseStandardDeviation(self, data) - - def getMagNoiseStandardDeviation(self): - return _mscl.InertialNode_getMagNoiseStandardDeviation(self) - - def setGravNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGravNoiseStandardDeviation(self, data) - - def getGravNoiseStandardDeviation(self): - return _mscl.InertialNode_getGravNoiseStandardDeviation(self) - - def setAccelNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setAccelNoiseStandardDeviation(self, data) - - def getAccelNoiseStandardDeviation(self): - return _mscl.InertialNode_getAccelNoiseStandardDeviation(self) - - def setGyroNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGyroNoiseStandardDeviation(self, data) - - def getGyroNoiseStandardDeviation(self): - return _mscl.InertialNode_getGyroNoiseStandardDeviation(self) - - def setPressureAltNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setPressureAltNoiseStandardDeviation(self, data) - - def getPressureAltNoiseStandardDeviation(self): - return _mscl.InertialNode_getPressureAltNoiseStandardDeviation(self) - - def setHardIronOffsetProcessNoise(self, data): - return _mscl.InertialNode_setHardIronOffsetProcessNoise(self, data) - - def getHardIronOffsetProcessNoise(self): - return _mscl.InertialNode_getHardIronOffsetProcessNoise(self) - - def setAccelBiasModelParams(self, data): - return _mscl.InertialNode_setAccelBiasModelParams(self, data) - - def getAccelBiasModelParams(self): - return _mscl.InertialNode_getAccelBiasModelParams(self) - - def setGyroBiasModelParams(self, data): - return _mscl.InertialNode_setGyroBiasModelParams(self, data) - - def getGyroBiasModelParams(self): - return _mscl.InertialNode_getGyroBiasModelParams(self) - - def setSoftIronMatrixProcessNoise(self, data): - return _mscl.InertialNode_setSoftIronMatrixProcessNoise(self, data) - - def getSoftIronMatrixProcessNoise(self): - return _mscl.InertialNode_getSoftIronMatrixProcessNoise(self) - - def setFixedReferencePosition(self, data): - return _mscl.InertialNode_setFixedReferencePosition(self, data) - - def getFixedReferencePosition(self): - return _mscl.InertialNode_getFixedReferencePosition(self) - - def setGPSDynamicsMode(self, data): - return _mscl.InertialNode_setGPSDynamicsMode(self, data) - - def getGPSDynamicsMode(self): - return _mscl.InertialNode_getGPSDynamicsMode(self) - - def setDevicePowerState(self, device, data): - return _mscl.InertialNode_setDevicePowerState(self, device, data) - - def getDevicePowerState(self, device): - return _mscl.InertialNode_getDevicePowerState(self, device) - - def setDeviceStreamFormat(self, device, data): - return _mscl.InertialNode_setDeviceStreamFormat(self, device, data) - - def getDeviceStreamFormat(self, device): - return _mscl.InertialNode_getDeviceStreamFormat(self, device) - - def setSignalConditioningSettings(self, data): - return _mscl.InertialNode_setSignalConditioningSettings(self, data) - - def getSignalConditioningSettings(self): - return _mscl.InertialNode_getSignalConditioningSettings(self) - - def setEnableDisableMeasurements(self, data): - return _mscl.InertialNode_setEnableDisableMeasurements(self, data) - - def getEnableDisableMeasurements(self): - return _mscl.InertialNode_getEnableDisableMeasurements(self) - - def setGravityNoiseMinimum(self, data): - return _mscl.InertialNode_setGravityNoiseMinimum(self, data) - - def getGravityNoiseMinimum(self): - return _mscl.InertialNode_getGravityNoiseMinimum(self) - - def sendExternalHeadingUpdate(self, *args): - return _mscl.InertialNode_sendExternalHeadingUpdate(self, *args) - - def aidingMeasurementEnabled(self, aidingSource): - return _mscl.InertialNode_aidingMeasurementEnabled(self, aidingSource) - - def enableDisableAidingMeasurement(self, aidingSource, enable): - return _mscl.InertialNode_enableDisableAidingMeasurement(self, aidingSource, enable) - - def getAdaptiveFilterOptions(self): - return _mscl.InertialNode_getAdaptiveFilterOptions(self) - - def setAdaptiveFilterOptions(self, options): - return _mscl.InertialNode_setAdaptiveFilterOptions(self, options) - - def getMultiAntennaOffset(self, receiverId): - return _mscl.InertialNode_getMultiAntennaOffset(self, receiverId) - - def setMultiAntennaOffset(self, receiverId, offset): - return _mscl.InertialNode_setMultiAntennaOffset(self, receiverId, offset) - - def getPpsSource(self): - return _mscl.InertialNode_getPpsSource(self) - - def setPpsSource(self, ppsSource): - return _mscl.InertialNode_setPpsSource(self, ppsSource) - - def getOdometerConfig(self): - return _mscl.InertialNode_getOdometerConfig(self) - - def setOdometerConfig(self, config): - return _mscl.InertialNode_setOdometerConfig(self, config) - - def getSensorRange(self, sensorRangeType): - return _mscl.InertialNode_getSensorRange(self, sensorRangeType) - - def setSensorRange(self, *args): - return _mscl.InertialNode_setSensorRange(self, *args) - - def getGpioConfig(self, pin): - return _mscl.InertialNode_getGpioConfig(self, pin) - - def setGpioConfig(self, config): - return _mscl.InertialNode_setGpioConfig(self, config) - - def getGpioState(self, pin): - return _mscl.InertialNode_getGpioState(self, pin) - - def setGpioState(self, pin, state): - return _mscl.InertialNode_setGpioState(self, pin, state) - - def getEventTriggerMode(self, instance): - return _mscl.InertialNode_getEventTriggerMode(self, instance) - - def setEventTriggerMode(self, instance, mode): - return _mscl.InertialNode_setEventTriggerMode(self, instance, mode) - - def getEventTriggerConfig(self, instance): - return _mscl.InertialNode_getEventTriggerConfig(self, instance) - - def setEventTriggerConfig(self, config): - return _mscl.InertialNode_setEventTriggerConfig(self, config) - - def getEventActionConfig(self, instance): - return _mscl.InertialNode_getEventActionConfig(self, instance) - - def setEventActionConfig(self, config, validateSupported=True): - return _mscl.InertialNode_setEventActionConfig(self, config, validateSupported) - - def getAntennaLeverArmCal(self): - return _mscl.InertialNode_getAntennaLeverArmCal(self) - - def setAntennaLeverArmCal(self, config): - return _mscl.InertialNode_setAntennaLeverArmCal(self, config) - - def getRelativePositionReference(self): - return _mscl.InertialNode_getRelativePositionReference(self) - - def setRelativePositionReference(self, ref): - return _mscl.InertialNode_setRelativePositionReference(self, ref) - - def getLeverArmReferenceOffset(self): - return _mscl.InertialNode_getLeverArmReferenceOffset(self) - - def setLeverArmReferenceOffset(self, offset): - return _mscl.InertialNode_setLeverArmReferenceOffset(self, offset) - - def sendExternalSpeedMeasurementUpdate(self, tow, speed, unc): - return _mscl.InertialNode_sendExternalSpeedMeasurementUpdate(self, tow, speed, unc) - - def getSpeedMeasurementOffset(self): - return _mscl.InertialNode_getSpeedMeasurementOffset(self) - - def setSpeedMeasurementOffset(self, offset): - return _mscl.InertialNode_setSpeedMeasurementOffset(self, offset) - - def getGnssSignalConfig(self): - return _mscl.InertialNode_getGnssSignalConfig(self) - - def setGnssSignalConfig(self, config): - return _mscl.InertialNode_setGnssSignalConfig(self, config) - - def getGnssSpartnConfig(self): - return _mscl.InertialNode_getGnssSpartnConfig(self) - - def setGnssSpartnConfig(self, config): - return _mscl.InertialNode_setGnssSpartnConfig(self, config) - - def rtkEnabled(self): - return _mscl.InertialNode_rtkEnabled(self) - - def enableRtk(self, enable): - return _mscl.InertialNode_enableRtk(self, enable) - - def getEventTriggerStatus(self, *args): - return _mscl.InertialNode_getEventTriggerStatus(self, *args) - - def getEventActionStatus(self, *args): - return _mscl.InertialNode_getEventActionStatus(self, *args) - - def getNmeaMessageFormat(self): - return _mscl.InertialNode_getNmeaMessageFormat(self) - - def setNmeaMessageFormat(self, nmeaFormats): - return _mscl.InertialNode_setNmeaMessageFormat(self, nmeaFormats) - - def getAidingMeasurementReferenceFrames(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrames(self, *args) - - def setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds=False): - return _mscl.InertialNode_setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds) - - def getAidingMeasurementReferenceFrame(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrame(self, *args) - - def setAidingMeasurementReferenceFrame(self, id, frame): - return _mscl.InertialNode_setAidingMeasurementReferenceFrame(self, id, frame) - - def setAidingMeasurementResponseMode(self, mode): - return _mscl.InertialNode_setAidingMeasurementResponseMode(self, mode) - - def getAidingMeasurementResponseMode(self): - return _mscl.InertialNode_getAidingMeasurementResponseMode(self) - - def sendAidingMeasurement(self, *args): - return _mscl.InertialNode_sendAidingMeasurement(self, *args) - - def sendAidingMeasurement_readEcho(self, *args): - return _mscl.InertialNode_sendAidingMeasurement_readEcho(self, *args) - -# Register InertialNode in _mscl: -_mscl.InertialNode_swigregister(InertialNode) - -class DisplacementNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.DisplacementNode_swiginit(self, _mscl.new_DisplacementNode(connection)) - __swig_destroy__ = _mscl.delete_DisplacementNode - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.DisplacementNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - @staticmethod - def deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - - def connection(self): - return _mscl.DisplacementNode_connection(self) - - def features(self): - return _mscl.DisplacementNode_features(self) - - def lastCommunicationTime(self): - return _mscl.DisplacementNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.DisplacementNode_lastDeviceState(self) - - def firmwareVersion(self): - return _mscl.DisplacementNode_firmwareVersion(self) - - def model(self): - return _mscl.DisplacementNode_model(self) - - def modelName(self): - return _mscl.DisplacementNode_modelName(self) - - def modelNumber(self): - return _mscl.DisplacementNode_modelNumber(self) - - def serialNumber(self): - return _mscl.DisplacementNode_serialNumber(self) - - def lotNumber(self): - return _mscl.DisplacementNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.DisplacementNode_deviceOptions(self) - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.DisplacementNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.DisplacementNode_totalPackets(self) - - def timeout(self, *args): - return _mscl.DisplacementNode_timeout(self, *args) - - def name(self): - return _mscl.DisplacementNode_name(self) - - def ping(self): - return _mscl.DisplacementNode_ping(self) - - def setToIdle(self): - return _mscl.DisplacementNode_setToIdle(self) - - def cyclePower(self): - return _mscl.DisplacementNode_cyclePower(self) - - def resume(self): - return _mscl.DisplacementNode_resume(self) - - def getDisplacementOutputDataRate(self): - return _mscl.DisplacementNode_getDisplacementOutputDataRate(self) - - def getAnalogToDisplacementCal(self): - return _mscl.DisplacementNode_getAnalogToDisplacementCal(self) - - def setDeviceTime(self, *args): - return _mscl.DisplacementNode_setDeviceTime(self, *args) - -# Register DisplacementNode in _mscl: -_mscl.DisplacementNode_swigregister(DisplacementNode) - -def DisplacementNode_deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - -class RTKNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.RTKNode_swiginit(self, _mscl.new_RTKNode(connection)) - __swig_destroy__ = _mscl.delete_RTKNode - - def getCommunicationMode(self): - return _mscl.RTKNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.RTKNode_setCommunicationMode(self, communicationMode) - - def getDeviceStatusFlags(self): - return _mscl.RTKNode_getDeviceStatusFlags(self) - - def getActivationCode(self): - return _mscl.RTKNode_getActivationCode(self) - - def getStatusBitfieldVersion(self): - return _mscl.RTKNode_getStatusBitfieldVersion(self) - -# Register RTKNode in _mscl: -_mscl.RTKNode_swigregister(RTKNode) - -class ChannelData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelData___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelData___bool__(self) - - def __len__(self): - return _mscl.ChannelData___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelData___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelData___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelData___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelData___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelData___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelData___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelData_pop(self) - - def append(self, x): - return _mscl.ChannelData_append(self, x) - - def empty(self): - return _mscl.ChannelData_empty(self) - - def size(self): - return _mscl.ChannelData_size(self) - - def swap(self, v): - return _mscl.ChannelData_swap(self, v) - - def begin(self): - return _mscl.ChannelData_begin(self) - - def end(self): - return _mscl.ChannelData_end(self) - - def rbegin(self): - return _mscl.ChannelData_rbegin(self) - - def rend(self): - return _mscl.ChannelData_rend(self) - - def clear(self): - return _mscl.ChannelData_clear(self) - - def get_allocator(self): - return _mscl.ChannelData_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelData_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelData_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelData_swiginit(self, _mscl.new_ChannelData(*args)) - - def push_back(self, x): - return _mscl.ChannelData_push_back(self, x) - - def front(self): - return _mscl.ChannelData_front(self) - - def back(self): - return _mscl.ChannelData_back(self) - - def assign(self, n, x): - return _mscl.ChannelData_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelData_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelData_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelData_reserve(self, n) - - def capacity(self): - return _mscl.ChannelData_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelData - -# Register ChannelData in _mscl: -_mscl.ChannelData_swigregister(ChannelData) - -class MipDataPoints(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPoints_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPoints___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPoints___bool__(self) - - def __len__(self): - return _mscl.MipDataPoints___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPoints___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPoints___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPoints___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPoints___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPoints___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPoints___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPoints_pop(self) - - def append(self, x): - return _mscl.MipDataPoints_append(self, x) - - def empty(self): - return _mscl.MipDataPoints_empty(self) - - def size(self): - return _mscl.MipDataPoints_size(self) - - def swap(self, v): - return _mscl.MipDataPoints_swap(self, v) - - def begin(self): - return _mscl.MipDataPoints_begin(self) - - def end(self): - return _mscl.MipDataPoints_end(self) - - def rbegin(self): - return _mscl.MipDataPoints_rbegin(self) - - def rend(self): - return _mscl.MipDataPoints_rend(self) - - def clear(self): - return _mscl.MipDataPoints_clear(self) - - def get_allocator(self): - return _mscl.MipDataPoints_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPoints_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPoints_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPoints_swiginit(self, _mscl.new_MipDataPoints(*args)) - - def push_back(self, x): - return _mscl.MipDataPoints_push_back(self, x) - - def front(self): - return _mscl.MipDataPoints_front(self) - - def back(self): - return _mscl.MipDataPoints_back(self) - - def assign(self, n, x): - return _mscl.MipDataPoints_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPoints_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPoints_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPoints_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPoints_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPoints - -# Register MipDataPoints in _mscl: -_mscl.MipDataPoints_swigregister(MipDataPoints) - -class Bytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bytes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bytes___nonzero__(self) - - def __bool__(self): - return _mscl.Bytes___bool__(self) - - def __len__(self): - return _mscl.Bytes___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bytes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bytes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bytes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bytes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bytes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bytes___setitem__(self, *args) - - def pop(self): - return _mscl.Bytes_pop(self) - - def append(self, x): - return _mscl.Bytes_append(self, x) - - def empty(self): - return _mscl.Bytes_empty(self) - - def size(self): - return _mscl.Bytes_size(self) - - def swap(self, v): - return _mscl.Bytes_swap(self, v) - - def begin(self): - return _mscl.Bytes_begin(self) - - def end(self): - return _mscl.Bytes_end(self) - - def rbegin(self): - return _mscl.Bytes_rbegin(self) - - def rend(self): - return _mscl.Bytes_rend(self) - - def clear(self): - return _mscl.Bytes_clear(self) - - def get_allocator(self): - return _mscl.Bytes_get_allocator(self) - - def pop_back(self): - return _mscl.Bytes_pop_back(self) - - def erase(self, *args): - return _mscl.Bytes_erase(self, *args) - - def __init__(self, *args): - _mscl.Bytes_swiginit(self, _mscl.new_Bytes(*args)) - - def push_back(self, x): - return _mscl.Bytes_push_back(self, x) - - def front(self): - return _mscl.Bytes_front(self) - - def back(self): - return _mscl.Bytes_back(self) - - def assign(self, n, x): - return _mscl.Bytes_assign(self, n, x) - - def resize(self, *args): - return _mscl.Bytes_resize(self, *args) - - def insert(self, *args): - return _mscl.Bytes_insert(self, *args) - - def reserve(self, n): - return _mscl.Bytes_reserve(self, n) - - def capacity(self): - return _mscl.Bytes_capacity(self) - __swig_destroy__ = _mscl.delete_Bytes - -# Register Bytes in _mscl: -_mscl.Bytes_swigregister(Bytes) - -class BytesCollection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.BytesCollection_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.BytesCollection___nonzero__(self) - - def __bool__(self): - return _mscl.BytesCollection___bool__(self) - - def __len__(self): - return _mscl.BytesCollection___len__(self) - - def __getslice__(self, i, j): - return _mscl.BytesCollection___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.BytesCollection___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.BytesCollection___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.BytesCollection___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.BytesCollection___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.BytesCollection___setitem__(self, *args) - - def pop(self): - return _mscl.BytesCollection_pop(self) - - def append(self, x): - return _mscl.BytesCollection_append(self, x) - - def empty(self): - return _mscl.BytesCollection_empty(self) - - def size(self): - return _mscl.BytesCollection_size(self) - - def swap(self, v): - return _mscl.BytesCollection_swap(self, v) - - def begin(self): - return _mscl.BytesCollection_begin(self) - - def end(self): - return _mscl.BytesCollection_end(self) - - def rbegin(self): - return _mscl.BytesCollection_rbegin(self) - - def rend(self): - return _mscl.BytesCollection_rend(self) - - def clear(self): - return _mscl.BytesCollection_clear(self) - - def get_allocator(self): - return _mscl.BytesCollection_get_allocator(self) - - def pop_back(self): - return _mscl.BytesCollection_pop_back(self) - - def erase(self, *args): - return _mscl.BytesCollection_erase(self, *args) - - def __init__(self, *args): - _mscl.BytesCollection_swiginit(self, _mscl.new_BytesCollection(*args)) - - def push_back(self, x): - return _mscl.BytesCollection_push_back(self, x) - - def front(self): - return _mscl.BytesCollection_front(self) - - def back(self): - return _mscl.BytesCollection_back(self) - - def assign(self, n, x): - return _mscl.BytesCollection_assign(self, n, x) - - def resize(self, *args): - return _mscl.BytesCollection_resize(self, *args) - - def insert(self, *args): - return _mscl.BytesCollection_insert(self, *args) - - def reserve(self, n): - return _mscl.BytesCollection_reserve(self, n) - - def capacity(self): - return _mscl.BytesCollection_capacity(self) - __swig_destroy__ = _mscl.delete_BytesCollection - -# Register BytesCollection in _mscl: -_mscl.BytesCollection_swigregister(BytesCollection) - -class DeviceList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceList___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceList___bool__(self) - - def __len__(self): - return _mscl.DeviceList___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceList___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceList___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceList_has_key(self, key) - - def keys(self): - return _mscl.DeviceList_keys(self) - - def values(self): - return _mscl.DeviceList_values(self) - - def items(self): - return _mscl.DeviceList_items(self) - - def __contains__(self, key): - return _mscl.DeviceList___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceList_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceList_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceList___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceList_asdict(self) - - def __init__(self, *args): - _mscl.DeviceList_swiginit(self, _mscl.new_DeviceList(*args)) - - def empty(self): - return _mscl.DeviceList_empty(self) - - def size(self): - return _mscl.DeviceList_size(self) - - def swap(self, v): - return _mscl.DeviceList_swap(self, v) - - def begin(self): - return _mscl.DeviceList_begin(self) - - def end(self): - return _mscl.DeviceList_end(self) - - def rbegin(self): - return _mscl.DeviceList_rbegin(self) - - def rend(self): - return _mscl.DeviceList_rend(self) - - def clear(self): - return _mscl.DeviceList_clear(self) - - def get_allocator(self): - return _mscl.DeviceList_get_allocator(self) - - def count(self, x): - return _mscl.DeviceList_count(self, x) - - def erase(self, *args): - return _mscl.DeviceList_erase(self, *args) - - def find(self, x): - return _mscl.DeviceList_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceList_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceList_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceList - -# Register DeviceList in _mscl: -_mscl.DeviceList_swigregister(DeviceList) - -class NodeDiscoveries(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NodeDiscoveries_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NodeDiscoveries___nonzero__(self) - - def __bool__(self): - return _mscl.NodeDiscoveries___bool__(self) - - def __len__(self): - return _mscl.NodeDiscoveries___len__(self) - - def __getslice__(self, i, j): - return _mscl.NodeDiscoveries___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NodeDiscoveries___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NodeDiscoveries___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NodeDiscoveries___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NodeDiscoveries___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NodeDiscoveries___setitem__(self, *args) - - def pop(self): - return _mscl.NodeDiscoveries_pop(self) - - def append(self, x): - return _mscl.NodeDiscoveries_append(self, x) - - def empty(self): - return _mscl.NodeDiscoveries_empty(self) - - def size(self): - return _mscl.NodeDiscoveries_size(self) - - def swap(self, v): - return _mscl.NodeDiscoveries_swap(self, v) - - def begin(self): - return _mscl.NodeDiscoveries_begin(self) - - def end(self): - return _mscl.NodeDiscoveries_end(self) - - def rbegin(self): - return _mscl.NodeDiscoveries_rbegin(self) - - def rend(self): - return _mscl.NodeDiscoveries_rend(self) - - def clear(self): - return _mscl.NodeDiscoveries_clear(self) - - def get_allocator(self): - return _mscl.NodeDiscoveries_get_allocator(self) - - def pop_back(self): - return _mscl.NodeDiscoveries_pop_back(self) - - def erase(self, *args): - return _mscl.NodeDiscoveries_erase(self, *args) - - def __init__(self, *args): - _mscl.NodeDiscoveries_swiginit(self, _mscl.new_NodeDiscoveries(*args)) - - def push_back(self, x): - return _mscl.NodeDiscoveries_push_back(self, x) - - def front(self): - return _mscl.NodeDiscoveries_front(self) - - def back(self): - return _mscl.NodeDiscoveries_back(self) - - def assign(self, n, x): - return _mscl.NodeDiscoveries_assign(self, n, x) - - def resize(self, *args): - return _mscl.NodeDiscoveries_resize(self, *args) - - def insert(self, *args): - return _mscl.NodeDiscoveries_insert(self, *args) - - def reserve(self, n): - return _mscl.NodeDiscoveries_reserve(self, n) - - def capacity(self): - return _mscl.NodeDiscoveries_capacity(self) - __swig_destroy__ = _mscl.delete_NodeDiscoveries - -# Register NodeDiscoveries in _mscl: -_mscl.NodeDiscoveries_swigregister(NodeDiscoveries) - -class DataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.DataSweeps___bool__(self) - - def __len__(self): - return _mscl.DataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.DataSweeps_pop(self) - - def append(self, x): - return _mscl.DataSweeps_append(self, x) - - def empty(self): - return _mscl.DataSweeps_empty(self) - - def size(self): - return _mscl.DataSweeps_size(self) - - def swap(self, v): - return _mscl.DataSweeps_swap(self, v) - - def begin(self): - return _mscl.DataSweeps_begin(self) - - def end(self): - return _mscl.DataSweeps_end(self) - - def rbegin(self): - return _mscl.DataSweeps_rbegin(self) - - def rend(self): - return _mscl.DataSweeps_rend(self) - - def clear(self): - return _mscl.DataSweeps_clear(self) - - def get_allocator(self): - return _mscl.DataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.DataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.DataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.DataSweeps_swiginit(self, _mscl.new_DataSweeps(*args)) - - def push_back(self, x): - return _mscl.DataSweeps_push_back(self, x) - - def front(self): - return _mscl.DataSweeps_front(self) - - def back(self): - return _mscl.DataSweeps_back(self) - - def assign(self, n, x): - return _mscl.DataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.DataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.DataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.DataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_DataSweeps - -# Register DataSweeps in _mscl: -_mscl.DataSweeps_swigregister(DataSweeps) - -class LoggedDataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LoggedDataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LoggedDataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.LoggedDataSweeps___bool__(self) - - def __len__(self): - return _mscl.LoggedDataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.LoggedDataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LoggedDataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LoggedDataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LoggedDataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LoggedDataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LoggedDataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.LoggedDataSweeps_pop(self) - - def append(self, x): - return _mscl.LoggedDataSweeps_append(self, x) - - def empty(self): - return _mscl.LoggedDataSweeps_empty(self) - - def size(self): - return _mscl.LoggedDataSweeps_size(self) - - def swap(self, v): - return _mscl.LoggedDataSweeps_swap(self, v) - - def begin(self): - return _mscl.LoggedDataSweeps_begin(self) - - def end(self): - return _mscl.LoggedDataSweeps_end(self) - - def rbegin(self): - return _mscl.LoggedDataSweeps_rbegin(self) - - def rend(self): - return _mscl.LoggedDataSweeps_rend(self) - - def clear(self): - return _mscl.LoggedDataSweeps_clear(self) - - def get_allocator(self): - return _mscl.LoggedDataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.LoggedDataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.LoggedDataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.LoggedDataSweeps_swiginit(self, _mscl.new_LoggedDataSweeps(*args)) - - def push_back(self, x): - return _mscl.LoggedDataSweeps_push_back(self, x) - - def front(self): - return _mscl.LoggedDataSweeps_front(self) - - def back(self): - return _mscl.LoggedDataSweeps_back(self) - - def assign(self, n, x): - return _mscl.LoggedDataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.LoggedDataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.LoggedDataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.LoggedDataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.LoggedDataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweeps - -# Register LoggedDataSweeps in _mscl: -_mscl.LoggedDataSweeps_swigregister(LoggedDataSweeps) - -class MipDataPackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPackets___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPackets___bool__(self) - - def __len__(self): - return _mscl.MipDataPackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPackets___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPackets_pop(self) - - def append(self, x): - return _mscl.MipDataPackets_append(self, x) - - def empty(self): - return _mscl.MipDataPackets_empty(self) - - def size(self): - return _mscl.MipDataPackets_size(self) - - def swap(self, v): - return _mscl.MipDataPackets_swap(self, v) - - def begin(self): - return _mscl.MipDataPackets_begin(self) - - def end(self): - return _mscl.MipDataPackets_end(self) - - def rbegin(self): - return _mscl.MipDataPackets_rbegin(self) - - def rend(self): - return _mscl.MipDataPackets_rend(self) - - def clear(self): - return _mscl.MipDataPackets_clear(self) - - def get_allocator(self): - return _mscl.MipDataPackets_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPackets_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPackets_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPackets_swiginit(self, _mscl.new_MipDataPackets(*args)) - - def push_back(self, x): - return _mscl.MipDataPackets_push_back(self, x) - - def front(self): - return _mscl.MipDataPackets_front(self) - - def back(self): - return _mscl.MipDataPackets_back(self) - - def assign(self, n, x): - return _mscl.MipDataPackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPackets_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPackets_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPackets_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPackets_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPackets - -# Register MipDataPackets in _mscl: -_mscl.MipDataPackets_swigregister(MipDataPackets) - -class RawBytePackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RawBytePackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RawBytePackets___nonzero__(self) - - def __bool__(self): - return _mscl.RawBytePackets___bool__(self) - - def __len__(self): - return _mscl.RawBytePackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.RawBytePackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.RawBytePackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.RawBytePackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.RawBytePackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.RawBytePackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.RawBytePackets___setitem__(self, *args) - - def pop(self): - return _mscl.RawBytePackets_pop(self) - - def append(self, x): - return _mscl.RawBytePackets_append(self, x) - - def empty(self): - return _mscl.RawBytePackets_empty(self) - - def size(self): - return _mscl.RawBytePackets_size(self) - - def swap(self, v): - return _mscl.RawBytePackets_swap(self, v) - - def begin(self): - return _mscl.RawBytePackets_begin(self) - - def end(self): - return _mscl.RawBytePackets_end(self) - - def rbegin(self): - return _mscl.RawBytePackets_rbegin(self) - - def rend(self): - return _mscl.RawBytePackets_rend(self) - - def clear(self): - return _mscl.RawBytePackets_clear(self) - - def get_allocator(self): - return _mscl.RawBytePackets_get_allocator(self) - - def pop_back(self): - return _mscl.RawBytePackets_pop_back(self) - - def erase(self, *args): - return _mscl.RawBytePackets_erase(self, *args) - - def __init__(self, *args): - _mscl.RawBytePackets_swiginit(self, _mscl.new_RawBytePackets(*args)) - - def push_back(self, x): - return _mscl.RawBytePackets_push_back(self, x) - - def front(self): - return _mscl.RawBytePackets_front(self) - - def back(self): - return _mscl.RawBytePackets_back(self) - - def assign(self, n, x): - return _mscl.RawBytePackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.RawBytePackets_resize(self, *args) - - def insert(self, *args): - return _mscl.RawBytePackets_insert(self, *args) - - def reserve(self, n): - return _mscl.RawBytePackets_reserve(self, n) - - def capacity(self): - return _mscl.RawBytePackets_capacity(self) - __swig_destroy__ = _mscl.delete_RawBytePackets - -# Register RawBytePackets in _mscl: -_mscl.RawBytePackets_swigregister(RawBytePackets) - -class MipChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannels___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannels___bool__(self) - - def __len__(self): - return _mscl.MipChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannels___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannels_pop(self) - - def append(self, x): - return _mscl.MipChannels_append(self, x) - - def empty(self): - return _mscl.MipChannels_empty(self) - - def size(self): - return _mscl.MipChannels_size(self) - - def swap(self, v): - return _mscl.MipChannels_swap(self, v) - - def begin(self): - return _mscl.MipChannels_begin(self) - - def end(self): - return _mscl.MipChannels_end(self) - - def rbegin(self): - return _mscl.MipChannels_rbegin(self) - - def rend(self): - return _mscl.MipChannels_rend(self) - - def clear(self): - return _mscl.MipChannels_clear(self) - - def get_allocator(self): - return _mscl.MipChannels_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannels_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannels_swiginit(self, _mscl.new_MipChannels(*args)) - - def push_back(self, x): - return _mscl.MipChannels_push_back(self, x) - - def front(self): - return _mscl.MipChannels_front(self) - - def back(self): - return _mscl.MipChannels_back(self) - - def assign(self, n, x): - return _mscl.MipChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannels_reserve(self, n) - - def capacity(self): - return _mscl.MipChannels_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannels - -# Register MipChannels in _mscl: -_mscl.MipChannels_swigregister(MipChannels) - -class DataCollectionMethods(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataCollectionMethods_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataCollectionMethods___nonzero__(self) - - def __bool__(self): - return _mscl.DataCollectionMethods___bool__(self) - - def __len__(self): - return _mscl.DataCollectionMethods___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataCollectionMethods___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataCollectionMethods___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataCollectionMethods___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataCollectionMethods___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataCollectionMethods___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataCollectionMethods___setitem__(self, *args) - - def pop(self): - return _mscl.DataCollectionMethods_pop(self) - - def append(self, x): - return _mscl.DataCollectionMethods_append(self, x) - - def empty(self): - return _mscl.DataCollectionMethods_empty(self) - - def size(self): - return _mscl.DataCollectionMethods_size(self) - - def swap(self, v): - return _mscl.DataCollectionMethods_swap(self, v) - - def begin(self): - return _mscl.DataCollectionMethods_begin(self) - - def end(self): - return _mscl.DataCollectionMethods_end(self) - - def rbegin(self): - return _mscl.DataCollectionMethods_rbegin(self) - - def rend(self): - return _mscl.DataCollectionMethods_rend(self) - - def clear(self): - return _mscl.DataCollectionMethods_clear(self) - - def get_allocator(self): - return _mscl.DataCollectionMethods_get_allocator(self) - - def pop_back(self): - return _mscl.DataCollectionMethods_pop_back(self) - - def erase(self, *args): - return _mscl.DataCollectionMethods_erase(self, *args) - - def __init__(self, *args): - _mscl.DataCollectionMethods_swiginit(self, _mscl.new_DataCollectionMethods(*args)) - - def push_back(self, x): - return _mscl.DataCollectionMethods_push_back(self, x) - - def front(self): - return _mscl.DataCollectionMethods_front(self) - - def back(self): - return _mscl.DataCollectionMethods_back(self) - - def assign(self, n, x): - return _mscl.DataCollectionMethods_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataCollectionMethods_resize(self, *args) - - def insert(self, *args): - return _mscl.DataCollectionMethods_insert(self, *args) - - def reserve(self, n): - return _mscl.DataCollectionMethods_reserve(self, n) - - def capacity(self): - return _mscl.DataCollectionMethods_capacity(self) - __swig_destroy__ = _mscl.delete_DataCollectionMethods - -# Register DataCollectionMethods in _mscl: -_mscl.DataCollectionMethods_swigregister(DataCollectionMethods) - -class DataFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataFormats___nonzero__(self) - - def __bool__(self): - return _mscl.DataFormats___bool__(self) - - def __len__(self): - return _mscl.DataFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataFormats___setitem__(self, *args) - - def pop(self): - return _mscl.DataFormats_pop(self) - - def append(self, x): - return _mscl.DataFormats_append(self, x) - - def empty(self): - return _mscl.DataFormats_empty(self) - - def size(self): - return _mscl.DataFormats_size(self) - - def swap(self, v): - return _mscl.DataFormats_swap(self, v) - - def begin(self): - return _mscl.DataFormats_begin(self) - - def end(self): - return _mscl.DataFormats_end(self) - - def rbegin(self): - return _mscl.DataFormats_rbegin(self) - - def rend(self): - return _mscl.DataFormats_rend(self) - - def clear(self): - return _mscl.DataFormats_clear(self) - - def get_allocator(self): - return _mscl.DataFormats_get_allocator(self) - - def pop_back(self): - return _mscl.DataFormats_pop_back(self) - - def erase(self, *args): - return _mscl.DataFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.DataFormats_swiginit(self, _mscl.new_DataFormats(*args)) - - def push_back(self, x): - return _mscl.DataFormats_push_back(self, x) - - def front(self): - return _mscl.DataFormats_front(self) - - def back(self): - return _mscl.DataFormats_back(self) - - def assign(self, n, x): - return _mscl.DataFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.DataFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.DataFormats_reserve(self, n) - - def capacity(self): - return _mscl.DataFormats_capacity(self) - __swig_destroy__ = _mscl.delete_DataFormats - -# Register DataFormats in _mscl: -_mscl.DataFormats_swigregister(DataFormats) - -class WirelessSampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessSampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessSampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessSampleRates___bool__(self) - - def __len__(self): - return _mscl.WirelessSampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessSampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessSampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessSampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessSampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessSampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessSampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessSampleRates_pop(self) - - def append(self, x): - return _mscl.WirelessSampleRates_append(self, x) - - def empty(self): - return _mscl.WirelessSampleRates_empty(self) - - def size(self): - return _mscl.WirelessSampleRates_size(self) - - def swap(self, v): - return _mscl.WirelessSampleRates_swap(self, v) - - def begin(self): - return _mscl.WirelessSampleRates_begin(self) - - def end(self): - return _mscl.WirelessSampleRates_end(self) - - def rbegin(self): - return _mscl.WirelessSampleRates_rbegin(self) - - def rend(self): - return _mscl.WirelessSampleRates_rend(self) - - def clear(self): - return _mscl.WirelessSampleRates_clear(self) - - def get_allocator(self): - return _mscl.WirelessSampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessSampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessSampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessSampleRates_swiginit(self, _mscl.new_WirelessSampleRates(*args)) - - def push_back(self, x): - return _mscl.WirelessSampleRates_push_back(self, x) - - def front(self): - return _mscl.WirelessSampleRates_front(self) - - def back(self): - return _mscl.WirelessSampleRates_back(self) - - def assign(self, n, x): - return _mscl.WirelessSampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessSampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessSampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessSampleRates_reserve(self, n) - - def capacity(self): - return _mscl.WirelessSampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessSampleRates - -# Register WirelessSampleRates in _mscl: -_mscl.WirelessSampleRates_swigregister(WirelessSampleRates) - -class SamplingModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SamplingModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SamplingModes___nonzero__(self) - - def __bool__(self): - return _mscl.SamplingModes___bool__(self) - - def __len__(self): - return _mscl.SamplingModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SamplingModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SamplingModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SamplingModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SamplingModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SamplingModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SamplingModes___setitem__(self, *args) - - def pop(self): - return _mscl.SamplingModes_pop(self) - - def append(self, x): - return _mscl.SamplingModes_append(self, x) - - def empty(self): - return _mscl.SamplingModes_empty(self) - - def size(self): - return _mscl.SamplingModes_size(self) - - def swap(self, v): - return _mscl.SamplingModes_swap(self, v) - - def begin(self): - return _mscl.SamplingModes_begin(self) - - def end(self): - return _mscl.SamplingModes_end(self) - - def rbegin(self): - return _mscl.SamplingModes_rbegin(self) - - def rend(self): - return _mscl.SamplingModes_rend(self) - - def clear(self): - return _mscl.SamplingModes_clear(self) - - def get_allocator(self): - return _mscl.SamplingModes_get_allocator(self) - - def pop_back(self): - return _mscl.SamplingModes_pop_back(self) - - def erase(self, *args): - return _mscl.SamplingModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SamplingModes_swiginit(self, _mscl.new_SamplingModes(*args)) - - def push_back(self, x): - return _mscl.SamplingModes_push_back(self, x) - - def front(self): - return _mscl.SamplingModes_front(self) - - def back(self): - return _mscl.SamplingModes_back(self) - - def assign(self, n, x): - return _mscl.SamplingModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SamplingModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SamplingModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SamplingModes_reserve(self, n) - - def capacity(self): - return _mscl.SamplingModes_capacity(self) - __swig_destroy__ = _mscl.delete_SamplingModes - -# Register SamplingModes in _mscl: -_mscl.SamplingModes_swigregister(SamplingModes) - -class DefaultModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DefaultModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DefaultModes___nonzero__(self) - - def __bool__(self): - return _mscl.DefaultModes___bool__(self) - - def __len__(self): - return _mscl.DefaultModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DefaultModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DefaultModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DefaultModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DefaultModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DefaultModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DefaultModes___setitem__(self, *args) - - def pop(self): - return _mscl.DefaultModes_pop(self) - - def append(self, x): - return _mscl.DefaultModes_append(self, x) - - def empty(self): - return _mscl.DefaultModes_empty(self) - - def size(self): - return _mscl.DefaultModes_size(self) - - def swap(self, v): - return _mscl.DefaultModes_swap(self, v) - - def begin(self): - return _mscl.DefaultModes_begin(self) - - def end(self): - return _mscl.DefaultModes_end(self) - - def rbegin(self): - return _mscl.DefaultModes_rbegin(self) - - def rend(self): - return _mscl.DefaultModes_rend(self) - - def clear(self): - return _mscl.DefaultModes_clear(self) - - def get_allocator(self): - return _mscl.DefaultModes_get_allocator(self) - - def pop_back(self): - return _mscl.DefaultModes_pop_back(self) - - def erase(self, *args): - return _mscl.DefaultModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DefaultModes_swiginit(self, _mscl.new_DefaultModes(*args)) - - def push_back(self, x): - return _mscl.DefaultModes_push_back(self, x) - - def front(self): - return _mscl.DefaultModes_front(self) - - def back(self): - return _mscl.DefaultModes_back(self) - - def assign(self, n, x): - return _mscl.DefaultModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DefaultModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DefaultModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DefaultModes_reserve(self, n) - - def capacity(self): - return _mscl.DefaultModes_capacity(self) - __swig_destroy__ = _mscl.delete_DefaultModes - -# Register DefaultModes in _mscl: -_mscl.DefaultModes_swigregister(DefaultModes) - -class TransmitPowers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransmitPowers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransmitPowers___nonzero__(self) - - def __bool__(self): - return _mscl.TransmitPowers___bool__(self) - - def __len__(self): - return _mscl.TransmitPowers___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransmitPowers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransmitPowers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransmitPowers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransmitPowers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransmitPowers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransmitPowers___setitem__(self, *args) - - def pop(self): - return _mscl.TransmitPowers_pop(self) - - def append(self, x): - return _mscl.TransmitPowers_append(self, x) - - def empty(self): - return _mscl.TransmitPowers_empty(self) - - def size(self): - return _mscl.TransmitPowers_size(self) - - def swap(self, v): - return _mscl.TransmitPowers_swap(self, v) - - def begin(self): - return _mscl.TransmitPowers_begin(self) - - def end(self): - return _mscl.TransmitPowers_end(self) - - def rbegin(self): - return _mscl.TransmitPowers_rbegin(self) - - def rend(self): - return _mscl.TransmitPowers_rend(self) - - def clear(self): - return _mscl.TransmitPowers_clear(self) - - def get_allocator(self): - return _mscl.TransmitPowers_get_allocator(self) - - def pop_back(self): - return _mscl.TransmitPowers_pop_back(self) - - def erase(self, *args): - return _mscl.TransmitPowers_erase(self, *args) - - def __init__(self, *args): - _mscl.TransmitPowers_swiginit(self, _mscl.new_TransmitPowers(*args)) - - def push_back(self, x): - return _mscl.TransmitPowers_push_back(self, x) - - def front(self): - return _mscl.TransmitPowers_front(self) - - def back(self): - return _mscl.TransmitPowers_back(self) - - def assign(self, n, x): - return _mscl.TransmitPowers_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransmitPowers_resize(self, *args) - - def insert(self, *args): - return _mscl.TransmitPowers_insert(self, *args) - - def reserve(self, n): - return _mscl.TransmitPowers_reserve(self, n) - - def capacity(self): - return _mscl.TransmitPowers_capacity(self) - __swig_destroy__ = _mscl.delete_TransmitPowers - -# Register TransmitPowers in _mscl: -_mscl.TransmitPowers_swigregister(TransmitPowers) - -class ChannelGroupSettings(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroupSettings_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroupSettings___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroupSettings___bool__(self) - - def __len__(self): - return _mscl.ChannelGroupSettings___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroupSettings___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroupSettings___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroupSettings___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroupSettings___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroupSettings___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroupSettings___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroupSettings_pop(self) - - def append(self, x): - return _mscl.ChannelGroupSettings_append(self, x) - - def empty(self): - return _mscl.ChannelGroupSettings_empty(self) - - def size(self): - return _mscl.ChannelGroupSettings_size(self) - - def swap(self, v): - return _mscl.ChannelGroupSettings_swap(self, v) - - def begin(self): - return _mscl.ChannelGroupSettings_begin(self) - - def end(self): - return _mscl.ChannelGroupSettings_end(self) - - def rbegin(self): - return _mscl.ChannelGroupSettings_rbegin(self) - - def rend(self): - return _mscl.ChannelGroupSettings_rend(self) - - def clear(self): - return _mscl.ChannelGroupSettings_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroupSettings_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroupSettings_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroupSettings_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroupSettings_swiginit(self, _mscl.new_ChannelGroupSettings(*args)) - - def push_back(self, x): - return _mscl.ChannelGroupSettings_push_back(self, x) - - def front(self): - return _mscl.ChannelGroupSettings_front(self) - - def back(self): - return _mscl.ChannelGroupSettings_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroupSettings_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroupSettings_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroupSettings_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroupSettings_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroupSettings_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroupSettings - -# Register ChannelGroupSettings in _mscl: -_mscl.ChannelGroupSettings_swigregister(ChannelGroupSettings) - -class FatigueModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.FatigueModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.FatigueModes___nonzero__(self) - - def __bool__(self): - return _mscl.FatigueModes___bool__(self) - - def __len__(self): - return _mscl.FatigueModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.FatigueModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.FatigueModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.FatigueModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.FatigueModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.FatigueModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.FatigueModes___setitem__(self, *args) - - def pop(self): - return _mscl.FatigueModes_pop(self) - - def append(self, x): - return _mscl.FatigueModes_append(self, x) - - def empty(self): - return _mscl.FatigueModes_empty(self) - - def size(self): - return _mscl.FatigueModes_size(self) - - def swap(self, v): - return _mscl.FatigueModes_swap(self, v) - - def begin(self): - return _mscl.FatigueModes_begin(self) - - def end(self): - return _mscl.FatigueModes_end(self) - - def rbegin(self): - return _mscl.FatigueModes_rbegin(self) - - def rend(self): - return _mscl.FatigueModes_rend(self) - - def clear(self): - return _mscl.FatigueModes_clear(self) - - def get_allocator(self): - return _mscl.FatigueModes_get_allocator(self) - - def pop_back(self): - return _mscl.FatigueModes_pop_back(self) - - def erase(self, *args): - return _mscl.FatigueModes_erase(self, *args) - - def __init__(self, *args): - _mscl.FatigueModes_swiginit(self, _mscl.new_FatigueModes(*args)) - - def push_back(self, x): - return _mscl.FatigueModes_push_back(self, x) - - def front(self): - return _mscl.FatigueModes_front(self) - - def back(self): - return _mscl.FatigueModes_back(self) - - def assign(self, n, x): - return _mscl.FatigueModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.FatigueModes_resize(self, *args) - - def insert(self, *args): - return _mscl.FatigueModes_insert(self, *args) - - def reserve(self, n): - return _mscl.FatigueModes_reserve(self, n) - - def capacity(self): - return _mscl.FatigueModes_capacity(self) - __swig_destroy__ = _mscl.delete_FatigueModes - -# Register FatigueModes in _mscl: -_mscl.FatigueModes_swigregister(FatigueModes) - -class Filters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Filters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Filters___nonzero__(self) - - def __bool__(self): - return _mscl.Filters___bool__(self) - - def __len__(self): - return _mscl.Filters___len__(self) - - def __getslice__(self, i, j): - return _mscl.Filters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Filters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Filters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Filters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Filters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Filters___setitem__(self, *args) - - def pop(self): - return _mscl.Filters_pop(self) - - def append(self, x): - return _mscl.Filters_append(self, x) - - def empty(self): - return _mscl.Filters_empty(self) - - def size(self): - return _mscl.Filters_size(self) - - def swap(self, v): - return _mscl.Filters_swap(self, v) - - def begin(self): - return _mscl.Filters_begin(self) - - def end(self): - return _mscl.Filters_end(self) - - def rbegin(self): - return _mscl.Filters_rbegin(self) - - def rend(self): - return _mscl.Filters_rend(self) - - def clear(self): - return _mscl.Filters_clear(self) - - def get_allocator(self): - return _mscl.Filters_get_allocator(self) - - def pop_back(self): - return _mscl.Filters_pop_back(self) - - def erase(self, *args): - return _mscl.Filters_erase(self, *args) - - def __init__(self, *args): - _mscl.Filters_swiginit(self, _mscl.new_Filters(*args)) - - def push_back(self, x): - return _mscl.Filters_push_back(self, x) - - def front(self): - return _mscl.Filters_front(self) - - def back(self): - return _mscl.Filters_back(self) - - def assign(self, n, x): - return _mscl.Filters_assign(self, n, x) - - def resize(self, *args): - return _mscl.Filters_resize(self, *args) - - def insert(self, *args): - return _mscl.Filters_insert(self, *args) - - def reserve(self, n): - return _mscl.Filters_reserve(self, n) - - def capacity(self): - return _mscl.Filters_capacity(self) - __swig_destroy__ = _mscl.delete_Filters - -# Register Filters in _mscl: -_mscl.Filters_swigregister(Filters) - -class HighPassFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HighPassFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HighPassFilters___nonzero__(self) - - def __bool__(self): - return _mscl.HighPassFilters___bool__(self) - - def __len__(self): - return _mscl.HighPassFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.HighPassFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HighPassFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HighPassFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HighPassFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HighPassFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HighPassFilters___setitem__(self, *args) - - def pop(self): - return _mscl.HighPassFilters_pop(self) - - def append(self, x): - return _mscl.HighPassFilters_append(self, x) - - def empty(self): - return _mscl.HighPassFilters_empty(self) - - def size(self): - return _mscl.HighPassFilters_size(self) - - def swap(self, v): - return _mscl.HighPassFilters_swap(self, v) - - def begin(self): - return _mscl.HighPassFilters_begin(self) - - def end(self): - return _mscl.HighPassFilters_end(self) - - def rbegin(self): - return _mscl.HighPassFilters_rbegin(self) - - def rend(self): - return _mscl.HighPassFilters_rend(self) - - def clear(self): - return _mscl.HighPassFilters_clear(self) - - def get_allocator(self): - return _mscl.HighPassFilters_get_allocator(self) - - def pop_back(self): - return _mscl.HighPassFilters_pop_back(self) - - def erase(self, *args): - return _mscl.HighPassFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.HighPassFilters_swiginit(self, _mscl.new_HighPassFilters(*args)) - - def push_back(self, x): - return _mscl.HighPassFilters_push_back(self, x) - - def front(self): - return _mscl.HighPassFilters_front(self) - - def back(self): - return _mscl.HighPassFilters_back(self) - - def assign(self, n, x): - return _mscl.HighPassFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.HighPassFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.HighPassFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.HighPassFilters_reserve(self, n) - - def capacity(self): - return _mscl.HighPassFilters_capacity(self) - __swig_destroy__ = _mscl.delete_HighPassFilters - -# Register HighPassFilters in _mscl: -_mscl.HighPassFilters_swigregister(HighPassFilters) - -class StorageLimitModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StorageLimitModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StorageLimitModes___nonzero__(self) - - def __bool__(self): - return _mscl.StorageLimitModes___bool__(self) - - def __len__(self): - return _mscl.StorageLimitModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.StorageLimitModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StorageLimitModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StorageLimitModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StorageLimitModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StorageLimitModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StorageLimitModes___setitem__(self, *args) - - def pop(self): - return _mscl.StorageLimitModes_pop(self) - - def append(self, x): - return _mscl.StorageLimitModes_append(self, x) - - def empty(self): - return _mscl.StorageLimitModes_empty(self) - - def size(self): - return _mscl.StorageLimitModes_size(self) - - def swap(self, v): - return _mscl.StorageLimitModes_swap(self, v) - - def begin(self): - return _mscl.StorageLimitModes_begin(self) - - def end(self): - return _mscl.StorageLimitModes_end(self) - - def rbegin(self): - return _mscl.StorageLimitModes_rbegin(self) - - def rend(self): - return _mscl.StorageLimitModes_rend(self) - - def clear(self): - return _mscl.StorageLimitModes_clear(self) - - def get_allocator(self): - return _mscl.StorageLimitModes_get_allocator(self) - - def pop_back(self): - return _mscl.StorageLimitModes_pop_back(self) - - def erase(self, *args): - return _mscl.StorageLimitModes_erase(self, *args) - - def __init__(self, *args): - _mscl.StorageLimitModes_swiginit(self, _mscl.new_StorageLimitModes(*args)) - - def push_back(self, x): - return _mscl.StorageLimitModes_push_back(self, x) - - def front(self): - return _mscl.StorageLimitModes_front(self) - - def back(self): - return _mscl.StorageLimitModes_back(self) - - def assign(self, n, x): - return _mscl.StorageLimitModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.StorageLimitModes_resize(self, *args) - - def insert(self, *args): - return _mscl.StorageLimitModes_insert(self, *args) - - def reserve(self, n): - return _mscl.StorageLimitModes_reserve(self, n) - - def capacity(self): - return _mscl.StorageLimitModes_capacity(self) - __swig_destroy__ = _mscl.delete_StorageLimitModes - -# Register StorageLimitModes in _mscl: -_mscl.StorageLimitModes_swigregister(StorageLimitModes) - -class InputRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.InputRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.InputRanges___nonzero__(self) - - def __bool__(self): - return _mscl.InputRanges___bool__(self) - - def __len__(self): - return _mscl.InputRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.InputRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.InputRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.InputRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.InputRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.InputRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.InputRanges___setitem__(self, *args) - - def pop(self): - return _mscl.InputRanges_pop(self) - - def append(self, x): - return _mscl.InputRanges_append(self, x) - - def empty(self): - return _mscl.InputRanges_empty(self) - - def size(self): - return _mscl.InputRanges_size(self) - - def swap(self, v): - return _mscl.InputRanges_swap(self, v) - - def begin(self): - return _mscl.InputRanges_begin(self) - - def end(self): - return _mscl.InputRanges_end(self) - - def rbegin(self): - return _mscl.InputRanges_rbegin(self) - - def rend(self): - return _mscl.InputRanges_rend(self) - - def clear(self): - return _mscl.InputRanges_clear(self) - - def get_allocator(self): - return _mscl.InputRanges_get_allocator(self) - - def pop_back(self): - return _mscl.InputRanges_pop_back(self) - - def erase(self, *args): - return _mscl.InputRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.InputRanges_swiginit(self, _mscl.new_InputRanges(*args)) - - def push_back(self, x): - return _mscl.InputRanges_push_back(self, x) - - def front(self): - return _mscl.InputRanges_front(self) - - def back(self): - return _mscl.InputRanges_back(self) - - def assign(self, n, x): - return _mscl.InputRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.InputRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.InputRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.InputRanges_reserve(self, n) - - def capacity(self): - return _mscl.InputRanges_capacity(self) - __swig_destroy__ = _mscl.delete_InputRanges - -# Register InputRanges in _mscl: -_mscl.InputRanges_swigregister(InputRanges) - -class DataModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataModes___nonzero__(self) - - def __bool__(self): - return _mscl.DataModes___bool__(self) - - def __len__(self): - return _mscl.DataModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataModes___setitem__(self, *args) - - def pop(self): - return _mscl.DataModes_pop(self) - - def append(self, x): - return _mscl.DataModes_append(self, x) - - def empty(self): - return _mscl.DataModes_empty(self) - - def size(self): - return _mscl.DataModes_size(self) - - def swap(self, v): - return _mscl.DataModes_swap(self, v) - - def begin(self): - return _mscl.DataModes_begin(self) - - def end(self): - return _mscl.DataModes_end(self) - - def rbegin(self): - return _mscl.DataModes_rbegin(self) - - def rend(self): - return _mscl.DataModes_rend(self) - - def clear(self): - return _mscl.DataModes_clear(self) - - def get_allocator(self): - return _mscl.DataModes_get_allocator(self) - - def pop_back(self): - return _mscl.DataModes_pop_back(self) - - def erase(self, *args): - return _mscl.DataModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DataModes_swiginit(self, _mscl.new_DataModes(*args)) - - def push_back(self, x): - return _mscl.DataModes_push_back(self, x) - - def front(self): - return _mscl.DataModes_front(self) - - def back(self): - return _mscl.DataModes_back(self) - - def assign(self, n, x): - return _mscl.DataModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DataModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DataModes_reserve(self, n) - - def capacity(self): - return _mscl.DataModes_capacity(self) - __swig_destroy__ = _mscl.delete_DataModes - -# Register DataModes in _mscl: -_mscl.DataModes_swigregister(DataModes) - -class CommProtocols(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommProtocols_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommProtocols___nonzero__(self) - - def __bool__(self): - return _mscl.CommProtocols___bool__(self) - - def __len__(self): - return _mscl.CommProtocols___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommProtocols___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommProtocols___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommProtocols___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommProtocols___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommProtocols___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommProtocols___setitem__(self, *args) - - def pop(self): - return _mscl.CommProtocols_pop(self) - - def append(self, x): - return _mscl.CommProtocols_append(self, x) - - def empty(self): - return _mscl.CommProtocols_empty(self) - - def size(self): - return _mscl.CommProtocols_size(self) - - def swap(self, v): - return _mscl.CommProtocols_swap(self, v) - - def begin(self): - return _mscl.CommProtocols_begin(self) - - def end(self): - return _mscl.CommProtocols_end(self) - - def rbegin(self): - return _mscl.CommProtocols_rbegin(self) - - def rend(self): - return _mscl.CommProtocols_rend(self) - - def clear(self): - return _mscl.CommProtocols_clear(self) - - def get_allocator(self): - return _mscl.CommProtocols_get_allocator(self) - - def pop_back(self): - return _mscl.CommProtocols_pop_back(self) - - def erase(self, *args): - return _mscl.CommProtocols_erase(self, *args) - - def __init__(self, *args): - _mscl.CommProtocols_swiginit(self, _mscl.new_CommProtocols(*args)) - - def push_back(self, x): - return _mscl.CommProtocols_push_back(self, x) - - def front(self): - return _mscl.CommProtocols_front(self) - - def back(self): - return _mscl.CommProtocols_back(self) - - def assign(self, n, x): - return _mscl.CommProtocols_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommProtocols_resize(self, *args) - - def insert(self, *args): - return _mscl.CommProtocols_insert(self, *args) - - def reserve(self, n): - return _mscl.CommProtocols_reserve(self, n) - - def capacity(self): - return _mscl.CommProtocols_capacity(self) - __swig_destroy__ = _mscl.delete_CommProtocols - -# Register CommProtocols in _mscl: -_mscl.CommProtocols_swigregister(CommProtocols) - -class Voltages(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Voltages_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Voltages___nonzero__(self) - - def __bool__(self): - return _mscl.Voltages___bool__(self) - - def __len__(self): - return _mscl.Voltages___len__(self) - - def __getslice__(self, i, j): - return _mscl.Voltages___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Voltages___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Voltages___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Voltages___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Voltages___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Voltages___setitem__(self, *args) - - def pop(self): - return _mscl.Voltages_pop(self) - - def append(self, x): - return _mscl.Voltages_append(self, x) - - def empty(self): - return _mscl.Voltages_empty(self) - - def size(self): - return _mscl.Voltages_size(self) - - def swap(self, v): - return _mscl.Voltages_swap(self, v) - - def begin(self): - return _mscl.Voltages_begin(self) - - def end(self): - return _mscl.Voltages_end(self) - - def rbegin(self): - return _mscl.Voltages_rbegin(self) - - def rend(self): - return _mscl.Voltages_rend(self) - - def clear(self): - return _mscl.Voltages_clear(self) - - def get_allocator(self): - return _mscl.Voltages_get_allocator(self) - - def pop_back(self): - return _mscl.Voltages_pop_back(self) - - def erase(self, *args): - return _mscl.Voltages_erase(self, *args) - - def __init__(self, *args): - _mscl.Voltages_swiginit(self, _mscl.new_Voltages(*args)) - - def push_back(self, x): - return _mscl.Voltages_push_back(self, x) - - def front(self): - return _mscl.Voltages_front(self) - - def back(self): - return _mscl.Voltages_back(self) - - def assign(self, n, x): - return _mscl.Voltages_assign(self, n, x) - - def resize(self, *args): - return _mscl.Voltages_resize(self, *args) - - def insert(self, *args): - return _mscl.Voltages_insert(self, *args) - - def reserve(self, n): - return _mscl.Voltages_reserve(self, n) - - def capacity(self): - return _mscl.Voltages_capacity(self) - __swig_destroy__ = _mscl.delete_Voltages - -# Register Voltages in _mscl: -_mscl.Voltages_swigregister(Voltages) - -class SensorOutputModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorOutputModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorOutputModes___nonzero__(self) - - def __bool__(self): - return _mscl.SensorOutputModes___bool__(self) - - def __len__(self): - return _mscl.SensorOutputModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorOutputModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorOutputModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorOutputModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorOutputModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorOutputModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorOutputModes___setitem__(self, *args) - - def pop(self): - return _mscl.SensorOutputModes_pop(self) - - def append(self, x): - return _mscl.SensorOutputModes_append(self, x) - - def empty(self): - return _mscl.SensorOutputModes_empty(self) - - def size(self): - return _mscl.SensorOutputModes_size(self) - - def swap(self, v): - return _mscl.SensorOutputModes_swap(self, v) - - def begin(self): - return _mscl.SensorOutputModes_begin(self) - - def end(self): - return _mscl.SensorOutputModes_end(self) - - def rbegin(self): - return _mscl.SensorOutputModes_rbegin(self) - - def rend(self): - return _mscl.SensorOutputModes_rend(self) - - def clear(self): - return _mscl.SensorOutputModes_clear(self) - - def get_allocator(self): - return _mscl.SensorOutputModes_get_allocator(self) - - def pop_back(self): - return _mscl.SensorOutputModes_pop_back(self) - - def erase(self, *args): - return _mscl.SensorOutputModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorOutputModes_swiginit(self, _mscl.new_SensorOutputModes(*args)) - - def push_back(self, x): - return _mscl.SensorOutputModes_push_back(self, x) - - def front(self): - return _mscl.SensorOutputModes_front(self) - - def back(self): - return _mscl.SensorOutputModes_back(self) - - def assign(self, n, x): - return _mscl.SensorOutputModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorOutputModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorOutputModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorOutputModes_reserve(self, n) - - def capacity(self): - return _mscl.SensorOutputModes_capacity(self) - __swig_destroy__ = _mscl.delete_SensorOutputModes - -# Register SensorOutputModes in _mscl: -_mscl.SensorOutputModes_swigregister(SensorOutputModes) - -class CfcFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CfcFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CfcFilters___nonzero__(self) - - def __bool__(self): - return _mscl.CfcFilters___bool__(self) - - def __len__(self): - return _mscl.CfcFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.CfcFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CfcFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CfcFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CfcFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CfcFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CfcFilters___setitem__(self, *args) - - def pop(self): - return _mscl.CfcFilters_pop(self) - - def append(self, x): - return _mscl.CfcFilters_append(self, x) - - def empty(self): - return _mscl.CfcFilters_empty(self) - - def size(self): - return _mscl.CfcFilters_size(self) - - def swap(self, v): - return _mscl.CfcFilters_swap(self, v) - - def begin(self): - return _mscl.CfcFilters_begin(self) - - def end(self): - return _mscl.CfcFilters_end(self) - - def rbegin(self): - return _mscl.CfcFilters_rbegin(self) - - def rend(self): - return _mscl.CfcFilters_rend(self) - - def clear(self): - return _mscl.CfcFilters_clear(self) - - def get_allocator(self): - return _mscl.CfcFilters_get_allocator(self) - - def pop_back(self): - return _mscl.CfcFilters_pop_back(self) - - def erase(self, *args): - return _mscl.CfcFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.CfcFilters_swiginit(self, _mscl.new_CfcFilters(*args)) - - def push_back(self, x): - return _mscl.CfcFilters_push_back(self, x) - - def front(self): - return _mscl.CfcFilters_front(self) - - def back(self): - return _mscl.CfcFilters_back(self) - - def assign(self, n, x): - return _mscl.CfcFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.CfcFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.CfcFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.CfcFilters_reserve(self, n) - - def capacity(self): - return _mscl.CfcFilters_capacity(self) - __swig_destroy__ = _mscl.delete_CfcFilters - -# Register CfcFilters in _mscl: -_mscl.CfcFilters_swigregister(CfcFilters) - -class TransducerTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransducerTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransducerTypes___nonzero__(self) - - def __bool__(self): - return _mscl.TransducerTypes___bool__(self) - - def __len__(self): - return _mscl.TransducerTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransducerTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransducerTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransducerTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransducerTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransducerTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransducerTypes___setitem__(self, *args) - - def pop(self): - return _mscl.TransducerTypes_pop(self) - - def append(self, x): - return _mscl.TransducerTypes_append(self, x) - - def empty(self): - return _mscl.TransducerTypes_empty(self) - - def size(self): - return _mscl.TransducerTypes_size(self) - - def swap(self, v): - return _mscl.TransducerTypes_swap(self, v) - - def begin(self): - return _mscl.TransducerTypes_begin(self) - - def end(self): - return _mscl.TransducerTypes_end(self) - - def rbegin(self): - return _mscl.TransducerTypes_rbegin(self) - - def rend(self): - return _mscl.TransducerTypes_rend(self) - - def clear(self): - return _mscl.TransducerTypes_clear(self) - - def get_allocator(self): - return _mscl.TransducerTypes_get_allocator(self) - - def pop_back(self): - return _mscl.TransducerTypes_pop_back(self) - - def erase(self, *args): - return _mscl.TransducerTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.TransducerTypes_swiginit(self, _mscl.new_TransducerTypes(*args)) - - def push_back(self, x): - return _mscl.TransducerTypes_push_back(self, x) - - def front(self): - return _mscl.TransducerTypes_front(self) - - def back(self): - return _mscl.TransducerTypes_back(self) - - def assign(self, n, x): - return _mscl.TransducerTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransducerTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.TransducerTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.TransducerTypes_reserve(self, n) - - def capacity(self): - return _mscl.TransducerTypes_capacity(self) - __swig_destroy__ = _mscl.delete_TransducerTypes - -# Register TransducerTypes in _mscl: -_mscl.TransducerTypes_swigregister(TransducerTypes) - -class EepromMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EepromMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EepromMap___nonzero__(self) - - def __bool__(self): - return _mscl.EepromMap___bool__(self) - - def __len__(self): - return _mscl.EepromMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.EepromMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.EepromMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.EepromMap_has_key(self, key) - - def keys(self): - return _mscl.EepromMap_keys(self) - - def values(self): - return _mscl.EepromMap_values(self) - - def items(self): - return _mscl.EepromMap_items(self) - - def __contains__(self, key): - return _mscl.EepromMap___contains__(self, key) - - def key_iterator(self): - return _mscl.EepromMap_key_iterator(self) - - def value_iterator(self): - return _mscl.EepromMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.EepromMap___setitem__(self, *args) - - def asdict(self): - return _mscl.EepromMap_asdict(self) - - def __init__(self, *args): - _mscl.EepromMap_swiginit(self, _mscl.new_EepromMap(*args)) - - def empty(self): - return _mscl.EepromMap_empty(self) - - def size(self): - return _mscl.EepromMap_size(self) - - def swap(self, v): - return _mscl.EepromMap_swap(self, v) - - def begin(self): - return _mscl.EepromMap_begin(self) - - def end(self): - return _mscl.EepromMap_end(self) - - def rbegin(self): - return _mscl.EepromMap_rbegin(self) - - def rend(self): - return _mscl.EepromMap_rend(self) - - def clear(self): - return _mscl.EepromMap_clear(self) - - def get_allocator(self): - return _mscl.EepromMap_get_allocator(self) - - def count(self, x): - return _mscl.EepromMap_count(self, x) - - def erase(self, *args): - return _mscl.EepromMap_erase(self, *args) - - def find(self, x): - return _mscl.EepromMap_find(self, x) - - def lower_bound(self, x): - return _mscl.EepromMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.EepromMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_EepromMap - -# Register EepromMap in _mscl: -_mscl.EepromMap_swigregister(EepromMap) - -class DerivedChannelMasks(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DerivedChannelMasks_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DerivedChannelMasks___nonzero__(self) - - def __bool__(self): - return _mscl.DerivedChannelMasks___bool__(self) - - def __len__(self): - return _mscl.DerivedChannelMasks___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DerivedChannelMasks___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DerivedChannelMasks___delitem__(self, key) - - def has_key(self, key): - return _mscl.DerivedChannelMasks_has_key(self, key) - - def keys(self): - return _mscl.DerivedChannelMasks_keys(self) - - def values(self): - return _mscl.DerivedChannelMasks_values(self) - - def items(self): - return _mscl.DerivedChannelMasks_items(self) - - def __contains__(self, key): - return _mscl.DerivedChannelMasks___contains__(self, key) - - def key_iterator(self): - return _mscl.DerivedChannelMasks_key_iterator(self) - - def value_iterator(self): - return _mscl.DerivedChannelMasks_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DerivedChannelMasks___setitem__(self, *args) - - def asdict(self): - return _mscl.DerivedChannelMasks_asdict(self) - - def __init__(self, *args): - _mscl.DerivedChannelMasks_swiginit(self, _mscl.new_DerivedChannelMasks(*args)) - - def empty(self): - return _mscl.DerivedChannelMasks_empty(self) - - def size(self): - return _mscl.DerivedChannelMasks_size(self) - - def swap(self, v): - return _mscl.DerivedChannelMasks_swap(self, v) - - def begin(self): - return _mscl.DerivedChannelMasks_begin(self) - - def end(self): - return _mscl.DerivedChannelMasks_end(self) - - def rbegin(self): - return _mscl.DerivedChannelMasks_rbegin(self) - - def rend(self): - return _mscl.DerivedChannelMasks_rend(self) - - def clear(self): - return _mscl.DerivedChannelMasks_clear(self) - - def get_allocator(self): - return _mscl.DerivedChannelMasks_get_allocator(self) - - def count(self, x): - return _mscl.DerivedChannelMasks_count(self, x) - - def erase(self, *args): - return _mscl.DerivedChannelMasks_erase(self, *args) - - def find(self, x): - return _mscl.DerivedChannelMasks_find(self, x) - - def lower_bound(self, x): - return _mscl.DerivedChannelMasks_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DerivedChannelMasks_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DerivedChannelMasks - -# Register DerivedChannelMasks in _mscl: -_mscl.DerivedChannelMasks_swigregister(DerivedChannelMasks) - -class DeviceStatusMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusMap_keys(self) - - def values(self): - return _mscl.DeviceStatusMap_values(self) - - def items(self): - return _mscl.DeviceStatusMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusMap_swiginit(self, _mscl.new_DeviceStatusMap(*args)) - - def empty(self): - return _mscl.DeviceStatusMap_empty(self) - - def size(self): - return _mscl.DeviceStatusMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusMap_begin(self) - - def end(self): - return _mscl.DeviceStatusMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusMap - -# Register DeviceStatusMap in _mscl: -_mscl.DeviceStatusMap_swigregister(DeviceStatusMap) - -class DeviceStatusValueMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusValueMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusValueMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusValueMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusValueMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusValueMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusValueMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusValueMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusValueMap_keys(self) - - def values(self): - return _mscl.DeviceStatusValueMap_values(self) - - def items(self): - return _mscl.DeviceStatusValueMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusValueMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusValueMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusValueMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusValueMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusValueMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusValueMap_swiginit(self, _mscl.new_DeviceStatusValueMap(*args)) - - def empty(self): - return _mscl.DeviceStatusValueMap_empty(self) - - def size(self): - return _mscl.DeviceStatusValueMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusValueMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusValueMap_begin(self) - - def end(self): - return _mscl.DeviceStatusValueMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusValueMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusValueMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusValueMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusValueMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusValueMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusValueMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusValueMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusValueMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusValueMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusValueMap - -# Register DeviceStatusValueMap in _mscl: -_mscl.DeviceStatusValueMap_swigregister(DeviceStatusValueMap) - -class SampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.SampleRates___bool__(self) - - def __len__(self): - return _mscl.SampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.SampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.SampleRates_pop(self) - - def append(self, x): - return _mscl.SampleRates_append(self, x) - - def empty(self): - return _mscl.SampleRates_empty(self) - - def size(self): - return _mscl.SampleRates_size(self) - - def swap(self, v): - return _mscl.SampleRates_swap(self, v) - - def begin(self): - return _mscl.SampleRates_begin(self) - - def end(self): - return _mscl.SampleRates_end(self) - - def rbegin(self): - return _mscl.SampleRates_rbegin(self) - - def rend(self): - return _mscl.SampleRates_rend(self) - - def clear(self): - return _mscl.SampleRates_clear(self) - - def get_allocator(self): - return _mscl.SampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.SampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.SampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.SampleRates_swiginit(self, _mscl.new_SampleRates(*args)) - - def push_back(self, x): - return _mscl.SampleRates_push_back(self, x) - - def front(self): - return _mscl.SampleRates_front(self) - - def back(self): - return _mscl.SampleRates_back(self) - - def assign(self, n, x): - return _mscl.SampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.SampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.SampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.SampleRates_reserve(self, n) - - def capacity(self): - return _mscl.SampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_SampleRates - -# Register SampleRates in _mscl: -_mscl.SampleRates_swigregister(SampleRates) - -class ConfigIssues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConfigIssues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConfigIssues___nonzero__(self) - - def __bool__(self): - return _mscl.ConfigIssues___bool__(self) - - def __len__(self): - return _mscl.ConfigIssues___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConfigIssues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConfigIssues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConfigIssues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConfigIssues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConfigIssues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConfigIssues___setitem__(self, *args) - - def pop(self): - return _mscl.ConfigIssues_pop(self) - - def append(self, x): - return _mscl.ConfigIssues_append(self, x) - - def empty(self): - return _mscl.ConfigIssues_empty(self) - - def size(self): - return _mscl.ConfigIssues_size(self) - - def swap(self, v): - return _mscl.ConfigIssues_swap(self, v) - - def begin(self): - return _mscl.ConfigIssues_begin(self) - - def end(self): - return _mscl.ConfigIssues_end(self) - - def rbegin(self): - return _mscl.ConfigIssues_rbegin(self) - - def rend(self): - return _mscl.ConfigIssues_rend(self) - - def clear(self): - return _mscl.ConfigIssues_clear(self) - - def get_allocator(self): - return _mscl.ConfigIssues_get_allocator(self) - - def pop_back(self): - return _mscl.ConfigIssues_pop_back(self) - - def erase(self, *args): - return _mscl.ConfigIssues_erase(self, *args) - - def __init__(self, *args): - _mscl.ConfigIssues_swiginit(self, _mscl.new_ConfigIssues(*args)) - - def push_back(self, x): - return _mscl.ConfigIssues_push_back(self, x) - - def front(self): - return _mscl.ConfigIssues_front(self) - - def back(self): - return _mscl.ConfigIssues_back(self) - - def assign(self, n, x): - return _mscl.ConfigIssues_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConfigIssues_resize(self, *args) - - def insert(self, *args): - return _mscl.ConfigIssues_insert(self, *args) - - def reserve(self, n): - return _mscl.ConfigIssues_reserve(self, n) - - def capacity(self): - return _mscl.ConfigIssues_capacity(self) - __swig_destroy__ = _mscl.delete_ConfigIssues - -# Register ConfigIssues in _mscl: -_mscl.ConfigIssues_swigregister(ConfigIssues) - -class MipChannelFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelFields_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelFields___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelFields___bool__(self) - - def __len__(self): - return _mscl.MipChannelFields___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelFields___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelFields___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelFields___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelFields___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelFields___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelFields___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelFields_pop(self) - - def append(self, x): - return _mscl.MipChannelFields_append(self, x) - - def empty(self): - return _mscl.MipChannelFields_empty(self) - - def size(self): - return _mscl.MipChannelFields_size(self) - - def swap(self, v): - return _mscl.MipChannelFields_swap(self, v) - - def begin(self): - return _mscl.MipChannelFields_begin(self) - - def end(self): - return _mscl.MipChannelFields_end(self) - - def rbegin(self): - return _mscl.MipChannelFields_rbegin(self) - - def rend(self): - return _mscl.MipChannelFields_rend(self) - - def clear(self): - return _mscl.MipChannelFields_clear(self) - - def get_allocator(self): - return _mscl.MipChannelFields_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelFields_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelFields_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelFields_swiginit(self, _mscl.new_MipChannelFields(*args)) - - def push_back(self, x): - return _mscl.MipChannelFields_push_back(self, x) - - def front(self): - return _mscl.MipChannelFields_front(self) - - def back(self): - return _mscl.MipChannelFields_back(self) - - def assign(self, n, x): - return _mscl.MipChannelFields_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelFields_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelFields_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelFields_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelFields_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelFields - -# Register MipChannelFields in _mscl: -_mscl.MipChannelFields_swigregister(MipChannelFields) - -class MipCommands(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommands_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommands___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommands___bool__(self) - - def __len__(self): - return _mscl.MipCommands___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommands___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommands___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommands___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommands___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommands___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommands___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommands_pop(self) - - def append(self, x): - return _mscl.MipCommands_append(self, x) - - def empty(self): - return _mscl.MipCommands_empty(self) - - def size(self): - return _mscl.MipCommands_size(self) - - def swap(self, v): - return _mscl.MipCommands_swap(self, v) - - def begin(self): - return _mscl.MipCommands_begin(self) - - def end(self): - return _mscl.MipCommands_end(self) - - def rbegin(self): - return _mscl.MipCommands_rbegin(self) - - def rend(self): - return _mscl.MipCommands_rend(self) - - def clear(self): - return _mscl.MipCommands_clear(self) - - def get_allocator(self): - return _mscl.MipCommands_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommands_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommands_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommands_swiginit(self, _mscl.new_MipCommands(*args)) - - def push_back(self, x): - return _mscl.MipCommands_push_back(self, x) - - def front(self): - return _mscl.MipCommands_front(self) - - def back(self): - return _mscl.MipCommands_back(self) - - def assign(self, n, x): - return _mscl.MipCommands_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommands_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommands_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommands_reserve(self, n) - - def capacity(self): - return _mscl.MipCommands_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommands - -# Register MipCommands in _mscl: -_mscl.MipCommands_swigregister(MipCommands) - -class MipDataClasses(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataClasses_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataClasses___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataClasses___bool__(self) - - def __len__(self): - return _mscl.MipDataClasses___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataClasses___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataClasses___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataClasses___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataClasses___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataClasses___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataClasses___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataClasses_pop(self) - - def append(self, x): - return _mscl.MipDataClasses_append(self, x) - - def empty(self): - return _mscl.MipDataClasses_empty(self) - - def size(self): - return _mscl.MipDataClasses_size(self) - - def swap(self, v): - return _mscl.MipDataClasses_swap(self, v) - - def begin(self): - return _mscl.MipDataClasses_begin(self) - - def end(self): - return _mscl.MipDataClasses_end(self) - - def rbegin(self): - return _mscl.MipDataClasses_rbegin(self) - - def rend(self): - return _mscl.MipDataClasses_rend(self) - - def clear(self): - return _mscl.MipDataClasses_clear(self) - - def get_allocator(self): - return _mscl.MipDataClasses_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataClasses_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataClasses_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataClasses_swiginit(self, _mscl.new_MipDataClasses(*args)) - - def push_back(self, x): - return _mscl.MipDataClasses_push_back(self, x) - - def front(self): - return _mscl.MipDataClasses_front(self) - - def back(self): - return _mscl.MipDataClasses_back(self) - - def assign(self, n, x): - return _mscl.MipDataClasses_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataClasses_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataClasses_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataClasses_reserve(self, n) - - def capacity(self): - return _mscl.MipDataClasses_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataClasses - -# Register MipDataClasses in _mscl: -_mscl.MipDataClasses_swigregister(MipDataClasses) - -class MipChannelIdentifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelIdentifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelIdentifiers___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelIdentifiers___bool__(self) - - def __len__(self): - return _mscl.MipChannelIdentifiers___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelIdentifiers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelIdentifiers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelIdentifiers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelIdentifiers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelIdentifiers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelIdentifiers___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelIdentifiers_pop(self) - - def append(self, x): - return _mscl.MipChannelIdentifiers_append(self, x) - - def empty(self): - return _mscl.MipChannelIdentifiers_empty(self) - - def size(self): - return _mscl.MipChannelIdentifiers_size(self) - - def swap(self, v): - return _mscl.MipChannelIdentifiers_swap(self, v) - - def begin(self): - return _mscl.MipChannelIdentifiers_begin(self) - - def end(self): - return _mscl.MipChannelIdentifiers_end(self) - - def rbegin(self): - return _mscl.MipChannelIdentifiers_rbegin(self) - - def rend(self): - return _mscl.MipChannelIdentifiers_rend(self) - - def clear(self): - return _mscl.MipChannelIdentifiers_clear(self) - - def get_allocator(self): - return _mscl.MipChannelIdentifiers_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelIdentifiers_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelIdentifiers_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelIdentifiers_swiginit(self, _mscl.new_MipChannelIdentifiers(*args)) - - def push_back(self, x): - return _mscl.MipChannelIdentifiers_push_back(self, x) - - def front(self): - return _mscl.MipChannelIdentifiers_front(self) - - def back(self): - return _mscl.MipChannelIdentifiers_back(self) - - def assign(self, n, x): - return _mscl.MipChannelIdentifiers_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelIdentifiers_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelIdentifiers_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelIdentifiers_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelIdentifiers_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelIdentifiers - -# Register MipChannelIdentifiers in _mscl: -_mscl.MipChannelIdentifiers_swigregister(MipChannelIdentifiers) - -class MipCommandSet(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandSet_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandSet___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandSet___bool__(self) - - def __len__(self): - return _mscl.MipCommandSet___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandSet___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandSet___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandSet___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandSet___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandSet___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandSet___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandSet_pop(self) - - def append(self, x): - return _mscl.MipCommandSet_append(self, x) - - def empty(self): - return _mscl.MipCommandSet_empty(self) - - def size(self): - return _mscl.MipCommandSet_size(self) - - def swap(self, v): - return _mscl.MipCommandSet_swap(self, v) - - def begin(self): - return _mscl.MipCommandSet_begin(self) - - def end(self): - return _mscl.MipCommandSet_end(self) - - def rbegin(self): - return _mscl.MipCommandSet_rbegin(self) - - def rend(self): - return _mscl.MipCommandSet_rend(self) - - def clear(self): - return _mscl.MipCommandSet_clear(self) - - def get_allocator(self): - return _mscl.MipCommandSet_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandSet_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandSet_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandSet_swiginit(self, _mscl.new_MipCommandSet(*args)) - - def push_back(self, x): - return _mscl.MipCommandSet_push_back(self, x) - - def front(self): - return _mscl.MipCommandSet_front(self) - - def back(self): - return _mscl.MipCommandSet_back(self) - - def assign(self, n, x): - return _mscl.MipCommandSet_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandSet_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandSet_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandSet_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandSet_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandSet - -# Register MipCommandSet in _mscl: -_mscl.MipCommandSet_swigregister(MipCommandSet) - -class MipFieldValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipFieldValues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipFieldValues___nonzero__(self) - - def __bool__(self): - return _mscl.MipFieldValues___bool__(self) - - def __len__(self): - return _mscl.MipFieldValues___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipFieldValues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipFieldValues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipFieldValues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipFieldValues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipFieldValues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipFieldValues___setitem__(self, *args) - - def pop(self): - return _mscl.MipFieldValues_pop(self) - - def append(self, x): - return _mscl.MipFieldValues_append(self, x) - - def empty(self): - return _mscl.MipFieldValues_empty(self) - - def size(self): - return _mscl.MipFieldValues_size(self) - - def swap(self, v): - return _mscl.MipFieldValues_swap(self, v) - - def begin(self): - return _mscl.MipFieldValues_begin(self) - - def end(self): - return _mscl.MipFieldValues_end(self) - - def rbegin(self): - return _mscl.MipFieldValues_rbegin(self) - - def rend(self): - return _mscl.MipFieldValues_rend(self) - - def clear(self): - return _mscl.MipFieldValues_clear(self) - - def get_allocator(self): - return _mscl.MipFieldValues_get_allocator(self) - - def pop_back(self): - return _mscl.MipFieldValues_pop_back(self) - - def erase(self, *args): - return _mscl.MipFieldValues_erase(self, *args) - - def __init__(self, *args): - _mscl.MipFieldValues_swiginit(self, _mscl.new_MipFieldValues(*args)) - - def push_back(self, x): - return _mscl.MipFieldValues_push_back(self, x) - - def front(self): - return _mscl.MipFieldValues_front(self) - - def back(self): - return _mscl.MipFieldValues_back(self) - - def assign(self, n, x): - return _mscl.MipFieldValues_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipFieldValues_resize(self, *args) - - def insert(self, *args): - return _mscl.MipFieldValues_insert(self, *args) - - def reserve(self, n): - return _mscl.MipFieldValues_reserve(self, n) - - def capacity(self): - return _mscl.MipFieldValues_capacity(self) - __swig_destroy__ = _mscl.delete_MipFieldValues - -# Register MipFieldValues in _mscl: -_mscl.MipFieldValues_swigregister(MipFieldValues) - -class MipCommandParamPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipCommandParamPair_swiginit(self, _mscl.new_MipCommandParamPair(*args)) - first = property(_mscl.MipCommandParamPair_first_get, _mscl.MipCommandParamPair_first_set) - second = property(_mscl.MipCommandParamPair_second_get, _mscl.MipCommandParamPair_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_MipCommandParamPair - -# Register MipCommandParamPair in _mscl: -_mscl.MipCommandParamPair_swigregister(MipCommandParamPair) - -class MipCommandParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandParameters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandParameters___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandParameters___bool__(self) - - def __len__(self): - return _mscl.MipCommandParameters___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandParameters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandParameters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandParameters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandParameters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandParameters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandParameters___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandParameters_pop(self) - - def append(self, x): - return _mscl.MipCommandParameters_append(self, x) - - def empty(self): - return _mscl.MipCommandParameters_empty(self) - - def size(self): - return _mscl.MipCommandParameters_size(self) - - def swap(self, v): - return _mscl.MipCommandParameters_swap(self, v) - - def begin(self): - return _mscl.MipCommandParameters_begin(self) - - def end(self): - return _mscl.MipCommandParameters_end(self) - - def rbegin(self): - return _mscl.MipCommandParameters_rbegin(self) - - def rend(self): - return _mscl.MipCommandParameters_rend(self) - - def clear(self): - return _mscl.MipCommandParameters_clear(self) - - def get_allocator(self): - return _mscl.MipCommandParameters_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandParameters_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandParameters_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandParameters_swiginit(self, _mscl.new_MipCommandParameters(*args)) - - def push_back(self, x): - return _mscl.MipCommandParameters_push_back(self, x) - - def front(self): - return _mscl.MipCommandParameters_front(self) - - def back(self): - return _mscl.MipCommandParameters_back(self) - - def assign(self, n, x): - return _mscl.MipCommandParameters_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandParameters_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandParameters_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandParameters_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandParameters_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandParameters - -# Register MipCommandParameters in _mscl: -_mscl.MipCommandParameters_swigregister(MipCommandParameters) - -class ChannelIndex(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ChannelIndex_swiginit(self, _mscl.new_ChannelIndex(*args)) - first = property(_mscl.ChannelIndex_first_get, _mscl.ChannelIndex_first_set) - second = property(_mscl.ChannelIndex_second_get, _mscl.ChannelIndex_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_ChannelIndex - -# Register ChannelIndex in _mscl: -_mscl.ChannelIndex_swigregister(ChannelIndex) - -class ChannelIndices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelIndices_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelIndices___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelIndices___bool__(self) - - def __len__(self): - return _mscl.ChannelIndices___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelIndices___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelIndices___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelIndices___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelIndices___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelIndices___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelIndices___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelIndices_pop(self) - - def append(self, x): - return _mscl.ChannelIndices_append(self, x) - - def empty(self): - return _mscl.ChannelIndices_empty(self) - - def size(self): - return _mscl.ChannelIndices_size(self) - - def swap(self, v): - return _mscl.ChannelIndices_swap(self, v) - - def begin(self): - return _mscl.ChannelIndices_begin(self) - - def end(self): - return _mscl.ChannelIndices_end(self) - - def rbegin(self): - return _mscl.ChannelIndices_rbegin(self) - - def rend(self): - return _mscl.ChannelIndices_rend(self) - - def clear(self): - return _mscl.ChannelIndices_clear(self) - - def get_allocator(self): - return _mscl.ChannelIndices_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelIndices_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelIndices_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelIndices_swiginit(self, _mscl.new_ChannelIndices(*args)) - - def push_back(self, x): - return _mscl.ChannelIndices_push_back(self, x) - - def front(self): - return _mscl.ChannelIndices_front(self) - - def back(self): - return _mscl.ChannelIndices_back(self) - - def assign(self, n, x): - return _mscl.ChannelIndices_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelIndices_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelIndices_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelIndices_reserve(self, n) - - def capacity(self): - return _mscl.ChannelIndices_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelIndices - -# Register ChannelIndices in _mscl: -_mscl.ChannelIndices_swigregister(ChannelIndices) - -class ChannelFieldQualifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelFieldQualifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelFieldQualifiers___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelFieldQualifiers___bool__(self) - - def __len__(self): - return _mscl.ChannelFieldQualifiers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelFieldQualifiers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelFieldQualifiers___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelFieldQualifiers_has_key(self, key) - - def keys(self): - return _mscl.ChannelFieldQualifiers_keys(self) - - def values(self): - return _mscl.ChannelFieldQualifiers_values(self) - - def items(self): - return _mscl.ChannelFieldQualifiers_items(self) - - def __contains__(self, key): - return _mscl.ChannelFieldQualifiers___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelFieldQualifiers_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelFieldQualifiers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelFieldQualifiers___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelFieldQualifiers_asdict(self) - - def __init__(self, *args): - _mscl.ChannelFieldQualifiers_swiginit(self, _mscl.new_ChannelFieldQualifiers(*args)) - - def empty(self): - return _mscl.ChannelFieldQualifiers_empty(self) - - def size(self): - return _mscl.ChannelFieldQualifiers_size(self) - - def swap(self, v): - return _mscl.ChannelFieldQualifiers_swap(self, v) - - def begin(self): - return _mscl.ChannelFieldQualifiers_begin(self) - - def end(self): - return _mscl.ChannelFieldQualifiers_end(self) - - def rbegin(self): - return _mscl.ChannelFieldQualifiers_rbegin(self) - - def rend(self): - return _mscl.ChannelFieldQualifiers_rend(self) - - def clear(self): - return _mscl.ChannelFieldQualifiers_clear(self) - - def get_allocator(self): - return _mscl.ChannelFieldQualifiers_get_allocator(self) - - def count(self, x): - return _mscl.ChannelFieldQualifiers_count(self, x) - - def erase(self, *args): - return _mscl.ChannelFieldQualifiers_erase(self, *args) - - def find(self, x): - return _mscl.ChannelFieldQualifiers_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelFieldQualifiers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelFieldQualifiers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelFieldQualifiers - -# Register ChannelFieldQualifiers in _mscl: -_mscl.ChannelFieldQualifiers_swigregister(ChannelFieldQualifiers) - -class GnssReceivers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssReceivers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssReceivers___nonzero__(self) - - def __bool__(self): - return _mscl.GnssReceivers___bool__(self) - - def __len__(self): - return _mscl.GnssReceivers___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssReceivers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssReceivers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssReceivers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssReceivers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssReceivers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssReceivers___setitem__(self, *args) - - def pop(self): - return _mscl.GnssReceivers_pop(self) - - def append(self, x): - return _mscl.GnssReceivers_append(self, x) - - def empty(self): - return _mscl.GnssReceivers_empty(self) - - def size(self): - return _mscl.GnssReceivers_size(self) - - def swap(self, v): - return _mscl.GnssReceivers_swap(self, v) - - def begin(self): - return _mscl.GnssReceivers_begin(self) - - def end(self): - return _mscl.GnssReceivers_end(self) - - def rbegin(self): - return _mscl.GnssReceivers_rbegin(self) - - def rend(self): - return _mscl.GnssReceivers_rend(self) - - def clear(self): - return _mscl.GnssReceivers_clear(self) - - def get_allocator(self): - return _mscl.GnssReceivers_get_allocator(self) - - def pop_back(self): - return _mscl.GnssReceivers_pop_back(self) - - def erase(self, *args): - return _mscl.GnssReceivers_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssReceivers_swiginit(self, _mscl.new_GnssReceivers(*args)) - - def push_back(self, x): - return _mscl.GnssReceivers_push_back(self, x) - - def front(self): - return _mscl.GnssReceivers_front(self) - - def back(self): - return _mscl.GnssReceivers_back(self) - - def assign(self, n, x): - return _mscl.GnssReceivers_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssReceivers_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssReceivers_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssReceivers_reserve(self, n) - - def capacity(self): - return _mscl.GnssReceivers_capacity(self) - __swig_destroy__ = _mscl.delete_GnssReceivers - -# Register GnssReceivers in _mscl: -_mscl.GnssReceivers_swigregister(GnssReceivers) - -class SensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRanges___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRanges___bool__(self) - - def __len__(self): - return _mscl.SensorRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorRanges___setitem__(self, *args) - - def pop(self): - return _mscl.SensorRanges_pop(self) - - def append(self, x): - return _mscl.SensorRanges_append(self, x) - - def empty(self): - return _mscl.SensorRanges_empty(self) - - def size(self): - return _mscl.SensorRanges_size(self) - - def swap(self, v): - return _mscl.SensorRanges_swap(self, v) - - def begin(self): - return _mscl.SensorRanges_begin(self) - - def end(self): - return _mscl.SensorRanges_end(self) - - def rbegin(self): - return _mscl.SensorRanges_rbegin(self) - - def rend(self): - return _mscl.SensorRanges_rend(self) - - def clear(self): - return _mscl.SensorRanges_clear(self) - - def get_allocator(self): - return _mscl.SensorRanges_get_allocator(self) - - def pop_back(self): - return _mscl.SensorRanges_pop_back(self) - - def erase(self, *args): - return _mscl.SensorRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorRanges_swiginit(self, _mscl.new_SensorRanges(*args)) - - def push_back(self, x): - return _mscl.SensorRanges_push_back(self, x) - - def front(self): - return _mscl.SensorRanges_front(self) - - def back(self): - return _mscl.SensorRanges_back(self) - - def assign(self, n, x): - return _mscl.SensorRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorRanges_reserve(self, n) - - def capacity(self): - return _mscl.SensorRanges_capacity(self) - __swig_destroy__ = _mscl.delete_SensorRanges - -# Register SensorRanges in _mscl: -_mscl.SensorRanges_swigregister(SensorRanges) - -class SensorRangeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRangeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRangeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRangeOptions___bool__(self) - - def __len__(self): - return _mscl.SensorRangeOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SensorRangeOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SensorRangeOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.SensorRangeOptions_has_key(self, key) - - def keys(self): - return _mscl.SensorRangeOptions_keys(self) - - def values(self): - return _mscl.SensorRangeOptions_values(self) - - def items(self): - return _mscl.SensorRangeOptions_items(self) - - def __contains__(self, key): - return _mscl.SensorRangeOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.SensorRangeOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.SensorRangeOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SensorRangeOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.SensorRangeOptions_asdict(self) - - def __init__(self, *args): - _mscl.SensorRangeOptions_swiginit(self, _mscl.new_SensorRangeOptions(*args)) - - def empty(self): - return _mscl.SensorRangeOptions_empty(self) - - def size(self): - return _mscl.SensorRangeOptions_size(self) - - def swap(self, v): - return _mscl.SensorRangeOptions_swap(self, v) - - def begin(self): - return _mscl.SensorRangeOptions_begin(self) - - def end(self): - return _mscl.SensorRangeOptions_end(self) - - def rbegin(self): - return _mscl.SensorRangeOptions_rbegin(self) - - def rend(self): - return _mscl.SensorRangeOptions_rend(self) - - def clear(self): - return _mscl.SensorRangeOptions_clear(self) - - def get_allocator(self): - return _mscl.SensorRangeOptions_get_allocator(self) - - def count(self, x): - return _mscl.SensorRangeOptions_count(self, x) - - def erase(self, *args): - return _mscl.SensorRangeOptions_erase(self, *args) - - def find(self, x): - return _mscl.SensorRangeOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.SensorRangeOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SensorRangeOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SensorRangeOptions - -# Register SensorRangeOptions in _mscl: -_mscl.SensorRangeOptions_swigregister(SensorRangeOptions) - -class CommPortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommPortInfo_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommPortInfo___nonzero__(self) - - def __bool__(self): - return _mscl.CommPortInfo___bool__(self) - - def __len__(self): - return _mscl.CommPortInfo___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommPortInfo___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommPortInfo___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommPortInfo___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommPortInfo___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommPortInfo___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommPortInfo___setitem__(self, *args) - - def pop(self): - return _mscl.CommPortInfo_pop(self) - - def append(self, x): - return _mscl.CommPortInfo_append(self, x) - - def empty(self): - return _mscl.CommPortInfo_empty(self) - - def size(self): - return _mscl.CommPortInfo_size(self) - - def swap(self, v): - return _mscl.CommPortInfo_swap(self, v) - - def begin(self): - return _mscl.CommPortInfo_begin(self) - - def end(self): - return _mscl.CommPortInfo_end(self) - - def rbegin(self): - return _mscl.CommPortInfo_rbegin(self) - - def rend(self): - return _mscl.CommPortInfo_rend(self) - - def clear(self): - return _mscl.CommPortInfo_clear(self) - - def get_allocator(self): - return _mscl.CommPortInfo_get_allocator(self) - - def pop_back(self): - return _mscl.CommPortInfo_pop_back(self) - - def erase(self, *args): - return _mscl.CommPortInfo_erase(self, *args) - - def __init__(self, *args): - _mscl.CommPortInfo_swiginit(self, _mscl.new_CommPortInfo(*args)) - - def push_back(self, x): - return _mscl.CommPortInfo_push_back(self, x) - - def front(self): - return _mscl.CommPortInfo_front(self) - - def back(self): - return _mscl.CommPortInfo_back(self) - - def assign(self, n, x): - return _mscl.CommPortInfo_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommPortInfo_resize(self, *args) - - def insert(self, *args): - return _mscl.CommPortInfo_insert(self, *args) - - def reserve(self, n): - return _mscl.CommPortInfo_reserve(self, n) - - def capacity(self): - return _mscl.CommPortInfo_capacity(self) - __swig_destroy__ = _mscl.delete_CommPortInfo - -# Register CommPortInfo in _mscl: -_mscl.CommPortInfo_swigregister(CommPortInfo) - -class EventTriggerStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTriggerStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTriggerStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventTriggerStatus___bool__(self) - - def __len__(self): - return _mscl.EventTriggerStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTriggerStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTriggerStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTriggerStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTriggerStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTriggerStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTriggerStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventTriggerStatus_pop(self) - - def append(self, x): - return _mscl.EventTriggerStatus_append(self, x) - - def empty(self): - return _mscl.EventTriggerStatus_empty(self) - - def size(self): - return _mscl.EventTriggerStatus_size(self) - - def swap(self, v): - return _mscl.EventTriggerStatus_swap(self, v) - - def begin(self): - return _mscl.EventTriggerStatus_begin(self) - - def end(self): - return _mscl.EventTriggerStatus_end(self) - - def rbegin(self): - return _mscl.EventTriggerStatus_rbegin(self) - - def rend(self): - return _mscl.EventTriggerStatus_rend(self) - - def clear(self): - return _mscl.EventTriggerStatus_clear(self) - - def get_allocator(self): - return _mscl.EventTriggerStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventTriggerStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventTriggerStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTriggerStatus_swiginit(self, _mscl.new_EventTriggerStatus(*args)) - - def push_back(self, x): - return _mscl.EventTriggerStatus_push_back(self, x) - - def front(self): - return _mscl.EventTriggerStatus_front(self) - - def back(self): - return _mscl.EventTriggerStatus_back(self) - - def assign(self, n, x): - return _mscl.EventTriggerStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTriggerStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTriggerStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTriggerStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventTriggerStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventTriggerStatus - -# Register EventTriggerStatus in _mscl: -_mscl.EventTriggerStatus_swigregister(EventTriggerStatus) - -class EventActionStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventActionStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventActionStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventActionStatus___bool__(self) - - def __len__(self): - return _mscl.EventActionStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventActionStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventActionStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventActionStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventActionStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventActionStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventActionStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventActionStatus_pop(self) - - def append(self, x): - return _mscl.EventActionStatus_append(self, x) - - def empty(self): - return _mscl.EventActionStatus_empty(self) - - def size(self): - return _mscl.EventActionStatus_size(self) - - def swap(self, v): - return _mscl.EventActionStatus_swap(self, v) - - def begin(self): - return _mscl.EventActionStatus_begin(self) - - def end(self): - return _mscl.EventActionStatus_end(self) - - def rbegin(self): - return _mscl.EventActionStatus_rbegin(self) - - def rend(self): - return _mscl.EventActionStatus_rend(self) - - def clear(self): - return _mscl.EventActionStatus_clear(self) - - def get_allocator(self): - return _mscl.EventActionStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventActionStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventActionStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventActionStatus_swiginit(self, _mscl.new_EventActionStatus(*args)) - - def push_back(self, x): - return _mscl.EventActionStatus_push_back(self, x) - - def front(self): - return _mscl.EventActionStatus_front(self) - - def back(self): - return _mscl.EventActionStatus_back(self) - - def assign(self, n, x): - return _mscl.EventActionStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventActionStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventActionStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventActionStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventActionStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventActionStatus - -# Register EventActionStatus in _mscl: -_mscl.EventActionStatus_swigregister(EventActionStatus) - -class ChannelGroups(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroups_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroups___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroups___bool__(self) - - def __len__(self): - return _mscl.ChannelGroups___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroups___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroups___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroups___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroups___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroups___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroups___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroups_pop(self) - - def append(self, x): - return _mscl.ChannelGroups_append(self, x) - - def empty(self): - return _mscl.ChannelGroups_empty(self) - - def size(self): - return _mscl.ChannelGroups_size(self) - - def swap(self, v): - return _mscl.ChannelGroups_swap(self, v) - - def begin(self): - return _mscl.ChannelGroups_begin(self) - - def end(self): - return _mscl.ChannelGroups_end(self) - - def rbegin(self): - return _mscl.ChannelGroups_rbegin(self) - - def rend(self): - return _mscl.ChannelGroups_rend(self) - - def clear(self): - return _mscl.ChannelGroups_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroups_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroups_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroups_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroups_swiginit(self, _mscl.new_ChannelGroups(*args)) - - def push_back(self, x): - return _mscl.ChannelGroups_push_back(self, x) - - def front(self): - return _mscl.ChannelGroups_front(self) - - def back(self): - return _mscl.ChannelGroups_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroups_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroups_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroups_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroups_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroups_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroups - -# Register ChannelGroups in _mscl: -_mscl.ChannelGroups_swigregister(ChannelGroups) - -class WirelessChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessChannels___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessChannels___bool__(self) - - def __len__(self): - return _mscl.WirelessChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessChannels___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessChannels_pop(self) - - def append(self, x): - return _mscl.WirelessChannels_append(self, x) - - def empty(self): - return _mscl.WirelessChannels_empty(self) - - def size(self): - return _mscl.WirelessChannels_size(self) - - def swap(self, v): - return _mscl.WirelessChannels_swap(self, v) - - def begin(self): - return _mscl.WirelessChannels_begin(self) - - def end(self): - return _mscl.WirelessChannels_end(self) - - def rbegin(self): - return _mscl.WirelessChannels_rbegin(self) - - def rend(self): - return _mscl.WirelessChannels_rend(self) - - def clear(self): - return _mscl.WirelessChannels_clear(self) - - def get_allocator(self): - return _mscl.WirelessChannels_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessChannels_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessChannels_swiginit(self, _mscl.new_WirelessChannels(*args)) - - def push_back(self, x): - return _mscl.WirelessChannels_push_back(self, x) - - def front(self): - return _mscl.WirelessChannels_front(self) - - def back(self): - return _mscl.WirelessChannels_back(self) - - def assign(self, n, x): - return _mscl.WirelessChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessChannels_reserve(self, n) - - def capacity(self): - return _mscl.WirelessChannels_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessChannels - -# Register WirelessChannels in _mscl: -_mscl.WirelessChannels_swigregister(WirelessChannels) - -class DamageAngles(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DamageAngles_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DamageAngles___nonzero__(self) - - def __bool__(self): - return _mscl.DamageAngles___bool__(self) - - def __len__(self): - return _mscl.DamageAngles___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DamageAngles___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DamageAngles___delitem__(self, key) - - def has_key(self, key): - return _mscl.DamageAngles_has_key(self, key) - - def keys(self): - return _mscl.DamageAngles_keys(self) - - def values(self): - return _mscl.DamageAngles_values(self) - - def items(self): - return _mscl.DamageAngles_items(self) - - def __contains__(self, key): - return _mscl.DamageAngles___contains__(self, key) - - def key_iterator(self): - return _mscl.DamageAngles_key_iterator(self) - - def value_iterator(self): - return _mscl.DamageAngles_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DamageAngles___setitem__(self, *args) - - def asdict(self): - return _mscl.DamageAngles_asdict(self) - - def __init__(self, *args): - _mscl.DamageAngles_swiginit(self, _mscl.new_DamageAngles(*args)) - - def empty(self): - return _mscl.DamageAngles_empty(self) - - def size(self): - return _mscl.DamageAngles_size(self) - - def swap(self, v): - return _mscl.DamageAngles_swap(self, v) - - def begin(self): - return _mscl.DamageAngles_begin(self) - - def end(self): - return _mscl.DamageAngles_end(self) - - def rbegin(self): - return _mscl.DamageAngles_rbegin(self) - - def rend(self): - return _mscl.DamageAngles_rend(self) - - def clear(self): - return _mscl.DamageAngles_clear(self) - - def get_allocator(self): - return _mscl.DamageAngles_get_allocator(self) - - def count(self, x): - return _mscl.DamageAngles_count(self, x) - - def erase(self, *args): - return _mscl.DamageAngles_erase(self, *args) - - def find(self, x): - return _mscl.DamageAngles_find(self, x) - - def lower_bound(self, x): - return _mscl.DamageAngles_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DamageAngles_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DamageAngles - -# Register DamageAngles in _mscl: -_mscl.DamageAngles_swigregister(DamageAngles) - -class SnCurveSegments(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SnCurveSegments_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SnCurveSegments___nonzero__(self) - - def __bool__(self): - return _mscl.SnCurveSegments___bool__(self) - - def __len__(self): - return _mscl.SnCurveSegments___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SnCurveSegments___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SnCurveSegments___delitem__(self, key) - - def has_key(self, key): - return _mscl.SnCurveSegments_has_key(self, key) - - def keys(self): - return _mscl.SnCurveSegments_keys(self) - - def values(self): - return _mscl.SnCurveSegments_values(self) - - def items(self): - return _mscl.SnCurveSegments_items(self) - - def __contains__(self, key): - return _mscl.SnCurveSegments___contains__(self, key) - - def key_iterator(self): - return _mscl.SnCurveSegments_key_iterator(self) - - def value_iterator(self): - return _mscl.SnCurveSegments_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SnCurveSegments___setitem__(self, *args) - - def asdict(self): - return _mscl.SnCurveSegments_asdict(self) - - def __init__(self, *args): - _mscl.SnCurveSegments_swiginit(self, _mscl.new_SnCurveSegments(*args)) - - def empty(self): - return _mscl.SnCurveSegments_empty(self) - - def size(self): - return _mscl.SnCurveSegments_size(self) - - def swap(self, v): - return _mscl.SnCurveSegments_swap(self, v) - - def begin(self): - return _mscl.SnCurveSegments_begin(self) - - def end(self): - return _mscl.SnCurveSegments_end(self) - - def rbegin(self): - return _mscl.SnCurveSegments_rbegin(self) - - def rend(self): - return _mscl.SnCurveSegments_rend(self) - - def clear(self): - return _mscl.SnCurveSegments_clear(self) - - def get_allocator(self): - return _mscl.SnCurveSegments_get_allocator(self) - - def count(self, x): - return _mscl.SnCurveSegments_count(self, x) - - def erase(self, *args): - return _mscl.SnCurveSegments_erase(self, *args) - - def find(self, x): - return _mscl.SnCurveSegments_find(self, x) - - def lower_bound(self, x): - return _mscl.SnCurveSegments_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SnCurveSegments_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SnCurveSegments - -# Register SnCurveSegments in _mscl: -_mscl.SnCurveSegments_swigregister(SnCurveSegments) - -class RfSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RfSweep_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RfSweep___nonzero__(self) - - def __bool__(self): - return _mscl.RfSweep___bool__(self) - - def __len__(self): - return _mscl.RfSweep___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.RfSweep___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.RfSweep___delitem__(self, key) - - def has_key(self, key): - return _mscl.RfSweep_has_key(self, key) - - def keys(self): - return _mscl.RfSweep_keys(self) - - def values(self): - return _mscl.RfSweep_values(self) - - def items(self): - return _mscl.RfSweep_items(self) - - def __contains__(self, key): - return _mscl.RfSweep___contains__(self, key) - - def key_iterator(self): - return _mscl.RfSweep_key_iterator(self) - - def value_iterator(self): - return _mscl.RfSweep_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.RfSweep___setitem__(self, *args) - - def asdict(self): - return _mscl.RfSweep_asdict(self) - - def __init__(self, *args): - _mscl.RfSweep_swiginit(self, _mscl.new_RfSweep(*args)) - - def empty(self): - return _mscl.RfSweep_empty(self) - - def size(self): - return _mscl.RfSweep_size(self) - - def swap(self, v): - return _mscl.RfSweep_swap(self, v) - - def begin(self): - return _mscl.RfSweep_begin(self) - - def end(self): - return _mscl.RfSweep_end(self) - - def rbegin(self): - return _mscl.RfSweep_rbegin(self) - - def rend(self): - return _mscl.RfSweep_rend(self) - - def clear(self): - return _mscl.RfSweep_clear(self) - - def get_allocator(self): - return _mscl.RfSweep_get_allocator(self) - - def count(self, x): - return _mscl.RfSweep_count(self, x) - - def erase(self, *args): - return _mscl.RfSweep_erase(self, *args) - - def find(self, x): - return _mscl.RfSweep_find(self, x) - - def lower_bound(self, x): - return _mscl.RfSweep_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.RfSweep_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_RfSweep - -# Register RfSweep in _mscl: -_mscl.RfSweep_swigregister(RfSweep) - -class Triggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Triggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Triggers___nonzero__(self) - - def __bool__(self): - return _mscl.Triggers___bool__(self) - - def __len__(self): - return _mscl.Triggers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.Triggers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.Triggers___delitem__(self, key) - - def has_key(self, key): - return _mscl.Triggers_has_key(self, key) - - def keys(self): - return _mscl.Triggers_keys(self) - - def values(self): - return _mscl.Triggers_values(self) - - def items(self): - return _mscl.Triggers_items(self) - - def __contains__(self, key): - return _mscl.Triggers___contains__(self, key) - - def key_iterator(self): - return _mscl.Triggers_key_iterator(self) - - def value_iterator(self): - return _mscl.Triggers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.Triggers___setitem__(self, *args) - - def asdict(self): - return _mscl.Triggers_asdict(self) - - def __init__(self, *args): - _mscl.Triggers_swiginit(self, _mscl.new_Triggers(*args)) - - def empty(self): - return _mscl.Triggers_empty(self) - - def size(self): - return _mscl.Triggers_size(self) - - def swap(self, v): - return _mscl.Triggers_swap(self, v) - - def begin(self): - return _mscl.Triggers_begin(self) - - def end(self): - return _mscl.Triggers_end(self) - - def rbegin(self): - return _mscl.Triggers_rbegin(self) - - def rend(self): - return _mscl.Triggers_rend(self) - - def clear(self): - return _mscl.Triggers_clear(self) - - def get_allocator(self): - return _mscl.Triggers_get_allocator(self) - - def count(self, x): - return _mscl.Triggers_count(self, x) - - def erase(self, *args): - return _mscl.Triggers_erase(self, *args) - - def find(self, x): - return _mscl.Triggers_find(self, x) - - def lower_bound(self, x): - return _mscl.Triggers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.Triggers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_Triggers - -# Register Triggers in _mscl: -_mscl.Triggers_swigregister(Triggers) - -class ChannelCalMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelCalMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelCalMap___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelCalMap___bool__(self) - - def __len__(self): - return _mscl.ChannelCalMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelCalMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelCalMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelCalMap_has_key(self, key) - - def keys(self): - return _mscl.ChannelCalMap_keys(self) - - def values(self): - return _mscl.ChannelCalMap_values(self) - - def items(self): - return _mscl.ChannelCalMap_items(self) - - def __contains__(self, key): - return _mscl.ChannelCalMap___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelCalMap_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelCalMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelCalMap___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelCalMap_asdict(self) - - def __init__(self, *args): - _mscl.ChannelCalMap_swiginit(self, _mscl.new_ChannelCalMap(*args)) - - def empty(self): - return _mscl.ChannelCalMap_empty(self) - - def size(self): - return _mscl.ChannelCalMap_size(self) - - def swap(self, v): - return _mscl.ChannelCalMap_swap(self, v) - - def begin(self): - return _mscl.ChannelCalMap_begin(self) - - def end(self): - return _mscl.ChannelCalMap_end(self) - - def rbegin(self): - return _mscl.ChannelCalMap_rbegin(self) - - def rend(self): - return _mscl.ChannelCalMap_rend(self) - - def clear(self): - return _mscl.ChannelCalMap_clear(self) - - def get_allocator(self): - return _mscl.ChannelCalMap_get_allocator(self) - - def count(self, x): - return _mscl.ChannelCalMap_count(self, x) - - def erase(self, *args): - return _mscl.ChannelCalMap_erase(self, *args) - - def find(self, x): - return _mscl.ChannelCalMap_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelCalMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelCalMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelCalMap - -# Register ChannelCalMap in _mscl: -_mscl.ChannelCalMap_swigregister(ChannelCalMap) - -class WirelessPollData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessPollData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessPollData___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessPollData___bool__(self) - - def __len__(self): - return _mscl.WirelessPollData___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.WirelessPollData___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.WirelessPollData___delitem__(self, key) - - def has_key(self, key): - return _mscl.WirelessPollData_has_key(self, key) - - def keys(self): - return _mscl.WirelessPollData_keys(self) - - def values(self): - return _mscl.WirelessPollData_values(self) - - def items(self): - return _mscl.WirelessPollData_items(self) - - def __contains__(self, key): - return _mscl.WirelessPollData___contains__(self, key) - - def key_iterator(self): - return _mscl.WirelessPollData_key_iterator(self) - - def value_iterator(self): - return _mscl.WirelessPollData_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.WirelessPollData___setitem__(self, *args) - - def asdict(self): - return _mscl.WirelessPollData_asdict(self) - - def __init__(self, *args): - _mscl.WirelessPollData_swiginit(self, _mscl.new_WirelessPollData(*args)) - - def empty(self): - return _mscl.WirelessPollData_empty(self) - - def size(self): - return _mscl.WirelessPollData_size(self) - - def swap(self, v): - return _mscl.WirelessPollData_swap(self, v) - - def begin(self): - return _mscl.WirelessPollData_begin(self) - - def end(self): - return _mscl.WirelessPollData_end(self) - - def rbegin(self): - return _mscl.WirelessPollData_rbegin(self) - - def rend(self): - return _mscl.WirelessPollData_rend(self) - - def clear(self): - return _mscl.WirelessPollData_clear(self) - - def get_allocator(self): - return _mscl.WirelessPollData_get_allocator(self) - - def count(self, x): - return _mscl.WirelessPollData_count(self, x) - - def erase(self, *args): - return _mscl.WirelessPollData_erase(self, *args) - - def find(self, x): - return _mscl.WirelessPollData_find(self, x) - - def lower_bound(self, x): - return _mscl.WirelessPollData_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.WirelessPollData_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_WirelessPollData - -# Register WirelessPollData in _mscl: -_mscl.WirelessPollData_swigregister(WirelessPollData) - -class ConnectionDebugDataVec(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConnectionDebugDataVec_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConnectionDebugDataVec___nonzero__(self) - - def __bool__(self): - return _mscl.ConnectionDebugDataVec___bool__(self) - - def __len__(self): - return _mscl.ConnectionDebugDataVec___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConnectionDebugDataVec___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConnectionDebugDataVec___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConnectionDebugDataVec___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConnectionDebugDataVec___setitem__(self, *args) - - def pop(self): - return _mscl.ConnectionDebugDataVec_pop(self) - - def append(self, x): - return _mscl.ConnectionDebugDataVec_append(self, x) - - def empty(self): - return _mscl.ConnectionDebugDataVec_empty(self) - - def size(self): - return _mscl.ConnectionDebugDataVec_size(self) - - def swap(self, v): - return _mscl.ConnectionDebugDataVec_swap(self, v) - - def begin(self): - return _mscl.ConnectionDebugDataVec_begin(self) - - def end(self): - return _mscl.ConnectionDebugDataVec_end(self) - - def rbegin(self): - return _mscl.ConnectionDebugDataVec_rbegin(self) - - def rend(self): - return _mscl.ConnectionDebugDataVec_rend(self) - - def clear(self): - return _mscl.ConnectionDebugDataVec_clear(self) - - def get_allocator(self): - return _mscl.ConnectionDebugDataVec_get_allocator(self) - - def pop_back(self): - return _mscl.ConnectionDebugDataVec_pop_back(self) - - def erase(self, *args): - return _mscl.ConnectionDebugDataVec_erase(self, *args) - - def __init__(self, *args): - _mscl.ConnectionDebugDataVec_swiginit(self, _mscl.new_ConnectionDebugDataVec(*args)) - - def push_back(self, x): - return _mscl.ConnectionDebugDataVec_push_back(self, x) - - def front(self): - return _mscl.ConnectionDebugDataVec_front(self) - - def back(self): - return _mscl.ConnectionDebugDataVec_back(self) - - def assign(self, n, x): - return _mscl.ConnectionDebugDataVec_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConnectionDebugDataVec_resize(self, *args) - - def insert(self, *args): - return _mscl.ConnectionDebugDataVec_insert(self, *args) - - def reserve(self, n): - return _mscl.ConnectionDebugDataVec_reserve(self, n) - - def capacity(self): - return _mscl.ConnectionDebugDataVec_capacity(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugDataVec - -# Register ConnectionDebugDataVec in _mscl: -_mscl.ConnectionDebugDataVec_swigregister(ConnectionDebugDataVec) - -class SatellitePRNs(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SatellitePRNs_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SatellitePRNs___nonzero__(self) - - def __bool__(self): - return _mscl.SatellitePRNs___bool__(self) - - def __len__(self): - return _mscl.SatellitePRNs___len__(self) - - def __getslice__(self, i, j): - return _mscl.SatellitePRNs___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SatellitePRNs___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SatellitePRNs___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SatellitePRNs___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SatellitePRNs___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SatellitePRNs___setitem__(self, *args) - - def pop(self): - return _mscl.SatellitePRNs_pop(self) - - def append(self, x): - return _mscl.SatellitePRNs_append(self, x) - - def empty(self): - return _mscl.SatellitePRNs_empty(self) - - def size(self): - return _mscl.SatellitePRNs_size(self) - - def swap(self, v): - return _mscl.SatellitePRNs_swap(self, v) - - def begin(self): - return _mscl.SatellitePRNs_begin(self) - - def end(self): - return _mscl.SatellitePRNs_end(self) - - def rbegin(self): - return _mscl.SatellitePRNs_rbegin(self) - - def rend(self): - return _mscl.SatellitePRNs_rend(self) - - def clear(self): - return _mscl.SatellitePRNs_clear(self) - - def get_allocator(self): - return _mscl.SatellitePRNs_get_allocator(self) - - def pop_back(self): - return _mscl.SatellitePRNs_pop_back(self) - - def erase(self, *args): - return _mscl.SatellitePRNs_erase(self, *args) - - def __init__(self, *args): - _mscl.SatellitePRNs_swiginit(self, _mscl.new_SatellitePRNs(*args)) - - def push_back(self, x): - return _mscl.SatellitePRNs_push_back(self, x) - - def front(self): - return _mscl.SatellitePRNs_front(self) - - def back(self): - return _mscl.SatellitePRNs_back(self) - - def assign(self, n, x): - return _mscl.SatellitePRNs_assign(self, n, x) - - def resize(self, *args): - return _mscl.SatellitePRNs_resize(self, *args) - - def insert(self, *args): - return _mscl.SatellitePRNs_insert(self, *args) - - def reserve(self, n): - return _mscl.SatellitePRNs_reserve(self, n) - - def capacity(self): - return _mscl.SatellitePRNs_capacity(self) - __swig_destroy__ = _mscl.delete_SatellitePRNs - -# Register SatellitePRNs in _mscl: -_mscl.SatellitePRNs_swigregister(SatellitePRNs) - -class Constellations(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Constellations_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Constellations___nonzero__(self) - - def __bool__(self): - return _mscl.Constellations___bool__(self) - - def __len__(self): - return _mscl.Constellations___len__(self) - - def __getslice__(self, i, j): - return _mscl.Constellations___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Constellations___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Constellations___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Constellations___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Constellations___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Constellations___setitem__(self, *args) - - def pop(self): - return _mscl.Constellations_pop(self) - - def append(self, x): - return _mscl.Constellations_append(self, x) - - def empty(self): - return _mscl.Constellations_empty(self) - - def size(self): - return _mscl.Constellations_size(self) - - def swap(self, v): - return _mscl.Constellations_swap(self, v) - - def begin(self): - return _mscl.Constellations_begin(self) - - def end(self): - return _mscl.Constellations_end(self) - - def rbegin(self): - return _mscl.Constellations_rbegin(self) - - def rend(self): - return _mscl.Constellations_rend(self) - - def clear(self): - return _mscl.Constellations_clear(self) - - def get_allocator(self): - return _mscl.Constellations_get_allocator(self) - - def pop_back(self): - return _mscl.Constellations_pop_back(self) - - def erase(self, *args): - return _mscl.Constellations_erase(self, *args) - - def __init__(self, *args): - _mscl.Constellations_swiginit(self, _mscl.new_Constellations(*args)) - - def push_back(self, x): - return _mscl.Constellations_push_back(self, x) - - def front(self): - return _mscl.Constellations_front(self) - - def back(self): - return _mscl.Constellations_back(self) - - def assign(self, n, x): - return _mscl.Constellations_assign(self, n, x) - - def resize(self, *args): - return _mscl.Constellations_resize(self, *args) - - def insert(self, *args): - return _mscl.Constellations_insert(self, *args) - - def reserve(self, n): - return _mscl.Constellations_reserve(self, n) - - def capacity(self): - return _mscl.Constellations_capacity(self) - __swig_destroy__ = _mscl.delete_Constellations - -# Register Constellations in _mscl: -_mscl.Constellations_swigregister(Constellations) - -class HeadingUpdateOptionsList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HeadingUpdateOptionsList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HeadingUpdateOptionsList___nonzero__(self) - - def __bool__(self): - return _mscl.HeadingUpdateOptionsList___bool__(self) - - def __len__(self): - return _mscl.HeadingUpdateOptionsList___len__(self) - - def __getslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HeadingUpdateOptionsList___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___setitem__(self, *args) - - def pop(self): - return _mscl.HeadingUpdateOptionsList_pop(self) - - def append(self, x): - return _mscl.HeadingUpdateOptionsList_append(self, x) - - def empty(self): - return _mscl.HeadingUpdateOptionsList_empty(self) - - def size(self): - return _mscl.HeadingUpdateOptionsList_size(self) - - def swap(self, v): - return _mscl.HeadingUpdateOptionsList_swap(self, v) - - def begin(self): - return _mscl.HeadingUpdateOptionsList_begin(self) - - def end(self): - return _mscl.HeadingUpdateOptionsList_end(self) - - def rbegin(self): - return _mscl.HeadingUpdateOptionsList_rbegin(self) - - def rend(self): - return _mscl.HeadingUpdateOptionsList_rend(self) - - def clear(self): - return _mscl.HeadingUpdateOptionsList_clear(self) - - def get_allocator(self): - return _mscl.HeadingUpdateOptionsList_get_allocator(self) - - def pop_back(self): - return _mscl.HeadingUpdateOptionsList_pop_back(self) - - def erase(self, *args): - return _mscl.HeadingUpdateOptionsList_erase(self, *args) - - def __init__(self, *args): - _mscl.HeadingUpdateOptionsList_swiginit(self, _mscl.new_HeadingUpdateOptionsList(*args)) - - def push_back(self, x): - return _mscl.HeadingUpdateOptionsList_push_back(self, x) - - def front(self): - return _mscl.HeadingUpdateOptionsList_front(self) - - def back(self): - return _mscl.HeadingUpdateOptionsList_back(self) - - def assign(self, n, x): - return _mscl.HeadingUpdateOptionsList_assign(self, n, x) - - def resize(self, *args): - return _mscl.HeadingUpdateOptionsList_resize(self, *args) - - def insert(self, *args): - return _mscl.HeadingUpdateOptionsList_insert(self, *args) - - def reserve(self, n): - return _mscl.HeadingUpdateOptionsList_reserve(self, n) - - def capacity(self): - return _mscl.HeadingUpdateOptionsList_capacity(self) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptionsList - -# Register HeadingUpdateOptionsList in _mscl: -_mscl.HeadingUpdateOptionsList_swigregister(HeadingUpdateOptionsList) - -class AdaptiveMeasurementModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveMeasurementModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveMeasurementModes___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveMeasurementModes___bool__(self) - - def __len__(self): - return _mscl.AdaptiveMeasurementModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveMeasurementModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveMeasurementModes_pop(self) - - def append(self, x): - return _mscl.AdaptiveMeasurementModes_append(self, x) - - def empty(self): - return _mscl.AdaptiveMeasurementModes_empty(self) - - def size(self): - return _mscl.AdaptiveMeasurementModes_size(self) - - def swap(self, v): - return _mscl.AdaptiveMeasurementModes_swap(self, v) - - def begin(self): - return _mscl.AdaptiveMeasurementModes_begin(self) - - def end(self): - return _mscl.AdaptiveMeasurementModes_end(self) - - def rbegin(self): - return _mscl.AdaptiveMeasurementModes_rbegin(self) - - def rend(self): - return _mscl.AdaptiveMeasurementModes_rend(self) - - def clear(self): - return _mscl.AdaptiveMeasurementModes_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveMeasurementModes_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveMeasurementModes_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveMeasurementModes_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveMeasurementModes_swiginit(self, _mscl.new_AdaptiveMeasurementModes(*args)) - - def push_back(self, x): - return _mscl.AdaptiveMeasurementModes_push_back(self, x) - - def front(self): - return _mscl.AdaptiveMeasurementModes_front(self) - - def back(self): - return _mscl.AdaptiveMeasurementModes_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveMeasurementModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveMeasurementModes_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveMeasurementModes_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveMeasurementModes_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveMeasurementModes_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementModes - -# Register AdaptiveMeasurementModes in _mscl: -_mscl.AdaptiveMeasurementModes_swigregister(AdaptiveMeasurementModes) - -class GeometricVectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeometricVectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeometricVectors___nonzero__(self) - - def __bool__(self): - return _mscl.GeometricVectors___bool__(self) - - def __len__(self): - return _mscl.GeometricVectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeometricVectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeometricVectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeometricVectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeometricVectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeometricVectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeometricVectors___setitem__(self, *args) - - def pop(self): - return _mscl.GeometricVectors_pop(self) - - def append(self, x): - return _mscl.GeometricVectors_append(self, x) - - def empty(self): - return _mscl.GeometricVectors_empty(self) - - def size(self): - return _mscl.GeometricVectors_size(self) - - def swap(self, v): - return _mscl.GeometricVectors_swap(self, v) - - def begin(self): - return _mscl.GeometricVectors_begin(self) - - def end(self): - return _mscl.GeometricVectors_end(self) - - def rbegin(self): - return _mscl.GeometricVectors_rbegin(self) - - def rend(self): - return _mscl.GeometricVectors_rend(self) - - def clear(self): - return _mscl.GeometricVectors_clear(self) - - def get_allocator(self): - return _mscl.GeometricVectors_get_allocator(self) - - def pop_back(self): - return _mscl.GeometricVectors_pop_back(self) - - def erase(self, *args): - return _mscl.GeometricVectors_erase(self, *args) - - def __init__(self, *args): - _mscl.GeometricVectors_swiginit(self, _mscl.new_GeometricVectors(*args)) - - def push_back(self, x): - return _mscl.GeometricVectors_push_back(self, x) - - def front(self): - return _mscl.GeometricVectors_front(self) - - def back(self): - return _mscl.GeometricVectors_back(self) - - def assign(self, n, x): - return _mscl.GeometricVectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeometricVectors_resize(self, *args) - - def insert(self, *args): - return _mscl.GeometricVectors_insert(self, *args) - - def reserve(self, n): - return _mscl.GeometricVectors_reserve(self, n) - - def capacity(self): - return _mscl.GeometricVectors_capacity(self) - __swig_destroy__ = _mscl.delete_GeometricVectors - -# Register GeometricVectors in _mscl: -_mscl.GeometricVectors_swigregister(GeometricVectors) - -class Matrix_3x3s(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Matrix_3x3s_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Matrix_3x3s___nonzero__(self) - - def __bool__(self): - return _mscl.Matrix_3x3s___bool__(self) - - def __len__(self): - return _mscl.Matrix_3x3s___len__(self) - - def __getslice__(self, i, j): - return _mscl.Matrix_3x3s___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Matrix_3x3s___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Matrix_3x3s___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Matrix_3x3s___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Matrix_3x3s___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Matrix_3x3s___setitem__(self, *args) - - def pop(self): - return _mscl.Matrix_3x3s_pop(self) - - def append(self, x): - return _mscl.Matrix_3x3s_append(self, x) - - def empty(self): - return _mscl.Matrix_3x3s_empty(self) - - def size(self): - return _mscl.Matrix_3x3s_size(self) - - def swap(self, v): - return _mscl.Matrix_3x3s_swap(self, v) - - def begin(self): - return _mscl.Matrix_3x3s_begin(self) - - def end(self): - return _mscl.Matrix_3x3s_end(self) - - def rbegin(self): - return _mscl.Matrix_3x3s_rbegin(self) - - def rend(self): - return _mscl.Matrix_3x3s_rend(self) - - def clear(self): - return _mscl.Matrix_3x3s_clear(self) - - def get_allocator(self): - return _mscl.Matrix_3x3s_get_allocator(self) - - def pop_back(self): - return _mscl.Matrix_3x3s_pop_back(self) - - def erase(self, *args): - return _mscl.Matrix_3x3s_erase(self, *args) - - def __init__(self, *args): - _mscl.Matrix_3x3s_swiginit(self, _mscl.new_Matrix_3x3s(*args)) - - def push_back(self, x): - return _mscl.Matrix_3x3s_push_back(self, x) - - def front(self): - return _mscl.Matrix_3x3s_front(self) - - def back(self): - return _mscl.Matrix_3x3s_back(self) - - def assign(self, n, x): - return _mscl.Matrix_3x3s_assign(self, n, x) - - def resize(self, *args): - return _mscl.Matrix_3x3s_resize(self, *args) - - def insert(self, *args): - return _mscl.Matrix_3x3s_insert(self, *args) - - def reserve(self, n): - return _mscl.Matrix_3x3s_reserve(self, n) - - def capacity(self): - return _mscl.Matrix_3x3s_capacity(self) - __swig_destroy__ = _mscl.delete_Matrix_3x3s - -# Register Matrix_3x3s in _mscl: -_mscl.Matrix_3x3s_swigregister(Matrix_3x3s) - -class StatusSelectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StatusSelectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StatusSelectors___nonzero__(self) - - def __bool__(self): - return _mscl.StatusSelectors___bool__(self) - - def __len__(self): - return _mscl.StatusSelectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.StatusSelectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StatusSelectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StatusSelectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StatusSelectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StatusSelectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StatusSelectors___setitem__(self, *args) - - def pop(self): - return _mscl.StatusSelectors_pop(self) - - def append(self, x): - return _mscl.StatusSelectors_append(self, x) - - def empty(self): - return _mscl.StatusSelectors_empty(self) - - def size(self): - return _mscl.StatusSelectors_size(self) - - def swap(self, v): - return _mscl.StatusSelectors_swap(self, v) - - def begin(self): - return _mscl.StatusSelectors_begin(self) - - def end(self): - return _mscl.StatusSelectors_end(self) - - def rbegin(self): - return _mscl.StatusSelectors_rbegin(self) - - def rend(self): - return _mscl.StatusSelectors_rend(self) - - def clear(self): - return _mscl.StatusSelectors_clear(self) - - def get_allocator(self): - return _mscl.StatusSelectors_get_allocator(self) - - def pop_back(self): - return _mscl.StatusSelectors_pop_back(self) - - def erase(self, *args): - return _mscl.StatusSelectors_erase(self, *args) - - def __init__(self, *args): - _mscl.StatusSelectors_swiginit(self, _mscl.new_StatusSelectors(*args)) - - def push_back(self, x): - return _mscl.StatusSelectors_push_back(self, x) - - def front(self): - return _mscl.StatusSelectors_front(self) - - def back(self): - return _mscl.StatusSelectors_back(self) - - def assign(self, n, x): - return _mscl.StatusSelectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.StatusSelectors_resize(self, *args) - - def insert(self, *args): - return _mscl.StatusSelectors_insert(self, *args) - - def reserve(self, n): - return _mscl.StatusSelectors_reserve(self, n) - - def capacity(self): - return _mscl.StatusSelectors_capacity(self) - __swig_destroy__ = _mscl.delete_StatusSelectors - -# Register StatusSelectors in _mscl: -_mscl.StatusSelectors_swigregister(StatusSelectors) - -class VehicleModeTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.VehicleModeTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.VehicleModeTypes___nonzero__(self) - - def __bool__(self): - return _mscl.VehicleModeTypes___bool__(self) - - def __len__(self): - return _mscl.VehicleModeTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.VehicleModeTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.VehicleModeTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.VehicleModeTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.VehicleModeTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.VehicleModeTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.VehicleModeTypes___setitem__(self, *args) - - def pop(self): - return _mscl.VehicleModeTypes_pop(self) - - def append(self, x): - return _mscl.VehicleModeTypes_append(self, x) - - def empty(self): - return _mscl.VehicleModeTypes_empty(self) - - def size(self): - return _mscl.VehicleModeTypes_size(self) - - def swap(self, v): - return _mscl.VehicleModeTypes_swap(self, v) - - def begin(self): - return _mscl.VehicleModeTypes_begin(self) - - def end(self): - return _mscl.VehicleModeTypes_end(self) - - def rbegin(self): - return _mscl.VehicleModeTypes_rbegin(self) - - def rend(self): - return _mscl.VehicleModeTypes_rend(self) - - def clear(self): - return _mscl.VehicleModeTypes_clear(self) - - def get_allocator(self): - return _mscl.VehicleModeTypes_get_allocator(self) - - def pop_back(self): - return _mscl.VehicleModeTypes_pop_back(self) - - def erase(self, *args): - return _mscl.VehicleModeTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.VehicleModeTypes_swiginit(self, _mscl.new_VehicleModeTypes(*args)) - - def push_back(self, x): - return _mscl.VehicleModeTypes_push_back(self, x) - - def front(self): - return _mscl.VehicleModeTypes_front(self) - - def back(self): - return _mscl.VehicleModeTypes_back(self) - - def assign(self, n, x): - return _mscl.VehicleModeTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.VehicleModeTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.VehicleModeTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.VehicleModeTypes_reserve(self, n) - - def capacity(self): - return _mscl.VehicleModeTypes_capacity(self) - __swig_destroy__ = _mscl.delete_VehicleModeTypes - -# Register VehicleModeTypes in _mscl: -_mscl.VehicleModeTypes_swigregister(VehicleModeTypes) - -class AdaptiveFilterLevels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveFilterLevels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveFilterLevels___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveFilterLevels___bool__(self) - - def __len__(self): - return _mscl.AdaptiveFilterLevels___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveFilterLevels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveFilterLevels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveFilterLevels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveFilterLevels___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveFilterLevels_pop(self) - - def append(self, x): - return _mscl.AdaptiveFilterLevels_append(self, x) - - def empty(self): - return _mscl.AdaptiveFilterLevels_empty(self) - - def size(self): - return _mscl.AdaptiveFilterLevels_size(self) - - def swap(self, v): - return _mscl.AdaptiveFilterLevels_swap(self, v) - - def begin(self): - return _mscl.AdaptiveFilterLevels_begin(self) - - def end(self): - return _mscl.AdaptiveFilterLevels_end(self) - - def rbegin(self): - return _mscl.AdaptiveFilterLevels_rbegin(self) - - def rend(self): - return _mscl.AdaptiveFilterLevels_rend(self) - - def clear(self): - return _mscl.AdaptiveFilterLevels_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveFilterLevels_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveFilterLevels_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveFilterLevels_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveFilterLevels_swiginit(self, _mscl.new_AdaptiveFilterLevels(*args)) - - def push_back(self, x): - return _mscl.AdaptiveFilterLevels_push_back(self, x) - - def front(self): - return _mscl.AdaptiveFilterLevels_front(self) - - def back(self): - return _mscl.AdaptiveFilterLevels_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveFilterLevels_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveFilterLevels_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveFilterLevels_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveFilterLevels_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveFilterLevels_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveFilterLevels - -# Register AdaptiveFilterLevels in _mscl: -_mscl.AdaptiveFilterLevels_swigregister(AdaptiveFilterLevels) - -class LowPassFilterConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LowPassFilterConfig_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LowPassFilterConfig___nonzero__(self) - - def __bool__(self): - return _mscl.LowPassFilterConfig___bool__(self) - - def __len__(self): - return _mscl.LowPassFilterConfig___len__(self) - - def __getslice__(self, i, j): - return _mscl.LowPassFilterConfig___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LowPassFilterConfig___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LowPassFilterConfig___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LowPassFilterConfig___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LowPassFilterConfig___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LowPassFilterConfig___setitem__(self, *args) - - def pop(self): - return _mscl.LowPassFilterConfig_pop(self) - - def append(self, x): - return _mscl.LowPassFilterConfig_append(self, x) - - def empty(self): - return _mscl.LowPassFilterConfig_empty(self) - - def size(self): - return _mscl.LowPassFilterConfig_size(self) - - def swap(self, v): - return _mscl.LowPassFilterConfig_swap(self, v) - - def begin(self): - return _mscl.LowPassFilterConfig_begin(self) - - def end(self): - return _mscl.LowPassFilterConfig_end(self) - - def rbegin(self): - return _mscl.LowPassFilterConfig_rbegin(self) - - def rend(self): - return _mscl.LowPassFilterConfig_rend(self) - - def clear(self): - return _mscl.LowPassFilterConfig_clear(self) - - def get_allocator(self): - return _mscl.LowPassFilterConfig_get_allocator(self) - - def pop_back(self): - return _mscl.LowPassFilterConfig_pop_back(self) - - def erase(self, *args): - return _mscl.LowPassFilterConfig_erase(self, *args) - - def __init__(self, *args): - _mscl.LowPassFilterConfig_swiginit(self, _mscl.new_LowPassFilterConfig(*args)) - - def push_back(self, x): - return _mscl.LowPassFilterConfig_push_back(self, x) - - def front(self): - return _mscl.LowPassFilterConfig_front(self) - - def back(self): - return _mscl.LowPassFilterConfig_back(self) - - def assign(self, n, x): - return _mscl.LowPassFilterConfig_assign(self, n, x) - - def resize(self, *args): - return _mscl.LowPassFilterConfig_resize(self, *args) - - def insert(self, *args): - return _mscl.LowPassFilterConfig_insert(self, *args) - - def reserve(self, n): - return _mscl.LowPassFilterConfig_reserve(self, n) - - def capacity(self): - return _mscl.LowPassFilterConfig_capacity(self) - __swig_destroy__ = _mscl.delete_LowPassFilterConfig - -# Register LowPassFilterConfig in _mscl: -_mscl.LowPassFilterConfig_swigregister(LowPassFilterConfig) - -class AidingMeasurementSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AidingMeasurementSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AidingMeasurementSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.AidingMeasurementSourceOptions___bool__(self) - - def __len__(self): - return _mscl.AidingMeasurementSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.AidingMeasurementSourceOptions_pop(self) - - def append(self, x): - return _mscl.AidingMeasurementSourceOptions_append(self, x) - - def empty(self): - return _mscl.AidingMeasurementSourceOptions_empty(self) - - def size(self): - return _mscl.AidingMeasurementSourceOptions_size(self) - - def swap(self, v): - return _mscl.AidingMeasurementSourceOptions_swap(self, v) - - def begin(self): - return _mscl.AidingMeasurementSourceOptions_begin(self) - - def end(self): - return _mscl.AidingMeasurementSourceOptions_end(self) - - def rbegin(self): - return _mscl.AidingMeasurementSourceOptions_rbegin(self) - - def rend(self): - return _mscl.AidingMeasurementSourceOptions_rend(self) - - def clear(self): - return _mscl.AidingMeasurementSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.AidingMeasurementSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.AidingMeasurementSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.AidingMeasurementSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.AidingMeasurementSourceOptions_swiginit(self, _mscl.new_AidingMeasurementSourceOptions(*args)) - - def push_back(self, x): - return _mscl.AidingMeasurementSourceOptions_push_back(self, x) - - def front(self): - return _mscl.AidingMeasurementSourceOptions_front(self) - - def back(self): - return _mscl.AidingMeasurementSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.AidingMeasurementSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.AidingMeasurementSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.AidingMeasurementSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.AidingMeasurementSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.AidingMeasurementSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_AidingMeasurementSourceOptions - -# Register AidingMeasurementSourceOptions in _mscl: -_mscl.AidingMeasurementSourceOptions_swigregister(AidingMeasurementSourceOptions) - -class PpsSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.PpsSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.PpsSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.PpsSourceOptions___bool__(self) - - def __len__(self): - return _mscl.PpsSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.PpsSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.PpsSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.PpsSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.PpsSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.PpsSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.PpsSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.PpsSourceOptions_pop(self) - - def append(self, x): - return _mscl.PpsSourceOptions_append(self, x) - - def empty(self): - return _mscl.PpsSourceOptions_empty(self) - - def size(self): - return _mscl.PpsSourceOptions_size(self) - - def swap(self, v): - return _mscl.PpsSourceOptions_swap(self, v) - - def begin(self): - return _mscl.PpsSourceOptions_begin(self) - - def end(self): - return _mscl.PpsSourceOptions_end(self) - - def rbegin(self): - return _mscl.PpsSourceOptions_rbegin(self) - - def rend(self): - return _mscl.PpsSourceOptions_rend(self) - - def clear(self): - return _mscl.PpsSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.PpsSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.PpsSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.PpsSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.PpsSourceOptions_swiginit(self, _mscl.new_PpsSourceOptions(*args)) - - def push_back(self, x): - return _mscl.PpsSourceOptions_push_back(self, x) - - def front(self): - return _mscl.PpsSourceOptions_front(self) - - def back(self): - return _mscl.PpsSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.PpsSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.PpsSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.PpsSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.PpsSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.PpsSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_PpsSourceOptions - -# Register PpsSourceOptions in _mscl: -_mscl.PpsSourceOptions_swigregister(PpsSourceOptions) - -class GeographicSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeographicSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeographicSources___nonzero__(self) - - def __bool__(self): - return _mscl.GeographicSources___bool__(self) - - def __len__(self): - return _mscl.GeographicSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeographicSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeographicSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeographicSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeographicSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeographicSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeographicSources___setitem__(self, *args) - - def pop(self): - return _mscl.GeographicSources_pop(self) - - def append(self, x): - return _mscl.GeographicSources_append(self, x) - - def empty(self): - return _mscl.GeographicSources_empty(self) - - def size(self): - return _mscl.GeographicSources_size(self) - - def swap(self, v): - return _mscl.GeographicSources_swap(self, v) - - def begin(self): - return _mscl.GeographicSources_begin(self) - - def end(self): - return _mscl.GeographicSources_end(self) - - def rbegin(self): - return _mscl.GeographicSources_rbegin(self) - - def rend(self): - return _mscl.GeographicSources_rend(self) - - def clear(self): - return _mscl.GeographicSources_clear(self) - - def get_allocator(self): - return _mscl.GeographicSources_get_allocator(self) - - def pop_back(self): - return _mscl.GeographicSources_pop_back(self) - - def erase(self, *args): - return _mscl.GeographicSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GeographicSources_swiginit(self, _mscl.new_GeographicSources(*args)) - - def push_back(self, x): - return _mscl.GeographicSources_push_back(self, x) - - def front(self): - return _mscl.GeographicSources_front(self) - - def back(self): - return _mscl.GeographicSources_back(self) - - def assign(self, n, x): - return _mscl.GeographicSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeographicSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GeographicSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GeographicSources_reserve(self, n) - - def capacity(self): - return _mscl.GeographicSources_capacity(self) - __swig_destroy__ = _mscl.delete_GeographicSources - -# Register GeographicSources in _mscl: -_mscl.GeographicSources_swigregister(GeographicSources) - -class GnssSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSources___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSources___bool__(self) - - def __len__(self): - return _mscl.GnssSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssSources___setitem__(self, *args) - - def pop(self): - return _mscl.GnssSources_pop(self) - - def append(self, x): - return _mscl.GnssSources_append(self, x) - - def empty(self): - return _mscl.GnssSources_empty(self) - - def size(self): - return _mscl.GnssSources_size(self) - - def swap(self, v): - return _mscl.GnssSources_swap(self, v) - - def begin(self): - return _mscl.GnssSources_begin(self) - - def end(self): - return _mscl.GnssSources_end(self) - - def rbegin(self): - return _mscl.GnssSources_rbegin(self) - - def rend(self): - return _mscl.GnssSources_rend(self) - - def clear(self): - return _mscl.GnssSources_clear(self) - - def get_allocator(self): - return _mscl.GnssSources_get_allocator(self) - - def pop_back(self): - return _mscl.GnssSources_pop_back(self) - - def erase(self, *args): - return _mscl.GnssSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssSources_swiginit(self, _mscl.new_GnssSources(*args)) - - def push_back(self, x): - return _mscl.GnssSources_push_back(self, x) - - def front(self): - return _mscl.GnssSources_front(self) - - def back(self): - return _mscl.GnssSources_back(self) - - def assign(self, n, x): - return _mscl.GnssSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssSources_reserve(self, n) - - def capacity(self): - return _mscl.GnssSources_capacity(self) - __swig_destroy__ = _mscl.delete_GnssSources - -# Register GnssSources in _mscl: -_mscl.GnssSources_swigregister(GnssSources) - -class GnssSignalConfigOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSignalConfigOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSignalConfigOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSignalConfigOptions___bool__(self) - - def __len__(self): - return _mscl.GnssSignalConfigOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GnssSignalConfigOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GnssSignalConfigOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GnssSignalConfigOptions_has_key(self, key) - - def keys(self): - return _mscl.GnssSignalConfigOptions_keys(self) - - def values(self): - return _mscl.GnssSignalConfigOptions_values(self) - - def items(self): - return _mscl.GnssSignalConfigOptions_items(self) - - def __contains__(self, key): - return _mscl.GnssSignalConfigOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GnssSignalConfigOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GnssSignalConfigOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GnssSignalConfigOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GnssSignalConfigOptions_asdict(self) - - def __init__(self, *args): - _mscl.GnssSignalConfigOptions_swiginit(self, _mscl.new_GnssSignalConfigOptions(*args)) - - def empty(self): - return _mscl.GnssSignalConfigOptions_empty(self) - - def size(self): - return _mscl.GnssSignalConfigOptions_size(self) - - def swap(self, v): - return _mscl.GnssSignalConfigOptions_swap(self, v) - - def begin(self): - return _mscl.GnssSignalConfigOptions_begin(self) - - def end(self): - return _mscl.GnssSignalConfigOptions_end(self) - - def rbegin(self): - return _mscl.GnssSignalConfigOptions_rbegin(self) - - def rend(self): - return _mscl.GnssSignalConfigOptions_rend(self) - - def clear(self): - return _mscl.GnssSignalConfigOptions_clear(self) - - def get_allocator(self): - return _mscl.GnssSignalConfigOptions_get_allocator(self) - - def count(self, x): - return _mscl.GnssSignalConfigOptions_count(self, x) - - def erase(self, *args): - return _mscl.GnssSignalConfigOptions_erase(self, *args) - - def find(self, x): - return _mscl.GnssSignalConfigOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GnssSignalConfigOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GnssSignalConfigOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GnssSignalConfigOptions - -# Register GnssSignalConfigOptions in _mscl: -_mscl.GnssSignalConfigOptions_swigregister(GnssSignalConfigOptions) - -class NmeaMessageFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NmeaMessageFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NmeaMessageFormats___nonzero__(self) - - def __bool__(self): - return _mscl.NmeaMessageFormats___bool__(self) - - def __len__(self): - return _mscl.NmeaMessageFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.NmeaMessageFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NmeaMessageFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NmeaMessageFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NmeaMessageFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NmeaMessageFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NmeaMessageFormats___setitem__(self, *args) - - def pop(self): - return _mscl.NmeaMessageFormats_pop(self) - - def append(self, x): - return _mscl.NmeaMessageFormats_append(self, x) - - def empty(self): - return _mscl.NmeaMessageFormats_empty(self) - - def size(self): - return _mscl.NmeaMessageFormats_size(self) - - def swap(self, v): - return _mscl.NmeaMessageFormats_swap(self, v) - - def begin(self): - return _mscl.NmeaMessageFormats_begin(self) - - def end(self): - return _mscl.NmeaMessageFormats_end(self) - - def rbegin(self): - return _mscl.NmeaMessageFormats_rbegin(self) - - def rend(self): - return _mscl.NmeaMessageFormats_rend(self) - - def clear(self): - return _mscl.NmeaMessageFormats_clear(self) - - def get_allocator(self): - return _mscl.NmeaMessageFormats_get_allocator(self) - - def pop_back(self): - return _mscl.NmeaMessageFormats_pop_back(self) - - def erase(self, *args): - return _mscl.NmeaMessageFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.NmeaMessageFormats_swiginit(self, _mscl.new_NmeaMessageFormats(*args)) - - def push_back(self, x): - return _mscl.NmeaMessageFormats_push_back(self, x) - - def front(self): - return _mscl.NmeaMessageFormats_front(self) - - def back(self): - return _mscl.NmeaMessageFormats_back(self) - - def assign(self, n, x): - return _mscl.NmeaMessageFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.NmeaMessageFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.NmeaMessageFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.NmeaMessageFormats_reserve(self, n) - - def capacity(self): - return _mscl.NmeaMessageFormats_capacity(self) - __swig_destroy__ = _mscl.delete_NmeaMessageFormats - -# Register NmeaMessageFormats in _mscl: -_mscl.NmeaMessageFormats_swigregister(NmeaMessageFormats) - -class GpioPinModeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinModeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinModeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinModeOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinModeOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.GpioPinModeOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GpioPinModeOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GpioPinModeOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GpioPinModeOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GpioPinModeOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GpioPinModeOptions___setitem__(self, *args) - - def pop(self): - return _mscl.GpioPinModeOptions_pop(self) - - def append(self, x): - return _mscl.GpioPinModeOptions_append(self, x) - - def empty(self): - return _mscl.GpioPinModeOptions_empty(self) - - def size(self): - return _mscl.GpioPinModeOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinModeOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinModeOptions_begin(self) - - def end(self): - return _mscl.GpioPinModeOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinModeOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinModeOptions_rend(self) - - def clear(self): - return _mscl.GpioPinModeOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinModeOptions_get_allocator(self) - - def pop_back(self): - return _mscl.GpioPinModeOptions_pop_back(self) - - def erase(self, *args): - return _mscl.GpioPinModeOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.GpioPinModeOptions_swiginit(self, _mscl.new_GpioPinModeOptions(*args)) - - def push_back(self, x): - return _mscl.GpioPinModeOptions_push_back(self, x) - - def front(self): - return _mscl.GpioPinModeOptions_front(self) - - def back(self): - return _mscl.GpioPinModeOptions_back(self) - - def assign(self, n, x): - return _mscl.GpioPinModeOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.GpioPinModeOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.GpioPinModeOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.GpioPinModeOptions_reserve(self, n) - - def capacity(self): - return _mscl.GpioPinModeOptions_capacity(self) - __swig_destroy__ = _mscl.delete_GpioPinModeOptions - -# Register GpioPinModeOptions in _mscl: -_mscl.GpioPinModeOptions_swigregister(GpioPinModeOptions) - -class GpioBehaviorModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioBehaviorModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioBehaviorModes___nonzero__(self) - - def __bool__(self): - return _mscl.GpioBehaviorModes___bool__(self) - - def __len__(self): - return _mscl.GpioBehaviorModes___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioBehaviorModes___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioBehaviorModes___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioBehaviorModes_has_key(self, key) - - def keys(self): - return _mscl.GpioBehaviorModes_keys(self) - - def values(self): - return _mscl.GpioBehaviorModes_values(self) - - def items(self): - return _mscl.GpioBehaviorModes_items(self) - - def __contains__(self, key): - return _mscl.GpioBehaviorModes___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioBehaviorModes_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioBehaviorModes_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioBehaviorModes___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioBehaviorModes_asdict(self) - - def __init__(self, *args): - _mscl.GpioBehaviorModes_swiginit(self, _mscl.new_GpioBehaviorModes(*args)) - - def empty(self): - return _mscl.GpioBehaviorModes_empty(self) - - def size(self): - return _mscl.GpioBehaviorModes_size(self) - - def swap(self, v): - return _mscl.GpioBehaviorModes_swap(self, v) - - def begin(self): - return _mscl.GpioBehaviorModes_begin(self) - - def end(self): - return _mscl.GpioBehaviorModes_end(self) - - def rbegin(self): - return _mscl.GpioBehaviorModes_rbegin(self) - - def rend(self): - return _mscl.GpioBehaviorModes_rend(self) - - def clear(self): - return _mscl.GpioBehaviorModes_clear(self) - - def get_allocator(self): - return _mscl.GpioBehaviorModes_get_allocator(self) - - def count(self, x): - return _mscl.GpioBehaviorModes_count(self, x) - - def erase(self, *args): - return _mscl.GpioBehaviorModes_erase(self, *args) - - def find(self, x): - return _mscl.GpioBehaviorModes_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioBehaviorModes_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioBehaviorModes_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioBehaviorModes - -# Register GpioBehaviorModes in _mscl: -_mscl.GpioBehaviorModes_swigregister(GpioBehaviorModes) - -class GpioFeatureBehaviors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioFeatureBehaviors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioFeatureBehaviors___nonzero__(self) - - def __bool__(self): - return _mscl.GpioFeatureBehaviors___bool__(self) - - def __len__(self): - return _mscl.GpioFeatureBehaviors___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioFeatureBehaviors___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioFeatureBehaviors___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioFeatureBehaviors_has_key(self, key) - - def keys(self): - return _mscl.GpioFeatureBehaviors_keys(self) - - def values(self): - return _mscl.GpioFeatureBehaviors_values(self) - - def items(self): - return _mscl.GpioFeatureBehaviors_items(self) - - def __contains__(self, key): - return _mscl.GpioFeatureBehaviors___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioFeatureBehaviors_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioFeatureBehaviors_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioFeatureBehaviors___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioFeatureBehaviors_asdict(self) - - def __init__(self, *args): - _mscl.GpioFeatureBehaviors_swiginit(self, _mscl.new_GpioFeatureBehaviors(*args)) - - def empty(self): - return _mscl.GpioFeatureBehaviors_empty(self) - - def size(self): - return _mscl.GpioFeatureBehaviors_size(self) - - def swap(self, v): - return _mscl.GpioFeatureBehaviors_swap(self, v) - - def begin(self): - return _mscl.GpioFeatureBehaviors_begin(self) - - def end(self): - return _mscl.GpioFeatureBehaviors_end(self) - - def rbegin(self): - return _mscl.GpioFeatureBehaviors_rbegin(self) - - def rend(self): - return _mscl.GpioFeatureBehaviors_rend(self) - - def clear(self): - return _mscl.GpioFeatureBehaviors_clear(self) - - def get_allocator(self): - return _mscl.GpioFeatureBehaviors_get_allocator(self) - - def count(self, x): - return _mscl.GpioFeatureBehaviors_count(self, x) - - def erase(self, *args): - return _mscl.GpioFeatureBehaviors_erase(self, *args) - - def find(self, x): - return _mscl.GpioFeatureBehaviors_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioFeatureBehaviors_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioFeatureBehaviors_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioFeatureBehaviors - -# Register GpioFeatureBehaviors in _mscl: -_mscl.GpioFeatureBehaviors_swigregister(GpioFeatureBehaviors) - -class GpioPinOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioPinOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioPinOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioPinOptions_has_key(self, key) - - def keys(self): - return _mscl.GpioPinOptions_keys(self) - - def values(self): - return _mscl.GpioPinOptions_values(self) - - def items(self): - return _mscl.GpioPinOptions_items(self) - - def __contains__(self, key): - return _mscl.GpioPinOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioPinOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioPinOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioPinOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioPinOptions_asdict(self) - - def __init__(self, *args): - _mscl.GpioPinOptions_swiginit(self, _mscl.new_GpioPinOptions(*args)) - - def empty(self): - return _mscl.GpioPinOptions_empty(self) - - def size(self): - return _mscl.GpioPinOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinOptions_begin(self) - - def end(self): - return _mscl.GpioPinOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinOptions_rend(self) - - def clear(self): - return _mscl.GpioPinOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinOptions_get_allocator(self) - - def count(self, x): - return _mscl.GpioPinOptions_count(self, x) - - def erase(self, *args): - return _mscl.GpioPinOptions_erase(self, *args) - - def find(self, x): - return _mscl.GpioPinOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioPinOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioPinOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioPinOptions - -# Register GpioPinOptions in _mscl: -_mscl.GpioPinOptions_swigregister(GpioPinOptions) - -class EventInputTriggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventInputTriggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventInputTriggers___nonzero__(self) - - def __bool__(self): - return _mscl.EventInputTriggers___bool__(self) - - def __len__(self): - return _mscl.EventInputTriggers___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventInputTriggers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventInputTriggers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventInputTriggers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventInputTriggers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventInputTriggers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventInputTriggers___setitem__(self, *args) - - def __init__(self, *args): - _mscl.EventInputTriggers_swiginit(self, _mscl.new_EventInputTriggers(*args)) - - def empty(self): - return _mscl.EventInputTriggers_empty(self) - - def size(self): - return _mscl.EventInputTriggers_size(self) - - def swap(self, v): - return _mscl.EventInputTriggers_swap(self, v) - - def begin(self): - return _mscl.EventInputTriggers_begin(self) - - def end(self): - return _mscl.EventInputTriggers_end(self) - - def rbegin(self): - return _mscl.EventInputTriggers_rbegin(self) - - def rend(self): - return _mscl.EventInputTriggers_rend(self) - - def front(self): - return _mscl.EventInputTriggers_front(self) - - def back(self): - return _mscl.EventInputTriggers_back(self) - - def fill(self, u): - return _mscl.EventInputTriggers_fill(self, u) - __swig_destroy__ = _mscl.delete_EventInputTriggers - -# Register EventInputTriggers in _mscl: -_mscl.EventInputTriggers_swigregister(EventInputTriggers) - -class EventTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTypes___nonzero__(self) - - def __bool__(self): - return _mscl.EventTypes___bool__(self) - - def __len__(self): - return _mscl.EventTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTypes___setitem__(self, *args) - - def pop(self): - return _mscl.EventTypes_pop(self) - - def append(self, x): - return _mscl.EventTypes_append(self, x) - - def empty(self): - return _mscl.EventTypes_empty(self) - - def size(self): - return _mscl.EventTypes_size(self) - - def swap(self, v): - return _mscl.EventTypes_swap(self, v) - - def begin(self): - return _mscl.EventTypes_begin(self) - - def end(self): - return _mscl.EventTypes_end(self) - - def rbegin(self): - return _mscl.EventTypes_rbegin(self) - - def rend(self): - return _mscl.EventTypes_rend(self) - - def clear(self): - return _mscl.EventTypes_clear(self) - - def get_allocator(self): - return _mscl.EventTypes_get_allocator(self) - - def pop_back(self): - return _mscl.EventTypes_pop_back(self) - - def erase(self, *args): - return _mscl.EventTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTypes_swiginit(self, _mscl.new_EventTypes(*args)) - - def push_back(self, x): - return _mscl.EventTypes_push_back(self, x) - - def front(self): - return _mscl.EventTypes_front(self) - - def back(self): - return _mscl.EventTypes_back(self) - - def assign(self, n, x): - return _mscl.EventTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTypes_reserve(self, n) - - def capacity(self): - return _mscl.EventTypes_capacity(self) - __swig_destroy__ = _mscl.delete_EventTypes - -# Register EventTypes in _mscl: -_mscl.EventTypes_swigregister(EventTypes) - -class MeasurementReferenceFrames(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MeasurementReferenceFrames_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MeasurementReferenceFrames___nonzero__(self) - - def __bool__(self): - return _mscl.MeasurementReferenceFrames___bool__(self) - - def __len__(self): - return _mscl.MeasurementReferenceFrames___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.MeasurementReferenceFrames___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.MeasurementReferenceFrames___delitem__(self, key) - - def has_key(self, key): - return _mscl.MeasurementReferenceFrames_has_key(self, key) - - def keys(self): - return _mscl.MeasurementReferenceFrames_keys(self) - - def values(self): - return _mscl.MeasurementReferenceFrames_values(self) - - def items(self): - return _mscl.MeasurementReferenceFrames_items(self) - - def __contains__(self, key): - return _mscl.MeasurementReferenceFrames___contains__(self, key) - - def key_iterator(self): - return _mscl.MeasurementReferenceFrames_key_iterator(self) - - def value_iterator(self): - return _mscl.MeasurementReferenceFrames_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.MeasurementReferenceFrames___setitem__(self, *args) - - def asdict(self): - return _mscl.MeasurementReferenceFrames_asdict(self) - - def __init__(self, *args): - _mscl.MeasurementReferenceFrames_swiginit(self, _mscl.new_MeasurementReferenceFrames(*args)) - - def empty(self): - return _mscl.MeasurementReferenceFrames_empty(self) - - def size(self): - return _mscl.MeasurementReferenceFrames_size(self) - - def swap(self, v): - return _mscl.MeasurementReferenceFrames_swap(self, v) - - def begin(self): - return _mscl.MeasurementReferenceFrames_begin(self) - - def end(self): - return _mscl.MeasurementReferenceFrames_end(self) - - def rbegin(self): - return _mscl.MeasurementReferenceFrames_rbegin(self) - - def rend(self): - return _mscl.MeasurementReferenceFrames_rend(self) - - def clear(self): - return _mscl.MeasurementReferenceFrames_clear(self) - - def get_allocator(self): - return _mscl.MeasurementReferenceFrames_get_allocator(self) - - def count(self, x): - return _mscl.MeasurementReferenceFrames_count(self, x) - - def erase(self, *args): - return _mscl.MeasurementReferenceFrames_erase(self, *args) - - def find(self, x): - return _mscl.MeasurementReferenceFrames_find(self, x) - - def lower_bound(self, x): - return _mscl.MeasurementReferenceFrames_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.MeasurementReferenceFrames_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrames - -# Register MeasurementReferenceFrames in _mscl: -_mscl.MeasurementReferenceFrames_swigregister(MeasurementReferenceFrames) - -class Bins(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bins_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bins___nonzero__(self) - - def __bool__(self): - return _mscl.Bins___bool__(self) - - def __len__(self): - return _mscl.Bins___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bins___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bins___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bins___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bins___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bins___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bins___setitem__(self, *args) - - def pop(self): - return _mscl.Bins_pop(self) - - def append(self, x): - return _mscl.Bins_append(self, x) - - def empty(self): - return _mscl.Bins_empty(self) - - def size(self): - return _mscl.Bins_size(self) - - def swap(self, v): - return _mscl.Bins_swap(self, v) - - def begin(self): - return _mscl.Bins_begin(self) - - def end(self): - return _mscl.Bins_end(self) - - def rbegin(self): - return _mscl.Bins_rbegin(self) - - def rend(self): - return _mscl.Bins_rend(self) - - def clear(self): - return _mscl.Bins_clear(self) - - def get_allocator(self): - return _mscl.Bins_get_allocator(self) - - def pop_back(self): - return _mscl.Bins_pop_back(self) - - def erase(self, *args): - return _mscl.Bins_erase(self, *args) - - def __init__(self, *args): - _mscl.Bins_swiginit(self, _mscl.new_Bins(*args)) - - def push_back(self, x): - return _mscl.Bins_push_back(self, x) - - def front(self): - return _mscl.Bins_front(self) - - def back(self): - return _mscl.Bins_back(self) - - def assign(self, n, x): - return _mscl.Bins_assign(self, n, x) - - def insert(self, *args): - return _mscl.Bins_insert(self, *args) - - def reserve(self, n): - return _mscl.Bins_reserve(self, n) - - def capacity(self): - return _mscl.Bins_capacity(self) - __swig_destroy__ = _mscl.delete_Bins - -# Register Bins in _mscl: -_mscl.Bins_swigregister(Bins) - -class Error(Exception): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_swiginit(self, _mscl.new_Error(*args)) - __swig_destroy__ = _mscl.delete_Error - - def what(self): - return _mscl.Error_what(self) - - def __str__(self): - return _mscl.Error___str__(self) - -# Register Error in _mscl: -_mscl.Error_swigregister(Error) - -class Error_NotSupported(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NotSupported_swiginit(self, _mscl.new_Error_NotSupported(*args)) - __swig_destroy__ = _mscl.delete_Error_NotSupported - -# Register Error_NotSupported in _mscl: -_mscl.Error_NotSupported_swigregister(Error_NotSupported) - -class Error_NoData(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NoData_swiginit(self, _mscl.new_Error_NoData(*args)) - __swig_destroy__ = _mscl.delete_Error_NoData - -# Register Error_NoData in _mscl: -_mscl.Error_NoData_swigregister(Error_NoData) - -class Error_BadDataType(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Error_BadDataType_swiginit(self, _mscl.new_Error_BadDataType()) - __swig_destroy__ = _mscl.delete_Error_BadDataType - -# Register Error_BadDataType in _mscl: -_mscl.Error_BadDataType_swigregister(Error_BadDataType) - -class Error_UnknownSampleRate(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_UnknownSampleRate_swiginit(self, _mscl.new_Error_UnknownSampleRate(*args)) - __swig_destroy__ = _mscl.delete_Error_UnknownSampleRate - -# Register Error_UnknownSampleRate in _mscl: -_mscl.Error_UnknownSampleRate_swigregister(Error_UnknownSampleRate) - -class Error_Communication(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Communication_swiginit(self, _mscl.new_Error_Communication(*args)) - __swig_destroy__ = _mscl.delete_Error_Communication - -# Register Error_Communication in _mscl: -_mscl.Error_Communication_swigregister(Error_Communication) - -class Error_NodeCommunication(Error_Communication): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NodeCommunication_swiginit(self, _mscl.new_Error_NodeCommunication(*args)) - - def nodeAddress(self): - return _mscl.Error_NodeCommunication_nodeAddress(self) - __swig_destroy__ = _mscl.delete_Error_NodeCommunication - -# Register Error_NodeCommunication in _mscl: -_mscl.Error_NodeCommunication_swigregister(Error_NodeCommunication) - -class Error_Connection(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Connection_swiginit(self, _mscl.new_Error_Connection(*args)) - __swig_destroy__ = _mscl.delete_Error_Connection - - def code(self): - return _mscl.Error_Connection_code(self) - - def value(self): - return _mscl.Error_Connection_value(self) - -# Register Error_Connection in _mscl: -_mscl.Error_Connection_swigregister(Error_Connection) - -class Error_InvalidSerialPort(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code): - _mscl.Error_InvalidSerialPort_swiginit(self, _mscl.new_Error_InvalidSerialPort(code)) - __swig_destroy__ = _mscl.delete_Error_InvalidSerialPort - -# Register Error_InvalidSerialPort in _mscl: -_mscl.Error_InvalidSerialPort_swigregister(Error_InvalidSerialPort) - -class Error_InvalidTcpServer(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidTcpServer_swiginit(self, _mscl.new_Error_InvalidTcpServer(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidTcpServer - -# Register Error_InvalidTcpServer in _mscl: -_mscl.Error_InvalidTcpServer_swigregister(Error_InvalidTcpServer) - -class Error_InvalidUnixSocket(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidUnixSocket_swiginit(self, _mscl.new_Error_InvalidUnixSocket(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidUnixSocket - -# Register Error_InvalidUnixSocket in _mscl: -_mscl.Error_InvalidUnixSocket_swigregister(Error_InvalidUnixSocket) - -class Error_MipCmdFailed(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_MipCmdFailed_swiginit(self, _mscl.new_Error_MipCmdFailed(*args)) - __swig_destroy__ = _mscl.delete_Error_MipCmdFailed - - def code(self): - return _mscl.Error_MipCmdFailed_code(self) - - def value(self): - return _mscl.Error_MipCmdFailed_value(self) - -# Register Error_MipCmdFailed in _mscl: -_mscl.Error_MipCmdFailed_swigregister(Error_MipCmdFailed) - -class Error_InvalidConfig(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_InvalidConfig_swiginit(self, _mscl.new_Error_InvalidConfig(*args)) - __swig_destroy__ = _mscl.delete_Error_InvalidConfig - - def issues(self): - return _mscl.Error_InvalidConfig_issues(self) - -# Register Error_InvalidConfig in _mscl: -_mscl.Error_InvalidConfig_swigregister(Error_InvalidConfig) - -class Error_InvalidNodeConfig(Error_InvalidConfig): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, issues, nodeAddress): - _mscl.Error_InvalidNodeConfig_swiginit(self, _mscl.new_Error_InvalidNodeConfig(issues, nodeAddress)) - __swig_destroy__ = _mscl.delete_Error_InvalidNodeConfig - - def nodeAddress(self): - return _mscl.Error_InvalidNodeConfig_nodeAddress(self) - -# Register Error_InvalidNodeConfig in _mscl: -_mscl.Error_InvalidNodeConfig_swigregister(Error_InvalidNodeConfig) - - - diff --git a/mscl_release_assets/mscl-amd64-Python3.11-v67.0.0/_mscl.so b/mscl_release_assets/mscl-amd64-Python3.11-v67.0.0/_mscl.so deleted file mode 100644 index a0357b2..0000000 Binary files a/mscl_release_assets/mscl-amd64-Python3.11-v67.0.0/_mscl.so and /dev/null differ diff --git a/mscl_release_assets/mscl-amd64-Python3.11-v67.0.0/mscl.py b/mscl_release_assets/mscl-amd64-Python3.11-v67.0.0/mscl.py deleted file mode 100644 index daa6217..0000000 --- a/mscl_release_assets/mscl-amd64-Python3.11-v67.0.0/mscl.py +++ /dev/null @@ -1,18376 +0,0 @@ -# This file was automatically generated by SWIG (http://www.swig.org). -# Version 4.0.1 -# -# Do not make changes to this file unless you know what you are doing--modify -# the SWIG interface file instead. - -from sys import version_info as _swig_python_version_info -if _swig_python_version_info < (2, 7, 0): - raise RuntimeError("Python 2.7 or later required") - -# Import the low-level C/C++ module -if __package__ or "." in __name__: - from . import _mscl -else: - import _mscl - -try: - import builtins as __builtin__ -except ImportError: - import __builtin__ - -def _swig_repr(self): - try: - strthis = "proxy of " + self.this.__repr__() - except __builtin__.Exception: - strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - - -def _swig_setattr_nondynamic_instance_variable(set): - def set_instance_attr(self, name, value): - if name == "thisown": - self.this.own(value) - elif name == "this": - set(self, name, value) - elif hasattr(self, name) and isinstance(getattr(type(self), name), property): - set(self, name, value) - else: - raise AttributeError("You cannot add instance attributes to %s" % self) - return set_instance_attr - - -def _swig_setattr_nondynamic_class_variable(set): - def set_class_attr(cls, name, value): - if hasattr(cls, name) and not isinstance(getattr(cls, name), property): - set(cls, name, value) - else: - raise AttributeError("You cannot add class attributes to %s" % cls) - return set_class_attr - - -def _swig_add_metaclass(metaclass): - """Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass""" - def wrapper(cls): - return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy()) - return wrapper - - -class _SwigNonDynamicMeta(type): - """Meta class to enforce nondynamic attributes (no new attributes) for a class""" - __setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__) - - -class SwigPyIterator(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_SwigPyIterator - - def value(self): - return _mscl.SwigPyIterator_value(self) - - def incr(self, n=1): - return _mscl.SwigPyIterator_incr(self, n) - - def decr(self, n=1): - return _mscl.SwigPyIterator_decr(self, n) - - def distance(self, x): - return _mscl.SwigPyIterator_distance(self, x) - - def equal(self, x): - return _mscl.SwigPyIterator_equal(self, x) - - def copy(self): - return _mscl.SwigPyIterator_copy(self) - - def next(self): - return _mscl.SwigPyIterator_next(self) - - def __next__(self): - return _mscl.SwigPyIterator___next__(self) - - def previous(self): - return _mscl.SwigPyIterator_previous(self) - - def advance(self, n): - return _mscl.SwigPyIterator_advance(self, n) - - def __eq__(self, x): - return _mscl.SwigPyIterator___eq__(self, x) - - def __ne__(self, x): - return _mscl.SwigPyIterator___ne__(self, x) - - def __iadd__(self, n): - return _mscl.SwigPyIterator___iadd__(self, n) - - def __isub__(self, n): - return _mscl.SwigPyIterator___isub__(self, n) - - def __add__(self, n): - return _mscl.SwigPyIterator___add__(self, n) - - def __sub__(self, *args): - return _mscl.SwigPyIterator___sub__(self, *args) - def __iter__(self): - return self - -# Register SwigPyIterator in _mscl: -_mscl.SwigPyIterator_swigregister(SwigPyIterator) - -SHARED_PTR_DISOWN = _mscl.SHARED_PTR_DISOWN -valueType_float = _mscl.valueType_float -valueType_double = _mscl.valueType_double -valueType_uint8 = _mscl.valueType_uint8 -valueType_uint16 = _mscl.valueType_uint16 -valueType_uint32 = _mscl.valueType_uint32 -valueType_int16 = _mscl.valueType_int16 -valueType_int32 = _mscl.valueType_int32 -valueType_bool = _mscl.valueType_bool -valueType_Vector = _mscl.valueType_Vector -valueType_Matrix = _mscl.valueType_Matrix -valueType_Timestamp = _mscl.valueType_Timestamp -valueType_string = _mscl.valueType_string -valueType_Bytes = _mscl.valueType_Bytes -valueType_StructuralHealth = _mscl.valueType_StructuralHealth -valueType_RfSweep = _mscl.valueType_RfSweep -valueType_ChannelMask = _mscl.valueType_ChannelMask -valueType_int8 = _mscl.valueType_int8 -valueType_uint64 = _mscl.valueType_uint64 -deviceState_idle = _mscl.deviceState_idle -deviceState_sleep = _mscl.deviceState_sleep -deviceState_sampling = _mscl.deviceState_sampling -deviceState_sampling_lostBeacon = _mscl.deviceState_sampling_lostBeacon -deviceState_sampling_inactive = _mscl.deviceState_sampling_inactive -deviceState_unknown = _mscl.deviceState_unknown -class BitMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BitMask_swiginit(self, _mscl.new_BitMask(*args)) - __swig_destroy__ = _mscl.delete_BitMask - - def __eq__(self, other): - return _mscl.BitMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.BitMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.BitMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.BitMask___gt__(self, other) - - def fromMask(self, val): - return _mscl.BitMask_fromMask(self, val) - - def toMask(self): - return _mscl.BitMask_toMask(self) - - def enabledCount(self): - return _mscl.BitMask_enabledCount(self) - - def enabled(self, bitIndex): - return _mscl.BitMask_enabled(self, bitIndex) - - def enable(self, bitIndex, enable=True): - return _mscl.BitMask_enable(self, bitIndex, enable) - - def lastBitEnabled(self): - return _mscl.BitMask_lastBitEnabled(self) - -# Register BitMask in _mscl: -_mscl.BitMask_swigregister(BitMask) - -class ChannelMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_CHANNELS = _mscl.ChannelMask_MAX_CHANNELS - - def __init__(self, *args): - _mscl.ChannelMask_swiginit(self, _mscl.new_ChannelMask(*args)) - __swig_destroy__ = _mscl.delete_ChannelMask - - def __eq__(self, other): - return _mscl.ChannelMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.ChannelMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.ChannelMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.ChannelMask___gt__(self, other) - - def fromMask(self, channelMask): - return _mscl.ChannelMask_fromMask(self, channelMask) - - def toMask(self): - return _mscl.ChannelMask_toMask(self) - - def count(self): - return _mscl.ChannelMask_count(self) - - def enabled(self, channel): - return _mscl.ChannelMask_enabled(self, channel) - - def enable(self, channel, enable=True): - return _mscl.ChannelMask_enable(self, channel, enable) - - def lastChEnabled(self): - return _mscl.ChannelMask_lastChEnabled(self) - -# Register ChannelMask in _mscl: -_mscl.ChannelMask_swigregister(ChannelMask) - -class Value(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_Value - - def storedAs(self): - return _mscl.Value_storedAs(self) - - def as_float(self): - return _mscl.Value_as_float(self) - - def as_double(self): - return _mscl.Value_as_double(self) - - def as_uint8(self): - return _mscl.Value_as_uint8(self) - - def as_uint16(self): - return _mscl.Value_as_uint16(self) - - def as_uint32(self): - return _mscl.Value_as_uint32(self) - - def as_uint64(self): - return _mscl.Value_as_uint64(self) - - def as_int8(self): - return _mscl.Value_as_int8(self) - - def as_int16(self): - return _mscl.Value_as_int16(self) - - def as_int32(self): - return _mscl.Value_as_int32(self) - - def as_bool(self): - return _mscl.Value_as_bool(self) - - def as_ChannelMask(self): - return _mscl.Value_as_ChannelMask(self) - - def as_string(self): - return _mscl.Value_as_string(self) - - def __init__(self): - _mscl.Value_swiginit(self, _mscl.new_Value()) - -# Register Value in _mscl: -_mscl.Value_swigregister(Value) - -class Bin(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, start, end, count): - _mscl.Bin_swiginit(self, _mscl.new_Bin(start, end, count)) - - def start(self): - return _mscl.Bin_start(self) - - def end(self): - return _mscl.Bin_end(self) - - def count(self): - return _mscl.Bin_count(self) - __swig_destroy__ = _mscl.delete_Bin - -# Register Bin in _mscl: -_mscl.Bin_swigregister(Bin) - -class Histogram(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, binsStart, binsSize): - _mscl.Histogram_swiginit(self, _mscl.new_Histogram(binsStart, binsSize)) - - def binsStart(self): - return _mscl.Histogram_binsStart(self) - - def binsSize(self): - return _mscl.Histogram_binsSize(self) - - def bins(self): - return _mscl.Histogram_bins(self) - - def addBin(self, bin): - return _mscl.Histogram_addBin(self, bin) - __swig_destroy__ = _mscl.delete_Histogram - -# Register Histogram in _mscl: -_mscl.Histogram_swigregister(Histogram) - -class Timestamp(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INTERNAL = _mscl.Timestamp_INTERNAL - EXTERNAL = _mscl.Timestamp_EXTERNAL - TIME_OF_ARRIVAL = _mscl.Timestamp_TIME_OF_ARRIVAL - GPS = _mscl.Timestamp_GPS - UNIX = _mscl.Timestamp_UNIX - UTC = _mscl.Timestamp_UTC - - def __init__(self, *args): - _mscl.Timestamp_swiginit(self, _mscl.new_Timestamp(*args)) - __swig_destroy__ = _mscl.delete_Timestamp - - def nanoseconds(self, *args): - return _mscl.Timestamp_nanoseconds(self, *args) - - def seconds(self, *args): - return _mscl.Timestamp_seconds(self, *args) - - def storedEpoch(self): - return _mscl.Timestamp_storedEpoch(self) - - def __str__(self): - return _mscl.Timestamp___str__(self) - - def setTime(self, *args): - return _mscl.Timestamp_setTime(self, *args) - - def setTimeNow(self): - return _mscl.Timestamp_setTimeNow(self) - - @staticmethod - def timeNow(): - return _mscl.Timestamp_timeNow() - - @staticmethod - def setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - - @staticmethod - def getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - - @staticmethod - def gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - - @staticmethod - def utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -# Register Timestamp in _mscl: -_mscl.Timestamp_swigregister(Timestamp) - -def Timestamp_timeNow(): - return _mscl.Timestamp_timeNow() - -def Timestamp_setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - -def Timestamp_getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - -def Timestamp_gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - -def Timestamp_utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -class TimeSpan(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - NANOSECONDS_PER_MICROSECOND = _mscl.TimeSpan_NANOSECONDS_PER_MICROSECOND - NANOSECONDS_PER_MILLISECOND = _mscl.TimeSpan_NANOSECONDS_PER_MILLISECOND - NANOSECONDS_PER_SECOND = _mscl.TimeSpan_NANOSECONDS_PER_SECOND - - def getNanoseconds(self): - return _mscl.TimeSpan_getNanoseconds(self) - - def getMicroseconds(self): - return _mscl.TimeSpan_getMicroseconds(self) - - def getMilliseconds(self): - return _mscl.TimeSpan_getMilliseconds(self) - - def getSeconds(self): - return _mscl.TimeSpan_getSeconds(self) - - @staticmethod - def NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - - @staticmethod - def MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - - @staticmethod - def MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - - @staticmethod - def Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - - @staticmethod - def Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - - @staticmethod - def Hours(hours): - return _mscl.TimeSpan_Hours(hours) - - @staticmethod - def Days(days): - return _mscl.TimeSpan_Days(days) - __swig_destroy__ = _mscl.delete_TimeSpan - -# Register TimeSpan in _mscl: -_mscl.TimeSpan_swigregister(TimeSpan) - -def TimeSpan_NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - -def TimeSpan_MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - -def TimeSpan_MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - -def TimeSpan_Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - -def TimeSpan_Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - -def TimeSpan_Hours(hours): - return _mscl.TimeSpan_Hours(hours) - -def TimeSpan_Days(days): - return _mscl.TimeSpan_Days(days) - -class Version(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Version_swiginit(self, _mscl.new_Version(*args)) - - def __eq__(self, cmp): - return _mscl.Version___eq__(self, cmp) - - def __ne__(self, cmp): - return _mscl.Version___ne__(self, cmp) - - def __lt__(self, cmp): - return _mscl.Version___lt__(self, cmp) - - def __le__(self, cmp): - return _mscl.Version___le__(self, cmp) - - def __gt__(self, cmp): - return _mscl.Version___gt__(self, cmp) - - def __ge__(self, cmp): - return _mscl.Version___ge__(self, cmp) - - def __str__(self): - return _mscl.Version___str__(self) - - def fromString(self, strVersion): - return _mscl.Version_fromString(self, strVersion) - - def majorPart(self): - return _mscl.Version_majorPart(self) - - def minorPart(self): - return _mscl.Version_minorPart(self) - - def patchPart(self): - return _mscl.Version_patchPart(self) - __swig_destroy__ = _mscl.delete_Version - -# Register Version in _mscl: -_mscl.Version_swigregister(Version) - -class DeviceInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.DeviceInfo_connectionType_serial - connectionType_tcp = _mscl.DeviceInfo_connectionType_tcp - - def __init__(self, *args): - _mscl.DeviceInfo_swiginit(self, _mscl.new_DeviceInfo(*args)) - - def description(self): - return _mscl.DeviceInfo_description(self) - - def serial(self): - return _mscl.DeviceInfo_serial(self) - - def baudRate(self): - return _mscl.DeviceInfo_baudRate(self) - - def connectionType(self): - return _mscl.DeviceInfo_connectionType(self) - __swig_destroy__ = _mscl.delete_DeviceInfo - -# Register DeviceInfo in _mscl: -_mscl.DeviceInfo_swigregister(DeviceInfo) -cvar = _mscl.cvar -MSCL_VERSION = cvar.MSCL_VERSION - -class Devices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def listBaseStations(): - return _mscl.Devices_listBaseStations() - - @staticmethod - def listInertialDevices(): - return _mscl.Devices_listInertialDevices() - - @staticmethod - def listPorts(): - return _mscl.Devices_listPorts() - __swig_destroy__ = _mscl.delete_Devices - -# Register Devices in _mscl: -_mscl.Devices_swigregister(Devices) - -def Devices_listBaseStations(): - return _mscl.Devices_listBaseStations() - -def Devices_listInertialDevices(): - return _mscl.Devices_listInertialDevices() - -def Devices_listPorts(): - return _mscl.Devices_listPorts() - -class ConnectionDebugData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ConnectionDebugData_swiginit(self, _mscl.new_ConnectionDebugData(*args)) - - def fromRead(self): - return _mscl.ConnectionDebugData_fromRead(self) - - def timestamp(self): - return _mscl.ConnectionDebugData_timestamp(self) - - def data(self): - return _mscl.ConnectionDebugData_data(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugData - -# Register ConnectionDebugData in _mscl: -_mscl.ConnectionDebugData_swigregister(ConnectionDebugData) - -class Connection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.Connection_connectionType_serial - connectionType_tcp = _mscl.Connection_connectionType_tcp - connectionType_webSocket = _mscl.Connection_connectionType_webSocket - connectionType_unixSocket = _mscl.Connection_connectionType_unixSocket - - def __init__(self): - _mscl.Connection_swiginit(self, _mscl.new_Connection()) - - @staticmethod - def Serial(*args): - return _mscl.Connection_Serial(*args) - - @staticmethod - def TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - - @staticmethod - def UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - - @staticmethod - def Mock(): - return _mscl.Connection_Mock() - - def description(self): - return _mscl.Connection_description(self) - - def port(self): - return _mscl.Connection_port(self) - - def type(self): - return _mscl.Connection_type(self) - - def disconnect(self): - return _mscl.Connection_disconnect(self) - - def reconnect(self): - return _mscl.Connection_reconnect(self) - - def write(self, bytes): - return _mscl.Connection_write(self, bytes) - - def writeStr(self, bytes): - return _mscl.Connection_writeStr(self, bytes) - - def clearBuffer(self): - return _mscl.Connection_clearBuffer(self) - - def byteReadPos(self): - return _mscl.Connection_byteReadPos(self) - - def byteAppendPos(self): - return _mscl.Connection_byteAppendPos(self) - - def rawByteMode(self, *args): - return _mscl.Connection_rawByteMode(self, *args) - - def getRawBytes(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytes(self, timeout, maxBytes, minBytes) - - def getRawBytesStr(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytesStr(self, timeout, maxBytes, minBytes) - - def getRawBytesWithPattern(self, pattern, timeout=0): - return _mscl.Connection_getRawBytesWithPattern(self, pattern, timeout) - - def debugMode(self, *args): - return _mscl.Connection_debugMode(self, *args) - - def getDebugData(self, timeout=0): - return _mscl.Connection_getDebugData(self, timeout) - - def updateBaudRate(self, baudRate): - return _mscl.Connection_updateBaudRate(self, baudRate) - __swig_destroy__ = _mscl.delete_Connection - -# Register Connection in _mscl: -_mscl.Connection_swigregister(Connection) - -def Connection_Serial(*args): - return _mscl.Connection_Serial(*args) - -def Connection_TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - -def Connection_UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - -def Connection_Mock(): - return _mscl.Connection_Mock() - -class WirelessTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - beacon_none = _mscl.WirelessTypes_beacon_none - beacon_internalTimer = _mscl.WirelessTypes_beacon_internalTimer - beacon_internalPPS = _mscl.WirelessTypes_beacon_internalPPS - beacon_externalPPS = _mscl.WirelessTypes_beacon_externalPPS - microcontroller_18F452 = _mscl.WirelessTypes_microcontroller_18F452 - microcontroller_18F4620 = _mscl.WirelessTypes_microcontroller_18F4620 - microcontroller_18F46K20 = _mscl.WirelessTypes_microcontroller_18F46K20 - microcontroller_18F67K90 = _mscl.WirelessTypes_microcontroller_18F67K90 - microcontroller_EFM32WG990F256 = _mscl.WirelessTypes_microcontroller_EFM32WG990F256 - microcontroller_EFR32FG1P132F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32FG1P132F256GM48 - microcontroller_EFR32MG1P232F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32MG1P232F256GM48 - collectionMethod_logOnly = _mscl.WirelessTypes_collectionMethod_logOnly - collectionMethod_transmitOnly = _mscl.WirelessTypes_collectionMethod_transmitOnly - collectionMethod_logAndTransmit = _mscl.WirelessTypes_collectionMethod_logAndTransmit - dataType_first = _mscl.WirelessTypes_dataType_first - dataType_uint16_shifted = _mscl.WirelessTypes_dataType_uint16_shifted - dataType_float32 = _mscl.WirelessTypes_dataType_float32 - dataType_uint16_12bitRes = _mscl.WirelessTypes_dataType_uint16_12bitRes - dataType_uint32 = _mscl.WirelessTypes_dataType_uint32 - dataType_uint16 = _mscl.WirelessTypes_dataType_uint16 - dataType_float32_noCals = _mscl.WirelessTypes_dataType_float32_noCals - dataType_uint24_18bitRes = _mscl.WirelessTypes_dataType_uint24_18bitRes - dataType_uint16_18bitTrunc = _mscl.WirelessTypes_dataType_uint16_18bitTrunc - dataType_int24_20bit = _mscl.WirelessTypes_dataType_int24_20bit - dataType_int16_20bitTrunc = _mscl.WirelessTypes_dataType_int16_20bitTrunc - dataType_uint24 = _mscl.WirelessTypes_dataType_uint24 - dataType_uint16_24bitTrunc = _mscl.WirelessTypes_dataType_uint16_24bitTrunc - dataType_int16_x10 = _mscl.WirelessTypes_dataType_int16_x10 - dataType_last = _mscl.WirelessTypes_dataType_last - dataFormat_raw_uint16 = _mscl.WirelessTypes_dataFormat_raw_uint16 - dataFormat_cal_float = _mscl.WirelessTypes_dataFormat_cal_float - dataFormat_raw_uint24 = _mscl.WirelessTypes_dataFormat_raw_uint24 - dataFormat_raw_int24 = _mscl.WirelessTypes_dataFormat_raw_int24 - dataFormat_raw_int16 = _mscl.WirelessTypes_dataFormat_raw_int16 - dataFormat_cal_int16_x10 = _mscl.WirelessTypes_dataFormat_cal_int16_x10 - syncMode_continuous = _mscl.WirelessTypes_syncMode_continuous - syncMode_burst = _mscl.WirelessTypes_syncMode_burst - samplingMode_sync = _mscl.WirelessTypes_samplingMode_sync - samplingMode_syncBurst = _mscl.WirelessTypes_samplingMode_syncBurst - samplingMode_nonSync = _mscl.WirelessTypes_samplingMode_nonSync - samplingMode_armedDatalog = _mscl.WirelessTypes_samplingMode_armedDatalog - samplingMode_syncEvent = _mscl.WirelessTypes_samplingMode_syncEvent - samplingMode_nonSyncEvent = _mscl.WirelessTypes_samplingMode_nonSyncEvent - defaultMode_idle = _mscl.WirelessTypes_defaultMode_idle - defaultMode_ldc = _mscl.WirelessTypes_defaultMode_ldc - defaultMode_datalog = _mscl.WirelessTypes_defaultMode_datalog - defaultMode_sleep = _mscl.WirelessTypes_defaultMode_sleep - defaultMode_sync = _mscl.WirelessTypes_defaultMode_sync - freq_unknown = _mscl.WirelessTypes_freq_unknown - freq_11 = _mscl.WirelessTypes_freq_11 - freq_12 = _mscl.WirelessTypes_freq_12 - freq_13 = _mscl.WirelessTypes_freq_13 - freq_14 = _mscl.WirelessTypes_freq_14 - freq_15 = _mscl.WirelessTypes_freq_15 - freq_16 = _mscl.WirelessTypes_freq_16 - freq_17 = _mscl.WirelessTypes_freq_17 - freq_18 = _mscl.WirelessTypes_freq_18 - freq_19 = _mscl.WirelessTypes_freq_19 - freq_20 = _mscl.WirelessTypes_freq_20 - freq_21 = _mscl.WirelessTypes_freq_21 - freq_22 = _mscl.WirelessTypes_freq_22 - freq_23 = _mscl.WirelessTypes_freq_23 - freq_24 = _mscl.WirelessTypes_freq_24 - freq_25 = _mscl.WirelessTypes_freq_25 - freq_26 = _mscl.WirelessTypes_freq_26 - power_20dBm = _mscl.WirelessTypes_power_20dBm - power_16dBm = _mscl.WirelessTypes_power_16dBm - power_15dBm = _mscl.WirelessTypes_power_15dBm - power_12dBm = _mscl.WirelessTypes_power_12dBm - power_11dBm = _mscl.WirelessTypes_power_11dBm - power_10dBm = _mscl.WirelessTypes_power_10dBm - power_5dBm = _mscl.WirelessTypes_power_5dBm - power_1dBm = _mscl.WirelessTypes_power_1dBm - power_0dBm = _mscl.WirelessTypes_power_0dBm - retransmission_off = _mscl.WirelessTypes_retransmission_off - retransmission_on = _mscl.WirelessTypes_retransmission_on - retransmission_disabled = _mscl.WirelessTypes_retransmission_disabled - trigger_userInit = _mscl.WirelessTypes_trigger_userInit - trigger_ceiling = _mscl.WirelessTypes_trigger_ceiling - trigger_floor = _mscl.WirelessTypes_trigger_floor - trigger_rampUp = _mscl.WirelessTypes_trigger_rampUp - trigger_rampDown = _mscl.WirelessTypes_trigger_rampDown - equation_none = _mscl.WirelessTypes_equation_none - equation_standard = _mscl.WirelessTypes_equation_standard - unit_none = _mscl.WirelessTypes_unit_none - unit_other_bits = _mscl.WirelessTypes_unit_other_bits - unit_strain_strain = _mscl.WirelessTypes_unit_strain_strain - unit_strain_microStrain = _mscl.WirelessTypes_unit_strain_microStrain - unit_accel_g = _mscl.WirelessTypes_unit_accel_g - unit_accel_mPerSec2 = _mscl.WirelessTypes_unit_accel_mPerSec2 - unit_volts_volts = _mscl.WirelessTypes_unit_volts_volts - unit_volts_millivolts = _mscl.WirelessTypes_unit_volts_millivolts - unit_volts_microvolts = _mscl.WirelessTypes_unit_volts_microvolts - unit_temp_celsius = _mscl.WirelessTypes_unit_temp_celsius - unit_temp_kelvin = _mscl.WirelessTypes_unit_temp_kelvin - unit_temp_fahrenheit = _mscl.WirelessTypes_unit_temp_fahrenheit - unit_displacement_meters = _mscl.WirelessTypes_unit_displacement_meters - unit_displacement_millimeters = _mscl.WirelessTypes_unit_displacement_millimeters - unit_displacement_micrometers = _mscl.WirelessTypes_unit_displacement_micrometers - unit_force_lbf = _mscl.WirelessTypes_unit_force_lbf - unit_force_newtons = _mscl.WirelessTypes_unit_force_newtons - unit_force_kiloNewtons = _mscl.WirelessTypes_unit_force_kiloNewtons - unit_mass_kilograms = _mscl.WirelessTypes_unit_mass_kilograms - unit_pressure_bar = _mscl.WirelessTypes_unit_pressure_bar - unit_pressure_psi = _mscl.WirelessTypes_unit_pressure_psi - unit_pressure_atm = _mscl.WirelessTypes_unit_pressure_atm - unit_pressure_mmHg = _mscl.WirelessTypes_unit_pressure_mmHg - unit_pressure_pascal = _mscl.WirelessTypes_unit_pressure_pascal - unit_pressure_megaPascal = _mscl.WirelessTypes_unit_pressure_megaPascal - unit_pressure_kiloPascal = _mscl.WirelessTypes_unit_pressure_kiloPascal - unit_angDisplacement_degrees = _mscl.WirelessTypes_unit_angDisplacement_degrees - unit_angVelocity_degreesPerSec = _mscl.WirelessTypes_unit_angVelocity_degreesPerSec - unit_angVelocity_radiansPerSec = _mscl.WirelessTypes_unit_angVelocity_radiansPerSec - unit_other_percent = _mscl.WirelessTypes_unit_other_percent - unit_freq_rpm = _mscl.WirelessTypes_unit_freq_rpm - unit_freq_hertz = _mscl.WirelessTypes_unit_freq_hertz - unit_rh_percentRh = _mscl.WirelessTypes_unit_rh_percentRh - unit_other_mVperV = _mscl.WirelessTypes_unit_other_mVperV - unit_accel_milliG = _mscl.WirelessTypes_unit_accel_milliG - unit_accel_ftPerSec2 = _mscl.WirelessTypes_unit_accel_ftPerSec2 - unit_other_percentLife = _mscl.WirelessTypes_unit_other_percentLife - unit_other_count = _mscl.WirelessTypes_unit_other_count - unit_displacement_feet = _mscl.WirelessTypes_unit_displacement_feet - unit_displacement_inches = _mscl.WirelessTypes_unit_displacement_inches - unit_displacement_yards = _mscl.WirelessTypes_unit_displacement_yards - unit_displacement_miles = _mscl.WirelessTypes_unit_displacement_miles - unit_displacement_nautMiles = _mscl.WirelessTypes_unit_displacement_nautMiles - unit_displacement_thouInch = _mscl.WirelessTypes_unit_displacement_thouInch - unit_displacement_hundInch = _mscl.WirelessTypes_unit_displacement_hundInch - unit_displacement_kilometers = _mscl.WirelessTypes_unit_displacement_kilometers - unit_displacement_centimeters = _mscl.WirelessTypes_unit_displacement_centimeters - unit_irradiance_wattsPerSqMeter = _mscl.WirelessTypes_unit_irradiance_wattsPerSqMeter - unit_par_microEinstein = _mscl.WirelessTypes_unit_par_microEinstein - unit_mass_pound = _mscl.WirelessTypes_unit_mass_pound - unit_power_watt = _mscl.WirelessTypes_unit_power_watt - unit_power_milliwatt = _mscl.WirelessTypes_unit_power_milliwatt - unit_power_horsepower = _mscl.WirelessTypes_unit_power_horsepower - unit_reactivePower_var = _mscl.WirelessTypes_unit_reactivePower_var - unit_energy_wattHour = _mscl.WirelessTypes_unit_energy_wattHour - unit_energy_kiloWattHour = _mscl.WirelessTypes_unit_energy_kiloWattHour - unit_reactiveEnergy_VARh = _mscl.WirelessTypes_unit_reactiveEnergy_VARh - unit_reactiveEnergy_kVARh = _mscl.WirelessTypes_unit_reactiveEnergy_kVARh - unit_current_ampere = _mscl.WirelessTypes_unit_current_ampere - unit_current_milliampere = _mscl.WirelessTypes_unit_current_milliampere - unit_current_microampere = _mscl.WirelessTypes_unit_current_microampere - unit_pressure_millibar = _mscl.WirelessTypes_unit_pressure_millibar - unit_pressure_inHg = _mscl.WirelessTypes_unit_pressure_inHg - unit_rssi_dBm = _mscl.WirelessTypes_unit_rssi_dBm - unit_freq_kiloHertz = _mscl.WirelessTypes_unit_freq_kiloHertz - unit_angDisplacement_radians = _mscl.WirelessTypes_unit_angDisplacement_radians - unit_velocity_metersPerSec = _mscl.WirelessTypes_unit_velocity_metersPerSec - unit_velocity_kilometersPerSec = _mscl.WirelessTypes_unit_velocity_kilometersPerSec - unit_velocity_kilometersPerHr = _mscl.WirelessTypes_unit_velocity_kilometersPerHr - unit_velocity_milesPerHr = _mscl.WirelessTypes_unit_velocity_milesPerHr - unit_velocity_knots = _mscl.WirelessTypes_unit_velocity_knots - unit_volume_cubicMeter = _mscl.WirelessTypes_unit_volume_cubicMeter - unit_volume_cubicFt = _mscl.WirelessTypes_unit_volume_cubicFt - unit_volume_liters = _mscl.WirelessTypes_unit_volume_liters - unit_volume_gallon = _mscl.WirelessTypes_unit_volume_gallon - unit_flowRate_cubicMetersPerSec = _mscl.WirelessTypes_unit_flowRate_cubicMetersPerSec - unit_flowRate_cubicFtPerSec = _mscl.WirelessTypes_unit_flowRate_cubicFtPerSec - unit_torque_newtonMeter = _mscl.WirelessTypes_unit_torque_newtonMeter - unit_torque_footPounds = _mscl.WirelessTypes_unit_torque_footPounds - unit_torque_inchPounds = _mscl.WirelessTypes_unit_torque_inchPounds - unit_time_secs = _mscl.WirelessTypes_unit_time_secs - unit_time_nanosecs = _mscl.WirelessTypes_unit_time_nanosecs - unit_time_microsecs = _mscl.WirelessTypes_unit_time_microsecs - unit_time_millisecs = _mscl.WirelessTypes_unit_time_millisecs - unit_time_minutes = _mscl.WirelessTypes_unit_time_minutes - unit_time_hours = _mscl.WirelessTypes_unit_time_hours - unit_time_days = _mscl.WirelessTypes_unit_time_days - unit_time_weeks = _mscl.WirelessTypes_unit_time_weeks - unit_other_value = _mscl.WirelessTypes_unit_other_value - unit_magneticFlux_gauss = _mscl.WirelessTypes_unit_magneticFlux_gauss - unit_other_gSec = _mscl.WirelessTypes_unit_other_gSec - unit_other_secsPerSec = _mscl.WirelessTypes_unit_other_secsPerSec - unit_rssi_dBHz = _mscl.WirelessTypes_unit_rssi_dBHz - unit_density_kgPerMeter3 = _mscl.WirelessTypes_unit_density_kgPerMeter3 - unit_other_unitless = _mscl.WirelessTypes_unit_other_unitless - unit_velocity_inchesPerSec = _mscl.WirelessTypes_unit_velocity_inchesPerSec - unit_force_kg = _mscl.WirelessTypes_unit_force_kg - unit_rawVoltage_volts = _mscl.WirelessTypes_unit_rawVoltage_volts - unit_rawVoltage_millivolts = _mscl.WirelessTypes_unit_rawVoltage_millivolts - unit_rawVoltage_microvolts = _mscl.WirelessTypes_unit_rawVoltage_microvolts - unit_resistance_ohm = _mscl.WirelessTypes_unit_resistance_ohm - unit_resistance_milliohm = _mscl.WirelessTypes_unit_resistance_milliohm - unit_resistance_kiloohm = _mscl.WirelessTypes_unit_resistance_kiloohm - unit_velocity_mmPerSec = _mscl.WirelessTypes_unit_velocity_mmPerSec - unit_mass_grams = _mscl.WirelessTypes_unit_mass_grams - unit_mass_ton = _mscl.WirelessTypes_unit_mass_ton - unit_mass_tonne = _mscl.WirelessTypes_unit_mass_tonne - chType_none = _mscl.WirelessTypes_chType_none - chType_fullDifferential = _mscl.WirelessTypes_chType_fullDifferential - chType_singleEnded = _mscl.WirelessTypes_chType_singleEnded - chType_battery = _mscl.WirelessTypes_chType_battery - chType_temperature = _mscl.WirelessTypes_chType_temperature - chType_rh = _mscl.WirelessTypes_chType_rh - chType_acceleration = _mscl.WirelessTypes_chType_acceleration - chType_displacement = _mscl.WirelessTypes_chType_displacement - chType_voltage = _mscl.WirelessTypes_chType_voltage - chType_diffTemperature = _mscl.WirelessTypes_chType_diffTemperature - chType_digital = _mscl.WirelessTypes_chType_digital - chType_tilt = _mscl.WirelessTypes_chType_tilt - voltageType_singleEnded = _mscl.WirelessTypes_voltageType_singleEnded - voltageType_differential = _mscl.WirelessTypes_voltageType_differential - settling_4ms = _mscl.WirelessTypes_settling_4ms - settling_8ms = _mscl.WirelessTypes_settling_8ms - settling_16ms = _mscl.WirelessTypes_settling_16ms - settling_32ms = _mscl.WirelessTypes_settling_32ms - settling_40ms = _mscl.WirelessTypes_settling_40ms - settling_48ms = _mscl.WirelessTypes_settling_48ms - settling_60ms = _mscl.WirelessTypes_settling_60ms - settling_101ms_90db = _mscl.WirelessTypes_settling_101ms_90db - settling_120ms_80db = _mscl.WirelessTypes_settling_120ms_80db - settling_120ms_65db = _mscl.WirelessTypes_settling_120ms_65db - settling_160ms_69db = _mscl.WirelessTypes_settling_160ms_69db - settling_200ms = _mscl.WirelessTypes_settling_200ms - transducer_thermocouple = _mscl.WirelessTypes_transducer_thermocouple - transducer_rtd = _mscl.WirelessTypes_transducer_rtd - transducer_thermistor = _mscl.WirelessTypes_transducer_thermistor - tc_uncompensated = _mscl.WirelessTypes_tc_uncompensated - tc_K = _mscl.WirelessTypes_tc_K - tc_J = _mscl.WirelessTypes_tc_J - tc_R = _mscl.WirelessTypes_tc_R - tc_S = _mscl.WirelessTypes_tc_S - tc_T = _mscl.WirelessTypes_tc_T - tc_E = _mscl.WirelessTypes_tc_E - tc_B = _mscl.WirelessTypes_tc_B - tc_N = _mscl.WirelessTypes_tc_N - tc_customPolynomial = _mscl.WirelessTypes_tc_customPolynomial - rtd_uncompensated = _mscl.WirelessTypes_rtd_uncompensated - rtd_pt10 = _mscl.WirelessTypes_rtd_pt10 - rtd_pt50 = _mscl.WirelessTypes_rtd_pt50 - rtd_pt100 = _mscl.WirelessTypes_rtd_pt100 - rtd_pt200 = _mscl.WirelessTypes_rtd_pt200 - rtd_pt500 = _mscl.WirelessTypes_rtd_pt500 - rtd_pt1000 = _mscl.WirelessTypes_rtd_pt1000 - rtd_2wire = _mscl.WirelessTypes_rtd_2wire - rtd_3wire = _mscl.WirelessTypes_rtd_3wire - rtd_4wire = _mscl.WirelessTypes_rtd_4wire - thermistor_uncompensated = _mscl.WirelessTypes_thermistor_uncompensated - thermistor_44004_44033 = _mscl.WirelessTypes_thermistor_44004_44033 - thermistor_44005_44030 = _mscl.WirelessTypes_thermistor_44005_44030 - thermistor_44007_44034 = _mscl.WirelessTypes_thermistor_44007_44034 - thermistor_44006_44031 = _mscl.WirelessTypes_thermistor_44006_44031 - thermistor_44008_44032 = _mscl.WirelessTypes_thermistor_44008_44032 - thermistor_ysi_400 = _mscl.WirelessTypes_thermistor_ysi_400 - sampleRate_104170Hz = _mscl.WirelessTypes_sampleRate_104170Hz - sampleRate_78125Hz = _mscl.WirelessTypes_sampleRate_78125Hz - sampleRate_62500Hz = _mscl.WirelessTypes_sampleRate_62500Hz - sampleRate_25000Hz = _mscl.WirelessTypes_sampleRate_25000Hz - sampleRate_12500Hz = _mscl.WirelessTypes_sampleRate_12500Hz - sampleRate_3200Hz = _mscl.WirelessTypes_sampleRate_3200Hz - sampleRate_1600Hz = _mscl.WirelessTypes_sampleRate_1600Hz - sampleRate_800Hz = _mscl.WirelessTypes_sampleRate_800Hz - sampleRate_300Hz = _mscl.WirelessTypes_sampleRate_300Hz - sampleRate_1kHz = _mscl.WirelessTypes_sampleRate_1kHz - sampleRate_2kHz = _mscl.WirelessTypes_sampleRate_2kHz - sampleRate_3kHz = _mscl.WirelessTypes_sampleRate_3kHz - sampleRate_4kHz = _mscl.WirelessTypes_sampleRate_4kHz - sampleRate_5kHz = _mscl.WirelessTypes_sampleRate_5kHz - sampleRate_6kHz = _mscl.WirelessTypes_sampleRate_6kHz - sampleRate_7kHz = _mscl.WirelessTypes_sampleRate_7kHz - sampleRate_8kHz = _mscl.WirelessTypes_sampleRate_8kHz - sampleRate_9kHz = _mscl.WirelessTypes_sampleRate_9kHz - sampleRate_10kHz = _mscl.WirelessTypes_sampleRate_10kHz - sampleRate_20kHz = _mscl.WirelessTypes_sampleRate_20kHz - sampleRate_30kHz = _mscl.WirelessTypes_sampleRate_30kHz - sampleRate_40kHz = _mscl.WirelessTypes_sampleRate_40kHz - sampleRate_50kHz = _mscl.WirelessTypes_sampleRate_50kHz - sampleRate_60kHz = _mscl.WirelessTypes_sampleRate_60kHz - sampleRate_70kHz = _mscl.WirelessTypes_sampleRate_70kHz - sampleRate_80kHz = _mscl.WirelessTypes_sampleRate_80kHz - sampleRate_90kHz = _mscl.WirelessTypes_sampleRate_90kHz - sampleRate_100kHz = _mscl.WirelessTypes_sampleRate_100kHz - sampleRate_887Hz = _mscl.WirelessTypes_sampleRate_887Hz - sampleRate_8192Hz = _mscl.WirelessTypes_sampleRate_8192Hz - sampleRate_4096Hz = _mscl.WirelessTypes_sampleRate_4096Hz - sampleRate_2048Hz = _mscl.WirelessTypes_sampleRate_2048Hz - sampleRate_1024Hz = _mscl.WirelessTypes_sampleRate_1024Hz - sampleRate_512Hz = _mscl.WirelessTypes_sampleRate_512Hz - sampleRate_256Hz = _mscl.WirelessTypes_sampleRate_256Hz - sampleRate_128Hz = _mscl.WirelessTypes_sampleRate_128Hz - sampleRate_64Hz = _mscl.WirelessTypes_sampleRate_64Hz - sampleRate_32Hz = _mscl.WirelessTypes_sampleRate_32Hz - sampleRate_16Hz = _mscl.WirelessTypes_sampleRate_16Hz - sampleRate_8Hz = _mscl.WirelessTypes_sampleRate_8Hz - sampleRate_4Hz = _mscl.WirelessTypes_sampleRate_4Hz - sampleRate_2Hz = _mscl.WirelessTypes_sampleRate_2Hz - sampleRate_1Hz = _mscl.WirelessTypes_sampleRate_1Hz - sampleRate_2Sec = _mscl.WirelessTypes_sampleRate_2Sec - sampleRate_5Sec = _mscl.WirelessTypes_sampleRate_5Sec - sampleRate_10Sec = _mscl.WirelessTypes_sampleRate_10Sec - sampleRate_30Sec = _mscl.WirelessTypes_sampleRate_30Sec - sampleRate_1Min = _mscl.WirelessTypes_sampleRate_1Min - sampleRate_2Min = _mscl.WirelessTypes_sampleRate_2Min - sampleRate_5Min = _mscl.WirelessTypes_sampleRate_5Min - sampleRate_10Min = _mscl.WirelessTypes_sampleRate_10Min - sampleRate_30Min = _mscl.WirelessTypes_sampleRate_30Min - sampleRate_60Min = _mscl.WirelessTypes_sampleRate_60Min - sampleRate_24Hours = _mscl.WirelessTypes_sampleRate_24Hours - region_usa = _mscl.WirelessTypes_region_usa - region_europeanUnion = _mscl.WirelessTypes_region_europeanUnion - region_japan = _mscl.WirelessTypes_region_japan - region_other = _mscl.WirelessTypes_region_other - region_brazil = _mscl.WirelessTypes_region_brazil - region_china = _mscl.WirelessTypes_region_china - region_australia_newzealand = _mscl.WirelessTypes_region_australia_newzealand - region_singapore = _mscl.WirelessTypes_region_singapore - region_canada = _mscl.WirelessTypes_region_canada - region_southAfrica = _mscl.WirelessTypes_region_southAfrica - region_indonesia = _mscl.WirelessTypes_region_indonesia - region_taiwan = _mscl.WirelessTypes_region_taiwan - chSetting_inputRange = _mscl.WirelessTypes_chSetting_inputRange - chSetting_filterSettlingTime = _mscl.WirelessTypes_chSetting_filterSettlingTime - chSetting_thermocoupleType = _mscl.WirelessTypes_chSetting_thermocoupleType - chSetting_linearEquation = _mscl.WirelessTypes_chSetting_linearEquation - chSetting_unit = _mscl.WirelessTypes_chSetting_unit - chSetting_equationType = _mscl.WirelessTypes_chSetting_equationType - chSetting_hardwareOffset = _mscl.WirelessTypes_chSetting_hardwareOffset - chSetting_autoBalance = _mscl.WirelessTypes_chSetting_autoBalance - chSetting_gaugeFactor = _mscl.WirelessTypes_chSetting_gaugeFactor - chSetting_antiAliasingFilter = _mscl.WirelessTypes_chSetting_antiAliasingFilter - chSetting_legacyShuntCal = _mscl.WirelessTypes_chSetting_legacyShuntCal - chSetting_autoShuntCal = _mscl.WirelessTypes_chSetting_autoShuntCal - chSetting_lowPassFilter = _mscl.WirelessTypes_chSetting_lowPassFilter - chSetting_highPassFilter = _mscl.WirelessTypes_chSetting_highPassFilter - chSetting_tempSensorOptions = _mscl.WirelessTypes_chSetting_tempSensorOptions - chSetting_debounceFilter = _mscl.WirelessTypes_chSetting_debounceFilter - chSetting_pullUpResistor = _mscl.WirelessTypes_chSetting_pullUpResistor - chSetting_factoryLinearEq = _mscl.WirelessTypes_chSetting_factoryLinearEq - chSetting_factoryUnit = _mscl.WirelessTypes_chSetting_factoryUnit - chSetting_factoryEqType = _mscl.WirelessTypes_chSetting_factoryEqType - autobalance_success = _mscl.WirelessTypes_autobalance_success - autobalance_maybeInvalid = _mscl.WirelessTypes_autobalance_maybeInvalid - autobalance_notSupportedByNode = _mscl.WirelessTypes_autobalance_notSupportedByNode - autobalance_notSupportedByCh = _mscl.WirelessTypes_autobalance_notSupportedByCh - autobalance_targetOutOfRange = _mscl.WirelessTypes_autobalance_targetOutOfRange - autobalance_failed = _mscl.WirelessTypes_autobalance_failed - autobalance_legacyNone = _mscl.WirelessTypes_autobalance_legacyNone - autobalance_notComplete = _mscl.WirelessTypes_autobalance_notComplete - autocal_success = _mscl.WirelessTypes_autocal_success - autocal_maybeInvalid_applied = _mscl.WirelessTypes_autocal_maybeInvalid_applied - autocal_maybeInvalid_notApplied = _mscl.WirelessTypes_autocal_maybeInvalid_notApplied - autocal_notComplete = _mscl.WirelessTypes_autocal_notComplete - autocalError_none = _mscl.WirelessTypes_autocalError_none - autocalError_sensorDetached = _mscl.WirelessTypes_autocalError_sensorDetached - autocalError_sensorShorted = _mscl.WirelessTypes_autocalError_sensorShorted - autocalError_unsupportedChannel = _mscl.WirelessTypes_autocalError_unsupportedChannel - autocalError_baseHighRail = _mscl.WirelessTypes_autocalError_baseHighRail - autocalError_baseLowRail = _mscl.WirelessTypes_autocalError_baseLowRail - autocalError_shuntHighRail = _mscl.WirelessTypes_autocalError_shuntHighRail - autocalError_shuntLowRail = _mscl.WirelessTypes_autocalError_shuntLowRail - autocalError_ramp = _mscl.WirelessTypes_autocalError_ramp - autocalError_noShunt = _mscl.WirelessTypes_autocalError_noShunt - autocalError_timeout = _mscl.WirelessTypes_autocalError_timeout - fatigueMode_angleStrain = _mscl.WirelessTypes_fatigueMode_angleStrain - fatigueMode_distributedAngle = _mscl.WirelessTypes_fatigueMode_distributedAngle - fatigueMode_rawGaugeStrain = _mscl.WirelessTypes_fatigueMode_rawGaugeStrain - eventTrigger_ceiling = _mscl.WirelessTypes_eventTrigger_ceiling - eventTrigger_floor = _mscl.WirelessTypes_eventTrigger_floor - filter_33000hz = _mscl.WirelessTypes_filter_33000hz - filter_20000hz = _mscl.WirelessTypes_filter_20000hz - filter_10000hz = _mscl.WirelessTypes_filter_10000hz - filter_5222hz = _mscl.WirelessTypes_filter_5222hz - filter_5000hz = _mscl.WirelessTypes_filter_5000hz - filter_4416hz = _mscl.WirelessTypes_filter_4416hz - filter_4096hz = _mscl.WirelessTypes_filter_4096hz - filter_4000hz = _mscl.WirelessTypes_filter_4000hz - filter_2208hz = _mscl.WirelessTypes_filter_2208hz - filter_2048hz = _mscl.WirelessTypes_filter_2048hz - filter_2000hz = _mscl.WirelessTypes_filter_2000hz - filter_1104hz = _mscl.WirelessTypes_filter_1104hz - filter_1024hz = _mscl.WirelessTypes_filter_1024hz - filter_1000hz = _mscl.WirelessTypes_filter_1000hz - filter_800hz = _mscl.WirelessTypes_filter_800hz - filter_552hz = _mscl.WirelessTypes_filter_552hz - filter_512hz = _mscl.WirelessTypes_filter_512hz - filter_500hz = _mscl.WirelessTypes_filter_500hz - filter_418hz = _mscl.WirelessTypes_filter_418hz - filter_294hz = _mscl.WirelessTypes_filter_294hz - filter_256hz = _mscl.WirelessTypes_filter_256hz - filter_250hz = _mscl.WirelessTypes_filter_250hz - filter_209hz = _mscl.WirelessTypes_filter_209hz - filter_200hz = _mscl.WirelessTypes_filter_200hz - filter_147hz = _mscl.WirelessTypes_filter_147hz - filter_128hz = _mscl.WirelessTypes_filter_128hz - filter_125hz = _mscl.WirelessTypes_filter_125hz - filter_104hz = _mscl.WirelessTypes_filter_104hz - filter_100hz = _mscl.WirelessTypes_filter_100hz - filter_62hz = _mscl.WirelessTypes_filter_62hz - filter_52hz = _mscl.WirelessTypes_filter_52hz - filter_50hz = _mscl.WirelessTypes_filter_50hz - filter_31hz = _mscl.WirelessTypes_filter_31hz - filter_26hz = _mscl.WirelessTypes_filter_26hz - filter_12_66hz = _mscl.WirelessTypes_filter_12_66hz - filter_2_6hz = _mscl.WirelessTypes_filter_2_6hz - highPass_off = _mscl.WirelessTypes_highPass_off - highPass_auto = _mscl.WirelessTypes_highPass_auto - cfc_10 = _mscl.WirelessTypes_cfc_10 - cfc_21 = _mscl.WirelessTypes_cfc_21 - cfc_60 = _mscl.WirelessTypes_cfc_60 - storageLimit_overwrite = _mscl.WirelessTypes_storageLimit_overwrite - storageLimit_stop = _mscl.WirelessTypes_storageLimit_stop - range_14_545mV = _mscl.WirelessTypes_range_14_545mV - range_10_236mV = _mscl.WirelessTypes_range_10_236mV - range_7_608mV = _mscl.WirelessTypes_range_7_608mV - range_4_046mV = _mscl.WirelessTypes_range_4_046mV - range_2_008mV = _mscl.WirelessTypes_range_2_008mV - range_1_511mV = _mscl.WirelessTypes_range_1_511mV - range_1_001mV = _mscl.WirelessTypes_range_1_001mV - range_0_812mV = _mscl.WirelessTypes_range_0_812mV - range_75mV = _mscl.WirelessTypes_range_75mV - range_37_5mV = _mscl.WirelessTypes_range_37_5mV - range_18_75mV = _mscl.WirelessTypes_range_18_75mV - range_9_38mV = _mscl.WirelessTypes_range_9_38mV - range_4_69mV = _mscl.WirelessTypes_range_4_69mV - range_2_34mV = _mscl.WirelessTypes_range_2_34mV - range_1_17mV = _mscl.WirelessTypes_range_1_17mV - range_0_586mV = _mscl.WirelessTypes_range_0_586mV - range_70mV = _mscl.WirelessTypes_range_70mV - range_35mV = _mscl.WirelessTypes_range_35mV - range_17_5mV = _mscl.WirelessTypes_range_17_5mV - range_8_75mV = _mscl.WirelessTypes_range_8_75mV - range_4_38mV = _mscl.WirelessTypes_range_4_38mV - range_2_19mV = _mscl.WirelessTypes_range_2_19mV - range_1_09mV = _mscl.WirelessTypes_range_1_09mV - range_0_547mV = _mscl.WirelessTypes_range_0_547mV - range_44mV = _mscl.WirelessTypes_range_44mV - range_30mV = _mscl.WirelessTypes_range_30mV - range_20mV = _mscl.WirelessTypes_range_20mV - range_15mV = _mscl.WirelessTypes_range_15mV - range_10mV = _mscl.WirelessTypes_range_10mV - range_5mV = _mscl.WirelessTypes_range_5mV - range_3mV = _mscl.WirelessTypes_range_3mV - range_2mV = _mscl.WirelessTypes_range_2mV - range_6mV = _mscl.WirelessTypes_range_6mV - range_1mV = _mscl.WirelessTypes_range_1mV - range_50mV = _mscl.WirelessTypes_range_50mV - range_2_5mV = _mscl.WirelessTypes_range_2_5mV - range_0_6mV = _mscl.WirelessTypes_range_0_6mV - range_0_35mV = _mscl.WirelessTypes_range_0_35mV - range_0_1mV = _mscl.WirelessTypes_range_0_1mV - range_156mV = _mscl.WirelessTypes_range_156mV - range_78_1mV = _mscl.WirelessTypes_range_78_1mV - range_39mV = _mscl.WirelessTypes_range_39mV - range_19_5mV = _mscl.WirelessTypes_range_19_5mV - range_9_76mV = _mscl.WirelessTypes_range_9_76mV - range_4_88mV = _mscl.WirelessTypes_range_4_88mV - range_2_44mV = _mscl.WirelessTypes_range_2_44mV - range_1_22mV = _mscl.WirelessTypes_range_1_22mV - range_10_24V = _mscl.WirelessTypes_range_10_24V - range_5_12V = _mscl.WirelessTypes_range_5_12V - range_2_56V = _mscl.WirelessTypes_range_2_56V - range_0to10_24V = _mscl.WirelessTypes_range_0to10_24V - range_0to5_12V = _mscl.WirelessTypes_range_0to5_12V - range_1_147V = _mscl.WirelessTypes_range_1_147V - range_585mV = _mscl.WirelessTypes_range_585mV - range_292_5mV = _mscl.WirelessTypes_range_292_5mV - range_146_25mV = _mscl.WirelessTypes_range_146_25mV - range_73_13mV = _mscl.WirelessTypes_range_73_13mV - range_36_56mV = _mscl.WirelessTypes_range_36_56mV - range_18_23mV = _mscl.WirelessTypes_range_18_23mV - range_9_14mV = _mscl.WirelessTypes_range_9_14mV - range_5_74V = _mscl.WirelessTypes_range_5_74V - range_2_93V = _mscl.WirelessTypes_range_2_93V - range_1_46V = _mscl.WirelessTypes_range_1_46V - range_731_3mV = _mscl.WirelessTypes_range_731_3mV - range_365_6mV = _mscl.WirelessTypes_range_365_6mV - range_182_8mV = _mscl.WirelessTypes_range_182_8mV - range_91_4mV = _mscl.WirelessTypes_range_91_4mV - range_45_7mV = _mscl.WirelessTypes_range_45_7mV - range_62_5mV = _mscl.WirelessTypes_range_62_5mV - range_31_25mV = _mscl.WirelessTypes_range_31_25mV - range_15_63mV = _mscl.WirelessTypes_range_15_63mV - range_7_81mV = _mscl.WirelessTypes_range_7_81mV - range_3_91mV = _mscl.WirelessTypes_range_3_91mV - range_1_95mV = _mscl.WirelessTypes_range_1_95mV - range_0_976mV = _mscl.WirelessTypes_range_0_976mV - range_0_488mV = _mscl.WirelessTypes_range_0_488mV - range_2G = _mscl.WirelessTypes_range_2G - range_4G = _mscl.WirelessTypes_range_4G - range_8G = _mscl.WirelessTypes_range_8G - range_10G = _mscl.WirelessTypes_range_10G - range_20G = _mscl.WirelessTypes_range_20G - range_40G = _mscl.WirelessTypes_range_40G - range_2_5V = _mscl.WirelessTypes_range_2_5V - range_1_25V = _mscl.WirelessTypes_range_1_25V - range_625mV = _mscl.WirelessTypes_range_625mV - range_312_5mV = _mscl.WirelessTypes_range_312_5mV - range_156_25mV = _mscl.WirelessTypes_range_156_25mV - range_78_125mV = _mscl.WirelessTypes_range_78_125mV - range_39_063mV = _mscl.WirelessTypes_range_39_063mV - range_19_532mV = _mscl.WirelessTypes_range_19_532mV - range_0to2_5V = _mscl.WirelessTypes_range_0to2_5V - range_0to1_25V = _mscl.WirelessTypes_range_0to1_25V - range_0to625mV = _mscl.WirelessTypes_range_0to625mV - range_0to312_5mV = _mscl.WirelessTypes_range_0to312_5mV - range_0to156_25mV = _mscl.WirelessTypes_range_0to156_25mV - range_0to78_125mV = _mscl.WirelessTypes_range_0to78_125mV - range_0to39_063mV = _mscl.WirelessTypes_range_0to39_063mV - range_0to19_532mV = _mscl.WirelessTypes_range_0to19_532mV - range_9_766mV = _mscl.WirelessTypes_range_9_766mV - range_1_35V_or_0to1000000ohm = _mscl.WirelessTypes_range_1_35V_or_0to1000000ohm - range_1_25V_or_0to10000ohm = _mscl.WirelessTypes_range_1_25V_or_0to10000ohm - range_625mV_or_0to3333_3ohm = _mscl.WirelessTypes_range_625mV_or_0to3333_3ohm - range_312_5mV_or_0to1428_6ohm = _mscl.WirelessTypes_range_312_5mV_or_0to1428_6ohm - range_156_25mV_or_0to666_67ohm = _mscl.WirelessTypes_range_156_25mV_or_0to666_67ohm - range_78_125mV_or_0to322_58ohm = _mscl.WirelessTypes_range_78_125mV_or_0to322_58ohm - range_39_0625mV_or_0to158_73ohm = _mscl.WirelessTypes_range_39_0625mV_or_0to158_73ohm - range_19_5313mV_or_0to78_74ohm = _mscl.WirelessTypes_range_19_5313mV_or_0to78_74ohm - range_750mV = _mscl.WirelessTypes_range_750mV - range_375mV = _mscl.WirelessTypes_range_375mV - range_187_5mV = _mscl.WirelessTypes_range_187_5mV - range_93_75mV = _mscl.WirelessTypes_range_93_75mV - range_46_875mV = _mscl.WirelessTypes_range_46_875mV - range_23_438mV = _mscl.WirelessTypes_range_23_438mV - range_11_719mV = _mscl.WirelessTypes_range_11_719mV - range_5_859mV = _mscl.WirelessTypes_range_5_859mV - range_0to1_5V = _mscl.WirelessTypes_range_0to1_5V - range_0to750mV = _mscl.WirelessTypes_range_0to750mV - range_0to375mV = _mscl.WirelessTypes_range_0to375mV - range_0to187_5mV = _mscl.WirelessTypes_range_0to187_5mV - range_0to93_75mV = _mscl.WirelessTypes_range_0to93_75mV - range_0to46_875mV = _mscl.WirelessTypes_range_0to46_875mV - range_0to23_438mV = _mscl.WirelessTypes_range_0to23_438mV - range_0to11_719mV = _mscl.WirelessTypes_range_0to11_719mV - range_1_5V = _mscl.WirelessTypes_range_1_5V - range_1_35V = _mscl.WirelessTypes_range_1_35V - range_0to1000000ohm = _mscl.WirelessTypes_range_0to1000000ohm - range_0to10000ohm = _mscl.WirelessTypes_range_0to10000ohm - range_0to3333_3ohm = _mscl.WirelessTypes_range_0to3333_3ohm - range_0to1428_6ohm = _mscl.WirelessTypes_range_0to1428_6ohm - range_0to666_67ohm = _mscl.WirelessTypes_range_0to666_67ohm - range_0to322_58ohm = _mscl.WirelessTypes_range_0to322_58ohm - range_0to158_73ohm = _mscl.WirelessTypes_range_0to158_73ohm - range_0to78_74ohm = _mscl.WirelessTypes_range_0to78_74ohm - range_39_0625mV = _mscl.WirelessTypes_range_39_0625mV - range_19_5313mV = _mscl.WirelessTypes_range_19_5313mV - range_125mV = _mscl.WirelessTypes_range_125mV - range_invalid = _mscl.WirelessTypes_range_invalid - dataMode_none = _mscl.WirelessTypes_dataMode_none - dataMode_raw = _mscl.WirelessTypes_dataMode_raw - dataMode_derived = _mscl.WirelessTypes_dataMode_derived - dataMode_raw_derived = _mscl.WirelessTypes_dataMode_raw_derived - derivedCategory_rms = _mscl.WirelessTypes_derivedCategory_rms - derivedCategory_peakToPeak = _mscl.WirelessTypes_derivedCategory_peakToPeak - derivedCategory_velocity = _mscl.WirelessTypes_derivedCategory_velocity - derivedCategory_crestFactor = _mscl.WirelessTypes_derivedCategory_crestFactor - derivedCategory_mean = _mscl.WirelessTypes_derivedCategory_mean - derivedAlgId_rms = _mscl.WirelessTypes_derivedAlgId_rms - derivedAlgId_peakToPeak = _mscl.WirelessTypes_derivedAlgId_peakToPeak - derivedAlgId_ips = _mscl.WirelessTypes_derivedAlgId_ips - derivedAlgId_crestFactor = _mscl.WirelessTypes_derivedAlgId_crestFactor - derivedAlgId_mean = _mscl.WirelessTypes_derivedAlgId_mean - derivedAlgId_mmps = _mscl.WirelessTypes_derivedAlgId_mmps - derivedVelocity_ips = _mscl.WirelessTypes_derivedVelocity_ips - derivedVelocity_mmps = _mscl.WirelessTypes_derivedVelocity_mmps - commProtocol_lxrs = _mscl.WirelessTypes_commProtocol_lxrs - commProtocol_lxrsPlus = _mscl.WirelessTypes_commProtocol_lxrsPlus - voltage_5120mV = _mscl.WirelessTypes_voltage_5120mV - voltage_5000mV = _mscl.WirelessTypes_voltage_5000mV - voltage_4096mV = _mscl.WirelessTypes_voltage_4096mV - voltage_3000mV = _mscl.WirelessTypes_voltage_3000mV - voltage_2800mV = _mscl.WirelessTypes_voltage_2800mV - voltage_2750mV = _mscl.WirelessTypes_voltage_2750mV - voltage_2700mV = _mscl.WirelessTypes_voltage_2700mV - voltage_2500mV = _mscl.WirelessTypes_voltage_2500mV - voltage_1500mV = _mscl.WirelessTypes_voltage_1500mV - sensorOutputMode_accel = _mscl.WirelessTypes_sensorOutputMode_accel - sensorOutputMode_tilt = _mscl.WirelessTypes_sensorOutputMode_tilt - batteryStatus_good = _mscl.WirelessTypes_batteryStatus_good - batteryStatus_low = _mscl.WirelessTypes_batteryStatus_low - batteryStatus_critical = _mscl.WirelessTypes_batteryStatus_critical - externalPower_notConnected = _mscl.WirelessTypes_externalPower_notConnected - externalPower_connected = _mscl.WirelessTypes_externalPower_connected - delayVersion_v1 = _mscl.WirelessTypes_delayVersion_v1 - delayVersion_v2 = _mscl.WirelessTypes_delayVersion_v2 - delayVersion_v3 = _mscl.WirelessTypes_delayVersion_v3 - delayVersion_v4 = _mscl.WirelessTypes_delayVersion_v4 - UNKNOWN_RSSI = _mscl.WirelessTypes_UNKNOWN_RSSI - - def __init__(self): - _mscl.WirelessTypes_swiginit(self, _mscl.new_WirelessTypes()) - __swig_destroy__ = _mscl.delete_WirelessTypes - -# Register WirelessTypes in _mscl: -_mscl.WirelessTypes_swigregister(WirelessTypes) - -class SampleRate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - rateType_seconds = _mscl.SampleRate_rateType_seconds - rateType_hertz = _mscl.SampleRate_rateType_hertz - rateType_event = _mscl.SampleRate_rateType_event - rateType_decimation = _mscl.SampleRate_rateType_decimation - - def __init__(self, *args): - _mscl.SampleRate_swiginit(self, _mscl.new_SampleRate(*args)) - - def __str__(self): - return _mscl.SampleRate___str__(self) - - def prettyStr(self): - return _mscl.SampleRate_prettyStr(self) - - def samplePeriod(self): - return _mscl.SampleRate_samplePeriod(self) - - def samplesPerSecond(self): - return _mscl.SampleRate_samplesPerSecond(self) - - def rateType(self): - return _mscl.SampleRate_rateType(self) - - def samples(self): - return _mscl.SampleRate_samples(self) - - def toWirelessSampleRate(self): - return _mscl.SampleRate_toWirelessSampleRate(self) - - def toDecimation(self, sampleRateBase): - return _mscl.SampleRate_toDecimation(self, sampleRateBase) - - @staticmethod - def Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - - @staticmethod - def KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - - @staticmethod - def Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - - @staticmethod - def Event(): - return _mscl.SampleRate_Event() - - @staticmethod - def Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - - @staticmethod - def FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - - @staticmethod - def FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - __swig_destroy__ = _mscl.delete_SampleRate - -# Register SampleRate in _mscl: -_mscl.SampleRate_swigregister(SampleRate) - -def SampleRate_Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - -def SampleRate_KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - -def SampleRate_Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - -def SampleRate_Event(): - return _mscl.SampleRate_Event() - -def SampleRate_Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - -def SampleRate_FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - -def SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - -class Matrix(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Matrix_swiginit(self, _mscl.new_Matrix()) - - def valuesType(self): - return _mscl.Matrix_valuesType(self) - - def rows(self): - return _mscl.Matrix_rows(self) - - def columns(self): - return _mscl.Matrix_columns(self) - - def as_doubleAt(self, row, column): - return _mscl.Matrix_as_doubleAt(self, row, column) - - def as_floatAt(self, row, column): - return _mscl.Matrix_as_floatAt(self, row, column) - - def as_uint16At(self, row, column): - return _mscl.Matrix_as_uint16At(self, row, column) - - def as_uint8At(self, row, column): - return _mscl.Matrix_as_uint8At(self, row, column) - - def __str__(self): - return _mscl.Matrix___str__(self) - __swig_destroy__ = _mscl.delete_Matrix - -# Register Matrix in _mscl: -_mscl.Matrix_swigregister(Matrix) - -class Vector(Matrix): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Vector_swiginit(self, _mscl.new_Vector()) - - def size(self): - return _mscl.Vector_size(self) - - def as_doubleAt(self, index): - return _mscl.Vector_as_doubleAt(self, index) - - def as_floatAt(self, index): - return _mscl.Vector_as_floatAt(self, index) - - def as_uint16At(self, index): - return _mscl.Vector_as_uint16At(self, index) - - def as_uint8At(self, index): - return _mscl.Vector_as_uint8At(self, index) - __swig_destroy__ = _mscl.delete_Vector - -# Register Vector in _mscl: -_mscl.Vector_swigregister(Vector) - -class Bitfield(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Bitfield_swiginit(self, _mscl.new_Bitfield(*args)) - __swig_destroy__ = _mscl.delete_Bitfield - - def value(self, *args): - return _mscl.Bitfield_value(self, *args) - - def get(self, mask, shiftToLsb=True): - return _mscl.Bitfield_get(self, mask, shiftToLsb) - - def set(self, mask, value, shiftRequired=True): - return _mscl.Bitfield_set(self, mask, value, shiftRequired) - - def checkBit(self, bitIndex, indexBase=0): - return _mscl.Bitfield_checkBit(self, bitIndex, indexBase) - - def setBit(self, bitIndex, value, indexBase=0): - return _mscl.Bitfield_setBit(self, bitIndex, value, indexBase) - -# Register Bitfield in _mscl: -_mscl.Bitfield_swigregister(Bitfield) - -class StructuralHealth(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, angle, uptime, damage, processingRate, histogram): - _mscl.StructuralHealth_swiginit(self, _mscl.new_StructuralHealth(angle, uptime, damage, processingRate, histogram)) - - def angle(self): - return _mscl.StructuralHealth_angle(self) - - def uptime(self): - return _mscl.StructuralHealth_uptime(self) - - def damage(self): - return _mscl.StructuralHealth_damage(self) - - def processingRate(self): - return _mscl.StructuralHealth_processingRate(self) - - def histogram(self): - return _mscl.StructuralHealth_histogram(self) - __swig_destroy__ = _mscl.delete_StructuralHealth - -# Register StructuralHealth in _mscl: -_mscl.StructuralHealth_swigregister(StructuralHealth) - -class DataPoint(Value): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - channelPropertyId_angle = _mscl.DataPoint_channelPropertyId_angle - channelPropertyId_derivedFrom = _mscl.DataPoint_channelPropertyId_derivedFrom - channelPropertyId_derivedAlgorithmId = _mscl.DataPoint_channelPropertyId_derivedAlgorithmId - __swig_destroy__ = _mscl.delete_DataPoint - - def channelProperty(self, id): - return _mscl.DataPoint_channelProperty(self, id) - - def as_Vector(self): - return _mscl.DataPoint_as_Vector(self) - - def as_Matrix(self): - return _mscl.DataPoint_as_Matrix(self) - - def as_Timestamp(self): - return _mscl.DataPoint_as_Timestamp(self) - - def as_Bytes(self): - return _mscl.DataPoint_as_Bytes(self) - - def as_StructuralHealth(self): - return _mscl.DataPoint_as_StructuralHealth(self) - - def as_RfSweep(self): - return _mscl.DataPoint_as_RfSweep(self) - - def as_string(self): - return _mscl.DataPoint_as_string(self) - -# Register DataPoint in _mscl: -_mscl.DataPoint_swigregister(DataPoint) - -class ConfigIssue(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONFIG_SAMPLING_MODE = _mscl.ConfigIssue_CONFIG_SAMPLING_MODE - CONFIG_ACTIVE_CHANNELS = _mscl.ConfigIssue_CONFIG_ACTIVE_CHANNELS - CONFIG_SAMPLE_RATE = _mscl.ConfigIssue_CONFIG_SAMPLE_RATE - CONFIG_SWEEPS = _mscl.ConfigIssue_CONFIG_SWEEPS - CONFIG_UNLIMITED_DURATION = _mscl.ConfigIssue_CONFIG_UNLIMITED_DURATION - CONFIG_DATA_FORMAT = _mscl.ConfigIssue_CONFIG_DATA_FORMAT - CONFIG_DATA_COLLECTION_METHOD = _mscl.ConfigIssue_CONFIG_DATA_COLLECTION_METHOD - CONFIG_TIME_BETWEEN_BURSTS = _mscl.ConfigIssue_CONFIG_TIME_BETWEEN_BURSTS - CONFIG_THERMOCOUPLE_TYPE = _mscl.ConfigIssue_CONFIG_THERMOCOUPLE_TYPE - CONFIG_FILTER_SETTLING_TIME = _mscl.ConfigIssue_CONFIG_FILTER_SETTLING_TIME - CONFIG_BUTTON = _mscl.ConfigIssue_CONFIG_BUTTON - CONFIG_ANALOG_PAIR = _mscl.ConfigIssue_CONFIG_ANALOG_PAIR - CONFIG_INPUT_RANGE = _mscl.ConfigIssue_CONFIG_INPUT_RANGE - CONFIG_INACTIVITY_TIMEOUT = _mscl.ConfigIssue_CONFIG_INACTIVITY_TIMEOUT - CONFIG_CHECK_RADIO_INTERVAL = _mscl.ConfigIssue_CONFIG_CHECK_RADIO_INTERVAL - CONFIG_LOST_BEACON_TIMEOUT = _mscl.ConfigIssue_CONFIG_LOST_BEACON_TIMEOUT - CONFIG_DEFAULT_MODE = _mscl.ConfigIssue_CONFIG_DEFAULT_MODE - CONFIG_TRANSMIT_POWER = _mscl.ConfigIssue_CONFIG_TRANSMIT_POWER - CONFIG_LINEAR_EQUATION = _mscl.ConfigIssue_CONFIG_LINEAR_EQUATION - CONFIG_FATIGUE = _mscl.ConfigIssue_CONFIG_FATIGUE - CONFIG_FATIGUE_MODE = _mscl.ConfigIssue_CONFIG_FATIGUE_MODE - CONFIG_FATIGUE_ANGLE_ID = _mscl.ConfigIssue_CONFIG_FATIGUE_ANGLE_ID - CONFIG_FATIGUE_SN_CURVE = _mscl.ConfigIssue_CONFIG_FATIGUE_SN_CURVE - CONFIG_FATIGUE_DIST_NUM_ANGLES = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_NUM_ANGLES - CONFIG_FATIGUE_DIST_ANGLE = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_ANGLE - CONFIG_HISTOGRAM = _mscl.ConfigIssue_CONFIG_HISTOGRAM - CONFIG_HISTOGRAM_TX_RATE = _mscl.ConfigIssue_CONFIG_HISTOGRAM_TX_RATE - CONFIG_HARDWARE_OFFSET = _mscl.ConfigIssue_CONFIG_HARDWARE_OFFSET - CONFIG_ACTIVITY_SENSE = _mscl.ConfigIssue_CONFIG_ACTIVITY_SENSE - CONFIG_GAUGE_FACTOR = _mscl.ConfigIssue_CONFIG_GAUGE_FACTOR - CONFIG_EVENT_TRIGGER = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER - CONFIG_EVENT_TRIGGER_DURATION = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_DURATION - CONFIG_EVENT_TRIGGER_MASK = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_MASK - CONFIG_DIAGNOSTIC_INTERVAL = _mscl.ConfigIssue_CONFIG_DIAGNOSTIC_INTERVAL - CONFIG_ANTI_ALIASING_FILTER = _mscl.ConfigIssue_CONFIG_ANTI_ALIASING_FILTER - CONFIG_STORAGE_LIMIT_MODE = _mscl.ConfigIssue_CONFIG_STORAGE_LIMIT_MODE - CONFIG_SENSOR_DELAY = _mscl.ConfigIssue_CONFIG_SENSOR_DELAY - CONFIG_LOW_PASS_FILTER = _mscl.ConfigIssue_CONFIG_LOW_PASS_FILTER - CONFIG_DATA_MODE = _mscl.ConfigIssue_CONFIG_DATA_MODE - CONFIG_DERIVED_DATA_RATE = _mscl.ConfigIssue_CONFIG_DERIVED_DATA_RATE - CONFIG_DERIVED_MASK_RMS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_RMS - CONFIG_DERIVED_MASK_P2P = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_P2P - CONFIG_DERIVED_MASK_IPS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_IPS - CONFIG_DERIVED_MASK_CREST_FACTOR = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_CREST_FACTOR - CONFIG_HIGH_PASS_FILTER = _mscl.ConfigIssue_CONFIG_HIGH_PASS_FILTER - CONFIG_DERIVED_MASK = _mscl.ConfigIssue_CONFIG_DERIVED_MASK - CONFIG_COMM_PROTOCOL = _mscl.ConfigIssue_CONFIG_COMM_PROTOCOL - CONFIG_DERIVED_MASK_MEAN = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_MEAN - CONFIG_GAUGE_RESISTANCE = _mscl.ConfigIssue_CONFIG_GAUGE_RESISTANCE - CONFIG_NUM_ACTIVE_GAUGES = _mscl.ConfigIssue_CONFIG_NUM_ACTIVE_GAUGES - CONFIG_TEMP_SENSOR_OPTS = _mscl.ConfigIssue_CONFIG_TEMP_SENSOR_OPTS - CONFIG_DEBOUNCE_FILTER = _mscl.ConfigIssue_CONFIG_DEBOUNCE_FILTER - CONFIG_PULLUP_RESISTOR = _mscl.ConfigIssue_CONFIG_PULLUP_RESISTOR - CONFIG_EXCITATION_VOLTAGE = _mscl.ConfigIssue_CONFIG_EXCITATION_VOLTAGE - CONFIG_DERIVED_UNIT = _mscl.ConfigIssue_CONFIG_DERIVED_UNIT - CONFIG_SENSOR_OUTPUT_MODE = _mscl.ConfigIssue_CONFIG_SENSOR_OUTPUT_MODE - CONFIG_LOW_BATTERY_THRESHOLD = _mscl.ConfigIssue_CONFIG_LOW_BATTERY_THRESHOLD - CONFIG_CFC_FILTER = _mscl.ConfigIssue_CONFIG_CFC_FILTER - - def __init__(self, *args): - _mscl.ConfigIssue_swiginit(self, _mscl.new_ConfigIssue(*args)) - - def id(self): - return _mscl.ConfigIssue_id(self) - - def description(self): - return _mscl.ConfigIssue_description(self) - - def isChannelGroupIssue(self): - return _mscl.ConfigIssue_isChannelGroupIssue(self) - - def channelMask(self): - return _mscl.ConfigIssue_channelMask(self) - __swig_destroy__ = _mscl.delete_ConfigIssue - -# Register ConfigIssue in _mscl: -_mscl.ConfigIssue_swigregister(ConfigIssue) - -class ActivitySense(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ActivitySense_swiginit(self, _mscl.new_ActivitySense()) - - def enabled(self, *args): - return _mscl.ActivitySense_enabled(self, *args) - - def activityThreshold(self, *args): - return _mscl.ActivitySense_activityThreshold(self, *args) - - def inactivityThreshold(self, *args): - return _mscl.ActivitySense_inactivityThreshold(self, *args) - - def activityTime(self, *args): - return _mscl.ActivitySense_activityTime(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.ActivitySense_inactivityTimeout(self, *args) - __swig_destroy__ = _mscl.delete_ActivitySense - -# Register ActivitySense in _mscl: -_mscl.ActivitySense_swigregister(ActivitySense) - -class Trigger(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Trigger_swiginit(self, _mscl.new_Trigger(*args)) - - def channelNumber(self, *args): - return _mscl.Trigger_channelNumber(self, *args) - - def triggerType(self, *args): - return _mscl.Trigger_triggerType(self, *args) - - def triggerValue(self, *args): - return _mscl.Trigger_triggerValue(self, *args) - __swig_destroy__ = _mscl.delete_Trigger - -# Register Trigger in _mscl: -_mscl.Trigger_swigregister(Trigger) - -class EventTriggerOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerOptions_swiginit(self, _mscl.new_EventTriggerOptions()) - - def triggerMask(self, *args): - return _mscl.EventTriggerOptions_triggerMask(self, *args) - - def anyTriggersEnabled(self): - return _mscl.EventTriggerOptions_anyTriggersEnabled(self) - - def triggerEnabled(self, triggerIndex): - return _mscl.EventTriggerOptions_triggerEnabled(self, triggerIndex) - - def enableTrigger(self, triggerIndex, enable=True): - return _mscl.EventTriggerOptions_enableTrigger(self, triggerIndex, enable) - - def preDuration(self, *args): - return _mscl.EventTriggerOptions_preDuration(self, *args) - - def postDuration(self, *args): - return _mscl.EventTriggerOptions_postDuration(self, *args) - - def trigger(self, *args): - return _mscl.EventTriggerOptions_trigger(self, *args) - - def triggers(self): - return _mscl.EventTriggerOptions_triggers(self) - __swig_destroy__ = _mscl.delete_EventTriggerOptions - -# Register EventTriggerOptions in _mscl: -_mscl.EventTriggerOptions_swigregister(EventTriggerOptions) - -class SnCurveSegment(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.SnCurveSegment_swiginit(self, _mscl.new_SnCurveSegment(*args)) - - def m(self, *args): - return _mscl.SnCurveSegment_m(self, *args) - - def logA(self, *args): - return _mscl.SnCurveSegment_logA(self, *args) - __swig_destroy__ = _mscl.delete_SnCurveSegment - -# Register SnCurveSegment in _mscl: -_mscl.SnCurveSegment_swigregister(SnCurveSegment) - -class FatigueOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FatigueOptions_swiginit(self, _mscl.new_FatigueOptions()) - - def youngsModulus(self, *args): - return _mscl.FatigueOptions_youngsModulus(self, *args) - - def poissonsRatio(self, *args): - return _mscl.FatigueOptions_poissonsRatio(self, *args) - - def peakValleyThreshold(self, *args): - return _mscl.FatigueOptions_peakValleyThreshold(self, *args) - - def debugMode(self, *args): - return _mscl.FatigueOptions_debugMode(self, *args) - - def damageAngles(self): - return _mscl.FatigueOptions_damageAngles(self) - - def damageAngle(self, *args): - return _mscl.FatigueOptions_damageAngle(self, *args) - - def snCurveSegments(self): - return _mscl.FatigueOptions_snCurveSegments(self) - - def snCurveSegment(self, *args): - return _mscl.FatigueOptions_snCurveSegment(self, *args) - - def fatigueMode(self, *args): - return _mscl.FatigueOptions_fatigueMode(self, *args) - - def distributedAngleMode_numAngles(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_numAngles(self, *args) - - def distributedAngleMode_lowerBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_lowerBound(self, *args) - - def distributedAngleMode_upperBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_upperBound(self, *args) - - def histogramEnable(self, *args): - return _mscl.FatigueOptions_histogramEnable(self, *args) - __swig_destroy__ = _mscl.delete_FatigueOptions - -# Register FatigueOptions in _mscl: -_mscl.FatigueOptions_swigregister(FatigueOptions) - -class HistogramOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HistogramOptions_swiginit(self, _mscl.new_HistogramOptions()) - - def transmitRate(self, *args): - return _mscl.HistogramOptions_transmitRate(self, *args) - - def binsStart(self, *args): - return _mscl.HistogramOptions_binsStart(self, *args) - - def binsSize(self, *args): - return _mscl.HistogramOptions_binsSize(self, *args) - __swig_destroy__ = _mscl.delete_HistogramOptions - -# Register HistogramOptions in _mscl: -_mscl.HistogramOptions_swigregister(HistogramOptions) - -class InputRangeEntry(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - inputRange = property(_mscl.InputRangeEntry_inputRange_get, _mscl.InputRangeEntry_inputRange_set) - hasGain = property(_mscl.InputRangeEntry_hasGain_get, _mscl.InputRangeEntry_hasGain_set) - gain = property(_mscl.InputRangeEntry_gain_get, _mscl.InputRangeEntry_gain_set) - - def __init__(self, *args): - _mscl.InputRangeEntry_swiginit(self, _mscl.new_InputRangeEntry(*args)) - __swig_destroy__ = _mscl.delete_InputRangeEntry - -# Register InputRangeEntry in _mscl: -_mscl.InputRangeEntry_swigregister(InputRangeEntry) - -class TempSensorOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - - @staticmethod - def RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - - @staticmethod - def Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - - def transducerType(self): - return _mscl.TempSensorOptions_transducerType(self) - - def thermocoupleType(self): - return _mscl.TempSensorOptions_thermocoupleType(self) - - def rtdType(self): - return _mscl.TempSensorOptions_rtdType(self) - - def rtdWireType(self): - return _mscl.TempSensorOptions_rtdWireType(self) - - def thermistorType(self): - return _mscl.TempSensorOptions_thermistorType(self) - __swig_destroy__ = _mscl.delete_TempSensorOptions - -# Register TempSensorOptions in _mscl: -_mscl.TempSensorOptions_swigregister(TempSensorOptions) - -def TempSensorOptions_Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - -def TempSensorOptions_RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - -def TempSensorOptions_Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - -class WirelessModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_vLink_legacy = _mscl.WirelessModels_node_vLink_legacy - node_cfBearingTempLink = _mscl.WirelessModels_node_cfBearingTempLink - node_envLink_pro = _mscl.WirelessModels_node_envLink_pro - node_gLink_2g = _mscl.WirelessModels_node_gLink_2g - node_gLink_10g = _mscl.WirelessModels_node_gLink_10g - node_gLinkII_cust_in = _mscl.WirelessModels_node_gLinkII_cust_in - node_gLinkII_2g_in = _mscl.WirelessModels_node_gLinkII_2g_in - node_gLinkII_10g_in = _mscl.WirelessModels_node_gLinkII_10g_in - node_gLinkII_cust_ex = _mscl.WirelessModels_node_gLinkII_cust_ex - node_gLinkII_2g_ex = _mscl.WirelessModels_node_gLinkII_2g_ex - node_gLinkII_10g_ex = _mscl.WirelessModels_node_gLinkII_10g_ex - node_gLink_rgd_10g = _mscl.WirelessModels_node_gLink_rgd_10g - node_gLink_200_8g = _mscl.WirelessModels_node_gLink_200_8g - node_gLink_200_40g = _mscl.WirelessModels_node_gLink_200_40g - node_gLink_200_8g_oem = _mscl.WirelessModels_node_gLink_200_8g_oem - node_gLink_200_40g_oem = _mscl.WirelessModels_node_gLink_200_40g_oem - node_gLink_200_8g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_8g_oem_mmcx - node_gLink_200_40g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_40g_oem_mmcx - node_gLink_200_8g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_8g_oem_u_fl - node_gLink_200_40g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_40g_oem_u_fl - node_gLink_200_r = _mscl.WirelessModels_node_gLink_200_r - node_sgLink_oem_S = _mscl.WirelessModels_node_sgLink_oem_S - node_sgLink = _mscl.WirelessModels_node_sgLink - node_sgLink200 = _mscl.WirelessModels_node_sgLink200 - node_sgLink200_hbridge_1K = _mscl.WirelessModels_node_sgLink200_hbridge_1K - node_sgLink200_hbridge_350 = _mscl.WirelessModels_node_sgLink200_hbridge_350 - node_sgLink200_hbridge_120 = _mscl.WirelessModels_node_sgLink200_hbridge_120 - node_sgLink200_qbridge_1K = _mscl.WirelessModels_node_sgLink200_qbridge_1K - node_sgLink200_qbridge_350 = _mscl.WirelessModels_node_sgLink200_qbridge_350 - node_sgLink200_qbridge_120 = _mscl.WirelessModels_node_sgLink200_qbridge_120 - node_sgLink_oem = _mscl.WirelessModels_node_sgLink_oem - node_sgLink_micro = _mscl.WirelessModels_node_sgLink_micro - node_sgLink200_oem = _mscl.WirelessModels_node_sgLink200_oem - node_sgLink200_oem_ufl = _mscl.WirelessModels_node_sgLink200_oem_ufl - node_sgLink200_oem_hbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K - node_sgLink200_oem_hbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K_ufl - node_sgLink200_oem_hbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120 - node_sgLink200_oem_hbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120_ufl - node_sgLink200_oem_hbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350 - node_sgLink200_oem_hbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350_ufl - node_sgLink200_oem_qbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K - node_sgLink200_oem_qbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K_ufl - node_sgLink200_oem_qbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120 - node_sgLink200_oem_qbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120_ufl - node_sgLink200_oem_qbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350 - node_sgLink200_oem_qbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350_ufl - node_sgLink_rgd = _mscl.WirelessModels_node_sgLink_rgd - node_shmLink = _mscl.WirelessModels_node_shmLink - node_tcLink_1ch = _mscl.WirelessModels_node_tcLink_1ch - node_tcLink_6ch = _mscl.WirelessModels_node_tcLink_6ch - node_tcLink_3ch = _mscl.WirelessModels_node_tcLink_3ch - node_tcLink_6ch_ip67 = _mscl.WirelessModels_node_tcLink_6ch_ip67 - node_tcLink200_oem = _mscl.WirelessModels_node_tcLink200_oem - node_tcLink200_oem_ufl = _mscl.WirelessModels_node_tcLink200_oem_ufl - node_tcLink200 = _mscl.WirelessModels_node_tcLink200 - node_rtdLink200 = _mscl.WirelessModels_node_rtdLink200 - node_tcLink_6ch_ip67_rht = _mscl.WirelessModels_node_tcLink_6ch_ip67_rht - node_vLink = _mscl.WirelessModels_node_vLink - node_vLink200 = _mscl.WirelessModels_node_vLink200 - node_vLink200_qbridge_1K = _mscl.WirelessModels_node_vLink200_qbridge_1K - node_vLink200_qbridge_120 = _mscl.WirelessModels_node_vLink200_qbridge_120 - node_vLink200_qbridge_350 = _mscl.WirelessModels_node_vLink200_qbridge_350 - node_vLink200_hbridge_1K = _mscl.WirelessModels_node_vLink200_hbridge_1K - node_vLink200_hbridge_120 = _mscl.WirelessModels_node_vLink200_hbridge_120 - node_vLink200_hbridge_350 = _mscl.WirelessModels_node_vLink200_hbridge_350 - node_iepeLink = _mscl.WirelessModels_node_iepeLink - node_dvrtLink = _mscl.WirelessModels_node_dvrtLink - node_envLink_mini = _mscl.WirelessModels_node_envLink_mini - node_wattLink = _mscl.WirelessModels_node_wattLink - node_wattLink_3Y208 = _mscl.WirelessModels_node_wattLink_3Y208 - node_wattLink_3D240 = _mscl.WirelessModels_node_wattLink_3D240 - node_wattLink_3Y400 = _mscl.WirelessModels_node_wattLink_3Y400 - node_wattLink_3D400 = _mscl.WirelessModels_node_wattLink_3D400 - node_wattLink_3Y480 = _mscl.WirelessModels_node_wattLink_3Y480 - node_wattLink_3D480 = _mscl.WirelessModels_node_wattLink_3D480 - node_wattLink_3Y600 = _mscl.WirelessModels_node_wattLink_3Y600 - node_ptLink200 = _mscl.WirelessModels_node_ptLink200 - node_rtdLink = _mscl.WirelessModels_node_rtdLink - node_shmLink2_cust1_oldNumber = _mscl.WirelessModels_node_shmLink2_cust1_oldNumber - node_shmLink2_cust1 = _mscl.WirelessModels_node_shmLink2_cust1 - node_shmLink200 = _mscl.WirelessModels_node_shmLink200 - node_shmLink201 = _mscl.WirelessModels_node_shmLink201 - node_shmLink201_qbridge_1K = _mscl.WirelessModels_node_shmLink201_qbridge_1K - node_shmLink201_qbridge_348 = _mscl.WirelessModels_node_shmLink201_qbridge_348 - node_shmLink201_hbridge_1K = _mscl.WirelessModels_node_shmLink201_hbridge_1K - node_shmLink201_hbridge_348 = _mscl.WirelessModels_node_shmLink201_hbridge_348 - node_shmLink201_fullbridge = _mscl.WirelessModels_node_shmLink201_fullbridge - node_shmLink210_fullbridge = _mscl.WirelessModels_node_shmLink210_fullbridge - node_shmLink210_qbridge_3K = _mscl.WirelessModels_node_shmLink210_qbridge_3K - node_torqueLink = _mscl.WirelessModels_node_torqueLink - node_torqueLink200_3ch = _mscl.WirelessModels_node_torqueLink200_3ch - node_torqueLink200 = _mscl.WirelessModels_node_torqueLink200 - node_torqueLink200_3ch_s = _mscl.WirelessModels_node_torqueLink200_3ch_s - node_sgLink_herm = _mscl.WirelessModels_node_sgLink_herm - node_sgLink_herm_2600 = _mscl.WirelessModels_node_sgLink_herm_2600 - node_sgLink_herm_2700 = _mscl.WirelessModels_node_sgLink_herm_2700 - node_sgLink_herm_2800 = _mscl.WirelessModels_node_sgLink_herm_2800 - node_sgLink_herm_2900 = _mscl.WirelessModels_node_sgLink_herm_2900 - node_wirelessImpactSensor = _mscl.WirelessModels_node_wirelessImpactSensor - node_gLink_200_40g_s = _mscl.WirelessModels_node_gLink_200_40g_s - base_wsda_1000 = _mscl.WirelessModels_base_wsda_1000 - base_wsda_1500 = _mscl.WirelessModels_base_wsda_1500 - base_wsda_2000 = _mscl.WirelessModels_base_wsda_2000 - base_wsdaBase_200_legacy = _mscl.WirelessModels_base_wsdaBase_200_legacy - base_wsdaBase_200 = _mscl.WirelessModels_base_wsdaBase_200 - base_wsdaBase_200_extAntenna = _mscl.WirelessModels_base_wsdaBase_200_extAntenna - base_wsdaBase_101_analog = _mscl.WirelessModels_base_wsdaBase_101_analog - base_wsdaBase_102_rs232 = _mscl.WirelessModels_base_wsdaBase_102_rs232 - base_wsdaBase_104_usb = _mscl.WirelessModels_base_wsdaBase_104_usb - base_wsi_104 = _mscl.WirelessModels_base_wsi_104 - base_wsdaBase_mini = _mscl.WirelessModels_base_wsdaBase_mini - - def __init__(self): - _mscl.WirelessModels_swiginit(self, _mscl.new_WirelessModels()) - __swig_destroy__ = _mscl.delete_WirelessModels - -# Register WirelessModels in _mscl: -_mscl.WirelessModels_swigregister(WirelessModels) - -class NodeDiscovery(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def nodeAddress(self): - return _mscl.NodeDiscovery_nodeAddress(self) - - def frequency(self): - return _mscl.NodeDiscovery_frequency(self) - - def panId(self): - return _mscl.NodeDiscovery_panId(self) - - def model(self): - return _mscl.NodeDiscovery_model(self) - - def serialNumber(self): - return _mscl.NodeDiscovery_serialNumber(self) - - def firmwareVersion(self): - return _mscl.NodeDiscovery_firmwareVersion(self) - - def defaultMode(self): - return _mscl.NodeDiscovery_defaultMode(self) - - def builtInTestResult(self): - return _mscl.NodeDiscovery_builtInTestResult(self) - - def communicationProtocol(self): - return _mscl.NodeDiscovery_communicationProtocol(self) - - def asppVersion_lxrs(self): - return _mscl.NodeDiscovery_asppVersion_lxrs(self) - - def asppVersion_lxrsPlus(self): - return _mscl.NodeDiscovery_asppVersion_lxrsPlus(self) - - def baseRssi(self): - return _mscl.NodeDiscovery_baseRssi(self) - - def timestamp(self): - return _mscl.NodeDiscovery_timestamp(self) - - def __init__(self): - _mscl.NodeDiscovery_swiginit(self, _mscl.new_NodeDiscovery()) - __swig_destroy__ = _mscl.delete_NodeDiscovery - -# Register NodeDiscovery in _mscl: -_mscl.NodeDiscovery_swigregister(NodeDiscovery) - -class LinearEquation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LinearEquation_swiginit(self, _mscl.new_LinearEquation(*args)) - - def slope(self, *args): - return _mscl.LinearEquation_slope(self, *args) - - def offset(self, *args): - return _mscl.LinearEquation_offset(self, *args) - __swig_destroy__ = _mscl.delete_LinearEquation - -# Register LinearEquation in _mscl: -_mscl.LinearEquation_swigregister(LinearEquation) - -class CalCoefficients(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CalCoefficients_swiginit(self, _mscl.new_CalCoefficients(*args)) - - def equationType(self): - return _mscl.CalCoefficients_equationType(self) - - def unit(self): - return _mscl.CalCoefficients_unit(self) - - def linearEquation(self): - return _mscl.CalCoefficients_linearEquation(self) - __swig_destroy__ = _mscl.delete_CalCoefficients - -# Register CalCoefficients in _mscl: -_mscl.CalCoefficients_swigregister(CalCoefficients) - -class ChannelGroup(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ChannelGroup_swiginit(self, _mscl.new_ChannelGroup()) - - def channels(self): - return _mscl.ChannelGroup_channels(self) - - def name(self): - return _mscl.ChannelGroup_name(self) - - def eepromLocation(self, setting): - return _mscl.ChannelGroup_eepromLocation(self, setting) - - def settings(self): - return _mscl.ChannelGroup_settings(self) - - def hasSetting(self, setting): - return _mscl.ChannelGroup_hasSetting(self, setting) - - def hasSettingAndChannel(self, setting, channelNumber): - return _mscl.ChannelGroup_hasSettingAndChannel(self, setting, channelNumber) - __swig_destroy__ = _mscl.delete_ChannelGroup - -# Register ChannelGroup in _mscl: -_mscl.ChannelGroup_swigregister(ChannelGroup) - -class WirelessChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - channel_unknown = _mscl.WirelessChannel_channel_unknown - channel_1 = _mscl.WirelessChannel_channel_1 - channel_2 = _mscl.WirelessChannel_channel_2 - channel_3 = _mscl.WirelessChannel_channel_3 - channel_4 = _mscl.WirelessChannel_channel_4 - channel_5 = _mscl.WirelessChannel_channel_5 - channel_6 = _mscl.WirelessChannel_channel_6 - channel_7 = _mscl.WirelessChannel_channel_7 - channel_8 = _mscl.WirelessChannel_channel_8 - channel_9 = _mscl.WirelessChannel_channel_9 - channel_10 = _mscl.WirelessChannel_channel_10 - channel_11 = _mscl.WirelessChannel_channel_11 - channel_12 = _mscl.WirelessChannel_channel_12 - channel_13 = _mscl.WirelessChannel_channel_13 - channel_14 = _mscl.WirelessChannel_channel_14 - channel_15 = _mscl.WirelessChannel_channel_15 - channel_16 = _mscl.WirelessChannel_channel_16 - channel_digital_1 = _mscl.WirelessChannel_channel_digital_1 - channel_digital_2 = _mscl.WirelessChannel_channel_digital_2 - channel_digital_3 = _mscl.WirelessChannel_channel_digital_3 - channel_digital_4 = _mscl.WirelessChannel_channel_digital_4 - channel_digital_5 = _mscl.WirelessChannel_channel_digital_5 - channel_digital_6 = _mscl.WirelessChannel_channel_digital_6 - channel_digital_7 = _mscl.WirelessChannel_channel_digital_7 - channel_digital_8 = _mscl.WirelessChannel_channel_digital_8 - channel_digital_9 = _mscl.WirelessChannel_channel_digital_9 - channel_digital_10 = _mscl.WirelessChannel_channel_digital_10 - channel_digital_11 = _mscl.WirelessChannel_channel_digital_11 - channel_digital_12 = _mscl.WirelessChannel_channel_digital_12 - channel_digital_13 = _mscl.WirelessChannel_channel_digital_13 - channel_digital_14 = _mscl.WirelessChannel_channel_digital_14 - channel_digital_15 = _mscl.WirelessChannel_channel_digital_15 - channel_digital_16 = _mscl.WirelessChannel_channel_digital_16 - channel_structuralHealth = _mscl.WirelessChannel_channel_structuralHealth - channel_hcl_rawBase_mag1_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_x - channel_hcl_rawBase_mag1_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_y - channel_hcl_rawBase_mag1_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_z - channel_hcl_rawBase_mag2_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_x - channel_hcl_rawBase_mag2_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_y - channel_hcl_rawBase_mag2_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_z - channel_hcl_rawBase_mag3_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_x - channel_hcl_rawBase_mag3_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_y - channel_hcl_rawBase_mag3_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_z - channel_hcl_rawBase_mag4_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_x - channel_hcl_rawBase_mag4_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_y - channel_hcl_rawBase_mag4_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_z - channel_hcl_rawBase_mag5_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_x - channel_hcl_rawBase_mag5_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_y - channel_hcl_rawBase_mag5_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_z - channel_hcl_rawBase_mag6_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_x - channel_hcl_rawBase_mag6_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_y - channel_hcl_rawBase_mag6_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_z - channel_hcl_rawBase_mag7_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_x - channel_hcl_rawBase_mag7_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_y - channel_hcl_rawBase_mag7_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_z - channel_hcl_rawBase_mag8_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_x - channel_hcl_rawBase_mag8_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_y - channel_hcl_rawBase_mag8_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_z - channel_hcl_rawBase_gyro_x = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_x - channel_hcl_rawBase_gyro_y = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_y - channel_hcl_rawBase_gyro_z = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_z - channel_error_code = _mscl.WirelessChannel_channel_error_code - channel_hcl_rawStrain_BL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL30 - channel_hcl_rawStrain_BL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL120 - channel_hcl_rawStrain_A60 = _mscl.WirelessChannel_channel_hcl_rawStrain_A60 - channel_hcl_rawStrain_A150 = _mscl.WirelessChannel_channel_hcl_rawStrain_A150 - channel_hcl_rawStrain_AL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL30 - channel_hcl_rawStrain_AL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL120 - channel_hcl_rawStrain_BR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR60 - channel_hcl_rawStrain_BR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR150 - channel_hcl_rawStrain_B30 = _mscl.WirelessChannel_channel_hcl_rawStrain_B30 - channel_hcl_rawStrain_T120 = _mscl.WirelessChannel_channel_hcl_rawStrain_T120 - channel_hcl_rawStrain_AR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR60 - channel_hcl_rawStrain_AR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR150 - channel_hcl_rawStrain_A30 = _mscl.WirelessChannel_channel_hcl_rawStrain_A30 - channel_hcl_rawStrain_A120 = _mscl.WirelessChannel_channel_hcl_rawStrain_A120 - channel_hcl_rawStrain_BL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL90 - channel_hcl_rawStrain_BL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL180 - channel_hcl_rawStrain_BR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR30 - channel_hcl_rawStrain_BR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR120 - channel_hcl_rawStrain_AL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL90 - channel_hcl_rawStrain_AL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL180 - channel_hcl_rawStrain_AR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR30 - channel_hcl_rawStrain_AR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR120 - channel_hcl_rawStrain_B90 = _mscl.WirelessChannel_channel_hcl_rawStrain_B90 - channel_hcl_rawStrain_T0 = _mscl.WirelessChannel_channel_hcl_rawStrain_T0 - channel_hcl_rawStrain_BL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL60 - channel_hcl_rawStrain_BL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL150 - channel_hcl_rawStrain_A90 = _mscl.WirelessChannel_channel_hcl_rawStrain_A90 - channel_hcl_rawStrain_A0 = _mscl.WirelessChannel_channel_hcl_rawStrain_A0 - channel_hcl_rawStrain_AL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL60 - channel_hcl_rawStrain_AL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL150 - channel_hcl_rawStrain_BR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR90 - channel_hcl_rawStrain_BR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR0 - channel_hcl_rawStrain_T60 = _mscl.WirelessChannel_channel_hcl_rawStrain_T60 - channel_hcl_rawStrain_B150 = _mscl.WirelessChannel_channel_hcl_rawStrain_B150 - channel_hcl_rawStrain_AR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR90 - channel_hcl_rawStrain_AR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR0 - channel_hcl_rawInertial_accel1 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel1 - channel_hcl_rawInertial_accel2 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel2 - channel_hcl_rawInertial_accel3 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel3 - channel_hcl_rawInertial_accel4 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel4 - channel_hcl_rawInertial_accel5 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel5 - channel_hcl_rawInertial_accel6 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel6 - channel_hcl_rawInertial_accel7 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel7 - channel_hcl_rawInertial_accel8 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel8 - channel_hcl_rawInertial_gyroX = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroX - channel_hcl_rawInertial_gyroY = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroY - channel_hcl_rawInertial_gyroZ = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroZ - channel_rawAngleStrain = _mscl.WirelessChannel_channel_rawAngleStrain - channel_beaconEcho = _mscl.WirelessChannel_channel_beaconEcho - channel_rfSweep = _mscl.WirelessChannel_channel_rfSweep - channel_diag_state = _mscl.WirelessChannel_channel_diag_state - channel_diag_runtime_idle = _mscl.WirelessChannel_channel_diag_runtime_idle - channel_diag_runtime_sleep = _mscl.WirelessChannel_channel_diag_runtime_sleep - channel_diag_runtime_activeRun = _mscl.WirelessChannel_channel_diag_runtime_activeRun - channel_diag_runtime_inactiveRun = _mscl.WirelessChannel_channel_diag_runtime_inactiveRun - channel_diag_resetCounter = _mscl.WirelessChannel_channel_diag_resetCounter - channel_diag_lowBatteryFlag = _mscl.WirelessChannel_channel_diag_lowBatteryFlag - channel_diag_sweepIndex = _mscl.WirelessChannel_channel_diag_sweepIndex - channel_diag_badSweepCount = _mscl.WirelessChannel_channel_diag_badSweepCount - channel_diag_totalTx = _mscl.WirelessChannel_channel_diag_totalTx - channel_diag_totalReTx = _mscl.WirelessChannel_channel_diag_totalReTx - channel_diag_totalDroppedPackets = _mscl.WirelessChannel_channel_diag_totalDroppedPackets - channel_diag_builtInTestResult = _mscl.WirelessChannel_channel_diag_builtInTestResult - channel_diag_eventIndex = _mscl.WirelessChannel_channel_diag_eventIndex - channel_hcl_axialLoadX = _mscl.WirelessChannel_channel_hcl_axialLoadX - channel_hcl_axialLoadY = _mscl.WirelessChannel_channel_hcl_axialLoadY - channel_hcl_axialLoadZ = _mscl.WirelessChannel_channel_hcl_axialLoadZ - channel_hcl_bendingMomentFlap = _mscl.WirelessChannel_channel_hcl_bendingMomentFlap - channel_hcl_bendingMomentLag = _mscl.WirelessChannel_channel_hcl_bendingMomentLag - channel_hcl_bendingMomentPitch = _mscl.WirelessChannel_channel_hcl_bendingMomentPitch - channel_hcl_motionFlap_mag = _mscl.WirelessChannel_channel_hcl_motionFlap_mag - channel_hcl_motionLag_mag = _mscl.WirelessChannel_channel_hcl_motionLag_mag - channel_hcl_motionPitch_mag = _mscl.WirelessChannel_channel_hcl_motionPitch_mag - channel_hcl_motionFlap_inertial = _mscl.WirelessChannel_channel_hcl_motionFlap_inertial - channel_hcl_motionLag_inertial = _mscl.WirelessChannel_channel_hcl_motionLag_inertial - channel_hcl_motionPitch_inertial = _mscl.WirelessChannel_channel_hcl_motionPitch_inertial - channel_hcl_cockingStiffness_mag = _mscl.WirelessChannel_channel_hcl_cockingStiffness_mag - channel_hcl_cockingStiffness_inertial = _mscl.WirelessChannel_channel_hcl_cockingStiffness_inertial - channel_hcl_temperature = _mscl.WirelessChannel_channel_hcl_temperature - channel_diag_externalPower = _mscl.WirelessChannel_channel_diag_externalPower - channel_diag_internalTemp = _mscl.WirelessChannel_channel_diag_internalTemp - channel_1_rms = _mscl.WirelessChannel_channel_1_rms - channel_2_rms = _mscl.WirelessChannel_channel_2_rms - channel_3_rms = _mscl.WirelessChannel_channel_3_rms - channel_4_rms = _mscl.WirelessChannel_channel_4_rms - channel_5_rms = _mscl.WirelessChannel_channel_5_rms - channel_6_rms = _mscl.WirelessChannel_channel_6_rms - channel_7_rms = _mscl.WirelessChannel_channel_7_rms - channel_8_rms = _mscl.WirelessChannel_channel_8_rms - channel_9_rms = _mscl.WirelessChannel_channel_9_rms - channel_10_rms = _mscl.WirelessChannel_channel_10_rms - channel_11_rms = _mscl.WirelessChannel_channel_11_rms - channel_12_rms = _mscl.WirelessChannel_channel_12_rms - channel_13_rms = _mscl.WirelessChannel_channel_13_rms - channel_14_rms = _mscl.WirelessChannel_channel_14_rms - channel_15_rms = _mscl.WirelessChannel_channel_15_rms - channel_16_rms = _mscl.WirelessChannel_channel_16_rms - channel_1_peakToPeak = _mscl.WirelessChannel_channel_1_peakToPeak - channel_2_peakToPeak = _mscl.WirelessChannel_channel_2_peakToPeak - channel_3_peakToPeak = _mscl.WirelessChannel_channel_3_peakToPeak - channel_4_peakToPeak = _mscl.WirelessChannel_channel_4_peakToPeak - channel_5_peakToPeak = _mscl.WirelessChannel_channel_5_peakToPeak - channel_6_peakToPeak = _mscl.WirelessChannel_channel_6_peakToPeak - channel_7_peakToPeak = _mscl.WirelessChannel_channel_7_peakToPeak - channel_8_peakToPeak = _mscl.WirelessChannel_channel_8_peakToPeak - channel_9_peakToPeak = _mscl.WirelessChannel_channel_9_peakToPeak - channel_10_peakToPeak = _mscl.WirelessChannel_channel_10_peakToPeak - channel_11_peakToPeak = _mscl.WirelessChannel_channel_11_peakToPeak - channel_12_peakToPeak = _mscl.WirelessChannel_channel_12_peakToPeak - channel_13_peakToPeak = _mscl.WirelessChannel_channel_13_peakToPeak - channel_14_peakToPeak = _mscl.WirelessChannel_channel_14_peakToPeak - channel_15_peakToPeak = _mscl.WirelessChannel_channel_15_peakToPeak - channel_16_peakToPeak = _mscl.WirelessChannel_channel_16_peakToPeak - channel_1_ips = _mscl.WirelessChannel_channel_1_ips - channel_2_ips = _mscl.WirelessChannel_channel_2_ips - channel_3_ips = _mscl.WirelessChannel_channel_3_ips - channel_4_ips = _mscl.WirelessChannel_channel_4_ips - channel_5_ips = _mscl.WirelessChannel_channel_5_ips - channel_6_ips = _mscl.WirelessChannel_channel_6_ips - channel_7_ips = _mscl.WirelessChannel_channel_7_ips - channel_8_ips = _mscl.WirelessChannel_channel_8_ips - channel_9_ips = _mscl.WirelessChannel_channel_9_ips - channel_10_ips = _mscl.WirelessChannel_channel_10_ips - channel_11_ips = _mscl.WirelessChannel_channel_11_ips - channel_12_ips = _mscl.WirelessChannel_channel_12_ips - channel_13_ips = _mscl.WirelessChannel_channel_13_ips - channel_14_ips = _mscl.WirelessChannel_channel_14_ips - channel_15_ips = _mscl.WirelessChannel_channel_15_ips - channel_16_ips = _mscl.WirelessChannel_channel_16_ips - channel_1_crestFactor = _mscl.WirelessChannel_channel_1_crestFactor - channel_2_crestFactor = _mscl.WirelessChannel_channel_2_crestFactor - channel_3_crestFactor = _mscl.WirelessChannel_channel_3_crestFactor - channel_4_crestFactor = _mscl.WirelessChannel_channel_4_crestFactor - channel_5_crestFactor = _mscl.WirelessChannel_channel_5_crestFactor - channel_6_crestFactor = _mscl.WirelessChannel_channel_6_crestFactor - channel_7_crestFactor = _mscl.WirelessChannel_channel_7_crestFactor - channel_8_crestFactor = _mscl.WirelessChannel_channel_8_crestFactor - channel_9_crestFactor = _mscl.WirelessChannel_channel_9_crestFactor - channel_10_crestFactor = _mscl.WirelessChannel_channel_10_crestFactor - channel_11_crestFactor = _mscl.WirelessChannel_channel_11_crestFactor - channel_12_crestFactor = _mscl.WirelessChannel_channel_12_crestFactor - channel_13_crestFactor = _mscl.WirelessChannel_channel_13_crestFactor - channel_14_crestFactor = _mscl.WirelessChannel_channel_14_crestFactor - channel_15_crestFactor = _mscl.WirelessChannel_channel_15_crestFactor - channel_16_crestFactor = _mscl.WirelessChannel_channel_16_crestFactor - channel_diag_syncAttempts = _mscl.WirelessChannel_channel_diag_syncAttempts - channel_diag_syncFailures = _mscl.WirelessChannel_channel_diag_syncFailures - channel_diag_secsSinceLastSync = _mscl.WirelessChannel_channel_diag_secsSinceLastSync - channel_beaconConflict = _mscl.WirelessChannel_channel_beaconConflict - channel_1_mean = _mscl.WirelessChannel_channel_1_mean - channel_2_mean = _mscl.WirelessChannel_channel_2_mean - channel_3_mean = _mscl.WirelessChannel_channel_3_mean - channel_4_mean = _mscl.WirelessChannel_channel_4_mean - channel_5_mean = _mscl.WirelessChannel_channel_5_mean - channel_6_mean = _mscl.WirelessChannel_channel_6_mean - channel_7_mean = _mscl.WirelessChannel_channel_7_mean - channel_8_mean = _mscl.WirelessChannel_channel_8_mean - channel_9_mean = _mscl.WirelessChannel_channel_9_mean - channel_10_mean = _mscl.WirelessChannel_channel_10_mean - channel_11_mean = _mscl.WirelessChannel_channel_11_mean - channel_12_mean = _mscl.WirelessChannel_channel_12_mean - channel_13_mean = _mscl.WirelessChannel_channel_13_mean - channel_14_mean = _mscl.WirelessChannel_channel_14_mean - channel_15_mean = _mscl.WirelessChannel_channel_15_mean - channel_16_mean = _mscl.WirelessChannel_channel_16_mean - channel_1_mmps = _mscl.WirelessChannel_channel_1_mmps - channel_2_mmps = _mscl.WirelessChannel_channel_2_mmps - channel_3_mmps = _mscl.WirelessChannel_channel_3_mmps - channel_4_mmps = _mscl.WirelessChannel_channel_4_mmps - channel_5_mmps = _mscl.WirelessChannel_channel_5_mmps - channel_6_mmps = _mscl.WirelessChannel_channel_6_mmps - channel_7_mmps = _mscl.WirelessChannel_channel_7_mmps - channel_8_mmps = _mscl.WirelessChannel_channel_8_mmps - channel_9_mmps = _mscl.WirelessChannel_channel_9_mmps - channel_10_mmps = _mscl.WirelessChannel_channel_10_mmps - channel_11_mmps = _mscl.WirelessChannel_channel_11_mmps - channel_12_mmps = _mscl.WirelessChannel_channel_12_mmps - channel_13_mmps = _mscl.WirelessChannel_channel_13_mmps - channel_14_mmps = _mscl.WirelessChannel_channel_14_mmps - channel_15_mmps = _mscl.WirelessChannel_channel_15_mmps - channel_16_mmps = _mscl.WirelessChannel_channel_16_mmps - channel_diag_memoryFull = _mscl.WirelessChannel_channel_diag_memoryFull - - def __init__(self, *args): - _mscl.WirelessChannel_swiginit(self, _mscl.new_WirelessChannel(*args)) - - def channelNumber(self): - return _mscl.WirelessChannel_channelNumber(self) - - def id(self): - return _mscl.WirelessChannel_id(self) - - def type(self): - return _mscl.WirelessChannel_type(self) - - def description(self): - return _mscl.WirelessChannel_description(self) - - def adcResolution(self): - return _mscl.WirelessChannel_adcResolution(self) - - def adcMaxValue(self): - return _mscl.WirelessChannel_adcMaxValue(self) - - def name(self): - return _mscl.WirelessChannel_name(self) - __swig_destroy__ = _mscl.delete_WirelessChannel - -# Register WirelessChannel in _mscl: -_mscl.WirelessChannel_swigregister(WirelessChannel) - -class WirelessDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessDataPoint_swiginit(self, _mscl.new_WirelessDataPoint()) - - def channelId(self): - return _mscl.WirelessDataPoint_channelId(self) - - def channelNumber(self): - return _mscl.WirelessDataPoint_channelNumber(self) - - def channelName(self): - return _mscl.WirelessDataPoint_channelName(self) - __swig_destroy__ = _mscl.delete_WirelessDataPoint - -# Register WirelessDataPoint in _mscl: -_mscl.WirelessDataPoint_swigregister(WirelessDataPoint) - -class DataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - samplingType_NonSync = _mscl.DataSweep_samplingType_NonSync - samplingType_NonSync_Buffered = _mscl.DataSweep_samplingType_NonSync_Buffered - samplingType_SyncSampling = _mscl.DataSweep_samplingType_SyncSampling - samplingType_SyncSampling_Burst = _mscl.DataSweep_samplingType_SyncSampling_Burst - samplingType_AsyncDigital = _mscl.DataSweep_samplingType_AsyncDigital - samplingType_AsyncDigitalAnalog = _mscl.DataSweep_samplingType_AsyncDigitalAnalog - samplingType_SHM = _mscl.DataSweep_samplingType_SHM - samplingType_BeaconEcho = _mscl.DataSweep_samplingType_BeaconEcho - samplingType_RfSweep = _mscl.DataSweep_samplingType_RfSweep - samplingType_Diagnostic = _mscl.DataSweep_samplingType_Diagnostic - - def __init__(self): - _mscl.DataSweep_swiginit(self, _mscl.new_DataSweep()) - - def timestamp(self): - return _mscl.DataSweep_timestamp(self) - - def tick(self): - return _mscl.DataSweep_tick(self) - - def sampleRate(self): - return _mscl.DataSweep_sampleRate(self) - - def nodeAddress(self): - return _mscl.DataSweep_nodeAddress(self) - - def data(self): - return _mscl.DataSweep_data(self) - - def samplingType(self): - return _mscl.DataSweep_samplingType(self) - - def nodeRssi(self): - return _mscl.DataSweep_nodeRssi(self) - - def baseRssi(self): - return _mscl.DataSweep_baseRssi(self) - - def frequency(self): - return _mscl.DataSweep_frequency(self) - - def calApplied(self): - return _mscl.DataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_DataSweep - -# Register DataSweep in _mscl: -_mscl.DataSweep_swigregister(DataSweep) - -class BaseStationAnalogPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationAnalogPair_swiginit(self, _mscl.new_BaseStationAnalogPair()) - - @staticmethod - def Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - - @staticmethod - def NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - - def nodeAddress(self, *args): - return _mscl.BaseStationAnalogPair_nodeAddress(self, *args) - - def nodeChannel(self, *args): - return _mscl.BaseStationAnalogPair_nodeChannel(self, *args) - - def expectFloatData(self, *args): - return _mscl.BaseStationAnalogPair_expectFloatData(self, *args) - - def outputVal_0V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_0V(self, *args) - - def outputVal_3V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_3V(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationAnalogPair - -# Register BaseStationAnalogPair in _mscl: -_mscl.BaseStationAnalogPair_swigregister(BaseStationAnalogPair) -BaseStationAnalogPair.CHANNEL_NOT_FLOAT = _mscl.cvar.BaseStationAnalogPair_CHANNEL_NOT_FLOAT - -def BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - -def BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - -class BaseStationButton(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - btn_nodeSleep = _mscl.BaseStationButton_btn_nodeSleep - btn_nodeStop = _mscl.BaseStationButton_btn_nodeStop - btn_enableBeacon = _mscl.BaseStationButton_btn_enableBeacon - btn_disableBeacon = _mscl.BaseStationButton_btn_disableBeacon - btn_nodeNonSyncSampling = _mscl.BaseStationButton_btn_nodeNonSyncSampling - btn_nodeSyncSampling = _mscl.BaseStationButton_btn_nodeSyncSampling - btn_nodeArmedDatalogging = _mscl.BaseStationButton_btn_nodeArmedDatalogging - btn_cyclePower = _mscl.BaseStationButton_btn_cyclePower - btn_disabled = _mscl.BaseStationButton_btn_disabled - - def __init__(self, *args): - _mscl.BaseStationButton_swiginit(self, _mscl.new_BaseStationButton(*args)) - - def command(self, *args): - return _mscl.BaseStationButton_command(self, *args) - - def nodeAddress(self, *args): - return _mscl.BaseStationButton_nodeAddress(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationButton - -# Register BaseStationButton in _mscl: -_mscl.BaseStationButton_swigregister(BaseStationButton) - -class BaseStationConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationConfig_swiginit(self, _mscl.new_BaseStationConfig()) - - def transmitPower(self, *args): - return _mscl.BaseStationConfig_transmitPower(self, *args) - - def communicationProtocol(self, *args): - return _mscl.BaseStationConfig_communicationProtocol(self, *args) - - def buttonLongPress(self, *args): - return _mscl.BaseStationConfig_buttonLongPress(self, *args) - - def buttonShortPress(self, *args): - return _mscl.BaseStationConfig_buttonShortPress(self, *args) - - def analogPairingEnable(self, *args): - return _mscl.BaseStationConfig_analogPairingEnable(self, *args) - - def analogTimeoutTime(self, *args): - return _mscl.BaseStationConfig_analogTimeoutTime(self, *args) - - def analogTimeoutVoltage(self, *args): - return _mscl.BaseStationConfig_analogTimeoutVoltage(self, *args) - - def analogExceedanceEnable(self, *args): - return _mscl.BaseStationConfig_analogExceedanceEnable(self, *args) - - def analogPairing(self, *args): - return _mscl.BaseStationConfig_analogPairing(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationConfig - -# Register BaseStationConfig in _mscl: -_mscl.BaseStationConfig_swigregister(BaseStationConfig) - -class BeaconStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BeaconStatus_swiginit(self, _mscl.new_BeaconStatus(*args)) - - def enabled(self): - return _mscl.BeaconStatus_enabled(self) - - def timestamp(self): - return _mscl.BeaconStatus_timestamp(self) - __swig_destroy__ = _mscl.delete_BeaconStatus - -# Register BeaconStatus in _mscl: -_mscl.BeaconStatus_swigregister(BeaconStatus) - -class BaseStationInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region, asppVer_lxrs, asppVer_lxrsPlus): - _mscl.BaseStationInfo_swiginit(self, _mscl.new_BaseStationInfo(fw, model, region, asppVer_lxrs, asppVer_lxrsPlus)) - __swig_destroy__ = _mscl.delete_BaseStationInfo - -# Register BaseStationInfo in _mscl: -_mscl.BaseStationInfo_swigregister(BaseStationInfo) - -class BaseStation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_BASE_COMMANDS_DEFAULT_TIMEOUT - ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT - BROADCAST_NODE_ADDRESS = _mscl.BaseStation_BROADCAST_NODE_ADDRESS - BROADCAST_NODE_ADDRESS_ASPP3 = _mscl.BaseStation_BROADCAST_NODE_ADDRESS_ASPP3 - - def __init__(self, *args): - _mscl.BaseStation_swiginit(self, _mscl.new_BaseStation(*args)) - __swig_destroy__ = _mscl.delete_BaseStation - - @staticmethod - def Mock(*args): - return _mscl.BaseStation_Mock(*args) - - @staticmethod - def deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - - def connection(self): - return _mscl.BaseStation_connection(self) - - def features(self): - return _mscl.BaseStation_features(self) - - def lastCommunicationTime(self): - return _mscl.BaseStation_lastCommunicationTime(self) - - def readWriteRetries(self, *args): - return _mscl.BaseStation_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.BaseStation_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.BaseStation_clearEepromCache(self) - - def frequency(self): - return _mscl.BaseStation_frequency(self) - - def communicationProtocol(self): - return _mscl.BaseStation_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.BaseStation_firmwareVersion(self) - - def model(self): - return _mscl.BaseStation_model(self) - - def serial(self): - return _mscl.BaseStation_serial(self) - - def name(self): - return _mscl.BaseStation_name(self) - - def microcontroller(self): - return _mscl.BaseStation_microcontroller(self) - - def regionCode(self): - return _mscl.BaseStation_regionCode(self) - - def getData(self, timeout=0, maxSweeps=0): - return _mscl.BaseStation_getData(self, timeout, maxSweeps) - - def totalData(self): - return _mscl.BaseStation_totalData(self) - - def getNodeDiscoveries(self): - return _mscl.BaseStation_getNodeDiscoveries(self) - - def timeout(self, *args): - return _mscl.BaseStation_timeout(self, *args) - - def ping(self): - return _mscl.BaseStation_ping(self) - - def readEeprom(self, eepromAddress): - return _mscl.BaseStation_readEeprom(self, eepromAddress) - - def writeEeprom(self, eepromAddress, value): - return _mscl.BaseStation_writeEeprom(self, eepromAddress, value) - - def enableBeacon(self, *args): - return _mscl.BaseStation_enableBeacon(self, *args) - - def disableBeacon(self): - return _mscl.BaseStation_disableBeacon(self) - - def beaconStatus(self): - return _mscl.BaseStation_beaconStatus(self) - - def startRfSweepMode(self, *args): - return _mscl.BaseStation_startRfSweepMode(self, *args) - - def cyclePower(self, checkComm=True): - return _mscl.BaseStation_cyclePower(self, checkComm) - - def resetRadio(self): - return _mscl.BaseStation_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.BaseStation_changeFrequency(self, frequency) - - def broadcastSetToIdle(self): - return _mscl.BaseStation_broadcastSetToIdle(self) - - def verifyConfig(self, config, outIssues): - return _mscl.BaseStation_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.BaseStation_applyConfig(self, config) - - def getTransmitPower(self): - return _mscl.BaseStation_getTransmitPower(self) - - def getButtonLongPress(self, buttonNumber): - return _mscl.BaseStation_getButtonLongPress(self, buttonNumber) - - def getButtonShortPress(self, buttonNumber): - return _mscl.BaseStation_getButtonShortPress(self, buttonNumber) - - def getAnalogPairingEnabled(self): - return _mscl.BaseStation_getAnalogPairingEnabled(self) - - def getAnalogTimeoutTime(self): - return _mscl.BaseStation_getAnalogTimeoutTime(self) - - def getAnalogTimeoutVoltage(self): - return _mscl.BaseStation_getAnalogTimeoutVoltage(self) - - def getAnalogExceedanceEnabled(self): - return _mscl.BaseStation_getAnalogExceedanceEnabled(self) - - def getAnalogPair(self, portNumber): - return _mscl.BaseStation_getAnalogPair(self, portNumber) - -# Register BaseStation in _mscl: -_mscl.BaseStation_swigregister(BaseStation) - -def BaseStation_Mock(*args): - return _mscl.BaseStation_Mock(*args) - -def BaseStation_deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - -class LoggedDataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LoggedDataSweep_swiginit(self, _mscl.new_LoggedDataSweep(*args)) - - def timestamp(self): - return _mscl.LoggedDataSweep_timestamp(self) - - def tick(self): - return _mscl.LoggedDataSweep_tick(self) - - def data(self): - return _mscl.LoggedDataSweep_data(self) - - def calApplied(self): - return _mscl.LoggedDataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweep - -# Register LoggedDataSweep in _mscl: -_mscl.LoggedDataSweep_swigregister(LoggedDataSweep) - -class RadioFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.RadioFeatures_swiginit(self, _mscl.new_RadioFeatures(*args)) - - def extendedRange(self): - return _mscl.RadioFeatures_extendedRange(self) - __swig_destroy__ = _mscl.delete_RadioFeatures - -# Register RadioFeatures in _mscl: -_mscl.RadioFeatures_swigregister(RadioFeatures) - -class WirelessNodeConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessNodeConfig_swiginit(self, _mscl.new_WirelessNodeConfig()) - SENSOR_DELAY_ALWAYS_ON = _mscl.WirelessNodeConfig_SENSOR_DELAY_ALWAYS_ON - - def defaultMode(self, *args): - return _mscl.WirelessNodeConfig_defaultMode(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.WirelessNodeConfig_inactivityTimeout(self, *args) - - def checkRadioInterval(self, *args): - return _mscl.WirelessNodeConfig_checkRadioInterval(self, *args) - - def transmitPower(self, *args): - return _mscl.WirelessNodeConfig_transmitPower(self, *args) - - def samplingMode(self, *args): - return _mscl.WirelessNodeConfig_samplingMode(self, *args) - - def sampleRate(self, *args): - return _mscl.WirelessNodeConfig_sampleRate(self, *args) - - def activeChannels(self, *args): - return _mscl.WirelessNodeConfig_activeChannels(self, *args) - - def numSweeps(self, *args): - return _mscl.WirelessNodeConfig_numSweeps(self, *args) - - def unlimitedDuration(self, *args): - return _mscl.WirelessNodeConfig_unlimitedDuration(self, *args) - - def dataFormat(self, *args): - return _mscl.WirelessNodeConfig_dataFormat(self, *args) - - def dataCollectionMethod(self, *args): - return _mscl.WirelessNodeConfig_dataCollectionMethod(self, *args) - - def timeBetweenBursts(self, *args): - return _mscl.WirelessNodeConfig_timeBetweenBursts(self, *args) - - def lostBeaconTimeout(self, *args): - return _mscl.WirelessNodeConfig_lostBeaconTimeout(self, *args) - - def pullUpResistor(self, *args): - return _mscl.WirelessNodeConfig_pullUpResistor(self, *args) - - def inputRange(self, *args): - return _mscl.WirelessNodeConfig_inputRange(self, *args) - - def hardwareOffset(self, *args): - return _mscl.WirelessNodeConfig_hardwareOffset(self, *args) - - def antiAliasingFilter(self, *args): - return _mscl.WirelessNodeConfig_antiAliasingFilter(self, *args) - - def cfcFilterConfig(self, *args): - return _mscl.WirelessNodeConfig_cfcFilterConfig(self, *args) - - def lowPassFilter(self, *args): - return _mscl.WirelessNodeConfig_lowPassFilter(self, *args) - - def highPassFilter(self, *args): - return _mscl.WirelessNodeConfig_highPassFilter(self, *args) - - def gaugeFactor(self, *args): - return _mscl.WirelessNodeConfig_gaugeFactor(self, *args) - - def gaugeResistance(self, *args): - return _mscl.WirelessNodeConfig_gaugeResistance(self, *args) - - def excitationVoltage(self, *args): - return _mscl.WirelessNodeConfig_excitationVoltage(self, *args) - - def numActiveGauges(self, *args): - return _mscl.WirelessNodeConfig_numActiveGauges(self, *args) - - def lowBatteryThreshold(self, *args): - return _mscl.WirelessNodeConfig_lowBatteryThreshold(self, *args) - - def linearEquation(self, *args): - return _mscl.WirelessNodeConfig_linearEquation(self, *args) - - def unit(self, *args): - return _mscl.WirelessNodeConfig_unit(self, *args) - - def equationType(self, *args): - return _mscl.WirelessNodeConfig_equationType(self, *args) - - def filterSettlingTime(self, *args): - return _mscl.WirelessNodeConfig_filterSettlingTime(self, *args) - - def thermocoupleType(self, *args): - return _mscl.WirelessNodeConfig_thermocoupleType(self, *args) - - def tempSensorOptions(self, *args): - return _mscl.WirelessNodeConfig_tempSensorOptions(self, *args) - - def debounceFilter(self, *args): - return _mscl.WirelessNodeConfig_debounceFilter(self, *args) - - def fatigueOptions(self, *args): - return _mscl.WirelessNodeConfig_fatigueOptions(self, *args) - - def histogramOptions(self, *args): - return _mscl.WirelessNodeConfig_histogramOptions(self, *args) - - def activitySense(self, *args): - return _mscl.WirelessNodeConfig_activitySense(self, *args) - - def eventTriggerOptions(self, *args): - return _mscl.WirelessNodeConfig_eventTriggerOptions(self, *args) - - def diagnosticInterval(self, *args): - return _mscl.WirelessNodeConfig_diagnosticInterval(self, *args) - - def storageLimitMode(self, *args): - return _mscl.WirelessNodeConfig_storageLimitMode(self, *args) - - def sensorDelay(self, *args): - return _mscl.WirelessNodeConfig_sensorDelay(self, *args) - - def dataMode(self, *args): - return _mscl.WirelessNodeConfig_dataMode(self, *args) - - def derivedDataRate(self, *args): - return _mscl.WirelessNodeConfig_derivedDataRate(self, *args) - - def derivedChannelMask(self, *args): - return _mscl.WirelessNodeConfig_derivedChannelMask(self, *args) - - def derivedVelocityUnit(self, *args): - return _mscl.WirelessNodeConfig_derivedVelocityUnit(self, *args) - - def communicationProtocol(self, *args): - return _mscl.WirelessNodeConfig_communicationProtocol(self, *args) - - def sensorOutputMode(self, *args): - return _mscl.WirelessNodeConfig_sensorOutputMode(self, *args) - - @staticmethod - def flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - - @staticmethod - def flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - __swig_destroy__ = _mscl.delete_WirelessNodeConfig - -# Register WirelessNodeConfig in _mscl: -_mscl.WirelessNodeConfig_swigregister(WirelessNodeConfig) - -def WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - -def WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - -class AutoBalanceResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoBalanceResult_swiginit(self, _mscl.new_AutoBalanceResult()) - - def errorCode(self): - return _mscl.AutoBalanceResult_errorCode(self) - - def percentAchieved(self): - return _mscl.AutoBalanceResult_percentAchieved(self) - - def hardwareOffset(self): - return _mscl.AutoBalanceResult_hardwareOffset(self) - __swig_destroy__ = _mscl.delete_AutoBalanceResult - -# Register AutoBalanceResult in _mscl: -_mscl.AutoBalanceResult_swigregister(AutoBalanceResult) - -class ShuntCalCmdInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - useInternalShunt = property(_mscl.ShuntCalCmdInfo_useInternalShunt_get, _mscl.ShuntCalCmdInfo_useInternalShunt_set) - numActiveGauges = property(_mscl.ShuntCalCmdInfo_numActiveGauges_get, _mscl.ShuntCalCmdInfo_numActiveGauges_set) - gaugeResistance = property(_mscl.ShuntCalCmdInfo_gaugeResistance_get, _mscl.ShuntCalCmdInfo_gaugeResistance_set) - shuntResistance = property(_mscl.ShuntCalCmdInfo_shuntResistance_get, _mscl.ShuntCalCmdInfo_shuntResistance_set) - gaugeFactor = property(_mscl.ShuntCalCmdInfo_gaugeFactor_get, _mscl.ShuntCalCmdInfo_gaugeFactor_set) - inputRange = property(_mscl.ShuntCalCmdInfo_inputRange_get, _mscl.ShuntCalCmdInfo_inputRange_set) - hardwareOffset = property(_mscl.ShuntCalCmdInfo_hardwareOffset_get, _mscl.ShuntCalCmdInfo_hardwareOffset_set) - excitationVoltage = property(_mscl.ShuntCalCmdInfo_excitationVoltage_get, _mscl.ShuntCalCmdInfo_excitationVoltage_set) - - def __init__(self): - _mscl.ShuntCalCmdInfo_swiginit(self, _mscl.new_ShuntCalCmdInfo()) - __swig_destroy__ = _mscl.delete_ShuntCalCmdInfo - -# Register ShuntCalCmdInfo in _mscl: -_mscl.ShuntCalCmdInfo_swigregister(ShuntCalCmdInfo) - -class AutoCalResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_AutoCalResult - - def completionFlag(self): - return _mscl.AutoCalResult_completionFlag(self) - -# Register AutoCalResult in _mscl: -_mscl.AutoCalResult_swigregister(AutoCalResult) - -class AutoCalResult_shmLink(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink_swiginit(self, _mscl.new_AutoCalResult_shmLink()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh3(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink_offsetCh1(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink_offsetCh2(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink_temperature(self) - -# Register AutoCalResult_shmLink in _mscl: -_mscl.AutoCalResult_shmLink_swigregister(AutoCalResult_shmLink) - -class AutoCalResult_shmLink201(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink201_swiginit(self, _mscl.new_AutoCalResult_shmLink201()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink201 - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh3(self) - - def slopeCh1(self): - return _mscl.AutoCalResult_shmLink201_slopeCh1(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink201_offsetCh1(self) - - def slopeCh2(self): - return _mscl.AutoCalResult_shmLink201_slopeCh2(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink201_offsetCh2(self) - - def slopeCh3(self): - return _mscl.AutoCalResult_shmLink201_slopeCh3(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink201_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink201_temperature(self) - -# Register AutoCalResult_shmLink201 in _mscl: -_mscl.AutoCalResult_shmLink201_swigregister(AutoCalResult_shmLink201) - -class AutoShuntCalResult(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoShuntCalResult_swiginit(self, _mscl.new_AutoShuntCalResult()) - __swig_destroy__ = _mscl.delete_AutoShuntCalResult - - def errorFlag(self): - return _mscl.AutoShuntCalResult_errorFlag(self) - - def slope(self): - return _mscl.AutoShuntCalResult_slope(self) - - def offset(self): - return _mscl.AutoShuntCalResult_offset(self) - - def baseMedian(self): - return _mscl.AutoShuntCalResult_baseMedian(self) - - def baseMin(self): - return _mscl.AutoShuntCalResult_baseMin(self) - - def baseMax(self): - return _mscl.AutoShuntCalResult_baseMax(self) - - def shuntMedian(self): - return _mscl.AutoShuntCalResult_shuntMedian(self) - - def shuntMin(self): - return _mscl.AutoShuntCalResult_shuntMin(self) - - def shuntMax(self): - return _mscl.AutoShuntCalResult_shuntMax(self) - -# Register AutoShuntCalResult in _mscl: -_mscl.AutoShuntCalResult_swigregister(AutoShuntCalResult) - -class PingResponse(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PingResponse_swiginit(self, _mscl.new_PingResponse()) - - def success(self): - return _mscl.PingResponse_success(self) - - def nodeRssi(self): - return _mscl.PingResponse_nodeRssi(self) - - def baseRssi(self): - return _mscl.PingResponse_baseRssi(self) - __swig_destroy__ = _mscl.delete_PingResponse - -# Register PingResponse in _mscl: -_mscl.PingResponse_swigregister(PingResponse) - -class SetToIdleStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - setToIdleResult_success = _mscl.SetToIdleStatus_setToIdleResult_success - setToIdleResult_canceled = _mscl.SetToIdleStatus_setToIdleResult_canceled - setToIdleResult_failed = _mscl.SetToIdleStatus_setToIdleResult_failed - setToIdleResult_notCompleted = _mscl.SetToIdleStatus_setToIdleResult_notCompleted - - def result(self): - return _mscl.SetToIdleStatus_result(self) - - def complete(self, timeout=10): - return _mscl.SetToIdleStatus_complete(self, timeout) - - def cancel(self): - return _mscl.SetToIdleStatus_cancel(self) - __swig_destroy__ = _mscl.delete_SetToIdleStatus - -# Register SetToIdleStatus in _mscl: -_mscl.SetToIdleStatus_swigregister(SetToIdleStatus) - -class NodeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region): - _mscl.NodeInfo_swiginit(self, _mscl.new_NodeInfo(fw, model, region)) - __swig_destroy__ = _mscl.delete_NodeInfo - -# Register NodeInfo in _mscl: -_mscl.NodeInfo_swigregister(NodeInfo) - -class WirelessNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, nodeAddress, basestation): - _mscl.WirelessNode_swiginit(self, _mscl.new_WirelessNode(nodeAddress, basestation)) - __swig_destroy__ = _mscl.delete_WirelessNode - - @staticmethod - def Mock(*args): - return _mscl.WirelessNode_Mock(*args) - - @staticmethod - def deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - - def features(self): - return _mscl.WirelessNode_features(self) - - def lastCommunicationTime(self): - return _mscl.WirelessNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.WirelessNode_lastDeviceState(self) - - def setBaseStation(self, basestation): - return _mscl.WirelessNode_setBaseStation(self, basestation) - - def getBaseStation(self): - return _mscl.WirelessNode_getBaseStation(self) - - def hasBaseStation(self, basestation): - return _mscl.WirelessNode_hasBaseStation(self, basestation) - - def useGroupRead(self, useGroup): - return _mscl.WirelessNode_useGroupRead(self, useGroup) - - def readWriteRetries(self, *args): - return _mscl.WirelessNode_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.WirelessNode_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.WirelessNode_clearEepromCache(self) - - def updateEepromCacheFromNodeDiscovery(self, nodeDisovery): - return _mscl.WirelessNode_updateEepromCacheFromNodeDiscovery(self, nodeDisovery) - - def getEepromCache(self): - return _mscl.WirelessNode_getEepromCache(self) - - def nodeAddress(self): - return _mscl.WirelessNode_nodeAddress(self) - - def frequency(self): - return _mscl.WirelessNode_frequency(self) - - def communicationProtocol(self): - return _mscl.WirelessNode_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.WirelessNode_firmwareVersion(self) - - def model(self): - return _mscl.WirelessNode_model(self) - - def serial(self): - return _mscl.WirelessNode_serial(self) - - def name(self): - return _mscl.WirelessNode_name(self) - - def microcontroller(self): - return _mscl.WirelessNode_microcontroller(self) - - def radioFeatures(self): - return _mscl.WirelessNode_radioFeatures(self) - - def dataStorageSize(self): - return _mscl.WirelessNode_dataStorageSize(self) - - def regionCode(self): - return _mscl.WirelessNode_regionCode(self) - - def ping(self): - return _mscl.WirelessNode_ping(self) - - def sleep(self): - return _mscl.WirelessNode_sleep(self) - - def cyclePower(self): - return _mscl.WirelessNode_cyclePower(self) - - def resetRadio(self): - return _mscl.WirelessNode_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.WirelessNode_changeFrequency(self, frequency) - - def setToIdle(self): - return _mscl.WirelessNode_setToIdle(self) - - def erase(self): - return _mscl.WirelessNode_erase(self) - - def startNonSyncSampling(self): - return _mscl.WirelessNode_startNonSyncSampling(self) - - def resendStartSyncSampling(self): - return _mscl.WirelessNode_resendStartSyncSampling(self) - - def clearHistogram(self): - return _mscl.WirelessNode_clearHistogram(self) - - def autoBalance(self, mask, targetPercent): - return _mscl.WirelessNode_autoBalance(self, mask, targetPercent) - - def autoCal_shmLink(self): - return _mscl.WirelessNode_autoCal_shmLink(self) - - def autoCal_shmLink201(self): - return _mscl.WirelessNode_autoCal_shmLink201(self) - - def autoShuntCal(self, mask, commandInfo): - return _mscl.WirelessNode_autoShuntCal(self, mask, commandInfo) - - def poll(self, mask): - return _mscl.WirelessNode_poll(self, mask) - - def readEeprom(self, location): - return _mscl.WirelessNode_readEeprom(self, location) - - def writeEeprom(self, location, value): - return _mscl.WirelessNode_writeEeprom(self, location, value) - - def getDiagnosticInfo(self): - return _mscl.WirelessNode_getDiagnosticInfo(self) - - def testCommunicationProtocol(self, protocol): - return _mscl.WirelessNode_testCommunicationProtocol(self, protocol) - - def verifyConfig(self, config, outIssues): - return _mscl.WirelessNode_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.WirelessNode_applyConfig(self, config) - - def getNumDatalogSessions(self): - return _mscl.WirelessNode_getNumDatalogSessions(self) - - def percentFull(self): - return _mscl.WirelessNode_percentFull(self) - - def getDefaultMode(self): - return _mscl.WirelessNode_getDefaultMode(self) - - def getInactivityTimeout(self): - return _mscl.WirelessNode_getInactivityTimeout(self) - - def getCheckRadioInterval(self): - return _mscl.WirelessNode_getCheckRadioInterval(self) - - def getTransmitPower(self): - return _mscl.WirelessNode_getTransmitPower(self) - - def getSamplingMode(self): - return _mscl.WirelessNode_getSamplingMode(self) - - def getActiveChannels(self): - return _mscl.WirelessNode_getActiveChannels(self) - - def getSampleRate(self): - return _mscl.WirelessNode_getSampleRate(self) - - def getNumSweeps(self): - return _mscl.WirelessNode_getNumSweeps(self) - - def getUnlimitedDuration(self): - return _mscl.WirelessNode_getUnlimitedDuration(self) - - def getDataFormat(self): - return _mscl.WirelessNode_getDataFormat(self) - - def getDataCollectionMethod(self): - return _mscl.WirelessNode_getDataCollectionMethod(self) - - def getTimeBetweenBursts(self): - return _mscl.WirelessNode_getTimeBetweenBursts(self) - - def getLostBeaconTimeout(self): - return _mscl.WirelessNode_getLostBeaconTimeout(self) - - def getInputRange(self, mask): - return _mscl.WirelessNode_getInputRange(self, mask) - - def getHardwareOffset(self, mask): - return _mscl.WirelessNode_getHardwareOffset(self, mask) - - def getAntiAliasingFilter(self, mask): - return _mscl.WirelessNode_getAntiAliasingFilter(self, mask) - - def getCfcFilterConfiguration(self): - return _mscl.WirelessNode_getCfcFilterConfiguration(self) - - def getLowPassFilter(self, mask): - return _mscl.WirelessNode_getLowPassFilter(self, mask) - - def getHighPassFilter(self, mask): - return _mscl.WirelessNode_getHighPassFilter(self, mask) - - def getDebounceFilter(self, mask): - return _mscl.WirelessNode_getDebounceFilter(self, mask) - - def getPullUpResistor(self, mask): - return _mscl.WirelessNode_getPullUpResistor(self, mask) - - def getSensorOutputMode(self): - return _mscl.WirelessNode_getSensorOutputMode(self) - - def getGaugeFactor(self, mask): - return _mscl.WirelessNode_getGaugeFactor(self, mask) - - def getExcitationVoltage(self): - return _mscl.WirelessNode_getExcitationVoltage(self) - - def getAdcVoltageRef(self): - return _mscl.WirelessNode_getAdcVoltageRef(self) - - def getGainAmplifierVoltageRef(self): - return _mscl.WirelessNode_getGainAmplifierVoltageRef(self) - - def getGaugeResistance(self): - return _mscl.WirelessNode_getGaugeResistance(self) - - def getNumActiveGauges(self): - return _mscl.WirelessNode_getNumActiveGauges(self) - - def getLowBatteryThreshold(self): - return _mscl.WirelessNode_getLowBatteryThreshold(self) - - def getLinearEquation(self, mask): - return _mscl.WirelessNode_getLinearEquation(self, mask) - - def getUnit(self, mask): - return _mscl.WirelessNode_getUnit(self, mask) - - def getEquationType(self, mask): - return _mscl.WirelessNode_getEquationType(self, mask) - - def getFactoryCalibrationLinearEq(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationLinearEq(self, mask) - - def getFactoryCalibrationUnit(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationUnit(self, mask) - - def getFactoryCalibrationEqType(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationEqType(self, mask) - - def getFilterSettlingTime(self, mask): - return _mscl.WirelessNode_getFilterSettlingTime(self, mask) - - def getThermocoupleType(self, mask): - return _mscl.WirelessNode_getThermocoupleType(self, mask) - - def getTempSensorOptions(self, mask): - return _mscl.WirelessNode_getTempSensorOptions(self, mask) - - def getFatigueOptions(self): - return _mscl.WirelessNode_getFatigueOptions(self) - - def getHistogramOptions(self): - return _mscl.WirelessNode_getHistogramOptions(self) - - def getActivitySense(self): - return _mscl.WirelessNode_getActivitySense(self) - - def getEventTriggerOptions(self): - return _mscl.WirelessNode_getEventTriggerOptions(self) - - def getDiagnosticInterval(self): - return _mscl.WirelessNode_getDiagnosticInterval(self) - - def getStorageLimitMode(self): - return _mscl.WirelessNode_getStorageLimitMode(self) - - def getSensorDelay(self): - return _mscl.WirelessNode_getSensorDelay(self) - - def getDataMode(self): - return _mscl.WirelessNode_getDataMode(self) - - def getDerivedDataRate(self): - return _mscl.WirelessNode_getDerivedDataRate(self) - - def getDerivedChannelMask(self, category): - return _mscl.WirelessNode_getDerivedChannelMask(self, category) - - def getDerivedVelocityUnit(self): - return _mscl.WirelessNode_getDerivedVelocityUnit(self) - -# Register WirelessNode in _mscl: -_mscl.WirelessNode_swigregister(WirelessNode) - -def WirelessNode_Mock(*args): - return _mscl.WirelessNode_Mock(*args) - -def WirelessNode_deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - -class DatalogDownloader(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.DatalogDownloader_swiginit(self, _mscl.new_DatalogDownloader(*args)) - __swig_destroy__ = _mscl.delete_DatalogDownloader - - def complete(self): - return _mscl.DatalogDownloader_complete(self) - - def percentComplete(self): - return _mscl.DatalogDownloader_percentComplete(self) - - def getNextData(self): - return _mscl.DatalogDownloader_getNextData(self) - - def metaDataUpdated(self): - return _mscl.DatalogDownloader_metaDataUpdated(self) - - def calCoefficientsUpdated(self): - return _mscl.DatalogDownloader_calCoefficientsUpdated(self) - - def startOfSession(self): - return _mscl.DatalogDownloader_startOfSession(self) - - def sessionIndex(self): - return _mscl.DatalogDownloader_sessionIndex(self) - - def sampleRate(self): - return _mscl.DatalogDownloader_sampleRate(self) - - def userString(self): - return _mscl.DatalogDownloader_userString(self) - - def calCoefficients(self): - return _mscl.DatalogDownloader_calCoefficients(self) - -# Register DatalogDownloader in _mscl: -_mscl.DatalogDownloader_swigregister(DatalogDownloader) - -class ArmedDataloggingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.ArmedDataloggingNetwork_swiginit(self, _mscl.new_ArmedDataloggingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.ArmedDataloggingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.ArmedDataloggingNetwork_removeNode(self, nodeAddress) - - def startSampling(self): - return _mscl.ArmedDataloggingNetwork_startSampling(self) - __swig_destroy__ = _mscl.delete_ArmedDataloggingNetwork - -# Register ArmedDataloggingNetwork in _mscl: -_mscl.ArmedDataloggingNetwork_swigregister(ArmedDataloggingNetwork) - -class SyncNetworkInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - status_OK = _mscl.SyncNetworkInfo_status_OK - status_PoorCommunication = _mscl.SyncNetworkInfo_status_PoorCommunication - status_DoesNotFit = _mscl.SyncNetworkInfo_status_DoesNotFit - status_Contention = _mscl.SyncNetworkInfo_status_Contention - - def __init__(self, node): - _mscl.SyncNetworkInfo_swiginit(self, _mscl.new_SyncNetworkInfo(node)) - - def status(self): - return _mscl.SyncNetworkInfo_status(self) - - def startedSampling(self): - return _mscl.SyncNetworkInfo_startedSampling(self) - - def configurationApplied(self): - return _mscl.SyncNetworkInfo_configurationApplied(self) - - def percentBandwidth(self): - return _mscl.SyncNetworkInfo_percentBandwidth(self) - - def tdmaAddress(self): - return _mscl.SyncNetworkInfo_tdmaAddress(self) - - def maxTdmaAddress(self): - return _mscl.SyncNetworkInfo_maxTdmaAddress(self) - - def transmissionPerGroup(self): - return _mscl.SyncNetworkInfo_transmissionPerGroup(self) - - def groupSize(self): - return _mscl.SyncNetworkInfo_groupSize(self) - __swig_destroy__ = _mscl.delete_SyncNetworkInfo - -# Register SyncNetworkInfo in _mscl: -_mscl.SyncNetworkInfo_swigregister(SyncNetworkInfo) - -class SyncSamplingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.SyncSamplingNetwork_swiginit(self, _mscl.new_SyncSamplingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.SyncSamplingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.SyncSamplingNetwork_removeNode(self, nodeAddress) - - def percentBandwidth(self): - return _mscl.SyncSamplingNetwork_percentBandwidth(self) - - def ok(self): - return _mscl.SyncSamplingNetwork_ok(self) - - def refresh(self): - return _mscl.SyncSamplingNetwork_refresh(self) - - def lossless(self, *args): - return _mscl.SyncSamplingNetwork_lossless(self, *args) - - def communicationProtocol(self, *args): - return _mscl.SyncSamplingNetwork_communicationProtocol(self, *args) - - def applyConfiguration(self): - return _mscl.SyncSamplingNetwork_applyConfiguration(self) - - def startSampling(self, *args): - return _mscl.SyncSamplingNetwork_startSampling(self, *args) - - def startSampling_noBeacon(self): - return _mscl.SyncSamplingNetwork_startSampling_noBeacon(self) - - def getNodeNetworkInfo(self, nodeAddress): - return _mscl.SyncSamplingNetwork_getNodeNetworkInfo(self, nodeAddress) - __swig_destroy__ = _mscl.delete_SyncSamplingNetwork - -# Register SyncSamplingNetwork in _mscl: -_mscl.SyncSamplingNetwork_swigregister(SyncSamplingNetwork) - -class NodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_NodeFeatures - - def normalizeNumSweeps(self, sweeps): - return _mscl.NodeFeatures_normalizeNumSweeps(self, sweeps) - - def normalizeTimeBetweenBursts(self, time): - return _mscl.NodeFeatures_normalizeTimeBetweenBursts(self, time) - - def channels(self): - return _mscl.NodeFeatures_channels(self) - - def channelGroups(self): - return _mscl.NodeFeatures_channelGroups(self) - - def channelType(self, channelNumber): - return _mscl.NodeFeatures_channelType(self, channelNumber) - - def supportsChannelSetting(self, setting, mask): - return _mscl.NodeFeatures_supportsChannelSetting(self, setting, mask) - - def supportsInputRangePerExcitationVoltage(self): - return _mscl.NodeFeatures_supportsInputRangePerExcitationVoltage(self) - - def supportsHardwareOffset(self): - return _mscl.NodeFeatures_supportsHardwareOffset(self) - - def supportsAntiAliasingFilter(self): - return _mscl.NodeFeatures_supportsAntiAliasingFilter(self) - - def supportsLowPassFilter(self): - return _mscl.NodeFeatures_supportsLowPassFilter(self) - - def supportsHighPassFilter(self): - return _mscl.NodeFeatures_supportsHighPassFilter(self) - - def supportsGaugeFactor(self): - return _mscl.NodeFeatures_supportsGaugeFactor(self) - - def supportsGaugeResistance(self): - return _mscl.NodeFeatures_supportsGaugeResistance(self) - - def supportsNumActiveGauges(self): - return _mscl.NodeFeatures_supportsNumActiveGauges(self) - - def supportsLostBeaconTimeout(self): - return _mscl.NodeFeatures_supportsLostBeaconTimeout(self) - - def supportsPullUpResistor(self): - return _mscl.NodeFeatures_supportsPullUpResistor(self) - - def supportsFilterSettlingTime(self): - return _mscl.NodeFeatures_supportsFilterSettlingTime(self) - - def supportsThermocoupleType(self): - return _mscl.NodeFeatures_supportsThermocoupleType(self) - - def supportsTempSensorOptions(self): - return _mscl.NodeFeatures_supportsTempSensorOptions(self) - - def supportsDebounceFilter(self): - return _mscl.NodeFeatures_supportsDebounceFilter(self) - - def supportsFatigueConfig(self): - return _mscl.NodeFeatures_supportsFatigueConfig(self) - - def supportsYoungsModConfig(self): - return _mscl.NodeFeatures_supportsYoungsModConfig(self) - - def supportsPoissonsRatioConfig(self): - return _mscl.NodeFeatures_supportsPoissonsRatioConfig(self) - - def supportsFatigueDebugModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueDebugModeConfig(self) - - def supportsFatigueModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueModeConfig(self) - - def supportsHistogramConfig(self): - return _mscl.NodeFeatures_supportsHistogramConfig(self) - - def supportsHistogramRateConfig(self): - return _mscl.NodeFeatures_supportsHistogramRateConfig(self) - - def supportsHistogramEnableConfig(self): - return _mscl.NodeFeatures_supportsHistogramEnableConfig(self) - - def supportsActivitySense(self): - return _mscl.NodeFeatures_supportsActivitySense(self) - - def supportsAutoBalance(self): - return _mscl.NodeFeatures_supportsAutoBalance(self) - - def supportsLegacyShuntCal(self): - return _mscl.NodeFeatures_supportsLegacyShuntCal(self) - - def supportsAutoCal_shm(self): - return _mscl.NodeFeatures_supportsAutoCal_shm(self) - - def supportsAutoCal_shm201(self): - return _mscl.NodeFeatures_supportsAutoCal_shm201(self) - - def supportsAutoShuntCal(self): - return _mscl.NodeFeatures_supportsAutoShuntCal(self) - - def supportsGetFactoryCal(self): - return _mscl.NodeFeatures_supportsGetFactoryCal(self) - - def supportsLimitedDuration(self): - return _mscl.NodeFeatures_supportsLimitedDuration(self) - - def supportsEventTrigger(self): - return _mscl.NodeFeatures_supportsEventTrigger(self) - - def supportsDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsDiagnosticInfo(self) - - def supportsLoggedData(self): - return _mscl.NodeFeatures_supportsLoggedData(self) - - def supportsPoll(self): - return _mscl.NodeFeatures_supportsPoll(self) - - def supportsSensorDelayConfig(self): - return _mscl.NodeFeatures_supportsSensorDelayConfig(self) - - def supportsSensorDelayAlwaysOn(self): - return _mscl.NodeFeatures_supportsSensorDelayAlwaysOn(self) - - def supportsSensorOutputMode(self): - return _mscl.NodeFeatures_supportsSensorOutputMode(self) - - def supportsCfcFilterConfiguration(self): - return _mscl.NodeFeatures_supportsCfcFilterConfiguration(self) - - def supportsChannel(self, channelNumber): - return _mscl.NodeFeatures_supportsChannel(self, channelNumber) - - def supportsSamplingMode(self, samplingMode): - return _mscl.NodeFeatures_supportsSamplingMode(self, samplingMode) - - def supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.NodeFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsDataFormat(self, dataFormat): - return _mscl.NodeFeatures_supportsDataFormat(self, dataFormat) - - def supportsDefaultMode(self, mode): - return _mscl.NodeFeatures_supportsDefaultMode(self, mode) - - def supportsDataCollectionMethod(self, collectionMethod): - return _mscl.NodeFeatures_supportsDataCollectionMethod(self, collectionMethod) - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.NodeFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsDataMode(self, dataMode): - return _mscl.NodeFeatures_supportsDataMode(self, dataMode) - - def supportsTransducerType(self, transducerType): - return _mscl.NodeFeatures_supportsTransducerType(self, transducerType) - - def supportsFatigueMode(self, mode): - return _mscl.NodeFeatures_supportsFatigueMode(self, mode) - - def supportsInputRange(self, *args): - return _mscl.NodeFeatures_supportsInputRange(self, *args) - - def supportsCentisecondEventDuration(self): - return _mscl.NodeFeatures_supportsCentisecondEventDuration(self) - - def supportsGetDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsGetDiagnosticInfo(self) - - def supportsNonSyncLogWithTimestamps(self): - return _mscl.NodeFeatures_supportsNonSyncLogWithTimestamps(self) - - def supportsDerivedCategory(self, category): - return _mscl.NodeFeatures_supportsDerivedCategory(self, category) - - def supportsRawDataMode(self): - return _mscl.NodeFeatures_supportsRawDataMode(self) - - def supportsDerivedDataMode(self): - return _mscl.NodeFeatures_supportsDerivedDataMode(self) - - def supportsDerivedVelocityUnitConfig(self): - return _mscl.NodeFeatures_supportsDerivedVelocityUnitConfig(self) - - def supportsExcitationVoltageConfig(self): - return _mscl.NodeFeatures_supportsExcitationVoltageConfig(self) - - def supportsLowBatteryThresholdConfig(self): - return _mscl.NodeFeatures_supportsLowBatteryThresholdConfig(self) - - def maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode) - - def maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode) - - def maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels): - return _mscl.NodeFeatures_maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels) - - def maxFilterSettlingTime(self, rate): - return _mscl.NodeFeatures_maxFilterSettlingTime(self, rate) - - def minInactivityTimeout(self): - return _mscl.NodeFeatures_minInactivityTimeout(self) - - def minLostBeaconTimeout(self): - return _mscl.NodeFeatures_minLostBeaconTimeout(self) - - def maxLostBeaconTimeout(self): - return _mscl.NodeFeatures_maxLostBeaconTimeout(self) - - def minCheckRadioInterval(self): - return _mscl.NodeFeatures_minCheckRadioInterval(self) - - def maxCheckRadioInterval(self): - return _mscl.NodeFeatures_maxCheckRadioInterval(self) - - def minSweeps(self): - return _mscl.NodeFeatures_minSweeps(self) - - def maxSweeps(self, samplingMode, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweeps(self, samplingMode, dataMode, dataFormat, channels) - - def maxSweepsPerBurst(self, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweepsPerBurst(self, dataMode, dataFormat, channels) - - def minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol): - return _mscl.NodeFeatures_minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol) - - def minSensorDelay(self): - return _mscl.NodeFeatures_minSensorDelay(self) - - def maxSensorDelay(self): - return _mscl.NodeFeatures_maxSensorDelay(self) - - def defaultSensorDelay(self): - return _mscl.NodeFeatures_defaultSensorDelay(self) - - def maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate): - return _mscl.NodeFeatures_maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate) - - def normalizeEventDuration(self, duration): - return _mscl.NodeFeatures_normalizeEventDuration(self, duration) - - def normalizeSensorDelay(self, delay): - return _mscl.NodeFeatures_normalizeSensorDelay(self, delay) - - def numDamageAngles(self): - return _mscl.NodeFeatures_numDamageAngles(self) - - def numSnCurveSegments(self): - return _mscl.NodeFeatures_numSnCurveSegments(self) - - def numEventTriggers(self): - return _mscl.NodeFeatures_numEventTriggers(self) - - def defaultModes(self): - return _mscl.NodeFeatures_defaultModes(self) - - def dataCollectionMethods(self): - return _mscl.NodeFeatures_dataCollectionMethods(self) - - def dataFormats(self): - return _mscl.NodeFeatures_dataFormats(self) - - def samplingModes(self): - return _mscl.NodeFeatures_samplingModes(self) - - def sampleRates(self, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_sampleRates(self, samplingMode, dataCollectionMethod, dataMode) - - def derivedDataRates(self): - return _mscl.NodeFeatures_derivedDataRates(self) - - def transmitPowers(self, *args): - return _mscl.NodeFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.NodeFeatures_commProtocols(self) - - def sensorOutputModes(self): - return _mscl.NodeFeatures_sensorOutputModes(self) - - def cfcFilters(self): - return _mscl.NodeFeatures_cfcFilters(self) - - def histogramTransmitRates(self): - return _mscl.NodeFeatures_histogramTransmitRates(self) - - def fatigueModes(self): - return _mscl.NodeFeatures_fatigueModes(self) - - def antiAliasingFilters(self): - return _mscl.NodeFeatures_antiAliasingFilters(self) - - def lowPassFilters(self): - return _mscl.NodeFeatures_lowPassFilters(self) - - def highPassFilters(self): - return _mscl.NodeFeatures_highPassFilters(self) - - def storageLimitModes(self): - return _mscl.NodeFeatures_storageLimitModes(self) - - def inputRanges(self, *args): - return _mscl.NodeFeatures_inputRanges(self, *args) - - def dataModes(self): - return _mscl.NodeFeatures_dataModes(self) - - def transducerTypes(self): - return _mscl.NodeFeatures_transducerTypes(self) - - def channelsPerDerivedCategory(self): - return _mscl.NodeFeatures_channelsPerDerivedCategory(self) - - def excitationVoltages(self): - return _mscl.NodeFeatures_excitationVoltages(self) - - def adcVoltageInputType(self): - return _mscl.NodeFeatures_adcVoltageInputType(self) - - def maxTransmitPower(self, *args): - return _mscl.NodeFeatures_maxTransmitPower(self, *args) - - def minTransmitPower(self, *args): - return _mscl.NodeFeatures_minTransmitPower(self, *args) - -# Register NodeFeatures in _mscl: -_mscl.NodeFeatures_swigregister(NodeFeatures) - -class BaseStationFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_BaseStationFeatures - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.BaseStationFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.BaseStationFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsButtons(self): - return _mscl.BaseStationFeatures_supportsButtons(self) - - def supportsAnalogPairing(self): - return _mscl.BaseStationFeatures_supportsAnalogPairing(self) - - def supportsBeaconStatus(self): - return _mscl.BaseStationFeatures_supportsBeaconStatus(self) - - def supportsRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsRfSweepMode(self) - - def supportsCustomRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsCustomRfSweepMode(self) - - def buttonCount(self): - return _mscl.BaseStationFeatures_buttonCount(self) - - def analogPortCount(self): - return _mscl.BaseStationFeatures_analogPortCount(self) - - def transmitPowers(self, *args): - return _mscl.BaseStationFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.BaseStationFeatures_commProtocols(self) - - def maxTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_maxTransmitPower(self, region, commProtocol) - - def minTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_minTransmitPower(self, region, commProtocol) - -# Register BaseStationFeatures in _mscl: -_mscl.BaseStationFeatures_swigregister(BaseStationFeatures) - -class EulerAngles(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EulerAngles_swiginit(self, _mscl.new_EulerAngles(*args)) - - def asMipFieldValues(self): - return _mscl.EulerAngles_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.EulerAngles_appendMipFieldValues(self, appendTo) - - def roll(self): - return _mscl.EulerAngles_roll(self) - - def pitch(self): - return _mscl.EulerAngles_pitch(self) - - def yaw(self): - return _mscl.EulerAngles_yaw(self) - - def heading(self): - return _mscl.EulerAngles_heading(self) - __swig_destroy__ = _mscl.delete_EulerAngles - -# Register EulerAngles in _mscl: -_mscl.EulerAngles_swigregister(EulerAngles) - -class Quaternion(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Quaternion_swiginit(self, _mscl.new_Quaternion(*args)) - - def asMipFieldValues(self): - return _mscl.Quaternion_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Quaternion_appendMipFieldValues(self, appendTo) - - def normalize(self): - return _mscl.Quaternion_normalize(self) - - def q0(self): - return _mscl.Quaternion_q0(self) - - def q1(self): - return _mscl.Quaternion_q1(self) - - def q2(self): - return _mscl.Quaternion_q2(self) - - def q3(self): - return _mscl.Quaternion_q3(self) - __swig_destroy__ = _mscl.delete_Quaternion - -# Register Quaternion in _mscl: -_mscl.Quaternion_swigregister(Quaternion) - -class Rotation(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EULER_ANGLES = _mscl.Rotation_EULER_ANGLES - QUATERNION = _mscl.Rotation_QUATERNION - - def __init__(self, *args): - _mscl.Rotation_swiginit(self, _mscl.new_Rotation(*args)) - - @staticmethod - def FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - - @staticmethod - def FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - - def asEulerAngles(self): - return _mscl.Rotation_asEulerAngles(self) - - def asQuaternion(self): - return _mscl.Rotation_asQuaternion(self) - - def asMipFieldValues(self, includeFormat=True): - return _mscl.Rotation_asMipFieldValues(self, includeFormat) - - def appendMipFieldValues(self, appendTo, includeFormat=True): - return _mscl.Rotation_appendMipFieldValues(self, appendTo, includeFormat) - - def format(self): - return _mscl.Rotation_format(self) - __swig_destroy__ = _mscl.delete_Rotation - -# Register Rotation in _mscl: -_mscl.Rotation_swigregister(Rotation) - -def Rotation_FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - -def Rotation_FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - -class Vec3f(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Vec3f_swiginit(self, _mscl.new_Vec3f(*args)) - __swig_destroy__ = _mscl.delete_Vec3f - - def fromMipFieldValues(self, data, offset=0): - return _mscl.Vec3f_fromMipFieldValues(self, data, offset) - - def asMipFieldValues(self): - return _mscl.Vec3f_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Vec3f_appendMipFieldValues(self, appendTo) - - def x(self, *args): - return _mscl.Vec3f_x(self, *args) - - def y(self, *args): - return _mscl.Vec3f_y(self, *args) - - def z(self, *args): - return _mscl.Vec3f_z(self, *args) - -# Register Vec3f in _mscl: -_mscl.Vec3f_swigregister(Vec3f) - -ECEF = _mscl.ECEF -LLH_NED = _mscl.LLH_NED -LOCAL = _mscl.LOCAL -VEHICLE = _mscl.VEHICLE -class GeometricVector(Vec3f): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - - @staticmethod - def VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - - def __init__(self, *args): - _mscl.GeometricVector_swiginit(self, _mscl.new_GeometricVector(*args)) - __swig_destroy__ = _mscl.delete_GeometricVector - - def fromMipFieldValues_includesFrame(self, data, offset=0): - return _mscl.GeometricVector_fromMipFieldValues_includesFrame(self, data, offset) - - def asMipFieldValues_includeFrame(self): - return _mscl.GeometricVector_asMipFieldValues_includeFrame(self) - - def appendMipFieldValues_includeFrame(self, appendTo): - return _mscl.GeometricVector_appendMipFieldValues_includeFrame(self, appendTo) - referenceFrame = property(_mscl.GeometricVector_referenceFrame_get, _mscl.GeometricVector_referenceFrame_set) - - def north(self, *args): - return _mscl.GeometricVector_north(self, *args) - - def east(self, *args): - return _mscl.GeometricVector_east(self, *args) - - def down(self, *args): - return _mscl.GeometricVector_down(self, *args) - -# Register GeometricVector in _mscl: -_mscl.GeometricVector_swigregister(GeometricVector) - -def GeometricVector_VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - -def GeometricVector_VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - -class PositionOffset(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.PositionOffset_swiginit(self, _mscl.new_PositionOffset(*args)) - __swig_destroy__ = _mscl.delete_PositionOffset - -# Register PositionOffset in _mscl: -_mscl.PositionOffset_swigregister(PositionOffset) - -class Velocity(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Velocity_swiginit(self, _mscl.new_Velocity(*args)) - __swig_destroy__ = _mscl.delete_Velocity - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - - @staticmethod - def NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - - @staticmethod - def Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -# Register Velocity in _mscl: -_mscl.Velocity_swigregister(Velocity) - -def Velocity_ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - -def Velocity_NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - -def Velocity_Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -class Position(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - - def __init__(self, *args): - _mscl.Position_swiginit(self, _mscl.new_Position(*args)) - __swig_destroy__ = _mscl.delete_Position - referenceFrame = property(_mscl.Position_referenceFrame_get, _mscl.Position_referenceFrame_set) - - def latitude(self, *args): - return _mscl.Position_latitude(self, *args) - - def longitude(self, *args): - return _mscl.Position_longitude(self, *args) - - def altitude(self, *args): - return _mscl.Position_altitude(self, *args) - - def height(self, *args): - return _mscl.Position_height(self, *args) - - def x(self, *args): - return _mscl.Position_x(self, *args) - - def y(self, *args): - return _mscl.Position_y(self, *args) - - def z(self, *args): - return _mscl.Position_z(self, *args) - -# Register Position in _mscl: -_mscl.Position_swigregister(Position) - -def Position_LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - -def Position_ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - -class GeometricUncertainty(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeometricUncertainty_swiginit(self, _mscl.new_GeometricUncertainty(*args)) - __swig_destroy__ = _mscl.delete_GeometricUncertainty - -# Register GeometricUncertainty in _mscl: -_mscl.GeometricUncertainty_swigregister(GeometricUncertainty) - -class MipModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_3dm_dh3 = _mscl.MipModels_node_3dm_dh3 - node_3dm_gx3_15 = _mscl.MipModels_node_3dm_gx3_15 - node_3dm_gx3_25 = _mscl.MipModels_node_3dm_gx3_25 - node_3dm_gx3_35 = _mscl.MipModels_node_3dm_gx3_35 - node_3dm_gx3_45 = _mscl.MipModels_node_3dm_gx3_45 - node_3dm_rq1_45_lt = _mscl.MipModels_node_3dm_rq1_45_lt - node_3dm_gx4_15 = _mscl.MipModels_node_3dm_gx4_15 - node_3dm_gx4_25 = _mscl.MipModels_node_3dm_gx4_25 - node_3dm_gx4_45 = _mscl.MipModels_node_3dm_gx4_45 - node_3dm_rq1_45_st = _mscl.MipModels_node_3dm_rq1_45_st - node_mv5_ar = _mscl.MipModels_node_mv5_ar - node_3dm_gx5_10 = _mscl.MipModels_node_3dm_gx5_10 - node_3dm_gx5_15 = _mscl.MipModels_node_3dm_gx5_15 - node_3dm_gx5_25 = _mscl.MipModels_node_3dm_gx5_25 - node_3dm_gx5_35 = _mscl.MipModels_node_3dm_gx5_35 - node_3dm_gx5_45 = _mscl.MipModels_node_3dm_gx5_45 - node_3dm_cv5_10 = _mscl.MipModels_node_3dm_cv5_10 - node_3dm_cv5_15 = _mscl.MipModels_node_3dm_cv5_15 - node_3dm_cv5_25 = _mscl.MipModels_node_3dm_cv5_25 - node_3dm_cv5_45 = _mscl.MipModels_node_3dm_cv5_45 - node_3dm_gq4_45 = _mscl.MipModels_node_3dm_gq4_45 - node_3dm_cx5_45 = _mscl.MipModels_node_3dm_cx5_45 - node_3dm_cx5_35 = _mscl.MipModels_node_3dm_cx5_35 - node_3dm_cx5_25 = _mscl.MipModels_node_3dm_cx5_25 - node_3dm_cx5_15 = _mscl.MipModels_node_3dm_cx5_15 - node_3dm_cx5_10 = _mscl.MipModels_node_3dm_cx5_10 - node_3dm_cl5_15 = _mscl.MipModels_node_3dm_cl5_15 - node_3dm_cl5_25 = _mscl.MipModels_node_3dm_cl5_25 - node_3dm_gq7 = _mscl.MipModels_node_3dm_gq7 - node_3dm_rtk = _mscl.MipModels_node_3dm_rtk - node_3dm_cv7_ahrs = _mscl.MipModels_node_3dm_cv7_ahrs - node_3dm_cv7_ar = _mscl.MipModels_node_3dm_cv7_ar - node_3dm_gv7_ahrs = _mscl.MipModels_node_3dm_gv7_ahrs - node_3dm_gv7_ar = _mscl.MipModels_node_3dm_gv7_ar - node_3dm_gv7_ins = _mscl.MipModels_node_3dm_gv7_ins - node_3dm_cv7_ins = _mscl.MipModels_node_3dm_cv7_ins - node_3dm_cv7_gnss_ins = _mscl.MipModels_node_3dm_cv7_gnss_ins - placeholder_matchAll = _mscl.MipModels_placeholder_matchAll - rtk_v1 = _mscl.MipModels_rtk_v1 - rtk_v2 = _mscl.MipModels_rtk_v2 - model_3dm_dh3 = _mscl.MipModels_model_3dm_dh3 - model_3dm_gx3_15 = _mscl.MipModels_model_3dm_gx3_15 - model_3dm_gx3_25 = _mscl.MipModels_model_3dm_gx3_25 - model_3dm_gx3_35 = _mscl.MipModels_model_3dm_gx3_35 - model_3dm_gx3_45 = _mscl.MipModels_model_3dm_gx3_45 - model_3dm_rq1_45_lt = _mscl.MipModels_model_3dm_rq1_45_lt - model_3dm_gx4_15 = _mscl.MipModels_model_3dm_gx4_15 - model_3dm_gx4_25 = _mscl.MipModels_model_3dm_gx4_25 - model_3dm_gx4_45 = _mscl.MipModels_model_3dm_gx4_45 - model_3dm_rq1_45_st = _mscl.MipModels_model_3dm_rq1_45_st - model_mv5_ar = _mscl.MipModels_model_mv5_ar - model_3dm_gx5_10 = _mscl.MipModels_model_3dm_gx5_10 - model_3dm_gx5_15 = _mscl.MipModels_model_3dm_gx5_15 - model_3dm_gx5_25 = _mscl.MipModels_model_3dm_gx5_25 - model_3dm_gx5_35 = _mscl.MipModels_model_3dm_gx5_35 - model_3dm_gx5_45 = _mscl.MipModels_model_3dm_gx5_45 - model_3dm_cv5_10 = _mscl.MipModels_model_3dm_cv5_10 - model_3dm_cv5_15 = _mscl.MipModels_model_3dm_cv5_15 - model_3dm_cv5_25 = _mscl.MipModels_model_3dm_cv5_25 - model_3dm_cv5_45 = _mscl.MipModels_model_3dm_cv5_45 - model_3dm_gq4_45 = _mscl.MipModels_model_3dm_gq4_45 - model_3dm_cx5_45 = _mscl.MipModels_model_3dm_cx5_45 - model_3dm_cx5_35 = _mscl.MipModels_model_3dm_cx5_35 - model_3dm_cx5_25 = _mscl.MipModels_model_3dm_cx5_25 - model_3dm_cx5_15 = _mscl.MipModels_model_3dm_cx5_15 - model_3dm_cx5_10 = _mscl.MipModels_model_3dm_cx5_10 - model_3dm_cl5_15 = _mscl.MipModels_model_3dm_cl5_15 - model_3dm_cl5_25 = _mscl.MipModels_model_3dm_cl5_25 - model_3dm_gq7 = _mscl.MipModels_model_3dm_gq7 - model_3dm_rtk_v1 = _mscl.MipModels_model_3dm_rtk_v1 - model_3dm_rtk = _mscl.MipModels_model_3dm_rtk - model_3dm_cv7_ahrs = _mscl.MipModels_model_3dm_cv7_ahrs - model_3dm_cv7_ar = _mscl.MipModels_model_3dm_cv7_ar - model_3dm_gv7_ahrs = _mscl.MipModels_model_3dm_gv7_ahrs - model_3dm_gv7_ar = _mscl.MipModels_model_3dm_gv7_ar - model_3dm_gv7_ins = _mscl.MipModels_model_3dm_gv7_ins - model_3dm_cv7_ins = _mscl.MipModels_model_3dm_cv7_ins - model_3dm_cv7_gnss_ins = _mscl.MipModels_model_3dm_cv7_gnss_ins - - @staticmethod - def modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - - @staticmethod - def modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - - @staticmethod - def modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - - @staticmethod - def nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - - @staticmethod - def modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - - @staticmethod - def nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - - @staticmethod - def modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - - @staticmethod - def stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - - def __init__(self): - _mscl.MipModels_swiginit(self, _mscl.new_MipModels()) - __swig_destroy__ = _mscl.delete_MipModels - -# Register MipModels in _mscl: -_mscl.MipModels_swigregister(MipModels) - -def MipModels_modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - -def MipModels_modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - -def MipModels_modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - -def MipModels_nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - -def MipModels_modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - -def MipModels_nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - -def MipModels_modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - -def MipModels_stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - -class MipModel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipModel_swiginit(self, _mscl.new_MipModel(*args)) - - def equals(self, compare): - return _mscl.MipModel_equals(self, compare) - - def __str__(self): - return _mscl.MipModel___str__(self) - - def nodeModel(self): - return _mscl.MipModel_nodeModel(self) - - def modifier(self): - return _mscl.MipModel_modifier(self) - - def modelNumber(self): - return _mscl.MipModel_modelNumber(self) - - def baseModel(self): - return _mscl.MipModel_baseModel(self) - __swig_destroy__ = _mscl.delete_MipModel - -# Register MipModel in _mscl: -_mscl.MipModel_swigregister(MipModel) -MipModel.mip_model_none = _mscl.cvar.MipModel_mip_model_none -MipModel.mip_model_3dm_dh3 = _mscl.cvar.MipModel_mip_model_3dm_dh3 -MipModel.mip_model_3dm_gx3_15 = _mscl.cvar.MipModel_mip_model_3dm_gx3_15 -MipModel.mip_model_3dm_gx3_25 = _mscl.cvar.MipModel_mip_model_3dm_gx3_25 -MipModel.mip_model_3dm_gx3_35 = _mscl.cvar.MipModel_mip_model_3dm_gx3_35 -MipModel.mip_model_3dm_gx3_45 = _mscl.cvar.MipModel_mip_model_3dm_gx3_45 -MipModel.mip_model_3dm_rq1_45_lt = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_lt -MipModel.mip_model_3dm_rq1_45_st = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_st -MipModel.mip_model_3dm_gx4_15 = _mscl.cvar.MipModel_mip_model_3dm_gx4_15 -MipModel.mip_model_3dm_gx4_25 = _mscl.cvar.MipModel_mip_model_3dm_gx4_25 -MipModel.mip_model_3dm_gx4_45 = _mscl.cvar.MipModel_mip_model_3dm_gx4_45 -MipModel.mip_model_mv5_ar = _mscl.cvar.MipModel_mip_model_mv5_ar -MipModel.mip_model_3dm_gx5_10 = _mscl.cvar.MipModel_mip_model_3dm_gx5_10 -MipModel.mip_model_3dm_gx5_15 = _mscl.cvar.MipModel_mip_model_3dm_gx5_15 -MipModel.mip_model_3dm_gx5_25 = _mscl.cvar.MipModel_mip_model_3dm_gx5_25 -MipModel.mip_model_3dm_gx5_35 = _mscl.cvar.MipModel_mip_model_3dm_gx5_35 -MipModel.mip_model_3dm_gx5_45 = _mscl.cvar.MipModel_mip_model_3dm_gx5_45 -MipModel.mip_model_3dm_cv5_10 = _mscl.cvar.MipModel_mip_model_3dm_cv5_10 -MipModel.mip_model_3dm_cv5_15 = _mscl.cvar.MipModel_mip_model_3dm_cv5_15 -MipModel.mip_model_3dm_cv5_25 = _mscl.cvar.MipModel_mip_model_3dm_cv5_25 -MipModel.mip_model_3dm_cv5_45 = _mscl.cvar.MipModel_mip_model_3dm_cv5_45 -MipModel.mip_model_3dm_gq4_45 = _mscl.cvar.MipModel_mip_model_3dm_gq4_45 -MipModel.mip_model_3dm_cx5_45 = _mscl.cvar.MipModel_mip_model_3dm_cx5_45 -MipModel.mip_model_3dm_cx5_35 = _mscl.cvar.MipModel_mip_model_3dm_cx5_35 -MipModel.mip_model_3dm_cx5_25 = _mscl.cvar.MipModel_mip_model_3dm_cx5_25 -MipModel.mip_model_3dm_cx5_15 = _mscl.cvar.MipModel_mip_model_3dm_cx5_15 -MipModel.mip_model_3dm_cx5_10 = _mscl.cvar.MipModel_mip_model_3dm_cx5_10 -MipModel.mip_model_3dm_cl5_15 = _mscl.cvar.MipModel_mip_model_3dm_cl5_15 -MipModel.mip_model_3dm_cl5_25 = _mscl.cvar.MipModel_mip_model_3dm_cl5_25 -MipModel.mip_model_3dm_gq7 = _mscl.cvar.MipModel_mip_model_3dm_gq7 -MipModel.mip_model_3dm_rtk_v1 = _mscl.cvar.MipModel_mip_model_3dm_rtk_v1 -MipModel.mip_model_3dm_rtk = _mscl.cvar.MipModel_mip_model_3dm_rtk -MipModel.mip_model_3dm_cv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_cv7_ahrs -MipModel.mip_model_3dm_cv7_ar = _mscl.cvar.MipModel_mip_model_3dm_cv7_ar -MipModel.mip_model_3dm_gv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_gv7_ahrs -MipModel.mip_model_3dm_gv7_ar = _mscl.cvar.MipModel_mip_model_3dm_gv7_ar -MipModel.mip_model_3dm_gv7_ins = _mscl.cvar.MipModel_mip_model_3dm_gv7_ins -MipModel.mip_model_3dm_cv7_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_ins -MipModel.mip_model_3dm_cv7_gnss_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_gnss_ins - -class DisplacementModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_digitalDemod = _mscl.DisplacementModels_node_digitalDemod - - def __init__(self): - _mscl.DisplacementModels_swiginit(self, _mscl.new_DisplacementModels()) - __swig_destroy__ = _mscl.delete_DisplacementModels - -# Register DisplacementModels in _mscl: -_mscl.DisplacementModels_swigregister(DisplacementModels) - -class MipTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CLASS_AHRS_IMU = _mscl.MipTypes_CLASS_AHRS_IMU - CLASS_GNSS = _mscl.MipTypes_CLASS_GNSS - CLASS_ESTFILTER = _mscl.MipTypes_CLASS_ESTFILTER - CLASS_DISPLACEMENT = _mscl.MipTypes_CLASS_DISPLACEMENT - CLASS_GNSS1 = _mscl.MipTypes_CLASS_GNSS1 - CLASS_GNSS2 = _mscl.MipTypes_CLASS_GNSS2 - CLASS_GNSS3 = _mscl.MipTypes_CLASS_GNSS3 - CLASS_RTK = _mscl.MipTypes_CLASS_RTK - CLASS_GNSS4 = _mscl.MipTypes_CLASS_GNSS4 - CLASS_GNSS5 = _mscl.MipTypes_CLASS_GNSS5 - CLASS_SYSTEM = _mscl.MipTypes_CLASS_SYSTEM - USE_NEW_SETTINGS = _mscl.MipTypes_USE_NEW_SETTINGS - READ_BACK_CURRENT_SETTINGS = _mscl.MipTypes_READ_BACK_CURRENT_SETTINGS - SAVE_CURRENT_SETTINGS = _mscl.MipTypes_SAVE_CURRENT_SETTINGS - LOAD_STARTUP_SETTINGS = _mscl.MipTypes_LOAD_STARTUP_SETTINGS - RESET_TO_DEFAULT = _mscl.MipTypes_RESET_TO_DEFAULT - USE_NEW_SETTINGS_NO_ACKNACK = _mscl.MipTypes_USE_NEW_SETTINGS_NO_ACKNACK - DISABLED = _mscl.MipTypes_DISABLED - ENABLED = _mscl.MipTypes_ENABLED - TIME_FRAME_WEEKS = _mscl.MipTypes_TIME_FRAME_WEEKS - TIME_FRAME_SECONDS = _mscl.MipTypes_TIME_FRAME_SECONDS - CMD_PING = _mscl.MipTypes_CMD_PING - CMD_SET_IDLE = _mscl.MipTypes_CMD_SET_IDLE - CMD_GET_DEVICE_INFO = _mscl.MipTypes_CMD_GET_DEVICE_INFO - CMD_GET_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_DESCRIPTOR_SETS - CMD_BUILT_IN_TEST = _mscl.MipTypes_CMD_BUILT_IN_TEST - CMD_RESUME = _mscl.MipTypes_CMD_RESUME - CMD_GET_EXT_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_EXT_DESCRIPTOR_SETS - CMD_COMM_PORT_SPEED = _mscl.MipTypes_CMD_COMM_PORT_SPEED - CMD_GPS_TIME_UPDATE = _mscl.MipTypes_CMD_GPS_TIME_UPDATE - CMD_RESET = _mscl.MipTypes_CMD_RESET - CMD_POLL_SENSOR_DATA = _mscl.MipTypes_CMD_POLL_SENSOR_DATA - CMD_POLL_GNSS_DATA = _mscl.MipTypes_CMD_POLL_GNSS_DATA - CMD_POLL_EF_DATA = _mscl.MipTypes_CMD_POLL_EF_DATA - CMD_GET_SENSOR_RATE_BASE = _mscl.MipTypes_CMD_GET_SENSOR_RATE_BASE - CMD_GET_GNSS_RATE_BASE = _mscl.MipTypes_CMD_GET_GNSS_RATE_BASE - CMD_GET_EF_RATE_BASE = _mscl.MipTypes_CMD_GET_EF_RATE_BASE - CMD_SENSOR_MESSAGE_FORMAT = _mscl.MipTypes_CMD_SENSOR_MESSAGE_FORMAT - CMD_GNSS_MESSAGE_FORMAT = _mscl.MipTypes_CMD_GNSS_MESSAGE_FORMAT - CMD_EF_MESSAGE_FORMAT = _mscl.MipTypes_CMD_EF_MESSAGE_FORMAT - CMD_NMEA_MESSAGE_FORMAT = _mscl.MipTypes_CMD_NMEA_MESSAGE_FORMAT - CMD_POLL = _mscl.MipTypes_CMD_POLL - CMD_GET_BASE_RATE = _mscl.MipTypes_CMD_GET_BASE_RATE - CMD_MESSAGE_FORMAT = _mscl.MipTypes_CMD_MESSAGE_FORMAT - CMD_FACTORY_STREAMING = _mscl.MipTypes_CMD_FACTORY_STREAMING - CMD_CONTINUOUS_DATA_STREAM = _mscl.MipTypes_CMD_CONTINUOUS_DATA_STREAM - CMD_RAW_RTCM_2_3_MESSAGE = _mscl.MipTypes_CMD_RAW_RTCM_2_3_MESSAGE - CMD_GNSS_CONSTELLATION_SETTINGS = _mscl.MipTypes_CMD_GNSS_CONSTELLATION_SETTINGS - CMD_GNSS_SBAS_SETTINGS = _mscl.MipTypes_CMD_GNSS_SBAS_SETTINGS - CMD_GNSS_ASSIST_FIX_CONTROL = _mscl.MipTypes_CMD_GNSS_ASSIST_FIX_CONTROL - CMD_GNSS_ASSIST_TIME_UPDATE = _mscl.MipTypes_CMD_GNSS_ASSIST_TIME_UPDATE - CMD_PPS_SOURCE = _mscl.MipTypes_CMD_PPS_SOURCE - CMD_EVENT_SUPPORT = _mscl.MipTypes_CMD_EVENT_SUPPORT - CMD_EVENT_CONTROL = _mscl.MipTypes_CMD_EVENT_CONTROL - CMD_EVENT_TRIGGER_STATUS = _mscl.MipTypes_CMD_EVENT_TRIGGER_STATUS - CMD_EVENT_ACTION_STATUS = _mscl.MipTypes_CMD_EVENT_ACTION_STATUS - CMD_EVENT_TRIGGER_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_TRIGGER_CONFIGURATION - CMD_EVENT_ACTION_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_ACTION_CONFIGURATION - CMD_SAVE_STARTUP_SETTINGS = _mscl.MipTypes_CMD_SAVE_STARTUP_SETTINGS - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM - CMD_GPS_DYNAMICS_MODE = _mscl.MipTypes_CMD_GPS_DYNAMICS_MODE - CMD_SENSOR_SIG_COND_SETTINGS = _mscl.MipTypes_CMD_SENSOR_SIG_COND_SETTINGS - CMD_SENSOR_TIMESTAMP = _mscl.MipTypes_CMD_SENSOR_TIMESTAMP - CMD_ACCEL_BIAS = _mscl.MipTypes_CMD_ACCEL_BIAS - CMD_GYRO_BIAS = _mscl.MipTypes_CMD_GYRO_BIAS - CMD_CAP_GYRO_BIAS = _mscl.MipTypes_CMD_CAP_GYRO_BIAS - CMD_MAG_HARD_IRON_OFFSET = _mscl.MipTypes_CMD_MAG_HARD_IRON_OFFSET - CMD_MAG_SOFT_IRON_MATRIX = _mscl.MipTypes_CMD_MAG_SOFT_IRON_MATRIX - CMD_CF_REALIGN_UP = _mscl.MipTypes_CMD_CF_REALIGN_UP - CMD_CF_REALIGN_NORTH = _mscl.MipTypes_CMD_CF_REALIGN_NORTH - CMD_CONING_SCULLING = _mscl.MipTypes_CMD_CONING_SCULLING - CMD_UART_BAUD_RATE = _mscl.MipTypes_CMD_UART_BAUD_RATE - CMD_GPIO_CONFIGURATION = _mscl.MipTypes_CMD_GPIO_CONFIGURATION - CMD_GPIO_STATE = _mscl.MipTypes_CMD_GPIO_STATE - CMD_ODOMETER_SETTINGS = _mscl.MipTypes_CMD_ODOMETER_SETTINGS - CMD_LOWPASS_FILTER_SETTINGS = _mscl.MipTypes_CMD_LOWPASS_FILTER_SETTINGS - CMD_COMPLEMENTARY_FILTER_SETTINGS = _mscl.MipTypes_CMD_COMPLEMENTARY_FILTER_SETTINGS - CMD_SENSOR_RANGE = _mscl.MipTypes_CMD_SENSOR_RANGE - CMD_SUPPORTED_SENSOR_RANGES = _mscl.MipTypes_CMD_SUPPORTED_SENSOR_RANGES - CMD_LOWPASS_ANTIALIASING_FILTER = _mscl.MipTypes_CMD_LOWPASS_ANTIALIASING_FILTER - CMD_DATA_STREAM_FORMAT = _mscl.MipTypes_CMD_DATA_STREAM_FORMAT - CMD_POWER_STATES = _mscl.MipTypes_CMD_POWER_STATES - CMD_GPS_STARTUP_SETTINGS = _mscl.MipTypes_CMD_GPS_STARTUP_SETTINGS - CMD_DEVICE_STATUS = _mscl.MipTypes_CMD_DEVICE_STATUS - CMD_EF_RESET_FILTER = _mscl.MipTypes_CMD_EF_RESET_FILTER - CMD_EF_INIT_ATTITUDE = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE - CMD_EF_INIT_HEADING = _mscl.MipTypes_CMD_EF_INIT_HEADING - CMD_EF_INIT_ATTITUDE_FROM_AHRS = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE_FROM_AHRS - CMD_EF_RUN_FILTER = _mscl.MipTypes_CMD_EF_RUN_FILTER - CMD_EF_VEHIC_DYNAMICS_MODE = _mscl.MipTypes_CMD_EF_VEHIC_DYNAMICS_MODE - CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER - CMD_EF_SENS_VEHIC_FRAME_OFFSET = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_OFFSET - CMD_EF_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_ANTENNA_OFFSET - CMD_EF_BIAS_EST_CTRL = _mscl.MipTypes_CMD_EF_BIAS_EST_CTRL - CMD_EF_GNSS_SRC_CTRL = _mscl.MipTypes_CMD_EF_GNSS_SRC_CTRL - CMD_EF_EXTERN_GNSS_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_GNSS_UPDATE - CMD_EF_EXTERN_HEADING_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_HEADING_UPDATE - CMD_EF_HEADING_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_HEADING_UPDATE_CTRL - CMD_EF_AUTO_INIT_CTRL = _mscl.MipTypes_CMD_EF_AUTO_INIT_CTRL - CMD_EF_ACCEL_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_ACCEL_WHT_NSE_STD_DEV - CMD_EF_GYRO_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_GYRO_WHT_NSE_STD_DEV - CMD_EF_ACCEL_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_ACCEL_BIAS_MODEL_PARAMS - CMD_EF_GYRO_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_GYRO_BIAS_MODEL_PARAMS - CMD_EF_ZERO_VEL_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_VEL_UPDATE_CTRL - CMD_EF_EXT_HEADING_UPDATE_TS = _mscl.MipTypes_CMD_EF_EXT_HEADING_UPDATE_TS - CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL - CMD_EF_TARE_ORIENT = _mscl.MipTypes_CMD_EF_TARE_ORIENT - CMD_EF_CMDED_ZERO_VEL_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_VEL_UPDATE - CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE - CMD_EF_SET_REF_POSITION = _mscl.MipTypes_CMD_EF_SET_REF_POSITION - CMD_EF_MAG_CAPTURE_AUTO_CAL = _mscl.MipTypes_CMD_EF_MAG_CAPTURE_AUTO_CAL - CMD_EF_GRAVITY_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_STD_DEV - CMD_EF_PRESS_ALT_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_PRESS_ALT_NOISE_STD_DEV - CMD_EF_GRAVITY_NOISE_MINIMUM = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_MINIMUM - CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE - CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE - CMD_EF_ENABLE_DISABLE_MEASUREMENTS = _mscl.MipTypes_CMD_EF_ENABLE_DISABLE_MEASUREMENTS - CMD_EF_MAG_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_MAG_NOISE_STD_DEV - CMD_EF_DECLINATION_SRC = _mscl.MipTypes_CMD_EF_DECLINATION_SRC - CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE - CMD_EF_ALTITUDE_AID_CTRL = _mscl.MipTypes_CMD_EF_ALTITUDE_AID_CTRL - CMD_EF_PITCH_ROLL_AID_CTRL = _mscl.MipTypes_CMD_EF_PITCH_ROLL_AID_CTRL - CMD_EF_INCLINATION_SRC = _mscl.MipTypes_CMD_EF_INCLINATION_SRC - CMD_EF_FIELD_MAGNITUDE_SRC = _mscl.MipTypes_CMD_EF_FIELD_MAGNITUDE_SRC - CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM - CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT - CMD_EF_AIDING_MEASUREMENT_ENABLE = _mscl.MipTypes_CMD_EF_AIDING_MEASUREMENT_ENABLE - CMD_EF_INITIALIZATION_CONFIG = _mscl.MipTypes_CMD_EF_INITIALIZATION_CONFIG - CMD_EF_ADAPTIVE_FILTER_OPTIONS = _mscl.MipTypes_CMD_EF_ADAPTIVE_FILTER_OPTIONS - CMD_EF_MULTI_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_MULTI_ANTENNA_OFFSET - CMD_EF_RELATIVE_POSITION_REF = _mscl.MipTypes_CMD_EF_RELATIVE_POSITION_REF - CMD_EF_LEVER_ARM_OFFSET_REF = _mscl.MipTypes_CMD_EF_LEVER_ARM_OFFSET_REF - CMD_EF_EXTERN_SPEED_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_SPEED_UPDATE - CMD_EF_SPEED_MEASUREMENT_OFFSET = _mscl.MipTypes_CMD_EF_SPEED_MEASUREMENT_OFFSET - CMD_EF_VERTICAL_GYRO_CONSTRAINT = _mscl.MipTypes_CMD_EF_VERTICAL_GYRO_CONSTRAINT - CMD_EF_WHEELED_VEHICLE_CONSTRAINT = _mscl.MipTypes_CMD_EF_WHEELED_VEHICLE_CONSTRAINT - CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL = _mscl.MipTypes_CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL - CMD_GNSS_RECEIVER_INFO = _mscl.MipTypes_CMD_GNSS_RECEIVER_INFO - CMD_GNSS_SIGNAL_CONFIG = _mscl.MipTypes_CMD_GNSS_SIGNAL_CONFIG - CMD_GNSS_SPARTN_CONFIG = _mscl.MipTypes_CMD_GNSS_SPARTN_CONFIG - CMD_GNSS_RTK_CONFIG = _mscl.MipTypes_CMD_GNSS_RTK_CONFIG - CMD_INTERFACE_CONTROL = _mscl.MipTypes_CMD_INTERFACE_CONTROL - CMD_COMMUNICATION_MODE = _mscl.MipTypes_CMD_COMMUNICATION_MODE - CMD_HARDWARE_CTRL = _mscl.MipTypes_CMD_HARDWARE_CTRL - CMD_GET_ANALOG_DISPLACEMENT_CALS = _mscl.MipTypes_CMD_GET_ANALOG_DISPLACEMENT_CALS - CMD_DISPLACEMENT_OUTPUT_RATE = _mscl.MipTypes_CMD_DISPLACEMENT_OUTPUT_RATE - CMD_DISPLACEMENT_DEVICE_TIME = _mscl.MipTypes_CMD_DISPLACEMENT_DEVICE_TIME - CMD_RTK_DEVICE_STATUS_FLAGS = _mscl.MipTypes_CMD_RTK_DEVICE_STATUS_FLAGS - CMD_RTK_ACTIVATION_CODE = _mscl.MipTypes_CMD_RTK_ACTIVATION_CODE - CMD_AIDING_FRAME_CONFIG = _mscl.MipTypes_CMD_AIDING_FRAME_CONFIG - CMD_AIDING_ECHO_CONTROL = _mscl.MipTypes_CMD_AIDING_ECHO_CONTROL - CMD_AIDING_POS_ECEF = _mscl.MipTypes_CMD_AIDING_POS_ECEF - CMD_AIDING_POS_LLH = _mscl.MipTypes_CMD_AIDING_POS_LLH - CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID - CMD_AIDING_VEL_ECEF = _mscl.MipTypes_CMD_AIDING_VEL_ECEF - CMD_AIDING_VEL_NED = _mscl.MipTypes_CMD_AIDING_VEL_NED - CMD_AIDING_VEL_BODY_FRAME = _mscl.MipTypes_CMD_AIDING_VEL_BODY_FRAME - CMD_AIDING_HEADING_TRUE = _mscl.MipTypes_CMD_AIDING_HEADING_TRUE - CMD_AIDING_MAGNETIC_FIELD = _mscl.MipTypes_CMD_AIDING_MAGNETIC_FIELD - CMD_AIDING_PRESSURE = _mscl.MipTypes_CMD_AIDING_PRESSURE - CH_FIELD_SENSOR_RAW_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_ACCEL_VEC - CH_FIELD_SENSOR_RAW_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_GYRO_VEC - CH_FIELD_SENSOR_RAW_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_MAG_VEC - CH_FIELD_SENSOR_SCALED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_ACCEL_VEC - CH_FIELD_SENSOR_SCALED_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_GYRO_VEC - CH_FIELD_SENSOR_SCALED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_MAG_VEC - CH_FIELD_SENSOR_DELTA_THETA_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_THETA_VEC - CH_FIELD_SENSOR_DELTA_VELOCITY_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_VELOCITY_VEC - CH_FIELD_SENSOR_ORIENTATION_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_MATRIX - CH_FIELD_SENSOR_ORIENTATION_QUATERNION = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_QUATERNION - CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX - CH_FIELD_SENSOR_EULER_ANGLES = _mscl.MipTypes_CH_FIELD_SENSOR_EULER_ANGLES - CH_FIELD_SENSOR_INTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_INTERNAL_TIMESTAMP - CH_FIELD_SENSOR_BEACONED_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_BEACONED_TIMESTAMP - CH_FIELD_SENSOR_STABILIZED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_MAG_VEC - CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC - CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP - CH_FIELD_SENSOR_TEMPERATURE_STATISTICS = _mscl.MipTypes_CH_FIELD_SENSOR_TEMPERATURE_STATISTICS - CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE - CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE - CH_FIELD_SENSOR_OVERRANGE_STATUS = _mscl.MipTypes_CH_FIELD_SENSOR_OVERRANGE_STATUS - CH_FIELD_SENSOR_ODOMETER_DATA = _mscl.MipTypes_CH_FIELD_SENSOR_ODOMETER_DATA - CH_FIELD_SENSOR_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EVENT_SOURCE - CH_FIELD_SENSOR_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_TICKS - CH_FIELD_SENSOR_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TICKS - CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP - CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_LLH_POSITION - CH_FIELD_GNSS_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_POSITION - CH_FIELD_GNSS_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_NED_VELOCITY - CH_FIELD_GNSS_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_VELOCITY - CH_FIELD_GNSS_DOP = _mscl.MipTypes_CH_FIELD_GNSS_DOP - CH_FIELD_GNSS_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_UTC_TIME - CH_FIELD_GNSS_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_GPS_TIME - CH_FIELD_GNSS_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO - CH_FIELD_GNSS_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_FIX_INFO - CH_FIELD_GNSS_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_HARDWARE_STATUS - CH_FIELD_GNSS_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_INFO - CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO_2 - CH_FIELD_GNSS_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_LEAP_SECONDS - CH_FIELD_GNSS_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_INFO - CH_FIELD_GNSS_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_CORRECTION - CH_FIELD_GNSS_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_RF_ERROR_DETECTION - CH_FIELD_GNSS_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_SATELLITE_STATUS - CH_FIELD_GNSS_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_RAW_OBSERVATION - CH_FIELD_GNSS_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_STATION_INFO - CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_EPHEMERIS - CH_FIELD_GNSS_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GLONASS_EPHEMERIS - CH_FIELD_GNSS_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_EPHEMERIS - CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_TICKS - CH_FIELD_GNSS_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TICKS - CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS - CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL - CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE - CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE - CH_FIELD_ESTFILTER_FILTER_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_FILTER_STATUS - CH_FIELD_ESTFILTER_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT - CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR - CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE - CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR - CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_MAG_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS - CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT - CH_FIELD_ESTFILTER_COMPENSATED_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_COMPENSATED_ACCEL - CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL - CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT - CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX - CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS_UNCERT - CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS - CH_FIELD_ESTFILTER_ECEF_VEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL - CH_FIELD_ESTFILTER_NED_RELATIVE_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_NED_RELATIVE_POS - CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS - CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS - CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY = _mscl.MipTypes_CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT - CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT - CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE - CH_FIELD_ESTFILTER_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_TICKS - CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS - CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_DISP_DISPLACEMENT_RAW = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_RAW - CH_FIELD_DISP_DISPLACEMENT_MM = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_MM - CH_FIELD_DISP_DISPLACEMENT_TS = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_TS - CH_FIELD_GNSS_1_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_LLH_POSITION - CH_FIELD_GNSS_1_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_POSITION - CH_FIELD_GNSS_1_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_NED_VELOCITY - CH_FIELD_GNSS_1_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_VELOCITY - CH_FIELD_GNSS_1_DOP = _mscl.MipTypes_CH_FIELD_GNSS_1_DOP - CH_FIELD_GNSS_1_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_UTC_TIME - CH_FIELD_GNSS_1_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_TIME - CH_FIELD_GNSS_1_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO - CH_FIELD_GNSS_1_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_FIX_INFO - CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_1_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_HARDWARE_STATUS - CH_FIELD_GNSS_1_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_INFO - CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_1_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO_2 - CH_FIELD_GNSS_1_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_LEAP_SECONDS - CH_FIELD_GNSS_1_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_INFO - CH_FIELD_GNSS_1_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_CORRECTION - CH_FIELD_GNSS_1_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_RF_ERROR_DETECTION - CH_FIELD_GNSS_1_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_SATELLITE_STATUS - CH_FIELD_GNSS_1_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_1_RAW_OBSERVATION - CH_FIELD_GNSS_1_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_STATION_INFO - CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_1_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_EPHEMERIS - CH_FIELD_GNSS_1_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GLONASS_EPHEMERIS - CH_FIELD_GNSS_1_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_EPHEMERIS - CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_1_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_TICKS - CH_FIELD_GNSS_1_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TICKS - CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_2_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_LLH_POSITION - CH_FIELD_GNSS_2_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_POSITION - CH_FIELD_GNSS_2_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_NED_VELOCITY - CH_FIELD_GNSS_2_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_VELOCITY - CH_FIELD_GNSS_2_DOP = _mscl.MipTypes_CH_FIELD_GNSS_2_DOP - CH_FIELD_GNSS_2_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_UTC_TIME - CH_FIELD_GNSS_2_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_TIME - CH_FIELD_GNSS_2_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO - CH_FIELD_GNSS_2_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_FIX_INFO - CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_2_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_HARDWARE_STATUS - CH_FIELD_GNSS_2_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_INFO - CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_2_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO_2 - CH_FIELD_GNSS_2_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_LEAP_SECONDS - CH_FIELD_GNSS_2_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_INFO - CH_FIELD_GNSS_2_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_CORRECTION - CH_FIELD_GNSS_2_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_RF_ERROR_DETECTION - CH_FIELD_GNSS_2_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_SATELLITE_STATUS - CH_FIELD_GNSS_2_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_2_RAW_OBSERVATION - CH_FIELD_GNSS_2_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_STATION_INFO - CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_2_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_EPHEMERIS - CH_FIELD_GNSS_2_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GLONASS_EPHEMERIS - CH_FIELD_GNSS_2_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_EPHEMERIS - CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_2_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_TICKS - CH_FIELD_GNSS_2_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TICKS - CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_3_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_LLH_POSITION - CH_FIELD_GNSS_3_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_POSITION - CH_FIELD_GNSS_3_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_NED_VELOCITY - CH_FIELD_GNSS_3_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_VELOCITY - CH_FIELD_GNSS_3_DOP = _mscl.MipTypes_CH_FIELD_GNSS_3_DOP - CH_FIELD_GNSS_3_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_UTC_TIME - CH_FIELD_GNSS_3_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_TIME - CH_FIELD_GNSS_3_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO - CH_FIELD_GNSS_3_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_FIX_INFO - CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_3_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_HARDWARE_STATUS - CH_FIELD_GNSS_3_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_INFO - CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_3_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO_2 - CH_FIELD_GNSS_3_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_LEAP_SECONDS - CH_FIELD_GNSS_3_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_INFO - CH_FIELD_GNSS_3_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_CORRECTION - CH_FIELD_GNSS_3_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_RF_ERROR_DETECTION - CH_FIELD_GNSS_3_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_SATELLITE_STATUS - CH_FIELD_GNSS_3_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_3_RAW_OBSERVATION - CH_FIELD_GNSS_3_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_STATION_INFO - CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_3_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_EPHEMERIS - CH_FIELD_GNSS_3_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GLONASS_EPHEMERIS - CH_FIELD_GNSS_3_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_EPHEMERIS - CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_3_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_TICKS - CH_FIELD_GNSS_3_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TICKS - CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_4_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_LLH_POSITION - CH_FIELD_GNSS_4_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_POSITION - CH_FIELD_GNSS_4_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_NED_VELOCITY - CH_FIELD_GNSS_4_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_VELOCITY - CH_FIELD_GNSS_4_DOP = _mscl.MipTypes_CH_FIELD_GNSS_4_DOP - CH_FIELD_GNSS_4_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_UTC_TIME - CH_FIELD_GNSS_4_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_TIME - CH_FIELD_GNSS_4_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO - CH_FIELD_GNSS_4_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_FIX_INFO - CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_4_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_HARDWARE_STATUS - CH_FIELD_GNSS_4_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_INFO - CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_4_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO_2 - CH_FIELD_GNSS_4_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_LEAP_SECONDS - CH_FIELD_GNSS_4_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_INFO - CH_FIELD_GNSS_4_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_CORRECTION - CH_FIELD_GNSS_4_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_RF_ERROR_DETECTION - CH_FIELD_GNSS_4_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_SATELLITE_STATUS - CH_FIELD_GNSS_4_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_4_RAW_OBSERVATION - CH_FIELD_GNSS_4_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_STATION_INFO - CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_4_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_EPHEMERIS - CH_FIELD_GNSS_4_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GLONASS_EPHEMERIS - CH_FIELD_GNSS_4_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_EPHEMERIS - CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_4_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_TICKS - CH_FIELD_GNSS_4_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TICKS - CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_5_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_LLH_POSITION - CH_FIELD_GNSS_5_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_POSITION - CH_FIELD_GNSS_5_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_NED_VELOCITY - CH_FIELD_GNSS_5_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_VELOCITY - CH_FIELD_GNSS_5_DOP = _mscl.MipTypes_CH_FIELD_GNSS_5_DOP - CH_FIELD_GNSS_5_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_UTC_TIME - CH_FIELD_GNSS_5_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_TIME - CH_FIELD_GNSS_5_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO - CH_FIELD_GNSS_5_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_FIX_INFO - CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_5_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_HARDWARE_STATUS - CH_FIELD_GNSS_5_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_INFO - CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_5_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO_2 - CH_FIELD_GNSS_5_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_LEAP_SECONDS - CH_FIELD_GNSS_5_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_INFO - CH_FIELD_GNSS_5_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_CORRECTION - CH_FIELD_GNSS_5_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_RF_ERROR_DETECTION - CH_FIELD_GNSS_5_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_SATELLITE_STATUS - CH_FIELD_GNSS_5_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_5_RAW_OBSERVATION - CH_FIELD_GNSS_5_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_STATION_INFO - CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_5_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_EPHEMERIS - CH_FIELD_GNSS_5_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GLONASS_EPHEMERIS - CH_FIELD_GNSS_5_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_EPHEMERIS - CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_5_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_TICKS - CH_FIELD_GNSS_5_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TICKS - CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_SYSTEM_BUILT_IN_TEST = _mscl.MipTypes_CH_FIELD_SYSTEM_BUILT_IN_TEST - CH_FIELD_SYSTEM_TIME_SYNC_STATUS = _mscl.MipTypes_CH_FIELD_SYSTEM_TIME_SYNC_STATUS - CH_FIELD_SYSTEM_GPIO_STATE = _mscl.MipTypes_CH_FIELD_SYSTEM_GPIO_STATE - CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE - CH_FIELD_SYSTEM_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_TICKS - CH_FIELD_SYSTEM_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TICKS - CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME - MIN_SHARED_FIELD_DESCRIPTOR = _mscl.MipTypes_MIN_SHARED_FIELD_DESCRIPTOR - CH_UNKNOWN = _mscl.MipTypes_CH_UNKNOWN - CH_X = _mscl.MipTypes_CH_X - CH_Y = _mscl.MipTypes_CH_Y - CH_Z = _mscl.MipTypes_CH_Z - CH_MATRIX = _mscl.MipTypes_CH_MATRIX - CH_QUATERNION = _mscl.MipTypes_CH_QUATERNION - CH_ROLL = _mscl.MipTypes_CH_ROLL - CH_PITCH = _mscl.MipTypes_CH_PITCH - CH_YAW = _mscl.MipTypes_CH_YAW - CH_TICK = _mscl.MipTypes_CH_TICK - CH_TIMESTAMP = _mscl.MipTypes_CH_TIMESTAMP - CH_STATUS = _mscl.MipTypes_CH_STATUS - CH_TIME_OF_WEEK = _mscl.MipTypes_CH_TIME_OF_WEEK - CH_WEEK_NUMBER = _mscl.MipTypes_CH_WEEK_NUMBER - CH_LATITUDE = _mscl.MipTypes_CH_LATITUDE - CH_LONGITUDE = _mscl.MipTypes_CH_LONGITUDE - CH_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CH_HEIGHT_ABOVE_ELLIPSOID - CH_HEIGHT_ABOVE_MSL = _mscl.MipTypes_CH_HEIGHT_ABOVE_MSL - CH_HORIZONTAL_ACCURACY = _mscl.MipTypes_CH_HORIZONTAL_ACCURACY - CH_VERTICAL_ACCURACY = _mscl.MipTypes_CH_VERTICAL_ACCURACY - CH_POSITION_ACCURACY = _mscl.MipTypes_CH_POSITION_ACCURACY - CH_NORTH = _mscl.MipTypes_CH_NORTH - CH_EAST = _mscl.MipTypes_CH_EAST - CH_DOWN = _mscl.MipTypes_CH_DOWN - CH_SPEED = _mscl.MipTypes_CH_SPEED - CH_GROUND_SPEED = _mscl.MipTypes_CH_GROUND_SPEED - CH_HEADING = _mscl.MipTypes_CH_HEADING - CH_SPEED_ACCURACY = _mscl.MipTypes_CH_SPEED_ACCURACY - CH_HEADING_ACCURACY = _mscl.MipTypes_CH_HEADING_ACCURACY - CH_VELOCITY_ACCURACY = _mscl.MipTypes_CH_VELOCITY_ACCURACY - CH_GEOMETRIC_DOP = _mscl.MipTypes_CH_GEOMETRIC_DOP - CH_POSITION_DOP = _mscl.MipTypes_CH_POSITION_DOP - CH_HORIZONTAL_DOP = _mscl.MipTypes_CH_HORIZONTAL_DOP - CH_VERTICAL_DOP = _mscl.MipTypes_CH_VERTICAL_DOP - CH_TIME_DOP = _mscl.MipTypes_CH_TIME_DOP - CH_NORTHING_DOP = _mscl.MipTypes_CH_NORTHING_DOP - CH_EASTING_DOP = _mscl.MipTypes_CH_EASTING_DOP - CH_FLAGS = _mscl.MipTypes_CH_FLAGS - CH_BIAS = _mscl.MipTypes_CH_BIAS - CH_DRIFT = _mscl.MipTypes_CH_DRIFT - CH_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_ACCURACY_ESTIMATE - CH_FIX_TYPE = _mscl.MipTypes_CH_FIX_TYPE - CH_SV_COUNT = _mscl.MipTypes_CH_SV_COUNT - CH_CHANNEL = _mscl.MipTypes_CH_CHANNEL - CH_ID = _mscl.MipTypes_CH_ID - CH_CARRIER_TO_NOISE_RATIO = _mscl.MipTypes_CH_CARRIER_TO_NOISE_RATIO - CH_AZIMUTH = _mscl.MipTypes_CH_AZIMUTH - CH_ELEVATION = _mscl.MipTypes_CH_ELEVATION - CH_SENSOR_STATE = _mscl.MipTypes_CH_SENSOR_STATE - CH_ANTENNA_STATE = _mscl.MipTypes_CH_ANTENNA_STATE - CH_ANTENNA_POWER = _mscl.MipTypes_CH_ANTENNA_POWER - CH_FILTER_STATE = _mscl.MipTypes_CH_FILTER_STATE - CH_DYNAMICS_MODE = _mscl.MipTypes_CH_DYNAMICS_MODE - CH_MAGNITUDE = _mscl.MipTypes_CH_MAGNITUDE - CH_HEADING_UNCERTAINTY = _mscl.MipTypes_CH_HEADING_UNCERTAINTY - CH_SOURCE = _mscl.MipTypes_CH_SOURCE - CH_INCLINATION = _mscl.MipTypes_CH_INCLINATION - CH_DECLINATION = _mscl.MipTypes_CH_DECLINATION - CH_PRESSURE = _mscl.MipTypes_CH_PRESSURE - CH_AGE = _mscl.MipTypes_CH_AGE - CH_NUM_CHANNELS = _mscl.MipTypes_CH_NUM_CHANNELS - CH_CORRECTION = _mscl.MipTypes_CH_CORRECTION - CH_RATE_CORRECTION = _mscl.MipTypes_CH_RATE_CORRECTION - CH_GEOMETRIC_ALTITUDE = _mscl.MipTypes_CH_GEOMETRIC_ALTITUDE - CH_GEOPOTENTIAL_ALTITUDE = _mscl.MipTypes_CH_GEOPOTENTIAL_ALTITUDE - CH_TEMPERATURE = _mscl.MipTypes_CH_TEMPERATURE - CH_DENSITY = _mscl.MipTypes_CH_DENSITY - CH_ALTITUDE = _mscl.MipTypes_CH_ALTITUDE - CH_DISPLACEMENT = _mscl.MipTypes_CH_DISPLACEMENT - CH_MAX_TEMP = _mscl.MipTypes_CH_MAX_TEMP - CH_MIN_TEMP = _mscl.MipTypes_CH_MIN_TEMP - CH_MEAN_TEMP = _mscl.MipTypes_CH_MEAN_TEMP - CH_BIAS_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_BIAS_ACCURACY_ESTIMATE - CH_DRIFT_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_DRIFT_ACCURACY_ESTIMATE - CH_SECONDS = _mscl.MipTypes_CH_SECONDS - CH_NUM_PACKETS = _mscl.MipTypes_CH_NUM_PACKETS - CH_GPS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GPS_CORRECTION_LATENCY - CH_GLONASS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GLONASS_CORRECTION_LATENCY - CH_GALILEO_CORRECTION_LATENCY = _mscl.MipTypes_CH_GALILEO_CORRECTION_LATENCY - CH_BEIDOU_CORRECTION_LATENCY = _mscl.MipTypes_CH_BEIDOU_CORRECTION_LATENCY - CH_HEIGHT = _mscl.MipTypes_CH_HEIGHT - CH_HEALTH = _mscl.MipTypes_CH_HEALTH - CH_INDEX = _mscl.MipTypes_CH_INDEX - CH_COUNT = _mscl.MipTypes_CH_COUNT - CH_SIGNAL_STRENGTH = _mscl.MipTypes_CH_SIGNAL_STRENGTH - CH_SIGNAL_QUALITY = _mscl.MipTypes_CH_SIGNAL_QUALITY - CH_RANGE = _mscl.MipTypes_CH_RANGE - CH_RANGE_UNC = _mscl.MipTypes_CH_RANGE_UNC - CH_ALPHA = _mscl.MipTypes_CH_ALPHA - CH_BETA = _mscl.MipTypes_CH_BETA - CH_DISTURBANCE_FLAGS = _mscl.MipTypes_CH_DISTURBANCE_FLAGS - CH_CARRIER_PHASE = _mscl.MipTypes_CH_CARRIER_PHASE - CH_CARRIER_PHASE_UNC = _mscl.MipTypes_CH_CARRIER_PHASE_UNC - CH_DOPPLER = _mscl.MipTypes_CH_DOPPLER - CH_DOPPLER_UNC = _mscl.MipTypes_CH_DOPPLER_UNC - CH_DELTA_TIME = _mscl.MipTypes_CH_DELTA_TIME - CH_DELTA_TICK = _mscl.MipTypes_CH_DELTA_TICK - CH_ERROR = _mscl.MipTypes_CH_ERROR - CH_ERROR_UNC = _mscl.MipTypes_CH_ERROR_UNC - CH_W = _mscl.MipTypes_CH_W - CH_M0 = _mscl.MipTypes_CH_M0 - CH_M1 = _mscl.MipTypes_CH_M1 - CH_M2 = _mscl.MipTypes_CH_M2 - CH_M3 = _mscl.MipTypes_CH_M3 - CH_M4 = _mscl.MipTypes_CH_M4 - CH_M5 = _mscl.MipTypes_CH_M5 - CH_M6 = _mscl.MipTypes_CH_M6 - CH_M7 = _mscl.MipTypes_CH_M7 - CH_M8 = _mscl.MipTypes_CH_M8 - CH_NANOSECONDS = _mscl.MipTypes_CH_NANOSECONDS - CH_VALID_FLAGS = _mscl.MipTypes_CH_VALID_FLAGS - CH_PPS_VALID = _mscl.MipTypes_CH_PPS_VALID - CH_LAST_PPS = _mscl.MipTypes_CH_LAST_PPS - CH_UDREI = _mscl.MipTypes_CH_UDREI - CH_PSEUDORANGE_CORRECTION = _mscl.MipTypes_CH_PSEUDORANGE_CORRECTION - CH_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_IONOSPHERIC_CORRECTION - CH_JAMMING_STATE = _mscl.MipTypes_CH_JAMMING_STATE - CH_SPOOFING_STATE = _mscl.MipTypes_CH_SPOOFING_STATE - CH_SYSTEM_ID = _mscl.MipTypes_CH_SYSTEM_ID - CH_SATELLITE_ID = _mscl.MipTypes_CH_SATELLITE_ID - CH_BIT_SYSTEM_GENERAL = _mscl.MipTypes_CH_BIT_SYSTEM_GENERAL - CH_BIT_SYSTEM_PROCESS = _mscl.MipTypes_CH_BIT_SYSTEM_PROCESS - CH_BIT_IMU_GENERAL = _mscl.MipTypes_CH_BIT_IMU_GENERAL - CH_BIT_IMU_SENSORS = _mscl.MipTypes_CH_BIT_IMU_SENSORS - CH_BIT_IMU_FACTORY_BITS = _mscl.MipTypes_CH_BIT_IMU_FACTORY_BITS - CH_BIT_FILTER_GENERAL = _mscl.MipTypes_CH_BIT_FILTER_GENERAL - CH_BIT_GNSS_GENERAL = _mscl.MipTypes_CH_BIT_GNSS_GENERAL - CH_BIT_GNSS_RECEIVERS = _mscl.MipTypes_CH_BIT_GNSS_RECEIVERS - - @staticmethod - def channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - - @staticmethod - def getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - - @staticmethod - def getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - - @staticmethod - def getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - - @staticmethod - def getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - - @staticmethod - def getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - - @staticmethod - def isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - - @staticmethod - def isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - - @staticmethod - def channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - - @staticmethod - def channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - - @staticmethod - def channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - - def __init__(self): - _mscl.MipTypes_swiginit(self, _mscl.new_MipTypes()) - __swig_destroy__ = _mscl.delete_MipTypes - -# Register MipTypes in _mscl: -_mscl.MipTypes_swigregister(MipTypes) - -def MipTypes_channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - -def MipTypes_getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - -def MipTypes_getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - -def MipTypes_getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - -def MipTypes_getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - -def MipTypes_getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - -def MipTypes_isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - -def MipTypes_isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - -def MipTypes_channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - -def MipTypes_channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - -def MipTypes_channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - -class MipChannelIdentifier(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - GNSS_RECEIVER_ID = _mscl.MipChannelIdentifier_GNSS_RECEIVER_ID - GNSS_BASE_STATION_ID = _mscl.MipChannelIdentifier_GNSS_BASE_STATION_ID - GNSS_CONSTELLATION = _mscl.MipChannelIdentifier_GNSS_CONSTELLATION - GNSS_SATELLITE_ID = _mscl.MipChannelIdentifier_GNSS_SATELLITE_ID - GNSS_SIGNAL_ID = _mscl.MipChannelIdentifier_GNSS_SIGNAL_ID - AIDING_MEASUREMENT_TYPE = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_TYPE - GNSS_RF_BAND = _mscl.MipChannelIdentifier_GNSS_RF_BAND - AIDING_MEASUREMENT_FRAME_ID = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_FRAME_ID - GNSS = _mscl.MipChannelIdentifier_GNSS - DUAL_ANTENNA = _mscl.MipChannelIdentifier_DUAL_ANTENNA - HEADING = _mscl.MipChannelIdentifier_HEADING - PRESSURE = _mscl.MipChannelIdentifier_PRESSURE - MAGNETOMETER = _mscl.MipChannelIdentifier_MAGNETOMETER - SPEED = _mscl.MipChannelIdentifier_SPEED - AIDING_POS_ECEF = _mscl.MipChannelIdentifier_AIDING_POS_ECEF - AIDING_POS_LLH = _mscl.MipChannelIdentifier_AIDING_POS_LLH - AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipChannelIdentifier_AIDING_HEIGHT_ABOVE_ELLIPSOID - AIDING_VEL_ECEF = _mscl.MipChannelIdentifier_AIDING_VEL_ECEF - AIDING_VEL_NED = _mscl.MipChannelIdentifier_AIDING_VEL_NED - AIDING_VEL_BODY_FRAME = _mscl.MipChannelIdentifier_AIDING_VEL_BODY_FRAME - AIDING_HEADING_TRUE = _mscl.MipChannelIdentifier_AIDING_HEADING_TRUE - AIDING_MAGNETIC_FIELD = _mscl.MipChannelIdentifier_AIDING_MAGNETIC_FIELD - AIDING_PRESSURE = _mscl.MipChannelIdentifier_AIDING_PRESSURE - UNKNOWN_CONSTELLATION = _mscl.MipChannelIdentifier_UNKNOWN_CONSTELLATION - GPS = _mscl.MipChannelIdentifier_GPS - GLONASS = _mscl.MipChannelIdentifier_GLONASS - GALILEO = _mscl.MipChannelIdentifier_GALILEO - BEIDOU = _mscl.MipChannelIdentifier_BEIDOU - UNKNOWN_SIGNAL = _mscl.MipChannelIdentifier_UNKNOWN_SIGNAL - GPS_L1CA = _mscl.MipChannelIdentifier_GPS_L1CA - GPS_L1P = _mscl.MipChannelIdentifier_GPS_L1P - GPS_L1Z = _mscl.MipChannelIdentifier_GPS_L1Z - GPS_L2CA = _mscl.MipChannelIdentifier_GPS_L2CA - GPS_L2P = _mscl.MipChannelIdentifier_GPS_L2P - GPS_L2Z = _mscl.MipChannelIdentifier_GPS_L2Z - GPS_L2CL = _mscl.MipChannelIdentifier_GPS_L2CL - GPS_L2CM = _mscl.MipChannelIdentifier_GPS_L2CM - GPS_L2CML = _mscl.MipChannelIdentifier_GPS_L2CML - GPS_L5I = _mscl.MipChannelIdentifier_GPS_L5I - GPS_L5Q = _mscl.MipChannelIdentifier_GPS_L5Q - GPS_L5IQ = _mscl.MipChannelIdentifier_GPS_L5IQ - GPS_L1CD = _mscl.MipChannelIdentifier_GPS_L1CD - GPS_L1CP = _mscl.MipChannelIdentifier_GPS_L1CP - GPS_L1CDP = _mscl.MipChannelIdentifier_GPS_L1CDP - GLONASS_G1CA = _mscl.MipChannelIdentifier_GLONASS_G1CA - GLONASS_G1P = _mscl.MipChannelIdentifier_GLONASS_G1P - GLONASS_G2C = _mscl.MipChannelIdentifier_GLONASS_G2C - GLONASS_G2P = _mscl.MipChannelIdentifier_GLONASS_G2P - GALILEO_E1C = _mscl.MipChannelIdentifier_GALILEO_E1C - GALILEO_E1A = _mscl.MipChannelIdentifier_GALILEO_E1A - GALILEO_E1B = _mscl.MipChannelIdentifier_GALILEO_E1B - GALILEO_E1BC = _mscl.MipChannelIdentifier_GALILEO_E1BC - GALILEO_E1ABC = _mscl.MipChannelIdentifier_GALILEO_E1ABC - GALILEO_E6C = _mscl.MipChannelIdentifier_GALILEO_E6C - GALILEO_E6A = _mscl.MipChannelIdentifier_GALILEO_E6A - GALILEO_E6B = _mscl.MipChannelIdentifier_GALILEO_E6B - GALILEO_E6BC = _mscl.MipChannelIdentifier_GALILEO_E6BC - GALILEO_E6ABC = _mscl.MipChannelIdentifier_GALILEO_E6ABC - GALILEO_E5BI = _mscl.MipChannelIdentifier_GALILEO_E5BI - GALILEO_E5BQ = _mscl.MipChannelIdentifier_GALILEO_E5BQ - GALILEO_E5BIQ = _mscl.MipChannelIdentifier_GALILEO_E5BIQ - GALILEO_E5ABI = _mscl.MipChannelIdentifier_GALILEO_E5ABI - GALILEO_E5ABQ = _mscl.MipChannelIdentifier_GALILEO_E5ABQ - GALILEO_E5ABIQ = _mscl.MipChannelIdentifier_GALILEO_E5ABIQ - GALILEO_E5AI = _mscl.MipChannelIdentifier_GALILEO_E5AI - GALILEO_E5AQ = _mscl.MipChannelIdentifier_GALILEO_E5AQ - GALILEO_E5AIQ = _mscl.MipChannelIdentifier_GALILEO_E5AIQ - SBAS_L1CA = _mscl.MipChannelIdentifier_SBAS_L1CA - SBAS_L5I = _mscl.MipChannelIdentifier_SBAS_L5I - SBAS_L5Q = _mscl.MipChannelIdentifier_SBAS_L5Q - SBAS_L5IQ = _mscl.MipChannelIdentifier_SBAS_L5IQ - QZSS_L1CA = _mscl.MipChannelIdentifier_QZSS_L1CA - QZSS_LEXS = _mscl.MipChannelIdentifier_QZSS_LEXS - QZSS_LEXL = _mscl.MipChannelIdentifier_QZSS_LEXL - QZSS_LEXSL = _mscl.MipChannelIdentifier_QZSS_LEXSL - QZSS_L2CM = _mscl.MipChannelIdentifier_QZSS_L2CM - QZSS_L2CL = _mscl.MipChannelIdentifier_QZSS_L2CL - QZSS_L2CML = _mscl.MipChannelIdentifier_QZSS_L2CML - QZSS_L5I = _mscl.MipChannelIdentifier_QZSS_L5I - QZSS_L5Q = _mscl.MipChannelIdentifier_QZSS_L5Q - QZSS_L5IQ = _mscl.MipChannelIdentifier_QZSS_L5IQ - QZSS_L1CD = _mscl.MipChannelIdentifier_QZSS_L1CD - QZSS_L1CP = _mscl.MipChannelIdentifier_QZSS_L1CP - QZSS_L1CDP = _mscl.MipChannelIdentifier_QZSS_L1CDP - BEIDOU_B1I = _mscl.MipChannelIdentifier_BEIDOU_B1I - BEIDOU_B1Q = _mscl.MipChannelIdentifier_BEIDOU_B1Q - BEIDOU_B1IQ = _mscl.MipChannelIdentifier_BEIDOU_B1IQ - BEIDOU_B3I = _mscl.MipChannelIdentifier_BEIDOU_B3I - BEIDOU_B3Q = _mscl.MipChannelIdentifier_BEIDOU_B3Q - BEIDOU_B3IQ = _mscl.MipChannelIdentifier_BEIDOU_B3IQ - BEIDOU_B2I = _mscl.MipChannelIdentifier_BEIDOU_B2I - BEIDOU_B2Q = _mscl.MipChannelIdentifier_BEIDOU_B2Q - BEIDOU_B2IQ = _mscl.MipChannelIdentifier_BEIDOU_B2IQ - UNKNOWN_RF_BAND = _mscl.MipChannelIdentifier_UNKNOWN_RF_BAND - RF_BAND_L1 = _mscl.MipChannelIdentifier_RF_BAND_L1 - RF_BAND_L2 = _mscl.MipChannelIdentifier_RF_BAND_L2 - RF_BAND_L5 = _mscl.MipChannelIdentifier_RF_BAND_L5 - - def __init__(self, *args): - _mscl.MipChannelIdentifier_swiginit(self, _mscl.new_MipChannelIdentifier(*args)) - __swig_destroy__ = _mscl.delete_MipChannelIdentifier - - def identifierType(self): - return _mscl.MipChannelIdentifier_identifierType(self) - - def id(self): - return _mscl.MipChannelIdentifier_id(self) - - def hasSpecifier(self): - return _mscl.MipChannelIdentifier_hasSpecifier(self) - - def specifier(self): - return _mscl.MipChannelIdentifier_specifier(self) - - def name(self, standardizedFormat=True): - return _mscl.MipChannelIdentifier_name(self, standardizedFormat) - -# Register MipChannelIdentifier in _mscl: -_mscl.MipChannelIdentifier_swigregister(MipChannelIdentifier) - -class MipCommandBytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - id = property(_mscl.MipCommandBytes_id_get, _mscl.MipCommandBytes_id_set) - commands = property(_mscl.MipCommandBytes_commands_get, _mscl.MipCommandBytes_commands_set) - buildCmdFailed = property(_mscl.MipCommandBytes_buildCmdFailed_get, _mscl.MipCommandBytes_buildCmdFailed_set) - sendCmdFailed = property(_mscl.MipCommandBytes_sendCmdFailed_get, _mscl.MipCommandBytes_sendCmdFailed_set) - - def __init__(self, *args): - _mscl.MipCommandBytes_swiginit(self, _mscl.new_MipCommandBytes(*args)) - - def add(self, cmd): - return _mscl.MipCommandBytes_add(self, cmd) - - def valid(self): - return _mscl.MipCommandBytes_valid(self) - __swig_destroy__ = _mscl.delete_MipCommandBytes - -# Register MipCommandBytes in _mscl: -_mscl.MipCommandBytes_swigregister(MipCommandBytes) - -class AidingMeasurementInput(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - ACK_NACK = _mscl.AidingMeasurementInput_ACK_NACK - ECHO_INPUT = _mscl.AidingMeasurementInput_ECHO_INPUT - - def toMipFieldValues(self): - return _mscl.AidingMeasurementInput_toMipFieldValues(self) - - def timestamp(self, *args): - return _mscl.AidingMeasurementInput_timestamp(self, *args) - - def timebase(self): - return _mscl.AidingMeasurementInput_timebase(self) - - def frameId(self, *args): - return _mscl.AidingMeasurementInput_frameId(self, *args) - - def validFlags(self, *args): - return _mscl.AidingMeasurementInput_validFlags(self, *args) - -# Register AidingMeasurementInput in _mscl: -_mscl.AidingMeasurementInput_swigregister(AidingMeasurementInput) - -class AidingMeasurementPosition(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementPosition_X - LATITUDE = _mscl.AidingMeasurementPosition_LATITUDE - Y = _mscl.AidingMeasurementPosition_Y - LONGITUDE = _mscl.AidingMeasurementPosition_LONGITUDE - Z = _mscl.AidingMeasurementPosition_Z - HEIGHT = _mscl.AidingMeasurementPosition_HEIGHT - ALTITUDE = _mscl.AidingMeasurementPosition_ALTITUDE - - def __init__(self, *args): - _mscl.AidingMeasurementPosition_swiginit(self, _mscl.new_AidingMeasurementPosition(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPosition - - def position(self, *args): - return _mscl.AidingMeasurementPosition_position(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPosition_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementPosition_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPosition_valid(self, *args) - -# Register AidingMeasurementPosition in _mscl: -_mscl.AidingMeasurementPosition_swigregister(AidingMeasurementPosition) - -class AidingMeasurementHeight(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeight_swiginit(self, _mscl.new_AidingMeasurementHeight(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeight - - def height(self, *args): - return _mscl.AidingMeasurementHeight_height(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeight_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeight_valid(self, *args) - -# Register AidingMeasurementHeight in _mscl: -_mscl.AidingMeasurementHeight_swigregister(AidingMeasurementHeight) - -class AidingMeasurementVelocity(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementVelocity_X - NORTH = _mscl.AidingMeasurementVelocity_NORTH - Y = _mscl.AidingMeasurementVelocity_Y - EAST = _mscl.AidingMeasurementVelocity_EAST - Z = _mscl.AidingMeasurementVelocity_Z - DOWN = _mscl.AidingMeasurementVelocity_DOWN - - def __init__(self, *args): - _mscl.AidingMeasurementVelocity_swiginit(self, _mscl.new_AidingMeasurementVelocity(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementVelocity - - def velocity(self, *args): - return _mscl.AidingMeasurementVelocity_velocity(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementVelocity_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementVelocity_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementVelocity_valid(self, *args) - -# Register AidingMeasurementVelocity in _mscl: -_mscl.AidingMeasurementVelocity_swigregister(AidingMeasurementVelocity) - -class AidingMeasurementHeading(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeading_swiginit(self, _mscl.new_AidingMeasurementHeading(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeading - - def heading(self, *args): - return _mscl.AidingMeasurementHeading_heading(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeading_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeading_valid(self, *args) - -# Register AidingMeasurementHeading in _mscl: -_mscl.AidingMeasurementHeading_swigregister(AidingMeasurementHeading) - -class AidingMeasurementMagneticField(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementMagneticField_X - Y = _mscl.AidingMeasurementMagneticField_Y - Z = _mscl.AidingMeasurementMagneticField_Z - - def __init__(self, *args): - _mscl.AidingMeasurementMagneticField_swiginit(self, _mscl.new_AidingMeasurementMagneticField(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementMagneticField - - def magneticField(self, *args): - return _mscl.AidingMeasurementMagneticField_magneticField(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementMagneticField_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementMagneticField_valid(self, *args) - -# Register AidingMeasurementMagneticField in _mscl: -_mscl.AidingMeasurementMagneticField_swigregister(AidingMeasurementMagneticField) - -class AidingMeasurementPressure(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementPressure_swiginit(self, _mscl.new_AidingMeasurementPressure(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPressure - - def pressure(self, *args): - return _mscl.AidingMeasurementPressure_pressure(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPressure_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPressure_valid(self, *args) - -# Register AidingMeasurementPressure in _mscl: -_mscl.AidingMeasurementPressure_swigregister(AidingMeasurementPressure) - -class GnssReceiverInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GnssReceiverInfo_swiginit(self, _mscl.new_GnssReceiverInfo(*args)) - id = property(_mscl.GnssReceiverInfo_id_get, _mscl.GnssReceiverInfo_id_set) - targetDataClass = property(_mscl.GnssReceiverInfo_targetDataClass_get, _mscl.GnssReceiverInfo_targetDataClass_set) - description = property(_mscl.GnssReceiverInfo_description_get, _mscl.GnssReceiverInfo_description_set) - module = property(_mscl.GnssReceiverInfo_module_get, _mscl.GnssReceiverInfo_module_set) - fwId = property(_mscl.GnssReceiverInfo_fwId_get, _mscl.GnssReceiverInfo_fwId_set) - fwVersion = property(_mscl.GnssReceiverInfo_fwVersion_get, _mscl.GnssReceiverInfo_fwVersion_set) - __swig_destroy__ = _mscl.delete_GnssReceiverInfo - -# Register GnssReceiverInfo in _mscl: -_mscl.GnssReceiverInfo_swigregister(GnssReceiverInfo) -GnssReceiverInfo.INFO_NOT_FOUND = _mscl.cvar.GnssReceiverInfo_INFO_NOT_FOUND - -class DeviceCommPort(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SPECIAL = _mscl.DeviceCommPort_SPECIAL - UART = _mscl.DeviceCommPort_UART - USB = _mscl.DeviceCommPort_USB - NONE = _mscl.DeviceCommPort_NONE - MIP_COMMANDS = _mscl.DeviceCommPort_MIP_COMMANDS - MIP_DATA = _mscl.DeviceCommPort_MIP_DATA - NMEA = _mscl.DeviceCommPort_NMEA - RTCM = _mscl.DeviceCommPort_RTCM - SPARTN = _mscl.DeviceCommPort_SPARTN - ALL = _mscl.DeviceCommPort_ALL - - def __init__(self, *args): - _mscl.DeviceCommPort_swiginit(self, _mscl.new_DeviceCommPort(*args)) - - def interfaceId(self): - return _mscl.DeviceCommPort_interfaceId(self) - type = property(_mscl.DeviceCommPort_type_get, _mscl.DeviceCommPort_type_set) - id = property(_mscl.DeviceCommPort_id_get, _mscl.DeviceCommPort_id_set) - inputProtocols = property(_mscl.DeviceCommPort_inputProtocols_get, _mscl.DeviceCommPort_inputProtocols_set) - outputProtocols = property(_mscl.DeviceCommPort_outputProtocols_get, _mscl.DeviceCommPort_outputProtocols_set) - __swig_destroy__ = _mscl.delete_DeviceCommPort - -# Register DeviceCommPort in _mscl: -_mscl.DeviceCommPort_swigregister(DeviceCommPort) - -class EventTypeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTypeInfo_swiginit(self, _mscl.new_EventTypeInfo(*args)) - type = property(_mscl.EventTypeInfo_type_get, _mscl.EventTypeInfo_type_set) - maxInstances = property(_mscl.EventTypeInfo_maxInstances_get, _mscl.EventTypeInfo_maxInstances_set) - __swig_destroy__ = _mscl.delete_EventTypeInfo - -# Register EventTypeInfo in _mscl: -_mscl.EventTypeInfo_swigregister(EventTypeInfo) - -class EventSupportInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - TRIGGERS = _mscl.EventSupportInfo_TRIGGERS - ACTIONS = _mscl.EventSupportInfo_ACTIONS - query = property(_mscl.EventSupportInfo_query_get, _mscl.EventSupportInfo_query_set) - maxInstances = property(_mscl.EventSupportInfo_maxInstances_get, _mscl.EventSupportInfo_maxInstances_set) - entries = property(_mscl.EventSupportInfo_entries_get, _mscl.EventSupportInfo_entries_set) - - def __init__(self): - _mscl.EventSupportInfo_swiginit(self, _mscl.new_EventSupportInfo()) - __swig_destroy__ = _mscl.delete_EventSupportInfo - -# Register EventSupportInfo in _mscl: -_mscl.EventSupportInfo_swigregister(EventSupportInfo) - -class SensorRange(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ALL = _mscl.SensorRange_ALL - ACCEL_G = _mscl.SensorRange_ACCEL_G - GYRO_DPS = _mscl.SensorRange_GYRO_DPS - MAG_GAUSS = _mscl.SensorRange_MAG_GAUSS - PRESSURE_HPA = _mscl.SensorRange_PRESSURE_HPA - - def __init__(self): - _mscl.SensorRange_swiginit(self, _mscl.new_SensorRange()) - - def type(self): - return _mscl.SensorRange_type(self) - - def range(self): - return _mscl.SensorRange_range(self) - - def id(self): - return _mscl.SensorRange_id(self) - __swig_destroy__ = _mscl.delete_SensorRange - -# Register SensorRange in _mscl: -_mscl.SensorRange_swigregister(SensorRange) - -class SupportedSensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.SupportedSensorRanges_swiginit(self, _mscl.new_SupportedSensorRanges()) - - def options(self): - return _mscl.SupportedSensorRanges_options(self) - - def lookupRecommended(self, type, range): - return _mscl.SupportedSensorRanges_lookupRecommended(self, type, range) - __swig_destroy__ = _mscl.delete_SupportedSensorRanges - -# Register SupportedSensorRanges in _mscl: -_mscl.SupportedSensorRanges_swigregister(SupportedSensorRanges) - -class InertialTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - PORTABLE_VEHICLE = _mscl.InertialTypes_PORTABLE_VEHICLE - AUTOMOTIVE_VEHICLE = _mscl.InertialTypes_AUTOMOTIVE_VEHICLE - AIRBORNE_VEHICLE = _mscl.InertialTypes_AIRBORNE_VEHICLE - AIRBORNE_HIGH_G_VEHICLE = _mscl.InertialTypes_AIRBORNE_HIGH_G_VEHICLE - GPS_PORTABLE = _mscl.InertialTypes_GPS_PORTABLE - GPS_STATIONARY = _mscl.InertialTypes_GPS_STATIONARY - GPS_PEDESTRIAN = _mscl.InertialTypes_GPS_PEDESTRIAN - GPS_AUTOMOTIVE = _mscl.InertialTypes_GPS_AUTOMOTIVE - GPS_SEA = _mscl.InertialTypes_GPS_SEA - GPS_AIRBORNE_1G = _mscl.InertialTypes_GPS_AIRBORNE_1G - GPS_AIRBORNE_2G = _mscl.InertialTypes_GPS_AIRBORNE_2G - GPS_AIRBORNE_4G = _mscl.InertialTypes_GPS_AIRBORNE_4G - RESET_ALL_AXIS = _mscl.InertialTypes_RESET_ALL_AXIS - TARE_ROLL_AXIS = _mscl.InertialTypes_TARE_ROLL_AXIS - TARE_PITCH_AXIS = _mscl.InertialTypes_TARE_PITCH_AXIS - TARE_YAW_AXIS = _mscl.InertialTypes_TARE_YAW_AXIS - INTERNAL_GNSS_ALL = _mscl.InertialTypes_INTERNAL_GNSS_ALL - EXTERNAL_GNSS = _mscl.InertialTypes_EXTERNAL_GNSS - INTERNAL_GNSS1 = _mscl.InertialTypes_INTERNAL_GNSS1 - INTERNAL_GNSS2 = _mscl.InertialTypes_INTERNAL_GNSS2 - FIX_SBAS_CORRECTIONS = _mscl.InertialTypes_FIX_SBAS_CORRECTIONS - FIX_DGNSS_CORRECTIONS = _mscl.InertialTypes_FIX_DGNSS_CORRECTIONS - FIXTYPE_3D = _mscl.InertialTypes_FIXTYPE_3D - FIXTYPE_2D = _mscl.InertialTypes_FIXTYPE_2D - FIXTYPE_TIMEONLY = _mscl.InertialTypes_FIXTYPE_TIMEONLY - FIXTYPE_NONE = _mscl.InertialTypes_FIXTYPE_NONE - FIXTYPE_INVALID = _mscl.InertialTypes_FIXTYPE_INVALID - FIXTYPE_RTK_FLOAT = _mscl.InertialTypes_FIXTYPE_RTK_FLOAT - FIXTYPE_RTK_FIXED = _mscl.InertialTypes_FIXTYPE_RTK_FIXED - FIXTYPE_DUAL_ANTENNA_NONE = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_NONE - FIXTYPE_DUAL_ANTENNA_FLOAT = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FLOAT - FIXTYPE_DUAL_ANTENNA_FIXED = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FIXED - DATA_VALID_REC_1 = _mscl.InertialTypes_DATA_VALID_REC_1 - DATA_VALID_REC_2 = _mscl.InertialTypes_DATA_VALID_REC_2 - ANTENNA_OFFSETS_VALID = _mscl.InertialTypes_ANTENNA_OFFSETS_VALID - SVFLAG_NAVIGATION = _mscl.InertialTypes_SVFLAG_NAVIGATION - SVFLAG_HEALTHY = _mscl.InertialTypes_SVFLAG_HEALTHY - DEVICE_AHRS = _mscl.InertialTypes_DEVICE_AHRS - DEVICE_GPS = _mscl.InertialTypes_DEVICE_GPS - ON_FULL_PERFORMANCE = _mscl.InertialTypes_ON_FULL_PERFORMANCE - ON_LOW_POWER = _mscl.InertialTypes_ON_LOW_POWER - SLEEP = _mscl.InertialTypes_SLEEP - OFF = _mscl.InertialTypes_OFF - STANDARD_MIP = _mscl.InertialTypes_STANDARD_MIP - WRAPPED_RAW = _mscl.InertialTypes_WRAPPED_RAW - SENSORSTATE_OFF = _mscl.InertialTypes_SENSORSTATE_OFF - SENSORSTATE_ON = _mscl.InertialTypes_SENSORSTATE_ON - SENSORSTATE_UNKNOWN = _mscl.InertialTypes_SENSORSTATE_UNKNOWN - ANTENNASTATE_INIT = _mscl.InertialTypes_ANTENNASTATE_INIT - ANTENNASTATE_SHORT = _mscl.InertialTypes_ANTENNASTATE_SHORT - ANTENNASTATE_OPEN = _mscl.InertialTypes_ANTENNASTATE_OPEN - ANTENNASTATE_GOOD = _mscl.InertialTypes_ANTENNASTATE_GOOD - ANTENNASTATE_UNKNOWN = _mscl.InertialTypes_ANTENNASTATE_UNKNOWN - ANTENNAPOWER_OFF = _mscl.InertialTypes_ANTENNAPOWER_OFF - ANTENNAPOWER_ON = _mscl.InertialTypes_ANTENNAPOWER_ON - ANTENNAPOWER_UNKNOWN = _mscl.InertialTypes_ANTENNAPOWER_UNKNOWN - FILTERSTATE_STARTUP = _mscl.InertialTypes_FILTERSTATE_STARTUP - FILTERSTATE_INIT = _mscl.InertialTypes_FILTERSTATE_INIT - FILTERSTATE_RUNNING_SLN_VALID = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_VALID - FILTERSTATE_RUNNING_SLN_ERROR = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_ERROR - FILTERSTATE_VERT_GYRO = _mscl.InertialTypes_FILTERSTATE_VERT_GYRO - FILTERSTATE_AHRS = _mscl.InertialTypes_FILTERSTATE_AHRS - FILTERSTATE_FULL_NAV = _mscl.InertialTypes_FILTERSTATE_FULL_NAV - FILTERSTATUS_IMU_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_IMU_UNAVAILABLE - FILTERSTATUS_GPS_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_GPS_UNAVAILABLE - FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC = _mscl.InertialTypes_FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC - FILTERSTATUS_POS_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_POS_COVARIANCE_HIGH_WARN - FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN - FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN - FILTERSTATUS_NAN_IN_SOLUTION = _mscl.InertialTypes_FILTERSTATUS_NAN_IN_SOLUTION - FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN - FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN - FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN - FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN - FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_CONDITION = _mscl.InertialTypes_FILTERSTATUS_CONDITION - FILTERSTATUS_ROLL_PITCH_WARNING = _mscl.InertialTypes_FILTERSTATUS_ROLL_PITCH_WARNING - FILTERSTATUS_HEADING_WARNING = _mscl.InertialTypes_FILTERSTATUS_HEADING_WARNING - FILTERSTATUS_POSITION_WARNING = _mscl.InertialTypes_FILTERSTATUS_POSITION_WARNING - FILTERSTATUS_VELOCITY_WARNING = _mscl.InertialTypes_FILTERSTATUS_VELOCITY_WARNING - FILTERSTATUS_IMU_BIAS_WARNING = _mscl.InertialTypes_FILTERSTATUS_IMU_BIAS_WARNING - FILTERSTATUS_GNSS_CLK_WARNING = _mscl.InertialTypes_FILTERSTATUS_GNSS_CLK_WARNING - FILTERSTATUS_ANT_LEVER_ARM_WARNING = _mscl.InertialTypes_FILTERSTATUS_ANT_LEVER_ARM_WARNING - FILTERSTATUS_MOUNTING_TRANSFORM_WARNING = _mscl.InertialTypes_FILTERSTATUS_MOUNTING_TRANSFORM_WARNING - FILTERSTATUS_ATT_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_ATT_NOT_INIT - FILTERSTATUS_POS_VEL_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_POS_VEL_NOT_INIT - STABLE = _mscl.InertialTypes_STABLE - CONVERGING = _mscl.InertialTypes_CONVERGING - UNSTABLE = _mscl.InertialTypes_UNSTABLE - DGNSSBASE_UDRE_SCALE_FACTOR_1_00 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_1_00 - DGNSSBASE_UDRE_SCALE_FACTOR_0_75 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_75 - DGNSSBASE_UDRE_SCALE_FACTOR_0_50 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_50 - DGNSSBASE_UDRE_SCALE_FACTOR_0_30 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_30 - DGNSSBASE_UDRE_SCALE_FACTOR_0_20 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_20 - DGNSSBASE_UDRE_SCALE_FACTOR_0_10 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_10 - DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED - DGNSSBASE_REFERENCE_STATION_NOT_WORKING = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_NOT_WORKING - HEADINGSOURCE_NONE = _mscl.InertialTypes_HEADINGSOURCE_NONE - HEADINGSOURCE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_MAGNETOMETER - HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR - HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD = _mscl.InertialTypes_HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD - HEADINGSOURCE_GNSS_DUAL_ANTENNA = _mscl.InertialTypes_HEADINGSOURCE_GNSS_DUAL_ANTENNA - ENABLE_NONE = _mscl.InertialTypes_ENABLE_NONE - ENABLE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_ENABLE_INTERNAL_MAGNETOMETER - ENABLE_INTERNAL_GNSS = _mscl.InertialTypes_ENABLE_INTERNAL_GNSS - ENABLE_EXTERNAL_MESSAGES = _mscl.InertialTypes_ENABLE_EXTERNAL_MESSAGES - ENABLE_MAGNETOMETER_AND_GNSS = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_GNSS - ENABLE_GNSS_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_GNSS_AND_EXTERNAL - ENABLE_MAGNETOMETER_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_EXTERNAL - ENABLE_ALL = _mscl.InertialTypes_ENABLE_ALL - ENABLE_GYRO_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_BIAS_ESTIMATION - ENABLE_ACCEL_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_BIAS_ESTIMATION - ENABLE_GYRO_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_SCALE_FACTOR_ESTIMATION - ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION - ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION = _mscl.InertialTypes_ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION - ENABLE_HARD_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_HARD_IRON_AUTO_CALIBRATION - ENABLE_SOFT_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_SOFT_IRON_AUTO_CALIBRATION - NONE = _mscl.InertialTypes_NONE - WORLD_MAGNETIC_MODEL = _mscl.InertialTypes_WORLD_MAGNETIC_MODEL - MANUAL = _mscl.InertialTypes_MANUAL - ADAPTIVE_MEASUREMENT_DISABLE = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_DISABLE - ADAPTIVE_MEASUREMENT_ENABLE_FIXED = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_FIXED - ADAPTIVE_MEASUREMENT_ENABLE_AUTO = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_AUTO - GNSS_POS_VEL_AIDING = _mscl.InertialTypes_GNSS_POS_VEL_AIDING - GNSS_HEADING_AIDING = _mscl.InertialTypes_GNSS_HEADING_AIDING - ALTIMETER_AIDING = _mscl.InertialTypes_ALTIMETER_AIDING - ODOMETER_AIDING = _mscl.InertialTypes_ODOMETER_AIDING - MAGNETOMETER_AIDING = _mscl.InertialTypes_MAGNETOMETER_AIDING - EXTERNAL_HEADING_AIDING = _mscl.InertialTypes_EXTERNAL_HEADING_AIDING - EXTERNAL_ALTIMETER_AIDING = _mscl.InertialTypes_EXTERNAL_ALTIMETER_AIDING - EXTERNAL_MAGNETOMETER_AIDING = _mscl.InertialTypes_EXTERNAL_MAGNETOMETER_AIDING - BODY_FRAME_VEL_AIDING = _mscl.InertialTypes_BODY_FRAME_VEL_AIDING - ALL_AIDING_MEASUREMENTS = _mscl.InertialTypes_ALL_AIDING_MEASUREMENTS - GPS = _mscl.InertialTypes_GPS - SBAS = _mscl.InertialTypes_SBAS - GALILEO = _mscl.InertialTypes_GALILEO - BEIDOU = _mscl.InertialTypes_BEIDOU - QZSS = _mscl.InertialTypes_QZSS - GLONASS = _mscl.InertialTypes_GLONASS - FILTERING_OFF = _mscl.InertialTypes_FILTERING_OFF - FILTERING_CONSERVATIVE = _mscl.InertialTypes_FILTERING_CONSERVATIVE - FILTERING_MODERATE = _mscl.InertialTypes_FILTERING_MODERATE - FILTERING_AGGRESSIVE = _mscl.InertialTypes_FILTERING_AGGRESSIVE - FACTORY_STREAMING_OVERWRITE = _mscl.InertialTypes_FACTORY_STREAMING_OVERWRITE - FACTORY_STREAMING_MERGE = _mscl.InertialTypes_FACTORY_STREAMING_MERGE - FACTORY_STREAMING_ADDITIVE = _mscl.InertialTypes_FACTORY_STREAMING_ADDITIVE - PPS_DISABLED = _mscl.InertialTypes_PPS_DISABLED - PPS_RECEIVER_1 = _mscl.InertialTypes_PPS_RECEIVER_1 - PPS_RECEIVER_2 = _mscl.InertialTypes_PPS_RECEIVER_2 - PPS_GPIO = _mscl.InertialTypes_PPS_GPIO - PPS_GENERATED = _mscl.InertialTypes_PPS_GENERATED - GNSS_AIDING_TIGHT_COUPLING = _mscl.InertialTypes_GNSS_AIDING_TIGHT_COUPLING - GNSS_AIDING_DIFFERENTIAL = _mscl.InertialTypes_GNSS_AIDING_DIFFERENTIAL - GNSS_AIDING_INTEGER_FIX = _mscl.InertialTypes_GNSS_AIDING_INTEGER_FIX - GNSS_AIDING_GPS = _mscl.InertialTypes_GNSS_AIDING_GPS - GNSS_AIDING_GLONASS = _mscl.InertialTypes_GNSS_AIDING_GLONASS - GNSS_AIDING_GALILEO = _mscl.InertialTypes_GNSS_AIDING_GALILEO - GNSS_AIDING_BEIDOU = _mscl.InertialTypes_GNSS_AIDING_BEIDOU - GNSS_AIDING_NO_FIX = _mscl.InertialTypes_GNSS_AIDING_NO_FIX - GNSS_AIDING_CONFIG_ERROR = _mscl.InertialTypes_GNSS_AIDING_CONFIG_ERROR - AIDING_MEASUREMENT_ENABLED = _mscl.InertialTypes_AIDING_MEASUREMENT_ENABLED - AIDING_MEASUREMENT_USED = _mscl.InertialTypes_AIDING_MEASUREMENT_USED - AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH - AIDING_MEASUREMENT_WARNING_SAMPLE_TIME = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_SAMPLE_TIME - AIDING_MEASUREMENT_CONFIG_ERROR = _mscl.InertialTypes_AIDING_MEASUREMENT_CONFIG_ERROR - AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED = _mscl.InertialTypes_AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED - RTK_CORRECTION_ANTENNA_POS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_POS_RECEIVED - RTK_CORRECTION_ANTENNA_DESC_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_DESC_RECEIVED - RTK_CORRECTION_GPS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GPS_RECEIVED - RTK_CORRECTION_GLONASS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GLONASS_RECEIVED - RTK_CORRECTION_GALILEO_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GALILEO_RECEIVED - RTK_CORRECTION_BEIDOU_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_BEIDOU_RECEIVED - RTK_CORRECTION_USING_GPS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GPS_MSM - RTK_CORRECTION_USING_GLONASS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GLONASS_MSM - SIGNAL_QUALITY_NONE = _mscl.InertialTypes_SIGNAL_QUALITY_NONE - SIGNAL_QUALITY_SEARCHING = _mscl.InertialTypes_SIGNAL_QUALITY_SEARCHING - SIGNAL_QUALITY_ACQUIRED = _mscl.InertialTypes_SIGNAL_QUALITY_ACQUIRED - SIGNAL_QUALITY_UNUSABLE = _mscl.InertialTypes_SIGNAL_QUALITY_UNUSABLE - SIGNAL_QUALITY_TIME_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_TIME_LOCKED - SIGNAL_QUALITY_FULLY_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_FULLY_LOCKED - OVERRANGE_ACCEL_X = _mscl.InertialTypes_OVERRANGE_ACCEL_X - OVERRANGE_ACCEL_Y = _mscl.InertialTypes_OVERRANGE_ACCEL_Y - OVERRANGE_ACCEL_Z = _mscl.InertialTypes_OVERRANGE_ACCEL_Z - OVERRANGE_GYRO_X = _mscl.InertialTypes_OVERRANGE_GYRO_X - OVERRANGE_GYRO_Y = _mscl.InertialTypes_OVERRANGE_GYRO_Y - OVERRANGE_GYRO_Z = _mscl.InertialTypes_OVERRANGE_GYRO_Z - OVERRANGE_MAG_X = _mscl.InertialTypes_OVERRANGE_MAG_X - OVERRANGE_MAG_Y = _mscl.InertialTypes_OVERRANGE_MAG_Y - OVERRANGE_MAG_Z = _mscl.InertialTypes_OVERRANGE_MAG_Z - OVERRANGE_PRESSURE = _mscl.InertialTypes_OVERRANGE_PRESSURE - UNKNOWN_SBAS_SYSTEM = _mscl.InertialTypes_UNKNOWN_SBAS_SYSTEM - WAAS = _mscl.InertialTypes_WAAS - EGNOS = _mscl.InertialTypes_EGNOS - MSAS = _mscl.InertialTypes_MSAS - GAGAN = _mscl.InertialTypes_GAGAN - SBAS_INFO_RANGE_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_RANGE_AVAILABLE - SBAS_INFO_CORRECTIONS_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_CORRECTIONS_AVAILABLE - SBAS_INFO_INTEGRITY_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_INTEGRITY_AVAILABLE - SBAS_INFO_TEST = _mscl.InertialTypes_SBAS_INFO_TEST - JAMMING_STATE_UNKNOWN = _mscl.InertialTypes_JAMMING_STATE_UNKNOWN - JAMMING_STATE_NONE = _mscl.InertialTypes_JAMMING_STATE_NONE - JAMMING_STATE_PARTIAL = _mscl.InertialTypes_JAMMING_STATE_PARTIAL - JAMMING_STATE_SIGNIFICANT = _mscl.InertialTypes_JAMMING_STATE_SIGNIFICANT - SPOOFING_STATE_UNKNOWN = _mscl.InertialTypes_SPOOFING_STATE_UNKNOWN - SPOOFING_STATE_NONE = _mscl.InertialTypes_SPOOFING_STATE_NONE - SPOOFING_STATE_PARTIAL = _mscl.InertialTypes_SPOOFING_STATE_PARTIAL - SPOOFING_STATE_SIGNIFICANT = _mscl.InertialTypes_SPOOFING_STATE_SIGNIFICANT - - def __init__(self): - _mscl.InertialTypes_swiginit(self, _mscl.new_InertialTypes()) - __swig_destroy__ = _mscl.delete_InertialTypes - -# Register InertialTypes in _mscl: -_mscl.InertialTypes_swigregister(InertialTypes) - -class NmeaMessageFormat(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_MESSAGES = _mscl.NmeaMessageFormat_MAX_MESSAGES - GGA = _mscl.NmeaMessageFormat_GGA - GLL = _mscl.NmeaMessageFormat_GLL - GSV = _mscl.NmeaMessageFormat_GSV - RMC = _mscl.NmeaMessageFormat_RMC - VTG = _mscl.NmeaMessageFormat_VTG - HDT = _mscl.NmeaMessageFormat_HDT - ZDA = _mscl.NmeaMessageFormat_ZDA - MSRA = _mscl.NmeaMessageFormat_MSRA - MSRR = _mscl.NmeaMessageFormat_MSRR - IGNORED = _mscl.NmeaMessageFormat_IGNORED - GNSS = _mscl.NmeaMessageFormat_GNSS - GPS = _mscl.NmeaMessageFormat_GPS - GALILEO = _mscl.NmeaMessageFormat_GALILEO - GLONASS = _mscl.NmeaMessageFormat_GLONASS - - def __init__(self): - _mscl.NmeaMessageFormat_swiginit(self, _mscl.new_NmeaMessageFormat()) - __swig_destroy__ = _mscl.delete_NmeaMessageFormat - - def sentenceType(self, *args): - return _mscl.NmeaMessageFormat_sentenceType(self, *args) - - def talkerId(self, *args): - return _mscl.NmeaMessageFormat_talkerId(self, *args) - - def sourceDataClass(self, *args): - return _mscl.NmeaMessageFormat_sourceDataClass(self, *args) - - def sampleRate(self, *args): - return _mscl.NmeaMessageFormat_sampleRate(self, *args) - - @staticmethod - def talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - - @staticmethod - def dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - - @staticmethod - def supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - - @staticmethod - def toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -# Register NmeaMessageFormat in _mscl: -_mscl.NmeaMessageFormat_swigregister(NmeaMessageFormat) -NmeaMessageFormat.MAX_FREQUENCY = _mscl.cvar.NmeaMessageFormat_MAX_FREQUENCY - -def NmeaMessageFormat_talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - -def NmeaMessageFormat_dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - -def NmeaMessageFormat_supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - -def NmeaMessageFormat_toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -class Matrix_3x3(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Matrix_3x3_swiginit(self, _mscl.new_Matrix_3x3(*args)) - __swig_destroy__ = _mscl.delete_Matrix_3x3 - - def set(self, row, col, value): - return _mscl.Matrix_3x3_set(self, row, col, value) - - def at(self, row, col): - return _mscl.Matrix_3x3_at(self, row, col) - - def __str__(self): - return _mscl.Matrix_3x3___str__(self) - - def asMipFieldValues(self): - return _mscl.Matrix_3x3_asMipFieldValues(self) - -# Register Matrix_3x3 in _mscl: -_mscl.Matrix_3x3_swigregister(Matrix_3x3) - -class TimeUpdate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, timeOfWeek, weekNumber, timeAccuracy=0): - _mscl.TimeUpdate_swiginit(self, _mscl.new_TimeUpdate(timeOfWeek, weekNumber, timeAccuracy)) - __swig_destroy__ = _mscl.delete_TimeUpdate - - def timeOfWeek(self): - return _mscl.TimeUpdate_timeOfWeek(self) - - def weekNumber(self): - return _mscl.TimeUpdate_weekNumber(self) - - def timeAccuracy(self): - return _mscl.TimeUpdate_timeAccuracy(self) - -# Register TimeUpdate in _mscl: -_mscl.TimeUpdate_swigregister(TimeUpdate) - -class ZUPTSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, enable, threshold): - _mscl.ZUPTSettingsData_swiginit(self, _mscl.new_ZUPTSettingsData(enable, threshold)) - enabled = property(_mscl.ZUPTSettingsData_enabled_get, _mscl.ZUPTSettingsData_enabled_set) - threshold = property(_mscl.ZUPTSettingsData_threshold_get, _mscl.ZUPTSettingsData_threshold_set) - __swig_destroy__ = _mscl.delete_ZUPTSettingsData - -# Register ZUPTSettingsData in _mscl: -_mscl.ZUPTSettingsData_swigregister(ZUPTSettingsData) - -class FixedReferencePositionData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.FixedReferencePositionData_swiginit(self, _mscl.new_FixedReferencePositionData(*args)) - enable = property(_mscl.FixedReferencePositionData_enable_get, _mscl.FixedReferencePositionData_enable_set) - referencePosition = property(_mscl.FixedReferencePositionData_referencePosition_get, _mscl.FixedReferencePositionData_referencePosition_set) - __swig_destroy__ = _mscl.delete_FixedReferencePositionData - -# Register FixedReferencePositionData in _mscl: -_mscl.FixedReferencePositionData_swigregister(FixedReferencePositionData) - -class SBASSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enableSBAS = property(_mscl.SBASSettingsData_enableSBAS_get, _mscl.SBASSettingsData_enableSBAS_set) - enableRanging = property(_mscl.SBASSettingsData_enableRanging_get, _mscl.SBASSettingsData_enableRanging_set) - enableCorrectionData = property(_mscl.SBASSettingsData_enableCorrectionData_get, _mscl.SBASSettingsData_enableCorrectionData_set) - applyIntegrityInfo = property(_mscl.SBASSettingsData_applyIntegrityInfo_get, _mscl.SBASSettingsData_applyIntegrityInfo_set) - satellitePRNs = property(_mscl.SBASSettingsData_satellitePRNs_get, _mscl.SBASSettingsData_satellitePRNs_set) - - def __init__(self): - _mscl.SBASSettingsData_swiginit(self, _mscl.new_SBASSettingsData()) - __swig_destroy__ = _mscl.delete_SBASSettingsData - -# Register SBASSettingsData in _mscl: -_mscl.SBASSettingsData_swigregister(SBASSettingsData) - -class Constellation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - constellationID = property(_mscl.Constellation_constellationID_get, _mscl.Constellation_constellationID_set) - enabled = property(_mscl.Constellation_enabled_get, _mscl.Constellation_enabled_set) - reservedChannelCount = property(_mscl.Constellation_reservedChannelCount_get, _mscl.Constellation_reservedChannelCount_set) - maxChannels = property(_mscl.Constellation_maxChannels_get, _mscl.Constellation_maxChannels_set) - enableL1SAIF = property(_mscl.Constellation_enableL1SAIF_get, _mscl.Constellation_enableL1SAIF_set) - - def __init__(self): - _mscl.Constellation_swiginit(self, _mscl.new_Constellation()) - __swig_destroy__ = _mscl.delete_Constellation - -# Register Constellation in _mscl: -_mscl.Constellation_swigregister(Constellation) - -class ConstellationSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - maxChannelsAvailable = property(_mscl.ConstellationSettingsData_maxChannelsAvailable_get, _mscl.ConstellationSettingsData_maxChannelsAvailable_set) - maxChannelsToUse = property(_mscl.ConstellationSettingsData_maxChannelsToUse_get, _mscl.ConstellationSettingsData_maxChannelsToUse_set) - constellations = property(_mscl.ConstellationSettingsData_constellations_get, _mscl.ConstellationSettingsData_constellations_set) - - def __init__(self): - _mscl.ConstellationSettingsData_swiginit(self, _mscl.new_ConstellationSettingsData()) - __swig_destroy__ = _mscl.delete_ConstellationSettingsData - -# Register ConstellationSettingsData in _mscl: -_mscl.ConstellationSettingsData_swigregister(ConstellationSettingsData) - -class LowPassFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SET_TO_HALF_REPORTING_RATE = _mscl.LowPassFilterData_SET_TO_HALF_REPORTING_RATE - USER_SPECIFIED_CUTOFF_FREQ = _mscl.LowPassFilterData_USER_SPECIFIED_CUTOFF_FREQ - - def __init__(self, *args): - _mscl.LowPassFilterData_swiginit(self, _mscl.new_LowPassFilterData(*args)) - dataDescriptor = property(_mscl.LowPassFilterData_dataDescriptor_get, _mscl.LowPassFilterData_dataDescriptor_set) - manualFilterBandwidthConfig = property(_mscl.LowPassFilterData_manualFilterBandwidthConfig_get, _mscl.LowPassFilterData_manualFilterBandwidthConfig_set) - applyLowPassFilter = property(_mscl.LowPassFilterData_applyLowPassFilter_get, _mscl.LowPassFilterData_applyLowPassFilter_set) - cutoffFrequency = property(_mscl.LowPassFilterData_cutoffFrequency_get, _mscl.LowPassFilterData_cutoffFrequency_set) - - @staticmethod - def getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - - @staticmethod - def getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - __swig_destroy__ = _mscl.delete_LowPassFilterData - -# Register LowPassFilterData in _mscl: -_mscl.LowPassFilterData_swigregister(LowPassFilterData) - -def LowPassFilterData_getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - -def LowPassFilterData_getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - -class ComplementaryFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ComplementaryFilterData_swiginit(self, _mscl.new_ComplementaryFilterData()) - upCompensationEnabled = property(_mscl.ComplementaryFilterData_upCompensationEnabled_get, _mscl.ComplementaryFilterData_upCompensationEnabled_set) - upCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_upCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_upCompensationTimeInSeconds_set) - northCompensationEnabled = property(_mscl.ComplementaryFilterData_northCompensationEnabled_get, _mscl.ComplementaryFilterData_northCompensationEnabled_set) - northCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_northCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_northCompensationTimeInSeconds_set) - __swig_destroy__ = _mscl.delete_ComplementaryFilterData - -# Register ComplementaryFilterData in _mscl: -_mscl.ComplementaryFilterData_swigregister(ComplementaryFilterData) - -class PpsPulseInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PpsPulseInfo_swiginit(self, _mscl.new_PpsPulseInfo()) - count = property(_mscl.PpsPulseInfo_count_get, _mscl.PpsPulseInfo_count_set) - lastTimeinMS = property(_mscl.PpsPulseInfo_lastTimeinMS_get, _mscl.PpsPulseInfo_lastTimeinMS_set) - __swig_destroy__ = _mscl.delete_PpsPulseInfo - -# Register PpsPulseInfo in _mscl: -_mscl.PpsPulseInfo_swigregister(PpsPulseInfo) - -class StreamInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.StreamInfo_swiginit(self, _mscl.new_StreamInfo()) - enabled = property(_mscl.StreamInfo_enabled_get, _mscl.StreamInfo_enabled_set) - outgoingPacketsDropped = property(_mscl.StreamInfo_outgoingPacketsDropped_get, _mscl.StreamInfo_outgoingPacketsDropped_set) - __swig_destroy__ = _mscl.delete_StreamInfo - -# Register StreamInfo in _mscl: -_mscl.StreamInfo_swigregister(StreamInfo) - -class DeviceMessageInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.DeviceMessageInfo_swiginit(self, _mscl.new_DeviceMessageInfo()) - messageParsingErrors = property(_mscl.DeviceMessageInfo_messageParsingErrors_get, _mscl.DeviceMessageInfo_messageParsingErrors_set) - messagesRead = property(_mscl.DeviceMessageInfo_messagesRead_get, _mscl.DeviceMessageInfo_messagesRead_set) - lastMessageReadinMS = property(_mscl.DeviceMessageInfo_lastMessageReadinMS_get, _mscl.DeviceMessageInfo_lastMessageReadinMS_set) - __swig_destroy__ = _mscl.delete_DeviceMessageInfo - -# Register DeviceMessageInfo in _mscl: -_mscl.DeviceMessageInfo_swigregister(DeviceMessageInfo) - -class PortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PortInfo_swiginit(self, _mscl.new_PortInfo()) - bytesWritten = property(_mscl.PortInfo_bytesWritten_get, _mscl.PortInfo_bytesWritten_set) - bytesRead = property(_mscl.PortInfo_bytesRead_get, _mscl.PortInfo_bytesRead_set) - overrunsOnWrite = property(_mscl.PortInfo_overrunsOnWrite_get, _mscl.PortInfo_overrunsOnWrite_set) - overrunsOnRead = property(_mscl.PortInfo_overrunsOnRead_get, _mscl.PortInfo_overrunsOnRead_set) - __swig_destroy__ = _mscl.delete_PortInfo - -# Register PortInfo in _mscl: -_mscl.PortInfo_swigregister(PortInfo) - -class TemperatureInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.TemperatureInfo_swiginit(self, _mscl.new_TemperatureInfo()) - onBoardTemp = property(_mscl.TemperatureInfo_onBoardTemp_get, _mscl.TemperatureInfo_onBoardTemp_set) - lastReadInMS = property(_mscl.TemperatureInfo_lastReadInMS_get, _mscl.TemperatureInfo_lastReadInMS_set) - error = property(_mscl.TemperatureInfo_error_get, _mscl.TemperatureInfo_error_set) - __swig_destroy__ = _mscl.delete_TemperatureInfo - -# Register TemperatureInfo in _mscl: -_mscl.TemperatureInfo_swigregister(TemperatureInfo) - -ModelNumber = _mscl.ModelNumber -StatusStructure_Value = _mscl.StatusStructure_Value -SystemState_Value = _mscl.SystemState_Value -gnss1PpsPulseInfo_Count = _mscl.gnss1PpsPulseInfo_Count -gnss1PpsPulseInfo_LastTimeinMS = _mscl.gnss1PpsPulseInfo_LastTimeinMS -GnssPowerStateOn = _mscl.GnssPowerStateOn -ImuStreamInfo_Enabled = _mscl.ImuStreamInfo_Enabled -ImuStreamInfo_PacketsDropped = _mscl.ImuStreamInfo_PacketsDropped -GnssStreamInfo_Enabled = _mscl.GnssStreamInfo_Enabled -GnssStreamInfo_PacketsDropped = _mscl.GnssStreamInfo_PacketsDropped -EstimationFilterStreamInfo_Enabled = _mscl.EstimationFilterStreamInfo_Enabled -EstimationFilterStreamInfo_PacketsDropped = _mscl.EstimationFilterStreamInfo_PacketsDropped -ComPortInfo_BytesRead = _mscl.ComPortInfo_BytesRead -ComPortInfo_BytesWritten = _mscl.ComPortInfo_BytesWritten -ComPortInfo_OverrunsOnRead = _mscl.ComPortInfo_OverrunsOnRead -ComPortInfo_OverrunsOnWrite = _mscl.ComPortInfo_OverrunsOnWrite -ImuMessageInfo_LastMessageReadinMS = _mscl.ImuMessageInfo_LastMessageReadinMS -ImuMessageInfo_MessageParsingErrors = _mscl.ImuMessageInfo_MessageParsingErrors -ImuMessageInfo_MessagesRead = _mscl.ImuMessageInfo_MessagesRead -GnssMessageInfo_LastMessageReadinMS = _mscl.GnssMessageInfo_LastMessageReadinMS -GnssMessageInfo_MessageParsingErrors = _mscl.GnssMessageInfo_MessageParsingErrors -GnssMessageInfo_MessagesRead = _mscl.GnssMessageInfo_MessagesRead -TemperatureInfo_Error = _mscl.TemperatureInfo_Error -TemperatureInfo_LastReadInMS = _mscl.TemperatureInfo_LastReadInMS -TemperatureInfo_OnBoardTemp = _mscl.TemperatureInfo_OnBoardTemp -PowerState = _mscl.PowerState -GyroRange = _mscl.GyroRange -AccelRange = _mscl.AccelRange -HasMagnetometer = _mscl.HasMagnetometer -HasPressure = _mscl.HasPressure -class DeviceStatusData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_BASIC_STATUS_STRUCTURE - DIAGNOSTIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_DIAGNOSTIC_STATUS_STRUCTURE - SYSTEM_INITIALIZATION = _mscl.DeviceStatusData_SYSTEM_INITIALIZATION - SYSTEM_STARTUP = _mscl.DeviceStatusData_SYSTEM_STARTUP - SYSTEM_RUNNING = _mscl.DeviceStatusData_SYSTEM_RUNNING - - def __init__(self): - _mscl.DeviceStatusData_swiginit(self, _mscl.new_DeviceStatusData()) - modelNumber = property(_mscl.DeviceStatusData_modelNumber_get, _mscl.DeviceStatusData_modelNumber_set) - statusStructure = property(_mscl.DeviceStatusData_statusStructure_get, _mscl.DeviceStatusData_statusStructure_set) - systemTimerInMS = property(_mscl.DeviceStatusData_systemTimerInMS_get, _mscl.DeviceStatusData_systemTimerInMS_set) - - def systemState(self, *args): - return _mscl.DeviceStatusData_systemState(self, *args) - - def gnssPowerStateOn(self, *args): - return _mscl.DeviceStatusData_gnssPowerStateOn(self, *args) - - def gnss1PpsPulseInfo(self, *args): - return _mscl.DeviceStatusData_gnss1PpsPulseInfo(self, *args) - - def imuStreamInfo(self, *args): - return _mscl.DeviceStatusData_imuStreamInfo(self, *args) - - def gnssStreamInfo(self, *args): - return _mscl.DeviceStatusData_gnssStreamInfo(self, *args) - - def estimationFilterStreamInfo(self, *args): - return _mscl.DeviceStatusData_estimationFilterStreamInfo(self, *args) - - def imuMessageInfo(self, *args): - return _mscl.DeviceStatusData_imuMessageInfo(self, *args) - - def gnssMessageInfo(self, *args): - return _mscl.DeviceStatusData_gnssMessageInfo(self, *args) - - def comPortInfo(self, *args): - return _mscl.DeviceStatusData_comPortInfo(self, *args) - - def usbPortInfo(self, *args): - return _mscl.DeviceStatusData_usbPortInfo(self, *args) - - def hasMagnetometer(self, *args): - return _mscl.DeviceStatusData_hasMagnetometer(self, *args) - - def magnetometerInitializationFailed(self, *args): - return _mscl.DeviceStatusData_magnetometerInitializationFailed(self, *args) - - def hasPressure(self, *args): - return _mscl.DeviceStatusData_hasPressure(self, *args) - - def pressureInitializationFailed(self, *args): - return _mscl.DeviceStatusData_pressureInitializationFailed(self, *args) - - def gnssReceiverInitializationFailed(self, *args): - return _mscl.DeviceStatusData_gnssReceiverInitializationFailed(self, *args) - - def coldStartOnPowerOn(self, *args): - return _mscl.DeviceStatusData_coldStartOnPowerOn(self, *args) - - def temperatureInfo(self, *args): - return _mscl.DeviceStatusData_temperatureInfo(self, *args) - - def powerState(self, *args): - return _mscl.DeviceStatusData_powerState(self, *args) - - def gyroRange(self, *args): - return _mscl.DeviceStatusData_gyroRange(self, *args) - - def accelRange(self, *args): - return _mscl.DeviceStatusData_accelRange(self, *args) - - def asMap(self): - return _mscl.DeviceStatusData_asMap(self) - - def asValueMap(self): - return _mscl.DeviceStatusData_asValueMap(self) - __swig_destroy__ = _mscl.delete_DeviceStatusData - -# Register DeviceStatusData in _mscl: -_mscl.DeviceStatusData_swigregister(DeviceStatusData) - -class ExternalGNSSUpdateData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - gpsTimeOfWeek = property(_mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_get, _mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_set) - gpsWeekNumber = property(_mscl.ExternalGNSSUpdateData_gpsWeekNumber_get, _mscl.ExternalGNSSUpdateData_gpsWeekNumber_set) - lattitude = property(_mscl.ExternalGNSSUpdateData_lattitude_get, _mscl.ExternalGNSSUpdateData_lattitude_set) - longitude = property(_mscl.ExternalGNSSUpdateData_longitude_get, _mscl.ExternalGNSSUpdateData_longitude_set) - altitudeAboveWGS84Ellipsoid = property(_mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_get, _mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_set) - northVelocity = property(_mscl.ExternalGNSSUpdateData_northVelocity_get, _mscl.ExternalGNSSUpdateData_northVelocity_set) - eastVelocity = property(_mscl.ExternalGNSSUpdateData_eastVelocity_get, _mscl.ExternalGNSSUpdateData_eastVelocity_set) - downVelocity = property(_mscl.ExternalGNSSUpdateData_downVelocity_get, _mscl.ExternalGNSSUpdateData_downVelocity_set) - northPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_northPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_northPositionUncertainty_set) - eastPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_eastPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_eastPositionUncertainty_set) - downPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_downPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_downPositionUncertainty_set) - northVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_northVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_northVelocityUncertainty_set) - eastVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_set) - downVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_downVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_downVelocityUncertainty_set) - - def __init__(self): - _mscl.ExternalGNSSUpdateData_swiginit(self, _mscl.new_ExternalGNSSUpdateData()) - __swig_destroy__ = _mscl.delete_ExternalGNSSUpdateData - -# Register ExternalGNSSUpdateData in _mscl: -_mscl.ExternalGNSSUpdateData_swigregister(ExternalGNSSUpdateData) - -class HeadingUpdateOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsOptionId(self): - return _mscl.HeadingUpdateOptions_AsOptionId(self) - - def __init__(self, *args): - _mscl.HeadingUpdateOptions_swiginit(self, _mscl.new_HeadingUpdateOptions(*args)) - useInternalMagnetometer = property(_mscl.HeadingUpdateOptions_useInternalMagnetometer_get, _mscl.HeadingUpdateOptions_useInternalMagnetometer_set) - useInternalGNSSVelocityVector = property(_mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_get, _mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_set) - useExternalHeadingMessages = property(_mscl.HeadingUpdateOptions_useExternalHeadingMessages_get, _mscl.HeadingUpdateOptions_useExternalHeadingMessages_set) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptions - -# Register HeadingUpdateOptions in _mscl: -_mscl.HeadingUpdateOptions_swigregister(HeadingUpdateOptions) - -Automatic = _mscl.Automatic -UserSpecified_Heading = _mscl.UserSpecified_Heading -UserSpecified_Attitude = _mscl.UserSpecified_Attitude -UserSpecified_All = _mscl.UserSpecified_All -GNSS_DualAntenna = _mscl.GNSS_DualAntenna -GNSS_Kinematic = _mscl.GNSS_Kinematic -Magnetometer = _mscl.Magnetometer -External = _mscl.External -class HeadingAlignmentMethod(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.HeadingAlignmentMethod_swiginit(self, _mscl.new_HeadingAlignmentMethod(*args)) - value = property(_mscl.HeadingAlignmentMethod_value_get, _mscl.HeadingAlignmentMethod_value_set) - - def select(self, option): - return _mscl.HeadingAlignmentMethod_select(self, option) - - def deselect(self, option): - return _mscl.HeadingAlignmentMethod_deselect(self, option) - - def selected(self, option): - return _mscl.HeadingAlignmentMethod_selected(self, option) - __swig_destroy__ = _mscl.delete_HeadingAlignmentMethod - -# Register HeadingAlignmentMethod in _mscl: -_mscl.HeadingAlignmentMethod_swigregister(HeadingAlignmentMethod) - -class FilterInitializationValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FilterInitializationValues_swiginit(self, _mscl.new_FilterInitializationValues()) - autoInitialize = property(_mscl.FilterInitializationValues_autoInitialize_get, _mscl.FilterInitializationValues_autoInitialize_set) - initialValuesSource = property(_mscl.FilterInitializationValues_initialValuesSource_get, _mscl.FilterInitializationValues_initialValuesSource_set) - autoHeadingAlignmentMethod = property(_mscl.FilterInitializationValues_autoHeadingAlignmentMethod_get, _mscl.FilterInitializationValues_autoHeadingAlignmentMethod_set) - initialAttitude = property(_mscl.FilterInitializationValues_initialAttitude_get, _mscl.FilterInitializationValues_initialAttitude_set) - initialPosition = property(_mscl.FilterInitializationValues_initialPosition_get, _mscl.FilterInitializationValues_initialPosition_set) - initialVelocity = property(_mscl.FilterInitializationValues_initialVelocity_get, _mscl.FilterInitializationValues_initialVelocity_set) - referenceFrame = property(_mscl.FilterInitializationValues_referenceFrame_get, _mscl.FilterInitializationValues_referenceFrame_set) - - def manualHeading(self): - return _mscl.FilterInitializationValues_manualHeading(self) - - def manualAttitude(self): - return _mscl.FilterInitializationValues_manualAttitude(self) - - def manualPositionVelocity(self): - return _mscl.FilterInitializationValues_manualPositionVelocity(self) - __swig_destroy__ = _mscl.delete_FilterInitializationValues - -# Register FilterInitializationValues in _mscl: -_mscl.FilterInitializationValues_swigregister(FilterInitializationValues) - -class TareAxisValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def asUint8(self): - return _mscl.TareAxisValues_asUint8(self) - - def __init__(self, tareRollAxis, tarePitchAxis, tareYawAxis): - _mscl.TareAxisValues_swiginit(self, _mscl.new_TareAxisValues(tareRollAxis, tarePitchAxis, tareYawAxis)) - tareRollAxis = property(_mscl.TareAxisValues_tareRollAxis_get, _mscl.TareAxisValues_tareRollAxis_set) - tarePitchAxis = property(_mscl.TareAxisValues_tarePitchAxis_get, _mscl.TareAxisValues_tarePitchAxis_set) - tareYawAxis = property(_mscl.TareAxisValues_tareYawAxis_get, _mscl.TareAxisValues_tareYawAxis_set) - __swig_destroy__ = _mscl.delete_TareAxisValues - -# Register TareAxisValues in _mscl: -_mscl.TareAxisValues_swigregister(TareAxisValues) - -class GeographicSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeographicSourceOptions_swiginit(self, _mscl.new_GeographicSourceOptions(*args)) - source = property(_mscl.GeographicSourceOptions_source_get, _mscl.GeographicSourceOptions_source_set) - manual = property(_mscl.GeographicSourceOptions_manual_get, _mscl.GeographicSourceOptions_manual_set) - __swig_destroy__ = _mscl.delete_GeographicSourceOptions - -# Register GeographicSourceOptions in _mscl: -_mscl.GeographicSourceOptions_swigregister(GeographicSourceOptions) - -class EstimationControlOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsUint16(self): - return _mscl.EstimationControlOptions_AsUint16(self) - - def __init__(self, *args): - _mscl.EstimationControlOptions_swiginit(self, _mscl.new_EstimationControlOptions(*args)) - enableGyroBiasEstimation = property(_mscl.EstimationControlOptions_enableGyroBiasEstimation_get, _mscl.EstimationControlOptions_enableGyroBiasEstimation_set) - enableAccelBiasEstimation = property(_mscl.EstimationControlOptions_enableAccelBiasEstimation_get, _mscl.EstimationControlOptions_enableAccelBiasEstimation_set) - enableGyroScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_set) - enableAccelScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_set) - enableGNSSAntennaOffsetEstimation = property(_mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_get, _mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_set) - enableHardIronAutoCalibration = property(_mscl.EstimationControlOptions_enableHardIronAutoCalibration_get, _mscl.EstimationControlOptions_enableHardIronAutoCalibration_set) - enableSoftIronAutoCalibration = property(_mscl.EstimationControlOptions_enableSoftIronAutoCalibration_get, _mscl.EstimationControlOptions_enableSoftIronAutoCalibration_set) - __swig_destroy__ = _mscl.delete_EstimationControlOptions - -# Register EstimationControlOptions in _mscl: -_mscl.EstimationControlOptions_swigregister(EstimationControlOptions) - -class HeadingData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HeadingData_swiginit(self, _mscl.new_HeadingData()) - TRUE_HEADING = _mscl.HeadingData_TRUE_HEADING - MAGNETIC_HEADING = _mscl.HeadingData_MAGNETIC_HEADING - heading = property(_mscl.HeadingData_heading_get, _mscl.HeadingData_heading_set) - headingAngle = property(_mscl.HeadingData_headingAngle_get, _mscl.HeadingData_headingAngle_set) - headingAngleUncertainty = property(_mscl.HeadingData_headingAngleUncertainty_get, _mscl.HeadingData_headingAngleUncertainty_set) - __swig_destroy__ = _mscl.delete_HeadingData - -# Register HeadingData in _mscl: -_mscl.HeadingData_swigregister(HeadingData) - -class AdaptiveMeasurementData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AdaptiveMeasurementData_swiginit(self, _mscl.new_AdaptiveMeasurementData()) - mode = property(_mscl.AdaptiveMeasurementData_mode_get, _mscl.AdaptiveMeasurementData_mode_set) - lowPassFilterCutoff = property(_mscl.AdaptiveMeasurementData_lowPassFilterCutoff_get, _mscl.AdaptiveMeasurementData_lowPassFilterCutoff_set) - lowLimit = property(_mscl.AdaptiveMeasurementData_lowLimit_get, _mscl.AdaptiveMeasurementData_lowLimit_set) - highLimit = property(_mscl.AdaptiveMeasurementData_highLimit_get, _mscl.AdaptiveMeasurementData_highLimit_set) - lowLimitUncertainty = property(_mscl.AdaptiveMeasurementData_lowLimitUncertainty_get, _mscl.AdaptiveMeasurementData_lowLimitUncertainty_set) - highLimitUncertainty = property(_mscl.AdaptiveMeasurementData_highLimitUncertainty_get, _mscl.AdaptiveMeasurementData_highLimitUncertainty_set) - minUncertainty = property(_mscl.AdaptiveMeasurementData_minUncertainty_get, _mscl.AdaptiveMeasurementData_minUncertainty_set) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementData - -# Register AdaptiveMeasurementData in _mscl: -_mscl.AdaptiveMeasurementData_swigregister(AdaptiveMeasurementData) - -class AutoAdaptiveFilterOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AutoAdaptiveFilterOptions_swiginit(self, _mscl.new_AutoAdaptiveFilterOptions(*args)) - level = property(_mscl.AutoAdaptiveFilterOptions_level_get, _mscl.AutoAdaptiveFilterOptions_level_set) - timeLimit = property(_mscl.AutoAdaptiveFilterOptions_timeLimit_get, _mscl.AutoAdaptiveFilterOptions_timeLimit_set) - __swig_destroy__ = _mscl.delete_AutoAdaptiveFilterOptions - -# Register AutoAdaptiveFilterOptions in _mscl: -_mscl.AutoAdaptiveFilterOptions_swigregister(AutoAdaptiveFilterOptions) - -class SignalConditioningValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ENABLE_ORIENTATION_CALC = _mscl.SignalConditioningValues_ENABLE_ORIENTATION_CALC - ENABLE_CONING_SCULLING = _mscl.SignalConditioningValues_ENABLE_CONING_SCULLING - ENABLE_FINITE_SIZE_CORRECTION = _mscl.SignalConditioningValues_ENABLE_FINITE_SIZE_CORRECTION - DISABLE_MAGNETOMETER = _mscl.SignalConditioningValues_DISABLE_MAGNETOMETER - DISABLE_NORTH_COMP = _mscl.SignalConditioningValues_DISABLE_NORTH_COMP - DISABLE_UP_COMP = _mscl.SignalConditioningValues_DISABLE_UP_COMP - ENABLE_QUATERNION_CALC = _mscl.SignalConditioningValues_ENABLE_QUATERNION_CALC - HIGH = _mscl.SignalConditioningValues_HIGH - LOW = _mscl.SignalConditioningValues_LOW - dataConditioningFlags = property(_mscl.SignalConditioningValues_dataConditioningFlags_get, _mscl.SignalConditioningValues_dataConditioningFlags_set) - orientationCalcDecimation = property(_mscl.SignalConditioningValues_orientationCalcDecimation_get, _mscl.SignalConditioningValues_orientationCalcDecimation_set) - accelGyroFilterWidth = property(_mscl.SignalConditioningValues_accelGyroFilterWidth_get, _mscl.SignalConditioningValues_accelGyroFilterWidth_set) - magFilterWidth = property(_mscl.SignalConditioningValues_magFilterWidth_get, _mscl.SignalConditioningValues_magFilterWidth_set) - upCompensation = property(_mscl.SignalConditioningValues_upCompensation_get, _mscl.SignalConditioningValues_upCompensation_set) - northCompensation = property(_mscl.SignalConditioningValues_northCompensation_get, _mscl.SignalConditioningValues_northCompensation_set) - magBandwidthPower = property(_mscl.SignalConditioningValues_magBandwidthPower_get, _mscl.SignalConditioningValues_magBandwidthPower_set) - - def __init__(self): - _mscl.SignalConditioningValues_swiginit(self, _mscl.new_SignalConditioningValues()) - - def conditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_conditioningOptionOn(self, *args) - - def setConditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOn(self, *args) - - def setConditioningOptionOff(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOff(self, *args) - __swig_destroy__ = _mscl.delete_SignalConditioningValues - -# Register SignalConditioningValues in _mscl: -_mscl.SignalConditioningValues_swigregister(SignalConditioningValues) - -class EnableDisableMeasurements(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ACCELEROMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_ACCELEROMETER_MEASUREMENTS - MAGNETOMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_MAGNETOMETER_MEASUREMENTS - - def __init__(self, *args): - _mscl.EnableDisableMeasurements_swiginit(self, _mscl.new_EnableDisableMeasurements(*args)) - measurementOptions = property(_mscl.EnableDisableMeasurements_measurementOptions_get, _mscl.EnableDisableMeasurements_measurementOptions_set) - - def optionEnabled(self, *args): - return _mscl.EnableDisableMeasurements_optionEnabled(self, *args) - - def enableOption(self, *args): - return _mscl.EnableDisableMeasurements_enableOption(self, *args) - - def disableOption(self, *args): - return _mscl.EnableDisableMeasurements_disableOption(self, *args) - __swig_destroy__ = _mscl.delete_EnableDisableMeasurements - -# Register EnableDisableMeasurements in _mscl: -_mscl.EnableDisableMeasurements_swigregister(EnableDisableMeasurements) - -class RTKDeviceStatusFlags(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MODEM_STATE = _mscl.RTKDeviceStatusFlags_MODEM_STATE - CONNECTION_TYPE = _mscl.RTKDeviceStatusFlags_CONNECTION_TYPE - RSSI = _mscl.RTKDeviceStatusFlags_RSSI - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_SIGNAL_QUALITY - TOWER_CHANGE_INDICATOR = _mscl.RTKDeviceStatusFlags_TOWER_CHANGE_INDICATOR - NMEA_TIMEOUT = _mscl.RTKDeviceStatusFlags_NMEA_TIMEOUT - SERVER_TIMEOUT = _mscl.RTKDeviceStatusFlags_SERVER_TIMEOUT - RTCM_TIMEOUT = _mscl.RTKDeviceStatusFlags_RTCM_TIMEOUT - DEVICE_OUT_OF_RANGE = _mscl.RTKDeviceStatusFlags_DEVICE_OUT_OF_RANGE - CORRECTIONS_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_CORRECTIONS_UNAVAILABLE - VERSION = _mscl.RTKDeviceStatusFlags_VERSION - OFF = _mscl.RTKDeviceStatusFlags_OFF - NO_NETWORK = _mscl.RTKDeviceStatusFlags_NO_NETWORK - NETWORK_CONNECTED = _mscl.RTKDeviceStatusFlags_NETWORK_CONNECTED - CONFIGURING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_CONFIGURING_DATA_CONTEXT - ACTIVATING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_ACTIVATING_DATA_CONTEXT - CONFIGURING_SOCKET = _mscl.RTKDeviceStatusFlags_CONFIGURING_SOCKET - WAITING_ON_SERVER_HANDSHAKE = _mscl.RTKDeviceStatusFlags_WAITING_ON_SERVER_HANDSHAKE - CONNECTED_AND_IDLE = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_IDLE - CONNECTED_AND_STREAMING = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_STREAMING - NO_CONNECTION = _mscl.RTKDeviceStatusFlags_NO_CONNECTION - CONNECTION_2G = _mscl.RTKDeviceStatusFlags_CONNECTION_2G - CONNECTION_3G = _mscl.RTKDeviceStatusFlags_CONNECTION_3G - CONNECTION_4G = _mscl.RTKDeviceStatusFlags_CONNECTION_4G - CONNECTION_5G = _mscl.RTKDeviceStatusFlags_CONNECTION_5G - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_swiginit(self, _mscl.new_RTKDeviceStatusFlags(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_version(self) - - def modemState(self, *args): - return _mscl.RTKDeviceStatusFlags_modemState(self, *args) - - def connectionType(self, *args): - return _mscl.RTKDeviceStatusFlags_connectionType(self, *args) - - def rssi(self, *args): - return _mscl.RTKDeviceStatusFlags_rssi(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_signalQuality(self, *args) - - def towerChangeIndicator(self, *args): - return _mscl.RTKDeviceStatusFlags_towerChangeIndicator(self, *args) - - def nmeaTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_nmeaTimeout(self, *args) - - def serverTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_serverTimeout(self, *args) - - def rtcmTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_rtcmTimeout(self, *args) - - def deviceOutOfRange(self, *args): - return _mscl.RTKDeviceStatusFlags_deviceOutOfRange(self, *args) - - def correctionsUnavailable(self, *args): - return _mscl.RTKDeviceStatusFlags_correctionsUnavailable(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags - -# Register RTKDeviceStatusFlags in _mscl: -_mscl.RTKDeviceStatusFlags_swigregister(RTKDeviceStatusFlags) - -class RTKDeviceStatusFlags_v1(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONTROLLER_STATE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATE - PLATFORM_STATE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATE - CONTROLLER_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATUS_CODE - PLATFORM_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATUS_CODE - RESET_REASON = _mscl.RTKDeviceStatusFlags_v1_RESET_REASON - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_v1_SIGNAL_QUALITY - VERSION = _mscl.RTKDeviceStatusFlags_v1_VERSION - IDLE = _mscl.RTKDeviceStatusFlags_v1_IDLE - ACTIVE = _mscl.RTKDeviceStatusFlags_v1_ACTIVE - MODEM_OFF = _mscl.RTKDeviceStatusFlags_v1_MODEM_OFF - MODEM_POWERING_ON = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_ON - MODEM_CONFIGURE = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONFIGURE - MODEM_POWERING_DOWN = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_DOWN - MODEM_READY = _mscl.RTKDeviceStatusFlags_v1_MODEM_READY - MODEM_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTING - MODEM_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_DISCONNECTING - MODEM_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTED - SERVICE_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTING - SERVICE_CONNECTION_FAILED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_FAILED - SERVICE_CONNECTION_CANCELED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_CANCELED - SERVICE_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_DISCONNECTING - SERVICE_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTED - PLATFORM_ERROR = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_ERROR - RESET_MODEM = _mscl.RTKDeviceStatusFlags_v1_RESET_MODEM - CONTROLLER_OK = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_OK - WAITING_NMEA = _mscl.RTKDeviceStatusFlags_v1_WAITING_NMEA - RTK_TIMEOUT = _mscl.RTKDeviceStatusFlags_v1_RTK_TIMEOUT - RTK_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_v1_RTK_UNAVAILABLE - CONFIG_INVALID = _mscl.RTKDeviceStatusFlags_v1_CONFIG_INVALID - PLATFORM_OK = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_OK - RTK_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_RTK_CONNECTION_DROPPED - CELL_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_CELL_CONNECTION_DROPPED - MODEM_ERROR = _mscl.RTKDeviceStatusFlags_v1_MODEM_ERROR - POWER_ON = _mscl.RTKDeviceStatusFlags_v1_POWER_ON - UNKNOWN = _mscl.RTKDeviceStatusFlags_v1_UNKNOWN - SOFT_RESET = _mscl.RTKDeviceStatusFlags_v1_SOFT_RESET - HARDWARE_ERROR_RESET = _mscl.RTKDeviceStatusFlags_v1_HARDWARE_ERROR_RESET - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_v1_swiginit(self, _mscl.new_RTKDeviceStatusFlags_v1(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_v1_version(self) - - def controllerState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerState(self, *args) - - def platformState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformState(self, *args) - - def controllerStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerStatusCode(self, *args) - - def platformStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformStatusCode(self, *args) - - def resetReason(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_resetReason(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_signalQuality(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags_v1 - -# Register RTKDeviceStatusFlags_v1 in _mscl: -_mscl.RTKDeviceStatusFlags_v1_swigregister(RTKDeviceStatusFlags_v1) - -class GnssSignalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - L1CA = _mscl.GnssSignalConfiguration_L1CA - L2C = _mscl.GnssSignalConfiguration_L2C - L1OF = _mscl.GnssSignalConfiguration_L1OF - L2OF = _mscl.GnssSignalConfiguration_L2OF - E1 = _mscl.GnssSignalConfiguration_E1 - E5B = _mscl.GnssSignalConfiguration_E5B - B1 = _mscl.GnssSignalConfiguration_B1 - B2 = _mscl.GnssSignalConfiguration_B2 - - def __init__(self): - _mscl.GnssSignalConfiguration_swiginit(self, _mscl.new_GnssSignalConfiguration()) - - def enableGpsSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGpsSignal(self, signal, enable) - - def gpsSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_gpsSignalEnabled(self, signal) - - def gpsSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_gpsSignalValue(self, *args) - - def enableGlonassSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGlonassSignal(self, signal, enable) - - def glonassSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_glonassSignalEnabled(self, signal) - - def glonassSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_glonassSignalValue(self, *args) - - def enableGalileoSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGalileoSignal(self, signal, enable) - - def galileoSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_galileoSignalEnabled(self, signal) - - def galileoSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_galileoSignalValue(self, *args) - - def enableBeiDouSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableBeiDouSignal(self, signal, enable) - - def beidouSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_beidouSignalEnabled(self, signal) - - def beidouSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_beidouSignalValue(self, *args) - __swig_destroy__ = _mscl.delete_GnssSignalConfiguration - -# Register GnssSignalConfiguration in _mscl: -_mscl.GnssSignalConfiguration_swigregister(GnssSignalConfiguration) - -class GnssSpartnConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - KEY_SIZE = _mscl.GnssSpartnConfiguration_KEY_SIZE - NONE = _mscl.GnssSpartnConfiguration_NONE - NETWORK = _mscl.GnssSpartnConfiguration_NETWORK - LBAND = _mscl.GnssSpartnConfiguration_LBAND - - def __init__(self): - _mscl.GnssSpartnConfiguration_swiginit(self, _mscl.new_GnssSpartnConfiguration()) - - def enable(self, enable): - return _mscl.GnssSpartnConfiguration_enable(self, enable) - - def enabled(self): - return _mscl.GnssSpartnConfiguration_enabled(self) - - def type(self, *args): - return _mscl.GnssSpartnConfiguration_type(self, *args) - - def currentKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyTow(self, *args) - - def currentKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyWeek(self, *args) - - def currentKey(self, *args): - return _mscl.GnssSpartnConfiguration_currentKey(self, *args) - - def nextKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyTow(self, *args) - - def nextKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyWeek(self, *args) - - def nextKey(self, *args): - return _mscl.GnssSpartnConfiguration_nextKey(self, *args) - __swig_destroy__ = _mscl.delete_GnssSpartnConfiguration - -# Register GnssSpartnConfiguration in _mscl: -_mscl.GnssSpartnConfiguration_swigregister(GnssSpartnConfiguration) - -class PositionReferenceConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - autoConfig = property(_mscl.PositionReferenceConfiguration_autoConfig_get, _mscl.PositionReferenceConfiguration_autoConfig_set) - position = property(_mscl.PositionReferenceConfiguration_position_get, _mscl.PositionReferenceConfiguration_position_set) - - def __init__(self): - _mscl.PositionReferenceConfiguration_swiginit(self, _mscl.new_PositionReferenceConfiguration()) - __swig_destroy__ = _mscl.delete_PositionReferenceConfiguration - -# Register PositionReferenceConfiguration in _mscl: -_mscl.PositionReferenceConfiguration_swigregister(PositionReferenceConfiguration) - -class AntennaLeverArmCalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enabled = property(_mscl.AntennaLeverArmCalConfiguration_enabled_get, _mscl.AntennaLeverArmCalConfiguration_enabled_set) - maxOffsetError = property(_mscl.AntennaLeverArmCalConfiguration_maxOffsetError_get, _mscl.AntennaLeverArmCalConfiguration_maxOffsetError_set) - - def __init__(self): - _mscl.AntennaLeverArmCalConfiguration_swiginit(self, _mscl.new_AntennaLeverArmCalConfiguration()) - __swig_destroy__ = _mscl.delete_AntennaLeverArmCalConfiguration - -# Register AntennaLeverArmCalConfiguration in _mscl: -_mscl.AntennaLeverArmCalConfiguration_swigregister(AntennaLeverArmCalConfiguration) - -class OdometerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.OdometerConfiguration_DISABLED - SINGLE = _mscl.OdometerConfiguration_SINGLE - QUADRATURE = _mscl.OdometerConfiguration_QUADRATURE - - def __init__(self): - _mscl.OdometerConfiguration_swiginit(self, _mscl.new_OdometerConfiguration()) - - def mode(self, *args): - return _mscl.OdometerConfiguration_mode(self, *args) - - def uncertainty(self, *args): - return _mscl.OdometerConfiguration_uncertainty(self, *args) - - def scaling(self, *args): - return _mscl.OdometerConfiguration_scaling(self, *args) - __swig_destroy__ = _mscl.delete_OdometerConfiguration - -# Register OdometerConfiguration in _mscl: -_mscl.OdometerConfiguration_swigregister(OdometerConfiguration) - -class GpioConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - UNUSED_FEATURE = _mscl.GpioConfiguration_UNUSED_FEATURE - GPIO_FEATURE = _mscl.GpioConfiguration_GPIO_FEATURE - PPS_FEATURE = _mscl.GpioConfiguration_PPS_FEATURE - ENCODER_FEATURE = _mscl.GpioConfiguration_ENCODER_FEATURE - EVENT_TIMESTAMP_FEATURE = _mscl.GpioConfiguration_EVENT_TIMESTAMP_FEATURE - UART_FEATURE = _mscl.GpioConfiguration_UART_FEATURE - GPIO_UNUSED = _mscl.GpioConfiguration_GPIO_UNUSED - GPIO_INPUT = _mscl.GpioConfiguration_GPIO_INPUT - GPIO_OUTPUT_LOW = _mscl.GpioConfiguration_GPIO_OUTPUT_LOW - GPIO_OUTPUT_HIGH = _mscl.GpioConfiguration_GPIO_OUTPUT_HIGH - PPS_UNUSED = _mscl.GpioConfiguration_PPS_UNUSED - PPS_INPUT = _mscl.GpioConfiguration_PPS_INPUT - PPS_OUTPUT = _mscl.GpioConfiguration_PPS_OUTPUT - ENCODER_UNUSED = _mscl.GpioConfiguration_ENCODER_UNUSED - ENCODER_A = _mscl.GpioConfiguration_ENCODER_A - ENCODER_B = _mscl.GpioConfiguration_ENCODER_B - TIMESTAMP_UNUSED = _mscl.GpioConfiguration_TIMESTAMP_UNUSED - TIMESTAMP_RISING = _mscl.GpioConfiguration_TIMESTAMP_RISING - TIMESTAMP_FALLING = _mscl.GpioConfiguration_TIMESTAMP_FALLING - TIMESTAMP_EITHER = _mscl.GpioConfiguration_TIMESTAMP_EITHER - UART_UNUSED = _mscl.GpioConfiguration_UART_UNUSED - UART_PORT2_TX = _mscl.GpioConfiguration_UART_PORT2_TX - UART_PORT2_RX = _mscl.GpioConfiguration_UART_PORT2_RX - UART_PORT3_TX = _mscl.GpioConfiguration_UART_PORT3_TX - UART_PORT3_RX = _mscl.GpioConfiguration_UART_PORT3_RX - NONE = _mscl.GpioConfiguration_NONE - OPEN_DRAIN = _mscl.GpioConfiguration_OPEN_DRAIN - PULLDOWN = _mscl.GpioConfiguration_PULLDOWN - PULLUP = _mscl.GpioConfiguration_PULLUP - pinMode = property(_mscl.GpioConfiguration_pinMode_get, _mscl.GpioConfiguration_pinMode_set) - pin = property(_mscl.GpioConfiguration_pin_get, _mscl.GpioConfiguration_pin_set) - feature = property(_mscl.GpioConfiguration_feature_get, _mscl.GpioConfiguration_feature_set) - behavior = property(_mscl.GpioConfiguration_behavior_get, _mscl.GpioConfiguration_behavior_set) - - def pinModeValue(self, *args): - return _mscl.GpioConfiguration_pinModeValue(self, *args) - - def __init__(self): - _mscl.GpioConfiguration_swiginit(self, _mscl.new_GpioConfiguration()) - __swig_destroy__ = _mscl.delete_GpioConfiguration - -# Register GpioConfiguration in _mscl: -_mscl.GpioConfiguration_swigregister(GpioConfiguration) - -DISABLED = _mscl.DISABLED -ENABLED = _mscl.ENABLED -TEST = _mscl.TEST -TEST_PULSE = _mscl.TEST_PULSE -class EventTriggerGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventTriggerGpioParameter_DISABLED - WHILE_HIGH = _mscl.EventTriggerGpioParameter_WHILE_HIGH - WHILE_LOW = _mscl.EventTriggerGpioParameter_WHILE_LOW - EDGE = _mscl.EventTriggerGpioParameter_EDGE - pin = property(_mscl.EventTriggerGpioParameter_pin_get, _mscl.EventTriggerGpioParameter_pin_set) - mode = property(_mscl.EventTriggerGpioParameter_mode_get, _mscl.EventTriggerGpioParameter_mode_set) - - def __init__(self): - _mscl.EventTriggerGpioParameter_swiginit(self, _mscl.new_EventTriggerGpioParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerGpioParameter - -# Register EventTriggerGpioParameter in _mscl: -_mscl.EventTriggerGpioParameter_swigregister(EventTriggerGpioParameter) - -class EventTriggerThresholdParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - WINDOW_TYPE = _mscl.EventTriggerThresholdParameter_WINDOW_TYPE - INTERVAL_TYPE = _mscl.EventTriggerThresholdParameter_INTERVAL_TYPE - type = property(_mscl.EventTriggerThresholdParameter_type_get, _mscl.EventTriggerThresholdParameter_type_set) - lowThreshold = property(_mscl.EventTriggerThresholdParameter_lowThreshold_get, _mscl.EventTriggerThresholdParameter_lowThreshold_set) - highThreshold = property(_mscl.EventTriggerThresholdParameter_highThreshold_get, _mscl.EventTriggerThresholdParameter_highThreshold_set) - - def channel(self, *args): - return _mscl.EventTriggerThresholdParameter_channel(self, *args) - - def channelField(self): - return _mscl.EventTriggerThresholdParameter_channelField(self) - - def channelQualifier(self): - return _mscl.EventTriggerThresholdParameter_channelQualifier(self) - - def channelIndex(self): - return _mscl.EventTriggerThresholdParameter_channelIndex(self) - - def __init__(self): - _mscl.EventTriggerThresholdParameter_swiginit(self, _mscl.new_EventTriggerThresholdParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerThresholdParameter - -# Register EventTriggerThresholdParameter in _mscl: -_mscl.EventTriggerThresholdParameter_swigregister(EventTriggerThresholdParameter) - -class EventTriggerCombinationParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_INPUT_TRIGGERS = _mscl.EventTriggerCombinationParameter_MAX_INPUT_TRIGGERS - LOGIC_NEVER = _mscl.EventTriggerCombinationParameter_LOGIC_NEVER - LOGIC_ALWAYS = _mscl.EventTriggerCombinationParameter_LOGIC_ALWAYS - LOGIC_NONE = _mscl.EventTriggerCombinationParameter_LOGIC_NONE - LOGIC_OR = _mscl.EventTriggerCombinationParameter_LOGIC_OR - LOGIC_NAND = _mscl.EventTriggerCombinationParameter_LOGIC_NAND - LOGIC_XOR_ONE = _mscl.EventTriggerCombinationParameter_LOGIC_XOR_ONE - LOGIC_ONLY_A = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_A - LOGIC_ONLY_B = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_B - LOGIC_ONLY_C = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_C - LOGIC_ONLY_D = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_D - LOGIC_AND_AB = _mscl.EventTriggerCombinationParameter_LOGIC_AND_AB - LOGIC_AB_OR_C = _mscl.EventTriggerCombinationParameter_LOGIC_AB_OR_C - LOGIC_AND = _mscl.EventTriggerCombinationParameter_LOGIC_AND - logicTable = property(_mscl.EventTriggerCombinationParameter_logicTable_get, _mscl.EventTriggerCombinationParameter_logicTable_set) - inputTriggers = property(_mscl.EventTriggerCombinationParameter_inputTriggers_get, _mscl.EventTriggerCombinationParameter_inputTriggers_set) - - def __init__(self): - _mscl.EventTriggerCombinationParameter_swiginit(self, _mscl.new_EventTriggerCombinationParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerCombinationParameter - -# Register EventTriggerCombinationParameter in _mscl: -_mscl.EventTriggerCombinationParameter_swigregister(EventTriggerCombinationParameter) - -class EventTriggerParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerParameters_swiginit(self, _mscl.new_EventTriggerParameters()) - gpio = property(_mscl.EventTriggerParameters_gpio_get, _mscl.EventTriggerParameters_gpio_set) - threshold = property(_mscl.EventTriggerParameters_threshold_get, _mscl.EventTriggerParameters_threshold_set) - combination = property(_mscl.EventTriggerParameters_combination_get, _mscl.EventTriggerParameters_combination_set) - __swig_destroy__ = _mscl.delete_EventTriggerParameters - -# Register EventTriggerParameters in _mscl: -_mscl.EventTriggerParameters_swigregister(EventTriggerParameters) - -class EventTriggerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventTriggerConfiguration_NONE - GPIO_TRIGGER = _mscl.EventTriggerConfiguration_GPIO_TRIGGER - THRESHOLD_TRIGGER = _mscl.EventTriggerConfiguration_THRESHOLD_TRIGGER - COMBINATION_TRIGGER = _mscl.EventTriggerConfiguration_COMBINATION_TRIGGER - instance = property(_mscl.EventTriggerConfiguration_instance_get, _mscl.EventTriggerConfiguration_instance_set) - trigger = property(_mscl.EventTriggerConfiguration_trigger_get, _mscl.EventTriggerConfiguration_trigger_set) - parameters = property(_mscl.EventTriggerConfiguration_parameters_get, _mscl.EventTriggerConfiguration_parameters_set) - - def __init__(self): - _mscl.EventTriggerConfiguration_swiginit(self, _mscl.new_EventTriggerConfiguration()) - __swig_destroy__ = _mscl.delete_EventTriggerConfiguration - -# Register EventTriggerConfiguration in _mscl: -_mscl.EventTriggerConfiguration_swigregister(EventTriggerConfiguration) - -class EventActionGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventActionGpioParameter_DISABLED - ACTIVE_HIGH = _mscl.EventActionGpioParameter_ACTIVE_HIGH - ACTIVE_LOW = _mscl.EventActionGpioParameter_ACTIVE_LOW - ONESHOT_HIGH = _mscl.EventActionGpioParameter_ONESHOT_HIGH - ONESHOT_LOW = _mscl.EventActionGpioParameter_ONESHOT_LOW - TOGGLE = _mscl.EventActionGpioParameter_TOGGLE - pin = property(_mscl.EventActionGpioParameter_pin_get, _mscl.EventActionGpioParameter_pin_set) - mode = property(_mscl.EventActionGpioParameter_mode_get, _mscl.EventActionGpioParameter_mode_set) - - def __init__(self): - _mscl.EventActionGpioParameter_swiginit(self, _mscl.new_EventActionGpioParameter()) - __swig_destroy__ = _mscl.delete_EventActionGpioParameter - -# Register EventActionGpioParameter in _mscl: -_mscl.EventActionGpioParameter_swigregister(EventActionGpioParameter) - -class EventActionMessageParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_DESCRIPTORS = _mscl.EventActionMessageParameter_MAX_DESCRIPTORS - sampleRate = property(_mscl.EventActionMessageParameter_sampleRate_get, _mscl.EventActionMessageParameter_sampleRate_set) - - def dataClass(self): - return _mscl.EventActionMessageParameter_dataClass(self) - - def setChannelFields(self, dataClass, fields): - return _mscl.EventActionMessageParameter_setChannelFields(self, dataClass, fields) - - def getChannelFields(self): - return _mscl.EventActionMessageParameter_getChannelFields(self) - - def __init__(self): - _mscl.EventActionMessageParameter_swiginit(self, _mscl.new_EventActionMessageParameter()) - __swig_destroy__ = _mscl.delete_EventActionMessageParameter - -# Register EventActionMessageParameter in _mscl: -_mscl.EventActionMessageParameter_swigregister(EventActionMessageParameter) - -class EventActionParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventActionParameters_swiginit(self, _mscl.new_EventActionParameters()) - gpio = property(_mscl.EventActionParameters_gpio_get, _mscl.EventActionParameters_gpio_set) - message = property(_mscl.EventActionParameters_message_get, _mscl.EventActionParameters_message_set) - __swig_destroy__ = _mscl.delete_EventActionParameters - -# Register EventActionParameters in _mscl: -_mscl.EventActionParameters_swigregister(EventActionParameters) - -class EventActionConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventActionConfiguration_NONE - GPIO = _mscl.EventActionConfiguration_GPIO - MESSAGE = _mscl.EventActionConfiguration_MESSAGE - instance = property(_mscl.EventActionConfiguration_instance_get, _mscl.EventActionConfiguration_instance_set) - trigger = property(_mscl.EventActionConfiguration_trigger_get, _mscl.EventActionConfiguration_trigger_set) - type = property(_mscl.EventActionConfiguration_type_get, _mscl.EventActionConfiguration_type_set) - parameters = property(_mscl.EventActionConfiguration_parameters_get, _mscl.EventActionConfiguration_parameters_set) - - def __init__(self): - _mscl.EventActionConfiguration_swiginit(self, _mscl.new_EventActionConfiguration()) - __swig_destroy__ = _mscl.delete_EventActionConfiguration - -# Register EventActionConfiguration in _mscl: -_mscl.EventActionConfiguration_swigregister(EventActionConfiguration) - -class EventTriggerInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTriggerInfo_swiginit(self, _mscl.new_EventTriggerInfo(*args)) - ACTIVE = _mscl.EventTriggerInfo_ACTIVE - ENABLED = _mscl.EventTriggerInfo_ENABLED - TEST = _mscl.EventTriggerInfo_TEST - type = property(_mscl.EventTriggerInfo_type_get, _mscl.EventTriggerInfo_type_set) - instanceId = property(_mscl.EventTriggerInfo_instanceId_get, _mscl.EventTriggerInfo_instanceId_set) - - def isActive(self): - return _mscl.EventTriggerInfo_isActive(self) - - def isEnabled(self): - return _mscl.EventTriggerInfo_isEnabled(self) - - def isTestMode(self): - return _mscl.EventTriggerInfo_isTestMode(self) - - def setStatus(self, value): - return _mscl.EventTriggerInfo_setStatus(self, value) - __swig_destroy__ = _mscl.delete_EventTriggerInfo - -# Register EventTriggerInfo in _mscl: -_mscl.EventTriggerInfo_swigregister(EventTriggerInfo) - -class EventActionInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventActionInfo_swiginit(self, _mscl.new_EventActionInfo(*args)) - type = property(_mscl.EventActionInfo_type_get, _mscl.EventActionInfo_type_set) - triggerId = property(_mscl.EventActionInfo_triggerId_get, _mscl.EventActionInfo_triggerId_set) - instanceId = property(_mscl.EventActionInfo_instanceId_get, _mscl.EventActionInfo_instanceId_set) - __swig_destroy__ = _mscl.delete_EventActionInfo - -# Register EventActionInfo in _mscl: -_mscl.EventActionInfo_swigregister(EventActionInfo) - -class MeasurementReferenceFrame(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MeasurementReferenceFrame_swiginit(self, _mscl.new_MeasurementReferenceFrame(*args)) - - def asMipFieldValues(self): - return _mscl.MeasurementReferenceFrame_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.MeasurementReferenceFrame_appendMipFieldValues(self, appendTo) - - def translation(self, *args): - return _mscl.MeasurementReferenceFrame_translation(self, *args) - - def rotation(self, *args): - return _mscl.MeasurementReferenceFrame_rotation(self, *args) - - def errorTrackingEnabled(self): - return _mscl.MeasurementReferenceFrame_errorTrackingEnabled(self) - - def enableErrorTracking(self, enable=True): - return _mscl.MeasurementReferenceFrame_enableErrorTracking(self, enable) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrame - -# Register MeasurementReferenceFrame in _mscl: -_mscl.MeasurementReferenceFrame_swigregister(MeasurementReferenceFrame) - -class MipChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipChannel_swiginit(self, _mscl.new_MipChannel(*args)) - - def channelField(self): - return _mscl.MipChannel_channelField(self) - - def sampleRate(self): - return _mscl.MipChannel_sampleRate(self) - - def rateDecimation(self, sampleRateBase): - return _mscl.MipChannel_rateDecimation(self, sampleRateBase) - __swig_destroy__ = _mscl.delete_MipChannel - -# Register MipChannel in _mscl: -_mscl.MipChannel_swigregister(MipChannel) - -class MipPacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MIP_ACK_NACK_ERROR_NONE = _mscl.MipPacket_MIP_ACK_NACK_ERROR_NONE - MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND - MIP_ACK_NACK_ERROR_CHECKSUM_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_CHECKSUM_INVALID - MIP_ACK_NACK_ERROR_PARAMETER_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_PARAMETER_INVALID - MIP_ACK_NACK_ERROR_COMMAND_FAILED = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_FAILED - MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT - MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET - - def __init__(self): - _mscl.MipPacket_swiginit(self, _mscl.new_MipPacket()) - - @staticmethod - def isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - - def descriptorSet(self): - return _mscl.MipPacket_descriptorSet(self) - - def payload(self): - return _mscl.MipPacket_payload(self) - __swig_destroy__ = _mscl.delete_MipPacket - -# Register MipPacket in _mscl: -_mscl.MipPacket_swigregister(MipPacket) - -def MipPacket_isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - -class MipDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def field(self): - return _mscl.MipDataPoint_field(self) - - def qualifier(self): - return _mscl.MipDataPoint_qualifier(self) - - def hasAddlIdentifiers(self): - return _mscl.MipDataPoint_hasAddlIdentifiers(self) - - def addlIdentifiers(self): - return _mscl.MipDataPoint_addlIdentifiers(self) - - def hasValidFlag(self): - return _mscl.MipDataPoint_hasValidFlag(self) - - def valid(self): - return _mscl.MipDataPoint_valid(self) - - def channelName(self, includeAddlIds=True, consolidatedFormat=False): - return _mscl.MipDataPoint_channelName(self, includeAddlIds, consolidatedFormat) - __swig_destroy__ = _mscl.delete_MipDataPoint - -# Register MipDataPoint in _mscl: -_mscl.MipDataPoint_swigregister(MipDataPoint) - -class ContinuousBIT(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def as_MipDataPoints(self): - return _mscl.ContinuousBIT_as_MipDataPoints(self) - - @staticmethod - def getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - - def data(self): - return _mscl.ContinuousBIT_data(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_bufferOverrun(self) - - def imuClockFault(self): - return _mscl.ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_pressureSelfTestFail(self) - - def filterTimingOverrun(self): - return _mscl.ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.ContinuousBIT_filterTimingUnderrun(self) - -# Register ContinuousBIT in _mscl: -_mscl.ContinuousBIT_swigregister(ContinuousBIT) - -def ContinuousBIT_getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - -class ContinuousBIT_System_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - SYSTEM_CLOCK_FAILURE = _mscl.ContinuousBIT_System_General_SYSTEM_CLOCK_FAILURE - POWER_FAULT = _mscl.ContinuousBIT_System_General_POWER_FAULT - FIRMWARE_FAULT = _mscl.ContinuousBIT_System_General_FIRMWARE_FAULT - TIMING_OVERLOAD = _mscl.ContinuousBIT_System_General_TIMING_OVERLOAD - BUFFER_OVERRUN = _mscl.ContinuousBIT_System_General_BUFFER_OVERRUN - - def flags(self): - return _mscl.ContinuousBIT_System_General_flags(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_System_General_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_System_General_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_System_General_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_System_General_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_System_General_bufferOverrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_General - -# Register ContinuousBIT_System_General in _mscl: -_mscl.ContinuousBIT_System_General_swigregister(ContinuousBIT_System_General) - -class ContinuousBIT_System_Process(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def flags(self): - return _mscl.ContinuousBIT_System_Process_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_Process - -# Register ContinuousBIT_System_Process in _mscl: -_mscl.ContinuousBIT_System_Process_swigregister(ContinuousBIT_System_Process) - -class ContinuousBIT_System(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_System_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_System_GENERAL_FLAGS - PROCESS_FLAGS = _mscl.ContinuousBIT_System_PROCESS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_System_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System - -# Register ContinuousBIT_System in _mscl: -_mscl.ContinuousBIT_System_swigregister(ContinuousBIT_System) - -class ContinuousBIT_IMU_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - CLOCK_FAULT = _mscl.ContinuousBIT_IMU_General_CLOCK_FAULT - COMMUNICATION_FAULT = _mscl.ContinuousBIT_IMU_General_COMMUNICATION_FAULT - TIMING_OVERRUN = _mscl.ContinuousBIT_IMU_General_TIMING_OVERRUN - CALIBRATION_ERROR_ACCEL = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_ACCEL - CALIBRATION_ERROR_GYRO = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_GYRO - CALIBRATION_ERROR_MAG = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_MAG - - def flags(self): - return _mscl.ContinuousBIT_IMU_General_flags(self) - - def clockFault(self): - return _mscl.ContinuousBIT_IMU_General_clockFault(self) - - def communicationFault(self): - return _mscl.ContinuousBIT_IMU_General_communicationFault(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_IMU_General_timingOverrun(self) - - def calibrationErrorAccel(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorAccel(self) - - def calibrationErrorGyro(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorGyro(self) - - def calibrationErrorMag(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorMag(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_General - -# Register ContinuousBIT_IMU_General in _mscl: -_mscl.ContinuousBIT_IMU_General_swigregister(ContinuousBIT_IMU_General) - -class ContinuousBIT_IMU_Sensors(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - ACCEL_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_GENERAL_FAULT - ACCEL_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_OVERRANGE - ACCEL_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_SELF_TEST_FAIL - GYRO_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_GYRO_GENERAL_FAULT - GYRO_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_GYRO_OVERRANGE - GYRO_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_GYRO_SELF_TEST_FAIL - MAG_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_MAG_GENERAL_FAULT - MAG_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_MAG_OVERRANGE - MAG_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_MAG_SELF_TEST_FAIL - PRESSURE_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_GENERAL_FAULT - PRESSURE_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_OVERRANGE - PRESSURE_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_SELF_TEST_FAIL - - def flags(self): - return _mscl.ContinuousBIT_IMU_Sensors_flags(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureSelfTestFail(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_Sensors - -# Register ContinuousBIT_IMU_Sensors in _mscl: -_mscl.ContinuousBIT_IMU_Sensors_swigregister(ContinuousBIT_IMU_Sensors) - -class ContinuousBIT_IMU(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_IMU_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_IMU_GENERAL_FLAGS - SENSORS_FLAGS = _mscl.ContinuousBIT_IMU_SENSORS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_IMU_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU - -# Register ContinuousBIT_IMU in _mscl: -_mscl.ContinuousBIT_IMU_swigregister(ContinuousBIT_IMU) - -class ContinuousBIT_Filter_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - TIMING_OVERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_OVERRUN - TIMING_UNDERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_UNDERRUN - - def flags(self): - return _mscl.ContinuousBIT_Filter_General_flags(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_Filter_General_timingOverrun(self) - - def timingUnderrun(self): - return _mscl.ContinuousBIT_Filter_General_timingUnderrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter_General - -# Register ContinuousBIT_Filter_General in _mscl: -_mscl.ContinuousBIT_Filter_General_swigregister(ContinuousBIT_Filter_General) - -class ContinuousBIT_Filter(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_Filter_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_Filter_GENERAL_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_Filter_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter - -# Register ContinuousBIT_Filter in _mscl: -_mscl.ContinuousBIT_Filter_swigregister(ContinuousBIT_Filter) - -class CV7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_General_swiginit(self, _mscl.new_CV7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_General - -# Register CV7ContinuousBIT_System_General in _mscl: -_mscl.CV7ContinuousBIT_System_General_swigregister(CV7ContinuousBIT_System_General) - -class CV7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_Process_swiginit(self, _mscl.new_CV7ContinuousBIT_System_Process(*args)) - IMU_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_IMU_PROCESS_FAULT - IMU_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_IMU_RATE_MISMATCH - IMU_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_IMU_DROPPED_DATA - IMU_STUCK = _mscl.CV7ContinuousBIT_System_Process_IMU_STUCK - FILTER_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_FILTER_PROCESS_FAULT - FILTER_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_FILTER_DROPPED_DATA - FILTER_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_FILTER_RATE_MISMATCH - FILTER_STUCK = _mscl.CV7ContinuousBIT_System_Process_FILTER_STUCK - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_filterStuck(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_Process - -# Register CV7ContinuousBIT_System_Process in _mscl: -_mscl.CV7ContinuousBIT_System_Process_swigregister(CV7ContinuousBIT_System_Process) - -class CV7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_swiginit(self, _mscl.new_CV7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.CV7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System - -# Register CV7ContinuousBIT_System in _mscl: -_mscl.CV7ContinuousBIT_System_swigregister(CV7ContinuousBIT_System) - -class CV7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_General - -# Register CV7ContinuousBIT_IMU_General in _mscl: -_mscl.CV7ContinuousBIT_IMU_General_swigregister(CV7ContinuousBIT_IMU_General) - -class CV7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_Sensors - -# Register CV7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.CV7ContinuousBIT_IMU_Sensors_swigregister(CV7ContinuousBIT_IMU_Sensors) - -class CV7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU(*args)) - FACTORY_BITS_INVALID = _mscl.CV7ContinuousBIT_IMU_FACTORY_BITS_INVALID - - def general(self): - return _mscl.CV7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.CV7ContinuousBIT_IMU_sensors(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_IMU_factoryBitsInvalid(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU - -# Register CV7ContinuousBIT_IMU in _mscl: -_mscl.CV7ContinuousBIT_IMU_swigregister(CV7ContinuousBIT_IMU) - -class CV7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter_General(*args)) - FAULT = _mscl.CV7ContinuousBIT_Filter_General_FAULT - - def fault(self): - return _mscl.CV7ContinuousBIT_Filter_General_fault(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter_General - -# Register CV7ContinuousBIT_Filter_General in _mscl: -_mscl.CV7ContinuousBIT_Filter_General_swigregister(CV7ContinuousBIT_Filter_General) - -class CV7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter - -# Register CV7ContinuousBIT_Filter in _mscl: -_mscl.CV7ContinuousBIT_Filter_swigregister(CV7ContinuousBIT_Filter) - -class CV7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.CV7ContinuousBIT_swiginit(self, _mscl.new_CV7ContinuousBIT(bytes)) - - def system(self): - return _mscl.CV7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.CV7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.CV7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.CV7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.CV7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.CV7ContinuousBIT_bufferOverrun(self) - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_filterStuck(self) - - def imu(self): - return _mscl.CV7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.CV7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.CV7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.CV7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.CV7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.CV7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.CV7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.CV7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.CV7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.CV7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.CV7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.CV7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.CV7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.CV7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.CV7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.CV7ContinuousBIT_pressureSelfTestFail(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_factoryBitsInvalid(self) - - def filter(self): - return _mscl.CV7ContinuousBIT_filter(self) - - def filterFault(self): - return _mscl.CV7ContinuousBIT_filterFault(self) - - def filterTimingOverrun(self): - return _mscl.CV7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.CV7ContinuousBIT_filterTimingUnderrun(self) - - def as_MipDataPoints(self): - return _mscl.CV7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT - -# Register CV7ContinuousBIT in _mscl: -_mscl.CV7ContinuousBIT_swigregister(CV7ContinuousBIT) - -class GQ7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_General - -# Register GQ7ContinuousBIT_System_General in _mscl: -_mscl.GQ7ContinuousBIT_System_General_swigregister(GQ7ContinuousBIT_System_General) - -class GQ7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_Process_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_Process(*args)) - IMU_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_CONTROL_LINE_FAULT - IMU_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_COMMAND_RESPONSE_FAULT - IMU_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_SPI_TRANSFER_FAULT - IMU_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_DATA_FRAME_FAULT - FILTER_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_CONTROL_LINE_FAULT - FILTER_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_COMMAND_RESPONSE_FAULT - FILTER_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_SPI_TRANSFER_FAULT - FILTER_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_DATA_FRAME_FAULT - GNSS_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_CONTROL_LINE_FAULT - GNSS_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_COMMAND_RESPONSE_FAULT - GNSS_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_SPI_TRANSFER_FAULT - GNSS_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_DATA_FRAME_FAULT - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssDataFrameFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_Process - -# Register GQ7ContinuousBIT_System_Process in _mscl: -_mscl.GQ7ContinuousBIT_System_Process_swigregister(GQ7ContinuousBIT_System_Process) - -class GQ7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_swiginit(self, _mscl.new_GQ7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.GQ7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System - -# Register GQ7ContinuousBIT_System in _mscl: -_mscl.GQ7ContinuousBIT_System_swigregister(GQ7ContinuousBIT_System) - -class GQ7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_General - -# Register GQ7ContinuousBIT_IMU_General in _mscl: -_mscl.GQ7ContinuousBIT_IMU_General_swigregister(GQ7ContinuousBIT_IMU_General) - -class GQ7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_Sensors - -# Register GQ7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.GQ7ContinuousBIT_IMU_Sensors_swigregister(GQ7ContinuousBIT_IMU_Sensors) - -class GQ7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.GQ7ContinuousBIT_IMU_sensors(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU - -# Register GQ7ContinuousBIT_IMU in _mscl: -_mscl.GQ7ContinuousBIT_IMU_swigregister(GQ7ContinuousBIT_IMU) - -class GQ7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_HARDWARE_FAULT - COMMUNICATION_ERROR_IMU_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_IMU_SPI - COMMUNICATION_ERROR_GNSS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_GNSS_SPI - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_COMMS_UART = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_UART - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationError(self) - - def communicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorImuSpi(self) - - def communicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorGnssSpi(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsSpi(self) - - def communicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsUart(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter_General - -# Register GQ7ContinuousBIT_Filter_General in _mscl: -_mscl.GQ7ContinuousBIT_Filter_General_swigregister(GQ7ContinuousBIT_Filter_General) - -class GQ7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter - -# Register GQ7ContinuousBIT_Filter in _mscl: -_mscl.GQ7ContinuousBIT_Filter_swigregister(GQ7ContinuousBIT_Filter) - -class GQ7ContinuousBIT_GNSS_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_HARDWARE_FAULT - COMMUNICATION_ERROR_COMMS_SERIAL = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SERIAL - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_NAV_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_NAV_SPI - GPS_TIME_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_GPS_TIME_FAULT - TIMING_OVERRUN = _mscl.GQ7ContinuousBIT_GNSS_General_TIMING_OVERRUN - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_flags(self) - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationError(self) - - def communicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSerial(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSpi(self) - - def communicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_gpsTimeFault(self) - - def timingOverrun(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_timingOverrun(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_General - -# Register GQ7ContinuousBIT_GNSS_General in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_General_swigregister(GQ7ContinuousBIT_GNSS_General) - -class GQ7ContinuousBIT_GNSS_Receivers(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_Receivers_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_Receivers(*args)) - POWER_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_1 - FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_1 - SHORTED_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_1 - OPEN_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_1 - SOLUTION_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_1 - POWER_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_2 - FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_2 - SHORTED_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_2 - OPEN_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_2 - SOLUTION_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_2 - RTCM_COMMUNICATION_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTCM_COMMUNICATION_FAULT - RTK_DONGLE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTK_DONGLE_FAULT - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_flags(self) - - def powerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver1(self) - - def faultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver1(self) - - def shortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna1(self) - - def openAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna1(self) - - def solutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver1(self) - - def powerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver2(self) - - def faultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver2(self) - - def shortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna2(self) - - def openAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna2(self) - - def solutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtkDongleFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_Receivers - -# Register GQ7ContinuousBIT_GNSS_Receivers in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_Receivers_swigregister(GQ7ContinuousBIT_GNSS_Receivers) - -class GQ7ContinuousBIT_GNSS(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS(*args)) - RESPONSE_OFFSET = _mscl.GQ7ContinuousBIT_GNSS_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_GENERAL_FLAGS - RECEIVERS_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_RECEIVERS_FLAGS - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_flags(self) - - def general(self): - return _mscl.GQ7ContinuousBIT_GNSS_general(self) - - def receivers(self): - return _mscl.GQ7ContinuousBIT_GNSS_receivers(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS - -# Register GQ7ContinuousBIT_GNSS in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_swigregister(GQ7ContinuousBIT_GNSS) - -class GQ7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.GQ7ContinuousBIT_swiginit(self, _mscl.new_GQ7ContinuousBIT(bytes)) - - def system(self): - return _mscl.GQ7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.GQ7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.GQ7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.GQ7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.GQ7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.GQ7ContinuousBIT_bufferOverrun(self) - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_gnssDataFrameFault(self) - - def imu(self): - return _mscl.GQ7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.GQ7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.GQ7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.GQ7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.GQ7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.GQ7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.GQ7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.GQ7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.GQ7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.GQ7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_pressureSelfTestFail(self) - - def filter(self): - return _mscl.GQ7ContinuousBIT_filter(self) - - def filterClockFault(self): - return _mscl.GQ7ContinuousBIT_filterClockFault(self) - - def filterHardwareFault(self): - return _mscl.GQ7ContinuousBIT_filterHardwareFault(self) - - def filterTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingUnderrun(self) - - def filterCommunicationError(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationError(self) - - def filterCommunicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorImuSpi(self) - - def filterCommunicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorGnssSpi(self) - - def filterCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsSpi(self) - - def filterCommunicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsUart(self) - - def gnss(self): - return _mscl.GQ7ContinuousBIT_gnss(self) - - def gnssClockFault(self): - return _mscl.GQ7ContinuousBIT_gnssClockFault(self) - - def gnssHardwareFault(self): - return _mscl.GQ7ContinuousBIT_gnssHardwareFault(self) - - def gnssCommunicationError(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationError(self) - - def gnssCommunicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSerial(self) - - def gnssCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSpi(self) - - def gnssCommunicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_gpsTimeFault(self) - - def gnssTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_gnssTimingOverrun(self) - - def gnssPowerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver1(self) - - def gnssFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver1(self) - - def gnssShortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna1(self) - - def gnssOpenAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna1(self) - - def gnssSolutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver1(self) - - def gnssPowerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver2(self) - - def gnssFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver2(self) - - def gnssShortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna2(self) - - def gnssOpenAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna2(self) - - def gnssSolutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_rtkDongleFault(self) - - def as_MipDataPoints(self): - return _mscl.GQ7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT - -# Register GQ7ContinuousBIT in _mscl: -_mscl.GQ7ContinuousBIT_swigregister(GQ7ContinuousBIT) - -class MipSharedDataFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EVENT_SOURCE_NONE = _mscl.MipSharedDataFields_EVENT_SOURCE_NONE - EVENT_SOURCE_UNKNOWN = _mscl.MipSharedDataFields_EVENT_SOURCE_UNKNOWN - - def __init__(self): - _mscl.MipSharedDataFields_swiginit(self, _mscl.new_MipSharedDataFields()) - - def hasEventSource(self): - return _mscl.MipSharedDataFields_hasEventSource(self) - - def eventSource(self): - return _mscl.MipSharedDataFields_eventSource(self) - - def hasTicks(self): - return _mscl.MipSharedDataFields_hasTicks(self) - - def ticks(self): - return _mscl.MipSharedDataFields_ticks(self) - - def hasDeltaTicks(self): - return _mscl.MipSharedDataFields_hasDeltaTicks(self) - - def deltaTicks(self): - return _mscl.MipSharedDataFields_deltaTicks(self) - - def hasGpsTimestamp(self): - return _mscl.MipSharedDataFields_hasGpsTimestamp(self) - - def gpsTimestamp(self): - return _mscl.MipSharedDataFields_gpsTimestamp(self) - - def gpsTimestampValid(self): - return _mscl.MipSharedDataFields_gpsTimestampValid(self) - - def hasDeltaTime(self): - return _mscl.MipSharedDataFields_hasDeltaTime(self) - - def deltaTime(self): - return _mscl.MipSharedDataFields_deltaTime(self) - - def hasReferenceTime(self): - return _mscl.MipSharedDataFields_hasReferenceTime(self) - - def referenceTime(self): - return _mscl.MipSharedDataFields_referenceTime(self) - - def hasDeltaReferenceTime(self): - return _mscl.MipSharedDataFields_hasDeltaReferenceTime(self) - - def deltaReferenceTime(self): - return _mscl.MipSharedDataFields_deltaReferenceTime(self) - - def hasExternalTimestamp(self): - return _mscl.MipSharedDataFields_hasExternalTimestamp(self) - - def externalTimestamp(self): - return _mscl.MipSharedDataFields_externalTimestamp(self) - - def externalTimestampValid(self): - return _mscl.MipSharedDataFields_externalTimestampValid(self) - - def hasDeltaExternalTime(self): - return _mscl.MipSharedDataFields_hasDeltaExternalTime(self) - - def deltaExternalTime(self): - return _mscl.MipSharedDataFields_deltaExternalTime(self) - - def deltaExternalTimeValid(self): - return _mscl.MipSharedDataFields_deltaExternalTimeValid(self) - - def get(self, *args): - return _mscl.MipSharedDataFields_get(self, *args) - __swig_destroy__ = _mscl.delete_MipSharedDataFields - -# Register MipSharedDataFields in _mscl: -_mscl.MipSharedDataFields_swigregister(MipSharedDataFields) - -class MipDataPacket(MipPacket): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipDataPacket_swiginit(self, _mscl.new_MipDataPacket(*args)) - - def data(self): - return _mscl.MipDataPacket_data(self) - - def shared(self): - return _mscl.MipDataPacket_shared(self) - - def collectedTimestamp(self): - return _mscl.MipDataPacket_collectedTimestamp(self) - - def deviceTimestamp(self): - return _mscl.MipDataPacket_deviceTimestamp(self) - - def hasDeviceTime(self): - return _mscl.MipDataPacket_hasDeviceTime(self) - - def deviceTimeValid(self): - return _mscl.MipDataPacket_deviceTimeValid(self) - - def deviceTimeFlags(self): - return _mscl.MipDataPacket_deviceTimeFlags(self) - __swig_destroy__ = _mscl.delete_MipDataPacket - -# Register MipDataPacket in _mscl: -_mscl.MipDataPacket_swigregister(MipDataPacket) - -class RawBytePacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INVALID_PACKET = _mscl.RawBytePacket_INVALID_PACKET - DATA_PACKET = _mscl.RawBytePacket_DATA_PACKET - COMMAND_PACKET = _mscl.RawBytePacket_COMMAND_PACKET - NO_PACKET_FOUND = _mscl.RawBytePacket_NO_PACKET_FOUND - FROM_READ = _mscl.RawBytePacket_FROM_READ - FROM_SEND = _mscl.RawBytePacket_FROM_SEND - - def __init__(self): - _mscl.RawBytePacket_swiginit(self, _mscl.new_RawBytePacket()) - - def type(self, *args): - return _mscl.RawBytePacket_type(self, *args) - - def source(self, *args): - return _mscl.RawBytePacket_source(self, *args) - - def payload(self, *args): - return _mscl.RawBytePacket_payload(self, *args) - __swig_destroy__ = _mscl.delete_RawBytePacket - -# Register RawBytePacket in _mscl: -_mscl.RawBytePacket_swigregister(RawBytePacket) - -class MipNodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_MipNodeFeatures - - @staticmethod - def isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - - def supportsCategory(self, dataClass): - return _mscl.MipNodeFeatures_supportsCategory(self, dataClass) - - def supportsCommand(self, commandId): - return _mscl.MipNodeFeatures_supportsCommand(self, commandId) - - def supportedCommands(self): - return _mscl.MipNodeFeatures_supportedCommands(self) - - def supportsChannelField(self, fieldId): - return _mscl.MipNodeFeatures_supportsChannelField(self, fieldId) - - def filterSupportedChannelFields(self, fields): - return _mscl.MipNodeFeatures_filterSupportedChannelFields(self, fields) - - def supportedChannelFields(self, *args): - return _mscl.MipNodeFeatures_supportedChannelFields(self, *args) - - def supportedSampleRates(self, dataClass): - return _mscl.MipNodeFeatures_supportedSampleRates(self, dataClass) - - def baseDataRate(self, dataClass): - return _mscl.MipNodeFeatures_baseDataRate(self, dataClass) - - def gnssReceiverInfo(self): - return _mscl.MipNodeFeatures_gnssReceiverInfo(self) - - def supportedGnssSources(self): - return _mscl.MipNodeFeatures_supportedGnssSources(self) - - def supportedSensorRanges(self, *args): - return _mscl.MipNodeFeatures_supportedSensorRanges(self, *args) - - def getCommPortInfo(self): - return _mscl.MipNodeFeatures_getCommPortInfo(self) - - def useLegacyIdsForEnableDataStream(self): - return _mscl.MipNodeFeatures_useLegacyIdsForEnableDataStream(self) - - def supportedHeadingUpdateOptions(self): - return _mscl.MipNodeFeatures_supportedHeadingUpdateOptions(self) - - def supportedHeadingAlignmentMethods(self): - return _mscl.MipNodeFeatures_supportedHeadingAlignmentMethods(self) - - def supportedStatusSelectors(self): - return _mscl.MipNodeFeatures_supportedStatusSelectors(self) - - def supportedEstimationControlOptions(self): - return _mscl.MipNodeFeatures_supportedEstimationControlOptions(self) - - def supportedVehicleModeTypes(self): - return _mscl.MipNodeFeatures_supportedVehicleModeTypes(self) - - def supportedAdaptiveMeasurementModes(self): - return _mscl.MipNodeFeatures_supportedAdaptiveMeasurementModes(self) - - def supportedAdaptiveFilterLevels(self): - return _mscl.MipNodeFeatures_supportedAdaptiveFilterLevels(self) - - def supportedAidingMeasurementOptions(self): - return _mscl.MipNodeFeatures_supportedAidingMeasurementOptions(self) - - def supportedPpsSourceOptions(self): - return _mscl.MipNodeFeatures_supportedPpsSourceOptions(self) - - def supportedGpioPins(self): - return _mscl.MipNodeFeatures_supportedGpioPins(self) - - def supportedGpioPinModes(self, feature, behavior): - return _mscl.MipNodeFeatures_supportedGpioPinModes(self, feature, behavior) - - def supportedGpioBehaviors(self, feature, pin): - return _mscl.MipNodeFeatures_supportedGpioBehaviors(self, feature, pin) - - def supportedGpioFeatures(self, pin): - return _mscl.MipNodeFeatures_supportedGpioFeatures(self, pin) - - def supportedGpioConfigurations(self): - return _mscl.MipNodeFeatures_supportedGpioConfigurations(self) - - def supportedGnssSignalConfigurations(self): - return _mscl.MipNodeFeatures_supportedGnssSignalConfigurations(self) - - def supportedDeclinationSources(self): - return _mscl.MipNodeFeatures_supportedDeclinationSources(self) - - def supportedInclinationSources(self): - return _mscl.MipNodeFeatures_supportedInclinationSources(self) - - def supportedMagneticMagnitudeSources(self): - return _mscl.MipNodeFeatures_supportedMagneticMagnitudeSources(self) - - def supportedEventThresholdChannels(self): - return _mscl.MipNodeFeatures_supportedEventThresholdChannels(self) - - def supportedEventActionInfo(self): - return _mscl.MipNodeFeatures_supportedEventActionInfo(self) - - def supportedEventTriggerInfo(self): - return _mscl.MipNodeFeatures_supportedEventTriggerInfo(self) - - def supportsNorthCompensation(self): - return _mscl.MipNodeFeatures_supportsNorthCompensation(self) - - def supportedLowPassFilterChannelFields(self): - return _mscl.MipNodeFeatures_supportedLowPassFilterChannelFields(self) - - def maxMeasurementReferenceFrameId(self): - return _mscl.MipNodeFeatures_maxMeasurementReferenceFrameId(self) - -# Register MipNodeFeatures in _mscl: -_mscl.MipNodeFeatures_swigregister(MipNodeFeatures) - -def MipNodeFeatures_isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - -class MipNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.MipNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - def getConfigCommandBytes(self): - return _mscl.MipNode_getConfigCommandBytes(self) - - def sendCommandBytes(self, *args): - return _mscl.MipNode_sendCommandBytes(self, *args) - - @staticmethod - def deviceName(serial): - return _mscl.MipNode_deviceName(serial) - - def connection(self): - return _mscl.MipNode_connection(self) - - def features(self): - return _mscl.MipNode_features(self) - - def clearDeviceInfo(self): - return _mscl.MipNode_clearDeviceInfo(self) - - def lastCommunicationTime(self): - return _mscl.MipNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.MipNode_lastDeviceState(self) - - def setLastDeviceState(self, state): - return _mscl.MipNode_setLastDeviceState(self, state) - - def firmwareVersion(self): - return _mscl.MipNode_firmwareVersion(self) - - def model(self): - return _mscl.MipNode_model(self) - - def modelName(self): - return _mscl.MipNode_modelName(self) - - def modelNumber(self): - return _mscl.MipNode_modelNumber(self) - - def serialNumber(self): - return _mscl.MipNode_serialNumber(self) - - def lotNumber(self): - return _mscl.MipNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.MipNode_deviceOptions(self) - - def timeout(self, *args): - return _mscl.MipNode_timeout(self, *args) - - def name(self): - return _mscl.MipNode_name(self) - - def ping(self): - return _mscl.MipNode_ping(self) - - def setToIdle(self): - return _mscl.MipNode_setToIdle(self) - - def cyclePower(self): - return _mscl.MipNode_cyclePower(self) - - def resume(self): - return _mscl.MipNode_resume(self) - - def getCommunicationMode(self): - return _mscl.MipNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.MipNode_setCommunicationMode(self, communicationMode) - - def saveSettingsAsStartup(self, *args): - return _mscl.MipNode_saveSettingsAsStartup(self, *args) - - def loadStartupSettings(self, *args): - return _mscl.MipNode_loadStartupSettings(self, *args) - - def loadFactoryDefaultSettings(self, *args): - return _mscl.MipNode_loadFactoryDefaultSettings(self, *args) - - def setUARTBaudRate(self, *args): - return _mscl.MipNode_setUARTBaudRate(self, *args) - - def getUARTBaudRate(self, portId=1): - return _mscl.MipNode_getUARTBaudRate(self, portId) - - def getRawBytePackets(self, timeout=0, maxPackets=0): - return _mscl.MipNode_getRawBytePackets(self, timeout, maxPackets) - -# Register MipNode in _mscl: -_mscl.MipNode_swigregister(MipNode) - -def MipNode_deviceName(serial): - return _mscl.MipNode_deviceName(serial) - -class InertialNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.InertialNode_swiginit(self, _mscl.new_InertialNode(connection)) - __swig_destroy__ = _mscl.delete_InertialNode - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.InertialNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.InertialNode_totalPackets(self) - - def pollData(self, *args): - return _mscl.InertialNode_pollData(self, *args) - - def getDataRateBase(self, dataClass): - return _mscl.InertialNode_getDataRateBase(self, dataClass) - - def getActiveChannelFields(self, dataClass): - return _mscl.InertialNode_getActiveChannelFields(self, dataClass) - - def setActiveChannelFields(self, dataClass, channels): - return _mscl.InertialNode_setActiveChannelFields(self, dataClass, channels) - - def saveActiveChannelFields(self, dataClass): - return _mscl.InertialNode_saveActiveChannelFields(self, dataClass) - - def setFactoryStreamingChannels(self, option): - return _mscl.InertialNode_setFactoryStreamingChannels(self, option) - - def getInterfaceControl(self, interfaceId): - return _mscl.InertialNode_getInterfaceControl(self, interfaceId) - - def setInterfaceControl(self, *args): - return _mscl.InertialNode_setInterfaceControl(self, *args) - - def getCommunicationMode(self): - return _mscl.InertialNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.InertialNode_setCommunicationMode(self, communicationMode) - - def isDataStreamEnabled(self, dataClass): - return _mscl.InertialNode_isDataStreamEnabled(self, dataClass) - - def enableDataStream(self, dataClass, enable=True, resumeStreaming=True): - return _mscl.InertialNode_enableDataStream(self, dataClass, enable, resumeStreaming) - - def resetFilter(self): - return _mscl.InertialNode_resetFilter(self) - - def runFilter(self): - return _mscl.InertialNode_runFilter(self) - - def getAutoInitialization(self): - return _mscl.InertialNode_getAutoInitialization(self) - - def setAutoInitialization(self, enable): - return _mscl.InertialNode_setAutoInitialization(self, enable) - - def getAltitudeAid(self): - return _mscl.InertialNode_getAltitudeAid(self) - - def setAltitudeAid(self, enable): - return _mscl.InertialNode_setAltitudeAid(self, enable) - - def getPitchRollAid(self): - return _mscl.InertialNode_getPitchRollAid(self) - - def setPitchRollAid(self, enable): - return _mscl.InertialNode_setPitchRollAid(self, enable) - - def enableVerticalGyroConstraint(self, enable): - return _mscl.InertialNode_enableVerticalGyroConstraint(self, enable) - - def verticalGyroConstraintEnabled(self): - return _mscl.InertialNode_verticalGyroConstraintEnabled(self) - - def enableWheeledVehicleConstraint(self, enable): - return _mscl.InertialNode_enableWheeledVehicleConstraint(self, enable) - - def wheeledVehicleConstraintEnabled(self): - return _mscl.InertialNode_wheeledVehicleConstraintEnabled(self) - - def setVelocityZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setVelocityZUPT(self, ZUPTSettings) - - def getVelocityZUPT(self): - return _mscl.InertialNode_getVelocityZUPT(self) - - def setAngularRateZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setAngularRateZUPT(self, ZUPTSettings) - - def getAngularRateZUPT(self): - return _mscl.InertialNode_getAngularRateZUPT(self) - - def cmdedVelZUPT(self): - return _mscl.InertialNode_cmdedVelZUPT(self) - - def cmdedAngRateZUPT(self): - return _mscl.InertialNode_cmdedAngRateZUPT(self) - - def setInitialAttitude(self, attitude): - return _mscl.InertialNode_setInitialAttitude(self, attitude) - - def setInitialHeading(self, heading): - return _mscl.InertialNode_setInitialHeading(self, heading) - - def getInitialFilterConfiguration(self): - return _mscl.InertialNode_getInitialFilterConfiguration(self) - - def setInitialFilterConfiguration(self, filterConfig): - return _mscl.InertialNode_setInitialFilterConfiguration(self, filterConfig) - - def getSensorToVehicleRotation_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleRotation_eulerAngles(self) - - def setSensorToVehicleRotation_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleRotation_eulerAngles(self, angles) - - def getSensorToVehicleRotation_matrix(self): - return _mscl.InertialNode_getSensorToVehicleRotation_matrix(self) - - def setSensorToVehicleRotation_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleRotation_matrix(self, dcm) - - def getSensorToVehicleRotation_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleRotation_quaternion(self) - - def setSensorToVehicleRotation_quaternion(self, rotation): - return _mscl.InertialNode_setSensorToVehicleRotation_quaternion(self, rotation) - - def getSensorToVehicleTransform_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleTransform_eulerAngles(self) - - def setSensorToVehicleTransform_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleTransform_eulerAngles(self, angles) - - def getSensorToVehicleTransform_matrix(self): - return _mscl.InertialNode_getSensorToVehicleTransform_matrix(self) - - def setSensorToVehicleTransform_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleTransform_matrix(self, dcm) - - def getSensorToVehicleTransform_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleTransform_quaternion(self) - - def setSensorToVehicleTransform_quaternion(self, transformation): - return _mscl.InertialNode_setSensorToVehicleTransform_quaternion(self, transformation) - - def getSensorToVehicleOffset(self): - return _mscl.InertialNode_getSensorToVehicleOffset(self) - - def setSensorToVehicleOffset(self, offset): - return _mscl.InertialNode_setSensorToVehicleOffset(self, offset) - - def getAntennaOffset(self): - return _mscl.InertialNode_getAntennaOffset(self) - - def setAntennaOffset(self, offset): - return _mscl.InertialNode_setAntennaOffset(self, offset) - - def getGNSSAssistedFixControl(self): - return _mscl.InertialNode_getGNSSAssistedFixControl(self) - - def setGNSSAssistedFixControl(self, enableAssistedFix): - return _mscl.InertialNode_setGNSSAssistedFixControl(self, enableAssistedFix) - - def getGNSSAssistTimeUpdate(self): - return _mscl.InertialNode_getGNSSAssistTimeUpdate(self) - - def setGNSSAssistTimeUpdate(self, timeUpdate): - return _mscl.InertialNode_setGNSSAssistTimeUpdate(self, timeUpdate) - - def getGPSTimeUpdate(self, timeFrame): - return _mscl.InertialNode_getGPSTimeUpdate(self, timeFrame) - - def setGPSTimeUpdate(self, arg2, timeData): - return _mscl.InertialNode_setGPSTimeUpdate(self, arg2, timeData) - - def setConstellationSettings(self, dataToUse): - return _mscl.InertialNode_setConstellationSettings(self, dataToUse) - - def getConstellationSettings(self): - return _mscl.InertialNode_getConstellationSettings(self) - - def setSBASSettings(self, dataToUse): - return _mscl.InertialNode_setSBASSettings(self, dataToUse) - - def getSBASSettings(self): - return _mscl.InertialNode_getSBASSettings(self) - - def setAccelerometerBias(self, biasVector): - return _mscl.InertialNode_setAccelerometerBias(self, biasVector) - - def getAccelerometerBias(self): - return _mscl.InertialNode_getAccelerometerBias(self) - - def setGyroBias(self, biasVector): - return _mscl.InertialNode_setGyroBias(self, biasVector) - - def getGyroBias(self): - return _mscl.InertialNode_getGyroBias(self) - - def captureGyroBias(self, samplingTime): - return _mscl.InertialNode_captureGyroBias(self, samplingTime) - - def findMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_findMagnetometerCaptureAutoCalibration(self) - - def saveMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_saveMagnetometerCaptureAutoCalibration(self) - - def setMagnetometerSoftIronMatrix(self, matrix): - return _mscl.InertialNode_setMagnetometerSoftIronMatrix(self, matrix) - - def getMagnetometerSoftIronMatrix(self): - return _mscl.InertialNode_getMagnetometerSoftIronMatrix(self) - - def setMagnetometerHardIronOffset(self, offsetVector): - return _mscl.InertialNode_setMagnetometerHardIronOffset(self, offsetVector) - - def getMagnetometerHardIronOffset(self): - return _mscl.InertialNode_getMagnetometerHardIronOffset(self) - - def setConingAndScullingEnable(self, enable): - return _mscl.InertialNode_setConingAndScullingEnable(self, enable) - - def getConingAndScullingEnable(self): - return _mscl.InertialNode_getConingAndScullingEnable(self) - - def setLowPassFilterSettings(self, data): - return _mscl.InertialNode_setLowPassFilterSettings(self, data) - - def getLowPassFilterSettings(self, dataDescriptors): - return _mscl.InertialNode_getLowPassFilterSettings(self, dataDescriptors) - - def setComplementaryFilterSettings(self, data): - return _mscl.InertialNode_setComplementaryFilterSettings(self, data) - - def getComplementaryFilterSettings(self): - return _mscl.InertialNode_getComplementaryFilterSettings(self) - - def getBasicDeviceStatus(self): - return _mscl.InertialNode_getBasicDeviceStatus(self) - - def getDiagnosticDeviceStatus(self): - return _mscl.InertialNode_getDiagnosticDeviceStatus(self) - - def sendRawRTCM_2_3Message(self, theMessage): - return _mscl.InertialNode_sendRawRTCM_2_3Message(self, theMessage) - - def setVehicleDynamicsMode(self, mode): - return _mscl.InertialNode_setVehicleDynamicsMode(self, mode) - - def getVehicleDynamicsMode(self): - return _mscl.InertialNode_getVehicleDynamicsMode(self) - - def setEstimationControlFlags(self, flags): - return _mscl.InertialNode_setEstimationControlFlags(self, flags) - - def getEstimationControlFlags(self): - return _mscl.InertialNode_getEstimationControlFlags(self) - - def setInclinationSource(self, options): - return _mscl.InertialNode_setInclinationSource(self, options) - - def getInclinationSource(self): - return _mscl.InertialNode_getInclinationSource(self) - - def setDeclinationSource(self, options): - return _mscl.InertialNode_setDeclinationSource(self, options) - - def getDeclinationSource(self): - return _mscl.InertialNode_getDeclinationSource(self) - - def setMagneticFieldMagnitudeSource(self, options): - return _mscl.InertialNode_setMagneticFieldMagnitudeSource(self, options) - - def getMagneticFieldMagnitudeSource(self): - return _mscl.InertialNode_getMagneticFieldMagnitudeSource(self) - - def setGNSS_SourceControl(self, gnssSource): - return _mscl.InertialNode_setGNSS_SourceControl(self, gnssSource) - - def getGNSS_SourceControl(self): - return _mscl.InertialNode_getGNSS_SourceControl(self) - - def sendExternalGNSSUpdate(self, gnssUpdateData): - return _mscl.InertialNode_sendExternalGNSSUpdate(self, gnssUpdateData) - - def setHeadingUpdateControl(self, headingUpdateOptions): - return _mscl.InertialNode_setHeadingUpdateControl(self, headingUpdateOptions) - - def tareOrientation(self, axisValue): - return _mscl.InertialNode_tareOrientation(self, axisValue) - - def getHeadingUpdateControl(self): - return _mscl.InertialNode_getHeadingUpdateControl(self) - - def setGravityErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setGravityErrorAdaptiveMeasurement(self, data) - - def getGravityErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getGravityErrorAdaptiveMeasurement(self) - - def setMagnetometerErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagnetometerErrorAdaptiveMeasurement(self, data) - - def getMagnetometerErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagnetometerErrorAdaptiveMeasurement(self) - - def setMagDipAngleErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagDipAngleErrorAdaptiveMeasurement(self, data) - - def getMagDipAngleErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagDipAngleErrorAdaptiveMeasurement(self) - - def setMagNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setMagNoiseStandardDeviation(self, data) - - def getMagNoiseStandardDeviation(self): - return _mscl.InertialNode_getMagNoiseStandardDeviation(self) - - def setGravNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGravNoiseStandardDeviation(self, data) - - def getGravNoiseStandardDeviation(self): - return _mscl.InertialNode_getGravNoiseStandardDeviation(self) - - def setAccelNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setAccelNoiseStandardDeviation(self, data) - - def getAccelNoiseStandardDeviation(self): - return _mscl.InertialNode_getAccelNoiseStandardDeviation(self) - - def setGyroNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGyroNoiseStandardDeviation(self, data) - - def getGyroNoiseStandardDeviation(self): - return _mscl.InertialNode_getGyroNoiseStandardDeviation(self) - - def setPressureAltNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setPressureAltNoiseStandardDeviation(self, data) - - def getPressureAltNoiseStandardDeviation(self): - return _mscl.InertialNode_getPressureAltNoiseStandardDeviation(self) - - def setHardIronOffsetProcessNoise(self, data): - return _mscl.InertialNode_setHardIronOffsetProcessNoise(self, data) - - def getHardIronOffsetProcessNoise(self): - return _mscl.InertialNode_getHardIronOffsetProcessNoise(self) - - def setAccelBiasModelParams(self, data): - return _mscl.InertialNode_setAccelBiasModelParams(self, data) - - def getAccelBiasModelParams(self): - return _mscl.InertialNode_getAccelBiasModelParams(self) - - def setGyroBiasModelParams(self, data): - return _mscl.InertialNode_setGyroBiasModelParams(self, data) - - def getGyroBiasModelParams(self): - return _mscl.InertialNode_getGyroBiasModelParams(self) - - def setSoftIronMatrixProcessNoise(self, data): - return _mscl.InertialNode_setSoftIronMatrixProcessNoise(self, data) - - def getSoftIronMatrixProcessNoise(self): - return _mscl.InertialNode_getSoftIronMatrixProcessNoise(self) - - def setFixedReferencePosition(self, data): - return _mscl.InertialNode_setFixedReferencePosition(self, data) - - def getFixedReferencePosition(self): - return _mscl.InertialNode_getFixedReferencePosition(self) - - def setGPSDynamicsMode(self, data): - return _mscl.InertialNode_setGPSDynamicsMode(self, data) - - def getGPSDynamicsMode(self): - return _mscl.InertialNode_getGPSDynamicsMode(self) - - def setDevicePowerState(self, device, data): - return _mscl.InertialNode_setDevicePowerState(self, device, data) - - def getDevicePowerState(self, device): - return _mscl.InertialNode_getDevicePowerState(self, device) - - def setDeviceStreamFormat(self, device, data): - return _mscl.InertialNode_setDeviceStreamFormat(self, device, data) - - def getDeviceStreamFormat(self, device): - return _mscl.InertialNode_getDeviceStreamFormat(self, device) - - def setSignalConditioningSettings(self, data): - return _mscl.InertialNode_setSignalConditioningSettings(self, data) - - def getSignalConditioningSettings(self): - return _mscl.InertialNode_getSignalConditioningSettings(self) - - def setEnableDisableMeasurements(self, data): - return _mscl.InertialNode_setEnableDisableMeasurements(self, data) - - def getEnableDisableMeasurements(self): - return _mscl.InertialNode_getEnableDisableMeasurements(self) - - def setGravityNoiseMinimum(self, data): - return _mscl.InertialNode_setGravityNoiseMinimum(self, data) - - def getGravityNoiseMinimum(self): - return _mscl.InertialNode_getGravityNoiseMinimum(self) - - def sendExternalHeadingUpdate(self, *args): - return _mscl.InertialNode_sendExternalHeadingUpdate(self, *args) - - def aidingMeasurementEnabled(self, aidingSource): - return _mscl.InertialNode_aidingMeasurementEnabled(self, aidingSource) - - def enableDisableAidingMeasurement(self, aidingSource, enable): - return _mscl.InertialNode_enableDisableAidingMeasurement(self, aidingSource, enable) - - def getAdaptiveFilterOptions(self): - return _mscl.InertialNode_getAdaptiveFilterOptions(self) - - def setAdaptiveFilterOptions(self, options): - return _mscl.InertialNode_setAdaptiveFilterOptions(self, options) - - def getMultiAntennaOffset(self, receiverId): - return _mscl.InertialNode_getMultiAntennaOffset(self, receiverId) - - def setMultiAntennaOffset(self, receiverId, offset): - return _mscl.InertialNode_setMultiAntennaOffset(self, receiverId, offset) - - def getPpsSource(self): - return _mscl.InertialNode_getPpsSource(self) - - def setPpsSource(self, ppsSource): - return _mscl.InertialNode_setPpsSource(self, ppsSource) - - def getOdometerConfig(self): - return _mscl.InertialNode_getOdometerConfig(self) - - def setOdometerConfig(self, config): - return _mscl.InertialNode_setOdometerConfig(self, config) - - def getSensorRange(self, sensorRangeType): - return _mscl.InertialNode_getSensorRange(self, sensorRangeType) - - def setSensorRange(self, *args): - return _mscl.InertialNode_setSensorRange(self, *args) - - def getGpioConfig(self, pin): - return _mscl.InertialNode_getGpioConfig(self, pin) - - def setGpioConfig(self, config): - return _mscl.InertialNode_setGpioConfig(self, config) - - def getGpioState(self, pin): - return _mscl.InertialNode_getGpioState(self, pin) - - def setGpioState(self, pin, state): - return _mscl.InertialNode_setGpioState(self, pin, state) - - def getEventTriggerMode(self, instance): - return _mscl.InertialNode_getEventTriggerMode(self, instance) - - def setEventTriggerMode(self, instance, mode): - return _mscl.InertialNode_setEventTriggerMode(self, instance, mode) - - def getEventTriggerConfig(self, instance): - return _mscl.InertialNode_getEventTriggerConfig(self, instance) - - def setEventTriggerConfig(self, config): - return _mscl.InertialNode_setEventTriggerConfig(self, config) - - def getEventActionConfig(self, instance): - return _mscl.InertialNode_getEventActionConfig(self, instance) - - def setEventActionConfig(self, config, validateSupported=True): - return _mscl.InertialNode_setEventActionConfig(self, config, validateSupported) - - def getAntennaLeverArmCal(self): - return _mscl.InertialNode_getAntennaLeverArmCal(self) - - def setAntennaLeverArmCal(self, config): - return _mscl.InertialNode_setAntennaLeverArmCal(self, config) - - def getRelativePositionReference(self): - return _mscl.InertialNode_getRelativePositionReference(self) - - def setRelativePositionReference(self, ref): - return _mscl.InertialNode_setRelativePositionReference(self, ref) - - def getLeverArmReferenceOffset(self): - return _mscl.InertialNode_getLeverArmReferenceOffset(self) - - def setLeverArmReferenceOffset(self, offset): - return _mscl.InertialNode_setLeverArmReferenceOffset(self, offset) - - def sendExternalSpeedMeasurementUpdate(self, tow, speed, unc): - return _mscl.InertialNode_sendExternalSpeedMeasurementUpdate(self, tow, speed, unc) - - def getSpeedMeasurementOffset(self): - return _mscl.InertialNode_getSpeedMeasurementOffset(self) - - def setSpeedMeasurementOffset(self, offset): - return _mscl.InertialNode_setSpeedMeasurementOffset(self, offset) - - def getGnssSignalConfig(self): - return _mscl.InertialNode_getGnssSignalConfig(self) - - def setGnssSignalConfig(self, config): - return _mscl.InertialNode_setGnssSignalConfig(self, config) - - def getGnssSpartnConfig(self): - return _mscl.InertialNode_getGnssSpartnConfig(self) - - def setGnssSpartnConfig(self, config): - return _mscl.InertialNode_setGnssSpartnConfig(self, config) - - def rtkEnabled(self): - return _mscl.InertialNode_rtkEnabled(self) - - def enableRtk(self, enable): - return _mscl.InertialNode_enableRtk(self, enable) - - def getEventTriggerStatus(self, *args): - return _mscl.InertialNode_getEventTriggerStatus(self, *args) - - def getEventActionStatus(self, *args): - return _mscl.InertialNode_getEventActionStatus(self, *args) - - def getNmeaMessageFormat(self): - return _mscl.InertialNode_getNmeaMessageFormat(self) - - def setNmeaMessageFormat(self, nmeaFormats): - return _mscl.InertialNode_setNmeaMessageFormat(self, nmeaFormats) - - def getAidingMeasurementReferenceFrames(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrames(self, *args) - - def setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds=False): - return _mscl.InertialNode_setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds) - - def getAidingMeasurementReferenceFrame(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrame(self, *args) - - def setAidingMeasurementReferenceFrame(self, id, frame): - return _mscl.InertialNode_setAidingMeasurementReferenceFrame(self, id, frame) - - def setAidingMeasurementResponseMode(self, mode): - return _mscl.InertialNode_setAidingMeasurementResponseMode(self, mode) - - def getAidingMeasurementResponseMode(self): - return _mscl.InertialNode_getAidingMeasurementResponseMode(self) - - def sendAidingMeasurement(self, *args): - return _mscl.InertialNode_sendAidingMeasurement(self, *args) - - def sendAidingMeasurement_readEcho(self, *args): - return _mscl.InertialNode_sendAidingMeasurement_readEcho(self, *args) - -# Register InertialNode in _mscl: -_mscl.InertialNode_swigregister(InertialNode) - -class DisplacementNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.DisplacementNode_swiginit(self, _mscl.new_DisplacementNode(connection)) - __swig_destroy__ = _mscl.delete_DisplacementNode - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.DisplacementNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - @staticmethod - def deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - - def connection(self): - return _mscl.DisplacementNode_connection(self) - - def features(self): - return _mscl.DisplacementNode_features(self) - - def lastCommunicationTime(self): - return _mscl.DisplacementNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.DisplacementNode_lastDeviceState(self) - - def firmwareVersion(self): - return _mscl.DisplacementNode_firmwareVersion(self) - - def model(self): - return _mscl.DisplacementNode_model(self) - - def modelName(self): - return _mscl.DisplacementNode_modelName(self) - - def modelNumber(self): - return _mscl.DisplacementNode_modelNumber(self) - - def serialNumber(self): - return _mscl.DisplacementNode_serialNumber(self) - - def lotNumber(self): - return _mscl.DisplacementNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.DisplacementNode_deviceOptions(self) - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.DisplacementNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.DisplacementNode_totalPackets(self) - - def timeout(self, *args): - return _mscl.DisplacementNode_timeout(self, *args) - - def name(self): - return _mscl.DisplacementNode_name(self) - - def ping(self): - return _mscl.DisplacementNode_ping(self) - - def setToIdle(self): - return _mscl.DisplacementNode_setToIdle(self) - - def cyclePower(self): - return _mscl.DisplacementNode_cyclePower(self) - - def resume(self): - return _mscl.DisplacementNode_resume(self) - - def getDisplacementOutputDataRate(self): - return _mscl.DisplacementNode_getDisplacementOutputDataRate(self) - - def getAnalogToDisplacementCal(self): - return _mscl.DisplacementNode_getAnalogToDisplacementCal(self) - - def setDeviceTime(self, *args): - return _mscl.DisplacementNode_setDeviceTime(self, *args) - -# Register DisplacementNode in _mscl: -_mscl.DisplacementNode_swigregister(DisplacementNode) - -def DisplacementNode_deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - -class RTKNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.RTKNode_swiginit(self, _mscl.new_RTKNode(connection)) - __swig_destroy__ = _mscl.delete_RTKNode - - def getCommunicationMode(self): - return _mscl.RTKNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.RTKNode_setCommunicationMode(self, communicationMode) - - def getDeviceStatusFlags(self): - return _mscl.RTKNode_getDeviceStatusFlags(self) - - def getActivationCode(self): - return _mscl.RTKNode_getActivationCode(self) - - def getStatusBitfieldVersion(self): - return _mscl.RTKNode_getStatusBitfieldVersion(self) - -# Register RTKNode in _mscl: -_mscl.RTKNode_swigregister(RTKNode) - -class ChannelData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelData___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelData___bool__(self) - - def __len__(self): - return _mscl.ChannelData___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelData___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelData___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelData___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelData___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelData___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelData___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelData_pop(self) - - def append(self, x): - return _mscl.ChannelData_append(self, x) - - def empty(self): - return _mscl.ChannelData_empty(self) - - def size(self): - return _mscl.ChannelData_size(self) - - def swap(self, v): - return _mscl.ChannelData_swap(self, v) - - def begin(self): - return _mscl.ChannelData_begin(self) - - def end(self): - return _mscl.ChannelData_end(self) - - def rbegin(self): - return _mscl.ChannelData_rbegin(self) - - def rend(self): - return _mscl.ChannelData_rend(self) - - def clear(self): - return _mscl.ChannelData_clear(self) - - def get_allocator(self): - return _mscl.ChannelData_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelData_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelData_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelData_swiginit(self, _mscl.new_ChannelData(*args)) - - def push_back(self, x): - return _mscl.ChannelData_push_back(self, x) - - def front(self): - return _mscl.ChannelData_front(self) - - def back(self): - return _mscl.ChannelData_back(self) - - def assign(self, n, x): - return _mscl.ChannelData_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelData_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelData_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelData_reserve(self, n) - - def capacity(self): - return _mscl.ChannelData_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelData - -# Register ChannelData in _mscl: -_mscl.ChannelData_swigregister(ChannelData) - -class MipDataPoints(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPoints_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPoints___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPoints___bool__(self) - - def __len__(self): - return _mscl.MipDataPoints___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPoints___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPoints___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPoints___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPoints___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPoints___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPoints___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPoints_pop(self) - - def append(self, x): - return _mscl.MipDataPoints_append(self, x) - - def empty(self): - return _mscl.MipDataPoints_empty(self) - - def size(self): - return _mscl.MipDataPoints_size(self) - - def swap(self, v): - return _mscl.MipDataPoints_swap(self, v) - - def begin(self): - return _mscl.MipDataPoints_begin(self) - - def end(self): - return _mscl.MipDataPoints_end(self) - - def rbegin(self): - return _mscl.MipDataPoints_rbegin(self) - - def rend(self): - return _mscl.MipDataPoints_rend(self) - - def clear(self): - return _mscl.MipDataPoints_clear(self) - - def get_allocator(self): - return _mscl.MipDataPoints_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPoints_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPoints_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPoints_swiginit(self, _mscl.new_MipDataPoints(*args)) - - def push_back(self, x): - return _mscl.MipDataPoints_push_back(self, x) - - def front(self): - return _mscl.MipDataPoints_front(self) - - def back(self): - return _mscl.MipDataPoints_back(self) - - def assign(self, n, x): - return _mscl.MipDataPoints_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPoints_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPoints_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPoints_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPoints_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPoints - -# Register MipDataPoints in _mscl: -_mscl.MipDataPoints_swigregister(MipDataPoints) - -class Bytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bytes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bytes___nonzero__(self) - - def __bool__(self): - return _mscl.Bytes___bool__(self) - - def __len__(self): - return _mscl.Bytes___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bytes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bytes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bytes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bytes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bytes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bytes___setitem__(self, *args) - - def pop(self): - return _mscl.Bytes_pop(self) - - def append(self, x): - return _mscl.Bytes_append(self, x) - - def empty(self): - return _mscl.Bytes_empty(self) - - def size(self): - return _mscl.Bytes_size(self) - - def swap(self, v): - return _mscl.Bytes_swap(self, v) - - def begin(self): - return _mscl.Bytes_begin(self) - - def end(self): - return _mscl.Bytes_end(self) - - def rbegin(self): - return _mscl.Bytes_rbegin(self) - - def rend(self): - return _mscl.Bytes_rend(self) - - def clear(self): - return _mscl.Bytes_clear(self) - - def get_allocator(self): - return _mscl.Bytes_get_allocator(self) - - def pop_back(self): - return _mscl.Bytes_pop_back(self) - - def erase(self, *args): - return _mscl.Bytes_erase(self, *args) - - def __init__(self, *args): - _mscl.Bytes_swiginit(self, _mscl.new_Bytes(*args)) - - def push_back(self, x): - return _mscl.Bytes_push_back(self, x) - - def front(self): - return _mscl.Bytes_front(self) - - def back(self): - return _mscl.Bytes_back(self) - - def assign(self, n, x): - return _mscl.Bytes_assign(self, n, x) - - def resize(self, *args): - return _mscl.Bytes_resize(self, *args) - - def insert(self, *args): - return _mscl.Bytes_insert(self, *args) - - def reserve(self, n): - return _mscl.Bytes_reserve(self, n) - - def capacity(self): - return _mscl.Bytes_capacity(self) - __swig_destroy__ = _mscl.delete_Bytes - -# Register Bytes in _mscl: -_mscl.Bytes_swigregister(Bytes) - -class BytesCollection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.BytesCollection_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.BytesCollection___nonzero__(self) - - def __bool__(self): - return _mscl.BytesCollection___bool__(self) - - def __len__(self): - return _mscl.BytesCollection___len__(self) - - def __getslice__(self, i, j): - return _mscl.BytesCollection___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.BytesCollection___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.BytesCollection___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.BytesCollection___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.BytesCollection___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.BytesCollection___setitem__(self, *args) - - def pop(self): - return _mscl.BytesCollection_pop(self) - - def append(self, x): - return _mscl.BytesCollection_append(self, x) - - def empty(self): - return _mscl.BytesCollection_empty(self) - - def size(self): - return _mscl.BytesCollection_size(self) - - def swap(self, v): - return _mscl.BytesCollection_swap(self, v) - - def begin(self): - return _mscl.BytesCollection_begin(self) - - def end(self): - return _mscl.BytesCollection_end(self) - - def rbegin(self): - return _mscl.BytesCollection_rbegin(self) - - def rend(self): - return _mscl.BytesCollection_rend(self) - - def clear(self): - return _mscl.BytesCollection_clear(self) - - def get_allocator(self): - return _mscl.BytesCollection_get_allocator(self) - - def pop_back(self): - return _mscl.BytesCollection_pop_back(self) - - def erase(self, *args): - return _mscl.BytesCollection_erase(self, *args) - - def __init__(self, *args): - _mscl.BytesCollection_swiginit(self, _mscl.new_BytesCollection(*args)) - - def push_back(self, x): - return _mscl.BytesCollection_push_back(self, x) - - def front(self): - return _mscl.BytesCollection_front(self) - - def back(self): - return _mscl.BytesCollection_back(self) - - def assign(self, n, x): - return _mscl.BytesCollection_assign(self, n, x) - - def resize(self, *args): - return _mscl.BytesCollection_resize(self, *args) - - def insert(self, *args): - return _mscl.BytesCollection_insert(self, *args) - - def reserve(self, n): - return _mscl.BytesCollection_reserve(self, n) - - def capacity(self): - return _mscl.BytesCollection_capacity(self) - __swig_destroy__ = _mscl.delete_BytesCollection - -# Register BytesCollection in _mscl: -_mscl.BytesCollection_swigregister(BytesCollection) - -class DeviceList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceList___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceList___bool__(self) - - def __len__(self): - return _mscl.DeviceList___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceList___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceList___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceList_has_key(self, key) - - def keys(self): - return _mscl.DeviceList_keys(self) - - def values(self): - return _mscl.DeviceList_values(self) - - def items(self): - return _mscl.DeviceList_items(self) - - def __contains__(self, key): - return _mscl.DeviceList___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceList_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceList_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceList___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceList_asdict(self) - - def __init__(self, *args): - _mscl.DeviceList_swiginit(self, _mscl.new_DeviceList(*args)) - - def empty(self): - return _mscl.DeviceList_empty(self) - - def size(self): - return _mscl.DeviceList_size(self) - - def swap(self, v): - return _mscl.DeviceList_swap(self, v) - - def begin(self): - return _mscl.DeviceList_begin(self) - - def end(self): - return _mscl.DeviceList_end(self) - - def rbegin(self): - return _mscl.DeviceList_rbegin(self) - - def rend(self): - return _mscl.DeviceList_rend(self) - - def clear(self): - return _mscl.DeviceList_clear(self) - - def get_allocator(self): - return _mscl.DeviceList_get_allocator(self) - - def count(self, x): - return _mscl.DeviceList_count(self, x) - - def erase(self, *args): - return _mscl.DeviceList_erase(self, *args) - - def find(self, x): - return _mscl.DeviceList_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceList_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceList_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceList - -# Register DeviceList in _mscl: -_mscl.DeviceList_swigregister(DeviceList) - -class NodeDiscoveries(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NodeDiscoveries_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NodeDiscoveries___nonzero__(self) - - def __bool__(self): - return _mscl.NodeDiscoveries___bool__(self) - - def __len__(self): - return _mscl.NodeDiscoveries___len__(self) - - def __getslice__(self, i, j): - return _mscl.NodeDiscoveries___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NodeDiscoveries___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NodeDiscoveries___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NodeDiscoveries___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NodeDiscoveries___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NodeDiscoveries___setitem__(self, *args) - - def pop(self): - return _mscl.NodeDiscoveries_pop(self) - - def append(self, x): - return _mscl.NodeDiscoveries_append(self, x) - - def empty(self): - return _mscl.NodeDiscoveries_empty(self) - - def size(self): - return _mscl.NodeDiscoveries_size(self) - - def swap(self, v): - return _mscl.NodeDiscoveries_swap(self, v) - - def begin(self): - return _mscl.NodeDiscoveries_begin(self) - - def end(self): - return _mscl.NodeDiscoveries_end(self) - - def rbegin(self): - return _mscl.NodeDiscoveries_rbegin(self) - - def rend(self): - return _mscl.NodeDiscoveries_rend(self) - - def clear(self): - return _mscl.NodeDiscoveries_clear(self) - - def get_allocator(self): - return _mscl.NodeDiscoveries_get_allocator(self) - - def pop_back(self): - return _mscl.NodeDiscoveries_pop_back(self) - - def erase(self, *args): - return _mscl.NodeDiscoveries_erase(self, *args) - - def __init__(self, *args): - _mscl.NodeDiscoveries_swiginit(self, _mscl.new_NodeDiscoveries(*args)) - - def push_back(self, x): - return _mscl.NodeDiscoveries_push_back(self, x) - - def front(self): - return _mscl.NodeDiscoveries_front(self) - - def back(self): - return _mscl.NodeDiscoveries_back(self) - - def assign(self, n, x): - return _mscl.NodeDiscoveries_assign(self, n, x) - - def resize(self, *args): - return _mscl.NodeDiscoveries_resize(self, *args) - - def insert(self, *args): - return _mscl.NodeDiscoveries_insert(self, *args) - - def reserve(self, n): - return _mscl.NodeDiscoveries_reserve(self, n) - - def capacity(self): - return _mscl.NodeDiscoveries_capacity(self) - __swig_destroy__ = _mscl.delete_NodeDiscoveries - -# Register NodeDiscoveries in _mscl: -_mscl.NodeDiscoveries_swigregister(NodeDiscoveries) - -class DataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.DataSweeps___bool__(self) - - def __len__(self): - return _mscl.DataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.DataSweeps_pop(self) - - def append(self, x): - return _mscl.DataSweeps_append(self, x) - - def empty(self): - return _mscl.DataSweeps_empty(self) - - def size(self): - return _mscl.DataSweeps_size(self) - - def swap(self, v): - return _mscl.DataSweeps_swap(self, v) - - def begin(self): - return _mscl.DataSweeps_begin(self) - - def end(self): - return _mscl.DataSweeps_end(self) - - def rbegin(self): - return _mscl.DataSweeps_rbegin(self) - - def rend(self): - return _mscl.DataSweeps_rend(self) - - def clear(self): - return _mscl.DataSweeps_clear(self) - - def get_allocator(self): - return _mscl.DataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.DataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.DataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.DataSweeps_swiginit(self, _mscl.new_DataSweeps(*args)) - - def push_back(self, x): - return _mscl.DataSweeps_push_back(self, x) - - def front(self): - return _mscl.DataSweeps_front(self) - - def back(self): - return _mscl.DataSweeps_back(self) - - def assign(self, n, x): - return _mscl.DataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.DataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.DataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.DataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_DataSweeps - -# Register DataSweeps in _mscl: -_mscl.DataSweeps_swigregister(DataSweeps) - -class LoggedDataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LoggedDataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LoggedDataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.LoggedDataSweeps___bool__(self) - - def __len__(self): - return _mscl.LoggedDataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.LoggedDataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LoggedDataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LoggedDataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LoggedDataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LoggedDataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LoggedDataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.LoggedDataSweeps_pop(self) - - def append(self, x): - return _mscl.LoggedDataSweeps_append(self, x) - - def empty(self): - return _mscl.LoggedDataSweeps_empty(self) - - def size(self): - return _mscl.LoggedDataSweeps_size(self) - - def swap(self, v): - return _mscl.LoggedDataSweeps_swap(self, v) - - def begin(self): - return _mscl.LoggedDataSweeps_begin(self) - - def end(self): - return _mscl.LoggedDataSweeps_end(self) - - def rbegin(self): - return _mscl.LoggedDataSweeps_rbegin(self) - - def rend(self): - return _mscl.LoggedDataSweeps_rend(self) - - def clear(self): - return _mscl.LoggedDataSweeps_clear(self) - - def get_allocator(self): - return _mscl.LoggedDataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.LoggedDataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.LoggedDataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.LoggedDataSweeps_swiginit(self, _mscl.new_LoggedDataSweeps(*args)) - - def push_back(self, x): - return _mscl.LoggedDataSweeps_push_back(self, x) - - def front(self): - return _mscl.LoggedDataSweeps_front(self) - - def back(self): - return _mscl.LoggedDataSweeps_back(self) - - def assign(self, n, x): - return _mscl.LoggedDataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.LoggedDataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.LoggedDataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.LoggedDataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.LoggedDataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweeps - -# Register LoggedDataSweeps in _mscl: -_mscl.LoggedDataSweeps_swigregister(LoggedDataSweeps) - -class MipDataPackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPackets___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPackets___bool__(self) - - def __len__(self): - return _mscl.MipDataPackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPackets___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPackets_pop(self) - - def append(self, x): - return _mscl.MipDataPackets_append(self, x) - - def empty(self): - return _mscl.MipDataPackets_empty(self) - - def size(self): - return _mscl.MipDataPackets_size(self) - - def swap(self, v): - return _mscl.MipDataPackets_swap(self, v) - - def begin(self): - return _mscl.MipDataPackets_begin(self) - - def end(self): - return _mscl.MipDataPackets_end(self) - - def rbegin(self): - return _mscl.MipDataPackets_rbegin(self) - - def rend(self): - return _mscl.MipDataPackets_rend(self) - - def clear(self): - return _mscl.MipDataPackets_clear(self) - - def get_allocator(self): - return _mscl.MipDataPackets_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPackets_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPackets_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPackets_swiginit(self, _mscl.new_MipDataPackets(*args)) - - def push_back(self, x): - return _mscl.MipDataPackets_push_back(self, x) - - def front(self): - return _mscl.MipDataPackets_front(self) - - def back(self): - return _mscl.MipDataPackets_back(self) - - def assign(self, n, x): - return _mscl.MipDataPackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPackets_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPackets_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPackets_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPackets_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPackets - -# Register MipDataPackets in _mscl: -_mscl.MipDataPackets_swigregister(MipDataPackets) - -class RawBytePackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RawBytePackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RawBytePackets___nonzero__(self) - - def __bool__(self): - return _mscl.RawBytePackets___bool__(self) - - def __len__(self): - return _mscl.RawBytePackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.RawBytePackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.RawBytePackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.RawBytePackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.RawBytePackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.RawBytePackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.RawBytePackets___setitem__(self, *args) - - def pop(self): - return _mscl.RawBytePackets_pop(self) - - def append(self, x): - return _mscl.RawBytePackets_append(self, x) - - def empty(self): - return _mscl.RawBytePackets_empty(self) - - def size(self): - return _mscl.RawBytePackets_size(self) - - def swap(self, v): - return _mscl.RawBytePackets_swap(self, v) - - def begin(self): - return _mscl.RawBytePackets_begin(self) - - def end(self): - return _mscl.RawBytePackets_end(self) - - def rbegin(self): - return _mscl.RawBytePackets_rbegin(self) - - def rend(self): - return _mscl.RawBytePackets_rend(self) - - def clear(self): - return _mscl.RawBytePackets_clear(self) - - def get_allocator(self): - return _mscl.RawBytePackets_get_allocator(self) - - def pop_back(self): - return _mscl.RawBytePackets_pop_back(self) - - def erase(self, *args): - return _mscl.RawBytePackets_erase(self, *args) - - def __init__(self, *args): - _mscl.RawBytePackets_swiginit(self, _mscl.new_RawBytePackets(*args)) - - def push_back(self, x): - return _mscl.RawBytePackets_push_back(self, x) - - def front(self): - return _mscl.RawBytePackets_front(self) - - def back(self): - return _mscl.RawBytePackets_back(self) - - def assign(self, n, x): - return _mscl.RawBytePackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.RawBytePackets_resize(self, *args) - - def insert(self, *args): - return _mscl.RawBytePackets_insert(self, *args) - - def reserve(self, n): - return _mscl.RawBytePackets_reserve(self, n) - - def capacity(self): - return _mscl.RawBytePackets_capacity(self) - __swig_destroy__ = _mscl.delete_RawBytePackets - -# Register RawBytePackets in _mscl: -_mscl.RawBytePackets_swigregister(RawBytePackets) - -class MipChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannels___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannels___bool__(self) - - def __len__(self): - return _mscl.MipChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannels___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannels_pop(self) - - def append(self, x): - return _mscl.MipChannels_append(self, x) - - def empty(self): - return _mscl.MipChannels_empty(self) - - def size(self): - return _mscl.MipChannels_size(self) - - def swap(self, v): - return _mscl.MipChannels_swap(self, v) - - def begin(self): - return _mscl.MipChannels_begin(self) - - def end(self): - return _mscl.MipChannels_end(self) - - def rbegin(self): - return _mscl.MipChannels_rbegin(self) - - def rend(self): - return _mscl.MipChannels_rend(self) - - def clear(self): - return _mscl.MipChannels_clear(self) - - def get_allocator(self): - return _mscl.MipChannels_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannels_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannels_swiginit(self, _mscl.new_MipChannels(*args)) - - def push_back(self, x): - return _mscl.MipChannels_push_back(self, x) - - def front(self): - return _mscl.MipChannels_front(self) - - def back(self): - return _mscl.MipChannels_back(self) - - def assign(self, n, x): - return _mscl.MipChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannels_reserve(self, n) - - def capacity(self): - return _mscl.MipChannels_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannels - -# Register MipChannels in _mscl: -_mscl.MipChannels_swigregister(MipChannels) - -class DataCollectionMethods(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataCollectionMethods_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataCollectionMethods___nonzero__(self) - - def __bool__(self): - return _mscl.DataCollectionMethods___bool__(self) - - def __len__(self): - return _mscl.DataCollectionMethods___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataCollectionMethods___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataCollectionMethods___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataCollectionMethods___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataCollectionMethods___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataCollectionMethods___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataCollectionMethods___setitem__(self, *args) - - def pop(self): - return _mscl.DataCollectionMethods_pop(self) - - def append(self, x): - return _mscl.DataCollectionMethods_append(self, x) - - def empty(self): - return _mscl.DataCollectionMethods_empty(self) - - def size(self): - return _mscl.DataCollectionMethods_size(self) - - def swap(self, v): - return _mscl.DataCollectionMethods_swap(self, v) - - def begin(self): - return _mscl.DataCollectionMethods_begin(self) - - def end(self): - return _mscl.DataCollectionMethods_end(self) - - def rbegin(self): - return _mscl.DataCollectionMethods_rbegin(self) - - def rend(self): - return _mscl.DataCollectionMethods_rend(self) - - def clear(self): - return _mscl.DataCollectionMethods_clear(self) - - def get_allocator(self): - return _mscl.DataCollectionMethods_get_allocator(self) - - def pop_back(self): - return _mscl.DataCollectionMethods_pop_back(self) - - def erase(self, *args): - return _mscl.DataCollectionMethods_erase(self, *args) - - def __init__(self, *args): - _mscl.DataCollectionMethods_swiginit(self, _mscl.new_DataCollectionMethods(*args)) - - def push_back(self, x): - return _mscl.DataCollectionMethods_push_back(self, x) - - def front(self): - return _mscl.DataCollectionMethods_front(self) - - def back(self): - return _mscl.DataCollectionMethods_back(self) - - def assign(self, n, x): - return _mscl.DataCollectionMethods_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataCollectionMethods_resize(self, *args) - - def insert(self, *args): - return _mscl.DataCollectionMethods_insert(self, *args) - - def reserve(self, n): - return _mscl.DataCollectionMethods_reserve(self, n) - - def capacity(self): - return _mscl.DataCollectionMethods_capacity(self) - __swig_destroy__ = _mscl.delete_DataCollectionMethods - -# Register DataCollectionMethods in _mscl: -_mscl.DataCollectionMethods_swigregister(DataCollectionMethods) - -class DataFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataFormats___nonzero__(self) - - def __bool__(self): - return _mscl.DataFormats___bool__(self) - - def __len__(self): - return _mscl.DataFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataFormats___setitem__(self, *args) - - def pop(self): - return _mscl.DataFormats_pop(self) - - def append(self, x): - return _mscl.DataFormats_append(self, x) - - def empty(self): - return _mscl.DataFormats_empty(self) - - def size(self): - return _mscl.DataFormats_size(self) - - def swap(self, v): - return _mscl.DataFormats_swap(self, v) - - def begin(self): - return _mscl.DataFormats_begin(self) - - def end(self): - return _mscl.DataFormats_end(self) - - def rbegin(self): - return _mscl.DataFormats_rbegin(self) - - def rend(self): - return _mscl.DataFormats_rend(self) - - def clear(self): - return _mscl.DataFormats_clear(self) - - def get_allocator(self): - return _mscl.DataFormats_get_allocator(self) - - def pop_back(self): - return _mscl.DataFormats_pop_back(self) - - def erase(self, *args): - return _mscl.DataFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.DataFormats_swiginit(self, _mscl.new_DataFormats(*args)) - - def push_back(self, x): - return _mscl.DataFormats_push_back(self, x) - - def front(self): - return _mscl.DataFormats_front(self) - - def back(self): - return _mscl.DataFormats_back(self) - - def assign(self, n, x): - return _mscl.DataFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.DataFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.DataFormats_reserve(self, n) - - def capacity(self): - return _mscl.DataFormats_capacity(self) - __swig_destroy__ = _mscl.delete_DataFormats - -# Register DataFormats in _mscl: -_mscl.DataFormats_swigregister(DataFormats) - -class WirelessSampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessSampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessSampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessSampleRates___bool__(self) - - def __len__(self): - return _mscl.WirelessSampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessSampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessSampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessSampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessSampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessSampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessSampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessSampleRates_pop(self) - - def append(self, x): - return _mscl.WirelessSampleRates_append(self, x) - - def empty(self): - return _mscl.WirelessSampleRates_empty(self) - - def size(self): - return _mscl.WirelessSampleRates_size(self) - - def swap(self, v): - return _mscl.WirelessSampleRates_swap(self, v) - - def begin(self): - return _mscl.WirelessSampleRates_begin(self) - - def end(self): - return _mscl.WirelessSampleRates_end(self) - - def rbegin(self): - return _mscl.WirelessSampleRates_rbegin(self) - - def rend(self): - return _mscl.WirelessSampleRates_rend(self) - - def clear(self): - return _mscl.WirelessSampleRates_clear(self) - - def get_allocator(self): - return _mscl.WirelessSampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessSampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessSampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessSampleRates_swiginit(self, _mscl.new_WirelessSampleRates(*args)) - - def push_back(self, x): - return _mscl.WirelessSampleRates_push_back(self, x) - - def front(self): - return _mscl.WirelessSampleRates_front(self) - - def back(self): - return _mscl.WirelessSampleRates_back(self) - - def assign(self, n, x): - return _mscl.WirelessSampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessSampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessSampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessSampleRates_reserve(self, n) - - def capacity(self): - return _mscl.WirelessSampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessSampleRates - -# Register WirelessSampleRates in _mscl: -_mscl.WirelessSampleRates_swigregister(WirelessSampleRates) - -class SamplingModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SamplingModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SamplingModes___nonzero__(self) - - def __bool__(self): - return _mscl.SamplingModes___bool__(self) - - def __len__(self): - return _mscl.SamplingModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SamplingModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SamplingModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SamplingModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SamplingModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SamplingModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SamplingModes___setitem__(self, *args) - - def pop(self): - return _mscl.SamplingModes_pop(self) - - def append(self, x): - return _mscl.SamplingModes_append(self, x) - - def empty(self): - return _mscl.SamplingModes_empty(self) - - def size(self): - return _mscl.SamplingModes_size(self) - - def swap(self, v): - return _mscl.SamplingModes_swap(self, v) - - def begin(self): - return _mscl.SamplingModes_begin(self) - - def end(self): - return _mscl.SamplingModes_end(self) - - def rbegin(self): - return _mscl.SamplingModes_rbegin(self) - - def rend(self): - return _mscl.SamplingModes_rend(self) - - def clear(self): - return _mscl.SamplingModes_clear(self) - - def get_allocator(self): - return _mscl.SamplingModes_get_allocator(self) - - def pop_back(self): - return _mscl.SamplingModes_pop_back(self) - - def erase(self, *args): - return _mscl.SamplingModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SamplingModes_swiginit(self, _mscl.new_SamplingModes(*args)) - - def push_back(self, x): - return _mscl.SamplingModes_push_back(self, x) - - def front(self): - return _mscl.SamplingModes_front(self) - - def back(self): - return _mscl.SamplingModes_back(self) - - def assign(self, n, x): - return _mscl.SamplingModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SamplingModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SamplingModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SamplingModes_reserve(self, n) - - def capacity(self): - return _mscl.SamplingModes_capacity(self) - __swig_destroy__ = _mscl.delete_SamplingModes - -# Register SamplingModes in _mscl: -_mscl.SamplingModes_swigregister(SamplingModes) - -class DefaultModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DefaultModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DefaultModes___nonzero__(self) - - def __bool__(self): - return _mscl.DefaultModes___bool__(self) - - def __len__(self): - return _mscl.DefaultModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DefaultModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DefaultModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DefaultModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DefaultModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DefaultModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DefaultModes___setitem__(self, *args) - - def pop(self): - return _mscl.DefaultModes_pop(self) - - def append(self, x): - return _mscl.DefaultModes_append(self, x) - - def empty(self): - return _mscl.DefaultModes_empty(self) - - def size(self): - return _mscl.DefaultModes_size(self) - - def swap(self, v): - return _mscl.DefaultModes_swap(self, v) - - def begin(self): - return _mscl.DefaultModes_begin(self) - - def end(self): - return _mscl.DefaultModes_end(self) - - def rbegin(self): - return _mscl.DefaultModes_rbegin(self) - - def rend(self): - return _mscl.DefaultModes_rend(self) - - def clear(self): - return _mscl.DefaultModes_clear(self) - - def get_allocator(self): - return _mscl.DefaultModes_get_allocator(self) - - def pop_back(self): - return _mscl.DefaultModes_pop_back(self) - - def erase(self, *args): - return _mscl.DefaultModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DefaultModes_swiginit(self, _mscl.new_DefaultModes(*args)) - - def push_back(self, x): - return _mscl.DefaultModes_push_back(self, x) - - def front(self): - return _mscl.DefaultModes_front(self) - - def back(self): - return _mscl.DefaultModes_back(self) - - def assign(self, n, x): - return _mscl.DefaultModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DefaultModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DefaultModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DefaultModes_reserve(self, n) - - def capacity(self): - return _mscl.DefaultModes_capacity(self) - __swig_destroy__ = _mscl.delete_DefaultModes - -# Register DefaultModes in _mscl: -_mscl.DefaultModes_swigregister(DefaultModes) - -class TransmitPowers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransmitPowers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransmitPowers___nonzero__(self) - - def __bool__(self): - return _mscl.TransmitPowers___bool__(self) - - def __len__(self): - return _mscl.TransmitPowers___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransmitPowers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransmitPowers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransmitPowers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransmitPowers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransmitPowers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransmitPowers___setitem__(self, *args) - - def pop(self): - return _mscl.TransmitPowers_pop(self) - - def append(self, x): - return _mscl.TransmitPowers_append(self, x) - - def empty(self): - return _mscl.TransmitPowers_empty(self) - - def size(self): - return _mscl.TransmitPowers_size(self) - - def swap(self, v): - return _mscl.TransmitPowers_swap(self, v) - - def begin(self): - return _mscl.TransmitPowers_begin(self) - - def end(self): - return _mscl.TransmitPowers_end(self) - - def rbegin(self): - return _mscl.TransmitPowers_rbegin(self) - - def rend(self): - return _mscl.TransmitPowers_rend(self) - - def clear(self): - return _mscl.TransmitPowers_clear(self) - - def get_allocator(self): - return _mscl.TransmitPowers_get_allocator(self) - - def pop_back(self): - return _mscl.TransmitPowers_pop_back(self) - - def erase(self, *args): - return _mscl.TransmitPowers_erase(self, *args) - - def __init__(self, *args): - _mscl.TransmitPowers_swiginit(self, _mscl.new_TransmitPowers(*args)) - - def push_back(self, x): - return _mscl.TransmitPowers_push_back(self, x) - - def front(self): - return _mscl.TransmitPowers_front(self) - - def back(self): - return _mscl.TransmitPowers_back(self) - - def assign(self, n, x): - return _mscl.TransmitPowers_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransmitPowers_resize(self, *args) - - def insert(self, *args): - return _mscl.TransmitPowers_insert(self, *args) - - def reserve(self, n): - return _mscl.TransmitPowers_reserve(self, n) - - def capacity(self): - return _mscl.TransmitPowers_capacity(self) - __swig_destroy__ = _mscl.delete_TransmitPowers - -# Register TransmitPowers in _mscl: -_mscl.TransmitPowers_swigregister(TransmitPowers) - -class ChannelGroupSettings(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroupSettings_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroupSettings___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroupSettings___bool__(self) - - def __len__(self): - return _mscl.ChannelGroupSettings___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroupSettings___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroupSettings___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroupSettings___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroupSettings___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroupSettings___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroupSettings___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroupSettings_pop(self) - - def append(self, x): - return _mscl.ChannelGroupSettings_append(self, x) - - def empty(self): - return _mscl.ChannelGroupSettings_empty(self) - - def size(self): - return _mscl.ChannelGroupSettings_size(self) - - def swap(self, v): - return _mscl.ChannelGroupSettings_swap(self, v) - - def begin(self): - return _mscl.ChannelGroupSettings_begin(self) - - def end(self): - return _mscl.ChannelGroupSettings_end(self) - - def rbegin(self): - return _mscl.ChannelGroupSettings_rbegin(self) - - def rend(self): - return _mscl.ChannelGroupSettings_rend(self) - - def clear(self): - return _mscl.ChannelGroupSettings_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroupSettings_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroupSettings_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroupSettings_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroupSettings_swiginit(self, _mscl.new_ChannelGroupSettings(*args)) - - def push_back(self, x): - return _mscl.ChannelGroupSettings_push_back(self, x) - - def front(self): - return _mscl.ChannelGroupSettings_front(self) - - def back(self): - return _mscl.ChannelGroupSettings_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroupSettings_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroupSettings_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroupSettings_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroupSettings_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroupSettings_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroupSettings - -# Register ChannelGroupSettings in _mscl: -_mscl.ChannelGroupSettings_swigregister(ChannelGroupSettings) - -class FatigueModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.FatigueModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.FatigueModes___nonzero__(self) - - def __bool__(self): - return _mscl.FatigueModes___bool__(self) - - def __len__(self): - return _mscl.FatigueModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.FatigueModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.FatigueModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.FatigueModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.FatigueModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.FatigueModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.FatigueModes___setitem__(self, *args) - - def pop(self): - return _mscl.FatigueModes_pop(self) - - def append(self, x): - return _mscl.FatigueModes_append(self, x) - - def empty(self): - return _mscl.FatigueModes_empty(self) - - def size(self): - return _mscl.FatigueModes_size(self) - - def swap(self, v): - return _mscl.FatigueModes_swap(self, v) - - def begin(self): - return _mscl.FatigueModes_begin(self) - - def end(self): - return _mscl.FatigueModes_end(self) - - def rbegin(self): - return _mscl.FatigueModes_rbegin(self) - - def rend(self): - return _mscl.FatigueModes_rend(self) - - def clear(self): - return _mscl.FatigueModes_clear(self) - - def get_allocator(self): - return _mscl.FatigueModes_get_allocator(self) - - def pop_back(self): - return _mscl.FatigueModes_pop_back(self) - - def erase(self, *args): - return _mscl.FatigueModes_erase(self, *args) - - def __init__(self, *args): - _mscl.FatigueModes_swiginit(self, _mscl.new_FatigueModes(*args)) - - def push_back(self, x): - return _mscl.FatigueModes_push_back(self, x) - - def front(self): - return _mscl.FatigueModes_front(self) - - def back(self): - return _mscl.FatigueModes_back(self) - - def assign(self, n, x): - return _mscl.FatigueModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.FatigueModes_resize(self, *args) - - def insert(self, *args): - return _mscl.FatigueModes_insert(self, *args) - - def reserve(self, n): - return _mscl.FatigueModes_reserve(self, n) - - def capacity(self): - return _mscl.FatigueModes_capacity(self) - __swig_destroy__ = _mscl.delete_FatigueModes - -# Register FatigueModes in _mscl: -_mscl.FatigueModes_swigregister(FatigueModes) - -class Filters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Filters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Filters___nonzero__(self) - - def __bool__(self): - return _mscl.Filters___bool__(self) - - def __len__(self): - return _mscl.Filters___len__(self) - - def __getslice__(self, i, j): - return _mscl.Filters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Filters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Filters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Filters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Filters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Filters___setitem__(self, *args) - - def pop(self): - return _mscl.Filters_pop(self) - - def append(self, x): - return _mscl.Filters_append(self, x) - - def empty(self): - return _mscl.Filters_empty(self) - - def size(self): - return _mscl.Filters_size(self) - - def swap(self, v): - return _mscl.Filters_swap(self, v) - - def begin(self): - return _mscl.Filters_begin(self) - - def end(self): - return _mscl.Filters_end(self) - - def rbegin(self): - return _mscl.Filters_rbegin(self) - - def rend(self): - return _mscl.Filters_rend(self) - - def clear(self): - return _mscl.Filters_clear(self) - - def get_allocator(self): - return _mscl.Filters_get_allocator(self) - - def pop_back(self): - return _mscl.Filters_pop_back(self) - - def erase(self, *args): - return _mscl.Filters_erase(self, *args) - - def __init__(self, *args): - _mscl.Filters_swiginit(self, _mscl.new_Filters(*args)) - - def push_back(self, x): - return _mscl.Filters_push_back(self, x) - - def front(self): - return _mscl.Filters_front(self) - - def back(self): - return _mscl.Filters_back(self) - - def assign(self, n, x): - return _mscl.Filters_assign(self, n, x) - - def resize(self, *args): - return _mscl.Filters_resize(self, *args) - - def insert(self, *args): - return _mscl.Filters_insert(self, *args) - - def reserve(self, n): - return _mscl.Filters_reserve(self, n) - - def capacity(self): - return _mscl.Filters_capacity(self) - __swig_destroy__ = _mscl.delete_Filters - -# Register Filters in _mscl: -_mscl.Filters_swigregister(Filters) - -class HighPassFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HighPassFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HighPassFilters___nonzero__(self) - - def __bool__(self): - return _mscl.HighPassFilters___bool__(self) - - def __len__(self): - return _mscl.HighPassFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.HighPassFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HighPassFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HighPassFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HighPassFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HighPassFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HighPassFilters___setitem__(self, *args) - - def pop(self): - return _mscl.HighPassFilters_pop(self) - - def append(self, x): - return _mscl.HighPassFilters_append(self, x) - - def empty(self): - return _mscl.HighPassFilters_empty(self) - - def size(self): - return _mscl.HighPassFilters_size(self) - - def swap(self, v): - return _mscl.HighPassFilters_swap(self, v) - - def begin(self): - return _mscl.HighPassFilters_begin(self) - - def end(self): - return _mscl.HighPassFilters_end(self) - - def rbegin(self): - return _mscl.HighPassFilters_rbegin(self) - - def rend(self): - return _mscl.HighPassFilters_rend(self) - - def clear(self): - return _mscl.HighPassFilters_clear(self) - - def get_allocator(self): - return _mscl.HighPassFilters_get_allocator(self) - - def pop_back(self): - return _mscl.HighPassFilters_pop_back(self) - - def erase(self, *args): - return _mscl.HighPassFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.HighPassFilters_swiginit(self, _mscl.new_HighPassFilters(*args)) - - def push_back(self, x): - return _mscl.HighPassFilters_push_back(self, x) - - def front(self): - return _mscl.HighPassFilters_front(self) - - def back(self): - return _mscl.HighPassFilters_back(self) - - def assign(self, n, x): - return _mscl.HighPassFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.HighPassFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.HighPassFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.HighPassFilters_reserve(self, n) - - def capacity(self): - return _mscl.HighPassFilters_capacity(self) - __swig_destroy__ = _mscl.delete_HighPassFilters - -# Register HighPassFilters in _mscl: -_mscl.HighPassFilters_swigregister(HighPassFilters) - -class StorageLimitModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StorageLimitModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StorageLimitModes___nonzero__(self) - - def __bool__(self): - return _mscl.StorageLimitModes___bool__(self) - - def __len__(self): - return _mscl.StorageLimitModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.StorageLimitModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StorageLimitModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StorageLimitModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StorageLimitModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StorageLimitModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StorageLimitModes___setitem__(self, *args) - - def pop(self): - return _mscl.StorageLimitModes_pop(self) - - def append(self, x): - return _mscl.StorageLimitModes_append(self, x) - - def empty(self): - return _mscl.StorageLimitModes_empty(self) - - def size(self): - return _mscl.StorageLimitModes_size(self) - - def swap(self, v): - return _mscl.StorageLimitModes_swap(self, v) - - def begin(self): - return _mscl.StorageLimitModes_begin(self) - - def end(self): - return _mscl.StorageLimitModes_end(self) - - def rbegin(self): - return _mscl.StorageLimitModes_rbegin(self) - - def rend(self): - return _mscl.StorageLimitModes_rend(self) - - def clear(self): - return _mscl.StorageLimitModes_clear(self) - - def get_allocator(self): - return _mscl.StorageLimitModes_get_allocator(self) - - def pop_back(self): - return _mscl.StorageLimitModes_pop_back(self) - - def erase(self, *args): - return _mscl.StorageLimitModes_erase(self, *args) - - def __init__(self, *args): - _mscl.StorageLimitModes_swiginit(self, _mscl.new_StorageLimitModes(*args)) - - def push_back(self, x): - return _mscl.StorageLimitModes_push_back(self, x) - - def front(self): - return _mscl.StorageLimitModes_front(self) - - def back(self): - return _mscl.StorageLimitModes_back(self) - - def assign(self, n, x): - return _mscl.StorageLimitModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.StorageLimitModes_resize(self, *args) - - def insert(self, *args): - return _mscl.StorageLimitModes_insert(self, *args) - - def reserve(self, n): - return _mscl.StorageLimitModes_reserve(self, n) - - def capacity(self): - return _mscl.StorageLimitModes_capacity(self) - __swig_destroy__ = _mscl.delete_StorageLimitModes - -# Register StorageLimitModes in _mscl: -_mscl.StorageLimitModes_swigregister(StorageLimitModes) - -class InputRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.InputRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.InputRanges___nonzero__(self) - - def __bool__(self): - return _mscl.InputRanges___bool__(self) - - def __len__(self): - return _mscl.InputRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.InputRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.InputRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.InputRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.InputRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.InputRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.InputRanges___setitem__(self, *args) - - def pop(self): - return _mscl.InputRanges_pop(self) - - def append(self, x): - return _mscl.InputRanges_append(self, x) - - def empty(self): - return _mscl.InputRanges_empty(self) - - def size(self): - return _mscl.InputRanges_size(self) - - def swap(self, v): - return _mscl.InputRanges_swap(self, v) - - def begin(self): - return _mscl.InputRanges_begin(self) - - def end(self): - return _mscl.InputRanges_end(self) - - def rbegin(self): - return _mscl.InputRanges_rbegin(self) - - def rend(self): - return _mscl.InputRanges_rend(self) - - def clear(self): - return _mscl.InputRanges_clear(self) - - def get_allocator(self): - return _mscl.InputRanges_get_allocator(self) - - def pop_back(self): - return _mscl.InputRanges_pop_back(self) - - def erase(self, *args): - return _mscl.InputRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.InputRanges_swiginit(self, _mscl.new_InputRanges(*args)) - - def push_back(self, x): - return _mscl.InputRanges_push_back(self, x) - - def front(self): - return _mscl.InputRanges_front(self) - - def back(self): - return _mscl.InputRanges_back(self) - - def assign(self, n, x): - return _mscl.InputRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.InputRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.InputRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.InputRanges_reserve(self, n) - - def capacity(self): - return _mscl.InputRanges_capacity(self) - __swig_destroy__ = _mscl.delete_InputRanges - -# Register InputRanges in _mscl: -_mscl.InputRanges_swigregister(InputRanges) - -class DataModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataModes___nonzero__(self) - - def __bool__(self): - return _mscl.DataModes___bool__(self) - - def __len__(self): - return _mscl.DataModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataModes___setitem__(self, *args) - - def pop(self): - return _mscl.DataModes_pop(self) - - def append(self, x): - return _mscl.DataModes_append(self, x) - - def empty(self): - return _mscl.DataModes_empty(self) - - def size(self): - return _mscl.DataModes_size(self) - - def swap(self, v): - return _mscl.DataModes_swap(self, v) - - def begin(self): - return _mscl.DataModes_begin(self) - - def end(self): - return _mscl.DataModes_end(self) - - def rbegin(self): - return _mscl.DataModes_rbegin(self) - - def rend(self): - return _mscl.DataModes_rend(self) - - def clear(self): - return _mscl.DataModes_clear(self) - - def get_allocator(self): - return _mscl.DataModes_get_allocator(self) - - def pop_back(self): - return _mscl.DataModes_pop_back(self) - - def erase(self, *args): - return _mscl.DataModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DataModes_swiginit(self, _mscl.new_DataModes(*args)) - - def push_back(self, x): - return _mscl.DataModes_push_back(self, x) - - def front(self): - return _mscl.DataModes_front(self) - - def back(self): - return _mscl.DataModes_back(self) - - def assign(self, n, x): - return _mscl.DataModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DataModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DataModes_reserve(self, n) - - def capacity(self): - return _mscl.DataModes_capacity(self) - __swig_destroy__ = _mscl.delete_DataModes - -# Register DataModes in _mscl: -_mscl.DataModes_swigregister(DataModes) - -class CommProtocols(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommProtocols_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommProtocols___nonzero__(self) - - def __bool__(self): - return _mscl.CommProtocols___bool__(self) - - def __len__(self): - return _mscl.CommProtocols___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommProtocols___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommProtocols___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommProtocols___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommProtocols___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommProtocols___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommProtocols___setitem__(self, *args) - - def pop(self): - return _mscl.CommProtocols_pop(self) - - def append(self, x): - return _mscl.CommProtocols_append(self, x) - - def empty(self): - return _mscl.CommProtocols_empty(self) - - def size(self): - return _mscl.CommProtocols_size(self) - - def swap(self, v): - return _mscl.CommProtocols_swap(self, v) - - def begin(self): - return _mscl.CommProtocols_begin(self) - - def end(self): - return _mscl.CommProtocols_end(self) - - def rbegin(self): - return _mscl.CommProtocols_rbegin(self) - - def rend(self): - return _mscl.CommProtocols_rend(self) - - def clear(self): - return _mscl.CommProtocols_clear(self) - - def get_allocator(self): - return _mscl.CommProtocols_get_allocator(self) - - def pop_back(self): - return _mscl.CommProtocols_pop_back(self) - - def erase(self, *args): - return _mscl.CommProtocols_erase(self, *args) - - def __init__(self, *args): - _mscl.CommProtocols_swiginit(self, _mscl.new_CommProtocols(*args)) - - def push_back(self, x): - return _mscl.CommProtocols_push_back(self, x) - - def front(self): - return _mscl.CommProtocols_front(self) - - def back(self): - return _mscl.CommProtocols_back(self) - - def assign(self, n, x): - return _mscl.CommProtocols_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommProtocols_resize(self, *args) - - def insert(self, *args): - return _mscl.CommProtocols_insert(self, *args) - - def reserve(self, n): - return _mscl.CommProtocols_reserve(self, n) - - def capacity(self): - return _mscl.CommProtocols_capacity(self) - __swig_destroy__ = _mscl.delete_CommProtocols - -# Register CommProtocols in _mscl: -_mscl.CommProtocols_swigregister(CommProtocols) - -class Voltages(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Voltages_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Voltages___nonzero__(self) - - def __bool__(self): - return _mscl.Voltages___bool__(self) - - def __len__(self): - return _mscl.Voltages___len__(self) - - def __getslice__(self, i, j): - return _mscl.Voltages___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Voltages___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Voltages___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Voltages___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Voltages___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Voltages___setitem__(self, *args) - - def pop(self): - return _mscl.Voltages_pop(self) - - def append(self, x): - return _mscl.Voltages_append(self, x) - - def empty(self): - return _mscl.Voltages_empty(self) - - def size(self): - return _mscl.Voltages_size(self) - - def swap(self, v): - return _mscl.Voltages_swap(self, v) - - def begin(self): - return _mscl.Voltages_begin(self) - - def end(self): - return _mscl.Voltages_end(self) - - def rbegin(self): - return _mscl.Voltages_rbegin(self) - - def rend(self): - return _mscl.Voltages_rend(self) - - def clear(self): - return _mscl.Voltages_clear(self) - - def get_allocator(self): - return _mscl.Voltages_get_allocator(self) - - def pop_back(self): - return _mscl.Voltages_pop_back(self) - - def erase(self, *args): - return _mscl.Voltages_erase(self, *args) - - def __init__(self, *args): - _mscl.Voltages_swiginit(self, _mscl.new_Voltages(*args)) - - def push_back(self, x): - return _mscl.Voltages_push_back(self, x) - - def front(self): - return _mscl.Voltages_front(self) - - def back(self): - return _mscl.Voltages_back(self) - - def assign(self, n, x): - return _mscl.Voltages_assign(self, n, x) - - def resize(self, *args): - return _mscl.Voltages_resize(self, *args) - - def insert(self, *args): - return _mscl.Voltages_insert(self, *args) - - def reserve(self, n): - return _mscl.Voltages_reserve(self, n) - - def capacity(self): - return _mscl.Voltages_capacity(self) - __swig_destroy__ = _mscl.delete_Voltages - -# Register Voltages in _mscl: -_mscl.Voltages_swigregister(Voltages) - -class SensorOutputModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorOutputModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorOutputModes___nonzero__(self) - - def __bool__(self): - return _mscl.SensorOutputModes___bool__(self) - - def __len__(self): - return _mscl.SensorOutputModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorOutputModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorOutputModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorOutputModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorOutputModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorOutputModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorOutputModes___setitem__(self, *args) - - def pop(self): - return _mscl.SensorOutputModes_pop(self) - - def append(self, x): - return _mscl.SensorOutputModes_append(self, x) - - def empty(self): - return _mscl.SensorOutputModes_empty(self) - - def size(self): - return _mscl.SensorOutputModes_size(self) - - def swap(self, v): - return _mscl.SensorOutputModes_swap(self, v) - - def begin(self): - return _mscl.SensorOutputModes_begin(self) - - def end(self): - return _mscl.SensorOutputModes_end(self) - - def rbegin(self): - return _mscl.SensorOutputModes_rbegin(self) - - def rend(self): - return _mscl.SensorOutputModes_rend(self) - - def clear(self): - return _mscl.SensorOutputModes_clear(self) - - def get_allocator(self): - return _mscl.SensorOutputModes_get_allocator(self) - - def pop_back(self): - return _mscl.SensorOutputModes_pop_back(self) - - def erase(self, *args): - return _mscl.SensorOutputModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorOutputModes_swiginit(self, _mscl.new_SensorOutputModes(*args)) - - def push_back(self, x): - return _mscl.SensorOutputModes_push_back(self, x) - - def front(self): - return _mscl.SensorOutputModes_front(self) - - def back(self): - return _mscl.SensorOutputModes_back(self) - - def assign(self, n, x): - return _mscl.SensorOutputModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorOutputModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorOutputModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorOutputModes_reserve(self, n) - - def capacity(self): - return _mscl.SensorOutputModes_capacity(self) - __swig_destroy__ = _mscl.delete_SensorOutputModes - -# Register SensorOutputModes in _mscl: -_mscl.SensorOutputModes_swigregister(SensorOutputModes) - -class CfcFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CfcFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CfcFilters___nonzero__(self) - - def __bool__(self): - return _mscl.CfcFilters___bool__(self) - - def __len__(self): - return _mscl.CfcFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.CfcFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CfcFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CfcFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CfcFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CfcFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CfcFilters___setitem__(self, *args) - - def pop(self): - return _mscl.CfcFilters_pop(self) - - def append(self, x): - return _mscl.CfcFilters_append(self, x) - - def empty(self): - return _mscl.CfcFilters_empty(self) - - def size(self): - return _mscl.CfcFilters_size(self) - - def swap(self, v): - return _mscl.CfcFilters_swap(self, v) - - def begin(self): - return _mscl.CfcFilters_begin(self) - - def end(self): - return _mscl.CfcFilters_end(self) - - def rbegin(self): - return _mscl.CfcFilters_rbegin(self) - - def rend(self): - return _mscl.CfcFilters_rend(self) - - def clear(self): - return _mscl.CfcFilters_clear(self) - - def get_allocator(self): - return _mscl.CfcFilters_get_allocator(self) - - def pop_back(self): - return _mscl.CfcFilters_pop_back(self) - - def erase(self, *args): - return _mscl.CfcFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.CfcFilters_swiginit(self, _mscl.new_CfcFilters(*args)) - - def push_back(self, x): - return _mscl.CfcFilters_push_back(self, x) - - def front(self): - return _mscl.CfcFilters_front(self) - - def back(self): - return _mscl.CfcFilters_back(self) - - def assign(self, n, x): - return _mscl.CfcFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.CfcFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.CfcFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.CfcFilters_reserve(self, n) - - def capacity(self): - return _mscl.CfcFilters_capacity(self) - __swig_destroy__ = _mscl.delete_CfcFilters - -# Register CfcFilters in _mscl: -_mscl.CfcFilters_swigregister(CfcFilters) - -class TransducerTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransducerTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransducerTypes___nonzero__(self) - - def __bool__(self): - return _mscl.TransducerTypes___bool__(self) - - def __len__(self): - return _mscl.TransducerTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransducerTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransducerTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransducerTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransducerTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransducerTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransducerTypes___setitem__(self, *args) - - def pop(self): - return _mscl.TransducerTypes_pop(self) - - def append(self, x): - return _mscl.TransducerTypes_append(self, x) - - def empty(self): - return _mscl.TransducerTypes_empty(self) - - def size(self): - return _mscl.TransducerTypes_size(self) - - def swap(self, v): - return _mscl.TransducerTypes_swap(self, v) - - def begin(self): - return _mscl.TransducerTypes_begin(self) - - def end(self): - return _mscl.TransducerTypes_end(self) - - def rbegin(self): - return _mscl.TransducerTypes_rbegin(self) - - def rend(self): - return _mscl.TransducerTypes_rend(self) - - def clear(self): - return _mscl.TransducerTypes_clear(self) - - def get_allocator(self): - return _mscl.TransducerTypes_get_allocator(self) - - def pop_back(self): - return _mscl.TransducerTypes_pop_back(self) - - def erase(self, *args): - return _mscl.TransducerTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.TransducerTypes_swiginit(self, _mscl.new_TransducerTypes(*args)) - - def push_back(self, x): - return _mscl.TransducerTypes_push_back(self, x) - - def front(self): - return _mscl.TransducerTypes_front(self) - - def back(self): - return _mscl.TransducerTypes_back(self) - - def assign(self, n, x): - return _mscl.TransducerTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransducerTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.TransducerTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.TransducerTypes_reserve(self, n) - - def capacity(self): - return _mscl.TransducerTypes_capacity(self) - __swig_destroy__ = _mscl.delete_TransducerTypes - -# Register TransducerTypes in _mscl: -_mscl.TransducerTypes_swigregister(TransducerTypes) - -class EepromMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EepromMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EepromMap___nonzero__(self) - - def __bool__(self): - return _mscl.EepromMap___bool__(self) - - def __len__(self): - return _mscl.EepromMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.EepromMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.EepromMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.EepromMap_has_key(self, key) - - def keys(self): - return _mscl.EepromMap_keys(self) - - def values(self): - return _mscl.EepromMap_values(self) - - def items(self): - return _mscl.EepromMap_items(self) - - def __contains__(self, key): - return _mscl.EepromMap___contains__(self, key) - - def key_iterator(self): - return _mscl.EepromMap_key_iterator(self) - - def value_iterator(self): - return _mscl.EepromMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.EepromMap___setitem__(self, *args) - - def asdict(self): - return _mscl.EepromMap_asdict(self) - - def __init__(self, *args): - _mscl.EepromMap_swiginit(self, _mscl.new_EepromMap(*args)) - - def empty(self): - return _mscl.EepromMap_empty(self) - - def size(self): - return _mscl.EepromMap_size(self) - - def swap(self, v): - return _mscl.EepromMap_swap(self, v) - - def begin(self): - return _mscl.EepromMap_begin(self) - - def end(self): - return _mscl.EepromMap_end(self) - - def rbegin(self): - return _mscl.EepromMap_rbegin(self) - - def rend(self): - return _mscl.EepromMap_rend(self) - - def clear(self): - return _mscl.EepromMap_clear(self) - - def get_allocator(self): - return _mscl.EepromMap_get_allocator(self) - - def count(self, x): - return _mscl.EepromMap_count(self, x) - - def erase(self, *args): - return _mscl.EepromMap_erase(self, *args) - - def find(self, x): - return _mscl.EepromMap_find(self, x) - - def lower_bound(self, x): - return _mscl.EepromMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.EepromMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_EepromMap - -# Register EepromMap in _mscl: -_mscl.EepromMap_swigregister(EepromMap) - -class DerivedChannelMasks(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DerivedChannelMasks_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DerivedChannelMasks___nonzero__(self) - - def __bool__(self): - return _mscl.DerivedChannelMasks___bool__(self) - - def __len__(self): - return _mscl.DerivedChannelMasks___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DerivedChannelMasks___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DerivedChannelMasks___delitem__(self, key) - - def has_key(self, key): - return _mscl.DerivedChannelMasks_has_key(self, key) - - def keys(self): - return _mscl.DerivedChannelMasks_keys(self) - - def values(self): - return _mscl.DerivedChannelMasks_values(self) - - def items(self): - return _mscl.DerivedChannelMasks_items(self) - - def __contains__(self, key): - return _mscl.DerivedChannelMasks___contains__(self, key) - - def key_iterator(self): - return _mscl.DerivedChannelMasks_key_iterator(self) - - def value_iterator(self): - return _mscl.DerivedChannelMasks_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DerivedChannelMasks___setitem__(self, *args) - - def asdict(self): - return _mscl.DerivedChannelMasks_asdict(self) - - def __init__(self, *args): - _mscl.DerivedChannelMasks_swiginit(self, _mscl.new_DerivedChannelMasks(*args)) - - def empty(self): - return _mscl.DerivedChannelMasks_empty(self) - - def size(self): - return _mscl.DerivedChannelMasks_size(self) - - def swap(self, v): - return _mscl.DerivedChannelMasks_swap(self, v) - - def begin(self): - return _mscl.DerivedChannelMasks_begin(self) - - def end(self): - return _mscl.DerivedChannelMasks_end(self) - - def rbegin(self): - return _mscl.DerivedChannelMasks_rbegin(self) - - def rend(self): - return _mscl.DerivedChannelMasks_rend(self) - - def clear(self): - return _mscl.DerivedChannelMasks_clear(self) - - def get_allocator(self): - return _mscl.DerivedChannelMasks_get_allocator(self) - - def count(self, x): - return _mscl.DerivedChannelMasks_count(self, x) - - def erase(self, *args): - return _mscl.DerivedChannelMasks_erase(self, *args) - - def find(self, x): - return _mscl.DerivedChannelMasks_find(self, x) - - def lower_bound(self, x): - return _mscl.DerivedChannelMasks_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DerivedChannelMasks_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DerivedChannelMasks - -# Register DerivedChannelMasks in _mscl: -_mscl.DerivedChannelMasks_swigregister(DerivedChannelMasks) - -class DeviceStatusMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusMap_keys(self) - - def values(self): - return _mscl.DeviceStatusMap_values(self) - - def items(self): - return _mscl.DeviceStatusMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusMap_swiginit(self, _mscl.new_DeviceStatusMap(*args)) - - def empty(self): - return _mscl.DeviceStatusMap_empty(self) - - def size(self): - return _mscl.DeviceStatusMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusMap_begin(self) - - def end(self): - return _mscl.DeviceStatusMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusMap - -# Register DeviceStatusMap in _mscl: -_mscl.DeviceStatusMap_swigregister(DeviceStatusMap) - -class DeviceStatusValueMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusValueMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusValueMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusValueMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusValueMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusValueMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusValueMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusValueMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusValueMap_keys(self) - - def values(self): - return _mscl.DeviceStatusValueMap_values(self) - - def items(self): - return _mscl.DeviceStatusValueMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusValueMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusValueMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusValueMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusValueMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusValueMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusValueMap_swiginit(self, _mscl.new_DeviceStatusValueMap(*args)) - - def empty(self): - return _mscl.DeviceStatusValueMap_empty(self) - - def size(self): - return _mscl.DeviceStatusValueMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusValueMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusValueMap_begin(self) - - def end(self): - return _mscl.DeviceStatusValueMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusValueMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusValueMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusValueMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusValueMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusValueMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusValueMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusValueMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusValueMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusValueMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusValueMap - -# Register DeviceStatusValueMap in _mscl: -_mscl.DeviceStatusValueMap_swigregister(DeviceStatusValueMap) - -class SampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.SampleRates___bool__(self) - - def __len__(self): - return _mscl.SampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.SampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.SampleRates_pop(self) - - def append(self, x): - return _mscl.SampleRates_append(self, x) - - def empty(self): - return _mscl.SampleRates_empty(self) - - def size(self): - return _mscl.SampleRates_size(self) - - def swap(self, v): - return _mscl.SampleRates_swap(self, v) - - def begin(self): - return _mscl.SampleRates_begin(self) - - def end(self): - return _mscl.SampleRates_end(self) - - def rbegin(self): - return _mscl.SampleRates_rbegin(self) - - def rend(self): - return _mscl.SampleRates_rend(self) - - def clear(self): - return _mscl.SampleRates_clear(self) - - def get_allocator(self): - return _mscl.SampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.SampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.SampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.SampleRates_swiginit(self, _mscl.new_SampleRates(*args)) - - def push_back(self, x): - return _mscl.SampleRates_push_back(self, x) - - def front(self): - return _mscl.SampleRates_front(self) - - def back(self): - return _mscl.SampleRates_back(self) - - def assign(self, n, x): - return _mscl.SampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.SampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.SampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.SampleRates_reserve(self, n) - - def capacity(self): - return _mscl.SampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_SampleRates - -# Register SampleRates in _mscl: -_mscl.SampleRates_swigregister(SampleRates) - -class ConfigIssues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConfigIssues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConfigIssues___nonzero__(self) - - def __bool__(self): - return _mscl.ConfigIssues___bool__(self) - - def __len__(self): - return _mscl.ConfigIssues___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConfigIssues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConfigIssues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConfigIssues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConfigIssues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConfigIssues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConfigIssues___setitem__(self, *args) - - def pop(self): - return _mscl.ConfigIssues_pop(self) - - def append(self, x): - return _mscl.ConfigIssues_append(self, x) - - def empty(self): - return _mscl.ConfigIssues_empty(self) - - def size(self): - return _mscl.ConfigIssues_size(self) - - def swap(self, v): - return _mscl.ConfigIssues_swap(self, v) - - def begin(self): - return _mscl.ConfigIssues_begin(self) - - def end(self): - return _mscl.ConfigIssues_end(self) - - def rbegin(self): - return _mscl.ConfigIssues_rbegin(self) - - def rend(self): - return _mscl.ConfigIssues_rend(self) - - def clear(self): - return _mscl.ConfigIssues_clear(self) - - def get_allocator(self): - return _mscl.ConfigIssues_get_allocator(self) - - def pop_back(self): - return _mscl.ConfigIssues_pop_back(self) - - def erase(self, *args): - return _mscl.ConfigIssues_erase(self, *args) - - def __init__(self, *args): - _mscl.ConfigIssues_swiginit(self, _mscl.new_ConfigIssues(*args)) - - def push_back(self, x): - return _mscl.ConfigIssues_push_back(self, x) - - def front(self): - return _mscl.ConfigIssues_front(self) - - def back(self): - return _mscl.ConfigIssues_back(self) - - def assign(self, n, x): - return _mscl.ConfigIssues_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConfigIssues_resize(self, *args) - - def insert(self, *args): - return _mscl.ConfigIssues_insert(self, *args) - - def reserve(self, n): - return _mscl.ConfigIssues_reserve(self, n) - - def capacity(self): - return _mscl.ConfigIssues_capacity(self) - __swig_destroy__ = _mscl.delete_ConfigIssues - -# Register ConfigIssues in _mscl: -_mscl.ConfigIssues_swigregister(ConfigIssues) - -class MipChannelFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelFields_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelFields___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelFields___bool__(self) - - def __len__(self): - return _mscl.MipChannelFields___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelFields___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelFields___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelFields___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelFields___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelFields___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelFields___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelFields_pop(self) - - def append(self, x): - return _mscl.MipChannelFields_append(self, x) - - def empty(self): - return _mscl.MipChannelFields_empty(self) - - def size(self): - return _mscl.MipChannelFields_size(self) - - def swap(self, v): - return _mscl.MipChannelFields_swap(self, v) - - def begin(self): - return _mscl.MipChannelFields_begin(self) - - def end(self): - return _mscl.MipChannelFields_end(self) - - def rbegin(self): - return _mscl.MipChannelFields_rbegin(self) - - def rend(self): - return _mscl.MipChannelFields_rend(self) - - def clear(self): - return _mscl.MipChannelFields_clear(self) - - def get_allocator(self): - return _mscl.MipChannelFields_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelFields_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelFields_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelFields_swiginit(self, _mscl.new_MipChannelFields(*args)) - - def push_back(self, x): - return _mscl.MipChannelFields_push_back(self, x) - - def front(self): - return _mscl.MipChannelFields_front(self) - - def back(self): - return _mscl.MipChannelFields_back(self) - - def assign(self, n, x): - return _mscl.MipChannelFields_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelFields_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelFields_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelFields_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelFields_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelFields - -# Register MipChannelFields in _mscl: -_mscl.MipChannelFields_swigregister(MipChannelFields) - -class MipCommands(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommands_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommands___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommands___bool__(self) - - def __len__(self): - return _mscl.MipCommands___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommands___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommands___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommands___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommands___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommands___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommands___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommands_pop(self) - - def append(self, x): - return _mscl.MipCommands_append(self, x) - - def empty(self): - return _mscl.MipCommands_empty(self) - - def size(self): - return _mscl.MipCommands_size(self) - - def swap(self, v): - return _mscl.MipCommands_swap(self, v) - - def begin(self): - return _mscl.MipCommands_begin(self) - - def end(self): - return _mscl.MipCommands_end(self) - - def rbegin(self): - return _mscl.MipCommands_rbegin(self) - - def rend(self): - return _mscl.MipCommands_rend(self) - - def clear(self): - return _mscl.MipCommands_clear(self) - - def get_allocator(self): - return _mscl.MipCommands_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommands_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommands_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommands_swiginit(self, _mscl.new_MipCommands(*args)) - - def push_back(self, x): - return _mscl.MipCommands_push_back(self, x) - - def front(self): - return _mscl.MipCommands_front(self) - - def back(self): - return _mscl.MipCommands_back(self) - - def assign(self, n, x): - return _mscl.MipCommands_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommands_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommands_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommands_reserve(self, n) - - def capacity(self): - return _mscl.MipCommands_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommands - -# Register MipCommands in _mscl: -_mscl.MipCommands_swigregister(MipCommands) - -class MipDataClasses(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataClasses_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataClasses___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataClasses___bool__(self) - - def __len__(self): - return _mscl.MipDataClasses___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataClasses___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataClasses___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataClasses___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataClasses___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataClasses___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataClasses___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataClasses_pop(self) - - def append(self, x): - return _mscl.MipDataClasses_append(self, x) - - def empty(self): - return _mscl.MipDataClasses_empty(self) - - def size(self): - return _mscl.MipDataClasses_size(self) - - def swap(self, v): - return _mscl.MipDataClasses_swap(self, v) - - def begin(self): - return _mscl.MipDataClasses_begin(self) - - def end(self): - return _mscl.MipDataClasses_end(self) - - def rbegin(self): - return _mscl.MipDataClasses_rbegin(self) - - def rend(self): - return _mscl.MipDataClasses_rend(self) - - def clear(self): - return _mscl.MipDataClasses_clear(self) - - def get_allocator(self): - return _mscl.MipDataClasses_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataClasses_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataClasses_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataClasses_swiginit(self, _mscl.new_MipDataClasses(*args)) - - def push_back(self, x): - return _mscl.MipDataClasses_push_back(self, x) - - def front(self): - return _mscl.MipDataClasses_front(self) - - def back(self): - return _mscl.MipDataClasses_back(self) - - def assign(self, n, x): - return _mscl.MipDataClasses_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataClasses_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataClasses_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataClasses_reserve(self, n) - - def capacity(self): - return _mscl.MipDataClasses_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataClasses - -# Register MipDataClasses in _mscl: -_mscl.MipDataClasses_swigregister(MipDataClasses) - -class MipChannelIdentifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelIdentifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelIdentifiers___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelIdentifiers___bool__(self) - - def __len__(self): - return _mscl.MipChannelIdentifiers___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelIdentifiers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelIdentifiers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelIdentifiers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelIdentifiers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelIdentifiers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelIdentifiers___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelIdentifiers_pop(self) - - def append(self, x): - return _mscl.MipChannelIdentifiers_append(self, x) - - def empty(self): - return _mscl.MipChannelIdentifiers_empty(self) - - def size(self): - return _mscl.MipChannelIdentifiers_size(self) - - def swap(self, v): - return _mscl.MipChannelIdentifiers_swap(self, v) - - def begin(self): - return _mscl.MipChannelIdentifiers_begin(self) - - def end(self): - return _mscl.MipChannelIdentifiers_end(self) - - def rbegin(self): - return _mscl.MipChannelIdentifiers_rbegin(self) - - def rend(self): - return _mscl.MipChannelIdentifiers_rend(self) - - def clear(self): - return _mscl.MipChannelIdentifiers_clear(self) - - def get_allocator(self): - return _mscl.MipChannelIdentifiers_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelIdentifiers_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelIdentifiers_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelIdentifiers_swiginit(self, _mscl.new_MipChannelIdentifiers(*args)) - - def push_back(self, x): - return _mscl.MipChannelIdentifiers_push_back(self, x) - - def front(self): - return _mscl.MipChannelIdentifiers_front(self) - - def back(self): - return _mscl.MipChannelIdentifiers_back(self) - - def assign(self, n, x): - return _mscl.MipChannelIdentifiers_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelIdentifiers_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelIdentifiers_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelIdentifiers_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelIdentifiers_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelIdentifiers - -# Register MipChannelIdentifiers in _mscl: -_mscl.MipChannelIdentifiers_swigregister(MipChannelIdentifiers) - -class MipCommandSet(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandSet_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandSet___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandSet___bool__(self) - - def __len__(self): - return _mscl.MipCommandSet___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandSet___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandSet___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandSet___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandSet___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandSet___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandSet___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandSet_pop(self) - - def append(self, x): - return _mscl.MipCommandSet_append(self, x) - - def empty(self): - return _mscl.MipCommandSet_empty(self) - - def size(self): - return _mscl.MipCommandSet_size(self) - - def swap(self, v): - return _mscl.MipCommandSet_swap(self, v) - - def begin(self): - return _mscl.MipCommandSet_begin(self) - - def end(self): - return _mscl.MipCommandSet_end(self) - - def rbegin(self): - return _mscl.MipCommandSet_rbegin(self) - - def rend(self): - return _mscl.MipCommandSet_rend(self) - - def clear(self): - return _mscl.MipCommandSet_clear(self) - - def get_allocator(self): - return _mscl.MipCommandSet_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandSet_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandSet_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandSet_swiginit(self, _mscl.new_MipCommandSet(*args)) - - def push_back(self, x): - return _mscl.MipCommandSet_push_back(self, x) - - def front(self): - return _mscl.MipCommandSet_front(self) - - def back(self): - return _mscl.MipCommandSet_back(self) - - def assign(self, n, x): - return _mscl.MipCommandSet_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandSet_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandSet_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandSet_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandSet_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandSet - -# Register MipCommandSet in _mscl: -_mscl.MipCommandSet_swigregister(MipCommandSet) - -class MipFieldValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipFieldValues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipFieldValues___nonzero__(self) - - def __bool__(self): - return _mscl.MipFieldValues___bool__(self) - - def __len__(self): - return _mscl.MipFieldValues___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipFieldValues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipFieldValues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipFieldValues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipFieldValues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipFieldValues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipFieldValues___setitem__(self, *args) - - def pop(self): - return _mscl.MipFieldValues_pop(self) - - def append(self, x): - return _mscl.MipFieldValues_append(self, x) - - def empty(self): - return _mscl.MipFieldValues_empty(self) - - def size(self): - return _mscl.MipFieldValues_size(self) - - def swap(self, v): - return _mscl.MipFieldValues_swap(self, v) - - def begin(self): - return _mscl.MipFieldValues_begin(self) - - def end(self): - return _mscl.MipFieldValues_end(self) - - def rbegin(self): - return _mscl.MipFieldValues_rbegin(self) - - def rend(self): - return _mscl.MipFieldValues_rend(self) - - def clear(self): - return _mscl.MipFieldValues_clear(self) - - def get_allocator(self): - return _mscl.MipFieldValues_get_allocator(self) - - def pop_back(self): - return _mscl.MipFieldValues_pop_back(self) - - def erase(self, *args): - return _mscl.MipFieldValues_erase(self, *args) - - def __init__(self, *args): - _mscl.MipFieldValues_swiginit(self, _mscl.new_MipFieldValues(*args)) - - def push_back(self, x): - return _mscl.MipFieldValues_push_back(self, x) - - def front(self): - return _mscl.MipFieldValues_front(self) - - def back(self): - return _mscl.MipFieldValues_back(self) - - def assign(self, n, x): - return _mscl.MipFieldValues_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipFieldValues_resize(self, *args) - - def insert(self, *args): - return _mscl.MipFieldValues_insert(self, *args) - - def reserve(self, n): - return _mscl.MipFieldValues_reserve(self, n) - - def capacity(self): - return _mscl.MipFieldValues_capacity(self) - __swig_destroy__ = _mscl.delete_MipFieldValues - -# Register MipFieldValues in _mscl: -_mscl.MipFieldValues_swigregister(MipFieldValues) - -class MipCommandParamPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipCommandParamPair_swiginit(self, _mscl.new_MipCommandParamPair(*args)) - first = property(_mscl.MipCommandParamPair_first_get, _mscl.MipCommandParamPair_first_set) - second = property(_mscl.MipCommandParamPair_second_get, _mscl.MipCommandParamPair_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_MipCommandParamPair - -# Register MipCommandParamPair in _mscl: -_mscl.MipCommandParamPair_swigregister(MipCommandParamPair) - -class MipCommandParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandParameters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandParameters___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandParameters___bool__(self) - - def __len__(self): - return _mscl.MipCommandParameters___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandParameters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandParameters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandParameters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandParameters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandParameters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandParameters___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandParameters_pop(self) - - def append(self, x): - return _mscl.MipCommandParameters_append(self, x) - - def empty(self): - return _mscl.MipCommandParameters_empty(self) - - def size(self): - return _mscl.MipCommandParameters_size(self) - - def swap(self, v): - return _mscl.MipCommandParameters_swap(self, v) - - def begin(self): - return _mscl.MipCommandParameters_begin(self) - - def end(self): - return _mscl.MipCommandParameters_end(self) - - def rbegin(self): - return _mscl.MipCommandParameters_rbegin(self) - - def rend(self): - return _mscl.MipCommandParameters_rend(self) - - def clear(self): - return _mscl.MipCommandParameters_clear(self) - - def get_allocator(self): - return _mscl.MipCommandParameters_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandParameters_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandParameters_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandParameters_swiginit(self, _mscl.new_MipCommandParameters(*args)) - - def push_back(self, x): - return _mscl.MipCommandParameters_push_back(self, x) - - def front(self): - return _mscl.MipCommandParameters_front(self) - - def back(self): - return _mscl.MipCommandParameters_back(self) - - def assign(self, n, x): - return _mscl.MipCommandParameters_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandParameters_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandParameters_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandParameters_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandParameters_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandParameters - -# Register MipCommandParameters in _mscl: -_mscl.MipCommandParameters_swigregister(MipCommandParameters) - -class ChannelIndex(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ChannelIndex_swiginit(self, _mscl.new_ChannelIndex(*args)) - first = property(_mscl.ChannelIndex_first_get, _mscl.ChannelIndex_first_set) - second = property(_mscl.ChannelIndex_second_get, _mscl.ChannelIndex_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_ChannelIndex - -# Register ChannelIndex in _mscl: -_mscl.ChannelIndex_swigregister(ChannelIndex) - -class ChannelIndices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelIndices_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelIndices___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelIndices___bool__(self) - - def __len__(self): - return _mscl.ChannelIndices___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelIndices___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelIndices___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelIndices___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelIndices___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelIndices___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelIndices___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelIndices_pop(self) - - def append(self, x): - return _mscl.ChannelIndices_append(self, x) - - def empty(self): - return _mscl.ChannelIndices_empty(self) - - def size(self): - return _mscl.ChannelIndices_size(self) - - def swap(self, v): - return _mscl.ChannelIndices_swap(self, v) - - def begin(self): - return _mscl.ChannelIndices_begin(self) - - def end(self): - return _mscl.ChannelIndices_end(self) - - def rbegin(self): - return _mscl.ChannelIndices_rbegin(self) - - def rend(self): - return _mscl.ChannelIndices_rend(self) - - def clear(self): - return _mscl.ChannelIndices_clear(self) - - def get_allocator(self): - return _mscl.ChannelIndices_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelIndices_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelIndices_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelIndices_swiginit(self, _mscl.new_ChannelIndices(*args)) - - def push_back(self, x): - return _mscl.ChannelIndices_push_back(self, x) - - def front(self): - return _mscl.ChannelIndices_front(self) - - def back(self): - return _mscl.ChannelIndices_back(self) - - def assign(self, n, x): - return _mscl.ChannelIndices_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelIndices_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelIndices_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelIndices_reserve(self, n) - - def capacity(self): - return _mscl.ChannelIndices_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelIndices - -# Register ChannelIndices in _mscl: -_mscl.ChannelIndices_swigregister(ChannelIndices) - -class ChannelFieldQualifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelFieldQualifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelFieldQualifiers___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelFieldQualifiers___bool__(self) - - def __len__(self): - return _mscl.ChannelFieldQualifiers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelFieldQualifiers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelFieldQualifiers___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelFieldQualifiers_has_key(self, key) - - def keys(self): - return _mscl.ChannelFieldQualifiers_keys(self) - - def values(self): - return _mscl.ChannelFieldQualifiers_values(self) - - def items(self): - return _mscl.ChannelFieldQualifiers_items(self) - - def __contains__(self, key): - return _mscl.ChannelFieldQualifiers___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelFieldQualifiers_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelFieldQualifiers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelFieldQualifiers___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelFieldQualifiers_asdict(self) - - def __init__(self, *args): - _mscl.ChannelFieldQualifiers_swiginit(self, _mscl.new_ChannelFieldQualifiers(*args)) - - def empty(self): - return _mscl.ChannelFieldQualifiers_empty(self) - - def size(self): - return _mscl.ChannelFieldQualifiers_size(self) - - def swap(self, v): - return _mscl.ChannelFieldQualifiers_swap(self, v) - - def begin(self): - return _mscl.ChannelFieldQualifiers_begin(self) - - def end(self): - return _mscl.ChannelFieldQualifiers_end(self) - - def rbegin(self): - return _mscl.ChannelFieldQualifiers_rbegin(self) - - def rend(self): - return _mscl.ChannelFieldQualifiers_rend(self) - - def clear(self): - return _mscl.ChannelFieldQualifiers_clear(self) - - def get_allocator(self): - return _mscl.ChannelFieldQualifiers_get_allocator(self) - - def count(self, x): - return _mscl.ChannelFieldQualifiers_count(self, x) - - def erase(self, *args): - return _mscl.ChannelFieldQualifiers_erase(self, *args) - - def find(self, x): - return _mscl.ChannelFieldQualifiers_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelFieldQualifiers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelFieldQualifiers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelFieldQualifiers - -# Register ChannelFieldQualifiers in _mscl: -_mscl.ChannelFieldQualifiers_swigregister(ChannelFieldQualifiers) - -class GnssReceivers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssReceivers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssReceivers___nonzero__(self) - - def __bool__(self): - return _mscl.GnssReceivers___bool__(self) - - def __len__(self): - return _mscl.GnssReceivers___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssReceivers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssReceivers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssReceivers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssReceivers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssReceivers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssReceivers___setitem__(self, *args) - - def pop(self): - return _mscl.GnssReceivers_pop(self) - - def append(self, x): - return _mscl.GnssReceivers_append(self, x) - - def empty(self): - return _mscl.GnssReceivers_empty(self) - - def size(self): - return _mscl.GnssReceivers_size(self) - - def swap(self, v): - return _mscl.GnssReceivers_swap(self, v) - - def begin(self): - return _mscl.GnssReceivers_begin(self) - - def end(self): - return _mscl.GnssReceivers_end(self) - - def rbegin(self): - return _mscl.GnssReceivers_rbegin(self) - - def rend(self): - return _mscl.GnssReceivers_rend(self) - - def clear(self): - return _mscl.GnssReceivers_clear(self) - - def get_allocator(self): - return _mscl.GnssReceivers_get_allocator(self) - - def pop_back(self): - return _mscl.GnssReceivers_pop_back(self) - - def erase(self, *args): - return _mscl.GnssReceivers_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssReceivers_swiginit(self, _mscl.new_GnssReceivers(*args)) - - def push_back(self, x): - return _mscl.GnssReceivers_push_back(self, x) - - def front(self): - return _mscl.GnssReceivers_front(self) - - def back(self): - return _mscl.GnssReceivers_back(self) - - def assign(self, n, x): - return _mscl.GnssReceivers_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssReceivers_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssReceivers_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssReceivers_reserve(self, n) - - def capacity(self): - return _mscl.GnssReceivers_capacity(self) - __swig_destroy__ = _mscl.delete_GnssReceivers - -# Register GnssReceivers in _mscl: -_mscl.GnssReceivers_swigregister(GnssReceivers) - -class SensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRanges___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRanges___bool__(self) - - def __len__(self): - return _mscl.SensorRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorRanges___setitem__(self, *args) - - def pop(self): - return _mscl.SensorRanges_pop(self) - - def append(self, x): - return _mscl.SensorRanges_append(self, x) - - def empty(self): - return _mscl.SensorRanges_empty(self) - - def size(self): - return _mscl.SensorRanges_size(self) - - def swap(self, v): - return _mscl.SensorRanges_swap(self, v) - - def begin(self): - return _mscl.SensorRanges_begin(self) - - def end(self): - return _mscl.SensorRanges_end(self) - - def rbegin(self): - return _mscl.SensorRanges_rbegin(self) - - def rend(self): - return _mscl.SensorRanges_rend(self) - - def clear(self): - return _mscl.SensorRanges_clear(self) - - def get_allocator(self): - return _mscl.SensorRanges_get_allocator(self) - - def pop_back(self): - return _mscl.SensorRanges_pop_back(self) - - def erase(self, *args): - return _mscl.SensorRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorRanges_swiginit(self, _mscl.new_SensorRanges(*args)) - - def push_back(self, x): - return _mscl.SensorRanges_push_back(self, x) - - def front(self): - return _mscl.SensorRanges_front(self) - - def back(self): - return _mscl.SensorRanges_back(self) - - def assign(self, n, x): - return _mscl.SensorRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorRanges_reserve(self, n) - - def capacity(self): - return _mscl.SensorRanges_capacity(self) - __swig_destroy__ = _mscl.delete_SensorRanges - -# Register SensorRanges in _mscl: -_mscl.SensorRanges_swigregister(SensorRanges) - -class SensorRangeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRangeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRangeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRangeOptions___bool__(self) - - def __len__(self): - return _mscl.SensorRangeOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SensorRangeOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SensorRangeOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.SensorRangeOptions_has_key(self, key) - - def keys(self): - return _mscl.SensorRangeOptions_keys(self) - - def values(self): - return _mscl.SensorRangeOptions_values(self) - - def items(self): - return _mscl.SensorRangeOptions_items(self) - - def __contains__(self, key): - return _mscl.SensorRangeOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.SensorRangeOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.SensorRangeOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SensorRangeOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.SensorRangeOptions_asdict(self) - - def __init__(self, *args): - _mscl.SensorRangeOptions_swiginit(self, _mscl.new_SensorRangeOptions(*args)) - - def empty(self): - return _mscl.SensorRangeOptions_empty(self) - - def size(self): - return _mscl.SensorRangeOptions_size(self) - - def swap(self, v): - return _mscl.SensorRangeOptions_swap(self, v) - - def begin(self): - return _mscl.SensorRangeOptions_begin(self) - - def end(self): - return _mscl.SensorRangeOptions_end(self) - - def rbegin(self): - return _mscl.SensorRangeOptions_rbegin(self) - - def rend(self): - return _mscl.SensorRangeOptions_rend(self) - - def clear(self): - return _mscl.SensorRangeOptions_clear(self) - - def get_allocator(self): - return _mscl.SensorRangeOptions_get_allocator(self) - - def count(self, x): - return _mscl.SensorRangeOptions_count(self, x) - - def erase(self, *args): - return _mscl.SensorRangeOptions_erase(self, *args) - - def find(self, x): - return _mscl.SensorRangeOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.SensorRangeOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SensorRangeOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SensorRangeOptions - -# Register SensorRangeOptions in _mscl: -_mscl.SensorRangeOptions_swigregister(SensorRangeOptions) - -class CommPortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommPortInfo_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommPortInfo___nonzero__(self) - - def __bool__(self): - return _mscl.CommPortInfo___bool__(self) - - def __len__(self): - return _mscl.CommPortInfo___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommPortInfo___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommPortInfo___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommPortInfo___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommPortInfo___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommPortInfo___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommPortInfo___setitem__(self, *args) - - def pop(self): - return _mscl.CommPortInfo_pop(self) - - def append(self, x): - return _mscl.CommPortInfo_append(self, x) - - def empty(self): - return _mscl.CommPortInfo_empty(self) - - def size(self): - return _mscl.CommPortInfo_size(self) - - def swap(self, v): - return _mscl.CommPortInfo_swap(self, v) - - def begin(self): - return _mscl.CommPortInfo_begin(self) - - def end(self): - return _mscl.CommPortInfo_end(self) - - def rbegin(self): - return _mscl.CommPortInfo_rbegin(self) - - def rend(self): - return _mscl.CommPortInfo_rend(self) - - def clear(self): - return _mscl.CommPortInfo_clear(self) - - def get_allocator(self): - return _mscl.CommPortInfo_get_allocator(self) - - def pop_back(self): - return _mscl.CommPortInfo_pop_back(self) - - def erase(self, *args): - return _mscl.CommPortInfo_erase(self, *args) - - def __init__(self, *args): - _mscl.CommPortInfo_swiginit(self, _mscl.new_CommPortInfo(*args)) - - def push_back(self, x): - return _mscl.CommPortInfo_push_back(self, x) - - def front(self): - return _mscl.CommPortInfo_front(self) - - def back(self): - return _mscl.CommPortInfo_back(self) - - def assign(self, n, x): - return _mscl.CommPortInfo_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommPortInfo_resize(self, *args) - - def insert(self, *args): - return _mscl.CommPortInfo_insert(self, *args) - - def reserve(self, n): - return _mscl.CommPortInfo_reserve(self, n) - - def capacity(self): - return _mscl.CommPortInfo_capacity(self) - __swig_destroy__ = _mscl.delete_CommPortInfo - -# Register CommPortInfo in _mscl: -_mscl.CommPortInfo_swigregister(CommPortInfo) - -class EventTriggerStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTriggerStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTriggerStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventTriggerStatus___bool__(self) - - def __len__(self): - return _mscl.EventTriggerStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTriggerStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTriggerStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTriggerStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTriggerStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTriggerStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTriggerStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventTriggerStatus_pop(self) - - def append(self, x): - return _mscl.EventTriggerStatus_append(self, x) - - def empty(self): - return _mscl.EventTriggerStatus_empty(self) - - def size(self): - return _mscl.EventTriggerStatus_size(self) - - def swap(self, v): - return _mscl.EventTriggerStatus_swap(self, v) - - def begin(self): - return _mscl.EventTriggerStatus_begin(self) - - def end(self): - return _mscl.EventTriggerStatus_end(self) - - def rbegin(self): - return _mscl.EventTriggerStatus_rbegin(self) - - def rend(self): - return _mscl.EventTriggerStatus_rend(self) - - def clear(self): - return _mscl.EventTriggerStatus_clear(self) - - def get_allocator(self): - return _mscl.EventTriggerStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventTriggerStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventTriggerStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTriggerStatus_swiginit(self, _mscl.new_EventTriggerStatus(*args)) - - def push_back(self, x): - return _mscl.EventTriggerStatus_push_back(self, x) - - def front(self): - return _mscl.EventTriggerStatus_front(self) - - def back(self): - return _mscl.EventTriggerStatus_back(self) - - def assign(self, n, x): - return _mscl.EventTriggerStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTriggerStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTriggerStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTriggerStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventTriggerStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventTriggerStatus - -# Register EventTriggerStatus in _mscl: -_mscl.EventTriggerStatus_swigregister(EventTriggerStatus) - -class EventActionStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventActionStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventActionStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventActionStatus___bool__(self) - - def __len__(self): - return _mscl.EventActionStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventActionStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventActionStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventActionStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventActionStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventActionStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventActionStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventActionStatus_pop(self) - - def append(self, x): - return _mscl.EventActionStatus_append(self, x) - - def empty(self): - return _mscl.EventActionStatus_empty(self) - - def size(self): - return _mscl.EventActionStatus_size(self) - - def swap(self, v): - return _mscl.EventActionStatus_swap(self, v) - - def begin(self): - return _mscl.EventActionStatus_begin(self) - - def end(self): - return _mscl.EventActionStatus_end(self) - - def rbegin(self): - return _mscl.EventActionStatus_rbegin(self) - - def rend(self): - return _mscl.EventActionStatus_rend(self) - - def clear(self): - return _mscl.EventActionStatus_clear(self) - - def get_allocator(self): - return _mscl.EventActionStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventActionStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventActionStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventActionStatus_swiginit(self, _mscl.new_EventActionStatus(*args)) - - def push_back(self, x): - return _mscl.EventActionStatus_push_back(self, x) - - def front(self): - return _mscl.EventActionStatus_front(self) - - def back(self): - return _mscl.EventActionStatus_back(self) - - def assign(self, n, x): - return _mscl.EventActionStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventActionStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventActionStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventActionStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventActionStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventActionStatus - -# Register EventActionStatus in _mscl: -_mscl.EventActionStatus_swigregister(EventActionStatus) - -class ChannelGroups(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroups_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroups___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroups___bool__(self) - - def __len__(self): - return _mscl.ChannelGroups___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroups___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroups___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroups___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroups___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroups___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroups___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroups_pop(self) - - def append(self, x): - return _mscl.ChannelGroups_append(self, x) - - def empty(self): - return _mscl.ChannelGroups_empty(self) - - def size(self): - return _mscl.ChannelGroups_size(self) - - def swap(self, v): - return _mscl.ChannelGroups_swap(self, v) - - def begin(self): - return _mscl.ChannelGroups_begin(self) - - def end(self): - return _mscl.ChannelGroups_end(self) - - def rbegin(self): - return _mscl.ChannelGroups_rbegin(self) - - def rend(self): - return _mscl.ChannelGroups_rend(self) - - def clear(self): - return _mscl.ChannelGroups_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroups_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroups_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroups_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroups_swiginit(self, _mscl.new_ChannelGroups(*args)) - - def push_back(self, x): - return _mscl.ChannelGroups_push_back(self, x) - - def front(self): - return _mscl.ChannelGroups_front(self) - - def back(self): - return _mscl.ChannelGroups_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroups_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroups_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroups_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroups_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroups_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroups - -# Register ChannelGroups in _mscl: -_mscl.ChannelGroups_swigregister(ChannelGroups) - -class WirelessChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessChannels___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessChannels___bool__(self) - - def __len__(self): - return _mscl.WirelessChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessChannels___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessChannels_pop(self) - - def append(self, x): - return _mscl.WirelessChannels_append(self, x) - - def empty(self): - return _mscl.WirelessChannels_empty(self) - - def size(self): - return _mscl.WirelessChannels_size(self) - - def swap(self, v): - return _mscl.WirelessChannels_swap(self, v) - - def begin(self): - return _mscl.WirelessChannels_begin(self) - - def end(self): - return _mscl.WirelessChannels_end(self) - - def rbegin(self): - return _mscl.WirelessChannels_rbegin(self) - - def rend(self): - return _mscl.WirelessChannels_rend(self) - - def clear(self): - return _mscl.WirelessChannels_clear(self) - - def get_allocator(self): - return _mscl.WirelessChannels_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessChannels_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessChannels_swiginit(self, _mscl.new_WirelessChannels(*args)) - - def push_back(self, x): - return _mscl.WirelessChannels_push_back(self, x) - - def front(self): - return _mscl.WirelessChannels_front(self) - - def back(self): - return _mscl.WirelessChannels_back(self) - - def assign(self, n, x): - return _mscl.WirelessChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessChannels_reserve(self, n) - - def capacity(self): - return _mscl.WirelessChannels_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessChannels - -# Register WirelessChannels in _mscl: -_mscl.WirelessChannels_swigregister(WirelessChannels) - -class DamageAngles(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DamageAngles_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DamageAngles___nonzero__(self) - - def __bool__(self): - return _mscl.DamageAngles___bool__(self) - - def __len__(self): - return _mscl.DamageAngles___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DamageAngles___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DamageAngles___delitem__(self, key) - - def has_key(self, key): - return _mscl.DamageAngles_has_key(self, key) - - def keys(self): - return _mscl.DamageAngles_keys(self) - - def values(self): - return _mscl.DamageAngles_values(self) - - def items(self): - return _mscl.DamageAngles_items(self) - - def __contains__(self, key): - return _mscl.DamageAngles___contains__(self, key) - - def key_iterator(self): - return _mscl.DamageAngles_key_iterator(self) - - def value_iterator(self): - return _mscl.DamageAngles_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DamageAngles___setitem__(self, *args) - - def asdict(self): - return _mscl.DamageAngles_asdict(self) - - def __init__(self, *args): - _mscl.DamageAngles_swiginit(self, _mscl.new_DamageAngles(*args)) - - def empty(self): - return _mscl.DamageAngles_empty(self) - - def size(self): - return _mscl.DamageAngles_size(self) - - def swap(self, v): - return _mscl.DamageAngles_swap(self, v) - - def begin(self): - return _mscl.DamageAngles_begin(self) - - def end(self): - return _mscl.DamageAngles_end(self) - - def rbegin(self): - return _mscl.DamageAngles_rbegin(self) - - def rend(self): - return _mscl.DamageAngles_rend(self) - - def clear(self): - return _mscl.DamageAngles_clear(self) - - def get_allocator(self): - return _mscl.DamageAngles_get_allocator(self) - - def count(self, x): - return _mscl.DamageAngles_count(self, x) - - def erase(self, *args): - return _mscl.DamageAngles_erase(self, *args) - - def find(self, x): - return _mscl.DamageAngles_find(self, x) - - def lower_bound(self, x): - return _mscl.DamageAngles_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DamageAngles_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DamageAngles - -# Register DamageAngles in _mscl: -_mscl.DamageAngles_swigregister(DamageAngles) - -class SnCurveSegments(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SnCurveSegments_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SnCurveSegments___nonzero__(self) - - def __bool__(self): - return _mscl.SnCurveSegments___bool__(self) - - def __len__(self): - return _mscl.SnCurveSegments___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SnCurveSegments___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SnCurveSegments___delitem__(self, key) - - def has_key(self, key): - return _mscl.SnCurveSegments_has_key(self, key) - - def keys(self): - return _mscl.SnCurveSegments_keys(self) - - def values(self): - return _mscl.SnCurveSegments_values(self) - - def items(self): - return _mscl.SnCurveSegments_items(self) - - def __contains__(self, key): - return _mscl.SnCurveSegments___contains__(self, key) - - def key_iterator(self): - return _mscl.SnCurveSegments_key_iterator(self) - - def value_iterator(self): - return _mscl.SnCurveSegments_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SnCurveSegments___setitem__(self, *args) - - def asdict(self): - return _mscl.SnCurveSegments_asdict(self) - - def __init__(self, *args): - _mscl.SnCurveSegments_swiginit(self, _mscl.new_SnCurveSegments(*args)) - - def empty(self): - return _mscl.SnCurveSegments_empty(self) - - def size(self): - return _mscl.SnCurveSegments_size(self) - - def swap(self, v): - return _mscl.SnCurveSegments_swap(self, v) - - def begin(self): - return _mscl.SnCurveSegments_begin(self) - - def end(self): - return _mscl.SnCurveSegments_end(self) - - def rbegin(self): - return _mscl.SnCurveSegments_rbegin(self) - - def rend(self): - return _mscl.SnCurveSegments_rend(self) - - def clear(self): - return _mscl.SnCurveSegments_clear(self) - - def get_allocator(self): - return _mscl.SnCurveSegments_get_allocator(self) - - def count(self, x): - return _mscl.SnCurveSegments_count(self, x) - - def erase(self, *args): - return _mscl.SnCurveSegments_erase(self, *args) - - def find(self, x): - return _mscl.SnCurveSegments_find(self, x) - - def lower_bound(self, x): - return _mscl.SnCurveSegments_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SnCurveSegments_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SnCurveSegments - -# Register SnCurveSegments in _mscl: -_mscl.SnCurveSegments_swigregister(SnCurveSegments) - -class RfSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RfSweep_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RfSweep___nonzero__(self) - - def __bool__(self): - return _mscl.RfSweep___bool__(self) - - def __len__(self): - return _mscl.RfSweep___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.RfSweep___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.RfSweep___delitem__(self, key) - - def has_key(self, key): - return _mscl.RfSweep_has_key(self, key) - - def keys(self): - return _mscl.RfSweep_keys(self) - - def values(self): - return _mscl.RfSweep_values(self) - - def items(self): - return _mscl.RfSweep_items(self) - - def __contains__(self, key): - return _mscl.RfSweep___contains__(self, key) - - def key_iterator(self): - return _mscl.RfSweep_key_iterator(self) - - def value_iterator(self): - return _mscl.RfSweep_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.RfSweep___setitem__(self, *args) - - def asdict(self): - return _mscl.RfSweep_asdict(self) - - def __init__(self, *args): - _mscl.RfSweep_swiginit(self, _mscl.new_RfSweep(*args)) - - def empty(self): - return _mscl.RfSweep_empty(self) - - def size(self): - return _mscl.RfSweep_size(self) - - def swap(self, v): - return _mscl.RfSweep_swap(self, v) - - def begin(self): - return _mscl.RfSweep_begin(self) - - def end(self): - return _mscl.RfSweep_end(self) - - def rbegin(self): - return _mscl.RfSweep_rbegin(self) - - def rend(self): - return _mscl.RfSweep_rend(self) - - def clear(self): - return _mscl.RfSweep_clear(self) - - def get_allocator(self): - return _mscl.RfSweep_get_allocator(self) - - def count(self, x): - return _mscl.RfSweep_count(self, x) - - def erase(self, *args): - return _mscl.RfSweep_erase(self, *args) - - def find(self, x): - return _mscl.RfSweep_find(self, x) - - def lower_bound(self, x): - return _mscl.RfSweep_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.RfSweep_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_RfSweep - -# Register RfSweep in _mscl: -_mscl.RfSweep_swigregister(RfSweep) - -class Triggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Triggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Triggers___nonzero__(self) - - def __bool__(self): - return _mscl.Triggers___bool__(self) - - def __len__(self): - return _mscl.Triggers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.Triggers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.Triggers___delitem__(self, key) - - def has_key(self, key): - return _mscl.Triggers_has_key(self, key) - - def keys(self): - return _mscl.Triggers_keys(self) - - def values(self): - return _mscl.Triggers_values(self) - - def items(self): - return _mscl.Triggers_items(self) - - def __contains__(self, key): - return _mscl.Triggers___contains__(self, key) - - def key_iterator(self): - return _mscl.Triggers_key_iterator(self) - - def value_iterator(self): - return _mscl.Triggers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.Triggers___setitem__(self, *args) - - def asdict(self): - return _mscl.Triggers_asdict(self) - - def __init__(self, *args): - _mscl.Triggers_swiginit(self, _mscl.new_Triggers(*args)) - - def empty(self): - return _mscl.Triggers_empty(self) - - def size(self): - return _mscl.Triggers_size(self) - - def swap(self, v): - return _mscl.Triggers_swap(self, v) - - def begin(self): - return _mscl.Triggers_begin(self) - - def end(self): - return _mscl.Triggers_end(self) - - def rbegin(self): - return _mscl.Triggers_rbegin(self) - - def rend(self): - return _mscl.Triggers_rend(self) - - def clear(self): - return _mscl.Triggers_clear(self) - - def get_allocator(self): - return _mscl.Triggers_get_allocator(self) - - def count(self, x): - return _mscl.Triggers_count(self, x) - - def erase(self, *args): - return _mscl.Triggers_erase(self, *args) - - def find(self, x): - return _mscl.Triggers_find(self, x) - - def lower_bound(self, x): - return _mscl.Triggers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.Triggers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_Triggers - -# Register Triggers in _mscl: -_mscl.Triggers_swigregister(Triggers) - -class ChannelCalMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelCalMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelCalMap___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelCalMap___bool__(self) - - def __len__(self): - return _mscl.ChannelCalMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelCalMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelCalMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelCalMap_has_key(self, key) - - def keys(self): - return _mscl.ChannelCalMap_keys(self) - - def values(self): - return _mscl.ChannelCalMap_values(self) - - def items(self): - return _mscl.ChannelCalMap_items(self) - - def __contains__(self, key): - return _mscl.ChannelCalMap___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelCalMap_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelCalMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelCalMap___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelCalMap_asdict(self) - - def __init__(self, *args): - _mscl.ChannelCalMap_swiginit(self, _mscl.new_ChannelCalMap(*args)) - - def empty(self): - return _mscl.ChannelCalMap_empty(self) - - def size(self): - return _mscl.ChannelCalMap_size(self) - - def swap(self, v): - return _mscl.ChannelCalMap_swap(self, v) - - def begin(self): - return _mscl.ChannelCalMap_begin(self) - - def end(self): - return _mscl.ChannelCalMap_end(self) - - def rbegin(self): - return _mscl.ChannelCalMap_rbegin(self) - - def rend(self): - return _mscl.ChannelCalMap_rend(self) - - def clear(self): - return _mscl.ChannelCalMap_clear(self) - - def get_allocator(self): - return _mscl.ChannelCalMap_get_allocator(self) - - def count(self, x): - return _mscl.ChannelCalMap_count(self, x) - - def erase(self, *args): - return _mscl.ChannelCalMap_erase(self, *args) - - def find(self, x): - return _mscl.ChannelCalMap_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelCalMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelCalMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelCalMap - -# Register ChannelCalMap in _mscl: -_mscl.ChannelCalMap_swigregister(ChannelCalMap) - -class WirelessPollData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessPollData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessPollData___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessPollData___bool__(self) - - def __len__(self): - return _mscl.WirelessPollData___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.WirelessPollData___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.WirelessPollData___delitem__(self, key) - - def has_key(self, key): - return _mscl.WirelessPollData_has_key(self, key) - - def keys(self): - return _mscl.WirelessPollData_keys(self) - - def values(self): - return _mscl.WirelessPollData_values(self) - - def items(self): - return _mscl.WirelessPollData_items(self) - - def __contains__(self, key): - return _mscl.WirelessPollData___contains__(self, key) - - def key_iterator(self): - return _mscl.WirelessPollData_key_iterator(self) - - def value_iterator(self): - return _mscl.WirelessPollData_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.WirelessPollData___setitem__(self, *args) - - def asdict(self): - return _mscl.WirelessPollData_asdict(self) - - def __init__(self, *args): - _mscl.WirelessPollData_swiginit(self, _mscl.new_WirelessPollData(*args)) - - def empty(self): - return _mscl.WirelessPollData_empty(self) - - def size(self): - return _mscl.WirelessPollData_size(self) - - def swap(self, v): - return _mscl.WirelessPollData_swap(self, v) - - def begin(self): - return _mscl.WirelessPollData_begin(self) - - def end(self): - return _mscl.WirelessPollData_end(self) - - def rbegin(self): - return _mscl.WirelessPollData_rbegin(self) - - def rend(self): - return _mscl.WirelessPollData_rend(self) - - def clear(self): - return _mscl.WirelessPollData_clear(self) - - def get_allocator(self): - return _mscl.WirelessPollData_get_allocator(self) - - def count(self, x): - return _mscl.WirelessPollData_count(self, x) - - def erase(self, *args): - return _mscl.WirelessPollData_erase(self, *args) - - def find(self, x): - return _mscl.WirelessPollData_find(self, x) - - def lower_bound(self, x): - return _mscl.WirelessPollData_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.WirelessPollData_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_WirelessPollData - -# Register WirelessPollData in _mscl: -_mscl.WirelessPollData_swigregister(WirelessPollData) - -class ConnectionDebugDataVec(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConnectionDebugDataVec_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConnectionDebugDataVec___nonzero__(self) - - def __bool__(self): - return _mscl.ConnectionDebugDataVec___bool__(self) - - def __len__(self): - return _mscl.ConnectionDebugDataVec___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConnectionDebugDataVec___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConnectionDebugDataVec___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConnectionDebugDataVec___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConnectionDebugDataVec___setitem__(self, *args) - - def pop(self): - return _mscl.ConnectionDebugDataVec_pop(self) - - def append(self, x): - return _mscl.ConnectionDebugDataVec_append(self, x) - - def empty(self): - return _mscl.ConnectionDebugDataVec_empty(self) - - def size(self): - return _mscl.ConnectionDebugDataVec_size(self) - - def swap(self, v): - return _mscl.ConnectionDebugDataVec_swap(self, v) - - def begin(self): - return _mscl.ConnectionDebugDataVec_begin(self) - - def end(self): - return _mscl.ConnectionDebugDataVec_end(self) - - def rbegin(self): - return _mscl.ConnectionDebugDataVec_rbegin(self) - - def rend(self): - return _mscl.ConnectionDebugDataVec_rend(self) - - def clear(self): - return _mscl.ConnectionDebugDataVec_clear(self) - - def get_allocator(self): - return _mscl.ConnectionDebugDataVec_get_allocator(self) - - def pop_back(self): - return _mscl.ConnectionDebugDataVec_pop_back(self) - - def erase(self, *args): - return _mscl.ConnectionDebugDataVec_erase(self, *args) - - def __init__(self, *args): - _mscl.ConnectionDebugDataVec_swiginit(self, _mscl.new_ConnectionDebugDataVec(*args)) - - def push_back(self, x): - return _mscl.ConnectionDebugDataVec_push_back(self, x) - - def front(self): - return _mscl.ConnectionDebugDataVec_front(self) - - def back(self): - return _mscl.ConnectionDebugDataVec_back(self) - - def assign(self, n, x): - return _mscl.ConnectionDebugDataVec_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConnectionDebugDataVec_resize(self, *args) - - def insert(self, *args): - return _mscl.ConnectionDebugDataVec_insert(self, *args) - - def reserve(self, n): - return _mscl.ConnectionDebugDataVec_reserve(self, n) - - def capacity(self): - return _mscl.ConnectionDebugDataVec_capacity(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugDataVec - -# Register ConnectionDebugDataVec in _mscl: -_mscl.ConnectionDebugDataVec_swigregister(ConnectionDebugDataVec) - -class SatellitePRNs(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SatellitePRNs_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SatellitePRNs___nonzero__(self) - - def __bool__(self): - return _mscl.SatellitePRNs___bool__(self) - - def __len__(self): - return _mscl.SatellitePRNs___len__(self) - - def __getslice__(self, i, j): - return _mscl.SatellitePRNs___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SatellitePRNs___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SatellitePRNs___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SatellitePRNs___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SatellitePRNs___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SatellitePRNs___setitem__(self, *args) - - def pop(self): - return _mscl.SatellitePRNs_pop(self) - - def append(self, x): - return _mscl.SatellitePRNs_append(self, x) - - def empty(self): - return _mscl.SatellitePRNs_empty(self) - - def size(self): - return _mscl.SatellitePRNs_size(self) - - def swap(self, v): - return _mscl.SatellitePRNs_swap(self, v) - - def begin(self): - return _mscl.SatellitePRNs_begin(self) - - def end(self): - return _mscl.SatellitePRNs_end(self) - - def rbegin(self): - return _mscl.SatellitePRNs_rbegin(self) - - def rend(self): - return _mscl.SatellitePRNs_rend(self) - - def clear(self): - return _mscl.SatellitePRNs_clear(self) - - def get_allocator(self): - return _mscl.SatellitePRNs_get_allocator(self) - - def pop_back(self): - return _mscl.SatellitePRNs_pop_back(self) - - def erase(self, *args): - return _mscl.SatellitePRNs_erase(self, *args) - - def __init__(self, *args): - _mscl.SatellitePRNs_swiginit(self, _mscl.new_SatellitePRNs(*args)) - - def push_back(self, x): - return _mscl.SatellitePRNs_push_back(self, x) - - def front(self): - return _mscl.SatellitePRNs_front(self) - - def back(self): - return _mscl.SatellitePRNs_back(self) - - def assign(self, n, x): - return _mscl.SatellitePRNs_assign(self, n, x) - - def resize(self, *args): - return _mscl.SatellitePRNs_resize(self, *args) - - def insert(self, *args): - return _mscl.SatellitePRNs_insert(self, *args) - - def reserve(self, n): - return _mscl.SatellitePRNs_reserve(self, n) - - def capacity(self): - return _mscl.SatellitePRNs_capacity(self) - __swig_destroy__ = _mscl.delete_SatellitePRNs - -# Register SatellitePRNs in _mscl: -_mscl.SatellitePRNs_swigregister(SatellitePRNs) - -class Constellations(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Constellations_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Constellations___nonzero__(self) - - def __bool__(self): - return _mscl.Constellations___bool__(self) - - def __len__(self): - return _mscl.Constellations___len__(self) - - def __getslice__(self, i, j): - return _mscl.Constellations___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Constellations___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Constellations___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Constellations___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Constellations___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Constellations___setitem__(self, *args) - - def pop(self): - return _mscl.Constellations_pop(self) - - def append(self, x): - return _mscl.Constellations_append(self, x) - - def empty(self): - return _mscl.Constellations_empty(self) - - def size(self): - return _mscl.Constellations_size(self) - - def swap(self, v): - return _mscl.Constellations_swap(self, v) - - def begin(self): - return _mscl.Constellations_begin(self) - - def end(self): - return _mscl.Constellations_end(self) - - def rbegin(self): - return _mscl.Constellations_rbegin(self) - - def rend(self): - return _mscl.Constellations_rend(self) - - def clear(self): - return _mscl.Constellations_clear(self) - - def get_allocator(self): - return _mscl.Constellations_get_allocator(self) - - def pop_back(self): - return _mscl.Constellations_pop_back(self) - - def erase(self, *args): - return _mscl.Constellations_erase(self, *args) - - def __init__(self, *args): - _mscl.Constellations_swiginit(self, _mscl.new_Constellations(*args)) - - def push_back(self, x): - return _mscl.Constellations_push_back(self, x) - - def front(self): - return _mscl.Constellations_front(self) - - def back(self): - return _mscl.Constellations_back(self) - - def assign(self, n, x): - return _mscl.Constellations_assign(self, n, x) - - def resize(self, *args): - return _mscl.Constellations_resize(self, *args) - - def insert(self, *args): - return _mscl.Constellations_insert(self, *args) - - def reserve(self, n): - return _mscl.Constellations_reserve(self, n) - - def capacity(self): - return _mscl.Constellations_capacity(self) - __swig_destroy__ = _mscl.delete_Constellations - -# Register Constellations in _mscl: -_mscl.Constellations_swigregister(Constellations) - -class HeadingUpdateOptionsList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HeadingUpdateOptionsList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HeadingUpdateOptionsList___nonzero__(self) - - def __bool__(self): - return _mscl.HeadingUpdateOptionsList___bool__(self) - - def __len__(self): - return _mscl.HeadingUpdateOptionsList___len__(self) - - def __getslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HeadingUpdateOptionsList___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___setitem__(self, *args) - - def pop(self): - return _mscl.HeadingUpdateOptionsList_pop(self) - - def append(self, x): - return _mscl.HeadingUpdateOptionsList_append(self, x) - - def empty(self): - return _mscl.HeadingUpdateOptionsList_empty(self) - - def size(self): - return _mscl.HeadingUpdateOptionsList_size(self) - - def swap(self, v): - return _mscl.HeadingUpdateOptionsList_swap(self, v) - - def begin(self): - return _mscl.HeadingUpdateOptionsList_begin(self) - - def end(self): - return _mscl.HeadingUpdateOptionsList_end(self) - - def rbegin(self): - return _mscl.HeadingUpdateOptionsList_rbegin(self) - - def rend(self): - return _mscl.HeadingUpdateOptionsList_rend(self) - - def clear(self): - return _mscl.HeadingUpdateOptionsList_clear(self) - - def get_allocator(self): - return _mscl.HeadingUpdateOptionsList_get_allocator(self) - - def pop_back(self): - return _mscl.HeadingUpdateOptionsList_pop_back(self) - - def erase(self, *args): - return _mscl.HeadingUpdateOptionsList_erase(self, *args) - - def __init__(self, *args): - _mscl.HeadingUpdateOptionsList_swiginit(self, _mscl.new_HeadingUpdateOptionsList(*args)) - - def push_back(self, x): - return _mscl.HeadingUpdateOptionsList_push_back(self, x) - - def front(self): - return _mscl.HeadingUpdateOptionsList_front(self) - - def back(self): - return _mscl.HeadingUpdateOptionsList_back(self) - - def assign(self, n, x): - return _mscl.HeadingUpdateOptionsList_assign(self, n, x) - - def resize(self, *args): - return _mscl.HeadingUpdateOptionsList_resize(self, *args) - - def insert(self, *args): - return _mscl.HeadingUpdateOptionsList_insert(self, *args) - - def reserve(self, n): - return _mscl.HeadingUpdateOptionsList_reserve(self, n) - - def capacity(self): - return _mscl.HeadingUpdateOptionsList_capacity(self) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptionsList - -# Register HeadingUpdateOptionsList in _mscl: -_mscl.HeadingUpdateOptionsList_swigregister(HeadingUpdateOptionsList) - -class AdaptiveMeasurementModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveMeasurementModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveMeasurementModes___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveMeasurementModes___bool__(self) - - def __len__(self): - return _mscl.AdaptiveMeasurementModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveMeasurementModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveMeasurementModes_pop(self) - - def append(self, x): - return _mscl.AdaptiveMeasurementModes_append(self, x) - - def empty(self): - return _mscl.AdaptiveMeasurementModes_empty(self) - - def size(self): - return _mscl.AdaptiveMeasurementModes_size(self) - - def swap(self, v): - return _mscl.AdaptiveMeasurementModes_swap(self, v) - - def begin(self): - return _mscl.AdaptiveMeasurementModes_begin(self) - - def end(self): - return _mscl.AdaptiveMeasurementModes_end(self) - - def rbegin(self): - return _mscl.AdaptiveMeasurementModes_rbegin(self) - - def rend(self): - return _mscl.AdaptiveMeasurementModes_rend(self) - - def clear(self): - return _mscl.AdaptiveMeasurementModes_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveMeasurementModes_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveMeasurementModes_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveMeasurementModes_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveMeasurementModes_swiginit(self, _mscl.new_AdaptiveMeasurementModes(*args)) - - def push_back(self, x): - return _mscl.AdaptiveMeasurementModes_push_back(self, x) - - def front(self): - return _mscl.AdaptiveMeasurementModes_front(self) - - def back(self): - return _mscl.AdaptiveMeasurementModes_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveMeasurementModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveMeasurementModes_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveMeasurementModes_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveMeasurementModes_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveMeasurementModes_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementModes - -# Register AdaptiveMeasurementModes in _mscl: -_mscl.AdaptiveMeasurementModes_swigregister(AdaptiveMeasurementModes) - -class GeometricVectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeometricVectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeometricVectors___nonzero__(self) - - def __bool__(self): - return _mscl.GeometricVectors___bool__(self) - - def __len__(self): - return _mscl.GeometricVectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeometricVectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeometricVectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeometricVectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeometricVectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeometricVectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeometricVectors___setitem__(self, *args) - - def pop(self): - return _mscl.GeometricVectors_pop(self) - - def append(self, x): - return _mscl.GeometricVectors_append(self, x) - - def empty(self): - return _mscl.GeometricVectors_empty(self) - - def size(self): - return _mscl.GeometricVectors_size(self) - - def swap(self, v): - return _mscl.GeometricVectors_swap(self, v) - - def begin(self): - return _mscl.GeometricVectors_begin(self) - - def end(self): - return _mscl.GeometricVectors_end(self) - - def rbegin(self): - return _mscl.GeometricVectors_rbegin(self) - - def rend(self): - return _mscl.GeometricVectors_rend(self) - - def clear(self): - return _mscl.GeometricVectors_clear(self) - - def get_allocator(self): - return _mscl.GeometricVectors_get_allocator(self) - - def pop_back(self): - return _mscl.GeometricVectors_pop_back(self) - - def erase(self, *args): - return _mscl.GeometricVectors_erase(self, *args) - - def __init__(self, *args): - _mscl.GeometricVectors_swiginit(self, _mscl.new_GeometricVectors(*args)) - - def push_back(self, x): - return _mscl.GeometricVectors_push_back(self, x) - - def front(self): - return _mscl.GeometricVectors_front(self) - - def back(self): - return _mscl.GeometricVectors_back(self) - - def assign(self, n, x): - return _mscl.GeometricVectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeometricVectors_resize(self, *args) - - def insert(self, *args): - return _mscl.GeometricVectors_insert(self, *args) - - def reserve(self, n): - return _mscl.GeometricVectors_reserve(self, n) - - def capacity(self): - return _mscl.GeometricVectors_capacity(self) - __swig_destroy__ = _mscl.delete_GeometricVectors - -# Register GeometricVectors in _mscl: -_mscl.GeometricVectors_swigregister(GeometricVectors) - -class Matrix_3x3s(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Matrix_3x3s_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Matrix_3x3s___nonzero__(self) - - def __bool__(self): - return _mscl.Matrix_3x3s___bool__(self) - - def __len__(self): - return _mscl.Matrix_3x3s___len__(self) - - def __getslice__(self, i, j): - return _mscl.Matrix_3x3s___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Matrix_3x3s___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Matrix_3x3s___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Matrix_3x3s___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Matrix_3x3s___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Matrix_3x3s___setitem__(self, *args) - - def pop(self): - return _mscl.Matrix_3x3s_pop(self) - - def append(self, x): - return _mscl.Matrix_3x3s_append(self, x) - - def empty(self): - return _mscl.Matrix_3x3s_empty(self) - - def size(self): - return _mscl.Matrix_3x3s_size(self) - - def swap(self, v): - return _mscl.Matrix_3x3s_swap(self, v) - - def begin(self): - return _mscl.Matrix_3x3s_begin(self) - - def end(self): - return _mscl.Matrix_3x3s_end(self) - - def rbegin(self): - return _mscl.Matrix_3x3s_rbegin(self) - - def rend(self): - return _mscl.Matrix_3x3s_rend(self) - - def clear(self): - return _mscl.Matrix_3x3s_clear(self) - - def get_allocator(self): - return _mscl.Matrix_3x3s_get_allocator(self) - - def pop_back(self): - return _mscl.Matrix_3x3s_pop_back(self) - - def erase(self, *args): - return _mscl.Matrix_3x3s_erase(self, *args) - - def __init__(self, *args): - _mscl.Matrix_3x3s_swiginit(self, _mscl.new_Matrix_3x3s(*args)) - - def push_back(self, x): - return _mscl.Matrix_3x3s_push_back(self, x) - - def front(self): - return _mscl.Matrix_3x3s_front(self) - - def back(self): - return _mscl.Matrix_3x3s_back(self) - - def assign(self, n, x): - return _mscl.Matrix_3x3s_assign(self, n, x) - - def resize(self, *args): - return _mscl.Matrix_3x3s_resize(self, *args) - - def insert(self, *args): - return _mscl.Matrix_3x3s_insert(self, *args) - - def reserve(self, n): - return _mscl.Matrix_3x3s_reserve(self, n) - - def capacity(self): - return _mscl.Matrix_3x3s_capacity(self) - __swig_destroy__ = _mscl.delete_Matrix_3x3s - -# Register Matrix_3x3s in _mscl: -_mscl.Matrix_3x3s_swigregister(Matrix_3x3s) - -class StatusSelectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StatusSelectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StatusSelectors___nonzero__(self) - - def __bool__(self): - return _mscl.StatusSelectors___bool__(self) - - def __len__(self): - return _mscl.StatusSelectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.StatusSelectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StatusSelectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StatusSelectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StatusSelectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StatusSelectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StatusSelectors___setitem__(self, *args) - - def pop(self): - return _mscl.StatusSelectors_pop(self) - - def append(self, x): - return _mscl.StatusSelectors_append(self, x) - - def empty(self): - return _mscl.StatusSelectors_empty(self) - - def size(self): - return _mscl.StatusSelectors_size(self) - - def swap(self, v): - return _mscl.StatusSelectors_swap(self, v) - - def begin(self): - return _mscl.StatusSelectors_begin(self) - - def end(self): - return _mscl.StatusSelectors_end(self) - - def rbegin(self): - return _mscl.StatusSelectors_rbegin(self) - - def rend(self): - return _mscl.StatusSelectors_rend(self) - - def clear(self): - return _mscl.StatusSelectors_clear(self) - - def get_allocator(self): - return _mscl.StatusSelectors_get_allocator(self) - - def pop_back(self): - return _mscl.StatusSelectors_pop_back(self) - - def erase(self, *args): - return _mscl.StatusSelectors_erase(self, *args) - - def __init__(self, *args): - _mscl.StatusSelectors_swiginit(self, _mscl.new_StatusSelectors(*args)) - - def push_back(self, x): - return _mscl.StatusSelectors_push_back(self, x) - - def front(self): - return _mscl.StatusSelectors_front(self) - - def back(self): - return _mscl.StatusSelectors_back(self) - - def assign(self, n, x): - return _mscl.StatusSelectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.StatusSelectors_resize(self, *args) - - def insert(self, *args): - return _mscl.StatusSelectors_insert(self, *args) - - def reserve(self, n): - return _mscl.StatusSelectors_reserve(self, n) - - def capacity(self): - return _mscl.StatusSelectors_capacity(self) - __swig_destroy__ = _mscl.delete_StatusSelectors - -# Register StatusSelectors in _mscl: -_mscl.StatusSelectors_swigregister(StatusSelectors) - -class VehicleModeTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.VehicleModeTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.VehicleModeTypes___nonzero__(self) - - def __bool__(self): - return _mscl.VehicleModeTypes___bool__(self) - - def __len__(self): - return _mscl.VehicleModeTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.VehicleModeTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.VehicleModeTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.VehicleModeTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.VehicleModeTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.VehicleModeTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.VehicleModeTypes___setitem__(self, *args) - - def pop(self): - return _mscl.VehicleModeTypes_pop(self) - - def append(self, x): - return _mscl.VehicleModeTypes_append(self, x) - - def empty(self): - return _mscl.VehicleModeTypes_empty(self) - - def size(self): - return _mscl.VehicleModeTypes_size(self) - - def swap(self, v): - return _mscl.VehicleModeTypes_swap(self, v) - - def begin(self): - return _mscl.VehicleModeTypes_begin(self) - - def end(self): - return _mscl.VehicleModeTypes_end(self) - - def rbegin(self): - return _mscl.VehicleModeTypes_rbegin(self) - - def rend(self): - return _mscl.VehicleModeTypes_rend(self) - - def clear(self): - return _mscl.VehicleModeTypes_clear(self) - - def get_allocator(self): - return _mscl.VehicleModeTypes_get_allocator(self) - - def pop_back(self): - return _mscl.VehicleModeTypes_pop_back(self) - - def erase(self, *args): - return _mscl.VehicleModeTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.VehicleModeTypes_swiginit(self, _mscl.new_VehicleModeTypes(*args)) - - def push_back(self, x): - return _mscl.VehicleModeTypes_push_back(self, x) - - def front(self): - return _mscl.VehicleModeTypes_front(self) - - def back(self): - return _mscl.VehicleModeTypes_back(self) - - def assign(self, n, x): - return _mscl.VehicleModeTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.VehicleModeTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.VehicleModeTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.VehicleModeTypes_reserve(self, n) - - def capacity(self): - return _mscl.VehicleModeTypes_capacity(self) - __swig_destroy__ = _mscl.delete_VehicleModeTypes - -# Register VehicleModeTypes in _mscl: -_mscl.VehicleModeTypes_swigregister(VehicleModeTypes) - -class AdaptiveFilterLevels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveFilterLevels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveFilterLevels___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveFilterLevels___bool__(self) - - def __len__(self): - return _mscl.AdaptiveFilterLevels___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveFilterLevels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveFilterLevels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveFilterLevels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveFilterLevels___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveFilterLevels_pop(self) - - def append(self, x): - return _mscl.AdaptiveFilterLevels_append(self, x) - - def empty(self): - return _mscl.AdaptiveFilterLevels_empty(self) - - def size(self): - return _mscl.AdaptiveFilterLevels_size(self) - - def swap(self, v): - return _mscl.AdaptiveFilterLevels_swap(self, v) - - def begin(self): - return _mscl.AdaptiveFilterLevels_begin(self) - - def end(self): - return _mscl.AdaptiveFilterLevels_end(self) - - def rbegin(self): - return _mscl.AdaptiveFilterLevels_rbegin(self) - - def rend(self): - return _mscl.AdaptiveFilterLevels_rend(self) - - def clear(self): - return _mscl.AdaptiveFilterLevels_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveFilterLevels_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveFilterLevels_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveFilterLevels_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveFilterLevels_swiginit(self, _mscl.new_AdaptiveFilterLevels(*args)) - - def push_back(self, x): - return _mscl.AdaptiveFilterLevels_push_back(self, x) - - def front(self): - return _mscl.AdaptiveFilterLevels_front(self) - - def back(self): - return _mscl.AdaptiveFilterLevels_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveFilterLevels_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveFilterLevels_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveFilterLevels_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveFilterLevels_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveFilterLevels_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveFilterLevels - -# Register AdaptiveFilterLevels in _mscl: -_mscl.AdaptiveFilterLevels_swigregister(AdaptiveFilterLevels) - -class LowPassFilterConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LowPassFilterConfig_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LowPassFilterConfig___nonzero__(self) - - def __bool__(self): - return _mscl.LowPassFilterConfig___bool__(self) - - def __len__(self): - return _mscl.LowPassFilterConfig___len__(self) - - def __getslice__(self, i, j): - return _mscl.LowPassFilterConfig___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LowPassFilterConfig___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LowPassFilterConfig___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LowPassFilterConfig___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LowPassFilterConfig___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LowPassFilterConfig___setitem__(self, *args) - - def pop(self): - return _mscl.LowPassFilterConfig_pop(self) - - def append(self, x): - return _mscl.LowPassFilterConfig_append(self, x) - - def empty(self): - return _mscl.LowPassFilterConfig_empty(self) - - def size(self): - return _mscl.LowPassFilterConfig_size(self) - - def swap(self, v): - return _mscl.LowPassFilterConfig_swap(self, v) - - def begin(self): - return _mscl.LowPassFilterConfig_begin(self) - - def end(self): - return _mscl.LowPassFilterConfig_end(self) - - def rbegin(self): - return _mscl.LowPassFilterConfig_rbegin(self) - - def rend(self): - return _mscl.LowPassFilterConfig_rend(self) - - def clear(self): - return _mscl.LowPassFilterConfig_clear(self) - - def get_allocator(self): - return _mscl.LowPassFilterConfig_get_allocator(self) - - def pop_back(self): - return _mscl.LowPassFilterConfig_pop_back(self) - - def erase(self, *args): - return _mscl.LowPassFilterConfig_erase(self, *args) - - def __init__(self, *args): - _mscl.LowPassFilterConfig_swiginit(self, _mscl.new_LowPassFilterConfig(*args)) - - def push_back(self, x): - return _mscl.LowPassFilterConfig_push_back(self, x) - - def front(self): - return _mscl.LowPassFilterConfig_front(self) - - def back(self): - return _mscl.LowPassFilterConfig_back(self) - - def assign(self, n, x): - return _mscl.LowPassFilterConfig_assign(self, n, x) - - def resize(self, *args): - return _mscl.LowPassFilterConfig_resize(self, *args) - - def insert(self, *args): - return _mscl.LowPassFilterConfig_insert(self, *args) - - def reserve(self, n): - return _mscl.LowPassFilterConfig_reserve(self, n) - - def capacity(self): - return _mscl.LowPassFilterConfig_capacity(self) - __swig_destroy__ = _mscl.delete_LowPassFilterConfig - -# Register LowPassFilterConfig in _mscl: -_mscl.LowPassFilterConfig_swigregister(LowPassFilterConfig) - -class AidingMeasurementSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AidingMeasurementSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AidingMeasurementSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.AidingMeasurementSourceOptions___bool__(self) - - def __len__(self): - return _mscl.AidingMeasurementSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.AidingMeasurementSourceOptions_pop(self) - - def append(self, x): - return _mscl.AidingMeasurementSourceOptions_append(self, x) - - def empty(self): - return _mscl.AidingMeasurementSourceOptions_empty(self) - - def size(self): - return _mscl.AidingMeasurementSourceOptions_size(self) - - def swap(self, v): - return _mscl.AidingMeasurementSourceOptions_swap(self, v) - - def begin(self): - return _mscl.AidingMeasurementSourceOptions_begin(self) - - def end(self): - return _mscl.AidingMeasurementSourceOptions_end(self) - - def rbegin(self): - return _mscl.AidingMeasurementSourceOptions_rbegin(self) - - def rend(self): - return _mscl.AidingMeasurementSourceOptions_rend(self) - - def clear(self): - return _mscl.AidingMeasurementSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.AidingMeasurementSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.AidingMeasurementSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.AidingMeasurementSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.AidingMeasurementSourceOptions_swiginit(self, _mscl.new_AidingMeasurementSourceOptions(*args)) - - def push_back(self, x): - return _mscl.AidingMeasurementSourceOptions_push_back(self, x) - - def front(self): - return _mscl.AidingMeasurementSourceOptions_front(self) - - def back(self): - return _mscl.AidingMeasurementSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.AidingMeasurementSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.AidingMeasurementSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.AidingMeasurementSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.AidingMeasurementSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.AidingMeasurementSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_AidingMeasurementSourceOptions - -# Register AidingMeasurementSourceOptions in _mscl: -_mscl.AidingMeasurementSourceOptions_swigregister(AidingMeasurementSourceOptions) - -class PpsSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.PpsSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.PpsSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.PpsSourceOptions___bool__(self) - - def __len__(self): - return _mscl.PpsSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.PpsSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.PpsSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.PpsSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.PpsSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.PpsSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.PpsSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.PpsSourceOptions_pop(self) - - def append(self, x): - return _mscl.PpsSourceOptions_append(self, x) - - def empty(self): - return _mscl.PpsSourceOptions_empty(self) - - def size(self): - return _mscl.PpsSourceOptions_size(self) - - def swap(self, v): - return _mscl.PpsSourceOptions_swap(self, v) - - def begin(self): - return _mscl.PpsSourceOptions_begin(self) - - def end(self): - return _mscl.PpsSourceOptions_end(self) - - def rbegin(self): - return _mscl.PpsSourceOptions_rbegin(self) - - def rend(self): - return _mscl.PpsSourceOptions_rend(self) - - def clear(self): - return _mscl.PpsSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.PpsSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.PpsSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.PpsSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.PpsSourceOptions_swiginit(self, _mscl.new_PpsSourceOptions(*args)) - - def push_back(self, x): - return _mscl.PpsSourceOptions_push_back(self, x) - - def front(self): - return _mscl.PpsSourceOptions_front(self) - - def back(self): - return _mscl.PpsSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.PpsSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.PpsSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.PpsSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.PpsSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.PpsSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_PpsSourceOptions - -# Register PpsSourceOptions in _mscl: -_mscl.PpsSourceOptions_swigregister(PpsSourceOptions) - -class GeographicSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeographicSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeographicSources___nonzero__(self) - - def __bool__(self): - return _mscl.GeographicSources___bool__(self) - - def __len__(self): - return _mscl.GeographicSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeographicSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeographicSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeographicSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeographicSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeographicSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeographicSources___setitem__(self, *args) - - def pop(self): - return _mscl.GeographicSources_pop(self) - - def append(self, x): - return _mscl.GeographicSources_append(self, x) - - def empty(self): - return _mscl.GeographicSources_empty(self) - - def size(self): - return _mscl.GeographicSources_size(self) - - def swap(self, v): - return _mscl.GeographicSources_swap(self, v) - - def begin(self): - return _mscl.GeographicSources_begin(self) - - def end(self): - return _mscl.GeographicSources_end(self) - - def rbegin(self): - return _mscl.GeographicSources_rbegin(self) - - def rend(self): - return _mscl.GeographicSources_rend(self) - - def clear(self): - return _mscl.GeographicSources_clear(self) - - def get_allocator(self): - return _mscl.GeographicSources_get_allocator(self) - - def pop_back(self): - return _mscl.GeographicSources_pop_back(self) - - def erase(self, *args): - return _mscl.GeographicSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GeographicSources_swiginit(self, _mscl.new_GeographicSources(*args)) - - def push_back(self, x): - return _mscl.GeographicSources_push_back(self, x) - - def front(self): - return _mscl.GeographicSources_front(self) - - def back(self): - return _mscl.GeographicSources_back(self) - - def assign(self, n, x): - return _mscl.GeographicSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeographicSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GeographicSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GeographicSources_reserve(self, n) - - def capacity(self): - return _mscl.GeographicSources_capacity(self) - __swig_destroy__ = _mscl.delete_GeographicSources - -# Register GeographicSources in _mscl: -_mscl.GeographicSources_swigregister(GeographicSources) - -class GnssSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSources___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSources___bool__(self) - - def __len__(self): - return _mscl.GnssSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssSources___setitem__(self, *args) - - def pop(self): - return _mscl.GnssSources_pop(self) - - def append(self, x): - return _mscl.GnssSources_append(self, x) - - def empty(self): - return _mscl.GnssSources_empty(self) - - def size(self): - return _mscl.GnssSources_size(self) - - def swap(self, v): - return _mscl.GnssSources_swap(self, v) - - def begin(self): - return _mscl.GnssSources_begin(self) - - def end(self): - return _mscl.GnssSources_end(self) - - def rbegin(self): - return _mscl.GnssSources_rbegin(self) - - def rend(self): - return _mscl.GnssSources_rend(self) - - def clear(self): - return _mscl.GnssSources_clear(self) - - def get_allocator(self): - return _mscl.GnssSources_get_allocator(self) - - def pop_back(self): - return _mscl.GnssSources_pop_back(self) - - def erase(self, *args): - return _mscl.GnssSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssSources_swiginit(self, _mscl.new_GnssSources(*args)) - - def push_back(self, x): - return _mscl.GnssSources_push_back(self, x) - - def front(self): - return _mscl.GnssSources_front(self) - - def back(self): - return _mscl.GnssSources_back(self) - - def assign(self, n, x): - return _mscl.GnssSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssSources_reserve(self, n) - - def capacity(self): - return _mscl.GnssSources_capacity(self) - __swig_destroy__ = _mscl.delete_GnssSources - -# Register GnssSources in _mscl: -_mscl.GnssSources_swigregister(GnssSources) - -class GnssSignalConfigOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSignalConfigOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSignalConfigOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSignalConfigOptions___bool__(self) - - def __len__(self): - return _mscl.GnssSignalConfigOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GnssSignalConfigOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GnssSignalConfigOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GnssSignalConfigOptions_has_key(self, key) - - def keys(self): - return _mscl.GnssSignalConfigOptions_keys(self) - - def values(self): - return _mscl.GnssSignalConfigOptions_values(self) - - def items(self): - return _mscl.GnssSignalConfigOptions_items(self) - - def __contains__(self, key): - return _mscl.GnssSignalConfigOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GnssSignalConfigOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GnssSignalConfigOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GnssSignalConfigOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GnssSignalConfigOptions_asdict(self) - - def __init__(self, *args): - _mscl.GnssSignalConfigOptions_swiginit(self, _mscl.new_GnssSignalConfigOptions(*args)) - - def empty(self): - return _mscl.GnssSignalConfigOptions_empty(self) - - def size(self): - return _mscl.GnssSignalConfigOptions_size(self) - - def swap(self, v): - return _mscl.GnssSignalConfigOptions_swap(self, v) - - def begin(self): - return _mscl.GnssSignalConfigOptions_begin(self) - - def end(self): - return _mscl.GnssSignalConfigOptions_end(self) - - def rbegin(self): - return _mscl.GnssSignalConfigOptions_rbegin(self) - - def rend(self): - return _mscl.GnssSignalConfigOptions_rend(self) - - def clear(self): - return _mscl.GnssSignalConfigOptions_clear(self) - - def get_allocator(self): - return _mscl.GnssSignalConfigOptions_get_allocator(self) - - def count(self, x): - return _mscl.GnssSignalConfigOptions_count(self, x) - - def erase(self, *args): - return _mscl.GnssSignalConfigOptions_erase(self, *args) - - def find(self, x): - return _mscl.GnssSignalConfigOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GnssSignalConfigOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GnssSignalConfigOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GnssSignalConfigOptions - -# Register GnssSignalConfigOptions in _mscl: -_mscl.GnssSignalConfigOptions_swigregister(GnssSignalConfigOptions) - -class NmeaMessageFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NmeaMessageFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NmeaMessageFormats___nonzero__(self) - - def __bool__(self): - return _mscl.NmeaMessageFormats___bool__(self) - - def __len__(self): - return _mscl.NmeaMessageFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.NmeaMessageFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NmeaMessageFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NmeaMessageFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NmeaMessageFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NmeaMessageFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NmeaMessageFormats___setitem__(self, *args) - - def pop(self): - return _mscl.NmeaMessageFormats_pop(self) - - def append(self, x): - return _mscl.NmeaMessageFormats_append(self, x) - - def empty(self): - return _mscl.NmeaMessageFormats_empty(self) - - def size(self): - return _mscl.NmeaMessageFormats_size(self) - - def swap(self, v): - return _mscl.NmeaMessageFormats_swap(self, v) - - def begin(self): - return _mscl.NmeaMessageFormats_begin(self) - - def end(self): - return _mscl.NmeaMessageFormats_end(self) - - def rbegin(self): - return _mscl.NmeaMessageFormats_rbegin(self) - - def rend(self): - return _mscl.NmeaMessageFormats_rend(self) - - def clear(self): - return _mscl.NmeaMessageFormats_clear(self) - - def get_allocator(self): - return _mscl.NmeaMessageFormats_get_allocator(self) - - def pop_back(self): - return _mscl.NmeaMessageFormats_pop_back(self) - - def erase(self, *args): - return _mscl.NmeaMessageFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.NmeaMessageFormats_swiginit(self, _mscl.new_NmeaMessageFormats(*args)) - - def push_back(self, x): - return _mscl.NmeaMessageFormats_push_back(self, x) - - def front(self): - return _mscl.NmeaMessageFormats_front(self) - - def back(self): - return _mscl.NmeaMessageFormats_back(self) - - def assign(self, n, x): - return _mscl.NmeaMessageFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.NmeaMessageFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.NmeaMessageFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.NmeaMessageFormats_reserve(self, n) - - def capacity(self): - return _mscl.NmeaMessageFormats_capacity(self) - __swig_destroy__ = _mscl.delete_NmeaMessageFormats - -# Register NmeaMessageFormats in _mscl: -_mscl.NmeaMessageFormats_swigregister(NmeaMessageFormats) - -class GpioPinModeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinModeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinModeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinModeOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinModeOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.GpioPinModeOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GpioPinModeOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GpioPinModeOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GpioPinModeOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GpioPinModeOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GpioPinModeOptions___setitem__(self, *args) - - def pop(self): - return _mscl.GpioPinModeOptions_pop(self) - - def append(self, x): - return _mscl.GpioPinModeOptions_append(self, x) - - def empty(self): - return _mscl.GpioPinModeOptions_empty(self) - - def size(self): - return _mscl.GpioPinModeOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinModeOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinModeOptions_begin(self) - - def end(self): - return _mscl.GpioPinModeOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinModeOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinModeOptions_rend(self) - - def clear(self): - return _mscl.GpioPinModeOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinModeOptions_get_allocator(self) - - def pop_back(self): - return _mscl.GpioPinModeOptions_pop_back(self) - - def erase(self, *args): - return _mscl.GpioPinModeOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.GpioPinModeOptions_swiginit(self, _mscl.new_GpioPinModeOptions(*args)) - - def push_back(self, x): - return _mscl.GpioPinModeOptions_push_back(self, x) - - def front(self): - return _mscl.GpioPinModeOptions_front(self) - - def back(self): - return _mscl.GpioPinModeOptions_back(self) - - def assign(self, n, x): - return _mscl.GpioPinModeOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.GpioPinModeOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.GpioPinModeOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.GpioPinModeOptions_reserve(self, n) - - def capacity(self): - return _mscl.GpioPinModeOptions_capacity(self) - __swig_destroy__ = _mscl.delete_GpioPinModeOptions - -# Register GpioPinModeOptions in _mscl: -_mscl.GpioPinModeOptions_swigregister(GpioPinModeOptions) - -class GpioBehaviorModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioBehaviorModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioBehaviorModes___nonzero__(self) - - def __bool__(self): - return _mscl.GpioBehaviorModes___bool__(self) - - def __len__(self): - return _mscl.GpioBehaviorModes___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioBehaviorModes___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioBehaviorModes___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioBehaviorModes_has_key(self, key) - - def keys(self): - return _mscl.GpioBehaviorModes_keys(self) - - def values(self): - return _mscl.GpioBehaviorModes_values(self) - - def items(self): - return _mscl.GpioBehaviorModes_items(self) - - def __contains__(self, key): - return _mscl.GpioBehaviorModes___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioBehaviorModes_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioBehaviorModes_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioBehaviorModes___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioBehaviorModes_asdict(self) - - def __init__(self, *args): - _mscl.GpioBehaviorModes_swiginit(self, _mscl.new_GpioBehaviorModes(*args)) - - def empty(self): - return _mscl.GpioBehaviorModes_empty(self) - - def size(self): - return _mscl.GpioBehaviorModes_size(self) - - def swap(self, v): - return _mscl.GpioBehaviorModes_swap(self, v) - - def begin(self): - return _mscl.GpioBehaviorModes_begin(self) - - def end(self): - return _mscl.GpioBehaviorModes_end(self) - - def rbegin(self): - return _mscl.GpioBehaviorModes_rbegin(self) - - def rend(self): - return _mscl.GpioBehaviorModes_rend(self) - - def clear(self): - return _mscl.GpioBehaviorModes_clear(self) - - def get_allocator(self): - return _mscl.GpioBehaviorModes_get_allocator(self) - - def count(self, x): - return _mscl.GpioBehaviorModes_count(self, x) - - def erase(self, *args): - return _mscl.GpioBehaviorModes_erase(self, *args) - - def find(self, x): - return _mscl.GpioBehaviorModes_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioBehaviorModes_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioBehaviorModes_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioBehaviorModes - -# Register GpioBehaviorModes in _mscl: -_mscl.GpioBehaviorModes_swigregister(GpioBehaviorModes) - -class GpioFeatureBehaviors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioFeatureBehaviors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioFeatureBehaviors___nonzero__(self) - - def __bool__(self): - return _mscl.GpioFeatureBehaviors___bool__(self) - - def __len__(self): - return _mscl.GpioFeatureBehaviors___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioFeatureBehaviors___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioFeatureBehaviors___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioFeatureBehaviors_has_key(self, key) - - def keys(self): - return _mscl.GpioFeatureBehaviors_keys(self) - - def values(self): - return _mscl.GpioFeatureBehaviors_values(self) - - def items(self): - return _mscl.GpioFeatureBehaviors_items(self) - - def __contains__(self, key): - return _mscl.GpioFeatureBehaviors___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioFeatureBehaviors_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioFeatureBehaviors_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioFeatureBehaviors___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioFeatureBehaviors_asdict(self) - - def __init__(self, *args): - _mscl.GpioFeatureBehaviors_swiginit(self, _mscl.new_GpioFeatureBehaviors(*args)) - - def empty(self): - return _mscl.GpioFeatureBehaviors_empty(self) - - def size(self): - return _mscl.GpioFeatureBehaviors_size(self) - - def swap(self, v): - return _mscl.GpioFeatureBehaviors_swap(self, v) - - def begin(self): - return _mscl.GpioFeatureBehaviors_begin(self) - - def end(self): - return _mscl.GpioFeatureBehaviors_end(self) - - def rbegin(self): - return _mscl.GpioFeatureBehaviors_rbegin(self) - - def rend(self): - return _mscl.GpioFeatureBehaviors_rend(self) - - def clear(self): - return _mscl.GpioFeatureBehaviors_clear(self) - - def get_allocator(self): - return _mscl.GpioFeatureBehaviors_get_allocator(self) - - def count(self, x): - return _mscl.GpioFeatureBehaviors_count(self, x) - - def erase(self, *args): - return _mscl.GpioFeatureBehaviors_erase(self, *args) - - def find(self, x): - return _mscl.GpioFeatureBehaviors_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioFeatureBehaviors_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioFeatureBehaviors_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioFeatureBehaviors - -# Register GpioFeatureBehaviors in _mscl: -_mscl.GpioFeatureBehaviors_swigregister(GpioFeatureBehaviors) - -class GpioPinOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioPinOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioPinOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioPinOptions_has_key(self, key) - - def keys(self): - return _mscl.GpioPinOptions_keys(self) - - def values(self): - return _mscl.GpioPinOptions_values(self) - - def items(self): - return _mscl.GpioPinOptions_items(self) - - def __contains__(self, key): - return _mscl.GpioPinOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioPinOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioPinOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioPinOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioPinOptions_asdict(self) - - def __init__(self, *args): - _mscl.GpioPinOptions_swiginit(self, _mscl.new_GpioPinOptions(*args)) - - def empty(self): - return _mscl.GpioPinOptions_empty(self) - - def size(self): - return _mscl.GpioPinOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinOptions_begin(self) - - def end(self): - return _mscl.GpioPinOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinOptions_rend(self) - - def clear(self): - return _mscl.GpioPinOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinOptions_get_allocator(self) - - def count(self, x): - return _mscl.GpioPinOptions_count(self, x) - - def erase(self, *args): - return _mscl.GpioPinOptions_erase(self, *args) - - def find(self, x): - return _mscl.GpioPinOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioPinOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioPinOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioPinOptions - -# Register GpioPinOptions in _mscl: -_mscl.GpioPinOptions_swigregister(GpioPinOptions) - -class EventInputTriggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventInputTriggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventInputTriggers___nonzero__(self) - - def __bool__(self): - return _mscl.EventInputTriggers___bool__(self) - - def __len__(self): - return _mscl.EventInputTriggers___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventInputTriggers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventInputTriggers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventInputTriggers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventInputTriggers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventInputTriggers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventInputTriggers___setitem__(self, *args) - - def __init__(self, *args): - _mscl.EventInputTriggers_swiginit(self, _mscl.new_EventInputTriggers(*args)) - - def empty(self): - return _mscl.EventInputTriggers_empty(self) - - def size(self): - return _mscl.EventInputTriggers_size(self) - - def swap(self, v): - return _mscl.EventInputTriggers_swap(self, v) - - def begin(self): - return _mscl.EventInputTriggers_begin(self) - - def end(self): - return _mscl.EventInputTriggers_end(self) - - def rbegin(self): - return _mscl.EventInputTriggers_rbegin(self) - - def rend(self): - return _mscl.EventInputTriggers_rend(self) - - def front(self): - return _mscl.EventInputTriggers_front(self) - - def back(self): - return _mscl.EventInputTriggers_back(self) - - def fill(self, u): - return _mscl.EventInputTriggers_fill(self, u) - __swig_destroy__ = _mscl.delete_EventInputTriggers - -# Register EventInputTriggers in _mscl: -_mscl.EventInputTriggers_swigregister(EventInputTriggers) - -class EventTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTypes___nonzero__(self) - - def __bool__(self): - return _mscl.EventTypes___bool__(self) - - def __len__(self): - return _mscl.EventTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTypes___setitem__(self, *args) - - def pop(self): - return _mscl.EventTypes_pop(self) - - def append(self, x): - return _mscl.EventTypes_append(self, x) - - def empty(self): - return _mscl.EventTypes_empty(self) - - def size(self): - return _mscl.EventTypes_size(self) - - def swap(self, v): - return _mscl.EventTypes_swap(self, v) - - def begin(self): - return _mscl.EventTypes_begin(self) - - def end(self): - return _mscl.EventTypes_end(self) - - def rbegin(self): - return _mscl.EventTypes_rbegin(self) - - def rend(self): - return _mscl.EventTypes_rend(self) - - def clear(self): - return _mscl.EventTypes_clear(self) - - def get_allocator(self): - return _mscl.EventTypes_get_allocator(self) - - def pop_back(self): - return _mscl.EventTypes_pop_back(self) - - def erase(self, *args): - return _mscl.EventTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTypes_swiginit(self, _mscl.new_EventTypes(*args)) - - def push_back(self, x): - return _mscl.EventTypes_push_back(self, x) - - def front(self): - return _mscl.EventTypes_front(self) - - def back(self): - return _mscl.EventTypes_back(self) - - def assign(self, n, x): - return _mscl.EventTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTypes_reserve(self, n) - - def capacity(self): - return _mscl.EventTypes_capacity(self) - __swig_destroy__ = _mscl.delete_EventTypes - -# Register EventTypes in _mscl: -_mscl.EventTypes_swigregister(EventTypes) - -class MeasurementReferenceFrames(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MeasurementReferenceFrames_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MeasurementReferenceFrames___nonzero__(self) - - def __bool__(self): - return _mscl.MeasurementReferenceFrames___bool__(self) - - def __len__(self): - return _mscl.MeasurementReferenceFrames___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.MeasurementReferenceFrames___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.MeasurementReferenceFrames___delitem__(self, key) - - def has_key(self, key): - return _mscl.MeasurementReferenceFrames_has_key(self, key) - - def keys(self): - return _mscl.MeasurementReferenceFrames_keys(self) - - def values(self): - return _mscl.MeasurementReferenceFrames_values(self) - - def items(self): - return _mscl.MeasurementReferenceFrames_items(self) - - def __contains__(self, key): - return _mscl.MeasurementReferenceFrames___contains__(self, key) - - def key_iterator(self): - return _mscl.MeasurementReferenceFrames_key_iterator(self) - - def value_iterator(self): - return _mscl.MeasurementReferenceFrames_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.MeasurementReferenceFrames___setitem__(self, *args) - - def asdict(self): - return _mscl.MeasurementReferenceFrames_asdict(self) - - def __init__(self, *args): - _mscl.MeasurementReferenceFrames_swiginit(self, _mscl.new_MeasurementReferenceFrames(*args)) - - def empty(self): - return _mscl.MeasurementReferenceFrames_empty(self) - - def size(self): - return _mscl.MeasurementReferenceFrames_size(self) - - def swap(self, v): - return _mscl.MeasurementReferenceFrames_swap(self, v) - - def begin(self): - return _mscl.MeasurementReferenceFrames_begin(self) - - def end(self): - return _mscl.MeasurementReferenceFrames_end(self) - - def rbegin(self): - return _mscl.MeasurementReferenceFrames_rbegin(self) - - def rend(self): - return _mscl.MeasurementReferenceFrames_rend(self) - - def clear(self): - return _mscl.MeasurementReferenceFrames_clear(self) - - def get_allocator(self): - return _mscl.MeasurementReferenceFrames_get_allocator(self) - - def count(self, x): - return _mscl.MeasurementReferenceFrames_count(self, x) - - def erase(self, *args): - return _mscl.MeasurementReferenceFrames_erase(self, *args) - - def find(self, x): - return _mscl.MeasurementReferenceFrames_find(self, x) - - def lower_bound(self, x): - return _mscl.MeasurementReferenceFrames_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.MeasurementReferenceFrames_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrames - -# Register MeasurementReferenceFrames in _mscl: -_mscl.MeasurementReferenceFrames_swigregister(MeasurementReferenceFrames) - -class Bins(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bins_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bins___nonzero__(self) - - def __bool__(self): - return _mscl.Bins___bool__(self) - - def __len__(self): - return _mscl.Bins___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bins___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bins___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bins___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bins___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bins___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bins___setitem__(self, *args) - - def pop(self): - return _mscl.Bins_pop(self) - - def append(self, x): - return _mscl.Bins_append(self, x) - - def empty(self): - return _mscl.Bins_empty(self) - - def size(self): - return _mscl.Bins_size(self) - - def swap(self, v): - return _mscl.Bins_swap(self, v) - - def begin(self): - return _mscl.Bins_begin(self) - - def end(self): - return _mscl.Bins_end(self) - - def rbegin(self): - return _mscl.Bins_rbegin(self) - - def rend(self): - return _mscl.Bins_rend(self) - - def clear(self): - return _mscl.Bins_clear(self) - - def get_allocator(self): - return _mscl.Bins_get_allocator(self) - - def pop_back(self): - return _mscl.Bins_pop_back(self) - - def erase(self, *args): - return _mscl.Bins_erase(self, *args) - - def __init__(self, *args): - _mscl.Bins_swiginit(self, _mscl.new_Bins(*args)) - - def push_back(self, x): - return _mscl.Bins_push_back(self, x) - - def front(self): - return _mscl.Bins_front(self) - - def back(self): - return _mscl.Bins_back(self) - - def assign(self, n, x): - return _mscl.Bins_assign(self, n, x) - - def insert(self, *args): - return _mscl.Bins_insert(self, *args) - - def reserve(self, n): - return _mscl.Bins_reserve(self, n) - - def capacity(self): - return _mscl.Bins_capacity(self) - __swig_destroy__ = _mscl.delete_Bins - -# Register Bins in _mscl: -_mscl.Bins_swigregister(Bins) - -class Error(Exception): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_swiginit(self, _mscl.new_Error(*args)) - __swig_destroy__ = _mscl.delete_Error - - def what(self): - return _mscl.Error_what(self) - - def __str__(self): - return _mscl.Error___str__(self) - -# Register Error in _mscl: -_mscl.Error_swigregister(Error) - -class Error_NotSupported(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NotSupported_swiginit(self, _mscl.new_Error_NotSupported(*args)) - __swig_destroy__ = _mscl.delete_Error_NotSupported - -# Register Error_NotSupported in _mscl: -_mscl.Error_NotSupported_swigregister(Error_NotSupported) - -class Error_NoData(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NoData_swiginit(self, _mscl.new_Error_NoData(*args)) - __swig_destroy__ = _mscl.delete_Error_NoData - -# Register Error_NoData in _mscl: -_mscl.Error_NoData_swigregister(Error_NoData) - -class Error_BadDataType(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Error_BadDataType_swiginit(self, _mscl.new_Error_BadDataType()) - __swig_destroy__ = _mscl.delete_Error_BadDataType - -# Register Error_BadDataType in _mscl: -_mscl.Error_BadDataType_swigregister(Error_BadDataType) - -class Error_UnknownSampleRate(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_UnknownSampleRate_swiginit(self, _mscl.new_Error_UnknownSampleRate(*args)) - __swig_destroy__ = _mscl.delete_Error_UnknownSampleRate - -# Register Error_UnknownSampleRate in _mscl: -_mscl.Error_UnknownSampleRate_swigregister(Error_UnknownSampleRate) - -class Error_Communication(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Communication_swiginit(self, _mscl.new_Error_Communication(*args)) - __swig_destroy__ = _mscl.delete_Error_Communication - -# Register Error_Communication in _mscl: -_mscl.Error_Communication_swigregister(Error_Communication) - -class Error_NodeCommunication(Error_Communication): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NodeCommunication_swiginit(self, _mscl.new_Error_NodeCommunication(*args)) - - def nodeAddress(self): - return _mscl.Error_NodeCommunication_nodeAddress(self) - __swig_destroy__ = _mscl.delete_Error_NodeCommunication - -# Register Error_NodeCommunication in _mscl: -_mscl.Error_NodeCommunication_swigregister(Error_NodeCommunication) - -class Error_Connection(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Connection_swiginit(self, _mscl.new_Error_Connection(*args)) - __swig_destroy__ = _mscl.delete_Error_Connection - - def code(self): - return _mscl.Error_Connection_code(self) - - def value(self): - return _mscl.Error_Connection_value(self) - -# Register Error_Connection in _mscl: -_mscl.Error_Connection_swigregister(Error_Connection) - -class Error_InvalidSerialPort(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code): - _mscl.Error_InvalidSerialPort_swiginit(self, _mscl.new_Error_InvalidSerialPort(code)) - __swig_destroy__ = _mscl.delete_Error_InvalidSerialPort - -# Register Error_InvalidSerialPort in _mscl: -_mscl.Error_InvalidSerialPort_swigregister(Error_InvalidSerialPort) - -class Error_InvalidTcpServer(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidTcpServer_swiginit(self, _mscl.new_Error_InvalidTcpServer(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidTcpServer - -# Register Error_InvalidTcpServer in _mscl: -_mscl.Error_InvalidTcpServer_swigregister(Error_InvalidTcpServer) - -class Error_InvalidUnixSocket(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidUnixSocket_swiginit(self, _mscl.new_Error_InvalidUnixSocket(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidUnixSocket - -# Register Error_InvalidUnixSocket in _mscl: -_mscl.Error_InvalidUnixSocket_swigregister(Error_InvalidUnixSocket) - -class Error_MipCmdFailed(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_MipCmdFailed_swiginit(self, _mscl.new_Error_MipCmdFailed(*args)) - __swig_destroy__ = _mscl.delete_Error_MipCmdFailed - - def code(self): - return _mscl.Error_MipCmdFailed_code(self) - - def value(self): - return _mscl.Error_MipCmdFailed_value(self) - -# Register Error_MipCmdFailed in _mscl: -_mscl.Error_MipCmdFailed_swigregister(Error_MipCmdFailed) - -class Error_InvalidConfig(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_InvalidConfig_swiginit(self, _mscl.new_Error_InvalidConfig(*args)) - __swig_destroy__ = _mscl.delete_Error_InvalidConfig - - def issues(self): - return _mscl.Error_InvalidConfig_issues(self) - -# Register Error_InvalidConfig in _mscl: -_mscl.Error_InvalidConfig_swigregister(Error_InvalidConfig) - -class Error_InvalidNodeConfig(Error_InvalidConfig): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, issues, nodeAddress): - _mscl.Error_InvalidNodeConfig_swiginit(self, _mscl.new_Error_InvalidNodeConfig(issues, nodeAddress)) - __swig_destroy__ = _mscl.delete_Error_InvalidNodeConfig - - def nodeAddress(self): - return _mscl.Error_InvalidNodeConfig_nodeAddress(self) - -# Register Error_InvalidNodeConfig in _mscl: -_mscl.Error_InvalidNodeConfig_swigregister(Error_InvalidNodeConfig) - - - diff --git a/mscl_release_assets/mscl-amd64-Python3.12-v67.0.0/_mscl.so b/mscl_release_assets/mscl-amd64-Python3.12-v67.0.0/_mscl.so deleted file mode 100644 index ad9c016..0000000 Binary files a/mscl_release_assets/mscl-amd64-Python3.12-v67.0.0/_mscl.so and /dev/null differ diff --git a/mscl_release_assets/mscl-amd64-Python3.12-v67.0.0/mscl.py b/mscl_release_assets/mscl-amd64-Python3.12-v67.0.0/mscl.py deleted file mode 100644 index daa6217..0000000 --- a/mscl_release_assets/mscl-amd64-Python3.12-v67.0.0/mscl.py +++ /dev/null @@ -1,18376 +0,0 @@ -# This file was automatically generated by SWIG (http://www.swig.org). -# Version 4.0.1 -# -# Do not make changes to this file unless you know what you are doing--modify -# the SWIG interface file instead. - -from sys import version_info as _swig_python_version_info -if _swig_python_version_info < (2, 7, 0): - raise RuntimeError("Python 2.7 or later required") - -# Import the low-level C/C++ module -if __package__ or "." in __name__: - from . import _mscl -else: - import _mscl - -try: - import builtins as __builtin__ -except ImportError: - import __builtin__ - -def _swig_repr(self): - try: - strthis = "proxy of " + self.this.__repr__() - except __builtin__.Exception: - strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - - -def _swig_setattr_nondynamic_instance_variable(set): - def set_instance_attr(self, name, value): - if name == "thisown": - self.this.own(value) - elif name == "this": - set(self, name, value) - elif hasattr(self, name) and isinstance(getattr(type(self), name), property): - set(self, name, value) - else: - raise AttributeError("You cannot add instance attributes to %s" % self) - return set_instance_attr - - -def _swig_setattr_nondynamic_class_variable(set): - def set_class_attr(cls, name, value): - if hasattr(cls, name) and not isinstance(getattr(cls, name), property): - set(cls, name, value) - else: - raise AttributeError("You cannot add class attributes to %s" % cls) - return set_class_attr - - -def _swig_add_metaclass(metaclass): - """Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass""" - def wrapper(cls): - return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy()) - return wrapper - - -class _SwigNonDynamicMeta(type): - """Meta class to enforce nondynamic attributes (no new attributes) for a class""" - __setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__) - - -class SwigPyIterator(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_SwigPyIterator - - def value(self): - return _mscl.SwigPyIterator_value(self) - - def incr(self, n=1): - return _mscl.SwigPyIterator_incr(self, n) - - def decr(self, n=1): - return _mscl.SwigPyIterator_decr(self, n) - - def distance(self, x): - return _mscl.SwigPyIterator_distance(self, x) - - def equal(self, x): - return _mscl.SwigPyIterator_equal(self, x) - - def copy(self): - return _mscl.SwigPyIterator_copy(self) - - def next(self): - return _mscl.SwigPyIterator_next(self) - - def __next__(self): - return _mscl.SwigPyIterator___next__(self) - - def previous(self): - return _mscl.SwigPyIterator_previous(self) - - def advance(self, n): - return _mscl.SwigPyIterator_advance(self, n) - - def __eq__(self, x): - return _mscl.SwigPyIterator___eq__(self, x) - - def __ne__(self, x): - return _mscl.SwigPyIterator___ne__(self, x) - - def __iadd__(self, n): - return _mscl.SwigPyIterator___iadd__(self, n) - - def __isub__(self, n): - return _mscl.SwigPyIterator___isub__(self, n) - - def __add__(self, n): - return _mscl.SwigPyIterator___add__(self, n) - - def __sub__(self, *args): - return _mscl.SwigPyIterator___sub__(self, *args) - def __iter__(self): - return self - -# Register SwigPyIterator in _mscl: -_mscl.SwigPyIterator_swigregister(SwigPyIterator) - -SHARED_PTR_DISOWN = _mscl.SHARED_PTR_DISOWN -valueType_float = _mscl.valueType_float -valueType_double = _mscl.valueType_double -valueType_uint8 = _mscl.valueType_uint8 -valueType_uint16 = _mscl.valueType_uint16 -valueType_uint32 = _mscl.valueType_uint32 -valueType_int16 = _mscl.valueType_int16 -valueType_int32 = _mscl.valueType_int32 -valueType_bool = _mscl.valueType_bool -valueType_Vector = _mscl.valueType_Vector -valueType_Matrix = _mscl.valueType_Matrix -valueType_Timestamp = _mscl.valueType_Timestamp -valueType_string = _mscl.valueType_string -valueType_Bytes = _mscl.valueType_Bytes -valueType_StructuralHealth = _mscl.valueType_StructuralHealth -valueType_RfSweep = _mscl.valueType_RfSweep -valueType_ChannelMask = _mscl.valueType_ChannelMask -valueType_int8 = _mscl.valueType_int8 -valueType_uint64 = _mscl.valueType_uint64 -deviceState_idle = _mscl.deviceState_idle -deviceState_sleep = _mscl.deviceState_sleep -deviceState_sampling = _mscl.deviceState_sampling -deviceState_sampling_lostBeacon = _mscl.deviceState_sampling_lostBeacon -deviceState_sampling_inactive = _mscl.deviceState_sampling_inactive -deviceState_unknown = _mscl.deviceState_unknown -class BitMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BitMask_swiginit(self, _mscl.new_BitMask(*args)) - __swig_destroy__ = _mscl.delete_BitMask - - def __eq__(self, other): - return _mscl.BitMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.BitMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.BitMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.BitMask___gt__(self, other) - - def fromMask(self, val): - return _mscl.BitMask_fromMask(self, val) - - def toMask(self): - return _mscl.BitMask_toMask(self) - - def enabledCount(self): - return _mscl.BitMask_enabledCount(self) - - def enabled(self, bitIndex): - return _mscl.BitMask_enabled(self, bitIndex) - - def enable(self, bitIndex, enable=True): - return _mscl.BitMask_enable(self, bitIndex, enable) - - def lastBitEnabled(self): - return _mscl.BitMask_lastBitEnabled(self) - -# Register BitMask in _mscl: -_mscl.BitMask_swigregister(BitMask) - -class ChannelMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_CHANNELS = _mscl.ChannelMask_MAX_CHANNELS - - def __init__(self, *args): - _mscl.ChannelMask_swiginit(self, _mscl.new_ChannelMask(*args)) - __swig_destroy__ = _mscl.delete_ChannelMask - - def __eq__(self, other): - return _mscl.ChannelMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.ChannelMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.ChannelMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.ChannelMask___gt__(self, other) - - def fromMask(self, channelMask): - return _mscl.ChannelMask_fromMask(self, channelMask) - - def toMask(self): - return _mscl.ChannelMask_toMask(self) - - def count(self): - return _mscl.ChannelMask_count(self) - - def enabled(self, channel): - return _mscl.ChannelMask_enabled(self, channel) - - def enable(self, channel, enable=True): - return _mscl.ChannelMask_enable(self, channel, enable) - - def lastChEnabled(self): - return _mscl.ChannelMask_lastChEnabled(self) - -# Register ChannelMask in _mscl: -_mscl.ChannelMask_swigregister(ChannelMask) - -class Value(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_Value - - def storedAs(self): - return _mscl.Value_storedAs(self) - - def as_float(self): - return _mscl.Value_as_float(self) - - def as_double(self): - return _mscl.Value_as_double(self) - - def as_uint8(self): - return _mscl.Value_as_uint8(self) - - def as_uint16(self): - return _mscl.Value_as_uint16(self) - - def as_uint32(self): - return _mscl.Value_as_uint32(self) - - def as_uint64(self): - return _mscl.Value_as_uint64(self) - - def as_int8(self): - return _mscl.Value_as_int8(self) - - def as_int16(self): - return _mscl.Value_as_int16(self) - - def as_int32(self): - return _mscl.Value_as_int32(self) - - def as_bool(self): - return _mscl.Value_as_bool(self) - - def as_ChannelMask(self): - return _mscl.Value_as_ChannelMask(self) - - def as_string(self): - return _mscl.Value_as_string(self) - - def __init__(self): - _mscl.Value_swiginit(self, _mscl.new_Value()) - -# Register Value in _mscl: -_mscl.Value_swigregister(Value) - -class Bin(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, start, end, count): - _mscl.Bin_swiginit(self, _mscl.new_Bin(start, end, count)) - - def start(self): - return _mscl.Bin_start(self) - - def end(self): - return _mscl.Bin_end(self) - - def count(self): - return _mscl.Bin_count(self) - __swig_destroy__ = _mscl.delete_Bin - -# Register Bin in _mscl: -_mscl.Bin_swigregister(Bin) - -class Histogram(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, binsStart, binsSize): - _mscl.Histogram_swiginit(self, _mscl.new_Histogram(binsStart, binsSize)) - - def binsStart(self): - return _mscl.Histogram_binsStart(self) - - def binsSize(self): - return _mscl.Histogram_binsSize(self) - - def bins(self): - return _mscl.Histogram_bins(self) - - def addBin(self, bin): - return _mscl.Histogram_addBin(self, bin) - __swig_destroy__ = _mscl.delete_Histogram - -# Register Histogram in _mscl: -_mscl.Histogram_swigregister(Histogram) - -class Timestamp(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INTERNAL = _mscl.Timestamp_INTERNAL - EXTERNAL = _mscl.Timestamp_EXTERNAL - TIME_OF_ARRIVAL = _mscl.Timestamp_TIME_OF_ARRIVAL - GPS = _mscl.Timestamp_GPS - UNIX = _mscl.Timestamp_UNIX - UTC = _mscl.Timestamp_UTC - - def __init__(self, *args): - _mscl.Timestamp_swiginit(self, _mscl.new_Timestamp(*args)) - __swig_destroy__ = _mscl.delete_Timestamp - - def nanoseconds(self, *args): - return _mscl.Timestamp_nanoseconds(self, *args) - - def seconds(self, *args): - return _mscl.Timestamp_seconds(self, *args) - - def storedEpoch(self): - return _mscl.Timestamp_storedEpoch(self) - - def __str__(self): - return _mscl.Timestamp___str__(self) - - def setTime(self, *args): - return _mscl.Timestamp_setTime(self, *args) - - def setTimeNow(self): - return _mscl.Timestamp_setTimeNow(self) - - @staticmethod - def timeNow(): - return _mscl.Timestamp_timeNow() - - @staticmethod - def setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - - @staticmethod - def getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - - @staticmethod - def gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - - @staticmethod - def utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -# Register Timestamp in _mscl: -_mscl.Timestamp_swigregister(Timestamp) - -def Timestamp_timeNow(): - return _mscl.Timestamp_timeNow() - -def Timestamp_setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - -def Timestamp_getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - -def Timestamp_gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - -def Timestamp_utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -class TimeSpan(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - NANOSECONDS_PER_MICROSECOND = _mscl.TimeSpan_NANOSECONDS_PER_MICROSECOND - NANOSECONDS_PER_MILLISECOND = _mscl.TimeSpan_NANOSECONDS_PER_MILLISECOND - NANOSECONDS_PER_SECOND = _mscl.TimeSpan_NANOSECONDS_PER_SECOND - - def getNanoseconds(self): - return _mscl.TimeSpan_getNanoseconds(self) - - def getMicroseconds(self): - return _mscl.TimeSpan_getMicroseconds(self) - - def getMilliseconds(self): - return _mscl.TimeSpan_getMilliseconds(self) - - def getSeconds(self): - return _mscl.TimeSpan_getSeconds(self) - - @staticmethod - def NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - - @staticmethod - def MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - - @staticmethod - def MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - - @staticmethod - def Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - - @staticmethod - def Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - - @staticmethod - def Hours(hours): - return _mscl.TimeSpan_Hours(hours) - - @staticmethod - def Days(days): - return _mscl.TimeSpan_Days(days) - __swig_destroy__ = _mscl.delete_TimeSpan - -# Register TimeSpan in _mscl: -_mscl.TimeSpan_swigregister(TimeSpan) - -def TimeSpan_NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - -def TimeSpan_MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - -def TimeSpan_MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - -def TimeSpan_Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - -def TimeSpan_Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - -def TimeSpan_Hours(hours): - return _mscl.TimeSpan_Hours(hours) - -def TimeSpan_Days(days): - return _mscl.TimeSpan_Days(days) - -class Version(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Version_swiginit(self, _mscl.new_Version(*args)) - - def __eq__(self, cmp): - return _mscl.Version___eq__(self, cmp) - - def __ne__(self, cmp): - return _mscl.Version___ne__(self, cmp) - - def __lt__(self, cmp): - return _mscl.Version___lt__(self, cmp) - - def __le__(self, cmp): - return _mscl.Version___le__(self, cmp) - - def __gt__(self, cmp): - return _mscl.Version___gt__(self, cmp) - - def __ge__(self, cmp): - return _mscl.Version___ge__(self, cmp) - - def __str__(self): - return _mscl.Version___str__(self) - - def fromString(self, strVersion): - return _mscl.Version_fromString(self, strVersion) - - def majorPart(self): - return _mscl.Version_majorPart(self) - - def minorPart(self): - return _mscl.Version_minorPart(self) - - def patchPart(self): - return _mscl.Version_patchPart(self) - __swig_destroy__ = _mscl.delete_Version - -# Register Version in _mscl: -_mscl.Version_swigregister(Version) - -class DeviceInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.DeviceInfo_connectionType_serial - connectionType_tcp = _mscl.DeviceInfo_connectionType_tcp - - def __init__(self, *args): - _mscl.DeviceInfo_swiginit(self, _mscl.new_DeviceInfo(*args)) - - def description(self): - return _mscl.DeviceInfo_description(self) - - def serial(self): - return _mscl.DeviceInfo_serial(self) - - def baudRate(self): - return _mscl.DeviceInfo_baudRate(self) - - def connectionType(self): - return _mscl.DeviceInfo_connectionType(self) - __swig_destroy__ = _mscl.delete_DeviceInfo - -# Register DeviceInfo in _mscl: -_mscl.DeviceInfo_swigregister(DeviceInfo) -cvar = _mscl.cvar -MSCL_VERSION = cvar.MSCL_VERSION - -class Devices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def listBaseStations(): - return _mscl.Devices_listBaseStations() - - @staticmethod - def listInertialDevices(): - return _mscl.Devices_listInertialDevices() - - @staticmethod - def listPorts(): - return _mscl.Devices_listPorts() - __swig_destroy__ = _mscl.delete_Devices - -# Register Devices in _mscl: -_mscl.Devices_swigregister(Devices) - -def Devices_listBaseStations(): - return _mscl.Devices_listBaseStations() - -def Devices_listInertialDevices(): - return _mscl.Devices_listInertialDevices() - -def Devices_listPorts(): - return _mscl.Devices_listPorts() - -class ConnectionDebugData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ConnectionDebugData_swiginit(self, _mscl.new_ConnectionDebugData(*args)) - - def fromRead(self): - return _mscl.ConnectionDebugData_fromRead(self) - - def timestamp(self): - return _mscl.ConnectionDebugData_timestamp(self) - - def data(self): - return _mscl.ConnectionDebugData_data(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugData - -# Register ConnectionDebugData in _mscl: -_mscl.ConnectionDebugData_swigregister(ConnectionDebugData) - -class Connection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.Connection_connectionType_serial - connectionType_tcp = _mscl.Connection_connectionType_tcp - connectionType_webSocket = _mscl.Connection_connectionType_webSocket - connectionType_unixSocket = _mscl.Connection_connectionType_unixSocket - - def __init__(self): - _mscl.Connection_swiginit(self, _mscl.new_Connection()) - - @staticmethod - def Serial(*args): - return _mscl.Connection_Serial(*args) - - @staticmethod - def TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - - @staticmethod - def UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - - @staticmethod - def Mock(): - return _mscl.Connection_Mock() - - def description(self): - return _mscl.Connection_description(self) - - def port(self): - return _mscl.Connection_port(self) - - def type(self): - return _mscl.Connection_type(self) - - def disconnect(self): - return _mscl.Connection_disconnect(self) - - def reconnect(self): - return _mscl.Connection_reconnect(self) - - def write(self, bytes): - return _mscl.Connection_write(self, bytes) - - def writeStr(self, bytes): - return _mscl.Connection_writeStr(self, bytes) - - def clearBuffer(self): - return _mscl.Connection_clearBuffer(self) - - def byteReadPos(self): - return _mscl.Connection_byteReadPos(self) - - def byteAppendPos(self): - return _mscl.Connection_byteAppendPos(self) - - def rawByteMode(self, *args): - return _mscl.Connection_rawByteMode(self, *args) - - def getRawBytes(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytes(self, timeout, maxBytes, minBytes) - - def getRawBytesStr(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytesStr(self, timeout, maxBytes, minBytes) - - def getRawBytesWithPattern(self, pattern, timeout=0): - return _mscl.Connection_getRawBytesWithPattern(self, pattern, timeout) - - def debugMode(self, *args): - return _mscl.Connection_debugMode(self, *args) - - def getDebugData(self, timeout=0): - return _mscl.Connection_getDebugData(self, timeout) - - def updateBaudRate(self, baudRate): - return _mscl.Connection_updateBaudRate(self, baudRate) - __swig_destroy__ = _mscl.delete_Connection - -# Register Connection in _mscl: -_mscl.Connection_swigregister(Connection) - -def Connection_Serial(*args): - return _mscl.Connection_Serial(*args) - -def Connection_TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - -def Connection_UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - -def Connection_Mock(): - return _mscl.Connection_Mock() - -class WirelessTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - beacon_none = _mscl.WirelessTypes_beacon_none - beacon_internalTimer = _mscl.WirelessTypes_beacon_internalTimer - beacon_internalPPS = _mscl.WirelessTypes_beacon_internalPPS - beacon_externalPPS = _mscl.WirelessTypes_beacon_externalPPS - microcontroller_18F452 = _mscl.WirelessTypes_microcontroller_18F452 - microcontroller_18F4620 = _mscl.WirelessTypes_microcontroller_18F4620 - microcontroller_18F46K20 = _mscl.WirelessTypes_microcontroller_18F46K20 - microcontroller_18F67K90 = _mscl.WirelessTypes_microcontroller_18F67K90 - microcontroller_EFM32WG990F256 = _mscl.WirelessTypes_microcontroller_EFM32WG990F256 - microcontroller_EFR32FG1P132F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32FG1P132F256GM48 - microcontroller_EFR32MG1P232F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32MG1P232F256GM48 - collectionMethod_logOnly = _mscl.WirelessTypes_collectionMethod_logOnly - collectionMethod_transmitOnly = _mscl.WirelessTypes_collectionMethod_transmitOnly - collectionMethod_logAndTransmit = _mscl.WirelessTypes_collectionMethod_logAndTransmit - dataType_first = _mscl.WirelessTypes_dataType_first - dataType_uint16_shifted = _mscl.WirelessTypes_dataType_uint16_shifted - dataType_float32 = _mscl.WirelessTypes_dataType_float32 - dataType_uint16_12bitRes = _mscl.WirelessTypes_dataType_uint16_12bitRes - dataType_uint32 = _mscl.WirelessTypes_dataType_uint32 - dataType_uint16 = _mscl.WirelessTypes_dataType_uint16 - dataType_float32_noCals = _mscl.WirelessTypes_dataType_float32_noCals - dataType_uint24_18bitRes = _mscl.WirelessTypes_dataType_uint24_18bitRes - dataType_uint16_18bitTrunc = _mscl.WirelessTypes_dataType_uint16_18bitTrunc - dataType_int24_20bit = _mscl.WirelessTypes_dataType_int24_20bit - dataType_int16_20bitTrunc = _mscl.WirelessTypes_dataType_int16_20bitTrunc - dataType_uint24 = _mscl.WirelessTypes_dataType_uint24 - dataType_uint16_24bitTrunc = _mscl.WirelessTypes_dataType_uint16_24bitTrunc - dataType_int16_x10 = _mscl.WirelessTypes_dataType_int16_x10 - dataType_last = _mscl.WirelessTypes_dataType_last - dataFormat_raw_uint16 = _mscl.WirelessTypes_dataFormat_raw_uint16 - dataFormat_cal_float = _mscl.WirelessTypes_dataFormat_cal_float - dataFormat_raw_uint24 = _mscl.WirelessTypes_dataFormat_raw_uint24 - dataFormat_raw_int24 = _mscl.WirelessTypes_dataFormat_raw_int24 - dataFormat_raw_int16 = _mscl.WirelessTypes_dataFormat_raw_int16 - dataFormat_cal_int16_x10 = _mscl.WirelessTypes_dataFormat_cal_int16_x10 - syncMode_continuous = _mscl.WirelessTypes_syncMode_continuous - syncMode_burst = _mscl.WirelessTypes_syncMode_burst - samplingMode_sync = _mscl.WirelessTypes_samplingMode_sync - samplingMode_syncBurst = _mscl.WirelessTypes_samplingMode_syncBurst - samplingMode_nonSync = _mscl.WirelessTypes_samplingMode_nonSync - samplingMode_armedDatalog = _mscl.WirelessTypes_samplingMode_armedDatalog - samplingMode_syncEvent = _mscl.WirelessTypes_samplingMode_syncEvent - samplingMode_nonSyncEvent = _mscl.WirelessTypes_samplingMode_nonSyncEvent - defaultMode_idle = _mscl.WirelessTypes_defaultMode_idle - defaultMode_ldc = _mscl.WirelessTypes_defaultMode_ldc - defaultMode_datalog = _mscl.WirelessTypes_defaultMode_datalog - defaultMode_sleep = _mscl.WirelessTypes_defaultMode_sleep - defaultMode_sync = _mscl.WirelessTypes_defaultMode_sync - freq_unknown = _mscl.WirelessTypes_freq_unknown - freq_11 = _mscl.WirelessTypes_freq_11 - freq_12 = _mscl.WirelessTypes_freq_12 - freq_13 = _mscl.WirelessTypes_freq_13 - freq_14 = _mscl.WirelessTypes_freq_14 - freq_15 = _mscl.WirelessTypes_freq_15 - freq_16 = _mscl.WirelessTypes_freq_16 - freq_17 = _mscl.WirelessTypes_freq_17 - freq_18 = _mscl.WirelessTypes_freq_18 - freq_19 = _mscl.WirelessTypes_freq_19 - freq_20 = _mscl.WirelessTypes_freq_20 - freq_21 = _mscl.WirelessTypes_freq_21 - freq_22 = _mscl.WirelessTypes_freq_22 - freq_23 = _mscl.WirelessTypes_freq_23 - freq_24 = _mscl.WirelessTypes_freq_24 - freq_25 = _mscl.WirelessTypes_freq_25 - freq_26 = _mscl.WirelessTypes_freq_26 - power_20dBm = _mscl.WirelessTypes_power_20dBm - power_16dBm = _mscl.WirelessTypes_power_16dBm - power_15dBm = _mscl.WirelessTypes_power_15dBm - power_12dBm = _mscl.WirelessTypes_power_12dBm - power_11dBm = _mscl.WirelessTypes_power_11dBm - power_10dBm = _mscl.WirelessTypes_power_10dBm - power_5dBm = _mscl.WirelessTypes_power_5dBm - power_1dBm = _mscl.WirelessTypes_power_1dBm - power_0dBm = _mscl.WirelessTypes_power_0dBm - retransmission_off = _mscl.WirelessTypes_retransmission_off - retransmission_on = _mscl.WirelessTypes_retransmission_on - retransmission_disabled = _mscl.WirelessTypes_retransmission_disabled - trigger_userInit = _mscl.WirelessTypes_trigger_userInit - trigger_ceiling = _mscl.WirelessTypes_trigger_ceiling - trigger_floor = _mscl.WirelessTypes_trigger_floor - trigger_rampUp = _mscl.WirelessTypes_trigger_rampUp - trigger_rampDown = _mscl.WirelessTypes_trigger_rampDown - equation_none = _mscl.WirelessTypes_equation_none - equation_standard = _mscl.WirelessTypes_equation_standard - unit_none = _mscl.WirelessTypes_unit_none - unit_other_bits = _mscl.WirelessTypes_unit_other_bits - unit_strain_strain = _mscl.WirelessTypes_unit_strain_strain - unit_strain_microStrain = _mscl.WirelessTypes_unit_strain_microStrain - unit_accel_g = _mscl.WirelessTypes_unit_accel_g - unit_accel_mPerSec2 = _mscl.WirelessTypes_unit_accel_mPerSec2 - unit_volts_volts = _mscl.WirelessTypes_unit_volts_volts - unit_volts_millivolts = _mscl.WirelessTypes_unit_volts_millivolts - unit_volts_microvolts = _mscl.WirelessTypes_unit_volts_microvolts - unit_temp_celsius = _mscl.WirelessTypes_unit_temp_celsius - unit_temp_kelvin = _mscl.WirelessTypes_unit_temp_kelvin - unit_temp_fahrenheit = _mscl.WirelessTypes_unit_temp_fahrenheit - unit_displacement_meters = _mscl.WirelessTypes_unit_displacement_meters - unit_displacement_millimeters = _mscl.WirelessTypes_unit_displacement_millimeters - unit_displacement_micrometers = _mscl.WirelessTypes_unit_displacement_micrometers - unit_force_lbf = _mscl.WirelessTypes_unit_force_lbf - unit_force_newtons = _mscl.WirelessTypes_unit_force_newtons - unit_force_kiloNewtons = _mscl.WirelessTypes_unit_force_kiloNewtons - unit_mass_kilograms = _mscl.WirelessTypes_unit_mass_kilograms - unit_pressure_bar = _mscl.WirelessTypes_unit_pressure_bar - unit_pressure_psi = _mscl.WirelessTypes_unit_pressure_psi - unit_pressure_atm = _mscl.WirelessTypes_unit_pressure_atm - unit_pressure_mmHg = _mscl.WirelessTypes_unit_pressure_mmHg - unit_pressure_pascal = _mscl.WirelessTypes_unit_pressure_pascal - unit_pressure_megaPascal = _mscl.WirelessTypes_unit_pressure_megaPascal - unit_pressure_kiloPascal = _mscl.WirelessTypes_unit_pressure_kiloPascal - unit_angDisplacement_degrees = _mscl.WirelessTypes_unit_angDisplacement_degrees - unit_angVelocity_degreesPerSec = _mscl.WirelessTypes_unit_angVelocity_degreesPerSec - unit_angVelocity_radiansPerSec = _mscl.WirelessTypes_unit_angVelocity_radiansPerSec - unit_other_percent = _mscl.WirelessTypes_unit_other_percent - unit_freq_rpm = _mscl.WirelessTypes_unit_freq_rpm - unit_freq_hertz = _mscl.WirelessTypes_unit_freq_hertz - unit_rh_percentRh = _mscl.WirelessTypes_unit_rh_percentRh - unit_other_mVperV = _mscl.WirelessTypes_unit_other_mVperV - unit_accel_milliG = _mscl.WirelessTypes_unit_accel_milliG - unit_accel_ftPerSec2 = _mscl.WirelessTypes_unit_accel_ftPerSec2 - unit_other_percentLife = _mscl.WirelessTypes_unit_other_percentLife - unit_other_count = _mscl.WirelessTypes_unit_other_count - unit_displacement_feet = _mscl.WirelessTypes_unit_displacement_feet - unit_displacement_inches = _mscl.WirelessTypes_unit_displacement_inches - unit_displacement_yards = _mscl.WirelessTypes_unit_displacement_yards - unit_displacement_miles = _mscl.WirelessTypes_unit_displacement_miles - unit_displacement_nautMiles = _mscl.WirelessTypes_unit_displacement_nautMiles - unit_displacement_thouInch = _mscl.WirelessTypes_unit_displacement_thouInch - unit_displacement_hundInch = _mscl.WirelessTypes_unit_displacement_hundInch - unit_displacement_kilometers = _mscl.WirelessTypes_unit_displacement_kilometers - unit_displacement_centimeters = _mscl.WirelessTypes_unit_displacement_centimeters - unit_irradiance_wattsPerSqMeter = _mscl.WirelessTypes_unit_irradiance_wattsPerSqMeter - unit_par_microEinstein = _mscl.WirelessTypes_unit_par_microEinstein - unit_mass_pound = _mscl.WirelessTypes_unit_mass_pound - unit_power_watt = _mscl.WirelessTypes_unit_power_watt - unit_power_milliwatt = _mscl.WirelessTypes_unit_power_milliwatt - unit_power_horsepower = _mscl.WirelessTypes_unit_power_horsepower - unit_reactivePower_var = _mscl.WirelessTypes_unit_reactivePower_var - unit_energy_wattHour = _mscl.WirelessTypes_unit_energy_wattHour - unit_energy_kiloWattHour = _mscl.WirelessTypes_unit_energy_kiloWattHour - unit_reactiveEnergy_VARh = _mscl.WirelessTypes_unit_reactiveEnergy_VARh - unit_reactiveEnergy_kVARh = _mscl.WirelessTypes_unit_reactiveEnergy_kVARh - unit_current_ampere = _mscl.WirelessTypes_unit_current_ampere - unit_current_milliampere = _mscl.WirelessTypes_unit_current_milliampere - unit_current_microampere = _mscl.WirelessTypes_unit_current_microampere - unit_pressure_millibar = _mscl.WirelessTypes_unit_pressure_millibar - unit_pressure_inHg = _mscl.WirelessTypes_unit_pressure_inHg - unit_rssi_dBm = _mscl.WirelessTypes_unit_rssi_dBm - unit_freq_kiloHertz = _mscl.WirelessTypes_unit_freq_kiloHertz - unit_angDisplacement_radians = _mscl.WirelessTypes_unit_angDisplacement_radians - unit_velocity_metersPerSec = _mscl.WirelessTypes_unit_velocity_metersPerSec - unit_velocity_kilometersPerSec = _mscl.WirelessTypes_unit_velocity_kilometersPerSec - unit_velocity_kilometersPerHr = _mscl.WirelessTypes_unit_velocity_kilometersPerHr - unit_velocity_milesPerHr = _mscl.WirelessTypes_unit_velocity_milesPerHr - unit_velocity_knots = _mscl.WirelessTypes_unit_velocity_knots - unit_volume_cubicMeter = _mscl.WirelessTypes_unit_volume_cubicMeter - unit_volume_cubicFt = _mscl.WirelessTypes_unit_volume_cubicFt - unit_volume_liters = _mscl.WirelessTypes_unit_volume_liters - unit_volume_gallon = _mscl.WirelessTypes_unit_volume_gallon - unit_flowRate_cubicMetersPerSec = _mscl.WirelessTypes_unit_flowRate_cubicMetersPerSec - unit_flowRate_cubicFtPerSec = _mscl.WirelessTypes_unit_flowRate_cubicFtPerSec - unit_torque_newtonMeter = _mscl.WirelessTypes_unit_torque_newtonMeter - unit_torque_footPounds = _mscl.WirelessTypes_unit_torque_footPounds - unit_torque_inchPounds = _mscl.WirelessTypes_unit_torque_inchPounds - unit_time_secs = _mscl.WirelessTypes_unit_time_secs - unit_time_nanosecs = _mscl.WirelessTypes_unit_time_nanosecs - unit_time_microsecs = _mscl.WirelessTypes_unit_time_microsecs - unit_time_millisecs = _mscl.WirelessTypes_unit_time_millisecs - unit_time_minutes = _mscl.WirelessTypes_unit_time_minutes - unit_time_hours = _mscl.WirelessTypes_unit_time_hours - unit_time_days = _mscl.WirelessTypes_unit_time_days - unit_time_weeks = _mscl.WirelessTypes_unit_time_weeks - unit_other_value = _mscl.WirelessTypes_unit_other_value - unit_magneticFlux_gauss = _mscl.WirelessTypes_unit_magneticFlux_gauss - unit_other_gSec = _mscl.WirelessTypes_unit_other_gSec - unit_other_secsPerSec = _mscl.WirelessTypes_unit_other_secsPerSec - unit_rssi_dBHz = _mscl.WirelessTypes_unit_rssi_dBHz - unit_density_kgPerMeter3 = _mscl.WirelessTypes_unit_density_kgPerMeter3 - unit_other_unitless = _mscl.WirelessTypes_unit_other_unitless - unit_velocity_inchesPerSec = _mscl.WirelessTypes_unit_velocity_inchesPerSec - unit_force_kg = _mscl.WirelessTypes_unit_force_kg - unit_rawVoltage_volts = _mscl.WirelessTypes_unit_rawVoltage_volts - unit_rawVoltage_millivolts = _mscl.WirelessTypes_unit_rawVoltage_millivolts - unit_rawVoltage_microvolts = _mscl.WirelessTypes_unit_rawVoltage_microvolts - unit_resistance_ohm = _mscl.WirelessTypes_unit_resistance_ohm - unit_resistance_milliohm = _mscl.WirelessTypes_unit_resistance_milliohm - unit_resistance_kiloohm = _mscl.WirelessTypes_unit_resistance_kiloohm - unit_velocity_mmPerSec = _mscl.WirelessTypes_unit_velocity_mmPerSec - unit_mass_grams = _mscl.WirelessTypes_unit_mass_grams - unit_mass_ton = _mscl.WirelessTypes_unit_mass_ton - unit_mass_tonne = _mscl.WirelessTypes_unit_mass_tonne - chType_none = _mscl.WirelessTypes_chType_none - chType_fullDifferential = _mscl.WirelessTypes_chType_fullDifferential - chType_singleEnded = _mscl.WirelessTypes_chType_singleEnded - chType_battery = _mscl.WirelessTypes_chType_battery - chType_temperature = _mscl.WirelessTypes_chType_temperature - chType_rh = _mscl.WirelessTypes_chType_rh - chType_acceleration = _mscl.WirelessTypes_chType_acceleration - chType_displacement = _mscl.WirelessTypes_chType_displacement - chType_voltage = _mscl.WirelessTypes_chType_voltage - chType_diffTemperature = _mscl.WirelessTypes_chType_diffTemperature - chType_digital = _mscl.WirelessTypes_chType_digital - chType_tilt = _mscl.WirelessTypes_chType_tilt - voltageType_singleEnded = _mscl.WirelessTypes_voltageType_singleEnded - voltageType_differential = _mscl.WirelessTypes_voltageType_differential - settling_4ms = _mscl.WirelessTypes_settling_4ms - settling_8ms = _mscl.WirelessTypes_settling_8ms - settling_16ms = _mscl.WirelessTypes_settling_16ms - settling_32ms = _mscl.WirelessTypes_settling_32ms - settling_40ms = _mscl.WirelessTypes_settling_40ms - settling_48ms = _mscl.WirelessTypes_settling_48ms - settling_60ms = _mscl.WirelessTypes_settling_60ms - settling_101ms_90db = _mscl.WirelessTypes_settling_101ms_90db - settling_120ms_80db = _mscl.WirelessTypes_settling_120ms_80db - settling_120ms_65db = _mscl.WirelessTypes_settling_120ms_65db - settling_160ms_69db = _mscl.WirelessTypes_settling_160ms_69db - settling_200ms = _mscl.WirelessTypes_settling_200ms - transducer_thermocouple = _mscl.WirelessTypes_transducer_thermocouple - transducer_rtd = _mscl.WirelessTypes_transducer_rtd - transducer_thermistor = _mscl.WirelessTypes_transducer_thermistor - tc_uncompensated = _mscl.WirelessTypes_tc_uncompensated - tc_K = _mscl.WirelessTypes_tc_K - tc_J = _mscl.WirelessTypes_tc_J - tc_R = _mscl.WirelessTypes_tc_R - tc_S = _mscl.WirelessTypes_tc_S - tc_T = _mscl.WirelessTypes_tc_T - tc_E = _mscl.WirelessTypes_tc_E - tc_B = _mscl.WirelessTypes_tc_B - tc_N = _mscl.WirelessTypes_tc_N - tc_customPolynomial = _mscl.WirelessTypes_tc_customPolynomial - rtd_uncompensated = _mscl.WirelessTypes_rtd_uncompensated - rtd_pt10 = _mscl.WirelessTypes_rtd_pt10 - rtd_pt50 = _mscl.WirelessTypes_rtd_pt50 - rtd_pt100 = _mscl.WirelessTypes_rtd_pt100 - rtd_pt200 = _mscl.WirelessTypes_rtd_pt200 - rtd_pt500 = _mscl.WirelessTypes_rtd_pt500 - rtd_pt1000 = _mscl.WirelessTypes_rtd_pt1000 - rtd_2wire = _mscl.WirelessTypes_rtd_2wire - rtd_3wire = _mscl.WirelessTypes_rtd_3wire - rtd_4wire = _mscl.WirelessTypes_rtd_4wire - thermistor_uncompensated = _mscl.WirelessTypes_thermistor_uncompensated - thermistor_44004_44033 = _mscl.WirelessTypes_thermistor_44004_44033 - thermistor_44005_44030 = _mscl.WirelessTypes_thermistor_44005_44030 - thermistor_44007_44034 = _mscl.WirelessTypes_thermistor_44007_44034 - thermistor_44006_44031 = _mscl.WirelessTypes_thermistor_44006_44031 - thermistor_44008_44032 = _mscl.WirelessTypes_thermistor_44008_44032 - thermistor_ysi_400 = _mscl.WirelessTypes_thermistor_ysi_400 - sampleRate_104170Hz = _mscl.WirelessTypes_sampleRate_104170Hz - sampleRate_78125Hz = _mscl.WirelessTypes_sampleRate_78125Hz - sampleRate_62500Hz = _mscl.WirelessTypes_sampleRate_62500Hz - sampleRate_25000Hz = _mscl.WirelessTypes_sampleRate_25000Hz - sampleRate_12500Hz = _mscl.WirelessTypes_sampleRate_12500Hz - sampleRate_3200Hz = _mscl.WirelessTypes_sampleRate_3200Hz - sampleRate_1600Hz = _mscl.WirelessTypes_sampleRate_1600Hz - sampleRate_800Hz = _mscl.WirelessTypes_sampleRate_800Hz - sampleRate_300Hz = _mscl.WirelessTypes_sampleRate_300Hz - sampleRate_1kHz = _mscl.WirelessTypes_sampleRate_1kHz - sampleRate_2kHz = _mscl.WirelessTypes_sampleRate_2kHz - sampleRate_3kHz = _mscl.WirelessTypes_sampleRate_3kHz - sampleRate_4kHz = _mscl.WirelessTypes_sampleRate_4kHz - sampleRate_5kHz = _mscl.WirelessTypes_sampleRate_5kHz - sampleRate_6kHz = _mscl.WirelessTypes_sampleRate_6kHz - sampleRate_7kHz = _mscl.WirelessTypes_sampleRate_7kHz - sampleRate_8kHz = _mscl.WirelessTypes_sampleRate_8kHz - sampleRate_9kHz = _mscl.WirelessTypes_sampleRate_9kHz - sampleRate_10kHz = _mscl.WirelessTypes_sampleRate_10kHz - sampleRate_20kHz = _mscl.WirelessTypes_sampleRate_20kHz - sampleRate_30kHz = _mscl.WirelessTypes_sampleRate_30kHz - sampleRate_40kHz = _mscl.WirelessTypes_sampleRate_40kHz - sampleRate_50kHz = _mscl.WirelessTypes_sampleRate_50kHz - sampleRate_60kHz = _mscl.WirelessTypes_sampleRate_60kHz - sampleRate_70kHz = _mscl.WirelessTypes_sampleRate_70kHz - sampleRate_80kHz = _mscl.WirelessTypes_sampleRate_80kHz - sampleRate_90kHz = _mscl.WirelessTypes_sampleRate_90kHz - sampleRate_100kHz = _mscl.WirelessTypes_sampleRate_100kHz - sampleRate_887Hz = _mscl.WirelessTypes_sampleRate_887Hz - sampleRate_8192Hz = _mscl.WirelessTypes_sampleRate_8192Hz - sampleRate_4096Hz = _mscl.WirelessTypes_sampleRate_4096Hz - sampleRate_2048Hz = _mscl.WirelessTypes_sampleRate_2048Hz - sampleRate_1024Hz = _mscl.WirelessTypes_sampleRate_1024Hz - sampleRate_512Hz = _mscl.WirelessTypes_sampleRate_512Hz - sampleRate_256Hz = _mscl.WirelessTypes_sampleRate_256Hz - sampleRate_128Hz = _mscl.WirelessTypes_sampleRate_128Hz - sampleRate_64Hz = _mscl.WirelessTypes_sampleRate_64Hz - sampleRate_32Hz = _mscl.WirelessTypes_sampleRate_32Hz - sampleRate_16Hz = _mscl.WirelessTypes_sampleRate_16Hz - sampleRate_8Hz = _mscl.WirelessTypes_sampleRate_8Hz - sampleRate_4Hz = _mscl.WirelessTypes_sampleRate_4Hz - sampleRate_2Hz = _mscl.WirelessTypes_sampleRate_2Hz - sampleRate_1Hz = _mscl.WirelessTypes_sampleRate_1Hz - sampleRate_2Sec = _mscl.WirelessTypes_sampleRate_2Sec - sampleRate_5Sec = _mscl.WirelessTypes_sampleRate_5Sec - sampleRate_10Sec = _mscl.WirelessTypes_sampleRate_10Sec - sampleRate_30Sec = _mscl.WirelessTypes_sampleRate_30Sec - sampleRate_1Min = _mscl.WirelessTypes_sampleRate_1Min - sampleRate_2Min = _mscl.WirelessTypes_sampleRate_2Min - sampleRate_5Min = _mscl.WirelessTypes_sampleRate_5Min - sampleRate_10Min = _mscl.WirelessTypes_sampleRate_10Min - sampleRate_30Min = _mscl.WirelessTypes_sampleRate_30Min - sampleRate_60Min = _mscl.WirelessTypes_sampleRate_60Min - sampleRate_24Hours = _mscl.WirelessTypes_sampleRate_24Hours - region_usa = _mscl.WirelessTypes_region_usa - region_europeanUnion = _mscl.WirelessTypes_region_europeanUnion - region_japan = _mscl.WirelessTypes_region_japan - region_other = _mscl.WirelessTypes_region_other - region_brazil = _mscl.WirelessTypes_region_brazil - region_china = _mscl.WirelessTypes_region_china - region_australia_newzealand = _mscl.WirelessTypes_region_australia_newzealand - region_singapore = _mscl.WirelessTypes_region_singapore - region_canada = _mscl.WirelessTypes_region_canada - region_southAfrica = _mscl.WirelessTypes_region_southAfrica - region_indonesia = _mscl.WirelessTypes_region_indonesia - region_taiwan = _mscl.WirelessTypes_region_taiwan - chSetting_inputRange = _mscl.WirelessTypes_chSetting_inputRange - chSetting_filterSettlingTime = _mscl.WirelessTypes_chSetting_filterSettlingTime - chSetting_thermocoupleType = _mscl.WirelessTypes_chSetting_thermocoupleType - chSetting_linearEquation = _mscl.WirelessTypes_chSetting_linearEquation - chSetting_unit = _mscl.WirelessTypes_chSetting_unit - chSetting_equationType = _mscl.WirelessTypes_chSetting_equationType - chSetting_hardwareOffset = _mscl.WirelessTypes_chSetting_hardwareOffset - chSetting_autoBalance = _mscl.WirelessTypes_chSetting_autoBalance - chSetting_gaugeFactor = _mscl.WirelessTypes_chSetting_gaugeFactor - chSetting_antiAliasingFilter = _mscl.WirelessTypes_chSetting_antiAliasingFilter - chSetting_legacyShuntCal = _mscl.WirelessTypes_chSetting_legacyShuntCal - chSetting_autoShuntCal = _mscl.WirelessTypes_chSetting_autoShuntCal - chSetting_lowPassFilter = _mscl.WirelessTypes_chSetting_lowPassFilter - chSetting_highPassFilter = _mscl.WirelessTypes_chSetting_highPassFilter - chSetting_tempSensorOptions = _mscl.WirelessTypes_chSetting_tempSensorOptions - chSetting_debounceFilter = _mscl.WirelessTypes_chSetting_debounceFilter - chSetting_pullUpResistor = _mscl.WirelessTypes_chSetting_pullUpResistor - chSetting_factoryLinearEq = _mscl.WirelessTypes_chSetting_factoryLinearEq - chSetting_factoryUnit = _mscl.WirelessTypes_chSetting_factoryUnit - chSetting_factoryEqType = _mscl.WirelessTypes_chSetting_factoryEqType - autobalance_success = _mscl.WirelessTypes_autobalance_success - autobalance_maybeInvalid = _mscl.WirelessTypes_autobalance_maybeInvalid - autobalance_notSupportedByNode = _mscl.WirelessTypes_autobalance_notSupportedByNode - autobalance_notSupportedByCh = _mscl.WirelessTypes_autobalance_notSupportedByCh - autobalance_targetOutOfRange = _mscl.WirelessTypes_autobalance_targetOutOfRange - autobalance_failed = _mscl.WirelessTypes_autobalance_failed - autobalance_legacyNone = _mscl.WirelessTypes_autobalance_legacyNone - autobalance_notComplete = _mscl.WirelessTypes_autobalance_notComplete - autocal_success = _mscl.WirelessTypes_autocal_success - autocal_maybeInvalid_applied = _mscl.WirelessTypes_autocal_maybeInvalid_applied - autocal_maybeInvalid_notApplied = _mscl.WirelessTypes_autocal_maybeInvalid_notApplied - autocal_notComplete = _mscl.WirelessTypes_autocal_notComplete - autocalError_none = _mscl.WirelessTypes_autocalError_none - autocalError_sensorDetached = _mscl.WirelessTypes_autocalError_sensorDetached - autocalError_sensorShorted = _mscl.WirelessTypes_autocalError_sensorShorted - autocalError_unsupportedChannel = _mscl.WirelessTypes_autocalError_unsupportedChannel - autocalError_baseHighRail = _mscl.WirelessTypes_autocalError_baseHighRail - autocalError_baseLowRail = _mscl.WirelessTypes_autocalError_baseLowRail - autocalError_shuntHighRail = _mscl.WirelessTypes_autocalError_shuntHighRail - autocalError_shuntLowRail = _mscl.WirelessTypes_autocalError_shuntLowRail - autocalError_ramp = _mscl.WirelessTypes_autocalError_ramp - autocalError_noShunt = _mscl.WirelessTypes_autocalError_noShunt - autocalError_timeout = _mscl.WirelessTypes_autocalError_timeout - fatigueMode_angleStrain = _mscl.WirelessTypes_fatigueMode_angleStrain - fatigueMode_distributedAngle = _mscl.WirelessTypes_fatigueMode_distributedAngle - fatigueMode_rawGaugeStrain = _mscl.WirelessTypes_fatigueMode_rawGaugeStrain - eventTrigger_ceiling = _mscl.WirelessTypes_eventTrigger_ceiling - eventTrigger_floor = _mscl.WirelessTypes_eventTrigger_floor - filter_33000hz = _mscl.WirelessTypes_filter_33000hz - filter_20000hz = _mscl.WirelessTypes_filter_20000hz - filter_10000hz = _mscl.WirelessTypes_filter_10000hz - filter_5222hz = _mscl.WirelessTypes_filter_5222hz - filter_5000hz = _mscl.WirelessTypes_filter_5000hz - filter_4416hz = _mscl.WirelessTypes_filter_4416hz - filter_4096hz = _mscl.WirelessTypes_filter_4096hz - filter_4000hz = _mscl.WirelessTypes_filter_4000hz - filter_2208hz = _mscl.WirelessTypes_filter_2208hz - filter_2048hz = _mscl.WirelessTypes_filter_2048hz - filter_2000hz = _mscl.WirelessTypes_filter_2000hz - filter_1104hz = _mscl.WirelessTypes_filter_1104hz - filter_1024hz = _mscl.WirelessTypes_filter_1024hz - filter_1000hz = _mscl.WirelessTypes_filter_1000hz - filter_800hz = _mscl.WirelessTypes_filter_800hz - filter_552hz = _mscl.WirelessTypes_filter_552hz - filter_512hz = _mscl.WirelessTypes_filter_512hz - filter_500hz = _mscl.WirelessTypes_filter_500hz - filter_418hz = _mscl.WirelessTypes_filter_418hz - filter_294hz = _mscl.WirelessTypes_filter_294hz - filter_256hz = _mscl.WirelessTypes_filter_256hz - filter_250hz = _mscl.WirelessTypes_filter_250hz - filter_209hz = _mscl.WirelessTypes_filter_209hz - filter_200hz = _mscl.WirelessTypes_filter_200hz - filter_147hz = _mscl.WirelessTypes_filter_147hz - filter_128hz = _mscl.WirelessTypes_filter_128hz - filter_125hz = _mscl.WirelessTypes_filter_125hz - filter_104hz = _mscl.WirelessTypes_filter_104hz - filter_100hz = _mscl.WirelessTypes_filter_100hz - filter_62hz = _mscl.WirelessTypes_filter_62hz - filter_52hz = _mscl.WirelessTypes_filter_52hz - filter_50hz = _mscl.WirelessTypes_filter_50hz - filter_31hz = _mscl.WirelessTypes_filter_31hz - filter_26hz = _mscl.WirelessTypes_filter_26hz - filter_12_66hz = _mscl.WirelessTypes_filter_12_66hz - filter_2_6hz = _mscl.WirelessTypes_filter_2_6hz - highPass_off = _mscl.WirelessTypes_highPass_off - highPass_auto = _mscl.WirelessTypes_highPass_auto - cfc_10 = _mscl.WirelessTypes_cfc_10 - cfc_21 = _mscl.WirelessTypes_cfc_21 - cfc_60 = _mscl.WirelessTypes_cfc_60 - storageLimit_overwrite = _mscl.WirelessTypes_storageLimit_overwrite - storageLimit_stop = _mscl.WirelessTypes_storageLimit_stop - range_14_545mV = _mscl.WirelessTypes_range_14_545mV - range_10_236mV = _mscl.WirelessTypes_range_10_236mV - range_7_608mV = _mscl.WirelessTypes_range_7_608mV - range_4_046mV = _mscl.WirelessTypes_range_4_046mV - range_2_008mV = _mscl.WirelessTypes_range_2_008mV - range_1_511mV = _mscl.WirelessTypes_range_1_511mV - range_1_001mV = _mscl.WirelessTypes_range_1_001mV - range_0_812mV = _mscl.WirelessTypes_range_0_812mV - range_75mV = _mscl.WirelessTypes_range_75mV - range_37_5mV = _mscl.WirelessTypes_range_37_5mV - range_18_75mV = _mscl.WirelessTypes_range_18_75mV - range_9_38mV = _mscl.WirelessTypes_range_9_38mV - range_4_69mV = _mscl.WirelessTypes_range_4_69mV - range_2_34mV = _mscl.WirelessTypes_range_2_34mV - range_1_17mV = _mscl.WirelessTypes_range_1_17mV - range_0_586mV = _mscl.WirelessTypes_range_0_586mV - range_70mV = _mscl.WirelessTypes_range_70mV - range_35mV = _mscl.WirelessTypes_range_35mV - range_17_5mV = _mscl.WirelessTypes_range_17_5mV - range_8_75mV = _mscl.WirelessTypes_range_8_75mV - range_4_38mV = _mscl.WirelessTypes_range_4_38mV - range_2_19mV = _mscl.WirelessTypes_range_2_19mV - range_1_09mV = _mscl.WirelessTypes_range_1_09mV - range_0_547mV = _mscl.WirelessTypes_range_0_547mV - range_44mV = _mscl.WirelessTypes_range_44mV - range_30mV = _mscl.WirelessTypes_range_30mV - range_20mV = _mscl.WirelessTypes_range_20mV - range_15mV = _mscl.WirelessTypes_range_15mV - range_10mV = _mscl.WirelessTypes_range_10mV - range_5mV = _mscl.WirelessTypes_range_5mV - range_3mV = _mscl.WirelessTypes_range_3mV - range_2mV = _mscl.WirelessTypes_range_2mV - range_6mV = _mscl.WirelessTypes_range_6mV - range_1mV = _mscl.WirelessTypes_range_1mV - range_50mV = _mscl.WirelessTypes_range_50mV - range_2_5mV = _mscl.WirelessTypes_range_2_5mV - range_0_6mV = _mscl.WirelessTypes_range_0_6mV - range_0_35mV = _mscl.WirelessTypes_range_0_35mV - range_0_1mV = _mscl.WirelessTypes_range_0_1mV - range_156mV = _mscl.WirelessTypes_range_156mV - range_78_1mV = _mscl.WirelessTypes_range_78_1mV - range_39mV = _mscl.WirelessTypes_range_39mV - range_19_5mV = _mscl.WirelessTypes_range_19_5mV - range_9_76mV = _mscl.WirelessTypes_range_9_76mV - range_4_88mV = _mscl.WirelessTypes_range_4_88mV - range_2_44mV = _mscl.WirelessTypes_range_2_44mV - range_1_22mV = _mscl.WirelessTypes_range_1_22mV - range_10_24V = _mscl.WirelessTypes_range_10_24V - range_5_12V = _mscl.WirelessTypes_range_5_12V - range_2_56V = _mscl.WirelessTypes_range_2_56V - range_0to10_24V = _mscl.WirelessTypes_range_0to10_24V - range_0to5_12V = _mscl.WirelessTypes_range_0to5_12V - range_1_147V = _mscl.WirelessTypes_range_1_147V - range_585mV = _mscl.WirelessTypes_range_585mV - range_292_5mV = _mscl.WirelessTypes_range_292_5mV - range_146_25mV = _mscl.WirelessTypes_range_146_25mV - range_73_13mV = _mscl.WirelessTypes_range_73_13mV - range_36_56mV = _mscl.WirelessTypes_range_36_56mV - range_18_23mV = _mscl.WirelessTypes_range_18_23mV - range_9_14mV = _mscl.WirelessTypes_range_9_14mV - range_5_74V = _mscl.WirelessTypes_range_5_74V - range_2_93V = _mscl.WirelessTypes_range_2_93V - range_1_46V = _mscl.WirelessTypes_range_1_46V - range_731_3mV = _mscl.WirelessTypes_range_731_3mV - range_365_6mV = _mscl.WirelessTypes_range_365_6mV - range_182_8mV = _mscl.WirelessTypes_range_182_8mV - range_91_4mV = _mscl.WirelessTypes_range_91_4mV - range_45_7mV = _mscl.WirelessTypes_range_45_7mV - range_62_5mV = _mscl.WirelessTypes_range_62_5mV - range_31_25mV = _mscl.WirelessTypes_range_31_25mV - range_15_63mV = _mscl.WirelessTypes_range_15_63mV - range_7_81mV = _mscl.WirelessTypes_range_7_81mV - range_3_91mV = _mscl.WirelessTypes_range_3_91mV - range_1_95mV = _mscl.WirelessTypes_range_1_95mV - range_0_976mV = _mscl.WirelessTypes_range_0_976mV - range_0_488mV = _mscl.WirelessTypes_range_0_488mV - range_2G = _mscl.WirelessTypes_range_2G - range_4G = _mscl.WirelessTypes_range_4G - range_8G = _mscl.WirelessTypes_range_8G - range_10G = _mscl.WirelessTypes_range_10G - range_20G = _mscl.WirelessTypes_range_20G - range_40G = _mscl.WirelessTypes_range_40G - range_2_5V = _mscl.WirelessTypes_range_2_5V - range_1_25V = _mscl.WirelessTypes_range_1_25V - range_625mV = _mscl.WirelessTypes_range_625mV - range_312_5mV = _mscl.WirelessTypes_range_312_5mV - range_156_25mV = _mscl.WirelessTypes_range_156_25mV - range_78_125mV = _mscl.WirelessTypes_range_78_125mV - range_39_063mV = _mscl.WirelessTypes_range_39_063mV - range_19_532mV = _mscl.WirelessTypes_range_19_532mV - range_0to2_5V = _mscl.WirelessTypes_range_0to2_5V - range_0to1_25V = _mscl.WirelessTypes_range_0to1_25V - range_0to625mV = _mscl.WirelessTypes_range_0to625mV - range_0to312_5mV = _mscl.WirelessTypes_range_0to312_5mV - range_0to156_25mV = _mscl.WirelessTypes_range_0to156_25mV - range_0to78_125mV = _mscl.WirelessTypes_range_0to78_125mV - range_0to39_063mV = _mscl.WirelessTypes_range_0to39_063mV - range_0to19_532mV = _mscl.WirelessTypes_range_0to19_532mV - range_9_766mV = _mscl.WirelessTypes_range_9_766mV - range_1_35V_or_0to1000000ohm = _mscl.WirelessTypes_range_1_35V_or_0to1000000ohm - range_1_25V_or_0to10000ohm = _mscl.WirelessTypes_range_1_25V_or_0to10000ohm - range_625mV_or_0to3333_3ohm = _mscl.WirelessTypes_range_625mV_or_0to3333_3ohm - range_312_5mV_or_0to1428_6ohm = _mscl.WirelessTypes_range_312_5mV_or_0to1428_6ohm - range_156_25mV_or_0to666_67ohm = _mscl.WirelessTypes_range_156_25mV_or_0to666_67ohm - range_78_125mV_or_0to322_58ohm = _mscl.WirelessTypes_range_78_125mV_or_0to322_58ohm - range_39_0625mV_or_0to158_73ohm = _mscl.WirelessTypes_range_39_0625mV_or_0to158_73ohm - range_19_5313mV_or_0to78_74ohm = _mscl.WirelessTypes_range_19_5313mV_or_0to78_74ohm - range_750mV = _mscl.WirelessTypes_range_750mV - range_375mV = _mscl.WirelessTypes_range_375mV - range_187_5mV = _mscl.WirelessTypes_range_187_5mV - range_93_75mV = _mscl.WirelessTypes_range_93_75mV - range_46_875mV = _mscl.WirelessTypes_range_46_875mV - range_23_438mV = _mscl.WirelessTypes_range_23_438mV - range_11_719mV = _mscl.WirelessTypes_range_11_719mV - range_5_859mV = _mscl.WirelessTypes_range_5_859mV - range_0to1_5V = _mscl.WirelessTypes_range_0to1_5V - range_0to750mV = _mscl.WirelessTypes_range_0to750mV - range_0to375mV = _mscl.WirelessTypes_range_0to375mV - range_0to187_5mV = _mscl.WirelessTypes_range_0to187_5mV - range_0to93_75mV = _mscl.WirelessTypes_range_0to93_75mV - range_0to46_875mV = _mscl.WirelessTypes_range_0to46_875mV - range_0to23_438mV = _mscl.WirelessTypes_range_0to23_438mV - range_0to11_719mV = _mscl.WirelessTypes_range_0to11_719mV - range_1_5V = _mscl.WirelessTypes_range_1_5V - range_1_35V = _mscl.WirelessTypes_range_1_35V - range_0to1000000ohm = _mscl.WirelessTypes_range_0to1000000ohm - range_0to10000ohm = _mscl.WirelessTypes_range_0to10000ohm - range_0to3333_3ohm = _mscl.WirelessTypes_range_0to3333_3ohm - range_0to1428_6ohm = _mscl.WirelessTypes_range_0to1428_6ohm - range_0to666_67ohm = _mscl.WirelessTypes_range_0to666_67ohm - range_0to322_58ohm = _mscl.WirelessTypes_range_0to322_58ohm - range_0to158_73ohm = _mscl.WirelessTypes_range_0to158_73ohm - range_0to78_74ohm = _mscl.WirelessTypes_range_0to78_74ohm - range_39_0625mV = _mscl.WirelessTypes_range_39_0625mV - range_19_5313mV = _mscl.WirelessTypes_range_19_5313mV - range_125mV = _mscl.WirelessTypes_range_125mV - range_invalid = _mscl.WirelessTypes_range_invalid - dataMode_none = _mscl.WirelessTypes_dataMode_none - dataMode_raw = _mscl.WirelessTypes_dataMode_raw - dataMode_derived = _mscl.WirelessTypes_dataMode_derived - dataMode_raw_derived = _mscl.WirelessTypes_dataMode_raw_derived - derivedCategory_rms = _mscl.WirelessTypes_derivedCategory_rms - derivedCategory_peakToPeak = _mscl.WirelessTypes_derivedCategory_peakToPeak - derivedCategory_velocity = _mscl.WirelessTypes_derivedCategory_velocity - derivedCategory_crestFactor = _mscl.WirelessTypes_derivedCategory_crestFactor - derivedCategory_mean = _mscl.WirelessTypes_derivedCategory_mean - derivedAlgId_rms = _mscl.WirelessTypes_derivedAlgId_rms - derivedAlgId_peakToPeak = _mscl.WirelessTypes_derivedAlgId_peakToPeak - derivedAlgId_ips = _mscl.WirelessTypes_derivedAlgId_ips - derivedAlgId_crestFactor = _mscl.WirelessTypes_derivedAlgId_crestFactor - derivedAlgId_mean = _mscl.WirelessTypes_derivedAlgId_mean - derivedAlgId_mmps = _mscl.WirelessTypes_derivedAlgId_mmps - derivedVelocity_ips = _mscl.WirelessTypes_derivedVelocity_ips - derivedVelocity_mmps = _mscl.WirelessTypes_derivedVelocity_mmps - commProtocol_lxrs = _mscl.WirelessTypes_commProtocol_lxrs - commProtocol_lxrsPlus = _mscl.WirelessTypes_commProtocol_lxrsPlus - voltage_5120mV = _mscl.WirelessTypes_voltage_5120mV - voltage_5000mV = _mscl.WirelessTypes_voltage_5000mV - voltage_4096mV = _mscl.WirelessTypes_voltage_4096mV - voltage_3000mV = _mscl.WirelessTypes_voltage_3000mV - voltage_2800mV = _mscl.WirelessTypes_voltage_2800mV - voltage_2750mV = _mscl.WirelessTypes_voltage_2750mV - voltage_2700mV = _mscl.WirelessTypes_voltage_2700mV - voltage_2500mV = _mscl.WirelessTypes_voltage_2500mV - voltage_1500mV = _mscl.WirelessTypes_voltage_1500mV - sensorOutputMode_accel = _mscl.WirelessTypes_sensorOutputMode_accel - sensorOutputMode_tilt = _mscl.WirelessTypes_sensorOutputMode_tilt - batteryStatus_good = _mscl.WirelessTypes_batteryStatus_good - batteryStatus_low = _mscl.WirelessTypes_batteryStatus_low - batteryStatus_critical = _mscl.WirelessTypes_batteryStatus_critical - externalPower_notConnected = _mscl.WirelessTypes_externalPower_notConnected - externalPower_connected = _mscl.WirelessTypes_externalPower_connected - delayVersion_v1 = _mscl.WirelessTypes_delayVersion_v1 - delayVersion_v2 = _mscl.WirelessTypes_delayVersion_v2 - delayVersion_v3 = _mscl.WirelessTypes_delayVersion_v3 - delayVersion_v4 = _mscl.WirelessTypes_delayVersion_v4 - UNKNOWN_RSSI = _mscl.WirelessTypes_UNKNOWN_RSSI - - def __init__(self): - _mscl.WirelessTypes_swiginit(self, _mscl.new_WirelessTypes()) - __swig_destroy__ = _mscl.delete_WirelessTypes - -# Register WirelessTypes in _mscl: -_mscl.WirelessTypes_swigregister(WirelessTypes) - -class SampleRate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - rateType_seconds = _mscl.SampleRate_rateType_seconds - rateType_hertz = _mscl.SampleRate_rateType_hertz - rateType_event = _mscl.SampleRate_rateType_event - rateType_decimation = _mscl.SampleRate_rateType_decimation - - def __init__(self, *args): - _mscl.SampleRate_swiginit(self, _mscl.new_SampleRate(*args)) - - def __str__(self): - return _mscl.SampleRate___str__(self) - - def prettyStr(self): - return _mscl.SampleRate_prettyStr(self) - - def samplePeriod(self): - return _mscl.SampleRate_samplePeriod(self) - - def samplesPerSecond(self): - return _mscl.SampleRate_samplesPerSecond(self) - - def rateType(self): - return _mscl.SampleRate_rateType(self) - - def samples(self): - return _mscl.SampleRate_samples(self) - - def toWirelessSampleRate(self): - return _mscl.SampleRate_toWirelessSampleRate(self) - - def toDecimation(self, sampleRateBase): - return _mscl.SampleRate_toDecimation(self, sampleRateBase) - - @staticmethod - def Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - - @staticmethod - def KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - - @staticmethod - def Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - - @staticmethod - def Event(): - return _mscl.SampleRate_Event() - - @staticmethod - def Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - - @staticmethod - def FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - - @staticmethod - def FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - __swig_destroy__ = _mscl.delete_SampleRate - -# Register SampleRate in _mscl: -_mscl.SampleRate_swigregister(SampleRate) - -def SampleRate_Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - -def SampleRate_KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - -def SampleRate_Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - -def SampleRate_Event(): - return _mscl.SampleRate_Event() - -def SampleRate_Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - -def SampleRate_FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - -def SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - -class Matrix(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Matrix_swiginit(self, _mscl.new_Matrix()) - - def valuesType(self): - return _mscl.Matrix_valuesType(self) - - def rows(self): - return _mscl.Matrix_rows(self) - - def columns(self): - return _mscl.Matrix_columns(self) - - def as_doubleAt(self, row, column): - return _mscl.Matrix_as_doubleAt(self, row, column) - - def as_floatAt(self, row, column): - return _mscl.Matrix_as_floatAt(self, row, column) - - def as_uint16At(self, row, column): - return _mscl.Matrix_as_uint16At(self, row, column) - - def as_uint8At(self, row, column): - return _mscl.Matrix_as_uint8At(self, row, column) - - def __str__(self): - return _mscl.Matrix___str__(self) - __swig_destroy__ = _mscl.delete_Matrix - -# Register Matrix in _mscl: -_mscl.Matrix_swigregister(Matrix) - -class Vector(Matrix): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Vector_swiginit(self, _mscl.new_Vector()) - - def size(self): - return _mscl.Vector_size(self) - - def as_doubleAt(self, index): - return _mscl.Vector_as_doubleAt(self, index) - - def as_floatAt(self, index): - return _mscl.Vector_as_floatAt(self, index) - - def as_uint16At(self, index): - return _mscl.Vector_as_uint16At(self, index) - - def as_uint8At(self, index): - return _mscl.Vector_as_uint8At(self, index) - __swig_destroy__ = _mscl.delete_Vector - -# Register Vector in _mscl: -_mscl.Vector_swigregister(Vector) - -class Bitfield(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Bitfield_swiginit(self, _mscl.new_Bitfield(*args)) - __swig_destroy__ = _mscl.delete_Bitfield - - def value(self, *args): - return _mscl.Bitfield_value(self, *args) - - def get(self, mask, shiftToLsb=True): - return _mscl.Bitfield_get(self, mask, shiftToLsb) - - def set(self, mask, value, shiftRequired=True): - return _mscl.Bitfield_set(self, mask, value, shiftRequired) - - def checkBit(self, bitIndex, indexBase=0): - return _mscl.Bitfield_checkBit(self, bitIndex, indexBase) - - def setBit(self, bitIndex, value, indexBase=0): - return _mscl.Bitfield_setBit(self, bitIndex, value, indexBase) - -# Register Bitfield in _mscl: -_mscl.Bitfield_swigregister(Bitfield) - -class StructuralHealth(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, angle, uptime, damage, processingRate, histogram): - _mscl.StructuralHealth_swiginit(self, _mscl.new_StructuralHealth(angle, uptime, damage, processingRate, histogram)) - - def angle(self): - return _mscl.StructuralHealth_angle(self) - - def uptime(self): - return _mscl.StructuralHealth_uptime(self) - - def damage(self): - return _mscl.StructuralHealth_damage(self) - - def processingRate(self): - return _mscl.StructuralHealth_processingRate(self) - - def histogram(self): - return _mscl.StructuralHealth_histogram(self) - __swig_destroy__ = _mscl.delete_StructuralHealth - -# Register StructuralHealth in _mscl: -_mscl.StructuralHealth_swigregister(StructuralHealth) - -class DataPoint(Value): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - channelPropertyId_angle = _mscl.DataPoint_channelPropertyId_angle - channelPropertyId_derivedFrom = _mscl.DataPoint_channelPropertyId_derivedFrom - channelPropertyId_derivedAlgorithmId = _mscl.DataPoint_channelPropertyId_derivedAlgorithmId - __swig_destroy__ = _mscl.delete_DataPoint - - def channelProperty(self, id): - return _mscl.DataPoint_channelProperty(self, id) - - def as_Vector(self): - return _mscl.DataPoint_as_Vector(self) - - def as_Matrix(self): - return _mscl.DataPoint_as_Matrix(self) - - def as_Timestamp(self): - return _mscl.DataPoint_as_Timestamp(self) - - def as_Bytes(self): - return _mscl.DataPoint_as_Bytes(self) - - def as_StructuralHealth(self): - return _mscl.DataPoint_as_StructuralHealth(self) - - def as_RfSweep(self): - return _mscl.DataPoint_as_RfSweep(self) - - def as_string(self): - return _mscl.DataPoint_as_string(self) - -# Register DataPoint in _mscl: -_mscl.DataPoint_swigregister(DataPoint) - -class ConfigIssue(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONFIG_SAMPLING_MODE = _mscl.ConfigIssue_CONFIG_SAMPLING_MODE - CONFIG_ACTIVE_CHANNELS = _mscl.ConfigIssue_CONFIG_ACTIVE_CHANNELS - CONFIG_SAMPLE_RATE = _mscl.ConfigIssue_CONFIG_SAMPLE_RATE - CONFIG_SWEEPS = _mscl.ConfigIssue_CONFIG_SWEEPS - CONFIG_UNLIMITED_DURATION = _mscl.ConfigIssue_CONFIG_UNLIMITED_DURATION - CONFIG_DATA_FORMAT = _mscl.ConfigIssue_CONFIG_DATA_FORMAT - CONFIG_DATA_COLLECTION_METHOD = _mscl.ConfigIssue_CONFIG_DATA_COLLECTION_METHOD - CONFIG_TIME_BETWEEN_BURSTS = _mscl.ConfigIssue_CONFIG_TIME_BETWEEN_BURSTS - CONFIG_THERMOCOUPLE_TYPE = _mscl.ConfigIssue_CONFIG_THERMOCOUPLE_TYPE - CONFIG_FILTER_SETTLING_TIME = _mscl.ConfigIssue_CONFIG_FILTER_SETTLING_TIME - CONFIG_BUTTON = _mscl.ConfigIssue_CONFIG_BUTTON - CONFIG_ANALOG_PAIR = _mscl.ConfigIssue_CONFIG_ANALOG_PAIR - CONFIG_INPUT_RANGE = _mscl.ConfigIssue_CONFIG_INPUT_RANGE - CONFIG_INACTIVITY_TIMEOUT = _mscl.ConfigIssue_CONFIG_INACTIVITY_TIMEOUT - CONFIG_CHECK_RADIO_INTERVAL = _mscl.ConfigIssue_CONFIG_CHECK_RADIO_INTERVAL - CONFIG_LOST_BEACON_TIMEOUT = _mscl.ConfigIssue_CONFIG_LOST_BEACON_TIMEOUT - CONFIG_DEFAULT_MODE = _mscl.ConfigIssue_CONFIG_DEFAULT_MODE - CONFIG_TRANSMIT_POWER = _mscl.ConfigIssue_CONFIG_TRANSMIT_POWER - CONFIG_LINEAR_EQUATION = _mscl.ConfigIssue_CONFIG_LINEAR_EQUATION - CONFIG_FATIGUE = _mscl.ConfigIssue_CONFIG_FATIGUE - CONFIG_FATIGUE_MODE = _mscl.ConfigIssue_CONFIG_FATIGUE_MODE - CONFIG_FATIGUE_ANGLE_ID = _mscl.ConfigIssue_CONFIG_FATIGUE_ANGLE_ID - CONFIG_FATIGUE_SN_CURVE = _mscl.ConfigIssue_CONFIG_FATIGUE_SN_CURVE - CONFIG_FATIGUE_DIST_NUM_ANGLES = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_NUM_ANGLES - CONFIG_FATIGUE_DIST_ANGLE = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_ANGLE - CONFIG_HISTOGRAM = _mscl.ConfigIssue_CONFIG_HISTOGRAM - CONFIG_HISTOGRAM_TX_RATE = _mscl.ConfigIssue_CONFIG_HISTOGRAM_TX_RATE - CONFIG_HARDWARE_OFFSET = _mscl.ConfigIssue_CONFIG_HARDWARE_OFFSET - CONFIG_ACTIVITY_SENSE = _mscl.ConfigIssue_CONFIG_ACTIVITY_SENSE - CONFIG_GAUGE_FACTOR = _mscl.ConfigIssue_CONFIG_GAUGE_FACTOR - CONFIG_EVENT_TRIGGER = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER - CONFIG_EVENT_TRIGGER_DURATION = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_DURATION - CONFIG_EVENT_TRIGGER_MASK = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_MASK - CONFIG_DIAGNOSTIC_INTERVAL = _mscl.ConfigIssue_CONFIG_DIAGNOSTIC_INTERVAL - CONFIG_ANTI_ALIASING_FILTER = _mscl.ConfigIssue_CONFIG_ANTI_ALIASING_FILTER - CONFIG_STORAGE_LIMIT_MODE = _mscl.ConfigIssue_CONFIG_STORAGE_LIMIT_MODE - CONFIG_SENSOR_DELAY = _mscl.ConfigIssue_CONFIG_SENSOR_DELAY - CONFIG_LOW_PASS_FILTER = _mscl.ConfigIssue_CONFIG_LOW_PASS_FILTER - CONFIG_DATA_MODE = _mscl.ConfigIssue_CONFIG_DATA_MODE - CONFIG_DERIVED_DATA_RATE = _mscl.ConfigIssue_CONFIG_DERIVED_DATA_RATE - CONFIG_DERIVED_MASK_RMS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_RMS - CONFIG_DERIVED_MASK_P2P = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_P2P - CONFIG_DERIVED_MASK_IPS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_IPS - CONFIG_DERIVED_MASK_CREST_FACTOR = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_CREST_FACTOR - CONFIG_HIGH_PASS_FILTER = _mscl.ConfigIssue_CONFIG_HIGH_PASS_FILTER - CONFIG_DERIVED_MASK = _mscl.ConfigIssue_CONFIG_DERIVED_MASK - CONFIG_COMM_PROTOCOL = _mscl.ConfigIssue_CONFIG_COMM_PROTOCOL - CONFIG_DERIVED_MASK_MEAN = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_MEAN - CONFIG_GAUGE_RESISTANCE = _mscl.ConfigIssue_CONFIG_GAUGE_RESISTANCE - CONFIG_NUM_ACTIVE_GAUGES = _mscl.ConfigIssue_CONFIG_NUM_ACTIVE_GAUGES - CONFIG_TEMP_SENSOR_OPTS = _mscl.ConfigIssue_CONFIG_TEMP_SENSOR_OPTS - CONFIG_DEBOUNCE_FILTER = _mscl.ConfigIssue_CONFIG_DEBOUNCE_FILTER - CONFIG_PULLUP_RESISTOR = _mscl.ConfigIssue_CONFIG_PULLUP_RESISTOR - CONFIG_EXCITATION_VOLTAGE = _mscl.ConfigIssue_CONFIG_EXCITATION_VOLTAGE - CONFIG_DERIVED_UNIT = _mscl.ConfigIssue_CONFIG_DERIVED_UNIT - CONFIG_SENSOR_OUTPUT_MODE = _mscl.ConfigIssue_CONFIG_SENSOR_OUTPUT_MODE - CONFIG_LOW_BATTERY_THRESHOLD = _mscl.ConfigIssue_CONFIG_LOW_BATTERY_THRESHOLD - CONFIG_CFC_FILTER = _mscl.ConfigIssue_CONFIG_CFC_FILTER - - def __init__(self, *args): - _mscl.ConfigIssue_swiginit(self, _mscl.new_ConfigIssue(*args)) - - def id(self): - return _mscl.ConfigIssue_id(self) - - def description(self): - return _mscl.ConfigIssue_description(self) - - def isChannelGroupIssue(self): - return _mscl.ConfigIssue_isChannelGroupIssue(self) - - def channelMask(self): - return _mscl.ConfigIssue_channelMask(self) - __swig_destroy__ = _mscl.delete_ConfigIssue - -# Register ConfigIssue in _mscl: -_mscl.ConfigIssue_swigregister(ConfigIssue) - -class ActivitySense(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ActivitySense_swiginit(self, _mscl.new_ActivitySense()) - - def enabled(self, *args): - return _mscl.ActivitySense_enabled(self, *args) - - def activityThreshold(self, *args): - return _mscl.ActivitySense_activityThreshold(self, *args) - - def inactivityThreshold(self, *args): - return _mscl.ActivitySense_inactivityThreshold(self, *args) - - def activityTime(self, *args): - return _mscl.ActivitySense_activityTime(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.ActivitySense_inactivityTimeout(self, *args) - __swig_destroy__ = _mscl.delete_ActivitySense - -# Register ActivitySense in _mscl: -_mscl.ActivitySense_swigregister(ActivitySense) - -class Trigger(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Trigger_swiginit(self, _mscl.new_Trigger(*args)) - - def channelNumber(self, *args): - return _mscl.Trigger_channelNumber(self, *args) - - def triggerType(self, *args): - return _mscl.Trigger_triggerType(self, *args) - - def triggerValue(self, *args): - return _mscl.Trigger_triggerValue(self, *args) - __swig_destroy__ = _mscl.delete_Trigger - -# Register Trigger in _mscl: -_mscl.Trigger_swigregister(Trigger) - -class EventTriggerOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerOptions_swiginit(self, _mscl.new_EventTriggerOptions()) - - def triggerMask(self, *args): - return _mscl.EventTriggerOptions_triggerMask(self, *args) - - def anyTriggersEnabled(self): - return _mscl.EventTriggerOptions_anyTriggersEnabled(self) - - def triggerEnabled(self, triggerIndex): - return _mscl.EventTriggerOptions_triggerEnabled(self, triggerIndex) - - def enableTrigger(self, triggerIndex, enable=True): - return _mscl.EventTriggerOptions_enableTrigger(self, triggerIndex, enable) - - def preDuration(self, *args): - return _mscl.EventTriggerOptions_preDuration(self, *args) - - def postDuration(self, *args): - return _mscl.EventTriggerOptions_postDuration(self, *args) - - def trigger(self, *args): - return _mscl.EventTriggerOptions_trigger(self, *args) - - def triggers(self): - return _mscl.EventTriggerOptions_triggers(self) - __swig_destroy__ = _mscl.delete_EventTriggerOptions - -# Register EventTriggerOptions in _mscl: -_mscl.EventTriggerOptions_swigregister(EventTriggerOptions) - -class SnCurveSegment(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.SnCurveSegment_swiginit(self, _mscl.new_SnCurveSegment(*args)) - - def m(self, *args): - return _mscl.SnCurveSegment_m(self, *args) - - def logA(self, *args): - return _mscl.SnCurveSegment_logA(self, *args) - __swig_destroy__ = _mscl.delete_SnCurveSegment - -# Register SnCurveSegment in _mscl: -_mscl.SnCurveSegment_swigregister(SnCurveSegment) - -class FatigueOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FatigueOptions_swiginit(self, _mscl.new_FatigueOptions()) - - def youngsModulus(self, *args): - return _mscl.FatigueOptions_youngsModulus(self, *args) - - def poissonsRatio(self, *args): - return _mscl.FatigueOptions_poissonsRatio(self, *args) - - def peakValleyThreshold(self, *args): - return _mscl.FatigueOptions_peakValleyThreshold(self, *args) - - def debugMode(self, *args): - return _mscl.FatigueOptions_debugMode(self, *args) - - def damageAngles(self): - return _mscl.FatigueOptions_damageAngles(self) - - def damageAngle(self, *args): - return _mscl.FatigueOptions_damageAngle(self, *args) - - def snCurveSegments(self): - return _mscl.FatigueOptions_snCurveSegments(self) - - def snCurveSegment(self, *args): - return _mscl.FatigueOptions_snCurveSegment(self, *args) - - def fatigueMode(self, *args): - return _mscl.FatigueOptions_fatigueMode(self, *args) - - def distributedAngleMode_numAngles(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_numAngles(self, *args) - - def distributedAngleMode_lowerBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_lowerBound(self, *args) - - def distributedAngleMode_upperBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_upperBound(self, *args) - - def histogramEnable(self, *args): - return _mscl.FatigueOptions_histogramEnable(self, *args) - __swig_destroy__ = _mscl.delete_FatigueOptions - -# Register FatigueOptions in _mscl: -_mscl.FatigueOptions_swigregister(FatigueOptions) - -class HistogramOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HistogramOptions_swiginit(self, _mscl.new_HistogramOptions()) - - def transmitRate(self, *args): - return _mscl.HistogramOptions_transmitRate(self, *args) - - def binsStart(self, *args): - return _mscl.HistogramOptions_binsStart(self, *args) - - def binsSize(self, *args): - return _mscl.HistogramOptions_binsSize(self, *args) - __swig_destroy__ = _mscl.delete_HistogramOptions - -# Register HistogramOptions in _mscl: -_mscl.HistogramOptions_swigregister(HistogramOptions) - -class InputRangeEntry(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - inputRange = property(_mscl.InputRangeEntry_inputRange_get, _mscl.InputRangeEntry_inputRange_set) - hasGain = property(_mscl.InputRangeEntry_hasGain_get, _mscl.InputRangeEntry_hasGain_set) - gain = property(_mscl.InputRangeEntry_gain_get, _mscl.InputRangeEntry_gain_set) - - def __init__(self, *args): - _mscl.InputRangeEntry_swiginit(self, _mscl.new_InputRangeEntry(*args)) - __swig_destroy__ = _mscl.delete_InputRangeEntry - -# Register InputRangeEntry in _mscl: -_mscl.InputRangeEntry_swigregister(InputRangeEntry) - -class TempSensorOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - - @staticmethod - def RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - - @staticmethod - def Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - - def transducerType(self): - return _mscl.TempSensorOptions_transducerType(self) - - def thermocoupleType(self): - return _mscl.TempSensorOptions_thermocoupleType(self) - - def rtdType(self): - return _mscl.TempSensorOptions_rtdType(self) - - def rtdWireType(self): - return _mscl.TempSensorOptions_rtdWireType(self) - - def thermistorType(self): - return _mscl.TempSensorOptions_thermistorType(self) - __swig_destroy__ = _mscl.delete_TempSensorOptions - -# Register TempSensorOptions in _mscl: -_mscl.TempSensorOptions_swigregister(TempSensorOptions) - -def TempSensorOptions_Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - -def TempSensorOptions_RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - -def TempSensorOptions_Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - -class WirelessModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_vLink_legacy = _mscl.WirelessModels_node_vLink_legacy - node_cfBearingTempLink = _mscl.WirelessModels_node_cfBearingTempLink - node_envLink_pro = _mscl.WirelessModels_node_envLink_pro - node_gLink_2g = _mscl.WirelessModels_node_gLink_2g - node_gLink_10g = _mscl.WirelessModels_node_gLink_10g - node_gLinkII_cust_in = _mscl.WirelessModels_node_gLinkII_cust_in - node_gLinkII_2g_in = _mscl.WirelessModels_node_gLinkII_2g_in - node_gLinkII_10g_in = _mscl.WirelessModels_node_gLinkII_10g_in - node_gLinkII_cust_ex = _mscl.WirelessModels_node_gLinkII_cust_ex - node_gLinkII_2g_ex = _mscl.WirelessModels_node_gLinkII_2g_ex - node_gLinkII_10g_ex = _mscl.WirelessModels_node_gLinkII_10g_ex - node_gLink_rgd_10g = _mscl.WirelessModels_node_gLink_rgd_10g - node_gLink_200_8g = _mscl.WirelessModels_node_gLink_200_8g - node_gLink_200_40g = _mscl.WirelessModels_node_gLink_200_40g - node_gLink_200_8g_oem = _mscl.WirelessModels_node_gLink_200_8g_oem - node_gLink_200_40g_oem = _mscl.WirelessModels_node_gLink_200_40g_oem - node_gLink_200_8g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_8g_oem_mmcx - node_gLink_200_40g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_40g_oem_mmcx - node_gLink_200_8g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_8g_oem_u_fl - node_gLink_200_40g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_40g_oem_u_fl - node_gLink_200_r = _mscl.WirelessModels_node_gLink_200_r - node_sgLink_oem_S = _mscl.WirelessModels_node_sgLink_oem_S - node_sgLink = _mscl.WirelessModels_node_sgLink - node_sgLink200 = _mscl.WirelessModels_node_sgLink200 - node_sgLink200_hbridge_1K = _mscl.WirelessModels_node_sgLink200_hbridge_1K - node_sgLink200_hbridge_350 = _mscl.WirelessModels_node_sgLink200_hbridge_350 - node_sgLink200_hbridge_120 = _mscl.WirelessModels_node_sgLink200_hbridge_120 - node_sgLink200_qbridge_1K = _mscl.WirelessModels_node_sgLink200_qbridge_1K - node_sgLink200_qbridge_350 = _mscl.WirelessModels_node_sgLink200_qbridge_350 - node_sgLink200_qbridge_120 = _mscl.WirelessModels_node_sgLink200_qbridge_120 - node_sgLink_oem = _mscl.WirelessModels_node_sgLink_oem - node_sgLink_micro = _mscl.WirelessModels_node_sgLink_micro - node_sgLink200_oem = _mscl.WirelessModels_node_sgLink200_oem - node_sgLink200_oem_ufl = _mscl.WirelessModels_node_sgLink200_oem_ufl - node_sgLink200_oem_hbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K - node_sgLink200_oem_hbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K_ufl - node_sgLink200_oem_hbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120 - node_sgLink200_oem_hbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120_ufl - node_sgLink200_oem_hbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350 - node_sgLink200_oem_hbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350_ufl - node_sgLink200_oem_qbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K - node_sgLink200_oem_qbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K_ufl - node_sgLink200_oem_qbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120 - node_sgLink200_oem_qbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120_ufl - node_sgLink200_oem_qbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350 - node_sgLink200_oem_qbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350_ufl - node_sgLink_rgd = _mscl.WirelessModels_node_sgLink_rgd - node_shmLink = _mscl.WirelessModels_node_shmLink - node_tcLink_1ch = _mscl.WirelessModels_node_tcLink_1ch - node_tcLink_6ch = _mscl.WirelessModels_node_tcLink_6ch - node_tcLink_3ch = _mscl.WirelessModels_node_tcLink_3ch - node_tcLink_6ch_ip67 = _mscl.WirelessModels_node_tcLink_6ch_ip67 - node_tcLink200_oem = _mscl.WirelessModels_node_tcLink200_oem - node_tcLink200_oem_ufl = _mscl.WirelessModels_node_tcLink200_oem_ufl - node_tcLink200 = _mscl.WirelessModels_node_tcLink200 - node_rtdLink200 = _mscl.WirelessModels_node_rtdLink200 - node_tcLink_6ch_ip67_rht = _mscl.WirelessModels_node_tcLink_6ch_ip67_rht - node_vLink = _mscl.WirelessModels_node_vLink - node_vLink200 = _mscl.WirelessModels_node_vLink200 - node_vLink200_qbridge_1K = _mscl.WirelessModels_node_vLink200_qbridge_1K - node_vLink200_qbridge_120 = _mscl.WirelessModels_node_vLink200_qbridge_120 - node_vLink200_qbridge_350 = _mscl.WirelessModels_node_vLink200_qbridge_350 - node_vLink200_hbridge_1K = _mscl.WirelessModels_node_vLink200_hbridge_1K - node_vLink200_hbridge_120 = _mscl.WirelessModels_node_vLink200_hbridge_120 - node_vLink200_hbridge_350 = _mscl.WirelessModels_node_vLink200_hbridge_350 - node_iepeLink = _mscl.WirelessModels_node_iepeLink - node_dvrtLink = _mscl.WirelessModels_node_dvrtLink - node_envLink_mini = _mscl.WirelessModels_node_envLink_mini - node_wattLink = _mscl.WirelessModels_node_wattLink - node_wattLink_3Y208 = _mscl.WirelessModels_node_wattLink_3Y208 - node_wattLink_3D240 = _mscl.WirelessModels_node_wattLink_3D240 - node_wattLink_3Y400 = _mscl.WirelessModels_node_wattLink_3Y400 - node_wattLink_3D400 = _mscl.WirelessModels_node_wattLink_3D400 - node_wattLink_3Y480 = _mscl.WirelessModels_node_wattLink_3Y480 - node_wattLink_3D480 = _mscl.WirelessModels_node_wattLink_3D480 - node_wattLink_3Y600 = _mscl.WirelessModels_node_wattLink_3Y600 - node_ptLink200 = _mscl.WirelessModels_node_ptLink200 - node_rtdLink = _mscl.WirelessModels_node_rtdLink - node_shmLink2_cust1_oldNumber = _mscl.WirelessModels_node_shmLink2_cust1_oldNumber - node_shmLink2_cust1 = _mscl.WirelessModels_node_shmLink2_cust1 - node_shmLink200 = _mscl.WirelessModels_node_shmLink200 - node_shmLink201 = _mscl.WirelessModels_node_shmLink201 - node_shmLink201_qbridge_1K = _mscl.WirelessModels_node_shmLink201_qbridge_1K - node_shmLink201_qbridge_348 = _mscl.WirelessModels_node_shmLink201_qbridge_348 - node_shmLink201_hbridge_1K = _mscl.WirelessModels_node_shmLink201_hbridge_1K - node_shmLink201_hbridge_348 = _mscl.WirelessModels_node_shmLink201_hbridge_348 - node_shmLink201_fullbridge = _mscl.WirelessModels_node_shmLink201_fullbridge - node_shmLink210_fullbridge = _mscl.WirelessModels_node_shmLink210_fullbridge - node_shmLink210_qbridge_3K = _mscl.WirelessModels_node_shmLink210_qbridge_3K - node_torqueLink = _mscl.WirelessModels_node_torqueLink - node_torqueLink200_3ch = _mscl.WirelessModels_node_torqueLink200_3ch - node_torqueLink200 = _mscl.WirelessModels_node_torqueLink200 - node_torqueLink200_3ch_s = _mscl.WirelessModels_node_torqueLink200_3ch_s - node_sgLink_herm = _mscl.WirelessModels_node_sgLink_herm - node_sgLink_herm_2600 = _mscl.WirelessModels_node_sgLink_herm_2600 - node_sgLink_herm_2700 = _mscl.WirelessModels_node_sgLink_herm_2700 - node_sgLink_herm_2800 = _mscl.WirelessModels_node_sgLink_herm_2800 - node_sgLink_herm_2900 = _mscl.WirelessModels_node_sgLink_herm_2900 - node_wirelessImpactSensor = _mscl.WirelessModels_node_wirelessImpactSensor - node_gLink_200_40g_s = _mscl.WirelessModels_node_gLink_200_40g_s - base_wsda_1000 = _mscl.WirelessModels_base_wsda_1000 - base_wsda_1500 = _mscl.WirelessModels_base_wsda_1500 - base_wsda_2000 = _mscl.WirelessModels_base_wsda_2000 - base_wsdaBase_200_legacy = _mscl.WirelessModels_base_wsdaBase_200_legacy - base_wsdaBase_200 = _mscl.WirelessModels_base_wsdaBase_200 - base_wsdaBase_200_extAntenna = _mscl.WirelessModels_base_wsdaBase_200_extAntenna - base_wsdaBase_101_analog = _mscl.WirelessModels_base_wsdaBase_101_analog - base_wsdaBase_102_rs232 = _mscl.WirelessModels_base_wsdaBase_102_rs232 - base_wsdaBase_104_usb = _mscl.WirelessModels_base_wsdaBase_104_usb - base_wsi_104 = _mscl.WirelessModels_base_wsi_104 - base_wsdaBase_mini = _mscl.WirelessModels_base_wsdaBase_mini - - def __init__(self): - _mscl.WirelessModels_swiginit(self, _mscl.new_WirelessModels()) - __swig_destroy__ = _mscl.delete_WirelessModels - -# Register WirelessModels in _mscl: -_mscl.WirelessModels_swigregister(WirelessModels) - -class NodeDiscovery(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def nodeAddress(self): - return _mscl.NodeDiscovery_nodeAddress(self) - - def frequency(self): - return _mscl.NodeDiscovery_frequency(self) - - def panId(self): - return _mscl.NodeDiscovery_panId(self) - - def model(self): - return _mscl.NodeDiscovery_model(self) - - def serialNumber(self): - return _mscl.NodeDiscovery_serialNumber(self) - - def firmwareVersion(self): - return _mscl.NodeDiscovery_firmwareVersion(self) - - def defaultMode(self): - return _mscl.NodeDiscovery_defaultMode(self) - - def builtInTestResult(self): - return _mscl.NodeDiscovery_builtInTestResult(self) - - def communicationProtocol(self): - return _mscl.NodeDiscovery_communicationProtocol(self) - - def asppVersion_lxrs(self): - return _mscl.NodeDiscovery_asppVersion_lxrs(self) - - def asppVersion_lxrsPlus(self): - return _mscl.NodeDiscovery_asppVersion_lxrsPlus(self) - - def baseRssi(self): - return _mscl.NodeDiscovery_baseRssi(self) - - def timestamp(self): - return _mscl.NodeDiscovery_timestamp(self) - - def __init__(self): - _mscl.NodeDiscovery_swiginit(self, _mscl.new_NodeDiscovery()) - __swig_destroy__ = _mscl.delete_NodeDiscovery - -# Register NodeDiscovery in _mscl: -_mscl.NodeDiscovery_swigregister(NodeDiscovery) - -class LinearEquation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LinearEquation_swiginit(self, _mscl.new_LinearEquation(*args)) - - def slope(self, *args): - return _mscl.LinearEquation_slope(self, *args) - - def offset(self, *args): - return _mscl.LinearEquation_offset(self, *args) - __swig_destroy__ = _mscl.delete_LinearEquation - -# Register LinearEquation in _mscl: -_mscl.LinearEquation_swigregister(LinearEquation) - -class CalCoefficients(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CalCoefficients_swiginit(self, _mscl.new_CalCoefficients(*args)) - - def equationType(self): - return _mscl.CalCoefficients_equationType(self) - - def unit(self): - return _mscl.CalCoefficients_unit(self) - - def linearEquation(self): - return _mscl.CalCoefficients_linearEquation(self) - __swig_destroy__ = _mscl.delete_CalCoefficients - -# Register CalCoefficients in _mscl: -_mscl.CalCoefficients_swigregister(CalCoefficients) - -class ChannelGroup(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ChannelGroup_swiginit(self, _mscl.new_ChannelGroup()) - - def channels(self): - return _mscl.ChannelGroup_channels(self) - - def name(self): - return _mscl.ChannelGroup_name(self) - - def eepromLocation(self, setting): - return _mscl.ChannelGroup_eepromLocation(self, setting) - - def settings(self): - return _mscl.ChannelGroup_settings(self) - - def hasSetting(self, setting): - return _mscl.ChannelGroup_hasSetting(self, setting) - - def hasSettingAndChannel(self, setting, channelNumber): - return _mscl.ChannelGroup_hasSettingAndChannel(self, setting, channelNumber) - __swig_destroy__ = _mscl.delete_ChannelGroup - -# Register ChannelGroup in _mscl: -_mscl.ChannelGroup_swigregister(ChannelGroup) - -class WirelessChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - channel_unknown = _mscl.WirelessChannel_channel_unknown - channel_1 = _mscl.WirelessChannel_channel_1 - channel_2 = _mscl.WirelessChannel_channel_2 - channel_3 = _mscl.WirelessChannel_channel_3 - channel_4 = _mscl.WirelessChannel_channel_4 - channel_5 = _mscl.WirelessChannel_channel_5 - channel_6 = _mscl.WirelessChannel_channel_6 - channel_7 = _mscl.WirelessChannel_channel_7 - channel_8 = _mscl.WirelessChannel_channel_8 - channel_9 = _mscl.WirelessChannel_channel_9 - channel_10 = _mscl.WirelessChannel_channel_10 - channel_11 = _mscl.WirelessChannel_channel_11 - channel_12 = _mscl.WirelessChannel_channel_12 - channel_13 = _mscl.WirelessChannel_channel_13 - channel_14 = _mscl.WirelessChannel_channel_14 - channel_15 = _mscl.WirelessChannel_channel_15 - channel_16 = _mscl.WirelessChannel_channel_16 - channel_digital_1 = _mscl.WirelessChannel_channel_digital_1 - channel_digital_2 = _mscl.WirelessChannel_channel_digital_2 - channel_digital_3 = _mscl.WirelessChannel_channel_digital_3 - channel_digital_4 = _mscl.WirelessChannel_channel_digital_4 - channel_digital_5 = _mscl.WirelessChannel_channel_digital_5 - channel_digital_6 = _mscl.WirelessChannel_channel_digital_6 - channel_digital_7 = _mscl.WirelessChannel_channel_digital_7 - channel_digital_8 = _mscl.WirelessChannel_channel_digital_8 - channel_digital_9 = _mscl.WirelessChannel_channel_digital_9 - channel_digital_10 = _mscl.WirelessChannel_channel_digital_10 - channel_digital_11 = _mscl.WirelessChannel_channel_digital_11 - channel_digital_12 = _mscl.WirelessChannel_channel_digital_12 - channel_digital_13 = _mscl.WirelessChannel_channel_digital_13 - channel_digital_14 = _mscl.WirelessChannel_channel_digital_14 - channel_digital_15 = _mscl.WirelessChannel_channel_digital_15 - channel_digital_16 = _mscl.WirelessChannel_channel_digital_16 - channel_structuralHealth = _mscl.WirelessChannel_channel_structuralHealth - channel_hcl_rawBase_mag1_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_x - channel_hcl_rawBase_mag1_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_y - channel_hcl_rawBase_mag1_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_z - channel_hcl_rawBase_mag2_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_x - channel_hcl_rawBase_mag2_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_y - channel_hcl_rawBase_mag2_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_z - channel_hcl_rawBase_mag3_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_x - channel_hcl_rawBase_mag3_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_y - channel_hcl_rawBase_mag3_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_z - channel_hcl_rawBase_mag4_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_x - channel_hcl_rawBase_mag4_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_y - channel_hcl_rawBase_mag4_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_z - channel_hcl_rawBase_mag5_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_x - channel_hcl_rawBase_mag5_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_y - channel_hcl_rawBase_mag5_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_z - channel_hcl_rawBase_mag6_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_x - channel_hcl_rawBase_mag6_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_y - channel_hcl_rawBase_mag6_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_z - channel_hcl_rawBase_mag7_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_x - channel_hcl_rawBase_mag7_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_y - channel_hcl_rawBase_mag7_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_z - channel_hcl_rawBase_mag8_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_x - channel_hcl_rawBase_mag8_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_y - channel_hcl_rawBase_mag8_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_z - channel_hcl_rawBase_gyro_x = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_x - channel_hcl_rawBase_gyro_y = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_y - channel_hcl_rawBase_gyro_z = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_z - channel_error_code = _mscl.WirelessChannel_channel_error_code - channel_hcl_rawStrain_BL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL30 - channel_hcl_rawStrain_BL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL120 - channel_hcl_rawStrain_A60 = _mscl.WirelessChannel_channel_hcl_rawStrain_A60 - channel_hcl_rawStrain_A150 = _mscl.WirelessChannel_channel_hcl_rawStrain_A150 - channel_hcl_rawStrain_AL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL30 - channel_hcl_rawStrain_AL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL120 - channel_hcl_rawStrain_BR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR60 - channel_hcl_rawStrain_BR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR150 - channel_hcl_rawStrain_B30 = _mscl.WirelessChannel_channel_hcl_rawStrain_B30 - channel_hcl_rawStrain_T120 = _mscl.WirelessChannel_channel_hcl_rawStrain_T120 - channel_hcl_rawStrain_AR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR60 - channel_hcl_rawStrain_AR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR150 - channel_hcl_rawStrain_A30 = _mscl.WirelessChannel_channel_hcl_rawStrain_A30 - channel_hcl_rawStrain_A120 = _mscl.WirelessChannel_channel_hcl_rawStrain_A120 - channel_hcl_rawStrain_BL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL90 - channel_hcl_rawStrain_BL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL180 - channel_hcl_rawStrain_BR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR30 - channel_hcl_rawStrain_BR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR120 - channel_hcl_rawStrain_AL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL90 - channel_hcl_rawStrain_AL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL180 - channel_hcl_rawStrain_AR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR30 - channel_hcl_rawStrain_AR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR120 - channel_hcl_rawStrain_B90 = _mscl.WirelessChannel_channel_hcl_rawStrain_B90 - channel_hcl_rawStrain_T0 = _mscl.WirelessChannel_channel_hcl_rawStrain_T0 - channel_hcl_rawStrain_BL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL60 - channel_hcl_rawStrain_BL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL150 - channel_hcl_rawStrain_A90 = _mscl.WirelessChannel_channel_hcl_rawStrain_A90 - channel_hcl_rawStrain_A0 = _mscl.WirelessChannel_channel_hcl_rawStrain_A0 - channel_hcl_rawStrain_AL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL60 - channel_hcl_rawStrain_AL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL150 - channel_hcl_rawStrain_BR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR90 - channel_hcl_rawStrain_BR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR0 - channel_hcl_rawStrain_T60 = _mscl.WirelessChannel_channel_hcl_rawStrain_T60 - channel_hcl_rawStrain_B150 = _mscl.WirelessChannel_channel_hcl_rawStrain_B150 - channel_hcl_rawStrain_AR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR90 - channel_hcl_rawStrain_AR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR0 - channel_hcl_rawInertial_accel1 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel1 - channel_hcl_rawInertial_accel2 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel2 - channel_hcl_rawInertial_accel3 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel3 - channel_hcl_rawInertial_accel4 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel4 - channel_hcl_rawInertial_accel5 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel5 - channel_hcl_rawInertial_accel6 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel6 - channel_hcl_rawInertial_accel7 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel7 - channel_hcl_rawInertial_accel8 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel8 - channel_hcl_rawInertial_gyroX = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroX - channel_hcl_rawInertial_gyroY = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroY - channel_hcl_rawInertial_gyroZ = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroZ - channel_rawAngleStrain = _mscl.WirelessChannel_channel_rawAngleStrain - channel_beaconEcho = _mscl.WirelessChannel_channel_beaconEcho - channel_rfSweep = _mscl.WirelessChannel_channel_rfSweep - channel_diag_state = _mscl.WirelessChannel_channel_diag_state - channel_diag_runtime_idle = _mscl.WirelessChannel_channel_diag_runtime_idle - channel_diag_runtime_sleep = _mscl.WirelessChannel_channel_diag_runtime_sleep - channel_diag_runtime_activeRun = _mscl.WirelessChannel_channel_diag_runtime_activeRun - channel_diag_runtime_inactiveRun = _mscl.WirelessChannel_channel_diag_runtime_inactiveRun - channel_diag_resetCounter = _mscl.WirelessChannel_channel_diag_resetCounter - channel_diag_lowBatteryFlag = _mscl.WirelessChannel_channel_diag_lowBatteryFlag - channel_diag_sweepIndex = _mscl.WirelessChannel_channel_diag_sweepIndex - channel_diag_badSweepCount = _mscl.WirelessChannel_channel_diag_badSweepCount - channel_diag_totalTx = _mscl.WirelessChannel_channel_diag_totalTx - channel_diag_totalReTx = _mscl.WirelessChannel_channel_diag_totalReTx - channel_diag_totalDroppedPackets = _mscl.WirelessChannel_channel_diag_totalDroppedPackets - channel_diag_builtInTestResult = _mscl.WirelessChannel_channel_diag_builtInTestResult - channel_diag_eventIndex = _mscl.WirelessChannel_channel_diag_eventIndex - channel_hcl_axialLoadX = _mscl.WirelessChannel_channel_hcl_axialLoadX - channel_hcl_axialLoadY = _mscl.WirelessChannel_channel_hcl_axialLoadY - channel_hcl_axialLoadZ = _mscl.WirelessChannel_channel_hcl_axialLoadZ - channel_hcl_bendingMomentFlap = _mscl.WirelessChannel_channel_hcl_bendingMomentFlap - channel_hcl_bendingMomentLag = _mscl.WirelessChannel_channel_hcl_bendingMomentLag - channel_hcl_bendingMomentPitch = _mscl.WirelessChannel_channel_hcl_bendingMomentPitch - channel_hcl_motionFlap_mag = _mscl.WirelessChannel_channel_hcl_motionFlap_mag - channel_hcl_motionLag_mag = _mscl.WirelessChannel_channel_hcl_motionLag_mag - channel_hcl_motionPitch_mag = _mscl.WirelessChannel_channel_hcl_motionPitch_mag - channel_hcl_motionFlap_inertial = _mscl.WirelessChannel_channel_hcl_motionFlap_inertial - channel_hcl_motionLag_inertial = _mscl.WirelessChannel_channel_hcl_motionLag_inertial - channel_hcl_motionPitch_inertial = _mscl.WirelessChannel_channel_hcl_motionPitch_inertial - channel_hcl_cockingStiffness_mag = _mscl.WirelessChannel_channel_hcl_cockingStiffness_mag - channel_hcl_cockingStiffness_inertial = _mscl.WirelessChannel_channel_hcl_cockingStiffness_inertial - channel_hcl_temperature = _mscl.WirelessChannel_channel_hcl_temperature - channel_diag_externalPower = _mscl.WirelessChannel_channel_diag_externalPower - channel_diag_internalTemp = _mscl.WirelessChannel_channel_diag_internalTemp - channel_1_rms = _mscl.WirelessChannel_channel_1_rms - channel_2_rms = _mscl.WirelessChannel_channel_2_rms - channel_3_rms = _mscl.WirelessChannel_channel_3_rms - channel_4_rms = _mscl.WirelessChannel_channel_4_rms - channel_5_rms = _mscl.WirelessChannel_channel_5_rms - channel_6_rms = _mscl.WirelessChannel_channel_6_rms - channel_7_rms = _mscl.WirelessChannel_channel_7_rms - channel_8_rms = _mscl.WirelessChannel_channel_8_rms - channel_9_rms = _mscl.WirelessChannel_channel_9_rms - channel_10_rms = _mscl.WirelessChannel_channel_10_rms - channel_11_rms = _mscl.WirelessChannel_channel_11_rms - channel_12_rms = _mscl.WirelessChannel_channel_12_rms - channel_13_rms = _mscl.WirelessChannel_channel_13_rms - channel_14_rms = _mscl.WirelessChannel_channel_14_rms - channel_15_rms = _mscl.WirelessChannel_channel_15_rms - channel_16_rms = _mscl.WirelessChannel_channel_16_rms - channel_1_peakToPeak = _mscl.WirelessChannel_channel_1_peakToPeak - channel_2_peakToPeak = _mscl.WirelessChannel_channel_2_peakToPeak - channel_3_peakToPeak = _mscl.WirelessChannel_channel_3_peakToPeak - channel_4_peakToPeak = _mscl.WirelessChannel_channel_4_peakToPeak - channel_5_peakToPeak = _mscl.WirelessChannel_channel_5_peakToPeak - channel_6_peakToPeak = _mscl.WirelessChannel_channel_6_peakToPeak - channel_7_peakToPeak = _mscl.WirelessChannel_channel_7_peakToPeak - channel_8_peakToPeak = _mscl.WirelessChannel_channel_8_peakToPeak - channel_9_peakToPeak = _mscl.WirelessChannel_channel_9_peakToPeak - channel_10_peakToPeak = _mscl.WirelessChannel_channel_10_peakToPeak - channel_11_peakToPeak = _mscl.WirelessChannel_channel_11_peakToPeak - channel_12_peakToPeak = _mscl.WirelessChannel_channel_12_peakToPeak - channel_13_peakToPeak = _mscl.WirelessChannel_channel_13_peakToPeak - channel_14_peakToPeak = _mscl.WirelessChannel_channel_14_peakToPeak - channel_15_peakToPeak = _mscl.WirelessChannel_channel_15_peakToPeak - channel_16_peakToPeak = _mscl.WirelessChannel_channel_16_peakToPeak - channel_1_ips = _mscl.WirelessChannel_channel_1_ips - channel_2_ips = _mscl.WirelessChannel_channel_2_ips - channel_3_ips = _mscl.WirelessChannel_channel_3_ips - channel_4_ips = _mscl.WirelessChannel_channel_4_ips - channel_5_ips = _mscl.WirelessChannel_channel_5_ips - channel_6_ips = _mscl.WirelessChannel_channel_6_ips - channel_7_ips = _mscl.WirelessChannel_channel_7_ips - channel_8_ips = _mscl.WirelessChannel_channel_8_ips - channel_9_ips = _mscl.WirelessChannel_channel_9_ips - channel_10_ips = _mscl.WirelessChannel_channel_10_ips - channel_11_ips = _mscl.WirelessChannel_channel_11_ips - channel_12_ips = _mscl.WirelessChannel_channel_12_ips - channel_13_ips = _mscl.WirelessChannel_channel_13_ips - channel_14_ips = _mscl.WirelessChannel_channel_14_ips - channel_15_ips = _mscl.WirelessChannel_channel_15_ips - channel_16_ips = _mscl.WirelessChannel_channel_16_ips - channel_1_crestFactor = _mscl.WirelessChannel_channel_1_crestFactor - channel_2_crestFactor = _mscl.WirelessChannel_channel_2_crestFactor - channel_3_crestFactor = _mscl.WirelessChannel_channel_3_crestFactor - channel_4_crestFactor = _mscl.WirelessChannel_channel_4_crestFactor - channel_5_crestFactor = _mscl.WirelessChannel_channel_5_crestFactor - channel_6_crestFactor = _mscl.WirelessChannel_channel_6_crestFactor - channel_7_crestFactor = _mscl.WirelessChannel_channel_7_crestFactor - channel_8_crestFactor = _mscl.WirelessChannel_channel_8_crestFactor - channel_9_crestFactor = _mscl.WirelessChannel_channel_9_crestFactor - channel_10_crestFactor = _mscl.WirelessChannel_channel_10_crestFactor - channel_11_crestFactor = _mscl.WirelessChannel_channel_11_crestFactor - channel_12_crestFactor = _mscl.WirelessChannel_channel_12_crestFactor - channel_13_crestFactor = _mscl.WirelessChannel_channel_13_crestFactor - channel_14_crestFactor = _mscl.WirelessChannel_channel_14_crestFactor - channel_15_crestFactor = _mscl.WirelessChannel_channel_15_crestFactor - channel_16_crestFactor = _mscl.WirelessChannel_channel_16_crestFactor - channel_diag_syncAttempts = _mscl.WirelessChannel_channel_diag_syncAttempts - channel_diag_syncFailures = _mscl.WirelessChannel_channel_diag_syncFailures - channel_diag_secsSinceLastSync = _mscl.WirelessChannel_channel_diag_secsSinceLastSync - channel_beaconConflict = _mscl.WirelessChannel_channel_beaconConflict - channel_1_mean = _mscl.WirelessChannel_channel_1_mean - channel_2_mean = _mscl.WirelessChannel_channel_2_mean - channel_3_mean = _mscl.WirelessChannel_channel_3_mean - channel_4_mean = _mscl.WirelessChannel_channel_4_mean - channel_5_mean = _mscl.WirelessChannel_channel_5_mean - channel_6_mean = _mscl.WirelessChannel_channel_6_mean - channel_7_mean = _mscl.WirelessChannel_channel_7_mean - channel_8_mean = _mscl.WirelessChannel_channel_8_mean - channel_9_mean = _mscl.WirelessChannel_channel_9_mean - channel_10_mean = _mscl.WirelessChannel_channel_10_mean - channel_11_mean = _mscl.WirelessChannel_channel_11_mean - channel_12_mean = _mscl.WirelessChannel_channel_12_mean - channel_13_mean = _mscl.WirelessChannel_channel_13_mean - channel_14_mean = _mscl.WirelessChannel_channel_14_mean - channel_15_mean = _mscl.WirelessChannel_channel_15_mean - channel_16_mean = _mscl.WirelessChannel_channel_16_mean - channel_1_mmps = _mscl.WirelessChannel_channel_1_mmps - channel_2_mmps = _mscl.WirelessChannel_channel_2_mmps - channel_3_mmps = _mscl.WirelessChannel_channel_3_mmps - channel_4_mmps = _mscl.WirelessChannel_channel_4_mmps - channel_5_mmps = _mscl.WirelessChannel_channel_5_mmps - channel_6_mmps = _mscl.WirelessChannel_channel_6_mmps - channel_7_mmps = _mscl.WirelessChannel_channel_7_mmps - channel_8_mmps = _mscl.WirelessChannel_channel_8_mmps - channel_9_mmps = _mscl.WirelessChannel_channel_9_mmps - channel_10_mmps = _mscl.WirelessChannel_channel_10_mmps - channel_11_mmps = _mscl.WirelessChannel_channel_11_mmps - channel_12_mmps = _mscl.WirelessChannel_channel_12_mmps - channel_13_mmps = _mscl.WirelessChannel_channel_13_mmps - channel_14_mmps = _mscl.WirelessChannel_channel_14_mmps - channel_15_mmps = _mscl.WirelessChannel_channel_15_mmps - channel_16_mmps = _mscl.WirelessChannel_channel_16_mmps - channel_diag_memoryFull = _mscl.WirelessChannel_channel_diag_memoryFull - - def __init__(self, *args): - _mscl.WirelessChannel_swiginit(self, _mscl.new_WirelessChannel(*args)) - - def channelNumber(self): - return _mscl.WirelessChannel_channelNumber(self) - - def id(self): - return _mscl.WirelessChannel_id(self) - - def type(self): - return _mscl.WirelessChannel_type(self) - - def description(self): - return _mscl.WirelessChannel_description(self) - - def adcResolution(self): - return _mscl.WirelessChannel_adcResolution(self) - - def adcMaxValue(self): - return _mscl.WirelessChannel_adcMaxValue(self) - - def name(self): - return _mscl.WirelessChannel_name(self) - __swig_destroy__ = _mscl.delete_WirelessChannel - -# Register WirelessChannel in _mscl: -_mscl.WirelessChannel_swigregister(WirelessChannel) - -class WirelessDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessDataPoint_swiginit(self, _mscl.new_WirelessDataPoint()) - - def channelId(self): - return _mscl.WirelessDataPoint_channelId(self) - - def channelNumber(self): - return _mscl.WirelessDataPoint_channelNumber(self) - - def channelName(self): - return _mscl.WirelessDataPoint_channelName(self) - __swig_destroy__ = _mscl.delete_WirelessDataPoint - -# Register WirelessDataPoint in _mscl: -_mscl.WirelessDataPoint_swigregister(WirelessDataPoint) - -class DataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - samplingType_NonSync = _mscl.DataSweep_samplingType_NonSync - samplingType_NonSync_Buffered = _mscl.DataSweep_samplingType_NonSync_Buffered - samplingType_SyncSampling = _mscl.DataSweep_samplingType_SyncSampling - samplingType_SyncSampling_Burst = _mscl.DataSweep_samplingType_SyncSampling_Burst - samplingType_AsyncDigital = _mscl.DataSweep_samplingType_AsyncDigital - samplingType_AsyncDigitalAnalog = _mscl.DataSweep_samplingType_AsyncDigitalAnalog - samplingType_SHM = _mscl.DataSweep_samplingType_SHM - samplingType_BeaconEcho = _mscl.DataSweep_samplingType_BeaconEcho - samplingType_RfSweep = _mscl.DataSweep_samplingType_RfSweep - samplingType_Diagnostic = _mscl.DataSweep_samplingType_Diagnostic - - def __init__(self): - _mscl.DataSweep_swiginit(self, _mscl.new_DataSweep()) - - def timestamp(self): - return _mscl.DataSweep_timestamp(self) - - def tick(self): - return _mscl.DataSweep_tick(self) - - def sampleRate(self): - return _mscl.DataSweep_sampleRate(self) - - def nodeAddress(self): - return _mscl.DataSweep_nodeAddress(self) - - def data(self): - return _mscl.DataSweep_data(self) - - def samplingType(self): - return _mscl.DataSweep_samplingType(self) - - def nodeRssi(self): - return _mscl.DataSweep_nodeRssi(self) - - def baseRssi(self): - return _mscl.DataSweep_baseRssi(self) - - def frequency(self): - return _mscl.DataSweep_frequency(self) - - def calApplied(self): - return _mscl.DataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_DataSweep - -# Register DataSweep in _mscl: -_mscl.DataSweep_swigregister(DataSweep) - -class BaseStationAnalogPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationAnalogPair_swiginit(self, _mscl.new_BaseStationAnalogPair()) - - @staticmethod - def Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - - @staticmethod - def NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - - def nodeAddress(self, *args): - return _mscl.BaseStationAnalogPair_nodeAddress(self, *args) - - def nodeChannel(self, *args): - return _mscl.BaseStationAnalogPair_nodeChannel(self, *args) - - def expectFloatData(self, *args): - return _mscl.BaseStationAnalogPair_expectFloatData(self, *args) - - def outputVal_0V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_0V(self, *args) - - def outputVal_3V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_3V(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationAnalogPair - -# Register BaseStationAnalogPair in _mscl: -_mscl.BaseStationAnalogPair_swigregister(BaseStationAnalogPair) -BaseStationAnalogPair.CHANNEL_NOT_FLOAT = _mscl.cvar.BaseStationAnalogPair_CHANNEL_NOT_FLOAT - -def BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - -def BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - -class BaseStationButton(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - btn_nodeSleep = _mscl.BaseStationButton_btn_nodeSleep - btn_nodeStop = _mscl.BaseStationButton_btn_nodeStop - btn_enableBeacon = _mscl.BaseStationButton_btn_enableBeacon - btn_disableBeacon = _mscl.BaseStationButton_btn_disableBeacon - btn_nodeNonSyncSampling = _mscl.BaseStationButton_btn_nodeNonSyncSampling - btn_nodeSyncSampling = _mscl.BaseStationButton_btn_nodeSyncSampling - btn_nodeArmedDatalogging = _mscl.BaseStationButton_btn_nodeArmedDatalogging - btn_cyclePower = _mscl.BaseStationButton_btn_cyclePower - btn_disabled = _mscl.BaseStationButton_btn_disabled - - def __init__(self, *args): - _mscl.BaseStationButton_swiginit(self, _mscl.new_BaseStationButton(*args)) - - def command(self, *args): - return _mscl.BaseStationButton_command(self, *args) - - def nodeAddress(self, *args): - return _mscl.BaseStationButton_nodeAddress(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationButton - -# Register BaseStationButton in _mscl: -_mscl.BaseStationButton_swigregister(BaseStationButton) - -class BaseStationConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationConfig_swiginit(self, _mscl.new_BaseStationConfig()) - - def transmitPower(self, *args): - return _mscl.BaseStationConfig_transmitPower(self, *args) - - def communicationProtocol(self, *args): - return _mscl.BaseStationConfig_communicationProtocol(self, *args) - - def buttonLongPress(self, *args): - return _mscl.BaseStationConfig_buttonLongPress(self, *args) - - def buttonShortPress(self, *args): - return _mscl.BaseStationConfig_buttonShortPress(self, *args) - - def analogPairingEnable(self, *args): - return _mscl.BaseStationConfig_analogPairingEnable(self, *args) - - def analogTimeoutTime(self, *args): - return _mscl.BaseStationConfig_analogTimeoutTime(self, *args) - - def analogTimeoutVoltage(self, *args): - return _mscl.BaseStationConfig_analogTimeoutVoltage(self, *args) - - def analogExceedanceEnable(self, *args): - return _mscl.BaseStationConfig_analogExceedanceEnable(self, *args) - - def analogPairing(self, *args): - return _mscl.BaseStationConfig_analogPairing(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationConfig - -# Register BaseStationConfig in _mscl: -_mscl.BaseStationConfig_swigregister(BaseStationConfig) - -class BeaconStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BeaconStatus_swiginit(self, _mscl.new_BeaconStatus(*args)) - - def enabled(self): - return _mscl.BeaconStatus_enabled(self) - - def timestamp(self): - return _mscl.BeaconStatus_timestamp(self) - __swig_destroy__ = _mscl.delete_BeaconStatus - -# Register BeaconStatus in _mscl: -_mscl.BeaconStatus_swigregister(BeaconStatus) - -class BaseStationInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region, asppVer_lxrs, asppVer_lxrsPlus): - _mscl.BaseStationInfo_swiginit(self, _mscl.new_BaseStationInfo(fw, model, region, asppVer_lxrs, asppVer_lxrsPlus)) - __swig_destroy__ = _mscl.delete_BaseStationInfo - -# Register BaseStationInfo in _mscl: -_mscl.BaseStationInfo_swigregister(BaseStationInfo) - -class BaseStation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_BASE_COMMANDS_DEFAULT_TIMEOUT - ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT - BROADCAST_NODE_ADDRESS = _mscl.BaseStation_BROADCAST_NODE_ADDRESS - BROADCAST_NODE_ADDRESS_ASPP3 = _mscl.BaseStation_BROADCAST_NODE_ADDRESS_ASPP3 - - def __init__(self, *args): - _mscl.BaseStation_swiginit(self, _mscl.new_BaseStation(*args)) - __swig_destroy__ = _mscl.delete_BaseStation - - @staticmethod - def Mock(*args): - return _mscl.BaseStation_Mock(*args) - - @staticmethod - def deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - - def connection(self): - return _mscl.BaseStation_connection(self) - - def features(self): - return _mscl.BaseStation_features(self) - - def lastCommunicationTime(self): - return _mscl.BaseStation_lastCommunicationTime(self) - - def readWriteRetries(self, *args): - return _mscl.BaseStation_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.BaseStation_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.BaseStation_clearEepromCache(self) - - def frequency(self): - return _mscl.BaseStation_frequency(self) - - def communicationProtocol(self): - return _mscl.BaseStation_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.BaseStation_firmwareVersion(self) - - def model(self): - return _mscl.BaseStation_model(self) - - def serial(self): - return _mscl.BaseStation_serial(self) - - def name(self): - return _mscl.BaseStation_name(self) - - def microcontroller(self): - return _mscl.BaseStation_microcontroller(self) - - def regionCode(self): - return _mscl.BaseStation_regionCode(self) - - def getData(self, timeout=0, maxSweeps=0): - return _mscl.BaseStation_getData(self, timeout, maxSweeps) - - def totalData(self): - return _mscl.BaseStation_totalData(self) - - def getNodeDiscoveries(self): - return _mscl.BaseStation_getNodeDiscoveries(self) - - def timeout(self, *args): - return _mscl.BaseStation_timeout(self, *args) - - def ping(self): - return _mscl.BaseStation_ping(self) - - def readEeprom(self, eepromAddress): - return _mscl.BaseStation_readEeprom(self, eepromAddress) - - def writeEeprom(self, eepromAddress, value): - return _mscl.BaseStation_writeEeprom(self, eepromAddress, value) - - def enableBeacon(self, *args): - return _mscl.BaseStation_enableBeacon(self, *args) - - def disableBeacon(self): - return _mscl.BaseStation_disableBeacon(self) - - def beaconStatus(self): - return _mscl.BaseStation_beaconStatus(self) - - def startRfSweepMode(self, *args): - return _mscl.BaseStation_startRfSweepMode(self, *args) - - def cyclePower(self, checkComm=True): - return _mscl.BaseStation_cyclePower(self, checkComm) - - def resetRadio(self): - return _mscl.BaseStation_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.BaseStation_changeFrequency(self, frequency) - - def broadcastSetToIdle(self): - return _mscl.BaseStation_broadcastSetToIdle(self) - - def verifyConfig(self, config, outIssues): - return _mscl.BaseStation_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.BaseStation_applyConfig(self, config) - - def getTransmitPower(self): - return _mscl.BaseStation_getTransmitPower(self) - - def getButtonLongPress(self, buttonNumber): - return _mscl.BaseStation_getButtonLongPress(self, buttonNumber) - - def getButtonShortPress(self, buttonNumber): - return _mscl.BaseStation_getButtonShortPress(self, buttonNumber) - - def getAnalogPairingEnabled(self): - return _mscl.BaseStation_getAnalogPairingEnabled(self) - - def getAnalogTimeoutTime(self): - return _mscl.BaseStation_getAnalogTimeoutTime(self) - - def getAnalogTimeoutVoltage(self): - return _mscl.BaseStation_getAnalogTimeoutVoltage(self) - - def getAnalogExceedanceEnabled(self): - return _mscl.BaseStation_getAnalogExceedanceEnabled(self) - - def getAnalogPair(self, portNumber): - return _mscl.BaseStation_getAnalogPair(self, portNumber) - -# Register BaseStation in _mscl: -_mscl.BaseStation_swigregister(BaseStation) - -def BaseStation_Mock(*args): - return _mscl.BaseStation_Mock(*args) - -def BaseStation_deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - -class LoggedDataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LoggedDataSweep_swiginit(self, _mscl.new_LoggedDataSweep(*args)) - - def timestamp(self): - return _mscl.LoggedDataSweep_timestamp(self) - - def tick(self): - return _mscl.LoggedDataSweep_tick(self) - - def data(self): - return _mscl.LoggedDataSweep_data(self) - - def calApplied(self): - return _mscl.LoggedDataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweep - -# Register LoggedDataSweep in _mscl: -_mscl.LoggedDataSweep_swigregister(LoggedDataSweep) - -class RadioFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.RadioFeatures_swiginit(self, _mscl.new_RadioFeatures(*args)) - - def extendedRange(self): - return _mscl.RadioFeatures_extendedRange(self) - __swig_destroy__ = _mscl.delete_RadioFeatures - -# Register RadioFeatures in _mscl: -_mscl.RadioFeatures_swigregister(RadioFeatures) - -class WirelessNodeConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessNodeConfig_swiginit(self, _mscl.new_WirelessNodeConfig()) - SENSOR_DELAY_ALWAYS_ON = _mscl.WirelessNodeConfig_SENSOR_DELAY_ALWAYS_ON - - def defaultMode(self, *args): - return _mscl.WirelessNodeConfig_defaultMode(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.WirelessNodeConfig_inactivityTimeout(self, *args) - - def checkRadioInterval(self, *args): - return _mscl.WirelessNodeConfig_checkRadioInterval(self, *args) - - def transmitPower(self, *args): - return _mscl.WirelessNodeConfig_transmitPower(self, *args) - - def samplingMode(self, *args): - return _mscl.WirelessNodeConfig_samplingMode(self, *args) - - def sampleRate(self, *args): - return _mscl.WirelessNodeConfig_sampleRate(self, *args) - - def activeChannels(self, *args): - return _mscl.WirelessNodeConfig_activeChannels(self, *args) - - def numSweeps(self, *args): - return _mscl.WirelessNodeConfig_numSweeps(self, *args) - - def unlimitedDuration(self, *args): - return _mscl.WirelessNodeConfig_unlimitedDuration(self, *args) - - def dataFormat(self, *args): - return _mscl.WirelessNodeConfig_dataFormat(self, *args) - - def dataCollectionMethod(self, *args): - return _mscl.WirelessNodeConfig_dataCollectionMethod(self, *args) - - def timeBetweenBursts(self, *args): - return _mscl.WirelessNodeConfig_timeBetweenBursts(self, *args) - - def lostBeaconTimeout(self, *args): - return _mscl.WirelessNodeConfig_lostBeaconTimeout(self, *args) - - def pullUpResistor(self, *args): - return _mscl.WirelessNodeConfig_pullUpResistor(self, *args) - - def inputRange(self, *args): - return _mscl.WirelessNodeConfig_inputRange(self, *args) - - def hardwareOffset(self, *args): - return _mscl.WirelessNodeConfig_hardwareOffset(self, *args) - - def antiAliasingFilter(self, *args): - return _mscl.WirelessNodeConfig_antiAliasingFilter(self, *args) - - def cfcFilterConfig(self, *args): - return _mscl.WirelessNodeConfig_cfcFilterConfig(self, *args) - - def lowPassFilter(self, *args): - return _mscl.WirelessNodeConfig_lowPassFilter(self, *args) - - def highPassFilter(self, *args): - return _mscl.WirelessNodeConfig_highPassFilter(self, *args) - - def gaugeFactor(self, *args): - return _mscl.WirelessNodeConfig_gaugeFactor(self, *args) - - def gaugeResistance(self, *args): - return _mscl.WirelessNodeConfig_gaugeResistance(self, *args) - - def excitationVoltage(self, *args): - return _mscl.WirelessNodeConfig_excitationVoltage(self, *args) - - def numActiveGauges(self, *args): - return _mscl.WirelessNodeConfig_numActiveGauges(self, *args) - - def lowBatteryThreshold(self, *args): - return _mscl.WirelessNodeConfig_lowBatteryThreshold(self, *args) - - def linearEquation(self, *args): - return _mscl.WirelessNodeConfig_linearEquation(self, *args) - - def unit(self, *args): - return _mscl.WirelessNodeConfig_unit(self, *args) - - def equationType(self, *args): - return _mscl.WirelessNodeConfig_equationType(self, *args) - - def filterSettlingTime(self, *args): - return _mscl.WirelessNodeConfig_filterSettlingTime(self, *args) - - def thermocoupleType(self, *args): - return _mscl.WirelessNodeConfig_thermocoupleType(self, *args) - - def tempSensorOptions(self, *args): - return _mscl.WirelessNodeConfig_tempSensorOptions(self, *args) - - def debounceFilter(self, *args): - return _mscl.WirelessNodeConfig_debounceFilter(self, *args) - - def fatigueOptions(self, *args): - return _mscl.WirelessNodeConfig_fatigueOptions(self, *args) - - def histogramOptions(self, *args): - return _mscl.WirelessNodeConfig_histogramOptions(self, *args) - - def activitySense(self, *args): - return _mscl.WirelessNodeConfig_activitySense(self, *args) - - def eventTriggerOptions(self, *args): - return _mscl.WirelessNodeConfig_eventTriggerOptions(self, *args) - - def diagnosticInterval(self, *args): - return _mscl.WirelessNodeConfig_diagnosticInterval(self, *args) - - def storageLimitMode(self, *args): - return _mscl.WirelessNodeConfig_storageLimitMode(self, *args) - - def sensorDelay(self, *args): - return _mscl.WirelessNodeConfig_sensorDelay(self, *args) - - def dataMode(self, *args): - return _mscl.WirelessNodeConfig_dataMode(self, *args) - - def derivedDataRate(self, *args): - return _mscl.WirelessNodeConfig_derivedDataRate(self, *args) - - def derivedChannelMask(self, *args): - return _mscl.WirelessNodeConfig_derivedChannelMask(self, *args) - - def derivedVelocityUnit(self, *args): - return _mscl.WirelessNodeConfig_derivedVelocityUnit(self, *args) - - def communicationProtocol(self, *args): - return _mscl.WirelessNodeConfig_communicationProtocol(self, *args) - - def sensorOutputMode(self, *args): - return _mscl.WirelessNodeConfig_sensorOutputMode(self, *args) - - @staticmethod - def flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - - @staticmethod - def flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - __swig_destroy__ = _mscl.delete_WirelessNodeConfig - -# Register WirelessNodeConfig in _mscl: -_mscl.WirelessNodeConfig_swigregister(WirelessNodeConfig) - -def WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - -def WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - -class AutoBalanceResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoBalanceResult_swiginit(self, _mscl.new_AutoBalanceResult()) - - def errorCode(self): - return _mscl.AutoBalanceResult_errorCode(self) - - def percentAchieved(self): - return _mscl.AutoBalanceResult_percentAchieved(self) - - def hardwareOffset(self): - return _mscl.AutoBalanceResult_hardwareOffset(self) - __swig_destroy__ = _mscl.delete_AutoBalanceResult - -# Register AutoBalanceResult in _mscl: -_mscl.AutoBalanceResult_swigregister(AutoBalanceResult) - -class ShuntCalCmdInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - useInternalShunt = property(_mscl.ShuntCalCmdInfo_useInternalShunt_get, _mscl.ShuntCalCmdInfo_useInternalShunt_set) - numActiveGauges = property(_mscl.ShuntCalCmdInfo_numActiveGauges_get, _mscl.ShuntCalCmdInfo_numActiveGauges_set) - gaugeResistance = property(_mscl.ShuntCalCmdInfo_gaugeResistance_get, _mscl.ShuntCalCmdInfo_gaugeResistance_set) - shuntResistance = property(_mscl.ShuntCalCmdInfo_shuntResistance_get, _mscl.ShuntCalCmdInfo_shuntResistance_set) - gaugeFactor = property(_mscl.ShuntCalCmdInfo_gaugeFactor_get, _mscl.ShuntCalCmdInfo_gaugeFactor_set) - inputRange = property(_mscl.ShuntCalCmdInfo_inputRange_get, _mscl.ShuntCalCmdInfo_inputRange_set) - hardwareOffset = property(_mscl.ShuntCalCmdInfo_hardwareOffset_get, _mscl.ShuntCalCmdInfo_hardwareOffset_set) - excitationVoltage = property(_mscl.ShuntCalCmdInfo_excitationVoltage_get, _mscl.ShuntCalCmdInfo_excitationVoltage_set) - - def __init__(self): - _mscl.ShuntCalCmdInfo_swiginit(self, _mscl.new_ShuntCalCmdInfo()) - __swig_destroy__ = _mscl.delete_ShuntCalCmdInfo - -# Register ShuntCalCmdInfo in _mscl: -_mscl.ShuntCalCmdInfo_swigregister(ShuntCalCmdInfo) - -class AutoCalResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_AutoCalResult - - def completionFlag(self): - return _mscl.AutoCalResult_completionFlag(self) - -# Register AutoCalResult in _mscl: -_mscl.AutoCalResult_swigregister(AutoCalResult) - -class AutoCalResult_shmLink(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink_swiginit(self, _mscl.new_AutoCalResult_shmLink()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh3(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink_offsetCh1(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink_offsetCh2(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink_temperature(self) - -# Register AutoCalResult_shmLink in _mscl: -_mscl.AutoCalResult_shmLink_swigregister(AutoCalResult_shmLink) - -class AutoCalResult_shmLink201(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink201_swiginit(self, _mscl.new_AutoCalResult_shmLink201()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink201 - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh3(self) - - def slopeCh1(self): - return _mscl.AutoCalResult_shmLink201_slopeCh1(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink201_offsetCh1(self) - - def slopeCh2(self): - return _mscl.AutoCalResult_shmLink201_slopeCh2(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink201_offsetCh2(self) - - def slopeCh3(self): - return _mscl.AutoCalResult_shmLink201_slopeCh3(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink201_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink201_temperature(self) - -# Register AutoCalResult_shmLink201 in _mscl: -_mscl.AutoCalResult_shmLink201_swigregister(AutoCalResult_shmLink201) - -class AutoShuntCalResult(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoShuntCalResult_swiginit(self, _mscl.new_AutoShuntCalResult()) - __swig_destroy__ = _mscl.delete_AutoShuntCalResult - - def errorFlag(self): - return _mscl.AutoShuntCalResult_errorFlag(self) - - def slope(self): - return _mscl.AutoShuntCalResult_slope(self) - - def offset(self): - return _mscl.AutoShuntCalResult_offset(self) - - def baseMedian(self): - return _mscl.AutoShuntCalResult_baseMedian(self) - - def baseMin(self): - return _mscl.AutoShuntCalResult_baseMin(self) - - def baseMax(self): - return _mscl.AutoShuntCalResult_baseMax(self) - - def shuntMedian(self): - return _mscl.AutoShuntCalResult_shuntMedian(self) - - def shuntMin(self): - return _mscl.AutoShuntCalResult_shuntMin(self) - - def shuntMax(self): - return _mscl.AutoShuntCalResult_shuntMax(self) - -# Register AutoShuntCalResult in _mscl: -_mscl.AutoShuntCalResult_swigregister(AutoShuntCalResult) - -class PingResponse(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PingResponse_swiginit(self, _mscl.new_PingResponse()) - - def success(self): - return _mscl.PingResponse_success(self) - - def nodeRssi(self): - return _mscl.PingResponse_nodeRssi(self) - - def baseRssi(self): - return _mscl.PingResponse_baseRssi(self) - __swig_destroy__ = _mscl.delete_PingResponse - -# Register PingResponse in _mscl: -_mscl.PingResponse_swigregister(PingResponse) - -class SetToIdleStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - setToIdleResult_success = _mscl.SetToIdleStatus_setToIdleResult_success - setToIdleResult_canceled = _mscl.SetToIdleStatus_setToIdleResult_canceled - setToIdleResult_failed = _mscl.SetToIdleStatus_setToIdleResult_failed - setToIdleResult_notCompleted = _mscl.SetToIdleStatus_setToIdleResult_notCompleted - - def result(self): - return _mscl.SetToIdleStatus_result(self) - - def complete(self, timeout=10): - return _mscl.SetToIdleStatus_complete(self, timeout) - - def cancel(self): - return _mscl.SetToIdleStatus_cancel(self) - __swig_destroy__ = _mscl.delete_SetToIdleStatus - -# Register SetToIdleStatus in _mscl: -_mscl.SetToIdleStatus_swigregister(SetToIdleStatus) - -class NodeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region): - _mscl.NodeInfo_swiginit(self, _mscl.new_NodeInfo(fw, model, region)) - __swig_destroy__ = _mscl.delete_NodeInfo - -# Register NodeInfo in _mscl: -_mscl.NodeInfo_swigregister(NodeInfo) - -class WirelessNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, nodeAddress, basestation): - _mscl.WirelessNode_swiginit(self, _mscl.new_WirelessNode(nodeAddress, basestation)) - __swig_destroy__ = _mscl.delete_WirelessNode - - @staticmethod - def Mock(*args): - return _mscl.WirelessNode_Mock(*args) - - @staticmethod - def deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - - def features(self): - return _mscl.WirelessNode_features(self) - - def lastCommunicationTime(self): - return _mscl.WirelessNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.WirelessNode_lastDeviceState(self) - - def setBaseStation(self, basestation): - return _mscl.WirelessNode_setBaseStation(self, basestation) - - def getBaseStation(self): - return _mscl.WirelessNode_getBaseStation(self) - - def hasBaseStation(self, basestation): - return _mscl.WirelessNode_hasBaseStation(self, basestation) - - def useGroupRead(self, useGroup): - return _mscl.WirelessNode_useGroupRead(self, useGroup) - - def readWriteRetries(self, *args): - return _mscl.WirelessNode_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.WirelessNode_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.WirelessNode_clearEepromCache(self) - - def updateEepromCacheFromNodeDiscovery(self, nodeDisovery): - return _mscl.WirelessNode_updateEepromCacheFromNodeDiscovery(self, nodeDisovery) - - def getEepromCache(self): - return _mscl.WirelessNode_getEepromCache(self) - - def nodeAddress(self): - return _mscl.WirelessNode_nodeAddress(self) - - def frequency(self): - return _mscl.WirelessNode_frequency(self) - - def communicationProtocol(self): - return _mscl.WirelessNode_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.WirelessNode_firmwareVersion(self) - - def model(self): - return _mscl.WirelessNode_model(self) - - def serial(self): - return _mscl.WirelessNode_serial(self) - - def name(self): - return _mscl.WirelessNode_name(self) - - def microcontroller(self): - return _mscl.WirelessNode_microcontroller(self) - - def radioFeatures(self): - return _mscl.WirelessNode_radioFeatures(self) - - def dataStorageSize(self): - return _mscl.WirelessNode_dataStorageSize(self) - - def regionCode(self): - return _mscl.WirelessNode_regionCode(self) - - def ping(self): - return _mscl.WirelessNode_ping(self) - - def sleep(self): - return _mscl.WirelessNode_sleep(self) - - def cyclePower(self): - return _mscl.WirelessNode_cyclePower(self) - - def resetRadio(self): - return _mscl.WirelessNode_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.WirelessNode_changeFrequency(self, frequency) - - def setToIdle(self): - return _mscl.WirelessNode_setToIdle(self) - - def erase(self): - return _mscl.WirelessNode_erase(self) - - def startNonSyncSampling(self): - return _mscl.WirelessNode_startNonSyncSampling(self) - - def resendStartSyncSampling(self): - return _mscl.WirelessNode_resendStartSyncSampling(self) - - def clearHistogram(self): - return _mscl.WirelessNode_clearHistogram(self) - - def autoBalance(self, mask, targetPercent): - return _mscl.WirelessNode_autoBalance(self, mask, targetPercent) - - def autoCal_shmLink(self): - return _mscl.WirelessNode_autoCal_shmLink(self) - - def autoCal_shmLink201(self): - return _mscl.WirelessNode_autoCal_shmLink201(self) - - def autoShuntCal(self, mask, commandInfo): - return _mscl.WirelessNode_autoShuntCal(self, mask, commandInfo) - - def poll(self, mask): - return _mscl.WirelessNode_poll(self, mask) - - def readEeprom(self, location): - return _mscl.WirelessNode_readEeprom(self, location) - - def writeEeprom(self, location, value): - return _mscl.WirelessNode_writeEeprom(self, location, value) - - def getDiagnosticInfo(self): - return _mscl.WirelessNode_getDiagnosticInfo(self) - - def testCommunicationProtocol(self, protocol): - return _mscl.WirelessNode_testCommunicationProtocol(self, protocol) - - def verifyConfig(self, config, outIssues): - return _mscl.WirelessNode_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.WirelessNode_applyConfig(self, config) - - def getNumDatalogSessions(self): - return _mscl.WirelessNode_getNumDatalogSessions(self) - - def percentFull(self): - return _mscl.WirelessNode_percentFull(self) - - def getDefaultMode(self): - return _mscl.WirelessNode_getDefaultMode(self) - - def getInactivityTimeout(self): - return _mscl.WirelessNode_getInactivityTimeout(self) - - def getCheckRadioInterval(self): - return _mscl.WirelessNode_getCheckRadioInterval(self) - - def getTransmitPower(self): - return _mscl.WirelessNode_getTransmitPower(self) - - def getSamplingMode(self): - return _mscl.WirelessNode_getSamplingMode(self) - - def getActiveChannels(self): - return _mscl.WirelessNode_getActiveChannels(self) - - def getSampleRate(self): - return _mscl.WirelessNode_getSampleRate(self) - - def getNumSweeps(self): - return _mscl.WirelessNode_getNumSweeps(self) - - def getUnlimitedDuration(self): - return _mscl.WirelessNode_getUnlimitedDuration(self) - - def getDataFormat(self): - return _mscl.WirelessNode_getDataFormat(self) - - def getDataCollectionMethod(self): - return _mscl.WirelessNode_getDataCollectionMethod(self) - - def getTimeBetweenBursts(self): - return _mscl.WirelessNode_getTimeBetweenBursts(self) - - def getLostBeaconTimeout(self): - return _mscl.WirelessNode_getLostBeaconTimeout(self) - - def getInputRange(self, mask): - return _mscl.WirelessNode_getInputRange(self, mask) - - def getHardwareOffset(self, mask): - return _mscl.WirelessNode_getHardwareOffset(self, mask) - - def getAntiAliasingFilter(self, mask): - return _mscl.WirelessNode_getAntiAliasingFilter(self, mask) - - def getCfcFilterConfiguration(self): - return _mscl.WirelessNode_getCfcFilterConfiguration(self) - - def getLowPassFilter(self, mask): - return _mscl.WirelessNode_getLowPassFilter(self, mask) - - def getHighPassFilter(self, mask): - return _mscl.WirelessNode_getHighPassFilter(self, mask) - - def getDebounceFilter(self, mask): - return _mscl.WirelessNode_getDebounceFilter(self, mask) - - def getPullUpResistor(self, mask): - return _mscl.WirelessNode_getPullUpResistor(self, mask) - - def getSensorOutputMode(self): - return _mscl.WirelessNode_getSensorOutputMode(self) - - def getGaugeFactor(self, mask): - return _mscl.WirelessNode_getGaugeFactor(self, mask) - - def getExcitationVoltage(self): - return _mscl.WirelessNode_getExcitationVoltage(self) - - def getAdcVoltageRef(self): - return _mscl.WirelessNode_getAdcVoltageRef(self) - - def getGainAmplifierVoltageRef(self): - return _mscl.WirelessNode_getGainAmplifierVoltageRef(self) - - def getGaugeResistance(self): - return _mscl.WirelessNode_getGaugeResistance(self) - - def getNumActiveGauges(self): - return _mscl.WirelessNode_getNumActiveGauges(self) - - def getLowBatteryThreshold(self): - return _mscl.WirelessNode_getLowBatteryThreshold(self) - - def getLinearEquation(self, mask): - return _mscl.WirelessNode_getLinearEquation(self, mask) - - def getUnit(self, mask): - return _mscl.WirelessNode_getUnit(self, mask) - - def getEquationType(self, mask): - return _mscl.WirelessNode_getEquationType(self, mask) - - def getFactoryCalibrationLinearEq(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationLinearEq(self, mask) - - def getFactoryCalibrationUnit(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationUnit(self, mask) - - def getFactoryCalibrationEqType(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationEqType(self, mask) - - def getFilterSettlingTime(self, mask): - return _mscl.WirelessNode_getFilterSettlingTime(self, mask) - - def getThermocoupleType(self, mask): - return _mscl.WirelessNode_getThermocoupleType(self, mask) - - def getTempSensorOptions(self, mask): - return _mscl.WirelessNode_getTempSensorOptions(self, mask) - - def getFatigueOptions(self): - return _mscl.WirelessNode_getFatigueOptions(self) - - def getHistogramOptions(self): - return _mscl.WirelessNode_getHistogramOptions(self) - - def getActivitySense(self): - return _mscl.WirelessNode_getActivitySense(self) - - def getEventTriggerOptions(self): - return _mscl.WirelessNode_getEventTriggerOptions(self) - - def getDiagnosticInterval(self): - return _mscl.WirelessNode_getDiagnosticInterval(self) - - def getStorageLimitMode(self): - return _mscl.WirelessNode_getStorageLimitMode(self) - - def getSensorDelay(self): - return _mscl.WirelessNode_getSensorDelay(self) - - def getDataMode(self): - return _mscl.WirelessNode_getDataMode(self) - - def getDerivedDataRate(self): - return _mscl.WirelessNode_getDerivedDataRate(self) - - def getDerivedChannelMask(self, category): - return _mscl.WirelessNode_getDerivedChannelMask(self, category) - - def getDerivedVelocityUnit(self): - return _mscl.WirelessNode_getDerivedVelocityUnit(self) - -# Register WirelessNode in _mscl: -_mscl.WirelessNode_swigregister(WirelessNode) - -def WirelessNode_Mock(*args): - return _mscl.WirelessNode_Mock(*args) - -def WirelessNode_deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - -class DatalogDownloader(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.DatalogDownloader_swiginit(self, _mscl.new_DatalogDownloader(*args)) - __swig_destroy__ = _mscl.delete_DatalogDownloader - - def complete(self): - return _mscl.DatalogDownloader_complete(self) - - def percentComplete(self): - return _mscl.DatalogDownloader_percentComplete(self) - - def getNextData(self): - return _mscl.DatalogDownloader_getNextData(self) - - def metaDataUpdated(self): - return _mscl.DatalogDownloader_metaDataUpdated(self) - - def calCoefficientsUpdated(self): - return _mscl.DatalogDownloader_calCoefficientsUpdated(self) - - def startOfSession(self): - return _mscl.DatalogDownloader_startOfSession(self) - - def sessionIndex(self): - return _mscl.DatalogDownloader_sessionIndex(self) - - def sampleRate(self): - return _mscl.DatalogDownloader_sampleRate(self) - - def userString(self): - return _mscl.DatalogDownloader_userString(self) - - def calCoefficients(self): - return _mscl.DatalogDownloader_calCoefficients(self) - -# Register DatalogDownloader in _mscl: -_mscl.DatalogDownloader_swigregister(DatalogDownloader) - -class ArmedDataloggingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.ArmedDataloggingNetwork_swiginit(self, _mscl.new_ArmedDataloggingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.ArmedDataloggingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.ArmedDataloggingNetwork_removeNode(self, nodeAddress) - - def startSampling(self): - return _mscl.ArmedDataloggingNetwork_startSampling(self) - __swig_destroy__ = _mscl.delete_ArmedDataloggingNetwork - -# Register ArmedDataloggingNetwork in _mscl: -_mscl.ArmedDataloggingNetwork_swigregister(ArmedDataloggingNetwork) - -class SyncNetworkInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - status_OK = _mscl.SyncNetworkInfo_status_OK - status_PoorCommunication = _mscl.SyncNetworkInfo_status_PoorCommunication - status_DoesNotFit = _mscl.SyncNetworkInfo_status_DoesNotFit - status_Contention = _mscl.SyncNetworkInfo_status_Contention - - def __init__(self, node): - _mscl.SyncNetworkInfo_swiginit(self, _mscl.new_SyncNetworkInfo(node)) - - def status(self): - return _mscl.SyncNetworkInfo_status(self) - - def startedSampling(self): - return _mscl.SyncNetworkInfo_startedSampling(self) - - def configurationApplied(self): - return _mscl.SyncNetworkInfo_configurationApplied(self) - - def percentBandwidth(self): - return _mscl.SyncNetworkInfo_percentBandwidth(self) - - def tdmaAddress(self): - return _mscl.SyncNetworkInfo_tdmaAddress(self) - - def maxTdmaAddress(self): - return _mscl.SyncNetworkInfo_maxTdmaAddress(self) - - def transmissionPerGroup(self): - return _mscl.SyncNetworkInfo_transmissionPerGroup(self) - - def groupSize(self): - return _mscl.SyncNetworkInfo_groupSize(self) - __swig_destroy__ = _mscl.delete_SyncNetworkInfo - -# Register SyncNetworkInfo in _mscl: -_mscl.SyncNetworkInfo_swigregister(SyncNetworkInfo) - -class SyncSamplingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.SyncSamplingNetwork_swiginit(self, _mscl.new_SyncSamplingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.SyncSamplingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.SyncSamplingNetwork_removeNode(self, nodeAddress) - - def percentBandwidth(self): - return _mscl.SyncSamplingNetwork_percentBandwidth(self) - - def ok(self): - return _mscl.SyncSamplingNetwork_ok(self) - - def refresh(self): - return _mscl.SyncSamplingNetwork_refresh(self) - - def lossless(self, *args): - return _mscl.SyncSamplingNetwork_lossless(self, *args) - - def communicationProtocol(self, *args): - return _mscl.SyncSamplingNetwork_communicationProtocol(self, *args) - - def applyConfiguration(self): - return _mscl.SyncSamplingNetwork_applyConfiguration(self) - - def startSampling(self, *args): - return _mscl.SyncSamplingNetwork_startSampling(self, *args) - - def startSampling_noBeacon(self): - return _mscl.SyncSamplingNetwork_startSampling_noBeacon(self) - - def getNodeNetworkInfo(self, nodeAddress): - return _mscl.SyncSamplingNetwork_getNodeNetworkInfo(self, nodeAddress) - __swig_destroy__ = _mscl.delete_SyncSamplingNetwork - -# Register SyncSamplingNetwork in _mscl: -_mscl.SyncSamplingNetwork_swigregister(SyncSamplingNetwork) - -class NodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_NodeFeatures - - def normalizeNumSweeps(self, sweeps): - return _mscl.NodeFeatures_normalizeNumSweeps(self, sweeps) - - def normalizeTimeBetweenBursts(self, time): - return _mscl.NodeFeatures_normalizeTimeBetweenBursts(self, time) - - def channels(self): - return _mscl.NodeFeatures_channels(self) - - def channelGroups(self): - return _mscl.NodeFeatures_channelGroups(self) - - def channelType(self, channelNumber): - return _mscl.NodeFeatures_channelType(self, channelNumber) - - def supportsChannelSetting(self, setting, mask): - return _mscl.NodeFeatures_supportsChannelSetting(self, setting, mask) - - def supportsInputRangePerExcitationVoltage(self): - return _mscl.NodeFeatures_supportsInputRangePerExcitationVoltage(self) - - def supportsHardwareOffset(self): - return _mscl.NodeFeatures_supportsHardwareOffset(self) - - def supportsAntiAliasingFilter(self): - return _mscl.NodeFeatures_supportsAntiAliasingFilter(self) - - def supportsLowPassFilter(self): - return _mscl.NodeFeatures_supportsLowPassFilter(self) - - def supportsHighPassFilter(self): - return _mscl.NodeFeatures_supportsHighPassFilter(self) - - def supportsGaugeFactor(self): - return _mscl.NodeFeatures_supportsGaugeFactor(self) - - def supportsGaugeResistance(self): - return _mscl.NodeFeatures_supportsGaugeResistance(self) - - def supportsNumActiveGauges(self): - return _mscl.NodeFeatures_supportsNumActiveGauges(self) - - def supportsLostBeaconTimeout(self): - return _mscl.NodeFeatures_supportsLostBeaconTimeout(self) - - def supportsPullUpResistor(self): - return _mscl.NodeFeatures_supportsPullUpResistor(self) - - def supportsFilterSettlingTime(self): - return _mscl.NodeFeatures_supportsFilterSettlingTime(self) - - def supportsThermocoupleType(self): - return _mscl.NodeFeatures_supportsThermocoupleType(self) - - def supportsTempSensorOptions(self): - return _mscl.NodeFeatures_supportsTempSensorOptions(self) - - def supportsDebounceFilter(self): - return _mscl.NodeFeatures_supportsDebounceFilter(self) - - def supportsFatigueConfig(self): - return _mscl.NodeFeatures_supportsFatigueConfig(self) - - def supportsYoungsModConfig(self): - return _mscl.NodeFeatures_supportsYoungsModConfig(self) - - def supportsPoissonsRatioConfig(self): - return _mscl.NodeFeatures_supportsPoissonsRatioConfig(self) - - def supportsFatigueDebugModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueDebugModeConfig(self) - - def supportsFatigueModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueModeConfig(self) - - def supportsHistogramConfig(self): - return _mscl.NodeFeatures_supportsHistogramConfig(self) - - def supportsHistogramRateConfig(self): - return _mscl.NodeFeatures_supportsHistogramRateConfig(self) - - def supportsHistogramEnableConfig(self): - return _mscl.NodeFeatures_supportsHistogramEnableConfig(self) - - def supportsActivitySense(self): - return _mscl.NodeFeatures_supportsActivitySense(self) - - def supportsAutoBalance(self): - return _mscl.NodeFeatures_supportsAutoBalance(self) - - def supportsLegacyShuntCal(self): - return _mscl.NodeFeatures_supportsLegacyShuntCal(self) - - def supportsAutoCal_shm(self): - return _mscl.NodeFeatures_supportsAutoCal_shm(self) - - def supportsAutoCal_shm201(self): - return _mscl.NodeFeatures_supportsAutoCal_shm201(self) - - def supportsAutoShuntCal(self): - return _mscl.NodeFeatures_supportsAutoShuntCal(self) - - def supportsGetFactoryCal(self): - return _mscl.NodeFeatures_supportsGetFactoryCal(self) - - def supportsLimitedDuration(self): - return _mscl.NodeFeatures_supportsLimitedDuration(self) - - def supportsEventTrigger(self): - return _mscl.NodeFeatures_supportsEventTrigger(self) - - def supportsDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsDiagnosticInfo(self) - - def supportsLoggedData(self): - return _mscl.NodeFeatures_supportsLoggedData(self) - - def supportsPoll(self): - return _mscl.NodeFeatures_supportsPoll(self) - - def supportsSensorDelayConfig(self): - return _mscl.NodeFeatures_supportsSensorDelayConfig(self) - - def supportsSensorDelayAlwaysOn(self): - return _mscl.NodeFeatures_supportsSensorDelayAlwaysOn(self) - - def supportsSensorOutputMode(self): - return _mscl.NodeFeatures_supportsSensorOutputMode(self) - - def supportsCfcFilterConfiguration(self): - return _mscl.NodeFeatures_supportsCfcFilterConfiguration(self) - - def supportsChannel(self, channelNumber): - return _mscl.NodeFeatures_supportsChannel(self, channelNumber) - - def supportsSamplingMode(self, samplingMode): - return _mscl.NodeFeatures_supportsSamplingMode(self, samplingMode) - - def supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.NodeFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsDataFormat(self, dataFormat): - return _mscl.NodeFeatures_supportsDataFormat(self, dataFormat) - - def supportsDefaultMode(self, mode): - return _mscl.NodeFeatures_supportsDefaultMode(self, mode) - - def supportsDataCollectionMethod(self, collectionMethod): - return _mscl.NodeFeatures_supportsDataCollectionMethod(self, collectionMethod) - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.NodeFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsDataMode(self, dataMode): - return _mscl.NodeFeatures_supportsDataMode(self, dataMode) - - def supportsTransducerType(self, transducerType): - return _mscl.NodeFeatures_supportsTransducerType(self, transducerType) - - def supportsFatigueMode(self, mode): - return _mscl.NodeFeatures_supportsFatigueMode(self, mode) - - def supportsInputRange(self, *args): - return _mscl.NodeFeatures_supportsInputRange(self, *args) - - def supportsCentisecondEventDuration(self): - return _mscl.NodeFeatures_supportsCentisecondEventDuration(self) - - def supportsGetDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsGetDiagnosticInfo(self) - - def supportsNonSyncLogWithTimestamps(self): - return _mscl.NodeFeatures_supportsNonSyncLogWithTimestamps(self) - - def supportsDerivedCategory(self, category): - return _mscl.NodeFeatures_supportsDerivedCategory(self, category) - - def supportsRawDataMode(self): - return _mscl.NodeFeatures_supportsRawDataMode(self) - - def supportsDerivedDataMode(self): - return _mscl.NodeFeatures_supportsDerivedDataMode(self) - - def supportsDerivedVelocityUnitConfig(self): - return _mscl.NodeFeatures_supportsDerivedVelocityUnitConfig(self) - - def supportsExcitationVoltageConfig(self): - return _mscl.NodeFeatures_supportsExcitationVoltageConfig(self) - - def supportsLowBatteryThresholdConfig(self): - return _mscl.NodeFeatures_supportsLowBatteryThresholdConfig(self) - - def maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode) - - def maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode) - - def maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels): - return _mscl.NodeFeatures_maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels) - - def maxFilterSettlingTime(self, rate): - return _mscl.NodeFeatures_maxFilterSettlingTime(self, rate) - - def minInactivityTimeout(self): - return _mscl.NodeFeatures_minInactivityTimeout(self) - - def minLostBeaconTimeout(self): - return _mscl.NodeFeatures_minLostBeaconTimeout(self) - - def maxLostBeaconTimeout(self): - return _mscl.NodeFeatures_maxLostBeaconTimeout(self) - - def minCheckRadioInterval(self): - return _mscl.NodeFeatures_minCheckRadioInterval(self) - - def maxCheckRadioInterval(self): - return _mscl.NodeFeatures_maxCheckRadioInterval(self) - - def minSweeps(self): - return _mscl.NodeFeatures_minSweeps(self) - - def maxSweeps(self, samplingMode, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweeps(self, samplingMode, dataMode, dataFormat, channels) - - def maxSweepsPerBurst(self, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweepsPerBurst(self, dataMode, dataFormat, channels) - - def minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol): - return _mscl.NodeFeatures_minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol) - - def minSensorDelay(self): - return _mscl.NodeFeatures_minSensorDelay(self) - - def maxSensorDelay(self): - return _mscl.NodeFeatures_maxSensorDelay(self) - - def defaultSensorDelay(self): - return _mscl.NodeFeatures_defaultSensorDelay(self) - - def maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate): - return _mscl.NodeFeatures_maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate) - - def normalizeEventDuration(self, duration): - return _mscl.NodeFeatures_normalizeEventDuration(self, duration) - - def normalizeSensorDelay(self, delay): - return _mscl.NodeFeatures_normalizeSensorDelay(self, delay) - - def numDamageAngles(self): - return _mscl.NodeFeatures_numDamageAngles(self) - - def numSnCurveSegments(self): - return _mscl.NodeFeatures_numSnCurveSegments(self) - - def numEventTriggers(self): - return _mscl.NodeFeatures_numEventTriggers(self) - - def defaultModes(self): - return _mscl.NodeFeatures_defaultModes(self) - - def dataCollectionMethods(self): - return _mscl.NodeFeatures_dataCollectionMethods(self) - - def dataFormats(self): - return _mscl.NodeFeatures_dataFormats(self) - - def samplingModes(self): - return _mscl.NodeFeatures_samplingModes(self) - - def sampleRates(self, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_sampleRates(self, samplingMode, dataCollectionMethod, dataMode) - - def derivedDataRates(self): - return _mscl.NodeFeatures_derivedDataRates(self) - - def transmitPowers(self, *args): - return _mscl.NodeFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.NodeFeatures_commProtocols(self) - - def sensorOutputModes(self): - return _mscl.NodeFeatures_sensorOutputModes(self) - - def cfcFilters(self): - return _mscl.NodeFeatures_cfcFilters(self) - - def histogramTransmitRates(self): - return _mscl.NodeFeatures_histogramTransmitRates(self) - - def fatigueModes(self): - return _mscl.NodeFeatures_fatigueModes(self) - - def antiAliasingFilters(self): - return _mscl.NodeFeatures_antiAliasingFilters(self) - - def lowPassFilters(self): - return _mscl.NodeFeatures_lowPassFilters(self) - - def highPassFilters(self): - return _mscl.NodeFeatures_highPassFilters(self) - - def storageLimitModes(self): - return _mscl.NodeFeatures_storageLimitModes(self) - - def inputRanges(self, *args): - return _mscl.NodeFeatures_inputRanges(self, *args) - - def dataModes(self): - return _mscl.NodeFeatures_dataModes(self) - - def transducerTypes(self): - return _mscl.NodeFeatures_transducerTypes(self) - - def channelsPerDerivedCategory(self): - return _mscl.NodeFeatures_channelsPerDerivedCategory(self) - - def excitationVoltages(self): - return _mscl.NodeFeatures_excitationVoltages(self) - - def adcVoltageInputType(self): - return _mscl.NodeFeatures_adcVoltageInputType(self) - - def maxTransmitPower(self, *args): - return _mscl.NodeFeatures_maxTransmitPower(self, *args) - - def minTransmitPower(self, *args): - return _mscl.NodeFeatures_minTransmitPower(self, *args) - -# Register NodeFeatures in _mscl: -_mscl.NodeFeatures_swigregister(NodeFeatures) - -class BaseStationFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_BaseStationFeatures - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.BaseStationFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.BaseStationFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsButtons(self): - return _mscl.BaseStationFeatures_supportsButtons(self) - - def supportsAnalogPairing(self): - return _mscl.BaseStationFeatures_supportsAnalogPairing(self) - - def supportsBeaconStatus(self): - return _mscl.BaseStationFeatures_supportsBeaconStatus(self) - - def supportsRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsRfSweepMode(self) - - def supportsCustomRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsCustomRfSweepMode(self) - - def buttonCount(self): - return _mscl.BaseStationFeatures_buttonCount(self) - - def analogPortCount(self): - return _mscl.BaseStationFeatures_analogPortCount(self) - - def transmitPowers(self, *args): - return _mscl.BaseStationFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.BaseStationFeatures_commProtocols(self) - - def maxTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_maxTransmitPower(self, region, commProtocol) - - def minTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_minTransmitPower(self, region, commProtocol) - -# Register BaseStationFeatures in _mscl: -_mscl.BaseStationFeatures_swigregister(BaseStationFeatures) - -class EulerAngles(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EulerAngles_swiginit(self, _mscl.new_EulerAngles(*args)) - - def asMipFieldValues(self): - return _mscl.EulerAngles_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.EulerAngles_appendMipFieldValues(self, appendTo) - - def roll(self): - return _mscl.EulerAngles_roll(self) - - def pitch(self): - return _mscl.EulerAngles_pitch(self) - - def yaw(self): - return _mscl.EulerAngles_yaw(self) - - def heading(self): - return _mscl.EulerAngles_heading(self) - __swig_destroy__ = _mscl.delete_EulerAngles - -# Register EulerAngles in _mscl: -_mscl.EulerAngles_swigregister(EulerAngles) - -class Quaternion(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Quaternion_swiginit(self, _mscl.new_Quaternion(*args)) - - def asMipFieldValues(self): - return _mscl.Quaternion_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Quaternion_appendMipFieldValues(self, appendTo) - - def normalize(self): - return _mscl.Quaternion_normalize(self) - - def q0(self): - return _mscl.Quaternion_q0(self) - - def q1(self): - return _mscl.Quaternion_q1(self) - - def q2(self): - return _mscl.Quaternion_q2(self) - - def q3(self): - return _mscl.Quaternion_q3(self) - __swig_destroy__ = _mscl.delete_Quaternion - -# Register Quaternion in _mscl: -_mscl.Quaternion_swigregister(Quaternion) - -class Rotation(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EULER_ANGLES = _mscl.Rotation_EULER_ANGLES - QUATERNION = _mscl.Rotation_QUATERNION - - def __init__(self, *args): - _mscl.Rotation_swiginit(self, _mscl.new_Rotation(*args)) - - @staticmethod - def FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - - @staticmethod - def FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - - def asEulerAngles(self): - return _mscl.Rotation_asEulerAngles(self) - - def asQuaternion(self): - return _mscl.Rotation_asQuaternion(self) - - def asMipFieldValues(self, includeFormat=True): - return _mscl.Rotation_asMipFieldValues(self, includeFormat) - - def appendMipFieldValues(self, appendTo, includeFormat=True): - return _mscl.Rotation_appendMipFieldValues(self, appendTo, includeFormat) - - def format(self): - return _mscl.Rotation_format(self) - __swig_destroy__ = _mscl.delete_Rotation - -# Register Rotation in _mscl: -_mscl.Rotation_swigregister(Rotation) - -def Rotation_FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - -def Rotation_FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - -class Vec3f(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Vec3f_swiginit(self, _mscl.new_Vec3f(*args)) - __swig_destroy__ = _mscl.delete_Vec3f - - def fromMipFieldValues(self, data, offset=0): - return _mscl.Vec3f_fromMipFieldValues(self, data, offset) - - def asMipFieldValues(self): - return _mscl.Vec3f_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Vec3f_appendMipFieldValues(self, appendTo) - - def x(self, *args): - return _mscl.Vec3f_x(self, *args) - - def y(self, *args): - return _mscl.Vec3f_y(self, *args) - - def z(self, *args): - return _mscl.Vec3f_z(self, *args) - -# Register Vec3f in _mscl: -_mscl.Vec3f_swigregister(Vec3f) - -ECEF = _mscl.ECEF -LLH_NED = _mscl.LLH_NED -LOCAL = _mscl.LOCAL -VEHICLE = _mscl.VEHICLE -class GeometricVector(Vec3f): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - - @staticmethod - def VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - - def __init__(self, *args): - _mscl.GeometricVector_swiginit(self, _mscl.new_GeometricVector(*args)) - __swig_destroy__ = _mscl.delete_GeometricVector - - def fromMipFieldValues_includesFrame(self, data, offset=0): - return _mscl.GeometricVector_fromMipFieldValues_includesFrame(self, data, offset) - - def asMipFieldValues_includeFrame(self): - return _mscl.GeometricVector_asMipFieldValues_includeFrame(self) - - def appendMipFieldValues_includeFrame(self, appendTo): - return _mscl.GeometricVector_appendMipFieldValues_includeFrame(self, appendTo) - referenceFrame = property(_mscl.GeometricVector_referenceFrame_get, _mscl.GeometricVector_referenceFrame_set) - - def north(self, *args): - return _mscl.GeometricVector_north(self, *args) - - def east(self, *args): - return _mscl.GeometricVector_east(self, *args) - - def down(self, *args): - return _mscl.GeometricVector_down(self, *args) - -# Register GeometricVector in _mscl: -_mscl.GeometricVector_swigregister(GeometricVector) - -def GeometricVector_VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - -def GeometricVector_VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - -class PositionOffset(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.PositionOffset_swiginit(self, _mscl.new_PositionOffset(*args)) - __swig_destroy__ = _mscl.delete_PositionOffset - -# Register PositionOffset in _mscl: -_mscl.PositionOffset_swigregister(PositionOffset) - -class Velocity(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Velocity_swiginit(self, _mscl.new_Velocity(*args)) - __swig_destroy__ = _mscl.delete_Velocity - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - - @staticmethod - def NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - - @staticmethod - def Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -# Register Velocity in _mscl: -_mscl.Velocity_swigregister(Velocity) - -def Velocity_ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - -def Velocity_NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - -def Velocity_Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -class Position(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - - def __init__(self, *args): - _mscl.Position_swiginit(self, _mscl.new_Position(*args)) - __swig_destroy__ = _mscl.delete_Position - referenceFrame = property(_mscl.Position_referenceFrame_get, _mscl.Position_referenceFrame_set) - - def latitude(self, *args): - return _mscl.Position_latitude(self, *args) - - def longitude(self, *args): - return _mscl.Position_longitude(self, *args) - - def altitude(self, *args): - return _mscl.Position_altitude(self, *args) - - def height(self, *args): - return _mscl.Position_height(self, *args) - - def x(self, *args): - return _mscl.Position_x(self, *args) - - def y(self, *args): - return _mscl.Position_y(self, *args) - - def z(self, *args): - return _mscl.Position_z(self, *args) - -# Register Position in _mscl: -_mscl.Position_swigregister(Position) - -def Position_LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - -def Position_ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - -class GeometricUncertainty(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeometricUncertainty_swiginit(self, _mscl.new_GeometricUncertainty(*args)) - __swig_destroy__ = _mscl.delete_GeometricUncertainty - -# Register GeometricUncertainty in _mscl: -_mscl.GeometricUncertainty_swigregister(GeometricUncertainty) - -class MipModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_3dm_dh3 = _mscl.MipModels_node_3dm_dh3 - node_3dm_gx3_15 = _mscl.MipModels_node_3dm_gx3_15 - node_3dm_gx3_25 = _mscl.MipModels_node_3dm_gx3_25 - node_3dm_gx3_35 = _mscl.MipModels_node_3dm_gx3_35 - node_3dm_gx3_45 = _mscl.MipModels_node_3dm_gx3_45 - node_3dm_rq1_45_lt = _mscl.MipModels_node_3dm_rq1_45_lt - node_3dm_gx4_15 = _mscl.MipModels_node_3dm_gx4_15 - node_3dm_gx4_25 = _mscl.MipModels_node_3dm_gx4_25 - node_3dm_gx4_45 = _mscl.MipModels_node_3dm_gx4_45 - node_3dm_rq1_45_st = _mscl.MipModels_node_3dm_rq1_45_st - node_mv5_ar = _mscl.MipModels_node_mv5_ar - node_3dm_gx5_10 = _mscl.MipModels_node_3dm_gx5_10 - node_3dm_gx5_15 = _mscl.MipModels_node_3dm_gx5_15 - node_3dm_gx5_25 = _mscl.MipModels_node_3dm_gx5_25 - node_3dm_gx5_35 = _mscl.MipModels_node_3dm_gx5_35 - node_3dm_gx5_45 = _mscl.MipModels_node_3dm_gx5_45 - node_3dm_cv5_10 = _mscl.MipModels_node_3dm_cv5_10 - node_3dm_cv5_15 = _mscl.MipModels_node_3dm_cv5_15 - node_3dm_cv5_25 = _mscl.MipModels_node_3dm_cv5_25 - node_3dm_cv5_45 = _mscl.MipModels_node_3dm_cv5_45 - node_3dm_gq4_45 = _mscl.MipModels_node_3dm_gq4_45 - node_3dm_cx5_45 = _mscl.MipModels_node_3dm_cx5_45 - node_3dm_cx5_35 = _mscl.MipModels_node_3dm_cx5_35 - node_3dm_cx5_25 = _mscl.MipModels_node_3dm_cx5_25 - node_3dm_cx5_15 = _mscl.MipModels_node_3dm_cx5_15 - node_3dm_cx5_10 = _mscl.MipModels_node_3dm_cx5_10 - node_3dm_cl5_15 = _mscl.MipModels_node_3dm_cl5_15 - node_3dm_cl5_25 = _mscl.MipModels_node_3dm_cl5_25 - node_3dm_gq7 = _mscl.MipModels_node_3dm_gq7 - node_3dm_rtk = _mscl.MipModels_node_3dm_rtk - node_3dm_cv7_ahrs = _mscl.MipModels_node_3dm_cv7_ahrs - node_3dm_cv7_ar = _mscl.MipModels_node_3dm_cv7_ar - node_3dm_gv7_ahrs = _mscl.MipModels_node_3dm_gv7_ahrs - node_3dm_gv7_ar = _mscl.MipModels_node_3dm_gv7_ar - node_3dm_gv7_ins = _mscl.MipModels_node_3dm_gv7_ins - node_3dm_cv7_ins = _mscl.MipModels_node_3dm_cv7_ins - node_3dm_cv7_gnss_ins = _mscl.MipModels_node_3dm_cv7_gnss_ins - placeholder_matchAll = _mscl.MipModels_placeholder_matchAll - rtk_v1 = _mscl.MipModels_rtk_v1 - rtk_v2 = _mscl.MipModels_rtk_v2 - model_3dm_dh3 = _mscl.MipModels_model_3dm_dh3 - model_3dm_gx3_15 = _mscl.MipModels_model_3dm_gx3_15 - model_3dm_gx3_25 = _mscl.MipModels_model_3dm_gx3_25 - model_3dm_gx3_35 = _mscl.MipModels_model_3dm_gx3_35 - model_3dm_gx3_45 = _mscl.MipModels_model_3dm_gx3_45 - model_3dm_rq1_45_lt = _mscl.MipModels_model_3dm_rq1_45_lt - model_3dm_gx4_15 = _mscl.MipModels_model_3dm_gx4_15 - model_3dm_gx4_25 = _mscl.MipModels_model_3dm_gx4_25 - model_3dm_gx4_45 = _mscl.MipModels_model_3dm_gx4_45 - model_3dm_rq1_45_st = _mscl.MipModels_model_3dm_rq1_45_st - model_mv5_ar = _mscl.MipModels_model_mv5_ar - model_3dm_gx5_10 = _mscl.MipModels_model_3dm_gx5_10 - model_3dm_gx5_15 = _mscl.MipModels_model_3dm_gx5_15 - model_3dm_gx5_25 = _mscl.MipModels_model_3dm_gx5_25 - model_3dm_gx5_35 = _mscl.MipModels_model_3dm_gx5_35 - model_3dm_gx5_45 = _mscl.MipModels_model_3dm_gx5_45 - model_3dm_cv5_10 = _mscl.MipModels_model_3dm_cv5_10 - model_3dm_cv5_15 = _mscl.MipModels_model_3dm_cv5_15 - model_3dm_cv5_25 = _mscl.MipModels_model_3dm_cv5_25 - model_3dm_cv5_45 = _mscl.MipModels_model_3dm_cv5_45 - model_3dm_gq4_45 = _mscl.MipModels_model_3dm_gq4_45 - model_3dm_cx5_45 = _mscl.MipModels_model_3dm_cx5_45 - model_3dm_cx5_35 = _mscl.MipModels_model_3dm_cx5_35 - model_3dm_cx5_25 = _mscl.MipModels_model_3dm_cx5_25 - model_3dm_cx5_15 = _mscl.MipModels_model_3dm_cx5_15 - model_3dm_cx5_10 = _mscl.MipModels_model_3dm_cx5_10 - model_3dm_cl5_15 = _mscl.MipModels_model_3dm_cl5_15 - model_3dm_cl5_25 = _mscl.MipModels_model_3dm_cl5_25 - model_3dm_gq7 = _mscl.MipModels_model_3dm_gq7 - model_3dm_rtk_v1 = _mscl.MipModels_model_3dm_rtk_v1 - model_3dm_rtk = _mscl.MipModels_model_3dm_rtk - model_3dm_cv7_ahrs = _mscl.MipModels_model_3dm_cv7_ahrs - model_3dm_cv7_ar = _mscl.MipModels_model_3dm_cv7_ar - model_3dm_gv7_ahrs = _mscl.MipModels_model_3dm_gv7_ahrs - model_3dm_gv7_ar = _mscl.MipModels_model_3dm_gv7_ar - model_3dm_gv7_ins = _mscl.MipModels_model_3dm_gv7_ins - model_3dm_cv7_ins = _mscl.MipModels_model_3dm_cv7_ins - model_3dm_cv7_gnss_ins = _mscl.MipModels_model_3dm_cv7_gnss_ins - - @staticmethod - def modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - - @staticmethod - def modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - - @staticmethod - def modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - - @staticmethod - def nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - - @staticmethod - def modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - - @staticmethod - def nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - - @staticmethod - def modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - - @staticmethod - def stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - - def __init__(self): - _mscl.MipModels_swiginit(self, _mscl.new_MipModels()) - __swig_destroy__ = _mscl.delete_MipModels - -# Register MipModels in _mscl: -_mscl.MipModels_swigregister(MipModels) - -def MipModels_modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - -def MipModels_modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - -def MipModels_modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - -def MipModels_nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - -def MipModels_modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - -def MipModels_nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - -def MipModels_modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - -def MipModels_stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - -class MipModel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipModel_swiginit(self, _mscl.new_MipModel(*args)) - - def equals(self, compare): - return _mscl.MipModel_equals(self, compare) - - def __str__(self): - return _mscl.MipModel___str__(self) - - def nodeModel(self): - return _mscl.MipModel_nodeModel(self) - - def modifier(self): - return _mscl.MipModel_modifier(self) - - def modelNumber(self): - return _mscl.MipModel_modelNumber(self) - - def baseModel(self): - return _mscl.MipModel_baseModel(self) - __swig_destroy__ = _mscl.delete_MipModel - -# Register MipModel in _mscl: -_mscl.MipModel_swigregister(MipModel) -MipModel.mip_model_none = _mscl.cvar.MipModel_mip_model_none -MipModel.mip_model_3dm_dh3 = _mscl.cvar.MipModel_mip_model_3dm_dh3 -MipModel.mip_model_3dm_gx3_15 = _mscl.cvar.MipModel_mip_model_3dm_gx3_15 -MipModel.mip_model_3dm_gx3_25 = _mscl.cvar.MipModel_mip_model_3dm_gx3_25 -MipModel.mip_model_3dm_gx3_35 = _mscl.cvar.MipModel_mip_model_3dm_gx3_35 -MipModel.mip_model_3dm_gx3_45 = _mscl.cvar.MipModel_mip_model_3dm_gx3_45 -MipModel.mip_model_3dm_rq1_45_lt = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_lt -MipModel.mip_model_3dm_rq1_45_st = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_st -MipModel.mip_model_3dm_gx4_15 = _mscl.cvar.MipModel_mip_model_3dm_gx4_15 -MipModel.mip_model_3dm_gx4_25 = _mscl.cvar.MipModel_mip_model_3dm_gx4_25 -MipModel.mip_model_3dm_gx4_45 = _mscl.cvar.MipModel_mip_model_3dm_gx4_45 -MipModel.mip_model_mv5_ar = _mscl.cvar.MipModel_mip_model_mv5_ar -MipModel.mip_model_3dm_gx5_10 = _mscl.cvar.MipModel_mip_model_3dm_gx5_10 -MipModel.mip_model_3dm_gx5_15 = _mscl.cvar.MipModel_mip_model_3dm_gx5_15 -MipModel.mip_model_3dm_gx5_25 = _mscl.cvar.MipModel_mip_model_3dm_gx5_25 -MipModel.mip_model_3dm_gx5_35 = _mscl.cvar.MipModel_mip_model_3dm_gx5_35 -MipModel.mip_model_3dm_gx5_45 = _mscl.cvar.MipModel_mip_model_3dm_gx5_45 -MipModel.mip_model_3dm_cv5_10 = _mscl.cvar.MipModel_mip_model_3dm_cv5_10 -MipModel.mip_model_3dm_cv5_15 = _mscl.cvar.MipModel_mip_model_3dm_cv5_15 -MipModel.mip_model_3dm_cv5_25 = _mscl.cvar.MipModel_mip_model_3dm_cv5_25 -MipModel.mip_model_3dm_cv5_45 = _mscl.cvar.MipModel_mip_model_3dm_cv5_45 -MipModel.mip_model_3dm_gq4_45 = _mscl.cvar.MipModel_mip_model_3dm_gq4_45 -MipModel.mip_model_3dm_cx5_45 = _mscl.cvar.MipModel_mip_model_3dm_cx5_45 -MipModel.mip_model_3dm_cx5_35 = _mscl.cvar.MipModel_mip_model_3dm_cx5_35 -MipModel.mip_model_3dm_cx5_25 = _mscl.cvar.MipModel_mip_model_3dm_cx5_25 -MipModel.mip_model_3dm_cx5_15 = _mscl.cvar.MipModel_mip_model_3dm_cx5_15 -MipModel.mip_model_3dm_cx5_10 = _mscl.cvar.MipModel_mip_model_3dm_cx5_10 -MipModel.mip_model_3dm_cl5_15 = _mscl.cvar.MipModel_mip_model_3dm_cl5_15 -MipModel.mip_model_3dm_cl5_25 = _mscl.cvar.MipModel_mip_model_3dm_cl5_25 -MipModel.mip_model_3dm_gq7 = _mscl.cvar.MipModel_mip_model_3dm_gq7 -MipModel.mip_model_3dm_rtk_v1 = _mscl.cvar.MipModel_mip_model_3dm_rtk_v1 -MipModel.mip_model_3dm_rtk = _mscl.cvar.MipModel_mip_model_3dm_rtk -MipModel.mip_model_3dm_cv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_cv7_ahrs -MipModel.mip_model_3dm_cv7_ar = _mscl.cvar.MipModel_mip_model_3dm_cv7_ar -MipModel.mip_model_3dm_gv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_gv7_ahrs -MipModel.mip_model_3dm_gv7_ar = _mscl.cvar.MipModel_mip_model_3dm_gv7_ar -MipModel.mip_model_3dm_gv7_ins = _mscl.cvar.MipModel_mip_model_3dm_gv7_ins -MipModel.mip_model_3dm_cv7_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_ins -MipModel.mip_model_3dm_cv7_gnss_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_gnss_ins - -class DisplacementModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_digitalDemod = _mscl.DisplacementModels_node_digitalDemod - - def __init__(self): - _mscl.DisplacementModels_swiginit(self, _mscl.new_DisplacementModels()) - __swig_destroy__ = _mscl.delete_DisplacementModels - -# Register DisplacementModels in _mscl: -_mscl.DisplacementModels_swigregister(DisplacementModels) - -class MipTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CLASS_AHRS_IMU = _mscl.MipTypes_CLASS_AHRS_IMU - CLASS_GNSS = _mscl.MipTypes_CLASS_GNSS - CLASS_ESTFILTER = _mscl.MipTypes_CLASS_ESTFILTER - CLASS_DISPLACEMENT = _mscl.MipTypes_CLASS_DISPLACEMENT - CLASS_GNSS1 = _mscl.MipTypes_CLASS_GNSS1 - CLASS_GNSS2 = _mscl.MipTypes_CLASS_GNSS2 - CLASS_GNSS3 = _mscl.MipTypes_CLASS_GNSS3 - CLASS_RTK = _mscl.MipTypes_CLASS_RTK - CLASS_GNSS4 = _mscl.MipTypes_CLASS_GNSS4 - CLASS_GNSS5 = _mscl.MipTypes_CLASS_GNSS5 - CLASS_SYSTEM = _mscl.MipTypes_CLASS_SYSTEM - USE_NEW_SETTINGS = _mscl.MipTypes_USE_NEW_SETTINGS - READ_BACK_CURRENT_SETTINGS = _mscl.MipTypes_READ_BACK_CURRENT_SETTINGS - SAVE_CURRENT_SETTINGS = _mscl.MipTypes_SAVE_CURRENT_SETTINGS - LOAD_STARTUP_SETTINGS = _mscl.MipTypes_LOAD_STARTUP_SETTINGS - RESET_TO_DEFAULT = _mscl.MipTypes_RESET_TO_DEFAULT - USE_NEW_SETTINGS_NO_ACKNACK = _mscl.MipTypes_USE_NEW_SETTINGS_NO_ACKNACK - DISABLED = _mscl.MipTypes_DISABLED - ENABLED = _mscl.MipTypes_ENABLED - TIME_FRAME_WEEKS = _mscl.MipTypes_TIME_FRAME_WEEKS - TIME_FRAME_SECONDS = _mscl.MipTypes_TIME_FRAME_SECONDS - CMD_PING = _mscl.MipTypes_CMD_PING - CMD_SET_IDLE = _mscl.MipTypes_CMD_SET_IDLE - CMD_GET_DEVICE_INFO = _mscl.MipTypes_CMD_GET_DEVICE_INFO - CMD_GET_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_DESCRIPTOR_SETS - CMD_BUILT_IN_TEST = _mscl.MipTypes_CMD_BUILT_IN_TEST - CMD_RESUME = _mscl.MipTypes_CMD_RESUME - CMD_GET_EXT_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_EXT_DESCRIPTOR_SETS - CMD_COMM_PORT_SPEED = _mscl.MipTypes_CMD_COMM_PORT_SPEED - CMD_GPS_TIME_UPDATE = _mscl.MipTypes_CMD_GPS_TIME_UPDATE - CMD_RESET = _mscl.MipTypes_CMD_RESET - CMD_POLL_SENSOR_DATA = _mscl.MipTypes_CMD_POLL_SENSOR_DATA - CMD_POLL_GNSS_DATA = _mscl.MipTypes_CMD_POLL_GNSS_DATA - CMD_POLL_EF_DATA = _mscl.MipTypes_CMD_POLL_EF_DATA - CMD_GET_SENSOR_RATE_BASE = _mscl.MipTypes_CMD_GET_SENSOR_RATE_BASE - CMD_GET_GNSS_RATE_BASE = _mscl.MipTypes_CMD_GET_GNSS_RATE_BASE - CMD_GET_EF_RATE_BASE = _mscl.MipTypes_CMD_GET_EF_RATE_BASE - CMD_SENSOR_MESSAGE_FORMAT = _mscl.MipTypes_CMD_SENSOR_MESSAGE_FORMAT - CMD_GNSS_MESSAGE_FORMAT = _mscl.MipTypes_CMD_GNSS_MESSAGE_FORMAT - CMD_EF_MESSAGE_FORMAT = _mscl.MipTypes_CMD_EF_MESSAGE_FORMAT - CMD_NMEA_MESSAGE_FORMAT = _mscl.MipTypes_CMD_NMEA_MESSAGE_FORMAT - CMD_POLL = _mscl.MipTypes_CMD_POLL - CMD_GET_BASE_RATE = _mscl.MipTypes_CMD_GET_BASE_RATE - CMD_MESSAGE_FORMAT = _mscl.MipTypes_CMD_MESSAGE_FORMAT - CMD_FACTORY_STREAMING = _mscl.MipTypes_CMD_FACTORY_STREAMING - CMD_CONTINUOUS_DATA_STREAM = _mscl.MipTypes_CMD_CONTINUOUS_DATA_STREAM - CMD_RAW_RTCM_2_3_MESSAGE = _mscl.MipTypes_CMD_RAW_RTCM_2_3_MESSAGE - CMD_GNSS_CONSTELLATION_SETTINGS = _mscl.MipTypes_CMD_GNSS_CONSTELLATION_SETTINGS - CMD_GNSS_SBAS_SETTINGS = _mscl.MipTypes_CMD_GNSS_SBAS_SETTINGS - CMD_GNSS_ASSIST_FIX_CONTROL = _mscl.MipTypes_CMD_GNSS_ASSIST_FIX_CONTROL - CMD_GNSS_ASSIST_TIME_UPDATE = _mscl.MipTypes_CMD_GNSS_ASSIST_TIME_UPDATE - CMD_PPS_SOURCE = _mscl.MipTypes_CMD_PPS_SOURCE - CMD_EVENT_SUPPORT = _mscl.MipTypes_CMD_EVENT_SUPPORT - CMD_EVENT_CONTROL = _mscl.MipTypes_CMD_EVENT_CONTROL - CMD_EVENT_TRIGGER_STATUS = _mscl.MipTypes_CMD_EVENT_TRIGGER_STATUS - CMD_EVENT_ACTION_STATUS = _mscl.MipTypes_CMD_EVENT_ACTION_STATUS - CMD_EVENT_TRIGGER_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_TRIGGER_CONFIGURATION - CMD_EVENT_ACTION_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_ACTION_CONFIGURATION - CMD_SAVE_STARTUP_SETTINGS = _mscl.MipTypes_CMD_SAVE_STARTUP_SETTINGS - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM - CMD_GPS_DYNAMICS_MODE = _mscl.MipTypes_CMD_GPS_DYNAMICS_MODE - CMD_SENSOR_SIG_COND_SETTINGS = _mscl.MipTypes_CMD_SENSOR_SIG_COND_SETTINGS - CMD_SENSOR_TIMESTAMP = _mscl.MipTypes_CMD_SENSOR_TIMESTAMP - CMD_ACCEL_BIAS = _mscl.MipTypes_CMD_ACCEL_BIAS - CMD_GYRO_BIAS = _mscl.MipTypes_CMD_GYRO_BIAS - CMD_CAP_GYRO_BIAS = _mscl.MipTypes_CMD_CAP_GYRO_BIAS - CMD_MAG_HARD_IRON_OFFSET = _mscl.MipTypes_CMD_MAG_HARD_IRON_OFFSET - CMD_MAG_SOFT_IRON_MATRIX = _mscl.MipTypes_CMD_MAG_SOFT_IRON_MATRIX - CMD_CF_REALIGN_UP = _mscl.MipTypes_CMD_CF_REALIGN_UP - CMD_CF_REALIGN_NORTH = _mscl.MipTypes_CMD_CF_REALIGN_NORTH - CMD_CONING_SCULLING = _mscl.MipTypes_CMD_CONING_SCULLING - CMD_UART_BAUD_RATE = _mscl.MipTypes_CMD_UART_BAUD_RATE - CMD_GPIO_CONFIGURATION = _mscl.MipTypes_CMD_GPIO_CONFIGURATION - CMD_GPIO_STATE = _mscl.MipTypes_CMD_GPIO_STATE - CMD_ODOMETER_SETTINGS = _mscl.MipTypes_CMD_ODOMETER_SETTINGS - CMD_LOWPASS_FILTER_SETTINGS = _mscl.MipTypes_CMD_LOWPASS_FILTER_SETTINGS - CMD_COMPLEMENTARY_FILTER_SETTINGS = _mscl.MipTypes_CMD_COMPLEMENTARY_FILTER_SETTINGS - CMD_SENSOR_RANGE = _mscl.MipTypes_CMD_SENSOR_RANGE - CMD_SUPPORTED_SENSOR_RANGES = _mscl.MipTypes_CMD_SUPPORTED_SENSOR_RANGES - CMD_LOWPASS_ANTIALIASING_FILTER = _mscl.MipTypes_CMD_LOWPASS_ANTIALIASING_FILTER - CMD_DATA_STREAM_FORMAT = _mscl.MipTypes_CMD_DATA_STREAM_FORMAT - CMD_POWER_STATES = _mscl.MipTypes_CMD_POWER_STATES - CMD_GPS_STARTUP_SETTINGS = _mscl.MipTypes_CMD_GPS_STARTUP_SETTINGS - CMD_DEVICE_STATUS = _mscl.MipTypes_CMD_DEVICE_STATUS - CMD_EF_RESET_FILTER = _mscl.MipTypes_CMD_EF_RESET_FILTER - CMD_EF_INIT_ATTITUDE = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE - CMD_EF_INIT_HEADING = _mscl.MipTypes_CMD_EF_INIT_HEADING - CMD_EF_INIT_ATTITUDE_FROM_AHRS = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE_FROM_AHRS - CMD_EF_RUN_FILTER = _mscl.MipTypes_CMD_EF_RUN_FILTER - CMD_EF_VEHIC_DYNAMICS_MODE = _mscl.MipTypes_CMD_EF_VEHIC_DYNAMICS_MODE - CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER - CMD_EF_SENS_VEHIC_FRAME_OFFSET = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_OFFSET - CMD_EF_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_ANTENNA_OFFSET - CMD_EF_BIAS_EST_CTRL = _mscl.MipTypes_CMD_EF_BIAS_EST_CTRL - CMD_EF_GNSS_SRC_CTRL = _mscl.MipTypes_CMD_EF_GNSS_SRC_CTRL - CMD_EF_EXTERN_GNSS_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_GNSS_UPDATE - CMD_EF_EXTERN_HEADING_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_HEADING_UPDATE - CMD_EF_HEADING_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_HEADING_UPDATE_CTRL - CMD_EF_AUTO_INIT_CTRL = _mscl.MipTypes_CMD_EF_AUTO_INIT_CTRL - CMD_EF_ACCEL_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_ACCEL_WHT_NSE_STD_DEV - CMD_EF_GYRO_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_GYRO_WHT_NSE_STD_DEV - CMD_EF_ACCEL_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_ACCEL_BIAS_MODEL_PARAMS - CMD_EF_GYRO_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_GYRO_BIAS_MODEL_PARAMS - CMD_EF_ZERO_VEL_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_VEL_UPDATE_CTRL - CMD_EF_EXT_HEADING_UPDATE_TS = _mscl.MipTypes_CMD_EF_EXT_HEADING_UPDATE_TS - CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL - CMD_EF_TARE_ORIENT = _mscl.MipTypes_CMD_EF_TARE_ORIENT - CMD_EF_CMDED_ZERO_VEL_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_VEL_UPDATE - CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE - CMD_EF_SET_REF_POSITION = _mscl.MipTypes_CMD_EF_SET_REF_POSITION - CMD_EF_MAG_CAPTURE_AUTO_CAL = _mscl.MipTypes_CMD_EF_MAG_CAPTURE_AUTO_CAL - CMD_EF_GRAVITY_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_STD_DEV - CMD_EF_PRESS_ALT_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_PRESS_ALT_NOISE_STD_DEV - CMD_EF_GRAVITY_NOISE_MINIMUM = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_MINIMUM - CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE - CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE - CMD_EF_ENABLE_DISABLE_MEASUREMENTS = _mscl.MipTypes_CMD_EF_ENABLE_DISABLE_MEASUREMENTS - CMD_EF_MAG_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_MAG_NOISE_STD_DEV - CMD_EF_DECLINATION_SRC = _mscl.MipTypes_CMD_EF_DECLINATION_SRC - CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE - CMD_EF_ALTITUDE_AID_CTRL = _mscl.MipTypes_CMD_EF_ALTITUDE_AID_CTRL - CMD_EF_PITCH_ROLL_AID_CTRL = _mscl.MipTypes_CMD_EF_PITCH_ROLL_AID_CTRL - CMD_EF_INCLINATION_SRC = _mscl.MipTypes_CMD_EF_INCLINATION_SRC - CMD_EF_FIELD_MAGNITUDE_SRC = _mscl.MipTypes_CMD_EF_FIELD_MAGNITUDE_SRC - CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM - CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT - CMD_EF_AIDING_MEASUREMENT_ENABLE = _mscl.MipTypes_CMD_EF_AIDING_MEASUREMENT_ENABLE - CMD_EF_INITIALIZATION_CONFIG = _mscl.MipTypes_CMD_EF_INITIALIZATION_CONFIG - CMD_EF_ADAPTIVE_FILTER_OPTIONS = _mscl.MipTypes_CMD_EF_ADAPTIVE_FILTER_OPTIONS - CMD_EF_MULTI_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_MULTI_ANTENNA_OFFSET - CMD_EF_RELATIVE_POSITION_REF = _mscl.MipTypes_CMD_EF_RELATIVE_POSITION_REF - CMD_EF_LEVER_ARM_OFFSET_REF = _mscl.MipTypes_CMD_EF_LEVER_ARM_OFFSET_REF - CMD_EF_EXTERN_SPEED_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_SPEED_UPDATE - CMD_EF_SPEED_MEASUREMENT_OFFSET = _mscl.MipTypes_CMD_EF_SPEED_MEASUREMENT_OFFSET - CMD_EF_VERTICAL_GYRO_CONSTRAINT = _mscl.MipTypes_CMD_EF_VERTICAL_GYRO_CONSTRAINT - CMD_EF_WHEELED_VEHICLE_CONSTRAINT = _mscl.MipTypes_CMD_EF_WHEELED_VEHICLE_CONSTRAINT - CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL = _mscl.MipTypes_CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL - CMD_GNSS_RECEIVER_INFO = _mscl.MipTypes_CMD_GNSS_RECEIVER_INFO - CMD_GNSS_SIGNAL_CONFIG = _mscl.MipTypes_CMD_GNSS_SIGNAL_CONFIG - CMD_GNSS_SPARTN_CONFIG = _mscl.MipTypes_CMD_GNSS_SPARTN_CONFIG - CMD_GNSS_RTK_CONFIG = _mscl.MipTypes_CMD_GNSS_RTK_CONFIG - CMD_INTERFACE_CONTROL = _mscl.MipTypes_CMD_INTERFACE_CONTROL - CMD_COMMUNICATION_MODE = _mscl.MipTypes_CMD_COMMUNICATION_MODE - CMD_HARDWARE_CTRL = _mscl.MipTypes_CMD_HARDWARE_CTRL - CMD_GET_ANALOG_DISPLACEMENT_CALS = _mscl.MipTypes_CMD_GET_ANALOG_DISPLACEMENT_CALS - CMD_DISPLACEMENT_OUTPUT_RATE = _mscl.MipTypes_CMD_DISPLACEMENT_OUTPUT_RATE - CMD_DISPLACEMENT_DEVICE_TIME = _mscl.MipTypes_CMD_DISPLACEMENT_DEVICE_TIME - CMD_RTK_DEVICE_STATUS_FLAGS = _mscl.MipTypes_CMD_RTK_DEVICE_STATUS_FLAGS - CMD_RTK_ACTIVATION_CODE = _mscl.MipTypes_CMD_RTK_ACTIVATION_CODE - CMD_AIDING_FRAME_CONFIG = _mscl.MipTypes_CMD_AIDING_FRAME_CONFIG - CMD_AIDING_ECHO_CONTROL = _mscl.MipTypes_CMD_AIDING_ECHO_CONTROL - CMD_AIDING_POS_ECEF = _mscl.MipTypes_CMD_AIDING_POS_ECEF - CMD_AIDING_POS_LLH = _mscl.MipTypes_CMD_AIDING_POS_LLH - CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID - CMD_AIDING_VEL_ECEF = _mscl.MipTypes_CMD_AIDING_VEL_ECEF - CMD_AIDING_VEL_NED = _mscl.MipTypes_CMD_AIDING_VEL_NED - CMD_AIDING_VEL_BODY_FRAME = _mscl.MipTypes_CMD_AIDING_VEL_BODY_FRAME - CMD_AIDING_HEADING_TRUE = _mscl.MipTypes_CMD_AIDING_HEADING_TRUE - CMD_AIDING_MAGNETIC_FIELD = _mscl.MipTypes_CMD_AIDING_MAGNETIC_FIELD - CMD_AIDING_PRESSURE = _mscl.MipTypes_CMD_AIDING_PRESSURE - CH_FIELD_SENSOR_RAW_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_ACCEL_VEC - CH_FIELD_SENSOR_RAW_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_GYRO_VEC - CH_FIELD_SENSOR_RAW_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_MAG_VEC - CH_FIELD_SENSOR_SCALED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_ACCEL_VEC - CH_FIELD_SENSOR_SCALED_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_GYRO_VEC - CH_FIELD_SENSOR_SCALED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_MAG_VEC - CH_FIELD_SENSOR_DELTA_THETA_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_THETA_VEC - CH_FIELD_SENSOR_DELTA_VELOCITY_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_VELOCITY_VEC - CH_FIELD_SENSOR_ORIENTATION_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_MATRIX - CH_FIELD_SENSOR_ORIENTATION_QUATERNION = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_QUATERNION - CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX - CH_FIELD_SENSOR_EULER_ANGLES = _mscl.MipTypes_CH_FIELD_SENSOR_EULER_ANGLES - CH_FIELD_SENSOR_INTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_INTERNAL_TIMESTAMP - CH_FIELD_SENSOR_BEACONED_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_BEACONED_TIMESTAMP - CH_FIELD_SENSOR_STABILIZED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_MAG_VEC - CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC - CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP - CH_FIELD_SENSOR_TEMPERATURE_STATISTICS = _mscl.MipTypes_CH_FIELD_SENSOR_TEMPERATURE_STATISTICS - CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE - CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE - CH_FIELD_SENSOR_OVERRANGE_STATUS = _mscl.MipTypes_CH_FIELD_SENSOR_OVERRANGE_STATUS - CH_FIELD_SENSOR_ODOMETER_DATA = _mscl.MipTypes_CH_FIELD_SENSOR_ODOMETER_DATA - CH_FIELD_SENSOR_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EVENT_SOURCE - CH_FIELD_SENSOR_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_TICKS - CH_FIELD_SENSOR_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TICKS - CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP - CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_LLH_POSITION - CH_FIELD_GNSS_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_POSITION - CH_FIELD_GNSS_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_NED_VELOCITY - CH_FIELD_GNSS_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_VELOCITY - CH_FIELD_GNSS_DOP = _mscl.MipTypes_CH_FIELD_GNSS_DOP - CH_FIELD_GNSS_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_UTC_TIME - CH_FIELD_GNSS_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_GPS_TIME - CH_FIELD_GNSS_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO - CH_FIELD_GNSS_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_FIX_INFO - CH_FIELD_GNSS_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_HARDWARE_STATUS - CH_FIELD_GNSS_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_INFO - CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO_2 - CH_FIELD_GNSS_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_LEAP_SECONDS - CH_FIELD_GNSS_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_INFO - CH_FIELD_GNSS_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_CORRECTION - CH_FIELD_GNSS_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_RF_ERROR_DETECTION - CH_FIELD_GNSS_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_SATELLITE_STATUS - CH_FIELD_GNSS_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_RAW_OBSERVATION - CH_FIELD_GNSS_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_STATION_INFO - CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_EPHEMERIS - CH_FIELD_GNSS_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GLONASS_EPHEMERIS - CH_FIELD_GNSS_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_EPHEMERIS - CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_TICKS - CH_FIELD_GNSS_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TICKS - CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS - CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL - CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE - CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE - CH_FIELD_ESTFILTER_FILTER_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_FILTER_STATUS - CH_FIELD_ESTFILTER_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT - CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR - CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE - CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR - CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_MAG_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS - CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT - CH_FIELD_ESTFILTER_COMPENSATED_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_COMPENSATED_ACCEL - CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL - CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT - CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX - CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS_UNCERT - CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS - CH_FIELD_ESTFILTER_ECEF_VEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL - CH_FIELD_ESTFILTER_NED_RELATIVE_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_NED_RELATIVE_POS - CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS - CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS - CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY = _mscl.MipTypes_CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT - CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT - CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE - CH_FIELD_ESTFILTER_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_TICKS - CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS - CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_DISP_DISPLACEMENT_RAW = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_RAW - CH_FIELD_DISP_DISPLACEMENT_MM = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_MM - CH_FIELD_DISP_DISPLACEMENT_TS = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_TS - CH_FIELD_GNSS_1_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_LLH_POSITION - CH_FIELD_GNSS_1_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_POSITION - CH_FIELD_GNSS_1_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_NED_VELOCITY - CH_FIELD_GNSS_1_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_VELOCITY - CH_FIELD_GNSS_1_DOP = _mscl.MipTypes_CH_FIELD_GNSS_1_DOP - CH_FIELD_GNSS_1_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_UTC_TIME - CH_FIELD_GNSS_1_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_TIME - CH_FIELD_GNSS_1_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO - CH_FIELD_GNSS_1_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_FIX_INFO - CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_1_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_HARDWARE_STATUS - CH_FIELD_GNSS_1_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_INFO - CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_1_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO_2 - CH_FIELD_GNSS_1_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_LEAP_SECONDS - CH_FIELD_GNSS_1_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_INFO - CH_FIELD_GNSS_1_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_CORRECTION - CH_FIELD_GNSS_1_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_RF_ERROR_DETECTION - CH_FIELD_GNSS_1_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_SATELLITE_STATUS - CH_FIELD_GNSS_1_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_1_RAW_OBSERVATION - CH_FIELD_GNSS_1_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_STATION_INFO - CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_1_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_EPHEMERIS - CH_FIELD_GNSS_1_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GLONASS_EPHEMERIS - CH_FIELD_GNSS_1_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_EPHEMERIS - CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_1_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_TICKS - CH_FIELD_GNSS_1_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TICKS - CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_2_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_LLH_POSITION - CH_FIELD_GNSS_2_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_POSITION - CH_FIELD_GNSS_2_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_NED_VELOCITY - CH_FIELD_GNSS_2_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_VELOCITY - CH_FIELD_GNSS_2_DOP = _mscl.MipTypes_CH_FIELD_GNSS_2_DOP - CH_FIELD_GNSS_2_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_UTC_TIME - CH_FIELD_GNSS_2_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_TIME - CH_FIELD_GNSS_2_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO - CH_FIELD_GNSS_2_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_FIX_INFO - CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_2_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_HARDWARE_STATUS - CH_FIELD_GNSS_2_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_INFO - CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_2_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO_2 - CH_FIELD_GNSS_2_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_LEAP_SECONDS - CH_FIELD_GNSS_2_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_INFO - CH_FIELD_GNSS_2_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_CORRECTION - CH_FIELD_GNSS_2_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_RF_ERROR_DETECTION - CH_FIELD_GNSS_2_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_SATELLITE_STATUS - CH_FIELD_GNSS_2_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_2_RAW_OBSERVATION - CH_FIELD_GNSS_2_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_STATION_INFO - CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_2_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_EPHEMERIS - CH_FIELD_GNSS_2_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GLONASS_EPHEMERIS - CH_FIELD_GNSS_2_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_EPHEMERIS - CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_2_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_TICKS - CH_FIELD_GNSS_2_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TICKS - CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_3_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_LLH_POSITION - CH_FIELD_GNSS_3_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_POSITION - CH_FIELD_GNSS_3_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_NED_VELOCITY - CH_FIELD_GNSS_3_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_VELOCITY - CH_FIELD_GNSS_3_DOP = _mscl.MipTypes_CH_FIELD_GNSS_3_DOP - CH_FIELD_GNSS_3_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_UTC_TIME - CH_FIELD_GNSS_3_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_TIME - CH_FIELD_GNSS_3_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO - CH_FIELD_GNSS_3_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_FIX_INFO - CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_3_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_HARDWARE_STATUS - CH_FIELD_GNSS_3_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_INFO - CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_3_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO_2 - CH_FIELD_GNSS_3_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_LEAP_SECONDS - CH_FIELD_GNSS_3_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_INFO - CH_FIELD_GNSS_3_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_CORRECTION - CH_FIELD_GNSS_3_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_RF_ERROR_DETECTION - CH_FIELD_GNSS_3_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_SATELLITE_STATUS - CH_FIELD_GNSS_3_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_3_RAW_OBSERVATION - CH_FIELD_GNSS_3_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_STATION_INFO - CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_3_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_EPHEMERIS - CH_FIELD_GNSS_3_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GLONASS_EPHEMERIS - CH_FIELD_GNSS_3_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_EPHEMERIS - CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_3_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_TICKS - CH_FIELD_GNSS_3_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TICKS - CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_4_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_LLH_POSITION - CH_FIELD_GNSS_4_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_POSITION - CH_FIELD_GNSS_4_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_NED_VELOCITY - CH_FIELD_GNSS_4_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_VELOCITY - CH_FIELD_GNSS_4_DOP = _mscl.MipTypes_CH_FIELD_GNSS_4_DOP - CH_FIELD_GNSS_4_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_UTC_TIME - CH_FIELD_GNSS_4_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_TIME - CH_FIELD_GNSS_4_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO - CH_FIELD_GNSS_4_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_FIX_INFO - CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_4_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_HARDWARE_STATUS - CH_FIELD_GNSS_4_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_INFO - CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_4_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO_2 - CH_FIELD_GNSS_4_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_LEAP_SECONDS - CH_FIELD_GNSS_4_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_INFO - CH_FIELD_GNSS_4_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_CORRECTION - CH_FIELD_GNSS_4_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_RF_ERROR_DETECTION - CH_FIELD_GNSS_4_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_SATELLITE_STATUS - CH_FIELD_GNSS_4_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_4_RAW_OBSERVATION - CH_FIELD_GNSS_4_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_STATION_INFO - CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_4_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_EPHEMERIS - CH_FIELD_GNSS_4_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GLONASS_EPHEMERIS - CH_FIELD_GNSS_4_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_EPHEMERIS - CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_4_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_TICKS - CH_FIELD_GNSS_4_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TICKS - CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_5_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_LLH_POSITION - CH_FIELD_GNSS_5_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_POSITION - CH_FIELD_GNSS_5_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_NED_VELOCITY - CH_FIELD_GNSS_5_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_VELOCITY - CH_FIELD_GNSS_5_DOP = _mscl.MipTypes_CH_FIELD_GNSS_5_DOP - CH_FIELD_GNSS_5_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_UTC_TIME - CH_FIELD_GNSS_5_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_TIME - CH_FIELD_GNSS_5_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO - CH_FIELD_GNSS_5_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_FIX_INFO - CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_5_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_HARDWARE_STATUS - CH_FIELD_GNSS_5_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_INFO - CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_5_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO_2 - CH_FIELD_GNSS_5_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_LEAP_SECONDS - CH_FIELD_GNSS_5_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_INFO - CH_FIELD_GNSS_5_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_CORRECTION - CH_FIELD_GNSS_5_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_RF_ERROR_DETECTION - CH_FIELD_GNSS_5_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_SATELLITE_STATUS - CH_FIELD_GNSS_5_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_5_RAW_OBSERVATION - CH_FIELD_GNSS_5_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_STATION_INFO - CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_5_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_EPHEMERIS - CH_FIELD_GNSS_5_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GLONASS_EPHEMERIS - CH_FIELD_GNSS_5_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_EPHEMERIS - CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_5_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_TICKS - CH_FIELD_GNSS_5_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TICKS - CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_SYSTEM_BUILT_IN_TEST = _mscl.MipTypes_CH_FIELD_SYSTEM_BUILT_IN_TEST - CH_FIELD_SYSTEM_TIME_SYNC_STATUS = _mscl.MipTypes_CH_FIELD_SYSTEM_TIME_SYNC_STATUS - CH_FIELD_SYSTEM_GPIO_STATE = _mscl.MipTypes_CH_FIELD_SYSTEM_GPIO_STATE - CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE - CH_FIELD_SYSTEM_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_TICKS - CH_FIELD_SYSTEM_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TICKS - CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME - MIN_SHARED_FIELD_DESCRIPTOR = _mscl.MipTypes_MIN_SHARED_FIELD_DESCRIPTOR - CH_UNKNOWN = _mscl.MipTypes_CH_UNKNOWN - CH_X = _mscl.MipTypes_CH_X - CH_Y = _mscl.MipTypes_CH_Y - CH_Z = _mscl.MipTypes_CH_Z - CH_MATRIX = _mscl.MipTypes_CH_MATRIX - CH_QUATERNION = _mscl.MipTypes_CH_QUATERNION - CH_ROLL = _mscl.MipTypes_CH_ROLL - CH_PITCH = _mscl.MipTypes_CH_PITCH - CH_YAW = _mscl.MipTypes_CH_YAW - CH_TICK = _mscl.MipTypes_CH_TICK - CH_TIMESTAMP = _mscl.MipTypes_CH_TIMESTAMP - CH_STATUS = _mscl.MipTypes_CH_STATUS - CH_TIME_OF_WEEK = _mscl.MipTypes_CH_TIME_OF_WEEK - CH_WEEK_NUMBER = _mscl.MipTypes_CH_WEEK_NUMBER - CH_LATITUDE = _mscl.MipTypes_CH_LATITUDE - CH_LONGITUDE = _mscl.MipTypes_CH_LONGITUDE - CH_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CH_HEIGHT_ABOVE_ELLIPSOID - CH_HEIGHT_ABOVE_MSL = _mscl.MipTypes_CH_HEIGHT_ABOVE_MSL - CH_HORIZONTAL_ACCURACY = _mscl.MipTypes_CH_HORIZONTAL_ACCURACY - CH_VERTICAL_ACCURACY = _mscl.MipTypes_CH_VERTICAL_ACCURACY - CH_POSITION_ACCURACY = _mscl.MipTypes_CH_POSITION_ACCURACY - CH_NORTH = _mscl.MipTypes_CH_NORTH - CH_EAST = _mscl.MipTypes_CH_EAST - CH_DOWN = _mscl.MipTypes_CH_DOWN - CH_SPEED = _mscl.MipTypes_CH_SPEED - CH_GROUND_SPEED = _mscl.MipTypes_CH_GROUND_SPEED - CH_HEADING = _mscl.MipTypes_CH_HEADING - CH_SPEED_ACCURACY = _mscl.MipTypes_CH_SPEED_ACCURACY - CH_HEADING_ACCURACY = _mscl.MipTypes_CH_HEADING_ACCURACY - CH_VELOCITY_ACCURACY = _mscl.MipTypes_CH_VELOCITY_ACCURACY - CH_GEOMETRIC_DOP = _mscl.MipTypes_CH_GEOMETRIC_DOP - CH_POSITION_DOP = _mscl.MipTypes_CH_POSITION_DOP - CH_HORIZONTAL_DOP = _mscl.MipTypes_CH_HORIZONTAL_DOP - CH_VERTICAL_DOP = _mscl.MipTypes_CH_VERTICAL_DOP - CH_TIME_DOP = _mscl.MipTypes_CH_TIME_DOP - CH_NORTHING_DOP = _mscl.MipTypes_CH_NORTHING_DOP - CH_EASTING_DOP = _mscl.MipTypes_CH_EASTING_DOP - CH_FLAGS = _mscl.MipTypes_CH_FLAGS - CH_BIAS = _mscl.MipTypes_CH_BIAS - CH_DRIFT = _mscl.MipTypes_CH_DRIFT - CH_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_ACCURACY_ESTIMATE - CH_FIX_TYPE = _mscl.MipTypes_CH_FIX_TYPE - CH_SV_COUNT = _mscl.MipTypes_CH_SV_COUNT - CH_CHANNEL = _mscl.MipTypes_CH_CHANNEL - CH_ID = _mscl.MipTypes_CH_ID - CH_CARRIER_TO_NOISE_RATIO = _mscl.MipTypes_CH_CARRIER_TO_NOISE_RATIO - CH_AZIMUTH = _mscl.MipTypes_CH_AZIMUTH - CH_ELEVATION = _mscl.MipTypes_CH_ELEVATION - CH_SENSOR_STATE = _mscl.MipTypes_CH_SENSOR_STATE - CH_ANTENNA_STATE = _mscl.MipTypes_CH_ANTENNA_STATE - CH_ANTENNA_POWER = _mscl.MipTypes_CH_ANTENNA_POWER - CH_FILTER_STATE = _mscl.MipTypes_CH_FILTER_STATE - CH_DYNAMICS_MODE = _mscl.MipTypes_CH_DYNAMICS_MODE - CH_MAGNITUDE = _mscl.MipTypes_CH_MAGNITUDE - CH_HEADING_UNCERTAINTY = _mscl.MipTypes_CH_HEADING_UNCERTAINTY - CH_SOURCE = _mscl.MipTypes_CH_SOURCE - CH_INCLINATION = _mscl.MipTypes_CH_INCLINATION - CH_DECLINATION = _mscl.MipTypes_CH_DECLINATION - CH_PRESSURE = _mscl.MipTypes_CH_PRESSURE - CH_AGE = _mscl.MipTypes_CH_AGE - CH_NUM_CHANNELS = _mscl.MipTypes_CH_NUM_CHANNELS - CH_CORRECTION = _mscl.MipTypes_CH_CORRECTION - CH_RATE_CORRECTION = _mscl.MipTypes_CH_RATE_CORRECTION - CH_GEOMETRIC_ALTITUDE = _mscl.MipTypes_CH_GEOMETRIC_ALTITUDE - CH_GEOPOTENTIAL_ALTITUDE = _mscl.MipTypes_CH_GEOPOTENTIAL_ALTITUDE - CH_TEMPERATURE = _mscl.MipTypes_CH_TEMPERATURE - CH_DENSITY = _mscl.MipTypes_CH_DENSITY - CH_ALTITUDE = _mscl.MipTypes_CH_ALTITUDE - CH_DISPLACEMENT = _mscl.MipTypes_CH_DISPLACEMENT - CH_MAX_TEMP = _mscl.MipTypes_CH_MAX_TEMP - CH_MIN_TEMP = _mscl.MipTypes_CH_MIN_TEMP - CH_MEAN_TEMP = _mscl.MipTypes_CH_MEAN_TEMP - CH_BIAS_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_BIAS_ACCURACY_ESTIMATE - CH_DRIFT_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_DRIFT_ACCURACY_ESTIMATE - CH_SECONDS = _mscl.MipTypes_CH_SECONDS - CH_NUM_PACKETS = _mscl.MipTypes_CH_NUM_PACKETS - CH_GPS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GPS_CORRECTION_LATENCY - CH_GLONASS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GLONASS_CORRECTION_LATENCY - CH_GALILEO_CORRECTION_LATENCY = _mscl.MipTypes_CH_GALILEO_CORRECTION_LATENCY - CH_BEIDOU_CORRECTION_LATENCY = _mscl.MipTypes_CH_BEIDOU_CORRECTION_LATENCY - CH_HEIGHT = _mscl.MipTypes_CH_HEIGHT - CH_HEALTH = _mscl.MipTypes_CH_HEALTH - CH_INDEX = _mscl.MipTypes_CH_INDEX - CH_COUNT = _mscl.MipTypes_CH_COUNT - CH_SIGNAL_STRENGTH = _mscl.MipTypes_CH_SIGNAL_STRENGTH - CH_SIGNAL_QUALITY = _mscl.MipTypes_CH_SIGNAL_QUALITY - CH_RANGE = _mscl.MipTypes_CH_RANGE - CH_RANGE_UNC = _mscl.MipTypes_CH_RANGE_UNC - CH_ALPHA = _mscl.MipTypes_CH_ALPHA - CH_BETA = _mscl.MipTypes_CH_BETA - CH_DISTURBANCE_FLAGS = _mscl.MipTypes_CH_DISTURBANCE_FLAGS - CH_CARRIER_PHASE = _mscl.MipTypes_CH_CARRIER_PHASE - CH_CARRIER_PHASE_UNC = _mscl.MipTypes_CH_CARRIER_PHASE_UNC - CH_DOPPLER = _mscl.MipTypes_CH_DOPPLER - CH_DOPPLER_UNC = _mscl.MipTypes_CH_DOPPLER_UNC - CH_DELTA_TIME = _mscl.MipTypes_CH_DELTA_TIME - CH_DELTA_TICK = _mscl.MipTypes_CH_DELTA_TICK - CH_ERROR = _mscl.MipTypes_CH_ERROR - CH_ERROR_UNC = _mscl.MipTypes_CH_ERROR_UNC - CH_W = _mscl.MipTypes_CH_W - CH_M0 = _mscl.MipTypes_CH_M0 - CH_M1 = _mscl.MipTypes_CH_M1 - CH_M2 = _mscl.MipTypes_CH_M2 - CH_M3 = _mscl.MipTypes_CH_M3 - CH_M4 = _mscl.MipTypes_CH_M4 - CH_M5 = _mscl.MipTypes_CH_M5 - CH_M6 = _mscl.MipTypes_CH_M6 - CH_M7 = _mscl.MipTypes_CH_M7 - CH_M8 = _mscl.MipTypes_CH_M8 - CH_NANOSECONDS = _mscl.MipTypes_CH_NANOSECONDS - CH_VALID_FLAGS = _mscl.MipTypes_CH_VALID_FLAGS - CH_PPS_VALID = _mscl.MipTypes_CH_PPS_VALID - CH_LAST_PPS = _mscl.MipTypes_CH_LAST_PPS - CH_UDREI = _mscl.MipTypes_CH_UDREI - CH_PSEUDORANGE_CORRECTION = _mscl.MipTypes_CH_PSEUDORANGE_CORRECTION - CH_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_IONOSPHERIC_CORRECTION - CH_JAMMING_STATE = _mscl.MipTypes_CH_JAMMING_STATE - CH_SPOOFING_STATE = _mscl.MipTypes_CH_SPOOFING_STATE - CH_SYSTEM_ID = _mscl.MipTypes_CH_SYSTEM_ID - CH_SATELLITE_ID = _mscl.MipTypes_CH_SATELLITE_ID - CH_BIT_SYSTEM_GENERAL = _mscl.MipTypes_CH_BIT_SYSTEM_GENERAL - CH_BIT_SYSTEM_PROCESS = _mscl.MipTypes_CH_BIT_SYSTEM_PROCESS - CH_BIT_IMU_GENERAL = _mscl.MipTypes_CH_BIT_IMU_GENERAL - CH_BIT_IMU_SENSORS = _mscl.MipTypes_CH_BIT_IMU_SENSORS - CH_BIT_IMU_FACTORY_BITS = _mscl.MipTypes_CH_BIT_IMU_FACTORY_BITS - CH_BIT_FILTER_GENERAL = _mscl.MipTypes_CH_BIT_FILTER_GENERAL - CH_BIT_GNSS_GENERAL = _mscl.MipTypes_CH_BIT_GNSS_GENERAL - CH_BIT_GNSS_RECEIVERS = _mscl.MipTypes_CH_BIT_GNSS_RECEIVERS - - @staticmethod - def channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - - @staticmethod - def getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - - @staticmethod - def getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - - @staticmethod - def getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - - @staticmethod - def getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - - @staticmethod - def getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - - @staticmethod - def isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - - @staticmethod - def isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - - @staticmethod - def channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - - @staticmethod - def channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - - @staticmethod - def channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - - def __init__(self): - _mscl.MipTypes_swiginit(self, _mscl.new_MipTypes()) - __swig_destroy__ = _mscl.delete_MipTypes - -# Register MipTypes in _mscl: -_mscl.MipTypes_swigregister(MipTypes) - -def MipTypes_channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - -def MipTypes_getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - -def MipTypes_getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - -def MipTypes_getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - -def MipTypes_getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - -def MipTypes_getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - -def MipTypes_isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - -def MipTypes_isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - -def MipTypes_channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - -def MipTypes_channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - -def MipTypes_channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - -class MipChannelIdentifier(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - GNSS_RECEIVER_ID = _mscl.MipChannelIdentifier_GNSS_RECEIVER_ID - GNSS_BASE_STATION_ID = _mscl.MipChannelIdentifier_GNSS_BASE_STATION_ID - GNSS_CONSTELLATION = _mscl.MipChannelIdentifier_GNSS_CONSTELLATION - GNSS_SATELLITE_ID = _mscl.MipChannelIdentifier_GNSS_SATELLITE_ID - GNSS_SIGNAL_ID = _mscl.MipChannelIdentifier_GNSS_SIGNAL_ID - AIDING_MEASUREMENT_TYPE = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_TYPE - GNSS_RF_BAND = _mscl.MipChannelIdentifier_GNSS_RF_BAND - AIDING_MEASUREMENT_FRAME_ID = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_FRAME_ID - GNSS = _mscl.MipChannelIdentifier_GNSS - DUAL_ANTENNA = _mscl.MipChannelIdentifier_DUAL_ANTENNA - HEADING = _mscl.MipChannelIdentifier_HEADING - PRESSURE = _mscl.MipChannelIdentifier_PRESSURE - MAGNETOMETER = _mscl.MipChannelIdentifier_MAGNETOMETER - SPEED = _mscl.MipChannelIdentifier_SPEED - AIDING_POS_ECEF = _mscl.MipChannelIdentifier_AIDING_POS_ECEF - AIDING_POS_LLH = _mscl.MipChannelIdentifier_AIDING_POS_LLH - AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipChannelIdentifier_AIDING_HEIGHT_ABOVE_ELLIPSOID - AIDING_VEL_ECEF = _mscl.MipChannelIdentifier_AIDING_VEL_ECEF - AIDING_VEL_NED = _mscl.MipChannelIdentifier_AIDING_VEL_NED - AIDING_VEL_BODY_FRAME = _mscl.MipChannelIdentifier_AIDING_VEL_BODY_FRAME - AIDING_HEADING_TRUE = _mscl.MipChannelIdentifier_AIDING_HEADING_TRUE - AIDING_MAGNETIC_FIELD = _mscl.MipChannelIdentifier_AIDING_MAGNETIC_FIELD - AIDING_PRESSURE = _mscl.MipChannelIdentifier_AIDING_PRESSURE - UNKNOWN_CONSTELLATION = _mscl.MipChannelIdentifier_UNKNOWN_CONSTELLATION - GPS = _mscl.MipChannelIdentifier_GPS - GLONASS = _mscl.MipChannelIdentifier_GLONASS - GALILEO = _mscl.MipChannelIdentifier_GALILEO - BEIDOU = _mscl.MipChannelIdentifier_BEIDOU - UNKNOWN_SIGNAL = _mscl.MipChannelIdentifier_UNKNOWN_SIGNAL - GPS_L1CA = _mscl.MipChannelIdentifier_GPS_L1CA - GPS_L1P = _mscl.MipChannelIdentifier_GPS_L1P - GPS_L1Z = _mscl.MipChannelIdentifier_GPS_L1Z - GPS_L2CA = _mscl.MipChannelIdentifier_GPS_L2CA - GPS_L2P = _mscl.MipChannelIdentifier_GPS_L2P - GPS_L2Z = _mscl.MipChannelIdentifier_GPS_L2Z - GPS_L2CL = _mscl.MipChannelIdentifier_GPS_L2CL - GPS_L2CM = _mscl.MipChannelIdentifier_GPS_L2CM - GPS_L2CML = _mscl.MipChannelIdentifier_GPS_L2CML - GPS_L5I = _mscl.MipChannelIdentifier_GPS_L5I - GPS_L5Q = _mscl.MipChannelIdentifier_GPS_L5Q - GPS_L5IQ = _mscl.MipChannelIdentifier_GPS_L5IQ - GPS_L1CD = _mscl.MipChannelIdentifier_GPS_L1CD - GPS_L1CP = _mscl.MipChannelIdentifier_GPS_L1CP - GPS_L1CDP = _mscl.MipChannelIdentifier_GPS_L1CDP - GLONASS_G1CA = _mscl.MipChannelIdentifier_GLONASS_G1CA - GLONASS_G1P = _mscl.MipChannelIdentifier_GLONASS_G1P - GLONASS_G2C = _mscl.MipChannelIdentifier_GLONASS_G2C - GLONASS_G2P = _mscl.MipChannelIdentifier_GLONASS_G2P - GALILEO_E1C = _mscl.MipChannelIdentifier_GALILEO_E1C - GALILEO_E1A = _mscl.MipChannelIdentifier_GALILEO_E1A - GALILEO_E1B = _mscl.MipChannelIdentifier_GALILEO_E1B - GALILEO_E1BC = _mscl.MipChannelIdentifier_GALILEO_E1BC - GALILEO_E1ABC = _mscl.MipChannelIdentifier_GALILEO_E1ABC - GALILEO_E6C = _mscl.MipChannelIdentifier_GALILEO_E6C - GALILEO_E6A = _mscl.MipChannelIdentifier_GALILEO_E6A - GALILEO_E6B = _mscl.MipChannelIdentifier_GALILEO_E6B - GALILEO_E6BC = _mscl.MipChannelIdentifier_GALILEO_E6BC - GALILEO_E6ABC = _mscl.MipChannelIdentifier_GALILEO_E6ABC - GALILEO_E5BI = _mscl.MipChannelIdentifier_GALILEO_E5BI - GALILEO_E5BQ = _mscl.MipChannelIdentifier_GALILEO_E5BQ - GALILEO_E5BIQ = _mscl.MipChannelIdentifier_GALILEO_E5BIQ - GALILEO_E5ABI = _mscl.MipChannelIdentifier_GALILEO_E5ABI - GALILEO_E5ABQ = _mscl.MipChannelIdentifier_GALILEO_E5ABQ - GALILEO_E5ABIQ = _mscl.MipChannelIdentifier_GALILEO_E5ABIQ - GALILEO_E5AI = _mscl.MipChannelIdentifier_GALILEO_E5AI - GALILEO_E5AQ = _mscl.MipChannelIdentifier_GALILEO_E5AQ - GALILEO_E5AIQ = _mscl.MipChannelIdentifier_GALILEO_E5AIQ - SBAS_L1CA = _mscl.MipChannelIdentifier_SBAS_L1CA - SBAS_L5I = _mscl.MipChannelIdentifier_SBAS_L5I - SBAS_L5Q = _mscl.MipChannelIdentifier_SBAS_L5Q - SBAS_L5IQ = _mscl.MipChannelIdentifier_SBAS_L5IQ - QZSS_L1CA = _mscl.MipChannelIdentifier_QZSS_L1CA - QZSS_LEXS = _mscl.MipChannelIdentifier_QZSS_LEXS - QZSS_LEXL = _mscl.MipChannelIdentifier_QZSS_LEXL - QZSS_LEXSL = _mscl.MipChannelIdentifier_QZSS_LEXSL - QZSS_L2CM = _mscl.MipChannelIdentifier_QZSS_L2CM - QZSS_L2CL = _mscl.MipChannelIdentifier_QZSS_L2CL - QZSS_L2CML = _mscl.MipChannelIdentifier_QZSS_L2CML - QZSS_L5I = _mscl.MipChannelIdentifier_QZSS_L5I - QZSS_L5Q = _mscl.MipChannelIdentifier_QZSS_L5Q - QZSS_L5IQ = _mscl.MipChannelIdentifier_QZSS_L5IQ - QZSS_L1CD = _mscl.MipChannelIdentifier_QZSS_L1CD - QZSS_L1CP = _mscl.MipChannelIdentifier_QZSS_L1CP - QZSS_L1CDP = _mscl.MipChannelIdentifier_QZSS_L1CDP - BEIDOU_B1I = _mscl.MipChannelIdentifier_BEIDOU_B1I - BEIDOU_B1Q = _mscl.MipChannelIdentifier_BEIDOU_B1Q - BEIDOU_B1IQ = _mscl.MipChannelIdentifier_BEIDOU_B1IQ - BEIDOU_B3I = _mscl.MipChannelIdentifier_BEIDOU_B3I - BEIDOU_B3Q = _mscl.MipChannelIdentifier_BEIDOU_B3Q - BEIDOU_B3IQ = _mscl.MipChannelIdentifier_BEIDOU_B3IQ - BEIDOU_B2I = _mscl.MipChannelIdentifier_BEIDOU_B2I - BEIDOU_B2Q = _mscl.MipChannelIdentifier_BEIDOU_B2Q - BEIDOU_B2IQ = _mscl.MipChannelIdentifier_BEIDOU_B2IQ - UNKNOWN_RF_BAND = _mscl.MipChannelIdentifier_UNKNOWN_RF_BAND - RF_BAND_L1 = _mscl.MipChannelIdentifier_RF_BAND_L1 - RF_BAND_L2 = _mscl.MipChannelIdentifier_RF_BAND_L2 - RF_BAND_L5 = _mscl.MipChannelIdentifier_RF_BAND_L5 - - def __init__(self, *args): - _mscl.MipChannelIdentifier_swiginit(self, _mscl.new_MipChannelIdentifier(*args)) - __swig_destroy__ = _mscl.delete_MipChannelIdentifier - - def identifierType(self): - return _mscl.MipChannelIdentifier_identifierType(self) - - def id(self): - return _mscl.MipChannelIdentifier_id(self) - - def hasSpecifier(self): - return _mscl.MipChannelIdentifier_hasSpecifier(self) - - def specifier(self): - return _mscl.MipChannelIdentifier_specifier(self) - - def name(self, standardizedFormat=True): - return _mscl.MipChannelIdentifier_name(self, standardizedFormat) - -# Register MipChannelIdentifier in _mscl: -_mscl.MipChannelIdentifier_swigregister(MipChannelIdentifier) - -class MipCommandBytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - id = property(_mscl.MipCommandBytes_id_get, _mscl.MipCommandBytes_id_set) - commands = property(_mscl.MipCommandBytes_commands_get, _mscl.MipCommandBytes_commands_set) - buildCmdFailed = property(_mscl.MipCommandBytes_buildCmdFailed_get, _mscl.MipCommandBytes_buildCmdFailed_set) - sendCmdFailed = property(_mscl.MipCommandBytes_sendCmdFailed_get, _mscl.MipCommandBytes_sendCmdFailed_set) - - def __init__(self, *args): - _mscl.MipCommandBytes_swiginit(self, _mscl.new_MipCommandBytes(*args)) - - def add(self, cmd): - return _mscl.MipCommandBytes_add(self, cmd) - - def valid(self): - return _mscl.MipCommandBytes_valid(self) - __swig_destroy__ = _mscl.delete_MipCommandBytes - -# Register MipCommandBytes in _mscl: -_mscl.MipCommandBytes_swigregister(MipCommandBytes) - -class AidingMeasurementInput(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - ACK_NACK = _mscl.AidingMeasurementInput_ACK_NACK - ECHO_INPUT = _mscl.AidingMeasurementInput_ECHO_INPUT - - def toMipFieldValues(self): - return _mscl.AidingMeasurementInput_toMipFieldValues(self) - - def timestamp(self, *args): - return _mscl.AidingMeasurementInput_timestamp(self, *args) - - def timebase(self): - return _mscl.AidingMeasurementInput_timebase(self) - - def frameId(self, *args): - return _mscl.AidingMeasurementInput_frameId(self, *args) - - def validFlags(self, *args): - return _mscl.AidingMeasurementInput_validFlags(self, *args) - -# Register AidingMeasurementInput in _mscl: -_mscl.AidingMeasurementInput_swigregister(AidingMeasurementInput) - -class AidingMeasurementPosition(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementPosition_X - LATITUDE = _mscl.AidingMeasurementPosition_LATITUDE - Y = _mscl.AidingMeasurementPosition_Y - LONGITUDE = _mscl.AidingMeasurementPosition_LONGITUDE - Z = _mscl.AidingMeasurementPosition_Z - HEIGHT = _mscl.AidingMeasurementPosition_HEIGHT - ALTITUDE = _mscl.AidingMeasurementPosition_ALTITUDE - - def __init__(self, *args): - _mscl.AidingMeasurementPosition_swiginit(self, _mscl.new_AidingMeasurementPosition(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPosition - - def position(self, *args): - return _mscl.AidingMeasurementPosition_position(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPosition_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementPosition_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPosition_valid(self, *args) - -# Register AidingMeasurementPosition in _mscl: -_mscl.AidingMeasurementPosition_swigregister(AidingMeasurementPosition) - -class AidingMeasurementHeight(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeight_swiginit(self, _mscl.new_AidingMeasurementHeight(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeight - - def height(self, *args): - return _mscl.AidingMeasurementHeight_height(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeight_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeight_valid(self, *args) - -# Register AidingMeasurementHeight in _mscl: -_mscl.AidingMeasurementHeight_swigregister(AidingMeasurementHeight) - -class AidingMeasurementVelocity(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementVelocity_X - NORTH = _mscl.AidingMeasurementVelocity_NORTH - Y = _mscl.AidingMeasurementVelocity_Y - EAST = _mscl.AidingMeasurementVelocity_EAST - Z = _mscl.AidingMeasurementVelocity_Z - DOWN = _mscl.AidingMeasurementVelocity_DOWN - - def __init__(self, *args): - _mscl.AidingMeasurementVelocity_swiginit(self, _mscl.new_AidingMeasurementVelocity(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementVelocity - - def velocity(self, *args): - return _mscl.AidingMeasurementVelocity_velocity(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementVelocity_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementVelocity_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementVelocity_valid(self, *args) - -# Register AidingMeasurementVelocity in _mscl: -_mscl.AidingMeasurementVelocity_swigregister(AidingMeasurementVelocity) - -class AidingMeasurementHeading(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeading_swiginit(self, _mscl.new_AidingMeasurementHeading(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeading - - def heading(self, *args): - return _mscl.AidingMeasurementHeading_heading(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeading_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeading_valid(self, *args) - -# Register AidingMeasurementHeading in _mscl: -_mscl.AidingMeasurementHeading_swigregister(AidingMeasurementHeading) - -class AidingMeasurementMagneticField(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementMagneticField_X - Y = _mscl.AidingMeasurementMagneticField_Y - Z = _mscl.AidingMeasurementMagneticField_Z - - def __init__(self, *args): - _mscl.AidingMeasurementMagneticField_swiginit(self, _mscl.new_AidingMeasurementMagneticField(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementMagneticField - - def magneticField(self, *args): - return _mscl.AidingMeasurementMagneticField_magneticField(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementMagneticField_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementMagneticField_valid(self, *args) - -# Register AidingMeasurementMagneticField in _mscl: -_mscl.AidingMeasurementMagneticField_swigregister(AidingMeasurementMagneticField) - -class AidingMeasurementPressure(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementPressure_swiginit(self, _mscl.new_AidingMeasurementPressure(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPressure - - def pressure(self, *args): - return _mscl.AidingMeasurementPressure_pressure(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPressure_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPressure_valid(self, *args) - -# Register AidingMeasurementPressure in _mscl: -_mscl.AidingMeasurementPressure_swigregister(AidingMeasurementPressure) - -class GnssReceiverInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GnssReceiverInfo_swiginit(self, _mscl.new_GnssReceiverInfo(*args)) - id = property(_mscl.GnssReceiverInfo_id_get, _mscl.GnssReceiverInfo_id_set) - targetDataClass = property(_mscl.GnssReceiverInfo_targetDataClass_get, _mscl.GnssReceiverInfo_targetDataClass_set) - description = property(_mscl.GnssReceiverInfo_description_get, _mscl.GnssReceiverInfo_description_set) - module = property(_mscl.GnssReceiverInfo_module_get, _mscl.GnssReceiverInfo_module_set) - fwId = property(_mscl.GnssReceiverInfo_fwId_get, _mscl.GnssReceiverInfo_fwId_set) - fwVersion = property(_mscl.GnssReceiverInfo_fwVersion_get, _mscl.GnssReceiverInfo_fwVersion_set) - __swig_destroy__ = _mscl.delete_GnssReceiverInfo - -# Register GnssReceiverInfo in _mscl: -_mscl.GnssReceiverInfo_swigregister(GnssReceiverInfo) -GnssReceiverInfo.INFO_NOT_FOUND = _mscl.cvar.GnssReceiverInfo_INFO_NOT_FOUND - -class DeviceCommPort(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SPECIAL = _mscl.DeviceCommPort_SPECIAL - UART = _mscl.DeviceCommPort_UART - USB = _mscl.DeviceCommPort_USB - NONE = _mscl.DeviceCommPort_NONE - MIP_COMMANDS = _mscl.DeviceCommPort_MIP_COMMANDS - MIP_DATA = _mscl.DeviceCommPort_MIP_DATA - NMEA = _mscl.DeviceCommPort_NMEA - RTCM = _mscl.DeviceCommPort_RTCM - SPARTN = _mscl.DeviceCommPort_SPARTN - ALL = _mscl.DeviceCommPort_ALL - - def __init__(self, *args): - _mscl.DeviceCommPort_swiginit(self, _mscl.new_DeviceCommPort(*args)) - - def interfaceId(self): - return _mscl.DeviceCommPort_interfaceId(self) - type = property(_mscl.DeviceCommPort_type_get, _mscl.DeviceCommPort_type_set) - id = property(_mscl.DeviceCommPort_id_get, _mscl.DeviceCommPort_id_set) - inputProtocols = property(_mscl.DeviceCommPort_inputProtocols_get, _mscl.DeviceCommPort_inputProtocols_set) - outputProtocols = property(_mscl.DeviceCommPort_outputProtocols_get, _mscl.DeviceCommPort_outputProtocols_set) - __swig_destroy__ = _mscl.delete_DeviceCommPort - -# Register DeviceCommPort in _mscl: -_mscl.DeviceCommPort_swigregister(DeviceCommPort) - -class EventTypeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTypeInfo_swiginit(self, _mscl.new_EventTypeInfo(*args)) - type = property(_mscl.EventTypeInfo_type_get, _mscl.EventTypeInfo_type_set) - maxInstances = property(_mscl.EventTypeInfo_maxInstances_get, _mscl.EventTypeInfo_maxInstances_set) - __swig_destroy__ = _mscl.delete_EventTypeInfo - -# Register EventTypeInfo in _mscl: -_mscl.EventTypeInfo_swigregister(EventTypeInfo) - -class EventSupportInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - TRIGGERS = _mscl.EventSupportInfo_TRIGGERS - ACTIONS = _mscl.EventSupportInfo_ACTIONS - query = property(_mscl.EventSupportInfo_query_get, _mscl.EventSupportInfo_query_set) - maxInstances = property(_mscl.EventSupportInfo_maxInstances_get, _mscl.EventSupportInfo_maxInstances_set) - entries = property(_mscl.EventSupportInfo_entries_get, _mscl.EventSupportInfo_entries_set) - - def __init__(self): - _mscl.EventSupportInfo_swiginit(self, _mscl.new_EventSupportInfo()) - __swig_destroy__ = _mscl.delete_EventSupportInfo - -# Register EventSupportInfo in _mscl: -_mscl.EventSupportInfo_swigregister(EventSupportInfo) - -class SensorRange(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ALL = _mscl.SensorRange_ALL - ACCEL_G = _mscl.SensorRange_ACCEL_G - GYRO_DPS = _mscl.SensorRange_GYRO_DPS - MAG_GAUSS = _mscl.SensorRange_MAG_GAUSS - PRESSURE_HPA = _mscl.SensorRange_PRESSURE_HPA - - def __init__(self): - _mscl.SensorRange_swiginit(self, _mscl.new_SensorRange()) - - def type(self): - return _mscl.SensorRange_type(self) - - def range(self): - return _mscl.SensorRange_range(self) - - def id(self): - return _mscl.SensorRange_id(self) - __swig_destroy__ = _mscl.delete_SensorRange - -# Register SensorRange in _mscl: -_mscl.SensorRange_swigregister(SensorRange) - -class SupportedSensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.SupportedSensorRanges_swiginit(self, _mscl.new_SupportedSensorRanges()) - - def options(self): - return _mscl.SupportedSensorRanges_options(self) - - def lookupRecommended(self, type, range): - return _mscl.SupportedSensorRanges_lookupRecommended(self, type, range) - __swig_destroy__ = _mscl.delete_SupportedSensorRanges - -# Register SupportedSensorRanges in _mscl: -_mscl.SupportedSensorRanges_swigregister(SupportedSensorRanges) - -class InertialTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - PORTABLE_VEHICLE = _mscl.InertialTypes_PORTABLE_VEHICLE - AUTOMOTIVE_VEHICLE = _mscl.InertialTypes_AUTOMOTIVE_VEHICLE - AIRBORNE_VEHICLE = _mscl.InertialTypes_AIRBORNE_VEHICLE - AIRBORNE_HIGH_G_VEHICLE = _mscl.InertialTypes_AIRBORNE_HIGH_G_VEHICLE - GPS_PORTABLE = _mscl.InertialTypes_GPS_PORTABLE - GPS_STATIONARY = _mscl.InertialTypes_GPS_STATIONARY - GPS_PEDESTRIAN = _mscl.InertialTypes_GPS_PEDESTRIAN - GPS_AUTOMOTIVE = _mscl.InertialTypes_GPS_AUTOMOTIVE - GPS_SEA = _mscl.InertialTypes_GPS_SEA - GPS_AIRBORNE_1G = _mscl.InertialTypes_GPS_AIRBORNE_1G - GPS_AIRBORNE_2G = _mscl.InertialTypes_GPS_AIRBORNE_2G - GPS_AIRBORNE_4G = _mscl.InertialTypes_GPS_AIRBORNE_4G - RESET_ALL_AXIS = _mscl.InertialTypes_RESET_ALL_AXIS - TARE_ROLL_AXIS = _mscl.InertialTypes_TARE_ROLL_AXIS - TARE_PITCH_AXIS = _mscl.InertialTypes_TARE_PITCH_AXIS - TARE_YAW_AXIS = _mscl.InertialTypes_TARE_YAW_AXIS - INTERNAL_GNSS_ALL = _mscl.InertialTypes_INTERNAL_GNSS_ALL - EXTERNAL_GNSS = _mscl.InertialTypes_EXTERNAL_GNSS - INTERNAL_GNSS1 = _mscl.InertialTypes_INTERNAL_GNSS1 - INTERNAL_GNSS2 = _mscl.InertialTypes_INTERNAL_GNSS2 - FIX_SBAS_CORRECTIONS = _mscl.InertialTypes_FIX_SBAS_CORRECTIONS - FIX_DGNSS_CORRECTIONS = _mscl.InertialTypes_FIX_DGNSS_CORRECTIONS - FIXTYPE_3D = _mscl.InertialTypes_FIXTYPE_3D - FIXTYPE_2D = _mscl.InertialTypes_FIXTYPE_2D - FIXTYPE_TIMEONLY = _mscl.InertialTypes_FIXTYPE_TIMEONLY - FIXTYPE_NONE = _mscl.InertialTypes_FIXTYPE_NONE - FIXTYPE_INVALID = _mscl.InertialTypes_FIXTYPE_INVALID - FIXTYPE_RTK_FLOAT = _mscl.InertialTypes_FIXTYPE_RTK_FLOAT - FIXTYPE_RTK_FIXED = _mscl.InertialTypes_FIXTYPE_RTK_FIXED - FIXTYPE_DUAL_ANTENNA_NONE = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_NONE - FIXTYPE_DUAL_ANTENNA_FLOAT = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FLOAT - FIXTYPE_DUAL_ANTENNA_FIXED = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FIXED - DATA_VALID_REC_1 = _mscl.InertialTypes_DATA_VALID_REC_1 - DATA_VALID_REC_2 = _mscl.InertialTypes_DATA_VALID_REC_2 - ANTENNA_OFFSETS_VALID = _mscl.InertialTypes_ANTENNA_OFFSETS_VALID - SVFLAG_NAVIGATION = _mscl.InertialTypes_SVFLAG_NAVIGATION - SVFLAG_HEALTHY = _mscl.InertialTypes_SVFLAG_HEALTHY - DEVICE_AHRS = _mscl.InertialTypes_DEVICE_AHRS - DEVICE_GPS = _mscl.InertialTypes_DEVICE_GPS - ON_FULL_PERFORMANCE = _mscl.InertialTypes_ON_FULL_PERFORMANCE - ON_LOW_POWER = _mscl.InertialTypes_ON_LOW_POWER - SLEEP = _mscl.InertialTypes_SLEEP - OFF = _mscl.InertialTypes_OFF - STANDARD_MIP = _mscl.InertialTypes_STANDARD_MIP - WRAPPED_RAW = _mscl.InertialTypes_WRAPPED_RAW - SENSORSTATE_OFF = _mscl.InertialTypes_SENSORSTATE_OFF - SENSORSTATE_ON = _mscl.InertialTypes_SENSORSTATE_ON - SENSORSTATE_UNKNOWN = _mscl.InertialTypes_SENSORSTATE_UNKNOWN - ANTENNASTATE_INIT = _mscl.InertialTypes_ANTENNASTATE_INIT - ANTENNASTATE_SHORT = _mscl.InertialTypes_ANTENNASTATE_SHORT - ANTENNASTATE_OPEN = _mscl.InertialTypes_ANTENNASTATE_OPEN - ANTENNASTATE_GOOD = _mscl.InertialTypes_ANTENNASTATE_GOOD - ANTENNASTATE_UNKNOWN = _mscl.InertialTypes_ANTENNASTATE_UNKNOWN - ANTENNAPOWER_OFF = _mscl.InertialTypes_ANTENNAPOWER_OFF - ANTENNAPOWER_ON = _mscl.InertialTypes_ANTENNAPOWER_ON - ANTENNAPOWER_UNKNOWN = _mscl.InertialTypes_ANTENNAPOWER_UNKNOWN - FILTERSTATE_STARTUP = _mscl.InertialTypes_FILTERSTATE_STARTUP - FILTERSTATE_INIT = _mscl.InertialTypes_FILTERSTATE_INIT - FILTERSTATE_RUNNING_SLN_VALID = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_VALID - FILTERSTATE_RUNNING_SLN_ERROR = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_ERROR - FILTERSTATE_VERT_GYRO = _mscl.InertialTypes_FILTERSTATE_VERT_GYRO - FILTERSTATE_AHRS = _mscl.InertialTypes_FILTERSTATE_AHRS - FILTERSTATE_FULL_NAV = _mscl.InertialTypes_FILTERSTATE_FULL_NAV - FILTERSTATUS_IMU_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_IMU_UNAVAILABLE - FILTERSTATUS_GPS_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_GPS_UNAVAILABLE - FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC = _mscl.InertialTypes_FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC - FILTERSTATUS_POS_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_POS_COVARIANCE_HIGH_WARN - FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN - FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN - FILTERSTATUS_NAN_IN_SOLUTION = _mscl.InertialTypes_FILTERSTATUS_NAN_IN_SOLUTION - FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN - FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN - FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN - FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN - FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_CONDITION = _mscl.InertialTypes_FILTERSTATUS_CONDITION - FILTERSTATUS_ROLL_PITCH_WARNING = _mscl.InertialTypes_FILTERSTATUS_ROLL_PITCH_WARNING - FILTERSTATUS_HEADING_WARNING = _mscl.InertialTypes_FILTERSTATUS_HEADING_WARNING - FILTERSTATUS_POSITION_WARNING = _mscl.InertialTypes_FILTERSTATUS_POSITION_WARNING - FILTERSTATUS_VELOCITY_WARNING = _mscl.InertialTypes_FILTERSTATUS_VELOCITY_WARNING - FILTERSTATUS_IMU_BIAS_WARNING = _mscl.InertialTypes_FILTERSTATUS_IMU_BIAS_WARNING - FILTERSTATUS_GNSS_CLK_WARNING = _mscl.InertialTypes_FILTERSTATUS_GNSS_CLK_WARNING - FILTERSTATUS_ANT_LEVER_ARM_WARNING = _mscl.InertialTypes_FILTERSTATUS_ANT_LEVER_ARM_WARNING - FILTERSTATUS_MOUNTING_TRANSFORM_WARNING = _mscl.InertialTypes_FILTERSTATUS_MOUNTING_TRANSFORM_WARNING - FILTERSTATUS_ATT_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_ATT_NOT_INIT - FILTERSTATUS_POS_VEL_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_POS_VEL_NOT_INIT - STABLE = _mscl.InertialTypes_STABLE - CONVERGING = _mscl.InertialTypes_CONVERGING - UNSTABLE = _mscl.InertialTypes_UNSTABLE - DGNSSBASE_UDRE_SCALE_FACTOR_1_00 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_1_00 - DGNSSBASE_UDRE_SCALE_FACTOR_0_75 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_75 - DGNSSBASE_UDRE_SCALE_FACTOR_0_50 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_50 - DGNSSBASE_UDRE_SCALE_FACTOR_0_30 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_30 - DGNSSBASE_UDRE_SCALE_FACTOR_0_20 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_20 - DGNSSBASE_UDRE_SCALE_FACTOR_0_10 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_10 - DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED - DGNSSBASE_REFERENCE_STATION_NOT_WORKING = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_NOT_WORKING - HEADINGSOURCE_NONE = _mscl.InertialTypes_HEADINGSOURCE_NONE - HEADINGSOURCE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_MAGNETOMETER - HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR - HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD = _mscl.InertialTypes_HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD - HEADINGSOURCE_GNSS_DUAL_ANTENNA = _mscl.InertialTypes_HEADINGSOURCE_GNSS_DUAL_ANTENNA - ENABLE_NONE = _mscl.InertialTypes_ENABLE_NONE - ENABLE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_ENABLE_INTERNAL_MAGNETOMETER - ENABLE_INTERNAL_GNSS = _mscl.InertialTypes_ENABLE_INTERNAL_GNSS - ENABLE_EXTERNAL_MESSAGES = _mscl.InertialTypes_ENABLE_EXTERNAL_MESSAGES - ENABLE_MAGNETOMETER_AND_GNSS = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_GNSS - ENABLE_GNSS_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_GNSS_AND_EXTERNAL - ENABLE_MAGNETOMETER_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_EXTERNAL - ENABLE_ALL = _mscl.InertialTypes_ENABLE_ALL - ENABLE_GYRO_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_BIAS_ESTIMATION - ENABLE_ACCEL_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_BIAS_ESTIMATION - ENABLE_GYRO_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_SCALE_FACTOR_ESTIMATION - ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION - ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION = _mscl.InertialTypes_ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION - ENABLE_HARD_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_HARD_IRON_AUTO_CALIBRATION - ENABLE_SOFT_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_SOFT_IRON_AUTO_CALIBRATION - NONE = _mscl.InertialTypes_NONE - WORLD_MAGNETIC_MODEL = _mscl.InertialTypes_WORLD_MAGNETIC_MODEL - MANUAL = _mscl.InertialTypes_MANUAL - ADAPTIVE_MEASUREMENT_DISABLE = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_DISABLE - ADAPTIVE_MEASUREMENT_ENABLE_FIXED = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_FIXED - ADAPTIVE_MEASUREMENT_ENABLE_AUTO = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_AUTO - GNSS_POS_VEL_AIDING = _mscl.InertialTypes_GNSS_POS_VEL_AIDING - GNSS_HEADING_AIDING = _mscl.InertialTypes_GNSS_HEADING_AIDING - ALTIMETER_AIDING = _mscl.InertialTypes_ALTIMETER_AIDING - ODOMETER_AIDING = _mscl.InertialTypes_ODOMETER_AIDING - MAGNETOMETER_AIDING = _mscl.InertialTypes_MAGNETOMETER_AIDING - EXTERNAL_HEADING_AIDING = _mscl.InertialTypes_EXTERNAL_HEADING_AIDING - EXTERNAL_ALTIMETER_AIDING = _mscl.InertialTypes_EXTERNAL_ALTIMETER_AIDING - EXTERNAL_MAGNETOMETER_AIDING = _mscl.InertialTypes_EXTERNAL_MAGNETOMETER_AIDING - BODY_FRAME_VEL_AIDING = _mscl.InertialTypes_BODY_FRAME_VEL_AIDING - ALL_AIDING_MEASUREMENTS = _mscl.InertialTypes_ALL_AIDING_MEASUREMENTS - GPS = _mscl.InertialTypes_GPS - SBAS = _mscl.InertialTypes_SBAS - GALILEO = _mscl.InertialTypes_GALILEO - BEIDOU = _mscl.InertialTypes_BEIDOU - QZSS = _mscl.InertialTypes_QZSS - GLONASS = _mscl.InertialTypes_GLONASS - FILTERING_OFF = _mscl.InertialTypes_FILTERING_OFF - FILTERING_CONSERVATIVE = _mscl.InertialTypes_FILTERING_CONSERVATIVE - FILTERING_MODERATE = _mscl.InertialTypes_FILTERING_MODERATE - FILTERING_AGGRESSIVE = _mscl.InertialTypes_FILTERING_AGGRESSIVE - FACTORY_STREAMING_OVERWRITE = _mscl.InertialTypes_FACTORY_STREAMING_OVERWRITE - FACTORY_STREAMING_MERGE = _mscl.InertialTypes_FACTORY_STREAMING_MERGE - FACTORY_STREAMING_ADDITIVE = _mscl.InertialTypes_FACTORY_STREAMING_ADDITIVE - PPS_DISABLED = _mscl.InertialTypes_PPS_DISABLED - PPS_RECEIVER_1 = _mscl.InertialTypes_PPS_RECEIVER_1 - PPS_RECEIVER_2 = _mscl.InertialTypes_PPS_RECEIVER_2 - PPS_GPIO = _mscl.InertialTypes_PPS_GPIO - PPS_GENERATED = _mscl.InertialTypes_PPS_GENERATED - GNSS_AIDING_TIGHT_COUPLING = _mscl.InertialTypes_GNSS_AIDING_TIGHT_COUPLING - GNSS_AIDING_DIFFERENTIAL = _mscl.InertialTypes_GNSS_AIDING_DIFFERENTIAL - GNSS_AIDING_INTEGER_FIX = _mscl.InertialTypes_GNSS_AIDING_INTEGER_FIX - GNSS_AIDING_GPS = _mscl.InertialTypes_GNSS_AIDING_GPS - GNSS_AIDING_GLONASS = _mscl.InertialTypes_GNSS_AIDING_GLONASS - GNSS_AIDING_GALILEO = _mscl.InertialTypes_GNSS_AIDING_GALILEO - GNSS_AIDING_BEIDOU = _mscl.InertialTypes_GNSS_AIDING_BEIDOU - GNSS_AIDING_NO_FIX = _mscl.InertialTypes_GNSS_AIDING_NO_FIX - GNSS_AIDING_CONFIG_ERROR = _mscl.InertialTypes_GNSS_AIDING_CONFIG_ERROR - AIDING_MEASUREMENT_ENABLED = _mscl.InertialTypes_AIDING_MEASUREMENT_ENABLED - AIDING_MEASUREMENT_USED = _mscl.InertialTypes_AIDING_MEASUREMENT_USED - AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH - AIDING_MEASUREMENT_WARNING_SAMPLE_TIME = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_SAMPLE_TIME - AIDING_MEASUREMENT_CONFIG_ERROR = _mscl.InertialTypes_AIDING_MEASUREMENT_CONFIG_ERROR - AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED = _mscl.InertialTypes_AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED - RTK_CORRECTION_ANTENNA_POS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_POS_RECEIVED - RTK_CORRECTION_ANTENNA_DESC_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_DESC_RECEIVED - RTK_CORRECTION_GPS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GPS_RECEIVED - RTK_CORRECTION_GLONASS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GLONASS_RECEIVED - RTK_CORRECTION_GALILEO_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GALILEO_RECEIVED - RTK_CORRECTION_BEIDOU_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_BEIDOU_RECEIVED - RTK_CORRECTION_USING_GPS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GPS_MSM - RTK_CORRECTION_USING_GLONASS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GLONASS_MSM - SIGNAL_QUALITY_NONE = _mscl.InertialTypes_SIGNAL_QUALITY_NONE - SIGNAL_QUALITY_SEARCHING = _mscl.InertialTypes_SIGNAL_QUALITY_SEARCHING - SIGNAL_QUALITY_ACQUIRED = _mscl.InertialTypes_SIGNAL_QUALITY_ACQUIRED - SIGNAL_QUALITY_UNUSABLE = _mscl.InertialTypes_SIGNAL_QUALITY_UNUSABLE - SIGNAL_QUALITY_TIME_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_TIME_LOCKED - SIGNAL_QUALITY_FULLY_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_FULLY_LOCKED - OVERRANGE_ACCEL_X = _mscl.InertialTypes_OVERRANGE_ACCEL_X - OVERRANGE_ACCEL_Y = _mscl.InertialTypes_OVERRANGE_ACCEL_Y - OVERRANGE_ACCEL_Z = _mscl.InertialTypes_OVERRANGE_ACCEL_Z - OVERRANGE_GYRO_X = _mscl.InertialTypes_OVERRANGE_GYRO_X - OVERRANGE_GYRO_Y = _mscl.InertialTypes_OVERRANGE_GYRO_Y - OVERRANGE_GYRO_Z = _mscl.InertialTypes_OVERRANGE_GYRO_Z - OVERRANGE_MAG_X = _mscl.InertialTypes_OVERRANGE_MAG_X - OVERRANGE_MAG_Y = _mscl.InertialTypes_OVERRANGE_MAG_Y - OVERRANGE_MAG_Z = _mscl.InertialTypes_OVERRANGE_MAG_Z - OVERRANGE_PRESSURE = _mscl.InertialTypes_OVERRANGE_PRESSURE - UNKNOWN_SBAS_SYSTEM = _mscl.InertialTypes_UNKNOWN_SBAS_SYSTEM - WAAS = _mscl.InertialTypes_WAAS - EGNOS = _mscl.InertialTypes_EGNOS - MSAS = _mscl.InertialTypes_MSAS - GAGAN = _mscl.InertialTypes_GAGAN - SBAS_INFO_RANGE_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_RANGE_AVAILABLE - SBAS_INFO_CORRECTIONS_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_CORRECTIONS_AVAILABLE - SBAS_INFO_INTEGRITY_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_INTEGRITY_AVAILABLE - SBAS_INFO_TEST = _mscl.InertialTypes_SBAS_INFO_TEST - JAMMING_STATE_UNKNOWN = _mscl.InertialTypes_JAMMING_STATE_UNKNOWN - JAMMING_STATE_NONE = _mscl.InertialTypes_JAMMING_STATE_NONE - JAMMING_STATE_PARTIAL = _mscl.InertialTypes_JAMMING_STATE_PARTIAL - JAMMING_STATE_SIGNIFICANT = _mscl.InertialTypes_JAMMING_STATE_SIGNIFICANT - SPOOFING_STATE_UNKNOWN = _mscl.InertialTypes_SPOOFING_STATE_UNKNOWN - SPOOFING_STATE_NONE = _mscl.InertialTypes_SPOOFING_STATE_NONE - SPOOFING_STATE_PARTIAL = _mscl.InertialTypes_SPOOFING_STATE_PARTIAL - SPOOFING_STATE_SIGNIFICANT = _mscl.InertialTypes_SPOOFING_STATE_SIGNIFICANT - - def __init__(self): - _mscl.InertialTypes_swiginit(self, _mscl.new_InertialTypes()) - __swig_destroy__ = _mscl.delete_InertialTypes - -# Register InertialTypes in _mscl: -_mscl.InertialTypes_swigregister(InertialTypes) - -class NmeaMessageFormat(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_MESSAGES = _mscl.NmeaMessageFormat_MAX_MESSAGES - GGA = _mscl.NmeaMessageFormat_GGA - GLL = _mscl.NmeaMessageFormat_GLL - GSV = _mscl.NmeaMessageFormat_GSV - RMC = _mscl.NmeaMessageFormat_RMC - VTG = _mscl.NmeaMessageFormat_VTG - HDT = _mscl.NmeaMessageFormat_HDT - ZDA = _mscl.NmeaMessageFormat_ZDA - MSRA = _mscl.NmeaMessageFormat_MSRA - MSRR = _mscl.NmeaMessageFormat_MSRR - IGNORED = _mscl.NmeaMessageFormat_IGNORED - GNSS = _mscl.NmeaMessageFormat_GNSS - GPS = _mscl.NmeaMessageFormat_GPS - GALILEO = _mscl.NmeaMessageFormat_GALILEO - GLONASS = _mscl.NmeaMessageFormat_GLONASS - - def __init__(self): - _mscl.NmeaMessageFormat_swiginit(self, _mscl.new_NmeaMessageFormat()) - __swig_destroy__ = _mscl.delete_NmeaMessageFormat - - def sentenceType(self, *args): - return _mscl.NmeaMessageFormat_sentenceType(self, *args) - - def talkerId(self, *args): - return _mscl.NmeaMessageFormat_talkerId(self, *args) - - def sourceDataClass(self, *args): - return _mscl.NmeaMessageFormat_sourceDataClass(self, *args) - - def sampleRate(self, *args): - return _mscl.NmeaMessageFormat_sampleRate(self, *args) - - @staticmethod - def talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - - @staticmethod - def dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - - @staticmethod - def supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - - @staticmethod - def toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -# Register NmeaMessageFormat in _mscl: -_mscl.NmeaMessageFormat_swigregister(NmeaMessageFormat) -NmeaMessageFormat.MAX_FREQUENCY = _mscl.cvar.NmeaMessageFormat_MAX_FREQUENCY - -def NmeaMessageFormat_talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - -def NmeaMessageFormat_dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - -def NmeaMessageFormat_supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - -def NmeaMessageFormat_toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -class Matrix_3x3(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Matrix_3x3_swiginit(self, _mscl.new_Matrix_3x3(*args)) - __swig_destroy__ = _mscl.delete_Matrix_3x3 - - def set(self, row, col, value): - return _mscl.Matrix_3x3_set(self, row, col, value) - - def at(self, row, col): - return _mscl.Matrix_3x3_at(self, row, col) - - def __str__(self): - return _mscl.Matrix_3x3___str__(self) - - def asMipFieldValues(self): - return _mscl.Matrix_3x3_asMipFieldValues(self) - -# Register Matrix_3x3 in _mscl: -_mscl.Matrix_3x3_swigregister(Matrix_3x3) - -class TimeUpdate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, timeOfWeek, weekNumber, timeAccuracy=0): - _mscl.TimeUpdate_swiginit(self, _mscl.new_TimeUpdate(timeOfWeek, weekNumber, timeAccuracy)) - __swig_destroy__ = _mscl.delete_TimeUpdate - - def timeOfWeek(self): - return _mscl.TimeUpdate_timeOfWeek(self) - - def weekNumber(self): - return _mscl.TimeUpdate_weekNumber(self) - - def timeAccuracy(self): - return _mscl.TimeUpdate_timeAccuracy(self) - -# Register TimeUpdate in _mscl: -_mscl.TimeUpdate_swigregister(TimeUpdate) - -class ZUPTSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, enable, threshold): - _mscl.ZUPTSettingsData_swiginit(self, _mscl.new_ZUPTSettingsData(enable, threshold)) - enabled = property(_mscl.ZUPTSettingsData_enabled_get, _mscl.ZUPTSettingsData_enabled_set) - threshold = property(_mscl.ZUPTSettingsData_threshold_get, _mscl.ZUPTSettingsData_threshold_set) - __swig_destroy__ = _mscl.delete_ZUPTSettingsData - -# Register ZUPTSettingsData in _mscl: -_mscl.ZUPTSettingsData_swigregister(ZUPTSettingsData) - -class FixedReferencePositionData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.FixedReferencePositionData_swiginit(self, _mscl.new_FixedReferencePositionData(*args)) - enable = property(_mscl.FixedReferencePositionData_enable_get, _mscl.FixedReferencePositionData_enable_set) - referencePosition = property(_mscl.FixedReferencePositionData_referencePosition_get, _mscl.FixedReferencePositionData_referencePosition_set) - __swig_destroy__ = _mscl.delete_FixedReferencePositionData - -# Register FixedReferencePositionData in _mscl: -_mscl.FixedReferencePositionData_swigregister(FixedReferencePositionData) - -class SBASSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enableSBAS = property(_mscl.SBASSettingsData_enableSBAS_get, _mscl.SBASSettingsData_enableSBAS_set) - enableRanging = property(_mscl.SBASSettingsData_enableRanging_get, _mscl.SBASSettingsData_enableRanging_set) - enableCorrectionData = property(_mscl.SBASSettingsData_enableCorrectionData_get, _mscl.SBASSettingsData_enableCorrectionData_set) - applyIntegrityInfo = property(_mscl.SBASSettingsData_applyIntegrityInfo_get, _mscl.SBASSettingsData_applyIntegrityInfo_set) - satellitePRNs = property(_mscl.SBASSettingsData_satellitePRNs_get, _mscl.SBASSettingsData_satellitePRNs_set) - - def __init__(self): - _mscl.SBASSettingsData_swiginit(self, _mscl.new_SBASSettingsData()) - __swig_destroy__ = _mscl.delete_SBASSettingsData - -# Register SBASSettingsData in _mscl: -_mscl.SBASSettingsData_swigregister(SBASSettingsData) - -class Constellation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - constellationID = property(_mscl.Constellation_constellationID_get, _mscl.Constellation_constellationID_set) - enabled = property(_mscl.Constellation_enabled_get, _mscl.Constellation_enabled_set) - reservedChannelCount = property(_mscl.Constellation_reservedChannelCount_get, _mscl.Constellation_reservedChannelCount_set) - maxChannels = property(_mscl.Constellation_maxChannels_get, _mscl.Constellation_maxChannels_set) - enableL1SAIF = property(_mscl.Constellation_enableL1SAIF_get, _mscl.Constellation_enableL1SAIF_set) - - def __init__(self): - _mscl.Constellation_swiginit(self, _mscl.new_Constellation()) - __swig_destroy__ = _mscl.delete_Constellation - -# Register Constellation in _mscl: -_mscl.Constellation_swigregister(Constellation) - -class ConstellationSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - maxChannelsAvailable = property(_mscl.ConstellationSettingsData_maxChannelsAvailable_get, _mscl.ConstellationSettingsData_maxChannelsAvailable_set) - maxChannelsToUse = property(_mscl.ConstellationSettingsData_maxChannelsToUse_get, _mscl.ConstellationSettingsData_maxChannelsToUse_set) - constellations = property(_mscl.ConstellationSettingsData_constellations_get, _mscl.ConstellationSettingsData_constellations_set) - - def __init__(self): - _mscl.ConstellationSettingsData_swiginit(self, _mscl.new_ConstellationSettingsData()) - __swig_destroy__ = _mscl.delete_ConstellationSettingsData - -# Register ConstellationSettingsData in _mscl: -_mscl.ConstellationSettingsData_swigregister(ConstellationSettingsData) - -class LowPassFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SET_TO_HALF_REPORTING_RATE = _mscl.LowPassFilterData_SET_TO_HALF_REPORTING_RATE - USER_SPECIFIED_CUTOFF_FREQ = _mscl.LowPassFilterData_USER_SPECIFIED_CUTOFF_FREQ - - def __init__(self, *args): - _mscl.LowPassFilterData_swiginit(self, _mscl.new_LowPassFilterData(*args)) - dataDescriptor = property(_mscl.LowPassFilterData_dataDescriptor_get, _mscl.LowPassFilterData_dataDescriptor_set) - manualFilterBandwidthConfig = property(_mscl.LowPassFilterData_manualFilterBandwidthConfig_get, _mscl.LowPassFilterData_manualFilterBandwidthConfig_set) - applyLowPassFilter = property(_mscl.LowPassFilterData_applyLowPassFilter_get, _mscl.LowPassFilterData_applyLowPassFilter_set) - cutoffFrequency = property(_mscl.LowPassFilterData_cutoffFrequency_get, _mscl.LowPassFilterData_cutoffFrequency_set) - - @staticmethod - def getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - - @staticmethod - def getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - __swig_destroy__ = _mscl.delete_LowPassFilterData - -# Register LowPassFilterData in _mscl: -_mscl.LowPassFilterData_swigregister(LowPassFilterData) - -def LowPassFilterData_getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - -def LowPassFilterData_getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - -class ComplementaryFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ComplementaryFilterData_swiginit(self, _mscl.new_ComplementaryFilterData()) - upCompensationEnabled = property(_mscl.ComplementaryFilterData_upCompensationEnabled_get, _mscl.ComplementaryFilterData_upCompensationEnabled_set) - upCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_upCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_upCompensationTimeInSeconds_set) - northCompensationEnabled = property(_mscl.ComplementaryFilterData_northCompensationEnabled_get, _mscl.ComplementaryFilterData_northCompensationEnabled_set) - northCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_northCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_northCompensationTimeInSeconds_set) - __swig_destroy__ = _mscl.delete_ComplementaryFilterData - -# Register ComplementaryFilterData in _mscl: -_mscl.ComplementaryFilterData_swigregister(ComplementaryFilterData) - -class PpsPulseInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PpsPulseInfo_swiginit(self, _mscl.new_PpsPulseInfo()) - count = property(_mscl.PpsPulseInfo_count_get, _mscl.PpsPulseInfo_count_set) - lastTimeinMS = property(_mscl.PpsPulseInfo_lastTimeinMS_get, _mscl.PpsPulseInfo_lastTimeinMS_set) - __swig_destroy__ = _mscl.delete_PpsPulseInfo - -# Register PpsPulseInfo in _mscl: -_mscl.PpsPulseInfo_swigregister(PpsPulseInfo) - -class StreamInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.StreamInfo_swiginit(self, _mscl.new_StreamInfo()) - enabled = property(_mscl.StreamInfo_enabled_get, _mscl.StreamInfo_enabled_set) - outgoingPacketsDropped = property(_mscl.StreamInfo_outgoingPacketsDropped_get, _mscl.StreamInfo_outgoingPacketsDropped_set) - __swig_destroy__ = _mscl.delete_StreamInfo - -# Register StreamInfo in _mscl: -_mscl.StreamInfo_swigregister(StreamInfo) - -class DeviceMessageInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.DeviceMessageInfo_swiginit(self, _mscl.new_DeviceMessageInfo()) - messageParsingErrors = property(_mscl.DeviceMessageInfo_messageParsingErrors_get, _mscl.DeviceMessageInfo_messageParsingErrors_set) - messagesRead = property(_mscl.DeviceMessageInfo_messagesRead_get, _mscl.DeviceMessageInfo_messagesRead_set) - lastMessageReadinMS = property(_mscl.DeviceMessageInfo_lastMessageReadinMS_get, _mscl.DeviceMessageInfo_lastMessageReadinMS_set) - __swig_destroy__ = _mscl.delete_DeviceMessageInfo - -# Register DeviceMessageInfo in _mscl: -_mscl.DeviceMessageInfo_swigregister(DeviceMessageInfo) - -class PortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PortInfo_swiginit(self, _mscl.new_PortInfo()) - bytesWritten = property(_mscl.PortInfo_bytesWritten_get, _mscl.PortInfo_bytesWritten_set) - bytesRead = property(_mscl.PortInfo_bytesRead_get, _mscl.PortInfo_bytesRead_set) - overrunsOnWrite = property(_mscl.PortInfo_overrunsOnWrite_get, _mscl.PortInfo_overrunsOnWrite_set) - overrunsOnRead = property(_mscl.PortInfo_overrunsOnRead_get, _mscl.PortInfo_overrunsOnRead_set) - __swig_destroy__ = _mscl.delete_PortInfo - -# Register PortInfo in _mscl: -_mscl.PortInfo_swigregister(PortInfo) - -class TemperatureInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.TemperatureInfo_swiginit(self, _mscl.new_TemperatureInfo()) - onBoardTemp = property(_mscl.TemperatureInfo_onBoardTemp_get, _mscl.TemperatureInfo_onBoardTemp_set) - lastReadInMS = property(_mscl.TemperatureInfo_lastReadInMS_get, _mscl.TemperatureInfo_lastReadInMS_set) - error = property(_mscl.TemperatureInfo_error_get, _mscl.TemperatureInfo_error_set) - __swig_destroy__ = _mscl.delete_TemperatureInfo - -# Register TemperatureInfo in _mscl: -_mscl.TemperatureInfo_swigregister(TemperatureInfo) - -ModelNumber = _mscl.ModelNumber -StatusStructure_Value = _mscl.StatusStructure_Value -SystemState_Value = _mscl.SystemState_Value -gnss1PpsPulseInfo_Count = _mscl.gnss1PpsPulseInfo_Count -gnss1PpsPulseInfo_LastTimeinMS = _mscl.gnss1PpsPulseInfo_LastTimeinMS -GnssPowerStateOn = _mscl.GnssPowerStateOn -ImuStreamInfo_Enabled = _mscl.ImuStreamInfo_Enabled -ImuStreamInfo_PacketsDropped = _mscl.ImuStreamInfo_PacketsDropped -GnssStreamInfo_Enabled = _mscl.GnssStreamInfo_Enabled -GnssStreamInfo_PacketsDropped = _mscl.GnssStreamInfo_PacketsDropped -EstimationFilterStreamInfo_Enabled = _mscl.EstimationFilterStreamInfo_Enabled -EstimationFilterStreamInfo_PacketsDropped = _mscl.EstimationFilterStreamInfo_PacketsDropped -ComPortInfo_BytesRead = _mscl.ComPortInfo_BytesRead -ComPortInfo_BytesWritten = _mscl.ComPortInfo_BytesWritten -ComPortInfo_OverrunsOnRead = _mscl.ComPortInfo_OverrunsOnRead -ComPortInfo_OverrunsOnWrite = _mscl.ComPortInfo_OverrunsOnWrite -ImuMessageInfo_LastMessageReadinMS = _mscl.ImuMessageInfo_LastMessageReadinMS -ImuMessageInfo_MessageParsingErrors = _mscl.ImuMessageInfo_MessageParsingErrors -ImuMessageInfo_MessagesRead = _mscl.ImuMessageInfo_MessagesRead -GnssMessageInfo_LastMessageReadinMS = _mscl.GnssMessageInfo_LastMessageReadinMS -GnssMessageInfo_MessageParsingErrors = _mscl.GnssMessageInfo_MessageParsingErrors -GnssMessageInfo_MessagesRead = _mscl.GnssMessageInfo_MessagesRead -TemperatureInfo_Error = _mscl.TemperatureInfo_Error -TemperatureInfo_LastReadInMS = _mscl.TemperatureInfo_LastReadInMS -TemperatureInfo_OnBoardTemp = _mscl.TemperatureInfo_OnBoardTemp -PowerState = _mscl.PowerState -GyroRange = _mscl.GyroRange -AccelRange = _mscl.AccelRange -HasMagnetometer = _mscl.HasMagnetometer -HasPressure = _mscl.HasPressure -class DeviceStatusData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_BASIC_STATUS_STRUCTURE - DIAGNOSTIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_DIAGNOSTIC_STATUS_STRUCTURE - SYSTEM_INITIALIZATION = _mscl.DeviceStatusData_SYSTEM_INITIALIZATION - SYSTEM_STARTUP = _mscl.DeviceStatusData_SYSTEM_STARTUP - SYSTEM_RUNNING = _mscl.DeviceStatusData_SYSTEM_RUNNING - - def __init__(self): - _mscl.DeviceStatusData_swiginit(self, _mscl.new_DeviceStatusData()) - modelNumber = property(_mscl.DeviceStatusData_modelNumber_get, _mscl.DeviceStatusData_modelNumber_set) - statusStructure = property(_mscl.DeviceStatusData_statusStructure_get, _mscl.DeviceStatusData_statusStructure_set) - systemTimerInMS = property(_mscl.DeviceStatusData_systemTimerInMS_get, _mscl.DeviceStatusData_systemTimerInMS_set) - - def systemState(self, *args): - return _mscl.DeviceStatusData_systemState(self, *args) - - def gnssPowerStateOn(self, *args): - return _mscl.DeviceStatusData_gnssPowerStateOn(self, *args) - - def gnss1PpsPulseInfo(self, *args): - return _mscl.DeviceStatusData_gnss1PpsPulseInfo(self, *args) - - def imuStreamInfo(self, *args): - return _mscl.DeviceStatusData_imuStreamInfo(self, *args) - - def gnssStreamInfo(self, *args): - return _mscl.DeviceStatusData_gnssStreamInfo(self, *args) - - def estimationFilterStreamInfo(self, *args): - return _mscl.DeviceStatusData_estimationFilterStreamInfo(self, *args) - - def imuMessageInfo(self, *args): - return _mscl.DeviceStatusData_imuMessageInfo(self, *args) - - def gnssMessageInfo(self, *args): - return _mscl.DeviceStatusData_gnssMessageInfo(self, *args) - - def comPortInfo(self, *args): - return _mscl.DeviceStatusData_comPortInfo(self, *args) - - def usbPortInfo(self, *args): - return _mscl.DeviceStatusData_usbPortInfo(self, *args) - - def hasMagnetometer(self, *args): - return _mscl.DeviceStatusData_hasMagnetometer(self, *args) - - def magnetometerInitializationFailed(self, *args): - return _mscl.DeviceStatusData_magnetometerInitializationFailed(self, *args) - - def hasPressure(self, *args): - return _mscl.DeviceStatusData_hasPressure(self, *args) - - def pressureInitializationFailed(self, *args): - return _mscl.DeviceStatusData_pressureInitializationFailed(self, *args) - - def gnssReceiverInitializationFailed(self, *args): - return _mscl.DeviceStatusData_gnssReceiverInitializationFailed(self, *args) - - def coldStartOnPowerOn(self, *args): - return _mscl.DeviceStatusData_coldStartOnPowerOn(self, *args) - - def temperatureInfo(self, *args): - return _mscl.DeviceStatusData_temperatureInfo(self, *args) - - def powerState(self, *args): - return _mscl.DeviceStatusData_powerState(self, *args) - - def gyroRange(self, *args): - return _mscl.DeviceStatusData_gyroRange(self, *args) - - def accelRange(self, *args): - return _mscl.DeviceStatusData_accelRange(self, *args) - - def asMap(self): - return _mscl.DeviceStatusData_asMap(self) - - def asValueMap(self): - return _mscl.DeviceStatusData_asValueMap(self) - __swig_destroy__ = _mscl.delete_DeviceStatusData - -# Register DeviceStatusData in _mscl: -_mscl.DeviceStatusData_swigregister(DeviceStatusData) - -class ExternalGNSSUpdateData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - gpsTimeOfWeek = property(_mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_get, _mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_set) - gpsWeekNumber = property(_mscl.ExternalGNSSUpdateData_gpsWeekNumber_get, _mscl.ExternalGNSSUpdateData_gpsWeekNumber_set) - lattitude = property(_mscl.ExternalGNSSUpdateData_lattitude_get, _mscl.ExternalGNSSUpdateData_lattitude_set) - longitude = property(_mscl.ExternalGNSSUpdateData_longitude_get, _mscl.ExternalGNSSUpdateData_longitude_set) - altitudeAboveWGS84Ellipsoid = property(_mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_get, _mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_set) - northVelocity = property(_mscl.ExternalGNSSUpdateData_northVelocity_get, _mscl.ExternalGNSSUpdateData_northVelocity_set) - eastVelocity = property(_mscl.ExternalGNSSUpdateData_eastVelocity_get, _mscl.ExternalGNSSUpdateData_eastVelocity_set) - downVelocity = property(_mscl.ExternalGNSSUpdateData_downVelocity_get, _mscl.ExternalGNSSUpdateData_downVelocity_set) - northPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_northPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_northPositionUncertainty_set) - eastPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_eastPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_eastPositionUncertainty_set) - downPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_downPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_downPositionUncertainty_set) - northVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_northVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_northVelocityUncertainty_set) - eastVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_set) - downVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_downVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_downVelocityUncertainty_set) - - def __init__(self): - _mscl.ExternalGNSSUpdateData_swiginit(self, _mscl.new_ExternalGNSSUpdateData()) - __swig_destroy__ = _mscl.delete_ExternalGNSSUpdateData - -# Register ExternalGNSSUpdateData in _mscl: -_mscl.ExternalGNSSUpdateData_swigregister(ExternalGNSSUpdateData) - -class HeadingUpdateOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsOptionId(self): - return _mscl.HeadingUpdateOptions_AsOptionId(self) - - def __init__(self, *args): - _mscl.HeadingUpdateOptions_swiginit(self, _mscl.new_HeadingUpdateOptions(*args)) - useInternalMagnetometer = property(_mscl.HeadingUpdateOptions_useInternalMagnetometer_get, _mscl.HeadingUpdateOptions_useInternalMagnetometer_set) - useInternalGNSSVelocityVector = property(_mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_get, _mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_set) - useExternalHeadingMessages = property(_mscl.HeadingUpdateOptions_useExternalHeadingMessages_get, _mscl.HeadingUpdateOptions_useExternalHeadingMessages_set) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptions - -# Register HeadingUpdateOptions in _mscl: -_mscl.HeadingUpdateOptions_swigregister(HeadingUpdateOptions) - -Automatic = _mscl.Automatic -UserSpecified_Heading = _mscl.UserSpecified_Heading -UserSpecified_Attitude = _mscl.UserSpecified_Attitude -UserSpecified_All = _mscl.UserSpecified_All -GNSS_DualAntenna = _mscl.GNSS_DualAntenna -GNSS_Kinematic = _mscl.GNSS_Kinematic -Magnetometer = _mscl.Magnetometer -External = _mscl.External -class HeadingAlignmentMethod(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.HeadingAlignmentMethod_swiginit(self, _mscl.new_HeadingAlignmentMethod(*args)) - value = property(_mscl.HeadingAlignmentMethod_value_get, _mscl.HeadingAlignmentMethod_value_set) - - def select(self, option): - return _mscl.HeadingAlignmentMethod_select(self, option) - - def deselect(self, option): - return _mscl.HeadingAlignmentMethod_deselect(self, option) - - def selected(self, option): - return _mscl.HeadingAlignmentMethod_selected(self, option) - __swig_destroy__ = _mscl.delete_HeadingAlignmentMethod - -# Register HeadingAlignmentMethod in _mscl: -_mscl.HeadingAlignmentMethod_swigregister(HeadingAlignmentMethod) - -class FilterInitializationValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FilterInitializationValues_swiginit(self, _mscl.new_FilterInitializationValues()) - autoInitialize = property(_mscl.FilterInitializationValues_autoInitialize_get, _mscl.FilterInitializationValues_autoInitialize_set) - initialValuesSource = property(_mscl.FilterInitializationValues_initialValuesSource_get, _mscl.FilterInitializationValues_initialValuesSource_set) - autoHeadingAlignmentMethod = property(_mscl.FilterInitializationValues_autoHeadingAlignmentMethod_get, _mscl.FilterInitializationValues_autoHeadingAlignmentMethod_set) - initialAttitude = property(_mscl.FilterInitializationValues_initialAttitude_get, _mscl.FilterInitializationValues_initialAttitude_set) - initialPosition = property(_mscl.FilterInitializationValues_initialPosition_get, _mscl.FilterInitializationValues_initialPosition_set) - initialVelocity = property(_mscl.FilterInitializationValues_initialVelocity_get, _mscl.FilterInitializationValues_initialVelocity_set) - referenceFrame = property(_mscl.FilterInitializationValues_referenceFrame_get, _mscl.FilterInitializationValues_referenceFrame_set) - - def manualHeading(self): - return _mscl.FilterInitializationValues_manualHeading(self) - - def manualAttitude(self): - return _mscl.FilterInitializationValues_manualAttitude(self) - - def manualPositionVelocity(self): - return _mscl.FilterInitializationValues_manualPositionVelocity(self) - __swig_destroy__ = _mscl.delete_FilterInitializationValues - -# Register FilterInitializationValues in _mscl: -_mscl.FilterInitializationValues_swigregister(FilterInitializationValues) - -class TareAxisValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def asUint8(self): - return _mscl.TareAxisValues_asUint8(self) - - def __init__(self, tareRollAxis, tarePitchAxis, tareYawAxis): - _mscl.TareAxisValues_swiginit(self, _mscl.new_TareAxisValues(tareRollAxis, tarePitchAxis, tareYawAxis)) - tareRollAxis = property(_mscl.TareAxisValues_tareRollAxis_get, _mscl.TareAxisValues_tareRollAxis_set) - tarePitchAxis = property(_mscl.TareAxisValues_tarePitchAxis_get, _mscl.TareAxisValues_tarePitchAxis_set) - tareYawAxis = property(_mscl.TareAxisValues_tareYawAxis_get, _mscl.TareAxisValues_tareYawAxis_set) - __swig_destroy__ = _mscl.delete_TareAxisValues - -# Register TareAxisValues in _mscl: -_mscl.TareAxisValues_swigregister(TareAxisValues) - -class GeographicSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeographicSourceOptions_swiginit(self, _mscl.new_GeographicSourceOptions(*args)) - source = property(_mscl.GeographicSourceOptions_source_get, _mscl.GeographicSourceOptions_source_set) - manual = property(_mscl.GeographicSourceOptions_manual_get, _mscl.GeographicSourceOptions_manual_set) - __swig_destroy__ = _mscl.delete_GeographicSourceOptions - -# Register GeographicSourceOptions in _mscl: -_mscl.GeographicSourceOptions_swigregister(GeographicSourceOptions) - -class EstimationControlOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsUint16(self): - return _mscl.EstimationControlOptions_AsUint16(self) - - def __init__(self, *args): - _mscl.EstimationControlOptions_swiginit(self, _mscl.new_EstimationControlOptions(*args)) - enableGyroBiasEstimation = property(_mscl.EstimationControlOptions_enableGyroBiasEstimation_get, _mscl.EstimationControlOptions_enableGyroBiasEstimation_set) - enableAccelBiasEstimation = property(_mscl.EstimationControlOptions_enableAccelBiasEstimation_get, _mscl.EstimationControlOptions_enableAccelBiasEstimation_set) - enableGyroScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_set) - enableAccelScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_set) - enableGNSSAntennaOffsetEstimation = property(_mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_get, _mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_set) - enableHardIronAutoCalibration = property(_mscl.EstimationControlOptions_enableHardIronAutoCalibration_get, _mscl.EstimationControlOptions_enableHardIronAutoCalibration_set) - enableSoftIronAutoCalibration = property(_mscl.EstimationControlOptions_enableSoftIronAutoCalibration_get, _mscl.EstimationControlOptions_enableSoftIronAutoCalibration_set) - __swig_destroy__ = _mscl.delete_EstimationControlOptions - -# Register EstimationControlOptions in _mscl: -_mscl.EstimationControlOptions_swigregister(EstimationControlOptions) - -class HeadingData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HeadingData_swiginit(self, _mscl.new_HeadingData()) - TRUE_HEADING = _mscl.HeadingData_TRUE_HEADING - MAGNETIC_HEADING = _mscl.HeadingData_MAGNETIC_HEADING - heading = property(_mscl.HeadingData_heading_get, _mscl.HeadingData_heading_set) - headingAngle = property(_mscl.HeadingData_headingAngle_get, _mscl.HeadingData_headingAngle_set) - headingAngleUncertainty = property(_mscl.HeadingData_headingAngleUncertainty_get, _mscl.HeadingData_headingAngleUncertainty_set) - __swig_destroy__ = _mscl.delete_HeadingData - -# Register HeadingData in _mscl: -_mscl.HeadingData_swigregister(HeadingData) - -class AdaptiveMeasurementData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AdaptiveMeasurementData_swiginit(self, _mscl.new_AdaptiveMeasurementData()) - mode = property(_mscl.AdaptiveMeasurementData_mode_get, _mscl.AdaptiveMeasurementData_mode_set) - lowPassFilterCutoff = property(_mscl.AdaptiveMeasurementData_lowPassFilterCutoff_get, _mscl.AdaptiveMeasurementData_lowPassFilterCutoff_set) - lowLimit = property(_mscl.AdaptiveMeasurementData_lowLimit_get, _mscl.AdaptiveMeasurementData_lowLimit_set) - highLimit = property(_mscl.AdaptiveMeasurementData_highLimit_get, _mscl.AdaptiveMeasurementData_highLimit_set) - lowLimitUncertainty = property(_mscl.AdaptiveMeasurementData_lowLimitUncertainty_get, _mscl.AdaptiveMeasurementData_lowLimitUncertainty_set) - highLimitUncertainty = property(_mscl.AdaptiveMeasurementData_highLimitUncertainty_get, _mscl.AdaptiveMeasurementData_highLimitUncertainty_set) - minUncertainty = property(_mscl.AdaptiveMeasurementData_minUncertainty_get, _mscl.AdaptiveMeasurementData_minUncertainty_set) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementData - -# Register AdaptiveMeasurementData in _mscl: -_mscl.AdaptiveMeasurementData_swigregister(AdaptiveMeasurementData) - -class AutoAdaptiveFilterOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AutoAdaptiveFilterOptions_swiginit(self, _mscl.new_AutoAdaptiveFilterOptions(*args)) - level = property(_mscl.AutoAdaptiveFilterOptions_level_get, _mscl.AutoAdaptiveFilterOptions_level_set) - timeLimit = property(_mscl.AutoAdaptiveFilterOptions_timeLimit_get, _mscl.AutoAdaptiveFilterOptions_timeLimit_set) - __swig_destroy__ = _mscl.delete_AutoAdaptiveFilterOptions - -# Register AutoAdaptiveFilterOptions in _mscl: -_mscl.AutoAdaptiveFilterOptions_swigregister(AutoAdaptiveFilterOptions) - -class SignalConditioningValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ENABLE_ORIENTATION_CALC = _mscl.SignalConditioningValues_ENABLE_ORIENTATION_CALC - ENABLE_CONING_SCULLING = _mscl.SignalConditioningValues_ENABLE_CONING_SCULLING - ENABLE_FINITE_SIZE_CORRECTION = _mscl.SignalConditioningValues_ENABLE_FINITE_SIZE_CORRECTION - DISABLE_MAGNETOMETER = _mscl.SignalConditioningValues_DISABLE_MAGNETOMETER - DISABLE_NORTH_COMP = _mscl.SignalConditioningValues_DISABLE_NORTH_COMP - DISABLE_UP_COMP = _mscl.SignalConditioningValues_DISABLE_UP_COMP - ENABLE_QUATERNION_CALC = _mscl.SignalConditioningValues_ENABLE_QUATERNION_CALC - HIGH = _mscl.SignalConditioningValues_HIGH - LOW = _mscl.SignalConditioningValues_LOW - dataConditioningFlags = property(_mscl.SignalConditioningValues_dataConditioningFlags_get, _mscl.SignalConditioningValues_dataConditioningFlags_set) - orientationCalcDecimation = property(_mscl.SignalConditioningValues_orientationCalcDecimation_get, _mscl.SignalConditioningValues_orientationCalcDecimation_set) - accelGyroFilterWidth = property(_mscl.SignalConditioningValues_accelGyroFilterWidth_get, _mscl.SignalConditioningValues_accelGyroFilterWidth_set) - magFilterWidth = property(_mscl.SignalConditioningValues_magFilterWidth_get, _mscl.SignalConditioningValues_magFilterWidth_set) - upCompensation = property(_mscl.SignalConditioningValues_upCompensation_get, _mscl.SignalConditioningValues_upCompensation_set) - northCompensation = property(_mscl.SignalConditioningValues_northCompensation_get, _mscl.SignalConditioningValues_northCompensation_set) - magBandwidthPower = property(_mscl.SignalConditioningValues_magBandwidthPower_get, _mscl.SignalConditioningValues_magBandwidthPower_set) - - def __init__(self): - _mscl.SignalConditioningValues_swiginit(self, _mscl.new_SignalConditioningValues()) - - def conditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_conditioningOptionOn(self, *args) - - def setConditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOn(self, *args) - - def setConditioningOptionOff(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOff(self, *args) - __swig_destroy__ = _mscl.delete_SignalConditioningValues - -# Register SignalConditioningValues in _mscl: -_mscl.SignalConditioningValues_swigregister(SignalConditioningValues) - -class EnableDisableMeasurements(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ACCELEROMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_ACCELEROMETER_MEASUREMENTS - MAGNETOMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_MAGNETOMETER_MEASUREMENTS - - def __init__(self, *args): - _mscl.EnableDisableMeasurements_swiginit(self, _mscl.new_EnableDisableMeasurements(*args)) - measurementOptions = property(_mscl.EnableDisableMeasurements_measurementOptions_get, _mscl.EnableDisableMeasurements_measurementOptions_set) - - def optionEnabled(self, *args): - return _mscl.EnableDisableMeasurements_optionEnabled(self, *args) - - def enableOption(self, *args): - return _mscl.EnableDisableMeasurements_enableOption(self, *args) - - def disableOption(self, *args): - return _mscl.EnableDisableMeasurements_disableOption(self, *args) - __swig_destroy__ = _mscl.delete_EnableDisableMeasurements - -# Register EnableDisableMeasurements in _mscl: -_mscl.EnableDisableMeasurements_swigregister(EnableDisableMeasurements) - -class RTKDeviceStatusFlags(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MODEM_STATE = _mscl.RTKDeviceStatusFlags_MODEM_STATE - CONNECTION_TYPE = _mscl.RTKDeviceStatusFlags_CONNECTION_TYPE - RSSI = _mscl.RTKDeviceStatusFlags_RSSI - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_SIGNAL_QUALITY - TOWER_CHANGE_INDICATOR = _mscl.RTKDeviceStatusFlags_TOWER_CHANGE_INDICATOR - NMEA_TIMEOUT = _mscl.RTKDeviceStatusFlags_NMEA_TIMEOUT - SERVER_TIMEOUT = _mscl.RTKDeviceStatusFlags_SERVER_TIMEOUT - RTCM_TIMEOUT = _mscl.RTKDeviceStatusFlags_RTCM_TIMEOUT - DEVICE_OUT_OF_RANGE = _mscl.RTKDeviceStatusFlags_DEVICE_OUT_OF_RANGE - CORRECTIONS_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_CORRECTIONS_UNAVAILABLE - VERSION = _mscl.RTKDeviceStatusFlags_VERSION - OFF = _mscl.RTKDeviceStatusFlags_OFF - NO_NETWORK = _mscl.RTKDeviceStatusFlags_NO_NETWORK - NETWORK_CONNECTED = _mscl.RTKDeviceStatusFlags_NETWORK_CONNECTED - CONFIGURING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_CONFIGURING_DATA_CONTEXT - ACTIVATING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_ACTIVATING_DATA_CONTEXT - CONFIGURING_SOCKET = _mscl.RTKDeviceStatusFlags_CONFIGURING_SOCKET - WAITING_ON_SERVER_HANDSHAKE = _mscl.RTKDeviceStatusFlags_WAITING_ON_SERVER_HANDSHAKE - CONNECTED_AND_IDLE = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_IDLE - CONNECTED_AND_STREAMING = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_STREAMING - NO_CONNECTION = _mscl.RTKDeviceStatusFlags_NO_CONNECTION - CONNECTION_2G = _mscl.RTKDeviceStatusFlags_CONNECTION_2G - CONNECTION_3G = _mscl.RTKDeviceStatusFlags_CONNECTION_3G - CONNECTION_4G = _mscl.RTKDeviceStatusFlags_CONNECTION_4G - CONNECTION_5G = _mscl.RTKDeviceStatusFlags_CONNECTION_5G - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_swiginit(self, _mscl.new_RTKDeviceStatusFlags(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_version(self) - - def modemState(self, *args): - return _mscl.RTKDeviceStatusFlags_modemState(self, *args) - - def connectionType(self, *args): - return _mscl.RTKDeviceStatusFlags_connectionType(self, *args) - - def rssi(self, *args): - return _mscl.RTKDeviceStatusFlags_rssi(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_signalQuality(self, *args) - - def towerChangeIndicator(self, *args): - return _mscl.RTKDeviceStatusFlags_towerChangeIndicator(self, *args) - - def nmeaTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_nmeaTimeout(self, *args) - - def serverTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_serverTimeout(self, *args) - - def rtcmTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_rtcmTimeout(self, *args) - - def deviceOutOfRange(self, *args): - return _mscl.RTKDeviceStatusFlags_deviceOutOfRange(self, *args) - - def correctionsUnavailable(self, *args): - return _mscl.RTKDeviceStatusFlags_correctionsUnavailable(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags - -# Register RTKDeviceStatusFlags in _mscl: -_mscl.RTKDeviceStatusFlags_swigregister(RTKDeviceStatusFlags) - -class RTKDeviceStatusFlags_v1(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONTROLLER_STATE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATE - PLATFORM_STATE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATE - CONTROLLER_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATUS_CODE - PLATFORM_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATUS_CODE - RESET_REASON = _mscl.RTKDeviceStatusFlags_v1_RESET_REASON - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_v1_SIGNAL_QUALITY - VERSION = _mscl.RTKDeviceStatusFlags_v1_VERSION - IDLE = _mscl.RTKDeviceStatusFlags_v1_IDLE - ACTIVE = _mscl.RTKDeviceStatusFlags_v1_ACTIVE - MODEM_OFF = _mscl.RTKDeviceStatusFlags_v1_MODEM_OFF - MODEM_POWERING_ON = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_ON - MODEM_CONFIGURE = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONFIGURE - MODEM_POWERING_DOWN = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_DOWN - MODEM_READY = _mscl.RTKDeviceStatusFlags_v1_MODEM_READY - MODEM_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTING - MODEM_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_DISCONNECTING - MODEM_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTED - SERVICE_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTING - SERVICE_CONNECTION_FAILED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_FAILED - SERVICE_CONNECTION_CANCELED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_CANCELED - SERVICE_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_DISCONNECTING - SERVICE_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTED - PLATFORM_ERROR = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_ERROR - RESET_MODEM = _mscl.RTKDeviceStatusFlags_v1_RESET_MODEM - CONTROLLER_OK = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_OK - WAITING_NMEA = _mscl.RTKDeviceStatusFlags_v1_WAITING_NMEA - RTK_TIMEOUT = _mscl.RTKDeviceStatusFlags_v1_RTK_TIMEOUT - RTK_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_v1_RTK_UNAVAILABLE - CONFIG_INVALID = _mscl.RTKDeviceStatusFlags_v1_CONFIG_INVALID - PLATFORM_OK = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_OK - RTK_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_RTK_CONNECTION_DROPPED - CELL_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_CELL_CONNECTION_DROPPED - MODEM_ERROR = _mscl.RTKDeviceStatusFlags_v1_MODEM_ERROR - POWER_ON = _mscl.RTKDeviceStatusFlags_v1_POWER_ON - UNKNOWN = _mscl.RTKDeviceStatusFlags_v1_UNKNOWN - SOFT_RESET = _mscl.RTKDeviceStatusFlags_v1_SOFT_RESET - HARDWARE_ERROR_RESET = _mscl.RTKDeviceStatusFlags_v1_HARDWARE_ERROR_RESET - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_v1_swiginit(self, _mscl.new_RTKDeviceStatusFlags_v1(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_v1_version(self) - - def controllerState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerState(self, *args) - - def platformState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformState(self, *args) - - def controllerStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerStatusCode(self, *args) - - def platformStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformStatusCode(self, *args) - - def resetReason(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_resetReason(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_signalQuality(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags_v1 - -# Register RTKDeviceStatusFlags_v1 in _mscl: -_mscl.RTKDeviceStatusFlags_v1_swigregister(RTKDeviceStatusFlags_v1) - -class GnssSignalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - L1CA = _mscl.GnssSignalConfiguration_L1CA - L2C = _mscl.GnssSignalConfiguration_L2C - L1OF = _mscl.GnssSignalConfiguration_L1OF - L2OF = _mscl.GnssSignalConfiguration_L2OF - E1 = _mscl.GnssSignalConfiguration_E1 - E5B = _mscl.GnssSignalConfiguration_E5B - B1 = _mscl.GnssSignalConfiguration_B1 - B2 = _mscl.GnssSignalConfiguration_B2 - - def __init__(self): - _mscl.GnssSignalConfiguration_swiginit(self, _mscl.new_GnssSignalConfiguration()) - - def enableGpsSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGpsSignal(self, signal, enable) - - def gpsSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_gpsSignalEnabled(self, signal) - - def gpsSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_gpsSignalValue(self, *args) - - def enableGlonassSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGlonassSignal(self, signal, enable) - - def glonassSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_glonassSignalEnabled(self, signal) - - def glonassSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_glonassSignalValue(self, *args) - - def enableGalileoSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGalileoSignal(self, signal, enable) - - def galileoSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_galileoSignalEnabled(self, signal) - - def galileoSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_galileoSignalValue(self, *args) - - def enableBeiDouSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableBeiDouSignal(self, signal, enable) - - def beidouSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_beidouSignalEnabled(self, signal) - - def beidouSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_beidouSignalValue(self, *args) - __swig_destroy__ = _mscl.delete_GnssSignalConfiguration - -# Register GnssSignalConfiguration in _mscl: -_mscl.GnssSignalConfiguration_swigregister(GnssSignalConfiguration) - -class GnssSpartnConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - KEY_SIZE = _mscl.GnssSpartnConfiguration_KEY_SIZE - NONE = _mscl.GnssSpartnConfiguration_NONE - NETWORK = _mscl.GnssSpartnConfiguration_NETWORK - LBAND = _mscl.GnssSpartnConfiguration_LBAND - - def __init__(self): - _mscl.GnssSpartnConfiguration_swiginit(self, _mscl.new_GnssSpartnConfiguration()) - - def enable(self, enable): - return _mscl.GnssSpartnConfiguration_enable(self, enable) - - def enabled(self): - return _mscl.GnssSpartnConfiguration_enabled(self) - - def type(self, *args): - return _mscl.GnssSpartnConfiguration_type(self, *args) - - def currentKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyTow(self, *args) - - def currentKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyWeek(self, *args) - - def currentKey(self, *args): - return _mscl.GnssSpartnConfiguration_currentKey(self, *args) - - def nextKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyTow(self, *args) - - def nextKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyWeek(self, *args) - - def nextKey(self, *args): - return _mscl.GnssSpartnConfiguration_nextKey(self, *args) - __swig_destroy__ = _mscl.delete_GnssSpartnConfiguration - -# Register GnssSpartnConfiguration in _mscl: -_mscl.GnssSpartnConfiguration_swigregister(GnssSpartnConfiguration) - -class PositionReferenceConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - autoConfig = property(_mscl.PositionReferenceConfiguration_autoConfig_get, _mscl.PositionReferenceConfiguration_autoConfig_set) - position = property(_mscl.PositionReferenceConfiguration_position_get, _mscl.PositionReferenceConfiguration_position_set) - - def __init__(self): - _mscl.PositionReferenceConfiguration_swiginit(self, _mscl.new_PositionReferenceConfiguration()) - __swig_destroy__ = _mscl.delete_PositionReferenceConfiguration - -# Register PositionReferenceConfiguration in _mscl: -_mscl.PositionReferenceConfiguration_swigregister(PositionReferenceConfiguration) - -class AntennaLeverArmCalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enabled = property(_mscl.AntennaLeverArmCalConfiguration_enabled_get, _mscl.AntennaLeverArmCalConfiguration_enabled_set) - maxOffsetError = property(_mscl.AntennaLeverArmCalConfiguration_maxOffsetError_get, _mscl.AntennaLeverArmCalConfiguration_maxOffsetError_set) - - def __init__(self): - _mscl.AntennaLeverArmCalConfiguration_swiginit(self, _mscl.new_AntennaLeverArmCalConfiguration()) - __swig_destroy__ = _mscl.delete_AntennaLeverArmCalConfiguration - -# Register AntennaLeverArmCalConfiguration in _mscl: -_mscl.AntennaLeverArmCalConfiguration_swigregister(AntennaLeverArmCalConfiguration) - -class OdometerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.OdometerConfiguration_DISABLED - SINGLE = _mscl.OdometerConfiguration_SINGLE - QUADRATURE = _mscl.OdometerConfiguration_QUADRATURE - - def __init__(self): - _mscl.OdometerConfiguration_swiginit(self, _mscl.new_OdometerConfiguration()) - - def mode(self, *args): - return _mscl.OdometerConfiguration_mode(self, *args) - - def uncertainty(self, *args): - return _mscl.OdometerConfiguration_uncertainty(self, *args) - - def scaling(self, *args): - return _mscl.OdometerConfiguration_scaling(self, *args) - __swig_destroy__ = _mscl.delete_OdometerConfiguration - -# Register OdometerConfiguration in _mscl: -_mscl.OdometerConfiguration_swigregister(OdometerConfiguration) - -class GpioConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - UNUSED_FEATURE = _mscl.GpioConfiguration_UNUSED_FEATURE - GPIO_FEATURE = _mscl.GpioConfiguration_GPIO_FEATURE - PPS_FEATURE = _mscl.GpioConfiguration_PPS_FEATURE - ENCODER_FEATURE = _mscl.GpioConfiguration_ENCODER_FEATURE - EVENT_TIMESTAMP_FEATURE = _mscl.GpioConfiguration_EVENT_TIMESTAMP_FEATURE - UART_FEATURE = _mscl.GpioConfiguration_UART_FEATURE - GPIO_UNUSED = _mscl.GpioConfiguration_GPIO_UNUSED - GPIO_INPUT = _mscl.GpioConfiguration_GPIO_INPUT - GPIO_OUTPUT_LOW = _mscl.GpioConfiguration_GPIO_OUTPUT_LOW - GPIO_OUTPUT_HIGH = _mscl.GpioConfiguration_GPIO_OUTPUT_HIGH - PPS_UNUSED = _mscl.GpioConfiguration_PPS_UNUSED - PPS_INPUT = _mscl.GpioConfiguration_PPS_INPUT - PPS_OUTPUT = _mscl.GpioConfiguration_PPS_OUTPUT - ENCODER_UNUSED = _mscl.GpioConfiguration_ENCODER_UNUSED - ENCODER_A = _mscl.GpioConfiguration_ENCODER_A - ENCODER_B = _mscl.GpioConfiguration_ENCODER_B - TIMESTAMP_UNUSED = _mscl.GpioConfiguration_TIMESTAMP_UNUSED - TIMESTAMP_RISING = _mscl.GpioConfiguration_TIMESTAMP_RISING - TIMESTAMP_FALLING = _mscl.GpioConfiguration_TIMESTAMP_FALLING - TIMESTAMP_EITHER = _mscl.GpioConfiguration_TIMESTAMP_EITHER - UART_UNUSED = _mscl.GpioConfiguration_UART_UNUSED - UART_PORT2_TX = _mscl.GpioConfiguration_UART_PORT2_TX - UART_PORT2_RX = _mscl.GpioConfiguration_UART_PORT2_RX - UART_PORT3_TX = _mscl.GpioConfiguration_UART_PORT3_TX - UART_PORT3_RX = _mscl.GpioConfiguration_UART_PORT3_RX - NONE = _mscl.GpioConfiguration_NONE - OPEN_DRAIN = _mscl.GpioConfiguration_OPEN_DRAIN - PULLDOWN = _mscl.GpioConfiguration_PULLDOWN - PULLUP = _mscl.GpioConfiguration_PULLUP - pinMode = property(_mscl.GpioConfiguration_pinMode_get, _mscl.GpioConfiguration_pinMode_set) - pin = property(_mscl.GpioConfiguration_pin_get, _mscl.GpioConfiguration_pin_set) - feature = property(_mscl.GpioConfiguration_feature_get, _mscl.GpioConfiguration_feature_set) - behavior = property(_mscl.GpioConfiguration_behavior_get, _mscl.GpioConfiguration_behavior_set) - - def pinModeValue(self, *args): - return _mscl.GpioConfiguration_pinModeValue(self, *args) - - def __init__(self): - _mscl.GpioConfiguration_swiginit(self, _mscl.new_GpioConfiguration()) - __swig_destroy__ = _mscl.delete_GpioConfiguration - -# Register GpioConfiguration in _mscl: -_mscl.GpioConfiguration_swigregister(GpioConfiguration) - -DISABLED = _mscl.DISABLED -ENABLED = _mscl.ENABLED -TEST = _mscl.TEST -TEST_PULSE = _mscl.TEST_PULSE -class EventTriggerGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventTriggerGpioParameter_DISABLED - WHILE_HIGH = _mscl.EventTriggerGpioParameter_WHILE_HIGH - WHILE_LOW = _mscl.EventTriggerGpioParameter_WHILE_LOW - EDGE = _mscl.EventTriggerGpioParameter_EDGE - pin = property(_mscl.EventTriggerGpioParameter_pin_get, _mscl.EventTriggerGpioParameter_pin_set) - mode = property(_mscl.EventTriggerGpioParameter_mode_get, _mscl.EventTriggerGpioParameter_mode_set) - - def __init__(self): - _mscl.EventTriggerGpioParameter_swiginit(self, _mscl.new_EventTriggerGpioParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerGpioParameter - -# Register EventTriggerGpioParameter in _mscl: -_mscl.EventTriggerGpioParameter_swigregister(EventTriggerGpioParameter) - -class EventTriggerThresholdParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - WINDOW_TYPE = _mscl.EventTriggerThresholdParameter_WINDOW_TYPE - INTERVAL_TYPE = _mscl.EventTriggerThresholdParameter_INTERVAL_TYPE - type = property(_mscl.EventTriggerThresholdParameter_type_get, _mscl.EventTriggerThresholdParameter_type_set) - lowThreshold = property(_mscl.EventTriggerThresholdParameter_lowThreshold_get, _mscl.EventTriggerThresholdParameter_lowThreshold_set) - highThreshold = property(_mscl.EventTriggerThresholdParameter_highThreshold_get, _mscl.EventTriggerThresholdParameter_highThreshold_set) - - def channel(self, *args): - return _mscl.EventTriggerThresholdParameter_channel(self, *args) - - def channelField(self): - return _mscl.EventTriggerThresholdParameter_channelField(self) - - def channelQualifier(self): - return _mscl.EventTriggerThresholdParameter_channelQualifier(self) - - def channelIndex(self): - return _mscl.EventTriggerThresholdParameter_channelIndex(self) - - def __init__(self): - _mscl.EventTriggerThresholdParameter_swiginit(self, _mscl.new_EventTriggerThresholdParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerThresholdParameter - -# Register EventTriggerThresholdParameter in _mscl: -_mscl.EventTriggerThresholdParameter_swigregister(EventTriggerThresholdParameter) - -class EventTriggerCombinationParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_INPUT_TRIGGERS = _mscl.EventTriggerCombinationParameter_MAX_INPUT_TRIGGERS - LOGIC_NEVER = _mscl.EventTriggerCombinationParameter_LOGIC_NEVER - LOGIC_ALWAYS = _mscl.EventTriggerCombinationParameter_LOGIC_ALWAYS - LOGIC_NONE = _mscl.EventTriggerCombinationParameter_LOGIC_NONE - LOGIC_OR = _mscl.EventTriggerCombinationParameter_LOGIC_OR - LOGIC_NAND = _mscl.EventTriggerCombinationParameter_LOGIC_NAND - LOGIC_XOR_ONE = _mscl.EventTriggerCombinationParameter_LOGIC_XOR_ONE - LOGIC_ONLY_A = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_A - LOGIC_ONLY_B = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_B - LOGIC_ONLY_C = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_C - LOGIC_ONLY_D = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_D - LOGIC_AND_AB = _mscl.EventTriggerCombinationParameter_LOGIC_AND_AB - LOGIC_AB_OR_C = _mscl.EventTriggerCombinationParameter_LOGIC_AB_OR_C - LOGIC_AND = _mscl.EventTriggerCombinationParameter_LOGIC_AND - logicTable = property(_mscl.EventTriggerCombinationParameter_logicTable_get, _mscl.EventTriggerCombinationParameter_logicTable_set) - inputTriggers = property(_mscl.EventTriggerCombinationParameter_inputTriggers_get, _mscl.EventTriggerCombinationParameter_inputTriggers_set) - - def __init__(self): - _mscl.EventTriggerCombinationParameter_swiginit(self, _mscl.new_EventTriggerCombinationParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerCombinationParameter - -# Register EventTriggerCombinationParameter in _mscl: -_mscl.EventTriggerCombinationParameter_swigregister(EventTriggerCombinationParameter) - -class EventTriggerParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerParameters_swiginit(self, _mscl.new_EventTriggerParameters()) - gpio = property(_mscl.EventTriggerParameters_gpio_get, _mscl.EventTriggerParameters_gpio_set) - threshold = property(_mscl.EventTriggerParameters_threshold_get, _mscl.EventTriggerParameters_threshold_set) - combination = property(_mscl.EventTriggerParameters_combination_get, _mscl.EventTriggerParameters_combination_set) - __swig_destroy__ = _mscl.delete_EventTriggerParameters - -# Register EventTriggerParameters in _mscl: -_mscl.EventTriggerParameters_swigregister(EventTriggerParameters) - -class EventTriggerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventTriggerConfiguration_NONE - GPIO_TRIGGER = _mscl.EventTriggerConfiguration_GPIO_TRIGGER - THRESHOLD_TRIGGER = _mscl.EventTriggerConfiguration_THRESHOLD_TRIGGER - COMBINATION_TRIGGER = _mscl.EventTriggerConfiguration_COMBINATION_TRIGGER - instance = property(_mscl.EventTriggerConfiguration_instance_get, _mscl.EventTriggerConfiguration_instance_set) - trigger = property(_mscl.EventTriggerConfiguration_trigger_get, _mscl.EventTriggerConfiguration_trigger_set) - parameters = property(_mscl.EventTriggerConfiguration_parameters_get, _mscl.EventTriggerConfiguration_parameters_set) - - def __init__(self): - _mscl.EventTriggerConfiguration_swiginit(self, _mscl.new_EventTriggerConfiguration()) - __swig_destroy__ = _mscl.delete_EventTriggerConfiguration - -# Register EventTriggerConfiguration in _mscl: -_mscl.EventTriggerConfiguration_swigregister(EventTriggerConfiguration) - -class EventActionGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventActionGpioParameter_DISABLED - ACTIVE_HIGH = _mscl.EventActionGpioParameter_ACTIVE_HIGH - ACTIVE_LOW = _mscl.EventActionGpioParameter_ACTIVE_LOW - ONESHOT_HIGH = _mscl.EventActionGpioParameter_ONESHOT_HIGH - ONESHOT_LOW = _mscl.EventActionGpioParameter_ONESHOT_LOW - TOGGLE = _mscl.EventActionGpioParameter_TOGGLE - pin = property(_mscl.EventActionGpioParameter_pin_get, _mscl.EventActionGpioParameter_pin_set) - mode = property(_mscl.EventActionGpioParameter_mode_get, _mscl.EventActionGpioParameter_mode_set) - - def __init__(self): - _mscl.EventActionGpioParameter_swiginit(self, _mscl.new_EventActionGpioParameter()) - __swig_destroy__ = _mscl.delete_EventActionGpioParameter - -# Register EventActionGpioParameter in _mscl: -_mscl.EventActionGpioParameter_swigregister(EventActionGpioParameter) - -class EventActionMessageParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_DESCRIPTORS = _mscl.EventActionMessageParameter_MAX_DESCRIPTORS - sampleRate = property(_mscl.EventActionMessageParameter_sampleRate_get, _mscl.EventActionMessageParameter_sampleRate_set) - - def dataClass(self): - return _mscl.EventActionMessageParameter_dataClass(self) - - def setChannelFields(self, dataClass, fields): - return _mscl.EventActionMessageParameter_setChannelFields(self, dataClass, fields) - - def getChannelFields(self): - return _mscl.EventActionMessageParameter_getChannelFields(self) - - def __init__(self): - _mscl.EventActionMessageParameter_swiginit(self, _mscl.new_EventActionMessageParameter()) - __swig_destroy__ = _mscl.delete_EventActionMessageParameter - -# Register EventActionMessageParameter in _mscl: -_mscl.EventActionMessageParameter_swigregister(EventActionMessageParameter) - -class EventActionParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventActionParameters_swiginit(self, _mscl.new_EventActionParameters()) - gpio = property(_mscl.EventActionParameters_gpio_get, _mscl.EventActionParameters_gpio_set) - message = property(_mscl.EventActionParameters_message_get, _mscl.EventActionParameters_message_set) - __swig_destroy__ = _mscl.delete_EventActionParameters - -# Register EventActionParameters in _mscl: -_mscl.EventActionParameters_swigregister(EventActionParameters) - -class EventActionConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventActionConfiguration_NONE - GPIO = _mscl.EventActionConfiguration_GPIO - MESSAGE = _mscl.EventActionConfiguration_MESSAGE - instance = property(_mscl.EventActionConfiguration_instance_get, _mscl.EventActionConfiguration_instance_set) - trigger = property(_mscl.EventActionConfiguration_trigger_get, _mscl.EventActionConfiguration_trigger_set) - type = property(_mscl.EventActionConfiguration_type_get, _mscl.EventActionConfiguration_type_set) - parameters = property(_mscl.EventActionConfiguration_parameters_get, _mscl.EventActionConfiguration_parameters_set) - - def __init__(self): - _mscl.EventActionConfiguration_swiginit(self, _mscl.new_EventActionConfiguration()) - __swig_destroy__ = _mscl.delete_EventActionConfiguration - -# Register EventActionConfiguration in _mscl: -_mscl.EventActionConfiguration_swigregister(EventActionConfiguration) - -class EventTriggerInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTriggerInfo_swiginit(self, _mscl.new_EventTriggerInfo(*args)) - ACTIVE = _mscl.EventTriggerInfo_ACTIVE - ENABLED = _mscl.EventTriggerInfo_ENABLED - TEST = _mscl.EventTriggerInfo_TEST - type = property(_mscl.EventTriggerInfo_type_get, _mscl.EventTriggerInfo_type_set) - instanceId = property(_mscl.EventTriggerInfo_instanceId_get, _mscl.EventTriggerInfo_instanceId_set) - - def isActive(self): - return _mscl.EventTriggerInfo_isActive(self) - - def isEnabled(self): - return _mscl.EventTriggerInfo_isEnabled(self) - - def isTestMode(self): - return _mscl.EventTriggerInfo_isTestMode(self) - - def setStatus(self, value): - return _mscl.EventTriggerInfo_setStatus(self, value) - __swig_destroy__ = _mscl.delete_EventTriggerInfo - -# Register EventTriggerInfo in _mscl: -_mscl.EventTriggerInfo_swigregister(EventTriggerInfo) - -class EventActionInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventActionInfo_swiginit(self, _mscl.new_EventActionInfo(*args)) - type = property(_mscl.EventActionInfo_type_get, _mscl.EventActionInfo_type_set) - triggerId = property(_mscl.EventActionInfo_triggerId_get, _mscl.EventActionInfo_triggerId_set) - instanceId = property(_mscl.EventActionInfo_instanceId_get, _mscl.EventActionInfo_instanceId_set) - __swig_destroy__ = _mscl.delete_EventActionInfo - -# Register EventActionInfo in _mscl: -_mscl.EventActionInfo_swigregister(EventActionInfo) - -class MeasurementReferenceFrame(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MeasurementReferenceFrame_swiginit(self, _mscl.new_MeasurementReferenceFrame(*args)) - - def asMipFieldValues(self): - return _mscl.MeasurementReferenceFrame_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.MeasurementReferenceFrame_appendMipFieldValues(self, appendTo) - - def translation(self, *args): - return _mscl.MeasurementReferenceFrame_translation(self, *args) - - def rotation(self, *args): - return _mscl.MeasurementReferenceFrame_rotation(self, *args) - - def errorTrackingEnabled(self): - return _mscl.MeasurementReferenceFrame_errorTrackingEnabled(self) - - def enableErrorTracking(self, enable=True): - return _mscl.MeasurementReferenceFrame_enableErrorTracking(self, enable) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrame - -# Register MeasurementReferenceFrame in _mscl: -_mscl.MeasurementReferenceFrame_swigregister(MeasurementReferenceFrame) - -class MipChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipChannel_swiginit(self, _mscl.new_MipChannel(*args)) - - def channelField(self): - return _mscl.MipChannel_channelField(self) - - def sampleRate(self): - return _mscl.MipChannel_sampleRate(self) - - def rateDecimation(self, sampleRateBase): - return _mscl.MipChannel_rateDecimation(self, sampleRateBase) - __swig_destroy__ = _mscl.delete_MipChannel - -# Register MipChannel in _mscl: -_mscl.MipChannel_swigregister(MipChannel) - -class MipPacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MIP_ACK_NACK_ERROR_NONE = _mscl.MipPacket_MIP_ACK_NACK_ERROR_NONE - MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND - MIP_ACK_NACK_ERROR_CHECKSUM_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_CHECKSUM_INVALID - MIP_ACK_NACK_ERROR_PARAMETER_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_PARAMETER_INVALID - MIP_ACK_NACK_ERROR_COMMAND_FAILED = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_FAILED - MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT - MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET - - def __init__(self): - _mscl.MipPacket_swiginit(self, _mscl.new_MipPacket()) - - @staticmethod - def isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - - def descriptorSet(self): - return _mscl.MipPacket_descriptorSet(self) - - def payload(self): - return _mscl.MipPacket_payload(self) - __swig_destroy__ = _mscl.delete_MipPacket - -# Register MipPacket in _mscl: -_mscl.MipPacket_swigregister(MipPacket) - -def MipPacket_isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - -class MipDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def field(self): - return _mscl.MipDataPoint_field(self) - - def qualifier(self): - return _mscl.MipDataPoint_qualifier(self) - - def hasAddlIdentifiers(self): - return _mscl.MipDataPoint_hasAddlIdentifiers(self) - - def addlIdentifiers(self): - return _mscl.MipDataPoint_addlIdentifiers(self) - - def hasValidFlag(self): - return _mscl.MipDataPoint_hasValidFlag(self) - - def valid(self): - return _mscl.MipDataPoint_valid(self) - - def channelName(self, includeAddlIds=True, consolidatedFormat=False): - return _mscl.MipDataPoint_channelName(self, includeAddlIds, consolidatedFormat) - __swig_destroy__ = _mscl.delete_MipDataPoint - -# Register MipDataPoint in _mscl: -_mscl.MipDataPoint_swigregister(MipDataPoint) - -class ContinuousBIT(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def as_MipDataPoints(self): - return _mscl.ContinuousBIT_as_MipDataPoints(self) - - @staticmethod - def getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - - def data(self): - return _mscl.ContinuousBIT_data(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_bufferOverrun(self) - - def imuClockFault(self): - return _mscl.ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_pressureSelfTestFail(self) - - def filterTimingOverrun(self): - return _mscl.ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.ContinuousBIT_filterTimingUnderrun(self) - -# Register ContinuousBIT in _mscl: -_mscl.ContinuousBIT_swigregister(ContinuousBIT) - -def ContinuousBIT_getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - -class ContinuousBIT_System_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - SYSTEM_CLOCK_FAILURE = _mscl.ContinuousBIT_System_General_SYSTEM_CLOCK_FAILURE - POWER_FAULT = _mscl.ContinuousBIT_System_General_POWER_FAULT - FIRMWARE_FAULT = _mscl.ContinuousBIT_System_General_FIRMWARE_FAULT - TIMING_OVERLOAD = _mscl.ContinuousBIT_System_General_TIMING_OVERLOAD - BUFFER_OVERRUN = _mscl.ContinuousBIT_System_General_BUFFER_OVERRUN - - def flags(self): - return _mscl.ContinuousBIT_System_General_flags(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_System_General_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_System_General_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_System_General_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_System_General_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_System_General_bufferOverrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_General - -# Register ContinuousBIT_System_General in _mscl: -_mscl.ContinuousBIT_System_General_swigregister(ContinuousBIT_System_General) - -class ContinuousBIT_System_Process(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def flags(self): - return _mscl.ContinuousBIT_System_Process_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_Process - -# Register ContinuousBIT_System_Process in _mscl: -_mscl.ContinuousBIT_System_Process_swigregister(ContinuousBIT_System_Process) - -class ContinuousBIT_System(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_System_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_System_GENERAL_FLAGS - PROCESS_FLAGS = _mscl.ContinuousBIT_System_PROCESS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_System_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System - -# Register ContinuousBIT_System in _mscl: -_mscl.ContinuousBIT_System_swigregister(ContinuousBIT_System) - -class ContinuousBIT_IMU_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - CLOCK_FAULT = _mscl.ContinuousBIT_IMU_General_CLOCK_FAULT - COMMUNICATION_FAULT = _mscl.ContinuousBIT_IMU_General_COMMUNICATION_FAULT - TIMING_OVERRUN = _mscl.ContinuousBIT_IMU_General_TIMING_OVERRUN - CALIBRATION_ERROR_ACCEL = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_ACCEL - CALIBRATION_ERROR_GYRO = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_GYRO - CALIBRATION_ERROR_MAG = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_MAG - - def flags(self): - return _mscl.ContinuousBIT_IMU_General_flags(self) - - def clockFault(self): - return _mscl.ContinuousBIT_IMU_General_clockFault(self) - - def communicationFault(self): - return _mscl.ContinuousBIT_IMU_General_communicationFault(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_IMU_General_timingOverrun(self) - - def calibrationErrorAccel(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorAccel(self) - - def calibrationErrorGyro(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorGyro(self) - - def calibrationErrorMag(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorMag(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_General - -# Register ContinuousBIT_IMU_General in _mscl: -_mscl.ContinuousBIT_IMU_General_swigregister(ContinuousBIT_IMU_General) - -class ContinuousBIT_IMU_Sensors(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - ACCEL_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_GENERAL_FAULT - ACCEL_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_OVERRANGE - ACCEL_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_SELF_TEST_FAIL - GYRO_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_GYRO_GENERAL_FAULT - GYRO_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_GYRO_OVERRANGE - GYRO_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_GYRO_SELF_TEST_FAIL - MAG_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_MAG_GENERAL_FAULT - MAG_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_MAG_OVERRANGE - MAG_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_MAG_SELF_TEST_FAIL - PRESSURE_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_GENERAL_FAULT - PRESSURE_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_OVERRANGE - PRESSURE_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_SELF_TEST_FAIL - - def flags(self): - return _mscl.ContinuousBIT_IMU_Sensors_flags(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureSelfTestFail(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_Sensors - -# Register ContinuousBIT_IMU_Sensors in _mscl: -_mscl.ContinuousBIT_IMU_Sensors_swigregister(ContinuousBIT_IMU_Sensors) - -class ContinuousBIT_IMU(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_IMU_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_IMU_GENERAL_FLAGS - SENSORS_FLAGS = _mscl.ContinuousBIT_IMU_SENSORS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_IMU_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU - -# Register ContinuousBIT_IMU in _mscl: -_mscl.ContinuousBIT_IMU_swigregister(ContinuousBIT_IMU) - -class ContinuousBIT_Filter_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - TIMING_OVERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_OVERRUN - TIMING_UNDERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_UNDERRUN - - def flags(self): - return _mscl.ContinuousBIT_Filter_General_flags(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_Filter_General_timingOverrun(self) - - def timingUnderrun(self): - return _mscl.ContinuousBIT_Filter_General_timingUnderrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter_General - -# Register ContinuousBIT_Filter_General in _mscl: -_mscl.ContinuousBIT_Filter_General_swigregister(ContinuousBIT_Filter_General) - -class ContinuousBIT_Filter(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_Filter_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_Filter_GENERAL_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_Filter_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter - -# Register ContinuousBIT_Filter in _mscl: -_mscl.ContinuousBIT_Filter_swigregister(ContinuousBIT_Filter) - -class CV7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_General_swiginit(self, _mscl.new_CV7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_General - -# Register CV7ContinuousBIT_System_General in _mscl: -_mscl.CV7ContinuousBIT_System_General_swigregister(CV7ContinuousBIT_System_General) - -class CV7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_Process_swiginit(self, _mscl.new_CV7ContinuousBIT_System_Process(*args)) - IMU_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_IMU_PROCESS_FAULT - IMU_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_IMU_RATE_MISMATCH - IMU_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_IMU_DROPPED_DATA - IMU_STUCK = _mscl.CV7ContinuousBIT_System_Process_IMU_STUCK - FILTER_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_FILTER_PROCESS_FAULT - FILTER_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_FILTER_DROPPED_DATA - FILTER_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_FILTER_RATE_MISMATCH - FILTER_STUCK = _mscl.CV7ContinuousBIT_System_Process_FILTER_STUCK - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_filterStuck(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_Process - -# Register CV7ContinuousBIT_System_Process in _mscl: -_mscl.CV7ContinuousBIT_System_Process_swigregister(CV7ContinuousBIT_System_Process) - -class CV7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_swiginit(self, _mscl.new_CV7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.CV7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System - -# Register CV7ContinuousBIT_System in _mscl: -_mscl.CV7ContinuousBIT_System_swigregister(CV7ContinuousBIT_System) - -class CV7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_General - -# Register CV7ContinuousBIT_IMU_General in _mscl: -_mscl.CV7ContinuousBIT_IMU_General_swigregister(CV7ContinuousBIT_IMU_General) - -class CV7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_Sensors - -# Register CV7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.CV7ContinuousBIT_IMU_Sensors_swigregister(CV7ContinuousBIT_IMU_Sensors) - -class CV7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU(*args)) - FACTORY_BITS_INVALID = _mscl.CV7ContinuousBIT_IMU_FACTORY_BITS_INVALID - - def general(self): - return _mscl.CV7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.CV7ContinuousBIT_IMU_sensors(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_IMU_factoryBitsInvalid(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU - -# Register CV7ContinuousBIT_IMU in _mscl: -_mscl.CV7ContinuousBIT_IMU_swigregister(CV7ContinuousBIT_IMU) - -class CV7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter_General(*args)) - FAULT = _mscl.CV7ContinuousBIT_Filter_General_FAULT - - def fault(self): - return _mscl.CV7ContinuousBIT_Filter_General_fault(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter_General - -# Register CV7ContinuousBIT_Filter_General in _mscl: -_mscl.CV7ContinuousBIT_Filter_General_swigregister(CV7ContinuousBIT_Filter_General) - -class CV7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter - -# Register CV7ContinuousBIT_Filter in _mscl: -_mscl.CV7ContinuousBIT_Filter_swigregister(CV7ContinuousBIT_Filter) - -class CV7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.CV7ContinuousBIT_swiginit(self, _mscl.new_CV7ContinuousBIT(bytes)) - - def system(self): - return _mscl.CV7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.CV7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.CV7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.CV7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.CV7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.CV7ContinuousBIT_bufferOverrun(self) - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_filterStuck(self) - - def imu(self): - return _mscl.CV7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.CV7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.CV7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.CV7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.CV7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.CV7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.CV7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.CV7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.CV7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.CV7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.CV7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.CV7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.CV7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.CV7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.CV7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.CV7ContinuousBIT_pressureSelfTestFail(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_factoryBitsInvalid(self) - - def filter(self): - return _mscl.CV7ContinuousBIT_filter(self) - - def filterFault(self): - return _mscl.CV7ContinuousBIT_filterFault(self) - - def filterTimingOverrun(self): - return _mscl.CV7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.CV7ContinuousBIT_filterTimingUnderrun(self) - - def as_MipDataPoints(self): - return _mscl.CV7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT - -# Register CV7ContinuousBIT in _mscl: -_mscl.CV7ContinuousBIT_swigregister(CV7ContinuousBIT) - -class GQ7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_General - -# Register GQ7ContinuousBIT_System_General in _mscl: -_mscl.GQ7ContinuousBIT_System_General_swigregister(GQ7ContinuousBIT_System_General) - -class GQ7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_Process_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_Process(*args)) - IMU_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_CONTROL_LINE_FAULT - IMU_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_COMMAND_RESPONSE_FAULT - IMU_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_SPI_TRANSFER_FAULT - IMU_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_DATA_FRAME_FAULT - FILTER_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_CONTROL_LINE_FAULT - FILTER_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_COMMAND_RESPONSE_FAULT - FILTER_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_SPI_TRANSFER_FAULT - FILTER_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_DATA_FRAME_FAULT - GNSS_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_CONTROL_LINE_FAULT - GNSS_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_COMMAND_RESPONSE_FAULT - GNSS_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_SPI_TRANSFER_FAULT - GNSS_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_DATA_FRAME_FAULT - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssDataFrameFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_Process - -# Register GQ7ContinuousBIT_System_Process in _mscl: -_mscl.GQ7ContinuousBIT_System_Process_swigregister(GQ7ContinuousBIT_System_Process) - -class GQ7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_swiginit(self, _mscl.new_GQ7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.GQ7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System - -# Register GQ7ContinuousBIT_System in _mscl: -_mscl.GQ7ContinuousBIT_System_swigregister(GQ7ContinuousBIT_System) - -class GQ7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_General - -# Register GQ7ContinuousBIT_IMU_General in _mscl: -_mscl.GQ7ContinuousBIT_IMU_General_swigregister(GQ7ContinuousBIT_IMU_General) - -class GQ7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_Sensors - -# Register GQ7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.GQ7ContinuousBIT_IMU_Sensors_swigregister(GQ7ContinuousBIT_IMU_Sensors) - -class GQ7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.GQ7ContinuousBIT_IMU_sensors(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU - -# Register GQ7ContinuousBIT_IMU in _mscl: -_mscl.GQ7ContinuousBIT_IMU_swigregister(GQ7ContinuousBIT_IMU) - -class GQ7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_HARDWARE_FAULT - COMMUNICATION_ERROR_IMU_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_IMU_SPI - COMMUNICATION_ERROR_GNSS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_GNSS_SPI - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_COMMS_UART = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_UART - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationError(self) - - def communicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorImuSpi(self) - - def communicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorGnssSpi(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsSpi(self) - - def communicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsUart(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter_General - -# Register GQ7ContinuousBIT_Filter_General in _mscl: -_mscl.GQ7ContinuousBIT_Filter_General_swigregister(GQ7ContinuousBIT_Filter_General) - -class GQ7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter - -# Register GQ7ContinuousBIT_Filter in _mscl: -_mscl.GQ7ContinuousBIT_Filter_swigregister(GQ7ContinuousBIT_Filter) - -class GQ7ContinuousBIT_GNSS_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_HARDWARE_FAULT - COMMUNICATION_ERROR_COMMS_SERIAL = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SERIAL - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_NAV_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_NAV_SPI - GPS_TIME_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_GPS_TIME_FAULT - TIMING_OVERRUN = _mscl.GQ7ContinuousBIT_GNSS_General_TIMING_OVERRUN - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_flags(self) - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationError(self) - - def communicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSerial(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSpi(self) - - def communicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_gpsTimeFault(self) - - def timingOverrun(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_timingOverrun(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_General - -# Register GQ7ContinuousBIT_GNSS_General in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_General_swigregister(GQ7ContinuousBIT_GNSS_General) - -class GQ7ContinuousBIT_GNSS_Receivers(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_Receivers_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_Receivers(*args)) - POWER_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_1 - FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_1 - SHORTED_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_1 - OPEN_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_1 - SOLUTION_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_1 - POWER_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_2 - FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_2 - SHORTED_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_2 - OPEN_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_2 - SOLUTION_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_2 - RTCM_COMMUNICATION_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTCM_COMMUNICATION_FAULT - RTK_DONGLE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTK_DONGLE_FAULT - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_flags(self) - - def powerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver1(self) - - def faultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver1(self) - - def shortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna1(self) - - def openAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna1(self) - - def solutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver1(self) - - def powerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver2(self) - - def faultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver2(self) - - def shortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna2(self) - - def openAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna2(self) - - def solutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtkDongleFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_Receivers - -# Register GQ7ContinuousBIT_GNSS_Receivers in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_Receivers_swigregister(GQ7ContinuousBIT_GNSS_Receivers) - -class GQ7ContinuousBIT_GNSS(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS(*args)) - RESPONSE_OFFSET = _mscl.GQ7ContinuousBIT_GNSS_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_GENERAL_FLAGS - RECEIVERS_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_RECEIVERS_FLAGS - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_flags(self) - - def general(self): - return _mscl.GQ7ContinuousBIT_GNSS_general(self) - - def receivers(self): - return _mscl.GQ7ContinuousBIT_GNSS_receivers(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS - -# Register GQ7ContinuousBIT_GNSS in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_swigregister(GQ7ContinuousBIT_GNSS) - -class GQ7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.GQ7ContinuousBIT_swiginit(self, _mscl.new_GQ7ContinuousBIT(bytes)) - - def system(self): - return _mscl.GQ7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.GQ7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.GQ7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.GQ7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.GQ7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.GQ7ContinuousBIT_bufferOverrun(self) - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_gnssDataFrameFault(self) - - def imu(self): - return _mscl.GQ7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.GQ7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.GQ7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.GQ7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.GQ7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.GQ7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.GQ7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.GQ7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.GQ7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.GQ7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_pressureSelfTestFail(self) - - def filter(self): - return _mscl.GQ7ContinuousBIT_filter(self) - - def filterClockFault(self): - return _mscl.GQ7ContinuousBIT_filterClockFault(self) - - def filterHardwareFault(self): - return _mscl.GQ7ContinuousBIT_filterHardwareFault(self) - - def filterTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingUnderrun(self) - - def filterCommunicationError(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationError(self) - - def filterCommunicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorImuSpi(self) - - def filterCommunicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorGnssSpi(self) - - def filterCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsSpi(self) - - def filterCommunicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsUart(self) - - def gnss(self): - return _mscl.GQ7ContinuousBIT_gnss(self) - - def gnssClockFault(self): - return _mscl.GQ7ContinuousBIT_gnssClockFault(self) - - def gnssHardwareFault(self): - return _mscl.GQ7ContinuousBIT_gnssHardwareFault(self) - - def gnssCommunicationError(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationError(self) - - def gnssCommunicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSerial(self) - - def gnssCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSpi(self) - - def gnssCommunicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_gpsTimeFault(self) - - def gnssTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_gnssTimingOverrun(self) - - def gnssPowerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver1(self) - - def gnssFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver1(self) - - def gnssShortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna1(self) - - def gnssOpenAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna1(self) - - def gnssSolutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver1(self) - - def gnssPowerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver2(self) - - def gnssFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver2(self) - - def gnssShortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna2(self) - - def gnssOpenAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna2(self) - - def gnssSolutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_rtkDongleFault(self) - - def as_MipDataPoints(self): - return _mscl.GQ7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT - -# Register GQ7ContinuousBIT in _mscl: -_mscl.GQ7ContinuousBIT_swigregister(GQ7ContinuousBIT) - -class MipSharedDataFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EVENT_SOURCE_NONE = _mscl.MipSharedDataFields_EVENT_SOURCE_NONE - EVENT_SOURCE_UNKNOWN = _mscl.MipSharedDataFields_EVENT_SOURCE_UNKNOWN - - def __init__(self): - _mscl.MipSharedDataFields_swiginit(self, _mscl.new_MipSharedDataFields()) - - def hasEventSource(self): - return _mscl.MipSharedDataFields_hasEventSource(self) - - def eventSource(self): - return _mscl.MipSharedDataFields_eventSource(self) - - def hasTicks(self): - return _mscl.MipSharedDataFields_hasTicks(self) - - def ticks(self): - return _mscl.MipSharedDataFields_ticks(self) - - def hasDeltaTicks(self): - return _mscl.MipSharedDataFields_hasDeltaTicks(self) - - def deltaTicks(self): - return _mscl.MipSharedDataFields_deltaTicks(self) - - def hasGpsTimestamp(self): - return _mscl.MipSharedDataFields_hasGpsTimestamp(self) - - def gpsTimestamp(self): - return _mscl.MipSharedDataFields_gpsTimestamp(self) - - def gpsTimestampValid(self): - return _mscl.MipSharedDataFields_gpsTimestampValid(self) - - def hasDeltaTime(self): - return _mscl.MipSharedDataFields_hasDeltaTime(self) - - def deltaTime(self): - return _mscl.MipSharedDataFields_deltaTime(self) - - def hasReferenceTime(self): - return _mscl.MipSharedDataFields_hasReferenceTime(self) - - def referenceTime(self): - return _mscl.MipSharedDataFields_referenceTime(self) - - def hasDeltaReferenceTime(self): - return _mscl.MipSharedDataFields_hasDeltaReferenceTime(self) - - def deltaReferenceTime(self): - return _mscl.MipSharedDataFields_deltaReferenceTime(self) - - def hasExternalTimestamp(self): - return _mscl.MipSharedDataFields_hasExternalTimestamp(self) - - def externalTimestamp(self): - return _mscl.MipSharedDataFields_externalTimestamp(self) - - def externalTimestampValid(self): - return _mscl.MipSharedDataFields_externalTimestampValid(self) - - def hasDeltaExternalTime(self): - return _mscl.MipSharedDataFields_hasDeltaExternalTime(self) - - def deltaExternalTime(self): - return _mscl.MipSharedDataFields_deltaExternalTime(self) - - def deltaExternalTimeValid(self): - return _mscl.MipSharedDataFields_deltaExternalTimeValid(self) - - def get(self, *args): - return _mscl.MipSharedDataFields_get(self, *args) - __swig_destroy__ = _mscl.delete_MipSharedDataFields - -# Register MipSharedDataFields in _mscl: -_mscl.MipSharedDataFields_swigregister(MipSharedDataFields) - -class MipDataPacket(MipPacket): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipDataPacket_swiginit(self, _mscl.new_MipDataPacket(*args)) - - def data(self): - return _mscl.MipDataPacket_data(self) - - def shared(self): - return _mscl.MipDataPacket_shared(self) - - def collectedTimestamp(self): - return _mscl.MipDataPacket_collectedTimestamp(self) - - def deviceTimestamp(self): - return _mscl.MipDataPacket_deviceTimestamp(self) - - def hasDeviceTime(self): - return _mscl.MipDataPacket_hasDeviceTime(self) - - def deviceTimeValid(self): - return _mscl.MipDataPacket_deviceTimeValid(self) - - def deviceTimeFlags(self): - return _mscl.MipDataPacket_deviceTimeFlags(self) - __swig_destroy__ = _mscl.delete_MipDataPacket - -# Register MipDataPacket in _mscl: -_mscl.MipDataPacket_swigregister(MipDataPacket) - -class RawBytePacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INVALID_PACKET = _mscl.RawBytePacket_INVALID_PACKET - DATA_PACKET = _mscl.RawBytePacket_DATA_PACKET - COMMAND_PACKET = _mscl.RawBytePacket_COMMAND_PACKET - NO_PACKET_FOUND = _mscl.RawBytePacket_NO_PACKET_FOUND - FROM_READ = _mscl.RawBytePacket_FROM_READ - FROM_SEND = _mscl.RawBytePacket_FROM_SEND - - def __init__(self): - _mscl.RawBytePacket_swiginit(self, _mscl.new_RawBytePacket()) - - def type(self, *args): - return _mscl.RawBytePacket_type(self, *args) - - def source(self, *args): - return _mscl.RawBytePacket_source(self, *args) - - def payload(self, *args): - return _mscl.RawBytePacket_payload(self, *args) - __swig_destroy__ = _mscl.delete_RawBytePacket - -# Register RawBytePacket in _mscl: -_mscl.RawBytePacket_swigregister(RawBytePacket) - -class MipNodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_MipNodeFeatures - - @staticmethod - def isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - - def supportsCategory(self, dataClass): - return _mscl.MipNodeFeatures_supportsCategory(self, dataClass) - - def supportsCommand(self, commandId): - return _mscl.MipNodeFeatures_supportsCommand(self, commandId) - - def supportedCommands(self): - return _mscl.MipNodeFeatures_supportedCommands(self) - - def supportsChannelField(self, fieldId): - return _mscl.MipNodeFeatures_supportsChannelField(self, fieldId) - - def filterSupportedChannelFields(self, fields): - return _mscl.MipNodeFeatures_filterSupportedChannelFields(self, fields) - - def supportedChannelFields(self, *args): - return _mscl.MipNodeFeatures_supportedChannelFields(self, *args) - - def supportedSampleRates(self, dataClass): - return _mscl.MipNodeFeatures_supportedSampleRates(self, dataClass) - - def baseDataRate(self, dataClass): - return _mscl.MipNodeFeatures_baseDataRate(self, dataClass) - - def gnssReceiverInfo(self): - return _mscl.MipNodeFeatures_gnssReceiverInfo(self) - - def supportedGnssSources(self): - return _mscl.MipNodeFeatures_supportedGnssSources(self) - - def supportedSensorRanges(self, *args): - return _mscl.MipNodeFeatures_supportedSensorRanges(self, *args) - - def getCommPortInfo(self): - return _mscl.MipNodeFeatures_getCommPortInfo(self) - - def useLegacyIdsForEnableDataStream(self): - return _mscl.MipNodeFeatures_useLegacyIdsForEnableDataStream(self) - - def supportedHeadingUpdateOptions(self): - return _mscl.MipNodeFeatures_supportedHeadingUpdateOptions(self) - - def supportedHeadingAlignmentMethods(self): - return _mscl.MipNodeFeatures_supportedHeadingAlignmentMethods(self) - - def supportedStatusSelectors(self): - return _mscl.MipNodeFeatures_supportedStatusSelectors(self) - - def supportedEstimationControlOptions(self): - return _mscl.MipNodeFeatures_supportedEstimationControlOptions(self) - - def supportedVehicleModeTypes(self): - return _mscl.MipNodeFeatures_supportedVehicleModeTypes(self) - - def supportedAdaptiveMeasurementModes(self): - return _mscl.MipNodeFeatures_supportedAdaptiveMeasurementModes(self) - - def supportedAdaptiveFilterLevels(self): - return _mscl.MipNodeFeatures_supportedAdaptiveFilterLevels(self) - - def supportedAidingMeasurementOptions(self): - return _mscl.MipNodeFeatures_supportedAidingMeasurementOptions(self) - - def supportedPpsSourceOptions(self): - return _mscl.MipNodeFeatures_supportedPpsSourceOptions(self) - - def supportedGpioPins(self): - return _mscl.MipNodeFeatures_supportedGpioPins(self) - - def supportedGpioPinModes(self, feature, behavior): - return _mscl.MipNodeFeatures_supportedGpioPinModes(self, feature, behavior) - - def supportedGpioBehaviors(self, feature, pin): - return _mscl.MipNodeFeatures_supportedGpioBehaviors(self, feature, pin) - - def supportedGpioFeatures(self, pin): - return _mscl.MipNodeFeatures_supportedGpioFeatures(self, pin) - - def supportedGpioConfigurations(self): - return _mscl.MipNodeFeatures_supportedGpioConfigurations(self) - - def supportedGnssSignalConfigurations(self): - return _mscl.MipNodeFeatures_supportedGnssSignalConfigurations(self) - - def supportedDeclinationSources(self): - return _mscl.MipNodeFeatures_supportedDeclinationSources(self) - - def supportedInclinationSources(self): - return _mscl.MipNodeFeatures_supportedInclinationSources(self) - - def supportedMagneticMagnitudeSources(self): - return _mscl.MipNodeFeatures_supportedMagneticMagnitudeSources(self) - - def supportedEventThresholdChannels(self): - return _mscl.MipNodeFeatures_supportedEventThresholdChannels(self) - - def supportedEventActionInfo(self): - return _mscl.MipNodeFeatures_supportedEventActionInfo(self) - - def supportedEventTriggerInfo(self): - return _mscl.MipNodeFeatures_supportedEventTriggerInfo(self) - - def supportsNorthCompensation(self): - return _mscl.MipNodeFeatures_supportsNorthCompensation(self) - - def supportedLowPassFilterChannelFields(self): - return _mscl.MipNodeFeatures_supportedLowPassFilterChannelFields(self) - - def maxMeasurementReferenceFrameId(self): - return _mscl.MipNodeFeatures_maxMeasurementReferenceFrameId(self) - -# Register MipNodeFeatures in _mscl: -_mscl.MipNodeFeatures_swigregister(MipNodeFeatures) - -def MipNodeFeatures_isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - -class MipNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.MipNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - def getConfigCommandBytes(self): - return _mscl.MipNode_getConfigCommandBytes(self) - - def sendCommandBytes(self, *args): - return _mscl.MipNode_sendCommandBytes(self, *args) - - @staticmethod - def deviceName(serial): - return _mscl.MipNode_deviceName(serial) - - def connection(self): - return _mscl.MipNode_connection(self) - - def features(self): - return _mscl.MipNode_features(self) - - def clearDeviceInfo(self): - return _mscl.MipNode_clearDeviceInfo(self) - - def lastCommunicationTime(self): - return _mscl.MipNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.MipNode_lastDeviceState(self) - - def setLastDeviceState(self, state): - return _mscl.MipNode_setLastDeviceState(self, state) - - def firmwareVersion(self): - return _mscl.MipNode_firmwareVersion(self) - - def model(self): - return _mscl.MipNode_model(self) - - def modelName(self): - return _mscl.MipNode_modelName(self) - - def modelNumber(self): - return _mscl.MipNode_modelNumber(self) - - def serialNumber(self): - return _mscl.MipNode_serialNumber(self) - - def lotNumber(self): - return _mscl.MipNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.MipNode_deviceOptions(self) - - def timeout(self, *args): - return _mscl.MipNode_timeout(self, *args) - - def name(self): - return _mscl.MipNode_name(self) - - def ping(self): - return _mscl.MipNode_ping(self) - - def setToIdle(self): - return _mscl.MipNode_setToIdle(self) - - def cyclePower(self): - return _mscl.MipNode_cyclePower(self) - - def resume(self): - return _mscl.MipNode_resume(self) - - def getCommunicationMode(self): - return _mscl.MipNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.MipNode_setCommunicationMode(self, communicationMode) - - def saveSettingsAsStartup(self, *args): - return _mscl.MipNode_saveSettingsAsStartup(self, *args) - - def loadStartupSettings(self, *args): - return _mscl.MipNode_loadStartupSettings(self, *args) - - def loadFactoryDefaultSettings(self, *args): - return _mscl.MipNode_loadFactoryDefaultSettings(self, *args) - - def setUARTBaudRate(self, *args): - return _mscl.MipNode_setUARTBaudRate(self, *args) - - def getUARTBaudRate(self, portId=1): - return _mscl.MipNode_getUARTBaudRate(self, portId) - - def getRawBytePackets(self, timeout=0, maxPackets=0): - return _mscl.MipNode_getRawBytePackets(self, timeout, maxPackets) - -# Register MipNode in _mscl: -_mscl.MipNode_swigregister(MipNode) - -def MipNode_deviceName(serial): - return _mscl.MipNode_deviceName(serial) - -class InertialNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.InertialNode_swiginit(self, _mscl.new_InertialNode(connection)) - __swig_destroy__ = _mscl.delete_InertialNode - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.InertialNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.InertialNode_totalPackets(self) - - def pollData(self, *args): - return _mscl.InertialNode_pollData(self, *args) - - def getDataRateBase(self, dataClass): - return _mscl.InertialNode_getDataRateBase(self, dataClass) - - def getActiveChannelFields(self, dataClass): - return _mscl.InertialNode_getActiveChannelFields(self, dataClass) - - def setActiveChannelFields(self, dataClass, channels): - return _mscl.InertialNode_setActiveChannelFields(self, dataClass, channels) - - def saveActiveChannelFields(self, dataClass): - return _mscl.InertialNode_saveActiveChannelFields(self, dataClass) - - def setFactoryStreamingChannels(self, option): - return _mscl.InertialNode_setFactoryStreamingChannels(self, option) - - def getInterfaceControl(self, interfaceId): - return _mscl.InertialNode_getInterfaceControl(self, interfaceId) - - def setInterfaceControl(self, *args): - return _mscl.InertialNode_setInterfaceControl(self, *args) - - def getCommunicationMode(self): - return _mscl.InertialNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.InertialNode_setCommunicationMode(self, communicationMode) - - def isDataStreamEnabled(self, dataClass): - return _mscl.InertialNode_isDataStreamEnabled(self, dataClass) - - def enableDataStream(self, dataClass, enable=True, resumeStreaming=True): - return _mscl.InertialNode_enableDataStream(self, dataClass, enable, resumeStreaming) - - def resetFilter(self): - return _mscl.InertialNode_resetFilter(self) - - def runFilter(self): - return _mscl.InertialNode_runFilter(self) - - def getAutoInitialization(self): - return _mscl.InertialNode_getAutoInitialization(self) - - def setAutoInitialization(self, enable): - return _mscl.InertialNode_setAutoInitialization(self, enable) - - def getAltitudeAid(self): - return _mscl.InertialNode_getAltitudeAid(self) - - def setAltitudeAid(self, enable): - return _mscl.InertialNode_setAltitudeAid(self, enable) - - def getPitchRollAid(self): - return _mscl.InertialNode_getPitchRollAid(self) - - def setPitchRollAid(self, enable): - return _mscl.InertialNode_setPitchRollAid(self, enable) - - def enableVerticalGyroConstraint(self, enable): - return _mscl.InertialNode_enableVerticalGyroConstraint(self, enable) - - def verticalGyroConstraintEnabled(self): - return _mscl.InertialNode_verticalGyroConstraintEnabled(self) - - def enableWheeledVehicleConstraint(self, enable): - return _mscl.InertialNode_enableWheeledVehicleConstraint(self, enable) - - def wheeledVehicleConstraintEnabled(self): - return _mscl.InertialNode_wheeledVehicleConstraintEnabled(self) - - def setVelocityZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setVelocityZUPT(self, ZUPTSettings) - - def getVelocityZUPT(self): - return _mscl.InertialNode_getVelocityZUPT(self) - - def setAngularRateZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setAngularRateZUPT(self, ZUPTSettings) - - def getAngularRateZUPT(self): - return _mscl.InertialNode_getAngularRateZUPT(self) - - def cmdedVelZUPT(self): - return _mscl.InertialNode_cmdedVelZUPT(self) - - def cmdedAngRateZUPT(self): - return _mscl.InertialNode_cmdedAngRateZUPT(self) - - def setInitialAttitude(self, attitude): - return _mscl.InertialNode_setInitialAttitude(self, attitude) - - def setInitialHeading(self, heading): - return _mscl.InertialNode_setInitialHeading(self, heading) - - def getInitialFilterConfiguration(self): - return _mscl.InertialNode_getInitialFilterConfiguration(self) - - def setInitialFilterConfiguration(self, filterConfig): - return _mscl.InertialNode_setInitialFilterConfiguration(self, filterConfig) - - def getSensorToVehicleRotation_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleRotation_eulerAngles(self) - - def setSensorToVehicleRotation_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleRotation_eulerAngles(self, angles) - - def getSensorToVehicleRotation_matrix(self): - return _mscl.InertialNode_getSensorToVehicleRotation_matrix(self) - - def setSensorToVehicleRotation_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleRotation_matrix(self, dcm) - - def getSensorToVehicleRotation_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleRotation_quaternion(self) - - def setSensorToVehicleRotation_quaternion(self, rotation): - return _mscl.InertialNode_setSensorToVehicleRotation_quaternion(self, rotation) - - def getSensorToVehicleTransform_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleTransform_eulerAngles(self) - - def setSensorToVehicleTransform_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleTransform_eulerAngles(self, angles) - - def getSensorToVehicleTransform_matrix(self): - return _mscl.InertialNode_getSensorToVehicleTransform_matrix(self) - - def setSensorToVehicleTransform_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleTransform_matrix(self, dcm) - - def getSensorToVehicleTransform_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleTransform_quaternion(self) - - def setSensorToVehicleTransform_quaternion(self, transformation): - return _mscl.InertialNode_setSensorToVehicleTransform_quaternion(self, transformation) - - def getSensorToVehicleOffset(self): - return _mscl.InertialNode_getSensorToVehicleOffset(self) - - def setSensorToVehicleOffset(self, offset): - return _mscl.InertialNode_setSensorToVehicleOffset(self, offset) - - def getAntennaOffset(self): - return _mscl.InertialNode_getAntennaOffset(self) - - def setAntennaOffset(self, offset): - return _mscl.InertialNode_setAntennaOffset(self, offset) - - def getGNSSAssistedFixControl(self): - return _mscl.InertialNode_getGNSSAssistedFixControl(self) - - def setGNSSAssistedFixControl(self, enableAssistedFix): - return _mscl.InertialNode_setGNSSAssistedFixControl(self, enableAssistedFix) - - def getGNSSAssistTimeUpdate(self): - return _mscl.InertialNode_getGNSSAssistTimeUpdate(self) - - def setGNSSAssistTimeUpdate(self, timeUpdate): - return _mscl.InertialNode_setGNSSAssistTimeUpdate(self, timeUpdate) - - def getGPSTimeUpdate(self, timeFrame): - return _mscl.InertialNode_getGPSTimeUpdate(self, timeFrame) - - def setGPSTimeUpdate(self, arg2, timeData): - return _mscl.InertialNode_setGPSTimeUpdate(self, arg2, timeData) - - def setConstellationSettings(self, dataToUse): - return _mscl.InertialNode_setConstellationSettings(self, dataToUse) - - def getConstellationSettings(self): - return _mscl.InertialNode_getConstellationSettings(self) - - def setSBASSettings(self, dataToUse): - return _mscl.InertialNode_setSBASSettings(self, dataToUse) - - def getSBASSettings(self): - return _mscl.InertialNode_getSBASSettings(self) - - def setAccelerometerBias(self, biasVector): - return _mscl.InertialNode_setAccelerometerBias(self, biasVector) - - def getAccelerometerBias(self): - return _mscl.InertialNode_getAccelerometerBias(self) - - def setGyroBias(self, biasVector): - return _mscl.InertialNode_setGyroBias(self, biasVector) - - def getGyroBias(self): - return _mscl.InertialNode_getGyroBias(self) - - def captureGyroBias(self, samplingTime): - return _mscl.InertialNode_captureGyroBias(self, samplingTime) - - def findMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_findMagnetometerCaptureAutoCalibration(self) - - def saveMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_saveMagnetometerCaptureAutoCalibration(self) - - def setMagnetometerSoftIronMatrix(self, matrix): - return _mscl.InertialNode_setMagnetometerSoftIronMatrix(self, matrix) - - def getMagnetometerSoftIronMatrix(self): - return _mscl.InertialNode_getMagnetometerSoftIronMatrix(self) - - def setMagnetometerHardIronOffset(self, offsetVector): - return _mscl.InertialNode_setMagnetometerHardIronOffset(self, offsetVector) - - def getMagnetometerHardIronOffset(self): - return _mscl.InertialNode_getMagnetometerHardIronOffset(self) - - def setConingAndScullingEnable(self, enable): - return _mscl.InertialNode_setConingAndScullingEnable(self, enable) - - def getConingAndScullingEnable(self): - return _mscl.InertialNode_getConingAndScullingEnable(self) - - def setLowPassFilterSettings(self, data): - return _mscl.InertialNode_setLowPassFilterSettings(self, data) - - def getLowPassFilterSettings(self, dataDescriptors): - return _mscl.InertialNode_getLowPassFilterSettings(self, dataDescriptors) - - def setComplementaryFilterSettings(self, data): - return _mscl.InertialNode_setComplementaryFilterSettings(self, data) - - def getComplementaryFilterSettings(self): - return _mscl.InertialNode_getComplementaryFilterSettings(self) - - def getBasicDeviceStatus(self): - return _mscl.InertialNode_getBasicDeviceStatus(self) - - def getDiagnosticDeviceStatus(self): - return _mscl.InertialNode_getDiagnosticDeviceStatus(self) - - def sendRawRTCM_2_3Message(self, theMessage): - return _mscl.InertialNode_sendRawRTCM_2_3Message(self, theMessage) - - def setVehicleDynamicsMode(self, mode): - return _mscl.InertialNode_setVehicleDynamicsMode(self, mode) - - def getVehicleDynamicsMode(self): - return _mscl.InertialNode_getVehicleDynamicsMode(self) - - def setEstimationControlFlags(self, flags): - return _mscl.InertialNode_setEstimationControlFlags(self, flags) - - def getEstimationControlFlags(self): - return _mscl.InertialNode_getEstimationControlFlags(self) - - def setInclinationSource(self, options): - return _mscl.InertialNode_setInclinationSource(self, options) - - def getInclinationSource(self): - return _mscl.InertialNode_getInclinationSource(self) - - def setDeclinationSource(self, options): - return _mscl.InertialNode_setDeclinationSource(self, options) - - def getDeclinationSource(self): - return _mscl.InertialNode_getDeclinationSource(self) - - def setMagneticFieldMagnitudeSource(self, options): - return _mscl.InertialNode_setMagneticFieldMagnitudeSource(self, options) - - def getMagneticFieldMagnitudeSource(self): - return _mscl.InertialNode_getMagneticFieldMagnitudeSource(self) - - def setGNSS_SourceControl(self, gnssSource): - return _mscl.InertialNode_setGNSS_SourceControl(self, gnssSource) - - def getGNSS_SourceControl(self): - return _mscl.InertialNode_getGNSS_SourceControl(self) - - def sendExternalGNSSUpdate(self, gnssUpdateData): - return _mscl.InertialNode_sendExternalGNSSUpdate(self, gnssUpdateData) - - def setHeadingUpdateControl(self, headingUpdateOptions): - return _mscl.InertialNode_setHeadingUpdateControl(self, headingUpdateOptions) - - def tareOrientation(self, axisValue): - return _mscl.InertialNode_tareOrientation(self, axisValue) - - def getHeadingUpdateControl(self): - return _mscl.InertialNode_getHeadingUpdateControl(self) - - def setGravityErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setGravityErrorAdaptiveMeasurement(self, data) - - def getGravityErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getGravityErrorAdaptiveMeasurement(self) - - def setMagnetometerErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagnetometerErrorAdaptiveMeasurement(self, data) - - def getMagnetometerErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagnetometerErrorAdaptiveMeasurement(self) - - def setMagDipAngleErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagDipAngleErrorAdaptiveMeasurement(self, data) - - def getMagDipAngleErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagDipAngleErrorAdaptiveMeasurement(self) - - def setMagNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setMagNoiseStandardDeviation(self, data) - - def getMagNoiseStandardDeviation(self): - return _mscl.InertialNode_getMagNoiseStandardDeviation(self) - - def setGravNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGravNoiseStandardDeviation(self, data) - - def getGravNoiseStandardDeviation(self): - return _mscl.InertialNode_getGravNoiseStandardDeviation(self) - - def setAccelNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setAccelNoiseStandardDeviation(self, data) - - def getAccelNoiseStandardDeviation(self): - return _mscl.InertialNode_getAccelNoiseStandardDeviation(self) - - def setGyroNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGyroNoiseStandardDeviation(self, data) - - def getGyroNoiseStandardDeviation(self): - return _mscl.InertialNode_getGyroNoiseStandardDeviation(self) - - def setPressureAltNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setPressureAltNoiseStandardDeviation(self, data) - - def getPressureAltNoiseStandardDeviation(self): - return _mscl.InertialNode_getPressureAltNoiseStandardDeviation(self) - - def setHardIronOffsetProcessNoise(self, data): - return _mscl.InertialNode_setHardIronOffsetProcessNoise(self, data) - - def getHardIronOffsetProcessNoise(self): - return _mscl.InertialNode_getHardIronOffsetProcessNoise(self) - - def setAccelBiasModelParams(self, data): - return _mscl.InertialNode_setAccelBiasModelParams(self, data) - - def getAccelBiasModelParams(self): - return _mscl.InertialNode_getAccelBiasModelParams(self) - - def setGyroBiasModelParams(self, data): - return _mscl.InertialNode_setGyroBiasModelParams(self, data) - - def getGyroBiasModelParams(self): - return _mscl.InertialNode_getGyroBiasModelParams(self) - - def setSoftIronMatrixProcessNoise(self, data): - return _mscl.InertialNode_setSoftIronMatrixProcessNoise(self, data) - - def getSoftIronMatrixProcessNoise(self): - return _mscl.InertialNode_getSoftIronMatrixProcessNoise(self) - - def setFixedReferencePosition(self, data): - return _mscl.InertialNode_setFixedReferencePosition(self, data) - - def getFixedReferencePosition(self): - return _mscl.InertialNode_getFixedReferencePosition(self) - - def setGPSDynamicsMode(self, data): - return _mscl.InertialNode_setGPSDynamicsMode(self, data) - - def getGPSDynamicsMode(self): - return _mscl.InertialNode_getGPSDynamicsMode(self) - - def setDevicePowerState(self, device, data): - return _mscl.InertialNode_setDevicePowerState(self, device, data) - - def getDevicePowerState(self, device): - return _mscl.InertialNode_getDevicePowerState(self, device) - - def setDeviceStreamFormat(self, device, data): - return _mscl.InertialNode_setDeviceStreamFormat(self, device, data) - - def getDeviceStreamFormat(self, device): - return _mscl.InertialNode_getDeviceStreamFormat(self, device) - - def setSignalConditioningSettings(self, data): - return _mscl.InertialNode_setSignalConditioningSettings(self, data) - - def getSignalConditioningSettings(self): - return _mscl.InertialNode_getSignalConditioningSettings(self) - - def setEnableDisableMeasurements(self, data): - return _mscl.InertialNode_setEnableDisableMeasurements(self, data) - - def getEnableDisableMeasurements(self): - return _mscl.InertialNode_getEnableDisableMeasurements(self) - - def setGravityNoiseMinimum(self, data): - return _mscl.InertialNode_setGravityNoiseMinimum(self, data) - - def getGravityNoiseMinimum(self): - return _mscl.InertialNode_getGravityNoiseMinimum(self) - - def sendExternalHeadingUpdate(self, *args): - return _mscl.InertialNode_sendExternalHeadingUpdate(self, *args) - - def aidingMeasurementEnabled(self, aidingSource): - return _mscl.InertialNode_aidingMeasurementEnabled(self, aidingSource) - - def enableDisableAidingMeasurement(self, aidingSource, enable): - return _mscl.InertialNode_enableDisableAidingMeasurement(self, aidingSource, enable) - - def getAdaptiveFilterOptions(self): - return _mscl.InertialNode_getAdaptiveFilterOptions(self) - - def setAdaptiveFilterOptions(self, options): - return _mscl.InertialNode_setAdaptiveFilterOptions(self, options) - - def getMultiAntennaOffset(self, receiverId): - return _mscl.InertialNode_getMultiAntennaOffset(self, receiverId) - - def setMultiAntennaOffset(self, receiverId, offset): - return _mscl.InertialNode_setMultiAntennaOffset(self, receiverId, offset) - - def getPpsSource(self): - return _mscl.InertialNode_getPpsSource(self) - - def setPpsSource(self, ppsSource): - return _mscl.InertialNode_setPpsSource(self, ppsSource) - - def getOdometerConfig(self): - return _mscl.InertialNode_getOdometerConfig(self) - - def setOdometerConfig(self, config): - return _mscl.InertialNode_setOdometerConfig(self, config) - - def getSensorRange(self, sensorRangeType): - return _mscl.InertialNode_getSensorRange(self, sensorRangeType) - - def setSensorRange(self, *args): - return _mscl.InertialNode_setSensorRange(self, *args) - - def getGpioConfig(self, pin): - return _mscl.InertialNode_getGpioConfig(self, pin) - - def setGpioConfig(self, config): - return _mscl.InertialNode_setGpioConfig(self, config) - - def getGpioState(self, pin): - return _mscl.InertialNode_getGpioState(self, pin) - - def setGpioState(self, pin, state): - return _mscl.InertialNode_setGpioState(self, pin, state) - - def getEventTriggerMode(self, instance): - return _mscl.InertialNode_getEventTriggerMode(self, instance) - - def setEventTriggerMode(self, instance, mode): - return _mscl.InertialNode_setEventTriggerMode(self, instance, mode) - - def getEventTriggerConfig(self, instance): - return _mscl.InertialNode_getEventTriggerConfig(self, instance) - - def setEventTriggerConfig(self, config): - return _mscl.InertialNode_setEventTriggerConfig(self, config) - - def getEventActionConfig(self, instance): - return _mscl.InertialNode_getEventActionConfig(self, instance) - - def setEventActionConfig(self, config, validateSupported=True): - return _mscl.InertialNode_setEventActionConfig(self, config, validateSupported) - - def getAntennaLeverArmCal(self): - return _mscl.InertialNode_getAntennaLeverArmCal(self) - - def setAntennaLeverArmCal(self, config): - return _mscl.InertialNode_setAntennaLeverArmCal(self, config) - - def getRelativePositionReference(self): - return _mscl.InertialNode_getRelativePositionReference(self) - - def setRelativePositionReference(self, ref): - return _mscl.InertialNode_setRelativePositionReference(self, ref) - - def getLeverArmReferenceOffset(self): - return _mscl.InertialNode_getLeverArmReferenceOffset(self) - - def setLeverArmReferenceOffset(self, offset): - return _mscl.InertialNode_setLeverArmReferenceOffset(self, offset) - - def sendExternalSpeedMeasurementUpdate(self, tow, speed, unc): - return _mscl.InertialNode_sendExternalSpeedMeasurementUpdate(self, tow, speed, unc) - - def getSpeedMeasurementOffset(self): - return _mscl.InertialNode_getSpeedMeasurementOffset(self) - - def setSpeedMeasurementOffset(self, offset): - return _mscl.InertialNode_setSpeedMeasurementOffset(self, offset) - - def getGnssSignalConfig(self): - return _mscl.InertialNode_getGnssSignalConfig(self) - - def setGnssSignalConfig(self, config): - return _mscl.InertialNode_setGnssSignalConfig(self, config) - - def getGnssSpartnConfig(self): - return _mscl.InertialNode_getGnssSpartnConfig(self) - - def setGnssSpartnConfig(self, config): - return _mscl.InertialNode_setGnssSpartnConfig(self, config) - - def rtkEnabled(self): - return _mscl.InertialNode_rtkEnabled(self) - - def enableRtk(self, enable): - return _mscl.InertialNode_enableRtk(self, enable) - - def getEventTriggerStatus(self, *args): - return _mscl.InertialNode_getEventTriggerStatus(self, *args) - - def getEventActionStatus(self, *args): - return _mscl.InertialNode_getEventActionStatus(self, *args) - - def getNmeaMessageFormat(self): - return _mscl.InertialNode_getNmeaMessageFormat(self) - - def setNmeaMessageFormat(self, nmeaFormats): - return _mscl.InertialNode_setNmeaMessageFormat(self, nmeaFormats) - - def getAidingMeasurementReferenceFrames(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrames(self, *args) - - def setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds=False): - return _mscl.InertialNode_setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds) - - def getAidingMeasurementReferenceFrame(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrame(self, *args) - - def setAidingMeasurementReferenceFrame(self, id, frame): - return _mscl.InertialNode_setAidingMeasurementReferenceFrame(self, id, frame) - - def setAidingMeasurementResponseMode(self, mode): - return _mscl.InertialNode_setAidingMeasurementResponseMode(self, mode) - - def getAidingMeasurementResponseMode(self): - return _mscl.InertialNode_getAidingMeasurementResponseMode(self) - - def sendAidingMeasurement(self, *args): - return _mscl.InertialNode_sendAidingMeasurement(self, *args) - - def sendAidingMeasurement_readEcho(self, *args): - return _mscl.InertialNode_sendAidingMeasurement_readEcho(self, *args) - -# Register InertialNode in _mscl: -_mscl.InertialNode_swigregister(InertialNode) - -class DisplacementNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.DisplacementNode_swiginit(self, _mscl.new_DisplacementNode(connection)) - __swig_destroy__ = _mscl.delete_DisplacementNode - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.DisplacementNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - @staticmethod - def deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - - def connection(self): - return _mscl.DisplacementNode_connection(self) - - def features(self): - return _mscl.DisplacementNode_features(self) - - def lastCommunicationTime(self): - return _mscl.DisplacementNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.DisplacementNode_lastDeviceState(self) - - def firmwareVersion(self): - return _mscl.DisplacementNode_firmwareVersion(self) - - def model(self): - return _mscl.DisplacementNode_model(self) - - def modelName(self): - return _mscl.DisplacementNode_modelName(self) - - def modelNumber(self): - return _mscl.DisplacementNode_modelNumber(self) - - def serialNumber(self): - return _mscl.DisplacementNode_serialNumber(self) - - def lotNumber(self): - return _mscl.DisplacementNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.DisplacementNode_deviceOptions(self) - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.DisplacementNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.DisplacementNode_totalPackets(self) - - def timeout(self, *args): - return _mscl.DisplacementNode_timeout(self, *args) - - def name(self): - return _mscl.DisplacementNode_name(self) - - def ping(self): - return _mscl.DisplacementNode_ping(self) - - def setToIdle(self): - return _mscl.DisplacementNode_setToIdle(self) - - def cyclePower(self): - return _mscl.DisplacementNode_cyclePower(self) - - def resume(self): - return _mscl.DisplacementNode_resume(self) - - def getDisplacementOutputDataRate(self): - return _mscl.DisplacementNode_getDisplacementOutputDataRate(self) - - def getAnalogToDisplacementCal(self): - return _mscl.DisplacementNode_getAnalogToDisplacementCal(self) - - def setDeviceTime(self, *args): - return _mscl.DisplacementNode_setDeviceTime(self, *args) - -# Register DisplacementNode in _mscl: -_mscl.DisplacementNode_swigregister(DisplacementNode) - -def DisplacementNode_deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - -class RTKNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.RTKNode_swiginit(self, _mscl.new_RTKNode(connection)) - __swig_destroy__ = _mscl.delete_RTKNode - - def getCommunicationMode(self): - return _mscl.RTKNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.RTKNode_setCommunicationMode(self, communicationMode) - - def getDeviceStatusFlags(self): - return _mscl.RTKNode_getDeviceStatusFlags(self) - - def getActivationCode(self): - return _mscl.RTKNode_getActivationCode(self) - - def getStatusBitfieldVersion(self): - return _mscl.RTKNode_getStatusBitfieldVersion(self) - -# Register RTKNode in _mscl: -_mscl.RTKNode_swigregister(RTKNode) - -class ChannelData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelData___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelData___bool__(self) - - def __len__(self): - return _mscl.ChannelData___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelData___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelData___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelData___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelData___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelData___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelData___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelData_pop(self) - - def append(self, x): - return _mscl.ChannelData_append(self, x) - - def empty(self): - return _mscl.ChannelData_empty(self) - - def size(self): - return _mscl.ChannelData_size(self) - - def swap(self, v): - return _mscl.ChannelData_swap(self, v) - - def begin(self): - return _mscl.ChannelData_begin(self) - - def end(self): - return _mscl.ChannelData_end(self) - - def rbegin(self): - return _mscl.ChannelData_rbegin(self) - - def rend(self): - return _mscl.ChannelData_rend(self) - - def clear(self): - return _mscl.ChannelData_clear(self) - - def get_allocator(self): - return _mscl.ChannelData_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelData_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelData_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelData_swiginit(self, _mscl.new_ChannelData(*args)) - - def push_back(self, x): - return _mscl.ChannelData_push_back(self, x) - - def front(self): - return _mscl.ChannelData_front(self) - - def back(self): - return _mscl.ChannelData_back(self) - - def assign(self, n, x): - return _mscl.ChannelData_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelData_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelData_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelData_reserve(self, n) - - def capacity(self): - return _mscl.ChannelData_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelData - -# Register ChannelData in _mscl: -_mscl.ChannelData_swigregister(ChannelData) - -class MipDataPoints(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPoints_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPoints___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPoints___bool__(self) - - def __len__(self): - return _mscl.MipDataPoints___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPoints___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPoints___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPoints___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPoints___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPoints___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPoints___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPoints_pop(self) - - def append(self, x): - return _mscl.MipDataPoints_append(self, x) - - def empty(self): - return _mscl.MipDataPoints_empty(self) - - def size(self): - return _mscl.MipDataPoints_size(self) - - def swap(self, v): - return _mscl.MipDataPoints_swap(self, v) - - def begin(self): - return _mscl.MipDataPoints_begin(self) - - def end(self): - return _mscl.MipDataPoints_end(self) - - def rbegin(self): - return _mscl.MipDataPoints_rbegin(self) - - def rend(self): - return _mscl.MipDataPoints_rend(self) - - def clear(self): - return _mscl.MipDataPoints_clear(self) - - def get_allocator(self): - return _mscl.MipDataPoints_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPoints_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPoints_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPoints_swiginit(self, _mscl.new_MipDataPoints(*args)) - - def push_back(self, x): - return _mscl.MipDataPoints_push_back(self, x) - - def front(self): - return _mscl.MipDataPoints_front(self) - - def back(self): - return _mscl.MipDataPoints_back(self) - - def assign(self, n, x): - return _mscl.MipDataPoints_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPoints_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPoints_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPoints_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPoints_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPoints - -# Register MipDataPoints in _mscl: -_mscl.MipDataPoints_swigregister(MipDataPoints) - -class Bytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bytes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bytes___nonzero__(self) - - def __bool__(self): - return _mscl.Bytes___bool__(self) - - def __len__(self): - return _mscl.Bytes___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bytes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bytes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bytes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bytes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bytes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bytes___setitem__(self, *args) - - def pop(self): - return _mscl.Bytes_pop(self) - - def append(self, x): - return _mscl.Bytes_append(self, x) - - def empty(self): - return _mscl.Bytes_empty(self) - - def size(self): - return _mscl.Bytes_size(self) - - def swap(self, v): - return _mscl.Bytes_swap(self, v) - - def begin(self): - return _mscl.Bytes_begin(self) - - def end(self): - return _mscl.Bytes_end(self) - - def rbegin(self): - return _mscl.Bytes_rbegin(self) - - def rend(self): - return _mscl.Bytes_rend(self) - - def clear(self): - return _mscl.Bytes_clear(self) - - def get_allocator(self): - return _mscl.Bytes_get_allocator(self) - - def pop_back(self): - return _mscl.Bytes_pop_back(self) - - def erase(self, *args): - return _mscl.Bytes_erase(self, *args) - - def __init__(self, *args): - _mscl.Bytes_swiginit(self, _mscl.new_Bytes(*args)) - - def push_back(self, x): - return _mscl.Bytes_push_back(self, x) - - def front(self): - return _mscl.Bytes_front(self) - - def back(self): - return _mscl.Bytes_back(self) - - def assign(self, n, x): - return _mscl.Bytes_assign(self, n, x) - - def resize(self, *args): - return _mscl.Bytes_resize(self, *args) - - def insert(self, *args): - return _mscl.Bytes_insert(self, *args) - - def reserve(self, n): - return _mscl.Bytes_reserve(self, n) - - def capacity(self): - return _mscl.Bytes_capacity(self) - __swig_destroy__ = _mscl.delete_Bytes - -# Register Bytes in _mscl: -_mscl.Bytes_swigregister(Bytes) - -class BytesCollection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.BytesCollection_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.BytesCollection___nonzero__(self) - - def __bool__(self): - return _mscl.BytesCollection___bool__(self) - - def __len__(self): - return _mscl.BytesCollection___len__(self) - - def __getslice__(self, i, j): - return _mscl.BytesCollection___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.BytesCollection___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.BytesCollection___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.BytesCollection___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.BytesCollection___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.BytesCollection___setitem__(self, *args) - - def pop(self): - return _mscl.BytesCollection_pop(self) - - def append(self, x): - return _mscl.BytesCollection_append(self, x) - - def empty(self): - return _mscl.BytesCollection_empty(self) - - def size(self): - return _mscl.BytesCollection_size(self) - - def swap(self, v): - return _mscl.BytesCollection_swap(self, v) - - def begin(self): - return _mscl.BytesCollection_begin(self) - - def end(self): - return _mscl.BytesCollection_end(self) - - def rbegin(self): - return _mscl.BytesCollection_rbegin(self) - - def rend(self): - return _mscl.BytesCollection_rend(self) - - def clear(self): - return _mscl.BytesCollection_clear(self) - - def get_allocator(self): - return _mscl.BytesCollection_get_allocator(self) - - def pop_back(self): - return _mscl.BytesCollection_pop_back(self) - - def erase(self, *args): - return _mscl.BytesCollection_erase(self, *args) - - def __init__(self, *args): - _mscl.BytesCollection_swiginit(self, _mscl.new_BytesCollection(*args)) - - def push_back(self, x): - return _mscl.BytesCollection_push_back(self, x) - - def front(self): - return _mscl.BytesCollection_front(self) - - def back(self): - return _mscl.BytesCollection_back(self) - - def assign(self, n, x): - return _mscl.BytesCollection_assign(self, n, x) - - def resize(self, *args): - return _mscl.BytesCollection_resize(self, *args) - - def insert(self, *args): - return _mscl.BytesCollection_insert(self, *args) - - def reserve(self, n): - return _mscl.BytesCollection_reserve(self, n) - - def capacity(self): - return _mscl.BytesCollection_capacity(self) - __swig_destroy__ = _mscl.delete_BytesCollection - -# Register BytesCollection in _mscl: -_mscl.BytesCollection_swigregister(BytesCollection) - -class DeviceList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceList___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceList___bool__(self) - - def __len__(self): - return _mscl.DeviceList___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceList___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceList___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceList_has_key(self, key) - - def keys(self): - return _mscl.DeviceList_keys(self) - - def values(self): - return _mscl.DeviceList_values(self) - - def items(self): - return _mscl.DeviceList_items(self) - - def __contains__(self, key): - return _mscl.DeviceList___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceList_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceList_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceList___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceList_asdict(self) - - def __init__(self, *args): - _mscl.DeviceList_swiginit(self, _mscl.new_DeviceList(*args)) - - def empty(self): - return _mscl.DeviceList_empty(self) - - def size(self): - return _mscl.DeviceList_size(self) - - def swap(self, v): - return _mscl.DeviceList_swap(self, v) - - def begin(self): - return _mscl.DeviceList_begin(self) - - def end(self): - return _mscl.DeviceList_end(self) - - def rbegin(self): - return _mscl.DeviceList_rbegin(self) - - def rend(self): - return _mscl.DeviceList_rend(self) - - def clear(self): - return _mscl.DeviceList_clear(self) - - def get_allocator(self): - return _mscl.DeviceList_get_allocator(self) - - def count(self, x): - return _mscl.DeviceList_count(self, x) - - def erase(self, *args): - return _mscl.DeviceList_erase(self, *args) - - def find(self, x): - return _mscl.DeviceList_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceList_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceList_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceList - -# Register DeviceList in _mscl: -_mscl.DeviceList_swigregister(DeviceList) - -class NodeDiscoveries(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NodeDiscoveries_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NodeDiscoveries___nonzero__(self) - - def __bool__(self): - return _mscl.NodeDiscoveries___bool__(self) - - def __len__(self): - return _mscl.NodeDiscoveries___len__(self) - - def __getslice__(self, i, j): - return _mscl.NodeDiscoveries___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NodeDiscoveries___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NodeDiscoveries___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NodeDiscoveries___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NodeDiscoveries___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NodeDiscoveries___setitem__(self, *args) - - def pop(self): - return _mscl.NodeDiscoveries_pop(self) - - def append(self, x): - return _mscl.NodeDiscoveries_append(self, x) - - def empty(self): - return _mscl.NodeDiscoveries_empty(self) - - def size(self): - return _mscl.NodeDiscoveries_size(self) - - def swap(self, v): - return _mscl.NodeDiscoveries_swap(self, v) - - def begin(self): - return _mscl.NodeDiscoveries_begin(self) - - def end(self): - return _mscl.NodeDiscoveries_end(self) - - def rbegin(self): - return _mscl.NodeDiscoveries_rbegin(self) - - def rend(self): - return _mscl.NodeDiscoveries_rend(self) - - def clear(self): - return _mscl.NodeDiscoveries_clear(self) - - def get_allocator(self): - return _mscl.NodeDiscoveries_get_allocator(self) - - def pop_back(self): - return _mscl.NodeDiscoveries_pop_back(self) - - def erase(self, *args): - return _mscl.NodeDiscoveries_erase(self, *args) - - def __init__(self, *args): - _mscl.NodeDiscoveries_swiginit(self, _mscl.new_NodeDiscoveries(*args)) - - def push_back(self, x): - return _mscl.NodeDiscoveries_push_back(self, x) - - def front(self): - return _mscl.NodeDiscoveries_front(self) - - def back(self): - return _mscl.NodeDiscoveries_back(self) - - def assign(self, n, x): - return _mscl.NodeDiscoveries_assign(self, n, x) - - def resize(self, *args): - return _mscl.NodeDiscoveries_resize(self, *args) - - def insert(self, *args): - return _mscl.NodeDiscoveries_insert(self, *args) - - def reserve(self, n): - return _mscl.NodeDiscoveries_reserve(self, n) - - def capacity(self): - return _mscl.NodeDiscoveries_capacity(self) - __swig_destroy__ = _mscl.delete_NodeDiscoveries - -# Register NodeDiscoveries in _mscl: -_mscl.NodeDiscoveries_swigregister(NodeDiscoveries) - -class DataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.DataSweeps___bool__(self) - - def __len__(self): - return _mscl.DataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.DataSweeps_pop(self) - - def append(self, x): - return _mscl.DataSweeps_append(self, x) - - def empty(self): - return _mscl.DataSweeps_empty(self) - - def size(self): - return _mscl.DataSweeps_size(self) - - def swap(self, v): - return _mscl.DataSweeps_swap(self, v) - - def begin(self): - return _mscl.DataSweeps_begin(self) - - def end(self): - return _mscl.DataSweeps_end(self) - - def rbegin(self): - return _mscl.DataSweeps_rbegin(self) - - def rend(self): - return _mscl.DataSweeps_rend(self) - - def clear(self): - return _mscl.DataSweeps_clear(self) - - def get_allocator(self): - return _mscl.DataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.DataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.DataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.DataSweeps_swiginit(self, _mscl.new_DataSweeps(*args)) - - def push_back(self, x): - return _mscl.DataSweeps_push_back(self, x) - - def front(self): - return _mscl.DataSweeps_front(self) - - def back(self): - return _mscl.DataSweeps_back(self) - - def assign(self, n, x): - return _mscl.DataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.DataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.DataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.DataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_DataSweeps - -# Register DataSweeps in _mscl: -_mscl.DataSweeps_swigregister(DataSweeps) - -class LoggedDataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LoggedDataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LoggedDataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.LoggedDataSweeps___bool__(self) - - def __len__(self): - return _mscl.LoggedDataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.LoggedDataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LoggedDataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LoggedDataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LoggedDataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LoggedDataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LoggedDataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.LoggedDataSweeps_pop(self) - - def append(self, x): - return _mscl.LoggedDataSweeps_append(self, x) - - def empty(self): - return _mscl.LoggedDataSweeps_empty(self) - - def size(self): - return _mscl.LoggedDataSweeps_size(self) - - def swap(self, v): - return _mscl.LoggedDataSweeps_swap(self, v) - - def begin(self): - return _mscl.LoggedDataSweeps_begin(self) - - def end(self): - return _mscl.LoggedDataSweeps_end(self) - - def rbegin(self): - return _mscl.LoggedDataSweeps_rbegin(self) - - def rend(self): - return _mscl.LoggedDataSweeps_rend(self) - - def clear(self): - return _mscl.LoggedDataSweeps_clear(self) - - def get_allocator(self): - return _mscl.LoggedDataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.LoggedDataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.LoggedDataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.LoggedDataSweeps_swiginit(self, _mscl.new_LoggedDataSweeps(*args)) - - def push_back(self, x): - return _mscl.LoggedDataSweeps_push_back(self, x) - - def front(self): - return _mscl.LoggedDataSweeps_front(self) - - def back(self): - return _mscl.LoggedDataSweeps_back(self) - - def assign(self, n, x): - return _mscl.LoggedDataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.LoggedDataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.LoggedDataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.LoggedDataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.LoggedDataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweeps - -# Register LoggedDataSweeps in _mscl: -_mscl.LoggedDataSweeps_swigregister(LoggedDataSweeps) - -class MipDataPackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPackets___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPackets___bool__(self) - - def __len__(self): - return _mscl.MipDataPackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPackets___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPackets_pop(self) - - def append(self, x): - return _mscl.MipDataPackets_append(self, x) - - def empty(self): - return _mscl.MipDataPackets_empty(self) - - def size(self): - return _mscl.MipDataPackets_size(self) - - def swap(self, v): - return _mscl.MipDataPackets_swap(self, v) - - def begin(self): - return _mscl.MipDataPackets_begin(self) - - def end(self): - return _mscl.MipDataPackets_end(self) - - def rbegin(self): - return _mscl.MipDataPackets_rbegin(self) - - def rend(self): - return _mscl.MipDataPackets_rend(self) - - def clear(self): - return _mscl.MipDataPackets_clear(self) - - def get_allocator(self): - return _mscl.MipDataPackets_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPackets_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPackets_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPackets_swiginit(self, _mscl.new_MipDataPackets(*args)) - - def push_back(self, x): - return _mscl.MipDataPackets_push_back(self, x) - - def front(self): - return _mscl.MipDataPackets_front(self) - - def back(self): - return _mscl.MipDataPackets_back(self) - - def assign(self, n, x): - return _mscl.MipDataPackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPackets_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPackets_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPackets_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPackets_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPackets - -# Register MipDataPackets in _mscl: -_mscl.MipDataPackets_swigregister(MipDataPackets) - -class RawBytePackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RawBytePackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RawBytePackets___nonzero__(self) - - def __bool__(self): - return _mscl.RawBytePackets___bool__(self) - - def __len__(self): - return _mscl.RawBytePackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.RawBytePackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.RawBytePackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.RawBytePackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.RawBytePackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.RawBytePackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.RawBytePackets___setitem__(self, *args) - - def pop(self): - return _mscl.RawBytePackets_pop(self) - - def append(self, x): - return _mscl.RawBytePackets_append(self, x) - - def empty(self): - return _mscl.RawBytePackets_empty(self) - - def size(self): - return _mscl.RawBytePackets_size(self) - - def swap(self, v): - return _mscl.RawBytePackets_swap(self, v) - - def begin(self): - return _mscl.RawBytePackets_begin(self) - - def end(self): - return _mscl.RawBytePackets_end(self) - - def rbegin(self): - return _mscl.RawBytePackets_rbegin(self) - - def rend(self): - return _mscl.RawBytePackets_rend(self) - - def clear(self): - return _mscl.RawBytePackets_clear(self) - - def get_allocator(self): - return _mscl.RawBytePackets_get_allocator(self) - - def pop_back(self): - return _mscl.RawBytePackets_pop_back(self) - - def erase(self, *args): - return _mscl.RawBytePackets_erase(self, *args) - - def __init__(self, *args): - _mscl.RawBytePackets_swiginit(self, _mscl.new_RawBytePackets(*args)) - - def push_back(self, x): - return _mscl.RawBytePackets_push_back(self, x) - - def front(self): - return _mscl.RawBytePackets_front(self) - - def back(self): - return _mscl.RawBytePackets_back(self) - - def assign(self, n, x): - return _mscl.RawBytePackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.RawBytePackets_resize(self, *args) - - def insert(self, *args): - return _mscl.RawBytePackets_insert(self, *args) - - def reserve(self, n): - return _mscl.RawBytePackets_reserve(self, n) - - def capacity(self): - return _mscl.RawBytePackets_capacity(self) - __swig_destroy__ = _mscl.delete_RawBytePackets - -# Register RawBytePackets in _mscl: -_mscl.RawBytePackets_swigregister(RawBytePackets) - -class MipChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannels___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannels___bool__(self) - - def __len__(self): - return _mscl.MipChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannels___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannels_pop(self) - - def append(self, x): - return _mscl.MipChannels_append(self, x) - - def empty(self): - return _mscl.MipChannels_empty(self) - - def size(self): - return _mscl.MipChannels_size(self) - - def swap(self, v): - return _mscl.MipChannels_swap(self, v) - - def begin(self): - return _mscl.MipChannels_begin(self) - - def end(self): - return _mscl.MipChannels_end(self) - - def rbegin(self): - return _mscl.MipChannels_rbegin(self) - - def rend(self): - return _mscl.MipChannels_rend(self) - - def clear(self): - return _mscl.MipChannels_clear(self) - - def get_allocator(self): - return _mscl.MipChannels_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannels_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannels_swiginit(self, _mscl.new_MipChannels(*args)) - - def push_back(self, x): - return _mscl.MipChannels_push_back(self, x) - - def front(self): - return _mscl.MipChannels_front(self) - - def back(self): - return _mscl.MipChannels_back(self) - - def assign(self, n, x): - return _mscl.MipChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannels_reserve(self, n) - - def capacity(self): - return _mscl.MipChannels_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannels - -# Register MipChannels in _mscl: -_mscl.MipChannels_swigregister(MipChannels) - -class DataCollectionMethods(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataCollectionMethods_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataCollectionMethods___nonzero__(self) - - def __bool__(self): - return _mscl.DataCollectionMethods___bool__(self) - - def __len__(self): - return _mscl.DataCollectionMethods___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataCollectionMethods___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataCollectionMethods___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataCollectionMethods___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataCollectionMethods___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataCollectionMethods___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataCollectionMethods___setitem__(self, *args) - - def pop(self): - return _mscl.DataCollectionMethods_pop(self) - - def append(self, x): - return _mscl.DataCollectionMethods_append(self, x) - - def empty(self): - return _mscl.DataCollectionMethods_empty(self) - - def size(self): - return _mscl.DataCollectionMethods_size(self) - - def swap(self, v): - return _mscl.DataCollectionMethods_swap(self, v) - - def begin(self): - return _mscl.DataCollectionMethods_begin(self) - - def end(self): - return _mscl.DataCollectionMethods_end(self) - - def rbegin(self): - return _mscl.DataCollectionMethods_rbegin(self) - - def rend(self): - return _mscl.DataCollectionMethods_rend(self) - - def clear(self): - return _mscl.DataCollectionMethods_clear(self) - - def get_allocator(self): - return _mscl.DataCollectionMethods_get_allocator(self) - - def pop_back(self): - return _mscl.DataCollectionMethods_pop_back(self) - - def erase(self, *args): - return _mscl.DataCollectionMethods_erase(self, *args) - - def __init__(self, *args): - _mscl.DataCollectionMethods_swiginit(self, _mscl.new_DataCollectionMethods(*args)) - - def push_back(self, x): - return _mscl.DataCollectionMethods_push_back(self, x) - - def front(self): - return _mscl.DataCollectionMethods_front(self) - - def back(self): - return _mscl.DataCollectionMethods_back(self) - - def assign(self, n, x): - return _mscl.DataCollectionMethods_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataCollectionMethods_resize(self, *args) - - def insert(self, *args): - return _mscl.DataCollectionMethods_insert(self, *args) - - def reserve(self, n): - return _mscl.DataCollectionMethods_reserve(self, n) - - def capacity(self): - return _mscl.DataCollectionMethods_capacity(self) - __swig_destroy__ = _mscl.delete_DataCollectionMethods - -# Register DataCollectionMethods in _mscl: -_mscl.DataCollectionMethods_swigregister(DataCollectionMethods) - -class DataFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataFormats___nonzero__(self) - - def __bool__(self): - return _mscl.DataFormats___bool__(self) - - def __len__(self): - return _mscl.DataFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataFormats___setitem__(self, *args) - - def pop(self): - return _mscl.DataFormats_pop(self) - - def append(self, x): - return _mscl.DataFormats_append(self, x) - - def empty(self): - return _mscl.DataFormats_empty(self) - - def size(self): - return _mscl.DataFormats_size(self) - - def swap(self, v): - return _mscl.DataFormats_swap(self, v) - - def begin(self): - return _mscl.DataFormats_begin(self) - - def end(self): - return _mscl.DataFormats_end(self) - - def rbegin(self): - return _mscl.DataFormats_rbegin(self) - - def rend(self): - return _mscl.DataFormats_rend(self) - - def clear(self): - return _mscl.DataFormats_clear(self) - - def get_allocator(self): - return _mscl.DataFormats_get_allocator(self) - - def pop_back(self): - return _mscl.DataFormats_pop_back(self) - - def erase(self, *args): - return _mscl.DataFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.DataFormats_swiginit(self, _mscl.new_DataFormats(*args)) - - def push_back(self, x): - return _mscl.DataFormats_push_back(self, x) - - def front(self): - return _mscl.DataFormats_front(self) - - def back(self): - return _mscl.DataFormats_back(self) - - def assign(self, n, x): - return _mscl.DataFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.DataFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.DataFormats_reserve(self, n) - - def capacity(self): - return _mscl.DataFormats_capacity(self) - __swig_destroy__ = _mscl.delete_DataFormats - -# Register DataFormats in _mscl: -_mscl.DataFormats_swigregister(DataFormats) - -class WirelessSampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessSampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessSampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessSampleRates___bool__(self) - - def __len__(self): - return _mscl.WirelessSampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessSampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessSampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessSampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessSampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessSampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessSampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessSampleRates_pop(self) - - def append(self, x): - return _mscl.WirelessSampleRates_append(self, x) - - def empty(self): - return _mscl.WirelessSampleRates_empty(self) - - def size(self): - return _mscl.WirelessSampleRates_size(self) - - def swap(self, v): - return _mscl.WirelessSampleRates_swap(self, v) - - def begin(self): - return _mscl.WirelessSampleRates_begin(self) - - def end(self): - return _mscl.WirelessSampleRates_end(self) - - def rbegin(self): - return _mscl.WirelessSampleRates_rbegin(self) - - def rend(self): - return _mscl.WirelessSampleRates_rend(self) - - def clear(self): - return _mscl.WirelessSampleRates_clear(self) - - def get_allocator(self): - return _mscl.WirelessSampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessSampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessSampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessSampleRates_swiginit(self, _mscl.new_WirelessSampleRates(*args)) - - def push_back(self, x): - return _mscl.WirelessSampleRates_push_back(self, x) - - def front(self): - return _mscl.WirelessSampleRates_front(self) - - def back(self): - return _mscl.WirelessSampleRates_back(self) - - def assign(self, n, x): - return _mscl.WirelessSampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessSampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessSampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessSampleRates_reserve(self, n) - - def capacity(self): - return _mscl.WirelessSampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessSampleRates - -# Register WirelessSampleRates in _mscl: -_mscl.WirelessSampleRates_swigregister(WirelessSampleRates) - -class SamplingModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SamplingModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SamplingModes___nonzero__(self) - - def __bool__(self): - return _mscl.SamplingModes___bool__(self) - - def __len__(self): - return _mscl.SamplingModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SamplingModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SamplingModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SamplingModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SamplingModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SamplingModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SamplingModes___setitem__(self, *args) - - def pop(self): - return _mscl.SamplingModes_pop(self) - - def append(self, x): - return _mscl.SamplingModes_append(self, x) - - def empty(self): - return _mscl.SamplingModes_empty(self) - - def size(self): - return _mscl.SamplingModes_size(self) - - def swap(self, v): - return _mscl.SamplingModes_swap(self, v) - - def begin(self): - return _mscl.SamplingModes_begin(self) - - def end(self): - return _mscl.SamplingModes_end(self) - - def rbegin(self): - return _mscl.SamplingModes_rbegin(self) - - def rend(self): - return _mscl.SamplingModes_rend(self) - - def clear(self): - return _mscl.SamplingModes_clear(self) - - def get_allocator(self): - return _mscl.SamplingModes_get_allocator(self) - - def pop_back(self): - return _mscl.SamplingModes_pop_back(self) - - def erase(self, *args): - return _mscl.SamplingModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SamplingModes_swiginit(self, _mscl.new_SamplingModes(*args)) - - def push_back(self, x): - return _mscl.SamplingModes_push_back(self, x) - - def front(self): - return _mscl.SamplingModes_front(self) - - def back(self): - return _mscl.SamplingModes_back(self) - - def assign(self, n, x): - return _mscl.SamplingModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SamplingModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SamplingModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SamplingModes_reserve(self, n) - - def capacity(self): - return _mscl.SamplingModes_capacity(self) - __swig_destroy__ = _mscl.delete_SamplingModes - -# Register SamplingModes in _mscl: -_mscl.SamplingModes_swigregister(SamplingModes) - -class DefaultModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DefaultModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DefaultModes___nonzero__(self) - - def __bool__(self): - return _mscl.DefaultModes___bool__(self) - - def __len__(self): - return _mscl.DefaultModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DefaultModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DefaultModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DefaultModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DefaultModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DefaultModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DefaultModes___setitem__(self, *args) - - def pop(self): - return _mscl.DefaultModes_pop(self) - - def append(self, x): - return _mscl.DefaultModes_append(self, x) - - def empty(self): - return _mscl.DefaultModes_empty(self) - - def size(self): - return _mscl.DefaultModes_size(self) - - def swap(self, v): - return _mscl.DefaultModes_swap(self, v) - - def begin(self): - return _mscl.DefaultModes_begin(self) - - def end(self): - return _mscl.DefaultModes_end(self) - - def rbegin(self): - return _mscl.DefaultModes_rbegin(self) - - def rend(self): - return _mscl.DefaultModes_rend(self) - - def clear(self): - return _mscl.DefaultModes_clear(self) - - def get_allocator(self): - return _mscl.DefaultModes_get_allocator(self) - - def pop_back(self): - return _mscl.DefaultModes_pop_back(self) - - def erase(self, *args): - return _mscl.DefaultModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DefaultModes_swiginit(self, _mscl.new_DefaultModes(*args)) - - def push_back(self, x): - return _mscl.DefaultModes_push_back(self, x) - - def front(self): - return _mscl.DefaultModes_front(self) - - def back(self): - return _mscl.DefaultModes_back(self) - - def assign(self, n, x): - return _mscl.DefaultModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DefaultModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DefaultModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DefaultModes_reserve(self, n) - - def capacity(self): - return _mscl.DefaultModes_capacity(self) - __swig_destroy__ = _mscl.delete_DefaultModes - -# Register DefaultModes in _mscl: -_mscl.DefaultModes_swigregister(DefaultModes) - -class TransmitPowers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransmitPowers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransmitPowers___nonzero__(self) - - def __bool__(self): - return _mscl.TransmitPowers___bool__(self) - - def __len__(self): - return _mscl.TransmitPowers___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransmitPowers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransmitPowers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransmitPowers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransmitPowers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransmitPowers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransmitPowers___setitem__(self, *args) - - def pop(self): - return _mscl.TransmitPowers_pop(self) - - def append(self, x): - return _mscl.TransmitPowers_append(self, x) - - def empty(self): - return _mscl.TransmitPowers_empty(self) - - def size(self): - return _mscl.TransmitPowers_size(self) - - def swap(self, v): - return _mscl.TransmitPowers_swap(self, v) - - def begin(self): - return _mscl.TransmitPowers_begin(self) - - def end(self): - return _mscl.TransmitPowers_end(self) - - def rbegin(self): - return _mscl.TransmitPowers_rbegin(self) - - def rend(self): - return _mscl.TransmitPowers_rend(self) - - def clear(self): - return _mscl.TransmitPowers_clear(self) - - def get_allocator(self): - return _mscl.TransmitPowers_get_allocator(self) - - def pop_back(self): - return _mscl.TransmitPowers_pop_back(self) - - def erase(self, *args): - return _mscl.TransmitPowers_erase(self, *args) - - def __init__(self, *args): - _mscl.TransmitPowers_swiginit(self, _mscl.new_TransmitPowers(*args)) - - def push_back(self, x): - return _mscl.TransmitPowers_push_back(self, x) - - def front(self): - return _mscl.TransmitPowers_front(self) - - def back(self): - return _mscl.TransmitPowers_back(self) - - def assign(self, n, x): - return _mscl.TransmitPowers_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransmitPowers_resize(self, *args) - - def insert(self, *args): - return _mscl.TransmitPowers_insert(self, *args) - - def reserve(self, n): - return _mscl.TransmitPowers_reserve(self, n) - - def capacity(self): - return _mscl.TransmitPowers_capacity(self) - __swig_destroy__ = _mscl.delete_TransmitPowers - -# Register TransmitPowers in _mscl: -_mscl.TransmitPowers_swigregister(TransmitPowers) - -class ChannelGroupSettings(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroupSettings_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroupSettings___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroupSettings___bool__(self) - - def __len__(self): - return _mscl.ChannelGroupSettings___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroupSettings___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroupSettings___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroupSettings___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroupSettings___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroupSettings___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroupSettings___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroupSettings_pop(self) - - def append(self, x): - return _mscl.ChannelGroupSettings_append(self, x) - - def empty(self): - return _mscl.ChannelGroupSettings_empty(self) - - def size(self): - return _mscl.ChannelGroupSettings_size(self) - - def swap(self, v): - return _mscl.ChannelGroupSettings_swap(self, v) - - def begin(self): - return _mscl.ChannelGroupSettings_begin(self) - - def end(self): - return _mscl.ChannelGroupSettings_end(self) - - def rbegin(self): - return _mscl.ChannelGroupSettings_rbegin(self) - - def rend(self): - return _mscl.ChannelGroupSettings_rend(self) - - def clear(self): - return _mscl.ChannelGroupSettings_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroupSettings_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroupSettings_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroupSettings_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroupSettings_swiginit(self, _mscl.new_ChannelGroupSettings(*args)) - - def push_back(self, x): - return _mscl.ChannelGroupSettings_push_back(self, x) - - def front(self): - return _mscl.ChannelGroupSettings_front(self) - - def back(self): - return _mscl.ChannelGroupSettings_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroupSettings_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroupSettings_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroupSettings_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroupSettings_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroupSettings_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroupSettings - -# Register ChannelGroupSettings in _mscl: -_mscl.ChannelGroupSettings_swigregister(ChannelGroupSettings) - -class FatigueModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.FatigueModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.FatigueModes___nonzero__(self) - - def __bool__(self): - return _mscl.FatigueModes___bool__(self) - - def __len__(self): - return _mscl.FatigueModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.FatigueModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.FatigueModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.FatigueModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.FatigueModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.FatigueModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.FatigueModes___setitem__(self, *args) - - def pop(self): - return _mscl.FatigueModes_pop(self) - - def append(self, x): - return _mscl.FatigueModes_append(self, x) - - def empty(self): - return _mscl.FatigueModes_empty(self) - - def size(self): - return _mscl.FatigueModes_size(self) - - def swap(self, v): - return _mscl.FatigueModes_swap(self, v) - - def begin(self): - return _mscl.FatigueModes_begin(self) - - def end(self): - return _mscl.FatigueModes_end(self) - - def rbegin(self): - return _mscl.FatigueModes_rbegin(self) - - def rend(self): - return _mscl.FatigueModes_rend(self) - - def clear(self): - return _mscl.FatigueModes_clear(self) - - def get_allocator(self): - return _mscl.FatigueModes_get_allocator(self) - - def pop_back(self): - return _mscl.FatigueModes_pop_back(self) - - def erase(self, *args): - return _mscl.FatigueModes_erase(self, *args) - - def __init__(self, *args): - _mscl.FatigueModes_swiginit(self, _mscl.new_FatigueModes(*args)) - - def push_back(self, x): - return _mscl.FatigueModes_push_back(self, x) - - def front(self): - return _mscl.FatigueModes_front(self) - - def back(self): - return _mscl.FatigueModes_back(self) - - def assign(self, n, x): - return _mscl.FatigueModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.FatigueModes_resize(self, *args) - - def insert(self, *args): - return _mscl.FatigueModes_insert(self, *args) - - def reserve(self, n): - return _mscl.FatigueModes_reserve(self, n) - - def capacity(self): - return _mscl.FatigueModes_capacity(self) - __swig_destroy__ = _mscl.delete_FatigueModes - -# Register FatigueModes in _mscl: -_mscl.FatigueModes_swigregister(FatigueModes) - -class Filters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Filters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Filters___nonzero__(self) - - def __bool__(self): - return _mscl.Filters___bool__(self) - - def __len__(self): - return _mscl.Filters___len__(self) - - def __getslice__(self, i, j): - return _mscl.Filters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Filters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Filters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Filters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Filters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Filters___setitem__(self, *args) - - def pop(self): - return _mscl.Filters_pop(self) - - def append(self, x): - return _mscl.Filters_append(self, x) - - def empty(self): - return _mscl.Filters_empty(self) - - def size(self): - return _mscl.Filters_size(self) - - def swap(self, v): - return _mscl.Filters_swap(self, v) - - def begin(self): - return _mscl.Filters_begin(self) - - def end(self): - return _mscl.Filters_end(self) - - def rbegin(self): - return _mscl.Filters_rbegin(self) - - def rend(self): - return _mscl.Filters_rend(self) - - def clear(self): - return _mscl.Filters_clear(self) - - def get_allocator(self): - return _mscl.Filters_get_allocator(self) - - def pop_back(self): - return _mscl.Filters_pop_back(self) - - def erase(self, *args): - return _mscl.Filters_erase(self, *args) - - def __init__(self, *args): - _mscl.Filters_swiginit(self, _mscl.new_Filters(*args)) - - def push_back(self, x): - return _mscl.Filters_push_back(self, x) - - def front(self): - return _mscl.Filters_front(self) - - def back(self): - return _mscl.Filters_back(self) - - def assign(self, n, x): - return _mscl.Filters_assign(self, n, x) - - def resize(self, *args): - return _mscl.Filters_resize(self, *args) - - def insert(self, *args): - return _mscl.Filters_insert(self, *args) - - def reserve(self, n): - return _mscl.Filters_reserve(self, n) - - def capacity(self): - return _mscl.Filters_capacity(self) - __swig_destroy__ = _mscl.delete_Filters - -# Register Filters in _mscl: -_mscl.Filters_swigregister(Filters) - -class HighPassFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HighPassFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HighPassFilters___nonzero__(self) - - def __bool__(self): - return _mscl.HighPassFilters___bool__(self) - - def __len__(self): - return _mscl.HighPassFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.HighPassFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HighPassFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HighPassFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HighPassFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HighPassFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HighPassFilters___setitem__(self, *args) - - def pop(self): - return _mscl.HighPassFilters_pop(self) - - def append(self, x): - return _mscl.HighPassFilters_append(self, x) - - def empty(self): - return _mscl.HighPassFilters_empty(self) - - def size(self): - return _mscl.HighPassFilters_size(self) - - def swap(self, v): - return _mscl.HighPassFilters_swap(self, v) - - def begin(self): - return _mscl.HighPassFilters_begin(self) - - def end(self): - return _mscl.HighPassFilters_end(self) - - def rbegin(self): - return _mscl.HighPassFilters_rbegin(self) - - def rend(self): - return _mscl.HighPassFilters_rend(self) - - def clear(self): - return _mscl.HighPassFilters_clear(self) - - def get_allocator(self): - return _mscl.HighPassFilters_get_allocator(self) - - def pop_back(self): - return _mscl.HighPassFilters_pop_back(self) - - def erase(self, *args): - return _mscl.HighPassFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.HighPassFilters_swiginit(self, _mscl.new_HighPassFilters(*args)) - - def push_back(self, x): - return _mscl.HighPassFilters_push_back(self, x) - - def front(self): - return _mscl.HighPassFilters_front(self) - - def back(self): - return _mscl.HighPassFilters_back(self) - - def assign(self, n, x): - return _mscl.HighPassFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.HighPassFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.HighPassFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.HighPassFilters_reserve(self, n) - - def capacity(self): - return _mscl.HighPassFilters_capacity(self) - __swig_destroy__ = _mscl.delete_HighPassFilters - -# Register HighPassFilters in _mscl: -_mscl.HighPassFilters_swigregister(HighPassFilters) - -class StorageLimitModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StorageLimitModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StorageLimitModes___nonzero__(self) - - def __bool__(self): - return _mscl.StorageLimitModes___bool__(self) - - def __len__(self): - return _mscl.StorageLimitModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.StorageLimitModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StorageLimitModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StorageLimitModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StorageLimitModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StorageLimitModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StorageLimitModes___setitem__(self, *args) - - def pop(self): - return _mscl.StorageLimitModes_pop(self) - - def append(self, x): - return _mscl.StorageLimitModes_append(self, x) - - def empty(self): - return _mscl.StorageLimitModes_empty(self) - - def size(self): - return _mscl.StorageLimitModes_size(self) - - def swap(self, v): - return _mscl.StorageLimitModes_swap(self, v) - - def begin(self): - return _mscl.StorageLimitModes_begin(self) - - def end(self): - return _mscl.StorageLimitModes_end(self) - - def rbegin(self): - return _mscl.StorageLimitModes_rbegin(self) - - def rend(self): - return _mscl.StorageLimitModes_rend(self) - - def clear(self): - return _mscl.StorageLimitModes_clear(self) - - def get_allocator(self): - return _mscl.StorageLimitModes_get_allocator(self) - - def pop_back(self): - return _mscl.StorageLimitModes_pop_back(self) - - def erase(self, *args): - return _mscl.StorageLimitModes_erase(self, *args) - - def __init__(self, *args): - _mscl.StorageLimitModes_swiginit(self, _mscl.new_StorageLimitModes(*args)) - - def push_back(self, x): - return _mscl.StorageLimitModes_push_back(self, x) - - def front(self): - return _mscl.StorageLimitModes_front(self) - - def back(self): - return _mscl.StorageLimitModes_back(self) - - def assign(self, n, x): - return _mscl.StorageLimitModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.StorageLimitModes_resize(self, *args) - - def insert(self, *args): - return _mscl.StorageLimitModes_insert(self, *args) - - def reserve(self, n): - return _mscl.StorageLimitModes_reserve(self, n) - - def capacity(self): - return _mscl.StorageLimitModes_capacity(self) - __swig_destroy__ = _mscl.delete_StorageLimitModes - -# Register StorageLimitModes in _mscl: -_mscl.StorageLimitModes_swigregister(StorageLimitModes) - -class InputRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.InputRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.InputRanges___nonzero__(self) - - def __bool__(self): - return _mscl.InputRanges___bool__(self) - - def __len__(self): - return _mscl.InputRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.InputRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.InputRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.InputRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.InputRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.InputRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.InputRanges___setitem__(self, *args) - - def pop(self): - return _mscl.InputRanges_pop(self) - - def append(self, x): - return _mscl.InputRanges_append(self, x) - - def empty(self): - return _mscl.InputRanges_empty(self) - - def size(self): - return _mscl.InputRanges_size(self) - - def swap(self, v): - return _mscl.InputRanges_swap(self, v) - - def begin(self): - return _mscl.InputRanges_begin(self) - - def end(self): - return _mscl.InputRanges_end(self) - - def rbegin(self): - return _mscl.InputRanges_rbegin(self) - - def rend(self): - return _mscl.InputRanges_rend(self) - - def clear(self): - return _mscl.InputRanges_clear(self) - - def get_allocator(self): - return _mscl.InputRanges_get_allocator(self) - - def pop_back(self): - return _mscl.InputRanges_pop_back(self) - - def erase(self, *args): - return _mscl.InputRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.InputRanges_swiginit(self, _mscl.new_InputRanges(*args)) - - def push_back(self, x): - return _mscl.InputRanges_push_back(self, x) - - def front(self): - return _mscl.InputRanges_front(self) - - def back(self): - return _mscl.InputRanges_back(self) - - def assign(self, n, x): - return _mscl.InputRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.InputRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.InputRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.InputRanges_reserve(self, n) - - def capacity(self): - return _mscl.InputRanges_capacity(self) - __swig_destroy__ = _mscl.delete_InputRanges - -# Register InputRanges in _mscl: -_mscl.InputRanges_swigregister(InputRanges) - -class DataModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataModes___nonzero__(self) - - def __bool__(self): - return _mscl.DataModes___bool__(self) - - def __len__(self): - return _mscl.DataModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataModes___setitem__(self, *args) - - def pop(self): - return _mscl.DataModes_pop(self) - - def append(self, x): - return _mscl.DataModes_append(self, x) - - def empty(self): - return _mscl.DataModes_empty(self) - - def size(self): - return _mscl.DataModes_size(self) - - def swap(self, v): - return _mscl.DataModes_swap(self, v) - - def begin(self): - return _mscl.DataModes_begin(self) - - def end(self): - return _mscl.DataModes_end(self) - - def rbegin(self): - return _mscl.DataModes_rbegin(self) - - def rend(self): - return _mscl.DataModes_rend(self) - - def clear(self): - return _mscl.DataModes_clear(self) - - def get_allocator(self): - return _mscl.DataModes_get_allocator(self) - - def pop_back(self): - return _mscl.DataModes_pop_back(self) - - def erase(self, *args): - return _mscl.DataModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DataModes_swiginit(self, _mscl.new_DataModes(*args)) - - def push_back(self, x): - return _mscl.DataModes_push_back(self, x) - - def front(self): - return _mscl.DataModes_front(self) - - def back(self): - return _mscl.DataModes_back(self) - - def assign(self, n, x): - return _mscl.DataModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DataModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DataModes_reserve(self, n) - - def capacity(self): - return _mscl.DataModes_capacity(self) - __swig_destroy__ = _mscl.delete_DataModes - -# Register DataModes in _mscl: -_mscl.DataModes_swigregister(DataModes) - -class CommProtocols(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommProtocols_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommProtocols___nonzero__(self) - - def __bool__(self): - return _mscl.CommProtocols___bool__(self) - - def __len__(self): - return _mscl.CommProtocols___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommProtocols___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommProtocols___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommProtocols___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommProtocols___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommProtocols___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommProtocols___setitem__(self, *args) - - def pop(self): - return _mscl.CommProtocols_pop(self) - - def append(self, x): - return _mscl.CommProtocols_append(self, x) - - def empty(self): - return _mscl.CommProtocols_empty(self) - - def size(self): - return _mscl.CommProtocols_size(self) - - def swap(self, v): - return _mscl.CommProtocols_swap(self, v) - - def begin(self): - return _mscl.CommProtocols_begin(self) - - def end(self): - return _mscl.CommProtocols_end(self) - - def rbegin(self): - return _mscl.CommProtocols_rbegin(self) - - def rend(self): - return _mscl.CommProtocols_rend(self) - - def clear(self): - return _mscl.CommProtocols_clear(self) - - def get_allocator(self): - return _mscl.CommProtocols_get_allocator(self) - - def pop_back(self): - return _mscl.CommProtocols_pop_back(self) - - def erase(self, *args): - return _mscl.CommProtocols_erase(self, *args) - - def __init__(self, *args): - _mscl.CommProtocols_swiginit(self, _mscl.new_CommProtocols(*args)) - - def push_back(self, x): - return _mscl.CommProtocols_push_back(self, x) - - def front(self): - return _mscl.CommProtocols_front(self) - - def back(self): - return _mscl.CommProtocols_back(self) - - def assign(self, n, x): - return _mscl.CommProtocols_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommProtocols_resize(self, *args) - - def insert(self, *args): - return _mscl.CommProtocols_insert(self, *args) - - def reserve(self, n): - return _mscl.CommProtocols_reserve(self, n) - - def capacity(self): - return _mscl.CommProtocols_capacity(self) - __swig_destroy__ = _mscl.delete_CommProtocols - -# Register CommProtocols in _mscl: -_mscl.CommProtocols_swigregister(CommProtocols) - -class Voltages(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Voltages_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Voltages___nonzero__(self) - - def __bool__(self): - return _mscl.Voltages___bool__(self) - - def __len__(self): - return _mscl.Voltages___len__(self) - - def __getslice__(self, i, j): - return _mscl.Voltages___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Voltages___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Voltages___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Voltages___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Voltages___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Voltages___setitem__(self, *args) - - def pop(self): - return _mscl.Voltages_pop(self) - - def append(self, x): - return _mscl.Voltages_append(self, x) - - def empty(self): - return _mscl.Voltages_empty(self) - - def size(self): - return _mscl.Voltages_size(self) - - def swap(self, v): - return _mscl.Voltages_swap(self, v) - - def begin(self): - return _mscl.Voltages_begin(self) - - def end(self): - return _mscl.Voltages_end(self) - - def rbegin(self): - return _mscl.Voltages_rbegin(self) - - def rend(self): - return _mscl.Voltages_rend(self) - - def clear(self): - return _mscl.Voltages_clear(self) - - def get_allocator(self): - return _mscl.Voltages_get_allocator(self) - - def pop_back(self): - return _mscl.Voltages_pop_back(self) - - def erase(self, *args): - return _mscl.Voltages_erase(self, *args) - - def __init__(self, *args): - _mscl.Voltages_swiginit(self, _mscl.new_Voltages(*args)) - - def push_back(self, x): - return _mscl.Voltages_push_back(self, x) - - def front(self): - return _mscl.Voltages_front(self) - - def back(self): - return _mscl.Voltages_back(self) - - def assign(self, n, x): - return _mscl.Voltages_assign(self, n, x) - - def resize(self, *args): - return _mscl.Voltages_resize(self, *args) - - def insert(self, *args): - return _mscl.Voltages_insert(self, *args) - - def reserve(self, n): - return _mscl.Voltages_reserve(self, n) - - def capacity(self): - return _mscl.Voltages_capacity(self) - __swig_destroy__ = _mscl.delete_Voltages - -# Register Voltages in _mscl: -_mscl.Voltages_swigregister(Voltages) - -class SensorOutputModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorOutputModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorOutputModes___nonzero__(self) - - def __bool__(self): - return _mscl.SensorOutputModes___bool__(self) - - def __len__(self): - return _mscl.SensorOutputModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorOutputModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorOutputModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorOutputModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorOutputModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorOutputModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorOutputModes___setitem__(self, *args) - - def pop(self): - return _mscl.SensorOutputModes_pop(self) - - def append(self, x): - return _mscl.SensorOutputModes_append(self, x) - - def empty(self): - return _mscl.SensorOutputModes_empty(self) - - def size(self): - return _mscl.SensorOutputModes_size(self) - - def swap(self, v): - return _mscl.SensorOutputModes_swap(self, v) - - def begin(self): - return _mscl.SensorOutputModes_begin(self) - - def end(self): - return _mscl.SensorOutputModes_end(self) - - def rbegin(self): - return _mscl.SensorOutputModes_rbegin(self) - - def rend(self): - return _mscl.SensorOutputModes_rend(self) - - def clear(self): - return _mscl.SensorOutputModes_clear(self) - - def get_allocator(self): - return _mscl.SensorOutputModes_get_allocator(self) - - def pop_back(self): - return _mscl.SensorOutputModes_pop_back(self) - - def erase(self, *args): - return _mscl.SensorOutputModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorOutputModes_swiginit(self, _mscl.new_SensorOutputModes(*args)) - - def push_back(self, x): - return _mscl.SensorOutputModes_push_back(self, x) - - def front(self): - return _mscl.SensorOutputModes_front(self) - - def back(self): - return _mscl.SensorOutputModes_back(self) - - def assign(self, n, x): - return _mscl.SensorOutputModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorOutputModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorOutputModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorOutputModes_reserve(self, n) - - def capacity(self): - return _mscl.SensorOutputModes_capacity(self) - __swig_destroy__ = _mscl.delete_SensorOutputModes - -# Register SensorOutputModes in _mscl: -_mscl.SensorOutputModes_swigregister(SensorOutputModes) - -class CfcFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CfcFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CfcFilters___nonzero__(self) - - def __bool__(self): - return _mscl.CfcFilters___bool__(self) - - def __len__(self): - return _mscl.CfcFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.CfcFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CfcFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CfcFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CfcFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CfcFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CfcFilters___setitem__(self, *args) - - def pop(self): - return _mscl.CfcFilters_pop(self) - - def append(self, x): - return _mscl.CfcFilters_append(self, x) - - def empty(self): - return _mscl.CfcFilters_empty(self) - - def size(self): - return _mscl.CfcFilters_size(self) - - def swap(self, v): - return _mscl.CfcFilters_swap(self, v) - - def begin(self): - return _mscl.CfcFilters_begin(self) - - def end(self): - return _mscl.CfcFilters_end(self) - - def rbegin(self): - return _mscl.CfcFilters_rbegin(self) - - def rend(self): - return _mscl.CfcFilters_rend(self) - - def clear(self): - return _mscl.CfcFilters_clear(self) - - def get_allocator(self): - return _mscl.CfcFilters_get_allocator(self) - - def pop_back(self): - return _mscl.CfcFilters_pop_back(self) - - def erase(self, *args): - return _mscl.CfcFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.CfcFilters_swiginit(self, _mscl.new_CfcFilters(*args)) - - def push_back(self, x): - return _mscl.CfcFilters_push_back(self, x) - - def front(self): - return _mscl.CfcFilters_front(self) - - def back(self): - return _mscl.CfcFilters_back(self) - - def assign(self, n, x): - return _mscl.CfcFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.CfcFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.CfcFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.CfcFilters_reserve(self, n) - - def capacity(self): - return _mscl.CfcFilters_capacity(self) - __swig_destroy__ = _mscl.delete_CfcFilters - -# Register CfcFilters in _mscl: -_mscl.CfcFilters_swigregister(CfcFilters) - -class TransducerTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransducerTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransducerTypes___nonzero__(self) - - def __bool__(self): - return _mscl.TransducerTypes___bool__(self) - - def __len__(self): - return _mscl.TransducerTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransducerTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransducerTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransducerTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransducerTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransducerTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransducerTypes___setitem__(self, *args) - - def pop(self): - return _mscl.TransducerTypes_pop(self) - - def append(self, x): - return _mscl.TransducerTypes_append(self, x) - - def empty(self): - return _mscl.TransducerTypes_empty(self) - - def size(self): - return _mscl.TransducerTypes_size(self) - - def swap(self, v): - return _mscl.TransducerTypes_swap(self, v) - - def begin(self): - return _mscl.TransducerTypes_begin(self) - - def end(self): - return _mscl.TransducerTypes_end(self) - - def rbegin(self): - return _mscl.TransducerTypes_rbegin(self) - - def rend(self): - return _mscl.TransducerTypes_rend(self) - - def clear(self): - return _mscl.TransducerTypes_clear(self) - - def get_allocator(self): - return _mscl.TransducerTypes_get_allocator(self) - - def pop_back(self): - return _mscl.TransducerTypes_pop_back(self) - - def erase(self, *args): - return _mscl.TransducerTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.TransducerTypes_swiginit(self, _mscl.new_TransducerTypes(*args)) - - def push_back(self, x): - return _mscl.TransducerTypes_push_back(self, x) - - def front(self): - return _mscl.TransducerTypes_front(self) - - def back(self): - return _mscl.TransducerTypes_back(self) - - def assign(self, n, x): - return _mscl.TransducerTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransducerTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.TransducerTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.TransducerTypes_reserve(self, n) - - def capacity(self): - return _mscl.TransducerTypes_capacity(self) - __swig_destroy__ = _mscl.delete_TransducerTypes - -# Register TransducerTypes in _mscl: -_mscl.TransducerTypes_swigregister(TransducerTypes) - -class EepromMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EepromMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EepromMap___nonzero__(self) - - def __bool__(self): - return _mscl.EepromMap___bool__(self) - - def __len__(self): - return _mscl.EepromMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.EepromMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.EepromMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.EepromMap_has_key(self, key) - - def keys(self): - return _mscl.EepromMap_keys(self) - - def values(self): - return _mscl.EepromMap_values(self) - - def items(self): - return _mscl.EepromMap_items(self) - - def __contains__(self, key): - return _mscl.EepromMap___contains__(self, key) - - def key_iterator(self): - return _mscl.EepromMap_key_iterator(self) - - def value_iterator(self): - return _mscl.EepromMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.EepromMap___setitem__(self, *args) - - def asdict(self): - return _mscl.EepromMap_asdict(self) - - def __init__(self, *args): - _mscl.EepromMap_swiginit(self, _mscl.new_EepromMap(*args)) - - def empty(self): - return _mscl.EepromMap_empty(self) - - def size(self): - return _mscl.EepromMap_size(self) - - def swap(self, v): - return _mscl.EepromMap_swap(self, v) - - def begin(self): - return _mscl.EepromMap_begin(self) - - def end(self): - return _mscl.EepromMap_end(self) - - def rbegin(self): - return _mscl.EepromMap_rbegin(self) - - def rend(self): - return _mscl.EepromMap_rend(self) - - def clear(self): - return _mscl.EepromMap_clear(self) - - def get_allocator(self): - return _mscl.EepromMap_get_allocator(self) - - def count(self, x): - return _mscl.EepromMap_count(self, x) - - def erase(self, *args): - return _mscl.EepromMap_erase(self, *args) - - def find(self, x): - return _mscl.EepromMap_find(self, x) - - def lower_bound(self, x): - return _mscl.EepromMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.EepromMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_EepromMap - -# Register EepromMap in _mscl: -_mscl.EepromMap_swigregister(EepromMap) - -class DerivedChannelMasks(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DerivedChannelMasks_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DerivedChannelMasks___nonzero__(self) - - def __bool__(self): - return _mscl.DerivedChannelMasks___bool__(self) - - def __len__(self): - return _mscl.DerivedChannelMasks___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DerivedChannelMasks___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DerivedChannelMasks___delitem__(self, key) - - def has_key(self, key): - return _mscl.DerivedChannelMasks_has_key(self, key) - - def keys(self): - return _mscl.DerivedChannelMasks_keys(self) - - def values(self): - return _mscl.DerivedChannelMasks_values(self) - - def items(self): - return _mscl.DerivedChannelMasks_items(self) - - def __contains__(self, key): - return _mscl.DerivedChannelMasks___contains__(self, key) - - def key_iterator(self): - return _mscl.DerivedChannelMasks_key_iterator(self) - - def value_iterator(self): - return _mscl.DerivedChannelMasks_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DerivedChannelMasks___setitem__(self, *args) - - def asdict(self): - return _mscl.DerivedChannelMasks_asdict(self) - - def __init__(self, *args): - _mscl.DerivedChannelMasks_swiginit(self, _mscl.new_DerivedChannelMasks(*args)) - - def empty(self): - return _mscl.DerivedChannelMasks_empty(self) - - def size(self): - return _mscl.DerivedChannelMasks_size(self) - - def swap(self, v): - return _mscl.DerivedChannelMasks_swap(self, v) - - def begin(self): - return _mscl.DerivedChannelMasks_begin(self) - - def end(self): - return _mscl.DerivedChannelMasks_end(self) - - def rbegin(self): - return _mscl.DerivedChannelMasks_rbegin(self) - - def rend(self): - return _mscl.DerivedChannelMasks_rend(self) - - def clear(self): - return _mscl.DerivedChannelMasks_clear(self) - - def get_allocator(self): - return _mscl.DerivedChannelMasks_get_allocator(self) - - def count(self, x): - return _mscl.DerivedChannelMasks_count(self, x) - - def erase(self, *args): - return _mscl.DerivedChannelMasks_erase(self, *args) - - def find(self, x): - return _mscl.DerivedChannelMasks_find(self, x) - - def lower_bound(self, x): - return _mscl.DerivedChannelMasks_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DerivedChannelMasks_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DerivedChannelMasks - -# Register DerivedChannelMasks in _mscl: -_mscl.DerivedChannelMasks_swigregister(DerivedChannelMasks) - -class DeviceStatusMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusMap_keys(self) - - def values(self): - return _mscl.DeviceStatusMap_values(self) - - def items(self): - return _mscl.DeviceStatusMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusMap_swiginit(self, _mscl.new_DeviceStatusMap(*args)) - - def empty(self): - return _mscl.DeviceStatusMap_empty(self) - - def size(self): - return _mscl.DeviceStatusMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusMap_begin(self) - - def end(self): - return _mscl.DeviceStatusMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusMap - -# Register DeviceStatusMap in _mscl: -_mscl.DeviceStatusMap_swigregister(DeviceStatusMap) - -class DeviceStatusValueMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusValueMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusValueMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusValueMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusValueMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusValueMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusValueMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusValueMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusValueMap_keys(self) - - def values(self): - return _mscl.DeviceStatusValueMap_values(self) - - def items(self): - return _mscl.DeviceStatusValueMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusValueMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusValueMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusValueMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusValueMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusValueMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusValueMap_swiginit(self, _mscl.new_DeviceStatusValueMap(*args)) - - def empty(self): - return _mscl.DeviceStatusValueMap_empty(self) - - def size(self): - return _mscl.DeviceStatusValueMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusValueMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusValueMap_begin(self) - - def end(self): - return _mscl.DeviceStatusValueMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusValueMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusValueMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusValueMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusValueMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusValueMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusValueMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusValueMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusValueMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusValueMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusValueMap - -# Register DeviceStatusValueMap in _mscl: -_mscl.DeviceStatusValueMap_swigregister(DeviceStatusValueMap) - -class SampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.SampleRates___bool__(self) - - def __len__(self): - return _mscl.SampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.SampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.SampleRates_pop(self) - - def append(self, x): - return _mscl.SampleRates_append(self, x) - - def empty(self): - return _mscl.SampleRates_empty(self) - - def size(self): - return _mscl.SampleRates_size(self) - - def swap(self, v): - return _mscl.SampleRates_swap(self, v) - - def begin(self): - return _mscl.SampleRates_begin(self) - - def end(self): - return _mscl.SampleRates_end(self) - - def rbegin(self): - return _mscl.SampleRates_rbegin(self) - - def rend(self): - return _mscl.SampleRates_rend(self) - - def clear(self): - return _mscl.SampleRates_clear(self) - - def get_allocator(self): - return _mscl.SampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.SampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.SampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.SampleRates_swiginit(self, _mscl.new_SampleRates(*args)) - - def push_back(self, x): - return _mscl.SampleRates_push_back(self, x) - - def front(self): - return _mscl.SampleRates_front(self) - - def back(self): - return _mscl.SampleRates_back(self) - - def assign(self, n, x): - return _mscl.SampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.SampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.SampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.SampleRates_reserve(self, n) - - def capacity(self): - return _mscl.SampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_SampleRates - -# Register SampleRates in _mscl: -_mscl.SampleRates_swigregister(SampleRates) - -class ConfigIssues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConfigIssues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConfigIssues___nonzero__(self) - - def __bool__(self): - return _mscl.ConfigIssues___bool__(self) - - def __len__(self): - return _mscl.ConfigIssues___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConfigIssues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConfigIssues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConfigIssues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConfigIssues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConfigIssues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConfigIssues___setitem__(self, *args) - - def pop(self): - return _mscl.ConfigIssues_pop(self) - - def append(self, x): - return _mscl.ConfigIssues_append(self, x) - - def empty(self): - return _mscl.ConfigIssues_empty(self) - - def size(self): - return _mscl.ConfigIssues_size(self) - - def swap(self, v): - return _mscl.ConfigIssues_swap(self, v) - - def begin(self): - return _mscl.ConfigIssues_begin(self) - - def end(self): - return _mscl.ConfigIssues_end(self) - - def rbegin(self): - return _mscl.ConfigIssues_rbegin(self) - - def rend(self): - return _mscl.ConfigIssues_rend(self) - - def clear(self): - return _mscl.ConfigIssues_clear(self) - - def get_allocator(self): - return _mscl.ConfigIssues_get_allocator(self) - - def pop_back(self): - return _mscl.ConfigIssues_pop_back(self) - - def erase(self, *args): - return _mscl.ConfigIssues_erase(self, *args) - - def __init__(self, *args): - _mscl.ConfigIssues_swiginit(self, _mscl.new_ConfigIssues(*args)) - - def push_back(self, x): - return _mscl.ConfigIssues_push_back(self, x) - - def front(self): - return _mscl.ConfigIssues_front(self) - - def back(self): - return _mscl.ConfigIssues_back(self) - - def assign(self, n, x): - return _mscl.ConfigIssues_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConfigIssues_resize(self, *args) - - def insert(self, *args): - return _mscl.ConfigIssues_insert(self, *args) - - def reserve(self, n): - return _mscl.ConfigIssues_reserve(self, n) - - def capacity(self): - return _mscl.ConfigIssues_capacity(self) - __swig_destroy__ = _mscl.delete_ConfigIssues - -# Register ConfigIssues in _mscl: -_mscl.ConfigIssues_swigregister(ConfigIssues) - -class MipChannelFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelFields_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelFields___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelFields___bool__(self) - - def __len__(self): - return _mscl.MipChannelFields___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelFields___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelFields___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelFields___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelFields___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelFields___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelFields___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelFields_pop(self) - - def append(self, x): - return _mscl.MipChannelFields_append(self, x) - - def empty(self): - return _mscl.MipChannelFields_empty(self) - - def size(self): - return _mscl.MipChannelFields_size(self) - - def swap(self, v): - return _mscl.MipChannelFields_swap(self, v) - - def begin(self): - return _mscl.MipChannelFields_begin(self) - - def end(self): - return _mscl.MipChannelFields_end(self) - - def rbegin(self): - return _mscl.MipChannelFields_rbegin(self) - - def rend(self): - return _mscl.MipChannelFields_rend(self) - - def clear(self): - return _mscl.MipChannelFields_clear(self) - - def get_allocator(self): - return _mscl.MipChannelFields_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelFields_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelFields_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelFields_swiginit(self, _mscl.new_MipChannelFields(*args)) - - def push_back(self, x): - return _mscl.MipChannelFields_push_back(self, x) - - def front(self): - return _mscl.MipChannelFields_front(self) - - def back(self): - return _mscl.MipChannelFields_back(self) - - def assign(self, n, x): - return _mscl.MipChannelFields_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelFields_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelFields_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelFields_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelFields_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelFields - -# Register MipChannelFields in _mscl: -_mscl.MipChannelFields_swigregister(MipChannelFields) - -class MipCommands(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommands_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommands___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommands___bool__(self) - - def __len__(self): - return _mscl.MipCommands___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommands___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommands___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommands___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommands___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommands___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommands___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommands_pop(self) - - def append(self, x): - return _mscl.MipCommands_append(self, x) - - def empty(self): - return _mscl.MipCommands_empty(self) - - def size(self): - return _mscl.MipCommands_size(self) - - def swap(self, v): - return _mscl.MipCommands_swap(self, v) - - def begin(self): - return _mscl.MipCommands_begin(self) - - def end(self): - return _mscl.MipCommands_end(self) - - def rbegin(self): - return _mscl.MipCommands_rbegin(self) - - def rend(self): - return _mscl.MipCommands_rend(self) - - def clear(self): - return _mscl.MipCommands_clear(self) - - def get_allocator(self): - return _mscl.MipCommands_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommands_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommands_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommands_swiginit(self, _mscl.new_MipCommands(*args)) - - def push_back(self, x): - return _mscl.MipCommands_push_back(self, x) - - def front(self): - return _mscl.MipCommands_front(self) - - def back(self): - return _mscl.MipCommands_back(self) - - def assign(self, n, x): - return _mscl.MipCommands_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommands_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommands_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommands_reserve(self, n) - - def capacity(self): - return _mscl.MipCommands_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommands - -# Register MipCommands in _mscl: -_mscl.MipCommands_swigregister(MipCommands) - -class MipDataClasses(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataClasses_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataClasses___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataClasses___bool__(self) - - def __len__(self): - return _mscl.MipDataClasses___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataClasses___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataClasses___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataClasses___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataClasses___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataClasses___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataClasses___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataClasses_pop(self) - - def append(self, x): - return _mscl.MipDataClasses_append(self, x) - - def empty(self): - return _mscl.MipDataClasses_empty(self) - - def size(self): - return _mscl.MipDataClasses_size(self) - - def swap(self, v): - return _mscl.MipDataClasses_swap(self, v) - - def begin(self): - return _mscl.MipDataClasses_begin(self) - - def end(self): - return _mscl.MipDataClasses_end(self) - - def rbegin(self): - return _mscl.MipDataClasses_rbegin(self) - - def rend(self): - return _mscl.MipDataClasses_rend(self) - - def clear(self): - return _mscl.MipDataClasses_clear(self) - - def get_allocator(self): - return _mscl.MipDataClasses_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataClasses_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataClasses_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataClasses_swiginit(self, _mscl.new_MipDataClasses(*args)) - - def push_back(self, x): - return _mscl.MipDataClasses_push_back(self, x) - - def front(self): - return _mscl.MipDataClasses_front(self) - - def back(self): - return _mscl.MipDataClasses_back(self) - - def assign(self, n, x): - return _mscl.MipDataClasses_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataClasses_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataClasses_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataClasses_reserve(self, n) - - def capacity(self): - return _mscl.MipDataClasses_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataClasses - -# Register MipDataClasses in _mscl: -_mscl.MipDataClasses_swigregister(MipDataClasses) - -class MipChannelIdentifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelIdentifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelIdentifiers___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelIdentifiers___bool__(self) - - def __len__(self): - return _mscl.MipChannelIdentifiers___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelIdentifiers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelIdentifiers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelIdentifiers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelIdentifiers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelIdentifiers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelIdentifiers___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelIdentifiers_pop(self) - - def append(self, x): - return _mscl.MipChannelIdentifiers_append(self, x) - - def empty(self): - return _mscl.MipChannelIdentifiers_empty(self) - - def size(self): - return _mscl.MipChannelIdentifiers_size(self) - - def swap(self, v): - return _mscl.MipChannelIdentifiers_swap(self, v) - - def begin(self): - return _mscl.MipChannelIdentifiers_begin(self) - - def end(self): - return _mscl.MipChannelIdentifiers_end(self) - - def rbegin(self): - return _mscl.MipChannelIdentifiers_rbegin(self) - - def rend(self): - return _mscl.MipChannelIdentifiers_rend(self) - - def clear(self): - return _mscl.MipChannelIdentifiers_clear(self) - - def get_allocator(self): - return _mscl.MipChannelIdentifiers_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelIdentifiers_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelIdentifiers_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelIdentifiers_swiginit(self, _mscl.new_MipChannelIdentifiers(*args)) - - def push_back(self, x): - return _mscl.MipChannelIdentifiers_push_back(self, x) - - def front(self): - return _mscl.MipChannelIdentifiers_front(self) - - def back(self): - return _mscl.MipChannelIdentifiers_back(self) - - def assign(self, n, x): - return _mscl.MipChannelIdentifiers_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelIdentifiers_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelIdentifiers_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelIdentifiers_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelIdentifiers_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelIdentifiers - -# Register MipChannelIdentifiers in _mscl: -_mscl.MipChannelIdentifiers_swigregister(MipChannelIdentifiers) - -class MipCommandSet(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandSet_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandSet___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandSet___bool__(self) - - def __len__(self): - return _mscl.MipCommandSet___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandSet___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandSet___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandSet___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandSet___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandSet___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandSet___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandSet_pop(self) - - def append(self, x): - return _mscl.MipCommandSet_append(self, x) - - def empty(self): - return _mscl.MipCommandSet_empty(self) - - def size(self): - return _mscl.MipCommandSet_size(self) - - def swap(self, v): - return _mscl.MipCommandSet_swap(self, v) - - def begin(self): - return _mscl.MipCommandSet_begin(self) - - def end(self): - return _mscl.MipCommandSet_end(self) - - def rbegin(self): - return _mscl.MipCommandSet_rbegin(self) - - def rend(self): - return _mscl.MipCommandSet_rend(self) - - def clear(self): - return _mscl.MipCommandSet_clear(self) - - def get_allocator(self): - return _mscl.MipCommandSet_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandSet_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandSet_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandSet_swiginit(self, _mscl.new_MipCommandSet(*args)) - - def push_back(self, x): - return _mscl.MipCommandSet_push_back(self, x) - - def front(self): - return _mscl.MipCommandSet_front(self) - - def back(self): - return _mscl.MipCommandSet_back(self) - - def assign(self, n, x): - return _mscl.MipCommandSet_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandSet_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandSet_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandSet_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandSet_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandSet - -# Register MipCommandSet in _mscl: -_mscl.MipCommandSet_swigregister(MipCommandSet) - -class MipFieldValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipFieldValues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipFieldValues___nonzero__(self) - - def __bool__(self): - return _mscl.MipFieldValues___bool__(self) - - def __len__(self): - return _mscl.MipFieldValues___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipFieldValues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipFieldValues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipFieldValues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipFieldValues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipFieldValues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipFieldValues___setitem__(self, *args) - - def pop(self): - return _mscl.MipFieldValues_pop(self) - - def append(self, x): - return _mscl.MipFieldValues_append(self, x) - - def empty(self): - return _mscl.MipFieldValues_empty(self) - - def size(self): - return _mscl.MipFieldValues_size(self) - - def swap(self, v): - return _mscl.MipFieldValues_swap(self, v) - - def begin(self): - return _mscl.MipFieldValues_begin(self) - - def end(self): - return _mscl.MipFieldValues_end(self) - - def rbegin(self): - return _mscl.MipFieldValues_rbegin(self) - - def rend(self): - return _mscl.MipFieldValues_rend(self) - - def clear(self): - return _mscl.MipFieldValues_clear(self) - - def get_allocator(self): - return _mscl.MipFieldValues_get_allocator(self) - - def pop_back(self): - return _mscl.MipFieldValues_pop_back(self) - - def erase(self, *args): - return _mscl.MipFieldValues_erase(self, *args) - - def __init__(self, *args): - _mscl.MipFieldValues_swiginit(self, _mscl.new_MipFieldValues(*args)) - - def push_back(self, x): - return _mscl.MipFieldValues_push_back(self, x) - - def front(self): - return _mscl.MipFieldValues_front(self) - - def back(self): - return _mscl.MipFieldValues_back(self) - - def assign(self, n, x): - return _mscl.MipFieldValues_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipFieldValues_resize(self, *args) - - def insert(self, *args): - return _mscl.MipFieldValues_insert(self, *args) - - def reserve(self, n): - return _mscl.MipFieldValues_reserve(self, n) - - def capacity(self): - return _mscl.MipFieldValues_capacity(self) - __swig_destroy__ = _mscl.delete_MipFieldValues - -# Register MipFieldValues in _mscl: -_mscl.MipFieldValues_swigregister(MipFieldValues) - -class MipCommandParamPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipCommandParamPair_swiginit(self, _mscl.new_MipCommandParamPair(*args)) - first = property(_mscl.MipCommandParamPair_first_get, _mscl.MipCommandParamPair_first_set) - second = property(_mscl.MipCommandParamPair_second_get, _mscl.MipCommandParamPair_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_MipCommandParamPair - -# Register MipCommandParamPair in _mscl: -_mscl.MipCommandParamPair_swigregister(MipCommandParamPair) - -class MipCommandParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandParameters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandParameters___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandParameters___bool__(self) - - def __len__(self): - return _mscl.MipCommandParameters___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandParameters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandParameters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandParameters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandParameters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandParameters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandParameters___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandParameters_pop(self) - - def append(self, x): - return _mscl.MipCommandParameters_append(self, x) - - def empty(self): - return _mscl.MipCommandParameters_empty(self) - - def size(self): - return _mscl.MipCommandParameters_size(self) - - def swap(self, v): - return _mscl.MipCommandParameters_swap(self, v) - - def begin(self): - return _mscl.MipCommandParameters_begin(self) - - def end(self): - return _mscl.MipCommandParameters_end(self) - - def rbegin(self): - return _mscl.MipCommandParameters_rbegin(self) - - def rend(self): - return _mscl.MipCommandParameters_rend(self) - - def clear(self): - return _mscl.MipCommandParameters_clear(self) - - def get_allocator(self): - return _mscl.MipCommandParameters_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandParameters_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandParameters_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandParameters_swiginit(self, _mscl.new_MipCommandParameters(*args)) - - def push_back(self, x): - return _mscl.MipCommandParameters_push_back(self, x) - - def front(self): - return _mscl.MipCommandParameters_front(self) - - def back(self): - return _mscl.MipCommandParameters_back(self) - - def assign(self, n, x): - return _mscl.MipCommandParameters_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandParameters_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandParameters_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandParameters_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandParameters_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandParameters - -# Register MipCommandParameters in _mscl: -_mscl.MipCommandParameters_swigregister(MipCommandParameters) - -class ChannelIndex(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ChannelIndex_swiginit(self, _mscl.new_ChannelIndex(*args)) - first = property(_mscl.ChannelIndex_first_get, _mscl.ChannelIndex_first_set) - second = property(_mscl.ChannelIndex_second_get, _mscl.ChannelIndex_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_ChannelIndex - -# Register ChannelIndex in _mscl: -_mscl.ChannelIndex_swigregister(ChannelIndex) - -class ChannelIndices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelIndices_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelIndices___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelIndices___bool__(self) - - def __len__(self): - return _mscl.ChannelIndices___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelIndices___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelIndices___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelIndices___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelIndices___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelIndices___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelIndices___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelIndices_pop(self) - - def append(self, x): - return _mscl.ChannelIndices_append(self, x) - - def empty(self): - return _mscl.ChannelIndices_empty(self) - - def size(self): - return _mscl.ChannelIndices_size(self) - - def swap(self, v): - return _mscl.ChannelIndices_swap(self, v) - - def begin(self): - return _mscl.ChannelIndices_begin(self) - - def end(self): - return _mscl.ChannelIndices_end(self) - - def rbegin(self): - return _mscl.ChannelIndices_rbegin(self) - - def rend(self): - return _mscl.ChannelIndices_rend(self) - - def clear(self): - return _mscl.ChannelIndices_clear(self) - - def get_allocator(self): - return _mscl.ChannelIndices_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelIndices_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelIndices_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelIndices_swiginit(self, _mscl.new_ChannelIndices(*args)) - - def push_back(self, x): - return _mscl.ChannelIndices_push_back(self, x) - - def front(self): - return _mscl.ChannelIndices_front(self) - - def back(self): - return _mscl.ChannelIndices_back(self) - - def assign(self, n, x): - return _mscl.ChannelIndices_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelIndices_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelIndices_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelIndices_reserve(self, n) - - def capacity(self): - return _mscl.ChannelIndices_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelIndices - -# Register ChannelIndices in _mscl: -_mscl.ChannelIndices_swigregister(ChannelIndices) - -class ChannelFieldQualifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelFieldQualifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelFieldQualifiers___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelFieldQualifiers___bool__(self) - - def __len__(self): - return _mscl.ChannelFieldQualifiers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelFieldQualifiers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelFieldQualifiers___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelFieldQualifiers_has_key(self, key) - - def keys(self): - return _mscl.ChannelFieldQualifiers_keys(self) - - def values(self): - return _mscl.ChannelFieldQualifiers_values(self) - - def items(self): - return _mscl.ChannelFieldQualifiers_items(self) - - def __contains__(self, key): - return _mscl.ChannelFieldQualifiers___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelFieldQualifiers_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelFieldQualifiers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelFieldQualifiers___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelFieldQualifiers_asdict(self) - - def __init__(self, *args): - _mscl.ChannelFieldQualifiers_swiginit(self, _mscl.new_ChannelFieldQualifiers(*args)) - - def empty(self): - return _mscl.ChannelFieldQualifiers_empty(self) - - def size(self): - return _mscl.ChannelFieldQualifiers_size(self) - - def swap(self, v): - return _mscl.ChannelFieldQualifiers_swap(self, v) - - def begin(self): - return _mscl.ChannelFieldQualifiers_begin(self) - - def end(self): - return _mscl.ChannelFieldQualifiers_end(self) - - def rbegin(self): - return _mscl.ChannelFieldQualifiers_rbegin(self) - - def rend(self): - return _mscl.ChannelFieldQualifiers_rend(self) - - def clear(self): - return _mscl.ChannelFieldQualifiers_clear(self) - - def get_allocator(self): - return _mscl.ChannelFieldQualifiers_get_allocator(self) - - def count(self, x): - return _mscl.ChannelFieldQualifiers_count(self, x) - - def erase(self, *args): - return _mscl.ChannelFieldQualifiers_erase(self, *args) - - def find(self, x): - return _mscl.ChannelFieldQualifiers_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelFieldQualifiers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelFieldQualifiers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelFieldQualifiers - -# Register ChannelFieldQualifiers in _mscl: -_mscl.ChannelFieldQualifiers_swigregister(ChannelFieldQualifiers) - -class GnssReceivers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssReceivers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssReceivers___nonzero__(self) - - def __bool__(self): - return _mscl.GnssReceivers___bool__(self) - - def __len__(self): - return _mscl.GnssReceivers___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssReceivers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssReceivers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssReceivers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssReceivers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssReceivers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssReceivers___setitem__(self, *args) - - def pop(self): - return _mscl.GnssReceivers_pop(self) - - def append(self, x): - return _mscl.GnssReceivers_append(self, x) - - def empty(self): - return _mscl.GnssReceivers_empty(self) - - def size(self): - return _mscl.GnssReceivers_size(self) - - def swap(self, v): - return _mscl.GnssReceivers_swap(self, v) - - def begin(self): - return _mscl.GnssReceivers_begin(self) - - def end(self): - return _mscl.GnssReceivers_end(self) - - def rbegin(self): - return _mscl.GnssReceivers_rbegin(self) - - def rend(self): - return _mscl.GnssReceivers_rend(self) - - def clear(self): - return _mscl.GnssReceivers_clear(self) - - def get_allocator(self): - return _mscl.GnssReceivers_get_allocator(self) - - def pop_back(self): - return _mscl.GnssReceivers_pop_back(self) - - def erase(self, *args): - return _mscl.GnssReceivers_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssReceivers_swiginit(self, _mscl.new_GnssReceivers(*args)) - - def push_back(self, x): - return _mscl.GnssReceivers_push_back(self, x) - - def front(self): - return _mscl.GnssReceivers_front(self) - - def back(self): - return _mscl.GnssReceivers_back(self) - - def assign(self, n, x): - return _mscl.GnssReceivers_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssReceivers_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssReceivers_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssReceivers_reserve(self, n) - - def capacity(self): - return _mscl.GnssReceivers_capacity(self) - __swig_destroy__ = _mscl.delete_GnssReceivers - -# Register GnssReceivers in _mscl: -_mscl.GnssReceivers_swigregister(GnssReceivers) - -class SensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRanges___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRanges___bool__(self) - - def __len__(self): - return _mscl.SensorRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorRanges___setitem__(self, *args) - - def pop(self): - return _mscl.SensorRanges_pop(self) - - def append(self, x): - return _mscl.SensorRanges_append(self, x) - - def empty(self): - return _mscl.SensorRanges_empty(self) - - def size(self): - return _mscl.SensorRanges_size(self) - - def swap(self, v): - return _mscl.SensorRanges_swap(self, v) - - def begin(self): - return _mscl.SensorRanges_begin(self) - - def end(self): - return _mscl.SensorRanges_end(self) - - def rbegin(self): - return _mscl.SensorRanges_rbegin(self) - - def rend(self): - return _mscl.SensorRanges_rend(self) - - def clear(self): - return _mscl.SensorRanges_clear(self) - - def get_allocator(self): - return _mscl.SensorRanges_get_allocator(self) - - def pop_back(self): - return _mscl.SensorRanges_pop_back(self) - - def erase(self, *args): - return _mscl.SensorRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorRanges_swiginit(self, _mscl.new_SensorRanges(*args)) - - def push_back(self, x): - return _mscl.SensorRanges_push_back(self, x) - - def front(self): - return _mscl.SensorRanges_front(self) - - def back(self): - return _mscl.SensorRanges_back(self) - - def assign(self, n, x): - return _mscl.SensorRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorRanges_reserve(self, n) - - def capacity(self): - return _mscl.SensorRanges_capacity(self) - __swig_destroy__ = _mscl.delete_SensorRanges - -# Register SensorRanges in _mscl: -_mscl.SensorRanges_swigregister(SensorRanges) - -class SensorRangeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRangeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRangeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRangeOptions___bool__(self) - - def __len__(self): - return _mscl.SensorRangeOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SensorRangeOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SensorRangeOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.SensorRangeOptions_has_key(self, key) - - def keys(self): - return _mscl.SensorRangeOptions_keys(self) - - def values(self): - return _mscl.SensorRangeOptions_values(self) - - def items(self): - return _mscl.SensorRangeOptions_items(self) - - def __contains__(self, key): - return _mscl.SensorRangeOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.SensorRangeOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.SensorRangeOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SensorRangeOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.SensorRangeOptions_asdict(self) - - def __init__(self, *args): - _mscl.SensorRangeOptions_swiginit(self, _mscl.new_SensorRangeOptions(*args)) - - def empty(self): - return _mscl.SensorRangeOptions_empty(self) - - def size(self): - return _mscl.SensorRangeOptions_size(self) - - def swap(self, v): - return _mscl.SensorRangeOptions_swap(self, v) - - def begin(self): - return _mscl.SensorRangeOptions_begin(self) - - def end(self): - return _mscl.SensorRangeOptions_end(self) - - def rbegin(self): - return _mscl.SensorRangeOptions_rbegin(self) - - def rend(self): - return _mscl.SensorRangeOptions_rend(self) - - def clear(self): - return _mscl.SensorRangeOptions_clear(self) - - def get_allocator(self): - return _mscl.SensorRangeOptions_get_allocator(self) - - def count(self, x): - return _mscl.SensorRangeOptions_count(self, x) - - def erase(self, *args): - return _mscl.SensorRangeOptions_erase(self, *args) - - def find(self, x): - return _mscl.SensorRangeOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.SensorRangeOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SensorRangeOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SensorRangeOptions - -# Register SensorRangeOptions in _mscl: -_mscl.SensorRangeOptions_swigregister(SensorRangeOptions) - -class CommPortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommPortInfo_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommPortInfo___nonzero__(self) - - def __bool__(self): - return _mscl.CommPortInfo___bool__(self) - - def __len__(self): - return _mscl.CommPortInfo___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommPortInfo___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommPortInfo___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommPortInfo___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommPortInfo___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommPortInfo___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommPortInfo___setitem__(self, *args) - - def pop(self): - return _mscl.CommPortInfo_pop(self) - - def append(self, x): - return _mscl.CommPortInfo_append(self, x) - - def empty(self): - return _mscl.CommPortInfo_empty(self) - - def size(self): - return _mscl.CommPortInfo_size(self) - - def swap(self, v): - return _mscl.CommPortInfo_swap(self, v) - - def begin(self): - return _mscl.CommPortInfo_begin(self) - - def end(self): - return _mscl.CommPortInfo_end(self) - - def rbegin(self): - return _mscl.CommPortInfo_rbegin(self) - - def rend(self): - return _mscl.CommPortInfo_rend(self) - - def clear(self): - return _mscl.CommPortInfo_clear(self) - - def get_allocator(self): - return _mscl.CommPortInfo_get_allocator(self) - - def pop_back(self): - return _mscl.CommPortInfo_pop_back(self) - - def erase(self, *args): - return _mscl.CommPortInfo_erase(self, *args) - - def __init__(self, *args): - _mscl.CommPortInfo_swiginit(self, _mscl.new_CommPortInfo(*args)) - - def push_back(self, x): - return _mscl.CommPortInfo_push_back(self, x) - - def front(self): - return _mscl.CommPortInfo_front(self) - - def back(self): - return _mscl.CommPortInfo_back(self) - - def assign(self, n, x): - return _mscl.CommPortInfo_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommPortInfo_resize(self, *args) - - def insert(self, *args): - return _mscl.CommPortInfo_insert(self, *args) - - def reserve(self, n): - return _mscl.CommPortInfo_reserve(self, n) - - def capacity(self): - return _mscl.CommPortInfo_capacity(self) - __swig_destroy__ = _mscl.delete_CommPortInfo - -# Register CommPortInfo in _mscl: -_mscl.CommPortInfo_swigregister(CommPortInfo) - -class EventTriggerStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTriggerStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTriggerStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventTriggerStatus___bool__(self) - - def __len__(self): - return _mscl.EventTriggerStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTriggerStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTriggerStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTriggerStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTriggerStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTriggerStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTriggerStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventTriggerStatus_pop(self) - - def append(self, x): - return _mscl.EventTriggerStatus_append(self, x) - - def empty(self): - return _mscl.EventTriggerStatus_empty(self) - - def size(self): - return _mscl.EventTriggerStatus_size(self) - - def swap(self, v): - return _mscl.EventTriggerStatus_swap(self, v) - - def begin(self): - return _mscl.EventTriggerStatus_begin(self) - - def end(self): - return _mscl.EventTriggerStatus_end(self) - - def rbegin(self): - return _mscl.EventTriggerStatus_rbegin(self) - - def rend(self): - return _mscl.EventTriggerStatus_rend(self) - - def clear(self): - return _mscl.EventTriggerStatus_clear(self) - - def get_allocator(self): - return _mscl.EventTriggerStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventTriggerStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventTriggerStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTriggerStatus_swiginit(self, _mscl.new_EventTriggerStatus(*args)) - - def push_back(self, x): - return _mscl.EventTriggerStatus_push_back(self, x) - - def front(self): - return _mscl.EventTriggerStatus_front(self) - - def back(self): - return _mscl.EventTriggerStatus_back(self) - - def assign(self, n, x): - return _mscl.EventTriggerStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTriggerStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTriggerStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTriggerStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventTriggerStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventTriggerStatus - -# Register EventTriggerStatus in _mscl: -_mscl.EventTriggerStatus_swigregister(EventTriggerStatus) - -class EventActionStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventActionStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventActionStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventActionStatus___bool__(self) - - def __len__(self): - return _mscl.EventActionStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventActionStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventActionStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventActionStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventActionStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventActionStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventActionStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventActionStatus_pop(self) - - def append(self, x): - return _mscl.EventActionStatus_append(self, x) - - def empty(self): - return _mscl.EventActionStatus_empty(self) - - def size(self): - return _mscl.EventActionStatus_size(self) - - def swap(self, v): - return _mscl.EventActionStatus_swap(self, v) - - def begin(self): - return _mscl.EventActionStatus_begin(self) - - def end(self): - return _mscl.EventActionStatus_end(self) - - def rbegin(self): - return _mscl.EventActionStatus_rbegin(self) - - def rend(self): - return _mscl.EventActionStatus_rend(self) - - def clear(self): - return _mscl.EventActionStatus_clear(self) - - def get_allocator(self): - return _mscl.EventActionStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventActionStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventActionStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventActionStatus_swiginit(self, _mscl.new_EventActionStatus(*args)) - - def push_back(self, x): - return _mscl.EventActionStatus_push_back(self, x) - - def front(self): - return _mscl.EventActionStatus_front(self) - - def back(self): - return _mscl.EventActionStatus_back(self) - - def assign(self, n, x): - return _mscl.EventActionStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventActionStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventActionStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventActionStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventActionStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventActionStatus - -# Register EventActionStatus in _mscl: -_mscl.EventActionStatus_swigregister(EventActionStatus) - -class ChannelGroups(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroups_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroups___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroups___bool__(self) - - def __len__(self): - return _mscl.ChannelGroups___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroups___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroups___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroups___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroups___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroups___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroups___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroups_pop(self) - - def append(self, x): - return _mscl.ChannelGroups_append(self, x) - - def empty(self): - return _mscl.ChannelGroups_empty(self) - - def size(self): - return _mscl.ChannelGroups_size(self) - - def swap(self, v): - return _mscl.ChannelGroups_swap(self, v) - - def begin(self): - return _mscl.ChannelGroups_begin(self) - - def end(self): - return _mscl.ChannelGroups_end(self) - - def rbegin(self): - return _mscl.ChannelGroups_rbegin(self) - - def rend(self): - return _mscl.ChannelGroups_rend(self) - - def clear(self): - return _mscl.ChannelGroups_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroups_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroups_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroups_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroups_swiginit(self, _mscl.new_ChannelGroups(*args)) - - def push_back(self, x): - return _mscl.ChannelGroups_push_back(self, x) - - def front(self): - return _mscl.ChannelGroups_front(self) - - def back(self): - return _mscl.ChannelGroups_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroups_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroups_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroups_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroups_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroups_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroups - -# Register ChannelGroups in _mscl: -_mscl.ChannelGroups_swigregister(ChannelGroups) - -class WirelessChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessChannels___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessChannels___bool__(self) - - def __len__(self): - return _mscl.WirelessChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessChannels___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessChannels_pop(self) - - def append(self, x): - return _mscl.WirelessChannels_append(self, x) - - def empty(self): - return _mscl.WirelessChannels_empty(self) - - def size(self): - return _mscl.WirelessChannels_size(self) - - def swap(self, v): - return _mscl.WirelessChannels_swap(self, v) - - def begin(self): - return _mscl.WirelessChannels_begin(self) - - def end(self): - return _mscl.WirelessChannels_end(self) - - def rbegin(self): - return _mscl.WirelessChannels_rbegin(self) - - def rend(self): - return _mscl.WirelessChannels_rend(self) - - def clear(self): - return _mscl.WirelessChannels_clear(self) - - def get_allocator(self): - return _mscl.WirelessChannels_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessChannels_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessChannels_swiginit(self, _mscl.new_WirelessChannels(*args)) - - def push_back(self, x): - return _mscl.WirelessChannels_push_back(self, x) - - def front(self): - return _mscl.WirelessChannels_front(self) - - def back(self): - return _mscl.WirelessChannels_back(self) - - def assign(self, n, x): - return _mscl.WirelessChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessChannels_reserve(self, n) - - def capacity(self): - return _mscl.WirelessChannels_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessChannels - -# Register WirelessChannels in _mscl: -_mscl.WirelessChannels_swigregister(WirelessChannels) - -class DamageAngles(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DamageAngles_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DamageAngles___nonzero__(self) - - def __bool__(self): - return _mscl.DamageAngles___bool__(self) - - def __len__(self): - return _mscl.DamageAngles___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DamageAngles___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DamageAngles___delitem__(self, key) - - def has_key(self, key): - return _mscl.DamageAngles_has_key(self, key) - - def keys(self): - return _mscl.DamageAngles_keys(self) - - def values(self): - return _mscl.DamageAngles_values(self) - - def items(self): - return _mscl.DamageAngles_items(self) - - def __contains__(self, key): - return _mscl.DamageAngles___contains__(self, key) - - def key_iterator(self): - return _mscl.DamageAngles_key_iterator(self) - - def value_iterator(self): - return _mscl.DamageAngles_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DamageAngles___setitem__(self, *args) - - def asdict(self): - return _mscl.DamageAngles_asdict(self) - - def __init__(self, *args): - _mscl.DamageAngles_swiginit(self, _mscl.new_DamageAngles(*args)) - - def empty(self): - return _mscl.DamageAngles_empty(self) - - def size(self): - return _mscl.DamageAngles_size(self) - - def swap(self, v): - return _mscl.DamageAngles_swap(self, v) - - def begin(self): - return _mscl.DamageAngles_begin(self) - - def end(self): - return _mscl.DamageAngles_end(self) - - def rbegin(self): - return _mscl.DamageAngles_rbegin(self) - - def rend(self): - return _mscl.DamageAngles_rend(self) - - def clear(self): - return _mscl.DamageAngles_clear(self) - - def get_allocator(self): - return _mscl.DamageAngles_get_allocator(self) - - def count(self, x): - return _mscl.DamageAngles_count(self, x) - - def erase(self, *args): - return _mscl.DamageAngles_erase(self, *args) - - def find(self, x): - return _mscl.DamageAngles_find(self, x) - - def lower_bound(self, x): - return _mscl.DamageAngles_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DamageAngles_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DamageAngles - -# Register DamageAngles in _mscl: -_mscl.DamageAngles_swigregister(DamageAngles) - -class SnCurveSegments(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SnCurveSegments_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SnCurveSegments___nonzero__(self) - - def __bool__(self): - return _mscl.SnCurveSegments___bool__(self) - - def __len__(self): - return _mscl.SnCurveSegments___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SnCurveSegments___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SnCurveSegments___delitem__(self, key) - - def has_key(self, key): - return _mscl.SnCurveSegments_has_key(self, key) - - def keys(self): - return _mscl.SnCurveSegments_keys(self) - - def values(self): - return _mscl.SnCurveSegments_values(self) - - def items(self): - return _mscl.SnCurveSegments_items(self) - - def __contains__(self, key): - return _mscl.SnCurveSegments___contains__(self, key) - - def key_iterator(self): - return _mscl.SnCurveSegments_key_iterator(self) - - def value_iterator(self): - return _mscl.SnCurveSegments_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SnCurveSegments___setitem__(self, *args) - - def asdict(self): - return _mscl.SnCurveSegments_asdict(self) - - def __init__(self, *args): - _mscl.SnCurveSegments_swiginit(self, _mscl.new_SnCurveSegments(*args)) - - def empty(self): - return _mscl.SnCurveSegments_empty(self) - - def size(self): - return _mscl.SnCurveSegments_size(self) - - def swap(self, v): - return _mscl.SnCurveSegments_swap(self, v) - - def begin(self): - return _mscl.SnCurveSegments_begin(self) - - def end(self): - return _mscl.SnCurveSegments_end(self) - - def rbegin(self): - return _mscl.SnCurveSegments_rbegin(self) - - def rend(self): - return _mscl.SnCurveSegments_rend(self) - - def clear(self): - return _mscl.SnCurveSegments_clear(self) - - def get_allocator(self): - return _mscl.SnCurveSegments_get_allocator(self) - - def count(self, x): - return _mscl.SnCurveSegments_count(self, x) - - def erase(self, *args): - return _mscl.SnCurveSegments_erase(self, *args) - - def find(self, x): - return _mscl.SnCurveSegments_find(self, x) - - def lower_bound(self, x): - return _mscl.SnCurveSegments_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SnCurveSegments_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SnCurveSegments - -# Register SnCurveSegments in _mscl: -_mscl.SnCurveSegments_swigregister(SnCurveSegments) - -class RfSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RfSweep_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RfSweep___nonzero__(self) - - def __bool__(self): - return _mscl.RfSweep___bool__(self) - - def __len__(self): - return _mscl.RfSweep___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.RfSweep___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.RfSweep___delitem__(self, key) - - def has_key(self, key): - return _mscl.RfSweep_has_key(self, key) - - def keys(self): - return _mscl.RfSweep_keys(self) - - def values(self): - return _mscl.RfSweep_values(self) - - def items(self): - return _mscl.RfSweep_items(self) - - def __contains__(self, key): - return _mscl.RfSweep___contains__(self, key) - - def key_iterator(self): - return _mscl.RfSweep_key_iterator(self) - - def value_iterator(self): - return _mscl.RfSweep_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.RfSweep___setitem__(self, *args) - - def asdict(self): - return _mscl.RfSweep_asdict(self) - - def __init__(self, *args): - _mscl.RfSweep_swiginit(self, _mscl.new_RfSweep(*args)) - - def empty(self): - return _mscl.RfSweep_empty(self) - - def size(self): - return _mscl.RfSweep_size(self) - - def swap(self, v): - return _mscl.RfSweep_swap(self, v) - - def begin(self): - return _mscl.RfSweep_begin(self) - - def end(self): - return _mscl.RfSweep_end(self) - - def rbegin(self): - return _mscl.RfSweep_rbegin(self) - - def rend(self): - return _mscl.RfSweep_rend(self) - - def clear(self): - return _mscl.RfSweep_clear(self) - - def get_allocator(self): - return _mscl.RfSweep_get_allocator(self) - - def count(self, x): - return _mscl.RfSweep_count(self, x) - - def erase(self, *args): - return _mscl.RfSweep_erase(self, *args) - - def find(self, x): - return _mscl.RfSweep_find(self, x) - - def lower_bound(self, x): - return _mscl.RfSweep_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.RfSweep_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_RfSweep - -# Register RfSweep in _mscl: -_mscl.RfSweep_swigregister(RfSweep) - -class Triggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Triggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Triggers___nonzero__(self) - - def __bool__(self): - return _mscl.Triggers___bool__(self) - - def __len__(self): - return _mscl.Triggers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.Triggers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.Triggers___delitem__(self, key) - - def has_key(self, key): - return _mscl.Triggers_has_key(self, key) - - def keys(self): - return _mscl.Triggers_keys(self) - - def values(self): - return _mscl.Triggers_values(self) - - def items(self): - return _mscl.Triggers_items(self) - - def __contains__(self, key): - return _mscl.Triggers___contains__(self, key) - - def key_iterator(self): - return _mscl.Triggers_key_iterator(self) - - def value_iterator(self): - return _mscl.Triggers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.Triggers___setitem__(self, *args) - - def asdict(self): - return _mscl.Triggers_asdict(self) - - def __init__(self, *args): - _mscl.Triggers_swiginit(self, _mscl.new_Triggers(*args)) - - def empty(self): - return _mscl.Triggers_empty(self) - - def size(self): - return _mscl.Triggers_size(self) - - def swap(self, v): - return _mscl.Triggers_swap(self, v) - - def begin(self): - return _mscl.Triggers_begin(self) - - def end(self): - return _mscl.Triggers_end(self) - - def rbegin(self): - return _mscl.Triggers_rbegin(self) - - def rend(self): - return _mscl.Triggers_rend(self) - - def clear(self): - return _mscl.Triggers_clear(self) - - def get_allocator(self): - return _mscl.Triggers_get_allocator(self) - - def count(self, x): - return _mscl.Triggers_count(self, x) - - def erase(self, *args): - return _mscl.Triggers_erase(self, *args) - - def find(self, x): - return _mscl.Triggers_find(self, x) - - def lower_bound(self, x): - return _mscl.Triggers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.Triggers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_Triggers - -# Register Triggers in _mscl: -_mscl.Triggers_swigregister(Triggers) - -class ChannelCalMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelCalMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelCalMap___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelCalMap___bool__(self) - - def __len__(self): - return _mscl.ChannelCalMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelCalMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelCalMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelCalMap_has_key(self, key) - - def keys(self): - return _mscl.ChannelCalMap_keys(self) - - def values(self): - return _mscl.ChannelCalMap_values(self) - - def items(self): - return _mscl.ChannelCalMap_items(self) - - def __contains__(self, key): - return _mscl.ChannelCalMap___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelCalMap_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelCalMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelCalMap___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelCalMap_asdict(self) - - def __init__(self, *args): - _mscl.ChannelCalMap_swiginit(self, _mscl.new_ChannelCalMap(*args)) - - def empty(self): - return _mscl.ChannelCalMap_empty(self) - - def size(self): - return _mscl.ChannelCalMap_size(self) - - def swap(self, v): - return _mscl.ChannelCalMap_swap(self, v) - - def begin(self): - return _mscl.ChannelCalMap_begin(self) - - def end(self): - return _mscl.ChannelCalMap_end(self) - - def rbegin(self): - return _mscl.ChannelCalMap_rbegin(self) - - def rend(self): - return _mscl.ChannelCalMap_rend(self) - - def clear(self): - return _mscl.ChannelCalMap_clear(self) - - def get_allocator(self): - return _mscl.ChannelCalMap_get_allocator(self) - - def count(self, x): - return _mscl.ChannelCalMap_count(self, x) - - def erase(self, *args): - return _mscl.ChannelCalMap_erase(self, *args) - - def find(self, x): - return _mscl.ChannelCalMap_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelCalMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelCalMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelCalMap - -# Register ChannelCalMap in _mscl: -_mscl.ChannelCalMap_swigregister(ChannelCalMap) - -class WirelessPollData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessPollData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessPollData___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessPollData___bool__(self) - - def __len__(self): - return _mscl.WirelessPollData___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.WirelessPollData___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.WirelessPollData___delitem__(self, key) - - def has_key(self, key): - return _mscl.WirelessPollData_has_key(self, key) - - def keys(self): - return _mscl.WirelessPollData_keys(self) - - def values(self): - return _mscl.WirelessPollData_values(self) - - def items(self): - return _mscl.WirelessPollData_items(self) - - def __contains__(self, key): - return _mscl.WirelessPollData___contains__(self, key) - - def key_iterator(self): - return _mscl.WirelessPollData_key_iterator(self) - - def value_iterator(self): - return _mscl.WirelessPollData_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.WirelessPollData___setitem__(self, *args) - - def asdict(self): - return _mscl.WirelessPollData_asdict(self) - - def __init__(self, *args): - _mscl.WirelessPollData_swiginit(self, _mscl.new_WirelessPollData(*args)) - - def empty(self): - return _mscl.WirelessPollData_empty(self) - - def size(self): - return _mscl.WirelessPollData_size(self) - - def swap(self, v): - return _mscl.WirelessPollData_swap(self, v) - - def begin(self): - return _mscl.WirelessPollData_begin(self) - - def end(self): - return _mscl.WirelessPollData_end(self) - - def rbegin(self): - return _mscl.WirelessPollData_rbegin(self) - - def rend(self): - return _mscl.WirelessPollData_rend(self) - - def clear(self): - return _mscl.WirelessPollData_clear(self) - - def get_allocator(self): - return _mscl.WirelessPollData_get_allocator(self) - - def count(self, x): - return _mscl.WirelessPollData_count(self, x) - - def erase(self, *args): - return _mscl.WirelessPollData_erase(self, *args) - - def find(self, x): - return _mscl.WirelessPollData_find(self, x) - - def lower_bound(self, x): - return _mscl.WirelessPollData_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.WirelessPollData_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_WirelessPollData - -# Register WirelessPollData in _mscl: -_mscl.WirelessPollData_swigregister(WirelessPollData) - -class ConnectionDebugDataVec(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConnectionDebugDataVec_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConnectionDebugDataVec___nonzero__(self) - - def __bool__(self): - return _mscl.ConnectionDebugDataVec___bool__(self) - - def __len__(self): - return _mscl.ConnectionDebugDataVec___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConnectionDebugDataVec___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConnectionDebugDataVec___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConnectionDebugDataVec___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConnectionDebugDataVec___setitem__(self, *args) - - def pop(self): - return _mscl.ConnectionDebugDataVec_pop(self) - - def append(self, x): - return _mscl.ConnectionDebugDataVec_append(self, x) - - def empty(self): - return _mscl.ConnectionDebugDataVec_empty(self) - - def size(self): - return _mscl.ConnectionDebugDataVec_size(self) - - def swap(self, v): - return _mscl.ConnectionDebugDataVec_swap(self, v) - - def begin(self): - return _mscl.ConnectionDebugDataVec_begin(self) - - def end(self): - return _mscl.ConnectionDebugDataVec_end(self) - - def rbegin(self): - return _mscl.ConnectionDebugDataVec_rbegin(self) - - def rend(self): - return _mscl.ConnectionDebugDataVec_rend(self) - - def clear(self): - return _mscl.ConnectionDebugDataVec_clear(self) - - def get_allocator(self): - return _mscl.ConnectionDebugDataVec_get_allocator(self) - - def pop_back(self): - return _mscl.ConnectionDebugDataVec_pop_back(self) - - def erase(self, *args): - return _mscl.ConnectionDebugDataVec_erase(self, *args) - - def __init__(self, *args): - _mscl.ConnectionDebugDataVec_swiginit(self, _mscl.new_ConnectionDebugDataVec(*args)) - - def push_back(self, x): - return _mscl.ConnectionDebugDataVec_push_back(self, x) - - def front(self): - return _mscl.ConnectionDebugDataVec_front(self) - - def back(self): - return _mscl.ConnectionDebugDataVec_back(self) - - def assign(self, n, x): - return _mscl.ConnectionDebugDataVec_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConnectionDebugDataVec_resize(self, *args) - - def insert(self, *args): - return _mscl.ConnectionDebugDataVec_insert(self, *args) - - def reserve(self, n): - return _mscl.ConnectionDebugDataVec_reserve(self, n) - - def capacity(self): - return _mscl.ConnectionDebugDataVec_capacity(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugDataVec - -# Register ConnectionDebugDataVec in _mscl: -_mscl.ConnectionDebugDataVec_swigregister(ConnectionDebugDataVec) - -class SatellitePRNs(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SatellitePRNs_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SatellitePRNs___nonzero__(self) - - def __bool__(self): - return _mscl.SatellitePRNs___bool__(self) - - def __len__(self): - return _mscl.SatellitePRNs___len__(self) - - def __getslice__(self, i, j): - return _mscl.SatellitePRNs___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SatellitePRNs___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SatellitePRNs___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SatellitePRNs___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SatellitePRNs___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SatellitePRNs___setitem__(self, *args) - - def pop(self): - return _mscl.SatellitePRNs_pop(self) - - def append(self, x): - return _mscl.SatellitePRNs_append(self, x) - - def empty(self): - return _mscl.SatellitePRNs_empty(self) - - def size(self): - return _mscl.SatellitePRNs_size(self) - - def swap(self, v): - return _mscl.SatellitePRNs_swap(self, v) - - def begin(self): - return _mscl.SatellitePRNs_begin(self) - - def end(self): - return _mscl.SatellitePRNs_end(self) - - def rbegin(self): - return _mscl.SatellitePRNs_rbegin(self) - - def rend(self): - return _mscl.SatellitePRNs_rend(self) - - def clear(self): - return _mscl.SatellitePRNs_clear(self) - - def get_allocator(self): - return _mscl.SatellitePRNs_get_allocator(self) - - def pop_back(self): - return _mscl.SatellitePRNs_pop_back(self) - - def erase(self, *args): - return _mscl.SatellitePRNs_erase(self, *args) - - def __init__(self, *args): - _mscl.SatellitePRNs_swiginit(self, _mscl.new_SatellitePRNs(*args)) - - def push_back(self, x): - return _mscl.SatellitePRNs_push_back(self, x) - - def front(self): - return _mscl.SatellitePRNs_front(self) - - def back(self): - return _mscl.SatellitePRNs_back(self) - - def assign(self, n, x): - return _mscl.SatellitePRNs_assign(self, n, x) - - def resize(self, *args): - return _mscl.SatellitePRNs_resize(self, *args) - - def insert(self, *args): - return _mscl.SatellitePRNs_insert(self, *args) - - def reserve(self, n): - return _mscl.SatellitePRNs_reserve(self, n) - - def capacity(self): - return _mscl.SatellitePRNs_capacity(self) - __swig_destroy__ = _mscl.delete_SatellitePRNs - -# Register SatellitePRNs in _mscl: -_mscl.SatellitePRNs_swigregister(SatellitePRNs) - -class Constellations(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Constellations_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Constellations___nonzero__(self) - - def __bool__(self): - return _mscl.Constellations___bool__(self) - - def __len__(self): - return _mscl.Constellations___len__(self) - - def __getslice__(self, i, j): - return _mscl.Constellations___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Constellations___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Constellations___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Constellations___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Constellations___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Constellations___setitem__(self, *args) - - def pop(self): - return _mscl.Constellations_pop(self) - - def append(self, x): - return _mscl.Constellations_append(self, x) - - def empty(self): - return _mscl.Constellations_empty(self) - - def size(self): - return _mscl.Constellations_size(self) - - def swap(self, v): - return _mscl.Constellations_swap(self, v) - - def begin(self): - return _mscl.Constellations_begin(self) - - def end(self): - return _mscl.Constellations_end(self) - - def rbegin(self): - return _mscl.Constellations_rbegin(self) - - def rend(self): - return _mscl.Constellations_rend(self) - - def clear(self): - return _mscl.Constellations_clear(self) - - def get_allocator(self): - return _mscl.Constellations_get_allocator(self) - - def pop_back(self): - return _mscl.Constellations_pop_back(self) - - def erase(self, *args): - return _mscl.Constellations_erase(self, *args) - - def __init__(self, *args): - _mscl.Constellations_swiginit(self, _mscl.new_Constellations(*args)) - - def push_back(self, x): - return _mscl.Constellations_push_back(self, x) - - def front(self): - return _mscl.Constellations_front(self) - - def back(self): - return _mscl.Constellations_back(self) - - def assign(self, n, x): - return _mscl.Constellations_assign(self, n, x) - - def resize(self, *args): - return _mscl.Constellations_resize(self, *args) - - def insert(self, *args): - return _mscl.Constellations_insert(self, *args) - - def reserve(self, n): - return _mscl.Constellations_reserve(self, n) - - def capacity(self): - return _mscl.Constellations_capacity(self) - __swig_destroy__ = _mscl.delete_Constellations - -# Register Constellations in _mscl: -_mscl.Constellations_swigregister(Constellations) - -class HeadingUpdateOptionsList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HeadingUpdateOptionsList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HeadingUpdateOptionsList___nonzero__(self) - - def __bool__(self): - return _mscl.HeadingUpdateOptionsList___bool__(self) - - def __len__(self): - return _mscl.HeadingUpdateOptionsList___len__(self) - - def __getslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HeadingUpdateOptionsList___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___setitem__(self, *args) - - def pop(self): - return _mscl.HeadingUpdateOptionsList_pop(self) - - def append(self, x): - return _mscl.HeadingUpdateOptionsList_append(self, x) - - def empty(self): - return _mscl.HeadingUpdateOptionsList_empty(self) - - def size(self): - return _mscl.HeadingUpdateOptionsList_size(self) - - def swap(self, v): - return _mscl.HeadingUpdateOptionsList_swap(self, v) - - def begin(self): - return _mscl.HeadingUpdateOptionsList_begin(self) - - def end(self): - return _mscl.HeadingUpdateOptionsList_end(self) - - def rbegin(self): - return _mscl.HeadingUpdateOptionsList_rbegin(self) - - def rend(self): - return _mscl.HeadingUpdateOptionsList_rend(self) - - def clear(self): - return _mscl.HeadingUpdateOptionsList_clear(self) - - def get_allocator(self): - return _mscl.HeadingUpdateOptionsList_get_allocator(self) - - def pop_back(self): - return _mscl.HeadingUpdateOptionsList_pop_back(self) - - def erase(self, *args): - return _mscl.HeadingUpdateOptionsList_erase(self, *args) - - def __init__(self, *args): - _mscl.HeadingUpdateOptionsList_swiginit(self, _mscl.new_HeadingUpdateOptionsList(*args)) - - def push_back(self, x): - return _mscl.HeadingUpdateOptionsList_push_back(self, x) - - def front(self): - return _mscl.HeadingUpdateOptionsList_front(self) - - def back(self): - return _mscl.HeadingUpdateOptionsList_back(self) - - def assign(self, n, x): - return _mscl.HeadingUpdateOptionsList_assign(self, n, x) - - def resize(self, *args): - return _mscl.HeadingUpdateOptionsList_resize(self, *args) - - def insert(self, *args): - return _mscl.HeadingUpdateOptionsList_insert(self, *args) - - def reserve(self, n): - return _mscl.HeadingUpdateOptionsList_reserve(self, n) - - def capacity(self): - return _mscl.HeadingUpdateOptionsList_capacity(self) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptionsList - -# Register HeadingUpdateOptionsList in _mscl: -_mscl.HeadingUpdateOptionsList_swigregister(HeadingUpdateOptionsList) - -class AdaptiveMeasurementModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveMeasurementModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveMeasurementModes___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveMeasurementModes___bool__(self) - - def __len__(self): - return _mscl.AdaptiveMeasurementModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveMeasurementModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveMeasurementModes_pop(self) - - def append(self, x): - return _mscl.AdaptiveMeasurementModes_append(self, x) - - def empty(self): - return _mscl.AdaptiveMeasurementModes_empty(self) - - def size(self): - return _mscl.AdaptiveMeasurementModes_size(self) - - def swap(self, v): - return _mscl.AdaptiveMeasurementModes_swap(self, v) - - def begin(self): - return _mscl.AdaptiveMeasurementModes_begin(self) - - def end(self): - return _mscl.AdaptiveMeasurementModes_end(self) - - def rbegin(self): - return _mscl.AdaptiveMeasurementModes_rbegin(self) - - def rend(self): - return _mscl.AdaptiveMeasurementModes_rend(self) - - def clear(self): - return _mscl.AdaptiveMeasurementModes_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveMeasurementModes_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveMeasurementModes_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveMeasurementModes_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveMeasurementModes_swiginit(self, _mscl.new_AdaptiveMeasurementModes(*args)) - - def push_back(self, x): - return _mscl.AdaptiveMeasurementModes_push_back(self, x) - - def front(self): - return _mscl.AdaptiveMeasurementModes_front(self) - - def back(self): - return _mscl.AdaptiveMeasurementModes_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveMeasurementModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveMeasurementModes_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveMeasurementModes_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveMeasurementModes_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveMeasurementModes_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementModes - -# Register AdaptiveMeasurementModes in _mscl: -_mscl.AdaptiveMeasurementModes_swigregister(AdaptiveMeasurementModes) - -class GeometricVectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeometricVectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeometricVectors___nonzero__(self) - - def __bool__(self): - return _mscl.GeometricVectors___bool__(self) - - def __len__(self): - return _mscl.GeometricVectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeometricVectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeometricVectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeometricVectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeometricVectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeometricVectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeometricVectors___setitem__(self, *args) - - def pop(self): - return _mscl.GeometricVectors_pop(self) - - def append(self, x): - return _mscl.GeometricVectors_append(self, x) - - def empty(self): - return _mscl.GeometricVectors_empty(self) - - def size(self): - return _mscl.GeometricVectors_size(self) - - def swap(self, v): - return _mscl.GeometricVectors_swap(self, v) - - def begin(self): - return _mscl.GeometricVectors_begin(self) - - def end(self): - return _mscl.GeometricVectors_end(self) - - def rbegin(self): - return _mscl.GeometricVectors_rbegin(self) - - def rend(self): - return _mscl.GeometricVectors_rend(self) - - def clear(self): - return _mscl.GeometricVectors_clear(self) - - def get_allocator(self): - return _mscl.GeometricVectors_get_allocator(self) - - def pop_back(self): - return _mscl.GeometricVectors_pop_back(self) - - def erase(self, *args): - return _mscl.GeometricVectors_erase(self, *args) - - def __init__(self, *args): - _mscl.GeometricVectors_swiginit(self, _mscl.new_GeometricVectors(*args)) - - def push_back(self, x): - return _mscl.GeometricVectors_push_back(self, x) - - def front(self): - return _mscl.GeometricVectors_front(self) - - def back(self): - return _mscl.GeometricVectors_back(self) - - def assign(self, n, x): - return _mscl.GeometricVectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeometricVectors_resize(self, *args) - - def insert(self, *args): - return _mscl.GeometricVectors_insert(self, *args) - - def reserve(self, n): - return _mscl.GeometricVectors_reserve(self, n) - - def capacity(self): - return _mscl.GeometricVectors_capacity(self) - __swig_destroy__ = _mscl.delete_GeometricVectors - -# Register GeometricVectors in _mscl: -_mscl.GeometricVectors_swigregister(GeometricVectors) - -class Matrix_3x3s(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Matrix_3x3s_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Matrix_3x3s___nonzero__(self) - - def __bool__(self): - return _mscl.Matrix_3x3s___bool__(self) - - def __len__(self): - return _mscl.Matrix_3x3s___len__(self) - - def __getslice__(self, i, j): - return _mscl.Matrix_3x3s___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Matrix_3x3s___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Matrix_3x3s___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Matrix_3x3s___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Matrix_3x3s___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Matrix_3x3s___setitem__(self, *args) - - def pop(self): - return _mscl.Matrix_3x3s_pop(self) - - def append(self, x): - return _mscl.Matrix_3x3s_append(self, x) - - def empty(self): - return _mscl.Matrix_3x3s_empty(self) - - def size(self): - return _mscl.Matrix_3x3s_size(self) - - def swap(self, v): - return _mscl.Matrix_3x3s_swap(self, v) - - def begin(self): - return _mscl.Matrix_3x3s_begin(self) - - def end(self): - return _mscl.Matrix_3x3s_end(self) - - def rbegin(self): - return _mscl.Matrix_3x3s_rbegin(self) - - def rend(self): - return _mscl.Matrix_3x3s_rend(self) - - def clear(self): - return _mscl.Matrix_3x3s_clear(self) - - def get_allocator(self): - return _mscl.Matrix_3x3s_get_allocator(self) - - def pop_back(self): - return _mscl.Matrix_3x3s_pop_back(self) - - def erase(self, *args): - return _mscl.Matrix_3x3s_erase(self, *args) - - def __init__(self, *args): - _mscl.Matrix_3x3s_swiginit(self, _mscl.new_Matrix_3x3s(*args)) - - def push_back(self, x): - return _mscl.Matrix_3x3s_push_back(self, x) - - def front(self): - return _mscl.Matrix_3x3s_front(self) - - def back(self): - return _mscl.Matrix_3x3s_back(self) - - def assign(self, n, x): - return _mscl.Matrix_3x3s_assign(self, n, x) - - def resize(self, *args): - return _mscl.Matrix_3x3s_resize(self, *args) - - def insert(self, *args): - return _mscl.Matrix_3x3s_insert(self, *args) - - def reserve(self, n): - return _mscl.Matrix_3x3s_reserve(self, n) - - def capacity(self): - return _mscl.Matrix_3x3s_capacity(self) - __swig_destroy__ = _mscl.delete_Matrix_3x3s - -# Register Matrix_3x3s in _mscl: -_mscl.Matrix_3x3s_swigregister(Matrix_3x3s) - -class StatusSelectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StatusSelectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StatusSelectors___nonzero__(self) - - def __bool__(self): - return _mscl.StatusSelectors___bool__(self) - - def __len__(self): - return _mscl.StatusSelectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.StatusSelectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StatusSelectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StatusSelectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StatusSelectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StatusSelectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StatusSelectors___setitem__(self, *args) - - def pop(self): - return _mscl.StatusSelectors_pop(self) - - def append(self, x): - return _mscl.StatusSelectors_append(self, x) - - def empty(self): - return _mscl.StatusSelectors_empty(self) - - def size(self): - return _mscl.StatusSelectors_size(self) - - def swap(self, v): - return _mscl.StatusSelectors_swap(self, v) - - def begin(self): - return _mscl.StatusSelectors_begin(self) - - def end(self): - return _mscl.StatusSelectors_end(self) - - def rbegin(self): - return _mscl.StatusSelectors_rbegin(self) - - def rend(self): - return _mscl.StatusSelectors_rend(self) - - def clear(self): - return _mscl.StatusSelectors_clear(self) - - def get_allocator(self): - return _mscl.StatusSelectors_get_allocator(self) - - def pop_back(self): - return _mscl.StatusSelectors_pop_back(self) - - def erase(self, *args): - return _mscl.StatusSelectors_erase(self, *args) - - def __init__(self, *args): - _mscl.StatusSelectors_swiginit(self, _mscl.new_StatusSelectors(*args)) - - def push_back(self, x): - return _mscl.StatusSelectors_push_back(self, x) - - def front(self): - return _mscl.StatusSelectors_front(self) - - def back(self): - return _mscl.StatusSelectors_back(self) - - def assign(self, n, x): - return _mscl.StatusSelectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.StatusSelectors_resize(self, *args) - - def insert(self, *args): - return _mscl.StatusSelectors_insert(self, *args) - - def reserve(self, n): - return _mscl.StatusSelectors_reserve(self, n) - - def capacity(self): - return _mscl.StatusSelectors_capacity(self) - __swig_destroy__ = _mscl.delete_StatusSelectors - -# Register StatusSelectors in _mscl: -_mscl.StatusSelectors_swigregister(StatusSelectors) - -class VehicleModeTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.VehicleModeTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.VehicleModeTypes___nonzero__(self) - - def __bool__(self): - return _mscl.VehicleModeTypes___bool__(self) - - def __len__(self): - return _mscl.VehicleModeTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.VehicleModeTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.VehicleModeTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.VehicleModeTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.VehicleModeTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.VehicleModeTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.VehicleModeTypes___setitem__(self, *args) - - def pop(self): - return _mscl.VehicleModeTypes_pop(self) - - def append(self, x): - return _mscl.VehicleModeTypes_append(self, x) - - def empty(self): - return _mscl.VehicleModeTypes_empty(self) - - def size(self): - return _mscl.VehicleModeTypes_size(self) - - def swap(self, v): - return _mscl.VehicleModeTypes_swap(self, v) - - def begin(self): - return _mscl.VehicleModeTypes_begin(self) - - def end(self): - return _mscl.VehicleModeTypes_end(self) - - def rbegin(self): - return _mscl.VehicleModeTypes_rbegin(self) - - def rend(self): - return _mscl.VehicleModeTypes_rend(self) - - def clear(self): - return _mscl.VehicleModeTypes_clear(self) - - def get_allocator(self): - return _mscl.VehicleModeTypes_get_allocator(self) - - def pop_back(self): - return _mscl.VehicleModeTypes_pop_back(self) - - def erase(self, *args): - return _mscl.VehicleModeTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.VehicleModeTypes_swiginit(self, _mscl.new_VehicleModeTypes(*args)) - - def push_back(self, x): - return _mscl.VehicleModeTypes_push_back(self, x) - - def front(self): - return _mscl.VehicleModeTypes_front(self) - - def back(self): - return _mscl.VehicleModeTypes_back(self) - - def assign(self, n, x): - return _mscl.VehicleModeTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.VehicleModeTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.VehicleModeTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.VehicleModeTypes_reserve(self, n) - - def capacity(self): - return _mscl.VehicleModeTypes_capacity(self) - __swig_destroy__ = _mscl.delete_VehicleModeTypes - -# Register VehicleModeTypes in _mscl: -_mscl.VehicleModeTypes_swigregister(VehicleModeTypes) - -class AdaptiveFilterLevels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveFilterLevels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveFilterLevels___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveFilterLevels___bool__(self) - - def __len__(self): - return _mscl.AdaptiveFilterLevels___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveFilterLevels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveFilterLevels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveFilterLevels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveFilterLevels___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveFilterLevels_pop(self) - - def append(self, x): - return _mscl.AdaptiveFilterLevels_append(self, x) - - def empty(self): - return _mscl.AdaptiveFilterLevels_empty(self) - - def size(self): - return _mscl.AdaptiveFilterLevels_size(self) - - def swap(self, v): - return _mscl.AdaptiveFilterLevels_swap(self, v) - - def begin(self): - return _mscl.AdaptiveFilterLevels_begin(self) - - def end(self): - return _mscl.AdaptiveFilterLevels_end(self) - - def rbegin(self): - return _mscl.AdaptiveFilterLevels_rbegin(self) - - def rend(self): - return _mscl.AdaptiveFilterLevels_rend(self) - - def clear(self): - return _mscl.AdaptiveFilterLevels_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveFilterLevels_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveFilterLevels_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveFilterLevels_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveFilterLevels_swiginit(self, _mscl.new_AdaptiveFilterLevels(*args)) - - def push_back(self, x): - return _mscl.AdaptiveFilterLevels_push_back(self, x) - - def front(self): - return _mscl.AdaptiveFilterLevels_front(self) - - def back(self): - return _mscl.AdaptiveFilterLevels_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveFilterLevels_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveFilterLevels_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveFilterLevels_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveFilterLevels_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveFilterLevels_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveFilterLevels - -# Register AdaptiveFilterLevels in _mscl: -_mscl.AdaptiveFilterLevels_swigregister(AdaptiveFilterLevels) - -class LowPassFilterConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LowPassFilterConfig_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LowPassFilterConfig___nonzero__(self) - - def __bool__(self): - return _mscl.LowPassFilterConfig___bool__(self) - - def __len__(self): - return _mscl.LowPassFilterConfig___len__(self) - - def __getslice__(self, i, j): - return _mscl.LowPassFilterConfig___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LowPassFilterConfig___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LowPassFilterConfig___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LowPassFilterConfig___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LowPassFilterConfig___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LowPassFilterConfig___setitem__(self, *args) - - def pop(self): - return _mscl.LowPassFilterConfig_pop(self) - - def append(self, x): - return _mscl.LowPassFilterConfig_append(self, x) - - def empty(self): - return _mscl.LowPassFilterConfig_empty(self) - - def size(self): - return _mscl.LowPassFilterConfig_size(self) - - def swap(self, v): - return _mscl.LowPassFilterConfig_swap(self, v) - - def begin(self): - return _mscl.LowPassFilterConfig_begin(self) - - def end(self): - return _mscl.LowPassFilterConfig_end(self) - - def rbegin(self): - return _mscl.LowPassFilterConfig_rbegin(self) - - def rend(self): - return _mscl.LowPassFilterConfig_rend(self) - - def clear(self): - return _mscl.LowPassFilterConfig_clear(self) - - def get_allocator(self): - return _mscl.LowPassFilterConfig_get_allocator(self) - - def pop_back(self): - return _mscl.LowPassFilterConfig_pop_back(self) - - def erase(self, *args): - return _mscl.LowPassFilterConfig_erase(self, *args) - - def __init__(self, *args): - _mscl.LowPassFilterConfig_swiginit(self, _mscl.new_LowPassFilterConfig(*args)) - - def push_back(self, x): - return _mscl.LowPassFilterConfig_push_back(self, x) - - def front(self): - return _mscl.LowPassFilterConfig_front(self) - - def back(self): - return _mscl.LowPassFilterConfig_back(self) - - def assign(self, n, x): - return _mscl.LowPassFilterConfig_assign(self, n, x) - - def resize(self, *args): - return _mscl.LowPassFilterConfig_resize(self, *args) - - def insert(self, *args): - return _mscl.LowPassFilterConfig_insert(self, *args) - - def reserve(self, n): - return _mscl.LowPassFilterConfig_reserve(self, n) - - def capacity(self): - return _mscl.LowPassFilterConfig_capacity(self) - __swig_destroy__ = _mscl.delete_LowPassFilterConfig - -# Register LowPassFilterConfig in _mscl: -_mscl.LowPassFilterConfig_swigregister(LowPassFilterConfig) - -class AidingMeasurementSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AidingMeasurementSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AidingMeasurementSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.AidingMeasurementSourceOptions___bool__(self) - - def __len__(self): - return _mscl.AidingMeasurementSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.AidingMeasurementSourceOptions_pop(self) - - def append(self, x): - return _mscl.AidingMeasurementSourceOptions_append(self, x) - - def empty(self): - return _mscl.AidingMeasurementSourceOptions_empty(self) - - def size(self): - return _mscl.AidingMeasurementSourceOptions_size(self) - - def swap(self, v): - return _mscl.AidingMeasurementSourceOptions_swap(self, v) - - def begin(self): - return _mscl.AidingMeasurementSourceOptions_begin(self) - - def end(self): - return _mscl.AidingMeasurementSourceOptions_end(self) - - def rbegin(self): - return _mscl.AidingMeasurementSourceOptions_rbegin(self) - - def rend(self): - return _mscl.AidingMeasurementSourceOptions_rend(self) - - def clear(self): - return _mscl.AidingMeasurementSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.AidingMeasurementSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.AidingMeasurementSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.AidingMeasurementSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.AidingMeasurementSourceOptions_swiginit(self, _mscl.new_AidingMeasurementSourceOptions(*args)) - - def push_back(self, x): - return _mscl.AidingMeasurementSourceOptions_push_back(self, x) - - def front(self): - return _mscl.AidingMeasurementSourceOptions_front(self) - - def back(self): - return _mscl.AidingMeasurementSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.AidingMeasurementSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.AidingMeasurementSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.AidingMeasurementSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.AidingMeasurementSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.AidingMeasurementSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_AidingMeasurementSourceOptions - -# Register AidingMeasurementSourceOptions in _mscl: -_mscl.AidingMeasurementSourceOptions_swigregister(AidingMeasurementSourceOptions) - -class PpsSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.PpsSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.PpsSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.PpsSourceOptions___bool__(self) - - def __len__(self): - return _mscl.PpsSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.PpsSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.PpsSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.PpsSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.PpsSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.PpsSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.PpsSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.PpsSourceOptions_pop(self) - - def append(self, x): - return _mscl.PpsSourceOptions_append(self, x) - - def empty(self): - return _mscl.PpsSourceOptions_empty(self) - - def size(self): - return _mscl.PpsSourceOptions_size(self) - - def swap(self, v): - return _mscl.PpsSourceOptions_swap(self, v) - - def begin(self): - return _mscl.PpsSourceOptions_begin(self) - - def end(self): - return _mscl.PpsSourceOptions_end(self) - - def rbegin(self): - return _mscl.PpsSourceOptions_rbegin(self) - - def rend(self): - return _mscl.PpsSourceOptions_rend(self) - - def clear(self): - return _mscl.PpsSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.PpsSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.PpsSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.PpsSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.PpsSourceOptions_swiginit(self, _mscl.new_PpsSourceOptions(*args)) - - def push_back(self, x): - return _mscl.PpsSourceOptions_push_back(self, x) - - def front(self): - return _mscl.PpsSourceOptions_front(self) - - def back(self): - return _mscl.PpsSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.PpsSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.PpsSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.PpsSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.PpsSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.PpsSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_PpsSourceOptions - -# Register PpsSourceOptions in _mscl: -_mscl.PpsSourceOptions_swigregister(PpsSourceOptions) - -class GeographicSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeographicSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeographicSources___nonzero__(self) - - def __bool__(self): - return _mscl.GeographicSources___bool__(self) - - def __len__(self): - return _mscl.GeographicSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeographicSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeographicSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeographicSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeographicSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeographicSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeographicSources___setitem__(self, *args) - - def pop(self): - return _mscl.GeographicSources_pop(self) - - def append(self, x): - return _mscl.GeographicSources_append(self, x) - - def empty(self): - return _mscl.GeographicSources_empty(self) - - def size(self): - return _mscl.GeographicSources_size(self) - - def swap(self, v): - return _mscl.GeographicSources_swap(self, v) - - def begin(self): - return _mscl.GeographicSources_begin(self) - - def end(self): - return _mscl.GeographicSources_end(self) - - def rbegin(self): - return _mscl.GeographicSources_rbegin(self) - - def rend(self): - return _mscl.GeographicSources_rend(self) - - def clear(self): - return _mscl.GeographicSources_clear(self) - - def get_allocator(self): - return _mscl.GeographicSources_get_allocator(self) - - def pop_back(self): - return _mscl.GeographicSources_pop_back(self) - - def erase(self, *args): - return _mscl.GeographicSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GeographicSources_swiginit(self, _mscl.new_GeographicSources(*args)) - - def push_back(self, x): - return _mscl.GeographicSources_push_back(self, x) - - def front(self): - return _mscl.GeographicSources_front(self) - - def back(self): - return _mscl.GeographicSources_back(self) - - def assign(self, n, x): - return _mscl.GeographicSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeographicSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GeographicSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GeographicSources_reserve(self, n) - - def capacity(self): - return _mscl.GeographicSources_capacity(self) - __swig_destroy__ = _mscl.delete_GeographicSources - -# Register GeographicSources in _mscl: -_mscl.GeographicSources_swigregister(GeographicSources) - -class GnssSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSources___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSources___bool__(self) - - def __len__(self): - return _mscl.GnssSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssSources___setitem__(self, *args) - - def pop(self): - return _mscl.GnssSources_pop(self) - - def append(self, x): - return _mscl.GnssSources_append(self, x) - - def empty(self): - return _mscl.GnssSources_empty(self) - - def size(self): - return _mscl.GnssSources_size(self) - - def swap(self, v): - return _mscl.GnssSources_swap(self, v) - - def begin(self): - return _mscl.GnssSources_begin(self) - - def end(self): - return _mscl.GnssSources_end(self) - - def rbegin(self): - return _mscl.GnssSources_rbegin(self) - - def rend(self): - return _mscl.GnssSources_rend(self) - - def clear(self): - return _mscl.GnssSources_clear(self) - - def get_allocator(self): - return _mscl.GnssSources_get_allocator(self) - - def pop_back(self): - return _mscl.GnssSources_pop_back(self) - - def erase(self, *args): - return _mscl.GnssSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssSources_swiginit(self, _mscl.new_GnssSources(*args)) - - def push_back(self, x): - return _mscl.GnssSources_push_back(self, x) - - def front(self): - return _mscl.GnssSources_front(self) - - def back(self): - return _mscl.GnssSources_back(self) - - def assign(self, n, x): - return _mscl.GnssSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssSources_reserve(self, n) - - def capacity(self): - return _mscl.GnssSources_capacity(self) - __swig_destroy__ = _mscl.delete_GnssSources - -# Register GnssSources in _mscl: -_mscl.GnssSources_swigregister(GnssSources) - -class GnssSignalConfigOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSignalConfigOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSignalConfigOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSignalConfigOptions___bool__(self) - - def __len__(self): - return _mscl.GnssSignalConfigOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GnssSignalConfigOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GnssSignalConfigOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GnssSignalConfigOptions_has_key(self, key) - - def keys(self): - return _mscl.GnssSignalConfigOptions_keys(self) - - def values(self): - return _mscl.GnssSignalConfigOptions_values(self) - - def items(self): - return _mscl.GnssSignalConfigOptions_items(self) - - def __contains__(self, key): - return _mscl.GnssSignalConfigOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GnssSignalConfigOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GnssSignalConfigOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GnssSignalConfigOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GnssSignalConfigOptions_asdict(self) - - def __init__(self, *args): - _mscl.GnssSignalConfigOptions_swiginit(self, _mscl.new_GnssSignalConfigOptions(*args)) - - def empty(self): - return _mscl.GnssSignalConfigOptions_empty(self) - - def size(self): - return _mscl.GnssSignalConfigOptions_size(self) - - def swap(self, v): - return _mscl.GnssSignalConfigOptions_swap(self, v) - - def begin(self): - return _mscl.GnssSignalConfigOptions_begin(self) - - def end(self): - return _mscl.GnssSignalConfigOptions_end(self) - - def rbegin(self): - return _mscl.GnssSignalConfigOptions_rbegin(self) - - def rend(self): - return _mscl.GnssSignalConfigOptions_rend(self) - - def clear(self): - return _mscl.GnssSignalConfigOptions_clear(self) - - def get_allocator(self): - return _mscl.GnssSignalConfigOptions_get_allocator(self) - - def count(self, x): - return _mscl.GnssSignalConfigOptions_count(self, x) - - def erase(self, *args): - return _mscl.GnssSignalConfigOptions_erase(self, *args) - - def find(self, x): - return _mscl.GnssSignalConfigOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GnssSignalConfigOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GnssSignalConfigOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GnssSignalConfigOptions - -# Register GnssSignalConfigOptions in _mscl: -_mscl.GnssSignalConfigOptions_swigregister(GnssSignalConfigOptions) - -class NmeaMessageFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NmeaMessageFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NmeaMessageFormats___nonzero__(self) - - def __bool__(self): - return _mscl.NmeaMessageFormats___bool__(self) - - def __len__(self): - return _mscl.NmeaMessageFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.NmeaMessageFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NmeaMessageFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NmeaMessageFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NmeaMessageFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NmeaMessageFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NmeaMessageFormats___setitem__(self, *args) - - def pop(self): - return _mscl.NmeaMessageFormats_pop(self) - - def append(self, x): - return _mscl.NmeaMessageFormats_append(self, x) - - def empty(self): - return _mscl.NmeaMessageFormats_empty(self) - - def size(self): - return _mscl.NmeaMessageFormats_size(self) - - def swap(self, v): - return _mscl.NmeaMessageFormats_swap(self, v) - - def begin(self): - return _mscl.NmeaMessageFormats_begin(self) - - def end(self): - return _mscl.NmeaMessageFormats_end(self) - - def rbegin(self): - return _mscl.NmeaMessageFormats_rbegin(self) - - def rend(self): - return _mscl.NmeaMessageFormats_rend(self) - - def clear(self): - return _mscl.NmeaMessageFormats_clear(self) - - def get_allocator(self): - return _mscl.NmeaMessageFormats_get_allocator(self) - - def pop_back(self): - return _mscl.NmeaMessageFormats_pop_back(self) - - def erase(self, *args): - return _mscl.NmeaMessageFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.NmeaMessageFormats_swiginit(self, _mscl.new_NmeaMessageFormats(*args)) - - def push_back(self, x): - return _mscl.NmeaMessageFormats_push_back(self, x) - - def front(self): - return _mscl.NmeaMessageFormats_front(self) - - def back(self): - return _mscl.NmeaMessageFormats_back(self) - - def assign(self, n, x): - return _mscl.NmeaMessageFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.NmeaMessageFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.NmeaMessageFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.NmeaMessageFormats_reserve(self, n) - - def capacity(self): - return _mscl.NmeaMessageFormats_capacity(self) - __swig_destroy__ = _mscl.delete_NmeaMessageFormats - -# Register NmeaMessageFormats in _mscl: -_mscl.NmeaMessageFormats_swigregister(NmeaMessageFormats) - -class GpioPinModeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinModeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinModeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinModeOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinModeOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.GpioPinModeOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GpioPinModeOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GpioPinModeOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GpioPinModeOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GpioPinModeOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GpioPinModeOptions___setitem__(self, *args) - - def pop(self): - return _mscl.GpioPinModeOptions_pop(self) - - def append(self, x): - return _mscl.GpioPinModeOptions_append(self, x) - - def empty(self): - return _mscl.GpioPinModeOptions_empty(self) - - def size(self): - return _mscl.GpioPinModeOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinModeOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinModeOptions_begin(self) - - def end(self): - return _mscl.GpioPinModeOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinModeOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinModeOptions_rend(self) - - def clear(self): - return _mscl.GpioPinModeOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinModeOptions_get_allocator(self) - - def pop_back(self): - return _mscl.GpioPinModeOptions_pop_back(self) - - def erase(self, *args): - return _mscl.GpioPinModeOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.GpioPinModeOptions_swiginit(self, _mscl.new_GpioPinModeOptions(*args)) - - def push_back(self, x): - return _mscl.GpioPinModeOptions_push_back(self, x) - - def front(self): - return _mscl.GpioPinModeOptions_front(self) - - def back(self): - return _mscl.GpioPinModeOptions_back(self) - - def assign(self, n, x): - return _mscl.GpioPinModeOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.GpioPinModeOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.GpioPinModeOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.GpioPinModeOptions_reserve(self, n) - - def capacity(self): - return _mscl.GpioPinModeOptions_capacity(self) - __swig_destroy__ = _mscl.delete_GpioPinModeOptions - -# Register GpioPinModeOptions in _mscl: -_mscl.GpioPinModeOptions_swigregister(GpioPinModeOptions) - -class GpioBehaviorModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioBehaviorModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioBehaviorModes___nonzero__(self) - - def __bool__(self): - return _mscl.GpioBehaviorModes___bool__(self) - - def __len__(self): - return _mscl.GpioBehaviorModes___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioBehaviorModes___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioBehaviorModes___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioBehaviorModes_has_key(self, key) - - def keys(self): - return _mscl.GpioBehaviorModes_keys(self) - - def values(self): - return _mscl.GpioBehaviorModes_values(self) - - def items(self): - return _mscl.GpioBehaviorModes_items(self) - - def __contains__(self, key): - return _mscl.GpioBehaviorModes___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioBehaviorModes_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioBehaviorModes_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioBehaviorModes___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioBehaviorModes_asdict(self) - - def __init__(self, *args): - _mscl.GpioBehaviorModes_swiginit(self, _mscl.new_GpioBehaviorModes(*args)) - - def empty(self): - return _mscl.GpioBehaviorModes_empty(self) - - def size(self): - return _mscl.GpioBehaviorModes_size(self) - - def swap(self, v): - return _mscl.GpioBehaviorModes_swap(self, v) - - def begin(self): - return _mscl.GpioBehaviorModes_begin(self) - - def end(self): - return _mscl.GpioBehaviorModes_end(self) - - def rbegin(self): - return _mscl.GpioBehaviorModes_rbegin(self) - - def rend(self): - return _mscl.GpioBehaviorModes_rend(self) - - def clear(self): - return _mscl.GpioBehaviorModes_clear(self) - - def get_allocator(self): - return _mscl.GpioBehaviorModes_get_allocator(self) - - def count(self, x): - return _mscl.GpioBehaviorModes_count(self, x) - - def erase(self, *args): - return _mscl.GpioBehaviorModes_erase(self, *args) - - def find(self, x): - return _mscl.GpioBehaviorModes_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioBehaviorModes_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioBehaviorModes_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioBehaviorModes - -# Register GpioBehaviorModes in _mscl: -_mscl.GpioBehaviorModes_swigregister(GpioBehaviorModes) - -class GpioFeatureBehaviors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioFeatureBehaviors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioFeatureBehaviors___nonzero__(self) - - def __bool__(self): - return _mscl.GpioFeatureBehaviors___bool__(self) - - def __len__(self): - return _mscl.GpioFeatureBehaviors___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioFeatureBehaviors___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioFeatureBehaviors___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioFeatureBehaviors_has_key(self, key) - - def keys(self): - return _mscl.GpioFeatureBehaviors_keys(self) - - def values(self): - return _mscl.GpioFeatureBehaviors_values(self) - - def items(self): - return _mscl.GpioFeatureBehaviors_items(self) - - def __contains__(self, key): - return _mscl.GpioFeatureBehaviors___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioFeatureBehaviors_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioFeatureBehaviors_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioFeatureBehaviors___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioFeatureBehaviors_asdict(self) - - def __init__(self, *args): - _mscl.GpioFeatureBehaviors_swiginit(self, _mscl.new_GpioFeatureBehaviors(*args)) - - def empty(self): - return _mscl.GpioFeatureBehaviors_empty(self) - - def size(self): - return _mscl.GpioFeatureBehaviors_size(self) - - def swap(self, v): - return _mscl.GpioFeatureBehaviors_swap(self, v) - - def begin(self): - return _mscl.GpioFeatureBehaviors_begin(self) - - def end(self): - return _mscl.GpioFeatureBehaviors_end(self) - - def rbegin(self): - return _mscl.GpioFeatureBehaviors_rbegin(self) - - def rend(self): - return _mscl.GpioFeatureBehaviors_rend(self) - - def clear(self): - return _mscl.GpioFeatureBehaviors_clear(self) - - def get_allocator(self): - return _mscl.GpioFeatureBehaviors_get_allocator(self) - - def count(self, x): - return _mscl.GpioFeatureBehaviors_count(self, x) - - def erase(self, *args): - return _mscl.GpioFeatureBehaviors_erase(self, *args) - - def find(self, x): - return _mscl.GpioFeatureBehaviors_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioFeatureBehaviors_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioFeatureBehaviors_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioFeatureBehaviors - -# Register GpioFeatureBehaviors in _mscl: -_mscl.GpioFeatureBehaviors_swigregister(GpioFeatureBehaviors) - -class GpioPinOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioPinOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioPinOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioPinOptions_has_key(self, key) - - def keys(self): - return _mscl.GpioPinOptions_keys(self) - - def values(self): - return _mscl.GpioPinOptions_values(self) - - def items(self): - return _mscl.GpioPinOptions_items(self) - - def __contains__(self, key): - return _mscl.GpioPinOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioPinOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioPinOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioPinOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioPinOptions_asdict(self) - - def __init__(self, *args): - _mscl.GpioPinOptions_swiginit(self, _mscl.new_GpioPinOptions(*args)) - - def empty(self): - return _mscl.GpioPinOptions_empty(self) - - def size(self): - return _mscl.GpioPinOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinOptions_begin(self) - - def end(self): - return _mscl.GpioPinOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinOptions_rend(self) - - def clear(self): - return _mscl.GpioPinOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinOptions_get_allocator(self) - - def count(self, x): - return _mscl.GpioPinOptions_count(self, x) - - def erase(self, *args): - return _mscl.GpioPinOptions_erase(self, *args) - - def find(self, x): - return _mscl.GpioPinOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioPinOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioPinOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioPinOptions - -# Register GpioPinOptions in _mscl: -_mscl.GpioPinOptions_swigregister(GpioPinOptions) - -class EventInputTriggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventInputTriggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventInputTriggers___nonzero__(self) - - def __bool__(self): - return _mscl.EventInputTriggers___bool__(self) - - def __len__(self): - return _mscl.EventInputTriggers___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventInputTriggers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventInputTriggers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventInputTriggers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventInputTriggers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventInputTriggers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventInputTriggers___setitem__(self, *args) - - def __init__(self, *args): - _mscl.EventInputTriggers_swiginit(self, _mscl.new_EventInputTriggers(*args)) - - def empty(self): - return _mscl.EventInputTriggers_empty(self) - - def size(self): - return _mscl.EventInputTriggers_size(self) - - def swap(self, v): - return _mscl.EventInputTriggers_swap(self, v) - - def begin(self): - return _mscl.EventInputTriggers_begin(self) - - def end(self): - return _mscl.EventInputTriggers_end(self) - - def rbegin(self): - return _mscl.EventInputTriggers_rbegin(self) - - def rend(self): - return _mscl.EventInputTriggers_rend(self) - - def front(self): - return _mscl.EventInputTriggers_front(self) - - def back(self): - return _mscl.EventInputTriggers_back(self) - - def fill(self, u): - return _mscl.EventInputTriggers_fill(self, u) - __swig_destroy__ = _mscl.delete_EventInputTriggers - -# Register EventInputTriggers in _mscl: -_mscl.EventInputTriggers_swigregister(EventInputTriggers) - -class EventTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTypes___nonzero__(self) - - def __bool__(self): - return _mscl.EventTypes___bool__(self) - - def __len__(self): - return _mscl.EventTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTypes___setitem__(self, *args) - - def pop(self): - return _mscl.EventTypes_pop(self) - - def append(self, x): - return _mscl.EventTypes_append(self, x) - - def empty(self): - return _mscl.EventTypes_empty(self) - - def size(self): - return _mscl.EventTypes_size(self) - - def swap(self, v): - return _mscl.EventTypes_swap(self, v) - - def begin(self): - return _mscl.EventTypes_begin(self) - - def end(self): - return _mscl.EventTypes_end(self) - - def rbegin(self): - return _mscl.EventTypes_rbegin(self) - - def rend(self): - return _mscl.EventTypes_rend(self) - - def clear(self): - return _mscl.EventTypes_clear(self) - - def get_allocator(self): - return _mscl.EventTypes_get_allocator(self) - - def pop_back(self): - return _mscl.EventTypes_pop_back(self) - - def erase(self, *args): - return _mscl.EventTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTypes_swiginit(self, _mscl.new_EventTypes(*args)) - - def push_back(self, x): - return _mscl.EventTypes_push_back(self, x) - - def front(self): - return _mscl.EventTypes_front(self) - - def back(self): - return _mscl.EventTypes_back(self) - - def assign(self, n, x): - return _mscl.EventTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTypes_reserve(self, n) - - def capacity(self): - return _mscl.EventTypes_capacity(self) - __swig_destroy__ = _mscl.delete_EventTypes - -# Register EventTypes in _mscl: -_mscl.EventTypes_swigregister(EventTypes) - -class MeasurementReferenceFrames(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MeasurementReferenceFrames_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MeasurementReferenceFrames___nonzero__(self) - - def __bool__(self): - return _mscl.MeasurementReferenceFrames___bool__(self) - - def __len__(self): - return _mscl.MeasurementReferenceFrames___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.MeasurementReferenceFrames___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.MeasurementReferenceFrames___delitem__(self, key) - - def has_key(self, key): - return _mscl.MeasurementReferenceFrames_has_key(self, key) - - def keys(self): - return _mscl.MeasurementReferenceFrames_keys(self) - - def values(self): - return _mscl.MeasurementReferenceFrames_values(self) - - def items(self): - return _mscl.MeasurementReferenceFrames_items(self) - - def __contains__(self, key): - return _mscl.MeasurementReferenceFrames___contains__(self, key) - - def key_iterator(self): - return _mscl.MeasurementReferenceFrames_key_iterator(self) - - def value_iterator(self): - return _mscl.MeasurementReferenceFrames_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.MeasurementReferenceFrames___setitem__(self, *args) - - def asdict(self): - return _mscl.MeasurementReferenceFrames_asdict(self) - - def __init__(self, *args): - _mscl.MeasurementReferenceFrames_swiginit(self, _mscl.new_MeasurementReferenceFrames(*args)) - - def empty(self): - return _mscl.MeasurementReferenceFrames_empty(self) - - def size(self): - return _mscl.MeasurementReferenceFrames_size(self) - - def swap(self, v): - return _mscl.MeasurementReferenceFrames_swap(self, v) - - def begin(self): - return _mscl.MeasurementReferenceFrames_begin(self) - - def end(self): - return _mscl.MeasurementReferenceFrames_end(self) - - def rbegin(self): - return _mscl.MeasurementReferenceFrames_rbegin(self) - - def rend(self): - return _mscl.MeasurementReferenceFrames_rend(self) - - def clear(self): - return _mscl.MeasurementReferenceFrames_clear(self) - - def get_allocator(self): - return _mscl.MeasurementReferenceFrames_get_allocator(self) - - def count(self, x): - return _mscl.MeasurementReferenceFrames_count(self, x) - - def erase(self, *args): - return _mscl.MeasurementReferenceFrames_erase(self, *args) - - def find(self, x): - return _mscl.MeasurementReferenceFrames_find(self, x) - - def lower_bound(self, x): - return _mscl.MeasurementReferenceFrames_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.MeasurementReferenceFrames_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrames - -# Register MeasurementReferenceFrames in _mscl: -_mscl.MeasurementReferenceFrames_swigregister(MeasurementReferenceFrames) - -class Bins(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bins_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bins___nonzero__(self) - - def __bool__(self): - return _mscl.Bins___bool__(self) - - def __len__(self): - return _mscl.Bins___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bins___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bins___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bins___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bins___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bins___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bins___setitem__(self, *args) - - def pop(self): - return _mscl.Bins_pop(self) - - def append(self, x): - return _mscl.Bins_append(self, x) - - def empty(self): - return _mscl.Bins_empty(self) - - def size(self): - return _mscl.Bins_size(self) - - def swap(self, v): - return _mscl.Bins_swap(self, v) - - def begin(self): - return _mscl.Bins_begin(self) - - def end(self): - return _mscl.Bins_end(self) - - def rbegin(self): - return _mscl.Bins_rbegin(self) - - def rend(self): - return _mscl.Bins_rend(self) - - def clear(self): - return _mscl.Bins_clear(self) - - def get_allocator(self): - return _mscl.Bins_get_allocator(self) - - def pop_back(self): - return _mscl.Bins_pop_back(self) - - def erase(self, *args): - return _mscl.Bins_erase(self, *args) - - def __init__(self, *args): - _mscl.Bins_swiginit(self, _mscl.new_Bins(*args)) - - def push_back(self, x): - return _mscl.Bins_push_back(self, x) - - def front(self): - return _mscl.Bins_front(self) - - def back(self): - return _mscl.Bins_back(self) - - def assign(self, n, x): - return _mscl.Bins_assign(self, n, x) - - def insert(self, *args): - return _mscl.Bins_insert(self, *args) - - def reserve(self, n): - return _mscl.Bins_reserve(self, n) - - def capacity(self): - return _mscl.Bins_capacity(self) - __swig_destroy__ = _mscl.delete_Bins - -# Register Bins in _mscl: -_mscl.Bins_swigregister(Bins) - -class Error(Exception): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_swiginit(self, _mscl.new_Error(*args)) - __swig_destroy__ = _mscl.delete_Error - - def what(self): - return _mscl.Error_what(self) - - def __str__(self): - return _mscl.Error___str__(self) - -# Register Error in _mscl: -_mscl.Error_swigregister(Error) - -class Error_NotSupported(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NotSupported_swiginit(self, _mscl.new_Error_NotSupported(*args)) - __swig_destroy__ = _mscl.delete_Error_NotSupported - -# Register Error_NotSupported in _mscl: -_mscl.Error_NotSupported_swigregister(Error_NotSupported) - -class Error_NoData(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NoData_swiginit(self, _mscl.new_Error_NoData(*args)) - __swig_destroy__ = _mscl.delete_Error_NoData - -# Register Error_NoData in _mscl: -_mscl.Error_NoData_swigregister(Error_NoData) - -class Error_BadDataType(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Error_BadDataType_swiginit(self, _mscl.new_Error_BadDataType()) - __swig_destroy__ = _mscl.delete_Error_BadDataType - -# Register Error_BadDataType in _mscl: -_mscl.Error_BadDataType_swigregister(Error_BadDataType) - -class Error_UnknownSampleRate(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_UnknownSampleRate_swiginit(self, _mscl.new_Error_UnknownSampleRate(*args)) - __swig_destroy__ = _mscl.delete_Error_UnknownSampleRate - -# Register Error_UnknownSampleRate in _mscl: -_mscl.Error_UnknownSampleRate_swigregister(Error_UnknownSampleRate) - -class Error_Communication(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Communication_swiginit(self, _mscl.new_Error_Communication(*args)) - __swig_destroy__ = _mscl.delete_Error_Communication - -# Register Error_Communication in _mscl: -_mscl.Error_Communication_swigregister(Error_Communication) - -class Error_NodeCommunication(Error_Communication): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NodeCommunication_swiginit(self, _mscl.new_Error_NodeCommunication(*args)) - - def nodeAddress(self): - return _mscl.Error_NodeCommunication_nodeAddress(self) - __swig_destroy__ = _mscl.delete_Error_NodeCommunication - -# Register Error_NodeCommunication in _mscl: -_mscl.Error_NodeCommunication_swigregister(Error_NodeCommunication) - -class Error_Connection(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Connection_swiginit(self, _mscl.new_Error_Connection(*args)) - __swig_destroy__ = _mscl.delete_Error_Connection - - def code(self): - return _mscl.Error_Connection_code(self) - - def value(self): - return _mscl.Error_Connection_value(self) - -# Register Error_Connection in _mscl: -_mscl.Error_Connection_swigregister(Error_Connection) - -class Error_InvalidSerialPort(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code): - _mscl.Error_InvalidSerialPort_swiginit(self, _mscl.new_Error_InvalidSerialPort(code)) - __swig_destroy__ = _mscl.delete_Error_InvalidSerialPort - -# Register Error_InvalidSerialPort in _mscl: -_mscl.Error_InvalidSerialPort_swigregister(Error_InvalidSerialPort) - -class Error_InvalidTcpServer(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidTcpServer_swiginit(self, _mscl.new_Error_InvalidTcpServer(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidTcpServer - -# Register Error_InvalidTcpServer in _mscl: -_mscl.Error_InvalidTcpServer_swigregister(Error_InvalidTcpServer) - -class Error_InvalidUnixSocket(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidUnixSocket_swiginit(self, _mscl.new_Error_InvalidUnixSocket(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidUnixSocket - -# Register Error_InvalidUnixSocket in _mscl: -_mscl.Error_InvalidUnixSocket_swigregister(Error_InvalidUnixSocket) - -class Error_MipCmdFailed(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_MipCmdFailed_swiginit(self, _mscl.new_Error_MipCmdFailed(*args)) - __swig_destroy__ = _mscl.delete_Error_MipCmdFailed - - def code(self): - return _mscl.Error_MipCmdFailed_code(self) - - def value(self): - return _mscl.Error_MipCmdFailed_value(self) - -# Register Error_MipCmdFailed in _mscl: -_mscl.Error_MipCmdFailed_swigregister(Error_MipCmdFailed) - -class Error_InvalidConfig(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_InvalidConfig_swiginit(self, _mscl.new_Error_InvalidConfig(*args)) - __swig_destroy__ = _mscl.delete_Error_InvalidConfig - - def issues(self): - return _mscl.Error_InvalidConfig_issues(self) - -# Register Error_InvalidConfig in _mscl: -_mscl.Error_InvalidConfig_swigregister(Error_InvalidConfig) - -class Error_InvalidNodeConfig(Error_InvalidConfig): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, issues, nodeAddress): - _mscl.Error_InvalidNodeConfig_swiginit(self, _mscl.new_Error_InvalidNodeConfig(issues, nodeAddress)) - __swig_destroy__ = _mscl.delete_Error_InvalidNodeConfig - - def nodeAddress(self): - return _mscl.Error_InvalidNodeConfig_nodeAddress(self) - -# Register Error_InvalidNodeConfig in _mscl: -_mscl.Error_InvalidNodeConfig_swigregister(Error_InvalidNodeConfig) - - - diff --git a/mscl_release_assets/mscl-amd64-Python3.13-v67.0.0/_mscl.so b/mscl_release_assets/mscl-amd64-Python3.13-v67.0.0/_mscl.so deleted file mode 100644 index a9dc5af..0000000 Binary files a/mscl_release_assets/mscl-amd64-Python3.13-v67.0.0/_mscl.so and /dev/null differ diff --git a/mscl_release_assets/mscl-amd64-Python3.13-v67.0.0/mscl.py b/mscl_release_assets/mscl-amd64-Python3.13-v67.0.0/mscl.py deleted file mode 100644 index daa6217..0000000 --- a/mscl_release_assets/mscl-amd64-Python3.13-v67.0.0/mscl.py +++ /dev/null @@ -1,18376 +0,0 @@ -# This file was automatically generated by SWIG (http://www.swig.org). -# Version 4.0.1 -# -# Do not make changes to this file unless you know what you are doing--modify -# the SWIG interface file instead. - -from sys import version_info as _swig_python_version_info -if _swig_python_version_info < (2, 7, 0): - raise RuntimeError("Python 2.7 or later required") - -# Import the low-level C/C++ module -if __package__ or "." in __name__: - from . import _mscl -else: - import _mscl - -try: - import builtins as __builtin__ -except ImportError: - import __builtin__ - -def _swig_repr(self): - try: - strthis = "proxy of " + self.this.__repr__() - except __builtin__.Exception: - strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - - -def _swig_setattr_nondynamic_instance_variable(set): - def set_instance_attr(self, name, value): - if name == "thisown": - self.this.own(value) - elif name == "this": - set(self, name, value) - elif hasattr(self, name) and isinstance(getattr(type(self), name), property): - set(self, name, value) - else: - raise AttributeError("You cannot add instance attributes to %s" % self) - return set_instance_attr - - -def _swig_setattr_nondynamic_class_variable(set): - def set_class_attr(cls, name, value): - if hasattr(cls, name) and not isinstance(getattr(cls, name), property): - set(cls, name, value) - else: - raise AttributeError("You cannot add class attributes to %s" % cls) - return set_class_attr - - -def _swig_add_metaclass(metaclass): - """Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass""" - def wrapper(cls): - return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy()) - return wrapper - - -class _SwigNonDynamicMeta(type): - """Meta class to enforce nondynamic attributes (no new attributes) for a class""" - __setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__) - - -class SwigPyIterator(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_SwigPyIterator - - def value(self): - return _mscl.SwigPyIterator_value(self) - - def incr(self, n=1): - return _mscl.SwigPyIterator_incr(self, n) - - def decr(self, n=1): - return _mscl.SwigPyIterator_decr(self, n) - - def distance(self, x): - return _mscl.SwigPyIterator_distance(self, x) - - def equal(self, x): - return _mscl.SwigPyIterator_equal(self, x) - - def copy(self): - return _mscl.SwigPyIterator_copy(self) - - def next(self): - return _mscl.SwigPyIterator_next(self) - - def __next__(self): - return _mscl.SwigPyIterator___next__(self) - - def previous(self): - return _mscl.SwigPyIterator_previous(self) - - def advance(self, n): - return _mscl.SwigPyIterator_advance(self, n) - - def __eq__(self, x): - return _mscl.SwigPyIterator___eq__(self, x) - - def __ne__(self, x): - return _mscl.SwigPyIterator___ne__(self, x) - - def __iadd__(self, n): - return _mscl.SwigPyIterator___iadd__(self, n) - - def __isub__(self, n): - return _mscl.SwigPyIterator___isub__(self, n) - - def __add__(self, n): - return _mscl.SwigPyIterator___add__(self, n) - - def __sub__(self, *args): - return _mscl.SwigPyIterator___sub__(self, *args) - def __iter__(self): - return self - -# Register SwigPyIterator in _mscl: -_mscl.SwigPyIterator_swigregister(SwigPyIterator) - -SHARED_PTR_DISOWN = _mscl.SHARED_PTR_DISOWN -valueType_float = _mscl.valueType_float -valueType_double = _mscl.valueType_double -valueType_uint8 = _mscl.valueType_uint8 -valueType_uint16 = _mscl.valueType_uint16 -valueType_uint32 = _mscl.valueType_uint32 -valueType_int16 = _mscl.valueType_int16 -valueType_int32 = _mscl.valueType_int32 -valueType_bool = _mscl.valueType_bool -valueType_Vector = _mscl.valueType_Vector -valueType_Matrix = _mscl.valueType_Matrix -valueType_Timestamp = _mscl.valueType_Timestamp -valueType_string = _mscl.valueType_string -valueType_Bytes = _mscl.valueType_Bytes -valueType_StructuralHealth = _mscl.valueType_StructuralHealth -valueType_RfSweep = _mscl.valueType_RfSweep -valueType_ChannelMask = _mscl.valueType_ChannelMask -valueType_int8 = _mscl.valueType_int8 -valueType_uint64 = _mscl.valueType_uint64 -deviceState_idle = _mscl.deviceState_idle -deviceState_sleep = _mscl.deviceState_sleep -deviceState_sampling = _mscl.deviceState_sampling -deviceState_sampling_lostBeacon = _mscl.deviceState_sampling_lostBeacon -deviceState_sampling_inactive = _mscl.deviceState_sampling_inactive -deviceState_unknown = _mscl.deviceState_unknown -class BitMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BitMask_swiginit(self, _mscl.new_BitMask(*args)) - __swig_destroy__ = _mscl.delete_BitMask - - def __eq__(self, other): - return _mscl.BitMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.BitMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.BitMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.BitMask___gt__(self, other) - - def fromMask(self, val): - return _mscl.BitMask_fromMask(self, val) - - def toMask(self): - return _mscl.BitMask_toMask(self) - - def enabledCount(self): - return _mscl.BitMask_enabledCount(self) - - def enabled(self, bitIndex): - return _mscl.BitMask_enabled(self, bitIndex) - - def enable(self, bitIndex, enable=True): - return _mscl.BitMask_enable(self, bitIndex, enable) - - def lastBitEnabled(self): - return _mscl.BitMask_lastBitEnabled(self) - -# Register BitMask in _mscl: -_mscl.BitMask_swigregister(BitMask) - -class ChannelMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_CHANNELS = _mscl.ChannelMask_MAX_CHANNELS - - def __init__(self, *args): - _mscl.ChannelMask_swiginit(self, _mscl.new_ChannelMask(*args)) - __swig_destroy__ = _mscl.delete_ChannelMask - - def __eq__(self, other): - return _mscl.ChannelMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.ChannelMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.ChannelMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.ChannelMask___gt__(self, other) - - def fromMask(self, channelMask): - return _mscl.ChannelMask_fromMask(self, channelMask) - - def toMask(self): - return _mscl.ChannelMask_toMask(self) - - def count(self): - return _mscl.ChannelMask_count(self) - - def enabled(self, channel): - return _mscl.ChannelMask_enabled(self, channel) - - def enable(self, channel, enable=True): - return _mscl.ChannelMask_enable(self, channel, enable) - - def lastChEnabled(self): - return _mscl.ChannelMask_lastChEnabled(self) - -# Register ChannelMask in _mscl: -_mscl.ChannelMask_swigregister(ChannelMask) - -class Value(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_Value - - def storedAs(self): - return _mscl.Value_storedAs(self) - - def as_float(self): - return _mscl.Value_as_float(self) - - def as_double(self): - return _mscl.Value_as_double(self) - - def as_uint8(self): - return _mscl.Value_as_uint8(self) - - def as_uint16(self): - return _mscl.Value_as_uint16(self) - - def as_uint32(self): - return _mscl.Value_as_uint32(self) - - def as_uint64(self): - return _mscl.Value_as_uint64(self) - - def as_int8(self): - return _mscl.Value_as_int8(self) - - def as_int16(self): - return _mscl.Value_as_int16(self) - - def as_int32(self): - return _mscl.Value_as_int32(self) - - def as_bool(self): - return _mscl.Value_as_bool(self) - - def as_ChannelMask(self): - return _mscl.Value_as_ChannelMask(self) - - def as_string(self): - return _mscl.Value_as_string(self) - - def __init__(self): - _mscl.Value_swiginit(self, _mscl.new_Value()) - -# Register Value in _mscl: -_mscl.Value_swigregister(Value) - -class Bin(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, start, end, count): - _mscl.Bin_swiginit(self, _mscl.new_Bin(start, end, count)) - - def start(self): - return _mscl.Bin_start(self) - - def end(self): - return _mscl.Bin_end(self) - - def count(self): - return _mscl.Bin_count(self) - __swig_destroy__ = _mscl.delete_Bin - -# Register Bin in _mscl: -_mscl.Bin_swigregister(Bin) - -class Histogram(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, binsStart, binsSize): - _mscl.Histogram_swiginit(self, _mscl.new_Histogram(binsStart, binsSize)) - - def binsStart(self): - return _mscl.Histogram_binsStart(self) - - def binsSize(self): - return _mscl.Histogram_binsSize(self) - - def bins(self): - return _mscl.Histogram_bins(self) - - def addBin(self, bin): - return _mscl.Histogram_addBin(self, bin) - __swig_destroy__ = _mscl.delete_Histogram - -# Register Histogram in _mscl: -_mscl.Histogram_swigregister(Histogram) - -class Timestamp(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INTERNAL = _mscl.Timestamp_INTERNAL - EXTERNAL = _mscl.Timestamp_EXTERNAL - TIME_OF_ARRIVAL = _mscl.Timestamp_TIME_OF_ARRIVAL - GPS = _mscl.Timestamp_GPS - UNIX = _mscl.Timestamp_UNIX - UTC = _mscl.Timestamp_UTC - - def __init__(self, *args): - _mscl.Timestamp_swiginit(self, _mscl.new_Timestamp(*args)) - __swig_destroy__ = _mscl.delete_Timestamp - - def nanoseconds(self, *args): - return _mscl.Timestamp_nanoseconds(self, *args) - - def seconds(self, *args): - return _mscl.Timestamp_seconds(self, *args) - - def storedEpoch(self): - return _mscl.Timestamp_storedEpoch(self) - - def __str__(self): - return _mscl.Timestamp___str__(self) - - def setTime(self, *args): - return _mscl.Timestamp_setTime(self, *args) - - def setTimeNow(self): - return _mscl.Timestamp_setTimeNow(self) - - @staticmethod - def timeNow(): - return _mscl.Timestamp_timeNow() - - @staticmethod - def setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - - @staticmethod - def getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - - @staticmethod - def gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - - @staticmethod - def utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -# Register Timestamp in _mscl: -_mscl.Timestamp_swigregister(Timestamp) - -def Timestamp_timeNow(): - return _mscl.Timestamp_timeNow() - -def Timestamp_setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - -def Timestamp_getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - -def Timestamp_gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - -def Timestamp_utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -class TimeSpan(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - NANOSECONDS_PER_MICROSECOND = _mscl.TimeSpan_NANOSECONDS_PER_MICROSECOND - NANOSECONDS_PER_MILLISECOND = _mscl.TimeSpan_NANOSECONDS_PER_MILLISECOND - NANOSECONDS_PER_SECOND = _mscl.TimeSpan_NANOSECONDS_PER_SECOND - - def getNanoseconds(self): - return _mscl.TimeSpan_getNanoseconds(self) - - def getMicroseconds(self): - return _mscl.TimeSpan_getMicroseconds(self) - - def getMilliseconds(self): - return _mscl.TimeSpan_getMilliseconds(self) - - def getSeconds(self): - return _mscl.TimeSpan_getSeconds(self) - - @staticmethod - def NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - - @staticmethod - def MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - - @staticmethod - def MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - - @staticmethod - def Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - - @staticmethod - def Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - - @staticmethod - def Hours(hours): - return _mscl.TimeSpan_Hours(hours) - - @staticmethod - def Days(days): - return _mscl.TimeSpan_Days(days) - __swig_destroy__ = _mscl.delete_TimeSpan - -# Register TimeSpan in _mscl: -_mscl.TimeSpan_swigregister(TimeSpan) - -def TimeSpan_NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - -def TimeSpan_MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - -def TimeSpan_MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - -def TimeSpan_Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - -def TimeSpan_Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - -def TimeSpan_Hours(hours): - return _mscl.TimeSpan_Hours(hours) - -def TimeSpan_Days(days): - return _mscl.TimeSpan_Days(days) - -class Version(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Version_swiginit(self, _mscl.new_Version(*args)) - - def __eq__(self, cmp): - return _mscl.Version___eq__(self, cmp) - - def __ne__(self, cmp): - return _mscl.Version___ne__(self, cmp) - - def __lt__(self, cmp): - return _mscl.Version___lt__(self, cmp) - - def __le__(self, cmp): - return _mscl.Version___le__(self, cmp) - - def __gt__(self, cmp): - return _mscl.Version___gt__(self, cmp) - - def __ge__(self, cmp): - return _mscl.Version___ge__(self, cmp) - - def __str__(self): - return _mscl.Version___str__(self) - - def fromString(self, strVersion): - return _mscl.Version_fromString(self, strVersion) - - def majorPart(self): - return _mscl.Version_majorPart(self) - - def minorPart(self): - return _mscl.Version_minorPart(self) - - def patchPart(self): - return _mscl.Version_patchPart(self) - __swig_destroy__ = _mscl.delete_Version - -# Register Version in _mscl: -_mscl.Version_swigregister(Version) - -class DeviceInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.DeviceInfo_connectionType_serial - connectionType_tcp = _mscl.DeviceInfo_connectionType_tcp - - def __init__(self, *args): - _mscl.DeviceInfo_swiginit(self, _mscl.new_DeviceInfo(*args)) - - def description(self): - return _mscl.DeviceInfo_description(self) - - def serial(self): - return _mscl.DeviceInfo_serial(self) - - def baudRate(self): - return _mscl.DeviceInfo_baudRate(self) - - def connectionType(self): - return _mscl.DeviceInfo_connectionType(self) - __swig_destroy__ = _mscl.delete_DeviceInfo - -# Register DeviceInfo in _mscl: -_mscl.DeviceInfo_swigregister(DeviceInfo) -cvar = _mscl.cvar -MSCL_VERSION = cvar.MSCL_VERSION - -class Devices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def listBaseStations(): - return _mscl.Devices_listBaseStations() - - @staticmethod - def listInertialDevices(): - return _mscl.Devices_listInertialDevices() - - @staticmethod - def listPorts(): - return _mscl.Devices_listPorts() - __swig_destroy__ = _mscl.delete_Devices - -# Register Devices in _mscl: -_mscl.Devices_swigregister(Devices) - -def Devices_listBaseStations(): - return _mscl.Devices_listBaseStations() - -def Devices_listInertialDevices(): - return _mscl.Devices_listInertialDevices() - -def Devices_listPorts(): - return _mscl.Devices_listPorts() - -class ConnectionDebugData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ConnectionDebugData_swiginit(self, _mscl.new_ConnectionDebugData(*args)) - - def fromRead(self): - return _mscl.ConnectionDebugData_fromRead(self) - - def timestamp(self): - return _mscl.ConnectionDebugData_timestamp(self) - - def data(self): - return _mscl.ConnectionDebugData_data(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugData - -# Register ConnectionDebugData in _mscl: -_mscl.ConnectionDebugData_swigregister(ConnectionDebugData) - -class Connection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.Connection_connectionType_serial - connectionType_tcp = _mscl.Connection_connectionType_tcp - connectionType_webSocket = _mscl.Connection_connectionType_webSocket - connectionType_unixSocket = _mscl.Connection_connectionType_unixSocket - - def __init__(self): - _mscl.Connection_swiginit(self, _mscl.new_Connection()) - - @staticmethod - def Serial(*args): - return _mscl.Connection_Serial(*args) - - @staticmethod - def TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - - @staticmethod - def UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - - @staticmethod - def Mock(): - return _mscl.Connection_Mock() - - def description(self): - return _mscl.Connection_description(self) - - def port(self): - return _mscl.Connection_port(self) - - def type(self): - return _mscl.Connection_type(self) - - def disconnect(self): - return _mscl.Connection_disconnect(self) - - def reconnect(self): - return _mscl.Connection_reconnect(self) - - def write(self, bytes): - return _mscl.Connection_write(self, bytes) - - def writeStr(self, bytes): - return _mscl.Connection_writeStr(self, bytes) - - def clearBuffer(self): - return _mscl.Connection_clearBuffer(self) - - def byteReadPos(self): - return _mscl.Connection_byteReadPos(self) - - def byteAppendPos(self): - return _mscl.Connection_byteAppendPos(self) - - def rawByteMode(self, *args): - return _mscl.Connection_rawByteMode(self, *args) - - def getRawBytes(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytes(self, timeout, maxBytes, minBytes) - - def getRawBytesStr(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytesStr(self, timeout, maxBytes, minBytes) - - def getRawBytesWithPattern(self, pattern, timeout=0): - return _mscl.Connection_getRawBytesWithPattern(self, pattern, timeout) - - def debugMode(self, *args): - return _mscl.Connection_debugMode(self, *args) - - def getDebugData(self, timeout=0): - return _mscl.Connection_getDebugData(self, timeout) - - def updateBaudRate(self, baudRate): - return _mscl.Connection_updateBaudRate(self, baudRate) - __swig_destroy__ = _mscl.delete_Connection - -# Register Connection in _mscl: -_mscl.Connection_swigregister(Connection) - -def Connection_Serial(*args): - return _mscl.Connection_Serial(*args) - -def Connection_TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - -def Connection_UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - -def Connection_Mock(): - return _mscl.Connection_Mock() - -class WirelessTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - beacon_none = _mscl.WirelessTypes_beacon_none - beacon_internalTimer = _mscl.WirelessTypes_beacon_internalTimer - beacon_internalPPS = _mscl.WirelessTypes_beacon_internalPPS - beacon_externalPPS = _mscl.WirelessTypes_beacon_externalPPS - microcontroller_18F452 = _mscl.WirelessTypes_microcontroller_18F452 - microcontroller_18F4620 = _mscl.WirelessTypes_microcontroller_18F4620 - microcontroller_18F46K20 = _mscl.WirelessTypes_microcontroller_18F46K20 - microcontroller_18F67K90 = _mscl.WirelessTypes_microcontroller_18F67K90 - microcontroller_EFM32WG990F256 = _mscl.WirelessTypes_microcontroller_EFM32WG990F256 - microcontroller_EFR32FG1P132F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32FG1P132F256GM48 - microcontroller_EFR32MG1P232F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32MG1P232F256GM48 - collectionMethod_logOnly = _mscl.WirelessTypes_collectionMethod_logOnly - collectionMethod_transmitOnly = _mscl.WirelessTypes_collectionMethod_transmitOnly - collectionMethod_logAndTransmit = _mscl.WirelessTypes_collectionMethod_logAndTransmit - dataType_first = _mscl.WirelessTypes_dataType_first - dataType_uint16_shifted = _mscl.WirelessTypes_dataType_uint16_shifted - dataType_float32 = _mscl.WirelessTypes_dataType_float32 - dataType_uint16_12bitRes = _mscl.WirelessTypes_dataType_uint16_12bitRes - dataType_uint32 = _mscl.WirelessTypes_dataType_uint32 - dataType_uint16 = _mscl.WirelessTypes_dataType_uint16 - dataType_float32_noCals = _mscl.WirelessTypes_dataType_float32_noCals - dataType_uint24_18bitRes = _mscl.WirelessTypes_dataType_uint24_18bitRes - dataType_uint16_18bitTrunc = _mscl.WirelessTypes_dataType_uint16_18bitTrunc - dataType_int24_20bit = _mscl.WirelessTypes_dataType_int24_20bit - dataType_int16_20bitTrunc = _mscl.WirelessTypes_dataType_int16_20bitTrunc - dataType_uint24 = _mscl.WirelessTypes_dataType_uint24 - dataType_uint16_24bitTrunc = _mscl.WirelessTypes_dataType_uint16_24bitTrunc - dataType_int16_x10 = _mscl.WirelessTypes_dataType_int16_x10 - dataType_last = _mscl.WirelessTypes_dataType_last - dataFormat_raw_uint16 = _mscl.WirelessTypes_dataFormat_raw_uint16 - dataFormat_cal_float = _mscl.WirelessTypes_dataFormat_cal_float - dataFormat_raw_uint24 = _mscl.WirelessTypes_dataFormat_raw_uint24 - dataFormat_raw_int24 = _mscl.WirelessTypes_dataFormat_raw_int24 - dataFormat_raw_int16 = _mscl.WirelessTypes_dataFormat_raw_int16 - dataFormat_cal_int16_x10 = _mscl.WirelessTypes_dataFormat_cal_int16_x10 - syncMode_continuous = _mscl.WirelessTypes_syncMode_continuous - syncMode_burst = _mscl.WirelessTypes_syncMode_burst - samplingMode_sync = _mscl.WirelessTypes_samplingMode_sync - samplingMode_syncBurst = _mscl.WirelessTypes_samplingMode_syncBurst - samplingMode_nonSync = _mscl.WirelessTypes_samplingMode_nonSync - samplingMode_armedDatalog = _mscl.WirelessTypes_samplingMode_armedDatalog - samplingMode_syncEvent = _mscl.WirelessTypes_samplingMode_syncEvent - samplingMode_nonSyncEvent = _mscl.WirelessTypes_samplingMode_nonSyncEvent - defaultMode_idle = _mscl.WirelessTypes_defaultMode_idle - defaultMode_ldc = _mscl.WirelessTypes_defaultMode_ldc - defaultMode_datalog = _mscl.WirelessTypes_defaultMode_datalog - defaultMode_sleep = _mscl.WirelessTypes_defaultMode_sleep - defaultMode_sync = _mscl.WirelessTypes_defaultMode_sync - freq_unknown = _mscl.WirelessTypes_freq_unknown - freq_11 = _mscl.WirelessTypes_freq_11 - freq_12 = _mscl.WirelessTypes_freq_12 - freq_13 = _mscl.WirelessTypes_freq_13 - freq_14 = _mscl.WirelessTypes_freq_14 - freq_15 = _mscl.WirelessTypes_freq_15 - freq_16 = _mscl.WirelessTypes_freq_16 - freq_17 = _mscl.WirelessTypes_freq_17 - freq_18 = _mscl.WirelessTypes_freq_18 - freq_19 = _mscl.WirelessTypes_freq_19 - freq_20 = _mscl.WirelessTypes_freq_20 - freq_21 = _mscl.WirelessTypes_freq_21 - freq_22 = _mscl.WirelessTypes_freq_22 - freq_23 = _mscl.WirelessTypes_freq_23 - freq_24 = _mscl.WirelessTypes_freq_24 - freq_25 = _mscl.WirelessTypes_freq_25 - freq_26 = _mscl.WirelessTypes_freq_26 - power_20dBm = _mscl.WirelessTypes_power_20dBm - power_16dBm = _mscl.WirelessTypes_power_16dBm - power_15dBm = _mscl.WirelessTypes_power_15dBm - power_12dBm = _mscl.WirelessTypes_power_12dBm - power_11dBm = _mscl.WirelessTypes_power_11dBm - power_10dBm = _mscl.WirelessTypes_power_10dBm - power_5dBm = _mscl.WirelessTypes_power_5dBm - power_1dBm = _mscl.WirelessTypes_power_1dBm - power_0dBm = _mscl.WirelessTypes_power_0dBm - retransmission_off = _mscl.WirelessTypes_retransmission_off - retransmission_on = _mscl.WirelessTypes_retransmission_on - retransmission_disabled = _mscl.WirelessTypes_retransmission_disabled - trigger_userInit = _mscl.WirelessTypes_trigger_userInit - trigger_ceiling = _mscl.WirelessTypes_trigger_ceiling - trigger_floor = _mscl.WirelessTypes_trigger_floor - trigger_rampUp = _mscl.WirelessTypes_trigger_rampUp - trigger_rampDown = _mscl.WirelessTypes_trigger_rampDown - equation_none = _mscl.WirelessTypes_equation_none - equation_standard = _mscl.WirelessTypes_equation_standard - unit_none = _mscl.WirelessTypes_unit_none - unit_other_bits = _mscl.WirelessTypes_unit_other_bits - unit_strain_strain = _mscl.WirelessTypes_unit_strain_strain - unit_strain_microStrain = _mscl.WirelessTypes_unit_strain_microStrain - unit_accel_g = _mscl.WirelessTypes_unit_accel_g - unit_accel_mPerSec2 = _mscl.WirelessTypes_unit_accel_mPerSec2 - unit_volts_volts = _mscl.WirelessTypes_unit_volts_volts - unit_volts_millivolts = _mscl.WirelessTypes_unit_volts_millivolts - unit_volts_microvolts = _mscl.WirelessTypes_unit_volts_microvolts - unit_temp_celsius = _mscl.WirelessTypes_unit_temp_celsius - unit_temp_kelvin = _mscl.WirelessTypes_unit_temp_kelvin - unit_temp_fahrenheit = _mscl.WirelessTypes_unit_temp_fahrenheit - unit_displacement_meters = _mscl.WirelessTypes_unit_displacement_meters - unit_displacement_millimeters = _mscl.WirelessTypes_unit_displacement_millimeters - unit_displacement_micrometers = _mscl.WirelessTypes_unit_displacement_micrometers - unit_force_lbf = _mscl.WirelessTypes_unit_force_lbf - unit_force_newtons = _mscl.WirelessTypes_unit_force_newtons - unit_force_kiloNewtons = _mscl.WirelessTypes_unit_force_kiloNewtons - unit_mass_kilograms = _mscl.WirelessTypes_unit_mass_kilograms - unit_pressure_bar = _mscl.WirelessTypes_unit_pressure_bar - unit_pressure_psi = _mscl.WirelessTypes_unit_pressure_psi - unit_pressure_atm = _mscl.WirelessTypes_unit_pressure_atm - unit_pressure_mmHg = _mscl.WirelessTypes_unit_pressure_mmHg - unit_pressure_pascal = _mscl.WirelessTypes_unit_pressure_pascal - unit_pressure_megaPascal = _mscl.WirelessTypes_unit_pressure_megaPascal - unit_pressure_kiloPascal = _mscl.WirelessTypes_unit_pressure_kiloPascal - unit_angDisplacement_degrees = _mscl.WirelessTypes_unit_angDisplacement_degrees - unit_angVelocity_degreesPerSec = _mscl.WirelessTypes_unit_angVelocity_degreesPerSec - unit_angVelocity_radiansPerSec = _mscl.WirelessTypes_unit_angVelocity_radiansPerSec - unit_other_percent = _mscl.WirelessTypes_unit_other_percent - unit_freq_rpm = _mscl.WirelessTypes_unit_freq_rpm - unit_freq_hertz = _mscl.WirelessTypes_unit_freq_hertz - unit_rh_percentRh = _mscl.WirelessTypes_unit_rh_percentRh - unit_other_mVperV = _mscl.WirelessTypes_unit_other_mVperV - unit_accel_milliG = _mscl.WirelessTypes_unit_accel_milliG - unit_accel_ftPerSec2 = _mscl.WirelessTypes_unit_accel_ftPerSec2 - unit_other_percentLife = _mscl.WirelessTypes_unit_other_percentLife - unit_other_count = _mscl.WirelessTypes_unit_other_count - unit_displacement_feet = _mscl.WirelessTypes_unit_displacement_feet - unit_displacement_inches = _mscl.WirelessTypes_unit_displacement_inches - unit_displacement_yards = _mscl.WirelessTypes_unit_displacement_yards - unit_displacement_miles = _mscl.WirelessTypes_unit_displacement_miles - unit_displacement_nautMiles = _mscl.WirelessTypes_unit_displacement_nautMiles - unit_displacement_thouInch = _mscl.WirelessTypes_unit_displacement_thouInch - unit_displacement_hundInch = _mscl.WirelessTypes_unit_displacement_hundInch - unit_displacement_kilometers = _mscl.WirelessTypes_unit_displacement_kilometers - unit_displacement_centimeters = _mscl.WirelessTypes_unit_displacement_centimeters - unit_irradiance_wattsPerSqMeter = _mscl.WirelessTypes_unit_irradiance_wattsPerSqMeter - unit_par_microEinstein = _mscl.WirelessTypes_unit_par_microEinstein - unit_mass_pound = _mscl.WirelessTypes_unit_mass_pound - unit_power_watt = _mscl.WirelessTypes_unit_power_watt - unit_power_milliwatt = _mscl.WirelessTypes_unit_power_milliwatt - unit_power_horsepower = _mscl.WirelessTypes_unit_power_horsepower - unit_reactivePower_var = _mscl.WirelessTypes_unit_reactivePower_var - unit_energy_wattHour = _mscl.WirelessTypes_unit_energy_wattHour - unit_energy_kiloWattHour = _mscl.WirelessTypes_unit_energy_kiloWattHour - unit_reactiveEnergy_VARh = _mscl.WirelessTypes_unit_reactiveEnergy_VARh - unit_reactiveEnergy_kVARh = _mscl.WirelessTypes_unit_reactiveEnergy_kVARh - unit_current_ampere = _mscl.WirelessTypes_unit_current_ampere - unit_current_milliampere = _mscl.WirelessTypes_unit_current_milliampere - unit_current_microampere = _mscl.WirelessTypes_unit_current_microampere - unit_pressure_millibar = _mscl.WirelessTypes_unit_pressure_millibar - unit_pressure_inHg = _mscl.WirelessTypes_unit_pressure_inHg - unit_rssi_dBm = _mscl.WirelessTypes_unit_rssi_dBm - unit_freq_kiloHertz = _mscl.WirelessTypes_unit_freq_kiloHertz - unit_angDisplacement_radians = _mscl.WirelessTypes_unit_angDisplacement_radians - unit_velocity_metersPerSec = _mscl.WirelessTypes_unit_velocity_metersPerSec - unit_velocity_kilometersPerSec = _mscl.WirelessTypes_unit_velocity_kilometersPerSec - unit_velocity_kilometersPerHr = _mscl.WirelessTypes_unit_velocity_kilometersPerHr - unit_velocity_milesPerHr = _mscl.WirelessTypes_unit_velocity_milesPerHr - unit_velocity_knots = _mscl.WirelessTypes_unit_velocity_knots - unit_volume_cubicMeter = _mscl.WirelessTypes_unit_volume_cubicMeter - unit_volume_cubicFt = _mscl.WirelessTypes_unit_volume_cubicFt - unit_volume_liters = _mscl.WirelessTypes_unit_volume_liters - unit_volume_gallon = _mscl.WirelessTypes_unit_volume_gallon - unit_flowRate_cubicMetersPerSec = _mscl.WirelessTypes_unit_flowRate_cubicMetersPerSec - unit_flowRate_cubicFtPerSec = _mscl.WirelessTypes_unit_flowRate_cubicFtPerSec - unit_torque_newtonMeter = _mscl.WirelessTypes_unit_torque_newtonMeter - unit_torque_footPounds = _mscl.WirelessTypes_unit_torque_footPounds - unit_torque_inchPounds = _mscl.WirelessTypes_unit_torque_inchPounds - unit_time_secs = _mscl.WirelessTypes_unit_time_secs - unit_time_nanosecs = _mscl.WirelessTypes_unit_time_nanosecs - unit_time_microsecs = _mscl.WirelessTypes_unit_time_microsecs - unit_time_millisecs = _mscl.WirelessTypes_unit_time_millisecs - unit_time_minutes = _mscl.WirelessTypes_unit_time_minutes - unit_time_hours = _mscl.WirelessTypes_unit_time_hours - unit_time_days = _mscl.WirelessTypes_unit_time_days - unit_time_weeks = _mscl.WirelessTypes_unit_time_weeks - unit_other_value = _mscl.WirelessTypes_unit_other_value - unit_magneticFlux_gauss = _mscl.WirelessTypes_unit_magneticFlux_gauss - unit_other_gSec = _mscl.WirelessTypes_unit_other_gSec - unit_other_secsPerSec = _mscl.WirelessTypes_unit_other_secsPerSec - unit_rssi_dBHz = _mscl.WirelessTypes_unit_rssi_dBHz - unit_density_kgPerMeter3 = _mscl.WirelessTypes_unit_density_kgPerMeter3 - unit_other_unitless = _mscl.WirelessTypes_unit_other_unitless - unit_velocity_inchesPerSec = _mscl.WirelessTypes_unit_velocity_inchesPerSec - unit_force_kg = _mscl.WirelessTypes_unit_force_kg - unit_rawVoltage_volts = _mscl.WirelessTypes_unit_rawVoltage_volts - unit_rawVoltage_millivolts = _mscl.WirelessTypes_unit_rawVoltage_millivolts - unit_rawVoltage_microvolts = _mscl.WirelessTypes_unit_rawVoltage_microvolts - unit_resistance_ohm = _mscl.WirelessTypes_unit_resistance_ohm - unit_resistance_milliohm = _mscl.WirelessTypes_unit_resistance_milliohm - unit_resistance_kiloohm = _mscl.WirelessTypes_unit_resistance_kiloohm - unit_velocity_mmPerSec = _mscl.WirelessTypes_unit_velocity_mmPerSec - unit_mass_grams = _mscl.WirelessTypes_unit_mass_grams - unit_mass_ton = _mscl.WirelessTypes_unit_mass_ton - unit_mass_tonne = _mscl.WirelessTypes_unit_mass_tonne - chType_none = _mscl.WirelessTypes_chType_none - chType_fullDifferential = _mscl.WirelessTypes_chType_fullDifferential - chType_singleEnded = _mscl.WirelessTypes_chType_singleEnded - chType_battery = _mscl.WirelessTypes_chType_battery - chType_temperature = _mscl.WirelessTypes_chType_temperature - chType_rh = _mscl.WirelessTypes_chType_rh - chType_acceleration = _mscl.WirelessTypes_chType_acceleration - chType_displacement = _mscl.WirelessTypes_chType_displacement - chType_voltage = _mscl.WirelessTypes_chType_voltage - chType_diffTemperature = _mscl.WirelessTypes_chType_diffTemperature - chType_digital = _mscl.WirelessTypes_chType_digital - chType_tilt = _mscl.WirelessTypes_chType_tilt - voltageType_singleEnded = _mscl.WirelessTypes_voltageType_singleEnded - voltageType_differential = _mscl.WirelessTypes_voltageType_differential - settling_4ms = _mscl.WirelessTypes_settling_4ms - settling_8ms = _mscl.WirelessTypes_settling_8ms - settling_16ms = _mscl.WirelessTypes_settling_16ms - settling_32ms = _mscl.WirelessTypes_settling_32ms - settling_40ms = _mscl.WirelessTypes_settling_40ms - settling_48ms = _mscl.WirelessTypes_settling_48ms - settling_60ms = _mscl.WirelessTypes_settling_60ms - settling_101ms_90db = _mscl.WirelessTypes_settling_101ms_90db - settling_120ms_80db = _mscl.WirelessTypes_settling_120ms_80db - settling_120ms_65db = _mscl.WirelessTypes_settling_120ms_65db - settling_160ms_69db = _mscl.WirelessTypes_settling_160ms_69db - settling_200ms = _mscl.WirelessTypes_settling_200ms - transducer_thermocouple = _mscl.WirelessTypes_transducer_thermocouple - transducer_rtd = _mscl.WirelessTypes_transducer_rtd - transducer_thermistor = _mscl.WirelessTypes_transducer_thermistor - tc_uncompensated = _mscl.WirelessTypes_tc_uncompensated - tc_K = _mscl.WirelessTypes_tc_K - tc_J = _mscl.WirelessTypes_tc_J - tc_R = _mscl.WirelessTypes_tc_R - tc_S = _mscl.WirelessTypes_tc_S - tc_T = _mscl.WirelessTypes_tc_T - tc_E = _mscl.WirelessTypes_tc_E - tc_B = _mscl.WirelessTypes_tc_B - tc_N = _mscl.WirelessTypes_tc_N - tc_customPolynomial = _mscl.WirelessTypes_tc_customPolynomial - rtd_uncompensated = _mscl.WirelessTypes_rtd_uncompensated - rtd_pt10 = _mscl.WirelessTypes_rtd_pt10 - rtd_pt50 = _mscl.WirelessTypes_rtd_pt50 - rtd_pt100 = _mscl.WirelessTypes_rtd_pt100 - rtd_pt200 = _mscl.WirelessTypes_rtd_pt200 - rtd_pt500 = _mscl.WirelessTypes_rtd_pt500 - rtd_pt1000 = _mscl.WirelessTypes_rtd_pt1000 - rtd_2wire = _mscl.WirelessTypes_rtd_2wire - rtd_3wire = _mscl.WirelessTypes_rtd_3wire - rtd_4wire = _mscl.WirelessTypes_rtd_4wire - thermistor_uncompensated = _mscl.WirelessTypes_thermistor_uncompensated - thermistor_44004_44033 = _mscl.WirelessTypes_thermistor_44004_44033 - thermistor_44005_44030 = _mscl.WirelessTypes_thermistor_44005_44030 - thermistor_44007_44034 = _mscl.WirelessTypes_thermistor_44007_44034 - thermistor_44006_44031 = _mscl.WirelessTypes_thermistor_44006_44031 - thermistor_44008_44032 = _mscl.WirelessTypes_thermistor_44008_44032 - thermistor_ysi_400 = _mscl.WirelessTypes_thermistor_ysi_400 - sampleRate_104170Hz = _mscl.WirelessTypes_sampleRate_104170Hz - sampleRate_78125Hz = _mscl.WirelessTypes_sampleRate_78125Hz - sampleRate_62500Hz = _mscl.WirelessTypes_sampleRate_62500Hz - sampleRate_25000Hz = _mscl.WirelessTypes_sampleRate_25000Hz - sampleRate_12500Hz = _mscl.WirelessTypes_sampleRate_12500Hz - sampleRate_3200Hz = _mscl.WirelessTypes_sampleRate_3200Hz - sampleRate_1600Hz = _mscl.WirelessTypes_sampleRate_1600Hz - sampleRate_800Hz = _mscl.WirelessTypes_sampleRate_800Hz - sampleRate_300Hz = _mscl.WirelessTypes_sampleRate_300Hz - sampleRate_1kHz = _mscl.WirelessTypes_sampleRate_1kHz - sampleRate_2kHz = _mscl.WirelessTypes_sampleRate_2kHz - sampleRate_3kHz = _mscl.WirelessTypes_sampleRate_3kHz - sampleRate_4kHz = _mscl.WirelessTypes_sampleRate_4kHz - sampleRate_5kHz = _mscl.WirelessTypes_sampleRate_5kHz - sampleRate_6kHz = _mscl.WirelessTypes_sampleRate_6kHz - sampleRate_7kHz = _mscl.WirelessTypes_sampleRate_7kHz - sampleRate_8kHz = _mscl.WirelessTypes_sampleRate_8kHz - sampleRate_9kHz = _mscl.WirelessTypes_sampleRate_9kHz - sampleRate_10kHz = _mscl.WirelessTypes_sampleRate_10kHz - sampleRate_20kHz = _mscl.WirelessTypes_sampleRate_20kHz - sampleRate_30kHz = _mscl.WirelessTypes_sampleRate_30kHz - sampleRate_40kHz = _mscl.WirelessTypes_sampleRate_40kHz - sampleRate_50kHz = _mscl.WirelessTypes_sampleRate_50kHz - sampleRate_60kHz = _mscl.WirelessTypes_sampleRate_60kHz - sampleRate_70kHz = _mscl.WirelessTypes_sampleRate_70kHz - sampleRate_80kHz = _mscl.WirelessTypes_sampleRate_80kHz - sampleRate_90kHz = _mscl.WirelessTypes_sampleRate_90kHz - sampleRate_100kHz = _mscl.WirelessTypes_sampleRate_100kHz - sampleRate_887Hz = _mscl.WirelessTypes_sampleRate_887Hz - sampleRate_8192Hz = _mscl.WirelessTypes_sampleRate_8192Hz - sampleRate_4096Hz = _mscl.WirelessTypes_sampleRate_4096Hz - sampleRate_2048Hz = _mscl.WirelessTypes_sampleRate_2048Hz - sampleRate_1024Hz = _mscl.WirelessTypes_sampleRate_1024Hz - sampleRate_512Hz = _mscl.WirelessTypes_sampleRate_512Hz - sampleRate_256Hz = _mscl.WirelessTypes_sampleRate_256Hz - sampleRate_128Hz = _mscl.WirelessTypes_sampleRate_128Hz - sampleRate_64Hz = _mscl.WirelessTypes_sampleRate_64Hz - sampleRate_32Hz = _mscl.WirelessTypes_sampleRate_32Hz - sampleRate_16Hz = _mscl.WirelessTypes_sampleRate_16Hz - sampleRate_8Hz = _mscl.WirelessTypes_sampleRate_8Hz - sampleRate_4Hz = _mscl.WirelessTypes_sampleRate_4Hz - sampleRate_2Hz = _mscl.WirelessTypes_sampleRate_2Hz - sampleRate_1Hz = _mscl.WirelessTypes_sampleRate_1Hz - sampleRate_2Sec = _mscl.WirelessTypes_sampleRate_2Sec - sampleRate_5Sec = _mscl.WirelessTypes_sampleRate_5Sec - sampleRate_10Sec = _mscl.WirelessTypes_sampleRate_10Sec - sampleRate_30Sec = _mscl.WirelessTypes_sampleRate_30Sec - sampleRate_1Min = _mscl.WirelessTypes_sampleRate_1Min - sampleRate_2Min = _mscl.WirelessTypes_sampleRate_2Min - sampleRate_5Min = _mscl.WirelessTypes_sampleRate_5Min - sampleRate_10Min = _mscl.WirelessTypes_sampleRate_10Min - sampleRate_30Min = _mscl.WirelessTypes_sampleRate_30Min - sampleRate_60Min = _mscl.WirelessTypes_sampleRate_60Min - sampleRate_24Hours = _mscl.WirelessTypes_sampleRate_24Hours - region_usa = _mscl.WirelessTypes_region_usa - region_europeanUnion = _mscl.WirelessTypes_region_europeanUnion - region_japan = _mscl.WirelessTypes_region_japan - region_other = _mscl.WirelessTypes_region_other - region_brazil = _mscl.WirelessTypes_region_brazil - region_china = _mscl.WirelessTypes_region_china - region_australia_newzealand = _mscl.WirelessTypes_region_australia_newzealand - region_singapore = _mscl.WirelessTypes_region_singapore - region_canada = _mscl.WirelessTypes_region_canada - region_southAfrica = _mscl.WirelessTypes_region_southAfrica - region_indonesia = _mscl.WirelessTypes_region_indonesia - region_taiwan = _mscl.WirelessTypes_region_taiwan - chSetting_inputRange = _mscl.WirelessTypes_chSetting_inputRange - chSetting_filterSettlingTime = _mscl.WirelessTypes_chSetting_filterSettlingTime - chSetting_thermocoupleType = _mscl.WirelessTypes_chSetting_thermocoupleType - chSetting_linearEquation = _mscl.WirelessTypes_chSetting_linearEquation - chSetting_unit = _mscl.WirelessTypes_chSetting_unit - chSetting_equationType = _mscl.WirelessTypes_chSetting_equationType - chSetting_hardwareOffset = _mscl.WirelessTypes_chSetting_hardwareOffset - chSetting_autoBalance = _mscl.WirelessTypes_chSetting_autoBalance - chSetting_gaugeFactor = _mscl.WirelessTypes_chSetting_gaugeFactor - chSetting_antiAliasingFilter = _mscl.WirelessTypes_chSetting_antiAliasingFilter - chSetting_legacyShuntCal = _mscl.WirelessTypes_chSetting_legacyShuntCal - chSetting_autoShuntCal = _mscl.WirelessTypes_chSetting_autoShuntCal - chSetting_lowPassFilter = _mscl.WirelessTypes_chSetting_lowPassFilter - chSetting_highPassFilter = _mscl.WirelessTypes_chSetting_highPassFilter - chSetting_tempSensorOptions = _mscl.WirelessTypes_chSetting_tempSensorOptions - chSetting_debounceFilter = _mscl.WirelessTypes_chSetting_debounceFilter - chSetting_pullUpResistor = _mscl.WirelessTypes_chSetting_pullUpResistor - chSetting_factoryLinearEq = _mscl.WirelessTypes_chSetting_factoryLinearEq - chSetting_factoryUnit = _mscl.WirelessTypes_chSetting_factoryUnit - chSetting_factoryEqType = _mscl.WirelessTypes_chSetting_factoryEqType - autobalance_success = _mscl.WirelessTypes_autobalance_success - autobalance_maybeInvalid = _mscl.WirelessTypes_autobalance_maybeInvalid - autobalance_notSupportedByNode = _mscl.WirelessTypes_autobalance_notSupportedByNode - autobalance_notSupportedByCh = _mscl.WirelessTypes_autobalance_notSupportedByCh - autobalance_targetOutOfRange = _mscl.WirelessTypes_autobalance_targetOutOfRange - autobalance_failed = _mscl.WirelessTypes_autobalance_failed - autobalance_legacyNone = _mscl.WirelessTypes_autobalance_legacyNone - autobalance_notComplete = _mscl.WirelessTypes_autobalance_notComplete - autocal_success = _mscl.WirelessTypes_autocal_success - autocal_maybeInvalid_applied = _mscl.WirelessTypes_autocal_maybeInvalid_applied - autocal_maybeInvalid_notApplied = _mscl.WirelessTypes_autocal_maybeInvalid_notApplied - autocal_notComplete = _mscl.WirelessTypes_autocal_notComplete - autocalError_none = _mscl.WirelessTypes_autocalError_none - autocalError_sensorDetached = _mscl.WirelessTypes_autocalError_sensorDetached - autocalError_sensorShorted = _mscl.WirelessTypes_autocalError_sensorShorted - autocalError_unsupportedChannel = _mscl.WirelessTypes_autocalError_unsupportedChannel - autocalError_baseHighRail = _mscl.WirelessTypes_autocalError_baseHighRail - autocalError_baseLowRail = _mscl.WirelessTypes_autocalError_baseLowRail - autocalError_shuntHighRail = _mscl.WirelessTypes_autocalError_shuntHighRail - autocalError_shuntLowRail = _mscl.WirelessTypes_autocalError_shuntLowRail - autocalError_ramp = _mscl.WirelessTypes_autocalError_ramp - autocalError_noShunt = _mscl.WirelessTypes_autocalError_noShunt - autocalError_timeout = _mscl.WirelessTypes_autocalError_timeout - fatigueMode_angleStrain = _mscl.WirelessTypes_fatigueMode_angleStrain - fatigueMode_distributedAngle = _mscl.WirelessTypes_fatigueMode_distributedAngle - fatigueMode_rawGaugeStrain = _mscl.WirelessTypes_fatigueMode_rawGaugeStrain - eventTrigger_ceiling = _mscl.WirelessTypes_eventTrigger_ceiling - eventTrigger_floor = _mscl.WirelessTypes_eventTrigger_floor - filter_33000hz = _mscl.WirelessTypes_filter_33000hz - filter_20000hz = _mscl.WirelessTypes_filter_20000hz - filter_10000hz = _mscl.WirelessTypes_filter_10000hz - filter_5222hz = _mscl.WirelessTypes_filter_5222hz - filter_5000hz = _mscl.WirelessTypes_filter_5000hz - filter_4416hz = _mscl.WirelessTypes_filter_4416hz - filter_4096hz = _mscl.WirelessTypes_filter_4096hz - filter_4000hz = _mscl.WirelessTypes_filter_4000hz - filter_2208hz = _mscl.WirelessTypes_filter_2208hz - filter_2048hz = _mscl.WirelessTypes_filter_2048hz - filter_2000hz = _mscl.WirelessTypes_filter_2000hz - filter_1104hz = _mscl.WirelessTypes_filter_1104hz - filter_1024hz = _mscl.WirelessTypes_filter_1024hz - filter_1000hz = _mscl.WirelessTypes_filter_1000hz - filter_800hz = _mscl.WirelessTypes_filter_800hz - filter_552hz = _mscl.WirelessTypes_filter_552hz - filter_512hz = _mscl.WirelessTypes_filter_512hz - filter_500hz = _mscl.WirelessTypes_filter_500hz - filter_418hz = _mscl.WirelessTypes_filter_418hz - filter_294hz = _mscl.WirelessTypes_filter_294hz - filter_256hz = _mscl.WirelessTypes_filter_256hz - filter_250hz = _mscl.WirelessTypes_filter_250hz - filter_209hz = _mscl.WirelessTypes_filter_209hz - filter_200hz = _mscl.WirelessTypes_filter_200hz - filter_147hz = _mscl.WirelessTypes_filter_147hz - filter_128hz = _mscl.WirelessTypes_filter_128hz - filter_125hz = _mscl.WirelessTypes_filter_125hz - filter_104hz = _mscl.WirelessTypes_filter_104hz - filter_100hz = _mscl.WirelessTypes_filter_100hz - filter_62hz = _mscl.WirelessTypes_filter_62hz - filter_52hz = _mscl.WirelessTypes_filter_52hz - filter_50hz = _mscl.WirelessTypes_filter_50hz - filter_31hz = _mscl.WirelessTypes_filter_31hz - filter_26hz = _mscl.WirelessTypes_filter_26hz - filter_12_66hz = _mscl.WirelessTypes_filter_12_66hz - filter_2_6hz = _mscl.WirelessTypes_filter_2_6hz - highPass_off = _mscl.WirelessTypes_highPass_off - highPass_auto = _mscl.WirelessTypes_highPass_auto - cfc_10 = _mscl.WirelessTypes_cfc_10 - cfc_21 = _mscl.WirelessTypes_cfc_21 - cfc_60 = _mscl.WirelessTypes_cfc_60 - storageLimit_overwrite = _mscl.WirelessTypes_storageLimit_overwrite - storageLimit_stop = _mscl.WirelessTypes_storageLimit_stop - range_14_545mV = _mscl.WirelessTypes_range_14_545mV - range_10_236mV = _mscl.WirelessTypes_range_10_236mV - range_7_608mV = _mscl.WirelessTypes_range_7_608mV - range_4_046mV = _mscl.WirelessTypes_range_4_046mV - range_2_008mV = _mscl.WirelessTypes_range_2_008mV - range_1_511mV = _mscl.WirelessTypes_range_1_511mV - range_1_001mV = _mscl.WirelessTypes_range_1_001mV - range_0_812mV = _mscl.WirelessTypes_range_0_812mV - range_75mV = _mscl.WirelessTypes_range_75mV - range_37_5mV = _mscl.WirelessTypes_range_37_5mV - range_18_75mV = _mscl.WirelessTypes_range_18_75mV - range_9_38mV = _mscl.WirelessTypes_range_9_38mV - range_4_69mV = _mscl.WirelessTypes_range_4_69mV - range_2_34mV = _mscl.WirelessTypes_range_2_34mV - range_1_17mV = _mscl.WirelessTypes_range_1_17mV - range_0_586mV = _mscl.WirelessTypes_range_0_586mV - range_70mV = _mscl.WirelessTypes_range_70mV - range_35mV = _mscl.WirelessTypes_range_35mV - range_17_5mV = _mscl.WirelessTypes_range_17_5mV - range_8_75mV = _mscl.WirelessTypes_range_8_75mV - range_4_38mV = _mscl.WirelessTypes_range_4_38mV - range_2_19mV = _mscl.WirelessTypes_range_2_19mV - range_1_09mV = _mscl.WirelessTypes_range_1_09mV - range_0_547mV = _mscl.WirelessTypes_range_0_547mV - range_44mV = _mscl.WirelessTypes_range_44mV - range_30mV = _mscl.WirelessTypes_range_30mV - range_20mV = _mscl.WirelessTypes_range_20mV - range_15mV = _mscl.WirelessTypes_range_15mV - range_10mV = _mscl.WirelessTypes_range_10mV - range_5mV = _mscl.WirelessTypes_range_5mV - range_3mV = _mscl.WirelessTypes_range_3mV - range_2mV = _mscl.WirelessTypes_range_2mV - range_6mV = _mscl.WirelessTypes_range_6mV - range_1mV = _mscl.WirelessTypes_range_1mV - range_50mV = _mscl.WirelessTypes_range_50mV - range_2_5mV = _mscl.WirelessTypes_range_2_5mV - range_0_6mV = _mscl.WirelessTypes_range_0_6mV - range_0_35mV = _mscl.WirelessTypes_range_0_35mV - range_0_1mV = _mscl.WirelessTypes_range_0_1mV - range_156mV = _mscl.WirelessTypes_range_156mV - range_78_1mV = _mscl.WirelessTypes_range_78_1mV - range_39mV = _mscl.WirelessTypes_range_39mV - range_19_5mV = _mscl.WirelessTypes_range_19_5mV - range_9_76mV = _mscl.WirelessTypes_range_9_76mV - range_4_88mV = _mscl.WirelessTypes_range_4_88mV - range_2_44mV = _mscl.WirelessTypes_range_2_44mV - range_1_22mV = _mscl.WirelessTypes_range_1_22mV - range_10_24V = _mscl.WirelessTypes_range_10_24V - range_5_12V = _mscl.WirelessTypes_range_5_12V - range_2_56V = _mscl.WirelessTypes_range_2_56V - range_0to10_24V = _mscl.WirelessTypes_range_0to10_24V - range_0to5_12V = _mscl.WirelessTypes_range_0to5_12V - range_1_147V = _mscl.WirelessTypes_range_1_147V - range_585mV = _mscl.WirelessTypes_range_585mV - range_292_5mV = _mscl.WirelessTypes_range_292_5mV - range_146_25mV = _mscl.WirelessTypes_range_146_25mV - range_73_13mV = _mscl.WirelessTypes_range_73_13mV - range_36_56mV = _mscl.WirelessTypes_range_36_56mV - range_18_23mV = _mscl.WirelessTypes_range_18_23mV - range_9_14mV = _mscl.WirelessTypes_range_9_14mV - range_5_74V = _mscl.WirelessTypes_range_5_74V - range_2_93V = _mscl.WirelessTypes_range_2_93V - range_1_46V = _mscl.WirelessTypes_range_1_46V - range_731_3mV = _mscl.WirelessTypes_range_731_3mV - range_365_6mV = _mscl.WirelessTypes_range_365_6mV - range_182_8mV = _mscl.WirelessTypes_range_182_8mV - range_91_4mV = _mscl.WirelessTypes_range_91_4mV - range_45_7mV = _mscl.WirelessTypes_range_45_7mV - range_62_5mV = _mscl.WirelessTypes_range_62_5mV - range_31_25mV = _mscl.WirelessTypes_range_31_25mV - range_15_63mV = _mscl.WirelessTypes_range_15_63mV - range_7_81mV = _mscl.WirelessTypes_range_7_81mV - range_3_91mV = _mscl.WirelessTypes_range_3_91mV - range_1_95mV = _mscl.WirelessTypes_range_1_95mV - range_0_976mV = _mscl.WirelessTypes_range_0_976mV - range_0_488mV = _mscl.WirelessTypes_range_0_488mV - range_2G = _mscl.WirelessTypes_range_2G - range_4G = _mscl.WirelessTypes_range_4G - range_8G = _mscl.WirelessTypes_range_8G - range_10G = _mscl.WirelessTypes_range_10G - range_20G = _mscl.WirelessTypes_range_20G - range_40G = _mscl.WirelessTypes_range_40G - range_2_5V = _mscl.WirelessTypes_range_2_5V - range_1_25V = _mscl.WirelessTypes_range_1_25V - range_625mV = _mscl.WirelessTypes_range_625mV - range_312_5mV = _mscl.WirelessTypes_range_312_5mV - range_156_25mV = _mscl.WirelessTypes_range_156_25mV - range_78_125mV = _mscl.WirelessTypes_range_78_125mV - range_39_063mV = _mscl.WirelessTypes_range_39_063mV - range_19_532mV = _mscl.WirelessTypes_range_19_532mV - range_0to2_5V = _mscl.WirelessTypes_range_0to2_5V - range_0to1_25V = _mscl.WirelessTypes_range_0to1_25V - range_0to625mV = _mscl.WirelessTypes_range_0to625mV - range_0to312_5mV = _mscl.WirelessTypes_range_0to312_5mV - range_0to156_25mV = _mscl.WirelessTypes_range_0to156_25mV - range_0to78_125mV = _mscl.WirelessTypes_range_0to78_125mV - range_0to39_063mV = _mscl.WirelessTypes_range_0to39_063mV - range_0to19_532mV = _mscl.WirelessTypes_range_0to19_532mV - range_9_766mV = _mscl.WirelessTypes_range_9_766mV - range_1_35V_or_0to1000000ohm = _mscl.WirelessTypes_range_1_35V_or_0to1000000ohm - range_1_25V_or_0to10000ohm = _mscl.WirelessTypes_range_1_25V_or_0to10000ohm - range_625mV_or_0to3333_3ohm = _mscl.WirelessTypes_range_625mV_or_0to3333_3ohm - range_312_5mV_or_0to1428_6ohm = _mscl.WirelessTypes_range_312_5mV_or_0to1428_6ohm - range_156_25mV_or_0to666_67ohm = _mscl.WirelessTypes_range_156_25mV_or_0to666_67ohm - range_78_125mV_or_0to322_58ohm = _mscl.WirelessTypes_range_78_125mV_or_0to322_58ohm - range_39_0625mV_or_0to158_73ohm = _mscl.WirelessTypes_range_39_0625mV_or_0to158_73ohm - range_19_5313mV_or_0to78_74ohm = _mscl.WirelessTypes_range_19_5313mV_or_0to78_74ohm - range_750mV = _mscl.WirelessTypes_range_750mV - range_375mV = _mscl.WirelessTypes_range_375mV - range_187_5mV = _mscl.WirelessTypes_range_187_5mV - range_93_75mV = _mscl.WirelessTypes_range_93_75mV - range_46_875mV = _mscl.WirelessTypes_range_46_875mV - range_23_438mV = _mscl.WirelessTypes_range_23_438mV - range_11_719mV = _mscl.WirelessTypes_range_11_719mV - range_5_859mV = _mscl.WirelessTypes_range_5_859mV - range_0to1_5V = _mscl.WirelessTypes_range_0to1_5V - range_0to750mV = _mscl.WirelessTypes_range_0to750mV - range_0to375mV = _mscl.WirelessTypes_range_0to375mV - range_0to187_5mV = _mscl.WirelessTypes_range_0to187_5mV - range_0to93_75mV = _mscl.WirelessTypes_range_0to93_75mV - range_0to46_875mV = _mscl.WirelessTypes_range_0to46_875mV - range_0to23_438mV = _mscl.WirelessTypes_range_0to23_438mV - range_0to11_719mV = _mscl.WirelessTypes_range_0to11_719mV - range_1_5V = _mscl.WirelessTypes_range_1_5V - range_1_35V = _mscl.WirelessTypes_range_1_35V - range_0to1000000ohm = _mscl.WirelessTypes_range_0to1000000ohm - range_0to10000ohm = _mscl.WirelessTypes_range_0to10000ohm - range_0to3333_3ohm = _mscl.WirelessTypes_range_0to3333_3ohm - range_0to1428_6ohm = _mscl.WirelessTypes_range_0to1428_6ohm - range_0to666_67ohm = _mscl.WirelessTypes_range_0to666_67ohm - range_0to322_58ohm = _mscl.WirelessTypes_range_0to322_58ohm - range_0to158_73ohm = _mscl.WirelessTypes_range_0to158_73ohm - range_0to78_74ohm = _mscl.WirelessTypes_range_0to78_74ohm - range_39_0625mV = _mscl.WirelessTypes_range_39_0625mV - range_19_5313mV = _mscl.WirelessTypes_range_19_5313mV - range_125mV = _mscl.WirelessTypes_range_125mV - range_invalid = _mscl.WirelessTypes_range_invalid - dataMode_none = _mscl.WirelessTypes_dataMode_none - dataMode_raw = _mscl.WirelessTypes_dataMode_raw - dataMode_derived = _mscl.WirelessTypes_dataMode_derived - dataMode_raw_derived = _mscl.WirelessTypes_dataMode_raw_derived - derivedCategory_rms = _mscl.WirelessTypes_derivedCategory_rms - derivedCategory_peakToPeak = _mscl.WirelessTypes_derivedCategory_peakToPeak - derivedCategory_velocity = _mscl.WirelessTypes_derivedCategory_velocity - derivedCategory_crestFactor = _mscl.WirelessTypes_derivedCategory_crestFactor - derivedCategory_mean = _mscl.WirelessTypes_derivedCategory_mean - derivedAlgId_rms = _mscl.WirelessTypes_derivedAlgId_rms - derivedAlgId_peakToPeak = _mscl.WirelessTypes_derivedAlgId_peakToPeak - derivedAlgId_ips = _mscl.WirelessTypes_derivedAlgId_ips - derivedAlgId_crestFactor = _mscl.WirelessTypes_derivedAlgId_crestFactor - derivedAlgId_mean = _mscl.WirelessTypes_derivedAlgId_mean - derivedAlgId_mmps = _mscl.WirelessTypes_derivedAlgId_mmps - derivedVelocity_ips = _mscl.WirelessTypes_derivedVelocity_ips - derivedVelocity_mmps = _mscl.WirelessTypes_derivedVelocity_mmps - commProtocol_lxrs = _mscl.WirelessTypes_commProtocol_lxrs - commProtocol_lxrsPlus = _mscl.WirelessTypes_commProtocol_lxrsPlus - voltage_5120mV = _mscl.WirelessTypes_voltage_5120mV - voltage_5000mV = _mscl.WirelessTypes_voltage_5000mV - voltage_4096mV = _mscl.WirelessTypes_voltage_4096mV - voltage_3000mV = _mscl.WirelessTypes_voltage_3000mV - voltage_2800mV = _mscl.WirelessTypes_voltage_2800mV - voltage_2750mV = _mscl.WirelessTypes_voltage_2750mV - voltage_2700mV = _mscl.WirelessTypes_voltage_2700mV - voltage_2500mV = _mscl.WirelessTypes_voltage_2500mV - voltage_1500mV = _mscl.WirelessTypes_voltage_1500mV - sensorOutputMode_accel = _mscl.WirelessTypes_sensorOutputMode_accel - sensorOutputMode_tilt = _mscl.WirelessTypes_sensorOutputMode_tilt - batteryStatus_good = _mscl.WirelessTypes_batteryStatus_good - batteryStatus_low = _mscl.WirelessTypes_batteryStatus_low - batteryStatus_critical = _mscl.WirelessTypes_batteryStatus_critical - externalPower_notConnected = _mscl.WirelessTypes_externalPower_notConnected - externalPower_connected = _mscl.WirelessTypes_externalPower_connected - delayVersion_v1 = _mscl.WirelessTypes_delayVersion_v1 - delayVersion_v2 = _mscl.WirelessTypes_delayVersion_v2 - delayVersion_v3 = _mscl.WirelessTypes_delayVersion_v3 - delayVersion_v4 = _mscl.WirelessTypes_delayVersion_v4 - UNKNOWN_RSSI = _mscl.WirelessTypes_UNKNOWN_RSSI - - def __init__(self): - _mscl.WirelessTypes_swiginit(self, _mscl.new_WirelessTypes()) - __swig_destroy__ = _mscl.delete_WirelessTypes - -# Register WirelessTypes in _mscl: -_mscl.WirelessTypes_swigregister(WirelessTypes) - -class SampleRate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - rateType_seconds = _mscl.SampleRate_rateType_seconds - rateType_hertz = _mscl.SampleRate_rateType_hertz - rateType_event = _mscl.SampleRate_rateType_event - rateType_decimation = _mscl.SampleRate_rateType_decimation - - def __init__(self, *args): - _mscl.SampleRate_swiginit(self, _mscl.new_SampleRate(*args)) - - def __str__(self): - return _mscl.SampleRate___str__(self) - - def prettyStr(self): - return _mscl.SampleRate_prettyStr(self) - - def samplePeriod(self): - return _mscl.SampleRate_samplePeriod(self) - - def samplesPerSecond(self): - return _mscl.SampleRate_samplesPerSecond(self) - - def rateType(self): - return _mscl.SampleRate_rateType(self) - - def samples(self): - return _mscl.SampleRate_samples(self) - - def toWirelessSampleRate(self): - return _mscl.SampleRate_toWirelessSampleRate(self) - - def toDecimation(self, sampleRateBase): - return _mscl.SampleRate_toDecimation(self, sampleRateBase) - - @staticmethod - def Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - - @staticmethod - def KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - - @staticmethod - def Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - - @staticmethod - def Event(): - return _mscl.SampleRate_Event() - - @staticmethod - def Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - - @staticmethod - def FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - - @staticmethod - def FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - __swig_destroy__ = _mscl.delete_SampleRate - -# Register SampleRate in _mscl: -_mscl.SampleRate_swigregister(SampleRate) - -def SampleRate_Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - -def SampleRate_KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - -def SampleRate_Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - -def SampleRate_Event(): - return _mscl.SampleRate_Event() - -def SampleRate_Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - -def SampleRate_FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - -def SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - -class Matrix(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Matrix_swiginit(self, _mscl.new_Matrix()) - - def valuesType(self): - return _mscl.Matrix_valuesType(self) - - def rows(self): - return _mscl.Matrix_rows(self) - - def columns(self): - return _mscl.Matrix_columns(self) - - def as_doubleAt(self, row, column): - return _mscl.Matrix_as_doubleAt(self, row, column) - - def as_floatAt(self, row, column): - return _mscl.Matrix_as_floatAt(self, row, column) - - def as_uint16At(self, row, column): - return _mscl.Matrix_as_uint16At(self, row, column) - - def as_uint8At(self, row, column): - return _mscl.Matrix_as_uint8At(self, row, column) - - def __str__(self): - return _mscl.Matrix___str__(self) - __swig_destroy__ = _mscl.delete_Matrix - -# Register Matrix in _mscl: -_mscl.Matrix_swigregister(Matrix) - -class Vector(Matrix): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Vector_swiginit(self, _mscl.new_Vector()) - - def size(self): - return _mscl.Vector_size(self) - - def as_doubleAt(self, index): - return _mscl.Vector_as_doubleAt(self, index) - - def as_floatAt(self, index): - return _mscl.Vector_as_floatAt(self, index) - - def as_uint16At(self, index): - return _mscl.Vector_as_uint16At(self, index) - - def as_uint8At(self, index): - return _mscl.Vector_as_uint8At(self, index) - __swig_destroy__ = _mscl.delete_Vector - -# Register Vector in _mscl: -_mscl.Vector_swigregister(Vector) - -class Bitfield(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Bitfield_swiginit(self, _mscl.new_Bitfield(*args)) - __swig_destroy__ = _mscl.delete_Bitfield - - def value(self, *args): - return _mscl.Bitfield_value(self, *args) - - def get(self, mask, shiftToLsb=True): - return _mscl.Bitfield_get(self, mask, shiftToLsb) - - def set(self, mask, value, shiftRequired=True): - return _mscl.Bitfield_set(self, mask, value, shiftRequired) - - def checkBit(self, bitIndex, indexBase=0): - return _mscl.Bitfield_checkBit(self, bitIndex, indexBase) - - def setBit(self, bitIndex, value, indexBase=0): - return _mscl.Bitfield_setBit(self, bitIndex, value, indexBase) - -# Register Bitfield in _mscl: -_mscl.Bitfield_swigregister(Bitfield) - -class StructuralHealth(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, angle, uptime, damage, processingRate, histogram): - _mscl.StructuralHealth_swiginit(self, _mscl.new_StructuralHealth(angle, uptime, damage, processingRate, histogram)) - - def angle(self): - return _mscl.StructuralHealth_angle(self) - - def uptime(self): - return _mscl.StructuralHealth_uptime(self) - - def damage(self): - return _mscl.StructuralHealth_damage(self) - - def processingRate(self): - return _mscl.StructuralHealth_processingRate(self) - - def histogram(self): - return _mscl.StructuralHealth_histogram(self) - __swig_destroy__ = _mscl.delete_StructuralHealth - -# Register StructuralHealth in _mscl: -_mscl.StructuralHealth_swigregister(StructuralHealth) - -class DataPoint(Value): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - channelPropertyId_angle = _mscl.DataPoint_channelPropertyId_angle - channelPropertyId_derivedFrom = _mscl.DataPoint_channelPropertyId_derivedFrom - channelPropertyId_derivedAlgorithmId = _mscl.DataPoint_channelPropertyId_derivedAlgorithmId - __swig_destroy__ = _mscl.delete_DataPoint - - def channelProperty(self, id): - return _mscl.DataPoint_channelProperty(self, id) - - def as_Vector(self): - return _mscl.DataPoint_as_Vector(self) - - def as_Matrix(self): - return _mscl.DataPoint_as_Matrix(self) - - def as_Timestamp(self): - return _mscl.DataPoint_as_Timestamp(self) - - def as_Bytes(self): - return _mscl.DataPoint_as_Bytes(self) - - def as_StructuralHealth(self): - return _mscl.DataPoint_as_StructuralHealth(self) - - def as_RfSweep(self): - return _mscl.DataPoint_as_RfSweep(self) - - def as_string(self): - return _mscl.DataPoint_as_string(self) - -# Register DataPoint in _mscl: -_mscl.DataPoint_swigregister(DataPoint) - -class ConfigIssue(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONFIG_SAMPLING_MODE = _mscl.ConfigIssue_CONFIG_SAMPLING_MODE - CONFIG_ACTIVE_CHANNELS = _mscl.ConfigIssue_CONFIG_ACTIVE_CHANNELS - CONFIG_SAMPLE_RATE = _mscl.ConfigIssue_CONFIG_SAMPLE_RATE - CONFIG_SWEEPS = _mscl.ConfigIssue_CONFIG_SWEEPS - CONFIG_UNLIMITED_DURATION = _mscl.ConfigIssue_CONFIG_UNLIMITED_DURATION - CONFIG_DATA_FORMAT = _mscl.ConfigIssue_CONFIG_DATA_FORMAT - CONFIG_DATA_COLLECTION_METHOD = _mscl.ConfigIssue_CONFIG_DATA_COLLECTION_METHOD - CONFIG_TIME_BETWEEN_BURSTS = _mscl.ConfigIssue_CONFIG_TIME_BETWEEN_BURSTS - CONFIG_THERMOCOUPLE_TYPE = _mscl.ConfigIssue_CONFIG_THERMOCOUPLE_TYPE - CONFIG_FILTER_SETTLING_TIME = _mscl.ConfigIssue_CONFIG_FILTER_SETTLING_TIME - CONFIG_BUTTON = _mscl.ConfigIssue_CONFIG_BUTTON - CONFIG_ANALOG_PAIR = _mscl.ConfigIssue_CONFIG_ANALOG_PAIR - CONFIG_INPUT_RANGE = _mscl.ConfigIssue_CONFIG_INPUT_RANGE - CONFIG_INACTIVITY_TIMEOUT = _mscl.ConfigIssue_CONFIG_INACTIVITY_TIMEOUT - CONFIG_CHECK_RADIO_INTERVAL = _mscl.ConfigIssue_CONFIG_CHECK_RADIO_INTERVAL - CONFIG_LOST_BEACON_TIMEOUT = _mscl.ConfigIssue_CONFIG_LOST_BEACON_TIMEOUT - CONFIG_DEFAULT_MODE = _mscl.ConfigIssue_CONFIG_DEFAULT_MODE - CONFIG_TRANSMIT_POWER = _mscl.ConfigIssue_CONFIG_TRANSMIT_POWER - CONFIG_LINEAR_EQUATION = _mscl.ConfigIssue_CONFIG_LINEAR_EQUATION - CONFIG_FATIGUE = _mscl.ConfigIssue_CONFIG_FATIGUE - CONFIG_FATIGUE_MODE = _mscl.ConfigIssue_CONFIG_FATIGUE_MODE - CONFIG_FATIGUE_ANGLE_ID = _mscl.ConfigIssue_CONFIG_FATIGUE_ANGLE_ID - CONFIG_FATIGUE_SN_CURVE = _mscl.ConfigIssue_CONFIG_FATIGUE_SN_CURVE - CONFIG_FATIGUE_DIST_NUM_ANGLES = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_NUM_ANGLES - CONFIG_FATIGUE_DIST_ANGLE = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_ANGLE - CONFIG_HISTOGRAM = _mscl.ConfigIssue_CONFIG_HISTOGRAM - CONFIG_HISTOGRAM_TX_RATE = _mscl.ConfigIssue_CONFIG_HISTOGRAM_TX_RATE - CONFIG_HARDWARE_OFFSET = _mscl.ConfigIssue_CONFIG_HARDWARE_OFFSET - CONFIG_ACTIVITY_SENSE = _mscl.ConfigIssue_CONFIG_ACTIVITY_SENSE - CONFIG_GAUGE_FACTOR = _mscl.ConfigIssue_CONFIG_GAUGE_FACTOR - CONFIG_EVENT_TRIGGER = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER - CONFIG_EVENT_TRIGGER_DURATION = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_DURATION - CONFIG_EVENT_TRIGGER_MASK = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_MASK - CONFIG_DIAGNOSTIC_INTERVAL = _mscl.ConfigIssue_CONFIG_DIAGNOSTIC_INTERVAL - CONFIG_ANTI_ALIASING_FILTER = _mscl.ConfigIssue_CONFIG_ANTI_ALIASING_FILTER - CONFIG_STORAGE_LIMIT_MODE = _mscl.ConfigIssue_CONFIG_STORAGE_LIMIT_MODE - CONFIG_SENSOR_DELAY = _mscl.ConfigIssue_CONFIG_SENSOR_DELAY - CONFIG_LOW_PASS_FILTER = _mscl.ConfigIssue_CONFIG_LOW_PASS_FILTER - CONFIG_DATA_MODE = _mscl.ConfigIssue_CONFIG_DATA_MODE - CONFIG_DERIVED_DATA_RATE = _mscl.ConfigIssue_CONFIG_DERIVED_DATA_RATE - CONFIG_DERIVED_MASK_RMS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_RMS - CONFIG_DERIVED_MASK_P2P = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_P2P - CONFIG_DERIVED_MASK_IPS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_IPS - CONFIG_DERIVED_MASK_CREST_FACTOR = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_CREST_FACTOR - CONFIG_HIGH_PASS_FILTER = _mscl.ConfigIssue_CONFIG_HIGH_PASS_FILTER - CONFIG_DERIVED_MASK = _mscl.ConfigIssue_CONFIG_DERIVED_MASK - CONFIG_COMM_PROTOCOL = _mscl.ConfigIssue_CONFIG_COMM_PROTOCOL - CONFIG_DERIVED_MASK_MEAN = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_MEAN - CONFIG_GAUGE_RESISTANCE = _mscl.ConfigIssue_CONFIG_GAUGE_RESISTANCE - CONFIG_NUM_ACTIVE_GAUGES = _mscl.ConfigIssue_CONFIG_NUM_ACTIVE_GAUGES - CONFIG_TEMP_SENSOR_OPTS = _mscl.ConfigIssue_CONFIG_TEMP_SENSOR_OPTS - CONFIG_DEBOUNCE_FILTER = _mscl.ConfigIssue_CONFIG_DEBOUNCE_FILTER - CONFIG_PULLUP_RESISTOR = _mscl.ConfigIssue_CONFIG_PULLUP_RESISTOR - CONFIG_EXCITATION_VOLTAGE = _mscl.ConfigIssue_CONFIG_EXCITATION_VOLTAGE - CONFIG_DERIVED_UNIT = _mscl.ConfigIssue_CONFIG_DERIVED_UNIT - CONFIG_SENSOR_OUTPUT_MODE = _mscl.ConfigIssue_CONFIG_SENSOR_OUTPUT_MODE - CONFIG_LOW_BATTERY_THRESHOLD = _mscl.ConfigIssue_CONFIG_LOW_BATTERY_THRESHOLD - CONFIG_CFC_FILTER = _mscl.ConfigIssue_CONFIG_CFC_FILTER - - def __init__(self, *args): - _mscl.ConfigIssue_swiginit(self, _mscl.new_ConfigIssue(*args)) - - def id(self): - return _mscl.ConfigIssue_id(self) - - def description(self): - return _mscl.ConfigIssue_description(self) - - def isChannelGroupIssue(self): - return _mscl.ConfigIssue_isChannelGroupIssue(self) - - def channelMask(self): - return _mscl.ConfigIssue_channelMask(self) - __swig_destroy__ = _mscl.delete_ConfigIssue - -# Register ConfigIssue in _mscl: -_mscl.ConfigIssue_swigregister(ConfigIssue) - -class ActivitySense(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ActivitySense_swiginit(self, _mscl.new_ActivitySense()) - - def enabled(self, *args): - return _mscl.ActivitySense_enabled(self, *args) - - def activityThreshold(self, *args): - return _mscl.ActivitySense_activityThreshold(self, *args) - - def inactivityThreshold(self, *args): - return _mscl.ActivitySense_inactivityThreshold(self, *args) - - def activityTime(self, *args): - return _mscl.ActivitySense_activityTime(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.ActivitySense_inactivityTimeout(self, *args) - __swig_destroy__ = _mscl.delete_ActivitySense - -# Register ActivitySense in _mscl: -_mscl.ActivitySense_swigregister(ActivitySense) - -class Trigger(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Trigger_swiginit(self, _mscl.new_Trigger(*args)) - - def channelNumber(self, *args): - return _mscl.Trigger_channelNumber(self, *args) - - def triggerType(self, *args): - return _mscl.Trigger_triggerType(self, *args) - - def triggerValue(self, *args): - return _mscl.Trigger_triggerValue(self, *args) - __swig_destroy__ = _mscl.delete_Trigger - -# Register Trigger in _mscl: -_mscl.Trigger_swigregister(Trigger) - -class EventTriggerOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerOptions_swiginit(self, _mscl.new_EventTriggerOptions()) - - def triggerMask(self, *args): - return _mscl.EventTriggerOptions_triggerMask(self, *args) - - def anyTriggersEnabled(self): - return _mscl.EventTriggerOptions_anyTriggersEnabled(self) - - def triggerEnabled(self, triggerIndex): - return _mscl.EventTriggerOptions_triggerEnabled(self, triggerIndex) - - def enableTrigger(self, triggerIndex, enable=True): - return _mscl.EventTriggerOptions_enableTrigger(self, triggerIndex, enable) - - def preDuration(self, *args): - return _mscl.EventTriggerOptions_preDuration(self, *args) - - def postDuration(self, *args): - return _mscl.EventTriggerOptions_postDuration(self, *args) - - def trigger(self, *args): - return _mscl.EventTriggerOptions_trigger(self, *args) - - def triggers(self): - return _mscl.EventTriggerOptions_triggers(self) - __swig_destroy__ = _mscl.delete_EventTriggerOptions - -# Register EventTriggerOptions in _mscl: -_mscl.EventTriggerOptions_swigregister(EventTriggerOptions) - -class SnCurveSegment(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.SnCurveSegment_swiginit(self, _mscl.new_SnCurveSegment(*args)) - - def m(self, *args): - return _mscl.SnCurveSegment_m(self, *args) - - def logA(self, *args): - return _mscl.SnCurveSegment_logA(self, *args) - __swig_destroy__ = _mscl.delete_SnCurveSegment - -# Register SnCurveSegment in _mscl: -_mscl.SnCurveSegment_swigregister(SnCurveSegment) - -class FatigueOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FatigueOptions_swiginit(self, _mscl.new_FatigueOptions()) - - def youngsModulus(self, *args): - return _mscl.FatigueOptions_youngsModulus(self, *args) - - def poissonsRatio(self, *args): - return _mscl.FatigueOptions_poissonsRatio(self, *args) - - def peakValleyThreshold(self, *args): - return _mscl.FatigueOptions_peakValleyThreshold(self, *args) - - def debugMode(self, *args): - return _mscl.FatigueOptions_debugMode(self, *args) - - def damageAngles(self): - return _mscl.FatigueOptions_damageAngles(self) - - def damageAngle(self, *args): - return _mscl.FatigueOptions_damageAngle(self, *args) - - def snCurveSegments(self): - return _mscl.FatigueOptions_snCurveSegments(self) - - def snCurveSegment(self, *args): - return _mscl.FatigueOptions_snCurveSegment(self, *args) - - def fatigueMode(self, *args): - return _mscl.FatigueOptions_fatigueMode(self, *args) - - def distributedAngleMode_numAngles(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_numAngles(self, *args) - - def distributedAngleMode_lowerBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_lowerBound(self, *args) - - def distributedAngleMode_upperBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_upperBound(self, *args) - - def histogramEnable(self, *args): - return _mscl.FatigueOptions_histogramEnable(self, *args) - __swig_destroy__ = _mscl.delete_FatigueOptions - -# Register FatigueOptions in _mscl: -_mscl.FatigueOptions_swigregister(FatigueOptions) - -class HistogramOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HistogramOptions_swiginit(self, _mscl.new_HistogramOptions()) - - def transmitRate(self, *args): - return _mscl.HistogramOptions_transmitRate(self, *args) - - def binsStart(self, *args): - return _mscl.HistogramOptions_binsStart(self, *args) - - def binsSize(self, *args): - return _mscl.HistogramOptions_binsSize(self, *args) - __swig_destroy__ = _mscl.delete_HistogramOptions - -# Register HistogramOptions in _mscl: -_mscl.HistogramOptions_swigregister(HistogramOptions) - -class InputRangeEntry(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - inputRange = property(_mscl.InputRangeEntry_inputRange_get, _mscl.InputRangeEntry_inputRange_set) - hasGain = property(_mscl.InputRangeEntry_hasGain_get, _mscl.InputRangeEntry_hasGain_set) - gain = property(_mscl.InputRangeEntry_gain_get, _mscl.InputRangeEntry_gain_set) - - def __init__(self, *args): - _mscl.InputRangeEntry_swiginit(self, _mscl.new_InputRangeEntry(*args)) - __swig_destroy__ = _mscl.delete_InputRangeEntry - -# Register InputRangeEntry in _mscl: -_mscl.InputRangeEntry_swigregister(InputRangeEntry) - -class TempSensorOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - - @staticmethod - def RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - - @staticmethod - def Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - - def transducerType(self): - return _mscl.TempSensorOptions_transducerType(self) - - def thermocoupleType(self): - return _mscl.TempSensorOptions_thermocoupleType(self) - - def rtdType(self): - return _mscl.TempSensorOptions_rtdType(self) - - def rtdWireType(self): - return _mscl.TempSensorOptions_rtdWireType(self) - - def thermistorType(self): - return _mscl.TempSensorOptions_thermistorType(self) - __swig_destroy__ = _mscl.delete_TempSensorOptions - -# Register TempSensorOptions in _mscl: -_mscl.TempSensorOptions_swigregister(TempSensorOptions) - -def TempSensorOptions_Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - -def TempSensorOptions_RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - -def TempSensorOptions_Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - -class WirelessModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_vLink_legacy = _mscl.WirelessModels_node_vLink_legacy - node_cfBearingTempLink = _mscl.WirelessModels_node_cfBearingTempLink - node_envLink_pro = _mscl.WirelessModels_node_envLink_pro - node_gLink_2g = _mscl.WirelessModels_node_gLink_2g - node_gLink_10g = _mscl.WirelessModels_node_gLink_10g - node_gLinkII_cust_in = _mscl.WirelessModels_node_gLinkII_cust_in - node_gLinkII_2g_in = _mscl.WirelessModels_node_gLinkII_2g_in - node_gLinkII_10g_in = _mscl.WirelessModels_node_gLinkII_10g_in - node_gLinkII_cust_ex = _mscl.WirelessModels_node_gLinkII_cust_ex - node_gLinkII_2g_ex = _mscl.WirelessModels_node_gLinkII_2g_ex - node_gLinkII_10g_ex = _mscl.WirelessModels_node_gLinkII_10g_ex - node_gLink_rgd_10g = _mscl.WirelessModels_node_gLink_rgd_10g - node_gLink_200_8g = _mscl.WirelessModels_node_gLink_200_8g - node_gLink_200_40g = _mscl.WirelessModels_node_gLink_200_40g - node_gLink_200_8g_oem = _mscl.WirelessModels_node_gLink_200_8g_oem - node_gLink_200_40g_oem = _mscl.WirelessModels_node_gLink_200_40g_oem - node_gLink_200_8g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_8g_oem_mmcx - node_gLink_200_40g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_40g_oem_mmcx - node_gLink_200_8g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_8g_oem_u_fl - node_gLink_200_40g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_40g_oem_u_fl - node_gLink_200_r = _mscl.WirelessModels_node_gLink_200_r - node_sgLink_oem_S = _mscl.WirelessModels_node_sgLink_oem_S - node_sgLink = _mscl.WirelessModels_node_sgLink - node_sgLink200 = _mscl.WirelessModels_node_sgLink200 - node_sgLink200_hbridge_1K = _mscl.WirelessModels_node_sgLink200_hbridge_1K - node_sgLink200_hbridge_350 = _mscl.WirelessModels_node_sgLink200_hbridge_350 - node_sgLink200_hbridge_120 = _mscl.WirelessModels_node_sgLink200_hbridge_120 - node_sgLink200_qbridge_1K = _mscl.WirelessModels_node_sgLink200_qbridge_1K - node_sgLink200_qbridge_350 = _mscl.WirelessModels_node_sgLink200_qbridge_350 - node_sgLink200_qbridge_120 = _mscl.WirelessModels_node_sgLink200_qbridge_120 - node_sgLink_oem = _mscl.WirelessModels_node_sgLink_oem - node_sgLink_micro = _mscl.WirelessModels_node_sgLink_micro - node_sgLink200_oem = _mscl.WirelessModels_node_sgLink200_oem - node_sgLink200_oem_ufl = _mscl.WirelessModels_node_sgLink200_oem_ufl - node_sgLink200_oem_hbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K - node_sgLink200_oem_hbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K_ufl - node_sgLink200_oem_hbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120 - node_sgLink200_oem_hbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120_ufl - node_sgLink200_oem_hbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350 - node_sgLink200_oem_hbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350_ufl - node_sgLink200_oem_qbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K - node_sgLink200_oem_qbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K_ufl - node_sgLink200_oem_qbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120 - node_sgLink200_oem_qbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120_ufl - node_sgLink200_oem_qbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350 - node_sgLink200_oem_qbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350_ufl - node_sgLink_rgd = _mscl.WirelessModels_node_sgLink_rgd - node_shmLink = _mscl.WirelessModels_node_shmLink - node_tcLink_1ch = _mscl.WirelessModels_node_tcLink_1ch - node_tcLink_6ch = _mscl.WirelessModels_node_tcLink_6ch - node_tcLink_3ch = _mscl.WirelessModels_node_tcLink_3ch - node_tcLink_6ch_ip67 = _mscl.WirelessModels_node_tcLink_6ch_ip67 - node_tcLink200_oem = _mscl.WirelessModels_node_tcLink200_oem - node_tcLink200_oem_ufl = _mscl.WirelessModels_node_tcLink200_oem_ufl - node_tcLink200 = _mscl.WirelessModels_node_tcLink200 - node_rtdLink200 = _mscl.WirelessModels_node_rtdLink200 - node_tcLink_6ch_ip67_rht = _mscl.WirelessModels_node_tcLink_6ch_ip67_rht - node_vLink = _mscl.WirelessModels_node_vLink - node_vLink200 = _mscl.WirelessModels_node_vLink200 - node_vLink200_qbridge_1K = _mscl.WirelessModels_node_vLink200_qbridge_1K - node_vLink200_qbridge_120 = _mscl.WirelessModels_node_vLink200_qbridge_120 - node_vLink200_qbridge_350 = _mscl.WirelessModels_node_vLink200_qbridge_350 - node_vLink200_hbridge_1K = _mscl.WirelessModels_node_vLink200_hbridge_1K - node_vLink200_hbridge_120 = _mscl.WirelessModels_node_vLink200_hbridge_120 - node_vLink200_hbridge_350 = _mscl.WirelessModels_node_vLink200_hbridge_350 - node_iepeLink = _mscl.WirelessModels_node_iepeLink - node_dvrtLink = _mscl.WirelessModels_node_dvrtLink - node_envLink_mini = _mscl.WirelessModels_node_envLink_mini - node_wattLink = _mscl.WirelessModels_node_wattLink - node_wattLink_3Y208 = _mscl.WirelessModels_node_wattLink_3Y208 - node_wattLink_3D240 = _mscl.WirelessModels_node_wattLink_3D240 - node_wattLink_3Y400 = _mscl.WirelessModels_node_wattLink_3Y400 - node_wattLink_3D400 = _mscl.WirelessModels_node_wattLink_3D400 - node_wattLink_3Y480 = _mscl.WirelessModels_node_wattLink_3Y480 - node_wattLink_3D480 = _mscl.WirelessModels_node_wattLink_3D480 - node_wattLink_3Y600 = _mscl.WirelessModels_node_wattLink_3Y600 - node_ptLink200 = _mscl.WirelessModels_node_ptLink200 - node_rtdLink = _mscl.WirelessModels_node_rtdLink - node_shmLink2_cust1_oldNumber = _mscl.WirelessModels_node_shmLink2_cust1_oldNumber - node_shmLink2_cust1 = _mscl.WirelessModels_node_shmLink2_cust1 - node_shmLink200 = _mscl.WirelessModels_node_shmLink200 - node_shmLink201 = _mscl.WirelessModels_node_shmLink201 - node_shmLink201_qbridge_1K = _mscl.WirelessModels_node_shmLink201_qbridge_1K - node_shmLink201_qbridge_348 = _mscl.WirelessModels_node_shmLink201_qbridge_348 - node_shmLink201_hbridge_1K = _mscl.WirelessModels_node_shmLink201_hbridge_1K - node_shmLink201_hbridge_348 = _mscl.WirelessModels_node_shmLink201_hbridge_348 - node_shmLink201_fullbridge = _mscl.WirelessModels_node_shmLink201_fullbridge - node_shmLink210_fullbridge = _mscl.WirelessModels_node_shmLink210_fullbridge - node_shmLink210_qbridge_3K = _mscl.WirelessModels_node_shmLink210_qbridge_3K - node_torqueLink = _mscl.WirelessModels_node_torqueLink - node_torqueLink200_3ch = _mscl.WirelessModels_node_torqueLink200_3ch - node_torqueLink200 = _mscl.WirelessModels_node_torqueLink200 - node_torqueLink200_3ch_s = _mscl.WirelessModels_node_torqueLink200_3ch_s - node_sgLink_herm = _mscl.WirelessModels_node_sgLink_herm - node_sgLink_herm_2600 = _mscl.WirelessModels_node_sgLink_herm_2600 - node_sgLink_herm_2700 = _mscl.WirelessModels_node_sgLink_herm_2700 - node_sgLink_herm_2800 = _mscl.WirelessModels_node_sgLink_herm_2800 - node_sgLink_herm_2900 = _mscl.WirelessModels_node_sgLink_herm_2900 - node_wirelessImpactSensor = _mscl.WirelessModels_node_wirelessImpactSensor - node_gLink_200_40g_s = _mscl.WirelessModels_node_gLink_200_40g_s - base_wsda_1000 = _mscl.WirelessModels_base_wsda_1000 - base_wsda_1500 = _mscl.WirelessModels_base_wsda_1500 - base_wsda_2000 = _mscl.WirelessModels_base_wsda_2000 - base_wsdaBase_200_legacy = _mscl.WirelessModels_base_wsdaBase_200_legacy - base_wsdaBase_200 = _mscl.WirelessModels_base_wsdaBase_200 - base_wsdaBase_200_extAntenna = _mscl.WirelessModels_base_wsdaBase_200_extAntenna - base_wsdaBase_101_analog = _mscl.WirelessModels_base_wsdaBase_101_analog - base_wsdaBase_102_rs232 = _mscl.WirelessModels_base_wsdaBase_102_rs232 - base_wsdaBase_104_usb = _mscl.WirelessModels_base_wsdaBase_104_usb - base_wsi_104 = _mscl.WirelessModels_base_wsi_104 - base_wsdaBase_mini = _mscl.WirelessModels_base_wsdaBase_mini - - def __init__(self): - _mscl.WirelessModels_swiginit(self, _mscl.new_WirelessModels()) - __swig_destroy__ = _mscl.delete_WirelessModels - -# Register WirelessModels in _mscl: -_mscl.WirelessModels_swigregister(WirelessModels) - -class NodeDiscovery(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def nodeAddress(self): - return _mscl.NodeDiscovery_nodeAddress(self) - - def frequency(self): - return _mscl.NodeDiscovery_frequency(self) - - def panId(self): - return _mscl.NodeDiscovery_panId(self) - - def model(self): - return _mscl.NodeDiscovery_model(self) - - def serialNumber(self): - return _mscl.NodeDiscovery_serialNumber(self) - - def firmwareVersion(self): - return _mscl.NodeDiscovery_firmwareVersion(self) - - def defaultMode(self): - return _mscl.NodeDiscovery_defaultMode(self) - - def builtInTestResult(self): - return _mscl.NodeDiscovery_builtInTestResult(self) - - def communicationProtocol(self): - return _mscl.NodeDiscovery_communicationProtocol(self) - - def asppVersion_lxrs(self): - return _mscl.NodeDiscovery_asppVersion_lxrs(self) - - def asppVersion_lxrsPlus(self): - return _mscl.NodeDiscovery_asppVersion_lxrsPlus(self) - - def baseRssi(self): - return _mscl.NodeDiscovery_baseRssi(self) - - def timestamp(self): - return _mscl.NodeDiscovery_timestamp(self) - - def __init__(self): - _mscl.NodeDiscovery_swiginit(self, _mscl.new_NodeDiscovery()) - __swig_destroy__ = _mscl.delete_NodeDiscovery - -# Register NodeDiscovery in _mscl: -_mscl.NodeDiscovery_swigregister(NodeDiscovery) - -class LinearEquation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LinearEquation_swiginit(self, _mscl.new_LinearEquation(*args)) - - def slope(self, *args): - return _mscl.LinearEquation_slope(self, *args) - - def offset(self, *args): - return _mscl.LinearEquation_offset(self, *args) - __swig_destroy__ = _mscl.delete_LinearEquation - -# Register LinearEquation in _mscl: -_mscl.LinearEquation_swigregister(LinearEquation) - -class CalCoefficients(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CalCoefficients_swiginit(self, _mscl.new_CalCoefficients(*args)) - - def equationType(self): - return _mscl.CalCoefficients_equationType(self) - - def unit(self): - return _mscl.CalCoefficients_unit(self) - - def linearEquation(self): - return _mscl.CalCoefficients_linearEquation(self) - __swig_destroy__ = _mscl.delete_CalCoefficients - -# Register CalCoefficients in _mscl: -_mscl.CalCoefficients_swigregister(CalCoefficients) - -class ChannelGroup(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ChannelGroup_swiginit(self, _mscl.new_ChannelGroup()) - - def channels(self): - return _mscl.ChannelGroup_channels(self) - - def name(self): - return _mscl.ChannelGroup_name(self) - - def eepromLocation(self, setting): - return _mscl.ChannelGroup_eepromLocation(self, setting) - - def settings(self): - return _mscl.ChannelGroup_settings(self) - - def hasSetting(self, setting): - return _mscl.ChannelGroup_hasSetting(self, setting) - - def hasSettingAndChannel(self, setting, channelNumber): - return _mscl.ChannelGroup_hasSettingAndChannel(self, setting, channelNumber) - __swig_destroy__ = _mscl.delete_ChannelGroup - -# Register ChannelGroup in _mscl: -_mscl.ChannelGroup_swigregister(ChannelGroup) - -class WirelessChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - channel_unknown = _mscl.WirelessChannel_channel_unknown - channel_1 = _mscl.WirelessChannel_channel_1 - channel_2 = _mscl.WirelessChannel_channel_2 - channel_3 = _mscl.WirelessChannel_channel_3 - channel_4 = _mscl.WirelessChannel_channel_4 - channel_5 = _mscl.WirelessChannel_channel_5 - channel_6 = _mscl.WirelessChannel_channel_6 - channel_7 = _mscl.WirelessChannel_channel_7 - channel_8 = _mscl.WirelessChannel_channel_8 - channel_9 = _mscl.WirelessChannel_channel_9 - channel_10 = _mscl.WirelessChannel_channel_10 - channel_11 = _mscl.WirelessChannel_channel_11 - channel_12 = _mscl.WirelessChannel_channel_12 - channel_13 = _mscl.WirelessChannel_channel_13 - channel_14 = _mscl.WirelessChannel_channel_14 - channel_15 = _mscl.WirelessChannel_channel_15 - channel_16 = _mscl.WirelessChannel_channel_16 - channel_digital_1 = _mscl.WirelessChannel_channel_digital_1 - channel_digital_2 = _mscl.WirelessChannel_channel_digital_2 - channel_digital_3 = _mscl.WirelessChannel_channel_digital_3 - channel_digital_4 = _mscl.WirelessChannel_channel_digital_4 - channel_digital_5 = _mscl.WirelessChannel_channel_digital_5 - channel_digital_6 = _mscl.WirelessChannel_channel_digital_6 - channel_digital_7 = _mscl.WirelessChannel_channel_digital_7 - channel_digital_8 = _mscl.WirelessChannel_channel_digital_8 - channel_digital_9 = _mscl.WirelessChannel_channel_digital_9 - channel_digital_10 = _mscl.WirelessChannel_channel_digital_10 - channel_digital_11 = _mscl.WirelessChannel_channel_digital_11 - channel_digital_12 = _mscl.WirelessChannel_channel_digital_12 - channel_digital_13 = _mscl.WirelessChannel_channel_digital_13 - channel_digital_14 = _mscl.WirelessChannel_channel_digital_14 - channel_digital_15 = _mscl.WirelessChannel_channel_digital_15 - channel_digital_16 = _mscl.WirelessChannel_channel_digital_16 - channel_structuralHealth = _mscl.WirelessChannel_channel_structuralHealth - channel_hcl_rawBase_mag1_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_x - channel_hcl_rawBase_mag1_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_y - channel_hcl_rawBase_mag1_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_z - channel_hcl_rawBase_mag2_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_x - channel_hcl_rawBase_mag2_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_y - channel_hcl_rawBase_mag2_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_z - channel_hcl_rawBase_mag3_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_x - channel_hcl_rawBase_mag3_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_y - channel_hcl_rawBase_mag3_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_z - channel_hcl_rawBase_mag4_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_x - channel_hcl_rawBase_mag4_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_y - channel_hcl_rawBase_mag4_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_z - channel_hcl_rawBase_mag5_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_x - channel_hcl_rawBase_mag5_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_y - channel_hcl_rawBase_mag5_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_z - channel_hcl_rawBase_mag6_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_x - channel_hcl_rawBase_mag6_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_y - channel_hcl_rawBase_mag6_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_z - channel_hcl_rawBase_mag7_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_x - channel_hcl_rawBase_mag7_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_y - channel_hcl_rawBase_mag7_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_z - channel_hcl_rawBase_mag8_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_x - channel_hcl_rawBase_mag8_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_y - channel_hcl_rawBase_mag8_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_z - channel_hcl_rawBase_gyro_x = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_x - channel_hcl_rawBase_gyro_y = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_y - channel_hcl_rawBase_gyro_z = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_z - channel_error_code = _mscl.WirelessChannel_channel_error_code - channel_hcl_rawStrain_BL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL30 - channel_hcl_rawStrain_BL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL120 - channel_hcl_rawStrain_A60 = _mscl.WirelessChannel_channel_hcl_rawStrain_A60 - channel_hcl_rawStrain_A150 = _mscl.WirelessChannel_channel_hcl_rawStrain_A150 - channel_hcl_rawStrain_AL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL30 - channel_hcl_rawStrain_AL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL120 - channel_hcl_rawStrain_BR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR60 - channel_hcl_rawStrain_BR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR150 - channel_hcl_rawStrain_B30 = _mscl.WirelessChannel_channel_hcl_rawStrain_B30 - channel_hcl_rawStrain_T120 = _mscl.WirelessChannel_channel_hcl_rawStrain_T120 - channel_hcl_rawStrain_AR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR60 - channel_hcl_rawStrain_AR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR150 - channel_hcl_rawStrain_A30 = _mscl.WirelessChannel_channel_hcl_rawStrain_A30 - channel_hcl_rawStrain_A120 = _mscl.WirelessChannel_channel_hcl_rawStrain_A120 - channel_hcl_rawStrain_BL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL90 - channel_hcl_rawStrain_BL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL180 - channel_hcl_rawStrain_BR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR30 - channel_hcl_rawStrain_BR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR120 - channel_hcl_rawStrain_AL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL90 - channel_hcl_rawStrain_AL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL180 - channel_hcl_rawStrain_AR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR30 - channel_hcl_rawStrain_AR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR120 - channel_hcl_rawStrain_B90 = _mscl.WirelessChannel_channel_hcl_rawStrain_B90 - channel_hcl_rawStrain_T0 = _mscl.WirelessChannel_channel_hcl_rawStrain_T0 - channel_hcl_rawStrain_BL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL60 - channel_hcl_rawStrain_BL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL150 - channel_hcl_rawStrain_A90 = _mscl.WirelessChannel_channel_hcl_rawStrain_A90 - channel_hcl_rawStrain_A0 = _mscl.WirelessChannel_channel_hcl_rawStrain_A0 - channel_hcl_rawStrain_AL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL60 - channel_hcl_rawStrain_AL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL150 - channel_hcl_rawStrain_BR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR90 - channel_hcl_rawStrain_BR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR0 - channel_hcl_rawStrain_T60 = _mscl.WirelessChannel_channel_hcl_rawStrain_T60 - channel_hcl_rawStrain_B150 = _mscl.WirelessChannel_channel_hcl_rawStrain_B150 - channel_hcl_rawStrain_AR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR90 - channel_hcl_rawStrain_AR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR0 - channel_hcl_rawInertial_accel1 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel1 - channel_hcl_rawInertial_accel2 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel2 - channel_hcl_rawInertial_accel3 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel3 - channel_hcl_rawInertial_accel4 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel4 - channel_hcl_rawInertial_accel5 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel5 - channel_hcl_rawInertial_accel6 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel6 - channel_hcl_rawInertial_accel7 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel7 - channel_hcl_rawInertial_accel8 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel8 - channel_hcl_rawInertial_gyroX = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroX - channel_hcl_rawInertial_gyroY = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroY - channel_hcl_rawInertial_gyroZ = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroZ - channel_rawAngleStrain = _mscl.WirelessChannel_channel_rawAngleStrain - channel_beaconEcho = _mscl.WirelessChannel_channel_beaconEcho - channel_rfSweep = _mscl.WirelessChannel_channel_rfSweep - channel_diag_state = _mscl.WirelessChannel_channel_diag_state - channel_diag_runtime_idle = _mscl.WirelessChannel_channel_diag_runtime_idle - channel_diag_runtime_sleep = _mscl.WirelessChannel_channel_diag_runtime_sleep - channel_diag_runtime_activeRun = _mscl.WirelessChannel_channel_diag_runtime_activeRun - channel_diag_runtime_inactiveRun = _mscl.WirelessChannel_channel_diag_runtime_inactiveRun - channel_diag_resetCounter = _mscl.WirelessChannel_channel_diag_resetCounter - channel_diag_lowBatteryFlag = _mscl.WirelessChannel_channel_diag_lowBatteryFlag - channel_diag_sweepIndex = _mscl.WirelessChannel_channel_diag_sweepIndex - channel_diag_badSweepCount = _mscl.WirelessChannel_channel_diag_badSweepCount - channel_diag_totalTx = _mscl.WirelessChannel_channel_diag_totalTx - channel_diag_totalReTx = _mscl.WirelessChannel_channel_diag_totalReTx - channel_diag_totalDroppedPackets = _mscl.WirelessChannel_channel_diag_totalDroppedPackets - channel_diag_builtInTestResult = _mscl.WirelessChannel_channel_diag_builtInTestResult - channel_diag_eventIndex = _mscl.WirelessChannel_channel_diag_eventIndex - channel_hcl_axialLoadX = _mscl.WirelessChannel_channel_hcl_axialLoadX - channel_hcl_axialLoadY = _mscl.WirelessChannel_channel_hcl_axialLoadY - channel_hcl_axialLoadZ = _mscl.WirelessChannel_channel_hcl_axialLoadZ - channel_hcl_bendingMomentFlap = _mscl.WirelessChannel_channel_hcl_bendingMomentFlap - channel_hcl_bendingMomentLag = _mscl.WirelessChannel_channel_hcl_bendingMomentLag - channel_hcl_bendingMomentPitch = _mscl.WirelessChannel_channel_hcl_bendingMomentPitch - channel_hcl_motionFlap_mag = _mscl.WirelessChannel_channel_hcl_motionFlap_mag - channel_hcl_motionLag_mag = _mscl.WirelessChannel_channel_hcl_motionLag_mag - channel_hcl_motionPitch_mag = _mscl.WirelessChannel_channel_hcl_motionPitch_mag - channel_hcl_motionFlap_inertial = _mscl.WirelessChannel_channel_hcl_motionFlap_inertial - channel_hcl_motionLag_inertial = _mscl.WirelessChannel_channel_hcl_motionLag_inertial - channel_hcl_motionPitch_inertial = _mscl.WirelessChannel_channel_hcl_motionPitch_inertial - channel_hcl_cockingStiffness_mag = _mscl.WirelessChannel_channel_hcl_cockingStiffness_mag - channel_hcl_cockingStiffness_inertial = _mscl.WirelessChannel_channel_hcl_cockingStiffness_inertial - channel_hcl_temperature = _mscl.WirelessChannel_channel_hcl_temperature - channel_diag_externalPower = _mscl.WirelessChannel_channel_diag_externalPower - channel_diag_internalTemp = _mscl.WirelessChannel_channel_diag_internalTemp - channel_1_rms = _mscl.WirelessChannel_channel_1_rms - channel_2_rms = _mscl.WirelessChannel_channel_2_rms - channel_3_rms = _mscl.WirelessChannel_channel_3_rms - channel_4_rms = _mscl.WirelessChannel_channel_4_rms - channel_5_rms = _mscl.WirelessChannel_channel_5_rms - channel_6_rms = _mscl.WirelessChannel_channel_6_rms - channel_7_rms = _mscl.WirelessChannel_channel_7_rms - channel_8_rms = _mscl.WirelessChannel_channel_8_rms - channel_9_rms = _mscl.WirelessChannel_channel_9_rms - channel_10_rms = _mscl.WirelessChannel_channel_10_rms - channel_11_rms = _mscl.WirelessChannel_channel_11_rms - channel_12_rms = _mscl.WirelessChannel_channel_12_rms - channel_13_rms = _mscl.WirelessChannel_channel_13_rms - channel_14_rms = _mscl.WirelessChannel_channel_14_rms - channel_15_rms = _mscl.WirelessChannel_channel_15_rms - channel_16_rms = _mscl.WirelessChannel_channel_16_rms - channel_1_peakToPeak = _mscl.WirelessChannel_channel_1_peakToPeak - channel_2_peakToPeak = _mscl.WirelessChannel_channel_2_peakToPeak - channel_3_peakToPeak = _mscl.WirelessChannel_channel_3_peakToPeak - channel_4_peakToPeak = _mscl.WirelessChannel_channel_4_peakToPeak - channel_5_peakToPeak = _mscl.WirelessChannel_channel_5_peakToPeak - channel_6_peakToPeak = _mscl.WirelessChannel_channel_6_peakToPeak - channel_7_peakToPeak = _mscl.WirelessChannel_channel_7_peakToPeak - channel_8_peakToPeak = _mscl.WirelessChannel_channel_8_peakToPeak - channel_9_peakToPeak = _mscl.WirelessChannel_channel_9_peakToPeak - channel_10_peakToPeak = _mscl.WirelessChannel_channel_10_peakToPeak - channel_11_peakToPeak = _mscl.WirelessChannel_channel_11_peakToPeak - channel_12_peakToPeak = _mscl.WirelessChannel_channel_12_peakToPeak - channel_13_peakToPeak = _mscl.WirelessChannel_channel_13_peakToPeak - channel_14_peakToPeak = _mscl.WirelessChannel_channel_14_peakToPeak - channel_15_peakToPeak = _mscl.WirelessChannel_channel_15_peakToPeak - channel_16_peakToPeak = _mscl.WirelessChannel_channel_16_peakToPeak - channel_1_ips = _mscl.WirelessChannel_channel_1_ips - channel_2_ips = _mscl.WirelessChannel_channel_2_ips - channel_3_ips = _mscl.WirelessChannel_channel_3_ips - channel_4_ips = _mscl.WirelessChannel_channel_4_ips - channel_5_ips = _mscl.WirelessChannel_channel_5_ips - channel_6_ips = _mscl.WirelessChannel_channel_6_ips - channel_7_ips = _mscl.WirelessChannel_channel_7_ips - channel_8_ips = _mscl.WirelessChannel_channel_8_ips - channel_9_ips = _mscl.WirelessChannel_channel_9_ips - channel_10_ips = _mscl.WirelessChannel_channel_10_ips - channel_11_ips = _mscl.WirelessChannel_channel_11_ips - channel_12_ips = _mscl.WirelessChannel_channel_12_ips - channel_13_ips = _mscl.WirelessChannel_channel_13_ips - channel_14_ips = _mscl.WirelessChannel_channel_14_ips - channel_15_ips = _mscl.WirelessChannel_channel_15_ips - channel_16_ips = _mscl.WirelessChannel_channel_16_ips - channel_1_crestFactor = _mscl.WirelessChannel_channel_1_crestFactor - channel_2_crestFactor = _mscl.WirelessChannel_channel_2_crestFactor - channel_3_crestFactor = _mscl.WirelessChannel_channel_3_crestFactor - channel_4_crestFactor = _mscl.WirelessChannel_channel_4_crestFactor - channel_5_crestFactor = _mscl.WirelessChannel_channel_5_crestFactor - channel_6_crestFactor = _mscl.WirelessChannel_channel_6_crestFactor - channel_7_crestFactor = _mscl.WirelessChannel_channel_7_crestFactor - channel_8_crestFactor = _mscl.WirelessChannel_channel_8_crestFactor - channel_9_crestFactor = _mscl.WirelessChannel_channel_9_crestFactor - channel_10_crestFactor = _mscl.WirelessChannel_channel_10_crestFactor - channel_11_crestFactor = _mscl.WirelessChannel_channel_11_crestFactor - channel_12_crestFactor = _mscl.WirelessChannel_channel_12_crestFactor - channel_13_crestFactor = _mscl.WirelessChannel_channel_13_crestFactor - channel_14_crestFactor = _mscl.WirelessChannel_channel_14_crestFactor - channel_15_crestFactor = _mscl.WirelessChannel_channel_15_crestFactor - channel_16_crestFactor = _mscl.WirelessChannel_channel_16_crestFactor - channel_diag_syncAttempts = _mscl.WirelessChannel_channel_diag_syncAttempts - channel_diag_syncFailures = _mscl.WirelessChannel_channel_diag_syncFailures - channel_diag_secsSinceLastSync = _mscl.WirelessChannel_channel_diag_secsSinceLastSync - channel_beaconConflict = _mscl.WirelessChannel_channel_beaconConflict - channel_1_mean = _mscl.WirelessChannel_channel_1_mean - channel_2_mean = _mscl.WirelessChannel_channel_2_mean - channel_3_mean = _mscl.WirelessChannel_channel_3_mean - channel_4_mean = _mscl.WirelessChannel_channel_4_mean - channel_5_mean = _mscl.WirelessChannel_channel_5_mean - channel_6_mean = _mscl.WirelessChannel_channel_6_mean - channel_7_mean = _mscl.WirelessChannel_channel_7_mean - channel_8_mean = _mscl.WirelessChannel_channel_8_mean - channel_9_mean = _mscl.WirelessChannel_channel_9_mean - channel_10_mean = _mscl.WirelessChannel_channel_10_mean - channel_11_mean = _mscl.WirelessChannel_channel_11_mean - channel_12_mean = _mscl.WirelessChannel_channel_12_mean - channel_13_mean = _mscl.WirelessChannel_channel_13_mean - channel_14_mean = _mscl.WirelessChannel_channel_14_mean - channel_15_mean = _mscl.WirelessChannel_channel_15_mean - channel_16_mean = _mscl.WirelessChannel_channel_16_mean - channel_1_mmps = _mscl.WirelessChannel_channel_1_mmps - channel_2_mmps = _mscl.WirelessChannel_channel_2_mmps - channel_3_mmps = _mscl.WirelessChannel_channel_3_mmps - channel_4_mmps = _mscl.WirelessChannel_channel_4_mmps - channel_5_mmps = _mscl.WirelessChannel_channel_5_mmps - channel_6_mmps = _mscl.WirelessChannel_channel_6_mmps - channel_7_mmps = _mscl.WirelessChannel_channel_7_mmps - channel_8_mmps = _mscl.WirelessChannel_channel_8_mmps - channel_9_mmps = _mscl.WirelessChannel_channel_9_mmps - channel_10_mmps = _mscl.WirelessChannel_channel_10_mmps - channel_11_mmps = _mscl.WirelessChannel_channel_11_mmps - channel_12_mmps = _mscl.WirelessChannel_channel_12_mmps - channel_13_mmps = _mscl.WirelessChannel_channel_13_mmps - channel_14_mmps = _mscl.WirelessChannel_channel_14_mmps - channel_15_mmps = _mscl.WirelessChannel_channel_15_mmps - channel_16_mmps = _mscl.WirelessChannel_channel_16_mmps - channel_diag_memoryFull = _mscl.WirelessChannel_channel_diag_memoryFull - - def __init__(self, *args): - _mscl.WirelessChannel_swiginit(self, _mscl.new_WirelessChannel(*args)) - - def channelNumber(self): - return _mscl.WirelessChannel_channelNumber(self) - - def id(self): - return _mscl.WirelessChannel_id(self) - - def type(self): - return _mscl.WirelessChannel_type(self) - - def description(self): - return _mscl.WirelessChannel_description(self) - - def adcResolution(self): - return _mscl.WirelessChannel_adcResolution(self) - - def adcMaxValue(self): - return _mscl.WirelessChannel_adcMaxValue(self) - - def name(self): - return _mscl.WirelessChannel_name(self) - __swig_destroy__ = _mscl.delete_WirelessChannel - -# Register WirelessChannel in _mscl: -_mscl.WirelessChannel_swigregister(WirelessChannel) - -class WirelessDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessDataPoint_swiginit(self, _mscl.new_WirelessDataPoint()) - - def channelId(self): - return _mscl.WirelessDataPoint_channelId(self) - - def channelNumber(self): - return _mscl.WirelessDataPoint_channelNumber(self) - - def channelName(self): - return _mscl.WirelessDataPoint_channelName(self) - __swig_destroy__ = _mscl.delete_WirelessDataPoint - -# Register WirelessDataPoint in _mscl: -_mscl.WirelessDataPoint_swigregister(WirelessDataPoint) - -class DataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - samplingType_NonSync = _mscl.DataSweep_samplingType_NonSync - samplingType_NonSync_Buffered = _mscl.DataSweep_samplingType_NonSync_Buffered - samplingType_SyncSampling = _mscl.DataSweep_samplingType_SyncSampling - samplingType_SyncSampling_Burst = _mscl.DataSweep_samplingType_SyncSampling_Burst - samplingType_AsyncDigital = _mscl.DataSweep_samplingType_AsyncDigital - samplingType_AsyncDigitalAnalog = _mscl.DataSweep_samplingType_AsyncDigitalAnalog - samplingType_SHM = _mscl.DataSweep_samplingType_SHM - samplingType_BeaconEcho = _mscl.DataSweep_samplingType_BeaconEcho - samplingType_RfSweep = _mscl.DataSweep_samplingType_RfSweep - samplingType_Diagnostic = _mscl.DataSweep_samplingType_Diagnostic - - def __init__(self): - _mscl.DataSweep_swiginit(self, _mscl.new_DataSweep()) - - def timestamp(self): - return _mscl.DataSweep_timestamp(self) - - def tick(self): - return _mscl.DataSweep_tick(self) - - def sampleRate(self): - return _mscl.DataSweep_sampleRate(self) - - def nodeAddress(self): - return _mscl.DataSweep_nodeAddress(self) - - def data(self): - return _mscl.DataSweep_data(self) - - def samplingType(self): - return _mscl.DataSweep_samplingType(self) - - def nodeRssi(self): - return _mscl.DataSweep_nodeRssi(self) - - def baseRssi(self): - return _mscl.DataSweep_baseRssi(self) - - def frequency(self): - return _mscl.DataSweep_frequency(self) - - def calApplied(self): - return _mscl.DataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_DataSweep - -# Register DataSweep in _mscl: -_mscl.DataSweep_swigregister(DataSweep) - -class BaseStationAnalogPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationAnalogPair_swiginit(self, _mscl.new_BaseStationAnalogPair()) - - @staticmethod - def Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - - @staticmethod - def NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - - def nodeAddress(self, *args): - return _mscl.BaseStationAnalogPair_nodeAddress(self, *args) - - def nodeChannel(self, *args): - return _mscl.BaseStationAnalogPair_nodeChannel(self, *args) - - def expectFloatData(self, *args): - return _mscl.BaseStationAnalogPair_expectFloatData(self, *args) - - def outputVal_0V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_0V(self, *args) - - def outputVal_3V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_3V(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationAnalogPair - -# Register BaseStationAnalogPair in _mscl: -_mscl.BaseStationAnalogPair_swigregister(BaseStationAnalogPair) -BaseStationAnalogPair.CHANNEL_NOT_FLOAT = _mscl.cvar.BaseStationAnalogPair_CHANNEL_NOT_FLOAT - -def BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - -def BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - -class BaseStationButton(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - btn_nodeSleep = _mscl.BaseStationButton_btn_nodeSleep - btn_nodeStop = _mscl.BaseStationButton_btn_nodeStop - btn_enableBeacon = _mscl.BaseStationButton_btn_enableBeacon - btn_disableBeacon = _mscl.BaseStationButton_btn_disableBeacon - btn_nodeNonSyncSampling = _mscl.BaseStationButton_btn_nodeNonSyncSampling - btn_nodeSyncSampling = _mscl.BaseStationButton_btn_nodeSyncSampling - btn_nodeArmedDatalogging = _mscl.BaseStationButton_btn_nodeArmedDatalogging - btn_cyclePower = _mscl.BaseStationButton_btn_cyclePower - btn_disabled = _mscl.BaseStationButton_btn_disabled - - def __init__(self, *args): - _mscl.BaseStationButton_swiginit(self, _mscl.new_BaseStationButton(*args)) - - def command(self, *args): - return _mscl.BaseStationButton_command(self, *args) - - def nodeAddress(self, *args): - return _mscl.BaseStationButton_nodeAddress(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationButton - -# Register BaseStationButton in _mscl: -_mscl.BaseStationButton_swigregister(BaseStationButton) - -class BaseStationConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationConfig_swiginit(self, _mscl.new_BaseStationConfig()) - - def transmitPower(self, *args): - return _mscl.BaseStationConfig_transmitPower(self, *args) - - def communicationProtocol(self, *args): - return _mscl.BaseStationConfig_communicationProtocol(self, *args) - - def buttonLongPress(self, *args): - return _mscl.BaseStationConfig_buttonLongPress(self, *args) - - def buttonShortPress(self, *args): - return _mscl.BaseStationConfig_buttonShortPress(self, *args) - - def analogPairingEnable(self, *args): - return _mscl.BaseStationConfig_analogPairingEnable(self, *args) - - def analogTimeoutTime(self, *args): - return _mscl.BaseStationConfig_analogTimeoutTime(self, *args) - - def analogTimeoutVoltage(self, *args): - return _mscl.BaseStationConfig_analogTimeoutVoltage(self, *args) - - def analogExceedanceEnable(self, *args): - return _mscl.BaseStationConfig_analogExceedanceEnable(self, *args) - - def analogPairing(self, *args): - return _mscl.BaseStationConfig_analogPairing(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationConfig - -# Register BaseStationConfig in _mscl: -_mscl.BaseStationConfig_swigregister(BaseStationConfig) - -class BeaconStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BeaconStatus_swiginit(self, _mscl.new_BeaconStatus(*args)) - - def enabled(self): - return _mscl.BeaconStatus_enabled(self) - - def timestamp(self): - return _mscl.BeaconStatus_timestamp(self) - __swig_destroy__ = _mscl.delete_BeaconStatus - -# Register BeaconStatus in _mscl: -_mscl.BeaconStatus_swigregister(BeaconStatus) - -class BaseStationInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region, asppVer_lxrs, asppVer_lxrsPlus): - _mscl.BaseStationInfo_swiginit(self, _mscl.new_BaseStationInfo(fw, model, region, asppVer_lxrs, asppVer_lxrsPlus)) - __swig_destroy__ = _mscl.delete_BaseStationInfo - -# Register BaseStationInfo in _mscl: -_mscl.BaseStationInfo_swigregister(BaseStationInfo) - -class BaseStation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_BASE_COMMANDS_DEFAULT_TIMEOUT - ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT - BROADCAST_NODE_ADDRESS = _mscl.BaseStation_BROADCAST_NODE_ADDRESS - BROADCAST_NODE_ADDRESS_ASPP3 = _mscl.BaseStation_BROADCAST_NODE_ADDRESS_ASPP3 - - def __init__(self, *args): - _mscl.BaseStation_swiginit(self, _mscl.new_BaseStation(*args)) - __swig_destroy__ = _mscl.delete_BaseStation - - @staticmethod - def Mock(*args): - return _mscl.BaseStation_Mock(*args) - - @staticmethod - def deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - - def connection(self): - return _mscl.BaseStation_connection(self) - - def features(self): - return _mscl.BaseStation_features(self) - - def lastCommunicationTime(self): - return _mscl.BaseStation_lastCommunicationTime(self) - - def readWriteRetries(self, *args): - return _mscl.BaseStation_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.BaseStation_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.BaseStation_clearEepromCache(self) - - def frequency(self): - return _mscl.BaseStation_frequency(self) - - def communicationProtocol(self): - return _mscl.BaseStation_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.BaseStation_firmwareVersion(self) - - def model(self): - return _mscl.BaseStation_model(self) - - def serial(self): - return _mscl.BaseStation_serial(self) - - def name(self): - return _mscl.BaseStation_name(self) - - def microcontroller(self): - return _mscl.BaseStation_microcontroller(self) - - def regionCode(self): - return _mscl.BaseStation_regionCode(self) - - def getData(self, timeout=0, maxSweeps=0): - return _mscl.BaseStation_getData(self, timeout, maxSweeps) - - def totalData(self): - return _mscl.BaseStation_totalData(self) - - def getNodeDiscoveries(self): - return _mscl.BaseStation_getNodeDiscoveries(self) - - def timeout(self, *args): - return _mscl.BaseStation_timeout(self, *args) - - def ping(self): - return _mscl.BaseStation_ping(self) - - def readEeprom(self, eepromAddress): - return _mscl.BaseStation_readEeprom(self, eepromAddress) - - def writeEeprom(self, eepromAddress, value): - return _mscl.BaseStation_writeEeprom(self, eepromAddress, value) - - def enableBeacon(self, *args): - return _mscl.BaseStation_enableBeacon(self, *args) - - def disableBeacon(self): - return _mscl.BaseStation_disableBeacon(self) - - def beaconStatus(self): - return _mscl.BaseStation_beaconStatus(self) - - def startRfSweepMode(self, *args): - return _mscl.BaseStation_startRfSweepMode(self, *args) - - def cyclePower(self, checkComm=True): - return _mscl.BaseStation_cyclePower(self, checkComm) - - def resetRadio(self): - return _mscl.BaseStation_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.BaseStation_changeFrequency(self, frequency) - - def broadcastSetToIdle(self): - return _mscl.BaseStation_broadcastSetToIdle(self) - - def verifyConfig(self, config, outIssues): - return _mscl.BaseStation_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.BaseStation_applyConfig(self, config) - - def getTransmitPower(self): - return _mscl.BaseStation_getTransmitPower(self) - - def getButtonLongPress(self, buttonNumber): - return _mscl.BaseStation_getButtonLongPress(self, buttonNumber) - - def getButtonShortPress(self, buttonNumber): - return _mscl.BaseStation_getButtonShortPress(self, buttonNumber) - - def getAnalogPairingEnabled(self): - return _mscl.BaseStation_getAnalogPairingEnabled(self) - - def getAnalogTimeoutTime(self): - return _mscl.BaseStation_getAnalogTimeoutTime(self) - - def getAnalogTimeoutVoltage(self): - return _mscl.BaseStation_getAnalogTimeoutVoltage(self) - - def getAnalogExceedanceEnabled(self): - return _mscl.BaseStation_getAnalogExceedanceEnabled(self) - - def getAnalogPair(self, portNumber): - return _mscl.BaseStation_getAnalogPair(self, portNumber) - -# Register BaseStation in _mscl: -_mscl.BaseStation_swigregister(BaseStation) - -def BaseStation_Mock(*args): - return _mscl.BaseStation_Mock(*args) - -def BaseStation_deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - -class LoggedDataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LoggedDataSweep_swiginit(self, _mscl.new_LoggedDataSweep(*args)) - - def timestamp(self): - return _mscl.LoggedDataSweep_timestamp(self) - - def tick(self): - return _mscl.LoggedDataSweep_tick(self) - - def data(self): - return _mscl.LoggedDataSweep_data(self) - - def calApplied(self): - return _mscl.LoggedDataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweep - -# Register LoggedDataSweep in _mscl: -_mscl.LoggedDataSweep_swigregister(LoggedDataSweep) - -class RadioFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.RadioFeatures_swiginit(self, _mscl.new_RadioFeatures(*args)) - - def extendedRange(self): - return _mscl.RadioFeatures_extendedRange(self) - __swig_destroy__ = _mscl.delete_RadioFeatures - -# Register RadioFeatures in _mscl: -_mscl.RadioFeatures_swigregister(RadioFeatures) - -class WirelessNodeConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessNodeConfig_swiginit(self, _mscl.new_WirelessNodeConfig()) - SENSOR_DELAY_ALWAYS_ON = _mscl.WirelessNodeConfig_SENSOR_DELAY_ALWAYS_ON - - def defaultMode(self, *args): - return _mscl.WirelessNodeConfig_defaultMode(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.WirelessNodeConfig_inactivityTimeout(self, *args) - - def checkRadioInterval(self, *args): - return _mscl.WirelessNodeConfig_checkRadioInterval(self, *args) - - def transmitPower(self, *args): - return _mscl.WirelessNodeConfig_transmitPower(self, *args) - - def samplingMode(self, *args): - return _mscl.WirelessNodeConfig_samplingMode(self, *args) - - def sampleRate(self, *args): - return _mscl.WirelessNodeConfig_sampleRate(self, *args) - - def activeChannels(self, *args): - return _mscl.WirelessNodeConfig_activeChannels(self, *args) - - def numSweeps(self, *args): - return _mscl.WirelessNodeConfig_numSweeps(self, *args) - - def unlimitedDuration(self, *args): - return _mscl.WirelessNodeConfig_unlimitedDuration(self, *args) - - def dataFormat(self, *args): - return _mscl.WirelessNodeConfig_dataFormat(self, *args) - - def dataCollectionMethod(self, *args): - return _mscl.WirelessNodeConfig_dataCollectionMethod(self, *args) - - def timeBetweenBursts(self, *args): - return _mscl.WirelessNodeConfig_timeBetweenBursts(self, *args) - - def lostBeaconTimeout(self, *args): - return _mscl.WirelessNodeConfig_lostBeaconTimeout(self, *args) - - def pullUpResistor(self, *args): - return _mscl.WirelessNodeConfig_pullUpResistor(self, *args) - - def inputRange(self, *args): - return _mscl.WirelessNodeConfig_inputRange(self, *args) - - def hardwareOffset(self, *args): - return _mscl.WirelessNodeConfig_hardwareOffset(self, *args) - - def antiAliasingFilter(self, *args): - return _mscl.WirelessNodeConfig_antiAliasingFilter(self, *args) - - def cfcFilterConfig(self, *args): - return _mscl.WirelessNodeConfig_cfcFilterConfig(self, *args) - - def lowPassFilter(self, *args): - return _mscl.WirelessNodeConfig_lowPassFilter(self, *args) - - def highPassFilter(self, *args): - return _mscl.WirelessNodeConfig_highPassFilter(self, *args) - - def gaugeFactor(self, *args): - return _mscl.WirelessNodeConfig_gaugeFactor(self, *args) - - def gaugeResistance(self, *args): - return _mscl.WirelessNodeConfig_gaugeResistance(self, *args) - - def excitationVoltage(self, *args): - return _mscl.WirelessNodeConfig_excitationVoltage(self, *args) - - def numActiveGauges(self, *args): - return _mscl.WirelessNodeConfig_numActiveGauges(self, *args) - - def lowBatteryThreshold(self, *args): - return _mscl.WirelessNodeConfig_lowBatteryThreshold(self, *args) - - def linearEquation(self, *args): - return _mscl.WirelessNodeConfig_linearEquation(self, *args) - - def unit(self, *args): - return _mscl.WirelessNodeConfig_unit(self, *args) - - def equationType(self, *args): - return _mscl.WirelessNodeConfig_equationType(self, *args) - - def filterSettlingTime(self, *args): - return _mscl.WirelessNodeConfig_filterSettlingTime(self, *args) - - def thermocoupleType(self, *args): - return _mscl.WirelessNodeConfig_thermocoupleType(self, *args) - - def tempSensorOptions(self, *args): - return _mscl.WirelessNodeConfig_tempSensorOptions(self, *args) - - def debounceFilter(self, *args): - return _mscl.WirelessNodeConfig_debounceFilter(self, *args) - - def fatigueOptions(self, *args): - return _mscl.WirelessNodeConfig_fatigueOptions(self, *args) - - def histogramOptions(self, *args): - return _mscl.WirelessNodeConfig_histogramOptions(self, *args) - - def activitySense(self, *args): - return _mscl.WirelessNodeConfig_activitySense(self, *args) - - def eventTriggerOptions(self, *args): - return _mscl.WirelessNodeConfig_eventTriggerOptions(self, *args) - - def diagnosticInterval(self, *args): - return _mscl.WirelessNodeConfig_diagnosticInterval(self, *args) - - def storageLimitMode(self, *args): - return _mscl.WirelessNodeConfig_storageLimitMode(self, *args) - - def sensorDelay(self, *args): - return _mscl.WirelessNodeConfig_sensorDelay(self, *args) - - def dataMode(self, *args): - return _mscl.WirelessNodeConfig_dataMode(self, *args) - - def derivedDataRate(self, *args): - return _mscl.WirelessNodeConfig_derivedDataRate(self, *args) - - def derivedChannelMask(self, *args): - return _mscl.WirelessNodeConfig_derivedChannelMask(self, *args) - - def derivedVelocityUnit(self, *args): - return _mscl.WirelessNodeConfig_derivedVelocityUnit(self, *args) - - def communicationProtocol(self, *args): - return _mscl.WirelessNodeConfig_communicationProtocol(self, *args) - - def sensorOutputMode(self, *args): - return _mscl.WirelessNodeConfig_sensorOutputMode(self, *args) - - @staticmethod - def flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - - @staticmethod - def flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - __swig_destroy__ = _mscl.delete_WirelessNodeConfig - -# Register WirelessNodeConfig in _mscl: -_mscl.WirelessNodeConfig_swigregister(WirelessNodeConfig) - -def WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - -def WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - -class AutoBalanceResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoBalanceResult_swiginit(self, _mscl.new_AutoBalanceResult()) - - def errorCode(self): - return _mscl.AutoBalanceResult_errorCode(self) - - def percentAchieved(self): - return _mscl.AutoBalanceResult_percentAchieved(self) - - def hardwareOffset(self): - return _mscl.AutoBalanceResult_hardwareOffset(self) - __swig_destroy__ = _mscl.delete_AutoBalanceResult - -# Register AutoBalanceResult in _mscl: -_mscl.AutoBalanceResult_swigregister(AutoBalanceResult) - -class ShuntCalCmdInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - useInternalShunt = property(_mscl.ShuntCalCmdInfo_useInternalShunt_get, _mscl.ShuntCalCmdInfo_useInternalShunt_set) - numActiveGauges = property(_mscl.ShuntCalCmdInfo_numActiveGauges_get, _mscl.ShuntCalCmdInfo_numActiveGauges_set) - gaugeResistance = property(_mscl.ShuntCalCmdInfo_gaugeResistance_get, _mscl.ShuntCalCmdInfo_gaugeResistance_set) - shuntResistance = property(_mscl.ShuntCalCmdInfo_shuntResistance_get, _mscl.ShuntCalCmdInfo_shuntResistance_set) - gaugeFactor = property(_mscl.ShuntCalCmdInfo_gaugeFactor_get, _mscl.ShuntCalCmdInfo_gaugeFactor_set) - inputRange = property(_mscl.ShuntCalCmdInfo_inputRange_get, _mscl.ShuntCalCmdInfo_inputRange_set) - hardwareOffset = property(_mscl.ShuntCalCmdInfo_hardwareOffset_get, _mscl.ShuntCalCmdInfo_hardwareOffset_set) - excitationVoltage = property(_mscl.ShuntCalCmdInfo_excitationVoltage_get, _mscl.ShuntCalCmdInfo_excitationVoltage_set) - - def __init__(self): - _mscl.ShuntCalCmdInfo_swiginit(self, _mscl.new_ShuntCalCmdInfo()) - __swig_destroy__ = _mscl.delete_ShuntCalCmdInfo - -# Register ShuntCalCmdInfo in _mscl: -_mscl.ShuntCalCmdInfo_swigregister(ShuntCalCmdInfo) - -class AutoCalResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_AutoCalResult - - def completionFlag(self): - return _mscl.AutoCalResult_completionFlag(self) - -# Register AutoCalResult in _mscl: -_mscl.AutoCalResult_swigregister(AutoCalResult) - -class AutoCalResult_shmLink(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink_swiginit(self, _mscl.new_AutoCalResult_shmLink()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh3(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink_offsetCh1(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink_offsetCh2(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink_temperature(self) - -# Register AutoCalResult_shmLink in _mscl: -_mscl.AutoCalResult_shmLink_swigregister(AutoCalResult_shmLink) - -class AutoCalResult_shmLink201(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink201_swiginit(self, _mscl.new_AutoCalResult_shmLink201()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink201 - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh3(self) - - def slopeCh1(self): - return _mscl.AutoCalResult_shmLink201_slopeCh1(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink201_offsetCh1(self) - - def slopeCh2(self): - return _mscl.AutoCalResult_shmLink201_slopeCh2(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink201_offsetCh2(self) - - def slopeCh3(self): - return _mscl.AutoCalResult_shmLink201_slopeCh3(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink201_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink201_temperature(self) - -# Register AutoCalResult_shmLink201 in _mscl: -_mscl.AutoCalResult_shmLink201_swigregister(AutoCalResult_shmLink201) - -class AutoShuntCalResult(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoShuntCalResult_swiginit(self, _mscl.new_AutoShuntCalResult()) - __swig_destroy__ = _mscl.delete_AutoShuntCalResult - - def errorFlag(self): - return _mscl.AutoShuntCalResult_errorFlag(self) - - def slope(self): - return _mscl.AutoShuntCalResult_slope(self) - - def offset(self): - return _mscl.AutoShuntCalResult_offset(self) - - def baseMedian(self): - return _mscl.AutoShuntCalResult_baseMedian(self) - - def baseMin(self): - return _mscl.AutoShuntCalResult_baseMin(self) - - def baseMax(self): - return _mscl.AutoShuntCalResult_baseMax(self) - - def shuntMedian(self): - return _mscl.AutoShuntCalResult_shuntMedian(self) - - def shuntMin(self): - return _mscl.AutoShuntCalResult_shuntMin(self) - - def shuntMax(self): - return _mscl.AutoShuntCalResult_shuntMax(self) - -# Register AutoShuntCalResult in _mscl: -_mscl.AutoShuntCalResult_swigregister(AutoShuntCalResult) - -class PingResponse(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PingResponse_swiginit(self, _mscl.new_PingResponse()) - - def success(self): - return _mscl.PingResponse_success(self) - - def nodeRssi(self): - return _mscl.PingResponse_nodeRssi(self) - - def baseRssi(self): - return _mscl.PingResponse_baseRssi(self) - __swig_destroy__ = _mscl.delete_PingResponse - -# Register PingResponse in _mscl: -_mscl.PingResponse_swigregister(PingResponse) - -class SetToIdleStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - setToIdleResult_success = _mscl.SetToIdleStatus_setToIdleResult_success - setToIdleResult_canceled = _mscl.SetToIdleStatus_setToIdleResult_canceled - setToIdleResult_failed = _mscl.SetToIdleStatus_setToIdleResult_failed - setToIdleResult_notCompleted = _mscl.SetToIdleStatus_setToIdleResult_notCompleted - - def result(self): - return _mscl.SetToIdleStatus_result(self) - - def complete(self, timeout=10): - return _mscl.SetToIdleStatus_complete(self, timeout) - - def cancel(self): - return _mscl.SetToIdleStatus_cancel(self) - __swig_destroy__ = _mscl.delete_SetToIdleStatus - -# Register SetToIdleStatus in _mscl: -_mscl.SetToIdleStatus_swigregister(SetToIdleStatus) - -class NodeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region): - _mscl.NodeInfo_swiginit(self, _mscl.new_NodeInfo(fw, model, region)) - __swig_destroy__ = _mscl.delete_NodeInfo - -# Register NodeInfo in _mscl: -_mscl.NodeInfo_swigregister(NodeInfo) - -class WirelessNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, nodeAddress, basestation): - _mscl.WirelessNode_swiginit(self, _mscl.new_WirelessNode(nodeAddress, basestation)) - __swig_destroy__ = _mscl.delete_WirelessNode - - @staticmethod - def Mock(*args): - return _mscl.WirelessNode_Mock(*args) - - @staticmethod - def deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - - def features(self): - return _mscl.WirelessNode_features(self) - - def lastCommunicationTime(self): - return _mscl.WirelessNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.WirelessNode_lastDeviceState(self) - - def setBaseStation(self, basestation): - return _mscl.WirelessNode_setBaseStation(self, basestation) - - def getBaseStation(self): - return _mscl.WirelessNode_getBaseStation(self) - - def hasBaseStation(self, basestation): - return _mscl.WirelessNode_hasBaseStation(self, basestation) - - def useGroupRead(self, useGroup): - return _mscl.WirelessNode_useGroupRead(self, useGroup) - - def readWriteRetries(self, *args): - return _mscl.WirelessNode_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.WirelessNode_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.WirelessNode_clearEepromCache(self) - - def updateEepromCacheFromNodeDiscovery(self, nodeDisovery): - return _mscl.WirelessNode_updateEepromCacheFromNodeDiscovery(self, nodeDisovery) - - def getEepromCache(self): - return _mscl.WirelessNode_getEepromCache(self) - - def nodeAddress(self): - return _mscl.WirelessNode_nodeAddress(self) - - def frequency(self): - return _mscl.WirelessNode_frequency(self) - - def communicationProtocol(self): - return _mscl.WirelessNode_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.WirelessNode_firmwareVersion(self) - - def model(self): - return _mscl.WirelessNode_model(self) - - def serial(self): - return _mscl.WirelessNode_serial(self) - - def name(self): - return _mscl.WirelessNode_name(self) - - def microcontroller(self): - return _mscl.WirelessNode_microcontroller(self) - - def radioFeatures(self): - return _mscl.WirelessNode_radioFeatures(self) - - def dataStorageSize(self): - return _mscl.WirelessNode_dataStorageSize(self) - - def regionCode(self): - return _mscl.WirelessNode_regionCode(self) - - def ping(self): - return _mscl.WirelessNode_ping(self) - - def sleep(self): - return _mscl.WirelessNode_sleep(self) - - def cyclePower(self): - return _mscl.WirelessNode_cyclePower(self) - - def resetRadio(self): - return _mscl.WirelessNode_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.WirelessNode_changeFrequency(self, frequency) - - def setToIdle(self): - return _mscl.WirelessNode_setToIdle(self) - - def erase(self): - return _mscl.WirelessNode_erase(self) - - def startNonSyncSampling(self): - return _mscl.WirelessNode_startNonSyncSampling(self) - - def resendStartSyncSampling(self): - return _mscl.WirelessNode_resendStartSyncSampling(self) - - def clearHistogram(self): - return _mscl.WirelessNode_clearHistogram(self) - - def autoBalance(self, mask, targetPercent): - return _mscl.WirelessNode_autoBalance(self, mask, targetPercent) - - def autoCal_shmLink(self): - return _mscl.WirelessNode_autoCal_shmLink(self) - - def autoCal_shmLink201(self): - return _mscl.WirelessNode_autoCal_shmLink201(self) - - def autoShuntCal(self, mask, commandInfo): - return _mscl.WirelessNode_autoShuntCal(self, mask, commandInfo) - - def poll(self, mask): - return _mscl.WirelessNode_poll(self, mask) - - def readEeprom(self, location): - return _mscl.WirelessNode_readEeprom(self, location) - - def writeEeprom(self, location, value): - return _mscl.WirelessNode_writeEeprom(self, location, value) - - def getDiagnosticInfo(self): - return _mscl.WirelessNode_getDiagnosticInfo(self) - - def testCommunicationProtocol(self, protocol): - return _mscl.WirelessNode_testCommunicationProtocol(self, protocol) - - def verifyConfig(self, config, outIssues): - return _mscl.WirelessNode_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.WirelessNode_applyConfig(self, config) - - def getNumDatalogSessions(self): - return _mscl.WirelessNode_getNumDatalogSessions(self) - - def percentFull(self): - return _mscl.WirelessNode_percentFull(self) - - def getDefaultMode(self): - return _mscl.WirelessNode_getDefaultMode(self) - - def getInactivityTimeout(self): - return _mscl.WirelessNode_getInactivityTimeout(self) - - def getCheckRadioInterval(self): - return _mscl.WirelessNode_getCheckRadioInterval(self) - - def getTransmitPower(self): - return _mscl.WirelessNode_getTransmitPower(self) - - def getSamplingMode(self): - return _mscl.WirelessNode_getSamplingMode(self) - - def getActiveChannels(self): - return _mscl.WirelessNode_getActiveChannels(self) - - def getSampleRate(self): - return _mscl.WirelessNode_getSampleRate(self) - - def getNumSweeps(self): - return _mscl.WirelessNode_getNumSweeps(self) - - def getUnlimitedDuration(self): - return _mscl.WirelessNode_getUnlimitedDuration(self) - - def getDataFormat(self): - return _mscl.WirelessNode_getDataFormat(self) - - def getDataCollectionMethod(self): - return _mscl.WirelessNode_getDataCollectionMethod(self) - - def getTimeBetweenBursts(self): - return _mscl.WirelessNode_getTimeBetweenBursts(self) - - def getLostBeaconTimeout(self): - return _mscl.WirelessNode_getLostBeaconTimeout(self) - - def getInputRange(self, mask): - return _mscl.WirelessNode_getInputRange(self, mask) - - def getHardwareOffset(self, mask): - return _mscl.WirelessNode_getHardwareOffset(self, mask) - - def getAntiAliasingFilter(self, mask): - return _mscl.WirelessNode_getAntiAliasingFilter(self, mask) - - def getCfcFilterConfiguration(self): - return _mscl.WirelessNode_getCfcFilterConfiguration(self) - - def getLowPassFilter(self, mask): - return _mscl.WirelessNode_getLowPassFilter(self, mask) - - def getHighPassFilter(self, mask): - return _mscl.WirelessNode_getHighPassFilter(self, mask) - - def getDebounceFilter(self, mask): - return _mscl.WirelessNode_getDebounceFilter(self, mask) - - def getPullUpResistor(self, mask): - return _mscl.WirelessNode_getPullUpResistor(self, mask) - - def getSensorOutputMode(self): - return _mscl.WirelessNode_getSensorOutputMode(self) - - def getGaugeFactor(self, mask): - return _mscl.WirelessNode_getGaugeFactor(self, mask) - - def getExcitationVoltage(self): - return _mscl.WirelessNode_getExcitationVoltage(self) - - def getAdcVoltageRef(self): - return _mscl.WirelessNode_getAdcVoltageRef(self) - - def getGainAmplifierVoltageRef(self): - return _mscl.WirelessNode_getGainAmplifierVoltageRef(self) - - def getGaugeResistance(self): - return _mscl.WirelessNode_getGaugeResistance(self) - - def getNumActiveGauges(self): - return _mscl.WirelessNode_getNumActiveGauges(self) - - def getLowBatteryThreshold(self): - return _mscl.WirelessNode_getLowBatteryThreshold(self) - - def getLinearEquation(self, mask): - return _mscl.WirelessNode_getLinearEquation(self, mask) - - def getUnit(self, mask): - return _mscl.WirelessNode_getUnit(self, mask) - - def getEquationType(self, mask): - return _mscl.WirelessNode_getEquationType(self, mask) - - def getFactoryCalibrationLinearEq(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationLinearEq(self, mask) - - def getFactoryCalibrationUnit(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationUnit(self, mask) - - def getFactoryCalibrationEqType(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationEqType(self, mask) - - def getFilterSettlingTime(self, mask): - return _mscl.WirelessNode_getFilterSettlingTime(self, mask) - - def getThermocoupleType(self, mask): - return _mscl.WirelessNode_getThermocoupleType(self, mask) - - def getTempSensorOptions(self, mask): - return _mscl.WirelessNode_getTempSensorOptions(self, mask) - - def getFatigueOptions(self): - return _mscl.WirelessNode_getFatigueOptions(self) - - def getHistogramOptions(self): - return _mscl.WirelessNode_getHistogramOptions(self) - - def getActivitySense(self): - return _mscl.WirelessNode_getActivitySense(self) - - def getEventTriggerOptions(self): - return _mscl.WirelessNode_getEventTriggerOptions(self) - - def getDiagnosticInterval(self): - return _mscl.WirelessNode_getDiagnosticInterval(self) - - def getStorageLimitMode(self): - return _mscl.WirelessNode_getStorageLimitMode(self) - - def getSensorDelay(self): - return _mscl.WirelessNode_getSensorDelay(self) - - def getDataMode(self): - return _mscl.WirelessNode_getDataMode(self) - - def getDerivedDataRate(self): - return _mscl.WirelessNode_getDerivedDataRate(self) - - def getDerivedChannelMask(self, category): - return _mscl.WirelessNode_getDerivedChannelMask(self, category) - - def getDerivedVelocityUnit(self): - return _mscl.WirelessNode_getDerivedVelocityUnit(self) - -# Register WirelessNode in _mscl: -_mscl.WirelessNode_swigregister(WirelessNode) - -def WirelessNode_Mock(*args): - return _mscl.WirelessNode_Mock(*args) - -def WirelessNode_deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - -class DatalogDownloader(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.DatalogDownloader_swiginit(self, _mscl.new_DatalogDownloader(*args)) - __swig_destroy__ = _mscl.delete_DatalogDownloader - - def complete(self): - return _mscl.DatalogDownloader_complete(self) - - def percentComplete(self): - return _mscl.DatalogDownloader_percentComplete(self) - - def getNextData(self): - return _mscl.DatalogDownloader_getNextData(self) - - def metaDataUpdated(self): - return _mscl.DatalogDownloader_metaDataUpdated(self) - - def calCoefficientsUpdated(self): - return _mscl.DatalogDownloader_calCoefficientsUpdated(self) - - def startOfSession(self): - return _mscl.DatalogDownloader_startOfSession(self) - - def sessionIndex(self): - return _mscl.DatalogDownloader_sessionIndex(self) - - def sampleRate(self): - return _mscl.DatalogDownloader_sampleRate(self) - - def userString(self): - return _mscl.DatalogDownloader_userString(self) - - def calCoefficients(self): - return _mscl.DatalogDownloader_calCoefficients(self) - -# Register DatalogDownloader in _mscl: -_mscl.DatalogDownloader_swigregister(DatalogDownloader) - -class ArmedDataloggingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.ArmedDataloggingNetwork_swiginit(self, _mscl.new_ArmedDataloggingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.ArmedDataloggingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.ArmedDataloggingNetwork_removeNode(self, nodeAddress) - - def startSampling(self): - return _mscl.ArmedDataloggingNetwork_startSampling(self) - __swig_destroy__ = _mscl.delete_ArmedDataloggingNetwork - -# Register ArmedDataloggingNetwork in _mscl: -_mscl.ArmedDataloggingNetwork_swigregister(ArmedDataloggingNetwork) - -class SyncNetworkInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - status_OK = _mscl.SyncNetworkInfo_status_OK - status_PoorCommunication = _mscl.SyncNetworkInfo_status_PoorCommunication - status_DoesNotFit = _mscl.SyncNetworkInfo_status_DoesNotFit - status_Contention = _mscl.SyncNetworkInfo_status_Contention - - def __init__(self, node): - _mscl.SyncNetworkInfo_swiginit(self, _mscl.new_SyncNetworkInfo(node)) - - def status(self): - return _mscl.SyncNetworkInfo_status(self) - - def startedSampling(self): - return _mscl.SyncNetworkInfo_startedSampling(self) - - def configurationApplied(self): - return _mscl.SyncNetworkInfo_configurationApplied(self) - - def percentBandwidth(self): - return _mscl.SyncNetworkInfo_percentBandwidth(self) - - def tdmaAddress(self): - return _mscl.SyncNetworkInfo_tdmaAddress(self) - - def maxTdmaAddress(self): - return _mscl.SyncNetworkInfo_maxTdmaAddress(self) - - def transmissionPerGroup(self): - return _mscl.SyncNetworkInfo_transmissionPerGroup(self) - - def groupSize(self): - return _mscl.SyncNetworkInfo_groupSize(self) - __swig_destroy__ = _mscl.delete_SyncNetworkInfo - -# Register SyncNetworkInfo in _mscl: -_mscl.SyncNetworkInfo_swigregister(SyncNetworkInfo) - -class SyncSamplingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.SyncSamplingNetwork_swiginit(self, _mscl.new_SyncSamplingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.SyncSamplingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.SyncSamplingNetwork_removeNode(self, nodeAddress) - - def percentBandwidth(self): - return _mscl.SyncSamplingNetwork_percentBandwidth(self) - - def ok(self): - return _mscl.SyncSamplingNetwork_ok(self) - - def refresh(self): - return _mscl.SyncSamplingNetwork_refresh(self) - - def lossless(self, *args): - return _mscl.SyncSamplingNetwork_lossless(self, *args) - - def communicationProtocol(self, *args): - return _mscl.SyncSamplingNetwork_communicationProtocol(self, *args) - - def applyConfiguration(self): - return _mscl.SyncSamplingNetwork_applyConfiguration(self) - - def startSampling(self, *args): - return _mscl.SyncSamplingNetwork_startSampling(self, *args) - - def startSampling_noBeacon(self): - return _mscl.SyncSamplingNetwork_startSampling_noBeacon(self) - - def getNodeNetworkInfo(self, nodeAddress): - return _mscl.SyncSamplingNetwork_getNodeNetworkInfo(self, nodeAddress) - __swig_destroy__ = _mscl.delete_SyncSamplingNetwork - -# Register SyncSamplingNetwork in _mscl: -_mscl.SyncSamplingNetwork_swigregister(SyncSamplingNetwork) - -class NodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_NodeFeatures - - def normalizeNumSweeps(self, sweeps): - return _mscl.NodeFeatures_normalizeNumSweeps(self, sweeps) - - def normalizeTimeBetweenBursts(self, time): - return _mscl.NodeFeatures_normalizeTimeBetweenBursts(self, time) - - def channels(self): - return _mscl.NodeFeatures_channels(self) - - def channelGroups(self): - return _mscl.NodeFeatures_channelGroups(self) - - def channelType(self, channelNumber): - return _mscl.NodeFeatures_channelType(self, channelNumber) - - def supportsChannelSetting(self, setting, mask): - return _mscl.NodeFeatures_supportsChannelSetting(self, setting, mask) - - def supportsInputRangePerExcitationVoltage(self): - return _mscl.NodeFeatures_supportsInputRangePerExcitationVoltage(self) - - def supportsHardwareOffset(self): - return _mscl.NodeFeatures_supportsHardwareOffset(self) - - def supportsAntiAliasingFilter(self): - return _mscl.NodeFeatures_supportsAntiAliasingFilter(self) - - def supportsLowPassFilter(self): - return _mscl.NodeFeatures_supportsLowPassFilter(self) - - def supportsHighPassFilter(self): - return _mscl.NodeFeatures_supportsHighPassFilter(self) - - def supportsGaugeFactor(self): - return _mscl.NodeFeatures_supportsGaugeFactor(self) - - def supportsGaugeResistance(self): - return _mscl.NodeFeatures_supportsGaugeResistance(self) - - def supportsNumActiveGauges(self): - return _mscl.NodeFeatures_supportsNumActiveGauges(self) - - def supportsLostBeaconTimeout(self): - return _mscl.NodeFeatures_supportsLostBeaconTimeout(self) - - def supportsPullUpResistor(self): - return _mscl.NodeFeatures_supportsPullUpResistor(self) - - def supportsFilterSettlingTime(self): - return _mscl.NodeFeatures_supportsFilterSettlingTime(self) - - def supportsThermocoupleType(self): - return _mscl.NodeFeatures_supportsThermocoupleType(self) - - def supportsTempSensorOptions(self): - return _mscl.NodeFeatures_supportsTempSensorOptions(self) - - def supportsDebounceFilter(self): - return _mscl.NodeFeatures_supportsDebounceFilter(self) - - def supportsFatigueConfig(self): - return _mscl.NodeFeatures_supportsFatigueConfig(self) - - def supportsYoungsModConfig(self): - return _mscl.NodeFeatures_supportsYoungsModConfig(self) - - def supportsPoissonsRatioConfig(self): - return _mscl.NodeFeatures_supportsPoissonsRatioConfig(self) - - def supportsFatigueDebugModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueDebugModeConfig(self) - - def supportsFatigueModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueModeConfig(self) - - def supportsHistogramConfig(self): - return _mscl.NodeFeatures_supportsHistogramConfig(self) - - def supportsHistogramRateConfig(self): - return _mscl.NodeFeatures_supportsHistogramRateConfig(self) - - def supportsHistogramEnableConfig(self): - return _mscl.NodeFeatures_supportsHistogramEnableConfig(self) - - def supportsActivitySense(self): - return _mscl.NodeFeatures_supportsActivitySense(self) - - def supportsAutoBalance(self): - return _mscl.NodeFeatures_supportsAutoBalance(self) - - def supportsLegacyShuntCal(self): - return _mscl.NodeFeatures_supportsLegacyShuntCal(self) - - def supportsAutoCal_shm(self): - return _mscl.NodeFeatures_supportsAutoCal_shm(self) - - def supportsAutoCal_shm201(self): - return _mscl.NodeFeatures_supportsAutoCal_shm201(self) - - def supportsAutoShuntCal(self): - return _mscl.NodeFeatures_supportsAutoShuntCal(self) - - def supportsGetFactoryCal(self): - return _mscl.NodeFeatures_supportsGetFactoryCal(self) - - def supportsLimitedDuration(self): - return _mscl.NodeFeatures_supportsLimitedDuration(self) - - def supportsEventTrigger(self): - return _mscl.NodeFeatures_supportsEventTrigger(self) - - def supportsDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsDiagnosticInfo(self) - - def supportsLoggedData(self): - return _mscl.NodeFeatures_supportsLoggedData(self) - - def supportsPoll(self): - return _mscl.NodeFeatures_supportsPoll(self) - - def supportsSensorDelayConfig(self): - return _mscl.NodeFeatures_supportsSensorDelayConfig(self) - - def supportsSensorDelayAlwaysOn(self): - return _mscl.NodeFeatures_supportsSensorDelayAlwaysOn(self) - - def supportsSensorOutputMode(self): - return _mscl.NodeFeatures_supportsSensorOutputMode(self) - - def supportsCfcFilterConfiguration(self): - return _mscl.NodeFeatures_supportsCfcFilterConfiguration(self) - - def supportsChannel(self, channelNumber): - return _mscl.NodeFeatures_supportsChannel(self, channelNumber) - - def supportsSamplingMode(self, samplingMode): - return _mscl.NodeFeatures_supportsSamplingMode(self, samplingMode) - - def supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.NodeFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsDataFormat(self, dataFormat): - return _mscl.NodeFeatures_supportsDataFormat(self, dataFormat) - - def supportsDefaultMode(self, mode): - return _mscl.NodeFeatures_supportsDefaultMode(self, mode) - - def supportsDataCollectionMethod(self, collectionMethod): - return _mscl.NodeFeatures_supportsDataCollectionMethod(self, collectionMethod) - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.NodeFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsDataMode(self, dataMode): - return _mscl.NodeFeatures_supportsDataMode(self, dataMode) - - def supportsTransducerType(self, transducerType): - return _mscl.NodeFeatures_supportsTransducerType(self, transducerType) - - def supportsFatigueMode(self, mode): - return _mscl.NodeFeatures_supportsFatigueMode(self, mode) - - def supportsInputRange(self, *args): - return _mscl.NodeFeatures_supportsInputRange(self, *args) - - def supportsCentisecondEventDuration(self): - return _mscl.NodeFeatures_supportsCentisecondEventDuration(self) - - def supportsGetDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsGetDiagnosticInfo(self) - - def supportsNonSyncLogWithTimestamps(self): - return _mscl.NodeFeatures_supportsNonSyncLogWithTimestamps(self) - - def supportsDerivedCategory(self, category): - return _mscl.NodeFeatures_supportsDerivedCategory(self, category) - - def supportsRawDataMode(self): - return _mscl.NodeFeatures_supportsRawDataMode(self) - - def supportsDerivedDataMode(self): - return _mscl.NodeFeatures_supportsDerivedDataMode(self) - - def supportsDerivedVelocityUnitConfig(self): - return _mscl.NodeFeatures_supportsDerivedVelocityUnitConfig(self) - - def supportsExcitationVoltageConfig(self): - return _mscl.NodeFeatures_supportsExcitationVoltageConfig(self) - - def supportsLowBatteryThresholdConfig(self): - return _mscl.NodeFeatures_supportsLowBatteryThresholdConfig(self) - - def maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode) - - def maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode) - - def maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels): - return _mscl.NodeFeatures_maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels) - - def maxFilterSettlingTime(self, rate): - return _mscl.NodeFeatures_maxFilterSettlingTime(self, rate) - - def minInactivityTimeout(self): - return _mscl.NodeFeatures_minInactivityTimeout(self) - - def minLostBeaconTimeout(self): - return _mscl.NodeFeatures_minLostBeaconTimeout(self) - - def maxLostBeaconTimeout(self): - return _mscl.NodeFeatures_maxLostBeaconTimeout(self) - - def minCheckRadioInterval(self): - return _mscl.NodeFeatures_minCheckRadioInterval(self) - - def maxCheckRadioInterval(self): - return _mscl.NodeFeatures_maxCheckRadioInterval(self) - - def minSweeps(self): - return _mscl.NodeFeatures_minSweeps(self) - - def maxSweeps(self, samplingMode, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweeps(self, samplingMode, dataMode, dataFormat, channels) - - def maxSweepsPerBurst(self, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweepsPerBurst(self, dataMode, dataFormat, channels) - - def minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol): - return _mscl.NodeFeatures_minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol) - - def minSensorDelay(self): - return _mscl.NodeFeatures_minSensorDelay(self) - - def maxSensorDelay(self): - return _mscl.NodeFeatures_maxSensorDelay(self) - - def defaultSensorDelay(self): - return _mscl.NodeFeatures_defaultSensorDelay(self) - - def maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate): - return _mscl.NodeFeatures_maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate) - - def normalizeEventDuration(self, duration): - return _mscl.NodeFeatures_normalizeEventDuration(self, duration) - - def normalizeSensorDelay(self, delay): - return _mscl.NodeFeatures_normalizeSensorDelay(self, delay) - - def numDamageAngles(self): - return _mscl.NodeFeatures_numDamageAngles(self) - - def numSnCurveSegments(self): - return _mscl.NodeFeatures_numSnCurveSegments(self) - - def numEventTriggers(self): - return _mscl.NodeFeatures_numEventTriggers(self) - - def defaultModes(self): - return _mscl.NodeFeatures_defaultModes(self) - - def dataCollectionMethods(self): - return _mscl.NodeFeatures_dataCollectionMethods(self) - - def dataFormats(self): - return _mscl.NodeFeatures_dataFormats(self) - - def samplingModes(self): - return _mscl.NodeFeatures_samplingModes(self) - - def sampleRates(self, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_sampleRates(self, samplingMode, dataCollectionMethod, dataMode) - - def derivedDataRates(self): - return _mscl.NodeFeatures_derivedDataRates(self) - - def transmitPowers(self, *args): - return _mscl.NodeFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.NodeFeatures_commProtocols(self) - - def sensorOutputModes(self): - return _mscl.NodeFeatures_sensorOutputModes(self) - - def cfcFilters(self): - return _mscl.NodeFeatures_cfcFilters(self) - - def histogramTransmitRates(self): - return _mscl.NodeFeatures_histogramTransmitRates(self) - - def fatigueModes(self): - return _mscl.NodeFeatures_fatigueModes(self) - - def antiAliasingFilters(self): - return _mscl.NodeFeatures_antiAliasingFilters(self) - - def lowPassFilters(self): - return _mscl.NodeFeatures_lowPassFilters(self) - - def highPassFilters(self): - return _mscl.NodeFeatures_highPassFilters(self) - - def storageLimitModes(self): - return _mscl.NodeFeatures_storageLimitModes(self) - - def inputRanges(self, *args): - return _mscl.NodeFeatures_inputRanges(self, *args) - - def dataModes(self): - return _mscl.NodeFeatures_dataModes(self) - - def transducerTypes(self): - return _mscl.NodeFeatures_transducerTypes(self) - - def channelsPerDerivedCategory(self): - return _mscl.NodeFeatures_channelsPerDerivedCategory(self) - - def excitationVoltages(self): - return _mscl.NodeFeatures_excitationVoltages(self) - - def adcVoltageInputType(self): - return _mscl.NodeFeatures_adcVoltageInputType(self) - - def maxTransmitPower(self, *args): - return _mscl.NodeFeatures_maxTransmitPower(self, *args) - - def minTransmitPower(self, *args): - return _mscl.NodeFeatures_minTransmitPower(self, *args) - -# Register NodeFeatures in _mscl: -_mscl.NodeFeatures_swigregister(NodeFeatures) - -class BaseStationFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_BaseStationFeatures - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.BaseStationFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.BaseStationFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsButtons(self): - return _mscl.BaseStationFeatures_supportsButtons(self) - - def supportsAnalogPairing(self): - return _mscl.BaseStationFeatures_supportsAnalogPairing(self) - - def supportsBeaconStatus(self): - return _mscl.BaseStationFeatures_supportsBeaconStatus(self) - - def supportsRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsRfSweepMode(self) - - def supportsCustomRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsCustomRfSweepMode(self) - - def buttonCount(self): - return _mscl.BaseStationFeatures_buttonCount(self) - - def analogPortCount(self): - return _mscl.BaseStationFeatures_analogPortCount(self) - - def transmitPowers(self, *args): - return _mscl.BaseStationFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.BaseStationFeatures_commProtocols(self) - - def maxTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_maxTransmitPower(self, region, commProtocol) - - def minTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_minTransmitPower(self, region, commProtocol) - -# Register BaseStationFeatures in _mscl: -_mscl.BaseStationFeatures_swigregister(BaseStationFeatures) - -class EulerAngles(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EulerAngles_swiginit(self, _mscl.new_EulerAngles(*args)) - - def asMipFieldValues(self): - return _mscl.EulerAngles_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.EulerAngles_appendMipFieldValues(self, appendTo) - - def roll(self): - return _mscl.EulerAngles_roll(self) - - def pitch(self): - return _mscl.EulerAngles_pitch(self) - - def yaw(self): - return _mscl.EulerAngles_yaw(self) - - def heading(self): - return _mscl.EulerAngles_heading(self) - __swig_destroy__ = _mscl.delete_EulerAngles - -# Register EulerAngles in _mscl: -_mscl.EulerAngles_swigregister(EulerAngles) - -class Quaternion(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Quaternion_swiginit(self, _mscl.new_Quaternion(*args)) - - def asMipFieldValues(self): - return _mscl.Quaternion_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Quaternion_appendMipFieldValues(self, appendTo) - - def normalize(self): - return _mscl.Quaternion_normalize(self) - - def q0(self): - return _mscl.Quaternion_q0(self) - - def q1(self): - return _mscl.Quaternion_q1(self) - - def q2(self): - return _mscl.Quaternion_q2(self) - - def q3(self): - return _mscl.Quaternion_q3(self) - __swig_destroy__ = _mscl.delete_Quaternion - -# Register Quaternion in _mscl: -_mscl.Quaternion_swigregister(Quaternion) - -class Rotation(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EULER_ANGLES = _mscl.Rotation_EULER_ANGLES - QUATERNION = _mscl.Rotation_QUATERNION - - def __init__(self, *args): - _mscl.Rotation_swiginit(self, _mscl.new_Rotation(*args)) - - @staticmethod - def FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - - @staticmethod - def FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - - def asEulerAngles(self): - return _mscl.Rotation_asEulerAngles(self) - - def asQuaternion(self): - return _mscl.Rotation_asQuaternion(self) - - def asMipFieldValues(self, includeFormat=True): - return _mscl.Rotation_asMipFieldValues(self, includeFormat) - - def appendMipFieldValues(self, appendTo, includeFormat=True): - return _mscl.Rotation_appendMipFieldValues(self, appendTo, includeFormat) - - def format(self): - return _mscl.Rotation_format(self) - __swig_destroy__ = _mscl.delete_Rotation - -# Register Rotation in _mscl: -_mscl.Rotation_swigregister(Rotation) - -def Rotation_FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - -def Rotation_FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - -class Vec3f(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Vec3f_swiginit(self, _mscl.new_Vec3f(*args)) - __swig_destroy__ = _mscl.delete_Vec3f - - def fromMipFieldValues(self, data, offset=0): - return _mscl.Vec3f_fromMipFieldValues(self, data, offset) - - def asMipFieldValues(self): - return _mscl.Vec3f_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Vec3f_appendMipFieldValues(self, appendTo) - - def x(self, *args): - return _mscl.Vec3f_x(self, *args) - - def y(self, *args): - return _mscl.Vec3f_y(self, *args) - - def z(self, *args): - return _mscl.Vec3f_z(self, *args) - -# Register Vec3f in _mscl: -_mscl.Vec3f_swigregister(Vec3f) - -ECEF = _mscl.ECEF -LLH_NED = _mscl.LLH_NED -LOCAL = _mscl.LOCAL -VEHICLE = _mscl.VEHICLE -class GeometricVector(Vec3f): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - - @staticmethod - def VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - - def __init__(self, *args): - _mscl.GeometricVector_swiginit(self, _mscl.new_GeometricVector(*args)) - __swig_destroy__ = _mscl.delete_GeometricVector - - def fromMipFieldValues_includesFrame(self, data, offset=0): - return _mscl.GeometricVector_fromMipFieldValues_includesFrame(self, data, offset) - - def asMipFieldValues_includeFrame(self): - return _mscl.GeometricVector_asMipFieldValues_includeFrame(self) - - def appendMipFieldValues_includeFrame(self, appendTo): - return _mscl.GeometricVector_appendMipFieldValues_includeFrame(self, appendTo) - referenceFrame = property(_mscl.GeometricVector_referenceFrame_get, _mscl.GeometricVector_referenceFrame_set) - - def north(self, *args): - return _mscl.GeometricVector_north(self, *args) - - def east(self, *args): - return _mscl.GeometricVector_east(self, *args) - - def down(self, *args): - return _mscl.GeometricVector_down(self, *args) - -# Register GeometricVector in _mscl: -_mscl.GeometricVector_swigregister(GeometricVector) - -def GeometricVector_VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - -def GeometricVector_VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - -class PositionOffset(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.PositionOffset_swiginit(self, _mscl.new_PositionOffset(*args)) - __swig_destroy__ = _mscl.delete_PositionOffset - -# Register PositionOffset in _mscl: -_mscl.PositionOffset_swigregister(PositionOffset) - -class Velocity(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Velocity_swiginit(self, _mscl.new_Velocity(*args)) - __swig_destroy__ = _mscl.delete_Velocity - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - - @staticmethod - def NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - - @staticmethod - def Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -# Register Velocity in _mscl: -_mscl.Velocity_swigregister(Velocity) - -def Velocity_ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - -def Velocity_NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - -def Velocity_Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -class Position(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - - def __init__(self, *args): - _mscl.Position_swiginit(self, _mscl.new_Position(*args)) - __swig_destroy__ = _mscl.delete_Position - referenceFrame = property(_mscl.Position_referenceFrame_get, _mscl.Position_referenceFrame_set) - - def latitude(self, *args): - return _mscl.Position_latitude(self, *args) - - def longitude(self, *args): - return _mscl.Position_longitude(self, *args) - - def altitude(self, *args): - return _mscl.Position_altitude(self, *args) - - def height(self, *args): - return _mscl.Position_height(self, *args) - - def x(self, *args): - return _mscl.Position_x(self, *args) - - def y(self, *args): - return _mscl.Position_y(self, *args) - - def z(self, *args): - return _mscl.Position_z(self, *args) - -# Register Position in _mscl: -_mscl.Position_swigregister(Position) - -def Position_LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - -def Position_ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - -class GeometricUncertainty(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeometricUncertainty_swiginit(self, _mscl.new_GeometricUncertainty(*args)) - __swig_destroy__ = _mscl.delete_GeometricUncertainty - -# Register GeometricUncertainty in _mscl: -_mscl.GeometricUncertainty_swigregister(GeometricUncertainty) - -class MipModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_3dm_dh3 = _mscl.MipModels_node_3dm_dh3 - node_3dm_gx3_15 = _mscl.MipModels_node_3dm_gx3_15 - node_3dm_gx3_25 = _mscl.MipModels_node_3dm_gx3_25 - node_3dm_gx3_35 = _mscl.MipModels_node_3dm_gx3_35 - node_3dm_gx3_45 = _mscl.MipModels_node_3dm_gx3_45 - node_3dm_rq1_45_lt = _mscl.MipModels_node_3dm_rq1_45_lt - node_3dm_gx4_15 = _mscl.MipModels_node_3dm_gx4_15 - node_3dm_gx4_25 = _mscl.MipModels_node_3dm_gx4_25 - node_3dm_gx4_45 = _mscl.MipModels_node_3dm_gx4_45 - node_3dm_rq1_45_st = _mscl.MipModels_node_3dm_rq1_45_st - node_mv5_ar = _mscl.MipModels_node_mv5_ar - node_3dm_gx5_10 = _mscl.MipModels_node_3dm_gx5_10 - node_3dm_gx5_15 = _mscl.MipModels_node_3dm_gx5_15 - node_3dm_gx5_25 = _mscl.MipModels_node_3dm_gx5_25 - node_3dm_gx5_35 = _mscl.MipModels_node_3dm_gx5_35 - node_3dm_gx5_45 = _mscl.MipModels_node_3dm_gx5_45 - node_3dm_cv5_10 = _mscl.MipModels_node_3dm_cv5_10 - node_3dm_cv5_15 = _mscl.MipModels_node_3dm_cv5_15 - node_3dm_cv5_25 = _mscl.MipModels_node_3dm_cv5_25 - node_3dm_cv5_45 = _mscl.MipModels_node_3dm_cv5_45 - node_3dm_gq4_45 = _mscl.MipModels_node_3dm_gq4_45 - node_3dm_cx5_45 = _mscl.MipModels_node_3dm_cx5_45 - node_3dm_cx5_35 = _mscl.MipModels_node_3dm_cx5_35 - node_3dm_cx5_25 = _mscl.MipModels_node_3dm_cx5_25 - node_3dm_cx5_15 = _mscl.MipModels_node_3dm_cx5_15 - node_3dm_cx5_10 = _mscl.MipModels_node_3dm_cx5_10 - node_3dm_cl5_15 = _mscl.MipModels_node_3dm_cl5_15 - node_3dm_cl5_25 = _mscl.MipModels_node_3dm_cl5_25 - node_3dm_gq7 = _mscl.MipModels_node_3dm_gq7 - node_3dm_rtk = _mscl.MipModels_node_3dm_rtk - node_3dm_cv7_ahrs = _mscl.MipModels_node_3dm_cv7_ahrs - node_3dm_cv7_ar = _mscl.MipModels_node_3dm_cv7_ar - node_3dm_gv7_ahrs = _mscl.MipModels_node_3dm_gv7_ahrs - node_3dm_gv7_ar = _mscl.MipModels_node_3dm_gv7_ar - node_3dm_gv7_ins = _mscl.MipModels_node_3dm_gv7_ins - node_3dm_cv7_ins = _mscl.MipModels_node_3dm_cv7_ins - node_3dm_cv7_gnss_ins = _mscl.MipModels_node_3dm_cv7_gnss_ins - placeholder_matchAll = _mscl.MipModels_placeholder_matchAll - rtk_v1 = _mscl.MipModels_rtk_v1 - rtk_v2 = _mscl.MipModels_rtk_v2 - model_3dm_dh3 = _mscl.MipModels_model_3dm_dh3 - model_3dm_gx3_15 = _mscl.MipModels_model_3dm_gx3_15 - model_3dm_gx3_25 = _mscl.MipModels_model_3dm_gx3_25 - model_3dm_gx3_35 = _mscl.MipModels_model_3dm_gx3_35 - model_3dm_gx3_45 = _mscl.MipModels_model_3dm_gx3_45 - model_3dm_rq1_45_lt = _mscl.MipModels_model_3dm_rq1_45_lt - model_3dm_gx4_15 = _mscl.MipModels_model_3dm_gx4_15 - model_3dm_gx4_25 = _mscl.MipModels_model_3dm_gx4_25 - model_3dm_gx4_45 = _mscl.MipModels_model_3dm_gx4_45 - model_3dm_rq1_45_st = _mscl.MipModels_model_3dm_rq1_45_st - model_mv5_ar = _mscl.MipModels_model_mv5_ar - model_3dm_gx5_10 = _mscl.MipModels_model_3dm_gx5_10 - model_3dm_gx5_15 = _mscl.MipModels_model_3dm_gx5_15 - model_3dm_gx5_25 = _mscl.MipModels_model_3dm_gx5_25 - model_3dm_gx5_35 = _mscl.MipModels_model_3dm_gx5_35 - model_3dm_gx5_45 = _mscl.MipModels_model_3dm_gx5_45 - model_3dm_cv5_10 = _mscl.MipModels_model_3dm_cv5_10 - model_3dm_cv5_15 = _mscl.MipModels_model_3dm_cv5_15 - model_3dm_cv5_25 = _mscl.MipModels_model_3dm_cv5_25 - model_3dm_cv5_45 = _mscl.MipModels_model_3dm_cv5_45 - model_3dm_gq4_45 = _mscl.MipModels_model_3dm_gq4_45 - model_3dm_cx5_45 = _mscl.MipModels_model_3dm_cx5_45 - model_3dm_cx5_35 = _mscl.MipModels_model_3dm_cx5_35 - model_3dm_cx5_25 = _mscl.MipModels_model_3dm_cx5_25 - model_3dm_cx5_15 = _mscl.MipModels_model_3dm_cx5_15 - model_3dm_cx5_10 = _mscl.MipModels_model_3dm_cx5_10 - model_3dm_cl5_15 = _mscl.MipModels_model_3dm_cl5_15 - model_3dm_cl5_25 = _mscl.MipModels_model_3dm_cl5_25 - model_3dm_gq7 = _mscl.MipModels_model_3dm_gq7 - model_3dm_rtk_v1 = _mscl.MipModels_model_3dm_rtk_v1 - model_3dm_rtk = _mscl.MipModels_model_3dm_rtk - model_3dm_cv7_ahrs = _mscl.MipModels_model_3dm_cv7_ahrs - model_3dm_cv7_ar = _mscl.MipModels_model_3dm_cv7_ar - model_3dm_gv7_ahrs = _mscl.MipModels_model_3dm_gv7_ahrs - model_3dm_gv7_ar = _mscl.MipModels_model_3dm_gv7_ar - model_3dm_gv7_ins = _mscl.MipModels_model_3dm_gv7_ins - model_3dm_cv7_ins = _mscl.MipModels_model_3dm_cv7_ins - model_3dm_cv7_gnss_ins = _mscl.MipModels_model_3dm_cv7_gnss_ins - - @staticmethod - def modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - - @staticmethod - def modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - - @staticmethod - def modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - - @staticmethod - def nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - - @staticmethod - def modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - - @staticmethod - def nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - - @staticmethod - def modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - - @staticmethod - def stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - - def __init__(self): - _mscl.MipModels_swiginit(self, _mscl.new_MipModels()) - __swig_destroy__ = _mscl.delete_MipModels - -# Register MipModels in _mscl: -_mscl.MipModels_swigregister(MipModels) - -def MipModels_modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - -def MipModels_modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - -def MipModels_modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - -def MipModels_nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - -def MipModels_modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - -def MipModels_nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - -def MipModels_modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - -def MipModels_stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - -class MipModel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipModel_swiginit(self, _mscl.new_MipModel(*args)) - - def equals(self, compare): - return _mscl.MipModel_equals(self, compare) - - def __str__(self): - return _mscl.MipModel___str__(self) - - def nodeModel(self): - return _mscl.MipModel_nodeModel(self) - - def modifier(self): - return _mscl.MipModel_modifier(self) - - def modelNumber(self): - return _mscl.MipModel_modelNumber(self) - - def baseModel(self): - return _mscl.MipModel_baseModel(self) - __swig_destroy__ = _mscl.delete_MipModel - -# Register MipModel in _mscl: -_mscl.MipModel_swigregister(MipModel) -MipModel.mip_model_none = _mscl.cvar.MipModel_mip_model_none -MipModel.mip_model_3dm_dh3 = _mscl.cvar.MipModel_mip_model_3dm_dh3 -MipModel.mip_model_3dm_gx3_15 = _mscl.cvar.MipModel_mip_model_3dm_gx3_15 -MipModel.mip_model_3dm_gx3_25 = _mscl.cvar.MipModel_mip_model_3dm_gx3_25 -MipModel.mip_model_3dm_gx3_35 = _mscl.cvar.MipModel_mip_model_3dm_gx3_35 -MipModel.mip_model_3dm_gx3_45 = _mscl.cvar.MipModel_mip_model_3dm_gx3_45 -MipModel.mip_model_3dm_rq1_45_lt = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_lt -MipModel.mip_model_3dm_rq1_45_st = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_st -MipModel.mip_model_3dm_gx4_15 = _mscl.cvar.MipModel_mip_model_3dm_gx4_15 -MipModel.mip_model_3dm_gx4_25 = _mscl.cvar.MipModel_mip_model_3dm_gx4_25 -MipModel.mip_model_3dm_gx4_45 = _mscl.cvar.MipModel_mip_model_3dm_gx4_45 -MipModel.mip_model_mv5_ar = _mscl.cvar.MipModel_mip_model_mv5_ar -MipModel.mip_model_3dm_gx5_10 = _mscl.cvar.MipModel_mip_model_3dm_gx5_10 -MipModel.mip_model_3dm_gx5_15 = _mscl.cvar.MipModel_mip_model_3dm_gx5_15 -MipModel.mip_model_3dm_gx5_25 = _mscl.cvar.MipModel_mip_model_3dm_gx5_25 -MipModel.mip_model_3dm_gx5_35 = _mscl.cvar.MipModel_mip_model_3dm_gx5_35 -MipModel.mip_model_3dm_gx5_45 = _mscl.cvar.MipModel_mip_model_3dm_gx5_45 -MipModel.mip_model_3dm_cv5_10 = _mscl.cvar.MipModel_mip_model_3dm_cv5_10 -MipModel.mip_model_3dm_cv5_15 = _mscl.cvar.MipModel_mip_model_3dm_cv5_15 -MipModel.mip_model_3dm_cv5_25 = _mscl.cvar.MipModel_mip_model_3dm_cv5_25 -MipModel.mip_model_3dm_cv5_45 = _mscl.cvar.MipModel_mip_model_3dm_cv5_45 -MipModel.mip_model_3dm_gq4_45 = _mscl.cvar.MipModel_mip_model_3dm_gq4_45 -MipModel.mip_model_3dm_cx5_45 = _mscl.cvar.MipModel_mip_model_3dm_cx5_45 -MipModel.mip_model_3dm_cx5_35 = _mscl.cvar.MipModel_mip_model_3dm_cx5_35 -MipModel.mip_model_3dm_cx5_25 = _mscl.cvar.MipModel_mip_model_3dm_cx5_25 -MipModel.mip_model_3dm_cx5_15 = _mscl.cvar.MipModel_mip_model_3dm_cx5_15 -MipModel.mip_model_3dm_cx5_10 = _mscl.cvar.MipModel_mip_model_3dm_cx5_10 -MipModel.mip_model_3dm_cl5_15 = _mscl.cvar.MipModel_mip_model_3dm_cl5_15 -MipModel.mip_model_3dm_cl5_25 = _mscl.cvar.MipModel_mip_model_3dm_cl5_25 -MipModel.mip_model_3dm_gq7 = _mscl.cvar.MipModel_mip_model_3dm_gq7 -MipModel.mip_model_3dm_rtk_v1 = _mscl.cvar.MipModel_mip_model_3dm_rtk_v1 -MipModel.mip_model_3dm_rtk = _mscl.cvar.MipModel_mip_model_3dm_rtk -MipModel.mip_model_3dm_cv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_cv7_ahrs -MipModel.mip_model_3dm_cv7_ar = _mscl.cvar.MipModel_mip_model_3dm_cv7_ar -MipModel.mip_model_3dm_gv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_gv7_ahrs -MipModel.mip_model_3dm_gv7_ar = _mscl.cvar.MipModel_mip_model_3dm_gv7_ar -MipModel.mip_model_3dm_gv7_ins = _mscl.cvar.MipModel_mip_model_3dm_gv7_ins -MipModel.mip_model_3dm_cv7_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_ins -MipModel.mip_model_3dm_cv7_gnss_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_gnss_ins - -class DisplacementModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_digitalDemod = _mscl.DisplacementModels_node_digitalDemod - - def __init__(self): - _mscl.DisplacementModels_swiginit(self, _mscl.new_DisplacementModels()) - __swig_destroy__ = _mscl.delete_DisplacementModels - -# Register DisplacementModels in _mscl: -_mscl.DisplacementModels_swigregister(DisplacementModels) - -class MipTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CLASS_AHRS_IMU = _mscl.MipTypes_CLASS_AHRS_IMU - CLASS_GNSS = _mscl.MipTypes_CLASS_GNSS - CLASS_ESTFILTER = _mscl.MipTypes_CLASS_ESTFILTER - CLASS_DISPLACEMENT = _mscl.MipTypes_CLASS_DISPLACEMENT - CLASS_GNSS1 = _mscl.MipTypes_CLASS_GNSS1 - CLASS_GNSS2 = _mscl.MipTypes_CLASS_GNSS2 - CLASS_GNSS3 = _mscl.MipTypes_CLASS_GNSS3 - CLASS_RTK = _mscl.MipTypes_CLASS_RTK - CLASS_GNSS4 = _mscl.MipTypes_CLASS_GNSS4 - CLASS_GNSS5 = _mscl.MipTypes_CLASS_GNSS5 - CLASS_SYSTEM = _mscl.MipTypes_CLASS_SYSTEM - USE_NEW_SETTINGS = _mscl.MipTypes_USE_NEW_SETTINGS - READ_BACK_CURRENT_SETTINGS = _mscl.MipTypes_READ_BACK_CURRENT_SETTINGS - SAVE_CURRENT_SETTINGS = _mscl.MipTypes_SAVE_CURRENT_SETTINGS - LOAD_STARTUP_SETTINGS = _mscl.MipTypes_LOAD_STARTUP_SETTINGS - RESET_TO_DEFAULT = _mscl.MipTypes_RESET_TO_DEFAULT - USE_NEW_SETTINGS_NO_ACKNACK = _mscl.MipTypes_USE_NEW_SETTINGS_NO_ACKNACK - DISABLED = _mscl.MipTypes_DISABLED - ENABLED = _mscl.MipTypes_ENABLED - TIME_FRAME_WEEKS = _mscl.MipTypes_TIME_FRAME_WEEKS - TIME_FRAME_SECONDS = _mscl.MipTypes_TIME_FRAME_SECONDS - CMD_PING = _mscl.MipTypes_CMD_PING - CMD_SET_IDLE = _mscl.MipTypes_CMD_SET_IDLE - CMD_GET_DEVICE_INFO = _mscl.MipTypes_CMD_GET_DEVICE_INFO - CMD_GET_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_DESCRIPTOR_SETS - CMD_BUILT_IN_TEST = _mscl.MipTypes_CMD_BUILT_IN_TEST - CMD_RESUME = _mscl.MipTypes_CMD_RESUME - CMD_GET_EXT_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_EXT_DESCRIPTOR_SETS - CMD_COMM_PORT_SPEED = _mscl.MipTypes_CMD_COMM_PORT_SPEED - CMD_GPS_TIME_UPDATE = _mscl.MipTypes_CMD_GPS_TIME_UPDATE - CMD_RESET = _mscl.MipTypes_CMD_RESET - CMD_POLL_SENSOR_DATA = _mscl.MipTypes_CMD_POLL_SENSOR_DATA - CMD_POLL_GNSS_DATA = _mscl.MipTypes_CMD_POLL_GNSS_DATA - CMD_POLL_EF_DATA = _mscl.MipTypes_CMD_POLL_EF_DATA - CMD_GET_SENSOR_RATE_BASE = _mscl.MipTypes_CMD_GET_SENSOR_RATE_BASE - CMD_GET_GNSS_RATE_BASE = _mscl.MipTypes_CMD_GET_GNSS_RATE_BASE - CMD_GET_EF_RATE_BASE = _mscl.MipTypes_CMD_GET_EF_RATE_BASE - CMD_SENSOR_MESSAGE_FORMAT = _mscl.MipTypes_CMD_SENSOR_MESSAGE_FORMAT - CMD_GNSS_MESSAGE_FORMAT = _mscl.MipTypes_CMD_GNSS_MESSAGE_FORMAT - CMD_EF_MESSAGE_FORMAT = _mscl.MipTypes_CMD_EF_MESSAGE_FORMAT - CMD_NMEA_MESSAGE_FORMAT = _mscl.MipTypes_CMD_NMEA_MESSAGE_FORMAT - CMD_POLL = _mscl.MipTypes_CMD_POLL - CMD_GET_BASE_RATE = _mscl.MipTypes_CMD_GET_BASE_RATE - CMD_MESSAGE_FORMAT = _mscl.MipTypes_CMD_MESSAGE_FORMAT - CMD_FACTORY_STREAMING = _mscl.MipTypes_CMD_FACTORY_STREAMING - CMD_CONTINUOUS_DATA_STREAM = _mscl.MipTypes_CMD_CONTINUOUS_DATA_STREAM - CMD_RAW_RTCM_2_3_MESSAGE = _mscl.MipTypes_CMD_RAW_RTCM_2_3_MESSAGE - CMD_GNSS_CONSTELLATION_SETTINGS = _mscl.MipTypes_CMD_GNSS_CONSTELLATION_SETTINGS - CMD_GNSS_SBAS_SETTINGS = _mscl.MipTypes_CMD_GNSS_SBAS_SETTINGS - CMD_GNSS_ASSIST_FIX_CONTROL = _mscl.MipTypes_CMD_GNSS_ASSIST_FIX_CONTROL - CMD_GNSS_ASSIST_TIME_UPDATE = _mscl.MipTypes_CMD_GNSS_ASSIST_TIME_UPDATE - CMD_PPS_SOURCE = _mscl.MipTypes_CMD_PPS_SOURCE - CMD_EVENT_SUPPORT = _mscl.MipTypes_CMD_EVENT_SUPPORT - CMD_EVENT_CONTROL = _mscl.MipTypes_CMD_EVENT_CONTROL - CMD_EVENT_TRIGGER_STATUS = _mscl.MipTypes_CMD_EVENT_TRIGGER_STATUS - CMD_EVENT_ACTION_STATUS = _mscl.MipTypes_CMD_EVENT_ACTION_STATUS - CMD_EVENT_TRIGGER_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_TRIGGER_CONFIGURATION - CMD_EVENT_ACTION_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_ACTION_CONFIGURATION - CMD_SAVE_STARTUP_SETTINGS = _mscl.MipTypes_CMD_SAVE_STARTUP_SETTINGS - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM - CMD_GPS_DYNAMICS_MODE = _mscl.MipTypes_CMD_GPS_DYNAMICS_MODE - CMD_SENSOR_SIG_COND_SETTINGS = _mscl.MipTypes_CMD_SENSOR_SIG_COND_SETTINGS - CMD_SENSOR_TIMESTAMP = _mscl.MipTypes_CMD_SENSOR_TIMESTAMP - CMD_ACCEL_BIAS = _mscl.MipTypes_CMD_ACCEL_BIAS - CMD_GYRO_BIAS = _mscl.MipTypes_CMD_GYRO_BIAS - CMD_CAP_GYRO_BIAS = _mscl.MipTypes_CMD_CAP_GYRO_BIAS - CMD_MAG_HARD_IRON_OFFSET = _mscl.MipTypes_CMD_MAG_HARD_IRON_OFFSET - CMD_MAG_SOFT_IRON_MATRIX = _mscl.MipTypes_CMD_MAG_SOFT_IRON_MATRIX - CMD_CF_REALIGN_UP = _mscl.MipTypes_CMD_CF_REALIGN_UP - CMD_CF_REALIGN_NORTH = _mscl.MipTypes_CMD_CF_REALIGN_NORTH - CMD_CONING_SCULLING = _mscl.MipTypes_CMD_CONING_SCULLING - CMD_UART_BAUD_RATE = _mscl.MipTypes_CMD_UART_BAUD_RATE - CMD_GPIO_CONFIGURATION = _mscl.MipTypes_CMD_GPIO_CONFIGURATION - CMD_GPIO_STATE = _mscl.MipTypes_CMD_GPIO_STATE - CMD_ODOMETER_SETTINGS = _mscl.MipTypes_CMD_ODOMETER_SETTINGS - CMD_LOWPASS_FILTER_SETTINGS = _mscl.MipTypes_CMD_LOWPASS_FILTER_SETTINGS - CMD_COMPLEMENTARY_FILTER_SETTINGS = _mscl.MipTypes_CMD_COMPLEMENTARY_FILTER_SETTINGS - CMD_SENSOR_RANGE = _mscl.MipTypes_CMD_SENSOR_RANGE - CMD_SUPPORTED_SENSOR_RANGES = _mscl.MipTypes_CMD_SUPPORTED_SENSOR_RANGES - CMD_LOWPASS_ANTIALIASING_FILTER = _mscl.MipTypes_CMD_LOWPASS_ANTIALIASING_FILTER - CMD_DATA_STREAM_FORMAT = _mscl.MipTypes_CMD_DATA_STREAM_FORMAT - CMD_POWER_STATES = _mscl.MipTypes_CMD_POWER_STATES - CMD_GPS_STARTUP_SETTINGS = _mscl.MipTypes_CMD_GPS_STARTUP_SETTINGS - CMD_DEVICE_STATUS = _mscl.MipTypes_CMD_DEVICE_STATUS - CMD_EF_RESET_FILTER = _mscl.MipTypes_CMD_EF_RESET_FILTER - CMD_EF_INIT_ATTITUDE = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE - CMD_EF_INIT_HEADING = _mscl.MipTypes_CMD_EF_INIT_HEADING - CMD_EF_INIT_ATTITUDE_FROM_AHRS = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE_FROM_AHRS - CMD_EF_RUN_FILTER = _mscl.MipTypes_CMD_EF_RUN_FILTER - CMD_EF_VEHIC_DYNAMICS_MODE = _mscl.MipTypes_CMD_EF_VEHIC_DYNAMICS_MODE - CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER - CMD_EF_SENS_VEHIC_FRAME_OFFSET = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_OFFSET - CMD_EF_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_ANTENNA_OFFSET - CMD_EF_BIAS_EST_CTRL = _mscl.MipTypes_CMD_EF_BIAS_EST_CTRL - CMD_EF_GNSS_SRC_CTRL = _mscl.MipTypes_CMD_EF_GNSS_SRC_CTRL - CMD_EF_EXTERN_GNSS_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_GNSS_UPDATE - CMD_EF_EXTERN_HEADING_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_HEADING_UPDATE - CMD_EF_HEADING_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_HEADING_UPDATE_CTRL - CMD_EF_AUTO_INIT_CTRL = _mscl.MipTypes_CMD_EF_AUTO_INIT_CTRL - CMD_EF_ACCEL_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_ACCEL_WHT_NSE_STD_DEV - CMD_EF_GYRO_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_GYRO_WHT_NSE_STD_DEV - CMD_EF_ACCEL_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_ACCEL_BIAS_MODEL_PARAMS - CMD_EF_GYRO_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_GYRO_BIAS_MODEL_PARAMS - CMD_EF_ZERO_VEL_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_VEL_UPDATE_CTRL - CMD_EF_EXT_HEADING_UPDATE_TS = _mscl.MipTypes_CMD_EF_EXT_HEADING_UPDATE_TS - CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL - CMD_EF_TARE_ORIENT = _mscl.MipTypes_CMD_EF_TARE_ORIENT - CMD_EF_CMDED_ZERO_VEL_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_VEL_UPDATE - CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE - CMD_EF_SET_REF_POSITION = _mscl.MipTypes_CMD_EF_SET_REF_POSITION - CMD_EF_MAG_CAPTURE_AUTO_CAL = _mscl.MipTypes_CMD_EF_MAG_CAPTURE_AUTO_CAL - CMD_EF_GRAVITY_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_STD_DEV - CMD_EF_PRESS_ALT_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_PRESS_ALT_NOISE_STD_DEV - CMD_EF_GRAVITY_NOISE_MINIMUM = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_MINIMUM - CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE - CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE - CMD_EF_ENABLE_DISABLE_MEASUREMENTS = _mscl.MipTypes_CMD_EF_ENABLE_DISABLE_MEASUREMENTS - CMD_EF_MAG_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_MAG_NOISE_STD_DEV - CMD_EF_DECLINATION_SRC = _mscl.MipTypes_CMD_EF_DECLINATION_SRC - CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE - CMD_EF_ALTITUDE_AID_CTRL = _mscl.MipTypes_CMD_EF_ALTITUDE_AID_CTRL - CMD_EF_PITCH_ROLL_AID_CTRL = _mscl.MipTypes_CMD_EF_PITCH_ROLL_AID_CTRL - CMD_EF_INCLINATION_SRC = _mscl.MipTypes_CMD_EF_INCLINATION_SRC - CMD_EF_FIELD_MAGNITUDE_SRC = _mscl.MipTypes_CMD_EF_FIELD_MAGNITUDE_SRC - CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM - CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT - CMD_EF_AIDING_MEASUREMENT_ENABLE = _mscl.MipTypes_CMD_EF_AIDING_MEASUREMENT_ENABLE - CMD_EF_INITIALIZATION_CONFIG = _mscl.MipTypes_CMD_EF_INITIALIZATION_CONFIG - CMD_EF_ADAPTIVE_FILTER_OPTIONS = _mscl.MipTypes_CMD_EF_ADAPTIVE_FILTER_OPTIONS - CMD_EF_MULTI_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_MULTI_ANTENNA_OFFSET - CMD_EF_RELATIVE_POSITION_REF = _mscl.MipTypes_CMD_EF_RELATIVE_POSITION_REF - CMD_EF_LEVER_ARM_OFFSET_REF = _mscl.MipTypes_CMD_EF_LEVER_ARM_OFFSET_REF - CMD_EF_EXTERN_SPEED_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_SPEED_UPDATE - CMD_EF_SPEED_MEASUREMENT_OFFSET = _mscl.MipTypes_CMD_EF_SPEED_MEASUREMENT_OFFSET - CMD_EF_VERTICAL_GYRO_CONSTRAINT = _mscl.MipTypes_CMD_EF_VERTICAL_GYRO_CONSTRAINT - CMD_EF_WHEELED_VEHICLE_CONSTRAINT = _mscl.MipTypes_CMD_EF_WHEELED_VEHICLE_CONSTRAINT - CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL = _mscl.MipTypes_CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL - CMD_GNSS_RECEIVER_INFO = _mscl.MipTypes_CMD_GNSS_RECEIVER_INFO - CMD_GNSS_SIGNAL_CONFIG = _mscl.MipTypes_CMD_GNSS_SIGNAL_CONFIG - CMD_GNSS_SPARTN_CONFIG = _mscl.MipTypes_CMD_GNSS_SPARTN_CONFIG - CMD_GNSS_RTK_CONFIG = _mscl.MipTypes_CMD_GNSS_RTK_CONFIG - CMD_INTERFACE_CONTROL = _mscl.MipTypes_CMD_INTERFACE_CONTROL - CMD_COMMUNICATION_MODE = _mscl.MipTypes_CMD_COMMUNICATION_MODE - CMD_HARDWARE_CTRL = _mscl.MipTypes_CMD_HARDWARE_CTRL - CMD_GET_ANALOG_DISPLACEMENT_CALS = _mscl.MipTypes_CMD_GET_ANALOG_DISPLACEMENT_CALS - CMD_DISPLACEMENT_OUTPUT_RATE = _mscl.MipTypes_CMD_DISPLACEMENT_OUTPUT_RATE - CMD_DISPLACEMENT_DEVICE_TIME = _mscl.MipTypes_CMD_DISPLACEMENT_DEVICE_TIME - CMD_RTK_DEVICE_STATUS_FLAGS = _mscl.MipTypes_CMD_RTK_DEVICE_STATUS_FLAGS - CMD_RTK_ACTIVATION_CODE = _mscl.MipTypes_CMD_RTK_ACTIVATION_CODE - CMD_AIDING_FRAME_CONFIG = _mscl.MipTypes_CMD_AIDING_FRAME_CONFIG - CMD_AIDING_ECHO_CONTROL = _mscl.MipTypes_CMD_AIDING_ECHO_CONTROL - CMD_AIDING_POS_ECEF = _mscl.MipTypes_CMD_AIDING_POS_ECEF - CMD_AIDING_POS_LLH = _mscl.MipTypes_CMD_AIDING_POS_LLH - CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID - CMD_AIDING_VEL_ECEF = _mscl.MipTypes_CMD_AIDING_VEL_ECEF - CMD_AIDING_VEL_NED = _mscl.MipTypes_CMD_AIDING_VEL_NED - CMD_AIDING_VEL_BODY_FRAME = _mscl.MipTypes_CMD_AIDING_VEL_BODY_FRAME - CMD_AIDING_HEADING_TRUE = _mscl.MipTypes_CMD_AIDING_HEADING_TRUE - CMD_AIDING_MAGNETIC_FIELD = _mscl.MipTypes_CMD_AIDING_MAGNETIC_FIELD - CMD_AIDING_PRESSURE = _mscl.MipTypes_CMD_AIDING_PRESSURE - CH_FIELD_SENSOR_RAW_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_ACCEL_VEC - CH_FIELD_SENSOR_RAW_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_GYRO_VEC - CH_FIELD_SENSOR_RAW_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_MAG_VEC - CH_FIELD_SENSOR_SCALED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_ACCEL_VEC - CH_FIELD_SENSOR_SCALED_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_GYRO_VEC - CH_FIELD_SENSOR_SCALED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_MAG_VEC - CH_FIELD_SENSOR_DELTA_THETA_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_THETA_VEC - CH_FIELD_SENSOR_DELTA_VELOCITY_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_VELOCITY_VEC - CH_FIELD_SENSOR_ORIENTATION_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_MATRIX - CH_FIELD_SENSOR_ORIENTATION_QUATERNION = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_QUATERNION - CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX - CH_FIELD_SENSOR_EULER_ANGLES = _mscl.MipTypes_CH_FIELD_SENSOR_EULER_ANGLES - CH_FIELD_SENSOR_INTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_INTERNAL_TIMESTAMP - CH_FIELD_SENSOR_BEACONED_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_BEACONED_TIMESTAMP - CH_FIELD_SENSOR_STABILIZED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_MAG_VEC - CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC - CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP - CH_FIELD_SENSOR_TEMPERATURE_STATISTICS = _mscl.MipTypes_CH_FIELD_SENSOR_TEMPERATURE_STATISTICS - CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE - CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE - CH_FIELD_SENSOR_OVERRANGE_STATUS = _mscl.MipTypes_CH_FIELD_SENSOR_OVERRANGE_STATUS - CH_FIELD_SENSOR_ODOMETER_DATA = _mscl.MipTypes_CH_FIELD_SENSOR_ODOMETER_DATA - CH_FIELD_SENSOR_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EVENT_SOURCE - CH_FIELD_SENSOR_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_TICKS - CH_FIELD_SENSOR_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TICKS - CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP - CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_LLH_POSITION - CH_FIELD_GNSS_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_POSITION - CH_FIELD_GNSS_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_NED_VELOCITY - CH_FIELD_GNSS_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_VELOCITY - CH_FIELD_GNSS_DOP = _mscl.MipTypes_CH_FIELD_GNSS_DOP - CH_FIELD_GNSS_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_UTC_TIME - CH_FIELD_GNSS_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_GPS_TIME - CH_FIELD_GNSS_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO - CH_FIELD_GNSS_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_FIX_INFO - CH_FIELD_GNSS_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_HARDWARE_STATUS - CH_FIELD_GNSS_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_INFO - CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO_2 - CH_FIELD_GNSS_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_LEAP_SECONDS - CH_FIELD_GNSS_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_INFO - CH_FIELD_GNSS_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_CORRECTION - CH_FIELD_GNSS_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_RF_ERROR_DETECTION - CH_FIELD_GNSS_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_SATELLITE_STATUS - CH_FIELD_GNSS_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_RAW_OBSERVATION - CH_FIELD_GNSS_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_STATION_INFO - CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_EPHEMERIS - CH_FIELD_GNSS_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GLONASS_EPHEMERIS - CH_FIELD_GNSS_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_EPHEMERIS - CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_TICKS - CH_FIELD_GNSS_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TICKS - CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS - CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL - CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE - CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE - CH_FIELD_ESTFILTER_FILTER_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_FILTER_STATUS - CH_FIELD_ESTFILTER_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT - CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR - CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE - CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR - CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_MAG_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS - CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT - CH_FIELD_ESTFILTER_COMPENSATED_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_COMPENSATED_ACCEL - CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL - CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT - CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX - CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS_UNCERT - CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS - CH_FIELD_ESTFILTER_ECEF_VEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL - CH_FIELD_ESTFILTER_NED_RELATIVE_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_NED_RELATIVE_POS - CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS - CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS - CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY = _mscl.MipTypes_CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT - CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT - CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE - CH_FIELD_ESTFILTER_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_TICKS - CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS - CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_DISP_DISPLACEMENT_RAW = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_RAW - CH_FIELD_DISP_DISPLACEMENT_MM = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_MM - CH_FIELD_DISP_DISPLACEMENT_TS = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_TS - CH_FIELD_GNSS_1_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_LLH_POSITION - CH_FIELD_GNSS_1_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_POSITION - CH_FIELD_GNSS_1_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_NED_VELOCITY - CH_FIELD_GNSS_1_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_VELOCITY - CH_FIELD_GNSS_1_DOP = _mscl.MipTypes_CH_FIELD_GNSS_1_DOP - CH_FIELD_GNSS_1_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_UTC_TIME - CH_FIELD_GNSS_1_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_TIME - CH_FIELD_GNSS_1_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO - CH_FIELD_GNSS_1_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_FIX_INFO - CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_1_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_HARDWARE_STATUS - CH_FIELD_GNSS_1_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_INFO - CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_1_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO_2 - CH_FIELD_GNSS_1_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_LEAP_SECONDS - CH_FIELD_GNSS_1_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_INFO - CH_FIELD_GNSS_1_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_CORRECTION - CH_FIELD_GNSS_1_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_RF_ERROR_DETECTION - CH_FIELD_GNSS_1_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_SATELLITE_STATUS - CH_FIELD_GNSS_1_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_1_RAW_OBSERVATION - CH_FIELD_GNSS_1_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_STATION_INFO - CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_1_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_EPHEMERIS - CH_FIELD_GNSS_1_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GLONASS_EPHEMERIS - CH_FIELD_GNSS_1_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_EPHEMERIS - CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_1_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_TICKS - CH_FIELD_GNSS_1_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TICKS - CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_2_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_LLH_POSITION - CH_FIELD_GNSS_2_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_POSITION - CH_FIELD_GNSS_2_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_NED_VELOCITY - CH_FIELD_GNSS_2_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_VELOCITY - CH_FIELD_GNSS_2_DOP = _mscl.MipTypes_CH_FIELD_GNSS_2_DOP - CH_FIELD_GNSS_2_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_UTC_TIME - CH_FIELD_GNSS_2_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_TIME - CH_FIELD_GNSS_2_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO - CH_FIELD_GNSS_2_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_FIX_INFO - CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_2_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_HARDWARE_STATUS - CH_FIELD_GNSS_2_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_INFO - CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_2_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO_2 - CH_FIELD_GNSS_2_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_LEAP_SECONDS - CH_FIELD_GNSS_2_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_INFO - CH_FIELD_GNSS_2_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_CORRECTION - CH_FIELD_GNSS_2_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_RF_ERROR_DETECTION - CH_FIELD_GNSS_2_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_SATELLITE_STATUS - CH_FIELD_GNSS_2_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_2_RAW_OBSERVATION - CH_FIELD_GNSS_2_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_STATION_INFO - CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_2_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_EPHEMERIS - CH_FIELD_GNSS_2_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GLONASS_EPHEMERIS - CH_FIELD_GNSS_2_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_EPHEMERIS - CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_2_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_TICKS - CH_FIELD_GNSS_2_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TICKS - CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_3_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_LLH_POSITION - CH_FIELD_GNSS_3_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_POSITION - CH_FIELD_GNSS_3_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_NED_VELOCITY - CH_FIELD_GNSS_3_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_VELOCITY - CH_FIELD_GNSS_3_DOP = _mscl.MipTypes_CH_FIELD_GNSS_3_DOP - CH_FIELD_GNSS_3_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_UTC_TIME - CH_FIELD_GNSS_3_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_TIME - CH_FIELD_GNSS_3_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO - CH_FIELD_GNSS_3_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_FIX_INFO - CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_3_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_HARDWARE_STATUS - CH_FIELD_GNSS_3_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_INFO - CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_3_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO_2 - CH_FIELD_GNSS_3_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_LEAP_SECONDS - CH_FIELD_GNSS_3_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_INFO - CH_FIELD_GNSS_3_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_CORRECTION - CH_FIELD_GNSS_3_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_RF_ERROR_DETECTION - CH_FIELD_GNSS_3_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_SATELLITE_STATUS - CH_FIELD_GNSS_3_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_3_RAW_OBSERVATION - CH_FIELD_GNSS_3_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_STATION_INFO - CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_3_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_EPHEMERIS - CH_FIELD_GNSS_3_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GLONASS_EPHEMERIS - CH_FIELD_GNSS_3_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_EPHEMERIS - CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_3_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_TICKS - CH_FIELD_GNSS_3_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TICKS - CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_4_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_LLH_POSITION - CH_FIELD_GNSS_4_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_POSITION - CH_FIELD_GNSS_4_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_NED_VELOCITY - CH_FIELD_GNSS_4_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_VELOCITY - CH_FIELD_GNSS_4_DOP = _mscl.MipTypes_CH_FIELD_GNSS_4_DOP - CH_FIELD_GNSS_4_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_UTC_TIME - CH_FIELD_GNSS_4_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_TIME - CH_FIELD_GNSS_4_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO - CH_FIELD_GNSS_4_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_FIX_INFO - CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_4_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_HARDWARE_STATUS - CH_FIELD_GNSS_4_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_INFO - CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_4_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO_2 - CH_FIELD_GNSS_4_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_LEAP_SECONDS - CH_FIELD_GNSS_4_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_INFO - CH_FIELD_GNSS_4_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_CORRECTION - CH_FIELD_GNSS_4_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_RF_ERROR_DETECTION - CH_FIELD_GNSS_4_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_SATELLITE_STATUS - CH_FIELD_GNSS_4_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_4_RAW_OBSERVATION - CH_FIELD_GNSS_4_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_STATION_INFO - CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_4_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_EPHEMERIS - CH_FIELD_GNSS_4_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GLONASS_EPHEMERIS - CH_FIELD_GNSS_4_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_EPHEMERIS - CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_4_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_TICKS - CH_FIELD_GNSS_4_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TICKS - CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_5_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_LLH_POSITION - CH_FIELD_GNSS_5_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_POSITION - CH_FIELD_GNSS_5_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_NED_VELOCITY - CH_FIELD_GNSS_5_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_VELOCITY - CH_FIELD_GNSS_5_DOP = _mscl.MipTypes_CH_FIELD_GNSS_5_DOP - CH_FIELD_GNSS_5_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_UTC_TIME - CH_FIELD_GNSS_5_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_TIME - CH_FIELD_GNSS_5_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO - CH_FIELD_GNSS_5_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_FIX_INFO - CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_5_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_HARDWARE_STATUS - CH_FIELD_GNSS_5_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_INFO - CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_5_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO_2 - CH_FIELD_GNSS_5_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_LEAP_SECONDS - CH_FIELD_GNSS_5_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_INFO - CH_FIELD_GNSS_5_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_CORRECTION - CH_FIELD_GNSS_5_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_RF_ERROR_DETECTION - CH_FIELD_GNSS_5_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_SATELLITE_STATUS - CH_FIELD_GNSS_5_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_5_RAW_OBSERVATION - CH_FIELD_GNSS_5_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_STATION_INFO - CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_5_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_EPHEMERIS - CH_FIELD_GNSS_5_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GLONASS_EPHEMERIS - CH_FIELD_GNSS_5_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_EPHEMERIS - CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_5_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_TICKS - CH_FIELD_GNSS_5_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TICKS - CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_SYSTEM_BUILT_IN_TEST = _mscl.MipTypes_CH_FIELD_SYSTEM_BUILT_IN_TEST - CH_FIELD_SYSTEM_TIME_SYNC_STATUS = _mscl.MipTypes_CH_FIELD_SYSTEM_TIME_SYNC_STATUS - CH_FIELD_SYSTEM_GPIO_STATE = _mscl.MipTypes_CH_FIELD_SYSTEM_GPIO_STATE - CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE - CH_FIELD_SYSTEM_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_TICKS - CH_FIELD_SYSTEM_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TICKS - CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME - MIN_SHARED_FIELD_DESCRIPTOR = _mscl.MipTypes_MIN_SHARED_FIELD_DESCRIPTOR - CH_UNKNOWN = _mscl.MipTypes_CH_UNKNOWN - CH_X = _mscl.MipTypes_CH_X - CH_Y = _mscl.MipTypes_CH_Y - CH_Z = _mscl.MipTypes_CH_Z - CH_MATRIX = _mscl.MipTypes_CH_MATRIX - CH_QUATERNION = _mscl.MipTypes_CH_QUATERNION - CH_ROLL = _mscl.MipTypes_CH_ROLL - CH_PITCH = _mscl.MipTypes_CH_PITCH - CH_YAW = _mscl.MipTypes_CH_YAW - CH_TICK = _mscl.MipTypes_CH_TICK - CH_TIMESTAMP = _mscl.MipTypes_CH_TIMESTAMP - CH_STATUS = _mscl.MipTypes_CH_STATUS - CH_TIME_OF_WEEK = _mscl.MipTypes_CH_TIME_OF_WEEK - CH_WEEK_NUMBER = _mscl.MipTypes_CH_WEEK_NUMBER - CH_LATITUDE = _mscl.MipTypes_CH_LATITUDE - CH_LONGITUDE = _mscl.MipTypes_CH_LONGITUDE - CH_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CH_HEIGHT_ABOVE_ELLIPSOID - CH_HEIGHT_ABOVE_MSL = _mscl.MipTypes_CH_HEIGHT_ABOVE_MSL - CH_HORIZONTAL_ACCURACY = _mscl.MipTypes_CH_HORIZONTAL_ACCURACY - CH_VERTICAL_ACCURACY = _mscl.MipTypes_CH_VERTICAL_ACCURACY - CH_POSITION_ACCURACY = _mscl.MipTypes_CH_POSITION_ACCURACY - CH_NORTH = _mscl.MipTypes_CH_NORTH - CH_EAST = _mscl.MipTypes_CH_EAST - CH_DOWN = _mscl.MipTypes_CH_DOWN - CH_SPEED = _mscl.MipTypes_CH_SPEED - CH_GROUND_SPEED = _mscl.MipTypes_CH_GROUND_SPEED - CH_HEADING = _mscl.MipTypes_CH_HEADING - CH_SPEED_ACCURACY = _mscl.MipTypes_CH_SPEED_ACCURACY - CH_HEADING_ACCURACY = _mscl.MipTypes_CH_HEADING_ACCURACY - CH_VELOCITY_ACCURACY = _mscl.MipTypes_CH_VELOCITY_ACCURACY - CH_GEOMETRIC_DOP = _mscl.MipTypes_CH_GEOMETRIC_DOP - CH_POSITION_DOP = _mscl.MipTypes_CH_POSITION_DOP - CH_HORIZONTAL_DOP = _mscl.MipTypes_CH_HORIZONTAL_DOP - CH_VERTICAL_DOP = _mscl.MipTypes_CH_VERTICAL_DOP - CH_TIME_DOP = _mscl.MipTypes_CH_TIME_DOP - CH_NORTHING_DOP = _mscl.MipTypes_CH_NORTHING_DOP - CH_EASTING_DOP = _mscl.MipTypes_CH_EASTING_DOP - CH_FLAGS = _mscl.MipTypes_CH_FLAGS - CH_BIAS = _mscl.MipTypes_CH_BIAS - CH_DRIFT = _mscl.MipTypes_CH_DRIFT - CH_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_ACCURACY_ESTIMATE - CH_FIX_TYPE = _mscl.MipTypes_CH_FIX_TYPE - CH_SV_COUNT = _mscl.MipTypes_CH_SV_COUNT - CH_CHANNEL = _mscl.MipTypes_CH_CHANNEL - CH_ID = _mscl.MipTypes_CH_ID - CH_CARRIER_TO_NOISE_RATIO = _mscl.MipTypes_CH_CARRIER_TO_NOISE_RATIO - CH_AZIMUTH = _mscl.MipTypes_CH_AZIMUTH - CH_ELEVATION = _mscl.MipTypes_CH_ELEVATION - CH_SENSOR_STATE = _mscl.MipTypes_CH_SENSOR_STATE - CH_ANTENNA_STATE = _mscl.MipTypes_CH_ANTENNA_STATE - CH_ANTENNA_POWER = _mscl.MipTypes_CH_ANTENNA_POWER - CH_FILTER_STATE = _mscl.MipTypes_CH_FILTER_STATE - CH_DYNAMICS_MODE = _mscl.MipTypes_CH_DYNAMICS_MODE - CH_MAGNITUDE = _mscl.MipTypes_CH_MAGNITUDE - CH_HEADING_UNCERTAINTY = _mscl.MipTypes_CH_HEADING_UNCERTAINTY - CH_SOURCE = _mscl.MipTypes_CH_SOURCE - CH_INCLINATION = _mscl.MipTypes_CH_INCLINATION - CH_DECLINATION = _mscl.MipTypes_CH_DECLINATION - CH_PRESSURE = _mscl.MipTypes_CH_PRESSURE - CH_AGE = _mscl.MipTypes_CH_AGE - CH_NUM_CHANNELS = _mscl.MipTypes_CH_NUM_CHANNELS - CH_CORRECTION = _mscl.MipTypes_CH_CORRECTION - CH_RATE_CORRECTION = _mscl.MipTypes_CH_RATE_CORRECTION - CH_GEOMETRIC_ALTITUDE = _mscl.MipTypes_CH_GEOMETRIC_ALTITUDE - CH_GEOPOTENTIAL_ALTITUDE = _mscl.MipTypes_CH_GEOPOTENTIAL_ALTITUDE - CH_TEMPERATURE = _mscl.MipTypes_CH_TEMPERATURE - CH_DENSITY = _mscl.MipTypes_CH_DENSITY - CH_ALTITUDE = _mscl.MipTypes_CH_ALTITUDE - CH_DISPLACEMENT = _mscl.MipTypes_CH_DISPLACEMENT - CH_MAX_TEMP = _mscl.MipTypes_CH_MAX_TEMP - CH_MIN_TEMP = _mscl.MipTypes_CH_MIN_TEMP - CH_MEAN_TEMP = _mscl.MipTypes_CH_MEAN_TEMP - CH_BIAS_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_BIAS_ACCURACY_ESTIMATE - CH_DRIFT_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_DRIFT_ACCURACY_ESTIMATE - CH_SECONDS = _mscl.MipTypes_CH_SECONDS - CH_NUM_PACKETS = _mscl.MipTypes_CH_NUM_PACKETS - CH_GPS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GPS_CORRECTION_LATENCY - CH_GLONASS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GLONASS_CORRECTION_LATENCY - CH_GALILEO_CORRECTION_LATENCY = _mscl.MipTypes_CH_GALILEO_CORRECTION_LATENCY - CH_BEIDOU_CORRECTION_LATENCY = _mscl.MipTypes_CH_BEIDOU_CORRECTION_LATENCY - CH_HEIGHT = _mscl.MipTypes_CH_HEIGHT - CH_HEALTH = _mscl.MipTypes_CH_HEALTH - CH_INDEX = _mscl.MipTypes_CH_INDEX - CH_COUNT = _mscl.MipTypes_CH_COUNT - CH_SIGNAL_STRENGTH = _mscl.MipTypes_CH_SIGNAL_STRENGTH - CH_SIGNAL_QUALITY = _mscl.MipTypes_CH_SIGNAL_QUALITY - CH_RANGE = _mscl.MipTypes_CH_RANGE - CH_RANGE_UNC = _mscl.MipTypes_CH_RANGE_UNC - CH_ALPHA = _mscl.MipTypes_CH_ALPHA - CH_BETA = _mscl.MipTypes_CH_BETA - CH_DISTURBANCE_FLAGS = _mscl.MipTypes_CH_DISTURBANCE_FLAGS - CH_CARRIER_PHASE = _mscl.MipTypes_CH_CARRIER_PHASE - CH_CARRIER_PHASE_UNC = _mscl.MipTypes_CH_CARRIER_PHASE_UNC - CH_DOPPLER = _mscl.MipTypes_CH_DOPPLER - CH_DOPPLER_UNC = _mscl.MipTypes_CH_DOPPLER_UNC - CH_DELTA_TIME = _mscl.MipTypes_CH_DELTA_TIME - CH_DELTA_TICK = _mscl.MipTypes_CH_DELTA_TICK - CH_ERROR = _mscl.MipTypes_CH_ERROR - CH_ERROR_UNC = _mscl.MipTypes_CH_ERROR_UNC - CH_W = _mscl.MipTypes_CH_W - CH_M0 = _mscl.MipTypes_CH_M0 - CH_M1 = _mscl.MipTypes_CH_M1 - CH_M2 = _mscl.MipTypes_CH_M2 - CH_M3 = _mscl.MipTypes_CH_M3 - CH_M4 = _mscl.MipTypes_CH_M4 - CH_M5 = _mscl.MipTypes_CH_M5 - CH_M6 = _mscl.MipTypes_CH_M6 - CH_M7 = _mscl.MipTypes_CH_M7 - CH_M8 = _mscl.MipTypes_CH_M8 - CH_NANOSECONDS = _mscl.MipTypes_CH_NANOSECONDS - CH_VALID_FLAGS = _mscl.MipTypes_CH_VALID_FLAGS - CH_PPS_VALID = _mscl.MipTypes_CH_PPS_VALID - CH_LAST_PPS = _mscl.MipTypes_CH_LAST_PPS - CH_UDREI = _mscl.MipTypes_CH_UDREI - CH_PSEUDORANGE_CORRECTION = _mscl.MipTypes_CH_PSEUDORANGE_CORRECTION - CH_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_IONOSPHERIC_CORRECTION - CH_JAMMING_STATE = _mscl.MipTypes_CH_JAMMING_STATE - CH_SPOOFING_STATE = _mscl.MipTypes_CH_SPOOFING_STATE - CH_SYSTEM_ID = _mscl.MipTypes_CH_SYSTEM_ID - CH_SATELLITE_ID = _mscl.MipTypes_CH_SATELLITE_ID - CH_BIT_SYSTEM_GENERAL = _mscl.MipTypes_CH_BIT_SYSTEM_GENERAL - CH_BIT_SYSTEM_PROCESS = _mscl.MipTypes_CH_BIT_SYSTEM_PROCESS - CH_BIT_IMU_GENERAL = _mscl.MipTypes_CH_BIT_IMU_GENERAL - CH_BIT_IMU_SENSORS = _mscl.MipTypes_CH_BIT_IMU_SENSORS - CH_BIT_IMU_FACTORY_BITS = _mscl.MipTypes_CH_BIT_IMU_FACTORY_BITS - CH_BIT_FILTER_GENERAL = _mscl.MipTypes_CH_BIT_FILTER_GENERAL - CH_BIT_GNSS_GENERAL = _mscl.MipTypes_CH_BIT_GNSS_GENERAL - CH_BIT_GNSS_RECEIVERS = _mscl.MipTypes_CH_BIT_GNSS_RECEIVERS - - @staticmethod - def channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - - @staticmethod - def getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - - @staticmethod - def getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - - @staticmethod - def getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - - @staticmethod - def getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - - @staticmethod - def getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - - @staticmethod - def isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - - @staticmethod - def isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - - @staticmethod - def channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - - @staticmethod - def channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - - @staticmethod - def channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - - def __init__(self): - _mscl.MipTypes_swiginit(self, _mscl.new_MipTypes()) - __swig_destroy__ = _mscl.delete_MipTypes - -# Register MipTypes in _mscl: -_mscl.MipTypes_swigregister(MipTypes) - -def MipTypes_channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - -def MipTypes_getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - -def MipTypes_getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - -def MipTypes_getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - -def MipTypes_getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - -def MipTypes_getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - -def MipTypes_isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - -def MipTypes_isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - -def MipTypes_channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - -def MipTypes_channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - -def MipTypes_channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - -class MipChannelIdentifier(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - GNSS_RECEIVER_ID = _mscl.MipChannelIdentifier_GNSS_RECEIVER_ID - GNSS_BASE_STATION_ID = _mscl.MipChannelIdentifier_GNSS_BASE_STATION_ID - GNSS_CONSTELLATION = _mscl.MipChannelIdentifier_GNSS_CONSTELLATION - GNSS_SATELLITE_ID = _mscl.MipChannelIdentifier_GNSS_SATELLITE_ID - GNSS_SIGNAL_ID = _mscl.MipChannelIdentifier_GNSS_SIGNAL_ID - AIDING_MEASUREMENT_TYPE = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_TYPE - GNSS_RF_BAND = _mscl.MipChannelIdentifier_GNSS_RF_BAND - AIDING_MEASUREMENT_FRAME_ID = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_FRAME_ID - GNSS = _mscl.MipChannelIdentifier_GNSS - DUAL_ANTENNA = _mscl.MipChannelIdentifier_DUAL_ANTENNA - HEADING = _mscl.MipChannelIdentifier_HEADING - PRESSURE = _mscl.MipChannelIdentifier_PRESSURE - MAGNETOMETER = _mscl.MipChannelIdentifier_MAGNETOMETER - SPEED = _mscl.MipChannelIdentifier_SPEED - AIDING_POS_ECEF = _mscl.MipChannelIdentifier_AIDING_POS_ECEF - AIDING_POS_LLH = _mscl.MipChannelIdentifier_AIDING_POS_LLH - AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipChannelIdentifier_AIDING_HEIGHT_ABOVE_ELLIPSOID - AIDING_VEL_ECEF = _mscl.MipChannelIdentifier_AIDING_VEL_ECEF - AIDING_VEL_NED = _mscl.MipChannelIdentifier_AIDING_VEL_NED - AIDING_VEL_BODY_FRAME = _mscl.MipChannelIdentifier_AIDING_VEL_BODY_FRAME - AIDING_HEADING_TRUE = _mscl.MipChannelIdentifier_AIDING_HEADING_TRUE - AIDING_MAGNETIC_FIELD = _mscl.MipChannelIdentifier_AIDING_MAGNETIC_FIELD - AIDING_PRESSURE = _mscl.MipChannelIdentifier_AIDING_PRESSURE - UNKNOWN_CONSTELLATION = _mscl.MipChannelIdentifier_UNKNOWN_CONSTELLATION - GPS = _mscl.MipChannelIdentifier_GPS - GLONASS = _mscl.MipChannelIdentifier_GLONASS - GALILEO = _mscl.MipChannelIdentifier_GALILEO - BEIDOU = _mscl.MipChannelIdentifier_BEIDOU - UNKNOWN_SIGNAL = _mscl.MipChannelIdentifier_UNKNOWN_SIGNAL - GPS_L1CA = _mscl.MipChannelIdentifier_GPS_L1CA - GPS_L1P = _mscl.MipChannelIdentifier_GPS_L1P - GPS_L1Z = _mscl.MipChannelIdentifier_GPS_L1Z - GPS_L2CA = _mscl.MipChannelIdentifier_GPS_L2CA - GPS_L2P = _mscl.MipChannelIdentifier_GPS_L2P - GPS_L2Z = _mscl.MipChannelIdentifier_GPS_L2Z - GPS_L2CL = _mscl.MipChannelIdentifier_GPS_L2CL - GPS_L2CM = _mscl.MipChannelIdentifier_GPS_L2CM - GPS_L2CML = _mscl.MipChannelIdentifier_GPS_L2CML - GPS_L5I = _mscl.MipChannelIdentifier_GPS_L5I - GPS_L5Q = _mscl.MipChannelIdentifier_GPS_L5Q - GPS_L5IQ = _mscl.MipChannelIdentifier_GPS_L5IQ - GPS_L1CD = _mscl.MipChannelIdentifier_GPS_L1CD - GPS_L1CP = _mscl.MipChannelIdentifier_GPS_L1CP - GPS_L1CDP = _mscl.MipChannelIdentifier_GPS_L1CDP - GLONASS_G1CA = _mscl.MipChannelIdentifier_GLONASS_G1CA - GLONASS_G1P = _mscl.MipChannelIdentifier_GLONASS_G1P - GLONASS_G2C = _mscl.MipChannelIdentifier_GLONASS_G2C - GLONASS_G2P = _mscl.MipChannelIdentifier_GLONASS_G2P - GALILEO_E1C = _mscl.MipChannelIdentifier_GALILEO_E1C - GALILEO_E1A = _mscl.MipChannelIdentifier_GALILEO_E1A - GALILEO_E1B = _mscl.MipChannelIdentifier_GALILEO_E1B - GALILEO_E1BC = _mscl.MipChannelIdentifier_GALILEO_E1BC - GALILEO_E1ABC = _mscl.MipChannelIdentifier_GALILEO_E1ABC - GALILEO_E6C = _mscl.MipChannelIdentifier_GALILEO_E6C - GALILEO_E6A = _mscl.MipChannelIdentifier_GALILEO_E6A - GALILEO_E6B = _mscl.MipChannelIdentifier_GALILEO_E6B - GALILEO_E6BC = _mscl.MipChannelIdentifier_GALILEO_E6BC - GALILEO_E6ABC = _mscl.MipChannelIdentifier_GALILEO_E6ABC - GALILEO_E5BI = _mscl.MipChannelIdentifier_GALILEO_E5BI - GALILEO_E5BQ = _mscl.MipChannelIdentifier_GALILEO_E5BQ - GALILEO_E5BIQ = _mscl.MipChannelIdentifier_GALILEO_E5BIQ - GALILEO_E5ABI = _mscl.MipChannelIdentifier_GALILEO_E5ABI - GALILEO_E5ABQ = _mscl.MipChannelIdentifier_GALILEO_E5ABQ - GALILEO_E5ABIQ = _mscl.MipChannelIdentifier_GALILEO_E5ABIQ - GALILEO_E5AI = _mscl.MipChannelIdentifier_GALILEO_E5AI - GALILEO_E5AQ = _mscl.MipChannelIdentifier_GALILEO_E5AQ - GALILEO_E5AIQ = _mscl.MipChannelIdentifier_GALILEO_E5AIQ - SBAS_L1CA = _mscl.MipChannelIdentifier_SBAS_L1CA - SBAS_L5I = _mscl.MipChannelIdentifier_SBAS_L5I - SBAS_L5Q = _mscl.MipChannelIdentifier_SBAS_L5Q - SBAS_L5IQ = _mscl.MipChannelIdentifier_SBAS_L5IQ - QZSS_L1CA = _mscl.MipChannelIdentifier_QZSS_L1CA - QZSS_LEXS = _mscl.MipChannelIdentifier_QZSS_LEXS - QZSS_LEXL = _mscl.MipChannelIdentifier_QZSS_LEXL - QZSS_LEXSL = _mscl.MipChannelIdentifier_QZSS_LEXSL - QZSS_L2CM = _mscl.MipChannelIdentifier_QZSS_L2CM - QZSS_L2CL = _mscl.MipChannelIdentifier_QZSS_L2CL - QZSS_L2CML = _mscl.MipChannelIdentifier_QZSS_L2CML - QZSS_L5I = _mscl.MipChannelIdentifier_QZSS_L5I - QZSS_L5Q = _mscl.MipChannelIdentifier_QZSS_L5Q - QZSS_L5IQ = _mscl.MipChannelIdentifier_QZSS_L5IQ - QZSS_L1CD = _mscl.MipChannelIdentifier_QZSS_L1CD - QZSS_L1CP = _mscl.MipChannelIdentifier_QZSS_L1CP - QZSS_L1CDP = _mscl.MipChannelIdentifier_QZSS_L1CDP - BEIDOU_B1I = _mscl.MipChannelIdentifier_BEIDOU_B1I - BEIDOU_B1Q = _mscl.MipChannelIdentifier_BEIDOU_B1Q - BEIDOU_B1IQ = _mscl.MipChannelIdentifier_BEIDOU_B1IQ - BEIDOU_B3I = _mscl.MipChannelIdentifier_BEIDOU_B3I - BEIDOU_B3Q = _mscl.MipChannelIdentifier_BEIDOU_B3Q - BEIDOU_B3IQ = _mscl.MipChannelIdentifier_BEIDOU_B3IQ - BEIDOU_B2I = _mscl.MipChannelIdentifier_BEIDOU_B2I - BEIDOU_B2Q = _mscl.MipChannelIdentifier_BEIDOU_B2Q - BEIDOU_B2IQ = _mscl.MipChannelIdentifier_BEIDOU_B2IQ - UNKNOWN_RF_BAND = _mscl.MipChannelIdentifier_UNKNOWN_RF_BAND - RF_BAND_L1 = _mscl.MipChannelIdentifier_RF_BAND_L1 - RF_BAND_L2 = _mscl.MipChannelIdentifier_RF_BAND_L2 - RF_BAND_L5 = _mscl.MipChannelIdentifier_RF_BAND_L5 - - def __init__(self, *args): - _mscl.MipChannelIdentifier_swiginit(self, _mscl.new_MipChannelIdentifier(*args)) - __swig_destroy__ = _mscl.delete_MipChannelIdentifier - - def identifierType(self): - return _mscl.MipChannelIdentifier_identifierType(self) - - def id(self): - return _mscl.MipChannelIdentifier_id(self) - - def hasSpecifier(self): - return _mscl.MipChannelIdentifier_hasSpecifier(self) - - def specifier(self): - return _mscl.MipChannelIdentifier_specifier(self) - - def name(self, standardizedFormat=True): - return _mscl.MipChannelIdentifier_name(self, standardizedFormat) - -# Register MipChannelIdentifier in _mscl: -_mscl.MipChannelIdentifier_swigregister(MipChannelIdentifier) - -class MipCommandBytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - id = property(_mscl.MipCommandBytes_id_get, _mscl.MipCommandBytes_id_set) - commands = property(_mscl.MipCommandBytes_commands_get, _mscl.MipCommandBytes_commands_set) - buildCmdFailed = property(_mscl.MipCommandBytes_buildCmdFailed_get, _mscl.MipCommandBytes_buildCmdFailed_set) - sendCmdFailed = property(_mscl.MipCommandBytes_sendCmdFailed_get, _mscl.MipCommandBytes_sendCmdFailed_set) - - def __init__(self, *args): - _mscl.MipCommandBytes_swiginit(self, _mscl.new_MipCommandBytes(*args)) - - def add(self, cmd): - return _mscl.MipCommandBytes_add(self, cmd) - - def valid(self): - return _mscl.MipCommandBytes_valid(self) - __swig_destroy__ = _mscl.delete_MipCommandBytes - -# Register MipCommandBytes in _mscl: -_mscl.MipCommandBytes_swigregister(MipCommandBytes) - -class AidingMeasurementInput(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - ACK_NACK = _mscl.AidingMeasurementInput_ACK_NACK - ECHO_INPUT = _mscl.AidingMeasurementInput_ECHO_INPUT - - def toMipFieldValues(self): - return _mscl.AidingMeasurementInput_toMipFieldValues(self) - - def timestamp(self, *args): - return _mscl.AidingMeasurementInput_timestamp(self, *args) - - def timebase(self): - return _mscl.AidingMeasurementInput_timebase(self) - - def frameId(self, *args): - return _mscl.AidingMeasurementInput_frameId(self, *args) - - def validFlags(self, *args): - return _mscl.AidingMeasurementInput_validFlags(self, *args) - -# Register AidingMeasurementInput in _mscl: -_mscl.AidingMeasurementInput_swigregister(AidingMeasurementInput) - -class AidingMeasurementPosition(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementPosition_X - LATITUDE = _mscl.AidingMeasurementPosition_LATITUDE - Y = _mscl.AidingMeasurementPosition_Y - LONGITUDE = _mscl.AidingMeasurementPosition_LONGITUDE - Z = _mscl.AidingMeasurementPosition_Z - HEIGHT = _mscl.AidingMeasurementPosition_HEIGHT - ALTITUDE = _mscl.AidingMeasurementPosition_ALTITUDE - - def __init__(self, *args): - _mscl.AidingMeasurementPosition_swiginit(self, _mscl.new_AidingMeasurementPosition(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPosition - - def position(self, *args): - return _mscl.AidingMeasurementPosition_position(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPosition_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementPosition_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPosition_valid(self, *args) - -# Register AidingMeasurementPosition in _mscl: -_mscl.AidingMeasurementPosition_swigregister(AidingMeasurementPosition) - -class AidingMeasurementHeight(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeight_swiginit(self, _mscl.new_AidingMeasurementHeight(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeight - - def height(self, *args): - return _mscl.AidingMeasurementHeight_height(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeight_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeight_valid(self, *args) - -# Register AidingMeasurementHeight in _mscl: -_mscl.AidingMeasurementHeight_swigregister(AidingMeasurementHeight) - -class AidingMeasurementVelocity(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementVelocity_X - NORTH = _mscl.AidingMeasurementVelocity_NORTH - Y = _mscl.AidingMeasurementVelocity_Y - EAST = _mscl.AidingMeasurementVelocity_EAST - Z = _mscl.AidingMeasurementVelocity_Z - DOWN = _mscl.AidingMeasurementVelocity_DOWN - - def __init__(self, *args): - _mscl.AidingMeasurementVelocity_swiginit(self, _mscl.new_AidingMeasurementVelocity(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementVelocity - - def velocity(self, *args): - return _mscl.AidingMeasurementVelocity_velocity(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementVelocity_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementVelocity_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementVelocity_valid(self, *args) - -# Register AidingMeasurementVelocity in _mscl: -_mscl.AidingMeasurementVelocity_swigregister(AidingMeasurementVelocity) - -class AidingMeasurementHeading(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeading_swiginit(self, _mscl.new_AidingMeasurementHeading(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeading - - def heading(self, *args): - return _mscl.AidingMeasurementHeading_heading(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeading_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeading_valid(self, *args) - -# Register AidingMeasurementHeading in _mscl: -_mscl.AidingMeasurementHeading_swigregister(AidingMeasurementHeading) - -class AidingMeasurementMagneticField(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementMagneticField_X - Y = _mscl.AidingMeasurementMagneticField_Y - Z = _mscl.AidingMeasurementMagneticField_Z - - def __init__(self, *args): - _mscl.AidingMeasurementMagneticField_swiginit(self, _mscl.new_AidingMeasurementMagneticField(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementMagneticField - - def magneticField(self, *args): - return _mscl.AidingMeasurementMagneticField_magneticField(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementMagneticField_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementMagneticField_valid(self, *args) - -# Register AidingMeasurementMagneticField in _mscl: -_mscl.AidingMeasurementMagneticField_swigregister(AidingMeasurementMagneticField) - -class AidingMeasurementPressure(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementPressure_swiginit(self, _mscl.new_AidingMeasurementPressure(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPressure - - def pressure(self, *args): - return _mscl.AidingMeasurementPressure_pressure(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPressure_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPressure_valid(self, *args) - -# Register AidingMeasurementPressure in _mscl: -_mscl.AidingMeasurementPressure_swigregister(AidingMeasurementPressure) - -class GnssReceiverInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GnssReceiverInfo_swiginit(self, _mscl.new_GnssReceiverInfo(*args)) - id = property(_mscl.GnssReceiverInfo_id_get, _mscl.GnssReceiverInfo_id_set) - targetDataClass = property(_mscl.GnssReceiverInfo_targetDataClass_get, _mscl.GnssReceiverInfo_targetDataClass_set) - description = property(_mscl.GnssReceiverInfo_description_get, _mscl.GnssReceiverInfo_description_set) - module = property(_mscl.GnssReceiverInfo_module_get, _mscl.GnssReceiverInfo_module_set) - fwId = property(_mscl.GnssReceiverInfo_fwId_get, _mscl.GnssReceiverInfo_fwId_set) - fwVersion = property(_mscl.GnssReceiverInfo_fwVersion_get, _mscl.GnssReceiverInfo_fwVersion_set) - __swig_destroy__ = _mscl.delete_GnssReceiverInfo - -# Register GnssReceiverInfo in _mscl: -_mscl.GnssReceiverInfo_swigregister(GnssReceiverInfo) -GnssReceiverInfo.INFO_NOT_FOUND = _mscl.cvar.GnssReceiverInfo_INFO_NOT_FOUND - -class DeviceCommPort(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SPECIAL = _mscl.DeviceCommPort_SPECIAL - UART = _mscl.DeviceCommPort_UART - USB = _mscl.DeviceCommPort_USB - NONE = _mscl.DeviceCommPort_NONE - MIP_COMMANDS = _mscl.DeviceCommPort_MIP_COMMANDS - MIP_DATA = _mscl.DeviceCommPort_MIP_DATA - NMEA = _mscl.DeviceCommPort_NMEA - RTCM = _mscl.DeviceCommPort_RTCM - SPARTN = _mscl.DeviceCommPort_SPARTN - ALL = _mscl.DeviceCommPort_ALL - - def __init__(self, *args): - _mscl.DeviceCommPort_swiginit(self, _mscl.new_DeviceCommPort(*args)) - - def interfaceId(self): - return _mscl.DeviceCommPort_interfaceId(self) - type = property(_mscl.DeviceCommPort_type_get, _mscl.DeviceCommPort_type_set) - id = property(_mscl.DeviceCommPort_id_get, _mscl.DeviceCommPort_id_set) - inputProtocols = property(_mscl.DeviceCommPort_inputProtocols_get, _mscl.DeviceCommPort_inputProtocols_set) - outputProtocols = property(_mscl.DeviceCommPort_outputProtocols_get, _mscl.DeviceCommPort_outputProtocols_set) - __swig_destroy__ = _mscl.delete_DeviceCommPort - -# Register DeviceCommPort in _mscl: -_mscl.DeviceCommPort_swigregister(DeviceCommPort) - -class EventTypeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTypeInfo_swiginit(self, _mscl.new_EventTypeInfo(*args)) - type = property(_mscl.EventTypeInfo_type_get, _mscl.EventTypeInfo_type_set) - maxInstances = property(_mscl.EventTypeInfo_maxInstances_get, _mscl.EventTypeInfo_maxInstances_set) - __swig_destroy__ = _mscl.delete_EventTypeInfo - -# Register EventTypeInfo in _mscl: -_mscl.EventTypeInfo_swigregister(EventTypeInfo) - -class EventSupportInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - TRIGGERS = _mscl.EventSupportInfo_TRIGGERS - ACTIONS = _mscl.EventSupportInfo_ACTIONS - query = property(_mscl.EventSupportInfo_query_get, _mscl.EventSupportInfo_query_set) - maxInstances = property(_mscl.EventSupportInfo_maxInstances_get, _mscl.EventSupportInfo_maxInstances_set) - entries = property(_mscl.EventSupportInfo_entries_get, _mscl.EventSupportInfo_entries_set) - - def __init__(self): - _mscl.EventSupportInfo_swiginit(self, _mscl.new_EventSupportInfo()) - __swig_destroy__ = _mscl.delete_EventSupportInfo - -# Register EventSupportInfo in _mscl: -_mscl.EventSupportInfo_swigregister(EventSupportInfo) - -class SensorRange(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ALL = _mscl.SensorRange_ALL - ACCEL_G = _mscl.SensorRange_ACCEL_G - GYRO_DPS = _mscl.SensorRange_GYRO_DPS - MAG_GAUSS = _mscl.SensorRange_MAG_GAUSS - PRESSURE_HPA = _mscl.SensorRange_PRESSURE_HPA - - def __init__(self): - _mscl.SensorRange_swiginit(self, _mscl.new_SensorRange()) - - def type(self): - return _mscl.SensorRange_type(self) - - def range(self): - return _mscl.SensorRange_range(self) - - def id(self): - return _mscl.SensorRange_id(self) - __swig_destroy__ = _mscl.delete_SensorRange - -# Register SensorRange in _mscl: -_mscl.SensorRange_swigregister(SensorRange) - -class SupportedSensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.SupportedSensorRanges_swiginit(self, _mscl.new_SupportedSensorRanges()) - - def options(self): - return _mscl.SupportedSensorRanges_options(self) - - def lookupRecommended(self, type, range): - return _mscl.SupportedSensorRanges_lookupRecommended(self, type, range) - __swig_destroy__ = _mscl.delete_SupportedSensorRanges - -# Register SupportedSensorRanges in _mscl: -_mscl.SupportedSensorRanges_swigregister(SupportedSensorRanges) - -class InertialTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - PORTABLE_VEHICLE = _mscl.InertialTypes_PORTABLE_VEHICLE - AUTOMOTIVE_VEHICLE = _mscl.InertialTypes_AUTOMOTIVE_VEHICLE - AIRBORNE_VEHICLE = _mscl.InertialTypes_AIRBORNE_VEHICLE - AIRBORNE_HIGH_G_VEHICLE = _mscl.InertialTypes_AIRBORNE_HIGH_G_VEHICLE - GPS_PORTABLE = _mscl.InertialTypes_GPS_PORTABLE - GPS_STATIONARY = _mscl.InertialTypes_GPS_STATIONARY - GPS_PEDESTRIAN = _mscl.InertialTypes_GPS_PEDESTRIAN - GPS_AUTOMOTIVE = _mscl.InertialTypes_GPS_AUTOMOTIVE - GPS_SEA = _mscl.InertialTypes_GPS_SEA - GPS_AIRBORNE_1G = _mscl.InertialTypes_GPS_AIRBORNE_1G - GPS_AIRBORNE_2G = _mscl.InertialTypes_GPS_AIRBORNE_2G - GPS_AIRBORNE_4G = _mscl.InertialTypes_GPS_AIRBORNE_4G - RESET_ALL_AXIS = _mscl.InertialTypes_RESET_ALL_AXIS - TARE_ROLL_AXIS = _mscl.InertialTypes_TARE_ROLL_AXIS - TARE_PITCH_AXIS = _mscl.InertialTypes_TARE_PITCH_AXIS - TARE_YAW_AXIS = _mscl.InertialTypes_TARE_YAW_AXIS - INTERNAL_GNSS_ALL = _mscl.InertialTypes_INTERNAL_GNSS_ALL - EXTERNAL_GNSS = _mscl.InertialTypes_EXTERNAL_GNSS - INTERNAL_GNSS1 = _mscl.InertialTypes_INTERNAL_GNSS1 - INTERNAL_GNSS2 = _mscl.InertialTypes_INTERNAL_GNSS2 - FIX_SBAS_CORRECTIONS = _mscl.InertialTypes_FIX_SBAS_CORRECTIONS - FIX_DGNSS_CORRECTIONS = _mscl.InertialTypes_FIX_DGNSS_CORRECTIONS - FIXTYPE_3D = _mscl.InertialTypes_FIXTYPE_3D - FIXTYPE_2D = _mscl.InertialTypes_FIXTYPE_2D - FIXTYPE_TIMEONLY = _mscl.InertialTypes_FIXTYPE_TIMEONLY - FIXTYPE_NONE = _mscl.InertialTypes_FIXTYPE_NONE - FIXTYPE_INVALID = _mscl.InertialTypes_FIXTYPE_INVALID - FIXTYPE_RTK_FLOAT = _mscl.InertialTypes_FIXTYPE_RTK_FLOAT - FIXTYPE_RTK_FIXED = _mscl.InertialTypes_FIXTYPE_RTK_FIXED - FIXTYPE_DUAL_ANTENNA_NONE = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_NONE - FIXTYPE_DUAL_ANTENNA_FLOAT = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FLOAT - FIXTYPE_DUAL_ANTENNA_FIXED = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FIXED - DATA_VALID_REC_1 = _mscl.InertialTypes_DATA_VALID_REC_1 - DATA_VALID_REC_2 = _mscl.InertialTypes_DATA_VALID_REC_2 - ANTENNA_OFFSETS_VALID = _mscl.InertialTypes_ANTENNA_OFFSETS_VALID - SVFLAG_NAVIGATION = _mscl.InertialTypes_SVFLAG_NAVIGATION - SVFLAG_HEALTHY = _mscl.InertialTypes_SVFLAG_HEALTHY - DEVICE_AHRS = _mscl.InertialTypes_DEVICE_AHRS - DEVICE_GPS = _mscl.InertialTypes_DEVICE_GPS - ON_FULL_PERFORMANCE = _mscl.InertialTypes_ON_FULL_PERFORMANCE - ON_LOW_POWER = _mscl.InertialTypes_ON_LOW_POWER - SLEEP = _mscl.InertialTypes_SLEEP - OFF = _mscl.InertialTypes_OFF - STANDARD_MIP = _mscl.InertialTypes_STANDARD_MIP - WRAPPED_RAW = _mscl.InertialTypes_WRAPPED_RAW - SENSORSTATE_OFF = _mscl.InertialTypes_SENSORSTATE_OFF - SENSORSTATE_ON = _mscl.InertialTypes_SENSORSTATE_ON - SENSORSTATE_UNKNOWN = _mscl.InertialTypes_SENSORSTATE_UNKNOWN - ANTENNASTATE_INIT = _mscl.InertialTypes_ANTENNASTATE_INIT - ANTENNASTATE_SHORT = _mscl.InertialTypes_ANTENNASTATE_SHORT - ANTENNASTATE_OPEN = _mscl.InertialTypes_ANTENNASTATE_OPEN - ANTENNASTATE_GOOD = _mscl.InertialTypes_ANTENNASTATE_GOOD - ANTENNASTATE_UNKNOWN = _mscl.InertialTypes_ANTENNASTATE_UNKNOWN - ANTENNAPOWER_OFF = _mscl.InertialTypes_ANTENNAPOWER_OFF - ANTENNAPOWER_ON = _mscl.InertialTypes_ANTENNAPOWER_ON - ANTENNAPOWER_UNKNOWN = _mscl.InertialTypes_ANTENNAPOWER_UNKNOWN - FILTERSTATE_STARTUP = _mscl.InertialTypes_FILTERSTATE_STARTUP - FILTERSTATE_INIT = _mscl.InertialTypes_FILTERSTATE_INIT - FILTERSTATE_RUNNING_SLN_VALID = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_VALID - FILTERSTATE_RUNNING_SLN_ERROR = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_ERROR - FILTERSTATE_VERT_GYRO = _mscl.InertialTypes_FILTERSTATE_VERT_GYRO - FILTERSTATE_AHRS = _mscl.InertialTypes_FILTERSTATE_AHRS - FILTERSTATE_FULL_NAV = _mscl.InertialTypes_FILTERSTATE_FULL_NAV - FILTERSTATUS_IMU_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_IMU_UNAVAILABLE - FILTERSTATUS_GPS_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_GPS_UNAVAILABLE - FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC = _mscl.InertialTypes_FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC - FILTERSTATUS_POS_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_POS_COVARIANCE_HIGH_WARN - FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN - FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN - FILTERSTATUS_NAN_IN_SOLUTION = _mscl.InertialTypes_FILTERSTATUS_NAN_IN_SOLUTION - FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN - FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN - FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN - FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN - FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_CONDITION = _mscl.InertialTypes_FILTERSTATUS_CONDITION - FILTERSTATUS_ROLL_PITCH_WARNING = _mscl.InertialTypes_FILTERSTATUS_ROLL_PITCH_WARNING - FILTERSTATUS_HEADING_WARNING = _mscl.InertialTypes_FILTERSTATUS_HEADING_WARNING - FILTERSTATUS_POSITION_WARNING = _mscl.InertialTypes_FILTERSTATUS_POSITION_WARNING - FILTERSTATUS_VELOCITY_WARNING = _mscl.InertialTypes_FILTERSTATUS_VELOCITY_WARNING - FILTERSTATUS_IMU_BIAS_WARNING = _mscl.InertialTypes_FILTERSTATUS_IMU_BIAS_WARNING - FILTERSTATUS_GNSS_CLK_WARNING = _mscl.InertialTypes_FILTERSTATUS_GNSS_CLK_WARNING - FILTERSTATUS_ANT_LEVER_ARM_WARNING = _mscl.InertialTypes_FILTERSTATUS_ANT_LEVER_ARM_WARNING - FILTERSTATUS_MOUNTING_TRANSFORM_WARNING = _mscl.InertialTypes_FILTERSTATUS_MOUNTING_TRANSFORM_WARNING - FILTERSTATUS_ATT_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_ATT_NOT_INIT - FILTERSTATUS_POS_VEL_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_POS_VEL_NOT_INIT - STABLE = _mscl.InertialTypes_STABLE - CONVERGING = _mscl.InertialTypes_CONVERGING - UNSTABLE = _mscl.InertialTypes_UNSTABLE - DGNSSBASE_UDRE_SCALE_FACTOR_1_00 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_1_00 - DGNSSBASE_UDRE_SCALE_FACTOR_0_75 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_75 - DGNSSBASE_UDRE_SCALE_FACTOR_0_50 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_50 - DGNSSBASE_UDRE_SCALE_FACTOR_0_30 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_30 - DGNSSBASE_UDRE_SCALE_FACTOR_0_20 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_20 - DGNSSBASE_UDRE_SCALE_FACTOR_0_10 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_10 - DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED - DGNSSBASE_REFERENCE_STATION_NOT_WORKING = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_NOT_WORKING - HEADINGSOURCE_NONE = _mscl.InertialTypes_HEADINGSOURCE_NONE - HEADINGSOURCE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_MAGNETOMETER - HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR - HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD = _mscl.InertialTypes_HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD - HEADINGSOURCE_GNSS_DUAL_ANTENNA = _mscl.InertialTypes_HEADINGSOURCE_GNSS_DUAL_ANTENNA - ENABLE_NONE = _mscl.InertialTypes_ENABLE_NONE - ENABLE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_ENABLE_INTERNAL_MAGNETOMETER - ENABLE_INTERNAL_GNSS = _mscl.InertialTypes_ENABLE_INTERNAL_GNSS - ENABLE_EXTERNAL_MESSAGES = _mscl.InertialTypes_ENABLE_EXTERNAL_MESSAGES - ENABLE_MAGNETOMETER_AND_GNSS = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_GNSS - ENABLE_GNSS_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_GNSS_AND_EXTERNAL - ENABLE_MAGNETOMETER_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_EXTERNAL - ENABLE_ALL = _mscl.InertialTypes_ENABLE_ALL - ENABLE_GYRO_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_BIAS_ESTIMATION - ENABLE_ACCEL_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_BIAS_ESTIMATION - ENABLE_GYRO_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_SCALE_FACTOR_ESTIMATION - ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION - ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION = _mscl.InertialTypes_ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION - ENABLE_HARD_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_HARD_IRON_AUTO_CALIBRATION - ENABLE_SOFT_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_SOFT_IRON_AUTO_CALIBRATION - NONE = _mscl.InertialTypes_NONE - WORLD_MAGNETIC_MODEL = _mscl.InertialTypes_WORLD_MAGNETIC_MODEL - MANUAL = _mscl.InertialTypes_MANUAL - ADAPTIVE_MEASUREMENT_DISABLE = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_DISABLE - ADAPTIVE_MEASUREMENT_ENABLE_FIXED = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_FIXED - ADAPTIVE_MEASUREMENT_ENABLE_AUTO = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_AUTO - GNSS_POS_VEL_AIDING = _mscl.InertialTypes_GNSS_POS_VEL_AIDING - GNSS_HEADING_AIDING = _mscl.InertialTypes_GNSS_HEADING_AIDING - ALTIMETER_AIDING = _mscl.InertialTypes_ALTIMETER_AIDING - ODOMETER_AIDING = _mscl.InertialTypes_ODOMETER_AIDING - MAGNETOMETER_AIDING = _mscl.InertialTypes_MAGNETOMETER_AIDING - EXTERNAL_HEADING_AIDING = _mscl.InertialTypes_EXTERNAL_HEADING_AIDING - EXTERNAL_ALTIMETER_AIDING = _mscl.InertialTypes_EXTERNAL_ALTIMETER_AIDING - EXTERNAL_MAGNETOMETER_AIDING = _mscl.InertialTypes_EXTERNAL_MAGNETOMETER_AIDING - BODY_FRAME_VEL_AIDING = _mscl.InertialTypes_BODY_FRAME_VEL_AIDING - ALL_AIDING_MEASUREMENTS = _mscl.InertialTypes_ALL_AIDING_MEASUREMENTS - GPS = _mscl.InertialTypes_GPS - SBAS = _mscl.InertialTypes_SBAS - GALILEO = _mscl.InertialTypes_GALILEO - BEIDOU = _mscl.InertialTypes_BEIDOU - QZSS = _mscl.InertialTypes_QZSS - GLONASS = _mscl.InertialTypes_GLONASS - FILTERING_OFF = _mscl.InertialTypes_FILTERING_OFF - FILTERING_CONSERVATIVE = _mscl.InertialTypes_FILTERING_CONSERVATIVE - FILTERING_MODERATE = _mscl.InertialTypes_FILTERING_MODERATE - FILTERING_AGGRESSIVE = _mscl.InertialTypes_FILTERING_AGGRESSIVE - FACTORY_STREAMING_OVERWRITE = _mscl.InertialTypes_FACTORY_STREAMING_OVERWRITE - FACTORY_STREAMING_MERGE = _mscl.InertialTypes_FACTORY_STREAMING_MERGE - FACTORY_STREAMING_ADDITIVE = _mscl.InertialTypes_FACTORY_STREAMING_ADDITIVE - PPS_DISABLED = _mscl.InertialTypes_PPS_DISABLED - PPS_RECEIVER_1 = _mscl.InertialTypes_PPS_RECEIVER_1 - PPS_RECEIVER_2 = _mscl.InertialTypes_PPS_RECEIVER_2 - PPS_GPIO = _mscl.InertialTypes_PPS_GPIO - PPS_GENERATED = _mscl.InertialTypes_PPS_GENERATED - GNSS_AIDING_TIGHT_COUPLING = _mscl.InertialTypes_GNSS_AIDING_TIGHT_COUPLING - GNSS_AIDING_DIFFERENTIAL = _mscl.InertialTypes_GNSS_AIDING_DIFFERENTIAL - GNSS_AIDING_INTEGER_FIX = _mscl.InertialTypes_GNSS_AIDING_INTEGER_FIX - GNSS_AIDING_GPS = _mscl.InertialTypes_GNSS_AIDING_GPS - GNSS_AIDING_GLONASS = _mscl.InertialTypes_GNSS_AIDING_GLONASS - GNSS_AIDING_GALILEO = _mscl.InertialTypes_GNSS_AIDING_GALILEO - GNSS_AIDING_BEIDOU = _mscl.InertialTypes_GNSS_AIDING_BEIDOU - GNSS_AIDING_NO_FIX = _mscl.InertialTypes_GNSS_AIDING_NO_FIX - GNSS_AIDING_CONFIG_ERROR = _mscl.InertialTypes_GNSS_AIDING_CONFIG_ERROR - AIDING_MEASUREMENT_ENABLED = _mscl.InertialTypes_AIDING_MEASUREMENT_ENABLED - AIDING_MEASUREMENT_USED = _mscl.InertialTypes_AIDING_MEASUREMENT_USED - AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH - AIDING_MEASUREMENT_WARNING_SAMPLE_TIME = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_SAMPLE_TIME - AIDING_MEASUREMENT_CONFIG_ERROR = _mscl.InertialTypes_AIDING_MEASUREMENT_CONFIG_ERROR - AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED = _mscl.InertialTypes_AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED - RTK_CORRECTION_ANTENNA_POS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_POS_RECEIVED - RTK_CORRECTION_ANTENNA_DESC_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_DESC_RECEIVED - RTK_CORRECTION_GPS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GPS_RECEIVED - RTK_CORRECTION_GLONASS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GLONASS_RECEIVED - RTK_CORRECTION_GALILEO_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GALILEO_RECEIVED - RTK_CORRECTION_BEIDOU_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_BEIDOU_RECEIVED - RTK_CORRECTION_USING_GPS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GPS_MSM - RTK_CORRECTION_USING_GLONASS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GLONASS_MSM - SIGNAL_QUALITY_NONE = _mscl.InertialTypes_SIGNAL_QUALITY_NONE - SIGNAL_QUALITY_SEARCHING = _mscl.InertialTypes_SIGNAL_QUALITY_SEARCHING - SIGNAL_QUALITY_ACQUIRED = _mscl.InertialTypes_SIGNAL_QUALITY_ACQUIRED - SIGNAL_QUALITY_UNUSABLE = _mscl.InertialTypes_SIGNAL_QUALITY_UNUSABLE - SIGNAL_QUALITY_TIME_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_TIME_LOCKED - SIGNAL_QUALITY_FULLY_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_FULLY_LOCKED - OVERRANGE_ACCEL_X = _mscl.InertialTypes_OVERRANGE_ACCEL_X - OVERRANGE_ACCEL_Y = _mscl.InertialTypes_OVERRANGE_ACCEL_Y - OVERRANGE_ACCEL_Z = _mscl.InertialTypes_OVERRANGE_ACCEL_Z - OVERRANGE_GYRO_X = _mscl.InertialTypes_OVERRANGE_GYRO_X - OVERRANGE_GYRO_Y = _mscl.InertialTypes_OVERRANGE_GYRO_Y - OVERRANGE_GYRO_Z = _mscl.InertialTypes_OVERRANGE_GYRO_Z - OVERRANGE_MAG_X = _mscl.InertialTypes_OVERRANGE_MAG_X - OVERRANGE_MAG_Y = _mscl.InertialTypes_OVERRANGE_MAG_Y - OVERRANGE_MAG_Z = _mscl.InertialTypes_OVERRANGE_MAG_Z - OVERRANGE_PRESSURE = _mscl.InertialTypes_OVERRANGE_PRESSURE - UNKNOWN_SBAS_SYSTEM = _mscl.InertialTypes_UNKNOWN_SBAS_SYSTEM - WAAS = _mscl.InertialTypes_WAAS - EGNOS = _mscl.InertialTypes_EGNOS - MSAS = _mscl.InertialTypes_MSAS - GAGAN = _mscl.InertialTypes_GAGAN - SBAS_INFO_RANGE_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_RANGE_AVAILABLE - SBAS_INFO_CORRECTIONS_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_CORRECTIONS_AVAILABLE - SBAS_INFO_INTEGRITY_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_INTEGRITY_AVAILABLE - SBAS_INFO_TEST = _mscl.InertialTypes_SBAS_INFO_TEST - JAMMING_STATE_UNKNOWN = _mscl.InertialTypes_JAMMING_STATE_UNKNOWN - JAMMING_STATE_NONE = _mscl.InertialTypes_JAMMING_STATE_NONE - JAMMING_STATE_PARTIAL = _mscl.InertialTypes_JAMMING_STATE_PARTIAL - JAMMING_STATE_SIGNIFICANT = _mscl.InertialTypes_JAMMING_STATE_SIGNIFICANT - SPOOFING_STATE_UNKNOWN = _mscl.InertialTypes_SPOOFING_STATE_UNKNOWN - SPOOFING_STATE_NONE = _mscl.InertialTypes_SPOOFING_STATE_NONE - SPOOFING_STATE_PARTIAL = _mscl.InertialTypes_SPOOFING_STATE_PARTIAL - SPOOFING_STATE_SIGNIFICANT = _mscl.InertialTypes_SPOOFING_STATE_SIGNIFICANT - - def __init__(self): - _mscl.InertialTypes_swiginit(self, _mscl.new_InertialTypes()) - __swig_destroy__ = _mscl.delete_InertialTypes - -# Register InertialTypes in _mscl: -_mscl.InertialTypes_swigregister(InertialTypes) - -class NmeaMessageFormat(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_MESSAGES = _mscl.NmeaMessageFormat_MAX_MESSAGES - GGA = _mscl.NmeaMessageFormat_GGA - GLL = _mscl.NmeaMessageFormat_GLL - GSV = _mscl.NmeaMessageFormat_GSV - RMC = _mscl.NmeaMessageFormat_RMC - VTG = _mscl.NmeaMessageFormat_VTG - HDT = _mscl.NmeaMessageFormat_HDT - ZDA = _mscl.NmeaMessageFormat_ZDA - MSRA = _mscl.NmeaMessageFormat_MSRA - MSRR = _mscl.NmeaMessageFormat_MSRR - IGNORED = _mscl.NmeaMessageFormat_IGNORED - GNSS = _mscl.NmeaMessageFormat_GNSS - GPS = _mscl.NmeaMessageFormat_GPS - GALILEO = _mscl.NmeaMessageFormat_GALILEO - GLONASS = _mscl.NmeaMessageFormat_GLONASS - - def __init__(self): - _mscl.NmeaMessageFormat_swiginit(self, _mscl.new_NmeaMessageFormat()) - __swig_destroy__ = _mscl.delete_NmeaMessageFormat - - def sentenceType(self, *args): - return _mscl.NmeaMessageFormat_sentenceType(self, *args) - - def talkerId(self, *args): - return _mscl.NmeaMessageFormat_talkerId(self, *args) - - def sourceDataClass(self, *args): - return _mscl.NmeaMessageFormat_sourceDataClass(self, *args) - - def sampleRate(self, *args): - return _mscl.NmeaMessageFormat_sampleRate(self, *args) - - @staticmethod - def talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - - @staticmethod - def dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - - @staticmethod - def supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - - @staticmethod - def toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -# Register NmeaMessageFormat in _mscl: -_mscl.NmeaMessageFormat_swigregister(NmeaMessageFormat) -NmeaMessageFormat.MAX_FREQUENCY = _mscl.cvar.NmeaMessageFormat_MAX_FREQUENCY - -def NmeaMessageFormat_talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - -def NmeaMessageFormat_dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - -def NmeaMessageFormat_supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - -def NmeaMessageFormat_toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -class Matrix_3x3(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Matrix_3x3_swiginit(self, _mscl.new_Matrix_3x3(*args)) - __swig_destroy__ = _mscl.delete_Matrix_3x3 - - def set(self, row, col, value): - return _mscl.Matrix_3x3_set(self, row, col, value) - - def at(self, row, col): - return _mscl.Matrix_3x3_at(self, row, col) - - def __str__(self): - return _mscl.Matrix_3x3___str__(self) - - def asMipFieldValues(self): - return _mscl.Matrix_3x3_asMipFieldValues(self) - -# Register Matrix_3x3 in _mscl: -_mscl.Matrix_3x3_swigregister(Matrix_3x3) - -class TimeUpdate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, timeOfWeek, weekNumber, timeAccuracy=0): - _mscl.TimeUpdate_swiginit(self, _mscl.new_TimeUpdate(timeOfWeek, weekNumber, timeAccuracy)) - __swig_destroy__ = _mscl.delete_TimeUpdate - - def timeOfWeek(self): - return _mscl.TimeUpdate_timeOfWeek(self) - - def weekNumber(self): - return _mscl.TimeUpdate_weekNumber(self) - - def timeAccuracy(self): - return _mscl.TimeUpdate_timeAccuracy(self) - -# Register TimeUpdate in _mscl: -_mscl.TimeUpdate_swigregister(TimeUpdate) - -class ZUPTSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, enable, threshold): - _mscl.ZUPTSettingsData_swiginit(self, _mscl.new_ZUPTSettingsData(enable, threshold)) - enabled = property(_mscl.ZUPTSettingsData_enabled_get, _mscl.ZUPTSettingsData_enabled_set) - threshold = property(_mscl.ZUPTSettingsData_threshold_get, _mscl.ZUPTSettingsData_threshold_set) - __swig_destroy__ = _mscl.delete_ZUPTSettingsData - -# Register ZUPTSettingsData in _mscl: -_mscl.ZUPTSettingsData_swigregister(ZUPTSettingsData) - -class FixedReferencePositionData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.FixedReferencePositionData_swiginit(self, _mscl.new_FixedReferencePositionData(*args)) - enable = property(_mscl.FixedReferencePositionData_enable_get, _mscl.FixedReferencePositionData_enable_set) - referencePosition = property(_mscl.FixedReferencePositionData_referencePosition_get, _mscl.FixedReferencePositionData_referencePosition_set) - __swig_destroy__ = _mscl.delete_FixedReferencePositionData - -# Register FixedReferencePositionData in _mscl: -_mscl.FixedReferencePositionData_swigregister(FixedReferencePositionData) - -class SBASSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enableSBAS = property(_mscl.SBASSettingsData_enableSBAS_get, _mscl.SBASSettingsData_enableSBAS_set) - enableRanging = property(_mscl.SBASSettingsData_enableRanging_get, _mscl.SBASSettingsData_enableRanging_set) - enableCorrectionData = property(_mscl.SBASSettingsData_enableCorrectionData_get, _mscl.SBASSettingsData_enableCorrectionData_set) - applyIntegrityInfo = property(_mscl.SBASSettingsData_applyIntegrityInfo_get, _mscl.SBASSettingsData_applyIntegrityInfo_set) - satellitePRNs = property(_mscl.SBASSettingsData_satellitePRNs_get, _mscl.SBASSettingsData_satellitePRNs_set) - - def __init__(self): - _mscl.SBASSettingsData_swiginit(self, _mscl.new_SBASSettingsData()) - __swig_destroy__ = _mscl.delete_SBASSettingsData - -# Register SBASSettingsData in _mscl: -_mscl.SBASSettingsData_swigregister(SBASSettingsData) - -class Constellation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - constellationID = property(_mscl.Constellation_constellationID_get, _mscl.Constellation_constellationID_set) - enabled = property(_mscl.Constellation_enabled_get, _mscl.Constellation_enabled_set) - reservedChannelCount = property(_mscl.Constellation_reservedChannelCount_get, _mscl.Constellation_reservedChannelCount_set) - maxChannels = property(_mscl.Constellation_maxChannels_get, _mscl.Constellation_maxChannels_set) - enableL1SAIF = property(_mscl.Constellation_enableL1SAIF_get, _mscl.Constellation_enableL1SAIF_set) - - def __init__(self): - _mscl.Constellation_swiginit(self, _mscl.new_Constellation()) - __swig_destroy__ = _mscl.delete_Constellation - -# Register Constellation in _mscl: -_mscl.Constellation_swigregister(Constellation) - -class ConstellationSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - maxChannelsAvailable = property(_mscl.ConstellationSettingsData_maxChannelsAvailable_get, _mscl.ConstellationSettingsData_maxChannelsAvailable_set) - maxChannelsToUse = property(_mscl.ConstellationSettingsData_maxChannelsToUse_get, _mscl.ConstellationSettingsData_maxChannelsToUse_set) - constellations = property(_mscl.ConstellationSettingsData_constellations_get, _mscl.ConstellationSettingsData_constellations_set) - - def __init__(self): - _mscl.ConstellationSettingsData_swiginit(self, _mscl.new_ConstellationSettingsData()) - __swig_destroy__ = _mscl.delete_ConstellationSettingsData - -# Register ConstellationSettingsData in _mscl: -_mscl.ConstellationSettingsData_swigregister(ConstellationSettingsData) - -class LowPassFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SET_TO_HALF_REPORTING_RATE = _mscl.LowPassFilterData_SET_TO_HALF_REPORTING_RATE - USER_SPECIFIED_CUTOFF_FREQ = _mscl.LowPassFilterData_USER_SPECIFIED_CUTOFF_FREQ - - def __init__(self, *args): - _mscl.LowPassFilterData_swiginit(self, _mscl.new_LowPassFilterData(*args)) - dataDescriptor = property(_mscl.LowPassFilterData_dataDescriptor_get, _mscl.LowPassFilterData_dataDescriptor_set) - manualFilterBandwidthConfig = property(_mscl.LowPassFilterData_manualFilterBandwidthConfig_get, _mscl.LowPassFilterData_manualFilterBandwidthConfig_set) - applyLowPassFilter = property(_mscl.LowPassFilterData_applyLowPassFilter_get, _mscl.LowPassFilterData_applyLowPassFilter_set) - cutoffFrequency = property(_mscl.LowPassFilterData_cutoffFrequency_get, _mscl.LowPassFilterData_cutoffFrequency_set) - - @staticmethod - def getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - - @staticmethod - def getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - __swig_destroy__ = _mscl.delete_LowPassFilterData - -# Register LowPassFilterData in _mscl: -_mscl.LowPassFilterData_swigregister(LowPassFilterData) - -def LowPassFilterData_getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - -def LowPassFilterData_getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - -class ComplementaryFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ComplementaryFilterData_swiginit(self, _mscl.new_ComplementaryFilterData()) - upCompensationEnabled = property(_mscl.ComplementaryFilterData_upCompensationEnabled_get, _mscl.ComplementaryFilterData_upCompensationEnabled_set) - upCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_upCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_upCompensationTimeInSeconds_set) - northCompensationEnabled = property(_mscl.ComplementaryFilterData_northCompensationEnabled_get, _mscl.ComplementaryFilterData_northCompensationEnabled_set) - northCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_northCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_northCompensationTimeInSeconds_set) - __swig_destroy__ = _mscl.delete_ComplementaryFilterData - -# Register ComplementaryFilterData in _mscl: -_mscl.ComplementaryFilterData_swigregister(ComplementaryFilterData) - -class PpsPulseInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PpsPulseInfo_swiginit(self, _mscl.new_PpsPulseInfo()) - count = property(_mscl.PpsPulseInfo_count_get, _mscl.PpsPulseInfo_count_set) - lastTimeinMS = property(_mscl.PpsPulseInfo_lastTimeinMS_get, _mscl.PpsPulseInfo_lastTimeinMS_set) - __swig_destroy__ = _mscl.delete_PpsPulseInfo - -# Register PpsPulseInfo in _mscl: -_mscl.PpsPulseInfo_swigregister(PpsPulseInfo) - -class StreamInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.StreamInfo_swiginit(self, _mscl.new_StreamInfo()) - enabled = property(_mscl.StreamInfo_enabled_get, _mscl.StreamInfo_enabled_set) - outgoingPacketsDropped = property(_mscl.StreamInfo_outgoingPacketsDropped_get, _mscl.StreamInfo_outgoingPacketsDropped_set) - __swig_destroy__ = _mscl.delete_StreamInfo - -# Register StreamInfo in _mscl: -_mscl.StreamInfo_swigregister(StreamInfo) - -class DeviceMessageInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.DeviceMessageInfo_swiginit(self, _mscl.new_DeviceMessageInfo()) - messageParsingErrors = property(_mscl.DeviceMessageInfo_messageParsingErrors_get, _mscl.DeviceMessageInfo_messageParsingErrors_set) - messagesRead = property(_mscl.DeviceMessageInfo_messagesRead_get, _mscl.DeviceMessageInfo_messagesRead_set) - lastMessageReadinMS = property(_mscl.DeviceMessageInfo_lastMessageReadinMS_get, _mscl.DeviceMessageInfo_lastMessageReadinMS_set) - __swig_destroy__ = _mscl.delete_DeviceMessageInfo - -# Register DeviceMessageInfo in _mscl: -_mscl.DeviceMessageInfo_swigregister(DeviceMessageInfo) - -class PortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PortInfo_swiginit(self, _mscl.new_PortInfo()) - bytesWritten = property(_mscl.PortInfo_bytesWritten_get, _mscl.PortInfo_bytesWritten_set) - bytesRead = property(_mscl.PortInfo_bytesRead_get, _mscl.PortInfo_bytesRead_set) - overrunsOnWrite = property(_mscl.PortInfo_overrunsOnWrite_get, _mscl.PortInfo_overrunsOnWrite_set) - overrunsOnRead = property(_mscl.PortInfo_overrunsOnRead_get, _mscl.PortInfo_overrunsOnRead_set) - __swig_destroy__ = _mscl.delete_PortInfo - -# Register PortInfo in _mscl: -_mscl.PortInfo_swigregister(PortInfo) - -class TemperatureInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.TemperatureInfo_swiginit(self, _mscl.new_TemperatureInfo()) - onBoardTemp = property(_mscl.TemperatureInfo_onBoardTemp_get, _mscl.TemperatureInfo_onBoardTemp_set) - lastReadInMS = property(_mscl.TemperatureInfo_lastReadInMS_get, _mscl.TemperatureInfo_lastReadInMS_set) - error = property(_mscl.TemperatureInfo_error_get, _mscl.TemperatureInfo_error_set) - __swig_destroy__ = _mscl.delete_TemperatureInfo - -# Register TemperatureInfo in _mscl: -_mscl.TemperatureInfo_swigregister(TemperatureInfo) - -ModelNumber = _mscl.ModelNumber -StatusStructure_Value = _mscl.StatusStructure_Value -SystemState_Value = _mscl.SystemState_Value -gnss1PpsPulseInfo_Count = _mscl.gnss1PpsPulseInfo_Count -gnss1PpsPulseInfo_LastTimeinMS = _mscl.gnss1PpsPulseInfo_LastTimeinMS -GnssPowerStateOn = _mscl.GnssPowerStateOn -ImuStreamInfo_Enabled = _mscl.ImuStreamInfo_Enabled -ImuStreamInfo_PacketsDropped = _mscl.ImuStreamInfo_PacketsDropped -GnssStreamInfo_Enabled = _mscl.GnssStreamInfo_Enabled -GnssStreamInfo_PacketsDropped = _mscl.GnssStreamInfo_PacketsDropped -EstimationFilterStreamInfo_Enabled = _mscl.EstimationFilterStreamInfo_Enabled -EstimationFilterStreamInfo_PacketsDropped = _mscl.EstimationFilterStreamInfo_PacketsDropped -ComPortInfo_BytesRead = _mscl.ComPortInfo_BytesRead -ComPortInfo_BytesWritten = _mscl.ComPortInfo_BytesWritten -ComPortInfo_OverrunsOnRead = _mscl.ComPortInfo_OverrunsOnRead -ComPortInfo_OverrunsOnWrite = _mscl.ComPortInfo_OverrunsOnWrite -ImuMessageInfo_LastMessageReadinMS = _mscl.ImuMessageInfo_LastMessageReadinMS -ImuMessageInfo_MessageParsingErrors = _mscl.ImuMessageInfo_MessageParsingErrors -ImuMessageInfo_MessagesRead = _mscl.ImuMessageInfo_MessagesRead -GnssMessageInfo_LastMessageReadinMS = _mscl.GnssMessageInfo_LastMessageReadinMS -GnssMessageInfo_MessageParsingErrors = _mscl.GnssMessageInfo_MessageParsingErrors -GnssMessageInfo_MessagesRead = _mscl.GnssMessageInfo_MessagesRead -TemperatureInfo_Error = _mscl.TemperatureInfo_Error -TemperatureInfo_LastReadInMS = _mscl.TemperatureInfo_LastReadInMS -TemperatureInfo_OnBoardTemp = _mscl.TemperatureInfo_OnBoardTemp -PowerState = _mscl.PowerState -GyroRange = _mscl.GyroRange -AccelRange = _mscl.AccelRange -HasMagnetometer = _mscl.HasMagnetometer -HasPressure = _mscl.HasPressure -class DeviceStatusData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_BASIC_STATUS_STRUCTURE - DIAGNOSTIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_DIAGNOSTIC_STATUS_STRUCTURE - SYSTEM_INITIALIZATION = _mscl.DeviceStatusData_SYSTEM_INITIALIZATION - SYSTEM_STARTUP = _mscl.DeviceStatusData_SYSTEM_STARTUP - SYSTEM_RUNNING = _mscl.DeviceStatusData_SYSTEM_RUNNING - - def __init__(self): - _mscl.DeviceStatusData_swiginit(self, _mscl.new_DeviceStatusData()) - modelNumber = property(_mscl.DeviceStatusData_modelNumber_get, _mscl.DeviceStatusData_modelNumber_set) - statusStructure = property(_mscl.DeviceStatusData_statusStructure_get, _mscl.DeviceStatusData_statusStructure_set) - systemTimerInMS = property(_mscl.DeviceStatusData_systemTimerInMS_get, _mscl.DeviceStatusData_systemTimerInMS_set) - - def systemState(self, *args): - return _mscl.DeviceStatusData_systemState(self, *args) - - def gnssPowerStateOn(self, *args): - return _mscl.DeviceStatusData_gnssPowerStateOn(self, *args) - - def gnss1PpsPulseInfo(self, *args): - return _mscl.DeviceStatusData_gnss1PpsPulseInfo(self, *args) - - def imuStreamInfo(self, *args): - return _mscl.DeviceStatusData_imuStreamInfo(self, *args) - - def gnssStreamInfo(self, *args): - return _mscl.DeviceStatusData_gnssStreamInfo(self, *args) - - def estimationFilterStreamInfo(self, *args): - return _mscl.DeviceStatusData_estimationFilterStreamInfo(self, *args) - - def imuMessageInfo(self, *args): - return _mscl.DeviceStatusData_imuMessageInfo(self, *args) - - def gnssMessageInfo(self, *args): - return _mscl.DeviceStatusData_gnssMessageInfo(self, *args) - - def comPortInfo(self, *args): - return _mscl.DeviceStatusData_comPortInfo(self, *args) - - def usbPortInfo(self, *args): - return _mscl.DeviceStatusData_usbPortInfo(self, *args) - - def hasMagnetometer(self, *args): - return _mscl.DeviceStatusData_hasMagnetometer(self, *args) - - def magnetometerInitializationFailed(self, *args): - return _mscl.DeviceStatusData_magnetometerInitializationFailed(self, *args) - - def hasPressure(self, *args): - return _mscl.DeviceStatusData_hasPressure(self, *args) - - def pressureInitializationFailed(self, *args): - return _mscl.DeviceStatusData_pressureInitializationFailed(self, *args) - - def gnssReceiverInitializationFailed(self, *args): - return _mscl.DeviceStatusData_gnssReceiverInitializationFailed(self, *args) - - def coldStartOnPowerOn(self, *args): - return _mscl.DeviceStatusData_coldStartOnPowerOn(self, *args) - - def temperatureInfo(self, *args): - return _mscl.DeviceStatusData_temperatureInfo(self, *args) - - def powerState(self, *args): - return _mscl.DeviceStatusData_powerState(self, *args) - - def gyroRange(self, *args): - return _mscl.DeviceStatusData_gyroRange(self, *args) - - def accelRange(self, *args): - return _mscl.DeviceStatusData_accelRange(self, *args) - - def asMap(self): - return _mscl.DeviceStatusData_asMap(self) - - def asValueMap(self): - return _mscl.DeviceStatusData_asValueMap(self) - __swig_destroy__ = _mscl.delete_DeviceStatusData - -# Register DeviceStatusData in _mscl: -_mscl.DeviceStatusData_swigregister(DeviceStatusData) - -class ExternalGNSSUpdateData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - gpsTimeOfWeek = property(_mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_get, _mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_set) - gpsWeekNumber = property(_mscl.ExternalGNSSUpdateData_gpsWeekNumber_get, _mscl.ExternalGNSSUpdateData_gpsWeekNumber_set) - lattitude = property(_mscl.ExternalGNSSUpdateData_lattitude_get, _mscl.ExternalGNSSUpdateData_lattitude_set) - longitude = property(_mscl.ExternalGNSSUpdateData_longitude_get, _mscl.ExternalGNSSUpdateData_longitude_set) - altitudeAboveWGS84Ellipsoid = property(_mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_get, _mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_set) - northVelocity = property(_mscl.ExternalGNSSUpdateData_northVelocity_get, _mscl.ExternalGNSSUpdateData_northVelocity_set) - eastVelocity = property(_mscl.ExternalGNSSUpdateData_eastVelocity_get, _mscl.ExternalGNSSUpdateData_eastVelocity_set) - downVelocity = property(_mscl.ExternalGNSSUpdateData_downVelocity_get, _mscl.ExternalGNSSUpdateData_downVelocity_set) - northPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_northPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_northPositionUncertainty_set) - eastPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_eastPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_eastPositionUncertainty_set) - downPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_downPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_downPositionUncertainty_set) - northVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_northVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_northVelocityUncertainty_set) - eastVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_set) - downVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_downVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_downVelocityUncertainty_set) - - def __init__(self): - _mscl.ExternalGNSSUpdateData_swiginit(self, _mscl.new_ExternalGNSSUpdateData()) - __swig_destroy__ = _mscl.delete_ExternalGNSSUpdateData - -# Register ExternalGNSSUpdateData in _mscl: -_mscl.ExternalGNSSUpdateData_swigregister(ExternalGNSSUpdateData) - -class HeadingUpdateOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsOptionId(self): - return _mscl.HeadingUpdateOptions_AsOptionId(self) - - def __init__(self, *args): - _mscl.HeadingUpdateOptions_swiginit(self, _mscl.new_HeadingUpdateOptions(*args)) - useInternalMagnetometer = property(_mscl.HeadingUpdateOptions_useInternalMagnetometer_get, _mscl.HeadingUpdateOptions_useInternalMagnetometer_set) - useInternalGNSSVelocityVector = property(_mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_get, _mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_set) - useExternalHeadingMessages = property(_mscl.HeadingUpdateOptions_useExternalHeadingMessages_get, _mscl.HeadingUpdateOptions_useExternalHeadingMessages_set) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptions - -# Register HeadingUpdateOptions in _mscl: -_mscl.HeadingUpdateOptions_swigregister(HeadingUpdateOptions) - -Automatic = _mscl.Automatic -UserSpecified_Heading = _mscl.UserSpecified_Heading -UserSpecified_Attitude = _mscl.UserSpecified_Attitude -UserSpecified_All = _mscl.UserSpecified_All -GNSS_DualAntenna = _mscl.GNSS_DualAntenna -GNSS_Kinematic = _mscl.GNSS_Kinematic -Magnetometer = _mscl.Magnetometer -External = _mscl.External -class HeadingAlignmentMethod(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.HeadingAlignmentMethod_swiginit(self, _mscl.new_HeadingAlignmentMethod(*args)) - value = property(_mscl.HeadingAlignmentMethod_value_get, _mscl.HeadingAlignmentMethod_value_set) - - def select(self, option): - return _mscl.HeadingAlignmentMethod_select(self, option) - - def deselect(self, option): - return _mscl.HeadingAlignmentMethod_deselect(self, option) - - def selected(self, option): - return _mscl.HeadingAlignmentMethod_selected(self, option) - __swig_destroy__ = _mscl.delete_HeadingAlignmentMethod - -# Register HeadingAlignmentMethod in _mscl: -_mscl.HeadingAlignmentMethod_swigregister(HeadingAlignmentMethod) - -class FilterInitializationValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FilterInitializationValues_swiginit(self, _mscl.new_FilterInitializationValues()) - autoInitialize = property(_mscl.FilterInitializationValues_autoInitialize_get, _mscl.FilterInitializationValues_autoInitialize_set) - initialValuesSource = property(_mscl.FilterInitializationValues_initialValuesSource_get, _mscl.FilterInitializationValues_initialValuesSource_set) - autoHeadingAlignmentMethod = property(_mscl.FilterInitializationValues_autoHeadingAlignmentMethod_get, _mscl.FilterInitializationValues_autoHeadingAlignmentMethod_set) - initialAttitude = property(_mscl.FilterInitializationValues_initialAttitude_get, _mscl.FilterInitializationValues_initialAttitude_set) - initialPosition = property(_mscl.FilterInitializationValues_initialPosition_get, _mscl.FilterInitializationValues_initialPosition_set) - initialVelocity = property(_mscl.FilterInitializationValues_initialVelocity_get, _mscl.FilterInitializationValues_initialVelocity_set) - referenceFrame = property(_mscl.FilterInitializationValues_referenceFrame_get, _mscl.FilterInitializationValues_referenceFrame_set) - - def manualHeading(self): - return _mscl.FilterInitializationValues_manualHeading(self) - - def manualAttitude(self): - return _mscl.FilterInitializationValues_manualAttitude(self) - - def manualPositionVelocity(self): - return _mscl.FilterInitializationValues_manualPositionVelocity(self) - __swig_destroy__ = _mscl.delete_FilterInitializationValues - -# Register FilterInitializationValues in _mscl: -_mscl.FilterInitializationValues_swigregister(FilterInitializationValues) - -class TareAxisValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def asUint8(self): - return _mscl.TareAxisValues_asUint8(self) - - def __init__(self, tareRollAxis, tarePitchAxis, tareYawAxis): - _mscl.TareAxisValues_swiginit(self, _mscl.new_TareAxisValues(tareRollAxis, tarePitchAxis, tareYawAxis)) - tareRollAxis = property(_mscl.TareAxisValues_tareRollAxis_get, _mscl.TareAxisValues_tareRollAxis_set) - tarePitchAxis = property(_mscl.TareAxisValues_tarePitchAxis_get, _mscl.TareAxisValues_tarePitchAxis_set) - tareYawAxis = property(_mscl.TareAxisValues_tareYawAxis_get, _mscl.TareAxisValues_tareYawAxis_set) - __swig_destroy__ = _mscl.delete_TareAxisValues - -# Register TareAxisValues in _mscl: -_mscl.TareAxisValues_swigregister(TareAxisValues) - -class GeographicSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeographicSourceOptions_swiginit(self, _mscl.new_GeographicSourceOptions(*args)) - source = property(_mscl.GeographicSourceOptions_source_get, _mscl.GeographicSourceOptions_source_set) - manual = property(_mscl.GeographicSourceOptions_manual_get, _mscl.GeographicSourceOptions_manual_set) - __swig_destroy__ = _mscl.delete_GeographicSourceOptions - -# Register GeographicSourceOptions in _mscl: -_mscl.GeographicSourceOptions_swigregister(GeographicSourceOptions) - -class EstimationControlOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsUint16(self): - return _mscl.EstimationControlOptions_AsUint16(self) - - def __init__(self, *args): - _mscl.EstimationControlOptions_swiginit(self, _mscl.new_EstimationControlOptions(*args)) - enableGyroBiasEstimation = property(_mscl.EstimationControlOptions_enableGyroBiasEstimation_get, _mscl.EstimationControlOptions_enableGyroBiasEstimation_set) - enableAccelBiasEstimation = property(_mscl.EstimationControlOptions_enableAccelBiasEstimation_get, _mscl.EstimationControlOptions_enableAccelBiasEstimation_set) - enableGyroScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_set) - enableAccelScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_set) - enableGNSSAntennaOffsetEstimation = property(_mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_get, _mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_set) - enableHardIronAutoCalibration = property(_mscl.EstimationControlOptions_enableHardIronAutoCalibration_get, _mscl.EstimationControlOptions_enableHardIronAutoCalibration_set) - enableSoftIronAutoCalibration = property(_mscl.EstimationControlOptions_enableSoftIronAutoCalibration_get, _mscl.EstimationControlOptions_enableSoftIronAutoCalibration_set) - __swig_destroy__ = _mscl.delete_EstimationControlOptions - -# Register EstimationControlOptions in _mscl: -_mscl.EstimationControlOptions_swigregister(EstimationControlOptions) - -class HeadingData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HeadingData_swiginit(self, _mscl.new_HeadingData()) - TRUE_HEADING = _mscl.HeadingData_TRUE_HEADING - MAGNETIC_HEADING = _mscl.HeadingData_MAGNETIC_HEADING - heading = property(_mscl.HeadingData_heading_get, _mscl.HeadingData_heading_set) - headingAngle = property(_mscl.HeadingData_headingAngle_get, _mscl.HeadingData_headingAngle_set) - headingAngleUncertainty = property(_mscl.HeadingData_headingAngleUncertainty_get, _mscl.HeadingData_headingAngleUncertainty_set) - __swig_destroy__ = _mscl.delete_HeadingData - -# Register HeadingData in _mscl: -_mscl.HeadingData_swigregister(HeadingData) - -class AdaptiveMeasurementData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AdaptiveMeasurementData_swiginit(self, _mscl.new_AdaptiveMeasurementData()) - mode = property(_mscl.AdaptiveMeasurementData_mode_get, _mscl.AdaptiveMeasurementData_mode_set) - lowPassFilterCutoff = property(_mscl.AdaptiveMeasurementData_lowPassFilterCutoff_get, _mscl.AdaptiveMeasurementData_lowPassFilterCutoff_set) - lowLimit = property(_mscl.AdaptiveMeasurementData_lowLimit_get, _mscl.AdaptiveMeasurementData_lowLimit_set) - highLimit = property(_mscl.AdaptiveMeasurementData_highLimit_get, _mscl.AdaptiveMeasurementData_highLimit_set) - lowLimitUncertainty = property(_mscl.AdaptiveMeasurementData_lowLimitUncertainty_get, _mscl.AdaptiveMeasurementData_lowLimitUncertainty_set) - highLimitUncertainty = property(_mscl.AdaptiveMeasurementData_highLimitUncertainty_get, _mscl.AdaptiveMeasurementData_highLimitUncertainty_set) - minUncertainty = property(_mscl.AdaptiveMeasurementData_minUncertainty_get, _mscl.AdaptiveMeasurementData_minUncertainty_set) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementData - -# Register AdaptiveMeasurementData in _mscl: -_mscl.AdaptiveMeasurementData_swigregister(AdaptiveMeasurementData) - -class AutoAdaptiveFilterOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AutoAdaptiveFilterOptions_swiginit(self, _mscl.new_AutoAdaptiveFilterOptions(*args)) - level = property(_mscl.AutoAdaptiveFilterOptions_level_get, _mscl.AutoAdaptiveFilterOptions_level_set) - timeLimit = property(_mscl.AutoAdaptiveFilterOptions_timeLimit_get, _mscl.AutoAdaptiveFilterOptions_timeLimit_set) - __swig_destroy__ = _mscl.delete_AutoAdaptiveFilterOptions - -# Register AutoAdaptiveFilterOptions in _mscl: -_mscl.AutoAdaptiveFilterOptions_swigregister(AutoAdaptiveFilterOptions) - -class SignalConditioningValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ENABLE_ORIENTATION_CALC = _mscl.SignalConditioningValues_ENABLE_ORIENTATION_CALC - ENABLE_CONING_SCULLING = _mscl.SignalConditioningValues_ENABLE_CONING_SCULLING - ENABLE_FINITE_SIZE_CORRECTION = _mscl.SignalConditioningValues_ENABLE_FINITE_SIZE_CORRECTION - DISABLE_MAGNETOMETER = _mscl.SignalConditioningValues_DISABLE_MAGNETOMETER - DISABLE_NORTH_COMP = _mscl.SignalConditioningValues_DISABLE_NORTH_COMP - DISABLE_UP_COMP = _mscl.SignalConditioningValues_DISABLE_UP_COMP - ENABLE_QUATERNION_CALC = _mscl.SignalConditioningValues_ENABLE_QUATERNION_CALC - HIGH = _mscl.SignalConditioningValues_HIGH - LOW = _mscl.SignalConditioningValues_LOW - dataConditioningFlags = property(_mscl.SignalConditioningValues_dataConditioningFlags_get, _mscl.SignalConditioningValues_dataConditioningFlags_set) - orientationCalcDecimation = property(_mscl.SignalConditioningValues_orientationCalcDecimation_get, _mscl.SignalConditioningValues_orientationCalcDecimation_set) - accelGyroFilterWidth = property(_mscl.SignalConditioningValues_accelGyroFilterWidth_get, _mscl.SignalConditioningValues_accelGyroFilterWidth_set) - magFilterWidth = property(_mscl.SignalConditioningValues_magFilterWidth_get, _mscl.SignalConditioningValues_magFilterWidth_set) - upCompensation = property(_mscl.SignalConditioningValues_upCompensation_get, _mscl.SignalConditioningValues_upCompensation_set) - northCompensation = property(_mscl.SignalConditioningValues_northCompensation_get, _mscl.SignalConditioningValues_northCompensation_set) - magBandwidthPower = property(_mscl.SignalConditioningValues_magBandwidthPower_get, _mscl.SignalConditioningValues_magBandwidthPower_set) - - def __init__(self): - _mscl.SignalConditioningValues_swiginit(self, _mscl.new_SignalConditioningValues()) - - def conditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_conditioningOptionOn(self, *args) - - def setConditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOn(self, *args) - - def setConditioningOptionOff(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOff(self, *args) - __swig_destroy__ = _mscl.delete_SignalConditioningValues - -# Register SignalConditioningValues in _mscl: -_mscl.SignalConditioningValues_swigregister(SignalConditioningValues) - -class EnableDisableMeasurements(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ACCELEROMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_ACCELEROMETER_MEASUREMENTS - MAGNETOMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_MAGNETOMETER_MEASUREMENTS - - def __init__(self, *args): - _mscl.EnableDisableMeasurements_swiginit(self, _mscl.new_EnableDisableMeasurements(*args)) - measurementOptions = property(_mscl.EnableDisableMeasurements_measurementOptions_get, _mscl.EnableDisableMeasurements_measurementOptions_set) - - def optionEnabled(self, *args): - return _mscl.EnableDisableMeasurements_optionEnabled(self, *args) - - def enableOption(self, *args): - return _mscl.EnableDisableMeasurements_enableOption(self, *args) - - def disableOption(self, *args): - return _mscl.EnableDisableMeasurements_disableOption(self, *args) - __swig_destroy__ = _mscl.delete_EnableDisableMeasurements - -# Register EnableDisableMeasurements in _mscl: -_mscl.EnableDisableMeasurements_swigregister(EnableDisableMeasurements) - -class RTKDeviceStatusFlags(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MODEM_STATE = _mscl.RTKDeviceStatusFlags_MODEM_STATE - CONNECTION_TYPE = _mscl.RTKDeviceStatusFlags_CONNECTION_TYPE - RSSI = _mscl.RTKDeviceStatusFlags_RSSI - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_SIGNAL_QUALITY - TOWER_CHANGE_INDICATOR = _mscl.RTKDeviceStatusFlags_TOWER_CHANGE_INDICATOR - NMEA_TIMEOUT = _mscl.RTKDeviceStatusFlags_NMEA_TIMEOUT - SERVER_TIMEOUT = _mscl.RTKDeviceStatusFlags_SERVER_TIMEOUT - RTCM_TIMEOUT = _mscl.RTKDeviceStatusFlags_RTCM_TIMEOUT - DEVICE_OUT_OF_RANGE = _mscl.RTKDeviceStatusFlags_DEVICE_OUT_OF_RANGE - CORRECTIONS_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_CORRECTIONS_UNAVAILABLE - VERSION = _mscl.RTKDeviceStatusFlags_VERSION - OFF = _mscl.RTKDeviceStatusFlags_OFF - NO_NETWORK = _mscl.RTKDeviceStatusFlags_NO_NETWORK - NETWORK_CONNECTED = _mscl.RTKDeviceStatusFlags_NETWORK_CONNECTED - CONFIGURING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_CONFIGURING_DATA_CONTEXT - ACTIVATING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_ACTIVATING_DATA_CONTEXT - CONFIGURING_SOCKET = _mscl.RTKDeviceStatusFlags_CONFIGURING_SOCKET - WAITING_ON_SERVER_HANDSHAKE = _mscl.RTKDeviceStatusFlags_WAITING_ON_SERVER_HANDSHAKE - CONNECTED_AND_IDLE = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_IDLE - CONNECTED_AND_STREAMING = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_STREAMING - NO_CONNECTION = _mscl.RTKDeviceStatusFlags_NO_CONNECTION - CONNECTION_2G = _mscl.RTKDeviceStatusFlags_CONNECTION_2G - CONNECTION_3G = _mscl.RTKDeviceStatusFlags_CONNECTION_3G - CONNECTION_4G = _mscl.RTKDeviceStatusFlags_CONNECTION_4G - CONNECTION_5G = _mscl.RTKDeviceStatusFlags_CONNECTION_5G - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_swiginit(self, _mscl.new_RTKDeviceStatusFlags(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_version(self) - - def modemState(self, *args): - return _mscl.RTKDeviceStatusFlags_modemState(self, *args) - - def connectionType(self, *args): - return _mscl.RTKDeviceStatusFlags_connectionType(self, *args) - - def rssi(self, *args): - return _mscl.RTKDeviceStatusFlags_rssi(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_signalQuality(self, *args) - - def towerChangeIndicator(self, *args): - return _mscl.RTKDeviceStatusFlags_towerChangeIndicator(self, *args) - - def nmeaTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_nmeaTimeout(self, *args) - - def serverTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_serverTimeout(self, *args) - - def rtcmTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_rtcmTimeout(self, *args) - - def deviceOutOfRange(self, *args): - return _mscl.RTKDeviceStatusFlags_deviceOutOfRange(self, *args) - - def correctionsUnavailable(self, *args): - return _mscl.RTKDeviceStatusFlags_correctionsUnavailable(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags - -# Register RTKDeviceStatusFlags in _mscl: -_mscl.RTKDeviceStatusFlags_swigregister(RTKDeviceStatusFlags) - -class RTKDeviceStatusFlags_v1(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONTROLLER_STATE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATE - PLATFORM_STATE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATE - CONTROLLER_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATUS_CODE - PLATFORM_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATUS_CODE - RESET_REASON = _mscl.RTKDeviceStatusFlags_v1_RESET_REASON - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_v1_SIGNAL_QUALITY - VERSION = _mscl.RTKDeviceStatusFlags_v1_VERSION - IDLE = _mscl.RTKDeviceStatusFlags_v1_IDLE - ACTIVE = _mscl.RTKDeviceStatusFlags_v1_ACTIVE - MODEM_OFF = _mscl.RTKDeviceStatusFlags_v1_MODEM_OFF - MODEM_POWERING_ON = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_ON - MODEM_CONFIGURE = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONFIGURE - MODEM_POWERING_DOWN = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_DOWN - MODEM_READY = _mscl.RTKDeviceStatusFlags_v1_MODEM_READY - MODEM_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTING - MODEM_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_DISCONNECTING - MODEM_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTED - SERVICE_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTING - SERVICE_CONNECTION_FAILED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_FAILED - SERVICE_CONNECTION_CANCELED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_CANCELED - SERVICE_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_DISCONNECTING - SERVICE_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTED - PLATFORM_ERROR = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_ERROR - RESET_MODEM = _mscl.RTKDeviceStatusFlags_v1_RESET_MODEM - CONTROLLER_OK = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_OK - WAITING_NMEA = _mscl.RTKDeviceStatusFlags_v1_WAITING_NMEA - RTK_TIMEOUT = _mscl.RTKDeviceStatusFlags_v1_RTK_TIMEOUT - RTK_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_v1_RTK_UNAVAILABLE - CONFIG_INVALID = _mscl.RTKDeviceStatusFlags_v1_CONFIG_INVALID - PLATFORM_OK = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_OK - RTK_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_RTK_CONNECTION_DROPPED - CELL_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_CELL_CONNECTION_DROPPED - MODEM_ERROR = _mscl.RTKDeviceStatusFlags_v1_MODEM_ERROR - POWER_ON = _mscl.RTKDeviceStatusFlags_v1_POWER_ON - UNKNOWN = _mscl.RTKDeviceStatusFlags_v1_UNKNOWN - SOFT_RESET = _mscl.RTKDeviceStatusFlags_v1_SOFT_RESET - HARDWARE_ERROR_RESET = _mscl.RTKDeviceStatusFlags_v1_HARDWARE_ERROR_RESET - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_v1_swiginit(self, _mscl.new_RTKDeviceStatusFlags_v1(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_v1_version(self) - - def controllerState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerState(self, *args) - - def platformState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformState(self, *args) - - def controllerStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerStatusCode(self, *args) - - def platformStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformStatusCode(self, *args) - - def resetReason(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_resetReason(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_signalQuality(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags_v1 - -# Register RTKDeviceStatusFlags_v1 in _mscl: -_mscl.RTKDeviceStatusFlags_v1_swigregister(RTKDeviceStatusFlags_v1) - -class GnssSignalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - L1CA = _mscl.GnssSignalConfiguration_L1CA - L2C = _mscl.GnssSignalConfiguration_L2C - L1OF = _mscl.GnssSignalConfiguration_L1OF - L2OF = _mscl.GnssSignalConfiguration_L2OF - E1 = _mscl.GnssSignalConfiguration_E1 - E5B = _mscl.GnssSignalConfiguration_E5B - B1 = _mscl.GnssSignalConfiguration_B1 - B2 = _mscl.GnssSignalConfiguration_B2 - - def __init__(self): - _mscl.GnssSignalConfiguration_swiginit(self, _mscl.new_GnssSignalConfiguration()) - - def enableGpsSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGpsSignal(self, signal, enable) - - def gpsSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_gpsSignalEnabled(self, signal) - - def gpsSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_gpsSignalValue(self, *args) - - def enableGlonassSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGlonassSignal(self, signal, enable) - - def glonassSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_glonassSignalEnabled(self, signal) - - def glonassSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_glonassSignalValue(self, *args) - - def enableGalileoSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGalileoSignal(self, signal, enable) - - def galileoSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_galileoSignalEnabled(self, signal) - - def galileoSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_galileoSignalValue(self, *args) - - def enableBeiDouSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableBeiDouSignal(self, signal, enable) - - def beidouSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_beidouSignalEnabled(self, signal) - - def beidouSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_beidouSignalValue(self, *args) - __swig_destroy__ = _mscl.delete_GnssSignalConfiguration - -# Register GnssSignalConfiguration in _mscl: -_mscl.GnssSignalConfiguration_swigregister(GnssSignalConfiguration) - -class GnssSpartnConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - KEY_SIZE = _mscl.GnssSpartnConfiguration_KEY_SIZE - NONE = _mscl.GnssSpartnConfiguration_NONE - NETWORK = _mscl.GnssSpartnConfiguration_NETWORK - LBAND = _mscl.GnssSpartnConfiguration_LBAND - - def __init__(self): - _mscl.GnssSpartnConfiguration_swiginit(self, _mscl.new_GnssSpartnConfiguration()) - - def enable(self, enable): - return _mscl.GnssSpartnConfiguration_enable(self, enable) - - def enabled(self): - return _mscl.GnssSpartnConfiguration_enabled(self) - - def type(self, *args): - return _mscl.GnssSpartnConfiguration_type(self, *args) - - def currentKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyTow(self, *args) - - def currentKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyWeek(self, *args) - - def currentKey(self, *args): - return _mscl.GnssSpartnConfiguration_currentKey(self, *args) - - def nextKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyTow(self, *args) - - def nextKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyWeek(self, *args) - - def nextKey(self, *args): - return _mscl.GnssSpartnConfiguration_nextKey(self, *args) - __swig_destroy__ = _mscl.delete_GnssSpartnConfiguration - -# Register GnssSpartnConfiguration in _mscl: -_mscl.GnssSpartnConfiguration_swigregister(GnssSpartnConfiguration) - -class PositionReferenceConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - autoConfig = property(_mscl.PositionReferenceConfiguration_autoConfig_get, _mscl.PositionReferenceConfiguration_autoConfig_set) - position = property(_mscl.PositionReferenceConfiguration_position_get, _mscl.PositionReferenceConfiguration_position_set) - - def __init__(self): - _mscl.PositionReferenceConfiguration_swiginit(self, _mscl.new_PositionReferenceConfiguration()) - __swig_destroy__ = _mscl.delete_PositionReferenceConfiguration - -# Register PositionReferenceConfiguration in _mscl: -_mscl.PositionReferenceConfiguration_swigregister(PositionReferenceConfiguration) - -class AntennaLeverArmCalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enabled = property(_mscl.AntennaLeverArmCalConfiguration_enabled_get, _mscl.AntennaLeverArmCalConfiguration_enabled_set) - maxOffsetError = property(_mscl.AntennaLeverArmCalConfiguration_maxOffsetError_get, _mscl.AntennaLeverArmCalConfiguration_maxOffsetError_set) - - def __init__(self): - _mscl.AntennaLeverArmCalConfiguration_swiginit(self, _mscl.new_AntennaLeverArmCalConfiguration()) - __swig_destroy__ = _mscl.delete_AntennaLeverArmCalConfiguration - -# Register AntennaLeverArmCalConfiguration in _mscl: -_mscl.AntennaLeverArmCalConfiguration_swigregister(AntennaLeverArmCalConfiguration) - -class OdometerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.OdometerConfiguration_DISABLED - SINGLE = _mscl.OdometerConfiguration_SINGLE - QUADRATURE = _mscl.OdometerConfiguration_QUADRATURE - - def __init__(self): - _mscl.OdometerConfiguration_swiginit(self, _mscl.new_OdometerConfiguration()) - - def mode(self, *args): - return _mscl.OdometerConfiguration_mode(self, *args) - - def uncertainty(self, *args): - return _mscl.OdometerConfiguration_uncertainty(self, *args) - - def scaling(self, *args): - return _mscl.OdometerConfiguration_scaling(self, *args) - __swig_destroy__ = _mscl.delete_OdometerConfiguration - -# Register OdometerConfiguration in _mscl: -_mscl.OdometerConfiguration_swigregister(OdometerConfiguration) - -class GpioConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - UNUSED_FEATURE = _mscl.GpioConfiguration_UNUSED_FEATURE - GPIO_FEATURE = _mscl.GpioConfiguration_GPIO_FEATURE - PPS_FEATURE = _mscl.GpioConfiguration_PPS_FEATURE - ENCODER_FEATURE = _mscl.GpioConfiguration_ENCODER_FEATURE - EVENT_TIMESTAMP_FEATURE = _mscl.GpioConfiguration_EVENT_TIMESTAMP_FEATURE - UART_FEATURE = _mscl.GpioConfiguration_UART_FEATURE - GPIO_UNUSED = _mscl.GpioConfiguration_GPIO_UNUSED - GPIO_INPUT = _mscl.GpioConfiguration_GPIO_INPUT - GPIO_OUTPUT_LOW = _mscl.GpioConfiguration_GPIO_OUTPUT_LOW - GPIO_OUTPUT_HIGH = _mscl.GpioConfiguration_GPIO_OUTPUT_HIGH - PPS_UNUSED = _mscl.GpioConfiguration_PPS_UNUSED - PPS_INPUT = _mscl.GpioConfiguration_PPS_INPUT - PPS_OUTPUT = _mscl.GpioConfiguration_PPS_OUTPUT - ENCODER_UNUSED = _mscl.GpioConfiguration_ENCODER_UNUSED - ENCODER_A = _mscl.GpioConfiguration_ENCODER_A - ENCODER_B = _mscl.GpioConfiguration_ENCODER_B - TIMESTAMP_UNUSED = _mscl.GpioConfiguration_TIMESTAMP_UNUSED - TIMESTAMP_RISING = _mscl.GpioConfiguration_TIMESTAMP_RISING - TIMESTAMP_FALLING = _mscl.GpioConfiguration_TIMESTAMP_FALLING - TIMESTAMP_EITHER = _mscl.GpioConfiguration_TIMESTAMP_EITHER - UART_UNUSED = _mscl.GpioConfiguration_UART_UNUSED - UART_PORT2_TX = _mscl.GpioConfiguration_UART_PORT2_TX - UART_PORT2_RX = _mscl.GpioConfiguration_UART_PORT2_RX - UART_PORT3_TX = _mscl.GpioConfiguration_UART_PORT3_TX - UART_PORT3_RX = _mscl.GpioConfiguration_UART_PORT3_RX - NONE = _mscl.GpioConfiguration_NONE - OPEN_DRAIN = _mscl.GpioConfiguration_OPEN_DRAIN - PULLDOWN = _mscl.GpioConfiguration_PULLDOWN - PULLUP = _mscl.GpioConfiguration_PULLUP - pinMode = property(_mscl.GpioConfiguration_pinMode_get, _mscl.GpioConfiguration_pinMode_set) - pin = property(_mscl.GpioConfiguration_pin_get, _mscl.GpioConfiguration_pin_set) - feature = property(_mscl.GpioConfiguration_feature_get, _mscl.GpioConfiguration_feature_set) - behavior = property(_mscl.GpioConfiguration_behavior_get, _mscl.GpioConfiguration_behavior_set) - - def pinModeValue(self, *args): - return _mscl.GpioConfiguration_pinModeValue(self, *args) - - def __init__(self): - _mscl.GpioConfiguration_swiginit(self, _mscl.new_GpioConfiguration()) - __swig_destroy__ = _mscl.delete_GpioConfiguration - -# Register GpioConfiguration in _mscl: -_mscl.GpioConfiguration_swigregister(GpioConfiguration) - -DISABLED = _mscl.DISABLED -ENABLED = _mscl.ENABLED -TEST = _mscl.TEST -TEST_PULSE = _mscl.TEST_PULSE -class EventTriggerGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventTriggerGpioParameter_DISABLED - WHILE_HIGH = _mscl.EventTriggerGpioParameter_WHILE_HIGH - WHILE_LOW = _mscl.EventTriggerGpioParameter_WHILE_LOW - EDGE = _mscl.EventTriggerGpioParameter_EDGE - pin = property(_mscl.EventTriggerGpioParameter_pin_get, _mscl.EventTriggerGpioParameter_pin_set) - mode = property(_mscl.EventTriggerGpioParameter_mode_get, _mscl.EventTriggerGpioParameter_mode_set) - - def __init__(self): - _mscl.EventTriggerGpioParameter_swiginit(self, _mscl.new_EventTriggerGpioParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerGpioParameter - -# Register EventTriggerGpioParameter in _mscl: -_mscl.EventTriggerGpioParameter_swigregister(EventTriggerGpioParameter) - -class EventTriggerThresholdParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - WINDOW_TYPE = _mscl.EventTriggerThresholdParameter_WINDOW_TYPE - INTERVAL_TYPE = _mscl.EventTriggerThresholdParameter_INTERVAL_TYPE - type = property(_mscl.EventTriggerThresholdParameter_type_get, _mscl.EventTriggerThresholdParameter_type_set) - lowThreshold = property(_mscl.EventTriggerThresholdParameter_lowThreshold_get, _mscl.EventTriggerThresholdParameter_lowThreshold_set) - highThreshold = property(_mscl.EventTriggerThresholdParameter_highThreshold_get, _mscl.EventTriggerThresholdParameter_highThreshold_set) - - def channel(self, *args): - return _mscl.EventTriggerThresholdParameter_channel(self, *args) - - def channelField(self): - return _mscl.EventTriggerThresholdParameter_channelField(self) - - def channelQualifier(self): - return _mscl.EventTriggerThresholdParameter_channelQualifier(self) - - def channelIndex(self): - return _mscl.EventTriggerThresholdParameter_channelIndex(self) - - def __init__(self): - _mscl.EventTriggerThresholdParameter_swiginit(self, _mscl.new_EventTriggerThresholdParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerThresholdParameter - -# Register EventTriggerThresholdParameter in _mscl: -_mscl.EventTriggerThresholdParameter_swigregister(EventTriggerThresholdParameter) - -class EventTriggerCombinationParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_INPUT_TRIGGERS = _mscl.EventTriggerCombinationParameter_MAX_INPUT_TRIGGERS - LOGIC_NEVER = _mscl.EventTriggerCombinationParameter_LOGIC_NEVER - LOGIC_ALWAYS = _mscl.EventTriggerCombinationParameter_LOGIC_ALWAYS - LOGIC_NONE = _mscl.EventTriggerCombinationParameter_LOGIC_NONE - LOGIC_OR = _mscl.EventTriggerCombinationParameter_LOGIC_OR - LOGIC_NAND = _mscl.EventTriggerCombinationParameter_LOGIC_NAND - LOGIC_XOR_ONE = _mscl.EventTriggerCombinationParameter_LOGIC_XOR_ONE - LOGIC_ONLY_A = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_A - LOGIC_ONLY_B = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_B - LOGIC_ONLY_C = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_C - LOGIC_ONLY_D = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_D - LOGIC_AND_AB = _mscl.EventTriggerCombinationParameter_LOGIC_AND_AB - LOGIC_AB_OR_C = _mscl.EventTriggerCombinationParameter_LOGIC_AB_OR_C - LOGIC_AND = _mscl.EventTriggerCombinationParameter_LOGIC_AND - logicTable = property(_mscl.EventTriggerCombinationParameter_logicTable_get, _mscl.EventTriggerCombinationParameter_logicTable_set) - inputTriggers = property(_mscl.EventTriggerCombinationParameter_inputTriggers_get, _mscl.EventTriggerCombinationParameter_inputTriggers_set) - - def __init__(self): - _mscl.EventTriggerCombinationParameter_swiginit(self, _mscl.new_EventTriggerCombinationParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerCombinationParameter - -# Register EventTriggerCombinationParameter in _mscl: -_mscl.EventTriggerCombinationParameter_swigregister(EventTriggerCombinationParameter) - -class EventTriggerParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerParameters_swiginit(self, _mscl.new_EventTriggerParameters()) - gpio = property(_mscl.EventTriggerParameters_gpio_get, _mscl.EventTriggerParameters_gpio_set) - threshold = property(_mscl.EventTriggerParameters_threshold_get, _mscl.EventTriggerParameters_threshold_set) - combination = property(_mscl.EventTriggerParameters_combination_get, _mscl.EventTriggerParameters_combination_set) - __swig_destroy__ = _mscl.delete_EventTriggerParameters - -# Register EventTriggerParameters in _mscl: -_mscl.EventTriggerParameters_swigregister(EventTriggerParameters) - -class EventTriggerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventTriggerConfiguration_NONE - GPIO_TRIGGER = _mscl.EventTriggerConfiguration_GPIO_TRIGGER - THRESHOLD_TRIGGER = _mscl.EventTriggerConfiguration_THRESHOLD_TRIGGER - COMBINATION_TRIGGER = _mscl.EventTriggerConfiguration_COMBINATION_TRIGGER - instance = property(_mscl.EventTriggerConfiguration_instance_get, _mscl.EventTriggerConfiguration_instance_set) - trigger = property(_mscl.EventTriggerConfiguration_trigger_get, _mscl.EventTriggerConfiguration_trigger_set) - parameters = property(_mscl.EventTriggerConfiguration_parameters_get, _mscl.EventTriggerConfiguration_parameters_set) - - def __init__(self): - _mscl.EventTriggerConfiguration_swiginit(self, _mscl.new_EventTriggerConfiguration()) - __swig_destroy__ = _mscl.delete_EventTriggerConfiguration - -# Register EventTriggerConfiguration in _mscl: -_mscl.EventTriggerConfiguration_swigregister(EventTriggerConfiguration) - -class EventActionGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventActionGpioParameter_DISABLED - ACTIVE_HIGH = _mscl.EventActionGpioParameter_ACTIVE_HIGH - ACTIVE_LOW = _mscl.EventActionGpioParameter_ACTIVE_LOW - ONESHOT_HIGH = _mscl.EventActionGpioParameter_ONESHOT_HIGH - ONESHOT_LOW = _mscl.EventActionGpioParameter_ONESHOT_LOW - TOGGLE = _mscl.EventActionGpioParameter_TOGGLE - pin = property(_mscl.EventActionGpioParameter_pin_get, _mscl.EventActionGpioParameter_pin_set) - mode = property(_mscl.EventActionGpioParameter_mode_get, _mscl.EventActionGpioParameter_mode_set) - - def __init__(self): - _mscl.EventActionGpioParameter_swiginit(self, _mscl.new_EventActionGpioParameter()) - __swig_destroy__ = _mscl.delete_EventActionGpioParameter - -# Register EventActionGpioParameter in _mscl: -_mscl.EventActionGpioParameter_swigregister(EventActionGpioParameter) - -class EventActionMessageParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_DESCRIPTORS = _mscl.EventActionMessageParameter_MAX_DESCRIPTORS - sampleRate = property(_mscl.EventActionMessageParameter_sampleRate_get, _mscl.EventActionMessageParameter_sampleRate_set) - - def dataClass(self): - return _mscl.EventActionMessageParameter_dataClass(self) - - def setChannelFields(self, dataClass, fields): - return _mscl.EventActionMessageParameter_setChannelFields(self, dataClass, fields) - - def getChannelFields(self): - return _mscl.EventActionMessageParameter_getChannelFields(self) - - def __init__(self): - _mscl.EventActionMessageParameter_swiginit(self, _mscl.new_EventActionMessageParameter()) - __swig_destroy__ = _mscl.delete_EventActionMessageParameter - -# Register EventActionMessageParameter in _mscl: -_mscl.EventActionMessageParameter_swigregister(EventActionMessageParameter) - -class EventActionParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventActionParameters_swiginit(self, _mscl.new_EventActionParameters()) - gpio = property(_mscl.EventActionParameters_gpio_get, _mscl.EventActionParameters_gpio_set) - message = property(_mscl.EventActionParameters_message_get, _mscl.EventActionParameters_message_set) - __swig_destroy__ = _mscl.delete_EventActionParameters - -# Register EventActionParameters in _mscl: -_mscl.EventActionParameters_swigregister(EventActionParameters) - -class EventActionConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventActionConfiguration_NONE - GPIO = _mscl.EventActionConfiguration_GPIO - MESSAGE = _mscl.EventActionConfiguration_MESSAGE - instance = property(_mscl.EventActionConfiguration_instance_get, _mscl.EventActionConfiguration_instance_set) - trigger = property(_mscl.EventActionConfiguration_trigger_get, _mscl.EventActionConfiguration_trigger_set) - type = property(_mscl.EventActionConfiguration_type_get, _mscl.EventActionConfiguration_type_set) - parameters = property(_mscl.EventActionConfiguration_parameters_get, _mscl.EventActionConfiguration_parameters_set) - - def __init__(self): - _mscl.EventActionConfiguration_swiginit(self, _mscl.new_EventActionConfiguration()) - __swig_destroy__ = _mscl.delete_EventActionConfiguration - -# Register EventActionConfiguration in _mscl: -_mscl.EventActionConfiguration_swigregister(EventActionConfiguration) - -class EventTriggerInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTriggerInfo_swiginit(self, _mscl.new_EventTriggerInfo(*args)) - ACTIVE = _mscl.EventTriggerInfo_ACTIVE - ENABLED = _mscl.EventTriggerInfo_ENABLED - TEST = _mscl.EventTriggerInfo_TEST - type = property(_mscl.EventTriggerInfo_type_get, _mscl.EventTriggerInfo_type_set) - instanceId = property(_mscl.EventTriggerInfo_instanceId_get, _mscl.EventTriggerInfo_instanceId_set) - - def isActive(self): - return _mscl.EventTriggerInfo_isActive(self) - - def isEnabled(self): - return _mscl.EventTriggerInfo_isEnabled(self) - - def isTestMode(self): - return _mscl.EventTriggerInfo_isTestMode(self) - - def setStatus(self, value): - return _mscl.EventTriggerInfo_setStatus(self, value) - __swig_destroy__ = _mscl.delete_EventTriggerInfo - -# Register EventTriggerInfo in _mscl: -_mscl.EventTriggerInfo_swigregister(EventTriggerInfo) - -class EventActionInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventActionInfo_swiginit(self, _mscl.new_EventActionInfo(*args)) - type = property(_mscl.EventActionInfo_type_get, _mscl.EventActionInfo_type_set) - triggerId = property(_mscl.EventActionInfo_triggerId_get, _mscl.EventActionInfo_triggerId_set) - instanceId = property(_mscl.EventActionInfo_instanceId_get, _mscl.EventActionInfo_instanceId_set) - __swig_destroy__ = _mscl.delete_EventActionInfo - -# Register EventActionInfo in _mscl: -_mscl.EventActionInfo_swigregister(EventActionInfo) - -class MeasurementReferenceFrame(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MeasurementReferenceFrame_swiginit(self, _mscl.new_MeasurementReferenceFrame(*args)) - - def asMipFieldValues(self): - return _mscl.MeasurementReferenceFrame_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.MeasurementReferenceFrame_appendMipFieldValues(self, appendTo) - - def translation(self, *args): - return _mscl.MeasurementReferenceFrame_translation(self, *args) - - def rotation(self, *args): - return _mscl.MeasurementReferenceFrame_rotation(self, *args) - - def errorTrackingEnabled(self): - return _mscl.MeasurementReferenceFrame_errorTrackingEnabled(self) - - def enableErrorTracking(self, enable=True): - return _mscl.MeasurementReferenceFrame_enableErrorTracking(self, enable) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrame - -# Register MeasurementReferenceFrame in _mscl: -_mscl.MeasurementReferenceFrame_swigregister(MeasurementReferenceFrame) - -class MipChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipChannel_swiginit(self, _mscl.new_MipChannel(*args)) - - def channelField(self): - return _mscl.MipChannel_channelField(self) - - def sampleRate(self): - return _mscl.MipChannel_sampleRate(self) - - def rateDecimation(self, sampleRateBase): - return _mscl.MipChannel_rateDecimation(self, sampleRateBase) - __swig_destroy__ = _mscl.delete_MipChannel - -# Register MipChannel in _mscl: -_mscl.MipChannel_swigregister(MipChannel) - -class MipPacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MIP_ACK_NACK_ERROR_NONE = _mscl.MipPacket_MIP_ACK_NACK_ERROR_NONE - MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND - MIP_ACK_NACK_ERROR_CHECKSUM_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_CHECKSUM_INVALID - MIP_ACK_NACK_ERROR_PARAMETER_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_PARAMETER_INVALID - MIP_ACK_NACK_ERROR_COMMAND_FAILED = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_FAILED - MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT - MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET - - def __init__(self): - _mscl.MipPacket_swiginit(self, _mscl.new_MipPacket()) - - @staticmethod - def isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - - def descriptorSet(self): - return _mscl.MipPacket_descriptorSet(self) - - def payload(self): - return _mscl.MipPacket_payload(self) - __swig_destroy__ = _mscl.delete_MipPacket - -# Register MipPacket in _mscl: -_mscl.MipPacket_swigregister(MipPacket) - -def MipPacket_isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - -class MipDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def field(self): - return _mscl.MipDataPoint_field(self) - - def qualifier(self): - return _mscl.MipDataPoint_qualifier(self) - - def hasAddlIdentifiers(self): - return _mscl.MipDataPoint_hasAddlIdentifiers(self) - - def addlIdentifiers(self): - return _mscl.MipDataPoint_addlIdentifiers(self) - - def hasValidFlag(self): - return _mscl.MipDataPoint_hasValidFlag(self) - - def valid(self): - return _mscl.MipDataPoint_valid(self) - - def channelName(self, includeAddlIds=True, consolidatedFormat=False): - return _mscl.MipDataPoint_channelName(self, includeAddlIds, consolidatedFormat) - __swig_destroy__ = _mscl.delete_MipDataPoint - -# Register MipDataPoint in _mscl: -_mscl.MipDataPoint_swigregister(MipDataPoint) - -class ContinuousBIT(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def as_MipDataPoints(self): - return _mscl.ContinuousBIT_as_MipDataPoints(self) - - @staticmethod - def getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - - def data(self): - return _mscl.ContinuousBIT_data(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_bufferOverrun(self) - - def imuClockFault(self): - return _mscl.ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_pressureSelfTestFail(self) - - def filterTimingOverrun(self): - return _mscl.ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.ContinuousBIT_filterTimingUnderrun(self) - -# Register ContinuousBIT in _mscl: -_mscl.ContinuousBIT_swigregister(ContinuousBIT) - -def ContinuousBIT_getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - -class ContinuousBIT_System_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - SYSTEM_CLOCK_FAILURE = _mscl.ContinuousBIT_System_General_SYSTEM_CLOCK_FAILURE - POWER_FAULT = _mscl.ContinuousBIT_System_General_POWER_FAULT - FIRMWARE_FAULT = _mscl.ContinuousBIT_System_General_FIRMWARE_FAULT - TIMING_OVERLOAD = _mscl.ContinuousBIT_System_General_TIMING_OVERLOAD - BUFFER_OVERRUN = _mscl.ContinuousBIT_System_General_BUFFER_OVERRUN - - def flags(self): - return _mscl.ContinuousBIT_System_General_flags(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_System_General_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_System_General_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_System_General_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_System_General_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_System_General_bufferOverrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_General - -# Register ContinuousBIT_System_General in _mscl: -_mscl.ContinuousBIT_System_General_swigregister(ContinuousBIT_System_General) - -class ContinuousBIT_System_Process(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def flags(self): - return _mscl.ContinuousBIT_System_Process_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_Process - -# Register ContinuousBIT_System_Process in _mscl: -_mscl.ContinuousBIT_System_Process_swigregister(ContinuousBIT_System_Process) - -class ContinuousBIT_System(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_System_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_System_GENERAL_FLAGS - PROCESS_FLAGS = _mscl.ContinuousBIT_System_PROCESS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_System_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System - -# Register ContinuousBIT_System in _mscl: -_mscl.ContinuousBIT_System_swigregister(ContinuousBIT_System) - -class ContinuousBIT_IMU_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - CLOCK_FAULT = _mscl.ContinuousBIT_IMU_General_CLOCK_FAULT - COMMUNICATION_FAULT = _mscl.ContinuousBIT_IMU_General_COMMUNICATION_FAULT - TIMING_OVERRUN = _mscl.ContinuousBIT_IMU_General_TIMING_OVERRUN - CALIBRATION_ERROR_ACCEL = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_ACCEL - CALIBRATION_ERROR_GYRO = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_GYRO - CALIBRATION_ERROR_MAG = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_MAG - - def flags(self): - return _mscl.ContinuousBIT_IMU_General_flags(self) - - def clockFault(self): - return _mscl.ContinuousBIT_IMU_General_clockFault(self) - - def communicationFault(self): - return _mscl.ContinuousBIT_IMU_General_communicationFault(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_IMU_General_timingOverrun(self) - - def calibrationErrorAccel(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorAccel(self) - - def calibrationErrorGyro(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorGyro(self) - - def calibrationErrorMag(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorMag(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_General - -# Register ContinuousBIT_IMU_General in _mscl: -_mscl.ContinuousBIT_IMU_General_swigregister(ContinuousBIT_IMU_General) - -class ContinuousBIT_IMU_Sensors(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - ACCEL_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_GENERAL_FAULT - ACCEL_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_OVERRANGE - ACCEL_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_SELF_TEST_FAIL - GYRO_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_GYRO_GENERAL_FAULT - GYRO_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_GYRO_OVERRANGE - GYRO_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_GYRO_SELF_TEST_FAIL - MAG_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_MAG_GENERAL_FAULT - MAG_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_MAG_OVERRANGE - MAG_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_MAG_SELF_TEST_FAIL - PRESSURE_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_GENERAL_FAULT - PRESSURE_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_OVERRANGE - PRESSURE_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_SELF_TEST_FAIL - - def flags(self): - return _mscl.ContinuousBIT_IMU_Sensors_flags(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureSelfTestFail(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_Sensors - -# Register ContinuousBIT_IMU_Sensors in _mscl: -_mscl.ContinuousBIT_IMU_Sensors_swigregister(ContinuousBIT_IMU_Sensors) - -class ContinuousBIT_IMU(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_IMU_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_IMU_GENERAL_FLAGS - SENSORS_FLAGS = _mscl.ContinuousBIT_IMU_SENSORS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_IMU_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU - -# Register ContinuousBIT_IMU in _mscl: -_mscl.ContinuousBIT_IMU_swigregister(ContinuousBIT_IMU) - -class ContinuousBIT_Filter_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - TIMING_OVERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_OVERRUN - TIMING_UNDERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_UNDERRUN - - def flags(self): - return _mscl.ContinuousBIT_Filter_General_flags(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_Filter_General_timingOverrun(self) - - def timingUnderrun(self): - return _mscl.ContinuousBIT_Filter_General_timingUnderrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter_General - -# Register ContinuousBIT_Filter_General in _mscl: -_mscl.ContinuousBIT_Filter_General_swigregister(ContinuousBIT_Filter_General) - -class ContinuousBIT_Filter(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_Filter_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_Filter_GENERAL_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_Filter_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter - -# Register ContinuousBIT_Filter in _mscl: -_mscl.ContinuousBIT_Filter_swigregister(ContinuousBIT_Filter) - -class CV7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_General_swiginit(self, _mscl.new_CV7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_General - -# Register CV7ContinuousBIT_System_General in _mscl: -_mscl.CV7ContinuousBIT_System_General_swigregister(CV7ContinuousBIT_System_General) - -class CV7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_Process_swiginit(self, _mscl.new_CV7ContinuousBIT_System_Process(*args)) - IMU_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_IMU_PROCESS_FAULT - IMU_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_IMU_RATE_MISMATCH - IMU_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_IMU_DROPPED_DATA - IMU_STUCK = _mscl.CV7ContinuousBIT_System_Process_IMU_STUCK - FILTER_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_FILTER_PROCESS_FAULT - FILTER_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_FILTER_DROPPED_DATA - FILTER_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_FILTER_RATE_MISMATCH - FILTER_STUCK = _mscl.CV7ContinuousBIT_System_Process_FILTER_STUCK - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_filterStuck(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_Process - -# Register CV7ContinuousBIT_System_Process in _mscl: -_mscl.CV7ContinuousBIT_System_Process_swigregister(CV7ContinuousBIT_System_Process) - -class CV7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_swiginit(self, _mscl.new_CV7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.CV7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System - -# Register CV7ContinuousBIT_System in _mscl: -_mscl.CV7ContinuousBIT_System_swigregister(CV7ContinuousBIT_System) - -class CV7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_General - -# Register CV7ContinuousBIT_IMU_General in _mscl: -_mscl.CV7ContinuousBIT_IMU_General_swigregister(CV7ContinuousBIT_IMU_General) - -class CV7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_Sensors - -# Register CV7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.CV7ContinuousBIT_IMU_Sensors_swigregister(CV7ContinuousBIT_IMU_Sensors) - -class CV7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU(*args)) - FACTORY_BITS_INVALID = _mscl.CV7ContinuousBIT_IMU_FACTORY_BITS_INVALID - - def general(self): - return _mscl.CV7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.CV7ContinuousBIT_IMU_sensors(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_IMU_factoryBitsInvalid(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU - -# Register CV7ContinuousBIT_IMU in _mscl: -_mscl.CV7ContinuousBIT_IMU_swigregister(CV7ContinuousBIT_IMU) - -class CV7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter_General(*args)) - FAULT = _mscl.CV7ContinuousBIT_Filter_General_FAULT - - def fault(self): - return _mscl.CV7ContinuousBIT_Filter_General_fault(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter_General - -# Register CV7ContinuousBIT_Filter_General in _mscl: -_mscl.CV7ContinuousBIT_Filter_General_swigregister(CV7ContinuousBIT_Filter_General) - -class CV7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter - -# Register CV7ContinuousBIT_Filter in _mscl: -_mscl.CV7ContinuousBIT_Filter_swigregister(CV7ContinuousBIT_Filter) - -class CV7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.CV7ContinuousBIT_swiginit(self, _mscl.new_CV7ContinuousBIT(bytes)) - - def system(self): - return _mscl.CV7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.CV7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.CV7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.CV7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.CV7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.CV7ContinuousBIT_bufferOverrun(self) - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_filterStuck(self) - - def imu(self): - return _mscl.CV7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.CV7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.CV7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.CV7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.CV7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.CV7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.CV7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.CV7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.CV7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.CV7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.CV7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.CV7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.CV7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.CV7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.CV7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.CV7ContinuousBIT_pressureSelfTestFail(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_factoryBitsInvalid(self) - - def filter(self): - return _mscl.CV7ContinuousBIT_filter(self) - - def filterFault(self): - return _mscl.CV7ContinuousBIT_filterFault(self) - - def filterTimingOverrun(self): - return _mscl.CV7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.CV7ContinuousBIT_filterTimingUnderrun(self) - - def as_MipDataPoints(self): - return _mscl.CV7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT - -# Register CV7ContinuousBIT in _mscl: -_mscl.CV7ContinuousBIT_swigregister(CV7ContinuousBIT) - -class GQ7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_General - -# Register GQ7ContinuousBIT_System_General in _mscl: -_mscl.GQ7ContinuousBIT_System_General_swigregister(GQ7ContinuousBIT_System_General) - -class GQ7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_Process_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_Process(*args)) - IMU_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_CONTROL_LINE_FAULT - IMU_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_COMMAND_RESPONSE_FAULT - IMU_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_SPI_TRANSFER_FAULT - IMU_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_DATA_FRAME_FAULT - FILTER_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_CONTROL_LINE_FAULT - FILTER_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_COMMAND_RESPONSE_FAULT - FILTER_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_SPI_TRANSFER_FAULT - FILTER_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_DATA_FRAME_FAULT - GNSS_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_CONTROL_LINE_FAULT - GNSS_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_COMMAND_RESPONSE_FAULT - GNSS_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_SPI_TRANSFER_FAULT - GNSS_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_DATA_FRAME_FAULT - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssDataFrameFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_Process - -# Register GQ7ContinuousBIT_System_Process in _mscl: -_mscl.GQ7ContinuousBIT_System_Process_swigregister(GQ7ContinuousBIT_System_Process) - -class GQ7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_swiginit(self, _mscl.new_GQ7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.GQ7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System - -# Register GQ7ContinuousBIT_System in _mscl: -_mscl.GQ7ContinuousBIT_System_swigregister(GQ7ContinuousBIT_System) - -class GQ7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_General - -# Register GQ7ContinuousBIT_IMU_General in _mscl: -_mscl.GQ7ContinuousBIT_IMU_General_swigregister(GQ7ContinuousBIT_IMU_General) - -class GQ7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_Sensors - -# Register GQ7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.GQ7ContinuousBIT_IMU_Sensors_swigregister(GQ7ContinuousBIT_IMU_Sensors) - -class GQ7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.GQ7ContinuousBIT_IMU_sensors(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU - -# Register GQ7ContinuousBIT_IMU in _mscl: -_mscl.GQ7ContinuousBIT_IMU_swigregister(GQ7ContinuousBIT_IMU) - -class GQ7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_HARDWARE_FAULT - COMMUNICATION_ERROR_IMU_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_IMU_SPI - COMMUNICATION_ERROR_GNSS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_GNSS_SPI - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_COMMS_UART = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_UART - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationError(self) - - def communicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorImuSpi(self) - - def communicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorGnssSpi(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsSpi(self) - - def communicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsUart(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter_General - -# Register GQ7ContinuousBIT_Filter_General in _mscl: -_mscl.GQ7ContinuousBIT_Filter_General_swigregister(GQ7ContinuousBIT_Filter_General) - -class GQ7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter - -# Register GQ7ContinuousBIT_Filter in _mscl: -_mscl.GQ7ContinuousBIT_Filter_swigregister(GQ7ContinuousBIT_Filter) - -class GQ7ContinuousBIT_GNSS_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_HARDWARE_FAULT - COMMUNICATION_ERROR_COMMS_SERIAL = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SERIAL - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_NAV_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_NAV_SPI - GPS_TIME_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_GPS_TIME_FAULT - TIMING_OVERRUN = _mscl.GQ7ContinuousBIT_GNSS_General_TIMING_OVERRUN - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_flags(self) - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationError(self) - - def communicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSerial(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSpi(self) - - def communicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_gpsTimeFault(self) - - def timingOverrun(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_timingOverrun(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_General - -# Register GQ7ContinuousBIT_GNSS_General in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_General_swigregister(GQ7ContinuousBIT_GNSS_General) - -class GQ7ContinuousBIT_GNSS_Receivers(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_Receivers_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_Receivers(*args)) - POWER_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_1 - FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_1 - SHORTED_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_1 - OPEN_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_1 - SOLUTION_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_1 - POWER_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_2 - FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_2 - SHORTED_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_2 - OPEN_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_2 - SOLUTION_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_2 - RTCM_COMMUNICATION_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTCM_COMMUNICATION_FAULT - RTK_DONGLE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTK_DONGLE_FAULT - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_flags(self) - - def powerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver1(self) - - def faultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver1(self) - - def shortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna1(self) - - def openAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna1(self) - - def solutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver1(self) - - def powerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver2(self) - - def faultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver2(self) - - def shortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna2(self) - - def openAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna2(self) - - def solutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtkDongleFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_Receivers - -# Register GQ7ContinuousBIT_GNSS_Receivers in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_Receivers_swigregister(GQ7ContinuousBIT_GNSS_Receivers) - -class GQ7ContinuousBIT_GNSS(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS(*args)) - RESPONSE_OFFSET = _mscl.GQ7ContinuousBIT_GNSS_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_GENERAL_FLAGS - RECEIVERS_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_RECEIVERS_FLAGS - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_flags(self) - - def general(self): - return _mscl.GQ7ContinuousBIT_GNSS_general(self) - - def receivers(self): - return _mscl.GQ7ContinuousBIT_GNSS_receivers(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS - -# Register GQ7ContinuousBIT_GNSS in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_swigregister(GQ7ContinuousBIT_GNSS) - -class GQ7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.GQ7ContinuousBIT_swiginit(self, _mscl.new_GQ7ContinuousBIT(bytes)) - - def system(self): - return _mscl.GQ7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.GQ7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.GQ7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.GQ7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.GQ7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.GQ7ContinuousBIT_bufferOverrun(self) - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_gnssDataFrameFault(self) - - def imu(self): - return _mscl.GQ7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.GQ7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.GQ7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.GQ7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.GQ7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.GQ7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.GQ7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.GQ7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.GQ7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.GQ7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_pressureSelfTestFail(self) - - def filter(self): - return _mscl.GQ7ContinuousBIT_filter(self) - - def filterClockFault(self): - return _mscl.GQ7ContinuousBIT_filterClockFault(self) - - def filterHardwareFault(self): - return _mscl.GQ7ContinuousBIT_filterHardwareFault(self) - - def filterTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingUnderrun(self) - - def filterCommunicationError(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationError(self) - - def filterCommunicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorImuSpi(self) - - def filterCommunicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorGnssSpi(self) - - def filterCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsSpi(self) - - def filterCommunicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsUart(self) - - def gnss(self): - return _mscl.GQ7ContinuousBIT_gnss(self) - - def gnssClockFault(self): - return _mscl.GQ7ContinuousBIT_gnssClockFault(self) - - def gnssHardwareFault(self): - return _mscl.GQ7ContinuousBIT_gnssHardwareFault(self) - - def gnssCommunicationError(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationError(self) - - def gnssCommunicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSerial(self) - - def gnssCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSpi(self) - - def gnssCommunicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_gpsTimeFault(self) - - def gnssTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_gnssTimingOverrun(self) - - def gnssPowerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver1(self) - - def gnssFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver1(self) - - def gnssShortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna1(self) - - def gnssOpenAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna1(self) - - def gnssSolutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver1(self) - - def gnssPowerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver2(self) - - def gnssFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver2(self) - - def gnssShortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna2(self) - - def gnssOpenAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna2(self) - - def gnssSolutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_rtkDongleFault(self) - - def as_MipDataPoints(self): - return _mscl.GQ7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT - -# Register GQ7ContinuousBIT in _mscl: -_mscl.GQ7ContinuousBIT_swigregister(GQ7ContinuousBIT) - -class MipSharedDataFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EVENT_SOURCE_NONE = _mscl.MipSharedDataFields_EVENT_SOURCE_NONE - EVENT_SOURCE_UNKNOWN = _mscl.MipSharedDataFields_EVENT_SOURCE_UNKNOWN - - def __init__(self): - _mscl.MipSharedDataFields_swiginit(self, _mscl.new_MipSharedDataFields()) - - def hasEventSource(self): - return _mscl.MipSharedDataFields_hasEventSource(self) - - def eventSource(self): - return _mscl.MipSharedDataFields_eventSource(self) - - def hasTicks(self): - return _mscl.MipSharedDataFields_hasTicks(self) - - def ticks(self): - return _mscl.MipSharedDataFields_ticks(self) - - def hasDeltaTicks(self): - return _mscl.MipSharedDataFields_hasDeltaTicks(self) - - def deltaTicks(self): - return _mscl.MipSharedDataFields_deltaTicks(self) - - def hasGpsTimestamp(self): - return _mscl.MipSharedDataFields_hasGpsTimestamp(self) - - def gpsTimestamp(self): - return _mscl.MipSharedDataFields_gpsTimestamp(self) - - def gpsTimestampValid(self): - return _mscl.MipSharedDataFields_gpsTimestampValid(self) - - def hasDeltaTime(self): - return _mscl.MipSharedDataFields_hasDeltaTime(self) - - def deltaTime(self): - return _mscl.MipSharedDataFields_deltaTime(self) - - def hasReferenceTime(self): - return _mscl.MipSharedDataFields_hasReferenceTime(self) - - def referenceTime(self): - return _mscl.MipSharedDataFields_referenceTime(self) - - def hasDeltaReferenceTime(self): - return _mscl.MipSharedDataFields_hasDeltaReferenceTime(self) - - def deltaReferenceTime(self): - return _mscl.MipSharedDataFields_deltaReferenceTime(self) - - def hasExternalTimestamp(self): - return _mscl.MipSharedDataFields_hasExternalTimestamp(self) - - def externalTimestamp(self): - return _mscl.MipSharedDataFields_externalTimestamp(self) - - def externalTimestampValid(self): - return _mscl.MipSharedDataFields_externalTimestampValid(self) - - def hasDeltaExternalTime(self): - return _mscl.MipSharedDataFields_hasDeltaExternalTime(self) - - def deltaExternalTime(self): - return _mscl.MipSharedDataFields_deltaExternalTime(self) - - def deltaExternalTimeValid(self): - return _mscl.MipSharedDataFields_deltaExternalTimeValid(self) - - def get(self, *args): - return _mscl.MipSharedDataFields_get(self, *args) - __swig_destroy__ = _mscl.delete_MipSharedDataFields - -# Register MipSharedDataFields in _mscl: -_mscl.MipSharedDataFields_swigregister(MipSharedDataFields) - -class MipDataPacket(MipPacket): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipDataPacket_swiginit(self, _mscl.new_MipDataPacket(*args)) - - def data(self): - return _mscl.MipDataPacket_data(self) - - def shared(self): - return _mscl.MipDataPacket_shared(self) - - def collectedTimestamp(self): - return _mscl.MipDataPacket_collectedTimestamp(self) - - def deviceTimestamp(self): - return _mscl.MipDataPacket_deviceTimestamp(self) - - def hasDeviceTime(self): - return _mscl.MipDataPacket_hasDeviceTime(self) - - def deviceTimeValid(self): - return _mscl.MipDataPacket_deviceTimeValid(self) - - def deviceTimeFlags(self): - return _mscl.MipDataPacket_deviceTimeFlags(self) - __swig_destroy__ = _mscl.delete_MipDataPacket - -# Register MipDataPacket in _mscl: -_mscl.MipDataPacket_swigregister(MipDataPacket) - -class RawBytePacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INVALID_PACKET = _mscl.RawBytePacket_INVALID_PACKET - DATA_PACKET = _mscl.RawBytePacket_DATA_PACKET - COMMAND_PACKET = _mscl.RawBytePacket_COMMAND_PACKET - NO_PACKET_FOUND = _mscl.RawBytePacket_NO_PACKET_FOUND - FROM_READ = _mscl.RawBytePacket_FROM_READ - FROM_SEND = _mscl.RawBytePacket_FROM_SEND - - def __init__(self): - _mscl.RawBytePacket_swiginit(self, _mscl.new_RawBytePacket()) - - def type(self, *args): - return _mscl.RawBytePacket_type(self, *args) - - def source(self, *args): - return _mscl.RawBytePacket_source(self, *args) - - def payload(self, *args): - return _mscl.RawBytePacket_payload(self, *args) - __swig_destroy__ = _mscl.delete_RawBytePacket - -# Register RawBytePacket in _mscl: -_mscl.RawBytePacket_swigregister(RawBytePacket) - -class MipNodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_MipNodeFeatures - - @staticmethod - def isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - - def supportsCategory(self, dataClass): - return _mscl.MipNodeFeatures_supportsCategory(self, dataClass) - - def supportsCommand(self, commandId): - return _mscl.MipNodeFeatures_supportsCommand(self, commandId) - - def supportedCommands(self): - return _mscl.MipNodeFeatures_supportedCommands(self) - - def supportsChannelField(self, fieldId): - return _mscl.MipNodeFeatures_supportsChannelField(self, fieldId) - - def filterSupportedChannelFields(self, fields): - return _mscl.MipNodeFeatures_filterSupportedChannelFields(self, fields) - - def supportedChannelFields(self, *args): - return _mscl.MipNodeFeatures_supportedChannelFields(self, *args) - - def supportedSampleRates(self, dataClass): - return _mscl.MipNodeFeatures_supportedSampleRates(self, dataClass) - - def baseDataRate(self, dataClass): - return _mscl.MipNodeFeatures_baseDataRate(self, dataClass) - - def gnssReceiverInfo(self): - return _mscl.MipNodeFeatures_gnssReceiverInfo(self) - - def supportedGnssSources(self): - return _mscl.MipNodeFeatures_supportedGnssSources(self) - - def supportedSensorRanges(self, *args): - return _mscl.MipNodeFeatures_supportedSensorRanges(self, *args) - - def getCommPortInfo(self): - return _mscl.MipNodeFeatures_getCommPortInfo(self) - - def useLegacyIdsForEnableDataStream(self): - return _mscl.MipNodeFeatures_useLegacyIdsForEnableDataStream(self) - - def supportedHeadingUpdateOptions(self): - return _mscl.MipNodeFeatures_supportedHeadingUpdateOptions(self) - - def supportedHeadingAlignmentMethods(self): - return _mscl.MipNodeFeatures_supportedHeadingAlignmentMethods(self) - - def supportedStatusSelectors(self): - return _mscl.MipNodeFeatures_supportedStatusSelectors(self) - - def supportedEstimationControlOptions(self): - return _mscl.MipNodeFeatures_supportedEstimationControlOptions(self) - - def supportedVehicleModeTypes(self): - return _mscl.MipNodeFeatures_supportedVehicleModeTypes(self) - - def supportedAdaptiveMeasurementModes(self): - return _mscl.MipNodeFeatures_supportedAdaptiveMeasurementModes(self) - - def supportedAdaptiveFilterLevels(self): - return _mscl.MipNodeFeatures_supportedAdaptiveFilterLevels(self) - - def supportedAidingMeasurementOptions(self): - return _mscl.MipNodeFeatures_supportedAidingMeasurementOptions(self) - - def supportedPpsSourceOptions(self): - return _mscl.MipNodeFeatures_supportedPpsSourceOptions(self) - - def supportedGpioPins(self): - return _mscl.MipNodeFeatures_supportedGpioPins(self) - - def supportedGpioPinModes(self, feature, behavior): - return _mscl.MipNodeFeatures_supportedGpioPinModes(self, feature, behavior) - - def supportedGpioBehaviors(self, feature, pin): - return _mscl.MipNodeFeatures_supportedGpioBehaviors(self, feature, pin) - - def supportedGpioFeatures(self, pin): - return _mscl.MipNodeFeatures_supportedGpioFeatures(self, pin) - - def supportedGpioConfigurations(self): - return _mscl.MipNodeFeatures_supportedGpioConfigurations(self) - - def supportedGnssSignalConfigurations(self): - return _mscl.MipNodeFeatures_supportedGnssSignalConfigurations(self) - - def supportedDeclinationSources(self): - return _mscl.MipNodeFeatures_supportedDeclinationSources(self) - - def supportedInclinationSources(self): - return _mscl.MipNodeFeatures_supportedInclinationSources(self) - - def supportedMagneticMagnitudeSources(self): - return _mscl.MipNodeFeatures_supportedMagneticMagnitudeSources(self) - - def supportedEventThresholdChannels(self): - return _mscl.MipNodeFeatures_supportedEventThresholdChannels(self) - - def supportedEventActionInfo(self): - return _mscl.MipNodeFeatures_supportedEventActionInfo(self) - - def supportedEventTriggerInfo(self): - return _mscl.MipNodeFeatures_supportedEventTriggerInfo(self) - - def supportsNorthCompensation(self): - return _mscl.MipNodeFeatures_supportsNorthCompensation(self) - - def supportedLowPassFilterChannelFields(self): - return _mscl.MipNodeFeatures_supportedLowPassFilterChannelFields(self) - - def maxMeasurementReferenceFrameId(self): - return _mscl.MipNodeFeatures_maxMeasurementReferenceFrameId(self) - -# Register MipNodeFeatures in _mscl: -_mscl.MipNodeFeatures_swigregister(MipNodeFeatures) - -def MipNodeFeatures_isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - -class MipNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.MipNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - def getConfigCommandBytes(self): - return _mscl.MipNode_getConfigCommandBytes(self) - - def sendCommandBytes(self, *args): - return _mscl.MipNode_sendCommandBytes(self, *args) - - @staticmethod - def deviceName(serial): - return _mscl.MipNode_deviceName(serial) - - def connection(self): - return _mscl.MipNode_connection(self) - - def features(self): - return _mscl.MipNode_features(self) - - def clearDeviceInfo(self): - return _mscl.MipNode_clearDeviceInfo(self) - - def lastCommunicationTime(self): - return _mscl.MipNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.MipNode_lastDeviceState(self) - - def setLastDeviceState(self, state): - return _mscl.MipNode_setLastDeviceState(self, state) - - def firmwareVersion(self): - return _mscl.MipNode_firmwareVersion(self) - - def model(self): - return _mscl.MipNode_model(self) - - def modelName(self): - return _mscl.MipNode_modelName(self) - - def modelNumber(self): - return _mscl.MipNode_modelNumber(self) - - def serialNumber(self): - return _mscl.MipNode_serialNumber(self) - - def lotNumber(self): - return _mscl.MipNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.MipNode_deviceOptions(self) - - def timeout(self, *args): - return _mscl.MipNode_timeout(self, *args) - - def name(self): - return _mscl.MipNode_name(self) - - def ping(self): - return _mscl.MipNode_ping(self) - - def setToIdle(self): - return _mscl.MipNode_setToIdle(self) - - def cyclePower(self): - return _mscl.MipNode_cyclePower(self) - - def resume(self): - return _mscl.MipNode_resume(self) - - def getCommunicationMode(self): - return _mscl.MipNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.MipNode_setCommunicationMode(self, communicationMode) - - def saveSettingsAsStartup(self, *args): - return _mscl.MipNode_saveSettingsAsStartup(self, *args) - - def loadStartupSettings(self, *args): - return _mscl.MipNode_loadStartupSettings(self, *args) - - def loadFactoryDefaultSettings(self, *args): - return _mscl.MipNode_loadFactoryDefaultSettings(self, *args) - - def setUARTBaudRate(self, *args): - return _mscl.MipNode_setUARTBaudRate(self, *args) - - def getUARTBaudRate(self, portId=1): - return _mscl.MipNode_getUARTBaudRate(self, portId) - - def getRawBytePackets(self, timeout=0, maxPackets=0): - return _mscl.MipNode_getRawBytePackets(self, timeout, maxPackets) - -# Register MipNode in _mscl: -_mscl.MipNode_swigregister(MipNode) - -def MipNode_deviceName(serial): - return _mscl.MipNode_deviceName(serial) - -class InertialNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.InertialNode_swiginit(self, _mscl.new_InertialNode(connection)) - __swig_destroy__ = _mscl.delete_InertialNode - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.InertialNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.InertialNode_totalPackets(self) - - def pollData(self, *args): - return _mscl.InertialNode_pollData(self, *args) - - def getDataRateBase(self, dataClass): - return _mscl.InertialNode_getDataRateBase(self, dataClass) - - def getActiveChannelFields(self, dataClass): - return _mscl.InertialNode_getActiveChannelFields(self, dataClass) - - def setActiveChannelFields(self, dataClass, channels): - return _mscl.InertialNode_setActiveChannelFields(self, dataClass, channels) - - def saveActiveChannelFields(self, dataClass): - return _mscl.InertialNode_saveActiveChannelFields(self, dataClass) - - def setFactoryStreamingChannels(self, option): - return _mscl.InertialNode_setFactoryStreamingChannels(self, option) - - def getInterfaceControl(self, interfaceId): - return _mscl.InertialNode_getInterfaceControl(self, interfaceId) - - def setInterfaceControl(self, *args): - return _mscl.InertialNode_setInterfaceControl(self, *args) - - def getCommunicationMode(self): - return _mscl.InertialNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.InertialNode_setCommunicationMode(self, communicationMode) - - def isDataStreamEnabled(self, dataClass): - return _mscl.InertialNode_isDataStreamEnabled(self, dataClass) - - def enableDataStream(self, dataClass, enable=True, resumeStreaming=True): - return _mscl.InertialNode_enableDataStream(self, dataClass, enable, resumeStreaming) - - def resetFilter(self): - return _mscl.InertialNode_resetFilter(self) - - def runFilter(self): - return _mscl.InertialNode_runFilter(self) - - def getAutoInitialization(self): - return _mscl.InertialNode_getAutoInitialization(self) - - def setAutoInitialization(self, enable): - return _mscl.InertialNode_setAutoInitialization(self, enable) - - def getAltitudeAid(self): - return _mscl.InertialNode_getAltitudeAid(self) - - def setAltitudeAid(self, enable): - return _mscl.InertialNode_setAltitudeAid(self, enable) - - def getPitchRollAid(self): - return _mscl.InertialNode_getPitchRollAid(self) - - def setPitchRollAid(self, enable): - return _mscl.InertialNode_setPitchRollAid(self, enable) - - def enableVerticalGyroConstraint(self, enable): - return _mscl.InertialNode_enableVerticalGyroConstraint(self, enable) - - def verticalGyroConstraintEnabled(self): - return _mscl.InertialNode_verticalGyroConstraintEnabled(self) - - def enableWheeledVehicleConstraint(self, enable): - return _mscl.InertialNode_enableWheeledVehicleConstraint(self, enable) - - def wheeledVehicleConstraintEnabled(self): - return _mscl.InertialNode_wheeledVehicleConstraintEnabled(self) - - def setVelocityZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setVelocityZUPT(self, ZUPTSettings) - - def getVelocityZUPT(self): - return _mscl.InertialNode_getVelocityZUPT(self) - - def setAngularRateZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setAngularRateZUPT(self, ZUPTSettings) - - def getAngularRateZUPT(self): - return _mscl.InertialNode_getAngularRateZUPT(self) - - def cmdedVelZUPT(self): - return _mscl.InertialNode_cmdedVelZUPT(self) - - def cmdedAngRateZUPT(self): - return _mscl.InertialNode_cmdedAngRateZUPT(self) - - def setInitialAttitude(self, attitude): - return _mscl.InertialNode_setInitialAttitude(self, attitude) - - def setInitialHeading(self, heading): - return _mscl.InertialNode_setInitialHeading(self, heading) - - def getInitialFilterConfiguration(self): - return _mscl.InertialNode_getInitialFilterConfiguration(self) - - def setInitialFilterConfiguration(self, filterConfig): - return _mscl.InertialNode_setInitialFilterConfiguration(self, filterConfig) - - def getSensorToVehicleRotation_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleRotation_eulerAngles(self) - - def setSensorToVehicleRotation_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleRotation_eulerAngles(self, angles) - - def getSensorToVehicleRotation_matrix(self): - return _mscl.InertialNode_getSensorToVehicleRotation_matrix(self) - - def setSensorToVehicleRotation_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleRotation_matrix(self, dcm) - - def getSensorToVehicleRotation_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleRotation_quaternion(self) - - def setSensorToVehicleRotation_quaternion(self, rotation): - return _mscl.InertialNode_setSensorToVehicleRotation_quaternion(self, rotation) - - def getSensorToVehicleTransform_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleTransform_eulerAngles(self) - - def setSensorToVehicleTransform_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleTransform_eulerAngles(self, angles) - - def getSensorToVehicleTransform_matrix(self): - return _mscl.InertialNode_getSensorToVehicleTransform_matrix(self) - - def setSensorToVehicleTransform_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleTransform_matrix(self, dcm) - - def getSensorToVehicleTransform_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleTransform_quaternion(self) - - def setSensorToVehicleTransform_quaternion(self, transformation): - return _mscl.InertialNode_setSensorToVehicleTransform_quaternion(self, transformation) - - def getSensorToVehicleOffset(self): - return _mscl.InertialNode_getSensorToVehicleOffset(self) - - def setSensorToVehicleOffset(self, offset): - return _mscl.InertialNode_setSensorToVehicleOffset(self, offset) - - def getAntennaOffset(self): - return _mscl.InertialNode_getAntennaOffset(self) - - def setAntennaOffset(self, offset): - return _mscl.InertialNode_setAntennaOffset(self, offset) - - def getGNSSAssistedFixControl(self): - return _mscl.InertialNode_getGNSSAssistedFixControl(self) - - def setGNSSAssistedFixControl(self, enableAssistedFix): - return _mscl.InertialNode_setGNSSAssistedFixControl(self, enableAssistedFix) - - def getGNSSAssistTimeUpdate(self): - return _mscl.InertialNode_getGNSSAssistTimeUpdate(self) - - def setGNSSAssistTimeUpdate(self, timeUpdate): - return _mscl.InertialNode_setGNSSAssistTimeUpdate(self, timeUpdate) - - def getGPSTimeUpdate(self, timeFrame): - return _mscl.InertialNode_getGPSTimeUpdate(self, timeFrame) - - def setGPSTimeUpdate(self, arg2, timeData): - return _mscl.InertialNode_setGPSTimeUpdate(self, arg2, timeData) - - def setConstellationSettings(self, dataToUse): - return _mscl.InertialNode_setConstellationSettings(self, dataToUse) - - def getConstellationSettings(self): - return _mscl.InertialNode_getConstellationSettings(self) - - def setSBASSettings(self, dataToUse): - return _mscl.InertialNode_setSBASSettings(self, dataToUse) - - def getSBASSettings(self): - return _mscl.InertialNode_getSBASSettings(self) - - def setAccelerometerBias(self, biasVector): - return _mscl.InertialNode_setAccelerometerBias(self, biasVector) - - def getAccelerometerBias(self): - return _mscl.InertialNode_getAccelerometerBias(self) - - def setGyroBias(self, biasVector): - return _mscl.InertialNode_setGyroBias(self, biasVector) - - def getGyroBias(self): - return _mscl.InertialNode_getGyroBias(self) - - def captureGyroBias(self, samplingTime): - return _mscl.InertialNode_captureGyroBias(self, samplingTime) - - def findMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_findMagnetometerCaptureAutoCalibration(self) - - def saveMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_saveMagnetometerCaptureAutoCalibration(self) - - def setMagnetometerSoftIronMatrix(self, matrix): - return _mscl.InertialNode_setMagnetometerSoftIronMatrix(self, matrix) - - def getMagnetometerSoftIronMatrix(self): - return _mscl.InertialNode_getMagnetometerSoftIronMatrix(self) - - def setMagnetometerHardIronOffset(self, offsetVector): - return _mscl.InertialNode_setMagnetometerHardIronOffset(self, offsetVector) - - def getMagnetometerHardIronOffset(self): - return _mscl.InertialNode_getMagnetometerHardIronOffset(self) - - def setConingAndScullingEnable(self, enable): - return _mscl.InertialNode_setConingAndScullingEnable(self, enable) - - def getConingAndScullingEnable(self): - return _mscl.InertialNode_getConingAndScullingEnable(self) - - def setLowPassFilterSettings(self, data): - return _mscl.InertialNode_setLowPassFilterSettings(self, data) - - def getLowPassFilterSettings(self, dataDescriptors): - return _mscl.InertialNode_getLowPassFilterSettings(self, dataDescriptors) - - def setComplementaryFilterSettings(self, data): - return _mscl.InertialNode_setComplementaryFilterSettings(self, data) - - def getComplementaryFilterSettings(self): - return _mscl.InertialNode_getComplementaryFilterSettings(self) - - def getBasicDeviceStatus(self): - return _mscl.InertialNode_getBasicDeviceStatus(self) - - def getDiagnosticDeviceStatus(self): - return _mscl.InertialNode_getDiagnosticDeviceStatus(self) - - def sendRawRTCM_2_3Message(self, theMessage): - return _mscl.InertialNode_sendRawRTCM_2_3Message(self, theMessage) - - def setVehicleDynamicsMode(self, mode): - return _mscl.InertialNode_setVehicleDynamicsMode(self, mode) - - def getVehicleDynamicsMode(self): - return _mscl.InertialNode_getVehicleDynamicsMode(self) - - def setEstimationControlFlags(self, flags): - return _mscl.InertialNode_setEstimationControlFlags(self, flags) - - def getEstimationControlFlags(self): - return _mscl.InertialNode_getEstimationControlFlags(self) - - def setInclinationSource(self, options): - return _mscl.InertialNode_setInclinationSource(self, options) - - def getInclinationSource(self): - return _mscl.InertialNode_getInclinationSource(self) - - def setDeclinationSource(self, options): - return _mscl.InertialNode_setDeclinationSource(self, options) - - def getDeclinationSource(self): - return _mscl.InertialNode_getDeclinationSource(self) - - def setMagneticFieldMagnitudeSource(self, options): - return _mscl.InertialNode_setMagneticFieldMagnitudeSource(self, options) - - def getMagneticFieldMagnitudeSource(self): - return _mscl.InertialNode_getMagneticFieldMagnitudeSource(self) - - def setGNSS_SourceControl(self, gnssSource): - return _mscl.InertialNode_setGNSS_SourceControl(self, gnssSource) - - def getGNSS_SourceControl(self): - return _mscl.InertialNode_getGNSS_SourceControl(self) - - def sendExternalGNSSUpdate(self, gnssUpdateData): - return _mscl.InertialNode_sendExternalGNSSUpdate(self, gnssUpdateData) - - def setHeadingUpdateControl(self, headingUpdateOptions): - return _mscl.InertialNode_setHeadingUpdateControl(self, headingUpdateOptions) - - def tareOrientation(self, axisValue): - return _mscl.InertialNode_tareOrientation(self, axisValue) - - def getHeadingUpdateControl(self): - return _mscl.InertialNode_getHeadingUpdateControl(self) - - def setGravityErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setGravityErrorAdaptiveMeasurement(self, data) - - def getGravityErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getGravityErrorAdaptiveMeasurement(self) - - def setMagnetometerErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagnetometerErrorAdaptiveMeasurement(self, data) - - def getMagnetometerErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagnetometerErrorAdaptiveMeasurement(self) - - def setMagDipAngleErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagDipAngleErrorAdaptiveMeasurement(self, data) - - def getMagDipAngleErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagDipAngleErrorAdaptiveMeasurement(self) - - def setMagNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setMagNoiseStandardDeviation(self, data) - - def getMagNoiseStandardDeviation(self): - return _mscl.InertialNode_getMagNoiseStandardDeviation(self) - - def setGravNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGravNoiseStandardDeviation(self, data) - - def getGravNoiseStandardDeviation(self): - return _mscl.InertialNode_getGravNoiseStandardDeviation(self) - - def setAccelNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setAccelNoiseStandardDeviation(self, data) - - def getAccelNoiseStandardDeviation(self): - return _mscl.InertialNode_getAccelNoiseStandardDeviation(self) - - def setGyroNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGyroNoiseStandardDeviation(self, data) - - def getGyroNoiseStandardDeviation(self): - return _mscl.InertialNode_getGyroNoiseStandardDeviation(self) - - def setPressureAltNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setPressureAltNoiseStandardDeviation(self, data) - - def getPressureAltNoiseStandardDeviation(self): - return _mscl.InertialNode_getPressureAltNoiseStandardDeviation(self) - - def setHardIronOffsetProcessNoise(self, data): - return _mscl.InertialNode_setHardIronOffsetProcessNoise(self, data) - - def getHardIronOffsetProcessNoise(self): - return _mscl.InertialNode_getHardIronOffsetProcessNoise(self) - - def setAccelBiasModelParams(self, data): - return _mscl.InertialNode_setAccelBiasModelParams(self, data) - - def getAccelBiasModelParams(self): - return _mscl.InertialNode_getAccelBiasModelParams(self) - - def setGyroBiasModelParams(self, data): - return _mscl.InertialNode_setGyroBiasModelParams(self, data) - - def getGyroBiasModelParams(self): - return _mscl.InertialNode_getGyroBiasModelParams(self) - - def setSoftIronMatrixProcessNoise(self, data): - return _mscl.InertialNode_setSoftIronMatrixProcessNoise(self, data) - - def getSoftIronMatrixProcessNoise(self): - return _mscl.InertialNode_getSoftIronMatrixProcessNoise(self) - - def setFixedReferencePosition(self, data): - return _mscl.InertialNode_setFixedReferencePosition(self, data) - - def getFixedReferencePosition(self): - return _mscl.InertialNode_getFixedReferencePosition(self) - - def setGPSDynamicsMode(self, data): - return _mscl.InertialNode_setGPSDynamicsMode(self, data) - - def getGPSDynamicsMode(self): - return _mscl.InertialNode_getGPSDynamicsMode(self) - - def setDevicePowerState(self, device, data): - return _mscl.InertialNode_setDevicePowerState(self, device, data) - - def getDevicePowerState(self, device): - return _mscl.InertialNode_getDevicePowerState(self, device) - - def setDeviceStreamFormat(self, device, data): - return _mscl.InertialNode_setDeviceStreamFormat(self, device, data) - - def getDeviceStreamFormat(self, device): - return _mscl.InertialNode_getDeviceStreamFormat(self, device) - - def setSignalConditioningSettings(self, data): - return _mscl.InertialNode_setSignalConditioningSettings(self, data) - - def getSignalConditioningSettings(self): - return _mscl.InertialNode_getSignalConditioningSettings(self) - - def setEnableDisableMeasurements(self, data): - return _mscl.InertialNode_setEnableDisableMeasurements(self, data) - - def getEnableDisableMeasurements(self): - return _mscl.InertialNode_getEnableDisableMeasurements(self) - - def setGravityNoiseMinimum(self, data): - return _mscl.InertialNode_setGravityNoiseMinimum(self, data) - - def getGravityNoiseMinimum(self): - return _mscl.InertialNode_getGravityNoiseMinimum(self) - - def sendExternalHeadingUpdate(self, *args): - return _mscl.InertialNode_sendExternalHeadingUpdate(self, *args) - - def aidingMeasurementEnabled(self, aidingSource): - return _mscl.InertialNode_aidingMeasurementEnabled(self, aidingSource) - - def enableDisableAidingMeasurement(self, aidingSource, enable): - return _mscl.InertialNode_enableDisableAidingMeasurement(self, aidingSource, enable) - - def getAdaptiveFilterOptions(self): - return _mscl.InertialNode_getAdaptiveFilterOptions(self) - - def setAdaptiveFilterOptions(self, options): - return _mscl.InertialNode_setAdaptiveFilterOptions(self, options) - - def getMultiAntennaOffset(self, receiverId): - return _mscl.InertialNode_getMultiAntennaOffset(self, receiverId) - - def setMultiAntennaOffset(self, receiverId, offset): - return _mscl.InertialNode_setMultiAntennaOffset(self, receiverId, offset) - - def getPpsSource(self): - return _mscl.InertialNode_getPpsSource(self) - - def setPpsSource(self, ppsSource): - return _mscl.InertialNode_setPpsSource(self, ppsSource) - - def getOdometerConfig(self): - return _mscl.InertialNode_getOdometerConfig(self) - - def setOdometerConfig(self, config): - return _mscl.InertialNode_setOdometerConfig(self, config) - - def getSensorRange(self, sensorRangeType): - return _mscl.InertialNode_getSensorRange(self, sensorRangeType) - - def setSensorRange(self, *args): - return _mscl.InertialNode_setSensorRange(self, *args) - - def getGpioConfig(self, pin): - return _mscl.InertialNode_getGpioConfig(self, pin) - - def setGpioConfig(self, config): - return _mscl.InertialNode_setGpioConfig(self, config) - - def getGpioState(self, pin): - return _mscl.InertialNode_getGpioState(self, pin) - - def setGpioState(self, pin, state): - return _mscl.InertialNode_setGpioState(self, pin, state) - - def getEventTriggerMode(self, instance): - return _mscl.InertialNode_getEventTriggerMode(self, instance) - - def setEventTriggerMode(self, instance, mode): - return _mscl.InertialNode_setEventTriggerMode(self, instance, mode) - - def getEventTriggerConfig(self, instance): - return _mscl.InertialNode_getEventTriggerConfig(self, instance) - - def setEventTriggerConfig(self, config): - return _mscl.InertialNode_setEventTriggerConfig(self, config) - - def getEventActionConfig(self, instance): - return _mscl.InertialNode_getEventActionConfig(self, instance) - - def setEventActionConfig(self, config, validateSupported=True): - return _mscl.InertialNode_setEventActionConfig(self, config, validateSupported) - - def getAntennaLeverArmCal(self): - return _mscl.InertialNode_getAntennaLeverArmCal(self) - - def setAntennaLeverArmCal(self, config): - return _mscl.InertialNode_setAntennaLeverArmCal(self, config) - - def getRelativePositionReference(self): - return _mscl.InertialNode_getRelativePositionReference(self) - - def setRelativePositionReference(self, ref): - return _mscl.InertialNode_setRelativePositionReference(self, ref) - - def getLeverArmReferenceOffset(self): - return _mscl.InertialNode_getLeverArmReferenceOffset(self) - - def setLeverArmReferenceOffset(self, offset): - return _mscl.InertialNode_setLeverArmReferenceOffset(self, offset) - - def sendExternalSpeedMeasurementUpdate(self, tow, speed, unc): - return _mscl.InertialNode_sendExternalSpeedMeasurementUpdate(self, tow, speed, unc) - - def getSpeedMeasurementOffset(self): - return _mscl.InertialNode_getSpeedMeasurementOffset(self) - - def setSpeedMeasurementOffset(self, offset): - return _mscl.InertialNode_setSpeedMeasurementOffset(self, offset) - - def getGnssSignalConfig(self): - return _mscl.InertialNode_getGnssSignalConfig(self) - - def setGnssSignalConfig(self, config): - return _mscl.InertialNode_setGnssSignalConfig(self, config) - - def getGnssSpartnConfig(self): - return _mscl.InertialNode_getGnssSpartnConfig(self) - - def setGnssSpartnConfig(self, config): - return _mscl.InertialNode_setGnssSpartnConfig(self, config) - - def rtkEnabled(self): - return _mscl.InertialNode_rtkEnabled(self) - - def enableRtk(self, enable): - return _mscl.InertialNode_enableRtk(self, enable) - - def getEventTriggerStatus(self, *args): - return _mscl.InertialNode_getEventTriggerStatus(self, *args) - - def getEventActionStatus(self, *args): - return _mscl.InertialNode_getEventActionStatus(self, *args) - - def getNmeaMessageFormat(self): - return _mscl.InertialNode_getNmeaMessageFormat(self) - - def setNmeaMessageFormat(self, nmeaFormats): - return _mscl.InertialNode_setNmeaMessageFormat(self, nmeaFormats) - - def getAidingMeasurementReferenceFrames(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrames(self, *args) - - def setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds=False): - return _mscl.InertialNode_setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds) - - def getAidingMeasurementReferenceFrame(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrame(self, *args) - - def setAidingMeasurementReferenceFrame(self, id, frame): - return _mscl.InertialNode_setAidingMeasurementReferenceFrame(self, id, frame) - - def setAidingMeasurementResponseMode(self, mode): - return _mscl.InertialNode_setAidingMeasurementResponseMode(self, mode) - - def getAidingMeasurementResponseMode(self): - return _mscl.InertialNode_getAidingMeasurementResponseMode(self) - - def sendAidingMeasurement(self, *args): - return _mscl.InertialNode_sendAidingMeasurement(self, *args) - - def sendAidingMeasurement_readEcho(self, *args): - return _mscl.InertialNode_sendAidingMeasurement_readEcho(self, *args) - -# Register InertialNode in _mscl: -_mscl.InertialNode_swigregister(InertialNode) - -class DisplacementNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.DisplacementNode_swiginit(self, _mscl.new_DisplacementNode(connection)) - __swig_destroy__ = _mscl.delete_DisplacementNode - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.DisplacementNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - @staticmethod - def deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - - def connection(self): - return _mscl.DisplacementNode_connection(self) - - def features(self): - return _mscl.DisplacementNode_features(self) - - def lastCommunicationTime(self): - return _mscl.DisplacementNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.DisplacementNode_lastDeviceState(self) - - def firmwareVersion(self): - return _mscl.DisplacementNode_firmwareVersion(self) - - def model(self): - return _mscl.DisplacementNode_model(self) - - def modelName(self): - return _mscl.DisplacementNode_modelName(self) - - def modelNumber(self): - return _mscl.DisplacementNode_modelNumber(self) - - def serialNumber(self): - return _mscl.DisplacementNode_serialNumber(self) - - def lotNumber(self): - return _mscl.DisplacementNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.DisplacementNode_deviceOptions(self) - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.DisplacementNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.DisplacementNode_totalPackets(self) - - def timeout(self, *args): - return _mscl.DisplacementNode_timeout(self, *args) - - def name(self): - return _mscl.DisplacementNode_name(self) - - def ping(self): - return _mscl.DisplacementNode_ping(self) - - def setToIdle(self): - return _mscl.DisplacementNode_setToIdle(self) - - def cyclePower(self): - return _mscl.DisplacementNode_cyclePower(self) - - def resume(self): - return _mscl.DisplacementNode_resume(self) - - def getDisplacementOutputDataRate(self): - return _mscl.DisplacementNode_getDisplacementOutputDataRate(self) - - def getAnalogToDisplacementCal(self): - return _mscl.DisplacementNode_getAnalogToDisplacementCal(self) - - def setDeviceTime(self, *args): - return _mscl.DisplacementNode_setDeviceTime(self, *args) - -# Register DisplacementNode in _mscl: -_mscl.DisplacementNode_swigregister(DisplacementNode) - -def DisplacementNode_deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - -class RTKNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.RTKNode_swiginit(self, _mscl.new_RTKNode(connection)) - __swig_destroy__ = _mscl.delete_RTKNode - - def getCommunicationMode(self): - return _mscl.RTKNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.RTKNode_setCommunicationMode(self, communicationMode) - - def getDeviceStatusFlags(self): - return _mscl.RTKNode_getDeviceStatusFlags(self) - - def getActivationCode(self): - return _mscl.RTKNode_getActivationCode(self) - - def getStatusBitfieldVersion(self): - return _mscl.RTKNode_getStatusBitfieldVersion(self) - -# Register RTKNode in _mscl: -_mscl.RTKNode_swigregister(RTKNode) - -class ChannelData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelData___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelData___bool__(self) - - def __len__(self): - return _mscl.ChannelData___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelData___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelData___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelData___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelData___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelData___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelData___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelData_pop(self) - - def append(self, x): - return _mscl.ChannelData_append(self, x) - - def empty(self): - return _mscl.ChannelData_empty(self) - - def size(self): - return _mscl.ChannelData_size(self) - - def swap(self, v): - return _mscl.ChannelData_swap(self, v) - - def begin(self): - return _mscl.ChannelData_begin(self) - - def end(self): - return _mscl.ChannelData_end(self) - - def rbegin(self): - return _mscl.ChannelData_rbegin(self) - - def rend(self): - return _mscl.ChannelData_rend(self) - - def clear(self): - return _mscl.ChannelData_clear(self) - - def get_allocator(self): - return _mscl.ChannelData_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelData_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelData_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelData_swiginit(self, _mscl.new_ChannelData(*args)) - - def push_back(self, x): - return _mscl.ChannelData_push_back(self, x) - - def front(self): - return _mscl.ChannelData_front(self) - - def back(self): - return _mscl.ChannelData_back(self) - - def assign(self, n, x): - return _mscl.ChannelData_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelData_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelData_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelData_reserve(self, n) - - def capacity(self): - return _mscl.ChannelData_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelData - -# Register ChannelData in _mscl: -_mscl.ChannelData_swigregister(ChannelData) - -class MipDataPoints(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPoints_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPoints___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPoints___bool__(self) - - def __len__(self): - return _mscl.MipDataPoints___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPoints___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPoints___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPoints___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPoints___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPoints___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPoints___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPoints_pop(self) - - def append(self, x): - return _mscl.MipDataPoints_append(self, x) - - def empty(self): - return _mscl.MipDataPoints_empty(self) - - def size(self): - return _mscl.MipDataPoints_size(self) - - def swap(self, v): - return _mscl.MipDataPoints_swap(self, v) - - def begin(self): - return _mscl.MipDataPoints_begin(self) - - def end(self): - return _mscl.MipDataPoints_end(self) - - def rbegin(self): - return _mscl.MipDataPoints_rbegin(self) - - def rend(self): - return _mscl.MipDataPoints_rend(self) - - def clear(self): - return _mscl.MipDataPoints_clear(self) - - def get_allocator(self): - return _mscl.MipDataPoints_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPoints_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPoints_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPoints_swiginit(self, _mscl.new_MipDataPoints(*args)) - - def push_back(self, x): - return _mscl.MipDataPoints_push_back(self, x) - - def front(self): - return _mscl.MipDataPoints_front(self) - - def back(self): - return _mscl.MipDataPoints_back(self) - - def assign(self, n, x): - return _mscl.MipDataPoints_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPoints_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPoints_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPoints_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPoints_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPoints - -# Register MipDataPoints in _mscl: -_mscl.MipDataPoints_swigregister(MipDataPoints) - -class Bytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bytes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bytes___nonzero__(self) - - def __bool__(self): - return _mscl.Bytes___bool__(self) - - def __len__(self): - return _mscl.Bytes___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bytes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bytes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bytes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bytes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bytes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bytes___setitem__(self, *args) - - def pop(self): - return _mscl.Bytes_pop(self) - - def append(self, x): - return _mscl.Bytes_append(self, x) - - def empty(self): - return _mscl.Bytes_empty(self) - - def size(self): - return _mscl.Bytes_size(self) - - def swap(self, v): - return _mscl.Bytes_swap(self, v) - - def begin(self): - return _mscl.Bytes_begin(self) - - def end(self): - return _mscl.Bytes_end(self) - - def rbegin(self): - return _mscl.Bytes_rbegin(self) - - def rend(self): - return _mscl.Bytes_rend(self) - - def clear(self): - return _mscl.Bytes_clear(self) - - def get_allocator(self): - return _mscl.Bytes_get_allocator(self) - - def pop_back(self): - return _mscl.Bytes_pop_back(self) - - def erase(self, *args): - return _mscl.Bytes_erase(self, *args) - - def __init__(self, *args): - _mscl.Bytes_swiginit(self, _mscl.new_Bytes(*args)) - - def push_back(self, x): - return _mscl.Bytes_push_back(self, x) - - def front(self): - return _mscl.Bytes_front(self) - - def back(self): - return _mscl.Bytes_back(self) - - def assign(self, n, x): - return _mscl.Bytes_assign(self, n, x) - - def resize(self, *args): - return _mscl.Bytes_resize(self, *args) - - def insert(self, *args): - return _mscl.Bytes_insert(self, *args) - - def reserve(self, n): - return _mscl.Bytes_reserve(self, n) - - def capacity(self): - return _mscl.Bytes_capacity(self) - __swig_destroy__ = _mscl.delete_Bytes - -# Register Bytes in _mscl: -_mscl.Bytes_swigregister(Bytes) - -class BytesCollection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.BytesCollection_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.BytesCollection___nonzero__(self) - - def __bool__(self): - return _mscl.BytesCollection___bool__(self) - - def __len__(self): - return _mscl.BytesCollection___len__(self) - - def __getslice__(self, i, j): - return _mscl.BytesCollection___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.BytesCollection___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.BytesCollection___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.BytesCollection___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.BytesCollection___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.BytesCollection___setitem__(self, *args) - - def pop(self): - return _mscl.BytesCollection_pop(self) - - def append(self, x): - return _mscl.BytesCollection_append(self, x) - - def empty(self): - return _mscl.BytesCollection_empty(self) - - def size(self): - return _mscl.BytesCollection_size(self) - - def swap(self, v): - return _mscl.BytesCollection_swap(self, v) - - def begin(self): - return _mscl.BytesCollection_begin(self) - - def end(self): - return _mscl.BytesCollection_end(self) - - def rbegin(self): - return _mscl.BytesCollection_rbegin(self) - - def rend(self): - return _mscl.BytesCollection_rend(self) - - def clear(self): - return _mscl.BytesCollection_clear(self) - - def get_allocator(self): - return _mscl.BytesCollection_get_allocator(self) - - def pop_back(self): - return _mscl.BytesCollection_pop_back(self) - - def erase(self, *args): - return _mscl.BytesCollection_erase(self, *args) - - def __init__(self, *args): - _mscl.BytesCollection_swiginit(self, _mscl.new_BytesCollection(*args)) - - def push_back(self, x): - return _mscl.BytesCollection_push_back(self, x) - - def front(self): - return _mscl.BytesCollection_front(self) - - def back(self): - return _mscl.BytesCollection_back(self) - - def assign(self, n, x): - return _mscl.BytesCollection_assign(self, n, x) - - def resize(self, *args): - return _mscl.BytesCollection_resize(self, *args) - - def insert(self, *args): - return _mscl.BytesCollection_insert(self, *args) - - def reserve(self, n): - return _mscl.BytesCollection_reserve(self, n) - - def capacity(self): - return _mscl.BytesCollection_capacity(self) - __swig_destroy__ = _mscl.delete_BytesCollection - -# Register BytesCollection in _mscl: -_mscl.BytesCollection_swigregister(BytesCollection) - -class DeviceList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceList___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceList___bool__(self) - - def __len__(self): - return _mscl.DeviceList___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceList___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceList___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceList_has_key(self, key) - - def keys(self): - return _mscl.DeviceList_keys(self) - - def values(self): - return _mscl.DeviceList_values(self) - - def items(self): - return _mscl.DeviceList_items(self) - - def __contains__(self, key): - return _mscl.DeviceList___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceList_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceList_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceList___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceList_asdict(self) - - def __init__(self, *args): - _mscl.DeviceList_swiginit(self, _mscl.new_DeviceList(*args)) - - def empty(self): - return _mscl.DeviceList_empty(self) - - def size(self): - return _mscl.DeviceList_size(self) - - def swap(self, v): - return _mscl.DeviceList_swap(self, v) - - def begin(self): - return _mscl.DeviceList_begin(self) - - def end(self): - return _mscl.DeviceList_end(self) - - def rbegin(self): - return _mscl.DeviceList_rbegin(self) - - def rend(self): - return _mscl.DeviceList_rend(self) - - def clear(self): - return _mscl.DeviceList_clear(self) - - def get_allocator(self): - return _mscl.DeviceList_get_allocator(self) - - def count(self, x): - return _mscl.DeviceList_count(self, x) - - def erase(self, *args): - return _mscl.DeviceList_erase(self, *args) - - def find(self, x): - return _mscl.DeviceList_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceList_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceList_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceList - -# Register DeviceList in _mscl: -_mscl.DeviceList_swigregister(DeviceList) - -class NodeDiscoveries(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NodeDiscoveries_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NodeDiscoveries___nonzero__(self) - - def __bool__(self): - return _mscl.NodeDiscoveries___bool__(self) - - def __len__(self): - return _mscl.NodeDiscoveries___len__(self) - - def __getslice__(self, i, j): - return _mscl.NodeDiscoveries___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NodeDiscoveries___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NodeDiscoveries___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NodeDiscoveries___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NodeDiscoveries___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NodeDiscoveries___setitem__(self, *args) - - def pop(self): - return _mscl.NodeDiscoveries_pop(self) - - def append(self, x): - return _mscl.NodeDiscoveries_append(self, x) - - def empty(self): - return _mscl.NodeDiscoveries_empty(self) - - def size(self): - return _mscl.NodeDiscoveries_size(self) - - def swap(self, v): - return _mscl.NodeDiscoveries_swap(self, v) - - def begin(self): - return _mscl.NodeDiscoveries_begin(self) - - def end(self): - return _mscl.NodeDiscoveries_end(self) - - def rbegin(self): - return _mscl.NodeDiscoveries_rbegin(self) - - def rend(self): - return _mscl.NodeDiscoveries_rend(self) - - def clear(self): - return _mscl.NodeDiscoveries_clear(self) - - def get_allocator(self): - return _mscl.NodeDiscoveries_get_allocator(self) - - def pop_back(self): - return _mscl.NodeDiscoveries_pop_back(self) - - def erase(self, *args): - return _mscl.NodeDiscoveries_erase(self, *args) - - def __init__(self, *args): - _mscl.NodeDiscoveries_swiginit(self, _mscl.new_NodeDiscoveries(*args)) - - def push_back(self, x): - return _mscl.NodeDiscoveries_push_back(self, x) - - def front(self): - return _mscl.NodeDiscoveries_front(self) - - def back(self): - return _mscl.NodeDiscoveries_back(self) - - def assign(self, n, x): - return _mscl.NodeDiscoveries_assign(self, n, x) - - def resize(self, *args): - return _mscl.NodeDiscoveries_resize(self, *args) - - def insert(self, *args): - return _mscl.NodeDiscoveries_insert(self, *args) - - def reserve(self, n): - return _mscl.NodeDiscoveries_reserve(self, n) - - def capacity(self): - return _mscl.NodeDiscoveries_capacity(self) - __swig_destroy__ = _mscl.delete_NodeDiscoveries - -# Register NodeDiscoveries in _mscl: -_mscl.NodeDiscoveries_swigregister(NodeDiscoveries) - -class DataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.DataSweeps___bool__(self) - - def __len__(self): - return _mscl.DataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.DataSweeps_pop(self) - - def append(self, x): - return _mscl.DataSweeps_append(self, x) - - def empty(self): - return _mscl.DataSweeps_empty(self) - - def size(self): - return _mscl.DataSweeps_size(self) - - def swap(self, v): - return _mscl.DataSweeps_swap(self, v) - - def begin(self): - return _mscl.DataSweeps_begin(self) - - def end(self): - return _mscl.DataSweeps_end(self) - - def rbegin(self): - return _mscl.DataSweeps_rbegin(self) - - def rend(self): - return _mscl.DataSweeps_rend(self) - - def clear(self): - return _mscl.DataSweeps_clear(self) - - def get_allocator(self): - return _mscl.DataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.DataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.DataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.DataSweeps_swiginit(self, _mscl.new_DataSweeps(*args)) - - def push_back(self, x): - return _mscl.DataSweeps_push_back(self, x) - - def front(self): - return _mscl.DataSweeps_front(self) - - def back(self): - return _mscl.DataSweeps_back(self) - - def assign(self, n, x): - return _mscl.DataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.DataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.DataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.DataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_DataSweeps - -# Register DataSweeps in _mscl: -_mscl.DataSweeps_swigregister(DataSweeps) - -class LoggedDataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LoggedDataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LoggedDataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.LoggedDataSweeps___bool__(self) - - def __len__(self): - return _mscl.LoggedDataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.LoggedDataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LoggedDataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LoggedDataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LoggedDataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LoggedDataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LoggedDataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.LoggedDataSweeps_pop(self) - - def append(self, x): - return _mscl.LoggedDataSweeps_append(self, x) - - def empty(self): - return _mscl.LoggedDataSweeps_empty(self) - - def size(self): - return _mscl.LoggedDataSweeps_size(self) - - def swap(self, v): - return _mscl.LoggedDataSweeps_swap(self, v) - - def begin(self): - return _mscl.LoggedDataSweeps_begin(self) - - def end(self): - return _mscl.LoggedDataSweeps_end(self) - - def rbegin(self): - return _mscl.LoggedDataSweeps_rbegin(self) - - def rend(self): - return _mscl.LoggedDataSweeps_rend(self) - - def clear(self): - return _mscl.LoggedDataSweeps_clear(self) - - def get_allocator(self): - return _mscl.LoggedDataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.LoggedDataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.LoggedDataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.LoggedDataSweeps_swiginit(self, _mscl.new_LoggedDataSweeps(*args)) - - def push_back(self, x): - return _mscl.LoggedDataSweeps_push_back(self, x) - - def front(self): - return _mscl.LoggedDataSweeps_front(self) - - def back(self): - return _mscl.LoggedDataSweeps_back(self) - - def assign(self, n, x): - return _mscl.LoggedDataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.LoggedDataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.LoggedDataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.LoggedDataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.LoggedDataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweeps - -# Register LoggedDataSweeps in _mscl: -_mscl.LoggedDataSweeps_swigregister(LoggedDataSweeps) - -class MipDataPackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPackets___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPackets___bool__(self) - - def __len__(self): - return _mscl.MipDataPackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPackets___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPackets_pop(self) - - def append(self, x): - return _mscl.MipDataPackets_append(self, x) - - def empty(self): - return _mscl.MipDataPackets_empty(self) - - def size(self): - return _mscl.MipDataPackets_size(self) - - def swap(self, v): - return _mscl.MipDataPackets_swap(self, v) - - def begin(self): - return _mscl.MipDataPackets_begin(self) - - def end(self): - return _mscl.MipDataPackets_end(self) - - def rbegin(self): - return _mscl.MipDataPackets_rbegin(self) - - def rend(self): - return _mscl.MipDataPackets_rend(self) - - def clear(self): - return _mscl.MipDataPackets_clear(self) - - def get_allocator(self): - return _mscl.MipDataPackets_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPackets_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPackets_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPackets_swiginit(self, _mscl.new_MipDataPackets(*args)) - - def push_back(self, x): - return _mscl.MipDataPackets_push_back(self, x) - - def front(self): - return _mscl.MipDataPackets_front(self) - - def back(self): - return _mscl.MipDataPackets_back(self) - - def assign(self, n, x): - return _mscl.MipDataPackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPackets_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPackets_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPackets_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPackets_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPackets - -# Register MipDataPackets in _mscl: -_mscl.MipDataPackets_swigregister(MipDataPackets) - -class RawBytePackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RawBytePackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RawBytePackets___nonzero__(self) - - def __bool__(self): - return _mscl.RawBytePackets___bool__(self) - - def __len__(self): - return _mscl.RawBytePackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.RawBytePackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.RawBytePackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.RawBytePackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.RawBytePackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.RawBytePackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.RawBytePackets___setitem__(self, *args) - - def pop(self): - return _mscl.RawBytePackets_pop(self) - - def append(self, x): - return _mscl.RawBytePackets_append(self, x) - - def empty(self): - return _mscl.RawBytePackets_empty(self) - - def size(self): - return _mscl.RawBytePackets_size(self) - - def swap(self, v): - return _mscl.RawBytePackets_swap(self, v) - - def begin(self): - return _mscl.RawBytePackets_begin(self) - - def end(self): - return _mscl.RawBytePackets_end(self) - - def rbegin(self): - return _mscl.RawBytePackets_rbegin(self) - - def rend(self): - return _mscl.RawBytePackets_rend(self) - - def clear(self): - return _mscl.RawBytePackets_clear(self) - - def get_allocator(self): - return _mscl.RawBytePackets_get_allocator(self) - - def pop_back(self): - return _mscl.RawBytePackets_pop_back(self) - - def erase(self, *args): - return _mscl.RawBytePackets_erase(self, *args) - - def __init__(self, *args): - _mscl.RawBytePackets_swiginit(self, _mscl.new_RawBytePackets(*args)) - - def push_back(self, x): - return _mscl.RawBytePackets_push_back(self, x) - - def front(self): - return _mscl.RawBytePackets_front(self) - - def back(self): - return _mscl.RawBytePackets_back(self) - - def assign(self, n, x): - return _mscl.RawBytePackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.RawBytePackets_resize(self, *args) - - def insert(self, *args): - return _mscl.RawBytePackets_insert(self, *args) - - def reserve(self, n): - return _mscl.RawBytePackets_reserve(self, n) - - def capacity(self): - return _mscl.RawBytePackets_capacity(self) - __swig_destroy__ = _mscl.delete_RawBytePackets - -# Register RawBytePackets in _mscl: -_mscl.RawBytePackets_swigregister(RawBytePackets) - -class MipChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannels___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannels___bool__(self) - - def __len__(self): - return _mscl.MipChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannels___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannels_pop(self) - - def append(self, x): - return _mscl.MipChannels_append(self, x) - - def empty(self): - return _mscl.MipChannels_empty(self) - - def size(self): - return _mscl.MipChannels_size(self) - - def swap(self, v): - return _mscl.MipChannels_swap(self, v) - - def begin(self): - return _mscl.MipChannels_begin(self) - - def end(self): - return _mscl.MipChannels_end(self) - - def rbegin(self): - return _mscl.MipChannels_rbegin(self) - - def rend(self): - return _mscl.MipChannels_rend(self) - - def clear(self): - return _mscl.MipChannels_clear(self) - - def get_allocator(self): - return _mscl.MipChannels_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannels_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannels_swiginit(self, _mscl.new_MipChannels(*args)) - - def push_back(self, x): - return _mscl.MipChannels_push_back(self, x) - - def front(self): - return _mscl.MipChannels_front(self) - - def back(self): - return _mscl.MipChannels_back(self) - - def assign(self, n, x): - return _mscl.MipChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannels_reserve(self, n) - - def capacity(self): - return _mscl.MipChannels_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannels - -# Register MipChannels in _mscl: -_mscl.MipChannels_swigregister(MipChannels) - -class DataCollectionMethods(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataCollectionMethods_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataCollectionMethods___nonzero__(self) - - def __bool__(self): - return _mscl.DataCollectionMethods___bool__(self) - - def __len__(self): - return _mscl.DataCollectionMethods___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataCollectionMethods___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataCollectionMethods___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataCollectionMethods___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataCollectionMethods___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataCollectionMethods___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataCollectionMethods___setitem__(self, *args) - - def pop(self): - return _mscl.DataCollectionMethods_pop(self) - - def append(self, x): - return _mscl.DataCollectionMethods_append(self, x) - - def empty(self): - return _mscl.DataCollectionMethods_empty(self) - - def size(self): - return _mscl.DataCollectionMethods_size(self) - - def swap(self, v): - return _mscl.DataCollectionMethods_swap(self, v) - - def begin(self): - return _mscl.DataCollectionMethods_begin(self) - - def end(self): - return _mscl.DataCollectionMethods_end(self) - - def rbegin(self): - return _mscl.DataCollectionMethods_rbegin(self) - - def rend(self): - return _mscl.DataCollectionMethods_rend(self) - - def clear(self): - return _mscl.DataCollectionMethods_clear(self) - - def get_allocator(self): - return _mscl.DataCollectionMethods_get_allocator(self) - - def pop_back(self): - return _mscl.DataCollectionMethods_pop_back(self) - - def erase(self, *args): - return _mscl.DataCollectionMethods_erase(self, *args) - - def __init__(self, *args): - _mscl.DataCollectionMethods_swiginit(self, _mscl.new_DataCollectionMethods(*args)) - - def push_back(self, x): - return _mscl.DataCollectionMethods_push_back(self, x) - - def front(self): - return _mscl.DataCollectionMethods_front(self) - - def back(self): - return _mscl.DataCollectionMethods_back(self) - - def assign(self, n, x): - return _mscl.DataCollectionMethods_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataCollectionMethods_resize(self, *args) - - def insert(self, *args): - return _mscl.DataCollectionMethods_insert(self, *args) - - def reserve(self, n): - return _mscl.DataCollectionMethods_reserve(self, n) - - def capacity(self): - return _mscl.DataCollectionMethods_capacity(self) - __swig_destroy__ = _mscl.delete_DataCollectionMethods - -# Register DataCollectionMethods in _mscl: -_mscl.DataCollectionMethods_swigregister(DataCollectionMethods) - -class DataFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataFormats___nonzero__(self) - - def __bool__(self): - return _mscl.DataFormats___bool__(self) - - def __len__(self): - return _mscl.DataFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataFormats___setitem__(self, *args) - - def pop(self): - return _mscl.DataFormats_pop(self) - - def append(self, x): - return _mscl.DataFormats_append(self, x) - - def empty(self): - return _mscl.DataFormats_empty(self) - - def size(self): - return _mscl.DataFormats_size(self) - - def swap(self, v): - return _mscl.DataFormats_swap(self, v) - - def begin(self): - return _mscl.DataFormats_begin(self) - - def end(self): - return _mscl.DataFormats_end(self) - - def rbegin(self): - return _mscl.DataFormats_rbegin(self) - - def rend(self): - return _mscl.DataFormats_rend(self) - - def clear(self): - return _mscl.DataFormats_clear(self) - - def get_allocator(self): - return _mscl.DataFormats_get_allocator(self) - - def pop_back(self): - return _mscl.DataFormats_pop_back(self) - - def erase(self, *args): - return _mscl.DataFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.DataFormats_swiginit(self, _mscl.new_DataFormats(*args)) - - def push_back(self, x): - return _mscl.DataFormats_push_back(self, x) - - def front(self): - return _mscl.DataFormats_front(self) - - def back(self): - return _mscl.DataFormats_back(self) - - def assign(self, n, x): - return _mscl.DataFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.DataFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.DataFormats_reserve(self, n) - - def capacity(self): - return _mscl.DataFormats_capacity(self) - __swig_destroy__ = _mscl.delete_DataFormats - -# Register DataFormats in _mscl: -_mscl.DataFormats_swigregister(DataFormats) - -class WirelessSampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessSampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessSampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessSampleRates___bool__(self) - - def __len__(self): - return _mscl.WirelessSampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessSampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessSampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessSampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessSampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessSampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessSampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessSampleRates_pop(self) - - def append(self, x): - return _mscl.WirelessSampleRates_append(self, x) - - def empty(self): - return _mscl.WirelessSampleRates_empty(self) - - def size(self): - return _mscl.WirelessSampleRates_size(self) - - def swap(self, v): - return _mscl.WirelessSampleRates_swap(self, v) - - def begin(self): - return _mscl.WirelessSampleRates_begin(self) - - def end(self): - return _mscl.WirelessSampleRates_end(self) - - def rbegin(self): - return _mscl.WirelessSampleRates_rbegin(self) - - def rend(self): - return _mscl.WirelessSampleRates_rend(self) - - def clear(self): - return _mscl.WirelessSampleRates_clear(self) - - def get_allocator(self): - return _mscl.WirelessSampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessSampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessSampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessSampleRates_swiginit(self, _mscl.new_WirelessSampleRates(*args)) - - def push_back(self, x): - return _mscl.WirelessSampleRates_push_back(self, x) - - def front(self): - return _mscl.WirelessSampleRates_front(self) - - def back(self): - return _mscl.WirelessSampleRates_back(self) - - def assign(self, n, x): - return _mscl.WirelessSampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessSampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessSampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessSampleRates_reserve(self, n) - - def capacity(self): - return _mscl.WirelessSampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessSampleRates - -# Register WirelessSampleRates in _mscl: -_mscl.WirelessSampleRates_swigregister(WirelessSampleRates) - -class SamplingModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SamplingModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SamplingModes___nonzero__(self) - - def __bool__(self): - return _mscl.SamplingModes___bool__(self) - - def __len__(self): - return _mscl.SamplingModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SamplingModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SamplingModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SamplingModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SamplingModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SamplingModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SamplingModes___setitem__(self, *args) - - def pop(self): - return _mscl.SamplingModes_pop(self) - - def append(self, x): - return _mscl.SamplingModes_append(self, x) - - def empty(self): - return _mscl.SamplingModes_empty(self) - - def size(self): - return _mscl.SamplingModes_size(self) - - def swap(self, v): - return _mscl.SamplingModes_swap(self, v) - - def begin(self): - return _mscl.SamplingModes_begin(self) - - def end(self): - return _mscl.SamplingModes_end(self) - - def rbegin(self): - return _mscl.SamplingModes_rbegin(self) - - def rend(self): - return _mscl.SamplingModes_rend(self) - - def clear(self): - return _mscl.SamplingModes_clear(self) - - def get_allocator(self): - return _mscl.SamplingModes_get_allocator(self) - - def pop_back(self): - return _mscl.SamplingModes_pop_back(self) - - def erase(self, *args): - return _mscl.SamplingModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SamplingModes_swiginit(self, _mscl.new_SamplingModes(*args)) - - def push_back(self, x): - return _mscl.SamplingModes_push_back(self, x) - - def front(self): - return _mscl.SamplingModes_front(self) - - def back(self): - return _mscl.SamplingModes_back(self) - - def assign(self, n, x): - return _mscl.SamplingModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SamplingModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SamplingModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SamplingModes_reserve(self, n) - - def capacity(self): - return _mscl.SamplingModes_capacity(self) - __swig_destroy__ = _mscl.delete_SamplingModes - -# Register SamplingModes in _mscl: -_mscl.SamplingModes_swigregister(SamplingModes) - -class DefaultModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DefaultModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DefaultModes___nonzero__(self) - - def __bool__(self): - return _mscl.DefaultModes___bool__(self) - - def __len__(self): - return _mscl.DefaultModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DefaultModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DefaultModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DefaultModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DefaultModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DefaultModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DefaultModes___setitem__(self, *args) - - def pop(self): - return _mscl.DefaultModes_pop(self) - - def append(self, x): - return _mscl.DefaultModes_append(self, x) - - def empty(self): - return _mscl.DefaultModes_empty(self) - - def size(self): - return _mscl.DefaultModes_size(self) - - def swap(self, v): - return _mscl.DefaultModes_swap(self, v) - - def begin(self): - return _mscl.DefaultModes_begin(self) - - def end(self): - return _mscl.DefaultModes_end(self) - - def rbegin(self): - return _mscl.DefaultModes_rbegin(self) - - def rend(self): - return _mscl.DefaultModes_rend(self) - - def clear(self): - return _mscl.DefaultModes_clear(self) - - def get_allocator(self): - return _mscl.DefaultModes_get_allocator(self) - - def pop_back(self): - return _mscl.DefaultModes_pop_back(self) - - def erase(self, *args): - return _mscl.DefaultModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DefaultModes_swiginit(self, _mscl.new_DefaultModes(*args)) - - def push_back(self, x): - return _mscl.DefaultModes_push_back(self, x) - - def front(self): - return _mscl.DefaultModes_front(self) - - def back(self): - return _mscl.DefaultModes_back(self) - - def assign(self, n, x): - return _mscl.DefaultModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DefaultModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DefaultModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DefaultModes_reserve(self, n) - - def capacity(self): - return _mscl.DefaultModes_capacity(self) - __swig_destroy__ = _mscl.delete_DefaultModes - -# Register DefaultModes in _mscl: -_mscl.DefaultModes_swigregister(DefaultModes) - -class TransmitPowers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransmitPowers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransmitPowers___nonzero__(self) - - def __bool__(self): - return _mscl.TransmitPowers___bool__(self) - - def __len__(self): - return _mscl.TransmitPowers___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransmitPowers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransmitPowers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransmitPowers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransmitPowers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransmitPowers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransmitPowers___setitem__(self, *args) - - def pop(self): - return _mscl.TransmitPowers_pop(self) - - def append(self, x): - return _mscl.TransmitPowers_append(self, x) - - def empty(self): - return _mscl.TransmitPowers_empty(self) - - def size(self): - return _mscl.TransmitPowers_size(self) - - def swap(self, v): - return _mscl.TransmitPowers_swap(self, v) - - def begin(self): - return _mscl.TransmitPowers_begin(self) - - def end(self): - return _mscl.TransmitPowers_end(self) - - def rbegin(self): - return _mscl.TransmitPowers_rbegin(self) - - def rend(self): - return _mscl.TransmitPowers_rend(self) - - def clear(self): - return _mscl.TransmitPowers_clear(self) - - def get_allocator(self): - return _mscl.TransmitPowers_get_allocator(self) - - def pop_back(self): - return _mscl.TransmitPowers_pop_back(self) - - def erase(self, *args): - return _mscl.TransmitPowers_erase(self, *args) - - def __init__(self, *args): - _mscl.TransmitPowers_swiginit(self, _mscl.new_TransmitPowers(*args)) - - def push_back(self, x): - return _mscl.TransmitPowers_push_back(self, x) - - def front(self): - return _mscl.TransmitPowers_front(self) - - def back(self): - return _mscl.TransmitPowers_back(self) - - def assign(self, n, x): - return _mscl.TransmitPowers_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransmitPowers_resize(self, *args) - - def insert(self, *args): - return _mscl.TransmitPowers_insert(self, *args) - - def reserve(self, n): - return _mscl.TransmitPowers_reserve(self, n) - - def capacity(self): - return _mscl.TransmitPowers_capacity(self) - __swig_destroy__ = _mscl.delete_TransmitPowers - -# Register TransmitPowers in _mscl: -_mscl.TransmitPowers_swigregister(TransmitPowers) - -class ChannelGroupSettings(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroupSettings_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroupSettings___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroupSettings___bool__(self) - - def __len__(self): - return _mscl.ChannelGroupSettings___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroupSettings___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroupSettings___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroupSettings___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroupSettings___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroupSettings___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroupSettings___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroupSettings_pop(self) - - def append(self, x): - return _mscl.ChannelGroupSettings_append(self, x) - - def empty(self): - return _mscl.ChannelGroupSettings_empty(self) - - def size(self): - return _mscl.ChannelGroupSettings_size(self) - - def swap(self, v): - return _mscl.ChannelGroupSettings_swap(self, v) - - def begin(self): - return _mscl.ChannelGroupSettings_begin(self) - - def end(self): - return _mscl.ChannelGroupSettings_end(self) - - def rbegin(self): - return _mscl.ChannelGroupSettings_rbegin(self) - - def rend(self): - return _mscl.ChannelGroupSettings_rend(self) - - def clear(self): - return _mscl.ChannelGroupSettings_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroupSettings_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroupSettings_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroupSettings_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroupSettings_swiginit(self, _mscl.new_ChannelGroupSettings(*args)) - - def push_back(self, x): - return _mscl.ChannelGroupSettings_push_back(self, x) - - def front(self): - return _mscl.ChannelGroupSettings_front(self) - - def back(self): - return _mscl.ChannelGroupSettings_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroupSettings_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroupSettings_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroupSettings_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroupSettings_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroupSettings_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroupSettings - -# Register ChannelGroupSettings in _mscl: -_mscl.ChannelGroupSettings_swigregister(ChannelGroupSettings) - -class FatigueModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.FatigueModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.FatigueModes___nonzero__(self) - - def __bool__(self): - return _mscl.FatigueModes___bool__(self) - - def __len__(self): - return _mscl.FatigueModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.FatigueModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.FatigueModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.FatigueModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.FatigueModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.FatigueModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.FatigueModes___setitem__(self, *args) - - def pop(self): - return _mscl.FatigueModes_pop(self) - - def append(self, x): - return _mscl.FatigueModes_append(self, x) - - def empty(self): - return _mscl.FatigueModes_empty(self) - - def size(self): - return _mscl.FatigueModes_size(self) - - def swap(self, v): - return _mscl.FatigueModes_swap(self, v) - - def begin(self): - return _mscl.FatigueModes_begin(self) - - def end(self): - return _mscl.FatigueModes_end(self) - - def rbegin(self): - return _mscl.FatigueModes_rbegin(self) - - def rend(self): - return _mscl.FatigueModes_rend(self) - - def clear(self): - return _mscl.FatigueModes_clear(self) - - def get_allocator(self): - return _mscl.FatigueModes_get_allocator(self) - - def pop_back(self): - return _mscl.FatigueModes_pop_back(self) - - def erase(self, *args): - return _mscl.FatigueModes_erase(self, *args) - - def __init__(self, *args): - _mscl.FatigueModes_swiginit(self, _mscl.new_FatigueModes(*args)) - - def push_back(self, x): - return _mscl.FatigueModes_push_back(self, x) - - def front(self): - return _mscl.FatigueModes_front(self) - - def back(self): - return _mscl.FatigueModes_back(self) - - def assign(self, n, x): - return _mscl.FatigueModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.FatigueModes_resize(self, *args) - - def insert(self, *args): - return _mscl.FatigueModes_insert(self, *args) - - def reserve(self, n): - return _mscl.FatigueModes_reserve(self, n) - - def capacity(self): - return _mscl.FatigueModes_capacity(self) - __swig_destroy__ = _mscl.delete_FatigueModes - -# Register FatigueModes in _mscl: -_mscl.FatigueModes_swigregister(FatigueModes) - -class Filters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Filters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Filters___nonzero__(self) - - def __bool__(self): - return _mscl.Filters___bool__(self) - - def __len__(self): - return _mscl.Filters___len__(self) - - def __getslice__(self, i, j): - return _mscl.Filters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Filters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Filters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Filters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Filters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Filters___setitem__(self, *args) - - def pop(self): - return _mscl.Filters_pop(self) - - def append(self, x): - return _mscl.Filters_append(self, x) - - def empty(self): - return _mscl.Filters_empty(self) - - def size(self): - return _mscl.Filters_size(self) - - def swap(self, v): - return _mscl.Filters_swap(self, v) - - def begin(self): - return _mscl.Filters_begin(self) - - def end(self): - return _mscl.Filters_end(self) - - def rbegin(self): - return _mscl.Filters_rbegin(self) - - def rend(self): - return _mscl.Filters_rend(self) - - def clear(self): - return _mscl.Filters_clear(self) - - def get_allocator(self): - return _mscl.Filters_get_allocator(self) - - def pop_back(self): - return _mscl.Filters_pop_back(self) - - def erase(self, *args): - return _mscl.Filters_erase(self, *args) - - def __init__(self, *args): - _mscl.Filters_swiginit(self, _mscl.new_Filters(*args)) - - def push_back(self, x): - return _mscl.Filters_push_back(self, x) - - def front(self): - return _mscl.Filters_front(self) - - def back(self): - return _mscl.Filters_back(self) - - def assign(self, n, x): - return _mscl.Filters_assign(self, n, x) - - def resize(self, *args): - return _mscl.Filters_resize(self, *args) - - def insert(self, *args): - return _mscl.Filters_insert(self, *args) - - def reserve(self, n): - return _mscl.Filters_reserve(self, n) - - def capacity(self): - return _mscl.Filters_capacity(self) - __swig_destroy__ = _mscl.delete_Filters - -# Register Filters in _mscl: -_mscl.Filters_swigregister(Filters) - -class HighPassFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HighPassFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HighPassFilters___nonzero__(self) - - def __bool__(self): - return _mscl.HighPassFilters___bool__(self) - - def __len__(self): - return _mscl.HighPassFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.HighPassFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HighPassFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HighPassFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HighPassFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HighPassFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HighPassFilters___setitem__(self, *args) - - def pop(self): - return _mscl.HighPassFilters_pop(self) - - def append(self, x): - return _mscl.HighPassFilters_append(self, x) - - def empty(self): - return _mscl.HighPassFilters_empty(self) - - def size(self): - return _mscl.HighPassFilters_size(self) - - def swap(self, v): - return _mscl.HighPassFilters_swap(self, v) - - def begin(self): - return _mscl.HighPassFilters_begin(self) - - def end(self): - return _mscl.HighPassFilters_end(self) - - def rbegin(self): - return _mscl.HighPassFilters_rbegin(self) - - def rend(self): - return _mscl.HighPassFilters_rend(self) - - def clear(self): - return _mscl.HighPassFilters_clear(self) - - def get_allocator(self): - return _mscl.HighPassFilters_get_allocator(self) - - def pop_back(self): - return _mscl.HighPassFilters_pop_back(self) - - def erase(self, *args): - return _mscl.HighPassFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.HighPassFilters_swiginit(self, _mscl.new_HighPassFilters(*args)) - - def push_back(self, x): - return _mscl.HighPassFilters_push_back(self, x) - - def front(self): - return _mscl.HighPassFilters_front(self) - - def back(self): - return _mscl.HighPassFilters_back(self) - - def assign(self, n, x): - return _mscl.HighPassFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.HighPassFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.HighPassFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.HighPassFilters_reserve(self, n) - - def capacity(self): - return _mscl.HighPassFilters_capacity(self) - __swig_destroy__ = _mscl.delete_HighPassFilters - -# Register HighPassFilters in _mscl: -_mscl.HighPassFilters_swigregister(HighPassFilters) - -class StorageLimitModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StorageLimitModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StorageLimitModes___nonzero__(self) - - def __bool__(self): - return _mscl.StorageLimitModes___bool__(self) - - def __len__(self): - return _mscl.StorageLimitModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.StorageLimitModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StorageLimitModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StorageLimitModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StorageLimitModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StorageLimitModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StorageLimitModes___setitem__(self, *args) - - def pop(self): - return _mscl.StorageLimitModes_pop(self) - - def append(self, x): - return _mscl.StorageLimitModes_append(self, x) - - def empty(self): - return _mscl.StorageLimitModes_empty(self) - - def size(self): - return _mscl.StorageLimitModes_size(self) - - def swap(self, v): - return _mscl.StorageLimitModes_swap(self, v) - - def begin(self): - return _mscl.StorageLimitModes_begin(self) - - def end(self): - return _mscl.StorageLimitModes_end(self) - - def rbegin(self): - return _mscl.StorageLimitModes_rbegin(self) - - def rend(self): - return _mscl.StorageLimitModes_rend(self) - - def clear(self): - return _mscl.StorageLimitModes_clear(self) - - def get_allocator(self): - return _mscl.StorageLimitModes_get_allocator(self) - - def pop_back(self): - return _mscl.StorageLimitModes_pop_back(self) - - def erase(self, *args): - return _mscl.StorageLimitModes_erase(self, *args) - - def __init__(self, *args): - _mscl.StorageLimitModes_swiginit(self, _mscl.new_StorageLimitModes(*args)) - - def push_back(self, x): - return _mscl.StorageLimitModes_push_back(self, x) - - def front(self): - return _mscl.StorageLimitModes_front(self) - - def back(self): - return _mscl.StorageLimitModes_back(self) - - def assign(self, n, x): - return _mscl.StorageLimitModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.StorageLimitModes_resize(self, *args) - - def insert(self, *args): - return _mscl.StorageLimitModes_insert(self, *args) - - def reserve(self, n): - return _mscl.StorageLimitModes_reserve(self, n) - - def capacity(self): - return _mscl.StorageLimitModes_capacity(self) - __swig_destroy__ = _mscl.delete_StorageLimitModes - -# Register StorageLimitModes in _mscl: -_mscl.StorageLimitModes_swigregister(StorageLimitModes) - -class InputRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.InputRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.InputRanges___nonzero__(self) - - def __bool__(self): - return _mscl.InputRanges___bool__(self) - - def __len__(self): - return _mscl.InputRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.InputRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.InputRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.InputRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.InputRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.InputRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.InputRanges___setitem__(self, *args) - - def pop(self): - return _mscl.InputRanges_pop(self) - - def append(self, x): - return _mscl.InputRanges_append(self, x) - - def empty(self): - return _mscl.InputRanges_empty(self) - - def size(self): - return _mscl.InputRanges_size(self) - - def swap(self, v): - return _mscl.InputRanges_swap(self, v) - - def begin(self): - return _mscl.InputRanges_begin(self) - - def end(self): - return _mscl.InputRanges_end(self) - - def rbegin(self): - return _mscl.InputRanges_rbegin(self) - - def rend(self): - return _mscl.InputRanges_rend(self) - - def clear(self): - return _mscl.InputRanges_clear(self) - - def get_allocator(self): - return _mscl.InputRanges_get_allocator(self) - - def pop_back(self): - return _mscl.InputRanges_pop_back(self) - - def erase(self, *args): - return _mscl.InputRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.InputRanges_swiginit(self, _mscl.new_InputRanges(*args)) - - def push_back(self, x): - return _mscl.InputRanges_push_back(self, x) - - def front(self): - return _mscl.InputRanges_front(self) - - def back(self): - return _mscl.InputRanges_back(self) - - def assign(self, n, x): - return _mscl.InputRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.InputRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.InputRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.InputRanges_reserve(self, n) - - def capacity(self): - return _mscl.InputRanges_capacity(self) - __swig_destroy__ = _mscl.delete_InputRanges - -# Register InputRanges in _mscl: -_mscl.InputRanges_swigregister(InputRanges) - -class DataModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataModes___nonzero__(self) - - def __bool__(self): - return _mscl.DataModes___bool__(self) - - def __len__(self): - return _mscl.DataModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataModes___setitem__(self, *args) - - def pop(self): - return _mscl.DataModes_pop(self) - - def append(self, x): - return _mscl.DataModes_append(self, x) - - def empty(self): - return _mscl.DataModes_empty(self) - - def size(self): - return _mscl.DataModes_size(self) - - def swap(self, v): - return _mscl.DataModes_swap(self, v) - - def begin(self): - return _mscl.DataModes_begin(self) - - def end(self): - return _mscl.DataModes_end(self) - - def rbegin(self): - return _mscl.DataModes_rbegin(self) - - def rend(self): - return _mscl.DataModes_rend(self) - - def clear(self): - return _mscl.DataModes_clear(self) - - def get_allocator(self): - return _mscl.DataModes_get_allocator(self) - - def pop_back(self): - return _mscl.DataModes_pop_back(self) - - def erase(self, *args): - return _mscl.DataModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DataModes_swiginit(self, _mscl.new_DataModes(*args)) - - def push_back(self, x): - return _mscl.DataModes_push_back(self, x) - - def front(self): - return _mscl.DataModes_front(self) - - def back(self): - return _mscl.DataModes_back(self) - - def assign(self, n, x): - return _mscl.DataModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DataModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DataModes_reserve(self, n) - - def capacity(self): - return _mscl.DataModes_capacity(self) - __swig_destroy__ = _mscl.delete_DataModes - -# Register DataModes in _mscl: -_mscl.DataModes_swigregister(DataModes) - -class CommProtocols(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommProtocols_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommProtocols___nonzero__(self) - - def __bool__(self): - return _mscl.CommProtocols___bool__(self) - - def __len__(self): - return _mscl.CommProtocols___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommProtocols___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommProtocols___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommProtocols___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommProtocols___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommProtocols___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommProtocols___setitem__(self, *args) - - def pop(self): - return _mscl.CommProtocols_pop(self) - - def append(self, x): - return _mscl.CommProtocols_append(self, x) - - def empty(self): - return _mscl.CommProtocols_empty(self) - - def size(self): - return _mscl.CommProtocols_size(self) - - def swap(self, v): - return _mscl.CommProtocols_swap(self, v) - - def begin(self): - return _mscl.CommProtocols_begin(self) - - def end(self): - return _mscl.CommProtocols_end(self) - - def rbegin(self): - return _mscl.CommProtocols_rbegin(self) - - def rend(self): - return _mscl.CommProtocols_rend(self) - - def clear(self): - return _mscl.CommProtocols_clear(self) - - def get_allocator(self): - return _mscl.CommProtocols_get_allocator(self) - - def pop_back(self): - return _mscl.CommProtocols_pop_back(self) - - def erase(self, *args): - return _mscl.CommProtocols_erase(self, *args) - - def __init__(self, *args): - _mscl.CommProtocols_swiginit(self, _mscl.new_CommProtocols(*args)) - - def push_back(self, x): - return _mscl.CommProtocols_push_back(self, x) - - def front(self): - return _mscl.CommProtocols_front(self) - - def back(self): - return _mscl.CommProtocols_back(self) - - def assign(self, n, x): - return _mscl.CommProtocols_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommProtocols_resize(self, *args) - - def insert(self, *args): - return _mscl.CommProtocols_insert(self, *args) - - def reserve(self, n): - return _mscl.CommProtocols_reserve(self, n) - - def capacity(self): - return _mscl.CommProtocols_capacity(self) - __swig_destroy__ = _mscl.delete_CommProtocols - -# Register CommProtocols in _mscl: -_mscl.CommProtocols_swigregister(CommProtocols) - -class Voltages(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Voltages_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Voltages___nonzero__(self) - - def __bool__(self): - return _mscl.Voltages___bool__(self) - - def __len__(self): - return _mscl.Voltages___len__(self) - - def __getslice__(self, i, j): - return _mscl.Voltages___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Voltages___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Voltages___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Voltages___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Voltages___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Voltages___setitem__(self, *args) - - def pop(self): - return _mscl.Voltages_pop(self) - - def append(self, x): - return _mscl.Voltages_append(self, x) - - def empty(self): - return _mscl.Voltages_empty(self) - - def size(self): - return _mscl.Voltages_size(self) - - def swap(self, v): - return _mscl.Voltages_swap(self, v) - - def begin(self): - return _mscl.Voltages_begin(self) - - def end(self): - return _mscl.Voltages_end(self) - - def rbegin(self): - return _mscl.Voltages_rbegin(self) - - def rend(self): - return _mscl.Voltages_rend(self) - - def clear(self): - return _mscl.Voltages_clear(self) - - def get_allocator(self): - return _mscl.Voltages_get_allocator(self) - - def pop_back(self): - return _mscl.Voltages_pop_back(self) - - def erase(self, *args): - return _mscl.Voltages_erase(self, *args) - - def __init__(self, *args): - _mscl.Voltages_swiginit(self, _mscl.new_Voltages(*args)) - - def push_back(self, x): - return _mscl.Voltages_push_back(self, x) - - def front(self): - return _mscl.Voltages_front(self) - - def back(self): - return _mscl.Voltages_back(self) - - def assign(self, n, x): - return _mscl.Voltages_assign(self, n, x) - - def resize(self, *args): - return _mscl.Voltages_resize(self, *args) - - def insert(self, *args): - return _mscl.Voltages_insert(self, *args) - - def reserve(self, n): - return _mscl.Voltages_reserve(self, n) - - def capacity(self): - return _mscl.Voltages_capacity(self) - __swig_destroy__ = _mscl.delete_Voltages - -# Register Voltages in _mscl: -_mscl.Voltages_swigregister(Voltages) - -class SensorOutputModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorOutputModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorOutputModes___nonzero__(self) - - def __bool__(self): - return _mscl.SensorOutputModes___bool__(self) - - def __len__(self): - return _mscl.SensorOutputModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorOutputModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorOutputModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorOutputModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorOutputModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorOutputModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorOutputModes___setitem__(self, *args) - - def pop(self): - return _mscl.SensorOutputModes_pop(self) - - def append(self, x): - return _mscl.SensorOutputModes_append(self, x) - - def empty(self): - return _mscl.SensorOutputModes_empty(self) - - def size(self): - return _mscl.SensorOutputModes_size(self) - - def swap(self, v): - return _mscl.SensorOutputModes_swap(self, v) - - def begin(self): - return _mscl.SensorOutputModes_begin(self) - - def end(self): - return _mscl.SensorOutputModes_end(self) - - def rbegin(self): - return _mscl.SensorOutputModes_rbegin(self) - - def rend(self): - return _mscl.SensorOutputModes_rend(self) - - def clear(self): - return _mscl.SensorOutputModes_clear(self) - - def get_allocator(self): - return _mscl.SensorOutputModes_get_allocator(self) - - def pop_back(self): - return _mscl.SensorOutputModes_pop_back(self) - - def erase(self, *args): - return _mscl.SensorOutputModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorOutputModes_swiginit(self, _mscl.new_SensorOutputModes(*args)) - - def push_back(self, x): - return _mscl.SensorOutputModes_push_back(self, x) - - def front(self): - return _mscl.SensorOutputModes_front(self) - - def back(self): - return _mscl.SensorOutputModes_back(self) - - def assign(self, n, x): - return _mscl.SensorOutputModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorOutputModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorOutputModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorOutputModes_reserve(self, n) - - def capacity(self): - return _mscl.SensorOutputModes_capacity(self) - __swig_destroy__ = _mscl.delete_SensorOutputModes - -# Register SensorOutputModes in _mscl: -_mscl.SensorOutputModes_swigregister(SensorOutputModes) - -class CfcFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CfcFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CfcFilters___nonzero__(self) - - def __bool__(self): - return _mscl.CfcFilters___bool__(self) - - def __len__(self): - return _mscl.CfcFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.CfcFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CfcFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CfcFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CfcFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CfcFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CfcFilters___setitem__(self, *args) - - def pop(self): - return _mscl.CfcFilters_pop(self) - - def append(self, x): - return _mscl.CfcFilters_append(self, x) - - def empty(self): - return _mscl.CfcFilters_empty(self) - - def size(self): - return _mscl.CfcFilters_size(self) - - def swap(self, v): - return _mscl.CfcFilters_swap(self, v) - - def begin(self): - return _mscl.CfcFilters_begin(self) - - def end(self): - return _mscl.CfcFilters_end(self) - - def rbegin(self): - return _mscl.CfcFilters_rbegin(self) - - def rend(self): - return _mscl.CfcFilters_rend(self) - - def clear(self): - return _mscl.CfcFilters_clear(self) - - def get_allocator(self): - return _mscl.CfcFilters_get_allocator(self) - - def pop_back(self): - return _mscl.CfcFilters_pop_back(self) - - def erase(self, *args): - return _mscl.CfcFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.CfcFilters_swiginit(self, _mscl.new_CfcFilters(*args)) - - def push_back(self, x): - return _mscl.CfcFilters_push_back(self, x) - - def front(self): - return _mscl.CfcFilters_front(self) - - def back(self): - return _mscl.CfcFilters_back(self) - - def assign(self, n, x): - return _mscl.CfcFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.CfcFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.CfcFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.CfcFilters_reserve(self, n) - - def capacity(self): - return _mscl.CfcFilters_capacity(self) - __swig_destroy__ = _mscl.delete_CfcFilters - -# Register CfcFilters in _mscl: -_mscl.CfcFilters_swigregister(CfcFilters) - -class TransducerTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransducerTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransducerTypes___nonzero__(self) - - def __bool__(self): - return _mscl.TransducerTypes___bool__(self) - - def __len__(self): - return _mscl.TransducerTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransducerTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransducerTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransducerTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransducerTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransducerTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransducerTypes___setitem__(self, *args) - - def pop(self): - return _mscl.TransducerTypes_pop(self) - - def append(self, x): - return _mscl.TransducerTypes_append(self, x) - - def empty(self): - return _mscl.TransducerTypes_empty(self) - - def size(self): - return _mscl.TransducerTypes_size(self) - - def swap(self, v): - return _mscl.TransducerTypes_swap(self, v) - - def begin(self): - return _mscl.TransducerTypes_begin(self) - - def end(self): - return _mscl.TransducerTypes_end(self) - - def rbegin(self): - return _mscl.TransducerTypes_rbegin(self) - - def rend(self): - return _mscl.TransducerTypes_rend(self) - - def clear(self): - return _mscl.TransducerTypes_clear(self) - - def get_allocator(self): - return _mscl.TransducerTypes_get_allocator(self) - - def pop_back(self): - return _mscl.TransducerTypes_pop_back(self) - - def erase(self, *args): - return _mscl.TransducerTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.TransducerTypes_swiginit(self, _mscl.new_TransducerTypes(*args)) - - def push_back(self, x): - return _mscl.TransducerTypes_push_back(self, x) - - def front(self): - return _mscl.TransducerTypes_front(self) - - def back(self): - return _mscl.TransducerTypes_back(self) - - def assign(self, n, x): - return _mscl.TransducerTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransducerTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.TransducerTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.TransducerTypes_reserve(self, n) - - def capacity(self): - return _mscl.TransducerTypes_capacity(self) - __swig_destroy__ = _mscl.delete_TransducerTypes - -# Register TransducerTypes in _mscl: -_mscl.TransducerTypes_swigregister(TransducerTypes) - -class EepromMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EepromMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EepromMap___nonzero__(self) - - def __bool__(self): - return _mscl.EepromMap___bool__(self) - - def __len__(self): - return _mscl.EepromMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.EepromMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.EepromMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.EepromMap_has_key(self, key) - - def keys(self): - return _mscl.EepromMap_keys(self) - - def values(self): - return _mscl.EepromMap_values(self) - - def items(self): - return _mscl.EepromMap_items(self) - - def __contains__(self, key): - return _mscl.EepromMap___contains__(self, key) - - def key_iterator(self): - return _mscl.EepromMap_key_iterator(self) - - def value_iterator(self): - return _mscl.EepromMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.EepromMap___setitem__(self, *args) - - def asdict(self): - return _mscl.EepromMap_asdict(self) - - def __init__(self, *args): - _mscl.EepromMap_swiginit(self, _mscl.new_EepromMap(*args)) - - def empty(self): - return _mscl.EepromMap_empty(self) - - def size(self): - return _mscl.EepromMap_size(self) - - def swap(self, v): - return _mscl.EepromMap_swap(self, v) - - def begin(self): - return _mscl.EepromMap_begin(self) - - def end(self): - return _mscl.EepromMap_end(self) - - def rbegin(self): - return _mscl.EepromMap_rbegin(self) - - def rend(self): - return _mscl.EepromMap_rend(self) - - def clear(self): - return _mscl.EepromMap_clear(self) - - def get_allocator(self): - return _mscl.EepromMap_get_allocator(self) - - def count(self, x): - return _mscl.EepromMap_count(self, x) - - def erase(self, *args): - return _mscl.EepromMap_erase(self, *args) - - def find(self, x): - return _mscl.EepromMap_find(self, x) - - def lower_bound(self, x): - return _mscl.EepromMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.EepromMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_EepromMap - -# Register EepromMap in _mscl: -_mscl.EepromMap_swigregister(EepromMap) - -class DerivedChannelMasks(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DerivedChannelMasks_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DerivedChannelMasks___nonzero__(self) - - def __bool__(self): - return _mscl.DerivedChannelMasks___bool__(self) - - def __len__(self): - return _mscl.DerivedChannelMasks___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DerivedChannelMasks___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DerivedChannelMasks___delitem__(self, key) - - def has_key(self, key): - return _mscl.DerivedChannelMasks_has_key(self, key) - - def keys(self): - return _mscl.DerivedChannelMasks_keys(self) - - def values(self): - return _mscl.DerivedChannelMasks_values(self) - - def items(self): - return _mscl.DerivedChannelMasks_items(self) - - def __contains__(self, key): - return _mscl.DerivedChannelMasks___contains__(self, key) - - def key_iterator(self): - return _mscl.DerivedChannelMasks_key_iterator(self) - - def value_iterator(self): - return _mscl.DerivedChannelMasks_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DerivedChannelMasks___setitem__(self, *args) - - def asdict(self): - return _mscl.DerivedChannelMasks_asdict(self) - - def __init__(self, *args): - _mscl.DerivedChannelMasks_swiginit(self, _mscl.new_DerivedChannelMasks(*args)) - - def empty(self): - return _mscl.DerivedChannelMasks_empty(self) - - def size(self): - return _mscl.DerivedChannelMasks_size(self) - - def swap(self, v): - return _mscl.DerivedChannelMasks_swap(self, v) - - def begin(self): - return _mscl.DerivedChannelMasks_begin(self) - - def end(self): - return _mscl.DerivedChannelMasks_end(self) - - def rbegin(self): - return _mscl.DerivedChannelMasks_rbegin(self) - - def rend(self): - return _mscl.DerivedChannelMasks_rend(self) - - def clear(self): - return _mscl.DerivedChannelMasks_clear(self) - - def get_allocator(self): - return _mscl.DerivedChannelMasks_get_allocator(self) - - def count(self, x): - return _mscl.DerivedChannelMasks_count(self, x) - - def erase(self, *args): - return _mscl.DerivedChannelMasks_erase(self, *args) - - def find(self, x): - return _mscl.DerivedChannelMasks_find(self, x) - - def lower_bound(self, x): - return _mscl.DerivedChannelMasks_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DerivedChannelMasks_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DerivedChannelMasks - -# Register DerivedChannelMasks in _mscl: -_mscl.DerivedChannelMasks_swigregister(DerivedChannelMasks) - -class DeviceStatusMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusMap_keys(self) - - def values(self): - return _mscl.DeviceStatusMap_values(self) - - def items(self): - return _mscl.DeviceStatusMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusMap_swiginit(self, _mscl.new_DeviceStatusMap(*args)) - - def empty(self): - return _mscl.DeviceStatusMap_empty(self) - - def size(self): - return _mscl.DeviceStatusMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusMap_begin(self) - - def end(self): - return _mscl.DeviceStatusMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusMap - -# Register DeviceStatusMap in _mscl: -_mscl.DeviceStatusMap_swigregister(DeviceStatusMap) - -class DeviceStatusValueMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusValueMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusValueMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusValueMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusValueMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusValueMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusValueMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusValueMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusValueMap_keys(self) - - def values(self): - return _mscl.DeviceStatusValueMap_values(self) - - def items(self): - return _mscl.DeviceStatusValueMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusValueMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusValueMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusValueMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusValueMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusValueMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusValueMap_swiginit(self, _mscl.new_DeviceStatusValueMap(*args)) - - def empty(self): - return _mscl.DeviceStatusValueMap_empty(self) - - def size(self): - return _mscl.DeviceStatusValueMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusValueMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusValueMap_begin(self) - - def end(self): - return _mscl.DeviceStatusValueMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusValueMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusValueMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusValueMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusValueMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusValueMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusValueMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusValueMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusValueMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusValueMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusValueMap - -# Register DeviceStatusValueMap in _mscl: -_mscl.DeviceStatusValueMap_swigregister(DeviceStatusValueMap) - -class SampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.SampleRates___bool__(self) - - def __len__(self): - return _mscl.SampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.SampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.SampleRates_pop(self) - - def append(self, x): - return _mscl.SampleRates_append(self, x) - - def empty(self): - return _mscl.SampleRates_empty(self) - - def size(self): - return _mscl.SampleRates_size(self) - - def swap(self, v): - return _mscl.SampleRates_swap(self, v) - - def begin(self): - return _mscl.SampleRates_begin(self) - - def end(self): - return _mscl.SampleRates_end(self) - - def rbegin(self): - return _mscl.SampleRates_rbegin(self) - - def rend(self): - return _mscl.SampleRates_rend(self) - - def clear(self): - return _mscl.SampleRates_clear(self) - - def get_allocator(self): - return _mscl.SampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.SampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.SampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.SampleRates_swiginit(self, _mscl.new_SampleRates(*args)) - - def push_back(self, x): - return _mscl.SampleRates_push_back(self, x) - - def front(self): - return _mscl.SampleRates_front(self) - - def back(self): - return _mscl.SampleRates_back(self) - - def assign(self, n, x): - return _mscl.SampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.SampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.SampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.SampleRates_reserve(self, n) - - def capacity(self): - return _mscl.SampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_SampleRates - -# Register SampleRates in _mscl: -_mscl.SampleRates_swigregister(SampleRates) - -class ConfigIssues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConfigIssues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConfigIssues___nonzero__(self) - - def __bool__(self): - return _mscl.ConfigIssues___bool__(self) - - def __len__(self): - return _mscl.ConfigIssues___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConfigIssues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConfigIssues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConfigIssues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConfigIssues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConfigIssues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConfigIssues___setitem__(self, *args) - - def pop(self): - return _mscl.ConfigIssues_pop(self) - - def append(self, x): - return _mscl.ConfigIssues_append(self, x) - - def empty(self): - return _mscl.ConfigIssues_empty(self) - - def size(self): - return _mscl.ConfigIssues_size(self) - - def swap(self, v): - return _mscl.ConfigIssues_swap(self, v) - - def begin(self): - return _mscl.ConfigIssues_begin(self) - - def end(self): - return _mscl.ConfigIssues_end(self) - - def rbegin(self): - return _mscl.ConfigIssues_rbegin(self) - - def rend(self): - return _mscl.ConfigIssues_rend(self) - - def clear(self): - return _mscl.ConfigIssues_clear(self) - - def get_allocator(self): - return _mscl.ConfigIssues_get_allocator(self) - - def pop_back(self): - return _mscl.ConfigIssues_pop_back(self) - - def erase(self, *args): - return _mscl.ConfigIssues_erase(self, *args) - - def __init__(self, *args): - _mscl.ConfigIssues_swiginit(self, _mscl.new_ConfigIssues(*args)) - - def push_back(self, x): - return _mscl.ConfigIssues_push_back(self, x) - - def front(self): - return _mscl.ConfigIssues_front(self) - - def back(self): - return _mscl.ConfigIssues_back(self) - - def assign(self, n, x): - return _mscl.ConfigIssues_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConfigIssues_resize(self, *args) - - def insert(self, *args): - return _mscl.ConfigIssues_insert(self, *args) - - def reserve(self, n): - return _mscl.ConfigIssues_reserve(self, n) - - def capacity(self): - return _mscl.ConfigIssues_capacity(self) - __swig_destroy__ = _mscl.delete_ConfigIssues - -# Register ConfigIssues in _mscl: -_mscl.ConfigIssues_swigregister(ConfigIssues) - -class MipChannelFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelFields_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelFields___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelFields___bool__(self) - - def __len__(self): - return _mscl.MipChannelFields___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelFields___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelFields___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelFields___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelFields___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelFields___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelFields___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelFields_pop(self) - - def append(self, x): - return _mscl.MipChannelFields_append(self, x) - - def empty(self): - return _mscl.MipChannelFields_empty(self) - - def size(self): - return _mscl.MipChannelFields_size(self) - - def swap(self, v): - return _mscl.MipChannelFields_swap(self, v) - - def begin(self): - return _mscl.MipChannelFields_begin(self) - - def end(self): - return _mscl.MipChannelFields_end(self) - - def rbegin(self): - return _mscl.MipChannelFields_rbegin(self) - - def rend(self): - return _mscl.MipChannelFields_rend(self) - - def clear(self): - return _mscl.MipChannelFields_clear(self) - - def get_allocator(self): - return _mscl.MipChannelFields_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelFields_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelFields_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelFields_swiginit(self, _mscl.new_MipChannelFields(*args)) - - def push_back(self, x): - return _mscl.MipChannelFields_push_back(self, x) - - def front(self): - return _mscl.MipChannelFields_front(self) - - def back(self): - return _mscl.MipChannelFields_back(self) - - def assign(self, n, x): - return _mscl.MipChannelFields_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelFields_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelFields_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelFields_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelFields_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelFields - -# Register MipChannelFields in _mscl: -_mscl.MipChannelFields_swigregister(MipChannelFields) - -class MipCommands(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommands_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommands___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommands___bool__(self) - - def __len__(self): - return _mscl.MipCommands___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommands___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommands___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommands___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommands___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommands___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommands___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommands_pop(self) - - def append(self, x): - return _mscl.MipCommands_append(self, x) - - def empty(self): - return _mscl.MipCommands_empty(self) - - def size(self): - return _mscl.MipCommands_size(self) - - def swap(self, v): - return _mscl.MipCommands_swap(self, v) - - def begin(self): - return _mscl.MipCommands_begin(self) - - def end(self): - return _mscl.MipCommands_end(self) - - def rbegin(self): - return _mscl.MipCommands_rbegin(self) - - def rend(self): - return _mscl.MipCommands_rend(self) - - def clear(self): - return _mscl.MipCommands_clear(self) - - def get_allocator(self): - return _mscl.MipCommands_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommands_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommands_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommands_swiginit(self, _mscl.new_MipCommands(*args)) - - def push_back(self, x): - return _mscl.MipCommands_push_back(self, x) - - def front(self): - return _mscl.MipCommands_front(self) - - def back(self): - return _mscl.MipCommands_back(self) - - def assign(self, n, x): - return _mscl.MipCommands_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommands_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommands_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommands_reserve(self, n) - - def capacity(self): - return _mscl.MipCommands_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommands - -# Register MipCommands in _mscl: -_mscl.MipCommands_swigregister(MipCommands) - -class MipDataClasses(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataClasses_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataClasses___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataClasses___bool__(self) - - def __len__(self): - return _mscl.MipDataClasses___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataClasses___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataClasses___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataClasses___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataClasses___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataClasses___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataClasses___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataClasses_pop(self) - - def append(self, x): - return _mscl.MipDataClasses_append(self, x) - - def empty(self): - return _mscl.MipDataClasses_empty(self) - - def size(self): - return _mscl.MipDataClasses_size(self) - - def swap(self, v): - return _mscl.MipDataClasses_swap(self, v) - - def begin(self): - return _mscl.MipDataClasses_begin(self) - - def end(self): - return _mscl.MipDataClasses_end(self) - - def rbegin(self): - return _mscl.MipDataClasses_rbegin(self) - - def rend(self): - return _mscl.MipDataClasses_rend(self) - - def clear(self): - return _mscl.MipDataClasses_clear(self) - - def get_allocator(self): - return _mscl.MipDataClasses_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataClasses_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataClasses_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataClasses_swiginit(self, _mscl.new_MipDataClasses(*args)) - - def push_back(self, x): - return _mscl.MipDataClasses_push_back(self, x) - - def front(self): - return _mscl.MipDataClasses_front(self) - - def back(self): - return _mscl.MipDataClasses_back(self) - - def assign(self, n, x): - return _mscl.MipDataClasses_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataClasses_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataClasses_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataClasses_reserve(self, n) - - def capacity(self): - return _mscl.MipDataClasses_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataClasses - -# Register MipDataClasses in _mscl: -_mscl.MipDataClasses_swigregister(MipDataClasses) - -class MipChannelIdentifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelIdentifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelIdentifiers___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelIdentifiers___bool__(self) - - def __len__(self): - return _mscl.MipChannelIdentifiers___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelIdentifiers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelIdentifiers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelIdentifiers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelIdentifiers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelIdentifiers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelIdentifiers___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelIdentifiers_pop(self) - - def append(self, x): - return _mscl.MipChannelIdentifiers_append(self, x) - - def empty(self): - return _mscl.MipChannelIdentifiers_empty(self) - - def size(self): - return _mscl.MipChannelIdentifiers_size(self) - - def swap(self, v): - return _mscl.MipChannelIdentifiers_swap(self, v) - - def begin(self): - return _mscl.MipChannelIdentifiers_begin(self) - - def end(self): - return _mscl.MipChannelIdentifiers_end(self) - - def rbegin(self): - return _mscl.MipChannelIdentifiers_rbegin(self) - - def rend(self): - return _mscl.MipChannelIdentifiers_rend(self) - - def clear(self): - return _mscl.MipChannelIdentifiers_clear(self) - - def get_allocator(self): - return _mscl.MipChannelIdentifiers_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelIdentifiers_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelIdentifiers_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelIdentifiers_swiginit(self, _mscl.new_MipChannelIdentifiers(*args)) - - def push_back(self, x): - return _mscl.MipChannelIdentifiers_push_back(self, x) - - def front(self): - return _mscl.MipChannelIdentifiers_front(self) - - def back(self): - return _mscl.MipChannelIdentifiers_back(self) - - def assign(self, n, x): - return _mscl.MipChannelIdentifiers_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelIdentifiers_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelIdentifiers_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelIdentifiers_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelIdentifiers_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelIdentifiers - -# Register MipChannelIdentifiers in _mscl: -_mscl.MipChannelIdentifiers_swigregister(MipChannelIdentifiers) - -class MipCommandSet(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandSet_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandSet___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandSet___bool__(self) - - def __len__(self): - return _mscl.MipCommandSet___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandSet___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandSet___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandSet___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandSet___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandSet___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandSet___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandSet_pop(self) - - def append(self, x): - return _mscl.MipCommandSet_append(self, x) - - def empty(self): - return _mscl.MipCommandSet_empty(self) - - def size(self): - return _mscl.MipCommandSet_size(self) - - def swap(self, v): - return _mscl.MipCommandSet_swap(self, v) - - def begin(self): - return _mscl.MipCommandSet_begin(self) - - def end(self): - return _mscl.MipCommandSet_end(self) - - def rbegin(self): - return _mscl.MipCommandSet_rbegin(self) - - def rend(self): - return _mscl.MipCommandSet_rend(self) - - def clear(self): - return _mscl.MipCommandSet_clear(self) - - def get_allocator(self): - return _mscl.MipCommandSet_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandSet_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandSet_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandSet_swiginit(self, _mscl.new_MipCommandSet(*args)) - - def push_back(self, x): - return _mscl.MipCommandSet_push_back(self, x) - - def front(self): - return _mscl.MipCommandSet_front(self) - - def back(self): - return _mscl.MipCommandSet_back(self) - - def assign(self, n, x): - return _mscl.MipCommandSet_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandSet_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandSet_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandSet_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandSet_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandSet - -# Register MipCommandSet in _mscl: -_mscl.MipCommandSet_swigregister(MipCommandSet) - -class MipFieldValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipFieldValues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipFieldValues___nonzero__(self) - - def __bool__(self): - return _mscl.MipFieldValues___bool__(self) - - def __len__(self): - return _mscl.MipFieldValues___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipFieldValues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipFieldValues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipFieldValues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipFieldValues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipFieldValues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipFieldValues___setitem__(self, *args) - - def pop(self): - return _mscl.MipFieldValues_pop(self) - - def append(self, x): - return _mscl.MipFieldValues_append(self, x) - - def empty(self): - return _mscl.MipFieldValues_empty(self) - - def size(self): - return _mscl.MipFieldValues_size(self) - - def swap(self, v): - return _mscl.MipFieldValues_swap(self, v) - - def begin(self): - return _mscl.MipFieldValues_begin(self) - - def end(self): - return _mscl.MipFieldValues_end(self) - - def rbegin(self): - return _mscl.MipFieldValues_rbegin(self) - - def rend(self): - return _mscl.MipFieldValues_rend(self) - - def clear(self): - return _mscl.MipFieldValues_clear(self) - - def get_allocator(self): - return _mscl.MipFieldValues_get_allocator(self) - - def pop_back(self): - return _mscl.MipFieldValues_pop_back(self) - - def erase(self, *args): - return _mscl.MipFieldValues_erase(self, *args) - - def __init__(self, *args): - _mscl.MipFieldValues_swiginit(self, _mscl.new_MipFieldValues(*args)) - - def push_back(self, x): - return _mscl.MipFieldValues_push_back(self, x) - - def front(self): - return _mscl.MipFieldValues_front(self) - - def back(self): - return _mscl.MipFieldValues_back(self) - - def assign(self, n, x): - return _mscl.MipFieldValues_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipFieldValues_resize(self, *args) - - def insert(self, *args): - return _mscl.MipFieldValues_insert(self, *args) - - def reserve(self, n): - return _mscl.MipFieldValues_reserve(self, n) - - def capacity(self): - return _mscl.MipFieldValues_capacity(self) - __swig_destroy__ = _mscl.delete_MipFieldValues - -# Register MipFieldValues in _mscl: -_mscl.MipFieldValues_swigregister(MipFieldValues) - -class MipCommandParamPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipCommandParamPair_swiginit(self, _mscl.new_MipCommandParamPair(*args)) - first = property(_mscl.MipCommandParamPair_first_get, _mscl.MipCommandParamPair_first_set) - second = property(_mscl.MipCommandParamPair_second_get, _mscl.MipCommandParamPair_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_MipCommandParamPair - -# Register MipCommandParamPair in _mscl: -_mscl.MipCommandParamPair_swigregister(MipCommandParamPair) - -class MipCommandParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandParameters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandParameters___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandParameters___bool__(self) - - def __len__(self): - return _mscl.MipCommandParameters___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandParameters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandParameters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandParameters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandParameters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandParameters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandParameters___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandParameters_pop(self) - - def append(self, x): - return _mscl.MipCommandParameters_append(self, x) - - def empty(self): - return _mscl.MipCommandParameters_empty(self) - - def size(self): - return _mscl.MipCommandParameters_size(self) - - def swap(self, v): - return _mscl.MipCommandParameters_swap(self, v) - - def begin(self): - return _mscl.MipCommandParameters_begin(self) - - def end(self): - return _mscl.MipCommandParameters_end(self) - - def rbegin(self): - return _mscl.MipCommandParameters_rbegin(self) - - def rend(self): - return _mscl.MipCommandParameters_rend(self) - - def clear(self): - return _mscl.MipCommandParameters_clear(self) - - def get_allocator(self): - return _mscl.MipCommandParameters_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandParameters_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandParameters_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandParameters_swiginit(self, _mscl.new_MipCommandParameters(*args)) - - def push_back(self, x): - return _mscl.MipCommandParameters_push_back(self, x) - - def front(self): - return _mscl.MipCommandParameters_front(self) - - def back(self): - return _mscl.MipCommandParameters_back(self) - - def assign(self, n, x): - return _mscl.MipCommandParameters_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandParameters_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandParameters_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandParameters_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandParameters_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandParameters - -# Register MipCommandParameters in _mscl: -_mscl.MipCommandParameters_swigregister(MipCommandParameters) - -class ChannelIndex(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ChannelIndex_swiginit(self, _mscl.new_ChannelIndex(*args)) - first = property(_mscl.ChannelIndex_first_get, _mscl.ChannelIndex_first_set) - second = property(_mscl.ChannelIndex_second_get, _mscl.ChannelIndex_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_ChannelIndex - -# Register ChannelIndex in _mscl: -_mscl.ChannelIndex_swigregister(ChannelIndex) - -class ChannelIndices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelIndices_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelIndices___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelIndices___bool__(self) - - def __len__(self): - return _mscl.ChannelIndices___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelIndices___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelIndices___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelIndices___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelIndices___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelIndices___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelIndices___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelIndices_pop(self) - - def append(self, x): - return _mscl.ChannelIndices_append(self, x) - - def empty(self): - return _mscl.ChannelIndices_empty(self) - - def size(self): - return _mscl.ChannelIndices_size(self) - - def swap(self, v): - return _mscl.ChannelIndices_swap(self, v) - - def begin(self): - return _mscl.ChannelIndices_begin(self) - - def end(self): - return _mscl.ChannelIndices_end(self) - - def rbegin(self): - return _mscl.ChannelIndices_rbegin(self) - - def rend(self): - return _mscl.ChannelIndices_rend(self) - - def clear(self): - return _mscl.ChannelIndices_clear(self) - - def get_allocator(self): - return _mscl.ChannelIndices_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelIndices_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelIndices_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelIndices_swiginit(self, _mscl.new_ChannelIndices(*args)) - - def push_back(self, x): - return _mscl.ChannelIndices_push_back(self, x) - - def front(self): - return _mscl.ChannelIndices_front(self) - - def back(self): - return _mscl.ChannelIndices_back(self) - - def assign(self, n, x): - return _mscl.ChannelIndices_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelIndices_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelIndices_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelIndices_reserve(self, n) - - def capacity(self): - return _mscl.ChannelIndices_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelIndices - -# Register ChannelIndices in _mscl: -_mscl.ChannelIndices_swigregister(ChannelIndices) - -class ChannelFieldQualifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelFieldQualifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelFieldQualifiers___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelFieldQualifiers___bool__(self) - - def __len__(self): - return _mscl.ChannelFieldQualifiers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelFieldQualifiers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelFieldQualifiers___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelFieldQualifiers_has_key(self, key) - - def keys(self): - return _mscl.ChannelFieldQualifiers_keys(self) - - def values(self): - return _mscl.ChannelFieldQualifiers_values(self) - - def items(self): - return _mscl.ChannelFieldQualifiers_items(self) - - def __contains__(self, key): - return _mscl.ChannelFieldQualifiers___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelFieldQualifiers_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelFieldQualifiers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelFieldQualifiers___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelFieldQualifiers_asdict(self) - - def __init__(self, *args): - _mscl.ChannelFieldQualifiers_swiginit(self, _mscl.new_ChannelFieldQualifiers(*args)) - - def empty(self): - return _mscl.ChannelFieldQualifiers_empty(self) - - def size(self): - return _mscl.ChannelFieldQualifiers_size(self) - - def swap(self, v): - return _mscl.ChannelFieldQualifiers_swap(self, v) - - def begin(self): - return _mscl.ChannelFieldQualifiers_begin(self) - - def end(self): - return _mscl.ChannelFieldQualifiers_end(self) - - def rbegin(self): - return _mscl.ChannelFieldQualifiers_rbegin(self) - - def rend(self): - return _mscl.ChannelFieldQualifiers_rend(self) - - def clear(self): - return _mscl.ChannelFieldQualifiers_clear(self) - - def get_allocator(self): - return _mscl.ChannelFieldQualifiers_get_allocator(self) - - def count(self, x): - return _mscl.ChannelFieldQualifiers_count(self, x) - - def erase(self, *args): - return _mscl.ChannelFieldQualifiers_erase(self, *args) - - def find(self, x): - return _mscl.ChannelFieldQualifiers_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelFieldQualifiers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelFieldQualifiers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelFieldQualifiers - -# Register ChannelFieldQualifiers in _mscl: -_mscl.ChannelFieldQualifiers_swigregister(ChannelFieldQualifiers) - -class GnssReceivers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssReceivers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssReceivers___nonzero__(self) - - def __bool__(self): - return _mscl.GnssReceivers___bool__(self) - - def __len__(self): - return _mscl.GnssReceivers___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssReceivers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssReceivers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssReceivers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssReceivers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssReceivers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssReceivers___setitem__(self, *args) - - def pop(self): - return _mscl.GnssReceivers_pop(self) - - def append(self, x): - return _mscl.GnssReceivers_append(self, x) - - def empty(self): - return _mscl.GnssReceivers_empty(self) - - def size(self): - return _mscl.GnssReceivers_size(self) - - def swap(self, v): - return _mscl.GnssReceivers_swap(self, v) - - def begin(self): - return _mscl.GnssReceivers_begin(self) - - def end(self): - return _mscl.GnssReceivers_end(self) - - def rbegin(self): - return _mscl.GnssReceivers_rbegin(self) - - def rend(self): - return _mscl.GnssReceivers_rend(self) - - def clear(self): - return _mscl.GnssReceivers_clear(self) - - def get_allocator(self): - return _mscl.GnssReceivers_get_allocator(self) - - def pop_back(self): - return _mscl.GnssReceivers_pop_back(self) - - def erase(self, *args): - return _mscl.GnssReceivers_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssReceivers_swiginit(self, _mscl.new_GnssReceivers(*args)) - - def push_back(self, x): - return _mscl.GnssReceivers_push_back(self, x) - - def front(self): - return _mscl.GnssReceivers_front(self) - - def back(self): - return _mscl.GnssReceivers_back(self) - - def assign(self, n, x): - return _mscl.GnssReceivers_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssReceivers_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssReceivers_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssReceivers_reserve(self, n) - - def capacity(self): - return _mscl.GnssReceivers_capacity(self) - __swig_destroy__ = _mscl.delete_GnssReceivers - -# Register GnssReceivers in _mscl: -_mscl.GnssReceivers_swigregister(GnssReceivers) - -class SensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRanges___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRanges___bool__(self) - - def __len__(self): - return _mscl.SensorRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorRanges___setitem__(self, *args) - - def pop(self): - return _mscl.SensorRanges_pop(self) - - def append(self, x): - return _mscl.SensorRanges_append(self, x) - - def empty(self): - return _mscl.SensorRanges_empty(self) - - def size(self): - return _mscl.SensorRanges_size(self) - - def swap(self, v): - return _mscl.SensorRanges_swap(self, v) - - def begin(self): - return _mscl.SensorRanges_begin(self) - - def end(self): - return _mscl.SensorRanges_end(self) - - def rbegin(self): - return _mscl.SensorRanges_rbegin(self) - - def rend(self): - return _mscl.SensorRanges_rend(self) - - def clear(self): - return _mscl.SensorRanges_clear(self) - - def get_allocator(self): - return _mscl.SensorRanges_get_allocator(self) - - def pop_back(self): - return _mscl.SensorRanges_pop_back(self) - - def erase(self, *args): - return _mscl.SensorRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorRanges_swiginit(self, _mscl.new_SensorRanges(*args)) - - def push_back(self, x): - return _mscl.SensorRanges_push_back(self, x) - - def front(self): - return _mscl.SensorRanges_front(self) - - def back(self): - return _mscl.SensorRanges_back(self) - - def assign(self, n, x): - return _mscl.SensorRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorRanges_reserve(self, n) - - def capacity(self): - return _mscl.SensorRanges_capacity(self) - __swig_destroy__ = _mscl.delete_SensorRanges - -# Register SensorRanges in _mscl: -_mscl.SensorRanges_swigregister(SensorRanges) - -class SensorRangeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRangeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRangeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRangeOptions___bool__(self) - - def __len__(self): - return _mscl.SensorRangeOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SensorRangeOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SensorRangeOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.SensorRangeOptions_has_key(self, key) - - def keys(self): - return _mscl.SensorRangeOptions_keys(self) - - def values(self): - return _mscl.SensorRangeOptions_values(self) - - def items(self): - return _mscl.SensorRangeOptions_items(self) - - def __contains__(self, key): - return _mscl.SensorRangeOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.SensorRangeOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.SensorRangeOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SensorRangeOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.SensorRangeOptions_asdict(self) - - def __init__(self, *args): - _mscl.SensorRangeOptions_swiginit(self, _mscl.new_SensorRangeOptions(*args)) - - def empty(self): - return _mscl.SensorRangeOptions_empty(self) - - def size(self): - return _mscl.SensorRangeOptions_size(self) - - def swap(self, v): - return _mscl.SensorRangeOptions_swap(self, v) - - def begin(self): - return _mscl.SensorRangeOptions_begin(self) - - def end(self): - return _mscl.SensorRangeOptions_end(self) - - def rbegin(self): - return _mscl.SensorRangeOptions_rbegin(self) - - def rend(self): - return _mscl.SensorRangeOptions_rend(self) - - def clear(self): - return _mscl.SensorRangeOptions_clear(self) - - def get_allocator(self): - return _mscl.SensorRangeOptions_get_allocator(self) - - def count(self, x): - return _mscl.SensorRangeOptions_count(self, x) - - def erase(self, *args): - return _mscl.SensorRangeOptions_erase(self, *args) - - def find(self, x): - return _mscl.SensorRangeOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.SensorRangeOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SensorRangeOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SensorRangeOptions - -# Register SensorRangeOptions in _mscl: -_mscl.SensorRangeOptions_swigregister(SensorRangeOptions) - -class CommPortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommPortInfo_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommPortInfo___nonzero__(self) - - def __bool__(self): - return _mscl.CommPortInfo___bool__(self) - - def __len__(self): - return _mscl.CommPortInfo___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommPortInfo___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommPortInfo___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommPortInfo___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommPortInfo___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommPortInfo___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommPortInfo___setitem__(self, *args) - - def pop(self): - return _mscl.CommPortInfo_pop(self) - - def append(self, x): - return _mscl.CommPortInfo_append(self, x) - - def empty(self): - return _mscl.CommPortInfo_empty(self) - - def size(self): - return _mscl.CommPortInfo_size(self) - - def swap(self, v): - return _mscl.CommPortInfo_swap(self, v) - - def begin(self): - return _mscl.CommPortInfo_begin(self) - - def end(self): - return _mscl.CommPortInfo_end(self) - - def rbegin(self): - return _mscl.CommPortInfo_rbegin(self) - - def rend(self): - return _mscl.CommPortInfo_rend(self) - - def clear(self): - return _mscl.CommPortInfo_clear(self) - - def get_allocator(self): - return _mscl.CommPortInfo_get_allocator(self) - - def pop_back(self): - return _mscl.CommPortInfo_pop_back(self) - - def erase(self, *args): - return _mscl.CommPortInfo_erase(self, *args) - - def __init__(self, *args): - _mscl.CommPortInfo_swiginit(self, _mscl.new_CommPortInfo(*args)) - - def push_back(self, x): - return _mscl.CommPortInfo_push_back(self, x) - - def front(self): - return _mscl.CommPortInfo_front(self) - - def back(self): - return _mscl.CommPortInfo_back(self) - - def assign(self, n, x): - return _mscl.CommPortInfo_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommPortInfo_resize(self, *args) - - def insert(self, *args): - return _mscl.CommPortInfo_insert(self, *args) - - def reserve(self, n): - return _mscl.CommPortInfo_reserve(self, n) - - def capacity(self): - return _mscl.CommPortInfo_capacity(self) - __swig_destroy__ = _mscl.delete_CommPortInfo - -# Register CommPortInfo in _mscl: -_mscl.CommPortInfo_swigregister(CommPortInfo) - -class EventTriggerStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTriggerStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTriggerStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventTriggerStatus___bool__(self) - - def __len__(self): - return _mscl.EventTriggerStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTriggerStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTriggerStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTriggerStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTriggerStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTriggerStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTriggerStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventTriggerStatus_pop(self) - - def append(self, x): - return _mscl.EventTriggerStatus_append(self, x) - - def empty(self): - return _mscl.EventTriggerStatus_empty(self) - - def size(self): - return _mscl.EventTriggerStatus_size(self) - - def swap(self, v): - return _mscl.EventTriggerStatus_swap(self, v) - - def begin(self): - return _mscl.EventTriggerStatus_begin(self) - - def end(self): - return _mscl.EventTriggerStatus_end(self) - - def rbegin(self): - return _mscl.EventTriggerStatus_rbegin(self) - - def rend(self): - return _mscl.EventTriggerStatus_rend(self) - - def clear(self): - return _mscl.EventTriggerStatus_clear(self) - - def get_allocator(self): - return _mscl.EventTriggerStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventTriggerStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventTriggerStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTriggerStatus_swiginit(self, _mscl.new_EventTriggerStatus(*args)) - - def push_back(self, x): - return _mscl.EventTriggerStatus_push_back(self, x) - - def front(self): - return _mscl.EventTriggerStatus_front(self) - - def back(self): - return _mscl.EventTriggerStatus_back(self) - - def assign(self, n, x): - return _mscl.EventTriggerStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTriggerStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTriggerStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTriggerStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventTriggerStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventTriggerStatus - -# Register EventTriggerStatus in _mscl: -_mscl.EventTriggerStatus_swigregister(EventTriggerStatus) - -class EventActionStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventActionStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventActionStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventActionStatus___bool__(self) - - def __len__(self): - return _mscl.EventActionStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventActionStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventActionStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventActionStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventActionStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventActionStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventActionStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventActionStatus_pop(self) - - def append(self, x): - return _mscl.EventActionStatus_append(self, x) - - def empty(self): - return _mscl.EventActionStatus_empty(self) - - def size(self): - return _mscl.EventActionStatus_size(self) - - def swap(self, v): - return _mscl.EventActionStatus_swap(self, v) - - def begin(self): - return _mscl.EventActionStatus_begin(self) - - def end(self): - return _mscl.EventActionStatus_end(self) - - def rbegin(self): - return _mscl.EventActionStatus_rbegin(self) - - def rend(self): - return _mscl.EventActionStatus_rend(self) - - def clear(self): - return _mscl.EventActionStatus_clear(self) - - def get_allocator(self): - return _mscl.EventActionStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventActionStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventActionStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventActionStatus_swiginit(self, _mscl.new_EventActionStatus(*args)) - - def push_back(self, x): - return _mscl.EventActionStatus_push_back(self, x) - - def front(self): - return _mscl.EventActionStatus_front(self) - - def back(self): - return _mscl.EventActionStatus_back(self) - - def assign(self, n, x): - return _mscl.EventActionStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventActionStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventActionStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventActionStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventActionStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventActionStatus - -# Register EventActionStatus in _mscl: -_mscl.EventActionStatus_swigregister(EventActionStatus) - -class ChannelGroups(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroups_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroups___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroups___bool__(self) - - def __len__(self): - return _mscl.ChannelGroups___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroups___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroups___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroups___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroups___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroups___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroups___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroups_pop(self) - - def append(self, x): - return _mscl.ChannelGroups_append(self, x) - - def empty(self): - return _mscl.ChannelGroups_empty(self) - - def size(self): - return _mscl.ChannelGroups_size(self) - - def swap(self, v): - return _mscl.ChannelGroups_swap(self, v) - - def begin(self): - return _mscl.ChannelGroups_begin(self) - - def end(self): - return _mscl.ChannelGroups_end(self) - - def rbegin(self): - return _mscl.ChannelGroups_rbegin(self) - - def rend(self): - return _mscl.ChannelGroups_rend(self) - - def clear(self): - return _mscl.ChannelGroups_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroups_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroups_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroups_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroups_swiginit(self, _mscl.new_ChannelGroups(*args)) - - def push_back(self, x): - return _mscl.ChannelGroups_push_back(self, x) - - def front(self): - return _mscl.ChannelGroups_front(self) - - def back(self): - return _mscl.ChannelGroups_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroups_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroups_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroups_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroups_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroups_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroups - -# Register ChannelGroups in _mscl: -_mscl.ChannelGroups_swigregister(ChannelGroups) - -class WirelessChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessChannels___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessChannels___bool__(self) - - def __len__(self): - return _mscl.WirelessChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessChannels___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessChannels_pop(self) - - def append(self, x): - return _mscl.WirelessChannels_append(self, x) - - def empty(self): - return _mscl.WirelessChannels_empty(self) - - def size(self): - return _mscl.WirelessChannels_size(self) - - def swap(self, v): - return _mscl.WirelessChannels_swap(self, v) - - def begin(self): - return _mscl.WirelessChannels_begin(self) - - def end(self): - return _mscl.WirelessChannels_end(self) - - def rbegin(self): - return _mscl.WirelessChannels_rbegin(self) - - def rend(self): - return _mscl.WirelessChannels_rend(self) - - def clear(self): - return _mscl.WirelessChannels_clear(self) - - def get_allocator(self): - return _mscl.WirelessChannels_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessChannels_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessChannels_swiginit(self, _mscl.new_WirelessChannels(*args)) - - def push_back(self, x): - return _mscl.WirelessChannels_push_back(self, x) - - def front(self): - return _mscl.WirelessChannels_front(self) - - def back(self): - return _mscl.WirelessChannels_back(self) - - def assign(self, n, x): - return _mscl.WirelessChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessChannels_reserve(self, n) - - def capacity(self): - return _mscl.WirelessChannels_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessChannels - -# Register WirelessChannels in _mscl: -_mscl.WirelessChannels_swigregister(WirelessChannels) - -class DamageAngles(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DamageAngles_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DamageAngles___nonzero__(self) - - def __bool__(self): - return _mscl.DamageAngles___bool__(self) - - def __len__(self): - return _mscl.DamageAngles___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DamageAngles___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DamageAngles___delitem__(self, key) - - def has_key(self, key): - return _mscl.DamageAngles_has_key(self, key) - - def keys(self): - return _mscl.DamageAngles_keys(self) - - def values(self): - return _mscl.DamageAngles_values(self) - - def items(self): - return _mscl.DamageAngles_items(self) - - def __contains__(self, key): - return _mscl.DamageAngles___contains__(self, key) - - def key_iterator(self): - return _mscl.DamageAngles_key_iterator(self) - - def value_iterator(self): - return _mscl.DamageAngles_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DamageAngles___setitem__(self, *args) - - def asdict(self): - return _mscl.DamageAngles_asdict(self) - - def __init__(self, *args): - _mscl.DamageAngles_swiginit(self, _mscl.new_DamageAngles(*args)) - - def empty(self): - return _mscl.DamageAngles_empty(self) - - def size(self): - return _mscl.DamageAngles_size(self) - - def swap(self, v): - return _mscl.DamageAngles_swap(self, v) - - def begin(self): - return _mscl.DamageAngles_begin(self) - - def end(self): - return _mscl.DamageAngles_end(self) - - def rbegin(self): - return _mscl.DamageAngles_rbegin(self) - - def rend(self): - return _mscl.DamageAngles_rend(self) - - def clear(self): - return _mscl.DamageAngles_clear(self) - - def get_allocator(self): - return _mscl.DamageAngles_get_allocator(self) - - def count(self, x): - return _mscl.DamageAngles_count(self, x) - - def erase(self, *args): - return _mscl.DamageAngles_erase(self, *args) - - def find(self, x): - return _mscl.DamageAngles_find(self, x) - - def lower_bound(self, x): - return _mscl.DamageAngles_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DamageAngles_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DamageAngles - -# Register DamageAngles in _mscl: -_mscl.DamageAngles_swigregister(DamageAngles) - -class SnCurveSegments(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SnCurveSegments_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SnCurveSegments___nonzero__(self) - - def __bool__(self): - return _mscl.SnCurveSegments___bool__(self) - - def __len__(self): - return _mscl.SnCurveSegments___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SnCurveSegments___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SnCurveSegments___delitem__(self, key) - - def has_key(self, key): - return _mscl.SnCurveSegments_has_key(self, key) - - def keys(self): - return _mscl.SnCurveSegments_keys(self) - - def values(self): - return _mscl.SnCurveSegments_values(self) - - def items(self): - return _mscl.SnCurveSegments_items(self) - - def __contains__(self, key): - return _mscl.SnCurveSegments___contains__(self, key) - - def key_iterator(self): - return _mscl.SnCurveSegments_key_iterator(self) - - def value_iterator(self): - return _mscl.SnCurveSegments_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SnCurveSegments___setitem__(self, *args) - - def asdict(self): - return _mscl.SnCurveSegments_asdict(self) - - def __init__(self, *args): - _mscl.SnCurveSegments_swiginit(self, _mscl.new_SnCurveSegments(*args)) - - def empty(self): - return _mscl.SnCurveSegments_empty(self) - - def size(self): - return _mscl.SnCurveSegments_size(self) - - def swap(self, v): - return _mscl.SnCurveSegments_swap(self, v) - - def begin(self): - return _mscl.SnCurveSegments_begin(self) - - def end(self): - return _mscl.SnCurveSegments_end(self) - - def rbegin(self): - return _mscl.SnCurveSegments_rbegin(self) - - def rend(self): - return _mscl.SnCurveSegments_rend(self) - - def clear(self): - return _mscl.SnCurveSegments_clear(self) - - def get_allocator(self): - return _mscl.SnCurveSegments_get_allocator(self) - - def count(self, x): - return _mscl.SnCurveSegments_count(self, x) - - def erase(self, *args): - return _mscl.SnCurveSegments_erase(self, *args) - - def find(self, x): - return _mscl.SnCurveSegments_find(self, x) - - def lower_bound(self, x): - return _mscl.SnCurveSegments_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SnCurveSegments_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SnCurveSegments - -# Register SnCurveSegments in _mscl: -_mscl.SnCurveSegments_swigregister(SnCurveSegments) - -class RfSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RfSweep_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RfSweep___nonzero__(self) - - def __bool__(self): - return _mscl.RfSweep___bool__(self) - - def __len__(self): - return _mscl.RfSweep___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.RfSweep___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.RfSweep___delitem__(self, key) - - def has_key(self, key): - return _mscl.RfSweep_has_key(self, key) - - def keys(self): - return _mscl.RfSweep_keys(self) - - def values(self): - return _mscl.RfSweep_values(self) - - def items(self): - return _mscl.RfSweep_items(self) - - def __contains__(self, key): - return _mscl.RfSweep___contains__(self, key) - - def key_iterator(self): - return _mscl.RfSweep_key_iterator(self) - - def value_iterator(self): - return _mscl.RfSweep_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.RfSweep___setitem__(self, *args) - - def asdict(self): - return _mscl.RfSweep_asdict(self) - - def __init__(self, *args): - _mscl.RfSweep_swiginit(self, _mscl.new_RfSweep(*args)) - - def empty(self): - return _mscl.RfSweep_empty(self) - - def size(self): - return _mscl.RfSweep_size(self) - - def swap(self, v): - return _mscl.RfSweep_swap(self, v) - - def begin(self): - return _mscl.RfSweep_begin(self) - - def end(self): - return _mscl.RfSweep_end(self) - - def rbegin(self): - return _mscl.RfSweep_rbegin(self) - - def rend(self): - return _mscl.RfSweep_rend(self) - - def clear(self): - return _mscl.RfSweep_clear(self) - - def get_allocator(self): - return _mscl.RfSweep_get_allocator(self) - - def count(self, x): - return _mscl.RfSweep_count(self, x) - - def erase(self, *args): - return _mscl.RfSweep_erase(self, *args) - - def find(self, x): - return _mscl.RfSweep_find(self, x) - - def lower_bound(self, x): - return _mscl.RfSweep_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.RfSweep_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_RfSweep - -# Register RfSweep in _mscl: -_mscl.RfSweep_swigregister(RfSweep) - -class Triggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Triggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Triggers___nonzero__(self) - - def __bool__(self): - return _mscl.Triggers___bool__(self) - - def __len__(self): - return _mscl.Triggers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.Triggers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.Triggers___delitem__(self, key) - - def has_key(self, key): - return _mscl.Triggers_has_key(self, key) - - def keys(self): - return _mscl.Triggers_keys(self) - - def values(self): - return _mscl.Triggers_values(self) - - def items(self): - return _mscl.Triggers_items(self) - - def __contains__(self, key): - return _mscl.Triggers___contains__(self, key) - - def key_iterator(self): - return _mscl.Triggers_key_iterator(self) - - def value_iterator(self): - return _mscl.Triggers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.Triggers___setitem__(self, *args) - - def asdict(self): - return _mscl.Triggers_asdict(self) - - def __init__(self, *args): - _mscl.Triggers_swiginit(self, _mscl.new_Triggers(*args)) - - def empty(self): - return _mscl.Triggers_empty(self) - - def size(self): - return _mscl.Triggers_size(self) - - def swap(self, v): - return _mscl.Triggers_swap(self, v) - - def begin(self): - return _mscl.Triggers_begin(self) - - def end(self): - return _mscl.Triggers_end(self) - - def rbegin(self): - return _mscl.Triggers_rbegin(self) - - def rend(self): - return _mscl.Triggers_rend(self) - - def clear(self): - return _mscl.Triggers_clear(self) - - def get_allocator(self): - return _mscl.Triggers_get_allocator(self) - - def count(self, x): - return _mscl.Triggers_count(self, x) - - def erase(self, *args): - return _mscl.Triggers_erase(self, *args) - - def find(self, x): - return _mscl.Triggers_find(self, x) - - def lower_bound(self, x): - return _mscl.Triggers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.Triggers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_Triggers - -# Register Triggers in _mscl: -_mscl.Triggers_swigregister(Triggers) - -class ChannelCalMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelCalMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelCalMap___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelCalMap___bool__(self) - - def __len__(self): - return _mscl.ChannelCalMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelCalMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelCalMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelCalMap_has_key(self, key) - - def keys(self): - return _mscl.ChannelCalMap_keys(self) - - def values(self): - return _mscl.ChannelCalMap_values(self) - - def items(self): - return _mscl.ChannelCalMap_items(self) - - def __contains__(self, key): - return _mscl.ChannelCalMap___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelCalMap_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelCalMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelCalMap___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelCalMap_asdict(self) - - def __init__(self, *args): - _mscl.ChannelCalMap_swiginit(self, _mscl.new_ChannelCalMap(*args)) - - def empty(self): - return _mscl.ChannelCalMap_empty(self) - - def size(self): - return _mscl.ChannelCalMap_size(self) - - def swap(self, v): - return _mscl.ChannelCalMap_swap(self, v) - - def begin(self): - return _mscl.ChannelCalMap_begin(self) - - def end(self): - return _mscl.ChannelCalMap_end(self) - - def rbegin(self): - return _mscl.ChannelCalMap_rbegin(self) - - def rend(self): - return _mscl.ChannelCalMap_rend(self) - - def clear(self): - return _mscl.ChannelCalMap_clear(self) - - def get_allocator(self): - return _mscl.ChannelCalMap_get_allocator(self) - - def count(self, x): - return _mscl.ChannelCalMap_count(self, x) - - def erase(self, *args): - return _mscl.ChannelCalMap_erase(self, *args) - - def find(self, x): - return _mscl.ChannelCalMap_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelCalMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelCalMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelCalMap - -# Register ChannelCalMap in _mscl: -_mscl.ChannelCalMap_swigregister(ChannelCalMap) - -class WirelessPollData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessPollData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessPollData___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessPollData___bool__(self) - - def __len__(self): - return _mscl.WirelessPollData___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.WirelessPollData___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.WirelessPollData___delitem__(self, key) - - def has_key(self, key): - return _mscl.WirelessPollData_has_key(self, key) - - def keys(self): - return _mscl.WirelessPollData_keys(self) - - def values(self): - return _mscl.WirelessPollData_values(self) - - def items(self): - return _mscl.WirelessPollData_items(self) - - def __contains__(self, key): - return _mscl.WirelessPollData___contains__(self, key) - - def key_iterator(self): - return _mscl.WirelessPollData_key_iterator(self) - - def value_iterator(self): - return _mscl.WirelessPollData_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.WirelessPollData___setitem__(self, *args) - - def asdict(self): - return _mscl.WirelessPollData_asdict(self) - - def __init__(self, *args): - _mscl.WirelessPollData_swiginit(self, _mscl.new_WirelessPollData(*args)) - - def empty(self): - return _mscl.WirelessPollData_empty(self) - - def size(self): - return _mscl.WirelessPollData_size(self) - - def swap(self, v): - return _mscl.WirelessPollData_swap(self, v) - - def begin(self): - return _mscl.WirelessPollData_begin(self) - - def end(self): - return _mscl.WirelessPollData_end(self) - - def rbegin(self): - return _mscl.WirelessPollData_rbegin(self) - - def rend(self): - return _mscl.WirelessPollData_rend(self) - - def clear(self): - return _mscl.WirelessPollData_clear(self) - - def get_allocator(self): - return _mscl.WirelessPollData_get_allocator(self) - - def count(self, x): - return _mscl.WirelessPollData_count(self, x) - - def erase(self, *args): - return _mscl.WirelessPollData_erase(self, *args) - - def find(self, x): - return _mscl.WirelessPollData_find(self, x) - - def lower_bound(self, x): - return _mscl.WirelessPollData_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.WirelessPollData_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_WirelessPollData - -# Register WirelessPollData in _mscl: -_mscl.WirelessPollData_swigregister(WirelessPollData) - -class ConnectionDebugDataVec(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConnectionDebugDataVec_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConnectionDebugDataVec___nonzero__(self) - - def __bool__(self): - return _mscl.ConnectionDebugDataVec___bool__(self) - - def __len__(self): - return _mscl.ConnectionDebugDataVec___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConnectionDebugDataVec___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConnectionDebugDataVec___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConnectionDebugDataVec___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConnectionDebugDataVec___setitem__(self, *args) - - def pop(self): - return _mscl.ConnectionDebugDataVec_pop(self) - - def append(self, x): - return _mscl.ConnectionDebugDataVec_append(self, x) - - def empty(self): - return _mscl.ConnectionDebugDataVec_empty(self) - - def size(self): - return _mscl.ConnectionDebugDataVec_size(self) - - def swap(self, v): - return _mscl.ConnectionDebugDataVec_swap(self, v) - - def begin(self): - return _mscl.ConnectionDebugDataVec_begin(self) - - def end(self): - return _mscl.ConnectionDebugDataVec_end(self) - - def rbegin(self): - return _mscl.ConnectionDebugDataVec_rbegin(self) - - def rend(self): - return _mscl.ConnectionDebugDataVec_rend(self) - - def clear(self): - return _mscl.ConnectionDebugDataVec_clear(self) - - def get_allocator(self): - return _mscl.ConnectionDebugDataVec_get_allocator(self) - - def pop_back(self): - return _mscl.ConnectionDebugDataVec_pop_back(self) - - def erase(self, *args): - return _mscl.ConnectionDebugDataVec_erase(self, *args) - - def __init__(self, *args): - _mscl.ConnectionDebugDataVec_swiginit(self, _mscl.new_ConnectionDebugDataVec(*args)) - - def push_back(self, x): - return _mscl.ConnectionDebugDataVec_push_back(self, x) - - def front(self): - return _mscl.ConnectionDebugDataVec_front(self) - - def back(self): - return _mscl.ConnectionDebugDataVec_back(self) - - def assign(self, n, x): - return _mscl.ConnectionDebugDataVec_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConnectionDebugDataVec_resize(self, *args) - - def insert(self, *args): - return _mscl.ConnectionDebugDataVec_insert(self, *args) - - def reserve(self, n): - return _mscl.ConnectionDebugDataVec_reserve(self, n) - - def capacity(self): - return _mscl.ConnectionDebugDataVec_capacity(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugDataVec - -# Register ConnectionDebugDataVec in _mscl: -_mscl.ConnectionDebugDataVec_swigregister(ConnectionDebugDataVec) - -class SatellitePRNs(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SatellitePRNs_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SatellitePRNs___nonzero__(self) - - def __bool__(self): - return _mscl.SatellitePRNs___bool__(self) - - def __len__(self): - return _mscl.SatellitePRNs___len__(self) - - def __getslice__(self, i, j): - return _mscl.SatellitePRNs___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SatellitePRNs___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SatellitePRNs___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SatellitePRNs___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SatellitePRNs___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SatellitePRNs___setitem__(self, *args) - - def pop(self): - return _mscl.SatellitePRNs_pop(self) - - def append(self, x): - return _mscl.SatellitePRNs_append(self, x) - - def empty(self): - return _mscl.SatellitePRNs_empty(self) - - def size(self): - return _mscl.SatellitePRNs_size(self) - - def swap(self, v): - return _mscl.SatellitePRNs_swap(self, v) - - def begin(self): - return _mscl.SatellitePRNs_begin(self) - - def end(self): - return _mscl.SatellitePRNs_end(self) - - def rbegin(self): - return _mscl.SatellitePRNs_rbegin(self) - - def rend(self): - return _mscl.SatellitePRNs_rend(self) - - def clear(self): - return _mscl.SatellitePRNs_clear(self) - - def get_allocator(self): - return _mscl.SatellitePRNs_get_allocator(self) - - def pop_back(self): - return _mscl.SatellitePRNs_pop_back(self) - - def erase(self, *args): - return _mscl.SatellitePRNs_erase(self, *args) - - def __init__(self, *args): - _mscl.SatellitePRNs_swiginit(self, _mscl.new_SatellitePRNs(*args)) - - def push_back(self, x): - return _mscl.SatellitePRNs_push_back(self, x) - - def front(self): - return _mscl.SatellitePRNs_front(self) - - def back(self): - return _mscl.SatellitePRNs_back(self) - - def assign(self, n, x): - return _mscl.SatellitePRNs_assign(self, n, x) - - def resize(self, *args): - return _mscl.SatellitePRNs_resize(self, *args) - - def insert(self, *args): - return _mscl.SatellitePRNs_insert(self, *args) - - def reserve(self, n): - return _mscl.SatellitePRNs_reserve(self, n) - - def capacity(self): - return _mscl.SatellitePRNs_capacity(self) - __swig_destroy__ = _mscl.delete_SatellitePRNs - -# Register SatellitePRNs in _mscl: -_mscl.SatellitePRNs_swigregister(SatellitePRNs) - -class Constellations(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Constellations_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Constellations___nonzero__(self) - - def __bool__(self): - return _mscl.Constellations___bool__(self) - - def __len__(self): - return _mscl.Constellations___len__(self) - - def __getslice__(self, i, j): - return _mscl.Constellations___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Constellations___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Constellations___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Constellations___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Constellations___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Constellations___setitem__(self, *args) - - def pop(self): - return _mscl.Constellations_pop(self) - - def append(self, x): - return _mscl.Constellations_append(self, x) - - def empty(self): - return _mscl.Constellations_empty(self) - - def size(self): - return _mscl.Constellations_size(self) - - def swap(self, v): - return _mscl.Constellations_swap(self, v) - - def begin(self): - return _mscl.Constellations_begin(self) - - def end(self): - return _mscl.Constellations_end(self) - - def rbegin(self): - return _mscl.Constellations_rbegin(self) - - def rend(self): - return _mscl.Constellations_rend(self) - - def clear(self): - return _mscl.Constellations_clear(self) - - def get_allocator(self): - return _mscl.Constellations_get_allocator(self) - - def pop_back(self): - return _mscl.Constellations_pop_back(self) - - def erase(self, *args): - return _mscl.Constellations_erase(self, *args) - - def __init__(self, *args): - _mscl.Constellations_swiginit(self, _mscl.new_Constellations(*args)) - - def push_back(self, x): - return _mscl.Constellations_push_back(self, x) - - def front(self): - return _mscl.Constellations_front(self) - - def back(self): - return _mscl.Constellations_back(self) - - def assign(self, n, x): - return _mscl.Constellations_assign(self, n, x) - - def resize(self, *args): - return _mscl.Constellations_resize(self, *args) - - def insert(self, *args): - return _mscl.Constellations_insert(self, *args) - - def reserve(self, n): - return _mscl.Constellations_reserve(self, n) - - def capacity(self): - return _mscl.Constellations_capacity(self) - __swig_destroy__ = _mscl.delete_Constellations - -# Register Constellations in _mscl: -_mscl.Constellations_swigregister(Constellations) - -class HeadingUpdateOptionsList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HeadingUpdateOptionsList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HeadingUpdateOptionsList___nonzero__(self) - - def __bool__(self): - return _mscl.HeadingUpdateOptionsList___bool__(self) - - def __len__(self): - return _mscl.HeadingUpdateOptionsList___len__(self) - - def __getslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HeadingUpdateOptionsList___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___setitem__(self, *args) - - def pop(self): - return _mscl.HeadingUpdateOptionsList_pop(self) - - def append(self, x): - return _mscl.HeadingUpdateOptionsList_append(self, x) - - def empty(self): - return _mscl.HeadingUpdateOptionsList_empty(self) - - def size(self): - return _mscl.HeadingUpdateOptionsList_size(self) - - def swap(self, v): - return _mscl.HeadingUpdateOptionsList_swap(self, v) - - def begin(self): - return _mscl.HeadingUpdateOptionsList_begin(self) - - def end(self): - return _mscl.HeadingUpdateOptionsList_end(self) - - def rbegin(self): - return _mscl.HeadingUpdateOptionsList_rbegin(self) - - def rend(self): - return _mscl.HeadingUpdateOptionsList_rend(self) - - def clear(self): - return _mscl.HeadingUpdateOptionsList_clear(self) - - def get_allocator(self): - return _mscl.HeadingUpdateOptionsList_get_allocator(self) - - def pop_back(self): - return _mscl.HeadingUpdateOptionsList_pop_back(self) - - def erase(self, *args): - return _mscl.HeadingUpdateOptionsList_erase(self, *args) - - def __init__(self, *args): - _mscl.HeadingUpdateOptionsList_swiginit(self, _mscl.new_HeadingUpdateOptionsList(*args)) - - def push_back(self, x): - return _mscl.HeadingUpdateOptionsList_push_back(self, x) - - def front(self): - return _mscl.HeadingUpdateOptionsList_front(self) - - def back(self): - return _mscl.HeadingUpdateOptionsList_back(self) - - def assign(self, n, x): - return _mscl.HeadingUpdateOptionsList_assign(self, n, x) - - def resize(self, *args): - return _mscl.HeadingUpdateOptionsList_resize(self, *args) - - def insert(self, *args): - return _mscl.HeadingUpdateOptionsList_insert(self, *args) - - def reserve(self, n): - return _mscl.HeadingUpdateOptionsList_reserve(self, n) - - def capacity(self): - return _mscl.HeadingUpdateOptionsList_capacity(self) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptionsList - -# Register HeadingUpdateOptionsList in _mscl: -_mscl.HeadingUpdateOptionsList_swigregister(HeadingUpdateOptionsList) - -class AdaptiveMeasurementModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveMeasurementModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveMeasurementModes___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveMeasurementModes___bool__(self) - - def __len__(self): - return _mscl.AdaptiveMeasurementModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveMeasurementModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveMeasurementModes_pop(self) - - def append(self, x): - return _mscl.AdaptiveMeasurementModes_append(self, x) - - def empty(self): - return _mscl.AdaptiveMeasurementModes_empty(self) - - def size(self): - return _mscl.AdaptiveMeasurementModes_size(self) - - def swap(self, v): - return _mscl.AdaptiveMeasurementModes_swap(self, v) - - def begin(self): - return _mscl.AdaptiveMeasurementModes_begin(self) - - def end(self): - return _mscl.AdaptiveMeasurementModes_end(self) - - def rbegin(self): - return _mscl.AdaptiveMeasurementModes_rbegin(self) - - def rend(self): - return _mscl.AdaptiveMeasurementModes_rend(self) - - def clear(self): - return _mscl.AdaptiveMeasurementModes_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveMeasurementModes_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveMeasurementModes_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveMeasurementModes_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveMeasurementModes_swiginit(self, _mscl.new_AdaptiveMeasurementModes(*args)) - - def push_back(self, x): - return _mscl.AdaptiveMeasurementModes_push_back(self, x) - - def front(self): - return _mscl.AdaptiveMeasurementModes_front(self) - - def back(self): - return _mscl.AdaptiveMeasurementModes_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveMeasurementModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveMeasurementModes_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveMeasurementModes_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveMeasurementModes_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveMeasurementModes_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementModes - -# Register AdaptiveMeasurementModes in _mscl: -_mscl.AdaptiveMeasurementModes_swigregister(AdaptiveMeasurementModes) - -class GeometricVectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeometricVectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeometricVectors___nonzero__(self) - - def __bool__(self): - return _mscl.GeometricVectors___bool__(self) - - def __len__(self): - return _mscl.GeometricVectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeometricVectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeometricVectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeometricVectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeometricVectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeometricVectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeometricVectors___setitem__(self, *args) - - def pop(self): - return _mscl.GeometricVectors_pop(self) - - def append(self, x): - return _mscl.GeometricVectors_append(self, x) - - def empty(self): - return _mscl.GeometricVectors_empty(self) - - def size(self): - return _mscl.GeometricVectors_size(self) - - def swap(self, v): - return _mscl.GeometricVectors_swap(self, v) - - def begin(self): - return _mscl.GeometricVectors_begin(self) - - def end(self): - return _mscl.GeometricVectors_end(self) - - def rbegin(self): - return _mscl.GeometricVectors_rbegin(self) - - def rend(self): - return _mscl.GeometricVectors_rend(self) - - def clear(self): - return _mscl.GeometricVectors_clear(self) - - def get_allocator(self): - return _mscl.GeometricVectors_get_allocator(self) - - def pop_back(self): - return _mscl.GeometricVectors_pop_back(self) - - def erase(self, *args): - return _mscl.GeometricVectors_erase(self, *args) - - def __init__(self, *args): - _mscl.GeometricVectors_swiginit(self, _mscl.new_GeometricVectors(*args)) - - def push_back(self, x): - return _mscl.GeometricVectors_push_back(self, x) - - def front(self): - return _mscl.GeometricVectors_front(self) - - def back(self): - return _mscl.GeometricVectors_back(self) - - def assign(self, n, x): - return _mscl.GeometricVectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeometricVectors_resize(self, *args) - - def insert(self, *args): - return _mscl.GeometricVectors_insert(self, *args) - - def reserve(self, n): - return _mscl.GeometricVectors_reserve(self, n) - - def capacity(self): - return _mscl.GeometricVectors_capacity(self) - __swig_destroy__ = _mscl.delete_GeometricVectors - -# Register GeometricVectors in _mscl: -_mscl.GeometricVectors_swigregister(GeometricVectors) - -class Matrix_3x3s(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Matrix_3x3s_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Matrix_3x3s___nonzero__(self) - - def __bool__(self): - return _mscl.Matrix_3x3s___bool__(self) - - def __len__(self): - return _mscl.Matrix_3x3s___len__(self) - - def __getslice__(self, i, j): - return _mscl.Matrix_3x3s___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Matrix_3x3s___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Matrix_3x3s___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Matrix_3x3s___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Matrix_3x3s___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Matrix_3x3s___setitem__(self, *args) - - def pop(self): - return _mscl.Matrix_3x3s_pop(self) - - def append(self, x): - return _mscl.Matrix_3x3s_append(self, x) - - def empty(self): - return _mscl.Matrix_3x3s_empty(self) - - def size(self): - return _mscl.Matrix_3x3s_size(self) - - def swap(self, v): - return _mscl.Matrix_3x3s_swap(self, v) - - def begin(self): - return _mscl.Matrix_3x3s_begin(self) - - def end(self): - return _mscl.Matrix_3x3s_end(self) - - def rbegin(self): - return _mscl.Matrix_3x3s_rbegin(self) - - def rend(self): - return _mscl.Matrix_3x3s_rend(self) - - def clear(self): - return _mscl.Matrix_3x3s_clear(self) - - def get_allocator(self): - return _mscl.Matrix_3x3s_get_allocator(self) - - def pop_back(self): - return _mscl.Matrix_3x3s_pop_back(self) - - def erase(self, *args): - return _mscl.Matrix_3x3s_erase(self, *args) - - def __init__(self, *args): - _mscl.Matrix_3x3s_swiginit(self, _mscl.new_Matrix_3x3s(*args)) - - def push_back(self, x): - return _mscl.Matrix_3x3s_push_back(self, x) - - def front(self): - return _mscl.Matrix_3x3s_front(self) - - def back(self): - return _mscl.Matrix_3x3s_back(self) - - def assign(self, n, x): - return _mscl.Matrix_3x3s_assign(self, n, x) - - def resize(self, *args): - return _mscl.Matrix_3x3s_resize(self, *args) - - def insert(self, *args): - return _mscl.Matrix_3x3s_insert(self, *args) - - def reserve(self, n): - return _mscl.Matrix_3x3s_reserve(self, n) - - def capacity(self): - return _mscl.Matrix_3x3s_capacity(self) - __swig_destroy__ = _mscl.delete_Matrix_3x3s - -# Register Matrix_3x3s in _mscl: -_mscl.Matrix_3x3s_swigregister(Matrix_3x3s) - -class StatusSelectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StatusSelectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StatusSelectors___nonzero__(self) - - def __bool__(self): - return _mscl.StatusSelectors___bool__(self) - - def __len__(self): - return _mscl.StatusSelectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.StatusSelectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StatusSelectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StatusSelectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StatusSelectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StatusSelectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StatusSelectors___setitem__(self, *args) - - def pop(self): - return _mscl.StatusSelectors_pop(self) - - def append(self, x): - return _mscl.StatusSelectors_append(self, x) - - def empty(self): - return _mscl.StatusSelectors_empty(self) - - def size(self): - return _mscl.StatusSelectors_size(self) - - def swap(self, v): - return _mscl.StatusSelectors_swap(self, v) - - def begin(self): - return _mscl.StatusSelectors_begin(self) - - def end(self): - return _mscl.StatusSelectors_end(self) - - def rbegin(self): - return _mscl.StatusSelectors_rbegin(self) - - def rend(self): - return _mscl.StatusSelectors_rend(self) - - def clear(self): - return _mscl.StatusSelectors_clear(self) - - def get_allocator(self): - return _mscl.StatusSelectors_get_allocator(self) - - def pop_back(self): - return _mscl.StatusSelectors_pop_back(self) - - def erase(self, *args): - return _mscl.StatusSelectors_erase(self, *args) - - def __init__(self, *args): - _mscl.StatusSelectors_swiginit(self, _mscl.new_StatusSelectors(*args)) - - def push_back(self, x): - return _mscl.StatusSelectors_push_back(self, x) - - def front(self): - return _mscl.StatusSelectors_front(self) - - def back(self): - return _mscl.StatusSelectors_back(self) - - def assign(self, n, x): - return _mscl.StatusSelectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.StatusSelectors_resize(self, *args) - - def insert(self, *args): - return _mscl.StatusSelectors_insert(self, *args) - - def reserve(self, n): - return _mscl.StatusSelectors_reserve(self, n) - - def capacity(self): - return _mscl.StatusSelectors_capacity(self) - __swig_destroy__ = _mscl.delete_StatusSelectors - -# Register StatusSelectors in _mscl: -_mscl.StatusSelectors_swigregister(StatusSelectors) - -class VehicleModeTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.VehicleModeTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.VehicleModeTypes___nonzero__(self) - - def __bool__(self): - return _mscl.VehicleModeTypes___bool__(self) - - def __len__(self): - return _mscl.VehicleModeTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.VehicleModeTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.VehicleModeTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.VehicleModeTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.VehicleModeTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.VehicleModeTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.VehicleModeTypes___setitem__(self, *args) - - def pop(self): - return _mscl.VehicleModeTypes_pop(self) - - def append(self, x): - return _mscl.VehicleModeTypes_append(self, x) - - def empty(self): - return _mscl.VehicleModeTypes_empty(self) - - def size(self): - return _mscl.VehicleModeTypes_size(self) - - def swap(self, v): - return _mscl.VehicleModeTypes_swap(self, v) - - def begin(self): - return _mscl.VehicleModeTypes_begin(self) - - def end(self): - return _mscl.VehicleModeTypes_end(self) - - def rbegin(self): - return _mscl.VehicleModeTypes_rbegin(self) - - def rend(self): - return _mscl.VehicleModeTypes_rend(self) - - def clear(self): - return _mscl.VehicleModeTypes_clear(self) - - def get_allocator(self): - return _mscl.VehicleModeTypes_get_allocator(self) - - def pop_back(self): - return _mscl.VehicleModeTypes_pop_back(self) - - def erase(self, *args): - return _mscl.VehicleModeTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.VehicleModeTypes_swiginit(self, _mscl.new_VehicleModeTypes(*args)) - - def push_back(self, x): - return _mscl.VehicleModeTypes_push_back(self, x) - - def front(self): - return _mscl.VehicleModeTypes_front(self) - - def back(self): - return _mscl.VehicleModeTypes_back(self) - - def assign(self, n, x): - return _mscl.VehicleModeTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.VehicleModeTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.VehicleModeTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.VehicleModeTypes_reserve(self, n) - - def capacity(self): - return _mscl.VehicleModeTypes_capacity(self) - __swig_destroy__ = _mscl.delete_VehicleModeTypes - -# Register VehicleModeTypes in _mscl: -_mscl.VehicleModeTypes_swigregister(VehicleModeTypes) - -class AdaptiveFilterLevels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveFilterLevels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveFilterLevels___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveFilterLevels___bool__(self) - - def __len__(self): - return _mscl.AdaptiveFilterLevels___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveFilterLevels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveFilterLevels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveFilterLevels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveFilterLevels___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveFilterLevels_pop(self) - - def append(self, x): - return _mscl.AdaptiveFilterLevels_append(self, x) - - def empty(self): - return _mscl.AdaptiveFilterLevels_empty(self) - - def size(self): - return _mscl.AdaptiveFilterLevels_size(self) - - def swap(self, v): - return _mscl.AdaptiveFilterLevels_swap(self, v) - - def begin(self): - return _mscl.AdaptiveFilterLevels_begin(self) - - def end(self): - return _mscl.AdaptiveFilterLevels_end(self) - - def rbegin(self): - return _mscl.AdaptiveFilterLevels_rbegin(self) - - def rend(self): - return _mscl.AdaptiveFilterLevels_rend(self) - - def clear(self): - return _mscl.AdaptiveFilterLevels_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveFilterLevels_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveFilterLevels_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveFilterLevels_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveFilterLevels_swiginit(self, _mscl.new_AdaptiveFilterLevels(*args)) - - def push_back(self, x): - return _mscl.AdaptiveFilterLevels_push_back(self, x) - - def front(self): - return _mscl.AdaptiveFilterLevels_front(self) - - def back(self): - return _mscl.AdaptiveFilterLevels_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveFilterLevels_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveFilterLevels_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveFilterLevels_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveFilterLevels_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveFilterLevels_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveFilterLevels - -# Register AdaptiveFilterLevels in _mscl: -_mscl.AdaptiveFilterLevels_swigregister(AdaptiveFilterLevels) - -class LowPassFilterConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LowPassFilterConfig_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LowPassFilterConfig___nonzero__(self) - - def __bool__(self): - return _mscl.LowPassFilterConfig___bool__(self) - - def __len__(self): - return _mscl.LowPassFilterConfig___len__(self) - - def __getslice__(self, i, j): - return _mscl.LowPassFilterConfig___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LowPassFilterConfig___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LowPassFilterConfig___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LowPassFilterConfig___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LowPassFilterConfig___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LowPassFilterConfig___setitem__(self, *args) - - def pop(self): - return _mscl.LowPassFilterConfig_pop(self) - - def append(self, x): - return _mscl.LowPassFilterConfig_append(self, x) - - def empty(self): - return _mscl.LowPassFilterConfig_empty(self) - - def size(self): - return _mscl.LowPassFilterConfig_size(self) - - def swap(self, v): - return _mscl.LowPassFilterConfig_swap(self, v) - - def begin(self): - return _mscl.LowPassFilterConfig_begin(self) - - def end(self): - return _mscl.LowPassFilterConfig_end(self) - - def rbegin(self): - return _mscl.LowPassFilterConfig_rbegin(self) - - def rend(self): - return _mscl.LowPassFilterConfig_rend(self) - - def clear(self): - return _mscl.LowPassFilterConfig_clear(self) - - def get_allocator(self): - return _mscl.LowPassFilterConfig_get_allocator(self) - - def pop_back(self): - return _mscl.LowPassFilterConfig_pop_back(self) - - def erase(self, *args): - return _mscl.LowPassFilterConfig_erase(self, *args) - - def __init__(self, *args): - _mscl.LowPassFilterConfig_swiginit(self, _mscl.new_LowPassFilterConfig(*args)) - - def push_back(self, x): - return _mscl.LowPassFilterConfig_push_back(self, x) - - def front(self): - return _mscl.LowPassFilterConfig_front(self) - - def back(self): - return _mscl.LowPassFilterConfig_back(self) - - def assign(self, n, x): - return _mscl.LowPassFilterConfig_assign(self, n, x) - - def resize(self, *args): - return _mscl.LowPassFilterConfig_resize(self, *args) - - def insert(self, *args): - return _mscl.LowPassFilterConfig_insert(self, *args) - - def reserve(self, n): - return _mscl.LowPassFilterConfig_reserve(self, n) - - def capacity(self): - return _mscl.LowPassFilterConfig_capacity(self) - __swig_destroy__ = _mscl.delete_LowPassFilterConfig - -# Register LowPassFilterConfig in _mscl: -_mscl.LowPassFilterConfig_swigregister(LowPassFilterConfig) - -class AidingMeasurementSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AidingMeasurementSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AidingMeasurementSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.AidingMeasurementSourceOptions___bool__(self) - - def __len__(self): - return _mscl.AidingMeasurementSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.AidingMeasurementSourceOptions_pop(self) - - def append(self, x): - return _mscl.AidingMeasurementSourceOptions_append(self, x) - - def empty(self): - return _mscl.AidingMeasurementSourceOptions_empty(self) - - def size(self): - return _mscl.AidingMeasurementSourceOptions_size(self) - - def swap(self, v): - return _mscl.AidingMeasurementSourceOptions_swap(self, v) - - def begin(self): - return _mscl.AidingMeasurementSourceOptions_begin(self) - - def end(self): - return _mscl.AidingMeasurementSourceOptions_end(self) - - def rbegin(self): - return _mscl.AidingMeasurementSourceOptions_rbegin(self) - - def rend(self): - return _mscl.AidingMeasurementSourceOptions_rend(self) - - def clear(self): - return _mscl.AidingMeasurementSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.AidingMeasurementSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.AidingMeasurementSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.AidingMeasurementSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.AidingMeasurementSourceOptions_swiginit(self, _mscl.new_AidingMeasurementSourceOptions(*args)) - - def push_back(self, x): - return _mscl.AidingMeasurementSourceOptions_push_back(self, x) - - def front(self): - return _mscl.AidingMeasurementSourceOptions_front(self) - - def back(self): - return _mscl.AidingMeasurementSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.AidingMeasurementSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.AidingMeasurementSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.AidingMeasurementSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.AidingMeasurementSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.AidingMeasurementSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_AidingMeasurementSourceOptions - -# Register AidingMeasurementSourceOptions in _mscl: -_mscl.AidingMeasurementSourceOptions_swigregister(AidingMeasurementSourceOptions) - -class PpsSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.PpsSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.PpsSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.PpsSourceOptions___bool__(self) - - def __len__(self): - return _mscl.PpsSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.PpsSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.PpsSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.PpsSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.PpsSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.PpsSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.PpsSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.PpsSourceOptions_pop(self) - - def append(self, x): - return _mscl.PpsSourceOptions_append(self, x) - - def empty(self): - return _mscl.PpsSourceOptions_empty(self) - - def size(self): - return _mscl.PpsSourceOptions_size(self) - - def swap(self, v): - return _mscl.PpsSourceOptions_swap(self, v) - - def begin(self): - return _mscl.PpsSourceOptions_begin(self) - - def end(self): - return _mscl.PpsSourceOptions_end(self) - - def rbegin(self): - return _mscl.PpsSourceOptions_rbegin(self) - - def rend(self): - return _mscl.PpsSourceOptions_rend(self) - - def clear(self): - return _mscl.PpsSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.PpsSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.PpsSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.PpsSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.PpsSourceOptions_swiginit(self, _mscl.new_PpsSourceOptions(*args)) - - def push_back(self, x): - return _mscl.PpsSourceOptions_push_back(self, x) - - def front(self): - return _mscl.PpsSourceOptions_front(self) - - def back(self): - return _mscl.PpsSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.PpsSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.PpsSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.PpsSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.PpsSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.PpsSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_PpsSourceOptions - -# Register PpsSourceOptions in _mscl: -_mscl.PpsSourceOptions_swigregister(PpsSourceOptions) - -class GeographicSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeographicSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeographicSources___nonzero__(self) - - def __bool__(self): - return _mscl.GeographicSources___bool__(self) - - def __len__(self): - return _mscl.GeographicSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeographicSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeographicSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeographicSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeographicSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeographicSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeographicSources___setitem__(self, *args) - - def pop(self): - return _mscl.GeographicSources_pop(self) - - def append(self, x): - return _mscl.GeographicSources_append(self, x) - - def empty(self): - return _mscl.GeographicSources_empty(self) - - def size(self): - return _mscl.GeographicSources_size(self) - - def swap(self, v): - return _mscl.GeographicSources_swap(self, v) - - def begin(self): - return _mscl.GeographicSources_begin(self) - - def end(self): - return _mscl.GeographicSources_end(self) - - def rbegin(self): - return _mscl.GeographicSources_rbegin(self) - - def rend(self): - return _mscl.GeographicSources_rend(self) - - def clear(self): - return _mscl.GeographicSources_clear(self) - - def get_allocator(self): - return _mscl.GeographicSources_get_allocator(self) - - def pop_back(self): - return _mscl.GeographicSources_pop_back(self) - - def erase(self, *args): - return _mscl.GeographicSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GeographicSources_swiginit(self, _mscl.new_GeographicSources(*args)) - - def push_back(self, x): - return _mscl.GeographicSources_push_back(self, x) - - def front(self): - return _mscl.GeographicSources_front(self) - - def back(self): - return _mscl.GeographicSources_back(self) - - def assign(self, n, x): - return _mscl.GeographicSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeographicSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GeographicSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GeographicSources_reserve(self, n) - - def capacity(self): - return _mscl.GeographicSources_capacity(self) - __swig_destroy__ = _mscl.delete_GeographicSources - -# Register GeographicSources in _mscl: -_mscl.GeographicSources_swigregister(GeographicSources) - -class GnssSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSources___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSources___bool__(self) - - def __len__(self): - return _mscl.GnssSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssSources___setitem__(self, *args) - - def pop(self): - return _mscl.GnssSources_pop(self) - - def append(self, x): - return _mscl.GnssSources_append(self, x) - - def empty(self): - return _mscl.GnssSources_empty(self) - - def size(self): - return _mscl.GnssSources_size(self) - - def swap(self, v): - return _mscl.GnssSources_swap(self, v) - - def begin(self): - return _mscl.GnssSources_begin(self) - - def end(self): - return _mscl.GnssSources_end(self) - - def rbegin(self): - return _mscl.GnssSources_rbegin(self) - - def rend(self): - return _mscl.GnssSources_rend(self) - - def clear(self): - return _mscl.GnssSources_clear(self) - - def get_allocator(self): - return _mscl.GnssSources_get_allocator(self) - - def pop_back(self): - return _mscl.GnssSources_pop_back(self) - - def erase(self, *args): - return _mscl.GnssSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssSources_swiginit(self, _mscl.new_GnssSources(*args)) - - def push_back(self, x): - return _mscl.GnssSources_push_back(self, x) - - def front(self): - return _mscl.GnssSources_front(self) - - def back(self): - return _mscl.GnssSources_back(self) - - def assign(self, n, x): - return _mscl.GnssSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssSources_reserve(self, n) - - def capacity(self): - return _mscl.GnssSources_capacity(self) - __swig_destroy__ = _mscl.delete_GnssSources - -# Register GnssSources in _mscl: -_mscl.GnssSources_swigregister(GnssSources) - -class GnssSignalConfigOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSignalConfigOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSignalConfigOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSignalConfigOptions___bool__(self) - - def __len__(self): - return _mscl.GnssSignalConfigOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GnssSignalConfigOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GnssSignalConfigOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GnssSignalConfigOptions_has_key(self, key) - - def keys(self): - return _mscl.GnssSignalConfigOptions_keys(self) - - def values(self): - return _mscl.GnssSignalConfigOptions_values(self) - - def items(self): - return _mscl.GnssSignalConfigOptions_items(self) - - def __contains__(self, key): - return _mscl.GnssSignalConfigOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GnssSignalConfigOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GnssSignalConfigOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GnssSignalConfigOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GnssSignalConfigOptions_asdict(self) - - def __init__(self, *args): - _mscl.GnssSignalConfigOptions_swiginit(self, _mscl.new_GnssSignalConfigOptions(*args)) - - def empty(self): - return _mscl.GnssSignalConfigOptions_empty(self) - - def size(self): - return _mscl.GnssSignalConfigOptions_size(self) - - def swap(self, v): - return _mscl.GnssSignalConfigOptions_swap(self, v) - - def begin(self): - return _mscl.GnssSignalConfigOptions_begin(self) - - def end(self): - return _mscl.GnssSignalConfigOptions_end(self) - - def rbegin(self): - return _mscl.GnssSignalConfigOptions_rbegin(self) - - def rend(self): - return _mscl.GnssSignalConfigOptions_rend(self) - - def clear(self): - return _mscl.GnssSignalConfigOptions_clear(self) - - def get_allocator(self): - return _mscl.GnssSignalConfigOptions_get_allocator(self) - - def count(self, x): - return _mscl.GnssSignalConfigOptions_count(self, x) - - def erase(self, *args): - return _mscl.GnssSignalConfigOptions_erase(self, *args) - - def find(self, x): - return _mscl.GnssSignalConfigOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GnssSignalConfigOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GnssSignalConfigOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GnssSignalConfigOptions - -# Register GnssSignalConfigOptions in _mscl: -_mscl.GnssSignalConfigOptions_swigregister(GnssSignalConfigOptions) - -class NmeaMessageFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NmeaMessageFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NmeaMessageFormats___nonzero__(self) - - def __bool__(self): - return _mscl.NmeaMessageFormats___bool__(self) - - def __len__(self): - return _mscl.NmeaMessageFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.NmeaMessageFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NmeaMessageFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NmeaMessageFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NmeaMessageFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NmeaMessageFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NmeaMessageFormats___setitem__(self, *args) - - def pop(self): - return _mscl.NmeaMessageFormats_pop(self) - - def append(self, x): - return _mscl.NmeaMessageFormats_append(self, x) - - def empty(self): - return _mscl.NmeaMessageFormats_empty(self) - - def size(self): - return _mscl.NmeaMessageFormats_size(self) - - def swap(self, v): - return _mscl.NmeaMessageFormats_swap(self, v) - - def begin(self): - return _mscl.NmeaMessageFormats_begin(self) - - def end(self): - return _mscl.NmeaMessageFormats_end(self) - - def rbegin(self): - return _mscl.NmeaMessageFormats_rbegin(self) - - def rend(self): - return _mscl.NmeaMessageFormats_rend(self) - - def clear(self): - return _mscl.NmeaMessageFormats_clear(self) - - def get_allocator(self): - return _mscl.NmeaMessageFormats_get_allocator(self) - - def pop_back(self): - return _mscl.NmeaMessageFormats_pop_back(self) - - def erase(self, *args): - return _mscl.NmeaMessageFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.NmeaMessageFormats_swiginit(self, _mscl.new_NmeaMessageFormats(*args)) - - def push_back(self, x): - return _mscl.NmeaMessageFormats_push_back(self, x) - - def front(self): - return _mscl.NmeaMessageFormats_front(self) - - def back(self): - return _mscl.NmeaMessageFormats_back(self) - - def assign(self, n, x): - return _mscl.NmeaMessageFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.NmeaMessageFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.NmeaMessageFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.NmeaMessageFormats_reserve(self, n) - - def capacity(self): - return _mscl.NmeaMessageFormats_capacity(self) - __swig_destroy__ = _mscl.delete_NmeaMessageFormats - -# Register NmeaMessageFormats in _mscl: -_mscl.NmeaMessageFormats_swigregister(NmeaMessageFormats) - -class GpioPinModeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinModeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinModeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinModeOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinModeOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.GpioPinModeOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GpioPinModeOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GpioPinModeOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GpioPinModeOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GpioPinModeOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GpioPinModeOptions___setitem__(self, *args) - - def pop(self): - return _mscl.GpioPinModeOptions_pop(self) - - def append(self, x): - return _mscl.GpioPinModeOptions_append(self, x) - - def empty(self): - return _mscl.GpioPinModeOptions_empty(self) - - def size(self): - return _mscl.GpioPinModeOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinModeOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinModeOptions_begin(self) - - def end(self): - return _mscl.GpioPinModeOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinModeOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinModeOptions_rend(self) - - def clear(self): - return _mscl.GpioPinModeOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinModeOptions_get_allocator(self) - - def pop_back(self): - return _mscl.GpioPinModeOptions_pop_back(self) - - def erase(self, *args): - return _mscl.GpioPinModeOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.GpioPinModeOptions_swiginit(self, _mscl.new_GpioPinModeOptions(*args)) - - def push_back(self, x): - return _mscl.GpioPinModeOptions_push_back(self, x) - - def front(self): - return _mscl.GpioPinModeOptions_front(self) - - def back(self): - return _mscl.GpioPinModeOptions_back(self) - - def assign(self, n, x): - return _mscl.GpioPinModeOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.GpioPinModeOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.GpioPinModeOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.GpioPinModeOptions_reserve(self, n) - - def capacity(self): - return _mscl.GpioPinModeOptions_capacity(self) - __swig_destroy__ = _mscl.delete_GpioPinModeOptions - -# Register GpioPinModeOptions in _mscl: -_mscl.GpioPinModeOptions_swigregister(GpioPinModeOptions) - -class GpioBehaviorModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioBehaviorModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioBehaviorModes___nonzero__(self) - - def __bool__(self): - return _mscl.GpioBehaviorModes___bool__(self) - - def __len__(self): - return _mscl.GpioBehaviorModes___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioBehaviorModes___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioBehaviorModes___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioBehaviorModes_has_key(self, key) - - def keys(self): - return _mscl.GpioBehaviorModes_keys(self) - - def values(self): - return _mscl.GpioBehaviorModes_values(self) - - def items(self): - return _mscl.GpioBehaviorModes_items(self) - - def __contains__(self, key): - return _mscl.GpioBehaviorModes___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioBehaviorModes_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioBehaviorModes_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioBehaviorModes___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioBehaviorModes_asdict(self) - - def __init__(self, *args): - _mscl.GpioBehaviorModes_swiginit(self, _mscl.new_GpioBehaviorModes(*args)) - - def empty(self): - return _mscl.GpioBehaviorModes_empty(self) - - def size(self): - return _mscl.GpioBehaviorModes_size(self) - - def swap(self, v): - return _mscl.GpioBehaviorModes_swap(self, v) - - def begin(self): - return _mscl.GpioBehaviorModes_begin(self) - - def end(self): - return _mscl.GpioBehaviorModes_end(self) - - def rbegin(self): - return _mscl.GpioBehaviorModes_rbegin(self) - - def rend(self): - return _mscl.GpioBehaviorModes_rend(self) - - def clear(self): - return _mscl.GpioBehaviorModes_clear(self) - - def get_allocator(self): - return _mscl.GpioBehaviorModes_get_allocator(self) - - def count(self, x): - return _mscl.GpioBehaviorModes_count(self, x) - - def erase(self, *args): - return _mscl.GpioBehaviorModes_erase(self, *args) - - def find(self, x): - return _mscl.GpioBehaviorModes_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioBehaviorModes_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioBehaviorModes_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioBehaviorModes - -# Register GpioBehaviorModes in _mscl: -_mscl.GpioBehaviorModes_swigregister(GpioBehaviorModes) - -class GpioFeatureBehaviors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioFeatureBehaviors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioFeatureBehaviors___nonzero__(self) - - def __bool__(self): - return _mscl.GpioFeatureBehaviors___bool__(self) - - def __len__(self): - return _mscl.GpioFeatureBehaviors___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioFeatureBehaviors___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioFeatureBehaviors___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioFeatureBehaviors_has_key(self, key) - - def keys(self): - return _mscl.GpioFeatureBehaviors_keys(self) - - def values(self): - return _mscl.GpioFeatureBehaviors_values(self) - - def items(self): - return _mscl.GpioFeatureBehaviors_items(self) - - def __contains__(self, key): - return _mscl.GpioFeatureBehaviors___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioFeatureBehaviors_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioFeatureBehaviors_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioFeatureBehaviors___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioFeatureBehaviors_asdict(self) - - def __init__(self, *args): - _mscl.GpioFeatureBehaviors_swiginit(self, _mscl.new_GpioFeatureBehaviors(*args)) - - def empty(self): - return _mscl.GpioFeatureBehaviors_empty(self) - - def size(self): - return _mscl.GpioFeatureBehaviors_size(self) - - def swap(self, v): - return _mscl.GpioFeatureBehaviors_swap(self, v) - - def begin(self): - return _mscl.GpioFeatureBehaviors_begin(self) - - def end(self): - return _mscl.GpioFeatureBehaviors_end(self) - - def rbegin(self): - return _mscl.GpioFeatureBehaviors_rbegin(self) - - def rend(self): - return _mscl.GpioFeatureBehaviors_rend(self) - - def clear(self): - return _mscl.GpioFeatureBehaviors_clear(self) - - def get_allocator(self): - return _mscl.GpioFeatureBehaviors_get_allocator(self) - - def count(self, x): - return _mscl.GpioFeatureBehaviors_count(self, x) - - def erase(self, *args): - return _mscl.GpioFeatureBehaviors_erase(self, *args) - - def find(self, x): - return _mscl.GpioFeatureBehaviors_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioFeatureBehaviors_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioFeatureBehaviors_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioFeatureBehaviors - -# Register GpioFeatureBehaviors in _mscl: -_mscl.GpioFeatureBehaviors_swigregister(GpioFeatureBehaviors) - -class GpioPinOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioPinOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioPinOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioPinOptions_has_key(self, key) - - def keys(self): - return _mscl.GpioPinOptions_keys(self) - - def values(self): - return _mscl.GpioPinOptions_values(self) - - def items(self): - return _mscl.GpioPinOptions_items(self) - - def __contains__(self, key): - return _mscl.GpioPinOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioPinOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioPinOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioPinOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioPinOptions_asdict(self) - - def __init__(self, *args): - _mscl.GpioPinOptions_swiginit(self, _mscl.new_GpioPinOptions(*args)) - - def empty(self): - return _mscl.GpioPinOptions_empty(self) - - def size(self): - return _mscl.GpioPinOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinOptions_begin(self) - - def end(self): - return _mscl.GpioPinOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinOptions_rend(self) - - def clear(self): - return _mscl.GpioPinOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinOptions_get_allocator(self) - - def count(self, x): - return _mscl.GpioPinOptions_count(self, x) - - def erase(self, *args): - return _mscl.GpioPinOptions_erase(self, *args) - - def find(self, x): - return _mscl.GpioPinOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioPinOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioPinOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioPinOptions - -# Register GpioPinOptions in _mscl: -_mscl.GpioPinOptions_swigregister(GpioPinOptions) - -class EventInputTriggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventInputTriggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventInputTriggers___nonzero__(self) - - def __bool__(self): - return _mscl.EventInputTriggers___bool__(self) - - def __len__(self): - return _mscl.EventInputTriggers___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventInputTriggers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventInputTriggers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventInputTriggers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventInputTriggers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventInputTriggers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventInputTriggers___setitem__(self, *args) - - def __init__(self, *args): - _mscl.EventInputTriggers_swiginit(self, _mscl.new_EventInputTriggers(*args)) - - def empty(self): - return _mscl.EventInputTriggers_empty(self) - - def size(self): - return _mscl.EventInputTriggers_size(self) - - def swap(self, v): - return _mscl.EventInputTriggers_swap(self, v) - - def begin(self): - return _mscl.EventInputTriggers_begin(self) - - def end(self): - return _mscl.EventInputTriggers_end(self) - - def rbegin(self): - return _mscl.EventInputTriggers_rbegin(self) - - def rend(self): - return _mscl.EventInputTriggers_rend(self) - - def front(self): - return _mscl.EventInputTriggers_front(self) - - def back(self): - return _mscl.EventInputTriggers_back(self) - - def fill(self, u): - return _mscl.EventInputTriggers_fill(self, u) - __swig_destroy__ = _mscl.delete_EventInputTriggers - -# Register EventInputTriggers in _mscl: -_mscl.EventInputTriggers_swigregister(EventInputTriggers) - -class EventTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTypes___nonzero__(self) - - def __bool__(self): - return _mscl.EventTypes___bool__(self) - - def __len__(self): - return _mscl.EventTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTypes___setitem__(self, *args) - - def pop(self): - return _mscl.EventTypes_pop(self) - - def append(self, x): - return _mscl.EventTypes_append(self, x) - - def empty(self): - return _mscl.EventTypes_empty(self) - - def size(self): - return _mscl.EventTypes_size(self) - - def swap(self, v): - return _mscl.EventTypes_swap(self, v) - - def begin(self): - return _mscl.EventTypes_begin(self) - - def end(self): - return _mscl.EventTypes_end(self) - - def rbegin(self): - return _mscl.EventTypes_rbegin(self) - - def rend(self): - return _mscl.EventTypes_rend(self) - - def clear(self): - return _mscl.EventTypes_clear(self) - - def get_allocator(self): - return _mscl.EventTypes_get_allocator(self) - - def pop_back(self): - return _mscl.EventTypes_pop_back(self) - - def erase(self, *args): - return _mscl.EventTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTypes_swiginit(self, _mscl.new_EventTypes(*args)) - - def push_back(self, x): - return _mscl.EventTypes_push_back(self, x) - - def front(self): - return _mscl.EventTypes_front(self) - - def back(self): - return _mscl.EventTypes_back(self) - - def assign(self, n, x): - return _mscl.EventTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTypes_reserve(self, n) - - def capacity(self): - return _mscl.EventTypes_capacity(self) - __swig_destroy__ = _mscl.delete_EventTypes - -# Register EventTypes in _mscl: -_mscl.EventTypes_swigregister(EventTypes) - -class MeasurementReferenceFrames(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MeasurementReferenceFrames_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MeasurementReferenceFrames___nonzero__(self) - - def __bool__(self): - return _mscl.MeasurementReferenceFrames___bool__(self) - - def __len__(self): - return _mscl.MeasurementReferenceFrames___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.MeasurementReferenceFrames___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.MeasurementReferenceFrames___delitem__(self, key) - - def has_key(self, key): - return _mscl.MeasurementReferenceFrames_has_key(self, key) - - def keys(self): - return _mscl.MeasurementReferenceFrames_keys(self) - - def values(self): - return _mscl.MeasurementReferenceFrames_values(self) - - def items(self): - return _mscl.MeasurementReferenceFrames_items(self) - - def __contains__(self, key): - return _mscl.MeasurementReferenceFrames___contains__(self, key) - - def key_iterator(self): - return _mscl.MeasurementReferenceFrames_key_iterator(self) - - def value_iterator(self): - return _mscl.MeasurementReferenceFrames_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.MeasurementReferenceFrames___setitem__(self, *args) - - def asdict(self): - return _mscl.MeasurementReferenceFrames_asdict(self) - - def __init__(self, *args): - _mscl.MeasurementReferenceFrames_swiginit(self, _mscl.new_MeasurementReferenceFrames(*args)) - - def empty(self): - return _mscl.MeasurementReferenceFrames_empty(self) - - def size(self): - return _mscl.MeasurementReferenceFrames_size(self) - - def swap(self, v): - return _mscl.MeasurementReferenceFrames_swap(self, v) - - def begin(self): - return _mscl.MeasurementReferenceFrames_begin(self) - - def end(self): - return _mscl.MeasurementReferenceFrames_end(self) - - def rbegin(self): - return _mscl.MeasurementReferenceFrames_rbegin(self) - - def rend(self): - return _mscl.MeasurementReferenceFrames_rend(self) - - def clear(self): - return _mscl.MeasurementReferenceFrames_clear(self) - - def get_allocator(self): - return _mscl.MeasurementReferenceFrames_get_allocator(self) - - def count(self, x): - return _mscl.MeasurementReferenceFrames_count(self, x) - - def erase(self, *args): - return _mscl.MeasurementReferenceFrames_erase(self, *args) - - def find(self, x): - return _mscl.MeasurementReferenceFrames_find(self, x) - - def lower_bound(self, x): - return _mscl.MeasurementReferenceFrames_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.MeasurementReferenceFrames_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrames - -# Register MeasurementReferenceFrames in _mscl: -_mscl.MeasurementReferenceFrames_swigregister(MeasurementReferenceFrames) - -class Bins(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bins_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bins___nonzero__(self) - - def __bool__(self): - return _mscl.Bins___bool__(self) - - def __len__(self): - return _mscl.Bins___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bins___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bins___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bins___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bins___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bins___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bins___setitem__(self, *args) - - def pop(self): - return _mscl.Bins_pop(self) - - def append(self, x): - return _mscl.Bins_append(self, x) - - def empty(self): - return _mscl.Bins_empty(self) - - def size(self): - return _mscl.Bins_size(self) - - def swap(self, v): - return _mscl.Bins_swap(self, v) - - def begin(self): - return _mscl.Bins_begin(self) - - def end(self): - return _mscl.Bins_end(self) - - def rbegin(self): - return _mscl.Bins_rbegin(self) - - def rend(self): - return _mscl.Bins_rend(self) - - def clear(self): - return _mscl.Bins_clear(self) - - def get_allocator(self): - return _mscl.Bins_get_allocator(self) - - def pop_back(self): - return _mscl.Bins_pop_back(self) - - def erase(self, *args): - return _mscl.Bins_erase(self, *args) - - def __init__(self, *args): - _mscl.Bins_swiginit(self, _mscl.new_Bins(*args)) - - def push_back(self, x): - return _mscl.Bins_push_back(self, x) - - def front(self): - return _mscl.Bins_front(self) - - def back(self): - return _mscl.Bins_back(self) - - def assign(self, n, x): - return _mscl.Bins_assign(self, n, x) - - def insert(self, *args): - return _mscl.Bins_insert(self, *args) - - def reserve(self, n): - return _mscl.Bins_reserve(self, n) - - def capacity(self): - return _mscl.Bins_capacity(self) - __swig_destroy__ = _mscl.delete_Bins - -# Register Bins in _mscl: -_mscl.Bins_swigregister(Bins) - -class Error(Exception): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_swiginit(self, _mscl.new_Error(*args)) - __swig_destroy__ = _mscl.delete_Error - - def what(self): - return _mscl.Error_what(self) - - def __str__(self): - return _mscl.Error___str__(self) - -# Register Error in _mscl: -_mscl.Error_swigregister(Error) - -class Error_NotSupported(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NotSupported_swiginit(self, _mscl.new_Error_NotSupported(*args)) - __swig_destroy__ = _mscl.delete_Error_NotSupported - -# Register Error_NotSupported in _mscl: -_mscl.Error_NotSupported_swigregister(Error_NotSupported) - -class Error_NoData(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NoData_swiginit(self, _mscl.new_Error_NoData(*args)) - __swig_destroy__ = _mscl.delete_Error_NoData - -# Register Error_NoData in _mscl: -_mscl.Error_NoData_swigregister(Error_NoData) - -class Error_BadDataType(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Error_BadDataType_swiginit(self, _mscl.new_Error_BadDataType()) - __swig_destroy__ = _mscl.delete_Error_BadDataType - -# Register Error_BadDataType in _mscl: -_mscl.Error_BadDataType_swigregister(Error_BadDataType) - -class Error_UnknownSampleRate(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_UnknownSampleRate_swiginit(self, _mscl.new_Error_UnknownSampleRate(*args)) - __swig_destroy__ = _mscl.delete_Error_UnknownSampleRate - -# Register Error_UnknownSampleRate in _mscl: -_mscl.Error_UnknownSampleRate_swigregister(Error_UnknownSampleRate) - -class Error_Communication(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Communication_swiginit(self, _mscl.new_Error_Communication(*args)) - __swig_destroy__ = _mscl.delete_Error_Communication - -# Register Error_Communication in _mscl: -_mscl.Error_Communication_swigregister(Error_Communication) - -class Error_NodeCommunication(Error_Communication): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NodeCommunication_swiginit(self, _mscl.new_Error_NodeCommunication(*args)) - - def nodeAddress(self): - return _mscl.Error_NodeCommunication_nodeAddress(self) - __swig_destroy__ = _mscl.delete_Error_NodeCommunication - -# Register Error_NodeCommunication in _mscl: -_mscl.Error_NodeCommunication_swigregister(Error_NodeCommunication) - -class Error_Connection(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Connection_swiginit(self, _mscl.new_Error_Connection(*args)) - __swig_destroy__ = _mscl.delete_Error_Connection - - def code(self): - return _mscl.Error_Connection_code(self) - - def value(self): - return _mscl.Error_Connection_value(self) - -# Register Error_Connection in _mscl: -_mscl.Error_Connection_swigregister(Error_Connection) - -class Error_InvalidSerialPort(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code): - _mscl.Error_InvalidSerialPort_swiginit(self, _mscl.new_Error_InvalidSerialPort(code)) - __swig_destroy__ = _mscl.delete_Error_InvalidSerialPort - -# Register Error_InvalidSerialPort in _mscl: -_mscl.Error_InvalidSerialPort_swigregister(Error_InvalidSerialPort) - -class Error_InvalidTcpServer(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidTcpServer_swiginit(self, _mscl.new_Error_InvalidTcpServer(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidTcpServer - -# Register Error_InvalidTcpServer in _mscl: -_mscl.Error_InvalidTcpServer_swigregister(Error_InvalidTcpServer) - -class Error_InvalidUnixSocket(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidUnixSocket_swiginit(self, _mscl.new_Error_InvalidUnixSocket(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidUnixSocket - -# Register Error_InvalidUnixSocket in _mscl: -_mscl.Error_InvalidUnixSocket_swigregister(Error_InvalidUnixSocket) - -class Error_MipCmdFailed(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_MipCmdFailed_swiginit(self, _mscl.new_Error_MipCmdFailed(*args)) - __swig_destroy__ = _mscl.delete_Error_MipCmdFailed - - def code(self): - return _mscl.Error_MipCmdFailed_code(self) - - def value(self): - return _mscl.Error_MipCmdFailed_value(self) - -# Register Error_MipCmdFailed in _mscl: -_mscl.Error_MipCmdFailed_swigregister(Error_MipCmdFailed) - -class Error_InvalidConfig(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_InvalidConfig_swiginit(self, _mscl.new_Error_InvalidConfig(*args)) - __swig_destroy__ = _mscl.delete_Error_InvalidConfig - - def issues(self): - return _mscl.Error_InvalidConfig_issues(self) - -# Register Error_InvalidConfig in _mscl: -_mscl.Error_InvalidConfig_swigregister(Error_InvalidConfig) - -class Error_InvalidNodeConfig(Error_InvalidConfig): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, issues, nodeAddress): - _mscl.Error_InvalidNodeConfig_swiginit(self, _mscl.new_Error_InvalidNodeConfig(issues, nodeAddress)) - __swig_destroy__ = _mscl.delete_Error_InvalidNodeConfig - - def nodeAddress(self): - return _mscl.Error_InvalidNodeConfig_nodeAddress(self) - -# Register Error_InvalidNodeConfig in _mscl: -_mscl.Error_InvalidNodeConfig_swigregister(Error_InvalidNodeConfig) - - - diff --git a/mscl_release_assets/mscl-amd64-Python3.9-v67.0.0/_mscl.so b/mscl_release_assets/mscl-amd64-Python3.9-v67.0.0/_mscl.so deleted file mode 100644 index 4dca370..0000000 Binary files a/mscl_release_assets/mscl-amd64-Python3.9-v67.0.0/_mscl.so and /dev/null differ diff --git a/mscl_release_assets/mscl-amd64-Python3.9-v67.0.0/mscl.py b/mscl_release_assets/mscl-amd64-Python3.9-v67.0.0/mscl.py deleted file mode 100644 index daa6217..0000000 --- a/mscl_release_assets/mscl-amd64-Python3.9-v67.0.0/mscl.py +++ /dev/null @@ -1,18376 +0,0 @@ -# This file was automatically generated by SWIG (http://www.swig.org). -# Version 4.0.1 -# -# Do not make changes to this file unless you know what you are doing--modify -# the SWIG interface file instead. - -from sys import version_info as _swig_python_version_info -if _swig_python_version_info < (2, 7, 0): - raise RuntimeError("Python 2.7 or later required") - -# Import the low-level C/C++ module -if __package__ or "." in __name__: - from . import _mscl -else: - import _mscl - -try: - import builtins as __builtin__ -except ImportError: - import __builtin__ - -def _swig_repr(self): - try: - strthis = "proxy of " + self.this.__repr__() - except __builtin__.Exception: - strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - - -def _swig_setattr_nondynamic_instance_variable(set): - def set_instance_attr(self, name, value): - if name == "thisown": - self.this.own(value) - elif name == "this": - set(self, name, value) - elif hasattr(self, name) and isinstance(getattr(type(self), name), property): - set(self, name, value) - else: - raise AttributeError("You cannot add instance attributes to %s" % self) - return set_instance_attr - - -def _swig_setattr_nondynamic_class_variable(set): - def set_class_attr(cls, name, value): - if hasattr(cls, name) and not isinstance(getattr(cls, name), property): - set(cls, name, value) - else: - raise AttributeError("You cannot add class attributes to %s" % cls) - return set_class_attr - - -def _swig_add_metaclass(metaclass): - """Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass""" - def wrapper(cls): - return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy()) - return wrapper - - -class _SwigNonDynamicMeta(type): - """Meta class to enforce nondynamic attributes (no new attributes) for a class""" - __setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__) - - -class SwigPyIterator(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_SwigPyIterator - - def value(self): - return _mscl.SwigPyIterator_value(self) - - def incr(self, n=1): - return _mscl.SwigPyIterator_incr(self, n) - - def decr(self, n=1): - return _mscl.SwigPyIterator_decr(self, n) - - def distance(self, x): - return _mscl.SwigPyIterator_distance(self, x) - - def equal(self, x): - return _mscl.SwigPyIterator_equal(self, x) - - def copy(self): - return _mscl.SwigPyIterator_copy(self) - - def next(self): - return _mscl.SwigPyIterator_next(self) - - def __next__(self): - return _mscl.SwigPyIterator___next__(self) - - def previous(self): - return _mscl.SwigPyIterator_previous(self) - - def advance(self, n): - return _mscl.SwigPyIterator_advance(self, n) - - def __eq__(self, x): - return _mscl.SwigPyIterator___eq__(self, x) - - def __ne__(self, x): - return _mscl.SwigPyIterator___ne__(self, x) - - def __iadd__(self, n): - return _mscl.SwigPyIterator___iadd__(self, n) - - def __isub__(self, n): - return _mscl.SwigPyIterator___isub__(self, n) - - def __add__(self, n): - return _mscl.SwigPyIterator___add__(self, n) - - def __sub__(self, *args): - return _mscl.SwigPyIterator___sub__(self, *args) - def __iter__(self): - return self - -# Register SwigPyIterator in _mscl: -_mscl.SwigPyIterator_swigregister(SwigPyIterator) - -SHARED_PTR_DISOWN = _mscl.SHARED_PTR_DISOWN -valueType_float = _mscl.valueType_float -valueType_double = _mscl.valueType_double -valueType_uint8 = _mscl.valueType_uint8 -valueType_uint16 = _mscl.valueType_uint16 -valueType_uint32 = _mscl.valueType_uint32 -valueType_int16 = _mscl.valueType_int16 -valueType_int32 = _mscl.valueType_int32 -valueType_bool = _mscl.valueType_bool -valueType_Vector = _mscl.valueType_Vector -valueType_Matrix = _mscl.valueType_Matrix -valueType_Timestamp = _mscl.valueType_Timestamp -valueType_string = _mscl.valueType_string -valueType_Bytes = _mscl.valueType_Bytes -valueType_StructuralHealth = _mscl.valueType_StructuralHealth -valueType_RfSweep = _mscl.valueType_RfSweep -valueType_ChannelMask = _mscl.valueType_ChannelMask -valueType_int8 = _mscl.valueType_int8 -valueType_uint64 = _mscl.valueType_uint64 -deviceState_idle = _mscl.deviceState_idle -deviceState_sleep = _mscl.deviceState_sleep -deviceState_sampling = _mscl.deviceState_sampling -deviceState_sampling_lostBeacon = _mscl.deviceState_sampling_lostBeacon -deviceState_sampling_inactive = _mscl.deviceState_sampling_inactive -deviceState_unknown = _mscl.deviceState_unknown -class BitMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BitMask_swiginit(self, _mscl.new_BitMask(*args)) - __swig_destroy__ = _mscl.delete_BitMask - - def __eq__(self, other): - return _mscl.BitMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.BitMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.BitMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.BitMask___gt__(self, other) - - def fromMask(self, val): - return _mscl.BitMask_fromMask(self, val) - - def toMask(self): - return _mscl.BitMask_toMask(self) - - def enabledCount(self): - return _mscl.BitMask_enabledCount(self) - - def enabled(self, bitIndex): - return _mscl.BitMask_enabled(self, bitIndex) - - def enable(self, bitIndex, enable=True): - return _mscl.BitMask_enable(self, bitIndex, enable) - - def lastBitEnabled(self): - return _mscl.BitMask_lastBitEnabled(self) - -# Register BitMask in _mscl: -_mscl.BitMask_swigregister(BitMask) - -class ChannelMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_CHANNELS = _mscl.ChannelMask_MAX_CHANNELS - - def __init__(self, *args): - _mscl.ChannelMask_swiginit(self, _mscl.new_ChannelMask(*args)) - __swig_destroy__ = _mscl.delete_ChannelMask - - def __eq__(self, other): - return _mscl.ChannelMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.ChannelMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.ChannelMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.ChannelMask___gt__(self, other) - - def fromMask(self, channelMask): - return _mscl.ChannelMask_fromMask(self, channelMask) - - def toMask(self): - return _mscl.ChannelMask_toMask(self) - - def count(self): - return _mscl.ChannelMask_count(self) - - def enabled(self, channel): - return _mscl.ChannelMask_enabled(self, channel) - - def enable(self, channel, enable=True): - return _mscl.ChannelMask_enable(self, channel, enable) - - def lastChEnabled(self): - return _mscl.ChannelMask_lastChEnabled(self) - -# Register ChannelMask in _mscl: -_mscl.ChannelMask_swigregister(ChannelMask) - -class Value(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_Value - - def storedAs(self): - return _mscl.Value_storedAs(self) - - def as_float(self): - return _mscl.Value_as_float(self) - - def as_double(self): - return _mscl.Value_as_double(self) - - def as_uint8(self): - return _mscl.Value_as_uint8(self) - - def as_uint16(self): - return _mscl.Value_as_uint16(self) - - def as_uint32(self): - return _mscl.Value_as_uint32(self) - - def as_uint64(self): - return _mscl.Value_as_uint64(self) - - def as_int8(self): - return _mscl.Value_as_int8(self) - - def as_int16(self): - return _mscl.Value_as_int16(self) - - def as_int32(self): - return _mscl.Value_as_int32(self) - - def as_bool(self): - return _mscl.Value_as_bool(self) - - def as_ChannelMask(self): - return _mscl.Value_as_ChannelMask(self) - - def as_string(self): - return _mscl.Value_as_string(self) - - def __init__(self): - _mscl.Value_swiginit(self, _mscl.new_Value()) - -# Register Value in _mscl: -_mscl.Value_swigregister(Value) - -class Bin(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, start, end, count): - _mscl.Bin_swiginit(self, _mscl.new_Bin(start, end, count)) - - def start(self): - return _mscl.Bin_start(self) - - def end(self): - return _mscl.Bin_end(self) - - def count(self): - return _mscl.Bin_count(self) - __swig_destroy__ = _mscl.delete_Bin - -# Register Bin in _mscl: -_mscl.Bin_swigregister(Bin) - -class Histogram(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, binsStart, binsSize): - _mscl.Histogram_swiginit(self, _mscl.new_Histogram(binsStart, binsSize)) - - def binsStart(self): - return _mscl.Histogram_binsStart(self) - - def binsSize(self): - return _mscl.Histogram_binsSize(self) - - def bins(self): - return _mscl.Histogram_bins(self) - - def addBin(self, bin): - return _mscl.Histogram_addBin(self, bin) - __swig_destroy__ = _mscl.delete_Histogram - -# Register Histogram in _mscl: -_mscl.Histogram_swigregister(Histogram) - -class Timestamp(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INTERNAL = _mscl.Timestamp_INTERNAL - EXTERNAL = _mscl.Timestamp_EXTERNAL - TIME_OF_ARRIVAL = _mscl.Timestamp_TIME_OF_ARRIVAL - GPS = _mscl.Timestamp_GPS - UNIX = _mscl.Timestamp_UNIX - UTC = _mscl.Timestamp_UTC - - def __init__(self, *args): - _mscl.Timestamp_swiginit(self, _mscl.new_Timestamp(*args)) - __swig_destroy__ = _mscl.delete_Timestamp - - def nanoseconds(self, *args): - return _mscl.Timestamp_nanoseconds(self, *args) - - def seconds(self, *args): - return _mscl.Timestamp_seconds(self, *args) - - def storedEpoch(self): - return _mscl.Timestamp_storedEpoch(self) - - def __str__(self): - return _mscl.Timestamp___str__(self) - - def setTime(self, *args): - return _mscl.Timestamp_setTime(self, *args) - - def setTimeNow(self): - return _mscl.Timestamp_setTimeNow(self) - - @staticmethod - def timeNow(): - return _mscl.Timestamp_timeNow() - - @staticmethod - def setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - - @staticmethod - def getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - - @staticmethod - def gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - - @staticmethod - def utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -# Register Timestamp in _mscl: -_mscl.Timestamp_swigregister(Timestamp) - -def Timestamp_timeNow(): - return _mscl.Timestamp_timeNow() - -def Timestamp_setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - -def Timestamp_getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - -def Timestamp_gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - -def Timestamp_utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -class TimeSpan(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - NANOSECONDS_PER_MICROSECOND = _mscl.TimeSpan_NANOSECONDS_PER_MICROSECOND - NANOSECONDS_PER_MILLISECOND = _mscl.TimeSpan_NANOSECONDS_PER_MILLISECOND - NANOSECONDS_PER_SECOND = _mscl.TimeSpan_NANOSECONDS_PER_SECOND - - def getNanoseconds(self): - return _mscl.TimeSpan_getNanoseconds(self) - - def getMicroseconds(self): - return _mscl.TimeSpan_getMicroseconds(self) - - def getMilliseconds(self): - return _mscl.TimeSpan_getMilliseconds(self) - - def getSeconds(self): - return _mscl.TimeSpan_getSeconds(self) - - @staticmethod - def NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - - @staticmethod - def MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - - @staticmethod - def MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - - @staticmethod - def Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - - @staticmethod - def Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - - @staticmethod - def Hours(hours): - return _mscl.TimeSpan_Hours(hours) - - @staticmethod - def Days(days): - return _mscl.TimeSpan_Days(days) - __swig_destroy__ = _mscl.delete_TimeSpan - -# Register TimeSpan in _mscl: -_mscl.TimeSpan_swigregister(TimeSpan) - -def TimeSpan_NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - -def TimeSpan_MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - -def TimeSpan_MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - -def TimeSpan_Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - -def TimeSpan_Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - -def TimeSpan_Hours(hours): - return _mscl.TimeSpan_Hours(hours) - -def TimeSpan_Days(days): - return _mscl.TimeSpan_Days(days) - -class Version(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Version_swiginit(self, _mscl.new_Version(*args)) - - def __eq__(self, cmp): - return _mscl.Version___eq__(self, cmp) - - def __ne__(self, cmp): - return _mscl.Version___ne__(self, cmp) - - def __lt__(self, cmp): - return _mscl.Version___lt__(self, cmp) - - def __le__(self, cmp): - return _mscl.Version___le__(self, cmp) - - def __gt__(self, cmp): - return _mscl.Version___gt__(self, cmp) - - def __ge__(self, cmp): - return _mscl.Version___ge__(self, cmp) - - def __str__(self): - return _mscl.Version___str__(self) - - def fromString(self, strVersion): - return _mscl.Version_fromString(self, strVersion) - - def majorPart(self): - return _mscl.Version_majorPart(self) - - def minorPart(self): - return _mscl.Version_minorPart(self) - - def patchPart(self): - return _mscl.Version_patchPart(self) - __swig_destroy__ = _mscl.delete_Version - -# Register Version in _mscl: -_mscl.Version_swigregister(Version) - -class DeviceInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.DeviceInfo_connectionType_serial - connectionType_tcp = _mscl.DeviceInfo_connectionType_tcp - - def __init__(self, *args): - _mscl.DeviceInfo_swiginit(self, _mscl.new_DeviceInfo(*args)) - - def description(self): - return _mscl.DeviceInfo_description(self) - - def serial(self): - return _mscl.DeviceInfo_serial(self) - - def baudRate(self): - return _mscl.DeviceInfo_baudRate(self) - - def connectionType(self): - return _mscl.DeviceInfo_connectionType(self) - __swig_destroy__ = _mscl.delete_DeviceInfo - -# Register DeviceInfo in _mscl: -_mscl.DeviceInfo_swigregister(DeviceInfo) -cvar = _mscl.cvar -MSCL_VERSION = cvar.MSCL_VERSION - -class Devices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def listBaseStations(): - return _mscl.Devices_listBaseStations() - - @staticmethod - def listInertialDevices(): - return _mscl.Devices_listInertialDevices() - - @staticmethod - def listPorts(): - return _mscl.Devices_listPorts() - __swig_destroy__ = _mscl.delete_Devices - -# Register Devices in _mscl: -_mscl.Devices_swigregister(Devices) - -def Devices_listBaseStations(): - return _mscl.Devices_listBaseStations() - -def Devices_listInertialDevices(): - return _mscl.Devices_listInertialDevices() - -def Devices_listPorts(): - return _mscl.Devices_listPorts() - -class ConnectionDebugData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ConnectionDebugData_swiginit(self, _mscl.new_ConnectionDebugData(*args)) - - def fromRead(self): - return _mscl.ConnectionDebugData_fromRead(self) - - def timestamp(self): - return _mscl.ConnectionDebugData_timestamp(self) - - def data(self): - return _mscl.ConnectionDebugData_data(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugData - -# Register ConnectionDebugData in _mscl: -_mscl.ConnectionDebugData_swigregister(ConnectionDebugData) - -class Connection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.Connection_connectionType_serial - connectionType_tcp = _mscl.Connection_connectionType_tcp - connectionType_webSocket = _mscl.Connection_connectionType_webSocket - connectionType_unixSocket = _mscl.Connection_connectionType_unixSocket - - def __init__(self): - _mscl.Connection_swiginit(self, _mscl.new_Connection()) - - @staticmethod - def Serial(*args): - return _mscl.Connection_Serial(*args) - - @staticmethod - def TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - - @staticmethod - def UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - - @staticmethod - def Mock(): - return _mscl.Connection_Mock() - - def description(self): - return _mscl.Connection_description(self) - - def port(self): - return _mscl.Connection_port(self) - - def type(self): - return _mscl.Connection_type(self) - - def disconnect(self): - return _mscl.Connection_disconnect(self) - - def reconnect(self): - return _mscl.Connection_reconnect(self) - - def write(self, bytes): - return _mscl.Connection_write(self, bytes) - - def writeStr(self, bytes): - return _mscl.Connection_writeStr(self, bytes) - - def clearBuffer(self): - return _mscl.Connection_clearBuffer(self) - - def byteReadPos(self): - return _mscl.Connection_byteReadPos(self) - - def byteAppendPos(self): - return _mscl.Connection_byteAppendPos(self) - - def rawByteMode(self, *args): - return _mscl.Connection_rawByteMode(self, *args) - - def getRawBytes(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytes(self, timeout, maxBytes, minBytes) - - def getRawBytesStr(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytesStr(self, timeout, maxBytes, minBytes) - - def getRawBytesWithPattern(self, pattern, timeout=0): - return _mscl.Connection_getRawBytesWithPattern(self, pattern, timeout) - - def debugMode(self, *args): - return _mscl.Connection_debugMode(self, *args) - - def getDebugData(self, timeout=0): - return _mscl.Connection_getDebugData(self, timeout) - - def updateBaudRate(self, baudRate): - return _mscl.Connection_updateBaudRate(self, baudRate) - __swig_destroy__ = _mscl.delete_Connection - -# Register Connection in _mscl: -_mscl.Connection_swigregister(Connection) - -def Connection_Serial(*args): - return _mscl.Connection_Serial(*args) - -def Connection_TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - -def Connection_UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - -def Connection_Mock(): - return _mscl.Connection_Mock() - -class WirelessTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - beacon_none = _mscl.WirelessTypes_beacon_none - beacon_internalTimer = _mscl.WirelessTypes_beacon_internalTimer - beacon_internalPPS = _mscl.WirelessTypes_beacon_internalPPS - beacon_externalPPS = _mscl.WirelessTypes_beacon_externalPPS - microcontroller_18F452 = _mscl.WirelessTypes_microcontroller_18F452 - microcontroller_18F4620 = _mscl.WirelessTypes_microcontroller_18F4620 - microcontroller_18F46K20 = _mscl.WirelessTypes_microcontroller_18F46K20 - microcontroller_18F67K90 = _mscl.WirelessTypes_microcontroller_18F67K90 - microcontroller_EFM32WG990F256 = _mscl.WirelessTypes_microcontroller_EFM32WG990F256 - microcontroller_EFR32FG1P132F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32FG1P132F256GM48 - microcontroller_EFR32MG1P232F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32MG1P232F256GM48 - collectionMethod_logOnly = _mscl.WirelessTypes_collectionMethod_logOnly - collectionMethod_transmitOnly = _mscl.WirelessTypes_collectionMethod_transmitOnly - collectionMethod_logAndTransmit = _mscl.WirelessTypes_collectionMethod_logAndTransmit - dataType_first = _mscl.WirelessTypes_dataType_first - dataType_uint16_shifted = _mscl.WirelessTypes_dataType_uint16_shifted - dataType_float32 = _mscl.WirelessTypes_dataType_float32 - dataType_uint16_12bitRes = _mscl.WirelessTypes_dataType_uint16_12bitRes - dataType_uint32 = _mscl.WirelessTypes_dataType_uint32 - dataType_uint16 = _mscl.WirelessTypes_dataType_uint16 - dataType_float32_noCals = _mscl.WirelessTypes_dataType_float32_noCals - dataType_uint24_18bitRes = _mscl.WirelessTypes_dataType_uint24_18bitRes - dataType_uint16_18bitTrunc = _mscl.WirelessTypes_dataType_uint16_18bitTrunc - dataType_int24_20bit = _mscl.WirelessTypes_dataType_int24_20bit - dataType_int16_20bitTrunc = _mscl.WirelessTypes_dataType_int16_20bitTrunc - dataType_uint24 = _mscl.WirelessTypes_dataType_uint24 - dataType_uint16_24bitTrunc = _mscl.WirelessTypes_dataType_uint16_24bitTrunc - dataType_int16_x10 = _mscl.WirelessTypes_dataType_int16_x10 - dataType_last = _mscl.WirelessTypes_dataType_last - dataFormat_raw_uint16 = _mscl.WirelessTypes_dataFormat_raw_uint16 - dataFormat_cal_float = _mscl.WirelessTypes_dataFormat_cal_float - dataFormat_raw_uint24 = _mscl.WirelessTypes_dataFormat_raw_uint24 - dataFormat_raw_int24 = _mscl.WirelessTypes_dataFormat_raw_int24 - dataFormat_raw_int16 = _mscl.WirelessTypes_dataFormat_raw_int16 - dataFormat_cal_int16_x10 = _mscl.WirelessTypes_dataFormat_cal_int16_x10 - syncMode_continuous = _mscl.WirelessTypes_syncMode_continuous - syncMode_burst = _mscl.WirelessTypes_syncMode_burst - samplingMode_sync = _mscl.WirelessTypes_samplingMode_sync - samplingMode_syncBurst = _mscl.WirelessTypes_samplingMode_syncBurst - samplingMode_nonSync = _mscl.WirelessTypes_samplingMode_nonSync - samplingMode_armedDatalog = _mscl.WirelessTypes_samplingMode_armedDatalog - samplingMode_syncEvent = _mscl.WirelessTypes_samplingMode_syncEvent - samplingMode_nonSyncEvent = _mscl.WirelessTypes_samplingMode_nonSyncEvent - defaultMode_idle = _mscl.WirelessTypes_defaultMode_idle - defaultMode_ldc = _mscl.WirelessTypes_defaultMode_ldc - defaultMode_datalog = _mscl.WirelessTypes_defaultMode_datalog - defaultMode_sleep = _mscl.WirelessTypes_defaultMode_sleep - defaultMode_sync = _mscl.WirelessTypes_defaultMode_sync - freq_unknown = _mscl.WirelessTypes_freq_unknown - freq_11 = _mscl.WirelessTypes_freq_11 - freq_12 = _mscl.WirelessTypes_freq_12 - freq_13 = _mscl.WirelessTypes_freq_13 - freq_14 = _mscl.WirelessTypes_freq_14 - freq_15 = _mscl.WirelessTypes_freq_15 - freq_16 = _mscl.WirelessTypes_freq_16 - freq_17 = _mscl.WirelessTypes_freq_17 - freq_18 = _mscl.WirelessTypes_freq_18 - freq_19 = _mscl.WirelessTypes_freq_19 - freq_20 = _mscl.WirelessTypes_freq_20 - freq_21 = _mscl.WirelessTypes_freq_21 - freq_22 = _mscl.WirelessTypes_freq_22 - freq_23 = _mscl.WirelessTypes_freq_23 - freq_24 = _mscl.WirelessTypes_freq_24 - freq_25 = _mscl.WirelessTypes_freq_25 - freq_26 = _mscl.WirelessTypes_freq_26 - power_20dBm = _mscl.WirelessTypes_power_20dBm - power_16dBm = _mscl.WirelessTypes_power_16dBm - power_15dBm = _mscl.WirelessTypes_power_15dBm - power_12dBm = _mscl.WirelessTypes_power_12dBm - power_11dBm = _mscl.WirelessTypes_power_11dBm - power_10dBm = _mscl.WirelessTypes_power_10dBm - power_5dBm = _mscl.WirelessTypes_power_5dBm - power_1dBm = _mscl.WirelessTypes_power_1dBm - power_0dBm = _mscl.WirelessTypes_power_0dBm - retransmission_off = _mscl.WirelessTypes_retransmission_off - retransmission_on = _mscl.WirelessTypes_retransmission_on - retransmission_disabled = _mscl.WirelessTypes_retransmission_disabled - trigger_userInit = _mscl.WirelessTypes_trigger_userInit - trigger_ceiling = _mscl.WirelessTypes_trigger_ceiling - trigger_floor = _mscl.WirelessTypes_trigger_floor - trigger_rampUp = _mscl.WirelessTypes_trigger_rampUp - trigger_rampDown = _mscl.WirelessTypes_trigger_rampDown - equation_none = _mscl.WirelessTypes_equation_none - equation_standard = _mscl.WirelessTypes_equation_standard - unit_none = _mscl.WirelessTypes_unit_none - unit_other_bits = _mscl.WirelessTypes_unit_other_bits - unit_strain_strain = _mscl.WirelessTypes_unit_strain_strain - unit_strain_microStrain = _mscl.WirelessTypes_unit_strain_microStrain - unit_accel_g = _mscl.WirelessTypes_unit_accel_g - unit_accel_mPerSec2 = _mscl.WirelessTypes_unit_accel_mPerSec2 - unit_volts_volts = _mscl.WirelessTypes_unit_volts_volts - unit_volts_millivolts = _mscl.WirelessTypes_unit_volts_millivolts - unit_volts_microvolts = _mscl.WirelessTypes_unit_volts_microvolts - unit_temp_celsius = _mscl.WirelessTypes_unit_temp_celsius - unit_temp_kelvin = _mscl.WirelessTypes_unit_temp_kelvin - unit_temp_fahrenheit = _mscl.WirelessTypes_unit_temp_fahrenheit - unit_displacement_meters = _mscl.WirelessTypes_unit_displacement_meters - unit_displacement_millimeters = _mscl.WirelessTypes_unit_displacement_millimeters - unit_displacement_micrometers = _mscl.WirelessTypes_unit_displacement_micrometers - unit_force_lbf = _mscl.WirelessTypes_unit_force_lbf - unit_force_newtons = _mscl.WirelessTypes_unit_force_newtons - unit_force_kiloNewtons = _mscl.WirelessTypes_unit_force_kiloNewtons - unit_mass_kilograms = _mscl.WirelessTypes_unit_mass_kilograms - unit_pressure_bar = _mscl.WirelessTypes_unit_pressure_bar - unit_pressure_psi = _mscl.WirelessTypes_unit_pressure_psi - unit_pressure_atm = _mscl.WirelessTypes_unit_pressure_atm - unit_pressure_mmHg = _mscl.WirelessTypes_unit_pressure_mmHg - unit_pressure_pascal = _mscl.WirelessTypes_unit_pressure_pascal - unit_pressure_megaPascal = _mscl.WirelessTypes_unit_pressure_megaPascal - unit_pressure_kiloPascal = _mscl.WirelessTypes_unit_pressure_kiloPascal - unit_angDisplacement_degrees = _mscl.WirelessTypes_unit_angDisplacement_degrees - unit_angVelocity_degreesPerSec = _mscl.WirelessTypes_unit_angVelocity_degreesPerSec - unit_angVelocity_radiansPerSec = _mscl.WirelessTypes_unit_angVelocity_radiansPerSec - unit_other_percent = _mscl.WirelessTypes_unit_other_percent - unit_freq_rpm = _mscl.WirelessTypes_unit_freq_rpm - unit_freq_hertz = _mscl.WirelessTypes_unit_freq_hertz - unit_rh_percentRh = _mscl.WirelessTypes_unit_rh_percentRh - unit_other_mVperV = _mscl.WirelessTypes_unit_other_mVperV - unit_accel_milliG = _mscl.WirelessTypes_unit_accel_milliG - unit_accel_ftPerSec2 = _mscl.WirelessTypes_unit_accel_ftPerSec2 - unit_other_percentLife = _mscl.WirelessTypes_unit_other_percentLife - unit_other_count = _mscl.WirelessTypes_unit_other_count - unit_displacement_feet = _mscl.WirelessTypes_unit_displacement_feet - unit_displacement_inches = _mscl.WirelessTypes_unit_displacement_inches - unit_displacement_yards = _mscl.WirelessTypes_unit_displacement_yards - unit_displacement_miles = _mscl.WirelessTypes_unit_displacement_miles - unit_displacement_nautMiles = _mscl.WirelessTypes_unit_displacement_nautMiles - unit_displacement_thouInch = _mscl.WirelessTypes_unit_displacement_thouInch - unit_displacement_hundInch = _mscl.WirelessTypes_unit_displacement_hundInch - unit_displacement_kilometers = _mscl.WirelessTypes_unit_displacement_kilometers - unit_displacement_centimeters = _mscl.WirelessTypes_unit_displacement_centimeters - unit_irradiance_wattsPerSqMeter = _mscl.WirelessTypes_unit_irradiance_wattsPerSqMeter - unit_par_microEinstein = _mscl.WirelessTypes_unit_par_microEinstein - unit_mass_pound = _mscl.WirelessTypes_unit_mass_pound - unit_power_watt = _mscl.WirelessTypes_unit_power_watt - unit_power_milliwatt = _mscl.WirelessTypes_unit_power_milliwatt - unit_power_horsepower = _mscl.WirelessTypes_unit_power_horsepower - unit_reactivePower_var = _mscl.WirelessTypes_unit_reactivePower_var - unit_energy_wattHour = _mscl.WirelessTypes_unit_energy_wattHour - unit_energy_kiloWattHour = _mscl.WirelessTypes_unit_energy_kiloWattHour - unit_reactiveEnergy_VARh = _mscl.WirelessTypes_unit_reactiveEnergy_VARh - unit_reactiveEnergy_kVARh = _mscl.WirelessTypes_unit_reactiveEnergy_kVARh - unit_current_ampere = _mscl.WirelessTypes_unit_current_ampere - unit_current_milliampere = _mscl.WirelessTypes_unit_current_milliampere - unit_current_microampere = _mscl.WirelessTypes_unit_current_microampere - unit_pressure_millibar = _mscl.WirelessTypes_unit_pressure_millibar - unit_pressure_inHg = _mscl.WirelessTypes_unit_pressure_inHg - unit_rssi_dBm = _mscl.WirelessTypes_unit_rssi_dBm - unit_freq_kiloHertz = _mscl.WirelessTypes_unit_freq_kiloHertz - unit_angDisplacement_radians = _mscl.WirelessTypes_unit_angDisplacement_radians - unit_velocity_metersPerSec = _mscl.WirelessTypes_unit_velocity_metersPerSec - unit_velocity_kilometersPerSec = _mscl.WirelessTypes_unit_velocity_kilometersPerSec - unit_velocity_kilometersPerHr = _mscl.WirelessTypes_unit_velocity_kilometersPerHr - unit_velocity_milesPerHr = _mscl.WirelessTypes_unit_velocity_milesPerHr - unit_velocity_knots = _mscl.WirelessTypes_unit_velocity_knots - unit_volume_cubicMeter = _mscl.WirelessTypes_unit_volume_cubicMeter - unit_volume_cubicFt = _mscl.WirelessTypes_unit_volume_cubicFt - unit_volume_liters = _mscl.WirelessTypes_unit_volume_liters - unit_volume_gallon = _mscl.WirelessTypes_unit_volume_gallon - unit_flowRate_cubicMetersPerSec = _mscl.WirelessTypes_unit_flowRate_cubicMetersPerSec - unit_flowRate_cubicFtPerSec = _mscl.WirelessTypes_unit_flowRate_cubicFtPerSec - unit_torque_newtonMeter = _mscl.WirelessTypes_unit_torque_newtonMeter - unit_torque_footPounds = _mscl.WirelessTypes_unit_torque_footPounds - unit_torque_inchPounds = _mscl.WirelessTypes_unit_torque_inchPounds - unit_time_secs = _mscl.WirelessTypes_unit_time_secs - unit_time_nanosecs = _mscl.WirelessTypes_unit_time_nanosecs - unit_time_microsecs = _mscl.WirelessTypes_unit_time_microsecs - unit_time_millisecs = _mscl.WirelessTypes_unit_time_millisecs - unit_time_minutes = _mscl.WirelessTypes_unit_time_minutes - unit_time_hours = _mscl.WirelessTypes_unit_time_hours - unit_time_days = _mscl.WirelessTypes_unit_time_days - unit_time_weeks = _mscl.WirelessTypes_unit_time_weeks - unit_other_value = _mscl.WirelessTypes_unit_other_value - unit_magneticFlux_gauss = _mscl.WirelessTypes_unit_magneticFlux_gauss - unit_other_gSec = _mscl.WirelessTypes_unit_other_gSec - unit_other_secsPerSec = _mscl.WirelessTypes_unit_other_secsPerSec - unit_rssi_dBHz = _mscl.WirelessTypes_unit_rssi_dBHz - unit_density_kgPerMeter3 = _mscl.WirelessTypes_unit_density_kgPerMeter3 - unit_other_unitless = _mscl.WirelessTypes_unit_other_unitless - unit_velocity_inchesPerSec = _mscl.WirelessTypes_unit_velocity_inchesPerSec - unit_force_kg = _mscl.WirelessTypes_unit_force_kg - unit_rawVoltage_volts = _mscl.WirelessTypes_unit_rawVoltage_volts - unit_rawVoltage_millivolts = _mscl.WirelessTypes_unit_rawVoltage_millivolts - unit_rawVoltage_microvolts = _mscl.WirelessTypes_unit_rawVoltage_microvolts - unit_resistance_ohm = _mscl.WirelessTypes_unit_resistance_ohm - unit_resistance_milliohm = _mscl.WirelessTypes_unit_resistance_milliohm - unit_resistance_kiloohm = _mscl.WirelessTypes_unit_resistance_kiloohm - unit_velocity_mmPerSec = _mscl.WirelessTypes_unit_velocity_mmPerSec - unit_mass_grams = _mscl.WirelessTypes_unit_mass_grams - unit_mass_ton = _mscl.WirelessTypes_unit_mass_ton - unit_mass_tonne = _mscl.WirelessTypes_unit_mass_tonne - chType_none = _mscl.WirelessTypes_chType_none - chType_fullDifferential = _mscl.WirelessTypes_chType_fullDifferential - chType_singleEnded = _mscl.WirelessTypes_chType_singleEnded - chType_battery = _mscl.WirelessTypes_chType_battery - chType_temperature = _mscl.WirelessTypes_chType_temperature - chType_rh = _mscl.WirelessTypes_chType_rh - chType_acceleration = _mscl.WirelessTypes_chType_acceleration - chType_displacement = _mscl.WirelessTypes_chType_displacement - chType_voltage = _mscl.WirelessTypes_chType_voltage - chType_diffTemperature = _mscl.WirelessTypes_chType_diffTemperature - chType_digital = _mscl.WirelessTypes_chType_digital - chType_tilt = _mscl.WirelessTypes_chType_tilt - voltageType_singleEnded = _mscl.WirelessTypes_voltageType_singleEnded - voltageType_differential = _mscl.WirelessTypes_voltageType_differential - settling_4ms = _mscl.WirelessTypes_settling_4ms - settling_8ms = _mscl.WirelessTypes_settling_8ms - settling_16ms = _mscl.WirelessTypes_settling_16ms - settling_32ms = _mscl.WirelessTypes_settling_32ms - settling_40ms = _mscl.WirelessTypes_settling_40ms - settling_48ms = _mscl.WirelessTypes_settling_48ms - settling_60ms = _mscl.WirelessTypes_settling_60ms - settling_101ms_90db = _mscl.WirelessTypes_settling_101ms_90db - settling_120ms_80db = _mscl.WirelessTypes_settling_120ms_80db - settling_120ms_65db = _mscl.WirelessTypes_settling_120ms_65db - settling_160ms_69db = _mscl.WirelessTypes_settling_160ms_69db - settling_200ms = _mscl.WirelessTypes_settling_200ms - transducer_thermocouple = _mscl.WirelessTypes_transducer_thermocouple - transducer_rtd = _mscl.WirelessTypes_transducer_rtd - transducer_thermistor = _mscl.WirelessTypes_transducer_thermistor - tc_uncompensated = _mscl.WirelessTypes_tc_uncompensated - tc_K = _mscl.WirelessTypes_tc_K - tc_J = _mscl.WirelessTypes_tc_J - tc_R = _mscl.WirelessTypes_tc_R - tc_S = _mscl.WirelessTypes_tc_S - tc_T = _mscl.WirelessTypes_tc_T - tc_E = _mscl.WirelessTypes_tc_E - tc_B = _mscl.WirelessTypes_tc_B - tc_N = _mscl.WirelessTypes_tc_N - tc_customPolynomial = _mscl.WirelessTypes_tc_customPolynomial - rtd_uncompensated = _mscl.WirelessTypes_rtd_uncompensated - rtd_pt10 = _mscl.WirelessTypes_rtd_pt10 - rtd_pt50 = _mscl.WirelessTypes_rtd_pt50 - rtd_pt100 = _mscl.WirelessTypes_rtd_pt100 - rtd_pt200 = _mscl.WirelessTypes_rtd_pt200 - rtd_pt500 = _mscl.WirelessTypes_rtd_pt500 - rtd_pt1000 = _mscl.WirelessTypes_rtd_pt1000 - rtd_2wire = _mscl.WirelessTypes_rtd_2wire - rtd_3wire = _mscl.WirelessTypes_rtd_3wire - rtd_4wire = _mscl.WirelessTypes_rtd_4wire - thermistor_uncompensated = _mscl.WirelessTypes_thermistor_uncompensated - thermistor_44004_44033 = _mscl.WirelessTypes_thermistor_44004_44033 - thermistor_44005_44030 = _mscl.WirelessTypes_thermistor_44005_44030 - thermistor_44007_44034 = _mscl.WirelessTypes_thermistor_44007_44034 - thermistor_44006_44031 = _mscl.WirelessTypes_thermistor_44006_44031 - thermistor_44008_44032 = _mscl.WirelessTypes_thermistor_44008_44032 - thermistor_ysi_400 = _mscl.WirelessTypes_thermistor_ysi_400 - sampleRate_104170Hz = _mscl.WirelessTypes_sampleRate_104170Hz - sampleRate_78125Hz = _mscl.WirelessTypes_sampleRate_78125Hz - sampleRate_62500Hz = _mscl.WirelessTypes_sampleRate_62500Hz - sampleRate_25000Hz = _mscl.WirelessTypes_sampleRate_25000Hz - sampleRate_12500Hz = _mscl.WirelessTypes_sampleRate_12500Hz - sampleRate_3200Hz = _mscl.WirelessTypes_sampleRate_3200Hz - sampleRate_1600Hz = _mscl.WirelessTypes_sampleRate_1600Hz - sampleRate_800Hz = _mscl.WirelessTypes_sampleRate_800Hz - sampleRate_300Hz = _mscl.WirelessTypes_sampleRate_300Hz - sampleRate_1kHz = _mscl.WirelessTypes_sampleRate_1kHz - sampleRate_2kHz = _mscl.WirelessTypes_sampleRate_2kHz - sampleRate_3kHz = _mscl.WirelessTypes_sampleRate_3kHz - sampleRate_4kHz = _mscl.WirelessTypes_sampleRate_4kHz - sampleRate_5kHz = _mscl.WirelessTypes_sampleRate_5kHz - sampleRate_6kHz = _mscl.WirelessTypes_sampleRate_6kHz - sampleRate_7kHz = _mscl.WirelessTypes_sampleRate_7kHz - sampleRate_8kHz = _mscl.WirelessTypes_sampleRate_8kHz - sampleRate_9kHz = _mscl.WirelessTypes_sampleRate_9kHz - sampleRate_10kHz = _mscl.WirelessTypes_sampleRate_10kHz - sampleRate_20kHz = _mscl.WirelessTypes_sampleRate_20kHz - sampleRate_30kHz = _mscl.WirelessTypes_sampleRate_30kHz - sampleRate_40kHz = _mscl.WirelessTypes_sampleRate_40kHz - sampleRate_50kHz = _mscl.WirelessTypes_sampleRate_50kHz - sampleRate_60kHz = _mscl.WirelessTypes_sampleRate_60kHz - sampleRate_70kHz = _mscl.WirelessTypes_sampleRate_70kHz - sampleRate_80kHz = _mscl.WirelessTypes_sampleRate_80kHz - sampleRate_90kHz = _mscl.WirelessTypes_sampleRate_90kHz - sampleRate_100kHz = _mscl.WirelessTypes_sampleRate_100kHz - sampleRate_887Hz = _mscl.WirelessTypes_sampleRate_887Hz - sampleRate_8192Hz = _mscl.WirelessTypes_sampleRate_8192Hz - sampleRate_4096Hz = _mscl.WirelessTypes_sampleRate_4096Hz - sampleRate_2048Hz = _mscl.WirelessTypes_sampleRate_2048Hz - sampleRate_1024Hz = _mscl.WirelessTypes_sampleRate_1024Hz - sampleRate_512Hz = _mscl.WirelessTypes_sampleRate_512Hz - sampleRate_256Hz = _mscl.WirelessTypes_sampleRate_256Hz - sampleRate_128Hz = _mscl.WirelessTypes_sampleRate_128Hz - sampleRate_64Hz = _mscl.WirelessTypes_sampleRate_64Hz - sampleRate_32Hz = _mscl.WirelessTypes_sampleRate_32Hz - sampleRate_16Hz = _mscl.WirelessTypes_sampleRate_16Hz - sampleRate_8Hz = _mscl.WirelessTypes_sampleRate_8Hz - sampleRate_4Hz = _mscl.WirelessTypes_sampleRate_4Hz - sampleRate_2Hz = _mscl.WirelessTypes_sampleRate_2Hz - sampleRate_1Hz = _mscl.WirelessTypes_sampleRate_1Hz - sampleRate_2Sec = _mscl.WirelessTypes_sampleRate_2Sec - sampleRate_5Sec = _mscl.WirelessTypes_sampleRate_5Sec - sampleRate_10Sec = _mscl.WirelessTypes_sampleRate_10Sec - sampleRate_30Sec = _mscl.WirelessTypes_sampleRate_30Sec - sampleRate_1Min = _mscl.WirelessTypes_sampleRate_1Min - sampleRate_2Min = _mscl.WirelessTypes_sampleRate_2Min - sampleRate_5Min = _mscl.WirelessTypes_sampleRate_5Min - sampleRate_10Min = _mscl.WirelessTypes_sampleRate_10Min - sampleRate_30Min = _mscl.WirelessTypes_sampleRate_30Min - sampleRate_60Min = _mscl.WirelessTypes_sampleRate_60Min - sampleRate_24Hours = _mscl.WirelessTypes_sampleRate_24Hours - region_usa = _mscl.WirelessTypes_region_usa - region_europeanUnion = _mscl.WirelessTypes_region_europeanUnion - region_japan = _mscl.WirelessTypes_region_japan - region_other = _mscl.WirelessTypes_region_other - region_brazil = _mscl.WirelessTypes_region_brazil - region_china = _mscl.WirelessTypes_region_china - region_australia_newzealand = _mscl.WirelessTypes_region_australia_newzealand - region_singapore = _mscl.WirelessTypes_region_singapore - region_canada = _mscl.WirelessTypes_region_canada - region_southAfrica = _mscl.WirelessTypes_region_southAfrica - region_indonesia = _mscl.WirelessTypes_region_indonesia - region_taiwan = _mscl.WirelessTypes_region_taiwan - chSetting_inputRange = _mscl.WirelessTypes_chSetting_inputRange - chSetting_filterSettlingTime = _mscl.WirelessTypes_chSetting_filterSettlingTime - chSetting_thermocoupleType = _mscl.WirelessTypes_chSetting_thermocoupleType - chSetting_linearEquation = _mscl.WirelessTypes_chSetting_linearEquation - chSetting_unit = _mscl.WirelessTypes_chSetting_unit - chSetting_equationType = _mscl.WirelessTypes_chSetting_equationType - chSetting_hardwareOffset = _mscl.WirelessTypes_chSetting_hardwareOffset - chSetting_autoBalance = _mscl.WirelessTypes_chSetting_autoBalance - chSetting_gaugeFactor = _mscl.WirelessTypes_chSetting_gaugeFactor - chSetting_antiAliasingFilter = _mscl.WirelessTypes_chSetting_antiAliasingFilter - chSetting_legacyShuntCal = _mscl.WirelessTypes_chSetting_legacyShuntCal - chSetting_autoShuntCal = _mscl.WirelessTypes_chSetting_autoShuntCal - chSetting_lowPassFilter = _mscl.WirelessTypes_chSetting_lowPassFilter - chSetting_highPassFilter = _mscl.WirelessTypes_chSetting_highPassFilter - chSetting_tempSensorOptions = _mscl.WirelessTypes_chSetting_tempSensorOptions - chSetting_debounceFilter = _mscl.WirelessTypes_chSetting_debounceFilter - chSetting_pullUpResistor = _mscl.WirelessTypes_chSetting_pullUpResistor - chSetting_factoryLinearEq = _mscl.WirelessTypes_chSetting_factoryLinearEq - chSetting_factoryUnit = _mscl.WirelessTypes_chSetting_factoryUnit - chSetting_factoryEqType = _mscl.WirelessTypes_chSetting_factoryEqType - autobalance_success = _mscl.WirelessTypes_autobalance_success - autobalance_maybeInvalid = _mscl.WirelessTypes_autobalance_maybeInvalid - autobalance_notSupportedByNode = _mscl.WirelessTypes_autobalance_notSupportedByNode - autobalance_notSupportedByCh = _mscl.WirelessTypes_autobalance_notSupportedByCh - autobalance_targetOutOfRange = _mscl.WirelessTypes_autobalance_targetOutOfRange - autobalance_failed = _mscl.WirelessTypes_autobalance_failed - autobalance_legacyNone = _mscl.WirelessTypes_autobalance_legacyNone - autobalance_notComplete = _mscl.WirelessTypes_autobalance_notComplete - autocal_success = _mscl.WirelessTypes_autocal_success - autocal_maybeInvalid_applied = _mscl.WirelessTypes_autocal_maybeInvalid_applied - autocal_maybeInvalid_notApplied = _mscl.WirelessTypes_autocal_maybeInvalid_notApplied - autocal_notComplete = _mscl.WirelessTypes_autocal_notComplete - autocalError_none = _mscl.WirelessTypes_autocalError_none - autocalError_sensorDetached = _mscl.WirelessTypes_autocalError_sensorDetached - autocalError_sensorShorted = _mscl.WirelessTypes_autocalError_sensorShorted - autocalError_unsupportedChannel = _mscl.WirelessTypes_autocalError_unsupportedChannel - autocalError_baseHighRail = _mscl.WirelessTypes_autocalError_baseHighRail - autocalError_baseLowRail = _mscl.WirelessTypes_autocalError_baseLowRail - autocalError_shuntHighRail = _mscl.WirelessTypes_autocalError_shuntHighRail - autocalError_shuntLowRail = _mscl.WirelessTypes_autocalError_shuntLowRail - autocalError_ramp = _mscl.WirelessTypes_autocalError_ramp - autocalError_noShunt = _mscl.WirelessTypes_autocalError_noShunt - autocalError_timeout = _mscl.WirelessTypes_autocalError_timeout - fatigueMode_angleStrain = _mscl.WirelessTypes_fatigueMode_angleStrain - fatigueMode_distributedAngle = _mscl.WirelessTypes_fatigueMode_distributedAngle - fatigueMode_rawGaugeStrain = _mscl.WirelessTypes_fatigueMode_rawGaugeStrain - eventTrigger_ceiling = _mscl.WirelessTypes_eventTrigger_ceiling - eventTrigger_floor = _mscl.WirelessTypes_eventTrigger_floor - filter_33000hz = _mscl.WirelessTypes_filter_33000hz - filter_20000hz = _mscl.WirelessTypes_filter_20000hz - filter_10000hz = _mscl.WirelessTypes_filter_10000hz - filter_5222hz = _mscl.WirelessTypes_filter_5222hz - filter_5000hz = _mscl.WirelessTypes_filter_5000hz - filter_4416hz = _mscl.WirelessTypes_filter_4416hz - filter_4096hz = _mscl.WirelessTypes_filter_4096hz - filter_4000hz = _mscl.WirelessTypes_filter_4000hz - filter_2208hz = _mscl.WirelessTypes_filter_2208hz - filter_2048hz = _mscl.WirelessTypes_filter_2048hz - filter_2000hz = _mscl.WirelessTypes_filter_2000hz - filter_1104hz = _mscl.WirelessTypes_filter_1104hz - filter_1024hz = _mscl.WirelessTypes_filter_1024hz - filter_1000hz = _mscl.WirelessTypes_filter_1000hz - filter_800hz = _mscl.WirelessTypes_filter_800hz - filter_552hz = _mscl.WirelessTypes_filter_552hz - filter_512hz = _mscl.WirelessTypes_filter_512hz - filter_500hz = _mscl.WirelessTypes_filter_500hz - filter_418hz = _mscl.WirelessTypes_filter_418hz - filter_294hz = _mscl.WirelessTypes_filter_294hz - filter_256hz = _mscl.WirelessTypes_filter_256hz - filter_250hz = _mscl.WirelessTypes_filter_250hz - filter_209hz = _mscl.WirelessTypes_filter_209hz - filter_200hz = _mscl.WirelessTypes_filter_200hz - filter_147hz = _mscl.WirelessTypes_filter_147hz - filter_128hz = _mscl.WirelessTypes_filter_128hz - filter_125hz = _mscl.WirelessTypes_filter_125hz - filter_104hz = _mscl.WirelessTypes_filter_104hz - filter_100hz = _mscl.WirelessTypes_filter_100hz - filter_62hz = _mscl.WirelessTypes_filter_62hz - filter_52hz = _mscl.WirelessTypes_filter_52hz - filter_50hz = _mscl.WirelessTypes_filter_50hz - filter_31hz = _mscl.WirelessTypes_filter_31hz - filter_26hz = _mscl.WirelessTypes_filter_26hz - filter_12_66hz = _mscl.WirelessTypes_filter_12_66hz - filter_2_6hz = _mscl.WirelessTypes_filter_2_6hz - highPass_off = _mscl.WirelessTypes_highPass_off - highPass_auto = _mscl.WirelessTypes_highPass_auto - cfc_10 = _mscl.WirelessTypes_cfc_10 - cfc_21 = _mscl.WirelessTypes_cfc_21 - cfc_60 = _mscl.WirelessTypes_cfc_60 - storageLimit_overwrite = _mscl.WirelessTypes_storageLimit_overwrite - storageLimit_stop = _mscl.WirelessTypes_storageLimit_stop - range_14_545mV = _mscl.WirelessTypes_range_14_545mV - range_10_236mV = _mscl.WirelessTypes_range_10_236mV - range_7_608mV = _mscl.WirelessTypes_range_7_608mV - range_4_046mV = _mscl.WirelessTypes_range_4_046mV - range_2_008mV = _mscl.WirelessTypes_range_2_008mV - range_1_511mV = _mscl.WirelessTypes_range_1_511mV - range_1_001mV = _mscl.WirelessTypes_range_1_001mV - range_0_812mV = _mscl.WirelessTypes_range_0_812mV - range_75mV = _mscl.WirelessTypes_range_75mV - range_37_5mV = _mscl.WirelessTypes_range_37_5mV - range_18_75mV = _mscl.WirelessTypes_range_18_75mV - range_9_38mV = _mscl.WirelessTypes_range_9_38mV - range_4_69mV = _mscl.WirelessTypes_range_4_69mV - range_2_34mV = _mscl.WirelessTypes_range_2_34mV - range_1_17mV = _mscl.WirelessTypes_range_1_17mV - range_0_586mV = _mscl.WirelessTypes_range_0_586mV - range_70mV = _mscl.WirelessTypes_range_70mV - range_35mV = _mscl.WirelessTypes_range_35mV - range_17_5mV = _mscl.WirelessTypes_range_17_5mV - range_8_75mV = _mscl.WirelessTypes_range_8_75mV - range_4_38mV = _mscl.WirelessTypes_range_4_38mV - range_2_19mV = _mscl.WirelessTypes_range_2_19mV - range_1_09mV = _mscl.WirelessTypes_range_1_09mV - range_0_547mV = _mscl.WirelessTypes_range_0_547mV - range_44mV = _mscl.WirelessTypes_range_44mV - range_30mV = _mscl.WirelessTypes_range_30mV - range_20mV = _mscl.WirelessTypes_range_20mV - range_15mV = _mscl.WirelessTypes_range_15mV - range_10mV = _mscl.WirelessTypes_range_10mV - range_5mV = _mscl.WirelessTypes_range_5mV - range_3mV = _mscl.WirelessTypes_range_3mV - range_2mV = _mscl.WirelessTypes_range_2mV - range_6mV = _mscl.WirelessTypes_range_6mV - range_1mV = _mscl.WirelessTypes_range_1mV - range_50mV = _mscl.WirelessTypes_range_50mV - range_2_5mV = _mscl.WirelessTypes_range_2_5mV - range_0_6mV = _mscl.WirelessTypes_range_0_6mV - range_0_35mV = _mscl.WirelessTypes_range_0_35mV - range_0_1mV = _mscl.WirelessTypes_range_0_1mV - range_156mV = _mscl.WirelessTypes_range_156mV - range_78_1mV = _mscl.WirelessTypes_range_78_1mV - range_39mV = _mscl.WirelessTypes_range_39mV - range_19_5mV = _mscl.WirelessTypes_range_19_5mV - range_9_76mV = _mscl.WirelessTypes_range_9_76mV - range_4_88mV = _mscl.WirelessTypes_range_4_88mV - range_2_44mV = _mscl.WirelessTypes_range_2_44mV - range_1_22mV = _mscl.WirelessTypes_range_1_22mV - range_10_24V = _mscl.WirelessTypes_range_10_24V - range_5_12V = _mscl.WirelessTypes_range_5_12V - range_2_56V = _mscl.WirelessTypes_range_2_56V - range_0to10_24V = _mscl.WirelessTypes_range_0to10_24V - range_0to5_12V = _mscl.WirelessTypes_range_0to5_12V - range_1_147V = _mscl.WirelessTypes_range_1_147V - range_585mV = _mscl.WirelessTypes_range_585mV - range_292_5mV = _mscl.WirelessTypes_range_292_5mV - range_146_25mV = _mscl.WirelessTypes_range_146_25mV - range_73_13mV = _mscl.WirelessTypes_range_73_13mV - range_36_56mV = _mscl.WirelessTypes_range_36_56mV - range_18_23mV = _mscl.WirelessTypes_range_18_23mV - range_9_14mV = _mscl.WirelessTypes_range_9_14mV - range_5_74V = _mscl.WirelessTypes_range_5_74V - range_2_93V = _mscl.WirelessTypes_range_2_93V - range_1_46V = _mscl.WirelessTypes_range_1_46V - range_731_3mV = _mscl.WirelessTypes_range_731_3mV - range_365_6mV = _mscl.WirelessTypes_range_365_6mV - range_182_8mV = _mscl.WirelessTypes_range_182_8mV - range_91_4mV = _mscl.WirelessTypes_range_91_4mV - range_45_7mV = _mscl.WirelessTypes_range_45_7mV - range_62_5mV = _mscl.WirelessTypes_range_62_5mV - range_31_25mV = _mscl.WirelessTypes_range_31_25mV - range_15_63mV = _mscl.WirelessTypes_range_15_63mV - range_7_81mV = _mscl.WirelessTypes_range_7_81mV - range_3_91mV = _mscl.WirelessTypes_range_3_91mV - range_1_95mV = _mscl.WirelessTypes_range_1_95mV - range_0_976mV = _mscl.WirelessTypes_range_0_976mV - range_0_488mV = _mscl.WirelessTypes_range_0_488mV - range_2G = _mscl.WirelessTypes_range_2G - range_4G = _mscl.WirelessTypes_range_4G - range_8G = _mscl.WirelessTypes_range_8G - range_10G = _mscl.WirelessTypes_range_10G - range_20G = _mscl.WirelessTypes_range_20G - range_40G = _mscl.WirelessTypes_range_40G - range_2_5V = _mscl.WirelessTypes_range_2_5V - range_1_25V = _mscl.WirelessTypes_range_1_25V - range_625mV = _mscl.WirelessTypes_range_625mV - range_312_5mV = _mscl.WirelessTypes_range_312_5mV - range_156_25mV = _mscl.WirelessTypes_range_156_25mV - range_78_125mV = _mscl.WirelessTypes_range_78_125mV - range_39_063mV = _mscl.WirelessTypes_range_39_063mV - range_19_532mV = _mscl.WirelessTypes_range_19_532mV - range_0to2_5V = _mscl.WirelessTypes_range_0to2_5V - range_0to1_25V = _mscl.WirelessTypes_range_0to1_25V - range_0to625mV = _mscl.WirelessTypes_range_0to625mV - range_0to312_5mV = _mscl.WirelessTypes_range_0to312_5mV - range_0to156_25mV = _mscl.WirelessTypes_range_0to156_25mV - range_0to78_125mV = _mscl.WirelessTypes_range_0to78_125mV - range_0to39_063mV = _mscl.WirelessTypes_range_0to39_063mV - range_0to19_532mV = _mscl.WirelessTypes_range_0to19_532mV - range_9_766mV = _mscl.WirelessTypes_range_9_766mV - range_1_35V_or_0to1000000ohm = _mscl.WirelessTypes_range_1_35V_or_0to1000000ohm - range_1_25V_or_0to10000ohm = _mscl.WirelessTypes_range_1_25V_or_0to10000ohm - range_625mV_or_0to3333_3ohm = _mscl.WirelessTypes_range_625mV_or_0to3333_3ohm - range_312_5mV_or_0to1428_6ohm = _mscl.WirelessTypes_range_312_5mV_or_0to1428_6ohm - range_156_25mV_or_0to666_67ohm = _mscl.WirelessTypes_range_156_25mV_or_0to666_67ohm - range_78_125mV_or_0to322_58ohm = _mscl.WirelessTypes_range_78_125mV_or_0to322_58ohm - range_39_0625mV_or_0to158_73ohm = _mscl.WirelessTypes_range_39_0625mV_or_0to158_73ohm - range_19_5313mV_or_0to78_74ohm = _mscl.WirelessTypes_range_19_5313mV_or_0to78_74ohm - range_750mV = _mscl.WirelessTypes_range_750mV - range_375mV = _mscl.WirelessTypes_range_375mV - range_187_5mV = _mscl.WirelessTypes_range_187_5mV - range_93_75mV = _mscl.WirelessTypes_range_93_75mV - range_46_875mV = _mscl.WirelessTypes_range_46_875mV - range_23_438mV = _mscl.WirelessTypes_range_23_438mV - range_11_719mV = _mscl.WirelessTypes_range_11_719mV - range_5_859mV = _mscl.WirelessTypes_range_5_859mV - range_0to1_5V = _mscl.WirelessTypes_range_0to1_5V - range_0to750mV = _mscl.WirelessTypes_range_0to750mV - range_0to375mV = _mscl.WirelessTypes_range_0to375mV - range_0to187_5mV = _mscl.WirelessTypes_range_0to187_5mV - range_0to93_75mV = _mscl.WirelessTypes_range_0to93_75mV - range_0to46_875mV = _mscl.WirelessTypes_range_0to46_875mV - range_0to23_438mV = _mscl.WirelessTypes_range_0to23_438mV - range_0to11_719mV = _mscl.WirelessTypes_range_0to11_719mV - range_1_5V = _mscl.WirelessTypes_range_1_5V - range_1_35V = _mscl.WirelessTypes_range_1_35V - range_0to1000000ohm = _mscl.WirelessTypes_range_0to1000000ohm - range_0to10000ohm = _mscl.WirelessTypes_range_0to10000ohm - range_0to3333_3ohm = _mscl.WirelessTypes_range_0to3333_3ohm - range_0to1428_6ohm = _mscl.WirelessTypes_range_0to1428_6ohm - range_0to666_67ohm = _mscl.WirelessTypes_range_0to666_67ohm - range_0to322_58ohm = _mscl.WirelessTypes_range_0to322_58ohm - range_0to158_73ohm = _mscl.WirelessTypes_range_0to158_73ohm - range_0to78_74ohm = _mscl.WirelessTypes_range_0to78_74ohm - range_39_0625mV = _mscl.WirelessTypes_range_39_0625mV - range_19_5313mV = _mscl.WirelessTypes_range_19_5313mV - range_125mV = _mscl.WirelessTypes_range_125mV - range_invalid = _mscl.WirelessTypes_range_invalid - dataMode_none = _mscl.WirelessTypes_dataMode_none - dataMode_raw = _mscl.WirelessTypes_dataMode_raw - dataMode_derived = _mscl.WirelessTypes_dataMode_derived - dataMode_raw_derived = _mscl.WirelessTypes_dataMode_raw_derived - derivedCategory_rms = _mscl.WirelessTypes_derivedCategory_rms - derivedCategory_peakToPeak = _mscl.WirelessTypes_derivedCategory_peakToPeak - derivedCategory_velocity = _mscl.WirelessTypes_derivedCategory_velocity - derivedCategory_crestFactor = _mscl.WirelessTypes_derivedCategory_crestFactor - derivedCategory_mean = _mscl.WirelessTypes_derivedCategory_mean - derivedAlgId_rms = _mscl.WirelessTypes_derivedAlgId_rms - derivedAlgId_peakToPeak = _mscl.WirelessTypes_derivedAlgId_peakToPeak - derivedAlgId_ips = _mscl.WirelessTypes_derivedAlgId_ips - derivedAlgId_crestFactor = _mscl.WirelessTypes_derivedAlgId_crestFactor - derivedAlgId_mean = _mscl.WirelessTypes_derivedAlgId_mean - derivedAlgId_mmps = _mscl.WirelessTypes_derivedAlgId_mmps - derivedVelocity_ips = _mscl.WirelessTypes_derivedVelocity_ips - derivedVelocity_mmps = _mscl.WirelessTypes_derivedVelocity_mmps - commProtocol_lxrs = _mscl.WirelessTypes_commProtocol_lxrs - commProtocol_lxrsPlus = _mscl.WirelessTypes_commProtocol_lxrsPlus - voltage_5120mV = _mscl.WirelessTypes_voltage_5120mV - voltage_5000mV = _mscl.WirelessTypes_voltage_5000mV - voltage_4096mV = _mscl.WirelessTypes_voltage_4096mV - voltage_3000mV = _mscl.WirelessTypes_voltage_3000mV - voltage_2800mV = _mscl.WirelessTypes_voltage_2800mV - voltage_2750mV = _mscl.WirelessTypes_voltage_2750mV - voltage_2700mV = _mscl.WirelessTypes_voltage_2700mV - voltage_2500mV = _mscl.WirelessTypes_voltage_2500mV - voltage_1500mV = _mscl.WirelessTypes_voltage_1500mV - sensorOutputMode_accel = _mscl.WirelessTypes_sensorOutputMode_accel - sensorOutputMode_tilt = _mscl.WirelessTypes_sensorOutputMode_tilt - batteryStatus_good = _mscl.WirelessTypes_batteryStatus_good - batteryStatus_low = _mscl.WirelessTypes_batteryStatus_low - batteryStatus_critical = _mscl.WirelessTypes_batteryStatus_critical - externalPower_notConnected = _mscl.WirelessTypes_externalPower_notConnected - externalPower_connected = _mscl.WirelessTypes_externalPower_connected - delayVersion_v1 = _mscl.WirelessTypes_delayVersion_v1 - delayVersion_v2 = _mscl.WirelessTypes_delayVersion_v2 - delayVersion_v3 = _mscl.WirelessTypes_delayVersion_v3 - delayVersion_v4 = _mscl.WirelessTypes_delayVersion_v4 - UNKNOWN_RSSI = _mscl.WirelessTypes_UNKNOWN_RSSI - - def __init__(self): - _mscl.WirelessTypes_swiginit(self, _mscl.new_WirelessTypes()) - __swig_destroy__ = _mscl.delete_WirelessTypes - -# Register WirelessTypes in _mscl: -_mscl.WirelessTypes_swigregister(WirelessTypes) - -class SampleRate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - rateType_seconds = _mscl.SampleRate_rateType_seconds - rateType_hertz = _mscl.SampleRate_rateType_hertz - rateType_event = _mscl.SampleRate_rateType_event - rateType_decimation = _mscl.SampleRate_rateType_decimation - - def __init__(self, *args): - _mscl.SampleRate_swiginit(self, _mscl.new_SampleRate(*args)) - - def __str__(self): - return _mscl.SampleRate___str__(self) - - def prettyStr(self): - return _mscl.SampleRate_prettyStr(self) - - def samplePeriod(self): - return _mscl.SampleRate_samplePeriod(self) - - def samplesPerSecond(self): - return _mscl.SampleRate_samplesPerSecond(self) - - def rateType(self): - return _mscl.SampleRate_rateType(self) - - def samples(self): - return _mscl.SampleRate_samples(self) - - def toWirelessSampleRate(self): - return _mscl.SampleRate_toWirelessSampleRate(self) - - def toDecimation(self, sampleRateBase): - return _mscl.SampleRate_toDecimation(self, sampleRateBase) - - @staticmethod - def Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - - @staticmethod - def KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - - @staticmethod - def Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - - @staticmethod - def Event(): - return _mscl.SampleRate_Event() - - @staticmethod - def Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - - @staticmethod - def FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - - @staticmethod - def FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - __swig_destroy__ = _mscl.delete_SampleRate - -# Register SampleRate in _mscl: -_mscl.SampleRate_swigregister(SampleRate) - -def SampleRate_Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - -def SampleRate_KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - -def SampleRate_Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - -def SampleRate_Event(): - return _mscl.SampleRate_Event() - -def SampleRate_Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - -def SampleRate_FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - -def SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - -class Matrix(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Matrix_swiginit(self, _mscl.new_Matrix()) - - def valuesType(self): - return _mscl.Matrix_valuesType(self) - - def rows(self): - return _mscl.Matrix_rows(self) - - def columns(self): - return _mscl.Matrix_columns(self) - - def as_doubleAt(self, row, column): - return _mscl.Matrix_as_doubleAt(self, row, column) - - def as_floatAt(self, row, column): - return _mscl.Matrix_as_floatAt(self, row, column) - - def as_uint16At(self, row, column): - return _mscl.Matrix_as_uint16At(self, row, column) - - def as_uint8At(self, row, column): - return _mscl.Matrix_as_uint8At(self, row, column) - - def __str__(self): - return _mscl.Matrix___str__(self) - __swig_destroy__ = _mscl.delete_Matrix - -# Register Matrix in _mscl: -_mscl.Matrix_swigregister(Matrix) - -class Vector(Matrix): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Vector_swiginit(self, _mscl.new_Vector()) - - def size(self): - return _mscl.Vector_size(self) - - def as_doubleAt(self, index): - return _mscl.Vector_as_doubleAt(self, index) - - def as_floatAt(self, index): - return _mscl.Vector_as_floatAt(self, index) - - def as_uint16At(self, index): - return _mscl.Vector_as_uint16At(self, index) - - def as_uint8At(self, index): - return _mscl.Vector_as_uint8At(self, index) - __swig_destroy__ = _mscl.delete_Vector - -# Register Vector in _mscl: -_mscl.Vector_swigregister(Vector) - -class Bitfield(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Bitfield_swiginit(self, _mscl.new_Bitfield(*args)) - __swig_destroy__ = _mscl.delete_Bitfield - - def value(self, *args): - return _mscl.Bitfield_value(self, *args) - - def get(self, mask, shiftToLsb=True): - return _mscl.Bitfield_get(self, mask, shiftToLsb) - - def set(self, mask, value, shiftRequired=True): - return _mscl.Bitfield_set(self, mask, value, shiftRequired) - - def checkBit(self, bitIndex, indexBase=0): - return _mscl.Bitfield_checkBit(self, bitIndex, indexBase) - - def setBit(self, bitIndex, value, indexBase=0): - return _mscl.Bitfield_setBit(self, bitIndex, value, indexBase) - -# Register Bitfield in _mscl: -_mscl.Bitfield_swigregister(Bitfield) - -class StructuralHealth(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, angle, uptime, damage, processingRate, histogram): - _mscl.StructuralHealth_swiginit(self, _mscl.new_StructuralHealth(angle, uptime, damage, processingRate, histogram)) - - def angle(self): - return _mscl.StructuralHealth_angle(self) - - def uptime(self): - return _mscl.StructuralHealth_uptime(self) - - def damage(self): - return _mscl.StructuralHealth_damage(self) - - def processingRate(self): - return _mscl.StructuralHealth_processingRate(self) - - def histogram(self): - return _mscl.StructuralHealth_histogram(self) - __swig_destroy__ = _mscl.delete_StructuralHealth - -# Register StructuralHealth in _mscl: -_mscl.StructuralHealth_swigregister(StructuralHealth) - -class DataPoint(Value): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - channelPropertyId_angle = _mscl.DataPoint_channelPropertyId_angle - channelPropertyId_derivedFrom = _mscl.DataPoint_channelPropertyId_derivedFrom - channelPropertyId_derivedAlgorithmId = _mscl.DataPoint_channelPropertyId_derivedAlgorithmId - __swig_destroy__ = _mscl.delete_DataPoint - - def channelProperty(self, id): - return _mscl.DataPoint_channelProperty(self, id) - - def as_Vector(self): - return _mscl.DataPoint_as_Vector(self) - - def as_Matrix(self): - return _mscl.DataPoint_as_Matrix(self) - - def as_Timestamp(self): - return _mscl.DataPoint_as_Timestamp(self) - - def as_Bytes(self): - return _mscl.DataPoint_as_Bytes(self) - - def as_StructuralHealth(self): - return _mscl.DataPoint_as_StructuralHealth(self) - - def as_RfSweep(self): - return _mscl.DataPoint_as_RfSweep(self) - - def as_string(self): - return _mscl.DataPoint_as_string(self) - -# Register DataPoint in _mscl: -_mscl.DataPoint_swigregister(DataPoint) - -class ConfigIssue(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONFIG_SAMPLING_MODE = _mscl.ConfigIssue_CONFIG_SAMPLING_MODE - CONFIG_ACTIVE_CHANNELS = _mscl.ConfigIssue_CONFIG_ACTIVE_CHANNELS - CONFIG_SAMPLE_RATE = _mscl.ConfigIssue_CONFIG_SAMPLE_RATE - CONFIG_SWEEPS = _mscl.ConfigIssue_CONFIG_SWEEPS - CONFIG_UNLIMITED_DURATION = _mscl.ConfigIssue_CONFIG_UNLIMITED_DURATION - CONFIG_DATA_FORMAT = _mscl.ConfigIssue_CONFIG_DATA_FORMAT - CONFIG_DATA_COLLECTION_METHOD = _mscl.ConfigIssue_CONFIG_DATA_COLLECTION_METHOD - CONFIG_TIME_BETWEEN_BURSTS = _mscl.ConfigIssue_CONFIG_TIME_BETWEEN_BURSTS - CONFIG_THERMOCOUPLE_TYPE = _mscl.ConfigIssue_CONFIG_THERMOCOUPLE_TYPE - CONFIG_FILTER_SETTLING_TIME = _mscl.ConfigIssue_CONFIG_FILTER_SETTLING_TIME - CONFIG_BUTTON = _mscl.ConfigIssue_CONFIG_BUTTON - CONFIG_ANALOG_PAIR = _mscl.ConfigIssue_CONFIG_ANALOG_PAIR - CONFIG_INPUT_RANGE = _mscl.ConfigIssue_CONFIG_INPUT_RANGE - CONFIG_INACTIVITY_TIMEOUT = _mscl.ConfigIssue_CONFIG_INACTIVITY_TIMEOUT - CONFIG_CHECK_RADIO_INTERVAL = _mscl.ConfigIssue_CONFIG_CHECK_RADIO_INTERVAL - CONFIG_LOST_BEACON_TIMEOUT = _mscl.ConfigIssue_CONFIG_LOST_BEACON_TIMEOUT - CONFIG_DEFAULT_MODE = _mscl.ConfigIssue_CONFIG_DEFAULT_MODE - CONFIG_TRANSMIT_POWER = _mscl.ConfigIssue_CONFIG_TRANSMIT_POWER - CONFIG_LINEAR_EQUATION = _mscl.ConfigIssue_CONFIG_LINEAR_EQUATION - CONFIG_FATIGUE = _mscl.ConfigIssue_CONFIG_FATIGUE - CONFIG_FATIGUE_MODE = _mscl.ConfigIssue_CONFIG_FATIGUE_MODE - CONFIG_FATIGUE_ANGLE_ID = _mscl.ConfigIssue_CONFIG_FATIGUE_ANGLE_ID - CONFIG_FATIGUE_SN_CURVE = _mscl.ConfigIssue_CONFIG_FATIGUE_SN_CURVE - CONFIG_FATIGUE_DIST_NUM_ANGLES = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_NUM_ANGLES - CONFIG_FATIGUE_DIST_ANGLE = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_ANGLE - CONFIG_HISTOGRAM = _mscl.ConfigIssue_CONFIG_HISTOGRAM - CONFIG_HISTOGRAM_TX_RATE = _mscl.ConfigIssue_CONFIG_HISTOGRAM_TX_RATE - CONFIG_HARDWARE_OFFSET = _mscl.ConfigIssue_CONFIG_HARDWARE_OFFSET - CONFIG_ACTIVITY_SENSE = _mscl.ConfigIssue_CONFIG_ACTIVITY_SENSE - CONFIG_GAUGE_FACTOR = _mscl.ConfigIssue_CONFIG_GAUGE_FACTOR - CONFIG_EVENT_TRIGGER = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER - CONFIG_EVENT_TRIGGER_DURATION = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_DURATION - CONFIG_EVENT_TRIGGER_MASK = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_MASK - CONFIG_DIAGNOSTIC_INTERVAL = _mscl.ConfigIssue_CONFIG_DIAGNOSTIC_INTERVAL - CONFIG_ANTI_ALIASING_FILTER = _mscl.ConfigIssue_CONFIG_ANTI_ALIASING_FILTER - CONFIG_STORAGE_LIMIT_MODE = _mscl.ConfigIssue_CONFIG_STORAGE_LIMIT_MODE - CONFIG_SENSOR_DELAY = _mscl.ConfigIssue_CONFIG_SENSOR_DELAY - CONFIG_LOW_PASS_FILTER = _mscl.ConfigIssue_CONFIG_LOW_PASS_FILTER - CONFIG_DATA_MODE = _mscl.ConfigIssue_CONFIG_DATA_MODE - CONFIG_DERIVED_DATA_RATE = _mscl.ConfigIssue_CONFIG_DERIVED_DATA_RATE - CONFIG_DERIVED_MASK_RMS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_RMS - CONFIG_DERIVED_MASK_P2P = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_P2P - CONFIG_DERIVED_MASK_IPS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_IPS - CONFIG_DERIVED_MASK_CREST_FACTOR = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_CREST_FACTOR - CONFIG_HIGH_PASS_FILTER = _mscl.ConfigIssue_CONFIG_HIGH_PASS_FILTER - CONFIG_DERIVED_MASK = _mscl.ConfigIssue_CONFIG_DERIVED_MASK - CONFIG_COMM_PROTOCOL = _mscl.ConfigIssue_CONFIG_COMM_PROTOCOL - CONFIG_DERIVED_MASK_MEAN = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_MEAN - CONFIG_GAUGE_RESISTANCE = _mscl.ConfigIssue_CONFIG_GAUGE_RESISTANCE - CONFIG_NUM_ACTIVE_GAUGES = _mscl.ConfigIssue_CONFIG_NUM_ACTIVE_GAUGES - CONFIG_TEMP_SENSOR_OPTS = _mscl.ConfigIssue_CONFIG_TEMP_SENSOR_OPTS - CONFIG_DEBOUNCE_FILTER = _mscl.ConfigIssue_CONFIG_DEBOUNCE_FILTER - CONFIG_PULLUP_RESISTOR = _mscl.ConfigIssue_CONFIG_PULLUP_RESISTOR - CONFIG_EXCITATION_VOLTAGE = _mscl.ConfigIssue_CONFIG_EXCITATION_VOLTAGE - CONFIG_DERIVED_UNIT = _mscl.ConfigIssue_CONFIG_DERIVED_UNIT - CONFIG_SENSOR_OUTPUT_MODE = _mscl.ConfigIssue_CONFIG_SENSOR_OUTPUT_MODE - CONFIG_LOW_BATTERY_THRESHOLD = _mscl.ConfigIssue_CONFIG_LOW_BATTERY_THRESHOLD - CONFIG_CFC_FILTER = _mscl.ConfigIssue_CONFIG_CFC_FILTER - - def __init__(self, *args): - _mscl.ConfigIssue_swiginit(self, _mscl.new_ConfigIssue(*args)) - - def id(self): - return _mscl.ConfigIssue_id(self) - - def description(self): - return _mscl.ConfigIssue_description(self) - - def isChannelGroupIssue(self): - return _mscl.ConfigIssue_isChannelGroupIssue(self) - - def channelMask(self): - return _mscl.ConfigIssue_channelMask(self) - __swig_destroy__ = _mscl.delete_ConfigIssue - -# Register ConfigIssue in _mscl: -_mscl.ConfigIssue_swigregister(ConfigIssue) - -class ActivitySense(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ActivitySense_swiginit(self, _mscl.new_ActivitySense()) - - def enabled(self, *args): - return _mscl.ActivitySense_enabled(self, *args) - - def activityThreshold(self, *args): - return _mscl.ActivitySense_activityThreshold(self, *args) - - def inactivityThreshold(self, *args): - return _mscl.ActivitySense_inactivityThreshold(self, *args) - - def activityTime(self, *args): - return _mscl.ActivitySense_activityTime(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.ActivitySense_inactivityTimeout(self, *args) - __swig_destroy__ = _mscl.delete_ActivitySense - -# Register ActivitySense in _mscl: -_mscl.ActivitySense_swigregister(ActivitySense) - -class Trigger(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Trigger_swiginit(self, _mscl.new_Trigger(*args)) - - def channelNumber(self, *args): - return _mscl.Trigger_channelNumber(self, *args) - - def triggerType(self, *args): - return _mscl.Trigger_triggerType(self, *args) - - def triggerValue(self, *args): - return _mscl.Trigger_triggerValue(self, *args) - __swig_destroy__ = _mscl.delete_Trigger - -# Register Trigger in _mscl: -_mscl.Trigger_swigregister(Trigger) - -class EventTriggerOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerOptions_swiginit(self, _mscl.new_EventTriggerOptions()) - - def triggerMask(self, *args): - return _mscl.EventTriggerOptions_triggerMask(self, *args) - - def anyTriggersEnabled(self): - return _mscl.EventTriggerOptions_anyTriggersEnabled(self) - - def triggerEnabled(self, triggerIndex): - return _mscl.EventTriggerOptions_triggerEnabled(self, triggerIndex) - - def enableTrigger(self, triggerIndex, enable=True): - return _mscl.EventTriggerOptions_enableTrigger(self, triggerIndex, enable) - - def preDuration(self, *args): - return _mscl.EventTriggerOptions_preDuration(self, *args) - - def postDuration(self, *args): - return _mscl.EventTriggerOptions_postDuration(self, *args) - - def trigger(self, *args): - return _mscl.EventTriggerOptions_trigger(self, *args) - - def triggers(self): - return _mscl.EventTriggerOptions_triggers(self) - __swig_destroy__ = _mscl.delete_EventTriggerOptions - -# Register EventTriggerOptions in _mscl: -_mscl.EventTriggerOptions_swigregister(EventTriggerOptions) - -class SnCurveSegment(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.SnCurveSegment_swiginit(self, _mscl.new_SnCurveSegment(*args)) - - def m(self, *args): - return _mscl.SnCurveSegment_m(self, *args) - - def logA(self, *args): - return _mscl.SnCurveSegment_logA(self, *args) - __swig_destroy__ = _mscl.delete_SnCurveSegment - -# Register SnCurveSegment in _mscl: -_mscl.SnCurveSegment_swigregister(SnCurveSegment) - -class FatigueOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FatigueOptions_swiginit(self, _mscl.new_FatigueOptions()) - - def youngsModulus(self, *args): - return _mscl.FatigueOptions_youngsModulus(self, *args) - - def poissonsRatio(self, *args): - return _mscl.FatigueOptions_poissonsRatio(self, *args) - - def peakValleyThreshold(self, *args): - return _mscl.FatigueOptions_peakValleyThreshold(self, *args) - - def debugMode(self, *args): - return _mscl.FatigueOptions_debugMode(self, *args) - - def damageAngles(self): - return _mscl.FatigueOptions_damageAngles(self) - - def damageAngle(self, *args): - return _mscl.FatigueOptions_damageAngle(self, *args) - - def snCurveSegments(self): - return _mscl.FatigueOptions_snCurveSegments(self) - - def snCurveSegment(self, *args): - return _mscl.FatigueOptions_snCurveSegment(self, *args) - - def fatigueMode(self, *args): - return _mscl.FatigueOptions_fatigueMode(self, *args) - - def distributedAngleMode_numAngles(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_numAngles(self, *args) - - def distributedAngleMode_lowerBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_lowerBound(self, *args) - - def distributedAngleMode_upperBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_upperBound(self, *args) - - def histogramEnable(self, *args): - return _mscl.FatigueOptions_histogramEnable(self, *args) - __swig_destroy__ = _mscl.delete_FatigueOptions - -# Register FatigueOptions in _mscl: -_mscl.FatigueOptions_swigregister(FatigueOptions) - -class HistogramOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HistogramOptions_swiginit(self, _mscl.new_HistogramOptions()) - - def transmitRate(self, *args): - return _mscl.HistogramOptions_transmitRate(self, *args) - - def binsStart(self, *args): - return _mscl.HistogramOptions_binsStart(self, *args) - - def binsSize(self, *args): - return _mscl.HistogramOptions_binsSize(self, *args) - __swig_destroy__ = _mscl.delete_HistogramOptions - -# Register HistogramOptions in _mscl: -_mscl.HistogramOptions_swigregister(HistogramOptions) - -class InputRangeEntry(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - inputRange = property(_mscl.InputRangeEntry_inputRange_get, _mscl.InputRangeEntry_inputRange_set) - hasGain = property(_mscl.InputRangeEntry_hasGain_get, _mscl.InputRangeEntry_hasGain_set) - gain = property(_mscl.InputRangeEntry_gain_get, _mscl.InputRangeEntry_gain_set) - - def __init__(self, *args): - _mscl.InputRangeEntry_swiginit(self, _mscl.new_InputRangeEntry(*args)) - __swig_destroy__ = _mscl.delete_InputRangeEntry - -# Register InputRangeEntry in _mscl: -_mscl.InputRangeEntry_swigregister(InputRangeEntry) - -class TempSensorOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - - @staticmethod - def RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - - @staticmethod - def Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - - def transducerType(self): - return _mscl.TempSensorOptions_transducerType(self) - - def thermocoupleType(self): - return _mscl.TempSensorOptions_thermocoupleType(self) - - def rtdType(self): - return _mscl.TempSensorOptions_rtdType(self) - - def rtdWireType(self): - return _mscl.TempSensorOptions_rtdWireType(self) - - def thermistorType(self): - return _mscl.TempSensorOptions_thermistorType(self) - __swig_destroy__ = _mscl.delete_TempSensorOptions - -# Register TempSensorOptions in _mscl: -_mscl.TempSensorOptions_swigregister(TempSensorOptions) - -def TempSensorOptions_Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - -def TempSensorOptions_RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - -def TempSensorOptions_Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - -class WirelessModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_vLink_legacy = _mscl.WirelessModels_node_vLink_legacy - node_cfBearingTempLink = _mscl.WirelessModels_node_cfBearingTempLink - node_envLink_pro = _mscl.WirelessModels_node_envLink_pro - node_gLink_2g = _mscl.WirelessModels_node_gLink_2g - node_gLink_10g = _mscl.WirelessModels_node_gLink_10g - node_gLinkII_cust_in = _mscl.WirelessModels_node_gLinkII_cust_in - node_gLinkII_2g_in = _mscl.WirelessModels_node_gLinkII_2g_in - node_gLinkII_10g_in = _mscl.WirelessModels_node_gLinkII_10g_in - node_gLinkII_cust_ex = _mscl.WirelessModels_node_gLinkII_cust_ex - node_gLinkII_2g_ex = _mscl.WirelessModels_node_gLinkII_2g_ex - node_gLinkII_10g_ex = _mscl.WirelessModels_node_gLinkII_10g_ex - node_gLink_rgd_10g = _mscl.WirelessModels_node_gLink_rgd_10g - node_gLink_200_8g = _mscl.WirelessModels_node_gLink_200_8g - node_gLink_200_40g = _mscl.WirelessModels_node_gLink_200_40g - node_gLink_200_8g_oem = _mscl.WirelessModels_node_gLink_200_8g_oem - node_gLink_200_40g_oem = _mscl.WirelessModels_node_gLink_200_40g_oem - node_gLink_200_8g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_8g_oem_mmcx - node_gLink_200_40g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_40g_oem_mmcx - node_gLink_200_8g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_8g_oem_u_fl - node_gLink_200_40g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_40g_oem_u_fl - node_gLink_200_r = _mscl.WirelessModels_node_gLink_200_r - node_sgLink_oem_S = _mscl.WirelessModels_node_sgLink_oem_S - node_sgLink = _mscl.WirelessModels_node_sgLink - node_sgLink200 = _mscl.WirelessModels_node_sgLink200 - node_sgLink200_hbridge_1K = _mscl.WirelessModels_node_sgLink200_hbridge_1K - node_sgLink200_hbridge_350 = _mscl.WirelessModels_node_sgLink200_hbridge_350 - node_sgLink200_hbridge_120 = _mscl.WirelessModels_node_sgLink200_hbridge_120 - node_sgLink200_qbridge_1K = _mscl.WirelessModels_node_sgLink200_qbridge_1K - node_sgLink200_qbridge_350 = _mscl.WirelessModels_node_sgLink200_qbridge_350 - node_sgLink200_qbridge_120 = _mscl.WirelessModels_node_sgLink200_qbridge_120 - node_sgLink_oem = _mscl.WirelessModels_node_sgLink_oem - node_sgLink_micro = _mscl.WirelessModels_node_sgLink_micro - node_sgLink200_oem = _mscl.WirelessModels_node_sgLink200_oem - node_sgLink200_oem_ufl = _mscl.WirelessModels_node_sgLink200_oem_ufl - node_sgLink200_oem_hbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K - node_sgLink200_oem_hbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K_ufl - node_sgLink200_oem_hbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120 - node_sgLink200_oem_hbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120_ufl - node_sgLink200_oem_hbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350 - node_sgLink200_oem_hbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350_ufl - node_sgLink200_oem_qbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K - node_sgLink200_oem_qbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K_ufl - node_sgLink200_oem_qbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120 - node_sgLink200_oem_qbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120_ufl - node_sgLink200_oem_qbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350 - node_sgLink200_oem_qbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350_ufl - node_sgLink_rgd = _mscl.WirelessModels_node_sgLink_rgd - node_shmLink = _mscl.WirelessModels_node_shmLink - node_tcLink_1ch = _mscl.WirelessModels_node_tcLink_1ch - node_tcLink_6ch = _mscl.WirelessModels_node_tcLink_6ch - node_tcLink_3ch = _mscl.WirelessModels_node_tcLink_3ch - node_tcLink_6ch_ip67 = _mscl.WirelessModels_node_tcLink_6ch_ip67 - node_tcLink200_oem = _mscl.WirelessModels_node_tcLink200_oem - node_tcLink200_oem_ufl = _mscl.WirelessModels_node_tcLink200_oem_ufl - node_tcLink200 = _mscl.WirelessModels_node_tcLink200 - node_rtdLink200 = _mscl.WirelessModels_node_rtdLink200 - node_tcLink_6ch_ip67_rht = _mscl.WirelessModels_node_tcLink_6ch_ip67_rht - node_vLink = _mscl.WirelessModels_node_vLink - node_vLink200 = _mscl.WirelessModels_node_vLink200 - node_vLink200_qbridge_1K = _mscl.WirelessModels_node_vLink200_qbridge_1K - node_vLink200_qbridge_120 = _mscl.WirelessModels_node_vLink200_qbridge_120 - node_vLink200_qbridge_350 = _mscl.WirelessModels_node_vLink200_qbridge_350 - node_vLink200_hbridge_1K = _mscl.WirelessModels_node_vLink200_hbridge_1K - node_vLink200_hbridge_120 = _mscl.WirelessModels_node_vLink200_hbridge_120 - node_vLink200_hbridge_350 = _mscl.WirelessModels_node_vLink200_hbridge_350 - node_iepeLink = _mscl.WirelessModels_node_iepeLink - node_dvrtLink = _mscl.WirelessModels_node_dvrtLink - node_envLink_mini = _mscl.WirelessModels_node_envLink_mini - node_wattLink = _mscl.WirelessModels_node_wattLink - node_wattLink_3Y208 = _mscl.WirelessModels_node_wattLink_3Y208 - node_wattLink_3D240 = _mscl.WirelessModels_node_wattLink_3D240 - node_wattLink_3Y400 = _mscl.WirelessModels_node_wattLink_3Y400 - node_wattLink_3D400 = _mscl.WirelessModels_node_wattLink_3D400 - node_wattLink_3Y480 = _mscl.WirelessModels_node_wattLink_3Y480 - node_wattLink_3D480 = _mscl.WirelessModels_node_wattLink_3D480 - node_wattLink_3Y600 = _mscl.WirelessModels_node_wattLink_3Y600 - node_ptLink200 = _mscl.WirelessModels_node_ptLink200 - node_rtdLink = _mscl.WirelessModels_node_rtdLink - node_shmLink2_cust1_oldNumber = _mscl.WirelessModels_node_shmLink2_cust1_oldNumber - node_shmLink2_cust1 = _mscl.WirelessModels_node_shmLink2_cust1 - node_shmLink200 = _mscl.WirelessModels_node_shmLink200 - node_shmLink201 = _mscl.WirelessModels_node_shmLink201 - node_shmLink201_qbridge_1K = _mscl.WirelessModels_node_shmLink201_qbridge_1K - node_shmLink201_qbridge_348 = _mscl.WirelessModels_node_shmLink201_qbridge_348 - node_shmLink201_hbridge_1K = _mscl.WirelessModels_node_shmLink201_hbridge_1K - node_shmLink201_hbridge_348 = _mscl.WirelessModels_node_shmLink201_hbridge_348 - node_shmLink201_fullbridge = _mscl.WirelessModels_node_shmLink201_fullbridge - node_shmLink210_fullbridge = _mscl.WirelessModels_node_shmLink210_fullbridge - node_shmLink210_qbridge_3K = _mscl.WirelessModels_node_shmLink210_qbridge_3K - node_torqueLink = _mscl.WirelessModels_node_torqueLink - node_torqueLink200_3ch = _mscl.WirelessModels_node_torqueLink200_3ch - node_torqueLink200 = _mscl.WirelessModels_node_torqueLink200 - node_torqueLink200_3ch_s = _mscl.WirelessModels_node_torqueLink200_3ch_s - node_sgLink_herm = _mscl.WirelessModels_node_sgLink_herm - node_sgLink_herm_2600 = _mscl.WirelessModels_node_sgLink_herm_2600 - node_sgLink_herm_2700 = _mscl.WirelessModels_node_sgLink_herm_2700 - node_sgLink_herm_2800 = _mscl.WirelessModels_node_sgLink_herm_2800 - node_sgLink_herm_2900 = _mscl.WirelessModels_node_sgLink_herm_2900 - node_wirelessImpactSensor = _mscl.WirelessModels_node_wirelessImpactSensor - node_gLink_200_40g_s = _mscl.WirelessModels_node_gLink_200_40g_s - base_wsda_1000 = _mscl.WirelessModels_base_wsda_1000 - base_wsda_1500 = _mscl.WirelessModels_base_wsda_1500 - base_wsda_2000 = _mscl.WirelessModels_base_wsda_2000 - base_wsdaBase_200_legacy = _mscl.WirelessModels_base_wsdaBase_200_legacy - base_wsdaBase_200 = _mscl.WirelessModels_base_wsdaBase_200 - base_wsdaBase_200_extAntenna = _mscl.WirelessModels_base_wsdaBase_200_extAntenna - base_wsdaBase_101_analog = _mscl.WirelessModels_base_wsdaBase_101_analog - base_wsdaBase_102_rs232 = _mscl.WirelessModels_base_wsdaBase_102_rs232 - base_wsdaBase_104_usb = _mscl.WirelessModels_base_wsdaBase_104_usb - base_wsi_104 = _mscl.WirelessModels_base_wsi_104 - base_wsdaBase_mini = _mscl.WirelessModels_base_wsdaBase_mini - - def __init__(self): - _mscl.WirelessModels_swiginit(self, _mscl.new_WirelessModels()) - __swig_destroy__ = _mscl.delete_WirelessModels - -# Register WirelessModels in _mscl: -_mscl.WirelessModels_swigregister(WirelessModels) - -class NodeDiscovery(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def nodeAddress(self): - return _mscl.NodeDiscovery_nodeAddress(self) - - def frequency(self): - return _mscl.NodeDiscovery_frequency(self) - - def panId(self): - return _mscl.NodeDiscovery_panId(self) - - def model(self): - return _mscl.NodeDiscovery_model(self) - - def serialNumber(self): - return _mscl.NodeDiscovery_serialNumber(self) - - def firmwareVersion(self): - return _mscl.NodeDiscovery_firmwareVersion(self) - - def defaultMode(self): - return _mscl.NodeDiscovery_defaultMode(self) - - def builtInTestResult(self): - return _mscl.NodeDiscovery_builtInTestResult(self) - - def communicationProtocol(self): - return _mscl.NodeDiscovery_communicationProtocol(self) - - def asppVersion_lxrs(self): - return _mscl.NodeDiscovery_asppVersion_lxrs(self) - - def asppVersion_lxrsPlus(self): - return _mscl.NodeDiscovery_asppVersion_lxrsPlus(self) - - def baseRssi(self): - return _mscl.NodeDiscovery_baseRssi(self) - - def timestamp(self): - return _mscl.NodeDiscovery_timestamp(self) - - def __init__(self): - _mscl.NodeDiscovery_swiginit(self, _mscl.new_NodeDiscovery()) - __swig_destroy__ = _mscl.delete_NodeDiscovery - -# Register NodeDiscovery in _mscl: -_mscl.NodeDiscovery_swigregister(NodeDiscovery) - -class LinearEquation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LinearEquation_swiginit(self, _mscl.new_LinearEquation(*args)) - - def slope(self, *args): - return _mscl.LinearEquation_slope(self, *args) - - def offset(self, *args): - return _mscl.LinearEquation_offset(self, *args) - __swig_destroy__ = _mscl.delete_LinearEquation - -# Register LinearEquation in _mscl: -_mscl.LinearEquation_swigregister(LinearEquation) - -class CalCoefficients(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CalCoefficients_swiginit(self, _mscl.new_CalCoefficients(*args)) - - def equationType(self): - return _mscl.CalCoefficients_equationType(self) - - def unit(self): - return _mscl.CalCoefficients_unit(self) - - def linearEquation(self): - return _mscl.CalCoefficients_linearEquation(self) - __swig_destroy__ = _mscl.delete_CalCoefficients - -# Register CalCoefficients in _mscl: -_mscl.CalCoefficients_swigregister(CalCoefficients) - -class ChannelGroup(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ChannelGroup_swiginit(self, _mscl.new_ChannelGroup()) - - def channels(self): - return _mscl.ChannelGroup_channels(self) - - def name(self): - return _mscl.ChannelGroup_name(self) - - def eepromLocation(self, setting): - return _mscl.ChannelGroup_eepromLocation(self, setting) - - def settings(self): - return _mscl.ChannelGroup_settings(self) - - def hasSetting(self, setting): - return _mscl.ChannelGroup_hasSetting(self, setting) - - def hasSettingAndChannel(self, setting, channelNumber): - return _mscl.ChannelGroup_hasSettingAndChannel(self, setting, channelNumber) - __swig_destroy__ = _mscl.delete_ChannelGroup - -# Register ChannelGroup in _mscl: -_mscl.ChannelGroup_swigregister(ChannelGroup) - -class WirelessChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - channel_unknown = _mscl.WirelessChannel_channel_unknown - channel_1 = _mscl.WirelessChannel_channel_1 - channel_2 = _mscl.WirelessChannel_channel_2 - channel_3 = _mscl.WirelessChannel_channel_3 - channel_4 = _mscl.WirelessChannel_channel_4 - channel_5 = _mscl.WirelessChannel_channel_5 - channel_6 = _mscl.WirelessChannel_channel_6 - channel_7 = _mscl.WirelessChannel_channel_7 - channel_8 = _mscl.WirelessChannel_channel_8 - channel_9 = _mscl.WirelessChannel_channel_9 - channel_10 = _mscl.WirelessChannel_channel_10 - channel_11 = _mscl.WirelessChannel_channel_11 - channel_12 = _mscl.WirelessChannel_channel_12 - channel_13 = _mscl.WirelessChannel_channel_13 - channel_14 = _mscl.WirelessChannel_channel_14 - channel_15 = _mscl.WirelessChannel_channel_15 - channel_16 = _mscl.WirelessChannel_channel_16 - channel_digital_1 = _mscl.WirelessChannel_channel_digital_1 - channel_digital_2 = _mscl.WirelessChannel_channel_digital_2 - channel_digital_3 = _mscl.WirelessChannel_channel_digital_3 - channel_digital_4 = _mscl.WirelessChannel_channel_digital_4 - channel_digital_5 = _mscl.WirelessChannel_channel_digital_5 - channel_digital_6 = _mscl.WirelessChannel_channel_digital_6 - channel_digital_7 = _mscl.WirelessChannel_channel_digital_7 - channel_digital_8 = _mscl.WirelessChannel_channel_digital_8 - channel_digital_9 = _mscl.WirelessChannel_channel_digital_9 - channel_digital_10 = _mscl.WirelessChannel_channel_digital_10 - channel_digital_11 = _mscl.WirelessChannel_channel_digital_11 - channel_digital_12 = _mscl.WirelessChannel_channel_digital_12 - channel_digital_13 = _mscl.WirelessChannel_channel_digital_13 - channel_digital_14 = _mscl.WirelessChannel_channel_digital_14 - channel_digital_15 = _mscl.WirelessChannel_channel_digital_15 - channel_digital_16 = _mscl.WirelessChannel_channel_digital_16 - channel_structuralHealth = _mscl.WirelessChannel_channel_structuralHealth - channel_hcl_rawBase_mag1_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_x - channel_hcl_rawBase_mag1_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_y - channel_hcl_rawBase_mag1_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_z - channel_hcl_rawBase_mag2_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_x - channel_hcl_rawBase_mag2_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_y - channel_hcl_rawBase_mag2_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_z - channel_hcl_rawBase_mag3_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_x - channel_hcl_rawBase_mag3_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_y - channel_hcl_rawBase_mag3_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_z - channel_hcl_rawBase_mag4_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_x - channel_hcl_rawBase_mag4_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_y - channel_hcl_rawBase_mag4_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_z - channel_hcl_rawBase_mag5_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_x - channel_hcl_rawBase_mag5_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_y - channel_hcl_rawBase_mag5_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_z - channel_hcl_rawBase_mag6_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_x - channel_hcl_rawBase_mag6_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_y - channel_hcl_rawBase_mag6_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_z - channel_hcl_rawBase_mag7_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_x - channel_hcl_rawBase_mag7_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_y - channel_hcl_rawBase_mag7_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_z - channel_hcl_rawBase_mag8_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_x - channel_hcl_rawBase_mag8_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_y - channel_hcl_rawBase_mag8_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_z - channel_hcl_rawBase_gyro_x = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_x - channel_hcl_rawBase_gyro_y = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_y - channel_hcl_rawBase_gyro_z = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_z - channel_error_code = _mscl.WirelessChannel_channel_error_code - channel_hcl_rawStrain_BL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL30 - channel_hcl_rawStrain_BL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL120 - channel_hcl_rawStrain_A60 = _mscl.WirelessChannel_channel_hcl_rawStrain_A60 - channel_hcl_rawStrain_A150 = _mscl.WirelessChannel_channel_hcl_rawStrain_A150 - channel_hcl_rawStrain_AL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL30 - channel_hcl_rawStrain_AL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL120 - channel_hcl_rawStrain_BR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR60 - channel_hcl_rawStrain_BR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR150 - channel_hcl_rawStrain_B30 = _mscl.WirelessChannel_channel_hcl_rawStrain_B30 - channel_hcl_rawStrain_T120 = _mscl.WirelessChannel_channel_hcl_rawStrain_T120 - channel_hcl_rawStrain_AR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR60 - channel_hcl_rawStrain_AR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR150 - channel_hcl_rawStrain_A30 = _mscl.WirelessChannel_channel_hcl_rawStrain_A30 - channel_hcl_rawStrain_A120 = _mscl.WirelessChannel_channel_hcl_rawStrain_A120 - channel_hcl_rawStrain_BL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL90 - channel_hcl_rawStrain_BL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL180 - channel_hcl_rawStrain_BR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR30 - channel_hcl_rawStrain_BR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR120 - channel_hcl_rawStrain_AL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL90 - channel_hcl_rawStrain_AL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL180 - channel_hcl_rawStrain_AR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR30 - channel_hcl_rawStrain_AR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR120 - channel_hcl_rawStrain_B90 = _mscl.WirelessChannel_channel_hcl_rawStrain_B90 - channel_hcl_rawStrain_T0 = _mscl.WirelessChannel_channel_hcl_rawStrain_T0 - channel_hcl_rawStrain_BL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL60 - channel_hcl_rawStrain_BL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL150 - channel_hcl_rawStrain_A90 = _mscl.WirelessChannel_channel_hcl_rawStrain_A90 - channel_hcl_rawStrain_A0 = _mscl.WirelessChannel_channel_hcl_rawStrain_A0 - channel_hcl_rawStrain_AL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL60 - channel_hcl_rawStrain_AL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL150 - channel_hcl_rawStrain_BR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR90 - channel_hcl_rawStrain_BR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR0 - channel_hcl_rawStrain_T60 = _mscl.WirelessChannel_channel_hcl_rawStrain_T60 - channel_hcl_rawStrain_B150 = _mscl.WirelessChannel_channel_hcl_rawStrain_B150 - channel_hcl_rawStrain_AR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR90 - channel_hcl_rawStrain_AR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR0 - channel_hcl_rawInertial_accel1 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel1 - channel_hcl_rawInertial_accel2 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel2 - channel_hcl_rawInertial_accel3 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel3 - channel_hcl_rawInertial_accel4 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel4 - channel_hcl_rawInertial_accel5 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel5 - channel_hcl_rawInertial_accel6 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel6 - channel_hcl_rawInertial_accel7 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel7 - channel_hcl_rawInertial_accel8 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel8 - channel_hcl_rawInertial_gyroX = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroX - channel_hcl_rawInertial_gyroY = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroY - channel_hcl_rawInertial_gyroZ = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroZ - channel_rawAngleStrain = _mscl.WirelessChannel_channel_rawAngleStrain - channel_beaconEcho = _mscl.WirelessChannel_channel_beaconEcho - channel_rfSweep = _mscl.WirelessChannel_channel_rfSweep - channel_diag_state = _mscl.WirelessChannel_channel_diag_state - channel_diag_runtime_idle = _mscl.WirelessChannel_channel_diag_runtime_idle - channel_diag_runtime_sleep = _mscl.WirelessChannel_channel_diag_runtime_sleep - channel_diag_runtime_activeRun = _mscl.WirelessChannel_channel_diag_runtime_activeRun - channel_diag_runtime_inactiveRun = _mscl.WirelessChannel_channel_diag_runtime_inactiveRun - channel_diag_resetCounter = _mscl.WirelessChannel_channel_diag_resetCounter - channel_diag_lowBatteryFlag = _mscl.WirelessChannel_channel_diag_lowBatteryFlag - channel_diag_sweepIndex = _mscl.WirelessChannel_channel_diag_sweepIndex - channel_diag_badSweepCount = _mscl.WirelessChannel_channel_diag_badSweepCount - channel_diag_totalTx = _mscl.WirelessChannel_channel_diag_totalTx - channel_diag_totalReTx = _mscl.WirelessChannel_channel_diag_totalReTx - channel_diag_totalDroppedPackets = _mscl.WirelessChannel_channel_diag_totalDroppedPackets - channel_diag_builtInTestResult = _mscl.WirelessChannel_channel_diag_builtInTestResult - channel_diag_eventIndex = _mscl.WirelessChannel_channel_diag_eventIndex - channel_hcl_axialLoadX = _mscl.WirelessChannel_channel_hcl_axialLoadX - channel_hcl_axialLoadY = _mscl.WirelessChannel_channel_hcl_axialLoadY - channel_hcl_axialLoadZ = _mscl.WirelessChannel_channel_hcl_axialLoadZ - channel_hcl_bendingMomentFlap = _mscl.WirelessChannel_channel_hcl_bendingMomentFlap - channel_hcl_bendingMomentLag = _mscl.WirelessChannel_channel_hcl_bendingMomentLag - channel_hcl_bendingMomentPitch = _mscl.WirelessChannel_channel_hcl_bendingMomentPitch - channel_hcl_motionFlap_mag = _mscl.WirelessChannel_channel_hcl_motionFlap_mag - channel_hcl_motionLag_mag = _mscl.WirelessChannel_channel_hcl_motionLag_mag - channel_hcl_motionPitch_mag = _mscl.WirelessChannel_channel_hcl_motionPitch_mag - channel_hcl_motionFlap_inertial = _mscl.WirelessChannel_channel_hcl_motionFlap_inertial - channel_hcl_motionLag_inertial = _mscl.WirelessChannel_channel_hcl_motionLag_inertial - channel_hcl_motionPitch_inertial = _mscl.WirelessChannel_channel_hcl_motionPitch_inertial - channel_hcl_cockingStiffness_mag = _mscl.WirelessChannel_channel_hcl_cockingStiffness_mag - channel_hcl_cockingStiffness_inertial = _mscl.WirelessChannel_channel_hcl_cockingStiffness_inertial - channel_hcl_temperature = _mscl.WirelessChannel_channel_hcl_temperature - channel_diag_externalPower = _mscl.WirelessChannel_channel_diag_externalPower - channel_diag_internalTemp = _mscl.WirelessChannel_channel_diag_internalTemp - channel_1_rms = _mscl.WirelessChannel_channel_1_rms - channel_2_rms = _mscl.WirelessChannel_channel_2_rms - channel_3_rms = _mscl.WirelessChannel_channel_3_rms - channel_4_rms = _mscl.WirelessChannel_channel_4_rms - channel_5_rms = _mscl.WirelessChannel_channel_5_rms - channel_6_rms = _mscl.WirelessChannel_channel_6_rms - channel_7_rms = _mscl.WirelessChannel_channel_7_rms - channel_8_rms = _mscl.WirelessChannel_channel_8_rms - channel_9_rms = _mscl.WirelessChannel_channel_9_rms - channel_10_rms = _mscl.WirelessChannel_channel_10_rms - channel_11_rms = _mscl.WirelessChannel_channel_11_rms - channel_12_rms = _mscl.WirelessChannel_channel_12_rms - channel_13_rms = _mscl.WirelessChannel_channel_13_rms - channel_14_rms = _mscl.WirelessChannel_channel_14_rms - channel_15_rms = _mscl.WirelessChannel_channel_15_rms - channel_16_rms = _mscl.WirelessChannel_channel_16_rms - channel_1_peakToPeak = _mscl.WirelessChannel_channel_1_peakToPeak - channel_2_peakToPeak = _mscl.WirelessChannel_channel_2_peakToPeak - channel_3_peakToPeak = _mscl.WirelessChannel_channel_3_peakToPeak - channel_4_peakToPeak = _mscl.WirelessChannel_channel_4_peakToPeak - channel_5_peakToPeak = _mscl.WirelessChannel_channel_5_peakToPeak - channel_6_peakToPeak = _mscl.WirelessChannel_channel_6_peakToPeak - channel_7_peakToPeak = _mscl.WirelessChannel_channel_7_peakToPeak - channel_8_peakToPeak = _mscl.WirelessChannel_channel_8_peakToPeak - channel_9_peakToPeak = _mscl.WirelessChannel_channel_9_peakToPeak - channel_10_peakToPeak = _mscl.WirelessChannel_channel_10_peakToPeak - channel_11_peakToPeak = _mscl.WirelessChannel_channel_11_peakToPeak - channel_12_peakToPeak = _mscl.WirelessChannel_channel_12_peakToPeak - channel_13_peakToPeak = _mscl.WirelessChannel_channel_13_peakToPeak - channel_14_peakToPeak = _mscl.WirelessChannel_channel_14_peakToPeak - channel_15_peakToPeak = _mscl.WirelessChannel_channel_15_peakToPeak - channel_16_peakToPeak = _mscl.WirelessChannel_channel_16_peakToPeak - channel_1_ips = _mscl.WirelessChannel_channel_1_ips - channel_2_ips = _mscl.WirelessChannel_channel_2_ips - channel_3_ips = _mscl.WirelessChannel_channel_3_ips - channel_4_ips = _mscl.WirelessChannel_channel_4_ips - channel_5_ips = _mscl.WirelessChannel_channel_5_ips - channel_6_ips = _mscl.WirelessChannel_channel_6_ips - channel_7_ips = _mscl.WirelessChannel_channel_7_ips - channel_8_ips = _mscl.WirelessChannel_channel_8_ips - channel_9_ips = _mscl.WirelessChannel_channel_9_ips - channel_10_ips = _mscl.WirelessChannel_channel_10_ips - channel_11_ips = _mscl.WirelessChannel_channel_11_ips - channel_12_ips = _mscl.WirelessChannel_channel_12_ips - channel_13_ips = _mscl.WirelessChannel_channel_13_ips - channel_14_ips = _mscl.WirelessChannel_channel_14_ips - channel_15_ips = _mscl.WirelessChannel_channel_15_ips - channel_16_ips = _mscl.WirelessChannel_channel_16_ips - channel_1_crestFactor = _mscl.WirelessChannel_channel_1_crestFactor - channel_2_crestFactor = _mscl.WirelessChannel_channel_2_crestFactor - channel_3_crestFactor = _mscl.WirelessChannel_channel_3_crestFactor - channel_4_crestFactor = _mscl.WirelessChannel_channel_4_crestFactor - channel_5_crestFactor = _mscl.WirelessChannel_channel_5_crestFactor - channel_6_crestFactor = _mscl.WirelessChannel_channel_6_crestFactor - channel_7_crestFactor = _mscl.WirelessChannel_channel_7_crestFactor - channel_8_crestFactor = _mscl.WirelessChannel_channel_8_crestFactor - channel_9_crestFactor = _mscl.WirelessChannel_channel_9_crestFactor - channel_10_crestFactor = _mscl.WirelessChannel_channel_10_crestFactor - channel_11_crestFactor = _mscl.WirelessChannel_channel_11_crestFactor - channel_12_crestFactor = _mscl.WirelessChannel_channel_12_crestFactor - channel_13_crestFactor = _mscl.WirelessChannel_channel_13_crestFactor - channel_14_crestFactor = _mscl.WirelessChannel_channel_14_crestFactor - channel_15_crestFactor = _mscl.WirelessChannel_channel_15_crestFactor - channel_16_crestFactor = _mscl.WirelessChannel_channel_16_crestFactor - channel_diag_syncAttempts = _mscl.WirelessChannel_channel_diag_syncAttempts - channel_diag_syncFailures = _mscl.WirelessChannel_channel_diag_syncFailures - channel_diag_secsSinceLastSync = _mscl.WirelessChannel_channel_diag_secsSinceLastSync - channel_beaconConflict = _mscl.WirelessChannel_channel_beaconConflict - channel_1_mean = _mscl.WirelessChannel_channel_1_mean - channel_2_mean = _mscl.WirelessChannel_channel_2_mean - channel_3_mean = _mscl.WirelessChannel_channel_3_mean - channel_4_mean = _mscl.WirelessChannel_channel_4_mean - channel_5_mean = _mscl.WirelessChannel_channel_5_mean - channel_6_mean = _mscl.WirelessChannel_channel_6_mean - channel_7_mean = _mscl.WirelessChannel_channel_7_mean - channel_8_mean = _mscl.WirelessChannel_channel_8_mean - channel_9_mean = _mscl.WirelessChannel_channel_9_mean - channel_10_mean = _mscl.WirelessChannel_channel_10_mean - channel_11_mean = _mscl.WirelessChannel_channel_11_mean - channel_12_mean = _mscl.WirelessChannel_channel_12_mean - channel_13_mean = _mscl.WirelessChannel_channel_13_mean - channel_14_mean = _mscl.WirelessChannel_channel_14_mean - channel_15_mean = _mscl.WirelessChannel_channel_15_mean - channel_16_mean = _mscl.WirelessChannel_channel_16_mean - channel_1_mmps = _mscl.WirelessChannel_channel_1_mmps - channel_2_mmps = _mscl.WirelessChannel_channel_2_mmps - channel_3_mmps = _mscl.WirelessChannel_channel_3_mmps - channel_4_mmps = _mscl.WirelessChannel_channel_4_mmps - channel_5_mmps = _mscl.WirelessChannel_channel_5_mmps - channel_6_mmps = _mscl.WirelessChannel_channel_6_mmps - channel_7_mmps = _mscl.WirelessChannel_channel_7_mmps - channel_8_mmps = _mscl.WirelessChannel_channel_8_mmps - channel_9_mmps = _mscl.WirelessChannel_channel_9_mmps - channel_10_mmps = _mscl.WirelessChannel_channel_10_mmps - channel_11_mmps = _mscl.WirelessChannel_channel_11_mmps - channel_12_mmps = _mscl.WirelessChannel_channel_12_mmps - channel_13_mmps = _mscl.WirelessChannel_channel_13_mmps - channel_14_mmps = _mscl.WirelessChannel_channel_14_mmps - channel_15_mmps = _mscl.WirelessChannel_channel_15_mmps - channel_16_mmps = _mscl.WirelessChannel_channel_16_mmps - channel_diag_memoryFull = _mscl.WirelessChannel_channel_diag_memoryFull - - def __init__(self, *args): - _mscl.WirelessChannel_swiginit(self, _mscl.new_WirelessChannel(*args)) - - def channelNumber(self): - return _mscl.WirelessChannel_channelNumber(self) - - def id(self): - return _mscl.WirelessChannel_id(self) - - def type(self): - return _mscl.WirelessChannel_type(self) - - def description(self): - return _mscl.WirelessChannel_description(self) - - def adcResolution(self): - return _mscl.WirelessChannel_adcResolution(self) - - def adcMaxValue(self): - return _mscl.WirelessChannel_adcMaxValue(self) - - def name(self): - return _mscl.WirelessChannel_name(self) - __swig_destroy__ = _mscl.delete_WirelessChannel - -# Register WirelessChannel in _mscl: -_mscl.WirelessChannel_swigregister(WirelessChannel) - -class WirelessDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessDataPoint_swiginit(self, _mscl.new_WirelessDataPoint()) - - def channelId(self): - return _mscl.WirelessDataPoint_channelId(self) - - def channelNumber(self): - return _mscl.WirelessDataPoint_channelNumber(self) - - def channelName(self): - return _mscl.WirelessDataPoint_channelName(self) - __swig_destroy__ = _mscl.delete_WirelessDataPoint - -# Register WirelessDataPoint in _mscl: -_mscl.WirelessDataPoint_swigregister(WirelessDataPoint) - -class DataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - samplingType_NonSync = _mscl.DataSweep_samplingType_NonSync - samplingType_NonSync_Buffered = _mscl.DataSweep_samplingType_NonSync_Buffered - samplingType_SyncSampling = _mscl.DataSweep_samplingType_SyncSampling - samplingType_SyncSampling_Burst = _mscl.DataSweep_samplingType_SyncSampling_Burst - samplingType_AsyncDigital = _mscl.DataSweep_samplingType_AsyncDigital - samplingType_AsyncDigitalAnalog = _mscl.DataSweep_samplingType_AsyncDigitalAnalog - samplingType_SHM = _mscl.DataSweep_samplingType_SHM - samplingType_BeaconEcho = _mscl.DataSweep_samplingType_BeaconEcho - samplingType_RfSweep = _mscl.DataSweep_samplingType_RfSweep - samplingType_Diagnostic = _mscl.DataSweep_samplingType_Diagnostic - - def __init__(self): - _mscl.DataSweep_swiginit(self, _mscl.new_DataSweep()) - - def timestamp(self): - return _mscl.DataSweep_timestamp(self) - - def tick(self): - return _mscl.DataSweep_tick(self) - - def sampleRate(self): - return _mscl.DataSweep_sampleRate(self) - - def nodeAddress(self): - return _mscl.DataSweep_nodeAddress(self) - - def data(self): - return _mscl.DataSweep_data(self) - - def samplingType(self): - return _mscl.DataSweep_samplingType(self) - - def nodeRssi(self): - return _mscl.DataSweep_nodeRssi(self) - - def baseRssi(self): - return _mscl.DataSweep_baseRssi(self) - - def frequency(self): - return _mscl.DataSweep_frequency(self) - - def calApplied(self): - return _mscl.DataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_DataSweep - -# Register DataSweep in _mscl: -_mscl.DataSweep_swigregister(DataSweep) - -class BaseStationAnalogPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationAnalogPair_swiginit(self, _mscl.new_BaseStationAnalogPair()) - - @staticmethod - def Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - - @staticmethod - def NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - - def nodeAddress(self, *args): - return _mscl.BaseStationAnalogPair_nodeAddress(self, *args) - - def nodeChannel(self, *args): - return _mscl.BaseStationAnalogPair_nodeChannel(self, *args) - - def expectFloatData(self, *args): - return _mscl.BaseStationAnalogPair_expectFloatData(self, *args) - - def outputVal_0V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_0V(self, *args) - - def outputVal_3V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_3V(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationAnalogPair - -# Register BaseStationAnalogPair in _mscl: -_mscl.BaseStationAnalogPair_swigregister(BaseStationAnalogPair) -BaseStationAnalogPair.CHANNEL_NOT_FLOAT = _mscl.cvar.BaseStationAnalogPair_CHANNEL_NOT_FLOAT - -def BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - -def BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - -class BaseStationButton(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - btn_nodeSleep = _mscl.BaseStationButton_btn_nodeSleep - btn_nodeStop = _mscl.BaseStationButton_btn_nodeStop - btn_enableBeacon = _mscl.BaseStationButton_btn_enableBeacon - btn_disableBeacon = _mscl.BaseStationButton_btn_disableBeacon - btn_nodeNonSyncSampling = _mscl.BaseStationButton_btn_nodeNonSyncSampling - btn_nodeSyncSampling = _mscl.BaseStationButton_btn_nodeSyncSampling - btn_nodeArmedDatalogging = _mscl.BaseStationButton_btn_nodeArmedDatalogging - btn_cyclePower = _mscl.BaseStationButton_btn_cyclePower - btn_disabled = _mscl.BaseStationButton_btn_disabled - - def __init__(self, *args): - _mscl.BaseStationButton_swiginit(self, _mscl.new_BaseStationButton(*args)) - - def command(self, *args): - return _mscl.BaseStationButton_command(self, *args) - - def nodeAddress(self, *args): - return _mscl.BaseStationButton_nodeAddress(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationButton - -# Register BaseStationButton in _mscl: -_mscl.BaseStationButton_swigregister(BaseStationButton) - -class BaseStationConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationConfig_swiginit(self, _mscl.new_BaseStationConfig()) - - def transmitPower(self, *args): - return _mscl.BaseStationConfig_transmitPower(self, *args) - - def communicationProtocol(self, *args): - return _mscl.BaseStationConfig_communicationProtocol(self, *args) - - def buttonLongPress(self, *args): - return _mscl.BaseStationConfig_buttonLongPress(self, *args) - - def buttonShortPress(self, *args): - return _mscl.BaseStationConfig_buttonShortPress(self, *args) - - def analogPairingEnable(self, *args): - return _mscl.BaseStationConfig_analogPairingEnable(self, *args) - - def analogTimeoutTime(self, *args): - return _mscl.BaseStationConfig_analogTimeoutTime(self, *args) - - def analogTimeoutVoltage(self, *args): - return _mscl.BaseStationConfig_analogTimeoutVoltage(self, *args) - - def analogExceedanceEnable(self, *args): - return _mscl.BaseStationConfig_analogExceedanceEnable(self, *args) - - def analogPairing(self, *args): - return _mscl.BaseStationConfig_analogPairing(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationConfig - -# Register BaseStationConfig in _mscl: -_mscl.BaseStationConfig_swigregister(BaseStationConfig) - -class BeaconStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BeaconStatus_swiginit(self, _mscl.new_BeaconStatus(*args)) - - def enabled(self): - return _mscl.BeaconStatus_enabled(self) - - def timestamp(self): - return _mscl.BeaconStatus_timestamp(self) - __swig_destroy__ = _mscl.delete_BeaconStatus - -# Register BeaconStatus in _mscl: -_mscl.BeaconStatus_swigregister(BeaconStatus) - -class BaseStationInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region, asppVer_lxrs, asppVer_lxrsPlus): - _mscl.BaseStationInfo_swiginit(self, _mscl.new_BaseStationInfo(fw, model, region, asppVer_lxrs, asppVer_lxrsPlus)) - __swig_destroy__ = _mscl.delete_BaseStationInfo - -# Register BaseStationInfo in _mscl: -_mscl.BaseStationInfo_swigregister(BaseStationInfo) - -class BaseStation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_BASE_COMMANDS_DEFAULT_TIMEOUT - ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT - BROADCAST_NODE_ADDRESS = _mscl.BaseStation_BROADCAST_NODE_ADDRESS - BROADCAST_NODE_ADDRESS_ASPP3 = _mscl.BaseStation_BROADCAST_NODE_ADDRESS_ASPP3 - - def __init__(self, *args): - _mscl.BaseStation_swiginit(self, _mscl.new_BaseStation(*args)) - __swig_destroy__ = _mscl.delete_BaseStation - - @staticmethod - def Mock(*args): - return _mscl.BaseStation_Mock(*args) - - @staticmethod - def deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - - def connection(self): - return _mscl.BaseStation_connection(self) - - def features(self): - return _mscl.BaseStation_features(self) - - def lastCommunicationTime(self): - return _mscl.BaseStation_lastCommunicationTime(self) - - def readWriteRetries(self, *args): - return _mscl.BaseStation_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.BaseStation_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.BaseStation_clearEepromCache(self) - - def frequency(self): - return _mscl.BaseStation_frequency(self) - - def communicationProtocol(self): - return _mscl.BaseStation_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.BaseStation_firmwareVersion(self) - - def model(self): - return _mscl.BaseStation_model(self) - - def serial(self): - return _mscl.BaseStation_serial(self) - - def name(self): - return _mscl.BaseStation_name(self) - - def microcontroller(self): - return _mscl.BaseStation_microcontroller(self) - - def regionCode(self): - return _mscl.BaseStation_regionCode(self) - - def getData(self, timeout=0, maxSweeps=0): - return _mscl.BaseStation_getData(self, timeout, maxSweeps) - - def totalData(self): - return _mscl.BaseStation_totalData(self) - - def getNodeDiscoveries(self): - return _mscl.BaseStation_getNodeDiscoveries(self) - - def timeout(self, *args): - return _mscl.BaseStation_timeout(self, *args) - - def ping(self): - return _mscl.BaseStation_ping(self) - - def readEeprom(self, eepromAddress): - return _mscl.BaseStation_readEeprom(self, eepromAddress) - - def writeEeprom(self, eepromAddress, value): - return _mscl.BaseStation_writeEeprom(self, eepromAddress, value) - - def enableBeacon(self, *args): - return _mscl.BaseStation_enableBeacon(self, *args) - - def disableBeacon(self): - return _mscl.BaseStation_disableBeacon(self) - - def beaconStatus(self): - return _mscl.BaseStation_beaconStatus(self) - - def startRfSweepMode(self, *args): - return _mscl.BaseStation_startRfSweepMode(self, *args) - - def cyclePower(self, checkComm=True): - return _mscl.BaseStation_cyclePower(self, checkComm) - - def resetRadio(self): - return _mscl.BaseStation_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.BaseStation_changeFrequency(self, frequency) - - def broadcastSetToIdle(self): - return _mscl.BaseStation_broadcastSetToIdle(self) - - def verifyConfig(self, config, outIssues): - return _mscl.BaseStation_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.BaseStation_applyConfig(self, config) - - def getTransmitPower(self): - return _mscl.BaseStation_getTransmitPower(self) - - def getButtonLongPress(self, buttonNumber): - return _mscl.BaseStation_getButtonLongPress(self, buttonNumber) - - def getButtonShortPress(self, buttonNumber): - return _mscl.BaseStation_getButtonShortPress(self, buttonNumber) - - def getAnalogPairingEnabled(self): - return _mscl.BaseStation_getAnalogPairingEnabled(self) - - def getAnalogTimeoutTime(self): - return _mscl.BaseStation_getAnalogTimeoutTime(self) - - def getAnalogTimeoutVoltage(self): - return _mscl.BaseStation_getAnalogTimeoutVoltage(self) - - def getAnalogExceedanceEnabled(self): - return _mscl.BaseStation_getAnalogExceedanceEnabled(self) - - def getAnalogPair(self, portNumber): - return _mscl.BaseStation_getAnalogPair(self, portNumber) - -# Register BaseStation in _mscl: -_mscl.BaseStation_swigregister(BaseStation) - -def BaseStation_Mock(*args): - return _mscl.BaseStation_Mock(*args) - -def BaseStation_deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - -class LoggedDataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LoggedDataSweep_swiginit(self, _mscl.new_LoggedDataSweep(*args)) - - def timestamp(self): - return _mscl.LoggedDataSweep_timestamp(self) - - def tick(self): - return _mscl.LoggedDataSweep_tick(self) - - def data(self): - return _mscl.LoggedDataSweep_data(self) - - def calApplied(self): - return _mscl.LoggedDataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweep - -# Register LoggedDataSweep in _mscl: -_mscl.LoggedDataSweep_swigregister(LoggedDataSweep) - -class RadioFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.RadioFeatures_swiginit(self, _mscl.new_RadioFeatures(*args)) - - def extendedRange(self): - return _mscl.RadioFeatures_extendedRange(self) - __swig_destroy__ = _mscl.delete_RadioFeatures - -# Register RadioFeatures in _mscl: -_mscl.RadioFeatures_swigregister(RadioFeatures) - -class WirelessNodeConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessNodeConfig_swiginit(self, _mscl.new_WirelessNodeConfig()) - SENSOR_DELAY_ALWAYS_ON = _mscl.WirelessNodeConfig_SENSOR_DELAY_ALWAYS_ON - - def defaultMode(self, *args): - return _mscl.WirelessNodeConfig_defaultMode(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.WirelessNodeConfig_inactivityTimeout(self, *args) - - def checkRadioInterval(self, *args): - return _mscl.WirelessNodeConfig_checkRadioInterval(self, *args) - - def transmitPower(self, *args): - return _mscl.WirelessNodeConfig_transmitPower(self, *args) - - def samplingMode(self, *args): - return _mscl.WirelessNodeConfig_samplingMode(self, *args) - - def sampleRate(self, *args): - return _mscl.WirelessNodeConfig_sampleRate(self, *args) - - def activeChannels(self, *args): - return _mscl.WirelessNodeConfig_activeChannels(self, *args) - - def numSweeps(self, *args): - return _mscl.WirelessNodeConfig_numSweeps(self, *args) - - def unlimitedDuration(self, *args): - return _mscl.WirelessNodeConfig_unlimitedDuration(self, *args) - - def dataFormat(self, *args): - return _mscl.WirelessNodeConfig_dataFormat(self, *args) - - def dataCollectionMethod(self, *args): - return _mscl.WirelessNodeConfig_dataCollectionMethod(self, *args) - - def timeBetweenBursts(self, *args): - return _mscl.WirelessNodeConfig_timeBetweenBursts(self, *args) - - def lostBeaconTimeout(self, *args): - return _mscl.WirelessNodeConfig_lostBeaconTimeout(self, *args) - - def pullUpResistor(self, *args): - return _mscl.WirelessNodeConfig_pullUpResistor(self, *args) - - def inputRange(self, *args): - return _mscl.WirelessNodeConfig_inputRange(self, *args) - - def hardwareOffset(self, *args): - return _mscl.WirelessNodeConfig_hardwareOffset(self, *args) - - def antiAliasingFilter(self, *args): - return _mscl.WirelessNodeConfig_antiAliasingFilter(self, *args) - - def cfcFilterConfig(self, *args): - return _mscl.WirelessNodeConfig_cfcFilterConfig(self, *args) - - def lowPassFilter(self, *args): - return _mscl.WirelessNodeConfig_lowPassFilter(self, *args) - - def highPassFilter(self, *args): - return _mscl.WirelessNodeConfig_highPassFilter(self, *args) - - def gaugeFactor(self, *args): - return _mscl.WirelessNodeConfig_gaugeFactor(self, *args) - - def gaugeResistance(self, *args): - return _mscl.WirelessNodeConfig_gaugeResistance(self, *args) - - def excitationVoltage(self, *args): - return _mscl.WirelessNodeConfig_excitationVoltage(self, *args) - - def numActiveGauges(self, *args): - return _mscl.WirelessNodeConfig_numActiveGauges(self, *args) - - def lowBatteryThreshold(self, *args): - return _mscl.WirelessNodeConfig_lowBatteryThreshold(self, *args) - - def linearEquation(self, *args): - return _mscl.WirelessNodeConfig_linearEquation(self, *args) - - def unit(self, *args): - return _mscl.WirelessNodeConfig_unit(self, *args) - - def equationType(self, *args): - return _mscl.WirelessNodeConfig_equationType(self, *args) - - def filterSettlingTime(self, *args): - return _mscl.WirelessNodeConfig_filterSettlingTime(self, *args) - - def thermocoupleType(self, *args): - return _mscl.WirelessNodeConfig_thermocoupleType(self, *args) - - def tempSensorOptions(self, *args): - return _mscl.WirelessNodeConfig_tempSensorOptions(self, *args) - - def debounceFilter(self, *args): - return _mscl.WirelessNodeConfig_debounceFilter(self, *args) - - def fatigueOptions(self, *args): - return _mscl.WirelessNodeConfig_fatigueOptions(self, *args) - - def histogramOptions(self, *args): - return _mscl.WirelessNodeConfig_histogramOptions(self, *args) - - def activitySense(self, *args): - return _mscl.WirelessNodeConfig_activitySense(self, *args) - - def eventTriggerOptions(self, *args): - return _mscl.WirelessNodeConfig_eventTriggerOptions(self, *args) - - def diagnosticInterval(self, *args): - return _mscl.WirelessNodeConfig_diagnosticInterval(self, *args) - - def storageLimitMode(self, *args): - return _mscl.WirelessNodeConfig_storageLimitMode(self, *args) - - def sensorDelay(self, *args): - return _mscl.WirelessNodeConfig_sensorDelay(self, *args) - - def dataMode(self, *args): - return _mscl.WirelessNodeConfig_dataMode(self, *args) - - def derivedDataRate(self, *args): - return _mscl.WirelessNodeConfig_derivedDataRate(self, *args) - - def derivedChannelMask(self, *args): - return _mscl.WirelessNodeConfig_derivedChannelMask(self, *args) - - def derivedVelocityUnit(self, *args): - return _mscl.WirelessNodeConfig_derivedVelocityUnit(self, *args) - - def communicationProtocol(self, *args): - return _mscl.WirelessNodeConfig_communicationProtocol(self, *args) - - def sensorOutputMode(self, *args): - return _mscl.WirelessNodeConfig_sensorOutputMode(self, *args) - - @staticmethod - def flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - - @staticmethod - def flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - __swig_destroy__ = _mscl.delete_WirelessNodeConfig - -# Register WirelessNodeConfig in _mscl: -_mscl.WirelessNodeConfig_swigregister(WirelessNodeConfig) - -def WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - -def WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - -class AutoBalanceResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoBalanceResult_swiginit(self, _mscl.new_AutoBalanceResult()) - - def errorCode(self): - return _mscl.AutoBalanceResult_errorCode(self) - - def percentAchieved(self): - return _mscl.AutoBalanceResult_percentAchieved(self) - - def hardwareOffset(self): - return _mscl.AutoBalanceResult_hardwareOffset(self) - __swig_destroy__ = _mscl.delete_AutoBalanceResult - -# Register AutoBalanceResult in _mscl: -_mscl.AutoBalanceResult_swigregister(AutoBalanceResult) - -class ShuntCalCmdInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - useInternalShunt = property(_mscl.ShuntCalCmdInfo_useInternalShunt_get, _mscl.ShuntCalCmdInfo_useInternalShunt_set) - numActiveGauges = property(_mscl.ShuntCalCmdInfo_numActiveGauges_get, _mscl.ShuntCalCmdInfo_numActiveGauges_set) - gaugeResistance = property(_mscl.ShuntCalCmdInfo_gaugeResistance_get, _mscl.ShuntCalCmdInfo_gaugeResistance_set) - shuntResistance = property(_mscl.ShuntCalCmdInfo_shuntResistance_get, _mscl.ShuntCalCmdInfo_shuntResistance_set) - gaugeFactor = property(_mscl.ShuntCalCmdInfo_gaugeFactor_get, _mscl.ShuntCalCmdInfo_gaugeFactor_set) - inputRange = property(_mscl.ShuntCalCmdInfo_inputRange_get, _mscl.ShuntCalCmdInfo_inputRange_set) - hardwareOffset = property(_mscl.ShuntCalCmdInfo_hardwareOffset_get, _mscl.ShuntCalCmdInfo_hardwareOffset_set) - excitationVoltage = property(_mscl.ShuntCalCmdInfo_excitationVoltage_get, _mscl.ShuntCalCmdInfo_excitationVoltage_set) - - def __init__(self): - _mscl.ShuntCalCmdInfo_swiginit(self, _mscl.new_ShuntCalCmdInfo()) - __swig_destroy__ = _mscl.delete_ShuntCalCmdInfo - -# Register ShuntCalCmdInfo in _mscl: -_mscl.ShuntCalCmdInfo_swigregister(ShuntCalCmdInfo) - -class AutoCalResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_AutoCalResult - - def completionFlag(self): - return _mscl.AutoCalResult_completionFlag(self) - -# Register AutoCalResult in _mscl: -_mscl.AutoCalResult_swigregister(AutoCalResult) - -class AutoCalResult_shmLink(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink_swiginit(self, _mscl.new_AutoCalResult_shmLink()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh3(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink_offsetCh1(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink_offsetCh2(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink_temperature(self) - -# Register AutoCalResult_shmLink in _mscl: -_mscl.AutoCalResult_shmLink_swigregister(AutoCalResult_shmLink) - -class AutoCalResult_shmLink201(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink201_swiginit(self, _mscl.new_AutoCalResult_shmLink201()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink201 - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh3(self) - - def slopeCh1(self): - return _mscl.AutoCalResult_shmLink201_slopeCh1(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink201_offsetCh1(self) - - def slopeCh2(self): - return _mscl.AutoCalResult_shmLink201_slopeCh2(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink201_offsetCh2(self) - - def slopeCh3(self): - return _mscl.AutoCalResult_shmLink201_slopeCh3(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink201_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink201_temperature(self) - -# Register AutoCalResult_shmLink201 in _mscl: -_mscl.AutoCalResult_shmLink201_swigregister(AutoCalResult_shmLink201) - -class AutoShuntCalResult(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoShuntCalResult_swiginit(self, _mscl.new_AutoShuntCalResult()) - __swig_destroy__ = _mscl.delete_AutoShuntCalResult - - def errorFlag(self): - return _mscl.AutoShuntCalResult_errorFlag(self) - - def slope(self): - return _mscl.AutoShuntCalResult_slope(self) - - def offset(self): - return _mscl.AutoShuntCalResult_offset(self) - - def baseMedian(self): - return _mscl.AutoShuntCalResult_baseMedian(self) - - def baseMin(self): - return _mscl.AutoShuntCalResult_baseMin(self) - - def baseMax(self): - return _mscl.AutoShuntCalResult_baseMax(self) - - def shuntMedian(self): - return _mscl.AutoShuntCalResult_shuntMedian(self) - - def shuntMin(self): - return _mscl.AutoShuntCalResult_shuntMin(self) - - def shuntMax(self): - return _mscl.AutoShuntCalResult_shuntMax(self) - -# Register AutoShuntCalResult in _mscl: -_mscl.AutoShuntCalResult_swigregister(AutoShuntCalResult) - -class PingResponse(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PingResponse_swiginit(self, _mscl.new_PingResponse()) - - def success(self): - return _mscl.PingResponse_success(self) - - def nodeRssi(self): - return _mscl.PingResponse_nodeRssi(self) - - def baseRssi(self): - return _mscl.PingResponse_baseRssi(self) - __swig_destroy__ = _mscl.delete_PingResponse - -# Register PingResponse in _mscl: -_mscl.PingResponse_swigregister(PingResponse) - -class SetToIdleStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - setToIdleResult_success = _mscl.SetToIdleStatus_setToIdleResult_success - setToIdleResult_canceled = _mscl.SetToIdleStatus_setToIdleResult_canceled - setToIdleResult_failed = _mscl.SetToIdleStatus_setToIdleResult_failed - setToIdleResult_notCompleted = _mscl.SetToIdleStatus_setToIdleResult_notCompleted - - def result(self): - return _mscl.SetToIdleStatus_result(self) - - def complete(self, timeout=10): - return _mscl.SetToIdleStatus_complete(self, timeout) - - def cancel(self): - return _mscl.SetToIdleStatus_cancel(self) - __swig_destroy__ = _mscl.delete_SetToIdleStatus - -# Register SetToIdleStatus in _mscl: -_mscl.SetToIdleStatus_swigregister(SetToIdleStatus) - -class NodeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region): - _mscl.NodeInfo_swiginit(self, _mscl.new_NodeInfo(fw, model, region)) - __swig_destroy__ = _mscl.delete_NodeInfo - -# Register NodeInfo in _mscl: -_mscl.NodeInfo_swigregister(NodeInfo) - -class WirelessNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, nodeAddress, basestation): - _mscl.WirelessNode_swiginit(self, _mscl.new_WirelessNode(nodeAddress, basestation)) - __swig_destroy__ = _mscl.delete_WirelessNode - - @staticmethod - def Mock(*args): - return _mscl.WirelessNode_Mock(*args) - - @staticmethod - def deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - - def features(self): - return _mscl.WirelessNode_features(self) - - def lastCommunicationTime(self): - return _mscl.WirelessNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.WirelessNode_lastDeviceState(self) - - def setBaseStation(self, basestation): - return _mscl.WirelessNode_setBaseStation(self, basestation) - - def getBaseStation(self): - return _mscl.WirelessNode_getBaseStation(self) - - def hasBaseStation(self, basestation): - return _mscl.WirelessNode_hasBaseStation(self, basestation) - - def useGroupRead(self, useGroup): - return _mscl.WirelessNode_useGroupRead(self, useGroup) - - def readWriteRetries(self, *args): - return _mscl.WirelessNode_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.WirelessNode_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.WirelessNode_clearEepromCache(self) - - def updateEepromCacheFromNodeDiscovery(self, nodeDisovery): - return _mscl.WirelessNode_updateEepromCacheFromNodeDiscovery(self, nodeDisovery) - - def getEepromCache(self): - return _mscl.WirelessNode_getEepromCache(self) - - def nodeAddress(self): - return _mscl.WirelessNode_nodeAddress(self) - - def frequency(self): - return _mscl.WirelessNode_frequency(self) - - def communicationProtocol(self): - return _mscl.WirelessNode_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.WirelessNode_firmwareVersion(self) - - def model(self): - return _mscl.WirelessNode_model(self) - - def serial(self): - return _mscl.WirelessNode_serial(self) - - def name(self): - return _mscl.WirelessNode_name(self) - - def microcontroller(self): - return _mscl.WirelessNode_microcontroller(self) - - def radioFeatures(self): - return _mscl.WirelessNode_radioFeatures(self) - - def dataStorageSize(self): - return _mscl.WirelessNode_dataStorageSize(self) - - def regionCode(self): - return _mscl.WirelessNode_regionCode(self) - - def ping(self): - return _mscl.WirelessNode_ping(self) - - def sleep(self): - return _mscl.WirelessNode_sleep(self) - - def cyclePower(self): - return _mscl.WirelessNode_cyclePower(self) - - def resetRadio(self): - return _mscl.WirelessNode_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.WirelessNode_changeFrequency(self, frequency) - - def setToIdle(self): - return _mscl.WirelessNode_setToIdle(self) - - def erase(self): - return _mscl.WirelessNode_erase(self) - - def startNonSyncSampling(self): - return _mscl.WirelessNode_startNonSyncSampling(self) - - def resendStartSyncSampling(self): - return _mscl.WirelessNode_resendStartSyncSampling(self) - - def clearHistogram(self): - return _mscl.WirelessNode_clearHistogram(self) - - def autoBalance(self, mask, targetPercent): - return _mscl.WirelessNode_autoBalance(self, mask, targetPercent) - - def autoCal_shmLink(self): - return _mscl.WirelessNode_autoCal_shmLink(self) - - def autoCal_shmLink201(self): - return _mscl.WirelessNode_autoCal_shmLink201(self) - - def autoShuntCal(self, mask, commandInfo): - return _mscl.WirelessNode_autoShuntCal(self, mask, commandInfo) - - def poll(self, mask): - return _mscl.WirelessNode_poll(self, mask) - - def readEeprom(self, location): - return _mscl.WirelessNode_readEeprom(self, location) - - def writeEeprom(self, location, value): - return _mscl.WirelessNode_writeEeprom(self, location, value) - - def getDiagnosticInfo(self): - return _mscl.WirelessNode_getDiagnosticInfo(self) - - def testCommunicationProtocol(self, protocol): - return _mscl.WirelessNode_testCommunicationProtocol(self, protocol) - - def verifyConfig(self, config, outIssues): - return _mscl.WirelessNode_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.WirelessNode_applyConfig(self, config) - - def getNumDatalogSessions(self): - return _mscl.WirelessNode_getNumDatalogSessions(self) - - def percentFull(self): - return _mscl.WirelessNode_percentFull(self) - - def getDefaultMode(self): - return _mscl.WirelessNode_getDefaultMode(self) - - def getInactivityTimeout(self): - return _mscl.WirelessNode_getInactivityTimeout(self) - - def getCheckRadioInterval(self): - return _mscl.WirelessNode_getCheckRadioInterval(self) - - def getTransmitPower(self): - return _mscl.WirelessNode_getTransmitPower(self) - - def getSamplingMode(self): - return _mscl.WirelessNode_getSamplingMode(self) - - def getActiveChannels(self): - return _mscl.WirelessNode_getActiveChannels(self) - - def getSampleRate(self): - return _mscl.WirelessNode_getSampleRate(self) - - def getNumSweeps(self): - return _mscl.WirelessNode_getNumSweeps(self) - - def getUnlimitedDuration(self): - return _mscl.WirelessNode_getUnlimitedDuration(self) - - def getDataFormat(self): - return _mscl.WirelessNode_getDataFormat(self) - - def getDataCollectionMethod(self): - return _mscl.WirelessNode_getDataCollectionMethod(self) - - def getTimeBetweenBursts(self): - return _mscl.WirelessNode_getTimeBetweenBursts(self) - - def getLostBeaconTimeout(self): - return _mscl.WirelessNode_getLostBeaconTimeout(self) - - def getInputRange(self, mask): - return _mscl.WirelessNode_getInputRange(self, mask) - - def getHardwareOffset(self, mask): - return _mscl.WirelessNode_getHardwareOffset(self, mask) - - def getAntiAliasingFilter(self, mask): - return _mscl.WirelessNode_getAntiAliasingFilter(self, mask) - - def getCfcFilterConfiguration(self): - return _mscl.WirelessNode_getCfcFilterConfiguration(self) - - def getLowPassFilter(self, mask): - return _mscl.WirelessNode_getLowPassFilter(self, mask) - - def getHighPassFilter(self, mask): - return _mscl.WirelessNode_getHighPassFilter(self, mask) - - def getDebounceFilter(self, mask): - return _mscl.WirelessNode_getDebounceFilter(self, mask) - - def getPullUpResistor(self, mask): - return _mscl.WirelessNode_getPullUpResistor(self, mask) - - def getSensorOutputMode(self): - return _mscl.WirelessNode_getSensorOutputMode(self) - - def getGaugeFactor(self, mask): - return _mscl.WirelessNode_getGaugeFactor(self, mask) - - def getExcitationVoltage(self): - return _mscl.WirelessNode_getExcitationVoltage(self) - - def getAdcVoltageRef(self): - return _mscl.WirelessNode_getAdcVoltageRef(self) - - def getGainAmplifierVoltageRef(self): - return _mscl.WirelessNode_getGainAmplifierVoltageRef(self) - - def getGaugeResistance(self): - return _mscl.WirelessNode_getGaugeResistance(self) - - def getNumActiveGauges(self): - return _mscl.WirelessNode_getNumActiveGauges(self) - - def getLowBatteryThreshold(self): - return _mscl.WirelessNode_getLowBatteryThreshold(self) - - def getLinearEquation(self, mask): - return _mscl.WirelessNode_getLinearEquation(self, mask) - - def getUnit(self, mask): - return _mscl.WirelessNode_getUnit(self, mask) - - def getEquationType(self, mask): - return _mscl.WirelessNode_getEquationType(self, mask) - - def getFactoryCalibrationLinearEq(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationLinearEq(self, mask) - - def getFactoryCalibrationUnit(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationUnit(self, mask) - - def getFactoryCalibrationEqType(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationEqType(self, mask) - - def getFilterSettlingTime(self, mask): - return _mscl.WirelessNode_getFilterSettlingTime(self, mask) - - def getThermocoupleType(self, mask): - return _mscl.WirelessNode_getThermocoupleType(self, mask) - - def getTempSensorOptions(self, mask): - return _mscl.WirelessNode_getTempSensorOptions(self, mask) - - def getFatigueOptions(self): - return _mscl.WirelessNode_getFatigueOptions(self) - - def getHistogramOptions(self): - return _mscl.WirelessNode_getHistogramOptions(self) - - def getActivitySense(self): - return _mscl.WirelessNode_getActivitySense(self) - - def getEventTriggerOptions(self): - return _mscl.WirelessNode_getEventTriggerOptions(self) - - def getDiagnosticInterval(self): - return _mscl.WirelessNode_getDiagnosticInterval(self) - - def getStorageLimitMode(self): - return _mscl.WirelessNode_getStorageLimitMode(self) - - def getSensorDelay(self): - return _mscl.WirelessNode_getSensorDelay(self) - - def getDataMode(self): - return _mscl.WirelessNode_getDataMode(self) - - def getDerivedDataRate(self): - return _mscl.WirelessNode_getDerivedDataRate(self) - - def getDerivedChannelMask(self, category): - return _mscl.WirelessNode_getDerivedChannelMask(self, category) - - def getDerivedVelocityUnit(self): - return _mscl.WirelessNode_getDerivedVelocityUnit(self) - -# Register WirelessNode in _mscl: -_mscl.WirelessNode_swigregister(WirelessNode) - -def WirelessNode_Mock(*args): - return _mscl.WirelessNode_Mock(*args) - -def WirelessNode_deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - -class DatalogDownloader(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.DatalogDownloader_swiginit(self, _mscl.new_DatalogDownloader(*args)) - __swig_destroy__ = _mscl.delete_DatalogDownloader - - def complete(self): - return _mscl.DatalogDownloader_complete(self) - - def percentComplete(self): - return _mscl.DatalogDownloader_percentComplete(self) - - def getNextData(self): - return _mscl.DatalogDownloader_getNextData(self) - - def metaDataUpdated(self): - return _mscl.DatalogDownloader_metaDataUpdated(self) - - def calCoefficientsUpdated(self): - return _mscl.DatalogDownloader_calCoefficientsUpdated(self) - - def startOfSession(self): - return _mscl.DatalogDownloader_startOfSession(self) - - def sessionIndex(self): - return _mscl.DatalogDownloader_sessionIndex(self) - - def sampleRate(self): - return _mscl.DatalogDownloader_sampleRate(self) - - def userString(self): - return _mscl.DatalogDownloader_userString(self) - - def calCoefficients(self): - return _mscl.DatalogDownloader_calCoefficients(self) - -# Register DatalogDownloader in _mscl: -_mscl.DatalogDownloader_swigregister(DatalogDownloader) - -class ArmedDataloggingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.ArmedDataloggingNetwork_swiginit(self, _mscl.new_ArmedDataloggingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.ArmedDataloggingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.ArmedDataloggingNetwork_removeNode(self, nodeAddress) - - def startSampling(self): - return _mscl.ArmedDataloggingNetwork_startSampling(self) - __swig_destroy__ = _mscl.delete_ArmedDataloggingNetwork - -# Register ArmedDataloggingNetwork in _mscl: -_mscl.ArmedDataloggingNetwork_swigregister(ArmedDataloggingNetwork) - -class SyncNetworkInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - status_OK = _mscl.SyncNetworkInfo_status_OK - status_PoorCommunication = _mscl.SyncNetworkInfo_status_PoorCommunication - status_DoesNotFit = _mscl.SyncNetworkInfo_status_DoesNotFit - status_Contention = _mscl.SyncNetworkInfo_status_Contention - - def __init__(self, node): - _mscl.SyncNetworkInfo_swiginit(self, _mscl.new_SyncNetworkInfo(node)) - - def status(self): - return _mscl.SyncNetworkInfo_status(self) - - def startedSampling(self): - return _mscl.SyncNetworkInfo_startedSampling(self) - - def configurationApplied(self): - return _mscl.SyncNetworkInfo_configurationApplied(self) - - def percentBandwidth(self): - return _mscl.SyncNetworkInfo_percentBandwidth(self) - - def tdmaAddress(self): - return _mscl.SyncNetworkInfo_tdmaAddress(self) - - def maxTdmaAddress(self): - return _mscl.SyncNetworkInfo_maxTdmaAddress(self) - - def transmissionPerGroup(self): - return _mscl.SyncNetworkInfo_transmissionPerGroup(self) - - def groupSize(self): - return _mscl.SyncNetworkInfo_groupSize(self) - __swig_destroy__ = _mscl.delete_SyncNetworkInfo - -# Register SyncNetworkInfo in _mscl: -_mscl.SyncNetworkInfo_swigregister(SyncNetworkInfo) - -class SyncSamplingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.SyncSamplingNetwork_swiginit(self, _mscl.new_SyncSamplingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.SyncSamplingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.SyncSamplingNetwork_removeNode(self, nodeAddress) - - def percentBandwidth(self): - return _mscl.SyncSamplingNetwork_percentBandwidth(self) - - def ok(self): - return _mscl.SyncSamplingNetwork_ok(self) - - def refresh(self): - return _mscl.SyncSamplingNetwork_refresh(self) - - def lossless(self, *args): - return _mscl.SyncSamplingNetwork_lossless(self, *args) - - def communicationProtocol(self, *args): - return _mscl.SyncSamplingNetwork_communicationProtocol(self, *args) - - def applyConfiguration(self): - return _mscl.SyncSamplingNetwork_applyConfiguration(self) - - def startSampling(self, *args): - return _mscl.SyncSamplingNetwork_startSampling(self, *args) - - def startSampling_noBeacon(self): - return _mscl.SyncSamplingNetwork_startSampling_noBeacon(self) - - def getNodeNetworkInfo(self, nodeAddress): - return _mscl.SyncSamplingNetwork_getNodeNetworkInfo(self, nodeAddress) - __swig_destroy__ = _mscl.delete_SyncSamplingNetwork - -# Register SyncSamplingNetwork in _mscl: -_mscl.SyncSamplingNetwork_swigregister(SyncSamplingNetwork) - -class NodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_NodeFeatures - - def normalizeNumSweeps(self, sweeps): - return _mscl.NodeFeatures_normalizeNumSweeps(self, sweeps) - - def normalizeTimeBetweenBursts(self, time): - return _mscl.NodeFeatures_normalizeTimeBetweenBursts(self, time) - - def channels(self): - return _mscl.NodeFeatures_channels(self) - - def channelGroups(self): - return _mscl.NodeFeatures_channelGroups(self) - - def channelType(self, channelNumber): - return _mscl.NodeFeatures_channelType(self, channelNumber) - - def supportsChannelSetting(self, setting, mask): - return _mscl.NodeFeatures_supportsChannelSetting(self, setting, mask) - - def supportsInputRangePerExcitationVoltage(self): - return _mscl.NodeFeatures_supportsInputRangePerExcitationVoltage(self) - - def supportsHardwareOffset(self): - return _mscl.NodeFeatures_supportsHardwareOffset(self) - - def supportsAntiAliasingFilter(self): - return _mscl.NodeFeatures_supportsAntiAliasingFilter(self) - - def supportsLowPassFilter(self): - return _mscl.NodeFeatures_supportsLowPassFilter(self) - - def supportsHighPassFilter(self): - return _mscl.NodeFeatures_supportsHighPassFilter(self) - - def supportsGaugeFactor(self): - return _mscl.NodeFeatures_supportsGaugeFactor(self) - - def supportsGaugeResistance(self): - return _mscl.NodeFeatures_supportsGaugeResistance(self) - - def supportsNumActiveGauges(self): - return _mscl.NodeFeatures_supportsNumActiveGauges(self) - - def supportsLostBeaconTimeout(self): - return _mscl.NodeFeatures_supportsLostBeaconTimeout(self) - - def supportsPullUpResistor(self): - return _mscl.NodeFeatures_supportsPullUpResistor(self) - - def supportsFilterSettlingTime(self): - return _mscl.NodeFeatures_supportsFilterSettlingTime(self) - - def supportsThermocoupleType(self): - return _mscl.NodeFeatures_supportsThermocoupleType(self) - - def supportsTempSensorOptions(self): - return _mscl.NodeFeatures_supportsTempSensorOptions(self) - - def supportsDebounceFilter(self): - return _mscl.NodeFeatures_supportsDebounceFilter(self) - - def supportsFatigueConfig(self): - return _mscl.NodeFeatures_supportsFatigueConfig(self) - - def supportsYoungsModConfig(self): - return _mscl.NodeFeatures_supportsYoungsModConfig(self) - - def supportsPoissonsRatioConfig(self): - return _mscl.NodeFeatures_supportsPoissonsRatioConfig(self) - - def supportsFatigueDebugModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueDebugModeConfig(self) - - def supportsFatigueModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueModeConfig(self) - - def supportsHistogramConfig(self): - return _mscl.NodeFeatures_supportsHistogramConfig(self) - - def supportsHistogramRateConfig(self): - return _mscl.NodeFeatures_supportsHistogramRateConfig(self) - - def supportsHistogramEnableConfig(self): - return _mscl.NodeFeatures_supportsHistogramEnableConfig(self) - - def supportsActivitySense(self): - return _mscl.NodeFeatures_supportsActivitySense(self) - - def supportsAutoBalance(self): - return _mscl.NodeFeatures_supportsAutoBalance(self) - - def supportsLegacyShuntCal(self): - return _mscl.NodeFeatures_supportsLegacyShuntCal(self) - - def supportsAutoCal_shm(self): - return _mscl.NodeFeatures_supportsAutoCal_shm(self) - - def supportsAutoCal_shm201(self): - return _mscl.NodeFeatures_supportsAutoCal_shm201(self) - - def supportsAutoShuntCal(self): - return _mscl.NodeFeatures_supportsAutoShuntCal(self) - - def supportsGetFactoryCal(self): - return _mscl.NodeFeatures_supportsGetFactoryCal(self) - - def supportsLimitedDuration(self): - return _mscl.NodeFeatures_supportsLimitedDuration(self) - - def supportsEventTrigger(self): - return _mscl.NodeFeatures_supportsEventTrigger(self) - - def supportsDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsDiagnosticInfo(self) - - def supportsLoggedData(self): - return _mscl.NodeFeatures_supportsLoggedData(self) - - def supportsPoll(self): - return _mscl.NodeFeatures_supportsPoll(self) - - def supportsSensorDelayConfig(self): - return _mscl.NodeFeatures_supportsSensorDelayConfig(self) - - def supportsSensorDelayAlwaysOn(self): - return _mscl.NodeFeatures_supportsSensorDelayAlwaysOn(self) - - def supportsSensorOutputMode(self): - return _mscl.NodeFeatures_supportsSensorOutputMode(self) - - def supportsCfcFilterConfiguration(self): - return _mscl.NodeFeatures_supportsCfcFilterConfiguration(self) - - def supportsChannel(self, channelNumber): - return _mscl.NodeFeatures_supportsChannel(self, channelNumber) - - def supportsSamplingMode(self, samplingMode): - return _mscl.NodeFeatures_supportsSamplingMode(self, samplingMode) - - def supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.NodeFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsDataFormat(self, dataFormat): - return _mscl.NodeFeatures_supportsDataFormat(self, dataFormat) - - def supportsDefaultMode(self, mode): - return _mscl.NodeFeatures_supportsDefaultMode(self, mode) - - def supportsDataCollectionMethod(self, collectionMethod): - return _mscl.NodeFeatures_supportsDataCollectionMethod(self, collectionMethod) - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.NodeFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsDataMode(self, dataMode): - return _mscl.NodeFeatures_supportsDataMode(self, dataMode) - - def supportsTransducerType(self, transducerType): - return _mscl.NodeFeatures_supportsTransducerType(self, transducerType) - - def supportsFatigueMode(self, mode): - return _mscl.NodeFeatures_supportsFatigueMode(self, mode) - - def supportsInputRange(self, *args): - return _mscl.NodeFeatures_supportsInputRange(self, *args) - - def supportsCentisecondEventDuration(self): - return _mscl.NodeFeatures_supportsCentisecondEventDuration(self) - - def supportsGetDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsGetDiagnosticInfo(self) - - def supportsNonSyncLogWithTimestamps(self): - return _mscl.NodeFeatures_supportsNonSyncLogWithTimestamps(self) - - def supportsDerivedCategory(self, category): - return _mscl.NodeFeatures_supportsDerivedCategory(self, category) - - def supportsRawDataMode(self): - return _mscl.NodeFeatures_supportsRawDataMode(self) - - def supportsDerivedDataMode(self): - return _mscl.NodeFeatures_supportsDerivedDataMode(self) - - def supportsDerivedVelocityUnitConfig(self): - return _mscl.NodeFeatures_supportsDerivedVelocityUnitConfig(self) - - def supportsExcitationVoltageConfig(self): - return _mscl.NodeFeatures_supportsExcitationVoltageConfig(self) - - def supportsLowBatteryThresholdConfig(self): - return _mscl.NodeFeatures_supportsLowBatteryThresholdConfig(self) - - def maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode) - - def maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode) - - def maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels): - return _mscl.NodeFeatures_maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels) - - def maxFilterSettlingTime(self, rate): - return _mscl.NodeFeatures_maxFilterSettlingTime(self, rate) - - def minInactivityTimeout(self): - return _mscl.NodeFeatures_minInactivityTimeout(self) - - def minLostBeaconTimeout(self): - return _mscl.NodeFeatures_minLostBeaconTimeout(self) - - def maxLostBeaconTimeout(self): - return _mscl.NodeFeatures_maxLostBeaconTimeout(self) - - def minCheckRadioInterval(self): - return _mscl.NodeFeatures_minCheckRadioInterval(self) - - def maxCheckRadioInterval(self): - return _mscl.NodeFeatures_maxCheckRadioInterval(self) - - def minSweeps(self): - return _mscl.NodeFeatures_minSweeps(self) - - def maxSweeps(self, samplingMode, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweeps(self, samplingMode, dataMode, dataFormat, channels) - - def maxSweepsPerBurst(self, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweepsPerBurst(self, dataMode, dataFormat, channels) - - def minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol): - return _mscl.NodeFeatures_minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol) - - def minSensorDelay(self): - return _mscl.NodeFeatures_minSensorDelay(self) - - def maxSensorDelay(self): - return _mscl.NodeFeatures_maxSensorDelay(self) - - def defaultSensorDelay(self): - return _mscl.NodeFeatures_defaultSensorDelay(self) - - def maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate): - return _mscl.NodeFeatures_maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate) - - def normalizeEventDuration(self, duration): - return _mscl.NodeFeatures_normalizeEventDuration(self, duration) - - def normalizeSensorDelay(self, delay): - return _mscl.NodeFeatures_normalizeSensorDelay(self, delay) - - def numDamageAngles(self): - return _mscl.NodeFeatures_numDamageAngles(self) - - def numSnCurveSegments(self): - return _mscl.NodeFeatures_numSnCurveSegments(self) - - def numEventTriggers(self): - return _mscl.NodeFeatures_numEventTriggers(self) - - def defaultModes(self): - return _mscl.NodeFeatures_defaultModes(self) - - def dataCollectionMethods(self): - return _mscl.NodeFeatures_dataCollectionMethods(self) - - def dataFormats(self): - return _mscl.NodeFeatures_dataFormats(self) - - def samplingModes(self): - return _mscl.NodeFeatures_samplingModes(self) - - def sampleRates(self, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_sampleRates(self, samplingMode, dataCollectionMethod, dataMode) - - def derivedDataRates(self): - return _mscl.NodeFeatures_derivedDataRates(self) - - def transmitPowers(self, *args): - return _mscl.NodeFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.NodeFeatures_commProtocols(self) - - def sensorOutputModes(self): - return _mscl.NodeFeatures_sensorOutputModes(self) - - def cfcFilters(self): - return _mscl.NodeFeatures_cfcFilters(self) - - def histogramTransmitRates(self): - return _mscl.NodeFeatures_histogramTransmitRates(self) - - def fatigueModes(self): - return _mscl.NodeFeatures_fatigueModes(self) - - def antiAliasingFilters(self): - return _mscl.NodeFeatures_antiAliasingFilters(self) - - def lowPassFilters(self): - return _mscl.NodeFeatures_lowPassFilters(self) - - def highPassFilters(self): - return _mscl.NodeFeatures_highPassFilters(self) - - def storageLimitModes(self): - return _mscl.NodeFeatures_storageLimitModes(self) - - def inputRanges(self, *args): - return _mscl.NodeFeatures_inputRanges(self, *args) - - def dataModes(self): - return _mscl.NodeFeatures_dataModes(self) - - def transducerTypes(self): - return _mscl.NodeFeatures_transducerTypes(self) - - def channelsPerDerivedCategory(self): - return _mscl.NodeFeatures_channelsPerDerivedCategory(self) - - def excitationVoltages(self): - return _mscl.NodeFeatures_excitationVoltages(self) - - def adcVoltageInputType(self): - return _mscl.NodeFeatures_adcVoltageInputType(self) - - def maxTransmitPower(self, *args): - return _mscl.NodeFeatures_maxTransmitPower(self, *args) - - def minTransmitPower(self, *args): - return _mscl.NodeFeatures_minTransmitPower(self, *args) - -# Register NodeFeatures in _mscl: -_mscl.NodeFeatures_swigregister(NodeFeatures) - -class BaseStationFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_BaseStationFeatures - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.BaseStationFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.BaseStationFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsButtons(self): - return _mscl.BaseStationFeatures_supportsButtons(self) - - def supportsAnalogPairing(self): - return _mscl.BaseStationFeatures_supportsAnalogPairing(self) - - def supportsBeaconStatus(self): - return _mscl.BaseStationFeatures_supportsBeaconStatus(self) - - def supportsRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsRfSweepMode(self) - - def supportsCustomRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsCustomRfSweepMode(self) - - def buttonCount(self): - return _mscl.BaseStationFeatures_buttonCount(self) - - def analogPortCount(self): - return _mscl.BaseStationFeatures_analogPortCount(self) - - def transmitPowers(self, *args): - return _mscl.BaseStationFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.BaseStationFeatures_commProtocols(self) - - def maxTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_maxTransmitPower(self, region, commProtocol) - - def minTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_minTransmitPower(self, region, commProtocol) - -# Register BaseStationFeatures in _mscl: -_mscl.BaseStationFeatures_swigregister(BaseStationFeatures) - -class EulerAngles(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EulerAngles_swiginit(self, _mscl.new_EulerAngles(*args)) - - def asMipFieldValues(self): - return _mscl.EulerAngles_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.EulerAngles_appendMipFieldValues(self, appendTo) - - def roll(self): - return _mscl.EulerAngles_roll(self) - - def pitch(self): - return _mscl.EulerAngles_pitch(self) - - def yaw(self): - return _mscl.EulerAngles_yaw(self) - - def heading(self): - return _mscl.EulerAngles_heading(self) - __swig_destroy__ = _mscl.delete_EulerAngles - -# Register EulerAngles in _mscl: -_mscl.EulerAngles_swigregister(EulerAngles) - -class Quaternion(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Quaternion_swiginit(self, _mscl.new_Quaternion(*args)) - - def asMipFieldValues(self): - return _mscl.Quaternion_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Quaternion_appendMipFieldValues(self, appendTo) - - def normalize(self): - return _mscl.Quaternion_normalize(self) - - def q0(self): - return _mscl.Quaternion_q0(self) - - def q1(self): - return _mscl.Quaternion_q1(self) - - def q2(self): - return _mscl.Quaternion_q2(self) - - def q3(self): - return _mscl.Quaternion_q3(self) - __swig_destroy__ = _mscl.delete_Quaternion - -# Register Quaternion in _mscl: -_mscl.Quaternion_swigregister(Quaternion) - -class Rotation(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EULER_ANGLES = _mscl.Rotation_EULER_ANGLES - QUATERNION = _mscl.Rotation_QUATERNION - - def __init__(self, *args): - _mscl.Rotation_swiginit(self, _mscl.new_Rotation(*args)) - - @staticmethod - def FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - - @staticmethod - def FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - - def asEulerAngles(self): - return _mscl.Rotation_asEulerAngles(self) - - def asQuaternion(self): - return _mscl.Rotation_asQuaternion(self) - - def asMipFieldValues(self, includeFormat=True): - return _mscl.Rotation_asMipFieldValues(self, includeFormat) - - def appendMipFieldValues(self, appendTo, includeFormat=True): - return _mscl.Rotation_appendMipFieldValues(self, appendTo, includeFormat) - - def format(self): - return _mscl.Rotation_format(self) - __swig_destroy__ = _mscl.delete_Rotation - -# Register Rotation in _mscl: -_mscl.Rotation_swigregister(Rotation) - -def Rotation_FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - -def Rotation_FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - -class Vec3f(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Vec3f_swiginit(self, _mscl.new_Vec3f(*args)) - __swig_destroy__ = _mscl.delete_Vec3f - - def fromMipFieldValues(self, data, offset=0): - return _mscl.Vec3f_fromMipFieldValues(self, data, offset) - - def asMipFieldValues(self): - return _mscl.Vec3f_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Vec3f_appendMipFieldValues(self, appendTo) - - def x(self, *args): - return _mscl.Vec3f_x(self, *args) - - def y(self, *args): - return _mscl.Vec3f_y(self, *args) - - def z(self, *args): - return _mscl.Vec3f_z(self, *args) - -# Register Vec3f in _mscl: -_mscl.Vec3f_swigregister(Vec3f) - -ECEF = _mscl.ECEF -LLH_NED = _mscl.LLH_NED -LOCAL = _mscl.LOCAL -VEHICLE = _mscl.VEHICLE -class GeometricVector(Vec3f): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - - @staticmethod - def VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - - def __init__(self, *args): - _mscl.GeometricVector_swiginit(self, _mscl.new_GeometricVector(*args)) - __swig_destroy__ = _mscl.delete_GeometricVector - - def fromMipFieldValues_includesFrame(self, data, offset=0): - return _mscl.GeometricVector_fromMipFieldValues_includesFrame(self, data, offset) - - def asMipFieldValues_includeFrame(self): - return _mscl.GeometricVector_asMipFieldValues_includeFrame(self) - - def appendMipFieldValues_includeFrame(self, appendTo): - return _mscl.GeometricVector_appendMipFieldValues_includeFrame(self, appendTo) - referenceFrame = property(_mscl.GeometricVector_referenceFrame_get, _mscl.GeometricVector_referenceFrame_set) - - def north(self, *args): - return _mscl.GeometricVector_north(self, *args) - - def east(self, *args): - return _mscl.GeometricVector_east(self, *args) - - def down(self, *args): - return _mscl.GeometricVector_down(self, *args) - -# Register GeometricVector in _mscl: -_mscl.GeometricVector_swigregister(GeometricVector) - -def GeometricVector_VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - -def GeometricVector_VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - -class PositionOffset(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.PositionOffset_swiginit(self, _mscl.new_PositionOffset(*args)) - __swig_destroy__ = _mscl.delete_PositionOffset - -# Register PositionOffset in _mscl: -_mscl.PositionOffset_swigregister(PositionOffset) - -class Velocity(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Velocity_swiginit(self, _mscl.new_Velocity(*args)) - __swig_destroy__ = _mscl.delete_Velocity - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - - @staticmethod - def NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - - @staticmethod - def Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -# Register Velocity in _mscl: -_mscl.Velocity_swigregister(Velocity) - -def Velocity_ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - -def Velocity_NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - -def Velocity_Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -class Position(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - - def __init__(self, *args): - _mscl.Position_swiginit(self, _mscl.new_Position(*args)) - __swig_destroy__ = _mscl.delete_Position - referenceFrame = property(_mscl.Position_referenceFrame_get, _mscl.Position_referenceFrame_set) - - def latitude(self, *args): - return _mscl.Position_latitude(self, *args) - - def longitude(self, *args): - return _mscl.Position_longitude(self, *args) - - def altitude(self, *args): - return _mscl.Position_altitude(self, *args) - - def height(self, *args): - return _mscl.Position_height(self, *args) - - def x(self, *args): - return _mscl.Position_x(self, *args) - - def y(self, *args): - return _mscl.Position_y(self, *args) - - def z(self, *args): - return _mscl.Position_z(self, *args) - -# Register Position in _mscl: -_mscl.Position_swigregister(Position) - -def Position_LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - -def Position_ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - -class GeometricUncertainty(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeometricUncertainty_swiginit(self, _mscl.new_GeometricUncertainty(*args)) - __swig_destroy__ = _mscl.delete_GeometricUncertainty - -# Register GeometricUncertainty in _mscl: -_mscl.GeometricUncertainty_swigregister(GeometricUncertainty) - -class MipModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_3dm_dh3 = _mscl.MipModels_node_3dm_dh3 - node_3dm_gx3_15 = _mscl.MipModels_node_3dm_gx3_15 - node_3dm_gx3_25 = _mscl.MipModels_node_3dm_gx3_25 - node_3dm_gx3_35 = _mscl.MipModels_node_3dm_gx3_35 - node_3dm_gx3_45 = _mscl.MipModels_node_3dm_gx3_45 - node_3dm_rq1_45_lt = _mscl.MipModels_node_3dm_rq1_45_lt - node_3dm_gx4_15 = _mscl.MipModels_node_3dm_gx4_15 - node_3dm_gx4_25 = _mscl.MipModels_node_3dm_gx4_25 - node_3dm_gx4_45 = _mscl.MipModels_node_3dm_gx4_45 - node_3dm_rq1_45_st = _mscl.MipModels_node_3dm_rq1_45_st - node_mv5_ar = _mscl.MipModels_node_mv5_ar - node_3dm_gx5_10 = _mscl.MipModels_node_3dm_gx5_10 - node_3dm_gx5_15 = _mscl.MipModels_node_3dm_gx5_15 - node_3dm_gx5_25 = _mscl.MipModels_node_3dm_gx5_25 - node_3dm_gx5_35 = _mscl.MipModels_node_3dm_gx5_35 - node_3dm_gx5_45 = _mscl.MipModels_node_3dm_gx5_45 - node_3dm_cv5_10 = _mscl.MipModels_node_3dm_cv5_10 - node_3dm_cv5_15 = _mscl.MipModels_node_3dm_cv5_15 - node_3dm_cv5_25 = _mscl.MipModels_node_3dm_cv5_25 - node_3dm_cv5_45 = _mscl.MipModels_node_3dm_cv5_45 - node_3dm_gq4_45 = _mscl.MipModels_node_3dm_gq4_45 - node_3dm_cx5_45 = _mscl.MipModels_node_3dm_cx5_45 - node_3dm_cx5_35 = _mscl.MipModels_node_3dm_cx5_35 - node_3dm_cx5_25 = _mscl.MipModels_node_3dm_cx5_25 - node_3dm_cx5_15 = _mscl.MipModels_node_3dm_cx5_15 - node_3dm_cx5_10 = _mscl.MipModels_node_3dm_cx5_10 - node_3dm_cl5_15 = _mscl.MipModels_node_3dm_cl5_15 - node_3dm_cl5_25 = _mscl.MipModels_node_3dm_cl5_25 - node_3dm_gq7 = _mscl.MipModels_node_3dm_gq7 - node_3dm_rtk = _mscl.MipModels_node_3dm_rtk - node_3dm_cv7_ahrs = _mscl.MipModels_node_3dm_cv7_ahrs - node_3dm_cv7_ar = _mscl.MipModels_node_3dm_cv7_ar - node_3dm_gv7_ahrs = _mscl.MipModels_node_3dm_gv7_ahrs - node_3dm_gv7_ar = _mscl.MipModels_node_3dm_gv7_ar - node_3dm_gv7_ins = _mscl.MipModels_node_3dm_gv7_ins - node_3dm_cv7_ins = _mscl.MipModels_node_3dm_cv7_ins - node_3dm_cv7_gnss_ins = _mscl.MipModels_node_3dm_cv7_gnss_ins - placeholder_matchAll = _mscl.MipModels_placeholder_matchAll - rtk_v1 = _mscl.MipModels_rtk_v1 - rtk_v2 = _mscl.MipModels_rtk_v2 - model_3dm_dh3 = _mscl.MipModels_model_3dm_dh3 - model_3dm_gx3_15 = _mscl.MipModels_model_3dm_gx3_15 - model_3dm_gx3_25 = _mscl.MipModels_model_3dm_gx3_25 - model_3dm_gx3_35 = _mscl.MipModels_model_3dm_gx3_35 - model_3dm_gx3_45 = _mscl.MipModels_model_3dm_gx3_45 - model_3dm_rq1_45_lt = _mscl.MipModels_model_3dm_rq1_45_lt - model_3dm_gx4_15 = _mscl.MipModels_model_3dm_gx4_15 - model_3dm_gx4_25 = _mscl.MipModels_model_3dm_gx4_25 - model_3dm_gx4_45 = _mscl.MipModels_model_3dm_gx4_45 - model_3dm_rq1_45_st = _mscl.MipModels_model_3dm_rq1_45_st - model_mv5_ar = _mscl.MipModels_model_mv5_ar - model_3dm_gx5_10 = _mscl.MipModels_model_3dm_gx5_10 - model_3dm_gx5_15 = _mscl.MipModels_model_3dm_gx5_15 - model_3dm_gx5_25 = _mscl.MipModels_model_3dm_gx5_25 - model_3dm_gx5_35 = _mscl.MipModels_model_3dm_gx5_35 - model_3dm_gx5_45 = _mscl.MipModels_model_3dm_gx5_45 - model_3dm_cv5_10 = _mscl.MipModels_model_3dm_cv5_10 - model_3dm_cv5_15 = _mscl.MipModels_model_3dm_cv5_15 - model_3dm_cv5_25 = _mscl.MipModels_model_3dm_cv5_25 - model_3dm_cv5_45 = _mscl.MipModels_model_3dm_cv5_45 - model_3dm_gq4_45 = _mscl.MipModels_model_3dm_gq4_45 - model_3dm_cx5_45 = _mscl.MipModels_model_3dm_cx5_45 - model_3dm_cx5_35 = _mscl.MipModels_model_3dm_cx5_35 - model_3dm_cx5_25 = _mscl.MipModels_model_3dm_cx5_25 - model_3dm_cx5_15 = _mscl.MipModels_model_3dm_cx5_15 - model_3dm_cx5_10 = _mscl.MipModels_model_3dm_cx5_10 - model_3dm_cl5_15 = _mscl.MipModels_model_3dm_cl5_15 - model_3dm_cl5_25 = _mscl.MipModels_model_3dm_cl5_25 - model_3dm_gq7 = _mscl.MipModels_model_3dm_gq7 - model_3dm_rtk_v1 = _mscl.MipModels_model_3dm_rtk_v1 - model_3dm_rtk = _mscl.MipModels_model_3dm_rtk - model_3dm_cv7_ahrs = _mscl.MipModels_model_3dm_cv7_ahrs - model_3dm_cv7_ar = _mscl.MipModels_model_3dm_cv7_ar - model_3dm_gv7_ahrs = _mscl.MipModels_model_3dm_gv7_ahrs - model_3dm_gv7_ar = _mscl.MipModels_model_3dm_gv7_ar - model_3dm_gv7_ins = _mscl.MipModels_model_3dm_gv7_ins - model_3dm_cv7_ins = _mscl.MipModels_model_3dm_cv7_ins - model_3dm_cv7_gnss_ins = _mscl.MipModels_model_3dm_cv7_gnss_ins - - @staticmethod - def modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - - @staticmethod - def modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - - @staticmethod - def modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - - @staticmethod - def nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - - @staticmethod - def modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - - @staticmethod - def nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - - @staticmethod - def modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - - @staticmethod - def stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - - def __init__(self): - _mscl.MipModels_swiginit(self, _mscl.new_MipModels()) - __swig_destroy__ = _mscl.delete_MipModels - -# Register MipModels in _mscl: -_mscl.MipModels_swigregister(MipModels) - -def MipModels_modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - -def MipModels_modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - -def MipModels_modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - -def MipModels_nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - -def MipModels_modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - -def MipModels_nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - -def MipModels_modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - -def MipModels_stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - -class MipModel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipModel_swiginit(self, _mscl.new_MipModel(*args)) - - def equals(self, compare): - return _mscl.MipModel_equals(self, compare) - - def __str__(self): - return _mscl.MipModel___str__(self) - - def nodeModel(self): - return _mscl.MipModel_nodeModel(self) - - def modifier(self): - return _mscl.MipModel_modifier(self) - - def modelNumber(self): - return _mscl.MipModel_modelNumber(self) - - def baseModel(self): - return _mscl.MipModel_baseModel(self) - __swig_destroy__ = _mscl.delete_MipModel - -# Register MipModel in _mscl: -_mscl.MipModel_swigregister(MipModel) -MipModel.mip_model_none = _mscl.cvar.MipModel_mip_model_none -MipModel.mip_model_3dm_dh3 = _mscl.cvar.MipModel_mip_model_3dm_dh3 -MipModel.mip_model_3dm_gx3_15 = _mscl.cvar.MipModel_mip_model_3dm_gx3_15 -MipModel.mip_model_3dm_gx3_25 = _mscl.cvar.MipModel_mip_model_3dm_gx3_25 -MipModel.mip_model_3dm_gx3_35 = _mscl.cvar.MipModel_mip_model_3dm_gx3_35 -MipModel.mip_model_3dm_gx3_45 = _mscl.cvar.MipModel_mip_model_3dm_gx3_45 -MipModel.mip_model_3dm_rq1_45_lt = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_lt -MipModel.mip_model_3dm_rq1_45_st = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_st -MipModel.mip_model_3dm_gx4_15 = _mscl.cvar.MipModel_mip_model_3dm_gx4_15 -MipModel.mip_model_3dm_gx4_25 = _mscl.cvar.MipModel_mip_model_3dm_gx4_25 -MipModel.mip_model_3dm_gx4_45 = _mscl.cvar.MipModel_mip_model_3dm_gx4_45 -MipModel.mip_model_mv5_ar = _mscl.cvar.MipModel_mip_model_mv5_ar -MipModel.mip_model_3dm_gx5_10 = _mscl.cvar.MipModel_mip_model_3dm_gx5_10 -MipModel.mip_model_3dm_gx5_15 = _mscl.cvar.MipModel_mip_model_3dm_gx5_15 -MipModel.mip_model_3dm_gx5_25 = _mscl.cvar.MipModel_mip_model_3dm_gx5_25 -MipModel.mip_model_3dm_gx5_35 = _mscl.cvar.MipModel_mip_model_3dm_gx5_35 -MipModel.mip_model_3dm_gx5_45 = _mscl.cvar.MipModel_mip_model_3dm_gx5_45 -MipModel.mip_model_3dm_cv5_10 = _mscl.cvar.MipModel_mip_model_3dm_cv5_10 -MipModel.mip_model_3dm_cv5_15 = _mscl.cvar.MipModel_mip_model_3dm_cv5_15 -MipModel.mip_model_3dm_cv5_25 = _mscl.cvar.MipModel_mip_model_3dm_cv5_25 -MipModel.mip_model_3dm_cv5_45 = _mscl.cvar.MipModel_mip_model_3dm_cv5_45 -MipModel.mip_model_3dm_gq4_45 = _mscl.cvar.MipModel_mip_model_3dm_gq4_45 -MipModel.mip_model_3dm_cx5_45 = _mscl.cvar.MipModel_mip_model_3dm_cx5_45 -MipModel.mip_model_3dm_cx5_35 = _mscl.cvar.MipModel_mip_model_3dm_cx5_35 -MipModel.mip_model_3dm_cx5_25 = _mscl.cvar.MipModel_mip_model_3dm_cx5_25 -MipModel.mip_model_3dm_cx5_15 = _mscl.cvar.MipModel_mip_model_3dm_cx5_15 -MipModel.mip_model_3dm_cx5_10 = _mscl.cvar.MipModel_mip_model_3dm_cx5_10 -MipModel.mip_model_3dm_cl5_15 = _mscl.cvar.MipModel_mip_model_3dm_cl5_15 -MipModel.mip_model_3dm_cl5_25 = _mscl.cvar.MipModel_mip_model_3dm_cl5_25 -MipModel.mip_model_3dm_gq7 = _mscl.cvar.MipModel_mip_model_3dm_gq7 -MipModel.mip_model_3dm_rtk_v1 = _mscl.cvar.MipModel_mip_model_3dm_rtk_v1 -MipModel.mip_model_3dm_rtk = _mscl.cvar.MipModel_mip_model_3dm_rtk -MipModel.mip_model_3dm_cv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_cv7_ahrs -MipModel.mip_model_3dm_cv7_ar = _mscl.cvar.MipModel_mip_model_3dm_cv7_ar -MipModel.mip_model_3dm_gv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_gv7_ahrs -MipModel.mip_model_3dm_gv7_ar = _mscl.cvar.MipModel_mip_model_3dm_gv7_ar -MipModel.mip_model_3dm_gv7_ins = _mscl.cvar.MipModel_mip_model_3dm_gv7_ins -MipModel.mip_model_3dm_cv7_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_ins -MipModel.mip_model_3dm_cv7_gnss_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_gnss_ins - -class DisplacementModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_digitalDemod = _mscl.DisplacementModels_node_digitalDemod - - def __init__(self): - _mscl.DisplacementModels_swiginit(self, _mscl.new_DisplacementModels()) - __swig_destroy__ = _mscl.delete_DisplacementModels - -# Register DisplacementModels in _mscl: -_mscl.DisplacementModels_swigregister(DisplacementModels) - -class MipTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CLASS_AHRS_IMU = _mscl.MipTypes_CLASS_AHRS_IMU - CLASS_GNSS = _mscl.MipTypes_CLASS_GNSS - CLASS_ESTFILTER = _mscl.MipTypes_CLASS_ESTFILTER - CLASS_DISPLACEMENT = _mscl.MipTypes_CLASS_DISPLACEMENT - CLASS_GNSS1 = _mscl.MipTypes_CLASS_GNSS1 - CLASS_GNSS2 = _mscl.MipTypes_CLASS_GNSS2 - CLASS_GNSS3 = _mscl.MipTypes_CLASS_GNSS3 - CLASS_RTK = _mscl.MipTypes_CLASS_RTK - CLASS_GNSS4 = _mscl.MipTypes_CLASS_GNSS4 - CLASS_GNSS5 = _mscl.MipTypes_CLASS_GNSS5 - CLASS_SYSTEM = _mscl.MipTypes_CLASS_SYSTEM - USE_NEW_SETTINGS = _mscl.MipTypes_USE_NEW_SETTINGS - READ_BACK_CURRENT_SETTINGS = _mscl.MipTypes_READ_BACK_CURRENT_SETTINGS - SAVE_CURRENT_SETTINGS = _mscl.MipTypes_SAVE_CURRENT_SETTINGS - LOAD_STARTUP_SETTINGS = _mscl.MipTypes_LOAD_STARTUP_SETTINGS - RESET_TO_DEFAULT = _mscl.MipTypes_RESET_TO_DEFAULT - USE_NEW_SETTINGS_NO_ACKNACK = _mscl.MipTypes_USE_NEW_SETTINGS_NO_ACKNACK - DISABLED = _mscl.MipTypes_DISABLED - ENABLED = _mscl.MipTypes_ENABLED - TIME_FRAME_WEEKS = _mscl.MipTypes_TIME_FRAME_WEEKS - TIME_FRAME_SECONDS = _mscl.MipTypes_TIME_FRAME_SECONDS - CMD_PING = _mscl.MipTypes_CMD_PING - CMD_SET_IDLE = _mscl.MipTypes_CMD_SET_IDLE - CMD_GET_DEVICE_INFO = _mscl.MipTypes_CMD_GET_DEVICE_INFO - CMD_GET_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_DESCRIPTOR_SETS - CMD_BUILT_IN_TEST = _mscl.MipTypes_CMD_BUILT_IN_TEST - CMD_RESUME = _mscl.MipTypes_CMD_RESUME - CMD_GET_EXT_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_EXT_DESCRIPTOR_SETS - CMD_COMM_PORT_SPEED = _mscl.MipTypes_CMD_COMM_PORT_SPEED - CMD_GPS_TIME_UPDATE = _mscl.MipTypes_CMD_GPS_TIME_UPDATE - CMD_RESET = _mscl.MipTypes_CMD_RESET - CMD_POLL_SENSOR_DATA = _mscl.MipTypes_CMD_POLL_SENSOR_DATA - CMD_POLL_GNSS_DATA = _mscl.MipTypes_CMD_POLL_GNSS_DATA - CMD_POLL_EF_DATA = _mscl.MipTypes_CMD_POLL_EF_DATA - CMD_GET_SENSOR_RATE_BASE = _mscl.MipTypes_CMD_GET_SENSOR_RATE_BASE - CMD_GET_GNSS_RATE_BASE = _mscl.MipTypes_CMD_GET_GNSS_RATE_BASE - CMD_GET_EF_RATE_BASE = _mscl.MipTypes_CMD_GET_EF_RATE_BASE - CMD_SENSOR_MESSAGE_FORMAT = _mscl.MipTypes_CMD_SENSOR_MESSAGE_FORMAT - CMD_GNSS_MESSAGE_FORMAT = _mscl.MipTypes_CMD_GNSS_MESSAGE_FORMAT - CMD_EF_MESSAGE_FORMAT = _mscl.MipTypes_CMD_EF_MESSAGE_FORMAT - CMD_NMEA_MESSAGE_FORMAT = _mscl.MipTypes_CMD_NMEA_MESSAGE_FORMAT - CMD_POLL = _mscl.MipTypes_CMD_POLL - CMD_GET_BASE_RATE = _mscl.MipTypes_CMD_GET_BASE_RATE - CMD_MESSAGE_FORMAT = _mscl.MipTypes_CMD_MESSAGE_FORMAT - CMD_FACTORY_STREAMING = _mscl.MipTypes_CMD_FACTORY_STREAMING - CMD_CONTINUOUS_DATA_STREAM = _mscl.MipTypes_CMD_CONTINUOUS_DATA_STREAM - CMD_RAW_RTCM_2_3_MESSAGE = _mscl.MipTypes_CMD_RAW_RTCM_2_3_MESSAGE - CMD_GNSS_CONSTELLATION_SETTINGS = _mscl.MipTypes_CMD_GNSS_CONSTELLATION_SETTINGS - CMD_GNSS_SBAS_SETTINGS = _mscl.MipTypes_CMD_GNSS_SBAS_SETTINGS - CMD_GNSS_ASSIST_FIX_CONTROL = _mscl.MipTypes_CMD_GNSS_ASSIST_FIX_CONTROL - CMD_GNSS_ASSIST_TIME_UPDATE = _mscl.MipTypes_CMD_GNSS_ASSIST_TIME_UPDATE - CMD_PPS_SOURCE = _mscl.MipTypes_CMD_PPS_SOURCE - CMD_EVENT_SUPPORT = _mscl.MipTypes_CMD_EVENT_SUPPORT - CMD_EVENT_CONTROL = _mscl.MipTypes_CMD_EVENT_CONTROL - CMD_EVENT_TRIGGER_STATUS = _mscl.MipTypes_CMD_EVENT_TRIGGER_STATUS - CMD_EVENT_ACTION_STATUS = _mscl.MipTypes_CMD_EVENT_ACTION_STATUS - CMD_EVENT_TRIGGER_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_TRIGGER_CONFIGURATION - CMD_EVENT_ACTION_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_ACTION_CONFIGURATION - CMD_SAVE_STARTUP_SETTINGS = _mscl.MipTypes_CMD_SAVE_STARTUP_SETTINGS - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM - CMD_GPS_DYNAMICS_MODE = _mscl.MipTypes_CMD_GPS_DYNAMICS_MODE - CMD_SENSOR_SIG_COND_SETTINGS = _mscl.MipTypes_CMD_SENSOR_SIG_COND_SETTINGS - CMD_SENSOR_TIMESTAMP = _mscl.MipTypes_CMD_SENSOR_TIMESTAMP - CMD_ACCEL_BIAS = _mscl.MipTypes_CMD_ACCEL_BIAS - CMD_GYRO_BIAS = _mscl.MipTypes_CMD_GYRO_BIAS - CMD_CAP_GYRO_BIAS = _mscl.MipTypes_CMD_CAP_GYRO_BIAS - CMD_MAG_HARD_IRON_OFFSET = _mscl.MipTypes_CMD_MAG_HARD_IRON_OFFSET - CMD_MAG_SOFT_IRON_MATRIX = _mscl.MipTypes_CMD_MAG_SOFT_IRON_MATRIX - CMD_CF_REALIGN_UP = _mscl.MipTypes_CMD_CF_REALIGN_UP - CMD_CF_REALIGN_NORTH = _mscl.MipTypes_CMD_CF_REALIGN_NORTH - CMD_CONING_SCULLING = _mscl.MipTypes_CMD_CONING_SCULLING - CMD_UART_BAUD_RATE = _mscl.MipTypes_CMD_UART_BAUD_RATE - CMD_GPIO_CONFIGURATION = _mscl.MipTypes_CMD_GPIO_CONFIGURATION - CMD_GPIO_STATE = _mscl.MipTypes_CMD_GPIO_STATE - CMD_ODOMETER_SETTINGS = _mscl.MipTypes_CMD_ODOMETER_SETTINGS - CMD_LOWPASS_FILTER_SETTINGS = _mscl.MipTypes_CMD_LOWPASS_FILTER_SETTINGS - CMD_COMPLEMENTARY_FILTER_SETTINGS = _mscl.MipTypes_CMD_COMPLEMENTARY_FILTER_SETTINGS - CMD_SENSOR_RANGE = _mscl.MipTypes_CMD_SENSOR_RANGE - CMD_SUPPORTED_SENSOR_RANGES = _mscl.MipTypes_CMD_SUPPORTED_SENSOR_RANGES - CMD_LOWPASS_ANTIALIASING_FILTER = _mscl.MipTypes_CMD_LOWPASS_ANTIALIASING_FILTER - CMD_DATA_STREAM_FORMAT = _mscl.MipTypes_CMD_DATA_STREAM_FORMAT - CMD_POWER_STATES = _mscl.MipTypes_CMD_POWER_STATES - CMD_GPS_STARTUP_SETTINGS = _mscl.MipTypes_CMD_GPS_STARTUP_SETTINGS - CMD_DEVICE_STATUS = _mscl.MipTypes_CMD_DEVICE_STATUS - CMD_EF_RESET_FILTER = _mscl.MipTypes_CMD_EF_RESET_FILTER - CMD_EF_INIT_ATTITUDE = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE - CMD_EF_INIT_HEADING = _mscl.MipTypes_CMD_EF_INIT_HEADING - CMD_EF_INIT_ATTITUDE_FROM_AHRS = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE_FROM_AHRS - CMD_EF_RUN_FILTER = _mscl.MipTypes_CMD_EF_RUN_FILTER - CMD_EF_VEHIC_DYNAMICS_MODE = _mscl.MipTypes_CMD_EF_VEHIC_DYNAMICS_MODE - CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER - CMD_EF_SENS_VEHIC_FRAME_OFFSET = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_OFFSET - CMD_EF_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_ANTENNA_OFFSET - CMD_EF_BIAS_EST_CTRL = _mscl.MipTypes_CMD_EF_BIAS_EST_CTRL - CMD_EF_GNSS_SRC_CTRL = _mscl.MipTypes_CMD_EF_GNSS_SRC_CTRL - CMD_EF_EXTERN_GNSS_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_GNSS_UPDATE - CMD_EF_EXTERN_HEADING_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_HEADING_UPDATE - CMD_EF_HEADING_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_HEADING_UPDATE_CTRL - CMD_EF_AUTO_INIT_CTRL = _mscl.MipTypes_CMD_EF_AUTO_INIT_CTRL - CMD_EF_ACCEL_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_ACCEL_WHT_NSE_STD_DEV - CMD_EF_GYRO_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_GYRO_WHT_NSE_STD_DEV - CMD_EF_ACCEL_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_ACCEL_BIAS_MODEL_PARAMS - CMD_EF_GYRO_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_GYRO_BIAS_MODEL_PARAMS - CMD_EF_ZERO_VEL_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_VEL_UPDATE_CTRL - CMD_EF_EXT_HEADING_UPDATE_TS = _mscl.MipTypes_CMD_EF_EXT_HEADING_UPDATE_TS - CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL - CMD_EF_TARE_ORIENT = _mscl.MipTypes_CMD_EF_TARE_ORIENT - CMD_EF_CMDED_ZERO_VEL_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_VEL_UPDATE - CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE - CMD_EF_SET_REF_POSITION = _mscl.MipTypes_CMD_EF_SET_REF_POSITION - CMD_EF_MAG_CAPTURE_AUTO_CAL = _mscl.MipTypes_CMD_EF_MAG_CAPTURE_AUTO_CAL - CMD_EF_GRAVITY_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_STD_DEV - CMD_EF_PRESS_ALT_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_PRESS_ALT_NOISE_STD_DEV - CMD_EF_GRAVITY_NOISE_MINIMUM = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_MINIMUM - CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE - CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE - CMD_EF_ENABLE_DISABLE_MEASUREMENTS = _mscl.MipTypes_CMD_EF_ENABLE_DISABLE_MEASUREMENTS - CMD_EF_MAG_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_MAG_NOISE_STD_DEV - CMD_EF_DECLINATION_SRC = _mscl.MipTypes_CMD_EF_DECLINATION_SRC - CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE - CMD_EF_ALTITUDE_AID_CTRL = _mscl.MipTypes_CMD_EF_ALTITUDE_AID_CTRL - CMD_EF_PITCH_ROLL_AID_CTRL = _mscl.MipTypes_CMD_EF_PITCH_ROLL_AID_CTRL - CMD_EF_INCLINATION_SRC = _mscl.MipTypes_CMD_EF_INCLINATION_SRC - CMD_EF_FIELD_MAGNITUDE_SRC = _mscl.MipTypes_CMD_EF_FIELD_MAGNITUDE_SRC - CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM - CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT - CMD_EF_AIDING_MEASUREMENT_ENABLE = _mscl.MipTypes_CMD_EF_AIDING_MEASUREMENT_ENABLE - CMD_EF_INITIALIZATION_CONFIG = _mscl.MipTypes_CMD_EF_INITIALIZATION_CONFIG - CMD_EF_ADAPTIVE_FILTER_OPTIONS = _mscl.MipTypes_CMD_EF_ADAPTIVE_FILTER_OPTIONS - CMD_EF_MULTI_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_MULTI_ANTENNA_OFFSET - CMD_EF_RELATIVE_POSITION_REF = _mscl.MipTypes_CMD_EF_RELATIVE_POSITION_REF - CMD_EF_LEVER_ARM_OFFSET_REF = _mscl.MipTypes_CMD_EF_LEVER_ARM_OFFSET_REF - CMD_EF_EXTERN_SPEED_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_SPEED_UPDATE - CMD_EF_SPEED_MEASUREMENT_OFFSET = _mscl.MipTypes_CMD_EF_SPEED_MEASUREMENT_OFFSET - CMD_EF_VERTICAL_GYRO_CONSTRAINT = _mscl.MipTypes_CMD_EF_VERTICAL_GYRO_CONSTRAINT - CMD_EF_WHEELED_VEHICLE_CONSTRAINT = _mscl.MipTypes_CMD_EF_WHEELED_VEHICLE_CONSTRAINT - CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL = _mscl.MipTypes_CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL - CMD_GNSS_RECEIVER_INFO = _mscl.MipTypes_CMD_GNSS_RECEIVER_INFO - CMD_GNSS_SIGNAL_CONFIG = _mscl.MipTypes_CMD_GNSS_SIGNAL_CONFIG - CMD_GNSS_SPARTN_CONFIG = _mscl.MipTypes_CMD_GNSS_SPARTN_CONFIG - CMD_GNSS_RTK_CONFIG = _mscl.MipTypes_CMD_GNSS_RTK_CONFIG - CMD_INTERFACE_CONTROL = _mscl.MipTypes_CMD_INTERFACE_CONTROL - CMD_COMMUNICATION_MODE = _mscl.MipTypes_CMD_COMMUNICATION_MODE - CMD_HARDWARE_CTRL = _mscl.MipTypes_CMD_HARDWARE_CTRL - CMD_GET_ANALOG_DISPLACEMENT_CALS = _mscl.MipTypes_CMD_GET_ANALOG_DISPLACEMENT_CALS - CMD_DISPLACEMENT_OUTPUT_RATE = _mscl.MipTypes_CMD_DISPLACEMENT_OUTPUT_RATE - CMD_DISPLACEMENT_DEVICE_TIME = _mscl.MipTypes_CMD_DISPLACEMENT_DEVICE_TIME - CMD_RTK_DEVICE_STATUS_FLAGS = _mscl.MipTypes_CMD_RTK_DEVICE_STATUS_FLAGS - CMD_RTK_ACTIVATION_CODE = _mscl.MipTypes_CMD_RTK_ACTIVATION_CODE - CMD_AIDING_FRAME_CONFIG = _mscl.MipTypes_CMD_AIDING_FRAME_CONFIG - CMD_AIDING_ECHO_CONTROL = _mscl.MipTypes_CMD_AIDING_ECHO_CONTROL - CMD_AIDING_POS_ECEF = _mscl.MipTypes_CMD_AIDING_POS_ECEF - CMD_AIDING_POS_LLH = _mscl.MipTypes_CMD_AIDING_POS_LLH - CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID - CMD_AIDING_VEL_ECEF = _mscl.MipTypes_CMD_AIDING_VEL_ECEF - CMD_AIDING_VEL_NED = _mscl.MipTypes_CMD_AIDING_VEL_NED - CMD_AIDING_VEL_BODY_FRAME = _mscl.MipTypes_CMD_AIDING_VEL_BODY_FRAME - CMD_AIDING_HEADING_TRUE = _mscl.MipTypes_CMD_AIDING_HEADING_TRUE - CMD_AIDING_MAGNETIC_FIELD = _mscl.MipTypes_CMD_AIDING_MAGNETIC_FIELD - CMD_AIDING_PRESSURE = _mscl.MipTypes_CMD_AIDING_PRESSURE - CH_FIELD_SENSOR_RAW_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_ACCEL_VEC - CH_FIELD_SENSOR_RAW_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_GYRO_VEC - CH_FIELD_SENSOR_RAW_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_MAG_VEC - CH_FIELD_SENSOR_SCALED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_ACCEL_VEC - CH_FIELD_SENSOR_SCALED_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_GYRO_VEC - CH_FIELD_SENSOR_SCALED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_MAG_VEC - CH_FIELD_SENSOR_DELTA_THETA_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_THETA_VEC - CH_FIELD_SENSOR_DELTA_VELOCITY_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_VELOCITY_VEC - CH_FIELD_SENSOR_ORIENTATION_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_MATRIX - CH_FIELD_SENSOR_ORIENTATION_QUATERNION = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_QUATERNION - CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX - CH_FIELD_SENSOR_EULER_ANGLES = _mscl.MipTypes_CH_FIELD_SENSOR_EULER_ANGLES - CH_FIELD_SENSOR_INTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_INTERNAL_TIMESTAMP - CH_FIELD_SENSOR_BEACONED_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_BEACONED_TIMESTAMP - CH_FIELD_SENSOR_STABILIZED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_MAG_VEC - CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC - CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP - CH_FIELD_SENSOR_TEMPERATURE_STATISTICS = _mscl.MipTypes_CH_FIELD_SENSOR_TEMPERATURE_STATISTICS - CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE - CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE - CH_FIELD_SENSOR_OVERRANGE_STATUS = _mscl.MipTypes_CH_FIELD_SENSOR_OVERRANGE_STATUS - CH_FIELD_SENSOR_ODOMETER_DATA = _mscl.MipTypes_CH_FIELD_SENSOR_ODOMETER_DATA - CH_FIELD_SENSOR_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EVENT_SOURCE - CH_FIELD_SENSOR_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_TICKS - CH_FIELD_SENSOR_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TICKS - CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP - CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_LLH_POSITION - CH_FIELD_GNSS_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_POSITION - CH_FIELD_GNSS_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_NED_VELOCITY - CH_FIELD_GNSS_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_VELOCITY - CH_FIELD_GNSS_DOP = _mscl.MipTypes_CH_FIELD_GNSS_DOP - CH_FIELD_GNSS_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_UTC_TIME - CH_FIELD_GNSS_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_GPS_TIME - CH_FIELD_GNSS_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO - CH_FIELD_GNSS_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_FIX_INFO - CH_FIELD_GNSS_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_HARDWARE_STATUS - CH_FIELD_GNSS_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_INFO - CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO_2 - CH_FIELD_GNSS_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_LEAP_SECONDS - CH_FIELD_GNSS_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_INFO - CH_FIELD_GNSS_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_CORRECTION - CH_FIELD_GNSS_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_RF_ERROR_DETECTION - CH_FIELD_GNSS_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_SATELLITE_STATUS - CH_FIELD_GNSS_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_RAW_OBSERVATION - CH_FIELD_GNSS_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_STATION_INFO - CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_EPHEMERIS - CH_FIELD_GNSS_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GLONASS_EPHEMERIS - CH_FIELD_GNSS_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_EPHEMERIS - CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_TICKS - CH_FIELD_GNSS_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TICKS - CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS - CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL - CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE - CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE - CH_FIELD_ESTFILTER_FILTER_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_FILTER_STATUS - CH_FIELD_ESTFILTER_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT - CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR - CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE - CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR - CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_MAG_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS - CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT - CH_FIELD_ESTFILTER_COMPENSATED_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_COMPENSATED_ACCEL - CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL - CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT - CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX - CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS_UNCERT - CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS - CH_FIELD_ESTFILTER_ECEF_VEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL - CH_FIELD_ESTFILTER_NED_RELATIVE_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_NED_RELATIVE_POS - CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS - CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS - CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY = _mscl.MipTypes_CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT - CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT - CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE - CH_FIELD_ESTFILTER_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_TICKS - CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS - CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_DISP_DISPLACEMENT_RAW = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_RAW - CH_FIELD_DISP_DISPLACEMENT_MM = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_MM - CH_FIELD_DISP_DISPLACEMENT_TS = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_TS - CH_FIELD_GNSS_1_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_LLH_POSITION - CH_FIELD_GNSS_1_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_POSITION - CH_FIELD_GNSS_1_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_NED_VELOCITY - CH_FIELD_GNSS_1_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_VELOCITY - CH_FIELD_GNSS_1_DOP = _mscl.MipTypes_CH_FIELD_GNSS_1_DOP - CH_FIELD_GNSS_1_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_UTC_TIME - CH_FIELD_GNSS_1_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_TIME - CH_FIELD_GNSS_1_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO - CH_FIELD_GNSS_1_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_FIX_INFO - CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_1_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_HARDWARE_STATUS - CH_FIELD_GNSS_1_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_INFO - CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_1_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO_2 - CH_FIELD_GNSS_1_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_LEAP_SECONDS - CH_FIELD_GNSS_1_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_INFO - CH_FIELD_GNSS_1_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_CORRECTION - CH_FIELD_GNSS_1_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_RF_ERROR_DETECTION - CH_FIELD_GNSS_1_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_SATELLITE_STATUS - CH_FIELD_GNSS_1_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_1_RAW_OBSERVATION - CH_FIELD_GNSS_1_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_STATION_INFO - CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_1_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_EPHEMERIS - CH_FIELD_GNSS_1_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GLONASS_EPHEMERIS - CH_FIELD_GNSS_1_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_EPHEMERIS - CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_1_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_TICKS - CH_FIELD_GNSS_1_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TICKS - CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_2_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_LLH_POSITION - CH_FIELD_GNSS_2_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_POSITION - CH_FIELD_GNSS_2_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_NED_VELOCITY - CH_FIELD_GNSS_2_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_VELOCITY - CH_FIELD_GNSS_2_DOP = _mscl.MipTypes_CH_FIELD_GNSS_2_DOP - CH_FIELD_GNSS_2_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_UTC_TIME - CH_FIELD_GNSS_2_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_TIME - CH_FIELD_GNSS_2_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO - CH_FIELD_GNSS_2_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_FIX_INFO - CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_2_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_HARDWARE_STATUS - CH_FIELD_GNSS_2_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_INFO - CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_2_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO_2 - CH_FIELD_GNSS_2_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_LEAP_SECONDS - CH_FIELD_GNSS_2_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_INFO - CH_FIELD_GNSS_2_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_CORRECTION - CH_FIELD_GNSS_2_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_RF_ERROR_DETECTION - CH_FIELD_GNSS_2_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_SATELLITE_STATUS - CH_FIELD_GNSS_2_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_2_RAW_OBSERVATION - CH_FIELD_GNSS_2_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_STATION_INFO - CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_2_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_EPHEMERIS - CH_FIELD_GNSS_2_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GLONASS_EPHEMERIS - CH_FIELD_GNSS_2_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_EPHEMERIS - CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_2_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_TICKS - CH_FIELD_GNSS_2_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TICKS - CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_3_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_LLH_POSITION - CH_FIELD_GNSS_3_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_POSITION - CH_FIELD_GNSS_3_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_NED_VELOCITY - CH_FIELD_GNSS_3_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_VELOCITY - CH_FIELD_GNSS_3_DOP = _mscl.MipTypes_CH_FIELD_GNSS_3_DOP - CH_FIELD_GNSS_3_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_UTC_TIME - CH_FIELD_GNSS_3_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_TIME - CH_FIELD_GNSS_3_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO - CH_FIELD_GNSS_3_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_FIX_INFO - CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_3_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_HARDWARE_STATUS - CH_FIELD_GNSS_3_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_INFO - CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_3_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO_2 - CH_FIELD_GNSS_3_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_LEAP_SECONDS - CH_FIELD_GNSS_3_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_INFO - CH_FIELD_GNSS_3_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_CORRECTION - CH_FIELD_GNSS_3_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_RF_ERROR_DETECTION - CH_FIELD_GNSS_3_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_SATELLITE_STATUS - CH_FIELD_GNSS_3_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_3_RAW_OBSERVATION - CH_FIELD_GNSS_3_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_STATION_INFO - CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_3_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_EPHEMERIS - CH_FIELD_GNSS_3_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GLONASS_EPHEMERIS - CH_FIELD_GNSS_3_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_EPHEMERIS - CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_3_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_TICKS - CH_FIELD_GNSS_3_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TICKS - CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_4_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_LLH_POSITION - CH_FIELD_GNSS_4_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_POSITION - CH_FIELD_GNSS_4_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_NED_VELOCITY - CH_FIELD_GNSS_4_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_VELOCITY - CH_FIELD_GNSS_4_DOP = _mscl.MipTypes_CH_FIELD_GNSS_4_DOP - CH_FIELD_GNSS_4_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_UTC_TIME - CH_FIELD_GNSS_4_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_TIME - CH_FIELD_GNSS_4_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO - CH_FIELD_GNSS_4_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_FIX_INFO - CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_4_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_HARDWARE_STATUS - CH_FIELD_GNSS_4_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_INFO - CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_4_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO_2 - CH_FIELD_GNSS_4_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_LEAP_SECONDS - CH_FIELD_GNSS_4_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_INFO - CH_FIELD_GNSS_4_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_CORRECTION - CH_FIELD_GNSS_4_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_RF_ERROR_DETECTION - CH_FIELD_GNSS_4_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_SATELLITE_STATUS - CH_FIELD_GNSS_4_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_4_RAW_OBSERVATION - CH_FIELD_GNSS_4_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_STATION_INFO - CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_4_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_EPHEMERIS - CH_FIELD_GNSS_4_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GLONASS_EPHEMERIS - CH_FIELD_GNSS_4_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_EPHEMERIS - CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_4_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_TICKS - CH_FIELD_GNSS_4_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TICKS - CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_5_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_LLH_POSITION - CH_FIELD_GNSS_5_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_POSITION - CH_FIELD_GNSS_5_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_NED_VELOCITY - CH_FIELD_GNSS_5_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_VELOCITY - CH_FIELD_GNSS_5_DOP = _mscl.MipTypes_CH_FIELD_GNSS_5_DOP - CH_FIELD_GNSS_5_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_UTC_TIME - CH_FIELD_GNSS_5_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_TIME - CH_FIELD_GNSS_5_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO - CH_FIELD_GNSS_5_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_FIX_INFO - CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_5_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_HARDWARE_STATUS - CH_FIELD_GNSS_5_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_INFO - CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_5_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO_2 - CH_FIELD_GNSS_5_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_LEAP_SECONDS - CH_FIELD_GNSS_5_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_INFO - CH_FIELD_GNSS_5_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_CORRECTION - CH_FIELD_GNSS_5_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_RF_ERROR_DETECTION - CH_FIELD_GNSS_5_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_SATELLITE_STATUS - CH_FIELD_GNSS_5_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_5_RAW_OBSERVATION - CH_FIELD_GNSS_5_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_STATION_INFO - CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_5_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_EPHEMERIS - CH_FIELD_GNSS_5_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GLONASS_EPHEMERIS - CH_FIELD_GNSS_5_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_EPHEMERIS - CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_5_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_TICKS - CH_FIELD_GNSS_5_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TICKS - CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_SYSTEM_BUILT_IN_TEST = _mscl.MipTypes_CH_FIELD_SYSTEM_BUILT_IN_TEST - CH_FIELD_SYSTEM_TIME_SYNC_STATUS = _mscl.MipTypes_CH_FIELD_SYSTEM_TIME_SYNC_STATUS - CH_FIELD_SYSTEM_GPIO_STATE = _mscl.MipTypes_CH_FIELD_SYSTEM_GPIO_STATE - CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE - CH_FIELD_SYSTEM_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_TICKS - CH_FIELD_SYSTEM_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TICKS - CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME - MIN_SHARED_FIELD_DESCRIPTOR = _mscl.MipTypes_MIN_SHARED_FIELD_DESCRIPTOR - CH_UNKNOWN = _mscl.MipTypes_CH_UNKNOWN - CH_X = _mscl.MipTypes_CH_X - CH_Y = _mscl.MipTypes_CH_Y - CH_Z = _mscl.MipTypes_CH_Z - CH_MATRIX = _mscl.MipTypes_CH_MATRIX - CH_QUATERNION = _mscl.MipTypes_CH_QUATERNION - CH_ROLL = _mscl.MipTypes_CH_ROLL - CH_PITCH = _mscl.MipTypes_CH_PITCH - CH_YAW = _mscl.MipTypes_CH_YAW - CH_TICK = _mscl.MipTypes_CH_TICK - CH_TIMESTAMP = _mscl.MipTypes_CH_TIMESTAMP - CH_STATUS = _mscl.MipTypes_CH_STATUS - CH_TIME_OF_WEEK = _mscl.MipTypes_CH_TIME_OF_WEEK - CH_WEEK_NUMBER = _mscl.MipTypes_CH_WEEK_NUMBER - CH_LATITUDE = _mscl.MipTypes_CH_LATITUDE - CH_LONGITUDE = _mscl.MipTypes_CH_LONGITUDE - CH_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CH_HEIGHT_ABOVE_ELLIPSOID - CH_HEIGHT_ABOVE_MSL = _mscl.MipTypes_CH_HEIGHT_ABOVE_MSL - CH_HORIZONTAL_ACCURACY = _mscl.MipTypes_CH_HORIZONTAL_ACCURACY - CH_VERTICAL_ACCURACY = _mscl.MipTypes_CH_VERTICAL_ACCURACY - CH_POSITION_ACCURACY = _mscl.MipTypes_CH_POSITION_ACCURACY - CH_NORTH = _mscl.MipTypes_CH_NORTH - CH_EAST = _mscl.MipTypes_CH_EAST - CH_DOWN = _mscl.MipTypes_CH_DOWN - CH_SPEED = _mscl.MipTypes_CH_SPEED - CH_GROUND_SPEED = _mscl.MipTypes_CH_GROUND_SPEED - CH_HEADING = _mscl.MipTypes_CH_HEADING - CH_SPEED_ACCURACY = _mscl.MipTypes_CH_SPEED_ACCURACY - CH_HEADING_ACCURACY = _mscl.MipTypes_CH_HEADING_ACCURACY - CH_VELOCITY_ACCURACY = _mscl.MipTypes_CH_VELOCITY_ACCURACY - CH_GEOMETRIC_DOP = _mscl.MipTypes_CH_GEOMETRIC_DOP - CH_POSITION_DOP = _mscl.MipTypes_CH_POSITION_DOP - CH_HORIZONTAL_DOP = _mscl.MipTypes_CH_HORIZONTAL_DOP - CH_VERTICAL_DOP = _mscl.MipTypes_CH_VERTICAL_DOP - CH_TIME_DOP = _mscl.MipTypes_CH_TIME_DOP - CH_NORTHING_DOP = _mscl.MipTypes_CH_NORTHING_DOP - CH_EASTING_DOP = _mscl.MipTypes_CH_EASTING_DOP - CH_FLAGS = _mscl.MipTypes_CH_FLAGS - CH_BIAS = _mscl.MipTypes_CH_BIAS - CH_DRIFT = _mscl.MipTypes_CH_DRIFT - CH_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_ACCURACY_ESTIMATE - CH_FIX_TYPE = _mscl.MipTypes_CH_FIX_TYPE - CH_SV_COUNT = _mscl.MipTypes_CH_SV_COUNT - CH_CHANNEL = _mscl.MipTypes_CH_CHANNEL - CH_ID = _mscl.MipTypes_CH_ID - CH_CARRIER_TO_NOISE_RATIO = _mscl.MipTypes_CH_CARRIER_TO_NOISE_RATIO - CH_AZIMUTH = _mscl.MipTypes_CH_AZIMUTH - CH_ELEVATION = _mscl.MipTypes_CH_ELEVATION - CH_SENSOR_STATE = _mscl.MipTypes_CH_SENSOR_STATE - CH_ANTENNA_STATE = _mscl.MipTypes_CH_ANTENNA_STATE - CH_ANTENNA_POWER = _mscl.MipTypes_CH_ANTENNA_POWER - CH_FILTER_STATE = _mscl.MipTypes_CH_FILTER_STATE - CH_DYNAMICS_MODE = _mscl.MipTypes_CH_DYNAMICS_MODE - CH_MAGNITUDE = _mscl.MipTypes_CH_MAGNITUDE - CH_HEADING_UNCERTAINTY = _mscl.MipTypes_CH_HEADING_UNCERTAINTY - CH_SOURCE = _mscl.MipTypes_CH_SOURCE - CH_INCLINATION = _mscl.MipTypes_CH_INCLINATION - CH_DECLINATION = _mscl.MipTypes_CH_DECLINATION - CH_PRESSURE = _mscl.MipTypes_CH_PRESSURE - CH_AGE = _mscl.MipTypes_CH_AGE - CH_NUM_CHANNELS = _mscl.MipTypes_CH_NUM_CHANNELS - CH_CORRECTION = _mscl.MipTypes_CH_CORRECTION - CH_RATE_CORRECTION = _mscl.MipTypes_CH_RATE_CORRECTION - CH_GEOMETRIC_ALTITUDE = _mscl.MipTypes_CH_GEOMETRIC_ALTITUDE - CH_GEOPOTENTIAL_ALTITUDE = _mscl.MipTypes_CH_GEOPOTENTIAL_ALTITUDE - CH_TEMPERATURE = _mscl.MipTypes_CH_TEMPERATURE - CH_DENSITY = _mscl.MipTypes_CH_DENSITY - CH_ALTITUDE = _mscl.MipTypes_CH_ALTITUDE - CH_DISPLACEMENT = _mscl.MipTypes_CH_DISPLACEMENT - CH_MAX_TEMP = _mscl.MipTypes_CH_MAX_TEMP - CH_MIN_TEMP = _mscl.MipTypes_CH_MIN_TEMP - CH_MEAN_TEMP = _mscl.MipTypes_CH_MEAN_TEMP - CH_BIAS_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_BIAS_ACCURACY_ESTIMATE - CH_DRIFT_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_DRIFT_ACCURACY_ESTIMATE - CH_SECONDS = _mscl.MipTypes_CH_SECONDS - CH_NUM_PACKETS = _mscl.MipTypes_CH_NUM_PACKETS - CH_GPS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GPS_CORRECTION_LATENCY - CH_GLONASS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GLONASS_CORRECTION_LATENCY - CH_GALILEO_CORRECTION_LATENCY = _mscl.MipTypes_CH_GALILEO_CORRECTION_LATENCY - CH_BEIDOU_CORRECTION_LATENCY = _mscl.MipTypes_CH_BEIDOU_CORRECTION_LATENCY - CH_HEIGHT = _mscl.MipTypes_CH_HEIGHT - CH_HEALTH = _mscl.MipTypes_CH_HEALTH - CH_INDEX = _mscl.MipTypes_CH_INDEX - CH_COUNT = _mscl.MipTypes_CH_COUNT - CH_SIGNAL_STRENGTH = _mscl.MipTypes_CH_SIGNAL_STRENGTH - CH_SIGNAL_QUALITY = _mscl.MipTypes_CH_SIGNAL_QUALITY - CH_RANGE = _mscl.MipTypes_CH_RANGE - CH_RANGE_UNC = _mscl.MipTypes_CH_RANGE_UNC - CH_ALPHA = _mscl.MipTypes_CH_ALPHA - CH_BETA = _mscl.MipTypes_CH_BETA - CH_DISTURBANCE_FLAGS = _mscl.MipTypes_CH_DISTURBANCE_FLAGS - CH_CARRIER_PHASE = _mscl.MipTypes_CH_CARRIER_PHASE - CH_CARRIER_PHASE_UNC = _mscl.MipTypes_CH_CARRIER_PHASE_UNC - CH_DOPPLER = _mscl.MipTypes_CH_DOPPLER - CH_DOPPLER_UNC = _mscl.MipTypes_CH_DOPPLER_UNC - CH_DELTA_TIME = _mscl.MipTypes_CH_DELTA_TIME - CH_DELTA_TICK = _mscl.MipTypes_CH_DELTA_TICK - CH_ERROR = _mscl.MipTypes_CH_ERROR - CH_ERROR_UNC = _mscl.MipTypes_CH_ERROR_UNC - CH_W = _mscl.MipTypes_CH_W - CH_M0 = _mscl.MipTypes_CH_M0 - CH_M1 = _mscl.MipTypes_CH_M1 - CH_M2 = _mscl.MipTypes_CH_M2 - CH_M3 = _mscl.MipTypes_CH_M3 - CH_M4 = _mscl.MipTypes_CH_M4 - CH_M5 = _mscl.MipTypes_CH_M5 - CH_M6 = _mscl.MipTypes_CH_M6 - CH_M7 = _mscl.MipTypes_CH_M7 - CH_M8 = _mscl.MipTypes_CH_M8 - CH_NANOSECONDS = _mscl.MipTypes_CH_NANOSECONDS - CH_VALID_FLAGS = _mscl.MipTypes_CH_VALID_FLAGS - CH_PPS_VALID = _mscl.MipTypes_CH_PPS_VALID - CH_LAST_PPS = _mscl.MipTypes_CH_LAST_PPS - CH_UDREI = _mscl.MipTypes_CH_UDREI - CH_PSEUDORANGE_CORRECTION = _mscl.MipTypes_CH_PSEUDORANGE_CORRECTION - CH_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_IONOSPHERIC_CORRECTION - CH_JAMMING_STATE = _mscl.MipTypes_CH_JAMMING_STATE - CH_SPOOFING_STATE = _mscl.MipTypes_CH_SPOOFING_STATE - CH_SYSTEM_ID = _mscl.MipTypes_CH_SYSTEM_ID - CH_SATELLITE_ID = _mscl.MipTypes_CH_SATELLITE_ID - CH_BIT_SYSTEM_GENERAL = _mscl.MipTypes_CH_BIT_SYSTEM_GENERAL - CH_BIT_SYSTEM_PROCESS = _mscl.MipTypes_CH_BIT_SYSTEM_PROCESS - CH_BIT_IMU_GENERAL = _mscl.MipTypes_CH_BIT_IMU_GENERAL - CH_BIT_IMU_SENSORS = _mscl.MipTypes_CH_BIT_IMU_SENSORS - CH_BIT_IMU_FACTORY_BITS = _mscl.MipTypes_CH_BIT_IMU_FACTORY_BITS - CH_BIT_FILTER_GENERAL = _mscl.MipTypes_CH_BIT_FILTER_GENERAL - CH_BIT_GNSS_GENERAL = _mscl.MipTypes_CH_BIT_GNSS_GENERAL - CH_BIT_GNSS_RECEIVERS = _mscl.MipTypes_CH_BIT_GNSS_RECEIVERS - - @staticmethod - def channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - - @staticmethod - def getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - - @staticmethod - def getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - - @staticmethod - def getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - - @staticmethod - def getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - - @staticmethod - def getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - - @staticmethod - def isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - - @staticmethod - def isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - - @staticmethod - def channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - - @staticmethod - def channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - - @staticmethod - def channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - - def __init__(self): - _mscl.MipTypes_swiginit(self, _mscl.new_MipTypes()) - __swig_destroy__ = _mscl.delete_MipTypes - -# Register MipTypes in _mscl: -_mscl.MipTypes_swigregister(MipTypes) - -def MipTypes_channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - -def MipTypes_getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - -def MipTypes_getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - -def MipTypes_getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - -def MipTypes_getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - -def MipTypes_getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - -def MipTypes_isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - -def MipTypes_isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - -def MipTypes_channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - -def MipTypes_channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - -def MipTypes_channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - -class MipChannelIdentifier(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - GNSS_RECEIVER_ID = _mscl.MipChannelIdentifier_GNSS_RECEIVER_ID - GNSS_BASE_STATION_ID = _mscl.MipChannelIdentifier_GNSS_BASE_STATION_ID - GNSS_CONSTELLATION = _mscl.MipChannelIdentifier_GNSS_CONSTELLATION - GNSS_SATELLITE_ID = _mscl.MipChannelIdentifier_GNSS_SATELLITE_ID - GNSS_SIGNAL_ID = _mscl.MipChannelIdentifier_GNSS_SIGNAL_ID - AIDING_MEASUREMENT_TYPE = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_TYPE - GNSS_RF_BAND = _mscl.MipChannelIdentifier_GNSS_RF_BAND - AIDING_MEASUREMENT_FRAME_ID = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_FRAME_ID - GNSS = _mscl.MipChannelIdentifier_GNSS - DUAL_ANTENNA = _mscl.MipChannelIdentifier_DUAL_ANTENNA - HEADING = _mscl.MipChannelIdentifier_HEADING - PRESSURE = _mscl.MipChannelIdentifier_PRESSURE - MAGNETOMETER = _mscl.MipChannelIdentifier_MAGNETOMETER - SPEED = _mscl.MipChannelIdentifier_SPEED - AIDING_POS_ECEF = _mscl.MipChannelIdentifier_AIDING_POS_ECEF - AIDING_POS_LLH = _mscl.MipChannelIdentifier_AIDING_POS_LLH - AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipChannelIdentifier_AIDING_HEIGHT_ABOVE_ELLIPSOID - AIDING_VEL_ECEF = _mscl.MipChannelIdentifier_AIDING_VEL_ECEF - AIDING_VEL_NED = _mscl.MipChannelIdentifier_AIDING_VEL_NED - AIDING_VEL_BODY_FRAME = _mscl.MipChannelIdentifier_AIDING_VEL_BODY_FRAME - AIDING_HEADING_TRUE = _mscl.MipChannelIdentifier_AIDING_HEADING_TRUE - AIDING_MAGNETIC_FIELD = _mscl.MipChannelIdentifier_AIDING_MAGNETIC_FIELD - AIDING_PRESSURE = _mscl.MipChannelIdentifier_AIDING_PRESSURE - UNKNOWN_CONSTELLATION = _mscl.MipChannelIdentifier_UNKNOWN_CONSTELLATION - GPS = _mscl.MipChannelIdentifier_GPS - GLONASS = _mscl.MipChannelIdentifier_GLONASS - GALILEO = _mscl.MipChannelIdentifier_GALILEO - BEIDOU = _mscl.MipChannelIdentifier_BEIDOU - UNKNOWN_SIGNAL = _mscl.MipChannelIdentifier_UNKNOWN_SIGNAL - GPS_L1CA = _mscl.MipChannelIdentifier_GPS_L1CA - GPS_L1P = _mscl.MipChannelIdentifier_GPS_L1P - GPS_L1Z = _mscl.MipChannelIdentifier_GPS_L1Z - GPS_L2CA = _mscl.MipChannelIdentifier_GPS_L2CA - GPS_L2P = _mscl.MipChannelIdentifier_GPS_L2P - GPS_L2Z = _mscl.MipChannelIdentifier_GPS_L2Z - GPS_L2CL = _mscl.MipChannelIdentifier_GPS_L2CL - GPS_L2CM = _mscl.MipChannelIdentifier_GPS_L2CM - GPS_L2CML = _mscl.MipChannelIdentifier_GPS_L2CML - GPS_L5I = _mscl.MipChannelIdentifier_GPS_L5I - GPS_L5Q = _mscl.MipChannelIdentifier_GPS_L5Q - GPS_L5IQ = _mscl.MipChannelIdentifier_GPS_L5IQ - GPS_L1CD = _mscl.MipChannelIdentifier_GPS_L1CD - GPS_L1CP = _mscl.MipChannelIdentifier_GPS_L1CP - GPS_L1CDP = _mscl.MipChannelIdentifier_GPS_L1CDP - GLONASS_G1CA = _mscl.MipChannelIdentifier_GLONASS_G1CA - GLONASS_G1P = _mscl.MipChannelIdentifier_GLONASS_G1P - GLONASS_G2C = _mscl.MipChannelIdentifier_GLONASS_G2C - GLONASS_G2P = _mscl.MipChannelIdentifier_GLONASS_G2P - GALILEO_E1C = _mscl.MipChannelIdentifier_GALILEO_E1C - GALILEO_E1A = _mscl.MipChannelIdentifier_GALILEO_E1A - GALILEO_E1B = _mscl.MipChannelIdentifier_GALILEO_E1B - GALILEO_E1BC = _mscl.MipChannelIdentifier_GALILEO_E1BC - GALILEO_E1ABC = _mscl.MipChannelIdentifier_GALILEO_E1ABC - GALILEO_E6C = _mscl.MipChannelIdentifier_GALILEO_E6C - GALILEO_E6A = _mscl.MipChannelIdentifier_GALILEO_E6A - GALILEO_E6B = _mscl.MipChannelIdentifier_GALILEO_E6B - GALILEO_E6BC = _mscl.MipChannelIdentifier_GALILEO_E6BC - GALILEO_E6ABC = _mscl.MipChannelIdentifier_GALILEO_E6ABC - GALILEO_E5BI = _mscl.MipChannelIdentifier_GALILEO_E5BI - GALILEO_E5BQ = _mscl.MipChannelIdentifier_GALILEO_E5BQ - GALILEO_E5BIQ = _mscl.MipChannelIdentifier_GALILEO_E5BIQ - GALILEO_E5ABI = _mscl.MipChannelIdentifier_GALILEO_E5ABI - GALILEO_E5ABQ = _mscl.MipChannelIdentifier_GALILEO_E5ABQ - GALILEO_E5ABIQ = _mscl.MipChannelIdentifier_GALILEO_E5ABIQ - GALILEO_E5AI = _mscl.MipChannelIdentifier_GALILEO_E5AI - GALILEO_E5AQ = _mscl.MipChannelIdentifier_GALILEO_E5AQ - GALILEO_E5AIQ = _mscl.MipChannelIdentifier_GALILEO_E5AIQ - SBAS_L1CA = _mscl.MipChannelIdentifier_SBAS_L1CA - SBAS_L5I = _mscl.MipChannelIdentifier_SBAS_L5I - SBAS_L5Q = _mscl.MipChannelIdentifier_SBAS_L5Q - SBAS_L5IQ = _mscl.MipChannelIdentifier_SBAS_L5IQ - QZSS_L1CA = _mscl.MipChannelIdentifier_QZSS_L1CA - QZSS_LEXS = _mscl.MipChannelIdentifier_QZSS_LEXS - QZSS_LEXL = _mscl.MipChannelIdentifier_QZSS_LEXL - QZSS_LEXSL = _mscl.MipChannelIdentifier_QZSS_LEXSL - QZSS_L2CM = _mscl.MipChannelIdentifier_QZSS_L2CM - QZSS_L2CL = _mscl.MipChannelIdentifier_QZSS_L2CL - QZSS_L2CML = _mscl.MipChannelIdentifier_QZSS_L2CML - QZSS_L5I = _mscl.MipChannelIdentifier_QZSS_L5I - QZSS_L5Q = _mscl.MipChannelIdentifier_QZSS_L5Q - QZSS_L5IQ = _mscl.MipChannelIdentifier_QZSS_L5IQ - QZSS_L1CD = _mscl.MipChannelIdentifier_QZSS_L1CD - QZSS_L1CP = _mscl.MipChannelIdentifier_QZSS_L1CP - QZSS_L1CDP = _mscl.MipChannelIdentifier_QZSS_L1CDP - BEIDOU_B1I = _mscl.MipChannelIdentifier_BEIDOU_B1I - BEIDOU_B1Q = _mscl.MipChannelIdentifier_BEIDOU_B1Q - BEIDOU_B1IQ = _mscl.MipChannelIdentifier_BEIDOU_B1IQ - BEIDOU_B3I = _mscl.MipChannelIdentifier_BEIDOU_B3I - BEIDOU_B3Q = _mscl.MipChannelIdentifier_BEIDOU_B3Q - BEIDOU_B3IQ = _mscl.MipChannelIdentifier_BEIDOU_B3IQ - BEIDOU_B2I = _mscl.MipChannelIdentifier_BEIDOU_B2I - BEIDOU_B2Q = _mscl.MipChannelIdentifier_BEIDOU_B2Q - BEIDOU_B2IQ = _mscl.MipChannelIdentifier_BEIDOU_B2IQ - UNKNOWN_RF_BAND = _mscl.MipChannelIdentifier_UNKNOWN_RF_BAND - RF_BAND_L1 = _mscl.MipChannelIdentifier_RF_BAND_L1 - RF_BAND_L2 = _mscl.MipChannelIdentifier_RF_BAND_L2 - RF_BAND_L5 = _mscl.MipChannelIdentifier_RF_BAND_L5 - - def __init__(self, *args): - _mscl.MipChannelIdentifier_swiginit(self, _mscl.new_MipChannelIdentifier(*args)) - __swig_destroy__ = _mscl.delete_MipChannelIdentifier - - def identifierType(self): - return _mscl.MipChannelIdentifier_identifierType(self) - - def id(self): - return _mscl.MipChannelIdentifier_id(self) - - def hasSpecifier(self): - return _mscl.MipChannelIdentifier_hasSpecifier(self) - - def specifier(self): - return _mscl.MipChannelIdentifier_specifier(self) - - def name(self, standardizedFormat=True): - return _mscl.MipChannelIdentifier_name(self, standardizedFormat) - -# Register MipChannelIdentifier in _mscl: -_mscl.MipChannelIdentifier_swigregister(MipChannelIdentifier) - -class MipCommandBytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - id = property(_mscl.MipCommandBytes_id_get, _mscl.MipCommandBytes_id_set) - commands = property(_mscl.MipCommandBytes_commands_get, _mscl.MipCommandBytes_commands_set) - buildCmdFailed = property(_mscl.MipCommandBytes_buildCmdFailed_get, _mscl.MipCommandBytes_buildCmdFailed_set) - sendCmdFailed = property(_mscl.MipCommandBytes_sendCmdFailed_get, _mscl.MipCommandBytes_sendCmdFailed_set) - - def __init__(self, *args): - _mscl.MipCommandBytes_swiginit(self, _mscl.new_MipCommandBytes(*args)) - - def add(self, cmd): - return _mscl.MipCommandBytes_add(self, cmd) - - def valid(self): - return _mscl.MipCommandBytes_valid(self) - __swig_destroy__ = _mscl.delete_MipCommandBytes - -# Register MipCommandBytes in _mscl: -_mscl.MipCommandBytes_swigregister(MipCommandBytes) - -class AidingMeasurementInput(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - ACK_NACK = _mscl.AidingMeasurementInput_ACK_NACK - ECHO_INPUT = _mscl.AidingMeasurementInput_ECHO_INPUT - - def toMipFieldValues(self): - return _mscl.AidingMeasurementInput_toMipFieldValues(self) - - def timestamp(self, *args): - return _mscl.AidingMeasurementInput_timestamp(self, *args) - - def timebase(self): - return _mscl.AidingMeasurementInput_timebase(self) - - def frameId(self, *args): - return _mscl.AidingMeasurementInput_frameId(self, *args) - - def validFlags(self, *args): - return _mscl.AidingMeasurementInput_validFlags(self, *args) - -# Register AidingMeasurementInput in _mscl: -_mscl.AidingMeasurementInput_swigregister(AidingMeasurementInput) - -class AidingMeasurementPosition(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementPosition_X - LATITUDE = _mscl.AidingMeasurementPosition_LATITUDE - Y = _mscl.AidingMeasurementPosition_Y - LONGITUDE = _mscl.AidingMeasurementPosition_LONGITUDE - Z = _mscl.AidingMeasurementPosition_Z - HEIGHT = _mscl.AidingMeasurementPosition_HEIGHT - ALTITUDE = _mscl.AidingMeasurementPosition_ALTITUDE - - def __init__(self, *args): - _mscl.AidingMeasurementPosition_swiginit(self, _mscl.new_AidingMeasurementPosition(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPosition - - def position(self, *args): - return _mscl.AidingMeasurementPosition_position(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPosition_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementPosition_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPosition_valid(self, *args) - -# Register AidingMeasurementPosition in _mscl: -_mscl.AidingMeasurementPosition_swigregister(AidingMeasurementPosition) - -class AidingMeasurementHeight(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeight_swiginit(self, _mscl.new_AidingMeasurementHeight(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeight - - def height(self, *args): - return _mscl.AidingMeasurementHeight_height(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeight_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeight_valid(self, *args) - -# Register AidingMeasurementHeight in _mscl: -_mscl.AidingMeasurementHeight_swigregister(AidingMeasurementHeight) - -class AidingMeasurementVelocity(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementVelocity_X - NORTH = _mscl.AidingMeasurementVelocity_NORTH - Y = _mscl.AidingMeasurementVelocity_Y - EAST = _mscl.AidingMeasurementVelocity_EAST - Z = _mscl.AidingMeasurementVelocity_Z - DOWN = _mscl.AidingMeasurementVelocity_DOWN - - def __init__(self, *args): - _mscl.AidingMeasurementVelocity_swiginit(self, _mscl.new_AidingMeasurementVelocity(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementVelocity - - def velocity(self, *args): - return _mscl.AidingMeasurementVelocity_velocity(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementVelocity_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementVelocity_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementVelocity_valid(self, *args) - -# Register AidingMeasurementVelocity in _mscl: -_mscl.AidingMeasurementVelocity_swigregister(AidingMeasurementVelocity) - -class AidingMeasurementHeading(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeading_swiginit(self, _mscl.new_AidingMeasurementHeading(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeading - - def heading(self, *args): - return _mscl.AidingMeasurementHeading_heading(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeading_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeading_valid(self, *args) - -# Register AidingMeasurementHeading in _mscl: -_mscl.AidingMeasurementHeading_swigregister(AidingMeasurementHeading) - -class AidingMeasurementMagneticField(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementMagneticField_X - Y = _mscl.AidingMeasurementMagneticField_Y - Z = _mscl.AidingMeasurementMagneticField_Z - - def __init__(self, *args): - _mscl.AidingMeasurementMagneticField_swiginit(self, _mscl.new_AidingMeasurementMagneticField(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementMagneticField - - def magneticField(self, *args): - return _mscl.AidingMeasurementMagneticField_magneticField(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementMagneticField_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementMagneticField_valid(self, *args) - -# Register AidingMeasurementMagneticField in _mscl: -_mscl.AidingMeasurementMagneticField_swigregister(AidingMeasurementMagneticField) - -class AidingMeasurementPressure(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementPressure_swiginit(self, _mscl.new_AidingMeasurementPressure(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPressure - - def pressure(self, *args): - return _mscl.AidingMeasurementPressure_pressure(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPressure_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPressure_valid(self, *args) - -# Register AidingMeasurementPressure in _mscl: -_mscl.AidingMeasurementPressure_swigregister(AidingMeasurementPressure) - -class GnssReceiverInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GnssReceiverInfo_swiginit(self, _mscl.new_GnssReceiverInfo(*args)) - id = property(_mscl.GnssReceiverInfo_id_get, _mscl.GnssReceiverInfo_id_set) - targetDataClass = property(_mscl.GnssReceiverInfo_targetDataClass_get, _mscl.GnssReceiverInfo_targetDataClass_set) - description = property(_mscl.GnssReceiverInfo_description_get, _mscl.GnssReceiverInfo_description_set) - module = property(_mscl.GnssReceiverInfo_module_get, _mscl.GnssReceiverInfo_module_set) - fwId = property(_mscl.GnssReceiverInfo_fwId_get, _mscl.GnssReceiverInfo_fwId_set) - fwVersion = property(_mscl.GnssReceiverInfo_fwVersion_get, _mscl.GnssReceiverInfo_fwVersion_set) - __swig_destroy__ = _mscl.delete_GnssReceiverInfo - -# Register GnssReceiverInfo in _mscl: -_mscl.GnssReceiverInfo_swigregister(GnssReceiverInfo) -GnssReceiverInfo.INFO_NOT_FOUND = _mscl.cvar.GnssReceiverInfo_INFO_NOT_FOUND - -class DeviceCommPort(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SPECIAL = _mscl.DeviceCommPort_SPECIAL - UART = _mscl.DeviceCommPort_UART - USB = _mscl.DeviceCommPort_USB - NONE = _mscl.DeviceCommPort_NONE - MIP_COMMANDS = _mscl.DeviceCommPort_MIP_COMMANDS - MIP_DATA = _mscl.DeviceCommPort_MIP_DATA - NMEA = _mscl.DeviceCommPort_NMEA - RTCM = _mscl.DeviceCommPort_RTCM - SPARTN = _mscl.DeviceCommPort_SPARTN - ALL = _mscl.DeviceCommPort_ALL - - def __init__(self, *args): - _mscl.DeviceCommPort_swiginit(self, _mscl.new_DeviceCommPort(*args)) - - def interfaceId(self): - return _mscl.DeviceCommPort_interfaceId(self) - type = property(_mscl.DeviceCommPort_type_get, _mscl.DeviceCommPort_type_set) - id = property(_mscl.DeviceCommPort_id_get, _mscl.DeviceCommPort_id_set) - inputProtocols = property(_mscl.DeviceCommPort_inputProtocols_get, _mscl.DeviceCommPort_inputProtocols_set) - outputProtocols = property(_mscl.DeviceCommPort_outputProtocols_get, _mscl.DeviceCommPort_outputProtocols_set) - __swig_destroy__ = _mscl.delete_DeviceCommPort - -# Register DeviceCommPort in _mscl: -_mscl.DeviceCommPort_swigregister(DeviceCommPort) - -class EventTypeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTypeInfo_swiginit(self, _mscl.new_EventTypeInfo(*args)) - type = property(_mscl.EventTypeInfo_type_get, _mscl.EventTypeInfo_type_set) - maxInstances = property(_mscl.EventTypeInfo_maxInstances_get, _mscl.EventTypeInfo_maxInstances_set) - __swig_destroy__ = _mscl.delete_EventTypeInfo - -# Register EventTypeInfo in _mscl: -_mscl.EventTypeInfo_swigregister(EventTypeInfo) - -class EventSupportInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - TRIGGERS = _mscl.EventSupportInfo_TRIGGERS - ACTIONS = _mscl.EventSupportInfo_ACTIONS - query = property(_mscl.EventSupportInfo_query_get, _mscl.EventSupportInfo_query_set) - maxInstances = property(_mscl.EventSupportInfo_maxInstances_get, _mscl.EventSupportInfo_maxInstances_set) - entries = property(_mscl.EventSupportInfo_entries_get, _mscl.EventSupportInfo_entries_set) - - def __init__(self): - _mscl.EventSupportInfo_swiginit(self, _mscl.new_EventSupportInfo()) - __swig_destroy__ = _mscl.delete_EventSupportInfo - -# Register EventSupportInfo in _mscl: -_mscl.EventSupportInfo_swigregister(EventSupportInfo) - -class SensorRange(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ALL = _mscl.SensorRange_ALL - ACCEL_G = _mscl.SensorRange_ACCEL_G - GYRO_DPS = _mscl.SensorRange_GYRO_DPS - MAG_GAUSS = _mscl.SensorRange_MAG_GAUSS - PRESSURE_HPA = _mscl.SensorRange_PRESSURE_HPA - - def __init__(self): - _mscl.SensorRange_swiginit(self, _mscl.new_SensorRange()) - - def type(self): - return _mscl.SensorRange_type(self) - - def range(self): - return _mscl.SensorRange_range(self) - - def id(self): - return _mscl.SensorRange_id(self) - __swig_destroy__ = _mscl.delete_SensorRange - -# Register SensorRange in _mscl: -_mscl.SensorRange_swigregister(SensorRange) - -class SupportedSensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.SupportedSensorRanges_swiginit(self, _mscl.new_SupportedSensorRanges()) - - def options(self): - return _mscl.SupportedSensorRanges_options(self) - - def lookupRecommended(self, type, range): - return _mscl.SupportedSensorRanges_lookupRecommended(self, type, range) - __swig_destroy__ = _mscl.delete_SupportedSensorRanges - -# Register SupportedSensorRanges in _mscl: -_mscl.SupportedSensorRanges_swigregister(SupportedSensorRanges) - -class InertialTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - PORTABLE_VEHICLE = _mscl.InertialTypes_PORTABLE_VEHICLE - AUTOMOTIVE_VEHICLE = _mscl.InertialTypes_AUTOMOTIVE_VEHICLE - AIRBORNE_VEHICLE = _mscl.InertialTypes_AIRBORNE_VEHICLE - AIRBORNE_HIGH_G_VEHICLE = _mscl.InertialTypes_AIRBORNE_HIGH_G_VEHICLE - GPS_PORTABLE = _mscl.InertialTypes_GPS_PORTABLE - GPS_STATIONARY = _mscl.InertialTypes_GPS_STATIONARY - GPS_PEDESTRIAN = _mscl.InertialTypes_GPS_PEDESTRIAN - GPS_AUTOMOTIVE = _mscl.InertialTypes_GPS_AUTOMOTIVE - GPS_SEA = _mscl.InertialTypes_GPS_SEA - GPS_AIRBORNE_1G = _mscl.InertialTypes_GPS_AIRBORNE_1G - GPS_AIRBORNE_2G = _mscl.InertialTypes_GPS_AIRBORNE_2G - GPS_AIRBORNE_4G = _mscl.InertialTypes_GPS_AIRBORNE_4G - RESET_ALL_AXIS = _mscl.InertialTypes_RESET_ALL_AXIS - TARE_ROLL_AXIS = _mscl.InertialTypes_TARE_ROLL_AXIS - TARE_PITCH_AXIS = _mscl.InertialTypes_TARE_PITCH_AXIS - TARE_YAW_AXIS = _mscl.InertialTypes_TARE_YAW_AXIS - INTERNAL_GNSS_ALL = _mscl.InertialTypes_INTERNAL_GNSS_ALL - EXTERNAL_GNSS = _mscl.InertialTypes_EXTERNAL_GNSS - INTERNAL_GNSS1 = _mscl.InertialTypes_INTERNAL_GNSS1 - INTERNAL_GNSS2 = _mscl.InertialTypes_INTERNAL_GNSS2 - FIX_SBAS_CORRECTIONS = _mscl.InertialTypes_FIX_SBAS_CORRECTIONS - FIX_DGNSS_CORRECTIONS = _mscl.InertialTypes_FIX_DGNSS_CORRECTIONS - FIXTYPE_3D = _mscl.InertialTypes_FIXTYPE_3D - FIXTYPE_2D = _mscl.InertialTypes_FIXTYPE_2D - FIXTYPE_TIMEONLY = _mscl.InertialTypes_FIXTYPE_TIMEONLY - FIXTYPE_NONE = _mscl.InertialTypes_FIXTYPE_NONE - FIXTYPE_INVALID = _mscl.InertialTypes_FIXTYPE_INVALID - FIXTYPE_RTK_FLOAT = _mscl.InertialTypes_FIXTYPE_RTK_FLOAT - FIXTYPE_RTK_FIXED = _mscl.InertialTypes_FIXTYPE_RTK_FIXED - FIXTYPE_DUAL_ANTENNA_NONE = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_NONE - FIXTYPE_DUAL_ANTENNA_FLOAT = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FLOAT - FIXTYPE_DUAL_ANTENNA_FIXED = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FIXED - DATA_VALID_REC_1 = _mscl.InertialTypes_DATA_VALID_REC_1 - DATA_VALID_REC_2 = _mscl.InertialTypes_DATA_VALID_REC_2 - ANTENNA_OFFSETS_VALID = _mscl.InertialTypes_ANTENNA_OFFSETS_VALID - SVFLAG_NAVIGATION = _mscl.InertialTypes_SVFLAG_NAVIGATION - SVFLAG_HEALTHY = _mscl.InertialTypes_SVFLAG_HEALTHY - DEVICE_AHRS = _mscl.InertialTypes_DEVICE_AHRS - DEVICE_GPS = _mscl.InertialTypes_DEVICE_GPS - ON_FULL_PERFORMANCE = _mscl.InertialTypes_ON_FULL_PERFORMANCE - ON_LOW_POWER = _mscl.InertialTypes_ON_LOW_POWER - SLEEP = _mscl.InertialTypes_SLEEP - OFF = _mscl.InertialTypes_OFF - STANDARD_MIP = _mscl.InertialTypes_STANDARD_MIP - WRAPPED_RAW = _mscl.InertialTypes_WRAPPED_RAW - SENSORSTATE_OFF = _mscl.InertialTypes_SENSORSTATE_OFF - SENSORSTATE_ON = _mscl.InertialTypes_SENSORSTATE_ON - SENSORSTATE_UNKNOWN = _mscl.InertialTypes_SENSORSTATE_UNKNOWN - ANTENNASTATE_INIT = _mscl.InertialTypes_ANTENNASTATE_INIT - ANTENNASTATE_SHORT = _mscl.InertialTypes_ANTENNASTATE_SHORT - ANTENNASTATE_OPEN = _mscl.InertialTypes_ANTENNASTATE_OPEN - ANTENNASTATE_GOOD = _mscl.InertialTypes_ANTENNASTATE_GOOD - ANTENNASTATE_UNKNOWN = _mscl.InertialTypes_ANTENNASTATE_UNKNOWN - ANTENNAPOWER_OFF = _mscl.InertialTypes_ANTENNAPOWER_OFF - ANTENNAPOWER_ON = _mscl.InertialTypes_ANTENNAPOWER_ON - ANTENNAPOWER_UNKNOWN = _mscl.InertialTypes_ANTENNAPOWER_UNKNOWN - FILTERSTATE_STARTUP = _mscl.InertialTypes_FILTERSTATE_STARTUP - FILTERSTATE_INIT = _mscl.InertialTypes_FILTERSTATE_INIT - FILTERSTATE_RUNNING_SLN_VALID = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_VALID - FILTERSTATE_RUNNING_SLN_ERROR = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_ERROR - FILTERSTATE_VERT_GYRO = _mscl.InertialTypes_FILTERSTATE_VERT_GYRO - FILTERSTATE_AHRS = _mscl.InertialTypes_FILTERSTATE_AHRS - FILTERSTATE_FULL_NAV = _mscl.InertialTypes_FILTERSTATE_FULL_NAV - FILTERSTATUS_IMU_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_IMU_UNAVAILABLE - FILTERSTATUS_GPS_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_GPS_UNAVAILABLE - FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC = _mscl.InertialTypes_FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC - FILTERSTATUS_POS_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_POS_COVARIANCE_HIGH_WARN - FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN - FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN - FILTERSTATUS_NAN_IN_SOLUTION = _mscl.InertialTypes_FILTERSTATUS_NAN_IN_SOLUTION - FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN - FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN - FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN - FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN - FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_CONDITION = _mscl.InertialTypes_FILTERSTATUS_CONDITION - FILTERSTATUS_ROLL_PITCH_WARNING = _mscl.InertialTypes_FILTERSTATUS_ROLL_PITCH_WARNING - FILTERSTATUS_HEADING_WARNING = _mscl.InertialTypes_FILTERSTATUS_HEADING_WARNING - FILTERSTATUS_POSITION_WARNING = _mscl.InertialTypes_FILTERSTATUS_POSITION_WARNING - FILTERSTATUS_VELOCITY_WARNING = _mscl.InertialTypes_FILTERSTATUS_VELOCITY_WARNING - FILTERSTATUS_IMU_BIAS_WARNING = _mscl.InertialTypes_FILTERSTATUS_IMU_BIAS_WARNING - FILTERSTATUS_GNSS_CLK_WARNING = _mscl.InertialTypes_FILTERSTATUS_GNSS_CLK_WARNING - FILTERSTATUS_ANT_LEVER_ARM_WARNING = _mscl.InertialTypes_FILTERSTATUS_ANT_LEVER_ARM_WARNING - FILTERSTATUS_MOUNTING_TRANSFORM_WARNING = _mscl.InertialTypes_FILTERSTATUS_MOUNTING_TRANSFORM_WARNING - FILTERSTATUS_ATT_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_ATT_NOT_INIT - FILTERSTATUS_POS_VEL_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_POS_VEL_NOT_INIT - STABLE = _mscl.InertialTypes_STABLE - CONVERGING = _mscl.InertialTypes_CONVERGING - UNSTABLE = _mscl.InertialTypes_UNSTABLE - DGNSSBASE_UDRE_SCALE_FACTOR_1_00 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_1_00 - DGNSSBASE_UDRE_SCALE_FACTOR_0_75 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_75 - DGNSSBASE_UDRE_SCALE_FACTOR_0_50 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_50 - DGNSSBASE_UDRE_SCALE_FACTOR_0_30 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_30 - DGNSSBASE_UDRE_SCALE_FACTOR_0_20 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_20 - DGNSSBASE_UDRE_SCALE_FACTOR_0_10 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_10 - DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED - DGNSSBASE_REFERENCE_STATION_NOT_WORKING = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_NOT_WORKING - HEADINGSOURCE_NONE = _mscl.InertialTypes_HEADINGSOURCE_NONE - HEADINGSOURCE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_MAGNETOMETER - HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR - HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD = _mscl.InertialTypes_HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD - HEADINGSOURCE_GNSS_DUAL_ANTENNA = _mscl.InertialTypes_HEADINGSOURCE_GNSS_DUAL_ANTENNA - ENABLE_NONE = _mscl.InertialTypes_ENABLE_NONE - ENABLE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_ENABLE_INTERNAL_MAGNETOMETER - ENABLE_INTERNAL_GNSS = _mscl.InertialTypes_ENABLE_INTERNAL_GNSS - ENABLE_EXTERNAL_MESSAGES = _mscl.InertialTypes_ENABLE_EXTERNAL_MESSAGES - ENABLE_MAGNETOMETER_AND_GNSS = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_GNSS - ENABLE_GNSS_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_GNSS_AND_EXTERNAL - ENABLE_MAGNETOMETER_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_EXTERNAL - ENABLE_ALL = _mscl.InertialTypes_ENABLE_ALL - ENABLE_GYRO_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_BIAS_ESTIMATION - ENABLE_ACCEL_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_BIAS_ESTIMATION - ENABLE_GYRO_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_SCALE_FACTOR_ESTIMATION - ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION - ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION = _mscl.InertialTypes_ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION - ENABLE_HARD_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_HARD_IRON_AUTO_CALIBRATION - ENABLE_SOFT_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_SOFT_IRON_AUTO_CALIBRATION - NONE = _mscl.InertialTypes_NONE - WORLD_MAGNETIC_MODEL = _mscl.InertialTypes_WORLD_MAGNETIC_MODEL - MANUAL = _mscl.InertialTypes_MANUAL - ADAPTIVE_MEASUREMENT_DISABLE = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_DISABLE - ADAPTIVE_MEASUREMENT_ENABLE_FIXED = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_FIXED - ADAPTIVE_MEASUREMENT_ENABLE_AUTO = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_AUTO - GNSS_POS_VEL_AIDING = _mscl.InertialTypes_GNSS_POS_VEL_AIDING - GNSS_HEADING_AIDING = _mscl.InertialTypes_GNSS_HEADING_AIDING - ALTIMETER_AIDING = _mscl.InertialTypes_ALTIMETER_AIDING - ODOMETER_AIDING = _mscl.InertialTypes_ODOMETER_AIDING - MAGNETOMETER_AIDING = _mscl.InertialTypes_MAGNETOMETER_AIDING - EXTERNAL_HEADING_AIDING = _mscl.InertialTypes_EXTERNAL_HEADING_AIDING - EXTERNAL_ALTIMETER_AIDING = _mscl.InertialTypes_EXTERNAL_ALTIMETER_AIDING - EXTERNAL_MAGNETOMETER_AIDING = _mscl.InertialTypes_EXTERNAL_MAGNETOMETER_AIDING - BODY_FRAME_VEL_AIDING = _mscl.InertialTypes_BODY_FRAME_VEL_AIDING - ALL_AIDING_MEASUREMENTS = _mscl.InertialTypes_ALL_AIDING_MEASUREMENTS - GPS = _mscl.InertialTypes_GPS - SBAS = _mscl.InertialTypes_SBAS - GALILEO = _mscl.InertialTypes_GALILEO - BEIDOU = _mscl.InertialTypes_BEIDOU - QZSS = _mscl.InertialTypes_QZSS - GLONASS = _mscl.InertialTypes_GLONASS - FILTERING_OFF = _mscl.InertialTypes_FILTERING_OFF - FILTERING_CONSERVATIVE = _mscl.InertialTypes_FILTERING_CONSERVATIVE - FILTERING_MODERATE = _mscl.InertialTypes_FILTERING_MODERATE - FILTERING_AGGRESSIVE = _mscl.InertialTypes_FILTERING_AGGRESSIVE - FACTORY_STREAMING_OVERWRITE = _mscl.InertialTypes_FACTORY_STREAMING_OVERWRITE - FACTORY_STREAMING_MERGE = _mscl.InertialTypes_FACTORY_STREAMING_MERGE - FACTORY_STREAMING_ADDITIVE = _mscl.InertialTypes_FACTORY_STREAMING_ADDITIVE - PPS_DISABLED = _mscl.InertialTypes_PPS_DISABLED - PPS_RECEIVER_1 = _mscl.InertialTypes_PPS_RECEIVER_1 - PPS_RECEIVER_2 = _mscl.InertialTypes_PPS_RECEIVER_2 - PPS_GPIO = _mscl.InertialTypes_PPS_GPIO - PPS_GENERATED = _mscl.InertialTypes_PPS_GENERATED - GNSS_AIDING_TIGHT_COUPLING = _mscl.InertialTypes_GNSS_AIDING_TIGHT_COUPLING - GNSS_AIDING_DIFFERENTIAL = _mscl.InertialTypes_GNSS_AIDING_DIFFERENTIAL - GNSS_AIDING_INTEGER_FIX = _mscl.InertialTypes_GNSS_AIDING_INTEGER_FIX - GNSS_AIDING_GPS = _mscl.InertialTypes_GNSS_AIDING_GPS - GNSS_AIDING_GLONASS = _mscl.InertialTypes_GNSS_AIDING_GLONASS - GNSS_AIDING_GALILEO = _mscl.InertialTypes_GNSS_AIDING_GALILEO - GNSS_AIDING_BEIDOU = _mscl.InertialTypes_GNSS_AIDING_BEIDOU - GNSS_AIDING_NO_FIX = _mscl.InertialTypes_GNSS_AIDING_NO_FIX - GNSS_AIDING_CONFIG_ERROR = _mscl.InertialTypes_GNSS_AIDING_CONFIG_ERROR - AIDING_MEASUREMENT_ENABLED = _mscl.InertialTypes_AIDING_MEASUREMENT_ENABLED - AIDING_MEASUREMENT_USED = _mscl.InertialTypes_AIDING_MEASUREMENT_USED - AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH - AIDING_MEASUREMENT_WARNING_SAMPLE_TIME = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_SAMPLE_TIME - AIDING_MEASUREMENT_CONFIG_ERROR = _mscl.InertialTypes_AIDING_MEASUREMENT_CONFIG_ERROR - AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED = _mscl.InertialTypes_AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED - RTK_CORRECTION_ANTENNA_POS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_POS_RECEIVED - RTK_CORRECTION_ANTENNA_DESC_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_DESC_RECEIVED - RTK_CORRECTION_GPS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GPS_RECEIVED - RTK_CORRECTION_GLONASS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GLONASS_RECEIVED - RTK_CORRECTION_GALILEO_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GALILEO_RECEIVED - RTK_CORRECTION_BEIDOU_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_BEIDOU_RECEIVED - RTK_CORRECTION_USING_GPS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GPS_MSM - RTK_CORRECTION_USING_GLONASS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GLONASS_MSM - SIGNAL_QUALITY_NONE = _mscl.InertialTypes_SIGNAL_QUALITY_NONE - SIGNAL_QUALITY_SEARCHING = _mscl.InertialTypes_SIGNAL_QUALITY_SEARCHING - SIGNAL_QUALITY_ACQUIRED = _mscl.InertialTypes_SIGNAL_QUALITY_ACQUIRED - SIGNAL_QUALITY_UNUSABLE = _mscl.InertialTypes_SIGNAL_QUALITY_UNUSABLE - SIGNAL_QUALITY_TIME_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_TIME_LOCKED - SIGNAL_QUALITY_FULLY_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_FULLY_LOCKED - OVERRANGE_ACCEL_X = _mscl.InertialTypes_OVERRANGE_ACCEL_X - OVERRANGE_ACCEL_Y = _mscl.InertialTypes_OVERRANGE_ACCEL_Y - OVERRANGE_ACCEL_Z = _mscl.InertialTypes_OVERRANGE_ACCEL_Z - OVERRANGE_GYRO_X = _mscl.InertialTypes_OVERRANGE_GYRO_X - OVERRANGE_GYRO_Y = _mscl.InertialTypes_OVERRANGE_GYRO_Y - OVERRANGE_GYRO_Z = _mscl.InertialTypes_OVERRANGE_GYRO_Z - OVERRANGE_MAG_X = _mscl.InertialTypes_OVERRANGE_MAG_X - OVERRANGE_MAG_Y = _mscl.InertialTypes_OVERRANGE_MAG_Y - OVERRANGE_MAG_Z = _mscl.InertialTypes_OVERRANGE_MAG_Z - OVERRANGE_PRESSURE = _mscl.InertialTypes_OVERRANGE_PRESSURE - UNKNOWN_SBAS_SYSTEM = _mscl.InertialTypes_UNKNOWN_SBAS_SYSTEM - WAAS = _mscl.InertialTypes_WAAS - EGNOS = _mscl.InertialTypes_EGNOS - MSAS = _mscl.InertialTypes_MSAS - GAGAN = _mscl.InertialTypes_GAGAN - SBAS_INFO_RANGE_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_RANGE_AVAILABLE - SBAS_INFO_CORRECTIONS_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_CORRECTIONS_AVAILABLE - SBAS_INFO_INTEGRITY_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_INTEGRITY_AVAILABLE - SBAS_INFO_TEST = _mscl.InertialTypes_SBAS_INFO_TEST - JAMMING_STATE_UNKNOWN = _mscl.InertialTypes_JAMMING_STATE_UNKNOWN - JAMMING_STATE_NONE = _mscl.InertialTypes_JAMMING_STATE_NONE - JAMMING_STATE_PARTIAL = _mscl.InertialTypes_JAMMING_STATE_PARTIAL - JAMMING_STATE_SIGNIFICANT = _mscl.InertialTypes_JAMMING_STATE_SIGNIFICANT - SPOOFING_STATE_UNKNOWN = _mscl.InertialTypes_SPOOFING_STATE_UNKNOWN - SPOOFING_STATE_NONE = _mscl.InertialTypes_SPOOFING_STATE_NONE - SPOOFING_STATE_PARTIAL = _mscl.InertialTypes_SPOOFING_STATE_PARTIAL - SPOOFING_STATE_SIGNIFICANT = _mscl.InertialTypes_SPOOFING_STATE_SIGNIFICANT - - def __init__(self): - _mscl.InertialTypes_swiginit(self, _mscl.new_InertialTypes()) - __swig_destroy__ = _mscl.delete_InertialTypes - -# Register InertialTypes in _mscl: -_mscl.InertialTypes_swigregister(InertialTypes) - -class NmeaMessageFormat(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_MESSAGES = _mscl.NmeaMessageFormat_MAX_MESSAGES - GGA = _mscl.NmeaMessageFormat_GGA - GLL = _mscl.NmeaMessageFormat_GLL - GSV = _mscl.NmeaMessageFormat_GSV - RMC = _mscl.NmeaMessageFormat_RMC - VTG = _mscl.NmeaMessageFormat_VTG - HDT = _mscl.NmeaMessageFormat_HDT - ZDA = _mscl.NmeaMessageFormat_ZDA - MSRA = _mscl.NmeaMessageFormat_MSRA - MSRR = _mscl.NmeaMessageFormat_MSRR - IGNORED = _mscl.NmeaMessageFormat_IGNORED - GNSS = _mscl.NmeaMessageFormat_GNSS - GPS = _mscl.NmeaMessageFormat_GPS - GALILEO = _mscl.NmeaMessageFormat_GALILEO - GLONASS = _mscl.NmeaMessageFormat_GLONASS - - def __init__(self): - _mscl.NmeaMessageFormat_swiginit(self, _mscl.new_NmeaMessageFormat()) - __swig_destroy__ = _mscl.delete_NmeaMessageFormat - - def sentenceType(self, *args): - return _mscl.NmeaMessageFormat_sentenceType(self, *args) - - def talkerId(self, *args): - return _mscl.NmeaMessageFormat_talkerId(self, *args) - - def sourceDataClass(self, *args): - return _mscl.NmeaMessageFormat_sourceDataClass(self, *args) - - def sampleRate(self, *args): - return _mscl.NmeaMessageFormat_sampleRate(self, *args) - - @staticmethod - def talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - - @staticmethod - def dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - - @staticmethod - def supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - - @staticmethod - def toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -# Register NmeaMessageFormat in _mscl: -_mscl.NmeaMessageFormat_swigregister(NmeaMessageFormat) -NmeaMessageFormat.MAX_FREQUENCY = _mscl.cvar.NmeaMessageFormat_MAX_FREQUENCY - -def NmeaMessageFormat_talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - -def NmeaMessageFormat_dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - -def NmeaMessageFormat_supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - -def NmeaMessageFormat_toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -class Matrix_3x3(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Matrix_3x3_swiginit(self, _mscl.new_Matrix_3x3(*args)) - __swig_destroy__ = _mscl.delete_Matrix_3x3 - - def set(self, row, col, value): - return _mscl.Matrix_3x3_set(self, row, col, value) - - def at(self, row, col): - return _mscl.Matrix_3x3_at(self, row, col) - - def __str__(self): - return _mscl.Matrix_3x3___str__(self) - - def asMipFieldValues(self): - return _mscl.Matrix_3x3_asMipFieldValues(self) - -# Register Matrix_3x3 in _mscl: -_mscl.Matrix_3x3_swigregister(Matrix_3x3) - -class TimeUpdate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, timeOfWeek, weekNumber, timeAccuracy=0): - _mscl.TimeUpdate_swiginit(self, _mscl.new_TimeUpdate(timeOfWeek, weekNumber, timeAccuracy)) - __swig_destroy__ = _mscl.delete_TimeUpdate - - def timeOfWeek(self): - return _mscl.TimeUpdate_timeOfWeek(self) - - def weekNumber(self): - return _mscl.TimeUpdate_weekNumber(self) - - def timeAccuracy(self): - return _mscl.TimeUpdate_timeAccuracy(self) - -# Register TimeUpdate in _mscl: -_mscl.TimeUpdate_swigregister(TimeUpdate) - -class ZUPTSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, enable, threshold): - _mscl.ZUPTSettingsData_swiginit(self, _mscl.new_ZUPTSettingsData(enable, threshold)) - enabled = property(_mscl.ZUPTSettingsData_enabled_get, _mscl.ZUPTSettingsData_enabled_set) - threshold = property(_mscl.ZUPTSettingsData_threshold_get, _mscl.ZUPTSettingsData_threshold_set) - __swig_destroy__ = _mscl.delete_ZUPTSettingsData - -# Register ZUPTSettingsData in _mscl: -_mscl.ZUPTSettingsData_swigregister(ZUPTSettingsData) - -class FixedReferencePositionData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.FixedReferencePositionData_swiginit(self, _mscl.new_FixedReferencePositionData(*args)) - enable = property(_mscl.FixedReferencePositionData_enable_get, _mscl.FixedReferencePositionData_enable_set) - referencePosition = property(_mscl.FixedReferencePositionData_referencePosition_get, _mscl.FixedReferencePositionData_referencePosition_set) - __swig_destroy__ = _mscl.delete_FixedReferencePositionData - -# Register FixedReferencePositionData in _mscl: -_mscl.FixedReferencePositionData_swigregister(FixedReferencePositionData) - -class SBASSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enableSBAS = property(_mscl.SBASSettingsData_enableSBAS_get, _mscl.SBASSettingsData_enableSBAS_set) - enableRanging = property(_mscl.SBASSettingsData_enableRanging_get, _mscl.SBASSettingsData_enableRanging_set) - enableCorrectionData = property(_mscl.SBASSettingsData_enableCorrectionData_get, _mscl.SBASSettingsData_enableCorrectionData_set) - applyIntegrityInfo = property(_mscl.SBASSettingsData_applyIntegrityInfo_get, _mscl.SBASSettingsData_applyIntegrityInfo_set) - satellitePRNs = property(_mscl.SBASSettingsData_satellitePRNs_get, _mscl.SBASSettingsData_satellitePRNs_set) - - def __init__(self): - _mscl.SBASSettingsData_swiginit(self, _mscl.new_SBASSettingsData()) - __swig_destroy__ = _mscl.delete_SBASSettingsData - -# Register SBASSettingsData in _mscl: -_mscl.SBASSettingsData_swigregister(SBASSettingsData) - -class Constellation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - constellationID = property(_mscl.Constellation_constellationID_get, _mscl.Constellation_constellationID_set) - enabled = property(_mscl.Constellation_enabled_get, _mscl.Constellation_enabled_set) - reservedChannelCount = property(_mscl.Constellation_reservedChannelCount_get, _mscl.Constellation_reservedChannelCount_set) - maxChannels = property(_mscl.Constellation_maxChannels_get, _mscl.Constellation_maxChannels_set) - enableL1SAIF = property(_mscl.Constellation_enableL1SAIF_get, _mscl.Constellation_enableL1SAIF_set) - - def __init__(self): - _mscl.Constellation_swiginit(self, _mscl.new_Constellation()) - __swig_destroy__ = _mscl.delete_Constellation - -# Register Constellation in _mscl: -_mscl.Constellation_swigregister(Constellation) - -class ConstellationSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - maxChannelsAvailable = property(_mscl.ConstellationSettingsData_maxChannelsAvailable_get, _mscl.ConstellationSettingsData_maxChannelsAvailable_set) - maxChannelsToUse = property(_mscl.ConstellationSettingsData_maxChannelsToUse_get, _mscl.ConstellationSettingsData_maxChannelsToUse_set) - constellations = property(_mscl.ConstellationSettingsData_constellations_get, _mscl.ConstellationSettingsData_constellations_set) - - def __init__(self): - _mscl.ConstellationSettingsData_swiginit(self, _mscl.new_ConstellationSettingsData()) - __swig_destroy__ = _mscl.delete_ConstellationSettingsData - -# Register ConstellationSettingsData in _mscl: -_mscl.ConstellationSettingsData_swigregister(ConstellationSettingsData) - -class LowPassFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SET_TO_HALF_REPORTING_RATE = _mscl.LowPassFilterData_SET_TO_HALF_REPORTING_RATE - USER_SPECIFIED_CUTOFF_FREQ = _mscl.LowPassFilterData_USER_SPECIFIED_CUTOFF_FREQ - - def __init__(self, *args): - _mscl.LowPassFilterData_swiginit(self, _mscl.new_LowPassFilterData(*args)) - dataDescriptor = property(_mscl.LowPassFilterData_dataDescriptor_get, _mscl.LowPassFilterData_dataDescriptor_set) - manualFilterBandwidthConfig = property(_mscl.LowPassFilterData_manualFilterBandwidthConfig_get, _mscl.LowPassFilterData_manualFilterBandwidthConfig_set) - applyLowPassFilter = property(_mscl.LowPassFilterData_applyLowPassFilter_get, _mscl.LowPassFilterData_applyLowPassFilter_set) - cutoffFrequency = property(_mscl.LowPassFilterData_cutoffFrequency_get, _mscl.LowPassFilterData_cutoffFrequency_set) - - @staticmethod - def getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - - @staticmethod - def getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - __swig_destroy__ = _mscl.delete_LowPassFilterData - -# Register LowPassFilterData in _mscl: -_mscl.LowPassFilterData_swigregister(LowPassFilterData) - -def LowPassFilterData_getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - -def LowPassFilterData_getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - -class ComplementaryFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ComplementaryFilterData_swiginit(self, _mscl.new_ComplementaryFilterData()) - upCompensationEnabled = property(_mscl.ComplementaryFilterData_upCompensationEnabled_get, _mscl.ComplementaryFilterData_upCompensationEnabled_set) - upCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_upCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_upCompensationTimeInSeconds_set) - northCompensationEnabled = property(_mscl.ComplementaryFilterData_northCompensationEnabled_get, _mscl.ComplementaryFilterData_northCompensationEnabled_set) - northCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_northCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_northCompensationTimeInSeconds_set) - __swig_destroy__ = _mscl.delete_ComplementaryFilterData - -# Register ComplementaryFilterData in _mscl: -_mscl.ComplementaryFilterData_swigregister(ComplementaryFilterData) - -class PpsPulseInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PpsPulseInfo_swiginit(self, _mscl.new_PpsPulseInfo()) - count = property(_mscl.PpsPulseInfo_count_get, _mscl.PpsPulseInfo_count_set) - lastTimeinMS = property(_mscl.PpsPulseInfo_lastTimeinMS_get, _mscl.PpsPulseInfo_lastTimeinMS_set) - __swig_destroy__ = _mscl.delete_PpsPulseInfo - -# Register PpsPulseInfo in _mscl: -_mscl.PpsPulseInfo_swigregister(PpsPulseInfo) - -class StreamInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.StreamInfo_swiginit(self, _mscl.new_StreamInfo()) - enabled = property(_mscl.StreamInfo_enabled_get, _mscl.StreamInfo_enabled_set) - outgoingPacketsDropped = property(_mscl.StreamInfo_outgoingPacketsDropped_get, _mscl.StreamInfo_outgoingPacketsDropped_set) - __swig_destroy__ = _mscl.delete_StreamInfo - -# Register StreamInfo in _mscl: -_mscl.StreamInfo_swigregister(StreamInfo) - -class DeviceMessageInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.DeviceMessageInfo_swiginit(self, _mscl.new_DeviceMessageInfo()) - messageParsingErrors = property(_mscl.DeviceMessageInfo_messageParsingErrors_get, _mscl.DeviceMessageInfo_messageParsingErrors_set) - messagesRead = property(_mscl.DeviceMessageInfo_messagesRead_get, _mscl.DeviceMessageInfo_messagesRead_set) - lastMessageReadinMS = property(_mscl.DeviceMessageInfo_lastMessageReadinMS_get, _mscl.DeviceMessageInfo_lastMessageReadinMS_set) - __swig_destroy__ = _mscl.delete_DeviceMessageInfo - -# Register DeviceMessageInfo in _mscl: -_mscl.DeviceMessageInfo_swigregister(DeviceMessageInfo) - -class PortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PortInfo_swiginit(self, _mscl.new_PortInfo()) - bytesWritten = property(_mscl.PortInfo_bytesWritten_get, _mscl.PortInfo_bytesWritten_set) - bytesRead = property(_mscl.PortInfo_bytesRead_get, _mscl.PortInfo_bytesRead_set) - overrunsOnWrite = property(_mscl.PortInfo_overrunsOnWrite_get, _mscl.PortInfo_overrunsOnWrite_set) - overrunsOnRead = property(_mscl.PortInfo_overrunsOnRead_get, _mscl.PortInfo_overrunsOnRead_set) - __swig_destroy__ = _mscl.delete_PortInfo - -# Register PortInfo in _mscl: -_mscl.PortInfo_swigregister(PortInfo) - -class TemperatureInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.TemperatureInfo_swiginit(self, _mscl.new_TemperatureInfo()) - onBoardTemp = property(_mscl.TemperatureInfo_onBoardTemp_get, _mscl.TemperatureInfo_onBoardTemp_set) - lastReadInMS = property(_mscl.TemperatureInfo_lastReadInMS_get, _mscl.TemperatureInfo_lastReadInMS_set) - error = property(_mscl.TemperatureInfo_error_get, _mscl.TemperatureInfo_error_set) - __swig_destroy__ = _mscl.delete_TemperatureInfo - -# Register TemperatureInfo in _mscl: -_mscl.TemperatureInfo_swigregister(TemperatureInfo) - -ModelNumber = _mscl.ModelNumber -StatusStructure_Value = _mscl.StatusStructure_Value -SystemState_Value = _mscl.SystemState_Value -gnss1PpsPulseInfo_Count = _mscl.gnss1PpsPulseInfo_Count -gnss1PpsPulseInfo_LastTimeinMS = _mscl.gnss1PpsPulseInfo_LastTimeinMS -GnssPowerStateOn = _mscl.GnssPowerStateOn -ImuStreamInfo_Enabled = _mscl.ImuStreamInfo_Enabled -ImuStreamInfo_PacketsDropped = _mscl.ImuStreamInfo_PacketsDropped -GnssStreamInfo_Enabled = _mscl.GnssStreamInfo_Enabled -GnssStreamInfo_PacketsDropped = _mscl.GnssStreamInfo_PacketsDropped -EstimationFilterStreamInfo_Enabled = _mscl.EstimationFilterStreamInfo_Enabled -EstimationFilterStreamInfo_PacketsDropped = _mscl.EstimationFilterStreamInfo_PacketsDropped -ComPortInfo_BytesRead = _mscl.ComPortInfo_BytesRead -ComPortInfo_BytesWritten = _mscl.ComPortInfo_BytesWritten -ComPortInfo_OverrunsOnRead = _mscl.ComPortInfo_OverrunsOnRead -ComPortInfo_OverrunsOnWrite = _mscl.ComPortInfo_OverrunsOnWrite -ImuMessageInfo_LastMessageReadinMS = _mscl.ImuMessageInfo_LastMessageReadinMS -ImuMessageInfo_MessageParsingErrors = _mscl.ImuMessageInfo_MessageParsingErrors -ImuMessageInfo_MessagesRead = _mscl.ImuMessageInfo_MessagesRead -GnssMessageInfo_LastMessageReadinMS = _mscl.GnssMessageInfo_LastMessageReadinMS -GnssMessageInfo_MessageParsingErrors = _mscl.GnssMessageInfo_MessageParsingErrors -GnssMessageInfo_MessagesRead = _mscl.GnssMessageInfo_MessagesRead -TemperatureInfo_Error = _mscl.TemperatureInfo_Error -TemperatureInfo_LastReadInMS = _mscl.TemperatureInfo_LastReadInMS -TemperatureInfo_OnBoardTemp = _mscl.TemperatureInfo_OnBoardTemp -PowerState = _mscl.PowerState -GyroRange = _mscl.GyroRange -AccelRange = _mscl.AccelRange -HasMagnetometer = _mscl.HasMagnetometer -HasPressure = _mscl.HasPressure -class DeviceStatusData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_BASIC_STATUS_STRUCTURE - DIAGNOSTIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_DIAGNOSTIC_STATUS_STRUCTURE - SYSTEM_INITIALIZATION = _mscl.DeviceStatusData_SYSTEM_INITIALIZATION - SYSTEM_STARTUP = _mscl.DeviceStatusData_SYSTEM_STARTUP - SYSTEM_RUNNING = _mscl.DeviceStatusData_SYSTEM_RUNNING - - def __init__(self): - _mscl.DeviceStatusData_swiginit(self, _mscl.new_DeviceStatusData()) - modelNumber = property(_mscl.DeviceStatusData_modelNumber_get, _mscl.DeviceStatusData_modelNumber_set) - statusStructure = property(_mscl.DeviceStatusData_statusStructure_get, _mscl.DeviceStatusData_statusStructure_set) - systemTimerInMS = property(_mscl.DeviceStatusData_systemTimerInMS_get, _mscl.DeviceStatusData_systemTimerInMS_set) - - def systemState(self, *args): - return _mscl.DeviceStatusData_systemState(self, *args) - - def gnssPowerStateOn(self, *args): - return _mscl.DeviceStatusData_gnssPowerStateOn(self, *args) - - def gnss1PpsPulseInfo(self, *args): - return _mscl.DeviceStatusData_gnss1PpsPulseInfo(self, *args) - - def imuStreamInfo(self, *args): - return _mscl.DeviceStatusData_imuStreamInfo(self, *args) - - def gnssStreamInfo(self, *args): - return _mscl.DeviceStatusData_gnssStreamInfo(self, *args) - - def estimationFilterStreamInfo(self, *args): - return _mscl.DeviceStatusData_estimationFilterStreamInfo(self, *args) - - def imuMessageInfo(self, *args): - return _mscl.DeviceStatusData_imuMessageInfo(self, *args) - - def gnssMessageInfo(self, *args): - return _mscl.DeviceStatusData_gnssMessageInfo(self, *args) - - def comPortInfo(self, *args): - return _mscl.DeviceStatusData_comPortInfo(self, *args) - - def usbPortInfo(self, *args): - return _mscl.DeviceStatusData_usbPortInfo(self, *args) - - def hasMagnetometer(self, *args): - return _mscl.DeviceStatusData_hasMagnetometer(self, *args) - - def magnetometerInitializationFailed(self, *args): - return _mscl.DeviceStatusData_magnetometerInitializationFailed(self, *args) - - def hasPressure(self, *args): - return _mscl.DeviceStatusData_hasPressure(self, *args) - - def pressureInitializationFailed(self, *args): - return _mscl.DeviceStatusData_pressureInitializationFailed(self, *args) - - def gnssReceiverInitializationFailed(self, *args): - return _mscl.DeviceStatusData_gnssReceiverInitializationFailed(self, *args) - - def coldStartOnPowerOn(self, *args): - return _mscl.DeviceStatusData_coldStartOnPowerOn(self, *args) - - def temperatureInfo(self, *args): - return _mscl.DeviceStatusData_temperatureInfo(self, *args) - - def powerState(self, *args): - return _mscl.DeviceStatusData_powerState(self, *args) - - def gyroRange(self, *args): - return _mscl.DeviceStatusData_gyroRange(self, *args) - - def accelRange(self, *args): - return _mscl.DeviceStatusData_accelRange(self, *args) - - def asMap(self): - return _mscl.DeviceStatusData_asMap(self) - - def asValueMap(self): - return _mscl.DeviceStatusData_asValueMap(self) - __swig_destroy__ = _mscl.delete_DeviceStatusData - -# Register DeviceStatusData in _mscl: -_mscl.DeviceStatusData_swigregister(DeviceStatusData) - -class ExternalGNSSUpdateData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - gpsTimeOfWeek = property(_mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_get, _mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_set) - gpsWeekNumber = property(_mscl.ExternalGNSSUpdateData_gpsWeekNumber_get, _mscl.ExternalGNSSUpdateData_gpsWeekNumber_set) - lattitude = property(_mscl.ExternalGNSSUpdateData_lattitude_get, _mscl.ExternalGNSSUpdateData_lattitude_set) - longitude = property(_mscl.ExternalGNSSUpdateData_longitude_get, _mscl.ExternalGNSSUpdateData_longitude_set) - altitudeAboveWGS84Ellipsoid = property(_mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_get, _mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_set) - northVelocity = property(_mscl.ExternalGNSSUpdateData_northVelocity_get, _mscl.ExternalGNSSUpdateData_northVelocity_set) - eastVelocity = property(_mscl.ExternalGNSSUpdateData_eastVelocity_get, _mscl.ExternalGNSSUpdateData_eastVelocity_set) - downVelocity = property(_mscl.ExternalGNSSUpdateData_downVelocity_get, _mscl.ExternalGNSSUpdateData_downVelocity_set) - northPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_northPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_northPositionUncertainty_set) - eastPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_eastPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_eastPositionUncertainty_set) - downPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_downPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_downPositionUncertainty_set) - northVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_northVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_northVelocityUncertainty_set) - eastVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_set) - downVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_downVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_downVelocityUncertainty_set) - - def __init__(self): - _mscl.ExternalGNSSUpdateData_swiginit(self, _mscl.new_ExternalGNSSUpdateData()) - __swig_destroy__ = _mscl.delete_ExternalGNSSUpdateData - -# Register ExternalGNSSUpdateData in _mscl: -_mscl.ExternalGNSSUpdateData_swigregister(ExternalGNSSUpdateData) - -class HeadingUpdateOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsOptionId(self): - return _mscl.HeadingUpdateOptions_AsOptionId(self) - - def __init__(self, *args): - _mscl.HeadingUpdateOptions_swiginit(self, _mscl.new_HeadingUpdateOptions(*args)) - useInternalMagnetometer = property(_mscl.HeadingUpdateOptions_useInternalMagnetometer_get, _mscl.HeadingUpdateOptions_useInternalMagnetometer_set) - useInternalGNSSVelocityVector = property(_mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_get, _mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_set) - useExternalHeadingMessages = property(_mscl.HeadingUpdateOptions_useExternalHeadingMessages_get, _mscl.HeadingUpdateOptions_useExternalHeadingMessages_set) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptions - -# Register HeadingUpdateOptions in _mscl: -_mscl.HeadingUpdateOptions_swigregister(HeadingUpdateOptions) - -Automatic = _mscl.Automatic -UserSpecified_Heading = _mscl.UserSpecified_Heading -UserSpecified_Attitude = _mscl.UserSpecified_Attitude -UserSpecified_All = _mscl.UserSpecified_All -GNSS_DualAntenna = _mscl.GNSS_DualAntenna -GNSS_Kinematic = _mscl.GNSS_Kinematic -Magnetometer = _mscl.Magnetometer -External = _mscl.External -class HeadingAlignmentMethod(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.HeadingAlignmentMethod_swiginit(self, _mscl.new_HeadingAlignmentMethod(*args)) - value = property(_mscl.HeadingAlignmentMethod_value_get, _mscl.HeadingAlignmentMethod_value_set) - - def select(self, option): - return _mscl.HeadingAlignmentMethod_select(self, option) - - def deselect(self, option): - return _mscl.HeadingAlignmentMethod_deselect(self, option) - - def selected(self, option): - return _mscl.HeadingAlignmentMethod_selected(self, option) - __swig_destroy__ = _mscl.delete_HeadingAlignmentMethod - -# Register HeadingAlignmentMethod in _mscl: -_mscl.HeadingAlignmentMethod_swigregister(HeadingAlignmentMethod) - -class FilterInitializationValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FilterInitializationValues_swiginit(self, _mscl.new_FilterInitializationValues()) - autoInitialize = property(_mscl.FilterInitializationValues_autoInitialize_get, _mscl.FilterInitializationValues_autoInitialize_set) - initialValuesSource = property(_mscl.FilterInitializationValues_initialValuesSource_get, _mscl.FilterInitializationValues_initialValuesSource_set) - autoHeadingAlignmentMethod = property(_mscl.FilterInitializationValues_autoHeadingAlignmentMethod_get, _mscl.FilterInitializationValues_autoHeadingAlignmentMethod_set) - initialAttitude = property(_mscl.FilterInitializationValues_initialAttitude_get, _mscl.FilterInitializationValues_initialAttitude_set) - initialPosition = property(_mscl.FilterInitializationValues_initialPosition_get, _mscl.FilterInitializationValues_initialPosition_set) - initialVelocity = property(_mscl.FilterInitializationValues_initialVelocity_get, _mscl.FilterInitializationValues_initialVelocity_set) - referenceFrame = property(_mscl.FilterInitializationValues_referenceFrame_get, _mscl.FilterInitializationValues_referenceFrame_set) - - def manualHeading(self): - return _mscl.FilterInitializationValues_manualHeading(self) - - def manualAttitude(self): - return _mscl.FilterInitializationValues_manualAttitude(self) - - def manualPositionVelocity(self): - return _mscl.FilterInitializationValues_manualPositionVelocity(self) - __swig_destroy__ = _mscl.delete_FilterInitializationValues - -# Register FilterInitializationValues in _mscl: -_mscl.FilterInitializationValues_swigregister(FilterInitializationValues) - -class TareAxisValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def asUint8(self): - return _mscl.TareAxisValues_asUint8(self) - - def __init__(self, tareRollAxis, tarePitchAxis, tareYawAxis): - _mscl.TareAxisValues_swiginit(self, _mscl.new_TareAxisValues(tareRollAxis, tarePitchAxis, tareYawAxis)) - tareRollAxis = property(_mscl.TareAxisValues_tareRollAxis_get, _mscl.TareAxisValues_tareRollAxis_set) - tarePitchAxis = property(_mscl.TareAxisValues_tarePitchAxis_get, _mscl.TareAxisValues_tarePitchAxis_set) - tareYawAxis = property(_mscl.TareAxisValues_tareYawAxis_get, _mscl.TareAxisValues_tareYawAxis_set) - __swig_destroy__ = _mscl.delete_TareAxisValues - -# Register TareAxisValues in _mscl: -_mscl.TareAxisValues_swigregister(TareAxisValues) - -class GeographicSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeographicSourceOptions_swiginit(self, _mscl.new_GeographicSourceOptions(*args)) - source = property(_mscl.GeographicSourceOptions_source_get, _mscl.GeographicSourceOptions_source_set) - manual = property(_mscl.GeographicSourceOptions_manual_get, _mscl.GeographicSourceOptions_manual_set) - __swig_destroy__ = _mscl.delete_GeographicSourceOptions - -# Register GeographicSourceOptions in _mscl: -_mscl.GeographicSourceOptions_swigregister(GeographicSourceOptions) - -class EstimationControlOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsUint16(self): - return _mscl.EstimationControlOptions_AsUint16(self) - - def __init__(self, *args): - _mscl.EstimationControlOptions_swiginit(self, _mscl.new_EstimationControlOptions(*args)) - enableGyroBiasEstimation = property(_mscl.EstimationControlOptions_enableGyroBiasEstimation_get, _mscl.EstimationControlOptions_enableGyroBiasEstimation_set) - enableAccelBiasEstimation = property(_mscl.EstimationControlOptions_enableAccelBiasEstimation_get, _mscl.EstimationControlOptions_enableAccelBiasEstimation_set) - enableGyroScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_set) - enableAccelScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_set) - enableGNSSAntennaOffsetEstimation = property(_mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_get, _mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_set) - enableHardIronAutoCalibration = property(_mscl.EstimationControlOptions_enableHardIronAutoCalibration_get, _mscl.EstimationControlOptions_enableHardIronAutoCalibration_set) - enableSoftIronAutoCalibration = property(_mscl.EstimationControlOptions_enableSoftIronAutoCalibration_get, _mscl.EstimationControlOptions_enableSoftIronAutoCalibration_set) - __swig_destroy__ = _mscl.delete_EstimationControlOptions - -# Register EstimationControlOptions in _mscl: -_mscl.EstimationControlOptions_swigregister(EstimationControlOptions) - -class HeadingData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HeadingData_swiginit(self, _mscl.new_HeadingData()) - TRUE_HEADING = _mscl.HeadingData_TRUE_HEADING - MAGNETIC_HEADING = _mscl.HeadingData_MAGNETIC_HEADING - heading = property(_mscl.HeadingData_heading_get, _mscl.HeadingData_heading_set) - headingAngle = property(_mscl.HeadingData_headingAngle_get, _mscl.HeadingData_headingAngle_set) - headingAngleUncertainty = property(_mscl.HeadingData_headingAngleUncertainty_get, _mscl.HeadingData_headingAngleUncertainty_set) - __swig_destroy__ = _mscl.delete_HeadingData - -# Register HeadingData in _mscl: -_mscl.HeadingData_swigregister(HeadingData) - -class AdaptiveMeasurementData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AdaptiveMeasurementData_swiginit(self, _mscl.new_AdaptiveMeasurementData()) - mode = property(_mscl.AdaptiveMeasurementData_mode_get, _mscl.AdaptiveMeasurementData_mode_set) - lowPassFilterCutoff = property(_mscl.AdaptiveMeasurementData_lowPassFilterCutoff_get, _mscl.AdaptiveMeasurementData_lowPassFilterCutoff_set) - lowLimit = property(_mscl.AdaptiveMeasurementData_lowLimit_get, _mscl.AdaptiveMeasurementData_lowLimit_set) - highLimit = property(_mscl.AdaptiveMeasurementData_highLimit_get, _mscl.AdaptiveMeasurementData_highLimit_set) - lowLimitUncertainty = property(_mscl.AdaptiveMeasurementData_lowLimitUncertainty_get, _mscl.AdaptiveMeasurementData_lowLimitUncertainty_set) - highLimitUncertainty = property(_mscl.AdaptiveMeasurementData_highLimitUncertainty_get, _mscl.AdaptiveMeasurementData_highLimitUncertainty_set) - minUncertainty = property(_mscl.AdaptiveMeasurementData_minUncertainty_get, _mscl.AdaptiveMeasurementData_minUncertainty_set) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementData - -# Register AdaptiveMeasurementData in _mscl: -_mscl.AdaptiveMeasurementData_swigregister(AdaptiveMeasurementData) - -class AutoAdaptiveFilterOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AutoAdaptiveFilterOptions_swiginit(self, _mscl.new_AutoAdaptiveFilterOptions(*args)) - level = property(_mscl.AutoAdaptiveFilterOptions_level_get, _mscl.AutoAdaptiveFilterOptions_level_set) - timeLimit = property(_mscl.AutoAdaptiveFilterOptions_timeLimit_get, _mscl.AutoAdaptiveFilterOptions_timeLimit_set) - __swig_destroy__ = _mscl.delete_AutoAdaptiveFilterOptions - -# Register AutoAdaptiveFilterOptions in _mscl: -_mscl.AutoAdaptiveFilterOptions_swigregister(AutoAdaptiveFilterOptions) - -class SignalConditioningValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ENABLE_ORIENTATION_CALC = _mscl.SignalConditioningValues_ENABLE_ORIENTATION_CALC - ENABLE_CONING_SCULLING = _mscl.SignalConditioningValues_ENABLE_CONING_SCULLING - ENABLE_FINITE_SIZE_CORRECTION = _mscl.SignalConditioningValues_ENABLE_FINITE_SIZE_CORRECTION - DISABLE_MAGNETOMETER = _mscl.SignalConditioningValues_DISABLE_MAGNETOMETER - DISABLE_NORTH_COMP = _mscl.SignalConditioningValues_DISABLE_NORTH_COMP - DISABLE_UP_COMP = _mscl.SignalConditioningValues_DISABLE_UP_COMP - ENABLE_QUATERNION_CALC = _mscl.SignalConditioningValues_ENABLE_QUATERNION_CALC - HIGH = _mscl.SignalConditioningValues_HIGH - LOW = _mscl.SignalConditioningValues_LOW - dataConditioningFlags = property(_mscl.SignalConditioningValues_dataConditioningFlags_get, _mscl.SignalConditioningValues_dataConditioningFlags_set) - orientationCalcDecimation = property(_mscl.SignalConditioningValues_orientationCalcDecimation_get, _mscl.SignalConditioningValues_orientationCalcDecimation_set) - accelGyroFilterWidth = property(_mscl.SignalConditioningValues_accelGyroFilterWidth_get, _mscl.SignalConditioningValues_accelGyroFilterWidth_set) - magFilterWidth = property(_mscl.SignalConditioningValues_magFilterWidth_get, _mscl.SignalConditioningValues_magFilterWidth_set) - upCompensation = property(_mscl.SignalConditioningValues_upCompensation_get, _mscl.SignalConditioningValues_upCompensation_set) - northCompensation = property(_mscl.SignalConditioningValues_northCompensation_get, _mscl.SignalConditioningValues_northCompensation_set) - magBandwidthPower = property(_mscl.SignalConditioningValues_magBandwidthPower_get, _mscl.SignalConditioningValues_magBandwidthPower_set) - - def __init__(self): - _mscl.SignalConditioningValues_swiginit(self, _mscl.new_SignalConditioningValues()) - - def conditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_conditioningOptionOn(self, *args) - - def setConditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOn(self, *args) - - def setConditioningOptionOff(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOff(self, *args) - __swig_destroy__ = _mscl.delete_SignalConditioningValues - -# Register SignalConditioningValues in _mscl: -_mscl.SignalConditioningValues_swigregister(SignalConditioningValues) - -class EnableDisableMeasurements(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ACCELEROMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_ACCELEROMETER_MEASUREMENTS - MAGNETOMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_MAGNETOMETER_MEASUREMENTS - - def __init__(self, *args): - _mscl.EnableDisableMeasurements_swiginit(self, _mscl.new_EnableDisableMeasurements(*args)) - measurementOptions = property(_mscl.EnableDisableMeasurements_measurementOptions_get, _mscl.EnableDisableMeasurements_measurementOptions_set) - - def optionEnabled(self, *args): - return _mscl.EnableDisableMeasurements_optionEnabled(self, *args) - - def enableOption(self, *args): - return _mscl.EnableDisableMeasurements_enableOption(self, *args) - - def disableOption(self, *args): - return _mscl.EnableDisableMeasurements_disableOption(self, *args) - __swig_destroy__ = _mscl.delete_EnableDisableMeasurements - -# Register EnableDisableMeasurements in _mscl: -_mscl.EnableDisableMeasurements_swigregister(EnableDisableMeasurements) - -class RTKDeviceStatusFlags(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MODEM_STATE = _mscl.RTKDeviceStatusFlags_MODEM_STATE - CONNECTION_TYPE = _mscl.RTKDeviceStatusFlags_CONNECTION_TYPE - RSSI = _mscl.RTKDeviceStatusFlags_RSSI - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_SIGNAL_QUALITY - TOWER_CHANGE_INDICATOR = _mscl.RTKDeviceStatusFlags_TOWER_CHANGE_INDICATOR - NMEA_TIMEOUT = _mscl.RTKDeviceStatusFlags_NMEA_TIMEOUT - SERVER_TIMEOUT = _mscl.RTKDeviceStatusFlags_SERVER_TIMEOUT - RTCM_TIMEOUT = _mscl.RTKDeviceStatusFlags_RTCM_TIMEOUT - DEVICE_OUT_OF_RANGE = _mscl.RTKDeviceStatusFlags_DEVICE_OUT_OF_RANGE - CORRECTIONS_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_CORRECTIONS_UNAVAILABLE - VERSION = _mscl.RTKDeviceStatusFlags_VERSION - OFF = _mscl.RTKDeviceStatusFlags_OFF - NO_NETWORK = _mscl.RTKDeviceStatusFlags_NO_NETWORK - NETWORK_CONNECTED = _mscl.RTKDeviceStatusFlags_NETWORK_CONNECTED - CONFIGURING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_CONFIGURING_DATA_CONTEXT - ACTIVATING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_ACTIVATING_DATA_CONTEXT - CONFIGURING_SOCKET = _mscl.RTKDeviceStatusFlags_CONFIGURING_SOCKET - WAITING_ON_SERVER_HANDSHAKE = _mscl.RTKDeviceStatusFlags_WAITING_ON_SERVER_HANDSHAKE - CONNECTED_AND_IDLE = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_IDLE - CONNECTED_AND_STREAMING = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_STREAMING - NO_CONNECTION = _mscl.RTKDeviceStatusFlags_NO_CONNECTION - CONNECTION_2G = _mscl.RTKDeviceStatusFlags_CONNECTION_2G - CONNECTION_3G = _mscl.RTKDeviceStatusFlags_CONNECTION_3G - CONNECTION_4G = _mscl.RTKDeviceStatusFlags_CONNECTION_4G - CONNECTION_5G = _mscl.RTKDeviceStatusFlags_CONNECTION_5G - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_swiginit(self, _mscl.new_RTKDeviceStatusFlags(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_version(self) - - def modemState(self, *args): - return _mscl.RTKDeviceStatusFlags_modemState(self, *args) - - def connectionType(self, *args): - return _mscl.RTKDeviceStatusFlags_connectionType(self, *args) - - def rssi(self, *args): - return _mscl.RTKDeviceStatusFlags_rssi(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_signalQuality(self, *args) - - def towerChangeIndicator(self, *args): - return _mscl.RTKDeviceStatusFlags_towerChangeIndicator(self, *args) - - def nmeaTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_nmeaTimeout(self, *args) - - def serverTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_serverTimeout(self, *args) - - def rtcmTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_rtcmTimeout(self, *args) - - def deviceOutOfRange(self, *args): - return _mscl.RTKDeviceStatusFlags_deviceOutOfRange(self, *args) - - def correctionsUnavailable(self, *args): - return _mscl.RTKDeviceStatusFlags_correctionsUnavailable(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags - -# Register RTKDeviceStatusFlags in _mscl: -_mscl.RTKDeviceStatusFlags_swigregister(RTKDeviceStatusFlags) - -class RTKDeviceStatusFlags_v1(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONTROLLER_STATE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATE - PLATFORM_STATE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATE - CONTROLLER_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATUS_CODE - PLATFORM_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATUS_CODE - RESET_REASON = _mscl.RTKDeviceStatusFlags_v1_RESET_REASON - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_v1_SIGNAL_QUALITY - VERSION = _mscl.RTKDeviceStatusFlags_v1_VERSION - IDLE = _mscl.RTKDeviceStatusFlags_v1_IDLE - ACTIVE = _mscl.RTKDeviceStatusFlags_v1_ACTIVE - MODEM_OFF = _mscl.RTKDeviceStatusFlags_v1_MODEM_OFF - MODEM_POWERING_ON = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_ON - MODEM_CONFIGURE = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONFIGURE - MODEM_POWERING_DOWN = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_DOWN - MODEM_READY = _mscl.RTKDeviceStatusFlags_v1_MODEM_READY - MODEM_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTING - MODEM_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_DISCONNECTING - MODEM_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTED - SERVICE_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTING - SERVICE_CONNECTION_FAILED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_FAILED - SERVICE_CONNECTION_CANCELED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_CANCELED - SERVICE_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_DISCONNECTING - SERVICE_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTED - PLATFORM_ERROR = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_ERROR - RESET_MODEM = _mscl.RTKDeviceStatusFlags_v1_RESET_MODEM - CONTROLLER_OK = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_OK - WAITING_NMEA = _mscl.RTKDeviceStatusFlags_v1_WAITING_NMEA - RTK_TIMEOUT = _mscl.RTKDeviceStatusFlags_v1_RTK_TIMEOUT - RTK_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_v1_RTK_UNAVAILABLE - CONFIG_INVALID = _mscl.RTKDeviceStatusFlags_v1_CONFIG_INVALID - PLATFORM_OK = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_OK - RTK_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_RTK_CONNECTION_DROPPED - CELL_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_CELL_CONNECTION_DROPPED - MODEM_ERROR = _mscl.RTKDeviceStatusFlags_v1_MODEM_ERROR - POWER_ON = _mscl.RTKDeviceStatusFlags_v1_POWER_ON - UNKNOWN = _mscl.RTKDeviceStatusFlags_v1_UNKNOWN - SOFT_RESET = _mscl.RTKDeviceStatusFlags_v1_SOFT_RESET - HARDWARE_ERROR_RESET = _mscl.RTKDeviceStatusFlags_v1_HARDWARE_ERROR_RESET - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_v1_swiginit(self, _mscl.new_RTKDeviceStatusFlags_v1(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_v1_version(self) - - def controllerState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerState(self, *args) - - def platformState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformState(self, *args) - - def controllerStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerStatusCode(self, *args) - - def platformStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformStatusCode(self, *args) - - def resetReason(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_resetReason(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_signalQuality(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags_v1 - -# Register RTKDeviceStatusFlags_v1 in _mscl: -_mscl.RTKDeviceStatusFlags_v1_swigregister(RTKDeviceStatusFlags_v1) - -class GnssSignalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - L1CA = _mscl.GnssSignalConfiguration_L1CA - L2C = _mscl.GnssSignalConfiguration_L2C - L1OF = _mscl.GnssSignalConfiguration_L1OF - L2OF = _mscl.GnssSignalConfiguration_L2OF - E1 = _mscl.GnssSignalConfiguration_E1 - E5B = _mscl.GnssSignalConfiguration_E5B - B1 = _mscl.GnssSignalConfiguration_B1 - B2 = _mscl.GnssSignalConfiguration_B2 - - def __init__(self): - _mscl.GnssSignalConfiguration_swiginit(self, _mscl.new_GnssSignalConfiguration()) - - def enableGpsSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGpsSignal(self, signal, enable) - - def gpsSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_gpsSignalEnabled(self, signal) - - def gpsSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_gpsSignalValue(self, *args) - - def enableGlonassSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGlonassSignal(self, signal, enable) - - def glonassSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_glonassSignalEnabled(self, signal) - - def glonassSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_glonassSignalValue(self, *args) - - def enableGalileoSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGalileoSignal(self, signal, enable) - - def galileoSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_galileoSignalEnabled(self, signal) - - def galileoSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_galileoSignalValue(self, *args) - - def enableBeiDouSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableBeiDouSignal(self, signal, enable) - - def beidouSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_beidouSignalEnabled(self, signal) - - def beidouSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_beidouSignalValue(self, *args) - __swig_destroy__ = _mscl.delete_GnssSignalConfiguration - -# Register GnssSignalConfiguration in _mscl: -_mscl.GnssSignalConfiguration_swigregister(GnssSignalConfiguration) - -class GnssSpartnConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - KEY_SIZE = _mscl.GnssSpartnConfiguration_KEY_SIZE - NONE = _mscl.GnssSpartnConfiguration_NONE - NETWORK = _mscl.GnssSpartnConfiguration_NETWORK - LBAND = _mscl.GnssSpartnConfiguration_LBAND - - def __init__(self): - _mscl.GnssSpartnConfiguration_swiginit(self, _mscl.new_GnssSpartnConfiguration()) - - def enable(self, enable): - return _mscl.GnssSpartnConfiguration_enable(self, enable) - - def enabled(self): - return _mscl.GnssSpartnConfiguration_enabled(self) - - def type(self, *args): - return _mscl.GnssSpartnConfiguration_type(self, *args) - - def currentKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyTow(self, *args) - - def currentKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyWeek(self, *args) - - def currentKey(self, *args): - return _mscl.GnssSpartnConfiguration_currentKey(self, *args) - - def nextKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyTow(self, *args) - - def nextKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyWeek(self, *args) - - def nextKey(self, *args): - return _mscl.GnssSpartnConfiguration_nextKey(self, *args) - __swig_destroy__ = _mscl.delete_GnssSpartnConfiguration - -# Register GnssSpartnConfiguration in _mscl: -_mscl.GnssSpartnConfiguration_swigregister(GnssSpartnConfiguration) - -class PositionReferenceConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - autoConfig = property(_mscl.PositionReferenceConfiguration_autoConfig_get, _mscl.PositionReferenceConfiguration_autoConfig_set) - position = property(_mscl.PositionReferenceConfiguration_position_get, _mscl.PositionReferenceConfiguration_position_set) - - def __init__(self): - _mscl.PositionReferenceConfiguration_swiginit(self, _mscl.new_PositionReferenceConfiguration()) - __swig_destroy__ = _mscl.delete_PositionReferenceConfiguration - -# Register PositionReferenceConfiguration in _mscl: -_mscl.PositionReferenceConfiguration_swigregister(PositionReferenceConfiguration) - -class AntennaLeverArmCalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enabled = property(_mscl.AntennaLeverArmCalConfiguration_enabled_get, _mscl.AntennaLeverArmCalConfiguration_enabled_set) - maxOffsetError = property(_mscl.AntennaLeverArmCalConfiguration_maxOffsetError_get, _mscl.AntennaLeverArmCalConfiguration_maxOffsetError_set) - - def __init__(self): - _mscl.AntennaLeverArmCalConfiguration_swiginit(self, _mscl.new_AntennaLeverArmCalConfiguration()) - __swig_destroy__ = _mscl.delete_AntennaLeverArmCalConfiguration - -# Register AntennaLeverArmCalConfiguration in _mscl: -_mscl.AntennaLeverArmCalConfiguration_swigregister(AntennaLeverArmCalConfiguration) - -class OdometerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.OdometerConfiguration_DISABLED - SINGLE = _mscl.OdometerConfiguration_SINGLE - QUADRATURE = _mscl.OdometerConfiguration_QUADRATURE - - def __init__(self): - _mscl.OdometerConfiguration_swiginit(self, _mscl.new_OdometerConfiguration()) - - def mode(self, *args): - return _mscl.OdometerConfiguration_mode(self, *args) - - def uncertainty(self, *args): - return _mscl.OdometerConfiguration_uncertainty(self, *args) - - def scaling(self, *args): - return _mscl.OdometerConfiguration_scaling(self, *args) - __swig_destroy__ = _mscl.delete_OdometerConfiguration - -# Register OdometerConfiguration in _mscl: -_mscl.OdometerConfiguration_swigregister(OdometerConfiguration) - -class GpioConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - UNUSED_FEATURE = _mscl.GpioConfiguration_UNUSED_FEATURE - GPIO_FEATURE = _mscl.GpioConfiguration_GPIO_FEATURE - PPS_FEATURE = _mscl.GpioConfiguration_PPS_FEATURE - ENCODER_FEATURE = _mscl.GpioConfiguration_ENCODER_FEATURE - EVENT_TIMESTAMP_FEATURE = _mscl.GpioConfiguration_EVENT_TIMESTAMP_FEATURE - UART_FEATURE = _mscl.GpioConfiguration_UART_FEATURE - GPIO_UNUSED = _mscl.GpioConfiguration_GPIO_UNUSED - GPIO_INPUT = _mscl.GpioConfiguration_GPIO_INPUT - GPIO_OUTPUT_LOW = _mscl.GpioConfiguration_GPIO_OUTPUT_LOW - GPIO_OUTPUT_HIGH = _mscl.GpioConfiguration_GPIO_OUTPUT_HIGH - PPS_UNUSED = _mscl.GpioConfiguration_PPS_UNUSED - PPS_INPUT = _mscl.GpioConfiguration_PPS_INPUT - PPS_OUTPUT = _mscl.GpioConfiguration_PPS_OUTPUT - ENCODER_UNUSED = _mscl.GpioConfiguration_ENCODER_UNUSED - ENCODER_A = _mscl.GpioConfiguration_ENCODER_A - ENCODER_B = _mscl.GpioConfiguration_ENCODER_B - TIMESTAMP_UNUSED = _mscl.GpioConfiguration_TIMESTAMP_UNUSED - TIMESTAMP_RISING = _mscl.GpioConfiguration_TIMESTAMP_RISING - TIMESTAMP_FALLING = _mscl.GpioConfiguration_TIMESTAMP_FALLING - TIMESTAMP_EITHER = _mscl.GpioConfiguration_TIMESTAMP_EITHER - UART_UNUSED = _mscl.GpioConfiguration_UART_UNUSED - UART_PORT2_TX = _mscl.GpioConfiguration_UART_PORT2_TX - UART_PORT2_RX = _mscl.GpioConfiguration_UART_PORT2_RX - UART_PORT3_TX = _mscl.GpioConfiguration_UART_PORT3_TX - UART_PORT3_RX = _mscl.GpioConfiguration_UART_PORT3_RX - NONE = _mscl.GpioConfiguration_NONE - OPEN_DRAIN = _mscl.GpioConfiguration_OPEN_DRAIN - PULLDOWN = _mscl.GpioConfiguration_PULLDOWN - PULLUP = _mscl.GpioConfiguration_PULLUP - pinMode = property(_mscl.GpioConfiguration_pinMode_get, _mscl.GpioConfiguration_pinMode_set) - pin = property(_mscl.GpioConfiguration_pin_get, _mscl.GpioConfiguration_pin_set) - feature = property(_mscl.GpioConfiguration_feature_get, _mscl.GpioConfiguration_feature_set) - behavior = property(_mscl.GpioConfiguration_behavior_get, _mscl.GpioConfiguration_behavior_set) - - def pinModeValue(self, *args): - return _mscl.GpioConfiguration_pinModeValue(self, *args) - - def __init__(self): - _mscl.GpioConfiguration_swiginit(self, _mscl.new_GpioConfiguration()) - __swig_destroy__ = _mscl.delete_GpioConfiguration - -# Register GpioConfiguration in _mscl: -_mscl.GpioConfiguration_swigregister(GpioConfiguration) - -DISABLED = _mscl.DISABLED -ENABLED = _mscl.ENABLED -TEST = _mscl.TEST -TEST_PULSE = _mscl.TEST_PULSE -class EventTriggerGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventTriggerGpioParameter_DISABLED - WHILE_HIGH = _mscl.EventTriggerGpioParameter_WHILE_HIGH - WHILE_LOW = _mscl.EventTriggerGpioParameter_WHILE_LOW - EDGE = _mscl.EventTriggerGpioParameter_EDGE - pin = property(_mscl.EventTriggerGpioParameter_pin_get, _mscl.EventTriggerGpioParameter_pin_set) - mode = property(_mscl.EventTriggerGpioParameter_mode_get, _mscl.EventTriggerGpioParameter_mode_set) - - def __init__(self): - _mscl.EventTriggerGpioParameter_swiginit(self, _mscl.new_EventTriggerGpioParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerGpioParameter - -# Register EventTriggerGpioParameter in _mscl: -_mscl.EventTriggerGpioParameter_swigregister(EventTriggerGpioParameter) - -class EventTriggerThresholdParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - WINDOW_TYPE = _mscl.EventTriggerThresholdParameter_WINDOW_TYPE - INTERVAL_TYPE = _mscl.EventTriggerThresholdParameter_INTERVAL_TYPE - type = property(_mscl.EventTriggerThresholdParameter_type_get, _mscl.EventTriggerThresholdParameter_type_set) - lowThreshold = property(_mscl.EventTriggerThresholdParameter_lowThreshold_get, _mscl.EventTriggerThresholdParameter_lowThreshold_set) - highThreshold = property(_mscl.EventTriggerThresholdParameter_highThreshold_get, _mscl.EventTriggerThresholdParameter_highThreshold_set) - - def channel(self, *args): - return _mscl.EventTriggerThresholdParameter_channel(self, *args) - - def channelField(self): - return _mscl.EventTriggerThresholdParameter_channelField(self) - - def channelQualifier(self): - return _mscl.EventTriggerThresholdParameter_channelQualifier(self) - - def channelIndex(self): - return _mscl.EventTriggerThresholdParameter_channelIndex(self) - - def __init__(self): - _mscl.EventTriggerThresholdParameter_swiginit(self, _mscl.new_EventTriggerThresholdParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerThresholdParameter - -# Register EventTriggerThresholdParameter in _mscl: -_mscl.EventTriggerThresholdParameter_swigregister(EventTriggerThresholdParameter) - -class EventTriggerCombinationParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_INPUT_TRIGGERS = _mscl.EventTriggerCombinationParameter_MAX_INPUT_TRIGGERS - LOGIC_NEVER = _mscl.EventTriggerCombinationParameter_LOGIC_NEVER - LOGIC_ALWAYS = _mscl.EventTriggerCombinationParameter_LOGIC_ALWAYS - LOGIC_NONE = _mscl.EventTriggerCombinationParameter_LOGIC_NONE - LOGIC_OR = _mscl.EventTriggerCombinationParameter_LOGIC_OR - LOGIC_NAND = _mscl.EventTriggerCombinationParameter_LOGIC_NAND - LOGIC_XOR_ONE = _mscl.EventTriggerCombinationParameter_LOGIC_XOR_ONE - LOGIC_ONLY_A = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_A - LOGIC_ONLY_B = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_B - LOGIC_ONLY_C = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_C - LOGIC_ONLY_D = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_D - LOGIC_AND_AB = _mscl.EventTriggerCombinationParameter_LOGIC_AND_AB - LOGIC_AB_OR_C = _mscl.EventTriggerCombinationParameter_LOGIC_AB_OR_C - LOGIC_AND = _mscl.EventTriggerCombinationParameter_LOGIC_AND - logicTable = property(_mscl.EventTriggerCombinationParameter_logicTable_get, _mscl.EventTriggerCombinationParameter_logicTable_set) - inputTriggers = property(_mscl.EventTriggerCombinationParameter_inputTriggers_get, _mscl.EventTriggerCombinationParameter_inputTriggers_set) - - def __init__(self): - _mscl.EventTriggerCombinationParameter_swiginit(self, _mscl.new_EventTriggerCombinationParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerCombinationParameter - -# Register EventTriggerCombinationParameter in _mscl: -_mscl.EventTriggerCombinationParameter_swigregister(EventTriggerCombinationParameter) - -class EventTriggerParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerParameters_swiginit(self, _mscl.new_EventTriggerParameters()) - gpio = property(_mscl.EventTriggerParameters_gpio_get, _mscl.EventTriggerParameters_gpio_set) - threshold = property(_mscl.EventTriggerParameters_threshold_get, _mscl.EventTriggerParameters_threshold_set) - combination = property(_mscl.EventTriggerParameters_combination_get, _mscl.EventTriggerParameters_combination_set) - __swig_destroy__ = _mscl.delete_EventTriggerParameters - -# Register EventTriggerParameters in _mscl: -_mscl.EventTriggerParameters_swigregister(EventTriggerParameters) - -class EventTriggerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventTriggerConfiguration_NONE - GPIO_TRIGGER = _mscl.EventTriggerConfiguration_GPIO_TRIGGER - THRESHOLD_TRIGGER = _mscl.EventTriggerConfiguration_THRESHOLD_TRIGGER - COMBINATION_TRIGGER = _mscl.EventTriggerConfiguration_COMBINATION_TRIGGER - instance = property(_mscl.EventTriggerConfiguration_instance_get, _mscl.EventTriggerConfiguration_instance_set) - trigger = property(_mscl.EventTriggerConfiguration_trigger_get, _mscl.EventTriggerConfiguration_trigger_set) - parameters = property(_mscl.EventTriggerConfiguration_parameters_get, _mscl.EventTriggerConfiguration_parameters_set) - - def __init__(self): - _mscl.EventTriggerConfiguration_swiginit(self, _mscl.new_EventTriggerConfiguration()) - __swig_destroy__ = _mscl.delete_EventTriggerConfiguration - -# Register EventTriggerConfiguration in _mscl: -_mscl.EventTriggerConfiguration_swigregister(EventTriggerConfiguration) - -class EventActionGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventActionGpioParameter_DISABLED - ACTIVE_HIGH = _mscl.EventActionGpioParameter_ACTIVE_HIGH - ACTIVE_LOW = _mscl.EventActionGpioParameter_ACTIVE_LOW - ONESHOT_HIGH = _mscl.EventActionGpioParameter_ONESHOT_HIGH - ONESHOT_LOW = _mscl.EventActionGpioParameter_ONESHOT_LOW - TOGGLE = _mscl.EventActionGpioParameter_TOGGLE - pin = property(_mscl.EventActionGpioParameter_pin_get, _mscl.EventActionGpioParameter_pin_set) - mode = property(_mscl.EventActionGpioParameter_mode_get, _mscl.EventActionGpioParameter_mode_set) - - def __init__(self): - _mscl.EventActionGpioParameter_swiginit(self, _mscl.new_EventActionGpioParameter()) - __swig_destroy__ = _mscl.delete_EventActionGpioParameter - -# Register EventActionGpioParameter in _mscl: -_mscl.EventActionGpioParameter_swigregister(EventActionGpioParameter) - -class EventActionMessageParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_DESCRIPTORS = _mscl.EventActionMessageParameter_MAX_DESCRIPTORS - sampleRate = property(_mscl.EventActionMessageParameter_sampleRate_get, _mscl.EventActionMessageParameter_sampleRate_set) - - def dataClass(self): - return _mscl.EventActionMessageParameter_dataClass(self) - - def setChannelFields(self, dataClass, fields): - return _mscl.EventActionMessageParameter_setChannelFields(self, dataClass, fields) - - def getChannelFields(self): - return _mscl.EventActionMessageParameter_getChannelFields(self) - - def __init__(self): - _mscl.EventActionMessageParameter_swiginit(self, _mscl.new_EventActionMessageParameter()) - __swig_destroy__ = _mscl.delete_EventActionMessageParameter - -# Register EventActionMessageParameter in _mscl: -_mscl.EventActionMessageParameter_swigregister(EventActionMessageParameter) - -class EventActionParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventActionParameters_swiginit(self, _mscl.new_EventActionParameters()) - gpio = property(_mscl.EventActionParameters_gpio_get, _mscl.EventActionParameters_gpio_set) - message = property(_mscl.EventActionParameters_message_get, _mscl.EventActionParameters_message_set) - __swig_destroy__ = _mscl.delete_EventActionParameters - -# Register EventActionParameters in _mscl: -_mscl.EventActionParameters_swigregister(EventActionParameters) - -class EventActionConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventActionConfiguration_NONE - GPIO = _mscl.EventActionConfiguration_GPIO - MESSAGE = _mscl.EventActionConfiguration_MESSAGE - instance = property(_mscl.EventActionConfiguration_instance_get, _mscl.EventActionConfiguration_instance_set) - trigger = property(_mscl.EventActionConfiguration_trigger_get, _mscl.EventActionConfiguration_trigger_set) - type = property(_mscl.EventActionConfiguration_type_get, _mscl.EventActionConfiguration_type_set) - parameters = property(_mscl.EventActionConfiguration_parameters_get, _mscl.EventActionConfiguration_parameters_set) - - def __init__(self): - _mscl.EventActionConfiguration_swiginit(self, _mscl.new_EventActionConfiguration()) - __swig_destroy__ = _mscl.delete_EventActionConfiguration - -# Register EventActionConfiguration in _mscl: -_mscl.EventActionConfiguration_swigregister(EventActionConfiguration) - -class EventTriggerInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTriggerInfo_swiginit(self, _mscl.new_EventTriggerInfo(*args)) - ACTIVE = _mscl.EventTriggerInfo_ACTIVE - ENABLED = _mscl.EventTriggerInfo_ENABLED - TEST = _mscl.EventTriggerInfo_TEST - type = property(_mscl.EventTriggerInfo_type_get, _mscl.EventTriggerInfo_type_set) - instanceId = property(_mscl.EventTriggerInfo_instanceId_get, _mscl.EventTriggerInfo_instanceId_set) - - def isActive(self): - return _mscl.EventTriggerInfo_isActive(self) - - def isEnabled(self): - return _mscl.EventTriggerInfo_isEnabled(self) - - def isTestMode(self): - return _mscl.EventTriggerInfo_isTestMode(self) - - def setStatus(self, value): - return _mscl.EventTriggerInfo_setStatus(self, value) - __swig_destroy__ = _mscl.delete_EventTriggerInfo - -# Register EventTriggerInfo in _mscl: -_mscl.EventTriggerInfo_swigregister(EventTriggerInfo) - -class EventActionInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventActionInfo_swiginit(self, _mscl.new_EventActionInfo(*args)) - type = property(_mscl.EventActionInfo_type_get, _mscl.EventActionInfo_type_set) - triggerId = property(_mscl.EventActionInfo_triggerId_get, _mscl.EventActionInfo_triggerId_set) - instanceId = property(_mscl.EventActionInfo_instanceId_get, _mscl.EventActionInfo_instanceId_set) - __swig_destroy__ = _mscl.delete_EventActionInfo - -# Register EventActionInfo in _mscl: -_mscl.EventActionInfo_swigregister(EventActionInfo) - -class MeasurementReferenceFrame(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MeasurementReferenceFrame_swiginit(self, _mscl.new_MeasurementReferenceFrame(*args)) - - def asMipFieldValues(self): - return _mscl.MeasurementReferenceFrame_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.MeasurementReferenceFrame_appendMipFieldValues(self, appendTo) - - def translation(self, *args): - return _mscl.MeasurementReferenceFrame_translation(self, *args) - - def rotation(self, *args): - return _mscl.MeasurementReferenceFrame_rotation(self, *args) - - def errorTrackingEnabled(self): - return _mscl.MeasurementReferenceFrame_errorTrackingEnabled(self) - - def enableErrorTracking(self, enable=True): - return _mscl.MeasurementReferenceFrame_enableErrorTracking(self, enable) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrame - -# Register MeasurementReferenceFrame in _mscl: -_mscl.MeasurementReferenceFrame_swigregister(MeasurementReferenceFrame) - -class MipChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipChannel_swiginit(self, _mscl.new_MipChannel(*args)) - - def channelField(self): - return _mscl.MipChannel_channelField(self) - - def sampleRate(self): - return _mscl.MipChannel_sampleRate(self) - - def rateDecimation(self, sampleRateBase): - return _mscl.MipChannel_rateDecimation(self, sampleRateBase) - __swig_destroy__ = _mscl.delete_MipChannel - -# Register MipChannel in _mscl: -_mscl.MipChannel_swigregister(MipChannel) - -class MipPacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MIP_ACK_NACK_ERROR_NONE = _mscl.MipPacket_MIP_ACK_NACK_ERROR_NONE - MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND - MIP_ACK_NACK_ERROR_CHECKSUM_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_CHECKSUM_INVALID - MIP_ACK_NACK_ERROR_PARAMETER_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_PARAMETER_INVALID - MIP_ACK_NACK_ERROR_COMMAND_FAILED = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_FAILED - MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT - MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET - - def __init__(self): - _mscl.MipPacket_swiginit(self, _mscl.new_MipPacket()) - - @staticmethod - def isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - - def descriptorSet(self): - return _mscl.MipPacket_descriptorSet(self) - - def payload(self): - return _mscl.MipPacket_payload(self) - __swig_destroy__ = _mscl.delete_MipPacket - -# Register MipPacket in _mscl: -_mscl.MipPacket_swigregister(MipPacket) - -def MipPacket_isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - -class MipDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def field(self): - return _mscl.MipDataPoint_field(self) - - def qualifier(self): - return _mscl.MipDataPoint_qualifier(self) - - def hasAddlIdentifiers(self): - return _mscl.MipDataPoint_hasAddlIdentifiers(self) - - def addlIdentifiers(self): - return _mscl.MipDataPoint_addlIdentifiers(self) - - def hasValidFlag(self): - return _mscl.MipDataPoint_hasValidFlag(self) - - def valid(self): - return _mscl.MipDataPoint_valid(self) - - def channelName(self, includeAddlIds=True, consolidatedFormat=False): - return _mscl.MipDataPoint_channelName(self, includeAddlIds, consolidatedFormat) - __swig_destroy__ = _mscl.delete_MipDataPoint - -# Register MipDataPoint in _mscl: -_mscl.MipDataPoint_swigregister(MipDataPoint) - -class ContinuousBIT(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def as_MipDataPoints(self): - return _mscl.ContinuousBIT_as_MipDataPoints(self) - - @staticmethod - def getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - - def data(self): - return _mscl.ContinuousBIT_data(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_bufferOverrun(self) - - def imuClockFault(self): - return _mscl.ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_pressureSelfTestFail(self) - - def filterTimingOverrun(self): - return _mscl.ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.ContinuousBIT_filterTimingUnderrun(self) - -# Register ContinuousBIT in _mscl: -_mscl.ContinuousBIT_swigregister(ContinuousBIT) - -def ContinuousBIT_getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - -class ContinuousBIT_System_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - SYSTEM_CLOCK_FAILURE = _mscl.ContinuousBIT_System_General_SYSTEM_CLOCK_FAILURE - POWER_FAULT = _mscl.ContinuousBIT_System_General_POWER_FAULT - FIRMWARE_FAULT = _mscl.ContinuousBIT_System_General_FIRMWARE_FAULT - TIMING_OVERLOAD = _mscl.ContinuousBIT_System_General_TIMING_OVERLOAD - BUFFER_OVERRUN = _mscl.ContinuousBIT_System_General_BUFFER_OVERRUN - - def flags(self): - return _mscl.ContinuousBIT_System_General_flags(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_System_General_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_System_General_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_System_General_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_System_General_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_System_General_bufferOverrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_General - -# Register ContinuousBIT_System_General in _mscl: -_mscl.ContinuousBIT_System_General_swigregister(ContinuousBIT_System_General) - -class ContinuousBIT_System_Process(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def flags(self): - return _mscl.ContinuousBIT_System_Process_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_Process - -# Register ContinuousBIT_System_Process in _mscl: -_mscl.ContinuousBIT_System_Process_swigregister(ContinuousBIT_System_Process) - -class ContinuousBIT_System(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_System_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_System_GENERAL_FLAGS - PROCESS_FLAGS = _mscl.ContinuousBIT_System_PROCESS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_System_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System - -# Register ContinuousBIT_System in _mscl: -_mscl.ContinuousBIT_System_swigregister(ContinuousBIT_System) - -class ContinuousBIT_IMU_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - CLOCK_FAULT = _mscl.ContinuousBIT_IMU_General_CLOCK_FAULT - COMMUNICATION_FAULT = _mscl.ContinuousBIT_IMU_General_COMMUNICATION_FAULT - TIMING_OVERRUN = _mscl.ContinuousBIT_IMU_General_TIMING_OVERRUN - CALIBRATION_ERROR_ACCEL = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_ACCEL - CALIBRATION_ERROR_GYRO = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_GYRO - CALIBRATION_ERROR_MAG = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_MAG - - def flags(self): - return _mscl.ContinuousBIT_IMU_General_flags(self) - - def clockFault(self): - return _mscl.ContinuousBIT_IMU_General_clockFault(self) - - def communicationFault(self): - return _mscl.ContinuousBIT_IMU_General_communicationFault(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_IMU_General_timingOverrun(self) - - def calibrationErrorAccel(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorAccel(self) - - def calibrationErrorGyro(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorGyro(self) - - def calibrationErrorMag(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorMag(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_General - -# Register ContinuousBIT_IMU_General in _mscl: -_mscl.ContinuousBIT_IMU_General_swigregister(ContinuousBIT_IMU_General) - -class ContinuousBIT_IMU_Sensors(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - ACCEL_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_GENERAL_FAULT - ACCEL_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_OVERRANGE - ACCEL_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_SELF_TEST_FAIL - GYRO_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_GYRO_GENERAL_FAULT - GYRO_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_GYRO_OVERRANGE - GYRO_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_GYRO_SELF_TEST_FAIL - MAG_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_MAG_GENERAL_FAULT - MAG_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_MAG_OVERRANGE - MAG_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_MAG_SELF_TEST_FAIL - PRESSURE_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_GENERAL_FAULT - PRESSURE_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_OVERRANGE - PRESSURE_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_SELF_TEST_FAIL - - def flags(self): - return _mscl.ContinuousBIT_IMU_Sensors_flags(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureSelfTestFail(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_Sensors - -# Register ContinuousBIT_IMU_Sensors in _mscl: -_mscl.ContinuousBIT_IMU_Sensors_swigregister(ContinuousBIT_IMU_Sensors) - -class ContinuousBIT_IMU(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_IMU_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_IMU_GENERAL_FLAGS - SENSORS_FLAGS = _mscl.ContinuousBIT_IMU_SENSORS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_IMU_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU - -# Register ContinuousBIT_IMU in _mscl: -_mscl.ContinuousBIT_IMU_swigregister(ContinuousBIT_IMU) - -class ContinuousBIT_Filter_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - TIMING_OVERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_OVERRUN - TIMING_UNDERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_UNDERRUN - - def flags(self): - return _mscl.ContinuousBIT_Filter_General_flags(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_Filter_General_timingOverrun(self) - - def timingUnderrun(self): - return _mscl.ContinuousBIT_Filter_General_timingUnderrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter_General - -# Register ContinuousBIT_Filter_General in _mscl: -_mscl.ContinuousBIT_Filter_General_swigregister(ContinuousBIT_Filter_General) - -class ContinuousBIT_Filter(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_Filter_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_Filter_GENERAL_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_Filter_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter - -# Register ContinuousBIT_Filter in _mscl: -_mscl.ContinuousBIT_Filter_swigregister(ContinuousBIT_Filter) - -class CV7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_General_swiginit(self, _mscl.new_CV7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_General - -# Register CV7ContinuousBIT_System_General in _mscl: -_mscl.CV7ContinuousBIT_System_General_swigregister(CV7ContinuousBIT_System_General) - -class CV7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_Process_swiginit(self, _mscl.new_CV7ContinuousBIT_System_Process(*args)) - IMU_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_IMU_PROCESS_FAULT - IMU_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_IMU_RATE_MISMATCH - IMU_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_IMU_DROPPED_DATA - IMU_STUCK = _mscl.CV7ContinuousBIT_System_Process_IMU_STUCK - FILTER_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_FILTER_PROCESS_FAULT - FILTER_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_FILTER_DROPPED_DATA - FILTER_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_FILTER_RATE_MISMATCH - FILTER_STUCK = _mscl.CV7ContinuousBIT_System_Process_FILTER_STUCK - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_filterStuck(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_Process - -# Register CV7ContinuousBIT_System_Process in _mscl: -_mscl.CV7ContinuousBIT_System_Process_swigregister(CV7ContinuousBIT_System_Process) - -class CV7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_swiginit(self, _mscl.new_CV7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.CV7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System - -# Register CV7ContinuousBIT_System in _mscl: -_mscl.CV7ContinuousBIT_System_swigregister(CV7ContinuousBIT_System) - -class CV7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_General - -# Register CV7ContinuousBIT_IMU_General in _mscl: -_mscl.CV7ContinuousBIT_IMU_General_swigregister(CV7ContinuousBIT_IMU_General) - -class CV7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_Sensors - -# Register CV7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.CV7ContinuousBIT_IMU_Sensors_swigregister(CV7ContinuousBIT_IMU_Sensors) - -class CV7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU(*args)) - FACTORY_BITS_INVALID = _mscl.CV7ContinuousBIT_IMU_FACTORY_BITS_INVALID - - def general(self): - return _mscl.CV7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.CV7ContinuousBIT_IMU_sensors(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_IMU_factoryBitsInvalid(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU - -# Register CV7ContinuousBIT_IMU in _mscl: -_mscl.CV7ContinuousBIT_IMU_swigregister(CV7ContinuousBIT_IMU) - -class CV7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter_General(*args)) - FAULT = _mscl.CV7ContinuousBIT_Filter_General_FAULT - - def fault(self): - return _mscl.CV7ContinuousBIT_Filter_General_fault(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter_General - -# Register CV7ContinuousBIT_Filter_General in _mscl: -_mscl.CV7ContinuousBIT_Filter_General_swigregister(CV7ContinuousBIT_Filter_General) - -class CV7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter - -# Register CV7ContinuousBIT_Filter in _mscl: -_mscl.CV7ContinuousBIT_Filter_swigregister(CV7ContinuousBIT_Filter) - -class CV7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.CV7ContinuousBIT_swiginit(self, _mscl.new_CV7ContinuousBIT(bytes)) - - def system(self): - return _mscl.CV7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.CV7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.CV7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.CV7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.CV7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.CV7ContinuousBIT_bufferOverrun(self) - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_filterStuck(self) - - def imu(self): - return _mscl.CV7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.CV7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.CV7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.CV7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.CV7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.CV7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.CV7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.CV7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.CV7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.CV7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.CV7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.CV7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.CV7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.CV7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.CV7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.CV7ContinuousBIT_pressureSelfTestFail(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_factoryBitsInvalid(self) - - def filter(self): - return _mscl.CV7ContinuousBIT_filter(self) - - def filterFault(self): - return _mscl.CV7ContinuousBIT_filterFault(self) - - def filterTimingOverrun(self): - return _mscl.CV7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.CV7ContinuousBIT_filterTimingUnderrun(self) - - def as_MipDataPoints(self): - return _mscl.CV7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT - -# Register CV7ContinuousBIT in _mscl: -_mscl.CV7ContinuousBIT_swigregister(CV7ContinuousBIT) - -class GQ7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_General - -# Register GQ7ContinuousBIT_System_General in _mscl: -_mscl.GQ7ContinuousBIT_System_General_swigregister(GQ7ContinuousBIT_System_General) - -class GQ7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_Process_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_Process(*args)) - IMU_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_CONTROL_LINE_FAULT - IMU_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_COMMAND_RESPONSE_FAULT - IMU_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_SPI_TRANSFER_FAULT - IMU_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_DATA_FRAME_FAULT - FILTER_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_CONTROL_LINE_FAULT - FILTER_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_COMMAND_RESPONSE_FAULT - FILTER_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_SPI_TRANSFER_FAULT - FILTER_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_DATA_FRAME_FAULT - GNSS_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_CONTROL_LINE_FAULT - GNSS_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_COMMAND_RESPONSE_FAULT - GNSS_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_SPI_TRANSFER_FAULT - GNSS_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_DATA_FRAME_FAULT - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssDataFrameFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_Process - -# Register GQ7ContinuousBIT_System_Process in _mscl: -_mscl.GQ7ContinuousBIT_System_Process_swigregister(GQ7ContinuousBIT_System_Process) - -class GQ7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_swiginit(self, _mscl.new_GQ7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.GQ7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System - -# Register GQ7ContinuousBIT_System in _mscl: -_mscl.GQ7ContinuousBIT_System_swigregister(GQ7ContinuousBIT_System) - -class GQ7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_General - -# Register GQ7ContinuousBIT_IMU_General in _mscl: -_mscl.GQ7ContinuousBIT_IMU_General_swigregister(GQ7ContinuousBIT_IMU_General) - -class GQ7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_Sensors - -# Register GQ7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.GQ7ContinuousBIT_IMU_Sensors_swigregister(GQ7ContinuousBIT_IMU_Sensors) - -class GQ7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.GQ7ContinuousBIT_IMU_sensors(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU - -# Register GQ7ContinuousBIT_IMU in _mscl: -_mscl.GQ7ContinuousBIT_IMU_swigregister(GQ7ContinuousBIT_IMU) - -class GQ7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_HARDWARE_FAULT - COMMUNICATION_ERROR_IMU_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_IMU_SPI - COMMUNICATION_ERROR_GNSS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_GNSS_SPI - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_COMMS_UART = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_UART - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationError(self) - - def communicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorImuSpi(self) - - def communicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorGnssSpi(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsSpi(self) - - def communicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsUart(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter_General - -# Register GQ7ContinuousBIT_Filter_General in _mscl: -_mscl.GQ7ContinuousBIT_Filter_General_swigregister(GQ7ContinuousBIT_Filter_General) - -class GQ7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter - -# Register GQ7ContinuousBIT_Filter in _mscl: -_mscl.GQ7ContinuousBIT_Filter_swigregister(GQ7ContinuousBIT_Filter) - -class GQ7ContinuousBIT_GNSS_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_HARDWARE_FAULT - COMMUNICATION_ERROR_COMMS_SERIAL = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SERIAL - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_NAV_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_NAV_SPI - GPS_TIME_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_GPS_TIME_FAULT - TIMING_OVERRUN = _mscl.GQ7ContinuousBIT_GNSS_General_TIMING_OVERRUN - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_flags(self) - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationError(self) - - def communicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSerial(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSpi(self) - - def communicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_gpsTimeFault(self) - - def timingOverrun(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_timingOverrun(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_General - -# Register GQ7ContinuousBIT_GNSS_General in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_General_swigregister(GQ7ContinuousBIT_GNSS_General) - -class GQ7ContinuousBIT_GNSS_Receivers(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_Receivers_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_Receivers(*args)) - POWER_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_1 - FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_1 - SHORTED_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_1 - OPEN_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_1 - SOLUTION_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_1 - POWER_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_2 - FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_2 - SHORTED_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_2 - OPEN_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_2 - SOLUTION_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_2 - RTCM_COMMUNICATION_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTCM_COMMUNICATION_FAULT - RTK_DONGLE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTK_DONGLE_FAULT - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_flags(self) - - def powerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver1(self) - - def faultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver1(self) - - def shortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna1(self) - - def openAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna1(self) - - def solutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver1(self) - - def powerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver2(self) - - def faultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver2(self) - - def shortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna2(self) - - def openAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna2(self) - - def solutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtkDongleFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_Receivers - -# Register GQ7ContinuousBIT_GNSS_Receivers in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_Receivers_swigregister(GQ7ContinuousBIT_GNSS_Receivers) - -class GQ7ContinuousBIT_GNSS(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS(*args)) - RESPONSE_OFFSET = _mscl.GQ7ContinuousBIT_GNSS_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_GENERAL_FLAGS - RECEIVERS_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_RECEIVERS_FLAGS - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_flags(self) - - def general(self): - return _mscl.GQ7ContinuousBIT_GNSS_general(self) - - def receivers(self): - return _mscl.GQ7ContinuousBIT_GNSS_receivers(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS - -# Register GQ7ContinuousBIT_GNSS in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_swigregister(GQ7ContinuousBIT_GNSS) - -class GQ7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.GQ7ContinuousBIT_swiginit(self, _mscl.new_GQ7ContinuousBIT(bytes)) - - def system(self): - return _mscl.GQ7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.GQ7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.GQ7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.GQ7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.GQ7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.GQ7ContinuousBIT_bufferOverrun(self) - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_gnssDataFrameFault(self) - - def imu(self): - return _mscl.GQ7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.GQ7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.GQ7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.GQ7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.GQ7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.GQ7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.GQ7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.GQ7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.GQ7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.GQ7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_pressureSelfTestFail(self) - - def filter(self): - return _mscl.GQ7ContinuousBIT_filter(self) - - def filterClockFault(self): - return _mscl.GQ7ContinuousBIT_filterClockFault(self) - - def filterHardwareFault(self): - return _mscl.GQ7ContinuousBIT_filterHardwareFault(self) - - def filterTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingUnderrun(self) - - def filterCommunicationError(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationError(self) - - def filterCommunicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorImuSpi(self) - - def filterCommunicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorGnssSpi(self) - - def filterCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsSpi(self) - - def filterCommunicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsUart(self) - - def gnss(self): - return _mscl.GQ7ContinuousBIT_gnss(self) - - def gnssClockFault(self): - return _mscl.GQ7ContinuousBIT_gnssClockFault(self) - - def gnssHardwareFault(self): - return _mscl.GQ7ContinuousBIT_gnssHardwareFault(self) - - def gnssCommunicationError(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationError(self) - - def gnssCommunicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSerial(self) - - def gnssCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSpi(self) - - def gnssCommunicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_gpsTimeFault(self) - - def gnssTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_gnssTimingOverrun(self) - - def gnssPowerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver1(self) - - def gnssFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver1(self) - - def gnssShortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna1(self) - - def gnssOpenAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna1(self) - - def gnssSolutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver1(self) - - def gnssPowerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver2(self) - - def gnssFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver2(self) - - def gnssShortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna2(self) - - def gnssOpenAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna2(self) - - def gnssSolutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_rtkDongleFault(self) - - def as_MipDataPoints(self): - return _mscl.GQ7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT - -# Register GQ7ContinuousBIT in _mscl: -_mscl.GQ7ContinuousBIT_swigregister(GQ7ContinuousBIT) - -class MipSharedDataFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EVENT_SOURCE_NONE = _mscl.MipSharedDataFields_EVENT_SOURCE_NONE - EVENT_SOURCE_UNKNOWN = _mscl.MipSharedDataFields_EVENT_SOURCE_UNKNOWN - - def __init__(self): - _mscl.MipSharedDataFields_swiginit(self, _mscl.new_MipSharedDataFields()) - - def hasEventSource(self): - return _mscl.MipSharedDataFields_hasEventSource(self) - - def eventSource(self): - return _mscl.MipSharedDataFields_eventSource(self) - - def hasTicks(self): - return _mscl.MipSharedDataFields_hasTicks(self) - - def ticks(self): - return _mscl.MipSharedDataFields_ticks(self) - - def hasDeltaTicks(self): - return _mscl.MipSharedDataFields_hasDeltaTicks(self) - - def deltaTicks(self): - return _mscl.MipSharedDataFields_deltaTicks(self) - - def hasGpsTimestamp(self): - return _mscl.MipSharedDataFields_hasGpsTimestamp(self) - - def gpsTimestamp(self): - return _mscl.MipSharedDataFields_gpsTimestamp(self) - - def gpsTimestampValid(self): - return _mscl.MipSharedDataFields_gpsTimestampValid(self) - - def hasDeltaTime(self): - return _mscl.MipSharedDataFields_hasDeltaTime(self) - - def deltaTime(self): - return _mscl.MipSharedDataFields_deltaTime(self) - - def hasReferenceTime(self): - return _mscl.MipSharedDataFields_hasReferenceTime(self) - - def referenceTime(self): - return _mscl.MipSharedDataFields_referenceTime(self) - - def hasDeltaReferenceTime(self): - return _mscl.MipSharedDataFields_hasDeltaReferenceTime(self) - - def deltaReferenceTime(self): - return _mscl.MipSharedDataFields_deltaReferenceTime(self) - - def hasExternalTimestamp(self): - return _mscl.MipSharedDataFields_hasExternalTimestamp(self) - - def externalTimestamp(self): - return _mscl.MipSharedDataFields_externalTimestamp(self) - - def externalTimestampValid(self): - return _mscl.MipSharedDataFields_externalTimestampValid(self) - - def hasDeltaExternalTime(self): - return _mscl.MipSharedDataFields_hasDeltaExternalTime(self) - - def deltaExternalTime(self): - return _mscl.MipSharedDataFields_deltaExternalTime(self) - - def deltaExternalTimeValid(self): - return _mscl.MipSharedDataFields_deltaExternalTimeValid(self) - - def get(self, *args): - return _mscl.MipSharedDataFields_get(self, *args) - __swig_destroy__ = _mscl.delete_MipSharedDataFields - -# Register MipSharedDataFields in _mscl: -_mscl.MipSharedDataFields_swigregister(MipSharedDataFields) - -class MipDataPacket(MipPacket): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipDataPacket_swiginit(self, _mscl.new_MipDataPacket(*args)) - - def data(self): - return _mscl.MipDataPacket_data(self) - - def shared(self): - return _mscl.MipDataPacket_shared(self) - - def collectedTimestamp(self): - return _mscl.MipDataPacket_collectedTimestamp(self) - - def deviceTimestamp(self): - return _mscl.MipDataPacket_deviceTimestamp(self) - - def hasDeviceTime(self): - return _mscl.MipDataPacket_hasDeviceTime(self) - - def deviceTimeValid(self): - return _mscl.MipDataPacket_deviceTimeValid(self) - - def deviceTimeFlags(self): - return _mscl.MipDataPacket_deviceTimeFlags(self) - __swig_destroy__ = _mscl.delete_MipDataPacket - -# Register MipDataPacket in _mscl: -_mscl.MipDataPacket_swigregister(MipDataPacket) - -class RawBytePacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INVALID_PACKET = _mscl.RawBytePacket_INVALID_PACKET - DATA_PACKET = _mscl.RawBytePacket_DATA_PACKET - COMMAND_PACKET = _mscl.RawBytePacket_COMMAND_PACKET - NO_PACKET_FOUND = _mscl.RawBytePacket_NO_PACKET_FOUND - FROM_READ = _mscl.RawBytePacket_FROM_READ - FROM_SEND = _mscl.RawBytePacket_FROM_SEND - - def __init__(self): - _mscl.RawBytePacket_swiginit(self, _mscl.new_RawBytePacket()) - - def type(self, *args): - return _mscl.RawBytePacket_type(self, *args) - - def source(self, *args): - return _mscl.RawBytePacket_source(self, *args) - - def payload(self, *args): - return _mscl.RawBytePacket_payload(self, *args) - __swig_destroy__ = _mscl.delete_RawBytePacket - -# Register RawBytePacket in _mscl: -_mscl.RawBytePacket_swigregister(RawBytePacket) - -class MipNodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_MipNodeFeatures - - @staticmethod - def isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - - def supportsCategory(self, dataClass): - return _mscl.MipNodeFeatures_supportsCategory(self, dataClass) - - def supportsCommand(self, commandId): - return _mscl.MipNodeFeatures_supportsCommand(self, commandId) - - def supportedCommands(self): - return _mscl.MipNodeFeatures_supportedCommands(self) - - def supportsChannelField(self, fieldId): - return _mscl.MipNodeFeatures_supportsChannelField(self, fieldId) - - def filterSupportedChannelFields(self, fields): - return _mscl.MipNodeFeatures_filterSupportedChannelFields(self, fields) - - def supportedChannelFields(self, *args): - return _mscl.MipNodeFeatures_supportedChannelFields(self, *args) - - def supportedSampleRates(self, dataClass): - return _mscl.MipNodeFeatures_supportedSampleRates(self, dataClass) - - def baseDataRate(self, dataClass): - return _mscl.MipNodeFeatures_baseDataRate(self, dataClass) - - def gnssReceiverInfo(self): - return _mscl.MipNodeFeatures_gnssReceiverInfo(self) - - def supportedGnssSources(self): - return _mscl.MipNodeFeatures_supportedGnssSources(self) - - def supportedSensorRanges(self, *args): - return _mscl.MipNodeFeatures_supportedSensorRanges(self, *args) - - def getCommPortInfo(self): - return _mscl.MipNodeFeatures_getCommPortInfo(self) - - def useLegacyIdsForEnableDataStream(self): - return _mscl.MipNodeFeatures_useLegacyIdsForEnableDataStream(self) - - def supportedHeadingUpdateOptions(self): - return _mscl.MipNodeFeatures_supportedHeadingUpdateOptions(self) - - def supportedHeadingAlignmentMethods(self): - return _mscl.MipNodeFeatures_supportedHeadingAlignmentMethods(self) - - def supportedStatusSelectors(self): - return _mscl.MipNodeFeatures_supportedStatusSelectors(self) - - def supportedEstimationControlOptions(self): - return _mscl.MipNodeFeatures_supportedEstimationControlOptions(self) - - def supportedVehicleModeTypes(self): - return _mscl.MipNodeFeatures_supportedVehicleModeTypes(self) - - def supportedAdaptiveMeasurementModes(self): - return _mscl.MipNodeFeatures_supportedAdaptiveMeasurementModes(self) - - def supportedAdaptiveFilterLevels(self): - return _mscl.MipNodeFeatures_supportedAdaptiveFilterLevels(self) - - def supportedAidingMeasurementOptions(self): - return _mscl.MipNodeFeatures_supportedAidingMeasurementOptions(self) - - def supportedPpsSourceOptions(self): - return _mscl.MipNodeFeatures_supportedPpsSourceOptions(self) - - def supportedGpioPins(self): - return _mscl.MipNodeFeatures_supportedGpioPins(self) - - def supportedGpioPinModes(self, feature, behavior): - return _mscl.MipNodeFeatures_supportedGpioPinModes(self, feature, behavior) - - def supportedGpioBehaviors(self, feature, pin): - return _mscl.MipNodeFeatures_supportedGpioBehaviors(self, feature, pin) - - def supportedGpioFeatures(self, pin): - return _mscl.MipNodeFeatures_supportedGpioFeatures(self, pin) - - def supportedGpioConfigurations(self): - return _mscl.MipNodeFeatures_supportedGpioConfigurations(self) - - def supportedGnssSignalConfigurations(self): - return _mscl.MipNodeFeatures_supportedGnssSignalConfigurations(self) - - def supportedDeclinationSources(self): - return _mscl.MipNodeFeatures_supportedDeclinationSources(self) - - def supportedInclinationSources(self): - return _mscl.MipNodeFeatures_supportedInclinationSources(self) - - def supportedMagneticMagnitudeSources(self): - return _mscl.MipNodeFeatures_supportedMagneticMagnitudeSources(self) - - def supportedEventThresholdChannels(self): - return _mscl.MipNodeFeatures_supportedEventThresholdChannels(self) - - def supportedEventActionInfo(self): - return _mscl.MipNodeFeatures_supportedEventActionInfo(self) - - def supportedEventTriggerInfo(self): - return _mscl.MipNodeFeatures_supportedEventTriggerInfo(self) - - def supportsNorthCompensation(self): - return _mscl.MipNodeFeatures_supportsNorthCompensation(self) - - def supportedLowPassFilterChannelFields(self): - return _mscl.MipNodeFeatures_supportedLowPassFilterChannelFields(self) - - def maxMeasurementReferenceFrameId(self): - return _mscl.MipNodeFeatures_maxMeasurementReferenceFrameId(self) - -# Register MipNodeFeatures in _mscl: -_mscl.MipNodeFeatures_swigregister(MipNodeFeatures) - -def MipNodeFeatures_isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - -class MipNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.MipNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - def getConfigCommandBytes(self): - return _mscl.MipNode_getConfigCommandBytes(self) - - def sendCommandBytes(self, *args): - return _mscl.MipNode_sendCommandBytes(self, *args) - - @staticmethod - def deviceName(serial): - return _mscl.MipNode_deviceName(serial) - - def connection(self): - return _mscl.MipNode_connection(self) - - def features(self): - return _mscl.MipNode_features(self) - - def clearDeviceInfo(self): - return _mscl.MipNode_clearDeviceInfo(self) - - def lastCommunicationTime(self): - return _mscl.MipNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.MipNode_lastDeviceState(self) - - def setLastDeviceState(self, state): - return _mscl.MipNode_setLastDeviceState(self, state) - - def firmwareVersion(self): - return _mscl.MipNode_firmwareVersion(self) - - def model(self): - return _mscl.MipNode_model(self) - - def modelName(self): - return _mscl.MipNode_modelName(self) - - def modelNumber(self): - return _mscl.MipNode_modelNumber(self) - - def serialNumber(self): - return _mscl.MipNode_serialNumber(self) - - def lotNumber(self): - return _mscl.MipNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.MipNode_deviceOptions(self) - - def timeout(self, *args): - return _mscl.MipNode_timeout(self, *args) - - def name(self): - return _mscl.MipNode_name(self) - - def ping(self): - return _mscl.MipNode_ping(self) - - def setToIdle(self): - return _mscl.MipNode_setToIdle(self) - - def cyclePower(self): - return _mscl.MipNode_cyclePower(self) - - def resume(self): - return _mscl.MipNode_resume(self) - - def getCommunicationMode(self): - return _mscl.MipNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.MipNode_setCommunicationMode(self, communicationMode) - - def saveSettingsAsStartup(self, *args): - return _mscl.MipNode_saveSettingsAsStartup(self, *args) - - def loadStartupSettings(self, *args): - return _mscl.MipNode_loadStartupSettings(self, *args) - - def loadFactoryDefaultSettings(self, *args): - return _mscl.MipNode_loadFactoryDefaultSettings(self, *args) - - def setUARTBaudRate(self, *args): - return _mscl.MipNode_setUARTBaudRate(self, *args) - - def getUARTBaudRate(self, portId=1): - return _mscl.MipNode_getUARTBaudRate(self, portId) - - def getRawBytePackets(self, timeout=0, maxPackets=0): - return _mscl.MipNode_getRawBytePackets(self, timeout, maxPackets) - -# Register MipNode in _mscl: -_mscl.MipNode_swigregister(MipNode) - -def MipNode_deviceName(serial): - return _mscl.MipNode_deviceName(serial) - -class InertialNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.InertialNode_swiginit(self, _mscl.new_InertialNode(connection)) - __swig_destroy__ = _mscl.delete_InertialNode - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.InertialNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.InertialNode_totalPackets(self) - - def pollData(self, *args): - return _mscl.InertialNode_pollData(self, *args) - - def getDataRateBase(self, dataClass): - return _mscl.InertialNode_getDataRateBase(self, dataClass) - - def getActiveChannelFields(self, dataClass): - return _mscl.InertialNode_getActiveChannelFields(self, dataClass) - - def setActiveChannelFields(self, dataClass, channels): - return _mscl.InertialNode_setActiveChannelFields(self, dataClass, channels) - - def saveActiveChannelFields(self, dataClass): - return _mscl.InertialNode_saveActiveChannelFields(self, dataClass) - - def setFactoryStreamingChannels(self, option): - return _mscl.InertialNode_setFactoryStreamingChannels(self, option) - - def getInterfaceControl(self, interfaceId): - return _mscl.InertialNode_getInterfaceControl(self, interfaceId) - - def setInterfaceControl(self, *args): - return _mscl.InertialNode_setInterfaceControl(self, *args) - - def getCommunicationMode(self): - return _mscl.InertialNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.InertialNode_setCommunicationMode(self, communicationMode) - - def isDataStreamEnabled(self, dataClass): - return _mscl.InertialNode_isDataStreamEnabled(self, dataClass) - - def enableDataStream(self, dataClass, enable=True, resumeStreaming=True): - return _mscl.InertialNode_enableDataStream(self, dataClass, enable, resumeStreaming) - - def resetFilter(self): - return _mscl.InertialNode_resetFilter(self) - - def runFilter(self): - return _mscl.InertialNode_runFilter(self) - - def getAutoInitialization(self): - return _mscl.InertialNode_getAutoInitialization(self) - - def setAutoInitialization(self, enable): - return _mscl.InertialNode_setAutoInitialization(self, enable) - - def getAltitudeAid(self): - return _mscl.InertialNode_getAltitudeAid(self) - - def setAltitudeAid(self, enable): - return _mscl.InertialNode_setAltitudeAid(self, enable) - - def getPitchRollAid(self): - return _mscl.InertialNode_getPitchRollAid(self) - - def setPitchRollAid(self, enable): - return _mscl.InertialNode_setPitchRollAid(self, enable) - - def enableVerticalGyroConstraint(self, enable): - return _mscl.InertialNode_enableVerticalGyroConstraint(self, enable) - - def verticalGyroConstraintEnabled(self): - return _mscl.InertialNode_verticalGyroConstraintEnabled(self) - - def enableWheeledVehicleConstraint(self, enable): - return _mscl.InertialNode_enableWheeledVehicleConstraint(self, enable) - - def wheeledVehicleConstraintEnabled(self): - return _mscl.InertialNode_wheeledVehicleConstraintEnabled(self) - - def setVelocityZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setVelocityZUPT(self, ZUPTSettings) - - def getVelocityZUPT(self): - return _mscl.InertialNode_getVelocityZUPT(self) - - def setAngularRateZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setAngularRateZUPT(self, ZUPTSettings) - - def getAngularRateZUPT(self): - return _mscl.InertialNode_getAngularRateZUPT(self) - - def cmdedVelZUPT(self): - return _mscl.InertialNode_cmdedVelZUPT(self) - - def cmdedAngRateZUPT(self): - return _mscl.InertialNode_cmdedAngRateZUPT(self) - - def setInitialAttitude(self, attitude): - return _mscl.InertialNode_setInitialAttitude(self, attitude) - - def setInitialHeading(self, heading): - return _mscl.InertialNode_setInitialHeading(self, heading) - - def getInitialFilterConfiguration(self): - return _mscl.InertialNode_getInitialFilterConfiguration(self) - - def setInitialFilterConfiguration(self, filterConfig): - return _mscl.InertialNode_setInitialFilterConfiguration(self, filterConfig) - - def getSensorToVehicleRotation_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleRotation_eulerAngles(self) - - def setSensorToVehicleRotation_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleRotation_eulerAngles(self, angles) - - def getSensorToVehicleRotation_matrix(self): - return _mscl.InertialNode_getSensorToVehicleRotation_matrix(self) - - def setSensorToVehicleRotation_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleRotation_matrix(self, dcm) - - def getSensorToVehicleRotation_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleRotation_quaternion(self) - - def setSensorToVehicleRotation_quaternion(self, rotation): - return _mscl.InertialNode_setSensorToVehicleRotation_quaternion(self, rotation) - - def getSensorToVehicleTransform_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleTransform_eulerAngles(self) - - def setSensorToVehicleTransform_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleTransform_eulerAngles(self, angles) - - def getSensorToVehicleTransform_matrix(self): - return _mscl.InertialNode_getSensorToVehicleTransform_matrix(self) - - def setSensorToVehicleTransform_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleTransform_matrix(self, dcm) - - def getSensorToVehicleTransform_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleTransform_quaternion(self) - - def setSensorToVehicleTransform_quaternion(self, transformation): - return _mscl.InertialNode_setSensorToVehicleTransform_quaternion(self, transformation) - - def getSensorToVehicleOffset(self): - return _mscl.InertialNode_getSensorToVehicleOffset(self) - - def setSensorToVehicleOffset(self, offset): - return _mscl.InertialNode_setSensorToVehicleOffset(self, offset) - - def getAntennaOffset(self): - return _mscl.InertialNode_getAntennaOffset(self) - - def setAntennaOffset(self, offset): - return _mscl.InertialNode_setAntennaOffset(self, offset) - - def getGNSSAssistedFixControl(self): - return _mscl.InertialNode_getGNSSAssistedFixControl(self) - - def setGNSSAssistedFixControl(self, enableAssistedFix): - return _mscl.InertialNode_setGNSSAssistedFixControl(self, enableAssistedFix) - - def getGNSSAssistTimeUpdate(self): - return _mscl.InertialNode_getGNSSAssistTimeUpdate(self) - - def setGNSSAssistTimeUpdate(self, timeUpdate): - return _mscl.InertialNode_setGNSSAssistTimeUpdate(self, timeUpdate) - - def getGPSTimeUpdate(self, timeFrame): - return _mscl.InertialNode_getGPSTimeUpdate(self, timeFrame) - - def setGPSTimeUpdate(self, arg2, timeData): - return _mscl.InertialNode_setGPSTimeUpdate(self, arg2, timeData) - - def setConstellationSettings(self, dataToUse): - return _mscl.InertialNode_setConstellationSettings(self, dataToUse) - - def getConstellationSettings(self): - return _mscl.InertialNode_getConstellationSettings(self) - - def setSBASSettings(self, dataToUse): - return _mscl.InertialNode_setSBASSettings(self, dataToUse) - - def getSBASSettings(self): - return _mscl.InertialNode_getSBASSettings(self) - - def setAccelerometerBias(self, biasVector): - return _mscl.InertialNode_setAccelerometerBias(self, biasVector) - - def getAccelerometerBias(self): - return _mscl.InertialNode_getAccelerometerBias(self) - - def setGyroBias(self, biasVector): - return _mscl.InertialNode_setGyroBias(self, biasVector) - - def getGyroBias(self): - return _mscl.InertialNode_getGyroBias(self) - - def captureGyroBias(self, samplingTime): - return _mscl.InertialNode_captureGyroBias(self, samplingTime) - - def findMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_findMagnetometerCaptureAutoCalibration(self) - - def saveMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_saveMagnetometerCaptureAutoCalibration(self) - - def setMagnetometerSoftIronMatrix(self, matrix): - return _mscl.InertialNode_setMagnetometerSoftIronMatrix(self, matrix) - - def getMagnetometerSoftIronMatrix(self): - return _mscl.InertialNode_getMagnetometerSoftIronMatrix(self) - - def setMagnetometerHardIronOffset(self, offsetVector): - return _mscl.InertialNode_setMagnetometerHardIronOffset(self, offsetVector) - - def getMagnetometerHardIronOffset(self): - return _mscl.InertialNode_getMagnetometerHardIronOffset(self) - - def setConingAndScullingEnable(self, enable): - return _mscl.InertialNode_setConingAndScullingEnable(self, enable) - - def getConingAndScullingEnable(self): - return _mscl.InertialNode_getConingAndScullingEnable(self) - - def setLowPassFilterSettings(self, data): - return _mscl.InertialNode_setLowPassFilterSettings(self, data) - - def getLowPassFilterSettings(self, dataDescriptors): - return _mscl.InertialNode_getLowPassFilterSettings(self, dataDescriptors) - - def setComplementaryFilterSettings(self, data): - return _mscl.InertialNode_setComplementaryFilterSettings(self, data) - - def getComplementaryFilterSettings(self): - return _mscl.InertialNode_getComplementaryFilterSettings(self) - - def getBasicDeviceStatus(self): - return _mscl.InertialNode_getBasicDeviceStatus(self) - - def getDiagnosticDeviceStatus(self): - return _mscl.InertialNode_getDiagnosticDeviceStatus(self) - - def sendRawRTCM_2_3Message(self, theMessage): - return _mscl.InertialNode_sendRawRTCM_2_3Message(self, theMessage) - - def setVehicleDynamicsMode(self, mode): - return _mscl.InertialNode_setVehicleDynamicsMode(self, mode) - - def getVehicleDynamicsMode(self): - return _mscl.InertialNode_getVehicleDynamicsMode(self) - - def setEstimationControlFlags(self, flags): - return _mscl.InertialNode_setEstimationControlFlags(self, flags) - - def getEstimationControlFlags(self): - return _mscl.InertialNode_getEstimationControlFlags(self) - - def setInclinationSource(self, options): - return _mscl.InertialNode_setInclinationSource(self, options) - - def getInclinationSource(self): - return _mscl.InertialNode_getInclinationSource(self) - - def setDeclinationSource(self, options): - return _mscl.InertialNode_setDeclinationSource(self, options) - - def getDeclinationSource(self): - return _mscl.InertialNode_getDeclinationSource(self) - - def setMagneticFieldMagnitudeSource(self, options): - return _mscl.InertialNode_setMagneticFieldMagnitudeSource(self, options) - - def getMagneticFieldMagnitudeSource(self): - return _mscl.InertialNode_getMagneticFieldMagnitudeSource(self) - - def setGNSS_SourceControl(self, gnssSource): - return _mscl.InertialNode_setGNSS_SourceControl(self, gnssSource) - - def getGNSS_SourceControl(self): - return _mscl.InertialNode_getGNSS_SourceControl(self) - - def sendExternalGNSSUpdate(self, gnssUpdateData): - return _mscl.InertialNode_sendExternalGNSSUpdate(self, gnssUpdateData) - - def setHeadingUpdateControl(self, headingUpdateOptions): - return _mscl.InertialNode_setHeadingUpdateControl(self, headingUpdateOptions) - - def tareOrientation(self, axisValue): - return _mscl.InertialNode_tareOrientation(self, axisValue) - - def getHeadingUpdateControl(self): - return _mscl.InertialNode_getHeadingUpdateControl(self) - - def setGravityErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setGravityErrorAdaptiveMeasurement(self, data) - - def getGravityErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getGravityErrorAdaptiveMeasurement(self) - - def setMagnetometerErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagnetometerErrorAdaptiveMeasurement(self, data) - - def getMagnetometerErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagnetometerErrorAdaptiveMeasurement(self) - - def setMagDipAngleErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagDipAngleErrorAdaptiveMeasurement(self, data) - - def getMagDipAngleErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagDipAngleErrorAdaptiveMeasurement(self) - - def setMagNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setMagNoiseStandardDeviation(self, data) - - def getMagNoiseStandardDeviation(self): - return _mscl.InertialNode_getMagNoiseStandardDeviation(self) - - def setGravNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGravNoiseStandardDeviation(self, data) - - def getGravNoiseStandardDeviation(self): - return _mscl.InertialNode_getGravNoiseStandardDeviation(self) - - def setAccelNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setAccelNoiseStandardDeviation(self, data) - - def getAccelNoiseStandardDeviation(self): - return _mscl.InertialNode_getAccelNoiseStandardDeviation(self) - - def setGyroNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGyroNoiseStandardDeviation(self, data) - - def getGyroNoiseStandardDeviation(self): - return _mscl.InertialNode_getGyroNoiseStandardDeviation(self) - - def setPressureAltNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setPressureAltNoiseStandardDeviation(self, data) - - def getPressureAltNoiseStandardDeviation(self): - return _mscl.InertialNode_getPressureAltNoiseStandardDeviation(self) - - def setHardIronOffsetProcessNoise(self, data): - return _mscl.InertialNode_setHardIronOffsetProcessNoise(self, data) - - def getHardIronOffsetProcessNoise(self): - return _mscl.InertialNode_getHardIronOffsetProcessNoise(self) - - def setAccelBiasModelParams(self, data): - return _mscl.InertialNode_setAccelBiasModelParams(self, data) - - def getAccelBiasModelParams(self): - return _mscl.InertialNode_getAccelBiasModelParams(self) - - def setGyroBiasModelParams(self, data): - return _mscl.InertialNode_setGyroBiasModelParams(self, data) - - def getGyroBiasModelParams(self): - return _mscl.InertialNode_getGyroBiasModelParams(self) - - def setSoftIronMatrixProcessNoise(self, data): - return _mscl.InertialNode_setSoftIronMatrixProcessNoise(self, data) - - def getSoftIronMatrixProcessNoise(self): - return _mscl.InertialNode_getSoftIronMatrixProcessNoise(self) - - def setFixedReferencePosition(self, data): - return _mscl.InertialNode_setFixedReferencePosition(self, data) - - def getFixedReferencePosition(self): - return _mscl.InertialNode_getFixedReferencePosition(self) - - def setGPSDynamicsMode(self, data): - return _mscl.InertialNode_setGPSDynamicsMode(self, data) - - def getGPSDynamicsMode(self): - return _mscl.InertialNode_getGPSDynamicsMode(self) - - def setDevicePowerState(self, device, data): - return _mscl.InertialNode_setDevicePowerState(self, device, data) - - def getDevicePowerState(self, device): - return _mscl.InertialNode_getDevicePowerState(self, device) - - def setDeviceStreamFormat(self, device, data): - return _mscl.InertialNode_setDeviceStreamFormat(self, device, data) - - def getDeviceStreamFormat(self, device): - return _mscl.InertialNode_getDeviceStreamFormat(self, device) - - def setSignalConditioningSettings(self, data): - return _mscl.InertialNode_setSignalConditioningSettings(self, data) - - def getSignalConditioningSettings(self): - return _mscl.InertialNode_getSignalConditioningSettings(self) - - def setEnableDisableMeasurements(self, data): - return _mscl.InertialNode_setEnableDisableMeasurements(self, data) - - def getEnableDisableMeasurements(self): - return _mscl.InertialNode_getEnableDisableMeasurements(self) - - def setGravityNoiseMinimum(self, data): - return _mscl.InertialNode_setGravityNoiseMinimum(self, data) - - def getGravityNoiseMinimum(self): - return _mscl.InertialNode_getGravityNoiseMinimum(self) - - def sendExternalHeadingUpdate(self, *args): - return _mscl.InertialNode_sendExternalHeadingUpdate(self, *args) - - def aidingMeasurementEnabled(self, aidingSource): - return _mscl.InertialNode_aidingMeasurementEnabled(self, aidingSource) - - def enableDisableAidingMeasurement(self, aidingSource, enable): - return _mscl.InertialNode_enableDisableAidingMeasurement(self, aidingSource, enable) - - def getAdaptiveFilterOptions(self): - return _mscl.InertialNode_getAdaptiveFilterOptions(self) - - def setAdaptiveFilterOptions(self, options): - return _mscl.InertialNode_setAdaptiveFilterOptions(self, options) - - def getMultiAntennaOffset(self, receiverId): - return _mscl.InertialNode_getMultiAntennaOffset(self, receiverId) - - def setMultiAntennaOffset(self, receiverId, offset): - return _mscl.InertialNode_setMultiAntennaOffset(self, receiverId, offset) - - def getPpsSource(self): - return _mscl.InertialNode_getPpsSource(self) - - def setPpsSource(self, ppsSource): - return _mscl.InertialNode_setPpsSource(self, ppsSource) - - def getOdometerConfig(self): - return _mscl.InertialNode_getOdometerConfig(self) - - def setOdometerConfig(self, config): - return _mscl.InertialNode_setOdometerConfig(self, config) - - def getSensorRange(self, sensorRangeType): - return _mscl.InertialNode_getSensorRange(self, sensorRangeType) - - def setSensorRange(self, *args): - return _mscl.InertialNode_setSensorRange(self, *args) - - def getGpioConfig(self, pin): - return _mscl.InertialNode_getGpioConfig(self, pin) - - def setGpioConfig(self, config): - return _mscl.InertialNode_setGpioConfig(self, config) - - def getGpioState(self, pin): - return _mscl.InertialNode_getGpioState(self, pin) - - def setGpioState(self, pin, state): - return _mscl.InertialNode_setGpioState(self, pin, state) - - def getEventTriggerMode(self, instance): - return _mscl.InertialNode_getEventTriggerMode(self, instance) - - def setEventTriggerMode(self, instance, mode): - return _mscl.InertialNode_setEventTriggerMode(self, instance, mode) - - def getEventTriggerConfig(self, instance): - return _mscl.InertialNode_getEventTriggerConfig(self, instance) - - def setEventTriggerConfig(self, config): - return _mscl.InertialNode_setEventTriggerConfig(self, config) - - def getEventActionConfig(self, instance): - return _mscl.InertialNode_getEventActionConfig(self, instance) - - def setEventActionConfig(self, config, validateSupported=True): - return _mscl.InertialNode_setEventActionConfig(self, config, validateSupported) - - def getAntennaLeverArmCal(self): - return _mscl.InertialNode_getAntennaLeverArmCal(self) - - def setAntennaLeverArmCal(self, config): - return _mscl.InertialNode_setAntennaLeverArmCal(self, config) - - def getRelativePositionReference(self): - return _mscl.InertialNode_getRelativePositionReference(self) - - def setRelativePositionReference(self, ref): - return _mscl.InertialNode_setRelativePositionReference(self, ref) - - def getLeverArmReferenceOffset(self): - return _mscl.InertialNode_getLeverArmReferenceOffset(self) - - def setLeverArmReferenceOffset(self, offset): - return _mscl.InertialNode_setLeverArmReferenceOffset(self, offset) - - def sendExternalSpeedMeasurementUpdate(self, tow, speed, unc): - return _mscl.InertialNode_sendExternalSpeedMeasurementUpdate(self, tow, speed, unc) - - def getSpeedMeasurementOffset(self): - return _mscl.InertialNode_getSpeedMeasurementOffset(self) - - def setSpeedMeasurementOffset(self, offset): - return _mscl.InertialNode_setSpeedMeasurementOffset(self, offset) - - def getGnssSignalConfig(self): - return _mscl.InertialNode_getGnssSignalConfig(self) - - def setGnssSignalConfig(self, config): - return _mscl.InertialNode_setGnssSignalConfig(self, config) - - def getGnssSpartnConfig(self): - return _mscl.InertialNode_getGnssSpartnConfig(self) - - def setGnssSpartnConfig(self, config): - return _mscl.InertialNode_setGnssSpartnConfig(self, config) - - def rtkEnabled(self): - return _mscl.InertialNode_rtkEnabled(self) - - def enableRtk(self, enable): - return _mscl.InertialNode_enableRtk(self, enable) - - def getEventTriggerStatus(self, *args): - return _mscl.InertialNode_getEventTriggerStatus(self, *args) - - def getEventActionStatus(self, *args): - return _mscl.InertialNode_getEventActionStatus(self, *args) - - def getNmeaMessageFormat(self): - return _mscl.InertialNode_getNmeaMessageFormat(self) - - def setNmeaMessageFormat(self, nmeaFormats): - return _mscl.InertialNode_setNmeaMessageFormat(self, nmeaFormats) - - def getAidingMeasurementReferenceFrames(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrames(self, *args) - - def setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds=False): - return _mscl.InertialNode_setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds) - - def getAidingMeasurementReferenceFrame(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrame(self, *args) - - def setAidingMeasurementReferenceFrame(self, id, frame): - return _mscl.InertialNode_setAidingMeasurementReferenceFrame(self, id, frame) - - def setAidingMeasurementResponseMode(self, mode): - return _mscl.InertialNode_setAidingMeasurementResponseMode(self, mode) - - def getAidingMeasurementResponseMode(self): - return _mscl.InertialNode_getAidingMeasurementResponseMode(self) - - def sendAidingMeasurement(self, *args): - return _mscl.InertialNode_sendAidingMeasurement(self, *args) - - def sendAidingMeasurement_readEcho(self, *args): - return _mscl.InertialNode_sendAidingMeasurement_readEcho(self, *args) - -# Register InertialNode in _mscl: -_mscl.InertialNode_swigregister(InertialNode) - -class DisplacementNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.DisplacementNode_swiginit(self, _mscl.new_DisplacementNode(connection)) - __swig_destroy__ = _mscl.delete_DisplacementNode - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.DisplacementNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - @staticmethod - def deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - - def connection(self): - return _mscl.DisplacementNode_connection(self) - - def features(self): - return _mscl.DisplacementNode_features(self) - - def lastCommunicationTime(self): - return _mscl.DisplacementNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.DisplacementNode_lastDeviceState(self) - - def firmwareVersion(self): - return _mscl.DisplacementNode_firmwareVersion(self) - - def model(self): - return _mscl.DisplacementNode_model(self) - - def modelName(self): - return _mscl.DisplacementNode_modelName(self) - - def modelNumber(self): - return _mscl.DisplacementNode_modelNumber(self) - - def serialNumber(self): - return _mscl.DisplacementNode_serialNumber(self) - - def lotNumber(self): - return _mscl.DisplacementNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.DisplacementNode_deviceOptions(self) - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.DisplacementNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.DisplacementNode_totalPackets(self) - - def timeout(self, *args): - return _mscl.DisplacementNode_timeout(self, *args) - - def name(self): - return _mscl.DisplacementNode_name(self) - - def ping(self): - return _mscl.DisplacementNode_ping(self) - - def setToIdle(self): - return _mscl.DisplacementNode_setToIdle(self) - - def cyclePower(self): - return _mscl.DisplacementNode_cyclePower(self) - - def resume(self): - return _mscl.DisplacementNode_resume(self) - - def getDisplacementOutputDataRate(self): - return _mscl.DisplacementNode_getDisplacementOutputDataRate(self) - - def getAnalogToDisplacementCal(self): - return _mscl.DisplacementNode_getAnalogToDisplacementCal(self) - - def setDeviceTime(self, *args): - return _mscl.DisplacementNode_setDeviceTime(self, *args) - -# Register DisplacementNode in _mscl: -_mscl.DisplacementNode_swigregister(DisplacementNode) - -def DisplacementNode_deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - -class RTKNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.RTKNode_swiginit(self, _mscl.new_RTKNode(connection)) - __swig_destroy__ = _mscl.delete_RTKNode - - def getCommunicationMode(self): - return _mscl.RTKNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.RTKNode_setCommunicationMode(self, communicationMode) - - def getDeviceStatusFlags(self): - return _mscl.RTKNode_getDeviceStatusFlags(self) - - def getActivationCode(self): - return _mscl.RTKNode_getActivationCode(self) - - def getStatusBitfieldVersion(self): - return _mscl.RTKNode_getStatusBitfieldVersion(self) - -# Register RTKNode in _mscl: -_mscl.RTKNode_swigregister(RTKNode) - -class ChannelData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelData___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelData___bool__(self) - - def __len__(self): - return _mscl.ChannelData___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelData___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelData___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelData___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelData___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelData___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelData___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelData_pop(self) - - def append(self, x): - return _mscl.ChannelData_append(self, x) - - def empty(self): - return _mscl.ChannelData_empty(self) - - def size(self): - return _mscl.ChannelData_size(self) - - def swap(self, v): - return _mscl.ChannelData_swap(self, v) - - def begin(self): - return _mscl.ChannelData_begin(self) - - def end(self): - return _mscl.ChannelData_end(self) - - def rbegin(self): - return _mscl.ChannelData_rbegin(self) - - def rend(self): - return _mscl.ChannelData_rend(self) - - def clear(self): - return _mscl.ChannelData_clear(self) - - def get_allocator(self): - return _mscl.ChannelData_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelData_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelData_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelData_swiginit(self, _mscl.new_ChannelData(*args)) - - def push_back(self, x): - return _mscl.ChannelData_push_back(self, x) - - def front(self): - return _mscl.ChannelData_front(self) - - def back(self): - return _mscl.ChannelData_back(self) - - def assign(self, n, x): - return _mscl.ChannelData_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelData_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelData_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelData_reserve(self, n) - - def capacity(self): - return _mscl.ChannelData_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelData - -# Register ChannelData in _mscl: -_mscl.ChannelData_swigregister(ChannelData) - -class MipDataPoints(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPoints_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPoints___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPoints___bool__(self) - - def __len__(self): - return _mscl.MipDataPoints___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPoints___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPoints___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPoints___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPoints___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPoints___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPoints___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPoints_pop(self) - - def append(self, x): - return _mscl.MipDataPoints_append(self, x) - - def empty(self): - return _mscl.MipDataPoints_empty(self) - - def size(self): - return _mscl.MipDataPoints_size(self) - - def swap(self, v): - return _mscl.MipDataPoints_swap(self, v) - - def begin(self): - return _mscl.MipDataPoints_begin(self) - - def end(self): - return _mscl.MipDataPoints_end(self) - - def rbegin(self): - return _mscl.MipDataPoints_rbegin(self) - - def rend(self): - return _mscl.MipDataPoints_rend(self) - - def clear(self): - return _mscl.MipDataPoints_clear(self) - - def get_allocator(self): - return _mscl.MipDataPoints_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPoints_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPoints_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPoints_swiginit(self, _mscl.new_MipDataPoints(*args)) - - def push_back(self, x): - return _mscl.MipDataPoints_push_back(self, x) - - def front(self): - return _mscl.MipDataPoints_front(self) - - def back(self): - return _mscl.MipDataPoints_back(self) - - def assign(self, n, x): - return _mscl.MipDataPoints_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPoints_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPoints_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPoints_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPoints_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPoints - -# Register MipDataPoints in _mscl: -_mscl.MipDataPoints_swigregister(MipDataPoints) - -class Bytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bytes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bytes___nonzero__(self) - - def __bool__(self): - return _mscl.Bytes___bool__(self) - - def __len__(self): - return _mscl.Bytes___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bytes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bytes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bytes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bytes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bytes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bytes___setitem__(self, *args) - - def pop(self): - return _mscl.Bytes_pop(self) - - def append(self, x): - return _mscl.Bytes_append(self, x) - - def empty(self): - return _mscl.Bytes_empty(self) - - def size(self): - return _mscl.Bytes_size(self) - - def swap(self, v): - return _mscl.Bytes_swap(self, v) - - def begin(self): - return _mscl.Bytes_begin(self) - - def end(self): - return _mscl.Bytes_end(self) - - def rbegin(self): - return _mscl.Bytes_rbegin(self) - - def rend(self): - return _mscl.Bytes_rend(self) - - def clear(self): - return _mscl.Bytes_clear(self) - - def get_allocator(self): - return _mscl.Bytes_get_allocator(self) - - def pop_back(self): - return _mscl.Bytes_pop_back(self) - - def erase(self, *args): - return _mscl.Bytes_erase(self, *args) - - def __init__(self, *args): - _mscl.Bytes_swiginit(self, _mscl.new_Bytes(*args)) - - def push_back(self, x): - return _mscl.Bytes_push_back(self, x) - - def front(self): - return _mscl.Bytes_front(self) - - def back(self): - return _mscl.Bytes_back(self) - - def assign(self, n, x): - return _mscl.Bytes_assign(self, n, x) - - def resize(self, *args): - return _mscl.Bytes_resize(self, *args) - - def insert(self, *args): - return _mscl.Bytes_insert(self, *args) - - def reserve(self, n): - return _mscl.Bytes_reserve(self, n) - - def capacity(self): - return _mscl.Bytes_capacity(self) - __swig_destroy__ = _mscl.delete_Bytes - -# Register Bytes in _mscl: -_mscl.Bytes_swigregister(Bytes) - -class BytesCollection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.BytesCollection_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.BytesCollection___nonzero__(self) - - def __bool__(self): - return _mscl.BytesCollection___bool__(self) - - def __len__(self): - return _mscl.BytesCollection___len__(self) - - def __getslice__(self, i, j): - return _mscl.BytesCollection___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.BytesCollection___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.BytesCollection___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.BytesCollection___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.BytesCollection___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.BytesCollection___setitem__(self, *args) - - def pop(self): - return _mscl.BytesCollection_pop(self) - - def append(self, x): - return _mscl.BytesCollection_append(self, x) - - def empty(self): - return _mscl.BytesCollection_empty(self) - - def size(self): - return _mscl.BytesCollection_size(self) - - def swap(self, v): - return _mscl.BytesCollection_swap(self, v) - - def begin(self): - return _mscl.BytesCollection_begin(self) - - def end(self): - return _mscl.BytesCollection_end(self) - - def rbegin(self): - return _mscl.BytesCollection_rbegin(self) - - def rend(self): - return _mscl.BytesCollection_rend(self) - - def clear(self): - return _mscl.BytesCollection_clear(self) - - def get_allocator(self): - return _mscl.BytesCollection_get_allocator(self) - - def pop_back(self): - return _mscl.BytesCollection_pop_back(self) - - def erase(self, *args): - return _mscl.BytesCollection_erase(self, *args) - - def __init__(self, *args): - _mscl.BytesCollection_swiginit(self, _mscl.new_BytesCollection(*args)) - - def push_back(self, x): - return _mscl.BytesCollection_push_back(self, x) - - def front(self): - return _mscl.BytesCollection_front(self) - - def back(self): - return _mscl.BytesCollection_back(self) - - def assign(self, n, x): - return _mscl.BytesCollection_assign(self, n, x) - - def resize(self, *args): - return _mscl.BytesCollection_resize(self, *args) - - def insert(self, *args): - return _mscl.BytesCollection_insert(self, *args) - - def reserve(self, n): - return _mscl.BytesCollection_reserve(self, n) - - def capacity(self): - return _mscl.BytesCollection_capacity(self) - __swig_destroy__ = _mscl.delete_BytesCollection - -# Register BytesCollection in _mscl: -_mscl.BytesCollection_swigregister(BytesCollection) - -class DeviceList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceList___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceList___bool__(self) - - def __len__(self): - return _mscl.DeviceList___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceList___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceList___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceList_has_key(self, key) - - def keys(self): - return _mscl.DeviceList_keys(self) - - def values(self): - return _mscl.DeviceList_values(self) - - def items(self): - return _mscl.DeviceList_items(self) - - def __contains__(self, key): - return _mscl.DeviceList___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceList_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceList_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceList___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceList_asdict(self) - - def __init__(self, *args): - _mscl.DeviceList_swiginit(self, _mscl.new_DeviceList(*args)) - - def empty(self): - return _mscl.DeviceList_empty(self) - - def size(self): - return _mscl.DeviceList_size(self) - - def swap(self, v): - return _mscl.DeviceList_swap(self, v) - - def begin(self): - return _mscl.DeviceList_begin(self) - - def end(self): - return _mscl.DeviceList_end(self) - - def rbegin(self): - return _mscl.DeviceList_rbegin(self) - - def rend(self): - return _mscl.DeviceList_rend(self) - - def clear(self): - return _mscl.DeviceList_clear(self) - - def get_allocator(self): - return _mscl.DeviceList_get_allocator(self) - - def count(self, x): - return _mscl.DeviceList_count(self, x) - - def erase(self, *args): - return _mscl.DeviceList_erase(self, *args) - - def find(self, x): - return _mscl.DeviceList_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceList_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceList_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceList - -# Register DeviceList in _mscl: -_mscl.DeviceList_swigregister(DeviceList) - -class NodeDiscoveries(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NodeDiscoveries_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NodeDiscoveries___nonzero__(self) - - def __bool__(self): - return _mscl.NodeDiscoveries___bool__(self) - - def __len__(self): - return _mscl.NodeDiscoveries___len__(self) - - def __getslice__(self, i, j): - return _mscl.NodeDiscoveries___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NodeDiscoveries___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NodeDiscoveries___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NodeDiscoveries___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NodeDiscoveries___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NodeDiscoveries___setitem__(self, *args) - - def pop(self): - return _mscl.NodeDiscoveries_pop(self) - - def append(self, x): - return _mscl.NodeDiscoveries_append(self, x) - - def empty(self): - return _mscl.NodeDiscoveries_empty(self) - - def size(self): - return _mscl.NodeDiscoveries_size(self) - - def swap(self, v): - return _mscl.NodeDiscoveries_swap(self, v) - - def begin(self): - return _mscl.NodeDiscoveries_begin(self) - - def end(self): - return _mscl.NodeDiscoveries_end(self) - - def rbegin(self): - return _mscl.NodeDiscoveries_rbegin(self) - - def rend(self): - return _mscl.NodeDiscoveries_rend(self) - - def clear(self): - return _mscl.NodeDiscoveries_clear(self) - - def get_allocator(self): - return _mscl.NodeDiscoveries_get_allocator(self) - - def pop_back(self): - return _mscl.NodeDiscoveries_pop_back(self) - - def erase(self, *args): - return _mscl.NodeDiscoveries_erase(self, *args) - - def __init__(self, *args): - _mscl.NodeDiscoveries_swiginit(self, _mscl.new_NodeDiscoveries(*args)) - - def push_back(self, x): - return _mscl.NodeDiscoveries_push_back(self, x) - - def front(self): - return _mscl.NodeDiscoveries_front(self) - - def back(self): - return _mscl.NodeDiscoveries_back(self) - - def assign(self, n, x): - return _mscl.NodeDiscoveries_assign(self, n, x) - - def resize(self, *args): - return _mscl.NodeDiscoveries_resize(self, *args) - - def insert(self, *args): - return _mscl.NodeDiscoveries_insert(self, *args) - - def reserve(self, n): - return _mscl.NodeDiscoveries_reserve(self, n) - - def capacity(self): - return _mscl.NodeDiscoveries_capacity(self) - __swig_destroy__ = _mscl.delete_NodeDiscoveries - -# Register NodeDiscoveries in _mscl: -_mscl.NodeDiscoveries_swigregister(NodeDiscoveries) - -class DataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.DataSweeps___bool__(self) - - def __len__(self): - return _mscl.DataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.DataSweeps_pop(self) - - def append(self, x): - return _mscl.DataSweeps_append(self, x) - - def empty(self): - return _mscl.DataSweeps_empty(self) - - def size(self): - return _mscl.DataSweeps_size(self) - - def swap(self, v): - return _mscl.DataSweeps_swap(self, v) - - def begin(self): - return _mscl.DataSweeps_begin(self) - - def end(self): - return _mscl.DataSweeps_end(self) - - def rbegin(self): - return _mscl.DataSweeps_rbegin(self) - - def rend(self): - return _mscl.DataSweeps_rend(self) - - def clear(self): - return _mscl.DataSweeps_clear(self) - - def get_allocator(self): - return _mscl.DataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.DataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.DataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.DataSweeps_swiginit(self, _mscl.new_DataSweeps(*args)) - - def push_back(self, x): - return _mscl.DataSweeps_push_back(self, x) - - def front(self): - return _mscl.DataSweeps_front(self) - - def back(self): - return _mscl.DataSweeps_back(self) - - def assign(self, n, x): - return _mscl.DataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.DataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.DataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.DataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_DataSweeps - -# Register DataSweeps in _mscl: -_mscl.DataSweeps_swigregister(DataSweeps) - -class LoggedDataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LoggedDataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LoggedDataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.LoggedDataSweeps___bool__(self) - - def __len__(self): - return _mscl.LoggedDataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.LoggedDataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LoggedDataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LoggedDataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LoggedDataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LoggedDataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LoggedDataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.LoggedDataSweeps_pop(self) - - def append(self, x): - return _mscl.LoggedDataSweeps_append(self, x) - - def empty(self): - return _mscl.LoggedDataSweeps_empty(self) - - def size(self): - return _mscl.LoggedDataSweeps_size(self) - - def swap(self, v): - return _mscl.LoggedDataSweeps_swap(self, v) - - def begin(self): - return _mscl.LoggedDataSweeps_begin(self) - - def end(self): - return _mscl.LoggedDataSweeps_end(self) - - def rbegin(self): - return _mscl.LoggedDataSweeps_rbegin(self) - - def rend(self): - return _mscl.LoggedDataSweeps_rend(self) - - def clear(self): - return _mscl.LoggedDataSweeps_clear(self) - - def get_allocator(self): - return _mscl.LoggedDataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.LoggedDataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.LoggedDataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.LoggedDataSweeps_swiginit(self, _mscl.new_LoggedDataSweeps(*args)) - - def push_back(self, x): - return _mscl.LoggedDataSweeps_push_back(self, x) - - def front(self): - return _mscl.LoggedDataSweeps_front(self) - - def back(self): - return _mscl.LoggedDataSweeps_back(self) - - def assign(self, n, x): - return _mscl.LoggedDataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.LoggedDataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.LoggedDataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.LoggedDataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.LoggedDataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweeps - -# Register LoggedDataSweeps in _mscl: -_mscl.LoggedDataSweeps_swigregister(LoggedDataSweeps) - -class MipDataPackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPackets___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPackets___bool__(self) - - def __len__(self): - return _mscl.MipDataPackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPackets___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPackets_pop(self) - - def append(self, x): - return _mscl.MipDataPackets_append(self, x) - - def empty(self): - return _mscl.MipDataPackets_empty(self) - - def size(self): - return _mscl.MipDataPackets_size(self) - - def swap(self, v): - return _mscl.MipDataPackets_swap(self, v) - - def begin(self): - return _mscl.MipDataPackets_begin(self) - - def end(self): - return _mscl.MipDataPackets_end(self) - - def rbegin(self): - return _mscl.MipDataPackets_rbegin(self) - - def rend(self): - return _mscl.MipDataPackets_rend(self) - - def clear(self): - return _mscl.MipDataPackets_clear(self) - - def get_allocator(self): - return _mscl.MipDataPackets_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPackets_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPackets_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPackets_swiginit(self, _mscl.new_MipDataPackets(*args)) - - def push_back(self, x): - return _mscl.MipDataPackets_push_back(self, x) - - def front(self): - return _mscl.MipDataPackets_front(self) - - def back(self): - return _mscl.MipDataPackets_back(self) - - def assign(self, n, x): - return _mscl.MipDataPackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPackets_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPackets_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPackets_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPackets_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPackets - -# Register MipDataPackets in _mscl: -_mscl.MipDataPackets_swigregister(MipDataPackets) - -class RawBytePackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RawBytePackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RawBytePackets___nonzero__(self) - - def __bool__(self): - return _mscl.RawBytePackets___bool__(self) - - def __len__(self): - return _mscl.RawBytePackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.RawBytePackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.RawBytePackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.RawBytePackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.RawBytePackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.RawBytePackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.RawBytePackets___setitem__(self, *args) - - def pop(self): - return _mscl.RawBytePackets_pop(self) - - def append(self, x): - return _mscl.RawBytePackets_append(self, x) - - def empty(self): - return _mscl.RawBytePackets_empty(self) - - def size(self): - return _mscl.RawBytePackets_size(self) - - def swap(self, v): - return _mscl.RawBytePackets_swap(self, v) - - def begin(self): - return _mscl.RawBytePackets_begin(self) - - def end(self): - return _mscl.RawBytePackets_end(self) - - def rbegin(self): - return _mscl.RawBytePackets_rbegin(self) - - def rend(self): - return _mscl.RawBytePackets_rend(self) - - def clear(self): - return _mscl.RawBytePackets_clear(self) - - def get_allocator(self): - return _mscl.RawBytePackets_get_allocator(self) - - def pop_back(self): - return _mscl.RawBytePackets_pop_back(self) - - def erase(self, *args): - return _mscl.RawBytePackets_erase(self, *args) - - def __init__(self, *args): - _mscl.RawBytePackets_swiginit(self, _mscl.new_RawBytePackets(*args)) - - def push_back(self, x): - return _mscl.RawBytePackets_push_back(self, x) - - def front(self): - return _mscl.RawBytePackets_front(self) - - def back(self): - return _mscl.RawBytePackets_back(self) - - def assign(self, n, x): - return _mscl.RawBytePackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.RawBytePackets_resize(self, *args) - - def insert(self, *args): - return _mscl.RawBytePackets_insert(self, *args) - - def reserve(self, n): - return _mscl.RawBytePackets_reserve(self, n) - - def capacity(self): - return _mscl.RawBytePackets_capacity(self) - __swig_destroy__ = _mscl.delete_RawBytePackets - -# Register RawBytePackets in _mscl: -_mscl.RawBytePackets_swigregister(RawBytePackets) - -class MipChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannels___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannels___bool__(self) - - def __len__(self): - return _mscl.MipChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannels___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannels_pop(self) - - def append(self, x): - return _mscl.MipChannels_append(self, x) - - def empty(self): - return _mscl.MipChannels_empty(self) - - def size(self): - return _mscl.MipChannels_size(self) - - def swap(self, v): - return _mscl.MipChannels_swap(self, v) - - def begin(self): - return _mscl.MipChannels_begin(self) - - def end(self): - return _mscl.MipChannels_end(self) - - def rbegin(self): - return _mscl.MipChannels_rbegin(self) - - def rend(self): - return _mscl.MipChannels_rend(self) - - def clear(self): - return _mscl.MipChannels_clear(self) - - def get_allocator(self): - return _mscl.MipChannels_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannels_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannels_swiginit(self, _mscl.new_MipChannels(*args)) - - def push_back(self, x): - return _mscl.MipChannels_push_back(self, x) - - def front(self): - return _mscl.MipChannels_front(self) - - def back(self): - return _mscl.MipChannels_back(self) - - def assign(self, n, x): - return _mscl.MipChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannels_reserve(self, n) - - def capacity(self): - return _mscl.MipChannels_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannels - -# Register MipChannels in _mscl: -_mscl.MipChannels_swigregister(MipChannels) - -class DataCollectionMethods(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataCollectionMethods_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataCollectionMethods___nonzero__(self) - - def __bool__(self): - return _mscl.DataCollectionMethods___bool__(self) - - def __len__(self): - return _mscl.DataCollectionMethods___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataCollectionMethods___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataCollectionMethods___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataCollectionMethods___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataCollectionMethods___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataCollectionMethods___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataCollectionMethods___setitem__(self, *args) - - def pop(self): - return _mscl.DataCollectionMethods_pop(self) - - def append(self, x): - return _mscl.DataCollectionMethods_append(self, x) - - def empty(self): - return _mscl.DataCollectionMethods_empty(self) - - def size(self): - return _mscl.DataCollectionMethods_size(self) - - def swap(self, v): - return _mscl.DataCollectionMethods_swap(self, v) - - def begin(self): - return _mscl.DataCollectionMethods_begin(self) - - def end(self): - return _mscl.DataCollectionMethods_end(self) - - def rbegin(self): - return _mscl.DataCollectionMethods_rbegin(self) - - def rend(self): - return _mscl.DataCollectionMethods_rend(self) - - def clear(self): - return _mscl.DataCollectionMethods_clear(self) - - def get_allocator(self): - return _mscl.DataCollectionMethods_get_allocator(self) - - def pop_back(self): - return _mscl.DataCollectionMethods_pop_back(self) - - def erase(self, *args): - return _mscl.DataCollectionMethods_erase(self, *args) - - def __init__(self, *args): - _mscl.DataCollectionMethods_swiginit(self, _mscl.new_DataCollectionMethods(*args)) - - def push_back(self, x): - return _mscl.DataCollectionMethods_push_back(self, x) - - def front(self): - return _mscl.DataCollectionMethods_front(self) - - def back(self): - return _mscl.DataCollectionMethods_back(self) - - def assign(self, n, x): - return _mscl.DataCollectionMethods_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataCollectionMethods_resize(self, *args) - - def insert(self, *args): - return _mscl.DataCollectionMethods_insert(self, *args) - - def reserve(self, n): - return _mscl.DataCollectionMethods_reserve(self, n) - - def capacity(self): - return _mscl.DataCollectionMethods_capacity(self) - __swig_destroy__ = _mscl.delete_DataCollectionMethods - -# Register DataCollectionMethods in _mscl: -_mscl.DataCollectionMethods_swigregister(DataCollectionMethods) - -class DataFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataFormats___nonzero__(self) - - def __bool__(self): - return _mscl.DataFormats___bool__(self) - - def __len__(self): - return _mscl.DataFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataFormats___setitem__(self, *args) - - def pop(self): - return _mscl.DataFormats_pop(self) - - def append(self, x): - return _mscl.DataFormats_append(self, x) - - def empty(self): - return _mscl.DataFormats_empty(self) - - def size(self): - return _mscl.DataFormats_size(self) - - def swap(self, v): - return _mscl.DataFormats_swap(self, v) - - def begin(self): - return _mscl.DataFormats_begin(self) - - def end(self): - return _mscl.DataFormats_end(self) - - def rbegin(self): - return _mscl.DataFormats_rbegin(self) - - def rend(self): - return _mscl.DataFormats_rend(self) - - def clear(self): - return _mscl.DataFormats_clear(self) - - def get_allocator(self): - return _mscl.DataFormats_get_allocator(self) - - def pop_back(self): - return _mscl.DataFormats_pop_back(self) - - def erase(self, *args): - return _mscl.DataFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.DataFormats_swiginit(self, _mscl.new_DataFormats(*args)) - - def push_back(self, x): - return _mscl.DataFormats_push_back(self, x) - - def front(self): - return _mscl.DataFormats_front(self) - - def back(self): - return _mscl.DataFormats_back(self) - - def assign(self, n, x): - return _mscl.DataFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.DataFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.DataFormats_reserve(self, n) - - def capacity(self): - return _mscl.DataFormats_capacity(self) - __swig_destroy__ = _mscl.delete_DataFormats - -# Register DataFormats in _mscl: -_mscl.DataFormats_swigregister(DataFormats) - -class WirelessSampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessSampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessSampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessSampleRates___bool__(self) - - def __len__(self): - return _mscl.WirelessSampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessSampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessSampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessSampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessSampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessSampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessSampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessSampleRates_pop(self) - - def append(self, x): - return _mscl.WirelessSampleRates_append(self, x) - - def empty(self): - return _mscl.WirelessSampleRates_empty(self) - - def size(self): - return _mscl.WirelessSampleRates_size(self) - - def swap(self, v): - return _mscl.WirelessSampleRates_swap(self, v) - - def begin(self): - return _mscl.WirelessSampleRates_begin(self) - - def end(self): - return _mscl.WirelessSampleRates_end(self) - - def rbegin(self): - return _mscl.WirelessSampleRates_rbegin(self) - - def rend(self): - return _mscl.WirelessSampleRates_rend(self) - - def clear(self): - return _mscl.WirelessSampleRates_clear(self) - - def get_allocator(self): - return _mscl.WirelessSampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessSampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessSampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessSampleRates_swiginit(self, _mscl.new_WirelessSampleRates(*args)) - - def push_back(self, x): - return _mscl.WirelessSampleRates_push_back(self, x) - - def front(self): - return _mscl.WirelessSampleRates_front(self) - - def back(self): - return _mscl.WirelessSampleRates_back(self) - - def assign(self, n, x): - return _mscl.WirelessSampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessSampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessSampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessSampleRates_reserve(self, n) - - def capacity(self): - return _mscl.WirelessSampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessSampleRates - -# Register WirelessSampleRates in _mscl: -_mscl.WirelessSampleRates_swigregister(WirelessSampleRates) - -class SamplingModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SamplingModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SamplingModes___nonzero__(self) - - def __bool__(self): - return _mscl.SamplingModes___bool__(self) - - def __len__(self): - return _mscl.SamplingModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SamplingModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SamplingModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SamplingModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SamplingModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SamplingModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SamplingModes___setitem__(self, *args) - - def pop(self): - return _mscl.SamplingModes_pop(self) - - def append(self, x): - return _mscl.SamplingModes_append(self, x) - - def empty(self): - return _mscl.SamplingModes_empty(self) - - def size(self): - return _mscl.SamplingModes_size(self) - - def swap(self, v): - return _mscl.SamplingModes_swap(self, v) - - def begin(self): - return _mscl.SamplingModes_begin(self) - - def end(self): - return _mscl.SamplingModes_end(self) - - def rbegin(self): - return _mscl.SamplingModes_rbegin(self) - - def rend(self): - return _mscl.SamplingModes_rend(self) - - def clear(self): - return _mscl.SamplingModes_clear(self) - - def get_allocator(self): - return _mscl.SamplingModes_get_allocator(self) - - def pop_back(self): - return _mscl.SamplingModes_pop_back(self) - - def erase(self, *args): - return _mscl.SamplingModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SamplingModes_swiginit(self, _mscl.new_SamplingModes(*args)) - - def push_back(self, x): - return _mscl.SamplingModes_push_back(self, x) - - def front(self): - return _mscl.SamplingModes_front(self) - - def back(self): - return _mscl.SamplingModes_back(self) - - def assign(self, n, x): - return _mscl.SamplingModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SamplingModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SamplingModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SamplingModes_reserve(self, n) - - def capacity(self): - return _mscl.SamplingModes_capacity(self) - __swig_destroy__ = _mscl.delete_SamplingModes - -# Register SamplingModes in _mscl: -_mscl.SamplingModes_swigregister(SamplingModes) - -class DefaultModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DefaultModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DefaultModes___nonzero__(self) - - def __bool__(self): - return _mscl.DefaultModes___bool__(self) - - def __len__(self): - return _mscl.DefaultModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DefaultModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DefaultModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DefaultModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DefaultModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DefaultModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DefaultModes___setitem__(self, *args) - - def pop(self): - return _mscl.DefaultModes_pop(self) - - def append(self, x): - return _mscl.DefaultModes_append(self, x) - - def empty(self): - return _mscl.DefaultModes_empty(self) - - def size(self): - return _mscl.DefaultModes_size(self) - - def swap(self, v): - return _mscl.DefaultModes_swap(self, v) - - def begin(self): - return _mscl.DefaultModes_begin(self) - - def end(self): - return _mscl.DefaultModes_end(self) - - def rbegin(self): - return _mscl.DefaultModes_rbegin(self) - - def rend(self): - return _mscl.DefaultModes_rend(self) - - def clear(self): - return _mscl.DefaultModes_clear(self) - - def get_allocator(self): - return _mscl.DefaultModes_get_allocator(self) - - def pop_back(self): - return _mscl.DefaultModes_pop_back(self) - - def erase(self, *args): - return _mscl.DefaultModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DefaultModes_swiginit(self, _mscl.new_DefaultModes(*args)) - - def push_back(self, x): - return _mscl.DefaultModes_push_back(self, x) - - def front(self): - return _mscl.DefaultModes_front(self) - - def back(self): - return _mscl.DefaultModes_back(self) - - def assign(self, n, x): - return _mscl.DefaultModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DefaultModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DefaultModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DefaultModes_reserve(self, n) - - def capacity(self): - return _mscl.DefaultModes_capacity(self) - __swig_destroy__ = _mscl.delete_DefaultModes - -# Register DefaultModes in _mscl: -_mscl.DefaultModes_swigregister(DefaultModes) - -class TransmitPowers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransmitPowers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransmitPowers___nonzero__(self) - - def __bool__(self): - return _mscl.TransmitPowers___bool__(self) - - def __len__(self): - return _mscl.TransmitPowers___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransmitPowers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransmitPowers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransmitPowers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransmitPowers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransmitPowers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransmitPowers___setitem__(self, *args) - - def pop(self): - return _mscl.TransmitPowers_pop(self) - - def append(self, x): - return _mscl.TransmitPowers_append(self, x) - - def empty(self): - return _mscl.TransmitPowers_empty(self) - - def size(self): - return _mscl.TransmitPowers_size(self) - - def swap(self, v): - return _mscl.TransmitPowers_swap(self, v) - - def begin(self): - return _mscl.TransmitPowers_begin(self) - - def end(self): - return _mscl.TransmitPowers_end(self) - - def rbegin(self): - return _mscl.TransmitPowers_rbegin(self) - - def rend(self): - return _mscl.TransmitPowers_rend(self) - - def clear(self): - return _mscl.TransmitPowers_clear(self) - - def get_allocator(self): - return _mscl.TransmitPowers_get_allocator(self) - - def pop_back(self): - return _mscl.TransmitPowers_pop_back(self) - - def erase(self, *args): - return _mscl.TransmitPowers_erase(self, *args) - - def __init__(self, *args): - _mscl.TransmitPowers_swiginit(self, _mscl.new_TransmitPowers(*args)) - - def push_back(self, x): - return _mscl.TransmitPowers_push_back(self, x) - - def front(self): - return _mscl.TransmitPowers_front(self) - - def back(self): - return _mscl.TransmitPowers_back(self) - - def assign(self, n, x): - return _mscl.TransmitPowers_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransmitPowers_resize(self, *args) - - def insert(self, *args): - return _mscl.TransmitPowers_insert(self, *args) - - def reserve(self, n): - return _mscl.TransmitPowers_reserve(self, n) - - def capacity(self): - return _mscl.TransmitPowers_capacity(self) - __swig_destroy__ = _mscl.delete_TransmitPowers - -# Register TransmitPowers in _mscl: -_mscl.TransmitPowers_swigregister(TransmitPowers) - -class ChannelGroupSettings(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroupSettings_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroupSettings___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroupSettings___bool__(self) - - def __len__(self): - return _mscl.ChannelGroupSettings___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroupSettings___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroupSettings___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroupSettings___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroupSettings___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroupSettings___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroupSettings___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroupSettings_pop(self) - - def append(self, x): - return _mscl.ChannelGroupSettings_append(self, x) - - def empty(self): - return _mscl.ChannelGroupSettings_empty(self) - - def size(self): - return _mscl.ChannelGroupSettings_size(self) - - def swap(self, v): - return _mscl.ChannelGroupSettings_swap(self, v) - - def begin(self): - return _mscl.ChannelGroupSettings_begin(self) - - def end(self): - return _mscl.ChannelGroupSettings_end(self) - - def rbegin(self): - return _mscl.ChannelGroupSettings_rbegin(self) - - def rend(self): - return _mscl.ChannelGroupSettings_rend(self) - - def clear(self): - return _mscl.ChannelGroupSettings_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroupSettings_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroupSettings_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroupSettings_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroupSettings_swiginit(self, _mscl.new_ChannelGroupSettings(*args)) - - def push_back(self, x): - return _mscl.ChannelGroupSettings_push_back(self, x) - - def front(self): - return _mscl.ChannelGroupSettings_front(self) - - def back(self): - return _mscl.ChannelGroupSettings_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroupSettings_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroupSettings_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroupSettings_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroupSettings_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroupSettings_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroupSettings - -# Register ChannelGroupSettings in _mscl: -_mscl.ChannelGroupSettings_swigregister(ChannelGroupSettings) - -class FatigueModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.FatigueModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.FatigueModes___nonzero__(self) - - def __bool__(self): - return _mscl.FatigueModes___bool__(self) - - def __len__(self): - return _mscl.FatigueModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.FatigueModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.FatigueModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.FatigueModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.FatigueModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.FatigueModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.FatigueModes___setitem__(self, *args) - - def pop(self): - return _mscl.FatigueModes_pop(self) - - def append(self, x): - return _mscl.FatigueModes_append(self, x) - - def empty(self): - return _mscl.FatigueModes_empty(self) - - def size(self): - return _mscl.FatigueModes_size(self) - - def swap(self, v): - return _mscl.FatigueModes_swap(self, v) - - def begin(self): - return _mscl.FatigueModes_begin(self) - - def end(self): - return _mscl.FatigueModes_end(self) - - def rbegin(self): - return _mscl.FatigueModes_rbegin(self) - - def rend(self): - return _mscl.FatigueModes_rend(self) - - def clear(self): - return _mscl.FatigueModes_clear(self) - - def get_allocator(self): - return _mscl.FatigueModes_get_allocator(self) - - def pop_back(self): - return _mscl.FatigueModes_pop_back(self) - - def erase(self, *args): - return _mscl.FatigueModes_erase(self, *args) - - def __init__(self, *args): - _mscl.FatigueModes_swiginit(self, _mscl.new_FatigueModes(*args)) - - def push_back(self, x): - return _mscl.FatigueModes_push_back(self, x) - - def front(self): - return _mscl.FatigueModes_front(self) - - def back(self): - return _mscl.FatigueModes_back(self) - - def assign(self, n, x): - return _mscl.FatigueModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.FatigueModes_resize(self, *args) - - def insert(self, *args): - return _mscl.FatigueModes_insert(self, *args) - - def reserve(self, n): - return _mscl.FatigueModes_reserve(self, n) - - def capacity(self): - return _mscl.FatigueModes_capacity(self) - __swig_destroy__ = _mscl.delete_FatigueModes - -# Register FatigueModes in _mscl: -_mscl.FatigueModes_swigregister(FatigueModes) - -class Filters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Filters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Filters___nonzero__(self) - - def __bool__(self): - return _mscl.Filters___bool__(self) - - def __len__(self): - return _mscl.Filters___len__(self) - - def __getslice__(self, i, j): - return _mscl.Filters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Filters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Filters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Filters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Filters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Filters___setitem__(self, *args) - - def pop(self): - return _mscl.Filters_pop(self) - - def append(self, x): - return _mscl.Filters_append(self, x) - - def empty(self): - return _mscl.Filters_empty(self) - - def size(self): - return _mscl.Filters_size(self) - - def swap(self, v): - return _mscl.Filters_swap(self, v) - - def begin(self): - return _mscl.Filters_begin(self) - - def end(self): - return _mscl.Filters_end(self) - - def rbegin(self): - return _mscl.Filters_rbegin(self) - - def rend(self): - return _mscl.Filters_rend(self) - - def clear(self): - return _mscl.Filters_clear(self) - - def get_allocator(self): - return _mscl.Filters_get_allocator(self) - - def pop_back(self): - return _mscl.Filters_pop_back(self) - - def erase(self, *args): - return _mscl.Filters_erase(self, *args) - - def __init__(self, *args): - _mscl.Filters_swiginit(self, _mscl.new_Filters(*args)) - - def push_back(self, x): - return _mscl.Filters_push_back(self, x) - - def front(self): - return _mscl.Filters_front(self) - - def back(self): - return _mscl.Filters_back(self) - - def assign(self, n, x): - return _mscl.Filters_assign(self, n, x) - - def resize(self, *args): - return _mscl.Filters_resize(self, *args) - - def insert(self, *args): - return _mscl.Filters_insert(self, *args) - - def reserve(self, n): - return _mscl.Filters_reserve(self, n) - - def capacity(self): - return _mscl.Filters_capacity(self) - __swig_destroy__ = _mscl.delete_Filters - -# Register Filters in _mscl: -_mscl.Filters_swigregister(Filters) - -class HighPassFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HighPassFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HighPassFilters___nonzero__(self) - - def __bool__(self): - return _mscl.HighPassFilters___bool__(self) - - def __len__(self): - return _mscl.HighPassFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.HighPassFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HighPassFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HighPassFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HighPassFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HighPassFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HighPassFilters___setitem__(self, *args) - - def pop(self): - return _mscl.HighPassFilters_pop(self) - - def append(self, x): - return _mscl.HighPassFilters_append(self, x) - - def empty(self): - return _mscl.HighPassFilters_empty(self) - - def size(self): - return _mscl.HighPassFilters_size(self) - - def swap(self, v): - return _mscl.HighPassFilters_swap(self, v) - - def begin(self): - return _mscl.HighPassFilters_begin(self) - - def end(self): - return _mscl.HighPassFilters_end(self) - - def rbegin(self): - return _mscl.HighPassFilters_rbegin(self) - - def rend(self): - return _mscl.HighPassFilters_rend(self) - - def clear(self): - return _mscl.HighPassFilters_clear(self) - - def get_allocator(self): - return _mscl.HighPassFilters_get_allocator(self) - - def pop_back(self): - return _mscl.HighPassFilters_pop_back(self) - - def erase(self, *args): - return _mscl.HighPassFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.HighPassFilters_swiginit(self, _mscl.new_HighPassFilters(*args)) - - def push_back(self, x): - return _mscl.HighPassFilters_push_back(self, x) - - def front(self): - return _mscl.HighPassFilters_front(self) - - def back(self): - return _mscl.HighPassFilters_back(self) - - def assign(self, n, x): - return _mscl.HighPassFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.HighPassFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.HighPassFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.HighPassFilters_reserve(self, n) - - def capacity(self): - return _mscl.HighPassFilters_capacity(self) - __swig_destroy__ = _mscl.delete_HighPassFilters - -# Register HighPassFilters in _mscl: -_mscl.HighPassFilters_swigregister(HighPassFilters) - -class StorageLimitModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StorageLimitModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StorageLimitModes___nonzero__(self) - - def __bool__(self): - return _mscl.StorageLimitModes___bool__(self) - - def __len__(self): - return _mscl.StorageLimitModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.StorageLimitModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StorageLimitModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StorageLimitModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StorageLimitModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StorageLimitModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StorageLimitModes___setitem__(self, *args) - - def pop(self): - return _mscl.StorageLimitModes_pop(self) - - def append(self, x): - return _mscl.StorageLimitModes_append(self, x) - - def empty(self): - return _mscl.StorageLimitModes_empty(self) - - def size(self): - return _mscl.StorageLimitModes_size(self) - - def swap(self, v): - return _mscl.StorageLimitModes_swap(self, v) - - def begin(self): - return _mscl.StorageLimitModes_begin(self) - - def end(self): - return _mscl.StorageLimitModes_end(self) - - def rbegin(self): - return _mscl.StorageLimitModes_rbegin(self) - - def rend(self): - return _mscl.StorageLimitModes_rend(self) - - def clear(self): - return _mscl.StorageLimitModes_clear(self) - - def get_allocator(self): - return _mscl.StorageLimitModes_get_allocator(self) - - def pop_back(self): - return _mscl.StorageLimitModes_pop_back(self) - - def erase(self, *args): - return _mscl.StorageLimitModes_erase(self, *args) - - def __init__(self, *args): - _mscl.StorageLimitModes_swiginit(self, _mscl.new_StorageLimitModes(*args)) - - def push_back(self, x): - return _mscl.StorageLimitModes_push_back(self, x) - - def front(self): - return _mscl.StorageLimitModes_front(self) - - def back(self): - return _mscl.StorageLimitModes_back(self) - - def assign(self, n, x): - return _mscl.StorageLimitModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.StorageLimitModes_resize(self, *args) - - def insert(self, *args): - return _mscl.StorageLimitModes_insert(self, *args) - - def reserve(self, n): - return _mscl.StorageLimitModes_reserve(self, n) - - def capacity(self): - return _mscl.StorageLimitModes_capacity(self) - __swig_destroy__ = _mscl.delete_StorageLimitModes - -# Register StorageLimitModes in _mscl: -_mscl.StorageLimitModes_swigregister(StorageLimitModes) - -class InputRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.InputRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.InputRanges___nonzero__(self) - - def __bool__(self): - return _mscl.InputRanges___bool__(self) - - def __len__(self): - return _mscl.InputRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.InputRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.InputRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.InputRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.InputRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.InputRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.InputRanges___setitem__(self, *args) - - def pop(self): - return _mscl.InputRanges_pop(self) - - def append(self, x): - return _mscl.InputRanges_append(self, x) - - def empty(self): - return _mscl.InputRanges_empty(self) - - def size(self): - return _mscl.InputRanges_size(self) - - def swap(self, v): - return _mscl.InputRanges_swap(self, v) - - def begin(self): - return _mscl.InputRanges_begin(self) - - def end(self): - return _mscl.InputRanges_end(self) - - def rbegin(self): - return _mscl.InputRanges_rbegin(self) - - def rend(self): - return _mscl.InputRanges_rend(self) - - def clear(self): - return _mscl.InputRanges_clear(self) - - def get_allocator(self): - return _mscl.InputRanges_get_allocator(self) - - def pop_back(self): - return _mscl.InputRanges_pop_back(self) - - def erase(self, *args): - return _mscl.InputRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.InputRanges_swiginit(self, _mscl.new_InputRanges(*args)) - - def push_back(self, x): - return _mscl.InputRanges_push_back(self, x) - - def front(self): - return _mscl.InputRanges_front(self) - - def back(self): - return _mscl.InputRanges_back(self) - - def assign(self, n, x): - return _mscl.InputRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.InputRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.InputRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.InputRanges_reserve(self, n) - - def capacity(self): - return _mscl.InputRanges_capacity(self) - __swig_destroy__ = _mscl.delete_InputRanges - -# Register InputRanges in _mscl: -_mscl.InputRanges_swigregister(InputRanges) - -class DataModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataModes___nonzero__(self) - - def __bool__(self): - return _mscl.DataModes___bool__(self) - - def __len__(self): - return _mscl.DataModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataModes___setitem__(self, *args) - - def pop(self): - return _mscl.DataModes_pop(self) - - def append(self, x): - return _mscl.DataModes_append(self, x) - - def empty(self): - return _mscl.DataModes_empty(self) - - def size(self): - return _mscl.DataModes_size(self) - - def swap(self, v): - return _mscl.DataModes_swap(self, v) - - def begin(self): - return _mscl.DataModes_begin(self) - - def end(self): - return _mscl.DataModes_end(self) - - def rbegin(self): - return _mscl.DataModes_rbegin(self) - - def rend(self): - return _mscl.DataModes_rend(self) - - def clear(self): - return _mscl.DataModes_clear(self) - - def get_allocator(self): - return _mscl.DataModes_get_allocator(self) - - def pop_back(self): - return _mscl.DataModes_pop_back(self) - - def erase(self, *args): - return _mscl.DataModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DataModes_swiginit(self, _mscl.new_DataModes(*args)) - - def push_back(self, x): - return _mscl.DataModes_push_back(self, x) - - def front(self): - return _mscl.DataModes_front(self) - - def back(self): - return _mscl.DataModes_back(self) - - def assign(self, n, x): - return _mscl.DataModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DataModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DataModes_reserve(self, n) - - def capacity(self): - return _mscl.DataModes_capacity(self) - __swig_destroy__ = _mscl.delete_DataModes - -# Register DataModes in _mscl: -_mscl.DataModes_swigregister(DataModes) - -class CommProtocols(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommProtocols_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommProtocols___nonzero__(self) - - def __bool__(self): - return _mscl.CommProtocols___bool__(self) - - def __len__(self): - return _mscl.CommProtocols___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommProtocols___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommProtocols___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommProtocols___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommProtocols___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommProtocols___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommProtocols___setitem__(self, *args) - - def pop(self): - return _mscl.CommProtocols_pop(self) - - def append(self, x): - return _mscl.CommProtocols_append(self, x) - - def empty(self): - return _mscl.CommProtocols_empty(self) - - def size(self): - return _mscl.CommProtocols_size(self) - - def swap(self, v): - return _mscl.CommProtocols_swap(self, v) - - def begin(self): - return _mscl.CommProtocols_begin(self) - - def end(self): - return _mscl.CommProtocols_end(self) - - def rbegin(self): - return _mscl.CommProtocols_rbegin(self) - - def rend(self): - return _mscl.CommProtocols_rend(self) - - def clear(self): - return _mscl.CommProtocols_clear(self) - - def get_allocator(self): - return _mscl.CommProtocols_get_allocator(self) - - def pop_back(self): - return _mscl.CommProtocols_pop_back(self) - - def erase(self, *args): - return _mscl.CommProtocols_erase(self, *args) - - def __init__(self, *args): - _mscl.CommProtocols_swiginit(self, _mscl.new_CommProtocols(*args)) - - def push_back(self, x): - return _mscl.CommProtocols_push_back(self, x) - - def front(self): - return _mscl.CommProtocols_front(self) - - def back(self): - return _mscl.CommProtocols_back(self) - - def assign(self, n, x): - return _mscl.CommProtocols_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommProtocols_resize(self, *args) - - def insert(self, *args): - return _mscl.CommProtocols_insert(self, *args) - - def reserve(self, n): - return _mscl.CommProtocols_reserve(self, n) - - def capacity(self): - return _mscl.CommProtocols_capacity(self) - __swig_destroy__ = _mscl.delete_CommProtocols - -# Register CommProtocols in _mscl: -_mscl.CommProtocols_swigregister(CommProtocols) - -class Voltages(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Voltages_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Voltages___nonzero__(self) - - def __bool__(self): - return _mscl.Voltages___bool__(self) - - def __len__(self): - return _mscl.Voltages___len__(self) - - def __getslice__(self, i, j): - return _mscl.Voltages___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Voltages___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Voltages___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Voltages___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Voltages___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Voltages___setitem__(self, *args) - - def pop(self): - return _mscl.Voltages_pop(self) - - def append(self, x): - return _mscl.Voltages_append(self, x) - - def empty(self): - return _mscl.Voltages_empty(self) - - def size(self): - return _mscl.Voltages_size(self) - - def swap(self, v): - return _mscl.Voltages_swap(self, v) - - def begin(self): - return _mscl.Voltages_begin(self) - - def end(self): - return _mscl.Voltages_end(self) - - def rbegin(self): - return _mscl.Voltages_rbegin(self) - - def rend(self): - return _mscl.Voltages_rend(self) - - def clear(self): - return _mscl.Voltages_clear(self) - - def get_allocator(self): - return _mscl.Voltages_get_allocator(self) - - def pop_back(self): - return _mscl.Voltages_pop_back(self) - - def erase(self, *args): - return _mscl.Voltages_erase(self, *args) - - def __init__(self, *args): - _mscl.Voltages_swiginit(self, _mscl.new_Voltages(*args)) - - def push_back(self, x): - return _mscl.Voltages_push_back(self, x) - - def front(self): - return _mscl.Voltages_front(self) - - def back(self): - return _mscl.Voltages_back(self) - - def assign(self, n, x): - return _mscl.Voltages_assign(self, n, x) - - def resize(self, *args): - return _mscl.Voltages_resize(self, *args) - - def insert(self, *args): - return _mscl.Voltages_insert(self, *args) - - def reserve(self, n): - return _mscl.Voltages_reserve(self, n) - - def capacity(self): - return _mscl.Voltages_capacity(self) - __swig_destroy__ = _mscl.delete_Voltages - -# Register Voltages in _mscl: -_mscl.Voltages_swigregister(Voltages) - -class SensorOutputModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorOutputModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorOutputModes___nonzero__(self) - - def __bool__(self): - return _mscl.SensorOutputModes___bool__(self) - - def __len__(self): - return _mscl.SensorOutputModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorOutputModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorOutputModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorOutputModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorOutputModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorOutputModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorOutputModes___setitem__(self, *args) - - def pop(self): - return _mscl.SensorOutputModes_pop(self) - - def append(self, x): - return _mscl.SensorOutputModes_append(self, x) - - def empty(self): - return _mscl.SensorOutputModes_empty(self) - - def size(self): - return _mscl.SensorOutputModes_size(self) - - def swap(self, v): - return _mscl.SensorOutputModes_swap(self, v) - - def begin(self): - return _mscl.SensorOutputModes_begin(self) - - def end(self): - return _mscl.SensorOutputModes_end(self) - - def rbegin(self): - return _mscl.SensorOutputModes_rbegin(self) - - def rend(self): - return _mscl.SensorOutputModes_rend(self) - - def clear(self): - return _mscl.SensorOutputModes_clear(self) - - def get_allocator(self): - return _mscl.SensorOutputModes_get_allocator(self) - - def pop_back(self): - return _mscl.SensorOutputModes_pop_back(self) - - def erase(self, *args): - return _mscl.SensorOutputModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorOutputModes_swiginit(self, _mscl.new_SensorOutputModes(*args)) - - def push_back(self, x): - return _mscl.SensorOutputModes_push_back(self, x) - - def front(self): - return _mscl.SensorOutputModes_front(self) - - def back(self): - return _mscl.SensorOutputModes_back(self) - - def assign(self, n, x): - return _mscl.SensorOutputModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorOutputModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorOutputModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorOutputModes_reserve(self, n) - - def capacity(self): - return _mscl.SensorOutputModes_capacity(self) - __swig_destroy__ = _mscl.delete_SensorOutputModes - -# Register SensorOutputModes in _mscl: -_mscl.SensorOutputModes_swigregister(SensorOutputModes) - -class CfcFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CfcFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CfcFilters___nonzero__(self) - - def __bool__(self): - return _mscl.CfcFilters___bool__(self) - - def __len__(self): - return _mscl.CfcFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.CfcFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CfcFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CfcFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CfcFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CfcFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CfcFilters___setitem__(self, *args) - - def pop(self): - return _mscl.CfcFilters_pop(self) - - def append(self, x): - return _mscl.CfcFilters_append(self, x) - - def empty(self): - return _mscl.CfcFilters_empty(self) - - def size(self): - return _mscl.CfcFilters_size(self) - - def swap(self, v): - return _mscl.CfcFilters_swap(self, v) - - def begin(self): - return _mscl.CfcFilters_begin(self) - - def end(self): - return _mscl.CfcFilters_end(self) - - def rbegin(self): - return _mscl.CfcFilters_rbegin(self) - - def rend(self): - return _mscl.CfcFilters_rend(self) - - def clear(self): - return _mscl.CfcFilters_clear(self) - - def get_allocator(self): - return _mscl.CfcFilters_get_allocator(self) - - def pop_back(self): - return _mscl.CfcFilters_pop_back(self) - - def erase(self, *args): - return _mscl.CfcFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.CfcFilters_swiginit(self, _mscl.new_CfcFilters(*args)) - - def push_back(self, x): - return _mscl.CfcFilters_push_back(self, x) - - def front(self): - return _mscl.CfcFilters_front(self) - - def back(self): - return _mscl.CfcFilters_back(self) - - def assign(self, n, x): - return _mscl.CfcFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.CfcFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.CfcFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.CfcFilters_reserve(self, n) - - def capacity(self): - return _mscl.CfcFilters_capacity(self) - __swig_destroy__ = _mscl.delete_CfcFilters - -# Register CfcFilters in _mscl: -_mscl.CfcFilters_swigregister(CfcFilters) - -class TransducerTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransducerTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransducerTypes___nonzero__(self) - - def __bool__(self): - return _mscl.TransducerTypes___bool__(self) - - def __len__(self): - return _mscl.TransducerTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransducerTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransducerTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransducerTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransducerTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransducerTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransducerTypes___setitem__(self, *args) - - def pop(self): - return _mscl.TransducerTypes_pop(self) - - def append(self, x): - return _mscl.TransducerTypes_append(self, x) - - def empty(self): - return _mscl.TransducerTypes_empty(self) - - def size(self): - return _mscl.TransducerTypes_size(self) - - def swap(self, v): - return _mscl.TransducerTypes_swap(self, v) - - def begin(self): - return _mscl.TransducerTypes_begin(self) - - def end(self): - return _mscl.TransducerTypes_end(self) - - def rbegin(self): - return _mscl.TransducerTypes_rbegin(self) - - def rend(self): - return _mscl.TransducerTypes_rend(self) - - def clear(self): - return _mscl.TransducerTypes_clear(self) - - def get_allocator(self): - return _mscl.TransducerTypes_get_allocator(self) - - def pop_back(self): - return _mscl.TransducerTypes_pop_back(self) - - def erase(self, *args): - return _mscl.TransducerTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.TransducerTypes_swiginit(self, _mscl.new_TransducerTypes(*args)) - - def push_back(self, x): - return _mscl.TransducerTypes_push_back(self, x) - - def front(self): - return _mscl.TransducerTypes_front(self) - - def back(self): - return _mscl.TransducerTypes_back(self) - - def assign(self, n, x): - return _mscl.TransducerTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransducerTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.TransducerTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.TransducerTypes_reserve(self, n) - - def capacity(self): - return _mscl.TransducerTypes_capacity(self) - __swig_destroy__ = _mscl.delete_TransducerTypes - -# Register TransducerTypes in _mscl: -_mscl.TransducerTypes_swigregister(TransducerTypes) - -class EepromMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EepromMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EepromMap___nonzero__(self) - - def __bool__(self): - return _mscl.EepromMap___bool__(self) - - def __len__(self): - return _mscl.EepromMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.EepromMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.EepromMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.EepromMap_has_key(self, key) - - def keys(self): - return _mscl.EepromMap_keys(self) - - def values(self): - return _mscl.EepromMap_values(self) - - def items(self): - return _mscl.EepromMap_items(self) - - def __contains__(self, key): - return _mscl.EepromMap___contains__(self, key) - - def key_iterator(self): - return _mscl.EepromMap_key_iterator(self) - - def value_iterator(self): - return _mscl.EepromMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.EepromMap___setitem__(self, *args) - - def asdict(self): - return _mscl.EepromMap_asdict(self) - - def __init__(self, *args): - _mscl.EepromMap_swiginit(self, _mscl.new_EepromMap(*args)) - - def empty(self): - return _mscl.EepromMap_empty(self) - - def size(self): - return _mscl.EepromMap_size(self) - - def swap(self, v): - return _mscl.EepromMap_swap(self, v) - - def begin(self): - return _mscl.EepromMap_begin(self) - - def end(self): - return _mscl.EepromMap_end(self) - - def rbegin(self): - return _mscl.EepromMap_rbegin(self) - - def rend(self): - return _mscl.EepromMap_rend(self) - - def clear(self): - return _mscl.EepromMap_clear(self) - - def get_allocator(self): - return _mscl.EepromMap_get_allocator(self) - - def count(self, x): - return _mscl.EepromMap_count(self, x) - - def erase(self, *args): - return _mscl.EepromMap_erase(self, *args) - - def find(self, x): - return _mscl.EepromMap_find(self, x) - - def lower_bound(self, x): - return _mscl.EepromMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.EepromMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_EepromMap - -# Register EepromMap in _mscl: -_mscl.EepromMap_swigregister(EepromMap) - -class DerivedChannelMasks(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DerivedChannelMasks_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DerivedChannelMasks___nonzero__(self) - - def __bool__(self): - return _mscl.DerivedChannelMasks___bool__(self) - - def __len__(self): - return _mscl.DerivedChannelMasks___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DerivedChannelMasks___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DerivedChannelMasks___delitem__(self, key) - - def has_key(self, key): - return _mscl.DerivedChannelMasks_has_key(self, key) - - def keys(self): - return _mscl.DerivedChannelMasks_keys(self) - - def values(self): - return _mscl.DerivedChannelMasks_values(self) - - def items(self): - return _mscl.DerivedChannelMasks_items(self) - - def __contains__(self, key): - return _mscl.DerivedChannelMasks___contains__(self, key) - - def key_iterator(self): - return _mscl.DerivedChannelMasks_key_iterator(self) - - def value_iterator(self): - return _mscl.DerivedChannelMasks_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DerivedChannelMasks___setitem__(self, *args) - - def asdict(self): - return _mscl.DerivedChannelMasks_asdict(self) - - def __init__(self, *args): - _mscl.DerivedChannelMasks_swiginit(self, _mscl.new_DerivedChannelMasks(*args)) - - def empty(self): - return _mscl.DerivedChannelMasks_empty(self) - - def size(self): - return _mscl.DerivedChannelMasks_size(self) - - def swap(self, v): - return _mscl.DerivedChannelMasks_swap(self, v) - - def begin(self): - return _mscl.DerivedChannelMasks_begin(self) - - def end(self): - return _mscl.DerivedChannelMasks_end(self) - - def rbegin(self): - return _mscl.DerivedChannelMasks_rbegin(self) - - def rend(self): - return _mscl.DerivedChannelMasks_rend(self) - - def clear(self): - return _mscl.DerivedChannelMasks_clear(self) - - def get_allocator(self): - return _mscl.DerivedChannelMasks_get_allocator(self) - - def count(self, x): - return _mscl.DerivedChannelMasks_count(self, x) - - def erase(self, *args): - return _mscl.DerivedChannelMasks_erase(self, *args) - - def find(self, x): - return _mscl.DerivedChannelMasks_find(self, x) - - def lower_bound(self, x): - return _mscl.DerivedChannelMasks_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DerivedChannelMasks_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DerivedChannelMasks - -# Register DerivedChannelMasks in _mscl: -_mscl.DerivedChannelMasks_swigregister(DerivedChannelMasks) - -class DeviceStatusMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusMap_keys(self) - - def values(self): - return _mscl.DeviceStatusMap_values(self) - - def items(self): - return _mscl.DeviceStatusMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusMap_swiginit(self, _mscl.new_DeviceStatusMap(*args)) - - def empty(self): - return _mscl.DeviceStatusMap_empty(self) - - def size(self): - return _mscl.DeviceStatusMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusMap_begin(self) - - def end(self): - return _mscl.DeviceStatusMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusMap - -# Register DeviceStatusMap in _mscl: -_mscl.DeviceStatusMap_swigregister(DeviceStatusMap) - -class DeviceStatusValueMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusValueMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusValueMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusValueMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusValueMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusValueMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusValueMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusValueMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusValueMap_keys(self) - - def values(self): - return _mscl.DeviceStatusValueMap_values(self) - - def items(self): - return _mscl.DeviceStatusValueMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusValueMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusValueMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusValueMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusValueMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusValueMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusValueMap_swiginit(self, _mscl.new_DeviceStatusValueMap(*args)) - - def empty(self): - return _mscl.DeviceStatusValueMap_empty(self) - - def size(self): - return _mscl.DeviceStatusValueMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusValueMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusValueMap_begin(self) - - def end(self): - return _mscl.DeviceStatusValueMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusValueMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusValueMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusValueMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusValueMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusValueMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusValueMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusValueMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusValueMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusValueMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusValueMap - -# Register DeviceStatusValueMap in _mscl: -_mscl.DeviceStatusValueMap_swigregister(DeviceStatusValueMap) - -class SampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.SampleRates___bool__(self) - - def __len__(self): - return _mscl.SampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.SampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.SampleRates_pop(self) - - def append(self, x): - return _mscl.SampleRates_append(self, x) - - def empty(self): - return _mscl.SampleRates_empty(self) - - def size(self): - return _mscl.SampleRates_size(self) - - def swap(self, v): - return _mscl.SampleRates_swap(self, v) - - def begin(self): - return _mscl.SampleRates_begin(self) - - def end(self): - return _mscl.SampleRates_end(self) - - def rbegin(self): - return _mscl.SampleRates_rbegin(self) - - def rend(self): - return _mscl.SampleRates_rend(self) - - def clear(self): - return _mscl.SampleRates_clear(self) - - def get_allocator(self): - return _mscl.SampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.SampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.SampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.SampleRates_swiginit(self, _mscl.new_SampleRates(*args)) - - def push_back(self, x): - return _mscl.SampleRates_push_back(self, x) - - def front(self): - return _mscl.SampleRates_front(self) - - def back(self): - return _mscl.SampleRates_back(self) - - def assign(self, n, x): - return _mscl.SampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.SampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.SampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.SampleRates_reserve(self, n) - - def capacity(self): - return _mscl.SampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_SampleRates - -# Register SampleRates in _mscl: -_mscl.SampleRates_swigregister(SampleRates) - -class ConfigIssues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConfigIssues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConfigIssues___nonzero__(self) - - def __bool__(self): - return _mscl.ConfigIssues___bool__(self) - - def __len__(self): - return _mscl.ConfigIssues___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConfigIssues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConfigIssues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConfigIssues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConfigIssues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConfigIssues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConfigIssues___setitem__(self, *args) - - def pop(self): - return _mscl.ConfigIssues_pop(self) - - def append(self, x): - return _mscl.ConfigIssues_append(self, x) - - def empty(self): - return _mscl.ConfigIssues_empty(self) - - def size(self): - return _mscl.ConfigIssues_size(self) - - def swap(self, v): - return _mscl.ConfigIssues_swap(self, v) - - def begin(self): - return _mscl.ConfigIssues_begin(self) - - def end(self): - return _mscl.ConfigIssues_end(self) - - def rbegin(self): - return _mscl.ConfigIssues_rbegin(self) - - def rend(self): - return _mscl.ConfigIssues_rend(self) - - def clear(self): - return _mscl.ConfigIssues_clear(self) - - def get_allocator(self): - return _mscl.ConfigIssues_get_allocator(self) - - def pop_back(self): - return _mscl.ConfigIssues_pop_back(self) - - def erase(self, *args): - return _mscl.ConfigIssues_erase(self, *args) - - def __init__(self, *args): - _mscl.ConfigIssues_swiginit(self, _mscl.new_ConfigIssues(*args)) - - def push_back(self, x): - return _mscl.ConfigIssues_push_back(self, x) - - def front(self): - return _mscl.ConfigIssues_front(self) - - def back(self): - return _mscl.ConfigIssues_back(self) - - def assign(self, n, x): - return _mscl.ConfigIssues_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConfigIssues_resize(self, *args) - - def insert(self, *args): - return _mscl.ConfigIssues_insert(self, *args) - - def reserve(self, n): - return _mscl.ConfigIssues_reserve(self, n) - - def capacity(self): - return _mscl.ConfigIssues_capacity(self) - __swig_destroy__ = _mscl.delete_ConfigIssues - -# Register ConfigIssues in _mscl: -_mscl.ConfigIssues_swigregister(ConfigIssues) - -class MipChannelFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelFields_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelFields___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelFields___bool__(self) - - def __len__(self): - return _mscl.MipChannelFields___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelFields___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelFields___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelFields___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelFields___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelFields___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelFields___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelFields_pop(self) - - def append(self, x): - return _mscl.MipChannelFields_append(self, x) - - def empty(self): - return _mscl.MipChannelFields_empty(self) - - def size(self): - return _mscl.MipChannelFields_size(self) - - def swap(self, v): - return _mscl.MipChannelFields_swap(self, v) - - def begin(self): - return _mscl.MipChannelFields_begin(self) - - def end(self): - return _mscl.MipChannelFields_end(self) - - def rbegin(self): - return _mscl.MipChannelFields_rbegin(self) - - def rend(self): - return _mscl.MipChannelFields_rend(self) - - def clear(self): - return _mscl.MipChannelFields_clear(self) - - def get_allocator(self): - return _mscl.MipChannelFields_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelFields_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelFields_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelFields_swiginit(self, _mscl.new_MipChannelFields(*args)) - - def push_back(self, x): - return _mscl.MipChannelFields_push_back(self, x) - - def front(self): - return _mscl.MipChannelFields_front(self) - - def back(self): - return _mscl.MipChannelFields_back(self) - - def assign(self, n, x): - return _mscl.MipChannelFields_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelFields_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelFields_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelFields_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelFields_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelFields - -# Register MipChannelFields in _mscl: -_mscl.MipChannelFields_swigregister(MipChannelFields) - -class MipCommands(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommands_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommands___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommands___bool__(self) - - def __len__(self): - return _mscl.MipCommands___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommands___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommands___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommands___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommands___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommands___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommands___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommands_pop(self) - - def append(self, x): - return _mscl.MipCommands_append(self, x) - - def empty(self): - return _mscl.MipCommands_empty(self) - - def size(self): - return _mscl.MipCommands_size(self) - - def swap(self, v): - return _mscl.MipCommands_swap(self, v) - - def begin(self): - return _mscl.MipCommands_begin(self) - - def end(self): - return _mscl.MipCommands_end(self) - - def rbegin(self): - return _mscl.MipCommands_rbegin(self) - - def rend(self): - return _mscl.MipCommands_rend(self) - - def clear(self): - return _mscl.MipCommands_clear(self) - - def get_allocator(self): - return _mscl.MipCommands_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommands_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommands_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommands_swiginit(self, _mscl.new_MipCommands(*args)) - - def push_back(self, x): - return _mscl.MipCommands_push_back(self, x) - - def front(self): - return _mscl.MipCommands_front(self) - - def back(self): - return _mscl.MipCommands_back(self) - - def assign(self, n, x): - return _mscl.MipCommands_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommands_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommands_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommands_reserve(self, n) - - def capacity(self): - return _mscl.MipCommands_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommands - -# Register MipCommands in _mscl: -_mscl.MipCommands_swigregister(MipCommands) - -class MipDataClasses(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataClasses_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataClasses___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataClasses___bool__(self) - - def __len__(self): - return _mscl.MipDataClasses___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataClasses___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataClasses___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataClasses___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataClasses___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataClasses___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataClasses___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataClasses_pop(self) - - def append(self, x): - return _mscl.MipDataClasses_append(self, x) - - def empty(self): - return _mscl.MipDataClasses_empty(self) - - def size(self): - return _mscl.MipDataClasses_size(self) - - def swap(self, v): - return _mscl.MipDataClasses_swap(self, v) - - def begin(self): - return _mscl.MipDataClasses_begin(self) - - def end(self): - return _mscl.MipDataClasses_end(self) - - def rbegin(self): - return _mscl.MipDataClasses_rbegin(self) - - def rend(self): - return _mscl.MipDataClasses_rend(self) - - def clear(self): - return _mscl.MipDataClasses_clear(self) - - def get_allocator(self): - return _mscl.MipDataClasses_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataClasses_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataClasses_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataClasses_swiginit(self, _mscl.new_MipDataClasses(*args)) - - def push_back(self, x): - return _mscl.MipDataClasses_push_back(self, x) - - def front(self): - return _mscl.MipDataClasses_front(self) - - def back(self): - return _mscl.MipDataClasses_back(self) - - def assign(self, n, x): - return _mscl.MipDataClasses_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataClasses_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataClasses_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataClasses_reserve(self, n) - - def capacity(self): - return _mscl.MipDataClasses_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataClasses - -# Register MipDataClasses in _mscl: -_mscl.MipDataClasses_swigregister(MipDataClasses) - -class MipChannelIdentifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelIdentifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelIdentifiers___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelIdentifiers___bool__(self) - - def __len__(self): - return _mscl.MipChannelIdentifiers___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelIdentifiers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelIdentifiers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelIdentifiers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelIdentifiers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelIdentifiers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelIdentifiers___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelIdentifiers_pop(self) - - def append(self, x): - return _mscl.MipChannelIdentifiers_append(self, x) - - def empty(self): - return _mscl.MipChannelIdentifiers_empty(self) - - def size(self): - return _mscl.MipChannelIdentifiers_size(self) - - def swap(self, v): - return _mscl.MipChannelIdentifiers_swap(self, v) - - def begin(self): - return _mscl.MipChannelIdentifiers_begin(self) - - def end(self): - return _mscl.MipChannelIdentifiers_end(self) - - def rbegin(self): - return _mscl.MipChannelIdentifiers_rbegin(self) - - def rend(self): - return _mscl.MipChannelIdentifiers_rend(self) - - def clear(self): - return _mscl.MipChannelIdentifiers_clear(self) - - def get_allocator(self): - return _mscl.MipChannelIdentifiers_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelIdentifiers_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelIdentifiers_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelIdentifiers_swiginit(self, _mscl.new_MipChannelIdentifiers(*args)) - - def push_back(self, x): - return _mscl.MipChannelIdentifiers_push_back(self, x) - - def front(self): - return _mscl.MipChannelIdentifiers_front(self) - - def back(self): - return _mscl.MipChannelIdentifiers_back(self) - - def assign(self, n, x): - return _mscl.MipChannelIdentifiers_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelIdentifiers_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelIdentifiers_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelIdentifiers_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelIdentifiers_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelIdentifiers - -# Register MipChannelIdentifiers in _mscl: -_mscl.MipChannelIdentifiers_swigregister(MipChannelIdentifiers) - -class MipCommandSet(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandSet_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandSet___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandSet___bool__(self) - - def __len__(self): - return _mscl.MipCommandSet___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandSet___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandSet___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandSet___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandSet___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandSet___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandSet___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandSet_pop(self) - - def append(self, x): - return _mscl.MipCommandSet_append(self, x) - - def empty(self): - return _mscl.MipCommandSet_empty(self) - - def size(self): - return _mscl.MipCommandSet_size(self) - - def swap(self, v): - return _mscl.MipCommandSet_swap(self, v) - - def begin(self): - return _mscl.MipCommandSet_begin(self) - - def end(self): - return _mscl.MipCommandSet_end(self) - - def rbegin(self): - return _mscl.MipCommandSet_rbegin(self) - - def rend(self): - return _mscl.MipCommandSet_rend(self) - - def clear(self): - return _mscl.MipCommandSet_clear(self) - - def get_allocator(self): - return _mscl.MipCommandSet_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandSet_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandSet_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandSet_swiginit(self, _mscl.new_MipCommandSet(*args)) - - def push_back(self, x): - return _mscl.MipCommandSet_push_back(self, x) - - def front(self): - return _mscl.MipCommandSet_front(self) - - def back(self): - return _mscl.MipCommandSet_back(self) - - def assign(self, n, x): - return _mscl.MipCommandSet_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandSet_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandSet_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandSet_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandSet_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandSet - -# Register MipCommandSet in _mscl: -_mscl.MipCommandSet_swigregister(MipCommandSet) - -class MipFieldValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipFieldValues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipFieldValues___nonzero__(self) - - def __bool__(self): - return _mscl.MipFieldValues___bool__(self) - - def __len__(self): - return _mscl.MipFieldValues___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipFieldValues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipFieldValues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipFieldValues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipFieldValues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipFieldValues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipFieldValues___setitem__(self, *args) - - def pop(self): - return _mscl.MipFieldValues_pop(self) - - def append(self, x): - return _mscl.MipFieldValues_append(self, x) - - def empty(self): - return _mscl.MipFieldValues_empty(self) - - def size(self): - return _mscl.MipFieldValues_size(self) - - def swap(self, v): - return _mscl.MipFieldValues_swap(self, v) - - def begin(self): - return _mscl.MipFieldValues_begin(self) - - def end(self): - return _mscl.MipFieldValues_end(self) - - def rbegin(self): - return _mscl.MipFieldValues_rbegin(self) - - def rend(self): - return _mscl.MipFieldValues_rend(self) - - def clear(self): - return _mscl.MipFieldValues_clear(self) - - def get_allocator(self): - return _mscl.MipFieldValues_get_allocator(self) - - def pop_back(self): - return _mscl.MipFieldValues_pop_back(self) - - def erase(self, *args): - return _mscl.MipFieldValues_erase(self, *args) - - def __init__(self, *args): - _mscl.MipFieldValues_swiginit(self, _mscl.new_MipFieldValues(*args)) - - def push_back(self, x): - return _mscl.MipFieldValues_push_back(self, x) - - def front(self): - return _mscl.MipFieldValues_front(self) - - def back(self): - return _mscl.MipFieldValues_back(self) - - def assign(self, n, x): - return _mscl.MipFieldValues_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipFieldValues_resize(self, *args) - - def insert(self, *args): - return _mscl.MipFieldValues_insert(self, *args) - - def reserve(self, n): - return _mscl.MipFieldValues_reserve(self, n) - - def capacity(self): - return _mscl.MipFieldValues_capacity(self) - __swig_destroy__ = _mscl.delete_MipFieldValues - -# Register MipFieldValues in _mscl: -_mscl.MipFieldValues_swigregister(MipFieldValues) - -class MipCommandParamPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipCommandParamPair_swiginit(self, _mscl.new_MipCommandParamPair(*args)) - first = property(_mscl.MipCommandParamPair_first_get, _mscl.MipCommandParamPair_first_set) - second = property(_mscl.MipCommandParamPair_second_get, _mscl.MipCommandParamPair_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_MipCommandParamPair - -# Register MipCommandParamPair in _mscl: -_mscl.MipCommandParamPair_swigregister(MipCommandParamPair) - -class MipCommandParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandParameters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandParameters___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandParameters___bool__(self) - - def __len__(self): - return _mscl.MipCommandParameters___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandParameters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandParameters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandParameters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandParameters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandParameters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandParameters___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandParameters_pop(self) - - def append(self, x): - return _mscl.MipCommandParameters_append(self, x) - - def empty(self): - return _mscl.MipCommandParameters_empty(self) - - def size(self): - return _mscl.MipCommandParameters_size(self) - - def swap(self, v): - return _mscl.MipCommandParameters_swap(self, v) - - def begin(self): - return _mscl.MipCommandParameters_begin(self) - - def end(self): - return _mscl.MipCommandParameters_end(self) - - def rbegin(self): - return _mscl.MipCommandParameters_rbegin(self) - - def rend(self): - return _mscl.MipCommandParameters_rend(self) - - def clear(self): - return _mscl.MipCommandParameters_clear(self) - - def get_allocator(self): - return _mscl.MipCommandParameters_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandParameters_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandParameters_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandParameters_swiginit(self, _mscl.new_MipCommandParameters(*args)) - - def push_back(self, x): - return _mscl.MipCommandParameters_push_back(self, x) - - def front(self): - return _mscl.MipCommandParameters_front(self) - - def back(self): - return _mscl.MipCommandParameters_back(self) - - def assign(self, n, x): - return _mscl.MipCommandParameters_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandParameters_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandParameters_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandParameters_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandParameters_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandParameters - -# Register MipCommandParameters in _mscl: -_mscl.MipCommandParameters_swigregister(MipCommandParameters) - -class ChannelIndex(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ChannelIndex_swiginit(self, _mscl.new_ChannelIndex(*args)) - first = property(_mscl.ChannelIndex_first_get, _mscl.ChannelIndex_first_set) - second = property(_mscl.ChannelIndex_second_get, _mscl.ChannelIndex_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_ChannelIndex - -# Register ChannelIndex in _mscl: -_mscl.ChannelIndex_swigregister(ChannelIndex) - -class ChannelIndices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelIndices_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelIndices___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelIndices___bool__(self) - - def __len__(self): - return _mscl.ChannelIndices___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelIndices___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelIndices___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelIndices___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelIndices___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelIndices___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelIndices___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelIndices_pop(self) - - def append(self, x): - return _mscl.ChannelIndices_append(self, x) - - def empty(self): - return _mscl.ChannelIndices_empty(self) - - def size(self): - return _mscl.ChannelIndices_size(self) - - def swap(self, v): - return _mscl.ChannelIndices_swap(self, v) - - def begin(self): - return _mscl.ChannelIndices_begin(self) - - def end(self): - return _mscl.ChannelIndices_end(self) - - def rbegin(self): - return _mscl.ChannelIndices_rbegin(self) - - def rend(self): - return _mscl.ChannelIndices_rend(self) - - def clear(self): - return _mscl.ChannelIndices_clear(self) - - def get_allocator(self): - return _mscl.ChannelIndices_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelIndices_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelIndices_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelIndices_swiginit(self, _mscl.new_ChannelIndices(*args)) - - def push_back(self, x): - return _mscl.ChannelIndices_push_back(self, x) - - def front(self): - return _mscl.ChannelIndices_front(self) - - def back(self): - return _mscl.ChannelIndices_back(self) - - def assign(self, n, x): - return _mscl.ChannelIndices_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelIndices_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelIndices_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelIndices_reserve(self, n) - - def capacity(self): - return _mscl.ChannelIndices_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelIndices - -# Register ChannelIndices in _mscl: -_mscl.ChannelIndices_swigregister(ChannelIndices) - -class ChannelFieldQualifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelFieldQualifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelFieldQualifiers___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelFieldQualifiers___bool__(self) - - def __len__(self): - return _mscl.ChannelFieldQualifiers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelFieldQualifiers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelFieldQualifiers___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelFieldQualifiers_has_key(self, key) - - def keys(self): - return _mscl.ChannelFieldQualifiers_keys(self) - - def values(self): - return _mscl.ChannelFieldQualifiers_values(self) - - def items(self): - return _mscl.ChannelFieldQualifiers_items(self) - - def __contains__(self, key): - return _mscl.ChannelFieldQualifiers___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelFieldQualifiers_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelFieldQualifiers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelFieldQualifiers___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelFieldQualifiers_asdict(self) - - def __init__(self, *args): - _mscl.ChannelFieldQualifiers_swiginit(self, _mscl.new_ChannelFieldQualifiers(*args)) - - def empty(self): - return _mscl.ChannelFieldQualifiers_empty(self) - - def size(self): - return _mscl.ChannelFieldQualifiers_size(self) - - def swap(self, v): - return _mscl.ChannelFieldQualifiers_swap(self, v) - - def begin(self): - return _mscl.ChannelFieldQualifiers_begin(self) - - def end(self): - return _mscl.ChannelFieldQualifiers_end(self) - - def rbegin(self): - return _mscl.ChannelFieldQualifiers_rbegin(self) - - def rend(self): - return _mscl.ChannelFieldQualifiers_rend(self) - - def clear(self): - return _mscl.ChannelFieldQualifiers_clear(self) - - def get_allocator(self): - return _mscl.ChannelFieldQualifiers_get_allocator(self) - - def count(self, x): - return _mscl.ChannelFieldQualifiers_count(self, x) - - def erase(self, *args): - return _mscl.ChannelFieldQualifiers_erase(self, *args) - - def find(self, x): - return _mscl.ChannelFieldQualifiers_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelFieldQualifiers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelFieldQualifiers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelFieldQualifiers - -# Register ChannelFieldQualifiers in _mscl: -_mscl.ChannelFieldQualifiers_swigregister(ChannelFieldQualifiers) - -class GnssReceivers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssReceivers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssReceivers___nonzero__(self) - - def __bool__(self): - return _mscl.GnssReceivers___bool__(self) - - def __len__(self): - return _mscl.GnssReceivers___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssReceivers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssReceivers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssReceivers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssReceivers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssReceivers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssReceivers___setitem__(self, *args) - - def pop(self): - return _mscl.GnssReceivers_pop(self) - - def append(self, x): - return _mscl.GnssReceivers_append(self, x) - - def empty(self): - return _mscl.GnssReceivers_empty(self) - - def size(self): - return _mscl.GnssReceivers_size(self) - - def swap(self, v): - return _mscl.GnssReceivers_swap(self, v) - - def begin(self): - return _mscl.GnssReceivers_begin(self) - - def end(self): - return _mscl.GnssReceivers_end(self) - - def rbegin(self): - return _mscl.GnssReceivers_rbegin(self) - - def rend(self): - return _mscl.GnssReceivers_rend(self) - - def clear(self): - return _mscl.GnssReceivers_clear(self) - - def get_allocator(self): - return _mscl.GnssReceivers_get_allocator(self) - - def pop_back(self): - return _mscl.GnssReceivers_pop_back(self) - - def erase(self, *args): - return _mscl.GnssReceivers_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssReceivers_swiginit(self, _mscl.new_GnssReceivers(*args)) - - def push_back(self, x): - return _mscl.GnssReceivers_push_back(self, x) - - def front(self): - return _mscl.GnssReceivers_front(self) - - def back(self): - return _mscl.GnssReceivers_back(self) - - def assign(self, n, x): - return _mscl.GnssReceivers_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssReceivers_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssReceivers_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssReceivers_reserve(self, n) - - def capacity(self): - return _mscl.GnssReceivers_capacity(self) - __swig_destroy__ = _mscl.delete_GnssReceivers - -# Register GnssReceivers in _mscl: -_mscl.GnssReceivers_swigregister(GnssReceivers) - -class SensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRanges___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRanges___bool__(self) - - def __len__(self): - return _mscl.SensorRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorRanges___setitem__(self, *args) - - def pop(self): - return _mscl.SensorRanges_pop(self) - - def append(self, x): - return _mscl.SensorRanges_append(self, x) - - def empty(self): - return _mscl.SensorRanges_empty(self) - - def size(self): - return _mscl.SensorRanges_size(self) - - def swap(self, v): - return _mscl.SensorRanges_swap(self, v) - - def begin(self): - return _mscl.SensorRanges_begin(self) - - def end(self): - return _mscl.SensorRanges_end(self) - - def rbegin(self): - return _mscl.SensorRanges_rbegin(self) - - def rend(self): - return _mscl.SensorRanges_rend(self) - - def clear(self): - return _mscl.SensorRanges_clear(self) - - def get_allocator(self): - return _mscl.SensorRanges_get_allocator(self) - - def pop_back(self): - return _mscl.SensorRanges_pop_back(self) - - def erase(self, *args): - return _mscl.SensorRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorRanges_swiginit(self, _mscl.new_SensorRanges(*args)) - - def push_back(self, x): - return _mscl.SensorRanges_push_back(self, x) - - def front(self): - return _mscl.SensorRanges_front(self) - - def back(self): - return _mscl.SensorRanges_back(self) - - def assign(self, n, x): - return _mscl.SensorRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorRanges_reserve(self, n) - - def capacity(self): - return _mscl.SensorRanges_capacity(self) - __swig_destroy__ = _mscl.delete_SensorRanges - -# Register SensorRanges in _mscl: -_mscl.SensorRanges_swigregister(SensorRanges) - -class SensorRangeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRangeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRangeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRangeOptions___bool__(self) - - def __len__(self): - return _mscl.SensorRangeOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SensorRangeOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SensorRangeOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.SensorRangeOptions_has_key(self, key) - - def keys(self): - return _mscl.SensorRangeOptions_keys(self) - - def values(self): - return _mscl.SensorRangeOptions_values(self) - - def items(self): - return _mscl.SensorRangeOptions_items(self) - - def __contains__(self, key): - return _mscl.SensorRangeOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.SensorRangeOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.SensorRangeOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SensorRangeOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.SensorRangeOptions_asdict(self) - - def __init__(self, *args): - _mscl.SensorRangeOptions_swiginit(self, _mscl.new_SensorRangeOptions(*args)) - - def empty(self): - return _mscl.SensorRangeOptions_empty(self) - - def size(self): - return _mscl.SensorRangeOptions_size(self) - - def swap(self, v): - return _mscl.SensorRangeOptions_swap(self, v) - - def begin(self): - return _mscl.SensorRangeOptions_begin(self) - - def end(self): - return _mscl.SensorRangeOptions_end(self) - - def rbegin(self): - return _mscl.SensorRangeOptions_rbegin(self) - - def rend(self): - return _mscl.SensorRangeOptions_rend(self) - - def clear(self): - return _mscl.SensorRangeOptions_clear(self) - - def get_allocator(self): - return _mscl.SensorRangeOptions_get_allocator(self) - - def count(self, x): - return _mscl.SensorRangeOptions_count(self, x) - - def erase(self, *args): - return _mscl.SensorRangeOptions_erase(self, *args) - - def find(self, x): - return _mscl.SensorRangeOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.SensorRangeOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SensorRangeOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SensorRangeOptions - -# Register SensorRangeOptions in _mscl: -_mscl.SensorRangeOptions_swigregister(SensorRangeOptions) - -class CommPortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommPortInfo_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommPortInfo___nonzero__(self) - - def __bool__(self): - return _mscl.CommPortInfo___bool__(self) - - def __len__(self): - return _mscl.CommPortInfo___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommPortInfo___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommPortInfo___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommPortInfo___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommPortInfo___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommPortInfo___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommPortInfo___setitem__(self, *args) - - def pop(self): - return _mscl.CommPortInfo_pop(self) - - def append(self, x): - return _mscl.CommPortInfo_append(self, x) - - def empty(self): - return _mscl.CommPortInfo_empty(self) - - def size(self): - return _mscl.CommPortInfo_size(self) - - def swap(self, v): - return _mscl.CommPortInfo_swap(self, v) - - def begin(self): - return _mscl.CommPortInfo_begin(self) - - def end(self): - return _mscl.CommPortInfo_end(self) - - def rbegin(self): - return _mscl.CommPortInfo_rbegin(self) - - def rend(self): - return _mscl.CommPortInfo_rend(self) - - def clear(self): - return _mscl.CommPortInfo_clear(self) - - def get_allocator(self): - return _mscl.CommPortInfo_get_allocator(self) - - def pop_back(self): - return _mscl.CommPortInfo_pop_back(self) - - def erase(self, *args): - return _mscl.CommPortInfo_erase(self, *args) - - def __init__(self, *args): - _mscl.CommPortInfo_swiginit(self, _mscl.new_CommPortInfo(*args)) - - def push_back(self, x): - return _mscl.CommPortInfo_push_back(self, x) - - def front(self): - return _mscl.CommPortInfo_front(self) - - def back(self): - return _mscl.CommPortInfo_back(self) - - def assign(self, n, x): - return _mscl.CommPortInfo_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommPortInfo_resize(self, *args) - - def insert(self, *args): - return _mscl.CommPortInfo_insert(self, *args) - - def reserve(self, n): - return _mscl.CommPortInfo_reserve(self, n) - - def capacity(self): - return _mscl.CommPortInfo_capacity(self) - __swig_destroy__ = _mscl.delete_CommPortInfo - -# Register CommPortInfo in _mscl: -_mscl.CommPortInfo_swigregister(CommPortInfo) - -class EventTriggerStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTriggerStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTriggerStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventTriggerStatus___bool__(self) - - def __len__(self): - return _mscl.EventTriggerStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTriggerStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTriggerStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTriggerStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTriggerStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTriggerStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTriggerStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventTriggerStatus_pop(self) - - def append(self, x): - return _mscl.EventTriggerStatus_append(self, x) - - def empty(self): - return _mscl.EventTriggerStatus_empty(self) - - def size(self): - return _mscl.EventTriggerStatus_size(self) - - def swap(self, v): - return _mscl.EventTriggerStatus_swap(self, v) - - def begin(self): - return _mscl.EventTriggerStatus_begin(self) - - def end(self): - return _mscl.EventTriggerStatus_end(self) - - def rbegin(self): - return _mscl.EventTriggerStatus_rbegin(self) - - def rend(self): - return _mscl.EventTriggerStatus_rend(self) - - def clear(self): - return _mscl.EventTriggerStatus_clear(self) - - def get_allocator(self): - return _mscl.EventTriggerStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventTriggerStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventTriggerStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTriggerStatus_swiginit(self, _mscl.new_EventTriggerStatus(*args)) - - def push_back(self, x): - return _mscl.EventTriggerStatus_push_back(self, x) - - def front(self): - return _mscl.EventTriggerStatus_front(self) - - def back(self): - return _mscl.EventTriggerStatus_back(self) - - def assign(self, n, x): - return _mscl.EventTriggerStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTriggerStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTriggerStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTriggerStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventTriggerStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventTriggerStatus - -# Register EventTriggerStatus in _mscl: -_mscl.EventTriggerStatus_swigregister(EventTriggerStatus) - -class EventActionStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventActionStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventActionStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventActionStatus___bool__(self) - - def __len__(self): - return _mscl.EventActionStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventActionStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventActionStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventActionStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventActionStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventActionStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventActionStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventActionStatus_pop(self) - - def append(self, x): - return _mscl.EventActionStatus_append(self, x) - - def empty(self): - return _mscl.EventActionStatus_empty(self) - - def size(self): - return _mscl.EventActionStatus_size(self) - - def swap(self, v): - return _mscl.EventActionStatus_swap(self, v) - - def begin(self): - return _mscl.EventActionStatus_begin(self) - - def end(self): - return _mscl.EventActionStatus_end(self) - - def rbegin(self): - return _mscl.EventActionStatus_rbegin(self) - - def rend(self): - return _mscl.EventActionStatus_rend(self) - - def clear(self): - return _mscl.EventActionStatus_clear(self) - - def get_allocator(self): - return _mscl.EventActionStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventActionStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventActionStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventActionStatus_swiginit(self, _mscl.new_EventActionStatus(*args)) - - def push_back(self, x): - return _mscl.EventActionStatus_push_back(self, x) - - def front(self): - return _mscl.EventActionStatus_front(self) - - def back(self): - return _mscl.EventActionStatus_back(self) - - def assign(self, n, x): - return _mscl.EventActionStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventActionStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventActionStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventActionStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventActionStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventActionStatus - -# Register EventActionStatus in _mscl: -_mscl.EventActionStatus_swigregister(EventActionStatus) - -class ChannelGroups(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroups_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroups___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroups___bool__(self) - - def __len__(self): - return _mscl.ChannelGroups___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroups___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroups___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroups___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroups___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroups___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroups___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroups_pop(self) - - def append(self, x): - return _mscl.ChannelGroups_append(self, x) - - def empty(self): - return _mscl.ChannelGroups_empty(self) - - def size(self): - return _mscl.ChannelGroups_size(self) - - def swap(self, v): - return _mscl.ChannelGroups_swap(self, v) - - def begin(self): - return _mscl.ChannelGroups_begin(self) - - def end(self): - return _mscl.ChannelGroups_end(self) - - def rbegin(self): - return _mscl.ChannelGroups_rbegin(self) - - def rend(self): - return _mscl.ChannelGroups_rend(self) - - def clear(self): - return _mscl.ChannelGroups_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroups_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroups_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroups_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroups_swiginit(self, _mscl.new_ChannelGroups(*args)) - - def push_back(self, x): - return _mscl.ChannelGroups_push_back(self, x) - - def front(self): - return _mscl.ChannelGroups_front(self) - - def back(self): - return _mscl.ChannelGroups_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroups_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroups_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroups_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroups_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroups_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroups - -# Register ChannelGroups in _mscl: -_mscl.ChannelGroups_swigregister(ChannelGroups) - -class WirelessChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessChannels___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessChannels___bool__(self) - - def __len__(self): - return _mscl.WirelessChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessChannels___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessChannels_pop(self) - - def append(self, x): - return _mscl.WirelessChannels_append(self, x) - - def empty(self): - return _mscl.WirelessChannels_empty(self) - - def size(self): - return _mscl.WirelessChannels_size(self) - - def swap(self, v): - return _mscl.WirelessChannels_swap(self, v) - - def begin(self): - return _mscl.WirelessChannels_begin(self) - - def end(self): - return _mscl.WirelessChannels_end(self) - - def rbegin(self): - return _mscl.WirelessChannels_rbegin(self) - - def rend(self): - return _mscl.WirelessChannels_rend(self) - - def clear(self): - return _mscl.WirelessChannels_clear(self) - - def get_allocator(self): - return _mscl.WirelessChannels_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessChannels_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessChannels_swiginit(self, _mscl.new_WirelessChannels(*args)) - - def push_back(self, x): - return _mscl.WirelessChannels_push_back(self, x) - - def front(self): - return _mscl.WirelessChannels_front(self) - - def back(self): - return _mscl.WirelessChannels_back(self) - - def assign(self, n, x): - return _mscl.WirelessChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessChannels_reserve(self, n) - - def capacity(self): - return _mscl.WirelessChannels_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessChannels - -# Register WirelessChannels in _mscl: -_mscl.WirelessChannels_swigregister(WirelessChannels) - -class DamageAngles(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DamageAngles_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DamageAngles___nonzero__(self) - - def __bool__(self): - return _mscl.DamageAngles___bool__(self) - - def __len__(self): - return _mscl.DamageAngles___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DamageAngles___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DamageAngles___delitem__(self, key) - - def has_key(self, key): - return _mscl.DamageAngles_has_key(self, key) - - def keys(self): - return _mscl.DamageAngles_keys(self) - - def values(self): - return _mscl.DamageAngles_values(self) - - def items(self): - return _mscl.DamageAngles_items(self) - - def __contains__(self, key): - return _mscl.DamageAngles___contains__(self, key) - - def key_iterator(self): - return _mscl.DamageAngles_key_iterator(self) - - def value_iterator(self): - return _mscl.DamageAngles_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DamageAngles___setitem__(self, *args) - - def asdict(self): - return _mscl.DamageAngles_asdict(self) - - def __init__(self, *args): - _mscl.DamageAngles_swiginit(self, _mscl.new_DamageAngles(*args)) - - def empty(self): - return _mscl.DamageAngles_empty(self) - - def size(self): - return _mscl.DamageAngles_size(self) - - def swap(self, v): - return _mscl.DamageAngles_swap(self, v) - - def begin(self): - return _mscl.DamageAngles_begin(self) - - def end(self): - return _mscl.DamageAngles_end(self) - - def rbegin(self): - return _mscl.DamageAngles_rbegin(self) - - def rend(self): - return _mscl.DamageAngles_rend(self) - - def clear(self): - return _mscl.DamageAngles_clear(self) - - def get_allocator(self): - return _mscl.DamageAngles_get_allocator(self) - - def count(self, x): - return _mscl.DamageAngles_count(self, x) - - def erase(self, *args): - return _mscl.DamageAngles_erase(self, *args) - - def find(self, x): - return _mscl.DamageAngles_find(self, x) - - def lower_bound(self, x): - return _mscl.DamageAngles_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DamageAngles_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DamageAngles - -# Register DamageAngles in _mscl: -_mscl.DamageAngles_swigregister(DamageAngles) - -class SnCurveSegments(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SnCurveSegments_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SnCurveSegments___nonzero__(self) - - def __bool__(self): - return _mscl.SnCurveSegments___bool__(self) - - def __len__(self): - return _mscl.SnCurveSegments___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SnCurveSegments___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SnCurveSegments___delitem__(self, key) - - def has_key(self, key): - return _mscl.SnCurveSegments_has_key(self, key) - - def keys(self): - return _mscl.SnCurveSegments_keys(self) - - def values(self): - return _mscl.SnCurveSegments_values(self) - - def items(self): - return _mscl.SnCurveSegments_items(self) - - def __contains__(self, key): - return _mscl.SnCurveSegments___contains__(self, key) - - def key_iterator(self): - return _mscl.SnCurveSegments_key_iterator(self) - - def value_iterator(self): - return _mscl.SnCurveSegments_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SnCurveSegments___setitem__(self, *args) - - def asdict(self): - return _mscl.SnCurveSegments_asdict(self) - - def __init__(self, *args): - _mscl.SnCurveSegments_swiginit(self, _mscl.new_SnCurveSegments(*args)) - - def empty(self): - return _mscl.SnCurveSegments_empty(self) - - def size(self): - return _mscl.SnCurveSegments_size(self) - - def swap(self, v): - return _mscl.SnCurveSegments_swap(self, v) - - def begin(self): - return _mscl.SnCurveSegments_begin(self) - - def end(self): - return _mscl.SnCurveSegments_end(self) - - def rbegin(self): - return _mscl.SnCurveSegments_rbegin(self) - - def rend(self): - return _mscl.SnCurveSegments_rend(self) - - def clear(self): - return _mscl.SnCurveSegments_clear(self) - - def get_allocator(self): - return _mscl.SnCurveSegments_get_allocator(self) - - def count(self, x): - return _mscl.SnCurveSegments_count(self, x) - - def erase(self, *args): - return _mscl.SnCurveSegments_erase(self, *args) - - def find(self, x): - return _mscl.SnCurveSegments_find(self, x) - - def lower_bound(self, x): - return _mscl.SnCurveSegments_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SnCurveSegments_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SnCurveSegments - -# Register SnCurveSegments in _mscl: -_mscl.SnCurveSegments_swigregister(SnCurveSegments) - -class RfSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RfSweep_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RfSweep___nonzero__(self) - - def __bool__(self): - return _mscl.RfSweep___bool__(self) - - def __len__(self): - return _mscl.RfSweep___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.RfSweep___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.RfSweep___delitem__(self, key) - - def has_key(self, key): - return _mscl.RfSweep_has_key(self, key) - - def keys(self): - return _mscl.RfSweep_keys(self) - - def values(self): - return _mscl.RfSweep_values(self) - - def items(self): - return _mscl.RfSweep_items(self) - - def __contains__(self, key): - return _mscl.RfSweep___contains__(self, key) - - def key_iterator(self): - return _mscl.RfSweep_key_iterator(self) - - def value_iterator(self): - return _mscl.RfSweep_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.RfSweep___setitem__(self, *args) - - def asdict(self): - return _mscl.RfSweep_asdict(self) - - def __init__(self, *args): - _mscl.RfSweep_swiginit(self, _mscl.new_RfSweep(*args)) - - def empty(self): - return _mscl.RfSweep_empty(self) - - def size(self): - return _mscl.RfSweep_size(self) - - def swap(self, v): - return _mscl.RfSweep_swap(self, v) - - def begin(self): - return _mscl.RfSweep_begin(self) - - def end(self): - return _mscl.RfSweep_end(self) - - def rbegin(self): - return _mscl.RfSweep_rbegin(self) - - def rend(self): - return _mscl.RfSweep_rend(self) - - def clear(self): - return _mscl.RfSweep_clear(self) - - def get_allocator(self): - return _mscl.RfSweep_get_allocator(self) - - def count(self, x): - return _mscl.RfSweep_count(self, x) - - def erase(self, *args): - return _mscl.RfSweep_erase(self, *args) - - def find(self, x): - return _mscl.RfSweep_find(self, x) - - def lower_bound(self, x): - return _mscl.RfSweep_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.RfSweep_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_RfSweep - -# Register RfSweep in _mscl: -_mscl.RfSweep_swigregister(RfSweep) - -class Triggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Triggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Triggers___nonzero__(self) - - def __bool__(self): - return _mscl.Triggers___bool__(self) - - def __len__(self): - return _mscl.Triggers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.Triggers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.Triggers___delitem__(self, key) - - def has_key(self, key): - return _mscl.Triggers_has_key(self, key) - - def keys(self): - return _mscl.Triggers_keys(self) - - def values(self): - return _mscl.Triggers_values(self) - - def items(self): - return _mscl.Triggers_items(self) - - def __contains__(self, key): - return _mscl.Triggers___contains__(self, key) - - def key_iterator(self): - return _mscl.Triggers_key_iterator(self) - - def value_iterator(self): - return _mscl.Triggers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.Triggers___setitem__(self, *args) - - def asdict(self): - return _mscl.Triggers_asdict(self) - - def __init__(self, *args): - _mscl.Triggers_swiginit(self, _mscl.new_Triggers(*args)) - - def empty(self): - return _mscl.Triggers_empty(self) - - def size(self): - return _mscl.Triggers_size(self) - - def swap(self, v): - return _mscl.Triggers_swap(self, v) - - def begin(self): - return _mscl.Triggers_begin(self) - - def end(self): - return _mscl.Triggers_end(self) - - def rbegin(self): - return _mscl.Triggers_rbegin(self) - - def rend(self): - return _mscl.Triggers_rend(self) - - def clear(self): - return _mscl.Triggers_clear(self) - - def get_allocator(self): - return _mscl.Triggers_get_allocator(self) - - def count(self, x): - return _mscl.Triggers_count(self, x) - - def erase(self, *args): - return _mscl.Triggers_erase(self, *args) - - def find(self, x): - return _mscl.Triggers_find(self, x) - - def lower_bound(self, x): - return _mscl.Triggers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.Triggers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_Triggers - -# Register Triggers in _mscl: -_mscl.Triggers_swigregister(Triggers) - -class ChannelCalMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelCalMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelCalMap___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelCalMap___bool__(self) - - def __len__(self): - return _mscl.ChannelCalMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelCalMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelCalMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelCalMap_has_key(self, key) - - def keys(self): - return _mscl.ChannelCalMap_keys(self) - - def values(self): - return _mscl.ChannelCalMap_values(self) - - def items(self): - return _mscl.ChannelCalMap_items(self) - - def __contains__(self, key): - return _mscl.ChannelCalMap___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelCalMap_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelCalMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelCalMap___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelCalMap_asdict(self) - - def __init__(self, *args): - _mscl.ChannelCalMap_swiginit(self, _mscl.new_ChannelCalMap(*args)) - - def empty(self): - return _mscl.ChannelCalMap_empty(self) - - def size(self): - return _mscl.ChannelCalMap_size(self) - - def swap(self, v): - return _mscl.ChannelCalMap_swap(self, v) - - def begin(self): - return _mscl.ChannelCalMap_begin(self) - - def end(self): - return _mscl.ChannelCalMap_end(self) - - def rbegin(self): - return _mscl.ChannelCalMap_rbegin(self) - - def rend(self): - return _mscl.ChannelCalMap_rend(self) - - def clear(self): - return _mscl.ChannelCalMap_clear(self) - - def get_allocator(self): - return _mscl.ChannelCalMap_get_allocator(self) - - def count(self, x): - return _mscl.ChannelCalMap_count(self, x) - - def erase(self, *args): - return _mscl.ChannelCalMap_erase(self, *args) - - def find(self, x): - return _mscl.ChannelCalMap_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelCalMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelCalMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelCalMap - -# Register ChannelCalMap in _mscl: -_mscl.ChannelCalMap_swigregister(ChannelCalMap) - -class WirelessPollData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessPollData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessPollData___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessPollData___bool__(self) - - def __len__(self): - return _mscl.WirelessPollData___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.WirelessPollData___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.WirelessPollData___delitem__(self, key) - - def has_key(self, key): - return _mscl.WirelessPollData_has_key(self, key) - - def keys(self): - return _mscl.WirelessPollData_keys(self) - - def values(self): - return _mscl.WirelessPollData_values(self) - - def items(self): - return _mscl.WirelessPollData_items(self) - - def __contains__(self, key): - return _mscl.WirelessPollData___contains__(self, key) - - def key_iterator(self): - return _mscl.WirelessPollData_key_iterator(self) - - def value_iterator(self): - return _mscl.WirelessPollData_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.WirelessPollData___setitem__(self, *args) - - def asdict(self): - return _mscl.WirelessPollData_asdict(self) - - def __init__(self, *args): - _mscl.WirelessPollData_swiginit(self, _mscl.new_WirelessPollData(*args)) - - def empty(self): - return _mscl.WirelessPollData_empty(self) - - def size(self): - return _mscl.WirelessPollData_size(self) - - def swap(self, v): - return _mscl.WirelessPollData_swap(self, v) - - def begin(self): - return _mscl.WirelessPollData_begin(self) - - def end(self): - return _mscl.WirelessPollData_end(self) - - def rbegin(self): - return _mscl.WirelessPollData_rbegin(self) - - def rend(self): - return _mscl.WirelessPollData_rend(self) - - def clear(self): - return _mscl.WirelessPollData_clear(self) - - def get_allocator(self): - return _mscl.WirelessPollData_get_allocator(self) - - def count(self, x): - return _mscl.WirelessPollData_count(self, x) - - def erase(self, *args): - return _mscl.WirelessPollData_erase(self, *args) - - def find(self, x): - return _mscl.WirelessPollData_find(self, x) - - def lower_bound(self, x): - return _mscl.WirelessPollData_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.WirelessPollData_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_WirelessPollData - -# Register WirelessPollData in _mscl: -_mscl.WirelessPollData_swigregister(WirelessPollData) - -class ConnectionDebugDataVec(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConnectionDebugDataVec_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConnectionDebugDataVec___nonzero__(self) - - def __bool__(self): - return _mscl.ConnectionDebugDataVec___bool__(self) - - def __len__(self): - return _mscl.ConnectionDebugDataVec___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConnectionDebugDataVec___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConnectionDebugDataVec___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConnectionDebugDataVec___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConnectionDebugDataVec___setitem__(self, *args) - - def pop(self): - return _mscl.ConnectionDebugDataVec_pop(self) - - def append(self, x): - return _mscl.ConnectionDebugDataVec_append(self, x) - - def empty(self): - return _mscl.ConnectionDebugDataVec_empty(self) - - def size(self): - return _mscl.ConnectionDebugDataVec_size(self) - - def swap(self, v): - return _mscl.ConnectionDebugDataVec_swap(self, v) - - def begin(self): - return _mscl.ConnectionDebugDataVec_begin(self) - - def end(self): - return _mscl.ConnectionDebugDataVec_end(self) - - def rbegin(self): - return _mscl.ConnectionDebugDataVec_rbegin(self) - - def rend(self): - return _mscl.ConnectionDebugDataVec_rend(self) - - def clear(self): - return _mscl.ConnectionDebugDataVec_clear(self) - - def get_allocator(self): - return _mscl.ConnectionDebugDataVec_get_allocator(self) - - def pop_back(self): - return _mscl.ConnectionDebugDataVec_pop_back(self) - - def erase(self, *args): - return _mscl.ConnectionDebugDataVec_erase(self, *args) - - def __init__(self, *args): - _mscl.ConnectionDebugDataVec_swiginit(self, _mscl.new_ConnectionDebugDataVec(*args)) - - def push_back(self, x): - return _mscl.ConnectionDebugDataVec_push_back(self, x) - - def front(self): - return _mscl.ConnectionDebugDataVec_front(self) - - def back(self): - return _mscl.ConnectionDebugDataVec_back(self) - - def assign(self, n, x): - return _mscl.ConnectionDebugDataVec_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConnectionDebugDataVec_resize(self, *args) - - def insert(self, *args): - return _mscl.ConnectionDebugDataVec_insert(self, *args) - - def reserve(self, n): - return _mscl.ConnectionDebugDataVec_reserve(self, n) - - def capacity(self): - return _mscl.ConnectionDebugDataVec_capacity(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugDataVec - -# Register ConnectionDebugDataVec in _mscl: -_mscl.ConnectionDebugDataVec_swigregister(ConnectionDebugDataVec) - -class SatellitePRNs(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SatellitePRNs_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SatellitePRNs___nonzero__(self) - - def __bool__(self): - return _mscl.SatellitePRNs___bool__(self) - - def __len__(self): - return _mscl.SatellitePRNs___len__(self) - - def __getslice__(self, i, j): - return _mscl.SatellitePRNs___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SatellitePRNs___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SatellitePRNs___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SatellitePRNs___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SatellitePRNs___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SatellitePRNs___setitem__(self, *args) - - def pop(self): - return _mscl.SatellitePRNs_pop(self) - - def append(self, x): - return _mscl.SatellitePRNs_append(self, x) - - def empty(self): - return _mscl.SatellitePRNs_empty(self) - - def size(self): - return _mscl.SatellitePRNs_size(self) - - def swap(self, v): - return _mscl.SatellitePRNs_swap(self, v) - - def begin(self): - return _mscl.SatellitePRNs_begin(self) - - def end(self): - return _mscl.SatellitePRNs_end(self) - - def rbegin(self): - return _mscl.SatellitePRNs_rbegin(self) - - def rend(self): - return _mscl.SatellitePRNs_rend(self) - - def clear(self): - return _mscl.SatellitePRNs_clear(self) - - def get_allocator(self): - return _mscl.SatellitePRNs_get_allocator(self) - - def pop_back(self): - return _mscl.SatellitePRNs_pop_back(self) - - def erase(self, *args): - return _mscl.SatellitePRNs_erase(self, *args) - - def __init__(self, *args): - _mscl.SatellitePRNs_swiginit(self, _mscl.new_SatellitePRNs(*args)) - - def push_back(self, x): - return _mscl.SatellitePRNs_push_back(self, x) - - def front(self): - return _mscl.SatellitePRNs_front(self) - - def back(self): - return _mscl.SatellitePRNs_back(self) - - def assign(self, n, x): - return _mscl.SatellitePRNs_assign(self, n, x) - - def resize(self, *args): - return _mscl.SatellitePRNs_resize(self, *args) - - def insert(self, *args): - return _mscl.SatellitePRNs_insert(self, *args) - - def reserve(self, n): - return _mscl.SatellitePRNs_reserve(self, n) - - def capacity(self): - return _mscl.SatellitePRNs_capacity(self) - __swig_destroy__ = _mscl.delete_SatellitePRNs - -# Register SatellitePRNs in _mscl: -_mscl.SatellitePRNs_swigregister(SatellitePRNs) - -class Constellations(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Constellations_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Constellations___nonzero__(self) - - def __bool__(self): - return _mscl.Constellations___bool__(self) - - def __len__(self): - return _mscl.Constellations___len__(self) - - def __getslice__(self, i, j): - return _mscl.Constellations___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Constellations___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Constellations___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Constellations___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Constellations___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Constellations___setitem__(self, *args) - - def pop(self): - return _mscl.Constellations_pop(self) - - def append(self, x): - return _mscl.Constellations_append(self, x) - - def empty(self): - return _mscl.Constellations_empty(self) - - def size(self): - return _mscl.Constellations_size(self) - - def swap(self, v): - return _mscl.Constellations_swap(self, v) - - def begin(self): - return _mscl.Constellations_begin(self) - - def end(self): - return _mscl.Constellations_end(self) - - def rbegin(self): - return _mscl.Constellations_rbegin(self) - - def rend(self): - return _mscl.Constellations_rend(self) - - def clear(self): - return _mscl.Constellations_clear(self) - - def get_allocator(self): - return _mscl.Constellations_get_allocator(self) - - def pop_back(self): - return _mscl.Constellations_pop_back(self) - - def erase(self, *args): - return _mscl.Constellations_erase(self, *args) - - def __init__(self, *args): - _mscl.Constellations_swiginit(self, _mscl.new_Constellations(*args)) - - def push_back(self, x): - return _mscl.Constellations_push_back(self, x) - - def front(self): - return _mscl.Constellations_front(self) - - def back(self): - return _mscl.Constellations_back(self) - - def assign(self, n, x): - return _mscl.Constellations_assign(self, n, x) - - def resize(self, *args): - return _mscl.Constellations_resize(self, *args) - - def insert(self, *args): - return _mscl.Constellations_insert(self, *args) - - def reserve(self, n): - return _mscl.Constellations_reserve(self, n) - - def capacity(self): - return _mscl.Constellations_capacity(self) - __swig_destroy__ = _mscl.delete_Constellations - -# Register Constellations in _mscl: -_mscl.Constellations_swigregister(Constellations) - -class HeadingUpdateOptionsList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HeadingUpdateOptionsList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HeadingUpdateOptionsList___nonzero__(self) - - def __bool__(self): - return _mscl.HeadingUpdateOptionsList___bool__(self) - - def __len__(self): - return _mscl.HeadingUpdateOptionsList___len__(self) - - def __getslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HeadingUpdateOptionsList___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___setitem__(self, *args) - - def pop(self): - return _mscl.HeadingUpdateOptionsList_pop(self) - - def append(self, x): - return _mscl.HeadingUpdateOptionsList_append(self, x) - - def empty(self): - return _mscl.HeadingUpdateOptionsList_empty(self) - - def size(self): - return _mscl.HeadingUpdateOptionsList_size(self) - - def swap(self, v): - return _mscl.HeadingUpdateOptionsList_swap(self, v) - - def begin(self): - return _mscl.HeadingUpdateOptionsList_begin(self) - - def end(self): - return _mscl.HeadingUpdateOptionsList_end(self) - - def rbegin(self): - return _mscl.HeadingUpdateOptionsList_rbegin(self) - - def rend(self): - return _mscl.HeadingUpdateOptionsList_rend(self) - - def clear(self): - return _mscl.HeadingUpdateOptionsList_clear(self) - - def get_allocator(self): - return _mscl.HeadingUpdateOptionsList_get_allocator(self) - - def pop_back(self): - return _mscl.HeadingUpdateOptionsList_pop_back(self) - - def erase(self, *args): - return _mscl.HeadingUpdateOptionsList_erase(self, *args) - - def __init__(self, *args): - _mscl.HeadingUpdateOptionsList_swiginit(self, _mscl.new_HeadingUpdateOptionsList(*args)) - - def push_back(self, x): - return _mscl.HeadingUpdateOptionsList_push_back(self, x) - - def front(self): - return _mscl.HeadingUpdateOptionsList_front(self) - - def back(self): - return _mscl.HeadingUpdateOptionsList_back(self) - - def assign(self, n, x): - return _mscl.HeadingUpdateOptionsList_assign(self, n, x) - - def resize(self, *args): - return _mscl.HeadingUpdateOptionsList_resize(self, *args) - - def insert(self, *args): - return _mscl.HeadingUpdateOptionsList_insert(self, *args) - - def reserve(self, n): - return _mscl.HeadingUpdateOptionsList_reserve(self, n) - - def capacity(self): - return _mscl.HeadingUpdateOptionsList_capacity(self) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptionsList - -# Register HeadingUpdateOptionsList in _mscl: -_mscl.HeadingUpdateOptionsList_swigregister(HeadingUpdateOptionsList) - -class AdaptiveMeasurementModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveMeasurementModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveMeasurementModes___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveMeasurementModes___bool__(self) - - def __len__(self): - return _mscl.AdaptiveMeasurementModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveMeasurementModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveMeasurementModes_pop(self) - - def append(self, x): - return _mscl.AdaptiveMeasurementModes_append(self, x) - - def empty(self): - return _mscl.AdaptiveMeasurementModes_empty(self) - - def size(self): - return _mscl.AdaptiveMeasurementModes_size(self) - - def swap(self, v): - return _mscl.AdaptiveMeasurementModes_swap(self, v) - - def begin(self): - return _mscl.AdaptiveMeasurementModes_begin(self) - - def end(self): - return _mscl.AdaptiveMeasurementModes_end(self) - - def rbegin(self): - return _mscl.AdaptiveMeasurementModes_rbegin(self) - - def rend(self): - return _mscl.AdaptiveMeasurementModes_rend(self) - - def clear(self): - return _mscl.AdaptiveMeasurementModes_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveMeasurementModes_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveMeasurementModes_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveMeasurementModes_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveMeasurementModes_swiginit(self, _mscl.new_AdaptiveMeasurementModes(*args)) - - def push_back(self, x): - return _mscl.AdaptiveMeasurementModes_push_back(self, x) - - def front(self): - return _mscl.AdaptiveMeasurementModes_front(self) - - def back(self): - return _mscl.AdaptiveMeasurementModes_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveMeasurementModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveMeasurementModes_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveMeasurementModes_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveMeasurementModes_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveMeasurementModes_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementModes - -# Register AdaptiveMeasurementModes in _mscl: -_mscl.AdaptiveMeasurementModes_swigregister(AdaptiveMeasurementModes) - -class GeometricVectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeometricVectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeometricVectors___nonzero__(self) - - def __bool__(self): - return _mscl.GeometricVectors___bool__(self) - - def __len__(self): - return _mscl.GeometricVectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeometricVectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeometricVectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeometricVectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeometricVectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeometricVectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeometricVectors___setitem__(self, *args) - - def pop(self): - return _mscl.GeometricVectors_pop(self) - - def append(self, x): - return _mscl.GeometricVectors_append(self, x) - - def empty(self): - return _mscl.GeometricVectors_empty(self) - - def size(self): - return _mscl.GeometricVectors_size(self) - - def swap(self, v): - return _mscl.GeometricVectors_swap(self, v) - - def begin(self): - return _mscl.GeometricVectors_begin(self) - - def end(self): - return _mscl.GeometricVectors_end(self) - - def rbegin(self): - return _mscl.GeometricVectors_rbegin(self) - - def rend(self): - return _mscl.GeometricVectors_rend(self) - - def clear(self): - return _mscl.GeometricVectors_clear(self) - - def get_allocator(self): - return _mscl.GeometricVectors_get_allocator(self) - - def pop_back(self): - return _mscl.GeometricVectors_pop_back(self) - - def erase(self, *args): - return _mscl.GeometricVectors_erase(self, *args) - - def __init__(self, *args): - _mscl.GeometricVectors_swiginit(self, _mscl.new_GeometricVectors(*args)) - - def push_back(self, x): - return _mscl.GeometricVectors_push_back(self, x) - - def front(self): - return _mscl.GeometricVectors_front(self) - - def back(self): - return _mscl.GeometricVectors_back(self) - - def assign(self, n, x): - return _mscl.GeometricVectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeometricVectors_resize(self, *args) - - def insert(self, *args): - return _mscl.GeometricVectors_insert(self, *args) - - def reserve(self, n): - return _mscl.GeometricVectors_reserve(self, n) - - def capacity(self): - return _mscl.GeometricVectors_capacity(self) - __swig_destroy__ = _mscl.delete_GeometricVectors - -# Register GeometricVectors in _mscl: -_mscl.GeometricVectors_swigregister(GeometricVectors) - -class Matrix_3x3s(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Matrix_3x3s_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Matrix_3x3s___nonzero__(self) - - def __bool__(self): - return _mscl.Matrix_3x3s___bool__(self) - - def __len__(self): - return _mscl.Matrix_3x3s___len__(self) - - def __getslice__(self, i, j): - return _mscl.Matrix_3x3s___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Matrix_3x3s___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Matrix_3x3s___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Matrix_3x3s___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Matrix_3x3s___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Matrix_3x3s___setitem__(self, *args) - - def pop(self): - return _mscl.Matrix_3x3s_pop(self) - - def append(self, x): - return _mscl.Matrix_3x3s_append(self, x) - - def empty(self): - return _mscl.Matrix_3x3s_empty(self) - - def size(self): - return _mscl.Matrix_3x3s_size(self) - - def swap(self, v): - return _mscl.Matrix_3x3s_swap(self, v) - - def begin(self): - return _mscl.Matrix_3x3s_begin(self) - - def end(self): - return _mscl.Matrix_3x3s_end(self) - - def rbegin(self): - return _mscl.Matrix_3x3s_rbegin(self) - - def rend(self): - return _mscl.Matrix_3x3s_rend(self) - - def clear(self): - return _mscl.Matrix_3x3s_clear(self) - - def get_allocator(self): - return _mscl.Matrix_3x3s_get_allocator(self) - - def pop_back(self): - return _mscl.Matrix_3x3s_pop_back(self) - - def erase(self, *args): - return _mscl.Matrix_3x3s_erase(self, *args) - - def __init__(self, *args): - _mscl.Matrix_3x3s_swiginit(self, _mscl.new_Matrix_3x3s(*args)) - - def push_back(self, x): - return _mscl.Matrix_3x3s_push_back(self, x) - - def front(self): - return _mscl.Matrix_3x3s_front(self) - - def back(self): - return _mscl.Matrix_3x3s_back(self) - - def assign(self, n, x): - return _mscl.Matrix_3x3s_assign(self, n, x) - - def resize(self, *args): - return _mscl.Matrix_3x3s_resize(self, *args) - - def insert(self, *args): - return _mscl.Matrix_3x3s_insert(self, *args) - - def reserve(self, n): - return _mscl.Matrix_3x3s_reserve(self, n) - - def capacity(self): - return _mscl.Matrix_3x3s_capacity(self) - __swig_destroy__ = _mscl.delete_Matrix_3x3s - -# Register Matrix_3x3s in _mscl: -_mscl.Matrix_3x3s_swigregister(Matrix_3x3s) - -class StatusSelectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StatusSelectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StatusSelectors___nonzero__(self) - - def __bool__(self): - return _mscl.StatusSelectors___bool__(self) - - def __len__(self): - return _mscl.StatusSelectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.StatusSelectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StatusSelectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StatusSelectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StatusSelectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StatusSelectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StatusSelectors___setitem__(self, *args) - - def pop(self): - return _mscl.StatusSelectors_pop(self) - - def append(self, x): - return _mscl.StatusSelectors_append(self, x) - - def empty(self): - return _mscl.StatusSelectors_empty(self) - - def size(self): - return _mscl.StatusSelectors_size(self) - - def swap(self, v): - return _mscl.StatusSelectors_swap(self, v) - - def begin(self): - return _mscl.StatusSelectors_begin(self) - - def end(self): - return _mscl.StatusSelectors_end(self) - - def rbegin(self): - return _mscl.StatusSelectors_rbegin(self) - - def rend(self): - return _mscl.StatusSelectors_rend(self) - - def clear(self): - return _mscl.StatusSelectors_clear(self) - - def get_allocator(self): - return _mscl.StatusSelectors_get_allocator(self) - - def pop_back(self): - return _mscl.StatusSelectors_pop_back(self) - - def erase(self, *args): - return _mscl.StatusSelectors_erase(self, *args) - - def __init__(self, *args): - _mscl.StatusSelectors_swiginit(self, _mscl.new_StatusSelectors(*args)) - - def push_back(self, x): - return _mscl.StatusSelectors_push_back(self, x) - - def front(self): - return _mscl.StatusSelectors_front(self) - - def back(self): - return _mscl.StatusSelectors_back(self) - - def assign(self, n, x): - return _mscl.StatusSelectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.StatusSelectors_resize(self, *args) - - def insert(self, *args): - return _mscl.StatusSelectors_insert(self, *args) - - def reserve(self, n): - return _mscl.StatusSelectors_reserve(self, n) - - def capacity(self): - return _mscl.StatusSelectors_capacity(self) - __swig_destroy__ = _mscl.delete_StatusSelectors - -# Register StatusSelectors in _mscl: -_mscl.StatusSelectors_swigregister(StatusSelectors) - -class VehicleModeTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.VehicleModeTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.VehicleModeTypes___nonzero__(self) - - def __bool__(self): - return _mscl.VehicleModeTypes___bool__(self) - - def __len__(self): - return _mscl.VehicleModeTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.VehicleModeTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.VehicleModeTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.VehicleModeTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.VehicleModeTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.VehicleModeTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.VehicleModeTypes___setitem__(self, *args) - - def pop(self): - return _mscl.VehicleModeTypes_pop(self) - - def append(self, x): - return _mscl.VehicleModeTypes_append(self, x) - - def empty(self): - return _mscl.VehicleModeTypes_empty(self) - - def size(self): - return _mscl.VehicleModeTypes_size(self) - - def swap(self, v): - return _mscl.VehicleModeTypes_swap(self, v) - - def begin(self): - return _mscl.VehicleModeTypes_begin(self) - - def end(self): - return _mscl.VehicleModeTypes_end(self) - - def rbegin(self): - return _mscl.VehicleModeTypes_rbegin(self) - - def rend(self): - return _mscl.VehicleModeTypes_rend(self) - - def clear(self): - return _mscl.VehicleModeTypes_clear(self) - - def get_allocator(self): - return _mscl.VehicleModeTypes_get_allocator(self) - - def pop_back(self): - return _mscl.VehicleModeTypes_pop_back(self) - - def erase(self, *args): - return _mscl.VehicleModeTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.VehicleModeTypes_swiginit(self, _mscl.new_VehicleModeTypes(*args)) - - def push_back(self, x): - return _mscl.VehicleModeTypes_push_back(self, x) - - def front(self): - return _mscl.VehicleModeTypes_front(self) - - def back(self): - return _mscl.VehicleModeTypes_back(self) - - def assign(self, n, x): - return _mscl.VehicleModeTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.VehicleModeTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.VehicleModeTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.VehicleModeTypes_reserve(self, n) - - def capacity(self): - return _mscl.VehicleModeTypes_capacity(self) - __swig_destroy__ = _mscl.delete_VehicleModeTypes - -# Register VehicleModeTypes in _mscl: -_mscl.VehicleModeTypes_swigregister(VehicleModeTypes) - -class AdaptiveFilterLevels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveFilterLevels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveFilterLevels___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveFilterLevels___bool__(self) - - def __len__(self): - return _mscl.AdaptiveFilterLevels___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveFilterLevels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveFilterLevels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveFilterLevels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveFilterLevels___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveFilterLevels_pop(self) - - def append(self, x): - return _mscl.AdaptiveFilterLevels_append(self, x) - - def empty(self): - return _mscl.AdaptiveFilterLevels_empty(self) - - def size(self): - return _mscl.AdaptiveFilterLevels_size(self) - - def swap(self, v): - return _mscl.AdaptiveFilterLevels_swap(self, v) - - def begin(self): - return _mscl.AdaptiveFilterLevels_begin(self) - - def end(self): - return _mscl.AdaptiveFilterLevels_end(self) - - def rbegin(self): - return _mscl.AdaptiveFilterLevels_rbegin(self) - - def rend(self): - return _mscl.AdaptiveFilterLevels_rend(self) - - def clear(self): - return _mscl.AdaptiveFilterLevels_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveFilterLevels_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveFilterLevels_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveFilterLevels_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveFilterLevels_swiginit(self, _mscl.new_AdaptiveFilterLevels(*args)) - - def push_back(self, x): - return _mscl.AdaptiveFilterLevels_push_back(self, x) - - def front(self): - return _mscl.AdaptiveFilterLevels_front(self) - - def back(self): - return _mscl.AdaptiveFilterLevels_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveFilterLevels_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveFilterLevels_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveFilterLevels_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveFilterLevels_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveFilterLevels_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveFilterLevels - -# Register AdaptiveFilterLevels in _mscl: -_mscl.AdaptiveFilterLevels_swigregister(AdaptiveFilterLevels) - -class LowPassFilterConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LowPassFilterConfig_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LowPassFilterConfig___nonzero__(self) - - def __bool__(self): - return _mscl.LowPassFilterConfig___bool__(self) - - def __len__(self): - return _mscl.LowPassFilterConfig___len__(self) - - def __getslice__(self, i, j): - return _mscl.LowPassFilterConfig___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LowPassFilterConfig___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LowPassFilterConfig___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LowPassFilterConfig___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LowPassFilterConfig___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LowPassFilterConfig___setitem__(self, *args) - - def pop(self): - return _mscl.LowPassFilterConfig_pop(self) - - def append(self, x): - return _mscl.LowPassFilterConfig_append(self, x) - - def empty(self): - return _mscl.LowPassFilterConfig_empty(self) - - def size(self): - return _mscl.LowPassFilterConfig_size(self) - - def swap(self, v): - return _mscl.LowPassFilterConfig_swap(self, v) - - def begin(self): - return _mscl.LowPassFilterConfig_begin(self) - - def end(self): - return _mscl.LowPassFilterConfig_end(self) - - def rbegin(self): - return _mscl.LowPassFilterConfig_rbegin(self) - - def rend(self): - return _mscl.LowPassFilterConfig_rend(self) - - def clear(self): - return _mscl.LowPassFilterConfig_clear(self) - - def get_allocator(self): - return _mscl.LowPassFilterConfig_get_allocator(self) - - def pop_back(self): - return _mscl.LowPassFilterConfig_pop_back(self) - - def erase(self, *args): - return _mscl.LowPassFilterConfig_erase(self, *args) - - def __init__(self, *args): - _mscl.LowPassFilterConfig_swiginit(self, _mscl.new_LowPassFilterConfig(*args)) - - def push_back(self, x): - return _mscl.LowPassFilterConfig_push_back(self, x) - - def front(self): - return _mscl.LowPassFilterConfig_front(self) - - def back(self): - return _mscl.LowPassFilterConfig_back(self) - - def assign(self, n, x): - return _mscl.LowPassFilterConfig_assign(self, n, x) - - def resize(self, *args): - return _mscl.LowPassFilterConfig_resize(self, *args) - - def insert(self, *args): - return _mscl.LowPassFilterConfig_insert(self, *args) - - def reserve(self, n): - return _mscl.LowPassFilterConfig_reserve(self, n) - - def capacity(self): - return _mscl.LowPassFilterConfig_capacity(self) - __swig_destroy__ = _mscl.delete_LowPassFilterConfig - -# Register LowPassFilterConfig in _mscl: -_mscl.LowPassFilterConfig_swigregister(LowPassFilterConfig) - -class AidingMeasurementSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AidingMeasurementSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AidingMeasurementSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.AidingMeasurementSourceOptions___bool__(self) - - def __len__(self): - return _mscl.AidingMeasurementSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.AidingMeasurementSourceOptions_pop(self) - - def append(self, x): - return _mscl.AidingMeasurementSourceOptions_append(self, x) - - def empty(self): - return _mscl.AidingMeasurementSourceOptions_empty(self) - - def size(self): - return _mscl.AidingMeasurementSourceOptions_size(self) - - def swap(self, v): - return _mscl.AidingMeasurementSourceOptions_swap(self, v) - - def begin(self): - return _mscl.AidingMeasurementSourceOptions_begin(self) - - def end(self): - return _mscl.AidingMeasurementSourceOptions_end(self) - - def rbegin(self): - return _mscl.AidingMeasurementSourceOptions_rbegin(self) - - def rend(self): - return _mscl.AidingMeasurementSourceOptions_rend(self) - - def clear(self): - return _mscl.AidingMeasurementSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.AidingMeasurementSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.AidingMeasurementSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.AidingMeasurementSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.AidingMeasurementSourceOptions_swiginit(self, _mscl.new_AidingMeasurementSourceOptions(*args)) - - def push_back(self, x): - return _mscl.AidingMeasurementSourceOptions_push_back(self, x) - - def front(self): - return _mscl.AidingMeasurementSourceOptions_front(self) - - def back(self): - return _mscl.AidingMeasurementSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.AidingMeasurementSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.AidingMeasurementSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.AidingMeasurementSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.AidingMeasurementSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.AidingMeasurementSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_AidingMeasurementSourceOptions - -# Register AidingMeasurementSourceOptions in _mscl: -_mscl.AidingMeasurementSourceOptions_swigregister(AidingMeasurementSourceOptions) - -class PpsSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.PpsSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.PpsSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.PpsSourceOptions___bool__(self) - - def __len__(self): - return _mscl.PpsSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.PpsSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.PpsSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.PpsSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.PpsSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.PpsSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.PpsSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.PpsSourceOptions_pop(self) - - def append(self, x): - return _mscl.PpsSourceOptions_append(self, x) - - def empty(self): - return _mscl.PpsSourceOptions_empty(self) - - def size(self): - return _mscl.PpsSourceOptions_size(self) - - def swap(self, v): - return _mscl.PpsSourceOptions_swap(self, v) - - def begin(self): - return _mscl.PpsSourceOptions_begin(self) - - def end(self): - return _mscl.PpsSourceOptions_end(self) - - def rbegin(self): - return _mscl.PpsSourceOptions_rbegin(self) - - def rend(self): - return _mscl.PpsSourceOptions_rend(self) - - def clear(self): - return _mscl.PpsSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.PpsSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.PpsSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.PpsSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.PpsSourceOptions_swiginit(self, _mscl.new_PpsSourceOptions(*args)) - - def push_back(self, x): - return _mscl.PpsSourceOptions_push_back(self, x) - - def front(self): - return _mscl.PpsSourceOptions_front(self) - - def back(self): - return _mscl.PpsSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.PpsSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.PpsSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.PpsSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.PpsSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.PpsSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_PpsSourceOptions - -# Register PpsSourceOptions in _mscl: -_mscl.PpsSourceOptions_swigregister(PpsSourceOptions) - -class GeographicSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeographicSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeographicSources___nonzero__(self) - - def __bool__(self): - return _mscl.GeographicSources___bool__(self) - - def __len__(self): - return _mscl.GeographicSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeographicSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeographicSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeographicSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeographicSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeographicSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeographicSources___setitem__(self, *args) - - def pop(self): - return _mscl.GeographicSources_pop(self) - - def append(self, x): - return _mscl.GeographicSources_append(self, x) - - def empty(self): - return _mscl.GeographicSources_empty(self) - - def size(self): - return _mscl.GeographicSources_size(self) - - def swap(self, v): - return _mscl.GeographicSources_swap(self, v) - - def begin(self): - return _mscl.GeographicSources_begin(self) - - def end(self): - return _mscl.GeographicSources_end(self) - - def rbegin(self): - return _mscl.GeographicSources_rbegin(self) - - def rend(self): - return _mscl.GeographicSources_rend(self) - - def clear(self): - return _mscl.GeographicSources_clear(self) - - def get_allocator(self): - return _mscl.GeographicSources_get_allocator(self) - - def pop_back(self): - return _mscl.GeographicSources_pop_back(self) - - def erase(self, *args): - return _mscl.GeographicSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GeographicSources_swiginit(self, _mscl.new_GeographicSources(*args)) - - def push_back(self, x): - return _mscl.GeographicSources_push_back(self, x) - - def front(self): - return _mscl.GeographicSources_front(self) - - def back(self): - return _mscl.GeographicSources_back(self) - - def assign(self, n, x): - return _mscl.GeographicSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeographicSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GeographicSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GeographicSources_reserve(self, n) - - def capacity(self): - return _mscl.GeographicSources_capacity(self) - __swig_destroy__ = _mscl.delete_GeographicSources - -# Register GeographicSources in _mscl: -_mscl.GeographicSources_swigregister(GeographicSources) - -class GnssSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSources___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSources___bool__(self) - - def __len__(self): - return _mscl.GnssSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssSources___setitem__(self, *args) - - def pop(self): - return _mscl.GnssSources_pop(self) - - def append(self, x): - return _mscl.GnssSources_append(self, x) - - def empty(self): - return _mscl.GnssSources_empty(self) - - def size(self): - return _mscl.GnssSources_size(self) - - def swap(self, v): - return _mscl.GnssSources_swap(self, v) - - def begin(self): - return _mscl.GnssSources_begin(self) - - def end(self): - return _mscl.GnssSources_end(self) - - def rbegin(self): - return _mscl.GnssSources_rbegin(self) - - def rend(self): - return _mscl.GnssSources_rend(self) - - def clear(self): - return _mscl.GnssSources_clear(self) - - def get_allocator(self): - return _mscl.GnssSources_get_allocator(self) - - def pop_back(self): - return _mscl.GnssSources_pop_back(self) - - def erase(self, *args): - return _mscl.GnssSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssSources_swiginit(self, _mscl.new_GnssSources(*args)) - - def push_back(self, x): - return _mscl.GnssSources_push_back(self, x) - - def front(self): - return _mscl.GnssSources_front(self) - - def back(self): - return _mscl.GnssSources_back(self) - - def assign(self, n, x): - return _mscl.GnssSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssSources_reserve(self, n) - - def capacity(self): - return _mscl.GnssSources_capacity(self) - __swig_destroy__ = _mscl.delete_GnssSources - -# Register GnssSources in _mscl: -_mscl.GnssSources_swigregister(GnssSources) - -class GnssSignalConfigOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSignalConfigOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSignalConfigOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSignalConfigOptions___bool__(self) - - def __len__(self): - return _mscl.GnssSignalConfigOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GnssSignalConfigOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GnssSignalConfigOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GnssSignalConfigOptions_has_key(self, key) - - def keys(self): - return _mscl.GnssSignalConfigOptions_keys(self) - - def values(self): - return _mscl.GnssSignalConfigOptions_values(self) - - def items(self): - return _mscl.GnssSignalConfigOptions_items(self) - - def __contains__(self, key): - return _mscl.GnssSignalConfigOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GnssSignalConfigOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GnssSignalConfigOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GnssSignalConfigOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GnssSignalConfigOptions_asdict(self) - - def __init__(self, *args): - _mscl.GnssSignalConfigOptions_swiginit(self, _mscl.new_GnssSignalConfigOptions(*args)) - - def empty(self): - return _mscl.GnssSignalConfigOptions_empty(self) - - def size(self): - return _mscl.GnssSignalConfigOptions_size(self) - - def swap(self, v): - return _mscl.GnssSignalConfigOptions_swap(self, v) - - def begin(self): - return _mscl.GnssSignalConfigOptions_begin(self) - - def end(self): - return _mscl.GnssSignalConfigOptions_end(self) - - def rbegin(self): - return _mscl.GnssSignalConfigOptions_rbegin(self) - - def rend(self): - return _mscl.GnssSignalConfigOptions_rend(self) - - def clear(self): - return _mscl.GnssSignalConfigOptions_clear(self) - - def get_allocator(self): - return _mscl.GnssSignalConfigOptions_get_allocator(self) - - def count(self, x): - return _mscl.GnssSignalConfigOptions_count(self, x) - - def erase(self, *args): - return _mscl.GnssSignalConfigOptions_erase(self, *args) - - def find(self, x): - return _mscl.GnssSignalConfigOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GnssSignalConfigOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GnssSignalConfigOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GnssSignalConfigOptions - -# Register GnssSignalConfigOptions in _mscl: -_mscl.GnssSignalConfigOptions_swigregister(GnssSignalConfigOptions) - -class NmeaMessageFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NmeaMessageFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NmeaMessageFormats___nonzero__(self) - - def __bool__(self): - return _mscl.NmeaMessageFormats___bool__(self) - - def __len__(self): - return _mscl.NmeaMessageFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.NmeaMessageFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NmeaMessageFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NmeaMessageFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NmeaMessageFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NmeaMessageFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NmeaMessageFormats___setitem__(self, *args) - - def pop(self): - return _mscl.NmeaMessageFormats_pop(self) - - def append(self, x): - return _mscl.NmeaMessageFormats_append(self, x) - - def empty(self): - return _mscl.NmeaMessageFormats_empty(self) - - def size(self): - return _mscl.NmeaMessageFormats_size(self) - - def swap(self, v): - return _mscl.NmeaMessageFormats_swap(self, v) - - def begin(self): - return _mscl.NmeaMessageFormats_begin(self) - - def end(self): - return _mscl.NmeaMessageFormats_end(self) - - def rbegin(self): - return _mscl.NmeaMessageFormats_rbegin(self) - - def rend(self): - return _mscl.NmeaMessageFormats_rend(self) - - def clear(self): - return _mscl.NmeaMessageFormats_clear(self) - - def get_allocator(self): - return _mscl.NmeaMessageFormats_get_allocator(self) - - def pop_back(self): - return _mscl.NmeaMessageFormats_pop_back(self) - - def erase(self, *args): - return _mscl.NmeaMessageFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.NmeaMessageFormats_swiginit(self, _mscl.new_NmeaMessageFormats(*args)) - - def push_back(self, x): - return _mscl.NmeaMessageFormats_push_back(self, x) - - def front(self): - return _mscl.NmeaMessageFormats_front(self) - - def back(self): - return _mscl.NmeaMessageFormats_back(self) - - def assign(self, n, x): - return _mscl.NmeaMessageFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.NmeaMessageFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.NmeaMessageFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.NmeaMessageFormats_reserve(self, n) - - def capacity(self): - return _mscl.NmeaMessageFormats_capacity(self) - __swig_destroy__ = _mscl.delete_NmeaMessageFormats - -# Register NmeaMessageFormats in _mscl: -_mscl.NmeaMessageFormats_swigregister(NmeaMessageFormats) - -class GpioPinModeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinModeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinModeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinModeOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinModeOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.GpioPinModeOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GpioPinModeOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GpioPinModeOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GpioPinModeOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GpioPinModeOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GpioPinModeOptions___setitem__(self, *args) - - def pop(self): - return _mscl.GpioPinModeOptions_pop(self) - - def append(self, x): - return _mscl.GpioPinModeOptions_append(self, x) - - def empty(self): - return _mscl.GpioPinModeOptions_empty(self) - - def size(self): - return _mscl.GpioPinModeOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinModeOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinModeOptions_begin(self) - - def end(self): - return _mscl.GpioPinModeOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinModeOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinModeOptions_rend(self) - - def clear(self): - return _mscl.GpioPinModeOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinModeOptions_get_allocator(self) - - def pop_back(self): - return _mscl.GpioPinModeOptions_pop_back(self) - - def erase(self, *args): - return _mscl.GpioPinModeOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.GpioPinModeOptions_swiginit(self, _mscl.new_GpioPinModeOptions(*args)) - - def push_back(self, x): - return _mscl.GpioPinModeOptions_push_back(self, x) - - def front(self): - return _mscl.GpioPinModeOptions_front(self) - - def back(self): - return _mscl.GpioPinModeOptions_back(self) - - def assign(self, n, x): - return _mscl.GpioPinModeOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.GpioPinModeOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.GpioPinModeOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.GpioPinModeOptions_reserve(self, n) - - def capacity(self): - return _mscl.GpioPinModeOptions_capacity(self) - __swig_destroy__ = _mscl.delete_GpioPinModeOptions - -# Register GpioPinModeOptions in _mscl: -_mscl.GpioPinModeOptions_swigregister(GpioPinModeOptions) - -class GpioBehaviorModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioBehaviorModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioBehaviorModes___nonzero__(self) - - def __bool__(self): - return _mscl.GpioBehaviorModes___bool__(self) - - def __len__(self): - return _mscl.GpioBehaviorModes___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioBehaviorModes___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioBehaviorModes___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioBehaviorModes_has_key(self, key) - - def keys(self): - return _mscl.GpioBehaviorModes_keys(self) - - def values(self): - return _mscl.GpioBehaviorModes_values(self) - - def items(self): - return _mscl.GpioBehaviorModes_items(self) - - def __contains__(self, key): - return _mscl.GpioBehaviorModes___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioBehaviorModes_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioBehaviorModes_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioBehaviorModes___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioBehaviorModes_asdict(self) - - def __init__(self, *args): - _mscl.GpioBehaviorModes_swiginit(self, _mscl.new_GpioBehaviorModes(*args)) - - def empty(self): - return _mscl.GpioBehaviorModes_empty(self) - - def size(self): - return _mscl.GpioBehaviorModes_size(self) - - def swap(self, v): - return _mscl.GpioBehaviorModes_swap(self, v) - - def begin(self): - return _mscl.GpioBehaviorModes_begin(self) - - def end(self): - return _mscl.GpioBehaviorModes_end(self) - - def rbegin(self): - return _mscl.GpioBehaviorModes_rbegin(self) - - def rend(self): - return _mscl.GpioBehaviorModes_rend(self) - - def clear(self): - return _mscl.GpioBehaviorModes_clear(self) - - def get_allocator(self): - return _mscl.GpioBehaviorModes_get_allocator(self) - - def count(self, x): - return _mscl.GpioBehaviorModes_count(self, x) - - def erase(self, *args): - return _mscl.GpioBehaviorModes_erase(self, *args) - - def find(self, x): - return _mscl.GpioBehaviorModes_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioBehaviorModes_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioBehaviorModes_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioBehaviorModes - -# Register GpioBehaviorModes in _mscl: -_mscl.GpioBehaviorModes_swigregister(GpioBehaviorModes) - -class GpioFeatureBehaviors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioFeatureBehaviors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioFeatureBehaviors___nonzero__(self) - - def __bool__(self): - return _mscl.GpioFeatureBehaviors___bool__(self) - - def __len__(self): - return _mscl.GpioFeatureBehaviors___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioFeatureBehaviors___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioFeatureBehaviors___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioFeatureBehaviors_has_key(self, key) - - def keys(self): - return _mscl.GpioFeatureBehaviors_keys(self) - - def values(self): - return _mscl.GpioFeatureBehaviors_values(self) - - def items(self): - return _mscl.GpioFeatureBehaviors_items(self) - - def __contains__(self, key): - return _mscl.GpioFeatureBehaviors___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioFeatureBehaviors_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioFeatureBehaviors_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioFeatureBehaviors___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioFeatureBehaviors_asdict(self) - - def __init__(self, *args): - _mscl.GpioFeatureBehaviors_swiginit(self, _mscl.new_GpioFeatureBehaviors(*args)) - - def empty(self): - return _mscl.GpioFeatureBehaviors_empty(self) - - def size(self): - return _mscl.GpioFeatureBehaviors_size(self) - - def swap(self, v): - return _mscl.GpioFeatureBehaviors_swap(self, v) - - def begin(self): - return _mscl.GpioFeatureBehaviors_begin(self) - - def end(self): - return _mscl.GpioFeatureBehaviors_end(self) - - def rbegin(self): - return _mscl.GpioFeatureBehaviors_rbegin(self) - - def rend(self): - return _mscl.GpioFeatureBehaviors_rend(self) - - def clear(self): - return _mscl.GpioFeatureBehaviors_clear(self) - - def get_allocator(self): - return _mscl.GpioFeatureBehaviors_get_allocator(self) - - def count(self, x): - return _mscl.GpioFeatureBehaviors_count(self, x) - - def erase(self, *args): - return _mscl.GpioFeatureBehaviors_erase(self, *args) - - def find(self, x): - return _mscl.GpioFeatureBehaviors_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioFeatureBehaviors_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioFeatureBehaviors_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioFeatureBehaviors - -# Register GpioFeatureBehaviors in _mscl: -_mscl.GpioFeatureBehaviors_swigregister(GpioFeatureBehaviors) - -class GpioPinOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioPinOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioPinOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioPinOptions_has_key(self, key) - - def keys(self): - return _mscl.GpioPinOptions_keys(self) - - def values(self): - return _mscl.GpioPinOptions_values(self) - - def items(self): - return _mscl.GpioPinOptions_items(self) - - def __contains__(self, key): - return _mscl.GpioPinOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioPinOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioPinOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioPinOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioPinOptions_asdict(self) - - def __init__(self, *args): - _mscl.GpioPinOptions_swiginit(self, _mscl.new_GpioPinOptions(*args)) - - def empty(self): - return _mscl.GpioPinOptions_empty(self) - - def size(self): - return _mscl.GpioPinOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinOptions_begin(self) - - def end(self): - return _mscl.GpioPinOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinOptions_rend(self) - - def clear(self): - return _mscl.GpioPinOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinOptions_get_allocator(self) - - def count(self, x): - return _mscl.GpioPinOptions_count(self, x) - - def erase(self, *args): - return _mscl.GpioPinOptions_erase(self, *args) - - def find(self, x): - return _mscl.GpioPinOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioPinOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioPinOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioPinOptions - -# Register GpioPinOptions in _mscl: -_mscl.GpioPinOptions_swigregister(GpioPinOptions) - -class EventInputTriggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventInputTriggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventInputTriggers___nonzero__(self) - - def __bool__(self): - return _mscl.EventInputTriggers___bool__(self) - - def __len__(self): - return _mscl.EventInputTriggers___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventInputTriggers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventInputTriggers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventInputTriggers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventInputTriggers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventInputTriggers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventInputTriggers___setitem__(self, *args) - - def __init__(self, *args): - _mscl.EventInputTriggers_swiginit(self, _mscl.new_EventInputTriggers(*args)) - - def empty(self): - return _mscl.EventInputTriggers_empty(self) - - def size(self): - return _mscl.EventInputTriggers_size(self) - - def swap(self, v): - return _mscl.EventInputTriggers_swap(self, v) - - def begin(self): - return _mscl.EventInputTriggers_begin(self) - - def end(self): - return _mscl.EventInputTriggers_end(self) - - def rbegin(self): - return _mscl.EventInputTriggers_rbegin(self) - - def rend(self): - return _mscl.EventInputTriggers_rend(self) - - def front(self): - return _mscl.EventInputTriggers_front(self) - - def back(self): - return _mscl.EventInputTriggers_back(self) - - def fill(self, u): - return _mscl.EventInputTriggers_fill(self, u) - __swig_destroy__ = _mscl.delete_EventInputTriggers - -# Register EventInputTriggers in _mscl: -_mscl.EventInputTriggers_swigregister(EventInputTriggers) - -class EventTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTypes___nonzero__(self) - - def __bool__(self): - return _mscl.EventTypes___bool__(self) - - def __len__(self): - return _mscl.EventTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTypes___setitem__(self, *args) - - def pop(self): - return _mscl.EventTypes_pop(self) - - def append(self, x): - return _mscl.EventTypes_append(self, x) - - def empty(self): - return _mscl.EventTypes_empty(self) - - def size(self): - return _mscl.EventTypes_size(self) - - def swap(self, v): - return _mscl.EventTypes_swap(self, v) - - def begin(self): - return _mscl.EventTypes_begin(self) - - def end(self): - return _mscl.EventTypes_end(self) - - def rbegin(self): - return _mscl.EventTypes_rbegin(self) - - def rend(self): - return _mscl.EventTypes_rend(self) - - def clear(self): - return _mscl.EventTypes_clear(self) - - def get_allocator(self): - return _mscl.EventTypes_get_allocator(self) - - def pop_back(self): - return _mscl.EventTypes_pop_back(self) - - def erase(self, *args): - return _mscl.EventTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTypes_swiginit(self, _mscl.new_EventTypes(*args)) - - def push_back(self, x): - return _mscl.EventTypes_push_back(self, x) - - def front(self): - return _mscl.EventTypes_front(self) - - def back(self): - return _mscl.EventTypes_back(self) - - def assign(self, n, x): - return _mscl.EventTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTypes_reserve(self, n) - - def capacity(self): - return _mscl.EventTypes_capacity(self) - __swig_destroy__ = _mscl.delete_EventTypes - -# Register EventTypes in _mscl: -_mscl.EventTypes_swigregister(EventTypes) - -class MeasurementReferenceFrames(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MeasurementReferenceFrames_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MeasurementReferenceFrames___nonzero__(self) - - def __bool__(self): - return _mscl.MeasurementReferenceFrames___bool__(self) - - def __len__(self): - return _mscl.MeasurementReferenceFrames___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.MeasurementReferenceFrames___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.MeasurementReferenceFrames___delitem__(self, key) - - def has_key(self, key): - return _mscl.MeasurementReferenceFrames_has_key(self, key) - - def keys(self): - return _mscl.MeasurementReferenceFrames_keys(self) - - def values(self): - return _mscl.MeasurementReferenceFrames_values(self) - - def items(self): - return _mscl.MeasurementReferenceFrames_items(self) - - def __contains__(self, key): - return _mscl.MeasurementReferenceFrames___contains__(self, key) - - def key_iterator(self): - return _mscl.MeasurementReferenceFrames_key_iterator(self) - - def value_iterator(self): - return _mscl.MeasurementReferenceFrames_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.MeasurementReferenceFrames___setitem__(self, *args) - - def asdict(self): - return _mscl.MeasurementReferenceFrames_asdict(self) - - def __init__(self, *args): - _mscl.MeasurementReferenceFrames_swiginit(self, _mscl.new_MeasurementReferenceFrames(*args)) - - def empty(self): - return _mscl.MeasurementReferenceFrames_empty(self) - - def size(self): - return _mscl.MeasurementReferenceFrames_size(self) - - def swap(self, v): - return _mscl.MeasurementReferenceFrames_swap(self, v) - - def begin(self): - return _mscl.MeasurementReferenceFrames_begin(self) - - def end(self): - return _mscl.MeasurementReferenceFrames_end(self) - - def rbegin(self): - return _mscl.MeasurementReferenceFrames_rbegin(self) - - def rend(self): - return _mscl.MeasurementReferenceFrames_rend(self) - - def clear(self): - return _mscl.MeasurementReferenceFrames_clear(self) - - def get_allocator(self): - return _mscl.MeasurementReferenceFrames_get_allocator(self) - - def count(self, x): - return _mscl.MeasurementReferenceFrames_count(self, x) - - def erase(self, *args): - return _mscl.MeasurementReferenceFrames_erase(self, *args) - - def find(self, x): - return _mscl.MeasurementReferenceFrames_find(self, x) - - def lower_bound(self, x): - return _mscl.MeasurementReferenceFrames_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.MeasurementReferenceFrames_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrames - -# Register MeasurementReferenceFrames in _mscl: -_mscl.MeasurementReferenceFrames_swigregister(MeasurementReferenceFrames) - -class Bins(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bins_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bins___nonzero__(self) - - def __bool__(self): - return _mscl.Bins___bool__(self) - - def __len__(self): - return _mscl.Bins___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bins___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bins___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bins___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bins___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bins___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bins___setitem__(self, *args) - - def pop(self): - return _mscl.Bins_pop(self) - - def append(self, x): - return _mscl.Bins_append(self, x) - - def empty(self): - return _mscl.Bins_empty(self) - - def size(self): - return _mscl.Bins_size(self) - - def swap(self, v): - return _mscl.Bins_swap(self, v) - - def begin(self): - return _mscl.Bins_begin(self) - - def end(self): - return _mscl.Bins_end(self) - - def rbegin(self): - return _mscl.Bins_rbegin(self) - - def rend(self): - return _mscl.Bins_rend(self) - - def clear(self): - return _mscl.Bins_clear(self) - - def get_allocator(self): - return _mscl.Bins_get_allocator(self) - - def pop_back(self): - return _mscl.Bins_pop_back(self) - - def erase(self, *args): - return _mscl.Bins_erase(self, *args) - - def __init__(self, *args): - _mscl.Bins_swiginit(self, _mscl.new_Bins(*args)) - - def push_back(self, x): - return _mscl.Bins_push_back(self, x) - - def front(self): - return _mscl.Bins_front(self) - - def back(self): - return _mscl.Bins_back(self) - - def assign(self, n, x): - return _mscl.Bins_assign(self, n, x) - - def insert(self, *args): - return _mscl.Bins_insert(self, *args) - - def reserve(self, n): - return _mscl.Bins_reserve(self, n) - - def capacity(self): - return _mscl.Bins_capacity(self) - __swig_destroy__ = _mscl.delete_Bins - -# Register Bins in _mscl: -_mscl.Bins_swigregister(Bins) - -class Error(Exception): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_swiginit(self, _mscl.new_Error(*args)) - __swig_destroy__ = _mscl.delete_Error - - def what(self): - return _mscl.Error_what(self) - - def __str__(self): - return _mscl.Error___str__(self) - -# Register Error in _mscl: -_mscl.Error_swigregister(Error) - -class Error_NotSupported(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NotSupported_swiginit(self, _mscl.new_Error_NotSupported(*args)) - __swig_destroy__ = _mscl.delete_Error_NotSupported - -# Register Error_NotSupported in _mscl: -_mscl.Error_NotSupported_swigregister(Error_NotSupported) - -class Error_NoData(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NoData_swiginit(self, _mscl.new_Error_NoData(*args)) - __swig_destroy__ = _mscl.delete_Error_NoData - -# Register Error_NoData in _mscl: -_mscl.Error_NoData_swigregister(Error_NoData) - -class Error_BadDataType(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Error_BadDataType_swiginit(self, _mscl.new_Error_BadDataType()) - __swig_destroy__ = _mscl.delete_Error_BadDataType - -# Register Error_BadDataType in _mscl: -_mscl.Error_BadDataType_swigregister(Error_BadDataType) - -class Error_UnknownSampleRate(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_UnknownSampleRate_swiginit(self, _mscl.new_Error_UnknownSampleRate(*args)) - __swig_destroy__ = _mscl.delete_Error_UnknownSampleRate - -# Register Error_UnknownSampleRate in _mscl: -_mscl.Error_UnknownSampleRate_swigregister(Error_UnknownSampleRate) - -class Error_Communication(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Communication_swiginit(self, _mscl.new_Error_Communication(*args)) - __swig_destroy__ = _mscl.delete_Error_Communication - -# Register Error_Communication in _mscl: -_mscl.Error_Communication_swigregister(Error_Communication) - -class Error_NodeCommunication(Error_Communication): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NodeCommunication_swiginit(self, _mscl.new_Error_NodeCommunication(*args)) - - def nodeAddress(self): - return _mscl.Error_NodeCommunication_nodeAddress(self) - __swig_destroy__ = _mscl.delete_Error_NodeCommunication - -# Register Error_NodeCommunication in _mscl: -_mscl.Error_NodeCommunication_swigregister(Error_NodeCommunication) - -class Error_Connection(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Connection_swiginit(self, _mscl.new_Error_Connection(*args)) - __swig_destroy__ = _mscl.delete_Error_Connection - - def code(self): - return _mscl.Error_Connection_code(self) - - def value(self): - return _mscl.Error_Connection_value(self) - -# Register Error_Connection in _mscl: -_mscl.Error_Connection_swigregister(Error_Connection) - -class Error_InvalidSerialPort(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code): - _mscl.Error_InvalidSerialPort_swiginit(self, _mscl.new_Error_InvalidSerialPort(code)) - __swig_destroy__ = _mscl.delete_Error_InvalidSerialPort - -# Register Error_InvalidSerialPort in _mscl: -_mscl.Error_InvalidSerialPort_swigregister(Error_InvalidSerialPort) - -class Error_InvalidTcpServer(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidTcpServer_swiginit(self, _mscl.new_Error_InvalidTcpServer(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidTcpServer - -# Register Error_InvalidTcpServer in _mscl: -_mscl.Error_InvalidTcpServer_swigregister(Error_InvalidTcpServer) - -class Error_InvalidUnixSocket(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidUnixSocket_swiginit(self, _mscl.new_Error_InvalidUnixSocket(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidUnixSocket - -# Register Error_InvalidUnixSocket in _mscl: -_mscl.Error_InvalidUnixSocket_swigregister(Error_InvalidUnixSocket) - -class Error_MipCmdFailed(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_MipCmdFailed_swiginit(self, _mscl.new_Error_MipCmdFailed(*args)) - __swig_destroy__ = _mscl.delete_Error_MipCmdFailed - - def code(self): - return _mscl.Error_MipCmdFailed_code(self) - - def value(self): - return _mscl.Error_MipCmdFailed_value(self) - -# Register Error_MipCmdFailed in _mscl: -_mscl.Error_MipCmdFailed_swigregister(Error_MipCmdFailed) - -class Error_InvalidConfig(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_InvalidConfig_swiginit(self, _mscl.new_Error_InvalidConfig(*args)) - __swig_destroy__ = _mscl.delete_Error_InvalidConfig - - def issues(self): - return _mscl.Error_InvalidConfig_issues(self) - -# Register Error_InvalidConfig in _mscl: -_mscl.Error_InvalidConfig_swigregister(Error_InvalidConfig) - -class Error_InvalidNodeConfig(Error_InvalidConfig): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, issues, nodeAddress): - _mscl.Error_InvalidNodeConfig_swiginit(self, _mscl.new_Error_InvalidNodeConfig(issues, nodeAddress)) - __swig_destroy__ = _mscl.delete_Error_InvalidNodeConfig - - def nodeAddress(self): - return _mscl.Error_InvalidNodeConfig_nodeAddress(self) - -# Register Error_InvalidNodeConfig in _mscl: -_mscl.Error_InvalidNodeConfig_swigregister(Error_InvalidNodeConfig) - - - diff --git a/mscl_release_assets/mscl-arm64-Python3.10-v67.0.0/_mscl.so b/mscl_release_assets/mscl-arm64-Python3.10-v67.0.0/_mscl.so deleted file mode 100644 index ebb7e74..0000000 Binary files a/mscl_release_assets/mscl-arm64-Python3.10-v67.0.0/_mscl.so and /dev/null differ diff --git a/mscl_release_assets/mscl-arm64-Python3.10-v67.0.0/mscl.py b/mscl_release_assets/mscl-arm64-Python3.10-v67.0.0/mscl.py deleted file mode 100644 index daa6217..0000000 --- a/mscl_release_assets/mscl-arm64-Python3.10-v67.0.0/mscl.py +++ /dev/null @@ -1,18376 +0,0 @@ -# This file was automatically generated by SWIG (http://www.swig.org). -# Version 4.0.1 -# -# Do not make changes to this file unless you know what you are doing--modify -# the SWIG interface file instead. - -from sys import version_info as _swig_python_version_info -if _swig_python_version_info < (2, 7, 0): - raise RuntimeError("Python 2.7 or later required") - -# Import the low-level C/C++ module -if __package__ or "." in __name__: - from . import _mscl -else: - import _mscl - -try: - import builtins as __builtin__ -except ImportError: - import __builtin__ - -def _swig_repr(self): - try: - strthis = "proxy of " + self.this.__repr__() - except __builtin__.Exception: - strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - - -def _swig_setattr_nondynamic_instance_variable(set): - def set_instance_attr(self, name, value): - if name == "thisown": - self.this.own(value) - elif name == "this": - set(self, name, value) - elif hasattr(self, name) and isinstance(getattr(type(self), name), property): - set(self, name, value) - else: - raise AttributeError("You cannot add instance attributes to %s" % self) - return set_instance_attr - - -def _swig_setattr_nondynamic_class_variable(set): - def set_class_attr(cls, name, value): - if hasattr(cls, name) and not isinstance(getattr(cls, name), property): - set(cls, name, value) - else: - raise AttributeError("You cannot add class attributes to %s" % cls) - return set_class_attr - - -def _swig_add_metaclass(metaclass): - """Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass""" - def wrapper(cls): - return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy()) - return wrapper - - -class _SwigNonDynamicMeta(type): - """Meta class to enforce nondynamic attributes (no new attributes) for a class""" - __setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__) - - -class SwigPyIterator(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_SwigPyIterator - - def value(self): - return _mscl.SwigPyIterator_value(self) - - def incr(self, n=1): - return _mscl.SwigPyIterator_incr(self, n) - - def decr(self, n=1): - return _mscl.SwigPyIterator_decr(self, n) - - def distance(self, x): - return _mscl.SwigPyIterator_distance(self, x) - - def equal(self, x): - return _mscl.SwigPyIterator_equal(self, x) - - def copy(self): - return _mscl.SwigPyIterator_copy(self) - - def next(self): - return _mscl.SwigPyIterator_next(self) - - def __next__(self): - return _mscl.SwigPyIterator___next__(self) - - def previous(self): - return _mscl.SwigPyIterator_previous(self) - - def advance(self, n): - return _mscl.SwigPyIterator_advance(self, n) - - def __eq__(self, x): - return _mscl.SwigPyIterator___eq__(self, x) - - def __ne__(self, x): - return _mscl.SwigPyIterator___ne__(self, x) - - def __iadd__(self, n): - return _mscl.SwigPyIterator___iadd__(self, n) - - def __isub__(self, n): - return _mscl.SwigPyIterator___isub__(self, n) - - def __add__(self, n): - return _mscl.SwigPyIterator___add__(self, n) - - def __sub__(self, *args): - return _mscl.SwigPyIterator___sub__(self, *args) - def __iter__(self): - return self - -# Register SwigPyIterator in _mscl: -_mscl.SwigPyIterator_swigregister(SwigPyIterator) - -SHARED_PTR_DISOWN = _mscl.SHARED_PTR_DISOWN -valueType_float = _mscl.valueType_float -valueType_double = _mscl.valueType_double -valueType_uint8 = _mscl.valueType_uint8 -valueType_uint16 = _mscl.valueType_uint16 -valueType_uint32 = _mscl.valueType_uint32 -valueType_int16 = _mscl.valueType_int16 -valueType_int32 = _mscl.valueType_int32 -valueType_bool = _mscl.valueType_bool -valueType_Vector = _mscl.valueType_Vector -valueType_Matrix = _mscl.valueType_Matrix -valueType_Timestamp = _mscl.valueType_Timestamp -valueType_string = _mscl.valueType_string -valueType_Bytes = _mscl.valueType_Bytes -valueType_StructuralHealth = _mscl.valueType_StructuralHealth -valueType_RfSweep = _mscl.valueType_RfSweep -valueType_ChannelMask = _mscl.valueType_ChannelMask -valueType_int8 = _mscl.valueType_int8 -valueType_uint64 = _mscl.valueType_uint64 -deviceState_idle = _mscl.deviceState_idle -deviceState_sleep = _mscl.deviceState_sleep -deviceState_sampling = _mscl.deviceState_sampling -deviceState_sampling_lostBeacon = _mscl.deviceState_sampling_lostBeacon -deviceState_sampling_inactive = _mscl.deviceState_sampling_inactive -deviceState_unknown = _mscl.deviceState_unknown -class BitMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BitMask_swiginit(self, _mscl.new_BitMask(*args)) - __swig_destroy__ = _mscl.delete_BitMask - - def __eq__(self, other): - return _mscl.BitMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.BitMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.BitMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.BitMask___gt__(self, other) - - def fromMask(self, val): - return _mscl.BitMask_fromMask(self, val) - - def toMask(self): - return _mscl.BitMask_toMask(self) - - def enabledCount(self): - return _mscl.BitMask_enabledCount(self) - - def enabled(self, bitIndex): - return _mscl.BitMask_enabled(self, bitIndex) - - def enable(self, bitIndex, enable=True): - return _mscl.BitMask_enable(self, bitIndex, enable) - - def lastBitEnabled(self): - return _mscl.BitMask_lastBitEnabled(self) - -# Register BitMask in _mscl: -_mscl.BitMask_swigregister(BitMask) - -class ChannelMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_CHANNELS = _mscl.ChannelMask_MAX_CHANNELS - - def __init__(self, *args): - _mscl.ChannelMask_swiginit(self, _mscl.new_ChannelMask(*args)) - __swig_destroy__ = _mscl.delete_ChannelMask - - def __eq__(self, other): - return _mscl.ChannelMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.ChannelMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.ChannelMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.ChannelMask___gt__(self, other) - - def fromMask(self, channelMask): - return _mscl.ChannelMask_fromMask(self, channelMask) - - def toMask(self): - return _mscl.ChannelMask_toMask(self) - - def count(self): - return _mscl.ChannelMask_count(self) - - def enabled(self, channel): - return _mscl.ChannelMask_enabled(self, channel) - - def enable(self, channel, enable=True): - return _mscl.ChannelMask_enable(self, channel, enable) - - def lastChEnabled(self): - return _mscl.ChannelMask_lastChEnabled(self) - -# Register ChannelMask in _mscl: -_mscl.ChannelMask_swigregister(ChannelMask) - -class Value(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_Value - - def storedAs(self): - return _mscl.Value_storedAs(self) - - def as_float(self): - return _mscl.Value_as_float(self) - - def as_double(self): - return _mscl.Value_as_double(self) - - def as_uint8(self): - return _mscl.Value_as_uint8(self) - - def as_uint16(self): - return _mscl.Value_as_uint16(self) - - def as_uint32(self): - return _mscl.Value_as_uint32(self) - - def as_uint64(self): - return _mscl.Value_as_uint64(self) - - def as_int8(self): - return _mscl.Value_as_int8(self) - - def as_int16(self): - return _mscl.Value_as_int16(self) - - def as_int32(self): - return _mscl.Value_as_int32(self) - - def as_bool(self): - return _mscl.Value_as_bool(self) - - def as_ChannelMask(self): - return _mscl.Value_as_ChannelMask(self) - - def as_string(self): - return _mscl.Value_as_string(self) - - def __init__(self): - _mscl.Value_swiginit(self, _mscl.new_Value()) - -# Register Value in _mscl: -_mscl.Value_swigregister(Value) - -class Bin(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, start, end, count): - _mscl.Bin_swiginit(self, _mscl.new_Bin(start, end, count)) - - def start(self): - return _mscl.Bin_start(self) - - def end(self): - return _mscl.Bin_end(self) - - def count(self): - return _mscl.Bin_count(self) - __swig_destroy__ = _mscl.delete_Bin - -# Register Bin in _mscl: -_mscl.Bin_swigregister(Bin) - -class Histogram(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, binsStart, binsSize): - _mscl.Histogram_swiginit(self, _mscl.new_Histogram(binsStart, binsSize)) - - def binsStart(self): - return _mscl.Histogram_binsStart(self) - - def binsSize(self): - return _mscl.Histogram_binsSize(self) - - def bins(self): - return _mscl.Histogram_bins(self) - - def addBin(self, bin): - return _mscl.Histogram_addBin(self, bin) - __swig_destroy__ = _mscl.delete_Histogram - -# Register Histogram in _mscl: -_mscl.Histogram_swigregister(Histogram) - -class Timestamp(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INTERNAL = _mscl.Timestamp_INTERNAL - EXTERNAL = _mscl.Timestamp_EXTERNAL - TIME_OF_ARRIVAL = _mscl.Timestamp_TIME_OF_ARRIVAL - GPS = _mscl.Timestamp_GPS - UNIX = _mscl.Timestamp_UNIX - UTC = _mscl.Timestamp_UTC - - def __init__(self, *args): - _mscl.Timestamp_swiginit(self, _mscl.new_Timestamp(*args)) - __swig_destroy__ = _mscl.delete_Timestamp - - def nanoseconds(self, *args): - return _mscl.Timestamp_nanoseconds(self, *args) - - def seconds(self, *args): - return _mscl.Timestamp_seconds(self, *args) - - def storedEpoch(self): - return _mscl.Timestamp_storedEpoch(self) - - def __str__(self): - return _mscl.Timestamp___str__(self) - - def setTime(self, *args): - return _mscl.Timestamp_setTime(self, *args) - - def setTimeNow(self): - return _mscl.Timestamp_setTimeNow(self) - - @staticmethod - def timeNow(): - return _mscl.Timestamp_timeNow() - - @staticmethod - def setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - - @staticmethod - def getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - - @staticmethod - def gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - - @staticmethod - def utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -# Register Timestamp in _mscl: -_mscl.Timestamp_swigregister(Timestamp) - -def Timestamp_timeNow(): - return _mscl.Timestamp_timeNow() - -def Timestamp_setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - -def Timestamp_getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - -def Timestamp_gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - -def Timestamp_utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -class TimeSpan(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - NANOSECONDS_PER_MICROSECOND = _mscl.TimeSpan_NANOSECONDS_PER_MICROSECOND - NANOSECONDS_PER_MILLISECOND = _mscl.TimeSpan_NANOSECONDS_PER_MILLISECOND - NANOSECONDS_PER_SECOND = _mscl.TimeSpan_NANOSECONDS_PER_SECOND - - def getNanoseconds(self): - return _mscl.TimeSpan_getNanoseconds(self) - - def getMicroseconds(self): - return _mscl.TimeSpan_getMicroseconds(self) - - def getMilliseconds(self): - return _mscl.TimeSpan_getMilliseconds(self) - - def getSeconds(self): - return _mscl.TimeSpan_getSeconds(self) - - @staticmethod - def NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - - @staticmethod - def MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - - @staticmethod - def MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - - @staticmethod - def Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - - @staticmethod - def Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - - @staticmethod - def Hours(hours): - return _mscl.TimeSpan_Hours(hours) - - @staticmethod - def Days(days): - return _mscl.TimeSpan_Days(days) - __swig_destroy__ = _mscl.delete_TimeSpan - -# Register TimeSpan in _mscl: -_mscl.TimeSpan_swigregister(TimeSpan) - -def TimeSpan_NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - -def TimeSpan_MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - -def TimeSpan_MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - -def TimeSpan_Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - -def TimeSpan_Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - -def TimeSpan_Hours(hours): - return _mscl.TimeSpan_Hours(hours) - -def TimeSpan_Days(days): - return _mscl.TimeSpan_Days(days) - -class Version(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Version_swiginit(self, _mscl.new_Version(*args)) - - def __eq__(self, cmp): - return _mscl.Version___eq__(self, cmp) - - def __ne__(self, cmp): - return _mscl.Version___ne__(self, cmp) - - def __lt__(self, cmp): - return _mscl.Version___lt__(self, cmp) - - def __le__(self, cmp): - return _mscl.Version___le__(self, cmp) - - def __gt__(self, cmp): - return _mscl.Version___gt__(self, cmp) - - def __ge__(self, cmp): - return _mscl.Version___ge__(self, cmp) - - def __str__(self): - return _mscl.Version___str__(self) - - def fromString(self, strVersion): - return _mscl.Version_fromString(self, strVersion) - - def majorPart(self): - return _mscl.Version_majorPart(self) - - def minorPart(self): - return _mscl.Version_minorPart(self) - - def patchPart(self): - return _mscl.Version_patchPart(self) - __swig_destroy__ = _mscl.delete_Version - -# Register Version in _mscl: -_mscl.Version_swigregister(Version) - -class DeviceInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.DeviceInfo_connectionType_serial - connectionType_tcp = _mscl.DeviceInfo_connectionType_tcp - - def __init__(self, *args): - _mscl.DeviceInfo_swiginit(self, _mscl.new_DeviceInfo(*args)) - - def description(self): - return _mscl.DeviceInfo_description(self) - - def serial(self): - return _mscl.DeviceInfo_serial(self) - - def baudRate(self): - return _mscl.DeviceInfo_baudRate(self) - - def connectionType(self): - return _mscl.DeviceInfo_connectionType(self) - __swig_destroy__ = _mscl.delete_DeviceInfo - -# Register DeviceInfo in _mscl: -_mscl.DeviceInfo_swigregister(DeviceInfo) -cvar = _mscl.cvar -MSCL_VERSION = cvar.MSCL_VERSION - -class Devices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def listBaseStations(): - return _mscl.Devices_listBaseStations() - - @staticmethod - def listInertialDevices(): - return _mscl.Devices_listInertialDevices() - - @staticmethod - def listPorts(): - return _mscl.Devices_listPorts() - __swig_destroy__ = _mscl.delete_Devices - -# Register Devices in _mscl: -_mscl.Devices_swigregister(Devices) - -def Devices_listBaseStations(): - return _mscl.Devices_listBaseStations() - -def Devices_listInertialDevices(): - return _mscl.Devices_listInertialDevices() - -def Devices_listPorts(): - return _mscl.Devices_listPorts() - -class ConnectionDebugData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ConnectionDebugData_swiginit(self, _mscl.new_ConnectionDebugData(*args)) - - def fromRead(self): - return _mscl.ConnectionDebugData_fromRead(self) - - def timestamp(self): - return _mscl.ConnectionDebugData_timestamp(self) - - def data(self): - return _mscl.ConnectionDebugData_data(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugData - -# Register ConnectionDebugData in _mscl: -_mscl.ConnectionDebugData_swigregister(ConnectionDebugData) - -class Connection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.Connection_connectionType_serial - connectionType_tcp = _mscl.Connection_connectionType_tcp - connectionType_webSocket = _mscl.Connection_connectionType_webSocket - connectionType_unixSocket = _mscl.Connection_connectionType_unixSocket - - def __init__(self): - _mscl.Connection_swiginit(self, _mscl.new_Connection()) - - @staticmethod - def Serial(*args): - return _mscl.Connection_Serial(*args) - - @staticmethod - def TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - - @staticmethod - def UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - - @staticmethod - def Mock(): - return _mscl.Connection_Mock() - - def description(self): - return _mscl.Connection_description(self) - - def port(self): - return _mscl.Connection_port(self) - - def type(self): - return _mscl.Connection_type(self) - - def disconnect(self): - return _mscl.Connection_disconnect(self) - - def reconnect(self): - return _mscl.Connection_reconnect(self) - - def write(self, bytes): - return _mscl.Connection_write(self, bytes) - - def writeStr(self, bytes): - return _mscl.Connection_writeStr(self, bytes) - - def clearBuffer(self): - return _mscl.Connection_clearBuffer(self) - - def byteReadPos(self): - return _mscl.Connection_byteReadPos(self) - - def byteAppendPos(self): - return _mscl.Connection_byteAppendPos(self) - - def rawByteMode(self, *args): - return _mscl.Connection_rawByteMode(self, *args) - - def getRawBytes(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytes(self, timeout, maxBytes, minBytes) - - def getRawBytesStr(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytesStr(self, timeout, maxBytes, minBytes) - - def getRawBytesWithPattern(self, pattern, timeout=0): - return _mscl.Connection_getRawBytesWithPattern(self, pattern, timeout) - - def debugMode(self, *args): - return _mscl.Connection_debugMode(self, *args) - - def getDebugData(self, timeout=0): - return _mscl.Connection_getDebugData(self, timeout) - - def updateBaudRate(self, baudRate): - return _mscl.Connection_updateBaudRate(self, baudRate) - __swig_destroy__ = _mscl.delete_Connection - -# Register Connection in _mscl: -_mscl.Connection_swigregister(Connection) - -def Connection_Serial(*args): - return _mscl.Connection_Serial(*args) - -def Connection_TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - -def Connection_UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - -def Connection_Mock(): - return _mscl.Connection_Mock() - -class WirelessTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - beacon_none = _mscl.WirelessTypes_beacon_none - beacon_internalTimer = _mscl.WirelessTypes_beacon_internalTimer - beacon_internalPPS = _mscl.WirelessTypes_beacon_internalPPS - beacon_externalPPS = _mscl.WirelessTypes_beacon_externalPPS - microcontroller_18F452 = _mscl.WirelessTypes_microcontroller_18F452 - microcontroller_18F4620 = _mscl.WirelessTypes_microcontroller_18F4620 - microcontroller_18F46K20 = _mscl.WirelessTypes_microcontroller_18F46K20 - microcontroller_18F67K90 = _mscl.WirelessTypes_microcontroller_18F67K90 - microcontroller_EFM32WG990F256 = _mscl.WirelessTypes_microcontroller_EFM32WG990F256 - microcontroller_EFR32FG1P132F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32FG1P132F256GM48 - microcontroller_EFR32MG1P232F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32MG1P232F256GM48 - collectionMethod_logOnly = _mscl.WirelessTypes_collectionMethod_logOnly - collectionMethod_transmitOnly = _mscl.WirelessTypes_collectionMethod_transmitOnly - collectionMethod_logAndTransmit = _mscl.WirelessTypes_collectionMethod_logAndTransmit - dataType_first = _mscl.WirelessTypes_dataType_first - dataType_uint16_shifted = _mscl.WirelessTypes_dataType_uint16_shifted - dataType_float32 = _mscl.WirelessTypes_dataType_float32 - dataType_uint16_12bitRes = _mscl.WirelessTypes_dataType_uint16_12bitRes - dataType_uint32 = _mscl.WirelessTypes_dataType_uint32 - dataType_uint16 = _mscl.WirelessTypes_dataType_uint16 - dataType_float32_noCals = _mscl.WirelessTypes_dataType_float32_noCals - dataType_uint24_18bitRes = _mscl.WirelessTypes_dataType_uint24_18bitRes - dataType_uint16_18bitTrunc = _mscl.WirelessTypes_dataType_uint16_18bitTrunc - dataType_int24_20bit = _mscl.WirelessTypes_dataType_int24_20bit - dataType_int16_20bitTrunc = _mscl.WirelessTypes_dataType_int16_20bitTrunc - dataType_uint24 = _mscl.WirelessTypes_dataType_uint24 - dataType_uint16_24bitTrunc = _mscl.WirelessTypes_dataType_uint16_24bitTrunc - dataType_int16_x10 = _mscl.WirelessTypes_dataType_int16_x10 - dataType_last = _mscl.WirelessTypes_dataType_last - dataFormat_raw_uint16 = _mscl.WirelessTypes_dataFormat_raw_uint16 - dataFormat_cal_float = _mscl.WirelessTypes_dataFormat_cal_float - dataFormat_raw_uint24 = _mscl.WirelessTypes_dataFormat_raw_uint24 - dataFormat_raw_int24 = _mscl.WirelessTypes_dataFormat_raw_int24 - dataFormat_raw_int16 = _mscl.WirelessTypes_dataFormat_raw_int16 - dataFormat_cal_int16_x10 = _mscl.WirelessTypes_dataFormat_cal_int16_x10 - syncMode_continuous = _mscl.WirelessTypes_syncMode_continuous - syncMode_burst = _mscl.WirelessTypes_syncMode_burst - samplingMode_sync = _mscl.WirelessTypes_samplingMode_sync - samplingMode_syncBurst = _mscl.WirelessTypes_samplingMode_syncBurst - samplingMode_nonSync = _mscl.WirelessTypes_samplingMode_nonSync - samplingMode_armedDatalog = _mscl.WirelessTypes_samplingMode_armedDatalog - samplingMode_syncEvent = _mscl.WirelessTypes_samplingMode_syncEvent - samplingMode_nonSyncEvent = _mscl.WirelessTypes_samplingMode_nonSyncEvent - defaultMode_idle = _mscl.WirelessTypes_defaultMode_idle - defaultMode_ldc = _mscl.WirelessTypes_defaultMode_ldc - defaultMode_datalog = _mscl.WirelessTypes_defaultMode_datalog - defaultMode_sleep = _mscl.WirelessTypes_defaultMode_sleep - defaultMode_sync = _mscl.WirelessTypes_defaultMode_sync - freq_unknown = _mscl.WirelessTypes_freq_unknown - freq_11 = _mscl.WirelessTypes_freq_11 - freq_12 = _mscl.WirelessTypes_freq_12 - freq_13 = _mscl.WirelessTypes_freq_13 - freq_14 = _mscl.WirelessTypes_freq_14 - freq_15 = _mscl.WirelessTypes_freq_15 - freq_16 = _mscl.WirelessTypes_freq_16 - freq_17 = _mscl.WirelessTypes_freq_17 - freq_18 = _mscl.WirelessTypes_freq_18 - freq_19 = _mscl.WirelessTypes_freq_19 - freq_20 = _mscl.WirelessTypes_freq_20 - freq_21 = _mscl.WirelessTypes_freq_21 - freq_22 = _mscl.WirelessTypes_freq_22 - freq_23 = _mscl.WirelessTypes_freq_23 - freq_24 = _mscl.WirelessTypes_freq_24 - freq_25 = _mscl.WirelessTypes_freq_25 - freq_26 = _mscl.WirelessTypes_freq_26 - power_20dBm = _mscl.WirelessTypes_power_20dBm - power_16dBm = _mscl.WirelessTypes_power_16dBm - power_15dBm = _mscl.WirelessTypes_power_15dBm - power_12dBm = _mscl.WirelessTypes_power_12dBm - power_11dBm = _mscl.WirelessTypes_power_11dBm - power_10dBm = _mscl.WirelessTypes_power_10dBm - power_5dBm = _mscl.WirelessTypes_power_5dBm - power_1dBm = _mscl.WirelessTypes_power_1dBm - power_0dBm = _mscl.WirelessTypes_power_0dBm - retransmission_off = _mscl.WirelessTypes_retransmission_off - retransmission_on = _mscl.WirelessTypes_retransmission_on - retransmission_disabled = _mscl.WirelessTypes_retransmission_disabled - trigger_userInit = _mscl.WirelessTypes_trigger_userInit - trigger_ceiling = _mscl.WirelessTypes_trigger_ceiling - trigger_floor = _mscl.WirelessTypes_trigger_floor - trigger_rampUp = _mscl.WirelessTypes_trigger_rampUp - trigger_rampDown = _mscl.WirelessTypes_trigger_rampDown - equation_none = _mscl.WirelessTypes_equation_none - equation_standard = _mscl.WirelessTypes_equation_standard - unit_none = _mscl.WirelessTypes_unit_none - unit_other_bits = _mscl.WirelessTypes_unit_other_bits - unit_strain_strain = _mscl.WirelessTypes_unit_strain_strain - unit_strain_microStrain = _mscl.WirelessTypes_unit_strain_microStrain - unit_accel_g = _mscl.WirelessTypes_unit_accel_g - unit_accel_mPerSec2 = _mscl.WirelessTypes_unit_accel_mPerSec2 - unit_volts_volts = _mscl.WirelessTypes_unit_volts_volts - unit_volts_millivolts = _mscl.WirelessTypes_unit_volts_millivolts - unit_volts_microvolts = _mscl.WirelessTypes_unit_volts_microvolts - unit_temp_celsius = _mscl.WirelessTypes_unit_temp_celsius - unit_temp_kelvin = _mscl.WirelessTypes_unit_temp_kelvin - unit_temp_fahrenheit = _mscl.WirelessTypes_unit_temp_fahrenheit - unit_displacement_meters = _mscl.WirelessTypes_unit_displacement_meters - unit_displacement_millimeters = _mscl.WirelessTypes_unit_displacement_millimeters - unit_displacement_micrometers = _mscl.WirelessTypes_unit_displacement_micrometers - unit_force_lbf = _mscl.WirelessTypes_unit_force_lbf - unit_force_newtons = _mscl.WirelessTypes_unit_force_newtons - unit_force_kiloNewtons = _mscl.WirelessTypes_unit_force_kiloNewtons - unit_mass_kilograms = _mscl.WirelessTypes_unit_mass_kilograms - unit_pressure_bar = _mscl.WirelessTypes_unit_pressure_bar - unit_pressure_psi = _mscl.WirelessTypes_unit_pressure_psi - unit_pressure_atm = _mscl.WirelessTypes_unit_pressure_atm - unit_pressure_mmHg = _mscl.WirelessTypes_unit_pressure_mmHg - unit_pressure_pascal = _mscl.WirelessTypes_unit_pressure_pascal - unit_pressure_megaPascal = _mscl.WirelessTypes_unit_pressure_megaPascal - unit_pressure_kiloPascal = _mscl.WirelessTypes_unit_pressure_kiloPascal - unit_angDisplacement_degrees = _mscl.WirelessTypes_unit_angDisplacement_degrees - unit_angVelocity_degreesPerSec = _mscl.WirelessTypes_unit_angVelocity_degreesPerSec - unit_angVelocity_radiansPerSec = _mscl.WirelessTypes_unit_angVelocity_radiansPerSec - unit_other_percent = _mscl.WirelessTypes_unit_other_percent - unit_freq_rpm = _mscl.WirelessTypes_unit_freq_rpm - unit_freq_hertz = _mscl.WirelessTypes_unit_freq_hertz - unit_rh_percentRh = _mscl.WirelessTypes_unit_rh_percentRh - unit_other_mVperV = _mscl.WirelessTypes_unit_other_mVperV - unit_accel_milliG = _mscl.WirelessTypes_unit_accel_milliG - unit_accel_ftPerSec2 = _mscl.WirelessTypes_unit_accel_ftPerSec2 - unit_other_percentLife = _mscl.WirelessTypes_unit_other_percentLife - unit_other_count = _mscl.WirelessTypes_unit_other_count - unit_displacement_feet = _mscl.WirelessTypes_unit_displacement_feet - unit_displacement_inches = _mscl.WirelessTypes_unit_displacement_inches - unit_displacement_yards = _mscl.WirelessTypes_unit_displacement_yards - unit_displacement_miles = _mscl.WirelessTypes_unit_displacement_miles - unit_displacement_nautMiles = _mscl.WirelessTypes_unit_displacement_nautMiles - unit_displacement_thouInch = _mscl.WirelessTypes_unit_displacement_thouInch - unit_displacement_hundInch = _mscl.WirelessTypes_unit_displacement_hundInch - unit_displacement_kilometers = _mscl.WirelessTypes_unit_displacement_kilometers - unit_displacement_centimeters = _mscl.WirelessTypes_unit_displacement_centimeters - unit_irradiance_wattsPerSqMeter = _mscl.WirelessTypes_unit_irradiance_wattsPerSqMeter - unit_par_microEinstein = _mscl.WirelessTypes_unit_par_microEinstein - unit_mass_pound = _mscl.WirelessTypes_unit_mass_pound - unit_power_watt = _mscl.WirelessTypes_unit_power_watt - unit_power_milliwatt = _mscl.WirelessTypes_unit_power_milliwatt - unit_power_horsepower = _mscl.WirelessTypes_unit_power_horsepower - unit_reactivePower_var = _mscl.WirelessTypes_unit_reactivePower_var - unit_energy_wattHour = _mscl.WirelessTypes_unit_energy_wattHour - unit_energy_kiloWattHour = _mscl.WirelessTypes_unit_energy_kiloWattHour - unit_reactiveEnergy_VARh = _mscl.WirelessTypes_unit_reactiveEnergy_VARh - unit_reactiveEnergy_kVARh = _mscl.WirelessTypes_unit_reactiveEnergy_kVARh - unit_current_ampere = _mscl.WirelessTypes_unit_current_ampere - unit_current_milliampere = _mscl.WirelessTypes_unit_current_milliampere - unit_current_microampere = _mscl.WirelessTypes_unit_current_microampere - unit_pressure_millibar = _mscl.WirelessTypes_unit_pressure_millibar - unit_pressure_inHg = _mscl.WirelessTypes_unit_pressure_inHg - unit_rssi_dBm = _mscl.WirelessTypes_unit_rssi_dBm - unit_freq_kiloHertz = _mscl.WirelessTypes_unit_freq_kiloHertz - unit_angDisplacement_radians = _mscl.WirelessTypes_unit_angDisplacement_radians - unit_velocity_metersPerSec = _mscl.WirelessTypes_unit_velocity_metersPerSec - unit_velocity_kilometersPerSec = _mscl.WirelessTypes_unit_velocity_kilometersPerSec - unit_velocity_kilometersPerHr = _mscl.WirelessTypes_unit_velocity_kilometersPerHr - unit_velocity_milesPerHr = _mscl.WirelessTypes_unit_velocity_milesPerHr - unit_velocity_knots = _mscl.WirelessTypes_unit_velocity_knots - unit_volume_cubicMeter = _mscl.WirelessTypes_unit_volume_cubicMeter - unit_volume_cubicFt = _mscl.WirelessTypes_unit_volume_cubicFt - unit_volume_liters = _mscl.WirelessTypes_unit_volume_liters - unit_volume_gallon = _mscl.WirelessTypes_unit_volume_gallon - unit_flowRate_cubicMetersPerSec = _mscl.WirelessTypes_unit_flowRate_cubicMetersPerSec - unit_flowRate_cubicFtPerSec = _mscl.WirelessTypes_unit_flowRate_cubicFtPerSec - unit_torque_newtonMeter = _mscl.WirelessTypes_unit_torque_newtonMeter - unit_torque_footPounds = _mscl.WirelessTypes_unit_torque_footPounds - unit_torque_inchPounds = _mscl.WirelessTypes_unit_torque_inchPounds - unit_time_secs = _mscl.WirelessTypes_unit_time_secs - unit_time_nanosecs = _mscl.WirelessTypes_unit_time_nanosecs - unit_time_microsecs = _mscl.WirelessTypes_unit_time_microsecs - unit_time_millisecs = _mscl.WirelessTypes_unit_time_millisecs - unit_time_minutes = _mscl.WirelessTypes_unit_time_minutes - unit_time_hours = _mscl.WirelessTypes_unit_time_hours - unit_time_days = _mscl.WirelessTypes_unit_time_days - unit_time_weeks = _mscl.WirelessTypes_unit_time_weeks - unit_other_value = _mscl.WirelessTypes_unit_other_value - unit_magneticFlux_gauss = _mscl.WirelessTypes_unit_magneticFlux_gauss - unit_other_gSec = _mscl.WirelessTypes_unit_other_gSec - unit_other_secsPerSec = _mscl.WirelessTypes_unit_other_secsPerSec - unit_rssi_dBHz = _mscl.WirelessTypes_unit_rssi_dBHz - unit_density_kgPerMeter3 = _mscl.WirelessTypes_unit_density_kgPerMeter3 - unit_other_unitless = _mscl.WirelessTypes_unit_other_unitless - unit_velocity_inchesPerSec = _mscl.WirelessTypes_unit_velocity_inchesPerSec - unit_force_kg = _mscl.WirelessTypes_unit_force_kg - unit_rawVoltage_volts = _mscl.WirelessTypes_unit_rawVoltage_volts - unit_rawVoltage_millivolts = _mscl.WirelessTypes_unit_rawVoltage_millivolts - unit_rawVoltage_microvolts = _mscl.WirelessTypes_unit_rawVoltage_microvolts - unit_resistance_ohm = _mscl.WirelessTypes_unit_resistance_ohm - unit_resistance_milliohm = _mscl.WirelessTypes_unit_resistance_milliohm - unit_resistance_kiloohm = _mscl.WirelessTypes_unit_resistance_kiloohm - unit_velocity_mmPerSec = _mscl.WirelessTypes_unit_velocity_mmPerSec - unit_mass_grams = _mscl.WirelessTypes_unit_mass_grams - unit_mass_ton = _mscl.WirelessTypes_unit_mass_ton - unit_mass_tonne = _mscl.WirelessTypes_unit_mass_tonne - chType_none = _mscl.WirelessTypes_chType_none - chType_fullDifferential = _mscl.WirelessTypes_chType_fullDifferential - chType_singleEnded = _mscl.WirelessTypes_chType_singleEnded - chType_battery = _mscl.WirelessTypes_chType_battery - chType_temperature = _mscl.WirelessTypes_chType_temperature - chType_rh = _mscl.WirelessTypes_chType_rh - chType_acceleration = _mscl.WirelessTypes_chType_acceleration - chType_displacement = _mscl.WirelessTypes_chType_displacement - chType_voltage = _mscl.WirelessTypes_chType_voltage - chType_diffTemperature = _mscl.WirelessTypes_chType_diffTemperature - chType_digital = _mscl.WirelessTypes_chType_digital - chType_tilt = _mscl.WirelessTypes_chType_tilt - voltageType_singleEnded = _mscl.WirelessTypes_voltageType_singleEnded - voltageType_differential = _mscl.WirelessTypes_voltageType_differential - settling_4ms = _mscl.WirelessTypes_settling_4ms - settling_8ms = _mscl.WirelessTypes_settling_8ms - settling_16ms = _mscl.WirelessTypes_settling_16ms - settling_32ms = _mscl.WirelessTypes_settling_32ms - settling_40ms = _mscl.WirelessTypes_settling_40ms - settling_48ms = _mscl.WirelessTypes_settling_48ms - settling_60ms = _mscl.WirelessTypes_settling_60ms - settling_101ms_90db = _mscl.WirelessTypes_settling_101ms_90db - settling_120ms_80db = _mscl.WirelessTypes_settling_120ms_80db - settling_120ms_65db = _mscl.WirelessTypes_settling_120ms_65db - settling_160ms_69db = _mscl.WirelessTypes_settling_160ms_69db - settling_200ms = _mscl.WirelessTypes_settling_200ms - transducer_thermocouple = _mscl.WirelessTypes_transducer_thermocouple - transducer_rtd = _mscl.WirelessTypes_transducer_rtd - transducer_thermistor = _mscl.WirelessTypes_transducer_thermistor - tc_uncompensated = _mscl.WirelessTypes_tc_uncompensated - tc_K = _mscl.WirelessTypes_tc_K - tc_J = _mscl.WirelessTypes_tc_J - tc_R = _mscl.WirelessTypes_tc_R - tc_S = _mscl.WirelessTypes_tc_S - tc_T = _mscl.WirelessTypes_tc_T - tc_E = _mscl.WirelessTypes_tc_E - tc_B = _mscl.WirelessTypes_tc_B - tc_N = _mscl.WirelessTypes_tc_N - tc_customPolynomial = _mscl.WirelessTypes_tc_customPolynomial - rtd_uncompensated = _mscl.WirelessTypes_rtd_uncompensated - rtd_pt10 = _mscl.WirelessTypes_rtd_pt10 - rtd_pt50 = _mscl.WirelessTypes_rtd_pt50 - rtd_pt100 = _mscl.WirelessTypes_rtd_pt100 - rtd_pt200 = _mscl.WirelessTypes_rtd_pt200 - rtd_pt500 = _mscl.WirelessTypes_rtd_pt500 - rtd_pt1000 = _mscl.WirelessTypes_rtd_pt1000 - rtd_2wire = _mscl.WirelessTypes_rtd_2wire - rtd_3wire = _mscl.WirelessTypes_rtd_3wire - rtd_4wire = _mscl.WirelessTypes_rtd_4wire - thermistor_uncompensated = _mscl.WirelessTypes_thermistor_uncompensated - thermistor_44004_44033 = _mscl.WirelessTypes_thermistor_44004_44033 - thermistor_44005_44030 = _mscl.WirelessTypes_thermistor_44005_44030 - thermistor_44007_44034 = _mscl.WirelessTypes_thermistor_44007_44034 - thermistor_44006_44031 = _mscl.WirelessTypes_thermistor_44006_44031 - thermistor_44008_44032 = _mscl.WirelessTypes_thermistor_44008_44032 - thermistor_ysi_400 = _mscl.WirelessTypes_thermistor_ysi_400 - sampleRate_104170Hz = _mscl.WirelessTypes_sampleRate_104170Hz - sampleRate_78125Hz = _mscl.WirelessTypes_sampleRate_78125Hz - sampleRate_62500Hz = _mscl.WirelessTypes_sampleRate_62500Hz - sampleRate_25000Hz = _mscl.WirelessTypes_sampleRate_25000Hz - sampleRate_12500Hz = _mscl.WirelessTypes_sampleRate_12500Hz - sampleRate_3200Hz = _mscl.WirelessTypes_sampleRate_3200Hz - sampleRate_1600Hz = _mscl.WirelessTypes_sampleRate_1600Hz - sampleRate_800Hz = _mscl.WirelessTypes_sampleRate_800Hz - sampleRate_300Hz = _mscl.WirelessTypes_sampleRate_300Hz - sampleRate_1kHz = _mscl.WirelessTypes_sampleRate_1kHz - sampleRate_2kHz = _mscl.WirelessTypes_sampleRate_2kHz - sampleRate_3kHz = _mscl.WirelessTypes_sampleRate_3kHz - sampleRate_4kHz = _mscl.WirelessTypes_sampleRate_4kHz - sampleRate_5kHz = _mscl.WirelessTypes_sampleRate_5kHz - sampleRate_6kHz = _mscl.WirelessTypes_sampleRate_6kHz - sampleRate_7kHz = _mscl.WirelessTypes_sampleRate_7kHz - sampleRate_8kHz = _mscl.WirelessTypes_sampleRate_8kHz - sampleRate_9kHz = _mscl.WirelessTypes_sampleRate_9kHz - sampleRate_10kHz = _mscl.WirelessTypes_sampleRate_10kHz - sampleRate_20kHz = _mscl.WirelessTypes_sampleRate_20kHz - sampleRate_30kHz = _mscl.WirelessTypes_sampleRate_30kHz - sampleRate_40kHz = _mscl.WirelessTypes_sampleRate_40kHz - sampleRate_50kHz = _mscl.WirelessTypes_sampleRate_50kHz - sampleRate_60kHz = _mscl.WirelessTypes_sampleRate_60kHz - sampleRate_70kHz = _mscl.WirelessTypes_sampleRate_70kHz - sampleRate_80kHz = _mscl.WirelessTypes_sampleRate_80kHz - sampleRate_90kHz = _mscl.WirelessTypes_sampleRate_90kHz - sampleRate_100kHz = _mscl.WirelessTypes_sampleRate_100kHz - sampleRate_887Hz = _mscl.WirelessTypes_sampleRate_887Hz - sampleRate_8192Hz = _mscl.WirelessTypes_sampleRate_8192Hz - sampleRate_4096Hz = _mscl.WirelessTypes_sampleRate_4096Hz - sampleRate_2048Hz = _mscl.WirelessTypes_sampleRate_2048Hz - sampleRate_1024Hz = _mscl.WirelessTypes_sampleRate_1024Hz - sampleRate_512Hz = _mscl.WirelessTypes_sampleRate_512Hz - sampleRate_256Hz = _mscl.WirelessTypes_sampleRate_256Hz - sampleRate_128Hz = _mscl.WirelessTypes_sampleRate_128Hz - sampleRate_64Hz = _mscl.WirelessTypes_sampleRate_64Hz - sampleRate_32Hz = _mscl.WirelessTypes_sampleRate_32Hz - sampleRate_16Hz = _mscl.WirelessTypes_sampleRate_16Hz - sampleRate_8Hz = _mscl.WirelessTypes_sampleRate_8Hz - sampleRate_4Hz = _mscl.WirelessTypes_sampleRate_4Hz - sampleRate_2Hz = _mscl.WirelessTypes_sampleRate_2Hz - sampleRate_1Hz = _mscl.WirelessTypes_sampleRate_1Hz - sampleRate_2Sec = _mscl.WirelessTypes_sampleRate_2Sec - sampleRate_5Sec = _mscl.WirelessTypes_sampleRate_5Sec - sampleRate_10Sec = _mscl.WirelessTypes_sampleRate_10Sec - sampleRate_30Sec = _mscl.WirelessTypes_sampleRate_30Sec - sampleRate_1Min = _mscl.WirelessTypes_sampleRate_1Min - sampleRate_2Min = _mscl.WirelessTypes_sampleRate_2Min - sampleRate_5Min = _mscl.WirelessTypes_sampleRate_5Min - sampleRate_10Min = _mscl.WirelessTypes_sampleRate_10Min - sampleRate_30Min = _mscl.WirelessTypes_sampleRate_30Min - sampleRate_60Min = _mscl.WirelessTypes_sampleRate_60Min - sampleRate_24Hours = _mscl.WirelessTypes_sampleRate_24Hours - region_usa = _mscl.WirelessTypes_region_usa - region_europeanUnion = _mscl.WirelessTypes_region_europeanUnion - region_japan = _mscl.WirelessTypes_region_japan - region_other = _mscl.WirelessTypes_region_other - region_brazil = _mscl.WirelessTypes_region_brazil - region_china = _mscl.WirelessTypes_region_china - region_australia_newzealand = _mscl.WirelessTypes_region_australia_newzealand - region_singapore = _mscl.WirelessTypes_region_singapore - region_canada = _mscl.WirelessTypes_region_canada - region_southAfrica = _mscl.WirelessTypes_region_southAfrica - region_indonesia = _mscl.WirelessTypes_region_indonesia - region_taiwan = _mscl.WirelessTypes_region_taiwan - chSetting_inputRange = _mscl.WirelessTypes_chSetting_inputRange - chSetting_filterSettlingTime = _mscl.WirelessTypes_chSetting_filterSettlingTime - chSetting_thermocoupleType = _mscl.WirelessTypes_chSetting_thermocoupleType - chSetting_linearEquation = _mscl.WirelessTypes_chSetting_linearEquation - chSetting_unit = _mscl.WirelessTypes_chSetting_unit - chSetting_equationType = _mscl.WirelessTypes_chSetting_equationType - chSetting_hardwareOffset = _mscl.WirelessTypes_chSetting_hardwareOffset - chSetting_autoBalance = _mscl.WirelessTypes_chSetting_autoBalance - chSetting_gaugeFactor = _mscl.WirelessTypes_chSetting_gaugeFactor - chSetting_antiAliasingFilter = _mscl.WirelessTypes_chSetting_antiAliasingFilter - chSetting_legacyShuntCal = _mscl.WirelessTypes_chSetting_legacyShuntCal - chSetting_autoShuntCal = _mscl.WirelessTypes_chSetting_autoShuntCal - chSetting_lowPassFilter = _mscl.WirelessTypes_chSetting_lowPassFilter - chSetting_highPassFilter = _mscl.WirelessTypes_chSetting_highPassFilter - chSetting_tempSensorOptions = _mscl.WirelessTypes_chSetting_tempSensorOptions - chSetting_debounceFilter = _mscl.WirelessTypes_chSetting_debounceFilter - chSetting_pullUpResistor = _mscl.WirelessTypes_chSetting_pullUpResistor - chSetting_factoryLinearEq = _mscl.WirelessTypes_chSetting_factoryLinearEq - chSetting_factoryUnit = _mscl.WirelessTypes_chSetting_factoryUnit - chSetting_factoryEqType = _mscl.WirelessTypes_chSetting_factoryEqType - autobalance_success = _mscl.WirelessTypes_autobalance_success - autobalance_maybeInvalid = _mscl.WirelessTypes_autobalance_maybeInvalid - autobalance_notSupportedByNode = _mscl.WirelessTypes_autobalance_notSupportedByNode - autobalance_notSupportedByCh = _mscl.WirelessTypes_autobalance_notSupportedByCh - autobalance_targetOutOfRange = _mscl.WirelessTypes_autobalance_targetOutOfRange - autobalance_failed = _mscl.WirelessTypes_autobalance_failed - autobalance_legacyNone = _mscl.WirelessTypes_autobalance_legacyNone - autobalance_notComplete = _mscl.WirelessTypes_autobalance_notComplete - autocal_success = _mscl.WirelessTypes_autocal_success - autocal_maybeInvalid_applied = _mscl.WirelessTypes_autocal_maybeInvalid_applied - autocal_maybeInvalid_notApplied = _mscl.WirelessTypes_autocal_maybeInvalid_notApplied - autocal_notComplete = _mscl.WirelessTypes_autocal_notComplete - autocalError_none = _mscl.WirelessTypes_autocalError_none - autocalError_sensorDetached = _mscl.WirelessTypes_autocalError_sensorDetached - autocalError_sensorShorted = _mscl.WirelessTypes_autocalError_sensorShorted - autocalError_unsupportedChannel = _mscl.WirelessTypes_autocalError_unsupportedChannel - autocalError_baseHighRail = _mscl.WirelessTypes_autocalError_baseHighRail - autocalError_baseLowRail = _mscl.WirelessTypes_autocalError_baseLowRail - autocalError_shuntHighRail = _mscl.WirelessTypes_autocalError_shuntHighRail - autocalError_shuntLowRail = _mscl.WirelessTypes_autocalError_shuntLowRail - autocalError_ramp = _mscl.WirelessTypes_autocalError_ramp - autocalError_noShunt = _mscl.WirelessTypes_autocalError_noShunt - autocalError_timeout = _mscl.WirelessTypes_autocalError_timeout - fatigueMode_angleStrain = _mscl.WirelessTypes_fatigueMode_angleStrain - fatigueMode_distributedAngle = _mscl.WirelessTypes_fatigueMode_distributedAngle - fatigueMode_rawGaugeStrain = _mscl.WirelessTypes_fatigueMode_rawGaugeStrain - eventTrigger_ceiling = _mscl.WirelessTypes_eventTrigger_ceiling - eventTrigger_floor = _mscl.WirelessTypes_eventTrigger_floor - filter_33000hz = _mscl.WirelessTypes_filter_33000hz - filter_20000hz = _mscl.WirelessTypes_filter_20000hz - filter_10000hz = _mscl.WirelessTypes_filter_10000hz - filter_5222hz = _mscl.WirelessTypes_filter_5222hz - filter_5000hz = _mscl.WirelessTypes_filter_5000hz - filter_4416hz = _mscl.WirelessTypes_filter_4416hz - filter_4096hz = _mscl.WirelessTypes_filter_4096hz - filter_4000hz = _mscl.WirelessTypes_filter_4000hz - filter_2208hz = _mscl.WirelessTypes_filter_2208hz - filter_2048hz = _mscl.WirelessTypes_filter_2048hz - filter_2000hz = _mscl.WirelessTypes_filter_2000hz - filter_1104hz = _mscl.WirelessTypes_filter_1104hz - filter_1024hz = _mscl.WirelessTypes_filter_1024hz - filter_1000hz = _mscl.WirelessTypes_filter_1000hz - filter_800hz = _mscl.WirelessTypes_filter_800hz - filter_552hz = _mscl.WirelessTypes_filter_552hz - filter_512hz = _mscl.WirelessTypes_filter_512hz - filter_500hz = _mscl.WirelessTypes_filter_500hz - filter_418hz = _mscl.WirelessTypes_filter_418hz - filter_294hz = _mscl.WirelessTypes_filter_294hz - filter_256hz = _mscl.WirelessTypes_filter_256hz - filter_250hz = _mscl.WirelessTypes_filter_250hz - filter_209hz = _mscl.WirelessTypes_filter_209hz - filter_200hz = _mscl.WirelessTypes_filter_200hz - filter_147hz = _mscl.WirelessTypes_filter_147hz - filter_128hz = _mscl.WirelessTypes_filter_128hz - filter_125hz = _mscl.WirelessTypes_filter_125hz - filter_104hz = _mscl.WirelessTypes_filter_104hz - filter_100hz = _mscl.WirelessTypes_filter_100hz - filter_62hz = _mscl.WirelessTypes_filter_62hz - filter_52hz = _mscl.WirelessTypes_filter_52hz - filter_50hz = _mscl.WirelessTypes_filter_50hz - filter_31hz = _mscl.WirelessTypes_filter_31hz - filter_26hz = _mscl.WirelessTypes_filter_26hz - filter_12_66hz = _mscl.WirelessTypes_filter_12_66hz - filter_2_6hz = _mscl.WirelessTypes_filter_2_6hz - highPass_off = _mscl.WirelessTypes_highPass_off - highPass_auto = _mscl.WirelessTypes_highPass_auto - cfc_10 = _mscl.WirelessTypes_cfc_10 - cfc_21 = _mscl.WirelessTypes_cfc_21 - cfc_60 = _mscl.WirelessTypes_cfc_60 - storageLimit_overwrite = _mscl.WirelessTypes_storageLimit_overwrite - storageLimit_stop = _mscl.WirelessTypes_storageLimit_stop - range_14_545mV = _mscl.WirelessTypes_range_14_545mV - range_10_236mV = _mscl.WirelessTypes_range_10_236mV - range_7_608mV = _mscl.WirelessTypes_range_7_608mV - range_4_046mV = _mscl.WirelessTypes_range_4_046mV - range_2_008mV = _mscl.WirelessTypes_range_2_008mV - range_1_511mV = _mscl.WirelessTypes_range_1_511mV - range_1_001mV = _mscl.WirelessTypes_range_1_001mV - range_0_812mV = _mscl.WirelessTypes_range_0_812mV - range_75mV = _mscl.WirelessTypes_range_75mV - range_37_5mV = _mscl.WirelessTypes_range_37_5mV - range_18_75mV = _mscl.WirelessTypes_range_18_75mV - range_9_38mV = _mscl.WirelessTypes_range_9_38mV - range_4_69mV = _mscl.WirelessTypes_range_4_69mV - range_2_34mV = _mscl.WirelessTypes_range_2_34mV - range_1_17mV = _mscl.WirelessTypes_range_1_17mV - range_0_586mV = _mscl.WirelessTypes_range_0_586mV - range_70mV = _mscl.WirelessTypes_range_70mV - range_35mV = _mscl.WirelessTypes_range_35mV - range_17_5mV = _mscl.WirelessTypes_range_17_5mV - range_8_75mV = _mscl.WirelessTypes_range_8_75mV - range_4_38mV = _mscl.WirelessTypes_range_4_38mV - range_2_19mV = _mscl.WirelessTypes_range_2_19mV - range_1_09mV = _mscl.WirelessTypes_range_1_09mV - range_0_547mV = _mscl.WirelessTypes_range_0_547mV - range_44mV = _mscl.WirelessTypes_range_44mV - range_30mV = _mscl.WirelessTypes_range_30mV - range_20mV = _mscl.WirelessTypes_range_20mV - range_15mV = _mscl.WirelessTypes_range_15mV - range_10mV = _mscl.WirelessTypes_range_10mV - range_5mV = _mscl.WirelessTypes_range_5mV - range_3mV = _mscl.WirelessTypes_range_3mV - range_2mV = _mscl.WirelessTypes_range_2mV - range_6mV = _mscl.WirelessTypes_range_6mV - range_1mV = _mscl.WirelessTypes_range_1mV - range_50mV = _mscl.WirelessTypes_range_50mV - range_2_5mV = _mscl.WirelessTypes_range_2_5mV - range_0_6mV = _mscl.WirelessTypes_range_0_6mV - range_0_35mV = _mscl.WirelessTypes_range_0_35mV - range_0_1mV = _mscl.WirelessTypes_range_0_1mV - range_156mV = _mscl.WirelessTypes_range_156mV - range_78_1mV = _mscl.WirelessTypes_range_78_1mV - range_39mV = _mscl.WirelessTypes_range_39mV - range_19_5mV = _mscl.WirelessTypes_range_19_5mV - range_9_76mV = _mscl.WirelessTypes_range_9_76mV - range_4_88mV = _mscl.WirelessTypes_range_4_88mV - range_2_44mV = _mscl.WirelessTypes_range_2_44mV - range_1_22mV = _mscl.WirelessTypes_range_1_22mV - range_10_24V = _mscl.WirelessTypes_range_10_24V - range_5_12V = _mscl.WirelessTypes_range_5_12V - range_2_56V = _mscl.WirelessTypes_range_2_56V - range_0to10_24V = _mscl.WirelessTypes_range_0to10_24V - range_0to5_12V = _mscl.WirelessTypes_range_0to5_12V - range_1_147V = _mscl.WirelessTypes_range_1_147V - range_585mV = _mscl.WirelessTypes_range_585mV - range_292_5mV = _mscl.WirelessTypes_range_292_5mV - range_146_25mV = _mscl.WirelessTypes_range_146_25mV - range_73_13mV = _mscl.WirelessTypes_range_73_13mV - range_36_56mV = _mscl.WirelessTypes_range_36_56mV - range_18_23mV = _mscl.WirelessTypes_range_18_23mV - range_9_14mV = _mscl.WirelessTypes_range_9_14mV - range_5_74V = _mscl.WirelessTypes_range_5_74V - range_2_93V = _mscl.WirelessTypes_range_2_93V - range_1_46V = _mscl.WirelessTypes_range_1_46V - range_731_3mV = _mscl.WirelessTypes_range_731_3mV - range_365_6mV = _mscl.WirelessTypes_range_365_6mV - range_182_8mV = _mscl.WirelessTypes_range_182_8mV - range_91_4mV = _mscl.WirelessTypes_range_91_4mV - range_45_7mV = _mscl.WirelessTypes_range_45_7mV - range_62_5mV = _mscl.WirelessTypes_range_62_5mV - range_31_25mV = _mscl.WirelessTypes_range_31_25mV - range_15_63mV = _mscl.WirelessTypes_range_15_63mV - range_7_81mV = _mscl.WirelessTypes_range_7_81mV - range_3_91mV = _mscl.WirelessTypes_range_3_91mV - range_1_95mV = _mscl.WirelessTypes_range_1_95mV - range_0_976mV = _mscl.WirelessTypes_range_0_976mV - range_0_488mV = _mscl.WirelessTypes_range_0_488mV - range_2G = _mscl.WirelessTypes_range_2G - range_4G = _mscl.WirelessTypes_range_4G - range_8G = _mscl.WirelessTypes_range_8G - range_10G = _mscl.WirelessTypes_range_10G - range_20G = _mscl.WirelessTypes_range_20G - range_40G = _mscl.WirelessTypes_range_40G - range_2_5V = _mscl.WirelessTypes_range_2_5V - range_1_25V = _mscl.WirelessTypes_range_1_25V - range_625mV = _mscl.WirelessTypes_range_625mV - range_312_5mV = _mscl.WirelessTypes_range_312_5mV - range_156_25mV = _mscl.WirelessTypes_range_156_25mV - range_78_125mV = _mscl.WirelessTypes_range_78_125mV - range_39_063mV = _mscl.WirelessTypes_range_39_063mV - range_19_532mV = _mscl.WirelessTypes_range_19_532mV - range_0to2_5V = _mscl.WirelessTypes_range_0to2_5V - range_0to1_25V = _mscl.WirelessTypes_range_0to1_25V - range_0to625mV = _mscl.WirelessTypes_range_0to625mV - range_0to312_5mV = _mscl.WirelessTypes_range_0to312_5mV - range_0to156_25mV = _mscl.WirelessTypes_range_0to156_25mV - range_0to78_125mV = _mscl.WirelessTypes_range_0to78_125mV - range_0to39_063mV = _mscl.WirelessTypes_range_0to39_063mV - range_0to19_532mV = _mscl.WirelessTypes_range_0to19_532mV - range_9_766mV = _mscl.WirelessTypes_range_9_766mV - range_1_35V_or_0to1000000ohm = _mscl.WirelessTypes_range_1_35V_or_0to1000000ohm - range_1_25V_or_0to10000ohm = _mscl.WirelessTypes_range_1_25V_or_0to10000ohm - range_625mV_or_0to3333_3ohm = _mscl.WirelessTypes_range_625mV_or_0to3333_3ohm - range_312_5mV_or_0to1428_6ohm = _mscl.WirelessTypes_range_312_5mV_or_0to1428_6ohm - range_156_25mV_or_0to666_67ohm = _mscl.WirelessTypes_range_156_25mV_or_0to666_67ohm - range_78_125mV_or_0to322_58ohm = _mscl.WirelessTypes_range_78_125mV_or_0to322_58ohm - range_39_0625mV_or_0to158_73ohm = _mscl.WirelessTypes_range_39_0625mV_or_0to158_73ohm - range_19_5313mV_or_0to78_74ohm = _mscl.WirelessTypes_range_19_5313mV_or_0to78_74ohm - range_750mV = _mscl.WirelessTypes_range_750mV - range_375mV = _mscl.WirelessTypes_range_375mV - range_187_5mV = _mscl.WirelessTypes_range_187_5mV - range_93_75mV = _mscl.WirelessTypes_range_93_75mV - range_46_875mV = _mscl.WirelessTypes_range_46_875mV - range_23_438mV = _mscl.WirelessTypes_range_23_438mV - range_11_719mV = _mscl.WirelessTypes_range_11_719mV - range_5_859mV = _mscl.WirelessTypes_range_5_859mV - range_0to1_5V = _mscl.WirelessTypes_range_0to1_5V - range_0to750mV = _mscl.WirelessTypes_range_0to750mV - range_0to375mV = _mscl.WirelessTypes_range_0to375mV - range_0to187_5mV = _mscl.WirelessTypes_range_0to187_5mV - range_0to93_75mV = _mscl.WirelessTypes_range_0to93_75mV - range_0to46_875mV = _mscl.WirelessTypes_range_0to46_875mV - range_0to23_438mV = _mscl.WirelessTypes_range_0to23_438mV - range_0to11_719mV = _mscl.WirelessTypes_range_0to11_719mV - range_1_5V = _mscl.WirelessTypes_range_1_5V - range_1_35V = _mscl.WirelessTypes_range_1_35V - range_0to1000000ohm = _mscl.WirelessTypes_range_0to1000000ohm - range_0to10000ohm = _mscl.WirelessTypes_range_0to10000ohm - range_0to3333_3ohm = _mscl.WirelessTypes_range_0to3333_3ohm - range_0to1428_6ohm = _mscl.WirelessTypes_range_0to1428_6ohm - range_0to666_67ohm = _mscl.WirelessTypes_range_0to666_67ohm - range_0to322_58ohm = _mscl.WirelessTypes_range_0to322_58ohm - range_0to158_73ohm = _mscl.WirelessTypes_range_0to158_73ohm - range_0to78_74ohm = _mscl.WirelessTypes_range_0to78_74ohm - range_39_0625mV = _mscl.WirelessTypes_range_39_0625mV - range_19_5313mV = _mscl.WirelessTypes_range_19_5313mV - range_125mV = _mscl.WirelessTypes_range_125mV - range_invalid = _mscl.WirelessTypes_range_invalid - dataMode_none = _mscl.WirelessTypes_dataMode_none - dataMode_raw = _mscl.WirelessTypes_dataMode_raw - dataMode_derived = _mscl.WirelessTypes_dataMode_derived - dataMode_raw_derived = _mscl.WirelessTypes_dataMode_raw_derived - derivedCategory_rms = _mscl.WirelessTypes_derivedCategory_rms - derivedCategory_peakToPeak = _mscl.WirelessTypes_derivedCategory_peakToPeak - derivedCategory_velocity = _mscl.WirelessTypes_derivedCategory_velocity - derivedCategory_crestFactor = _mscl.WirelessTypes_derivedCategory_crestFactor - derivedCategory_mean = _mscl.WirelessTypes_derivedCategory_mean - derivedAlgId_rms = _mscl.WirelessTypes_derivedAlgId_rms - derivedAlgId_peakToPeak = _mscl.WirelessTypes_derivedAlgId_peakToPeak - derivedAlgId_ips = _mscl.WirelessTypes_derivedAlgId_ips - derivedAlgId_crestFactor = _mscl.WirelessTypes_derivedAlgId_crestFactor - derivedAlgId_mean = _mscl.WirelessTypes_derivedAlgId_mean - derivedAlgId_mmps = _mscl.WirelessTypes_derivedAlgId_mmps - derivedVelocity_ips = _mscl.WirelessTypes_derivedVelocity_ips - derivedVelocity_mmps = _mscl.WirelessTypes_derivedVelocity_mmps - commProtocol_lxrs = _mscl.WirelessTypes_commProtocol_lxrs - commProtocol_lxrsPlus = _mscl.WirelessTypes_commProtocol_lxrsPlus - voltage_5120mV = _mscl.WirelessTypes_voltage_5120mV - voltage_5000mV = _mscl.WirelessTypes_voltage_5000mV - voltage_4096mV = _mscl.WirelessTypes_voltage_4096mV - voltage_3000mV = _mscl.WirelessTypes_voltage_3000mV - voltage_2800mV = _mscl.WirelessTypes_voltage_2800mV - voltage_2750mV = _mscl.WirelessTypes_voltage_2750mV - voltage_2700mV = _mscl.WirelessTypes_voltage_2700mV - voltage_2500mV = _mscl.WirelessTypes_voltage_2500mV - voltage_1500mV = _mscl.WirelessTypes_voltage_1500mV - sensorOutputMode_accel = _mscl.WirelessTypes_sensorOutputMode_accel - sensorOutputMode_tilt = _mscl.WirelessTypes_sensorOutputMode_tilt - batteryStatus_good = _mscl.WirelessTypes_batteryStatus_good - batteryStatus_low = _mscl.WirelessTypes_batteryStatus_low - batteryStatus_critical = _mscl.WirelessTypes_batteryStatus_critical - externalPower_notConnected = _mscl.WirelessTypes_externalPower_notConnected - externalPower_connected = _mscl.WirelessTypes_externalPower_connected - delayVersion_v1 = _mscl.WirelessTypes_delayVersion_v1 - delayVersion_v2 = _mscl.WirelessTypes_delayVersion_v2 - delayVersion_v3 = _mscl.WirelessTypes_delayVersion_v3 - delayVersion_v4 = _mscl.WirelessTypes_delayVersion_v4 - UNKNOWN_RSSI = _mscl.WirelessTypes_UNKNOWN_RSSI - - def __init__(self): - _mscl.WirelessTypes_swiginit(self, _mscl.new_WirelessTypes()) - __swig_destroy__ = _mscl.delete_WirelessTypes - -# Register WirelessTypes in _mscl: -_mscl.WirelessTypes_swigregister(WirelessTypes) - -class SampleRate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - rateType_seconds = _mscl.SampleRate_rateType_seconds - rateType_hertz = _mscl.SampleRate_rateType_hertz - rateType_event = _mscl.SampleRate_rateType_event - rateType_decimation = _mscl.SampleRate_rateType_decimation - - def __init__(self, *args): - _mscl.SampleRate_swiginit(self, _mscl.new_SampleRate(*args)) - - def __str__(self): - return _mscl.SampleRate___str__(self) - - def prettyStr(self): - return _mscl.SampleRate_prettyStr(self) - - def samplePeriod(self): - return _mscl.SampleRate_samplePeriod(self) - - def samplesPerSecond(self): - return _mscl.SampleRate_samplesPerSecond(self) - - def rateType(self): - return _mscl.SampleRate_rateType(self) - - def samples(self): - return _mscl.SampleRate_samples(self) - - def toWirelessSampleRate(self): - return _mscl.SampleRate_toWirelessSampleRate(self) - - def toDecimation(self, sampleRateBase): - return _mscl.SampleRate_toDecimation(self, sampleRateBase) - - @staticmethod - def Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - - @staticmethod - def KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - - @staticmethod - def Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - - @staticmethod - def Event(): - return _mscl.SampleRate_Event() - - @staticmethod - def Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - - @staticmethod - def FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - - @staticmethod - def FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - __swig_destroy__ = _mscl.delete_SampleRate - -# Register SampleRate in _mscl: -_mscl.SampleRate_swigregister(SampleRate) - -def SampleRate_Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - -def SampleRate_KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - -def SampleRate_Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - -def SampleRate_Event(): - return _mscl.SampleRate_Event() - -def SampleRate_Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - -def SampleRate_FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - -def SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - -class Matrix(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Matrix_swiginit(self, _mscl.new_Matrix()) - - def valuesType(self): - return _mscl.Matrix_valuesType(self) - - def rows(self): - return _mscl.Matrix_rows(self) - - def columns(self): - return _mscl.Matrix_columns(self) - - def as_doubleAt(self, row, column): - return _mscl.Matrix_as_doubleAt(self, row, column) - - def as_floatAt(self, row, column): - return _mscl.Matrix_as_floatAt(self, row, column) - - def as_uint16At(self, row, column): - return _mscl.Matrix_as_uint16At(self, row, column) - - def as_uint8At(self, row, column): - return _mscl.Matrix_as_uint8At(self, row, column) - - def __str__(self): - return _mscl.Matrix___str__(self) - __swig_destroy__ = _mscl.delete_Matrix - -# Register Matrix in _mscl: -_mscl.Matrix_swigregister(Matrix) - -class Vector(Matrix): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Vector_swiginit(self, _mscl.new_Vector()) - - def size(self): - return _mscl.Vector_size(self) - - def as_doubleAt(self, index): - return _mscl.Vector_as_doubleAt(self, index) - - def as_floatAt(self, index): - return _mscl.Vector_as_floatAt(self, index) - - def as_uint16At(self, index): - return _mscl.Vector_as_uint16At(self, index) - - def as_uint8At(self, index): - return _mscl.Vector_as_uint8At(self, index) - __swig_destroy__ = _mscl.delete_Vector - -# Register Vector in _mscl: -_mscl.Vector_swigregister(Vector) - -class Bitfield(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Bitfield_swiginit(self, _mscl.new_Bitfield(*args)) - __swig_destroy__ = _mscl.delete_Bitfield - - def value(self, *args): - return _mscl.Bitfield_value(self, *args) - - def get(self, mask, shiftToLsb=True): - return _mscl.Bitfield_get(self, mask, shiftToLsb) - - def set(self, mask, value, shiftRequired=True): - return _mscl.Bitfield_set(self, mask, value, shiftRequired) - - def checkBit(self, bitIndex, indexBase=0): - return _mscl.Bitfield_checkBit(self, bitIndex, indexBase) - - def setBit(self, bitIndex, value, indexBase=0): - return _mscl.Bitfield_setBit(self, bitIndex, value, indexBase) - -# Register Bitfield in _mscl: -_mscl.Bitfield_swigregister(Bitfield) - -class StructuralHealth(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, angle, uptime, damage, processingRate, histogram): - _mscl.StructuralHealth_swiginit(self, _mscl.new_StructuralHealth(angle, uptime, damage, processingRate, histogram)) - - def angle(self): - return _mscl.StructuralHealth_angle(self) - - def uptime(self): - return _mscl.StructuralHealth_uptime(self) - - def damage(self): - return _mscl.StructuralHealth_damage(self) - - def processingRate(self): - return _mscl.StructuralHealth_processingRate(self) - - def histogram(self): - return _mscl.StructuralHealth_histogram(self) - __swig_destroy__ = _mscl.delete_StructuralHealth - -# Register StructuralHealth in _mscl: -_mscl.StructuralHealth_swigregister(StructuralHealth) - -class DataPoint(Value): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - channelPropertyId_angle = _mscl.DataPoint_channelPropertyId_angle - channelPropertyId_derivedFrom = _mscl.DataPoint_channelPropertyId_derivedFrom - channelPropertyId_derivedAlgorithmId = _mscl.DataPoint_channelPropertyId_derivedAlgorithmId - __swig_destroy__ = _mscl.delete_DataPoint - - def channelProperty(self, id): - return _mscl.DataPoint_channelProperty(self, id) - - def as_Vector(self): - return _mscl.DataPoint_as_Vector(self) - - def as_Matrix(self): - return _mscl.DataPoint_as_Matrix(self) - - def as_Timestamp(self): - return _mscl.DataPoint_as_Timestamp(self) - - def as_Bytes(self): - return _mscl.DataPoint_as_Bytes(self) - - def as_StructuralHealth(self): - return _mscl.DataPoint_as_StructuralHealth(self) - - def as_RfSweep(self): - return _mscl.DataPoint_as_RfSweep(self) - - def as_string(self): - return _mscl.DataPoint_as_string(self) - -# Register DataPoint in _mscl: -_mscl.DataPoint_swigregister(DataPoint) - -class ConfigIssue(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONFIG_SAMPLING_MODE = _mscl.ConfigIssue_CONFIG_SAMPLING_MODE - CONFIG_ACTIVE_CHANNELS = _mscl.ConfigIssue_CONFIG_ACTIVE_CHANNELS - CONFIG_SAMPLE_RATE = _mscl.ConfigIssue_CONFIG_SAMPLE_RATE - CONFIG_SWEEPS = _mscl.ConfigIssue_CONFIG_SWEEPS - CONFIG_UNLIMITED_DURATION = _mscl.ConfigIssue_CONFIG_UNLIMITED_DURATION - CONFIG_DATA_FORMAT = _mscl.ConfigIssue_CONFIG_DATA_FORMAT - CONFIG_DATA_COLLECTION_METHOD = _mscl.ConfigIssue_CONFIG_DATA_COLLECTION_METHOD - CONFIG_TIME_BETWEEN_BURSTS = _mscl.ConfigIssue_CONFIG_TIME_BETWEEN_BURSTS - CONFIG_THERMOCOUPLE_TYPE = _mscl.ConfigIssue_CONFIG_THERMOCOUPLE_TYPE - CONFIG_FILTER_SETTLING_TIME = _mscl.ConfigIssue_CONFIG_FILTER_SETTLING_TIME - CONFIG_BUTTON = _mscl.ConfigIssue_CONFIG_BUTTON - CONFIG_ANALOG_PAIR = _mscl.ConfigIssue_CONFIG_ANALOG_PAIR - CONFIG_INPUT_RANGE = _mscl.ConfigIssue_CONFIG_INPUT_RANGE - CONFIG_INACTIVITY_TIMEOUT = _mscl.ConfigIssue_CONFIG_INACTIVITY_TIMEOUT - CONFIG_CHECK_RADIO_INTERVAL = _mscl.ConfigIssue_CONFIG_CHECK_RADIO_INTERVAL - CONFIG_LOST_BEACON_TIMEOUT = _mscl.ConfigIssue_CONFIG_LOST_BEACON_TIMEOUT - CONFIG_DEFAULT_MODE = _mscl.ConfigIssue_CONFIG_DEFAULT_MODE - CONFIG_TRANSMIT_POWER = _mscl.ConfigIssue_CONFIG_TRANSMIT_POWER - CONFIG_LINEAR_EQUATION = _mscl.ConfigIssue_CONFIG_LINEAR_EQUATION - CONFIG_FATIGUE = _mscl.ConfigIssue_CONFIG_FATIGUE - CONFIG_FATIGUE_MODE = _mscl.ConfigIssue_CONFIG_FATIGUE_MODE - CONFIG_FATIGUE_ANGLE_ID = _mscl.ConfigIssue_CONFIG_FATIGUE_ANGLE_ID - CONFIG_FATIGUE_SN_CURVE = _mscl.ConfigIssue_CONFIG_FATIGUE_SN_CURVE - CONFIG_FATIGUE_DIST_NUM_ANGLES = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_NUM_ANGLES - CONFIG_FATIGUE_DIST_ANGLE = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_ANGLE - CONFIG_HISTOGRAM = _mscl.ConfigIssue_CONFIG_HISTOGRAM - CONFIG_HISTOGRAM_TX_RATE = _mscl.ConfigIssue_CONFIG_HISTOGRAM_TX_RATE - CONFIG_HARDWARE_OFFSET = _mscl.ConfigIssue_CONFIG_HARDWARE_OFFSET - CONFIG_ACTIVITY_SENSE = _mscl.ConfigIssue_CONFIG_ACTIVITY_SENSE - CONFIG_GAUGE_FACTOR = _mscl.ConfigIssue_CONFIG_GAUGE_FACTOR - CONFIG_EVENT_TRIGGER = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER - CONFIG_EVENT_TRIGGER_DURATION = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_DURATION - CONFIG_EVENT_TRIGGER_MASK = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_MASK - CONFIG_DIAGNOSTIC_INTERVAL = _mscl.ConfigIssue_CONFIG_DIAGNOSTIC_INTERVAL - CONFIG_ANTI_ALIASING_FILTER = _mscl.ConfigIssue_CONFIG_ANTI_ALIASING_FILTER - CONFIG_STORAGE_LIMIT_MODE = _mscl.ConfigIssue_CONFIG_STORAGE_LIMIT_MODE - CONFIG_SENSOR_DELAY = _mscl.ConfigIssue_CONFIG_SENSOR_DELAY - CONFIG_LOW_PASS_FILTER = _mscl.ConfigIssue_CONFIG_LOW_PASS_FILTER - CONFIG_DATA_MODE = _mscl.ConfigIssue_CONFIG_DATA_MODE - CONFIG_DERIVED_DATA_RATE = _mscl.ConfigIssue_CONFIG_DERIVED_DATA_RATE - CONFIG_DERIVED_MASK_RMS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_RMS - CONFIG_DERIVED_MASK_P2P = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_P2P - CONFIG_DERIVED_MASK_IPS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_IPS - CONFIG_DERIVED_MASK_CREST_FACTOR = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_CREST_FACTOR - CONFIG_HIGH_PASS_FILTER = _mscl.ConfigIssue_CONFIG_HIGH_PASS_FILTER - CONFIG_DERIVED_MASK = _mscl.ConfigIssue_CONFIG_DERIVED_MASK - CONFIG_COMM_PROTOCOL = _mscl.ConfigIssue_CONFIG_COMM_PROTOCOL - CONFIG_DERIVED_MASK_MEAN = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_MEAN - CONFIG_GAUGE_RESISTANCE = _mscl.ConfigIssue_CONFIG_GAUGE_RESISTANCE - CONFIG_NUM_ACTIVE_GAUGES = _mscl.ConfigIssue_CONFIG_NUM_ACTIVE_GAUGES - CONFIG_TEMP_SENSOR_OPTS = _mscl.ConfigIssue_CONFIG_TEMP_SENSOR_OPTS - CONFIG_DEBOUNCE_FILTER = _mscl.ConfigIssue_CONFIG_DEBOUNCE_FILTER - CONFIG_PULLUP_RESISTOR = _mscl.ConfigIssue_CONFIG_PULLUP_RESISTOR - CONFIG_EXCITATION_VOLTAGE = _mscl.ConfigIssue_CONFIG_EXCITATION_VOLTAGE - CONFIG_DERIVED_UNIT = _mscl.ConfigIssue_CONFIG_DERIVED_UNIT - CONFIG_SENSOR_OUTPUT_MODE = _mscl.ConfigIssue_CONFIG_SENSOR_OUTPUT_MODE - CONFIG_LOW_BATTERY_THRESHOLD = _mscl.ConfigIssue_CONFIG_LOW_BATTERY_THRESHOLD - CONFIG_CFC_FILTER = _mscl.ConfigIssue_CONFIG_CFC_FILTER - - def __init__(self, *args): - _mscl.ConfigIssue_swiginit(self, _mscl.new_ConfigIssue(*args)) - - def id(self): - return _mscl.ConfigIssue_id(self) - - def description(self): - return _mscl.ConfigIssue_description(self) - - def isChannelGroupIssue(self): - return _mscl.ConfigIssue_isChannelGroupIssue(self) - - def channelMask(self): - return _mscl.ConfigIssue_channelMask(self) - __swig_destroy__ = _mscl.delete_ConfigIssue - -# Register ConfigIssue in _mscl: -_mscl.ConfigIssue_swigregister(ConfigIssue) - -class ActivitySense(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ActivitySense_swiginit(self, _mscl.new_ActivitySense()) - - def enabled(self, *args): - return _mscl.ActivitySense_enabled(self, *args) - - def activityThreshold(self, *args): - return _mscl.ActivitySense_activityThreshold(self, *args) - - def inactivityThreshold(self, *args): - return _mscl.ActivitySense_inactivityThreshold(self, *args) - - def activityTime(self, *args): - return _mscl.ActivitySense_activityTime(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.ActivitySense_inactivityTimeout(self, *args) - __swig_destroy__ = _mscl.delete_ActivitySense - -# Register ActivitySense in _mscl: -_mscl.ActivitySense_swigregister(ActivitySense) - -class Trigger(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Trigger_swiginit(self, _mscl.new_Trigger(*args)) - - def channelNumber(self, *args): - return _mscl.Trigger_channelNumber(self, *args) - - def triggerType(self, *args): - return _mscl.Trigger_triggerType(self, *args) - - def triggerValue(self, *args): - return _mscl.Trigger_triggerValue(self, *args) - __swig_destroy__ = _mscl.delete_Trigger - -# Register Trigger in _mscl: -_mscl.Trigger_swigregister(Trigger) - -class EventTriggerOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerOptions_swiginit(self, _mscl.new_EventTriggerOptions()) - - def triggerMask(self, *args): - return _mscl.EventTriggerOptions_triggerMask(self, *args) - - def anyTriggersEnabled(self): - return _mscl.EventTriggerOptions_anyTriggersEnabled(self) - - def triggerEnabled(self, triggerIndex): - return _mscl.EventTriggerOptions_triggerEnabled(self, triggerIndex) - - def enableTrigger(self, triggerIndex, enable=True): - return _mscl.EventTriggerOptions_enableTrigger(self, triggerIndex, enable) - - def preDuration(self, *args): - return _mscl.EventTriggerOptions_preDuration(self, *args) - - def postDuration(self, *args): - return _mscl.EventTriggerOptions_postDuration(self, *args) - - def trigger(self, *args): - return _mscl.EventTriggerOptions_trigger(self, *args) - - def triggers(self): - return _mscl.EventTriggerOptions_triggers(self) - __swig_destroy__ = _mscl.delete_EventTriggerOptions - -# Register EventTriggerOptions in _mscl: -_mscl.EventTriggerOptions_swigregister(EventTriggerOptions) - -class SnCurveSegment(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.SnCurveSegment_swiginit(self, _mscl.new_SnCurveSegment(*args)) - - def m(self, *args): - return _mscl.SnCurveSegment_m(self, *args) - - def logA(self, *args): - return _mscl.SnCurveSegment_logA(self, *args) - __swig_destroy__ = _mscl.delete_SnCurveSegment - -# Register SnCurveSegment in _mscl: -_mscl.SnCurveSegment_swigregister(SnCurveSegment) - -class FatigueOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FatigueOptions_swiginit(self, _mscl.new_FatigueOptions()) - - def youngsModulus(self, *args): - return _mscl.FatigueOptions_youngsModulus(self, *args) - - def poissonsRatio(self, *args): - return _mscl.FatigueOptions_poissonsRatio(self, *args) - - def peakValleyThreshold(self, *args): - return _mscl.FatigueOptions_peakValleyThreshold(self, *args) - - def debugMode(self, *args): - return _mscl.FatigueOptions_debugMode(self, *args) - - def damageAngles(self): - return _mscl.FatigueOptions_damageAngles(self) - - def damageAngle(self, *args): - return _mscl.FatigueOptions_damageAngle(self, *args) - - def snCurveSegments(self): - return _mscl.FatigueOptions_snCurveSegments(self) - - def snCurveSegment(self, *args): - return _mscl.FatigueOptions_snCurveSegment(self, *args) - - def fatigueMode(self, *args): - return _mscl.FatigueOptions_fatigueMode(self, *args) - - def distributedAngleMode_numAngles(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_numAngles(self, *args) - - def distributedAngleMode_lowerBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_lowerBound(self, *args) - - def distributedAngleMode_upperBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_upperBound(self, *args) - - def histogramEnable(self, *args): - return _mscl.FatigueOptions_histogramEnable(self, *args) - __swig_destroy__ = _mscl.delete_FatigueOptions - -# Register FatigueOptions in _mscl: -_mscl.FatigueOptions_swigregister(FatigueOptions) - -class HistogramOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HistogramOptions_swiginit(self, _mscl.new_HistogramOptions()) - - def transmitRate(self, *args): - return _mscl.HistogramOptions_transmitRate(self, *args) - - def binsStart(self, *args): - return _mscl.HistogramOptions_binsStart(self, *args) - - def binsSize(self, *args): - return _mscl.HistogramOptions_binsSize(self, *args) - __swig_destroy__ = _mscl.delete_HistogramOptions - -# Register HistogramOptions in _mscl: -_mscl.HistogramOptions_swigregister(HistogramOptions) - -class InputRangeEntry(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - inputRange = property(_mscl.InputRangeEntry_inputRange_get, _mscl.InputRangeEntry_inputRange_set) - hasGain = property(_mscl.InputRangeEntry_hasGain_get, _mscl.InputRangeEntry_hasGain_set) - gain = property(_mscl.InputRangeEntry_gain_get, _mscl.InputRangeEntry_gain_set) - - def __init__(self, *args): - _mscl.InputRangeEntry_swiginit(self, _mscl.new_InputRangeEntry(*args)) - __swig_destroy__ = _mscl.delete_InputRangeEntry - -# Register InputRangeEntry in _mscl: -_mscl.InputRangeEntry_swigregister(InputRangeEntry) - -class TempSensorOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - - @staticmethod - def RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - - @staticmethod - def Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - - def transducerType(self): - return _mscl.TempSensorOptions_transducerType(self) - - def thermocoupleType(self): - return _mscl.TempSensorOptions_thermocoupleType(self) - - def rtdType(self): - return _mscl.TempSensorOptions_rtdType(self) - - def rtdWireType(self): - return _mscl.TempSensorOptions_rtdWireType(self) - - def thermistorType(self): - return _mscl.TempSensorOptions_thermistorType(self) - __swig_destroy__ = _mscl.delete_TempSensorOptions - -# Register TempSensorOptions in _mscl: -_mscl.TempSensorOptions_swigregister(TempSensorOptions) - -def TempSensorOptions_Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - -def TempSensorOptions_RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - -def TempSensorOptions_Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - -class WirelessModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_vLink_legacy = _mscl.WirelessModels_node_vLink_legacy - node_cfBearingTempLink = _mscl.WirelessModels_node_cfBearingTempLink - node_envLink_pro = _mscl.WirelessModels_node_envLink_pro - node_gLink_2g = _mscl.WirelessModels_node_gLink_2g - node_gLink_10g = _mscl.WirelessModels_node_gLink_10g - node_gLinkII_cust_in = _mscl.WirelessModels_node_gLinkII_cust_in - node_gLinkII_2g_in = _mscl.WirelessModels_node_gLinkII_2g_in - node_gLinkII_10g_in = _mscl.WirelessModels_node_gLinkII_10g_in - node_gLinkII_cust_ex = _mscl.WirelessModels_node_gLinkII_cust_ex - node_gLinkII_2g_ex = _mscl.WirelessModels_node_gLinkII_2g_ex - node_gLinkII_10g_ex = _mscl.WirelessModels_node_gLinkII_10g_ex - node_gLink_rgd_10g = _mscl.WirelessModels_node_gLink_rgd_10g - node_gLink_200_8g = _mscl.WirelessModels_node_gLink_200_8g - node_gLink_200_40g = _mscl.WirelessModels_node_gLink_200_40g - node_gLink_200_8g_oem = _mscl.WirelessModels_node_gLink_200_8g_oem - node_gLink_200_40g_oem = _mscl.WirelessModels_node_gLink_200_40g_oem - node_gLink_200_8g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_8g_oem_mmcx - node_gLink_200_40g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_40g_oem_mmcx - node_gLink_200_8g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_8g_oem_u_fl - node_gLink_200_40g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_40g_oem_u_fl - node_gLink_200_r = _mscl.WirelessModels_node_gLink_200_r - node_sgLink_oem_S = _mscl.WirelessModels_node_sgLink_oem_S - node_sgLink = _mscl.WirelessModels_node_sgLink - node_sgLink200 = _mscl.WirelessModels_node_sgLink200 - node_sgLink200_hbridge_1K = _mscl.WirelessModels_node_sgLink200_hbridge_1K - node_sgLink200_hbridge_350 = _mscl.WirelessModels_node_sgLink200_hbridge_350 - node_sgLink200_hbridge_120 = _mscl.WirelessModels_node_sgLink200_hbridge_120 - node_sgLink200_qbridge_1K = _mscl.WirelessModels_node_sgLink200_qbridge_1K - node_sgLink200_qbridge_350 = _mscl.WirelessModels_node_sgLink200_qbridge_350 - node_sgLink200_qbridge_120 = _mscl.WirelessModels_node_sgLink200_qbridge_120 - node_sgLink_oem = _mscl.WirelessModels_node_sgLink_oem - node_sgLink_micro = _mscl.WirelessModels_node_sgLink_micro - node_sgLink200_oem = _mscl.WirelessModels_node_sgLink200_oem - node_sgLink200_oem_ufl = _mscl.WirelessModels_node_sgLink200_oem_ufl - node_sgLink200_oem_hbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K - node_sgLink200_oem_hbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K_ufl - node_sgLink200_oem_hbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120 - node_sgLink200_oem_hbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120_ufl - node_sgLink200_oem_hbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350 - node_sgLink200_oem_hbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350_ufl - node_sgLink200_oem_qbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K - node_sgLink200_oem_qbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K_ufl - node_sgLink200_oem_qbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120 - node_sgLink200_oem_qbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120_ufl - node_sgLink200_oem_qbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350 - node_sgLink200_oem_qbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350_ufl - node_sgLink_rgd = _mscl.WirelessModels_node_sgLink_rgd - node_shmLink = _mscl.WirelessModels_node_shmLink - node_tcLink_1ch = _mscl.WirelessModels_node_tcLink_1ch - node_tcLink_6ch = _mscl.WirelessModels_node_tcLink_6ch - node_tcLink_3ch = _mscl.WirelessModels_node_tcLink_3ch - node_tcLink_6ch_ip67 = _mscl.WirelessModels_node_tcLink_6ch_ip67 - node_tcLink200_oem = _mscl.WirelessModels_node_tcLink200_oem - node_tcLink200_oem_ufl = _mscl.WirelessModels_node_tcLink200_oem_ufl - node_tcLink200 = _mscl.WirelessModels_node_tcLink200 - node_rtdLink200 = _mscl.WirelessModels_node_rtdLink200 - node_tcLink_6ch_ip67_rht = _mscl.WirelessModels_node_tcLink_6ch_ip67_rht - node_vLink = _mscl.WirelessModels_node_vLink - node_vLink200 = _mscl.WirelessModels_node_vLink200 - node_vLink200_qbridge_1K = _mscl.WirelessModels_node_vLink200_qbridge_1K - node_vLink200_qbridge_120 = _mscl.WirelessModels_node_vLink200_qbridge_120 - node_vLink200_qbridge_350 = _mscl.WirelessModels_node_vLink200_qbridge_350 - node_vLink200_hbridge_1K = _mscl.WirelessModels_node_vLink200_hbridge_1K - node_vLink200_hbridge_120 = _mscl.WirelessModels_node_vLink200_hbridge_120 - node_vLink200_hbridge_350 = _mscl.WirelessModels_node_vLink200_hbridge_350 - node_iepeLink = _mscl.WirelessModels_node_iepeLink - node_dvrtLink = _mscl.WirelessModels_node_dvrtLink - node_envLink_mini = _mscl.WirelessModels_node_envLink_mini - node_wattLink = _mscl.WirelessModels_node_wattLink - node_wattLink_3Y208 = _mscl.WirelessModels_node_wattLink_3Y208 - node_wattLink_3D240 = _mscl.WirelessModels_node_wattLink_3D240 - node_wattLink_3Y400 = _mscl.WirelessModels_node_wattLink_3Y400 - node_wattLink_3D400 = _mscl.WirelessModels_node_wattLink_3D400 - node_wattLink_3Y480 = _mscl.WirelessModels_node_wattLink_3Y480 - node_wattLink_3D480 = _mscl.WirelessModels_node_wattLink_3D480 - node_wattLink_3Y600 = _mscl.WirelessModels_node_wattLink_3Y600 - node_ptLink200 = _mscl.WirelessModels_node_ptLink200 - node_rtdLink = _mscl.WirelessModels_node_rtdLink - node_shmLink2_cust1_oldNumber = _mscl.WirelessModels_node_shmLink2_cust1_oldNumber - node_shmLink2_cust1 = _mscl.WirelessModels_node_shmLink2_cust1 - node_shmLink200 = _mscl.WirelessModels_node_shmLink200 - node_shmLink201 = _mscl.WirelessModels_node_shmLink201 - node_shmLink201_qbridge_1K = _mscl.WirelessModels_node_shmLink201_qbridge_1K - node_shmLink201_qbridge_348 = _mscl.WirelessModels_node_shmLink201_qbridge_348 - node_shmLink201_hbridge_1K = _mscl.WirelessModels_node_shmLink201_hbridge_1K - node_shmLink201_hbridge_348 = _mscl.WirelessModels_node_shmLink201_hbridge_348 - node_shmLink201_fullbridge = _mscl.WirelessModels_node_shmLink201_fullbridge - node_shmLink210_fullbridge = _mscl.WirelessModels_node_shmLink210_fullbridge - node_shmLink210_qbridge_3K = _mscl.WirelessModels_node_shmLink210_qbridge_3K - node_torqueLink = _mscl.WirelessModels_node_torqueLink - node_torqueLink200_3ch = _mscl.WirelessModels_node_torqueLink200_3ch - node_torqueLink200 = _mscl.WirelessModels_node_torqueLink200 - node_torqueLink200_3ch_s = _mscl.WirelessModels_node_torqueLink200_3ch_s - node_sgLink_herm = _mscl.WirelessModels_node_sgLink_herm - node_sgLink_herm_2600 = _mscl.WirelessModels_node_sgLink_herm_2600 - node_sgLink_herm_2700 = _mscl.WirelessModels_node_sgLink_herm_2700 - node_sgLink_herm_2800 = _mscl.WirelessModels_node_sgLink_herm_2800 - node_sgLink_herm_2900 = _mscl.WirelessModels_node_sgLink_herm_2900 - node_wirelessImpactSensor = _mscl.WirelessModels_node_wirelessImpactSensor - node_gLink_200_40g_s = _mscl.WirelessModels_node_gLink_200_40g_s - base_wsda_1000 = _mscl.WirelessModels_base_wsda_1000 - base_wsda_1500 = _mscl.WirelessModels_base_wsda_1500 - base_wsda_2000 = _mscl.WirelessModels_base_wsda_2000 - base_wsdaBase_200_legacy = _mscl.WirelessModels_base_wsdaBase_200_legacy - base_wsdaBase_200 = _mscl.WirelessModels_base_wsdaBase_200 - base_wsdaBase_200_extAntenna = _mscl.WirelessModels_base_wsdaBase_200_extAntenna - base_wsdaBase_101_analog = _mscl.WirelessModels_base_wsdaBase_101_analog - base_wsdaBase_102_rs232 = _mscl.WirelessModels_base_wsdaBase_102_rs232 - base_wsdaBase_104_usb = _mscl.WirelessModels_base_wsdaBase_104_usb - base_wsi_104 = _mscl.WirelessModels_base_wsi_104 - base_wsdaBase_mini = _mscl.WirelessModels_base_wsdaBase_mini - - def __init__(self): - _mscl.WirelessModels_swiginit(self, _mscl.new_WirelessModels()) - __swig_destroy__ = _mscl.delete_WirelessModels - -# Register WirelessModels in _mscl: -_mscl.WirelessModels_swigregister(WirelessModels) - -class NodeDiscovery(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def nodeAddress(self): - return _mscl.NodeDiscovery_nodeAddress(self) - - def frequency(self): - return _mscl.NodeDiscovery_frequency(self) - - def panId(self): - return _mscl.NodeDiscovery_panId(self) - - def model(self): - return _mscl.NodeDiscovery_model(self) - - def serialNumber(self): - return _mscl.NodeDiscovery_serialNumber(self) - - def firmwareVersion(self): - return _mscl.NodeDiscovery_firmwareVersion(self) - - def defaultMode(self): - return _mscl.NodeDiscovery_defaultMode(self) - - def builtInTestResult(self): - return _mscl.NodeDiscovery_builtInTestResult(self) - - def communicationProtocol(self): - return _mscl.NodeDiscovery_communicationProtocol(self) - - def asppVersion_lxrs(self): - return _mscl.NodeDiscovery_asppVersion_lxrs(self) - - def asppVersion_lxrsPlus(self): - return _mscl.NodeDiscovery_asppVersion_lxrsPlus(self) - - def baseRssi(self): - return _mscl.NodeDiscovery_baseRssi(self) - - def timestamp(self): - return _mscl.NodeDiscovery_timestamp(self) - - def __init__(self): - _mscl.NodeDiscovery_swiginit(self, _mscl.new_NodeDiscovery()) - __swig_destroy__ = _mscl.delete_NodeDiscovery - -# Register NodeDiscovery in _mscl: -_mscl.NodeDiscovery_swigregister(NodeDiscovery) - -class LinearEquation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LinearEquation_swiginit(self, _mscl.new_LinearEquation(*args)) - - def slope(self, *args): - return _mscl.LinearEquation_slope(self, *args) - - def offset(self, *args): - return _mscl.LinearEquation_offset(self, *args) - __swig_destroy__ = _mscl.delete_LinearEquation - -# Register LinearEquation in _mscl: -_mscl.LinearEquation_swigregister(LinearEquation) - -class CalCoefficients(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CalCoefficients_swiginit(self, _mscl.new_CalCoefficients(*args)) - - def equationType(self): - return _mscl.CalCoefficients_equationType(self) - - def unit(self): - return _mscl.CalCoefficients_unit(self) - - def linearEquation(self): - return _mscl.CalCoefficients_linearEquation(self) - __swig_destroy__ = _mscl.delete_CalCoefficients - -# Register CalCoefficients in _mscl: -_mscl.CalCoefficients_swigregister(CalCoefficients) - -class ChannelGroup(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ChannelGroup_swiginit(self, _mscl.new_ChannelGroup()) - - def channels(self): - return _mscl.ChannelGroup_channels(self) - - def name(self): - return _mscl.ChannelGroup_name(self) - - def eepromLocation(self, setting): - return _mscl.ChannelGroup_eepromLocation(self, setting) - - def settings(self): - return _mscl.ChannelGroup_settings(self) - - def hasSetting(self, setting): - return _mscl.ChannelGroup_hasSetting(self, setting) - - def hasSettingAndChannel(self, setting, channelNumber): - return _mscl.ChannelGroup_hasSettingAndChannel(self, setting, channelNumber) - __swig_destroy__ = _mscl.delete_ChannelGroup - -# Register ChannelGroup in _mscl: -_mscl.ChannelGroup_swigregister(ChannelGroup) - -class WirelessChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - channel_unknown = _mscl.WirelessChannel_channel_unknown - channel_1 = _mscl.WirelessChannel_channel_1 - channel_2 = _mscl.WirelessChannel_channel_2 - channel_3 = _mscl.WirelessChannel_channel_3 - channel_4 = _mscl.WirelessChannel_channel_4 - channel_5 = _mscl.WirelessChannel_channel_5 - channel_6 = _mscl.WirelessChannel_channel_6 - channel_7 = _mscl.WirelessChannel_channel_7 - channel_8 = _mscl.WirelessChannel_channel_8 - channel_9 = _mscl.WirelessChannel_channel_9 - channel_10 = _mscl.WirelessChannel_channel_10 - channel_11 = _mscl.WirelessChannel_channel_11 - channel_12 = _mscl.WirelessChannel_channel_12 - channel_13 = _mscl.WirelessChannel_channel_13 - channel_14 = _mscl.WirelessChannel_channel_14 - channel_15 = _mscl.WirelessChannel_channel_15 - channel_16 = _mscl.WirelessChannel_channel_16 - channel_digital_1 = _mscl.WirelessChannel_channel_digital_1 - channel_digital_2 = _mscl.WirelessChannel_channel_digital_2 - channel_digital_3 = _mscl.WirelessChannel_channel_digital_3 - channel_digital_4 = _mscl.WirelessChannel_channel_digital_4 - channel_digital_5 = _mscl.WirelessChannel_channel_digital_5 - channel_digital_6 = _mscl.WirelessChannel_channel_digital_6 - channel_digital_7 = _mscl.WirelessChannel_channel_digital_7 - channel_digital_8 = _mscl.WirelessChannel_channel_digital_8 - channel_digital_9 = _mscl.WirelessChannel_channel_digital_9 - channel_digital_10 = _mscl.WirelessChannel_channel_digital_10 - channel_digital_11 = _mscl.WirelessChannel_channel_digital_11 - channel_digital_12 = _mscl.WirelessChannel_channel_digital_12 - channel_digital_13 = _mscl.WirelessChannel_channel_digital_13 - channel_digital_14 = _mscl.WirelessChannel_channel_digital_14 - channel_digital_15 = _mscl.WirelessChannel_channel_digital_15 - channel_digital_16 = _mscl.WirelessChannel_channel_digital_16 - channel_structuralHealth = _mscl.WirelessChannel_channel_structuralHealth - channel_hcl_rawBase_mag1_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_x - channel_hcl_rawBase_mag1_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_y - channel_hcl_rawBase_mag1_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_z - channel_hcl_rawBase_mag2_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_x - channel_hcl_rawBase_mag2_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_y - channel_hcl_rawBase_mag2_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_z - channel_hcl_rawBase_mag3_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_x - channel_hcl_rawBase_mag3_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_y - channel_hcl_rawBase_mag3_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_z - channel_hcl_rawBase_mag4_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_x - channel_hcl_rawBase_mag4_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_y - channel_hcl_rawBase_mag4_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_z - channel_hcl_rawBase_mag5_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_x - channel_hcl_rawBase_mag5_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_y - channel_hcl_rawBase_mag5_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_z - channel_hcl_rawBase_mag6_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_x - channel_hcl_rawBase_mag6_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_y - channel_hcl_rawBase_mag6_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_z - channel_hcl_rawBase_mag7_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_x - channel_hcl_rawBase_mag7_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_y - channel_hcl_rawBase_mag7_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_z - channel_hcl_rawBase_mag8_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_x - channel_hcl_rawBase_mag8_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_y - channel_hcl_rawBase_mag8_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_z - channel_hcl_rawBase_gyro_x = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_x - channel_hcl_rawBase_gyro_y = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_y - channel_hcl_rawBase_gyro_z = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_z - channel_error_code = _mscl.WirelessChannel_channel_error_code - channel_hcl_rawStrain_BL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL30 - channel_hcl_rawStrain_BL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL120 - channel_hcl_rawStrain_A60 = _mscl.WirelessChannel_channel_hcl_rawStrain_A60 - channel_hcl_rawStrain_A150 = _mscl.WirelessChannel_channel_hcl_rawStrain_A150 - channel_hcl_rawStrain_AL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL30 - channel_hcl_rawStrain_AL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL120 - channel_hcl_rawStrain_BR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR60 - channel_hcl_rawStrain_BR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR150 - channel_hcl_rawStrain_B30 = _mscl.WirelessChannel_channel_hcl_rawStrain_B30 - channel_hcl_rawStrain_T120 = _mscl.WirelessChannel_channel_hcl_rawStrain_T120 - channel_hcl_rawStrain_AR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR60 - channel_hcl_rawStrain_AR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR150 - channel_hcl_rawStrain_A30 = _mscl.WirelessChannel_channel_hcl_rawStrain_A30 - channel_hcl_rawStrain_A120 = _mscl.WirelessChannel_channel_hcl_rawStrain_A120 - channel_hcl_rawStrain_BL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL90 - channel_hcl_rawStrain_BL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL180 - channel_hcl_rawStrain_BR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR30 - channel_hcl_rawStrain_BR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR120 - channel_hcl_rawStrain_AL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL90 - channel_hcl_rawStrain_AL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL180 - channel_hcl_rawStrain_AR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR30 - channel_hcl_rawStrain_AR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR120 - channel_hcl_rawStrain_B90 = _mscl.WirelessChannel_channel_hcl_rawStrain_B90 - channel_hcl_rawStrain_T0 = _mscl.WirelessChannel_channel_hcl_rawStrain_T0 - channel_hcl_rawStrain_BL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL60 - channel_hcl_rawStrain_BL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL150 - channel_hcl_rawStrain_A90 = _mscl.WirelessChannel_channel_hcl_rawStrain_A90 - channel_hcl_rawStrain_A0 = _mscl.WirelessChannel_channel_hcl_rawStrain_A0 - channel_hcl_rawStrain_AL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL60 - channel_hcl_rawStrain_AL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL150 - channel_hcl_rawStrain_BR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR90 - channel_hcl_rawStrain_BR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR0 - channel_hcl_rawStrain_T60 = _mscl.WirelessChannel_channel_hcl_rawStrain_T60 - channel_hcl_rawStrain_B150 = _mscl.WirelessChannel_channel_hcl_rawStrain_B150 - channel_hcl_rawStrain_AR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR90 - channel_hcl_rawStrain_AR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR0 - channel_hcl_rawInertial_accel1 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel1 - channel_hcl_rawInertial_accel2 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel2 - channel_hcl_rawInertial_accel3 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel3 - channel_hcl_rawInertial_accel4 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel4 - channel_hcl_rawInertial_accel5 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel5 - channel_hcl_rawInertial_accel6 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel6 - channel_hcl_rawInertial_accel7 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel7 - channel_hcl_rawInertial_accel8 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel8 - channel_hcl_rawInertial_gyroX = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroX - channel_hcl_rawInertial_gyroY = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroY - channel_hcl_rawInertial_gyroZ = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroZ - channel_rawAngleStrain = _mscl.WirelessChannel_channel_rawAngleStrain - channel_beaconEcho = _mscl.WirelessChannel_channel_beaconEcho - channel_rfSweep = _mscl.WirelessChannel_channel_rfSweep - channel_diag_state = _mscl.WirelessChannel_channel_diag_state - channel_diag_runtime_idle = _mscl.WirelessChannel_channel_diag_runtime_idle - channel_diag_runtime_sleep = _mscl.WirelessChannel_channel_diag_runtime_sleep - channel_diag_runtime_activeRun = _mscl.WirelessChannel_channel_diag_runtime_activeRun - channel_diag_runtime_inactiveRun = _mscl.WirelessChannel_channel_diag_runtime_inactiveRun - channel_diag_resetCounter = _mscl.WirelessChannel_channel_diag_resetCounter - channel_diag_lowBatteryFlag = _mscl.WirelessChannel_channel_diag_lowBatteryFlag - channel_diag_sweepIndex = _mscl.WirelessChannel_channel_diag_sweepIndex - channel_diag_badSweepCount = _mscl.WirelessChannel_channel_diag_badSweepCount - channel_diag_totalTx = _mscl.WirelessChannel_channel_diag_totalTx - channel_diag_totalReTx = _mscl.WirelessChannel_channel_diag_totalReTx - channel_diag_totalDroppedPackets = _mscl.WirelessChannel_channel_diag_totalDroppedPackets - channel_diag_builtInTestResult = _mscl.WirelessChannel_channel_diag_builtInTestResult - channel_diag_eventIndex = _mscl.WirelessChannel_channel_diag_eventIndex - channel_hcl_axialLoadX = _mscl.WirelessChannel_channel_hcl_axialLoadX - channel_hcl_axialLoadY = _mscl.WirelessChannel_channel_hcl_axialLoadY - channel_hcl_axialLoadZ = _mscl.WirelessChannel_channel_hcl_axialLoadZ - channel_hcl_bendingMomentFlap = _mscl.WirelessChannel_channel_hcl_bendingMomentFlap - channel_hcl_bendingMomentLag = _mscl.WirelessChannel_channel_hcl_bendingMomentLag - channel_hcl_bendingMomentPitch = _mscl.WirelessChannel_channel_hcl_bendingMomentPitch - channel_hcl_motionFlap_mag = _mscl.WirelessChannel_channel_hcl_motionFlap_mag - channel_hcl_motionLag_mag = _mscl.WirelessChannel_channel_hcl_motionLag_mag - channel_hcl_motionPitch_mag = _mscl.WirelessChannel_channel_hcl_motionPitch_mag - channel_hcl_motionFlap_inertial = _mscl.WirelessChannel_channel_hcl_motionFlap_inertial - channel_hcl_motionLag_inertial = _mscl.WirelessChannel_channel_hcl_motionLag_inertial - channel_hcl_motionPitch_inertial = _mscl.WirelessChannel_channel_hcl_motionPitch_inertial - channel_hcl_cockingStiffness_mag = _mscl.WirelessChannel_channel_hcl_cockingStiffness_mag - channel_hcl_cockingStiffness_inertial = _mscl.WirelessChannel_channel_hcl_cockingStiffness_inertial - channel_hcl_temperature = _mscl.WirelessChannel_channel_hcl_temperature - channel_diag_externalPower = _mscl.WirelessChannel_channel_diag_externalPower - channel_diag_internalTemp = _mscl.WirelessChannel_channel_diag_internalTemp - channel_1_rms = _mscl.WirelessChannel_channel_1_rms - channel_2_rms = _mscl.WirelessChannel_channel_2_rms - channel_3_rms = _mscl.WirelessChannel_channel_3_rms - channel_4_rms = _mscl.WirelessChannel_channel_4_rms - channel_5_rms = _mscl.WirelessChannel_channel_5_rms - channel_6_rms = _mscl.WirelessChannel_channel_6_rms - channel_7_rms = _mscl.WirelessChannel_channel_7_rms - channel_8_rms = _mscl.WirelessChannel_channel_8_rms - channel_9_rms = _mscl.WirelessChannel_channel_9_rms - channel_10_rms = _mscl.WirelessChannel_channel_10_rms - channel_11_rms = _mscl.WirelessChannel_channel_11_rms - channel_12_rms = _mscl.WirelessChannel_channel_12_rms - channel_13_rms = _mscl.WirelessChannel_channel_13_rms - channel_14_rms = _mscl.WirelessChannel_channel_14_rms - channel_15_rms = _mscl.WirelessChannel_channel_15_rms - channel_16_rms = _mscl.WirelessChannel_channel_16_rms - channel_1_peakToPeak = _mscl.WirelessChannel_channel_1_peakToPeak - channel_2_peakToPeak = _mscl.WirelessChannel_channel_2_peakToPeak - channel_3_peakToPeak = _mscl.WirelessChannel_channel_3_peakToPeak - channel_4_peakToPeak = _mscl.WirelessChannel_channel_4_peakToPeak - channel_5_peakToPeak = _mscl.WirelessChannel_channel_5_peakToPeak - channel_6_peakToPeak = _mscl.WirelessChannel_channel_6_peakToPeak - channel_7_peakToPeak = _mscl.WirelessChannel_channel_7_peakToPeak - channel_8_peakToPeak = _mscl.WirelessChannel_channel_8_peakToPeak - channel_9_peakToPeak = _mscl.WirelessChannel_channel_9_peakToPeak - channel_10_peakToPeak = _mscl.WirelessChannel_channel_10_peakToPeak - channel_11_peakToPeak = _mscl.WirelessChannel_channel_11_peakToPeak - channel_12_peakToPeak = _mscl.WirelessChannel_channel_12_peakToPeak - channel_13_peakToPeak = _mscl.WirelessChannel_channel_13_peakToPeak - channel_14_peakToPeak = _mscl.WirelessChannel_channel_14_peakToPeak - channel_15_peakToPeak = _mscl.WirelessChannel_channel_15_peakToPeak - channel_16_peakToPeak = _mscl.WirelessChannel_channel_16_peakToPeak - channel_1_ips = _mscl.WirelessChannel_channel_1_ips - channel_2_ips = _mscl.WirelessChannel_channel_2_ips - channel_3_ips = _mscl.WirelessChannel_channel_3_ips - channel_4_ips = _mscl.WirelessChannel_channel_4_ips - channel_5_ips = _mscl.WirelessChannel_channel_5_ips - channel_6_ips = _mscl.WirelessChannel_channel_6_ips - channel_7_ips = _mscl.WirelessChannel_channel_7_ips - channel_8_ips = _mscl.WirelessChannel_channel_8_ips - channel_9_ips = _mscl.WirelessChannel_channel_9_ips - channel_10_ips = _mscl.WirelessChannel_channel_10_ips - channel_11_ips = _mscl.WirelessChannel_channel_11_ips - channel_12_ips = _mscl.WirelessChannel_channel_12_ips - channel_13_ips = _mscl.WirelessChannel_channel_13_ips - channel_14_ips = _mscl.WirelessChannel_channel_14_ips - channel_15_ips = _mscl.WirelessChannel_channel_15_ips - channel_16_ips = _mscl.WirelessChannel_channel_16_ips - channel_1_crestFactor = _mscl.WirelessChannel_channel_1_crestFactor - channel_2_crestFactor = _mscl.WirelessChannel_channel_2_crestFactor - channel_3_crestFactor = _mscl.WirelessChannel_channel_3_crestFactor - channel_4_crestFactor = _mscl.WirelessChannel_channel_4_crestFactor - channel_5_crestFactor = _mscl.WirelessChannel_channel_5_crestFactor - channel_6_crestFactor = _mscl.WirelessChannel_channel_6_crestFactor - channel_7_crestFactor = _mscl.WirelessChannel_channel_7_crestFactor - channel_8_crestFactor = _mscl.WirelessChannel_channel_8_crestFactor - channel_9_crestFactor = _mscl.WirelessChannel_channel_9_crestFactor - channel_10_crestFactor = _mscl.WirelessChannel_channel_10_crestFactor - channel_11_crestFactor = _mscl.WirelessChannel_channel_11_crestFactor - channel_12_crestFactor = _mscl.WirelessChannel_channel_12_crestFactor - channel_13_crestFactor = _mscl.WirelessChannel_channel_13_crestFactor - channel_14_crestFactor = _mscl.WirelessChannel_channel_14_crestFactor - channel_15_crestFactor = _mscl.WirelessChannel_channel_15_crestFactor - channel_16_crestFactor = _mscl.WirelessChannel_channel_16_crestFactor - channel_diag_syncAttempts = _mscl.WirelessChannel_channel_diag_syncAttempts - channel_diag_syncFailures = _mscl.WirelessChannel_channel_diag_syncFailures - channel_diag_secsSinceLastSync = _mscl.WirelessChannel_channel_diag_secsSinceLastSync - channel_beaconConflict = _mscl.WirelessChannel_channel_beaconConflict - channel_1_mean = _mscl.WirelessChannel_channel_1_mean - channel_2_mean = _mscl.WirelessChannel_channel_2_mean - channel_3_mean = _mscl.WirelessChannel_channel_3_mean - channel_4_mean = _mscl.WirelessChannel_channel_4_mean - channel_5_mean = _mscl.WirelessChannel_channel_5_mean - channel_6_mean = _mscl.WirelessChannel_channel_6_mean - channel_7_mean = _mscl.WirelessChannel_channel_7_mean - channel_8_mean = _mscl.WirelessChannel_channel_8_mean - channel_9_mean = _mscl.WirelessChannel_channel_9_mean - channel_10_mean = _mscl.WirelessChannel_channel_10_mean - channel_11_mean = _mscl.WirelessChannel_channel_11_mean - channel_12_mean = _mscl.WirelessChannel_channel_12_mean - channel_13_mean = _mscl.WirelessChannel_channel_13_mean - channel_14_mean = _mscl.WirelessChannel_channel_14_mean - channel_15_mean = _mscl.WirelessChannel_channel_15_mean - channel_16_mean = _mscl.WirelessChannel_channel_16_mean - channel_1_mmps = _mscl.WirelessChannel_channel_1_mmps - channel_2_mmps = _mscl.WirelessChannel_channel_2_mmps - channel_3_mmps = _mscl.WirelessChannel_channel_3_mmps - channel_4_mmps = _mscl.WirelessChannel_channel_4_mmps - channel_5_mmps = _mscl.WirelessChannel_channel_5_mmps - channel_6_mmps = _mscl.WirelessChannel_channel_6_mmps - channel_7_mmps = _mscl.WirelessChannel_channel_7_mmps - channel_8_mmps = _mscl.WirelessChannel_channel_8_mmps - channel_9_mmps = _mscl.WirelessChannel_channel_9_mmps - channel_10_mmps = _mscl.WirelessChannel_channel_10_mmps - channel_11_mmps = _mscl.WirelessChannel_channel_11_mmps - channel_12_mmps = _mscl.WirelessChannel_channel_12_mmps - channel_13_mmps = _mscl.WirelessChannel_channel_13_mmps - channel_14_mmps = _mscl.WirelessChannel_channel_14_mmps - channel_15_mmps = _mscl.WirelessChannel_channel_15_mmps - channel_16_mmps = _mscl.WirelessChannel_channel_16_mmps - channel_diag_memoryFull = _mscl.WirelessChannel_channel_diag_memoryFull - - def __init__(self, *args): - _mscl.WirelessChannel_swiginit(self, _mscl.new_WirelessChannel(*args)) - - def channelNumber(self): - return _mscl.WirelessChannel_channelNumber(self) - - def id(self): - return _mscl.WirelessChannel_id(self) - - def type(self): - return _mscl.WirelessChannel_type(self) - - def description(self): - return _mscl.WirelessChannel_description(self) - - def adcResolution(self): - return _mscl.WirelessChannel_adcResolution(self) - - def adcMaxValue(self): - return _mscl.WirelessChannel_adcMaxValue(self) - - def name(self): - return _mscl.WirelessChannel_name(self) - __swig_destroy__ = _mscl.delete_WirelessChannel - -# Register WirelessChannel in _mscl: -_mscl.WirelessChannel_swigregister(WirelessChannel) - -class WirelessDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessDataPoint_swiginit(self, _mscl.new_WirelessDataPoint()) - - def channelId(self): - return _mscl.WirelessDataPoint_channelId(self) - - def channelNumber(self): - return _mscl.WirelessDataPoint_channelNumber(self) - - def channelName(self): - return _mscl.WirelessDataPoint_channelName(self) - __swig_destroy__ = _mscl.delete_WirelessDataPoint - -# Register WirelessDataPoint in _mscl: -_mscl.WirelessDataPoint_swigregister(WirelessDataPoint) - -class DataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - samplingType_NonSync = _mscl.DataSweep_samplingType_NonSync - samplingType_NonSync_Buffered = _mscl.DataSweep_samplingType_NonSync_Buffered - samplingType_SyncSampling = _mscl.DataSweep_samplingType_SyncSampling - samplingType_SyncSampling_Burst = _mscl.DataSweep_samplingType_SyncSampling_Burst - samplingType_AsyncDigital = _mscl.DataSweep_samplingType_AsyncDigital - samplingType_AsyncDigitalAnalog = _mscl.DataSweep_samplingType_AsyncDigitalAnalog - samplingType_SHM = _mscl.DataSweep_samplingType_SHM - samplingType_BeaconEcho = _mscl.DataSweep_samplingType_BeaconEcho - samplingType_RfSweep = _mscl.DataSweep_samplingType_RfSweep - samplingType_Diagnostic = _mscl.DataSweep_samplingType_Diagnostic - - def __init__(self): - _mscl.DataSweep_swiginit(self, _mscl.new_DataSweep()) - - def timestamp(self): - return _mscl.DataSweep_timestamp(self) - - def tick(self): - return _mscl.DataSweep_tick(self) - - def sampleRate(self): - return _mscl.DataSweep_sampleRate(self) - - def nodeAddress(self): - return _mscl.DataSweep_nodeAddress(self) - - def data(self): - return _mscl.DataSweep_data(self) - - def samplingType(self): - return _mscl.DataSweep_samplingType(self) - - def nodeRssi(self): - return _mscl.DataSweep_nodeRssi(self) - - def baseRssi(self): - return _mscl.DataSweep_baseRssi(self) - - def frequency(self): - return _mscl.DataSweep_frequency(self) - - def calApplied(self): - return _mscl.DataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_DataSweep - -# Register DataSweep in _mscl: -_mscl.DataSweep_swigregister(DataSweep) - -class BaseStationAnalogPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationAnalogPair_swiginit(self, _mscl.new_BaseStationAnalogPair()) - - @staticmethod - def Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - - @staticmethod - def NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - - def nodeAddress(self, *args): - return _mscl.BaseStationAnalogPair_nodeAddress(self, *args) - - def nodeChannel(self, *args): - return _mscl.BaseStationAnalogPair_nodeChannel(self, *args) - - def expectFloatData(self, *args): - return _mscl.BaseStationAnalogPair_expectFloatData(self, *args) - - def outputVal_0V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_0V(self, *args) - - def outputVal_3V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_3V(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationAnalogPair - -# Register BaseStationAnalogPair in _mscl: -_mscl.BaseStationAnalogPair_swigregister(BaseStationAnalogPair) -BaseStationAnalogPair.CHANNEL_NOT_FLOAT = _mscl.cvar.BaseStationAnalogPair_CHANNEL_NOT_FLOAT - -def BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - -def BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - -class BaseStationButton(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - btn_nodeSleep = _mscl.BaseStationButton_btn_nodeSleep - btn_nodeStop = _mscl.BaseStationButton_btn_nodeStop - btn_enableBeacon = _mscl.BaseStationButton_btn_enableBeacon - btn_disableBeacon = _mscl.BaseStationButton_btn_disableBeacon - btn_nodeNonSyncSampling = _mscl.BaseStationButton_btn_nodeNonSyncSampling - btn_nodeSyncSampling = _mscl.BaseStationButton_btn_nodeSyncSampling - btn_nodeArmedDatalogging = _mscl.BaseStationButton_btn_nodeArmedDatalogging - btn_cyclePower = _mscl.BaseStationButton_btn_cyclePower - btn_disabled = _mscl.BaseStationButton_btn_disabled - - def __init__(self, *args): - _mscl.BaseStationButton_swiginit(self, _mscl.new_BaseStationButton(*args)) - - def command(self, *args): - return _mscl.BaseStationButton_command(self, *args) - - def nodeAddress(self, *args): - return _mscl.BaseStationButton_nodeAddress(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationButton - -# Register BaseStationButton in _mscl: -_mscl.BaseStationButton_swigregister(BaseStationButton) - -class BaseStationConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationConfig_swiginit(self, _mscl.new_BaseStationConfig()) - - def transmitPower(self, *args): - return _mscl.BaseStationConfig_transmitPower(self, *args) - - def communicationProtocol(self, *args): - return _mscl.BaseStationConfig_communicationProtocol(self, *args) - - def buttonLongPress(self, *args): - return _mscl.BaseStationConfig_buttonLongPress(self, *args) - - def buttonShortPress(self, *args): - return _mscl.BaseStationConfig_buttonShortPress(self, *args) - - def analogPairingEnable(self, *args): - return _mscl.BaseStationConfig_analogPairingEnable(self, *args) - - def analogTimeoutTime(self, *args): - return _mscl.BaseStationConfig_analogTimeoutTime(self, *args) - - def analogTimeoutVoltage(self, *args): - return _mscl.BaseStationConfig_analogTimeoutVoltage(self, *args) - - def analogExceedanceEnable(self, *args): - return _mscl.BaseStationConfig_analogExceedanceEnable(self, *args) - - def analogPairing(self, *args): - return _mscl.BaseStationConfig_analogPairing(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationConfig - -# Register BaseStationConfig in _mscl: -_mscl.BaseStationConfig_swigregister(BaseStationConfig) - -class BeaconStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BeaconStatus_swiginit(self, _mscl.new_BeaconStatus(*args)) - - def enabled(self): - return _mscl.BeaconStatus_enabled(self) - - def timestamp(self): - return _mscl.BeaconStatus_timestamp(self) - __swig_destroy__ = _mscl.delete_BeaconStatus - -# Register BeaconStatus in _mscl: -_mscl.BeaconStatus_swigregister(BeaconStatus) - -class BaseStationInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region, asppVer_lxrs, asppVer_lxrsPlus): - _mscl.BaseStationInfo_swiginit(self, _mscl.new_BaseStationInfo(fw, model, region, asppVer_lxrs, asppVer_lxrsPlus)) - __swig_destroy__ = _mscl.delete_BaseStationInfo - -# Register BaseStationInfo in _mscl: -_mscl.BaseStationInfo_swigregister(BaseStationInfo) - -class BaseStation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_BASE_COMMANDS_DEFAULT_TIMEOUT - ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT - BROADCAST_NODE_ADDRESS = _mscl.BaseStation_BROADCAST_NODE_ADDRESS - BROADCAST_NODE_ADDRESS_ASPP3 = _mscl.BaseStation_BROADCAST_NODE_ADDRESS_ASPP3 - - def __init__(self, *args): - _mscl.BaseStation_swiginit(self, _mscl.new_BaseStation(*args)) - __swig_destroy__ = _mscl.delete_BaseStation - - @staticmethod - def Mock(*args): - return _mscl.BaseStation_Mock(*args) - - @staticmethod - def deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - - def connection(self): - return _mscl.BaseStation_connection(self) - - def features(self): - return _mscl.BaseStation_features(self) - - def lastCommunicationTime(self): - return _mscl.BaseStation_lastCommunicationTime(self) - - def readWriteRetries(self, *args): - return _mscl.BaseStation_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.BaseStation_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.BaseStation_clearEepromCache(self) - - def frequency(self): - return _mscl.BaseStation_frequency(self) - - def communicationProtocol(self): - return _mscl.BaseStation_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.BaseStation_firmwareVersion(self) - - def model(self): - return _mscl.BaseStation_model(self) - - def serial(self): - return _mscl.BaseStation_serial(self) - - def name(self): - return _mscl.BaseStation_name(self) - - def microcontroller(self): - return _mscl.BaseStation_microcontroller(self) - - def regionCode(self): - return _mscl.BaseStation_regionCode(self) - - def getData(self, timeout=0, maxSweeps=0): - return _mscl.BaseStation_getData(self, timeout, maxSweeps) - - def totalData(self): - return _mscl.BaseStation_totalData(self) - - def getNodeDiscoveries(self): - return _mscl.BaseStation_getNodeDiscoveries(self) - - def timeout(self, *args): - return _mscl.BaseStation_timeout(self, *args) - - def ping(self): - return _mscl.BaseStation_ping(self) - - def readEeprom(self, eepromAddress): - return _mscl.BaseStation_readEeprom(self, eepromAddress) - - def writeEeprom(self, eepromAddress, value): - return _mscl.BaseStation_writeEeprom(self, eepromAddress, value) - - def enableBeacon(self, *args): - return _mscl.BaseStation_enableBeacon(self, *args) - - def disableBeacon(self): - return _mscl.BaseStation_disableBeacon(self) - - def beaconStatus(self): - return _mscl.BaseStation_beaconStatus(self) - - def startRfSweepMode(self, *args): - return _mscl.BaseStation_startRfSweepMode(self, *args) - - def cyclePower(self, checkComm=True): - return _mscl.BaseStation_cyclePower(self, checkComm) - - def resetRadio(self): - return _mscl.BaseStation_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.BaseStation_changeFrequency(self, frequency) - - def broadcastSetToIdle(self): - return _mscl.BaseStation_broadcastSetToIdle(self) - - def verifyConfig(self, config, outIssues): - return _mscl.BaseStation_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.BaseStation_applyConfig(self, config) - - def getTransmitPower(self): - return _mscl.BaseStation_getTransmitPower(self) - - def getButtonLongPress(self, buttonNumber): - return _mscl.BaseStation_getButtonLongPress(self, buttonNumber) - - def getButtonShortPress(self, buttonNumber): - return _mscl.BaseStation_getButtonShortPress(self, buttonNumber) - - def getAnalogPairingEnabled(self): - return _mscl.BaseStation_getAnalogPairingEnabled(self) - - def getAnalogTimeoutTime(self): - return _mscl.BaseStation_getAnalogTimeoutTime(self) - - def getAnalogTimeoutVoltage(self): - return _mscl.BaseStation_getAnalogTimeoutVoltage(self) - - def getAnalogExceedanceEnabled(self): - return _mscl.BaseStation_getAnalogExceedanceEnabled(self) - - def getAnalogPair(self, portNumber): - return _mscl.BaseStation_getAnalogPair(self, portNumber) - -# Register BaseStation in _mscl: -_mscl.BaseStation_swigregister(BaseStation) - -def BaseStation_Mock(*args): - return _mscl.BaseStation_Mock(*args) - -def BaseStation_deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - -class LoggedDataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LoggedDataSweep_swiginit(self, _mscl.new_LoggedDataSweep(*args)) - - def timestamp(self): - return _mscl.LoggedDataSweep_timestamp(self) - - def tick(self): - return _mscl.LoggedDataSweep_tick(self) - - def data(self): - return _mscl.LoggedDataSweep_data(self) - - def calApplied(self): - return _mscl.LoggedDataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweep - -# Register LoggedDataSweep in _mscl: -_mscl.LoggedDataSweep_swigregister(LoggedDataSweep) - -class RadioFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.RadioFeatures_swiginit(self, _mscl.new_RadioFeatures(*args)) - - def extendedRange(self): - return _mscl.RadioFeatures_extendedRange(self) - __swig_destroy__ = _mscl.delete_RadioFeatures - -# Register RadioFeatures in _mscl: -_mscl.RadioFeatures_swigregister(RadioFeatures) - -class WirelessNodeConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessNodeConfig_swiginit(self, _mscl.new_WirelessNodeConfig()) - SENSOR_DELAY_ALWAYS_ON = _mscl.WirelessNodeConfig_SENSOR_DELAY_ALWAYS_ON - - def defaultMode(self, *args): - return _mscl.WirelessNodeConfig_defaultMode(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.WirelessNodeConfig_inactivityTimeout(self, *args) - - def checkRadioInterval(self, *args): - return _mscl.WirelessNodeConfig_checkRadioInterval(self, *args) - - def transmitPower(self, *args): - return _mscl.WirelessNodeConfig_transmitPower(self, *args) - - def samplingMode(self, *args): - return _mscl.WirelessNodeConfig_samplingMode(self, *args) - - def sampleRate(self, *args): - return _mscl.WirelessNodeConfig_sampleRate(self, *args) - - def activeChannels(self, *args): - return _mscl.WirelessNodeConfig_activeChannels(self, *args) - - def numSweeps(self, *args): - return _mscl.WirelessNodeConfig_numSweeps(self, *args) - - def unlimitedDuration(self, *args): - return _mscl.WirelessNodeConfig_unlimitedDuration(self, *args) - - def dataFormat(self, *args): - return _mscl.WirelessNodeConfig_dataFormat(self, *args) - - def dataCollectionMethod(self, *args): - return _mscl.WirelessNodeConfig_dataCollectionMethod(self, *args) - - def timeBetweenBursts(self, *args): - return _mscl.WirelessNodeConfig_timeBetweenBursts(self, *args) - - def lostBeaconTimeout(self, *args): - return _mscl.WirelessNodeConfig_lostBeaconTimeout(self, *args) - - def pullUpResistor(self, *args): - return _mscl.WirelessNodeConfig_pullUpResistor(self, *args) - - def inputRange(self, *args): - return _mscl.WirelessNodeConfig_inputRange(self, *args) - - def hardwareOffset(self, *args): - return _mscl.WirelessNodeConfig_hardwareOffset(self, *args) - - def antiAliasingFilter(self, *args): - return _mscl.WirelessNodeConfig_antiAliasingFilter(self, *args) - - def cfcFilterConfig(self, *args): - return _mscl.WirelessNodeConfig_cfcFilterConfig(self, *args) - - def lowPassFilter(self, *args): - return _mscl.WirelessNodeConfig_lowPassFilter(self, *args) - - def highPassFilter(self, *args): - return _mscl.WirelessNodeConfig_highPassFilter(self, *args) - - def gaugeFactor(self, *args): - return _mscl.WirelessNodeConfig_gaugeFactor(self, *args) - - def gaugeResistance(self, *args): - return _mscl.WirelessNodeConfig_gaugeResistance(self, *args) - - def excitationVoltage(self, *args): - return _mscl.WirelessNodeConfig_excitationVoltage(self, *args) - - def numActiveGauges(self, *args): - return _mscl.WirelessNodeConfig_numActiveGauges(self, *args) - - def lowBatteryThreshold(self, *args): - return _mscl.WirelessNodeConfig_lowBatteryThreshold(self, *args) - - def linearEquation(self, *args): - return _mscl.WirelessNodeConfig_linearEquation(self, *args) - - def unit(self, *args): - return _mscl.WirelessNodeConfig_unit(self, *args) - - def equationType(self, *args): - return _mscl.WirelessNodeConfig_equationType(self, *args) - - def filterSettlingTime(self, *args): - return _mscl.WirelessNodeConfig_filterSettlingTime(self, *args) - - def thermocoupleType(self, *args): - return _mscl.WirelessNodeConfig_thermocoupleType(self, *args) - - def tempSensorOptions(self, *args): - return _mscl.WirelessNodeConfig_tempSensorOptions(self, *args) - - def debounceFilter(self, *args): - return _mscl.WirelessNodeConfig_debounceFilter(self, *args) - - def fatigueOptions(self, *args): - return _mscl.WirelessNodeConfig_fatigueOptions(self, *args) - - def histogramOptions(self, *args): - return _mscl.WirelessNodeConfig_histogramOptions(self, *args) - - def activitySense(self, *args): - return _mscl.WirelessNodeConfig_activitySense(self, *args) - - def eventTriggerOptions(self, *args): - return _mscl.WirelessNodeConfig_eventTriggerOptions(self, *args) - - def diagnosticInterval(self, *args): - return _mscl.WirelessNodeConfig_diagnosticInterval(self, *args) - - def storageLimitMode(self, *args): - return _mscl.WirelessNodeConfig_storageLimitMode(self, *args) - - def sensorDelay(self, *args): - return _mscl.WirelessNodeConfig_sensorDelay(self, *args) - - def dataMode(self, *args): - return _mscl.WirelessNodeConfig_dataMode(self, *args) - - def derivedDataRate(self, *args): - return _mscl.WirelessNodeConfig_derivedDataRate(self, *args) - - def derivedChannelMask(self, *args): - return _mscl.WirelessNodeConfig_derivedChannelMask(self, *args) - - def derivedVelocityUnit(self, *args): - return _mscl.WirelessNodeConfig_derivedVelocityUnit(self, *args) - - def communicationProtocol(self, *args): - return _mscl.WirelessNodeConfig_communicationProtocol(self, *args) - - def sensorOutputMode(self, *args): - return _mscl.WirelessNodeConfig_sensorOutputMode(self, *args) - - @staticmethod - def flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - - @staticmethod - def flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - __swig_destroy__ = _mscl.delete_WirelessNodeConfig - -# Register WirelessNodeConfig in _mscl: -_mscl.WirelessNodeConfig_swigregister(WirelessNodeConfig) - -def WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - -def WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - -class AutoBalanceResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoBalanceResult_swiginit(self, _mscl.new_AutoBalanceResult()) - - def errorCode(self): - return _mscl.AutoBalanceResult_errorCode(self) - - def percentAchieved(self): - return _mscl.AutoBalanceResult_percentAchieved(self) - - def hardwareOffset(self): - return _mscl.AutoBalanceResult_hardwareOffset(self) - __swig_destroy__ = _mscl.delete_AutoBalanceResult - -# Register AutoBalanceResult in _mscl: -_mscl.AutoBalanceResult_swigregister(AutoBalanceResult) - -class ShuntCalCmdInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - useInternalShunt = property(_mscl.ShuntCalCmdInfo_useInternalShunt_get, _mscl.ShuntCalCmdInfo_useInternalShunt_set) - numActiveGauges = property(_mscl.ShuntCalCmdInfo_numActiveGauges_get, _mscl.ShuntCalCmdInfo_numActiveGauges_set) - gaugeResistance = property(_mscl.ShuntCalCmdInfo_gaugeResistance_get, _mscl.ShuntCalCmdInfo_gaugeResistance_set) - shuntResistance = property(_mscl.ShuntCalCmdInfo_shuntResistance_get, _mscl.ShuntCalCmdInfo_shuntResistance_set) - gaugeFactor = property(_mscl.ShuntCalCmdInfo_gaugeFactor_get, _mscl.ShuntCalCmdInfo_gaugeFactor_set) - inputRange = property(_mscl.ShuntCalCmdInfo_inputRange_get, _mscl.ShuntCalCmdInfo_inputRange_set) - hardwareOffset = property(_mscl.ShuntCalCmdInfo_hardwareOffset_get, _mscl.ShuntCalCmdInfo_hardwareOffset_set) - excitationVoltage = property(_mscl.ShuntCalCmdInfo_excitationVoltage_get, _mscl.ShuntCalCmdInfo_excitationVoltage_set) - - def __init__(self): - _mscl.ShuntCalCmdInfo_swiginit(self, _mscl.new_ShuntCalCmdInfo()) - __swig_destroy__ = _mscl.delete_ShuntCalCmdInfo - -# Register ShuntCalCmdInfo in _mscl: -_mscl.ShuntCalCmdInfo_swigregister(ShuntCalCmdInfo) - -class AutoCalResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_AutoCalResult - - def completionFlag(self): - return _mscl.AutoCalResult_completionFlag(self) - -# Register AutoCalResult in _mscl: -_mscl.AutoCalResult_swigregister(AutoCalResult) - -class AutoCalResult_shmLink(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink_swiginit(self, _mscl.new_AutoCalResult_shmLink()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh3(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink_offsetCh1(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink_offsetCh2(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink_temperature(self) - -# Register AutoCalResult_shmLink in _mscl: -_mscl.AutoCalResult_shmLink_swigregister(AutoCalResult_shmLink) - -class AutoCalResult_shmLink201(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink201_swiginit(self, _mscl.new_AutoCalResult_shmLink201()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink201 - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh3(self) - - def slopeCh1(self): - return _mscl.AutoCalResult_shmLink201_slopeCh1(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink201_offsetCh1(self) - - def slopeCh2(self): - return _mscl.AutoCalResult_shmLink201_slopeCh2(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink201_offsetCh2(self) - - def slopeCh3(self): - return _mscl.AutoCalResult_shmLink201_slopeCh3(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink201_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink201_temperature(self) - -# Register AutoCalResult_shmLink201 in _mscl: -_mscl.AutoCalResult_shmLink201_swigregister(AutoCalResult_shmLink201) - -class AutoShuntCalResult(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoShuntCalResult_swiginit(self, _mscl.new_AutoShuntCalResult()) - __swig_destroy__ = _mscl.delete_AutoShuntCalResult - - def errorFlag(self): - return _mscl.AutoShuntCalResult_errorFlag(self) - - def slope(self): - return _mscl.AutoShuntCalResult_slope(self) - - def offset(self): - return _mscl.AutoShuntCalResult_offset(self) - - def baseMedian(self): - return _mscl.AutoShuntCalResult_baseMedian(self) - - def baseMin(self): - return _mscl.AutoShuntCalResult_baseMin(self) - - def baseMax(self): - return _mscl.AutoShuntCalResult_baseMax(self) - - def shuntMedian(self): - return _mscl.AutoShuntCalResult_shuntMedian(self) - - def shuntMin(self): - return _mscl.AutoShuntCalResult_shuntMin(self) - - def shuntMax(self): - return _mscl.AutoShuntCalResult_shuntMax(self) - -# Register AutoShuntCalResult in _mscl: -_mscl.AutoShuntCalResult_swigregister(AutoShuntCalResult) - -class PingResponse(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PingResponse_swiginit(self, _mscl.new_PingResponse()) - - def success(self): - return _mscl.PingResponse_success(self) - - def nodeRssi(self): - return _mscl.PingResponse_nodeRssi(self) - - def baseRssi(self): - return _mscl.PingResponse_baseRssi(self) - __swig_destroy__ = _mscl.delete_PingResponse - -# Register PingResponse in _mscl: -_mscl.PingResponse_swigregister(PingResponse) - -class SetToIdleStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - setToIdleResult_success = _mscl.SetToIdleStatus_setToIdleResult_success - setToIdleResult_canceled = _mscl.SetToIdleStatus_setToIdleResult_canceled - setToIdleResult_failed = _mscl.SetToIdleStatus_setToIdleResult_failed - setToIdleResult_notCompleted = _mscl.SetToIdleStatus_setToIdleResult_notCompleted - - def result(self): - return _mscl.SetToIdleStatus_result(self) - - def complete(self, timeout=10): - return _mscl.SetToIdleStatus_complete(self, timeout) - - def cancel(self): - return _mscl.SetToIdleStatus_cancel(self) - __swig_destroy__ = _mscl.delete_SetToIdleStatus - -# Register SetToIdleStatus in _mscl: -_mscl.SetToIdleStatus_swigregister(SetToIdleStatus) - -class NodeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region): - _mscl.NodeInfo_swiginit(self, _mscl.new_NodeInfo(fw, model, region)) - __swig_destroy__ = _mscl.delete_NodeInfo - -# Register NodeInfo in _mscl: -_mscl.NodeInfo_swigregister(NodeInfo) - -class WirelessNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, nodeAddress, basestation): - _mscl.WirelessNode_swiginit(self, _mscl.new_WirelessNode(nodeAddress, basestation)) - __swig_destroy__ = _mscl.delete_WirelessNode - - @staticmethod - def Mock(*args): - return _mscl.WirelessNode_Mock(*args) - - @staticmethod - def deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - - def features(self): - return _mscl.WirelessNode_features(self) - - def lastCommunicationTime(self): - return _mscl.WirelessNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.WirelessNode_lastDeviceState(self) - - def setBaseStation(self, basestation): - return _mscl.WirelessNode_setBaseStation(self, basestation) - - def getBaseStation(self): - return _mscl.WirelessNode_getBaseStation(self) - - def hasBaseStation(self, basestation): - return _mscl.WirelessNode_hasBaseStation(self, basestation) - - def useGroupRead(self, useGroup): - return _mscl.WirelessNode_useGroupRead(self, useGroup) - - def readWriteRetries(self, *args): - return _mscl.WirelessNode_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.WirelessNode_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.WirelessNode_clearEepromCache(self) - - def updateEepromCacheFromNodeDiscovery(self, nodeDisovery): - return _mscl.WirelessNode_updateEepromCacheFromNodeDiscovery(self, nodeDisovery) - - def getEepromCache(self): - return _mscl.WirelessNode_getEepromCache(self) - - def nodeAddress(self): - return _mscl.WirelessNode_nodeAddress(self) - - def frequency(self): - return _mscl.WirelessNode_frequency(self) - - def communicationProtocol(self): - return _mscl.WirelessNode_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.WirelessNode_firmwareVersion(self) - - def model(self): - return _mscl.WirelessNode_model(self) - - def serial(self): - return _mscl.WirelessNode_serial(self) - - def name(self): - return _mscl.WirelessNode_name(self) - - def microcontroller(self): - return _mscl.WirelessNode_microcontroller(self) - - def radioFeatures(self): - return _mscl.WirelessNode_radioFeatures(self) - - def dataStorageSize(self): - return _mscl.WirelessNode_dataStorageSize(self) - - def regionCode(self): - return _mscl.WirelessNode_regionCode(self) - - def ping(self): - return _mscl.WirelessNode_ping(self) - - def sleep(self): - return _mscl.WirelessNode_sleep(self) - - def cyclePower(self): - return _mscl.WirelessNode_cyclePower(self) - - def resetRadio(self): - return _mscl.WirelessNode_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.WirelessNode_changeFrequency(self, frequency) - - def setToIdle(self): - return _mscl.WirelessNode_setToIdle(self) - - def erase(self): - return _mscl.WirelessNode_erase(self) - - def startNonSyncSampling(self): - return _mscl.WirelessNode_startNonSyncSampling(self) - - def resendStartSyncSampling(self): - return _mscl.WirelessNode_resendStartSyncSampling(self) - - def clearHistogram(self): - return _mscl.WirelessNode_clearHistogram(self) - - def autoBalance(self, mask, targetPercent): - return _mscl.WirelessNode_autoBalance(self, mask, targetPercent) - - def autoCal_shmLink(self): - return _mscl.WirelessNode_autoCal_shmLink(self) - - def autoCal_shmLink201(self): - return _mscl.WirelessNode_autoCal_shmLink201(self) - - def autoShuntCal(self, mask, commandInfo): - return _mscl.WirelessNode_autoShuntCal(self, mask, commandInfo) - - def poll(self, mask): - return _mscl.WirelessNode_poll(self, mask) - - def readEeprom(self, location): - return _mscl.WirelessNode_readEeprom(self, location) - - def writeEeprom(self, location, value): - return _mscl.WirelessNode_writeEeprom(self, location, value) - - def getDiagnosticInfo(self): - return _mscl.WirelessNode_getDiagnosticInfo(self) - - def testCommunicationProtocol(self, protocol): - return _mscl.WirelessNode_testCommunicationProtocol(self, protocol) - - def verifyConfig(self, config, outIssues): - return _mscl.WirelessNode_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.WirelessNode_applyConfig(self, config) - - def getNumDatalogSessions(self): - return _mscl.WirelessNode_getNumDatalogSessions(self) - - def percentFull(self): - return _mscl.WirelessNode_percentFull(self) - - def getDefaultMode(self): - return _mscl.WirelessNode_getDefaultMode(self) - - def getInactivityTimeout(self): - return _mscl.WirelessNode_getInactivityTimeout(self) - - def getCheckRadioInterval(self): - return _mscl.WirelessNode_getCheckRadioInterval(self) - - def getTransmitPower(self): - return _mscl.WirelessNode_getTransmitPower(self) - - def getSamplingMode(self): - return _mscl.WirelessNode_getSamplingMode(self) - - def getActiveChannels(self): - return _mscl.WirelessNode_getActiveChannels(self) - - def getSampleRate(self): - return _mscl.WirelessNode_getSampleRate(self) - - def getNumSweeps(self): - return _mscl.WirelessNode_getNumSweeps(self) - - def getUnlimitedDuration(self): - return _mscl.WirelessNode_getUnlimitedDuration(self) - - def getDataFormat(self): - return _mscl.WirelessNode_getDataFormat(self) - - def getDataCollectionMethod(self): - return _mscl.WirelessNode_getDataCollectionMethod(self) - - def getTimeBetweenBursts(self): - return _mscl.WirelessNode_getTimeBetweenBursts(self) - - def getLostBeaconTimeout(self): - return _mscl.WirelessNode_getLostBeaconTimeout(self) - - def getInputRange(self, mask): - return _mscl.WirelessNode_getInputRange(self, mask) - - def getHardwareOffset(self, mask): - return _mscl.WirelessNode_getHardwareOffset(self, mask) - - def getAntiAliasingFilter(self, mask): - return _mscl.WirelessNode_getAntiAliasingFilter(self, mask) - - def getCfcFilterConfiguration(self): - return _mscl.WirelessNode_getCfcFilterConfiguration(self) - - def getLowPassFilter(self, mask): - return _mscl.WirelessNode_getLowPassFilter(self, mask) - - def getHighPassFilter(self, mask): - return _mscl.WirelessNode_getHighPassFilter(self, mask) - - def getDebounceFilter(self, mask): - return _mscl.WirelessNode_getDebounceFilter(self, mask) - - def getPullUpResistor(self, mask): - return _mscl.WirelessNode_getPullUpResistor(self, mask) - - def getSensorOutputMode(self): - return _mscl.WirelessNode_getSensorOutputMode(self) - - def getGaugeFactor(self, mask): - return _mscl.WirelessNode_getGaugeFactor(self, mask) - - def getExcitationVoltage(self): - return _mscl.WirelessNode_getExcitationVoltage(self) - - def getAdcVoltageRef(self): - return _mscl.WirelessNode_getAdcVoltageRef(self) - - def getGainAmplifierVoltageRef(self): - return _mscl.WirelessNode_getGainAmplifierVoltageRef(self) - - def getGaugeResistance(self): - return _mscl.WirelessNode_getGaugeResistance(self) - - def getNumActiveGauges(self): - return _mscl.WirelessNode_getNumActiveGauges(self) - - def getLowBatteryThreshold(self): - return _mscl.WirelessNode_getLowBatteryThreshold(self) - - def getLinearEquation(self, mask): - return _mscl.WirelessNode_getLinearEquation(self, mask) - - def getUnit(self, mask): - return _mscl.WirelessNode_getUnit(self, mask) - - def getEquationType(self, mask): - return _mscl.WirelessNode_getEquationType(self, mask) - - def getFactoryCalibrationLinearEq(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationLinearEq(self, mask) - - def getFactoryCalibrationUnit(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationUnit(self, mask) - - def getFactoryCalibrationEqType(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationEqType(self, mask) - - def getFilterSettlingTime(self, mask): - return _mscl.WirelessNode_getFilterSettlingTime(self, mask) - - def getThermocoupleType(self, mask): - return _mscl.WirelessNode_getThermocoupleType(self, mask) - - def getTempSensorOptions(self, mask): - return _mscl.WirelessNode_getTempSensorOptions(self, mask) - - def getFatigueOptions(self): - return _mscl.WirelessNode_getFatigueOptions(self) - - def getHistogramOptions(self): - return _mscl.WirelessNode_getHistogramOptions(self) - - def getActivitySense(self): - return _mscl.WirelessNode_getActivitySense(self) - - def getEventTriggerOptions(self): - return _mscl.WirelessNode_getEventTriggerOptions(self) - - def getDiagnosticInterval(self): - return _mscl.WirelessNode_getDiagnosticInterval(self) - - def getStorageLimitMode(self): - return _mscl.WirelessNode_getStorageLimitMode(self) - - def getSensorDelay(self): - return _mscl.WirelessNode_getSensorDelay(self) - - def getDataMode(self): - return _mscl.WirelessNode_getDataMode(self) - - def getDerivedDataRate(self): - return _mscl.WirelessNode_getDerivedDataRate(self) - - def getDerivedChannelMask(self, category): - return _mscl.WirelessNode_getDerivedChannelMask(self, category) - - def getDerivedVelocityUnit(self): - return _mscl.WirelessNode_getDerivedVelocityUnit(self) - -# Register WirelessNode in _mscl: -_mscl.WirelessNode_swigregister(WirelessNode) - -def WirelessNode_Mock(*args): - return _mscl.WirelessNode_Mock(*args) - -def WirelessNode_deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - -class DatalogDownloader(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.DatalogDownloader_swiginit(self, _mscl.new_DatalogDownloader(*args)) - __swig_destroy__ = _mscl.delete_DatalogDownloader - - def complete(self): - return _mscl.DatalogDownloader_complete(self) - - def percentComplete(self): - return _mscl.DatalogDownloader_percentComplete(self) - - def getNextData(self): - return _mscl.DatalogDownloader_getNextData(self) - - def metaDataUpdated(self): - return _mscl.DatalogDownloader_metaDataUpdated(self) - - def calCoefficientsUpdated(self): - return _mscl.DatalogDownloader_calCoefficientsUpdated(self) - - def startOfSession(self): - return _mscl.DatalogDownloader_startOfSession(self) - - def sessionIndex(self): - return _mscl.DatalogDownloader_sessionIndex(self) - - def sampleRate(self): - return _mscl.DatalogDownloader_sampleRate(self) - - def userString(self): - return _mscl.DatalogDownloader_userString(self) - - def calCoefficients(self): - return _mscl.DatalogDownloader_calCoefficients(self) - -# Register DatalogDownloader in _mscl: -_mscl.DatalogDownloader_swigregister(DatalogDownloader) - -class ArmedDataloggingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.ArmedDataloggingNetwork_swiginit(self, _mscl.new_ArmedDataloggingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.ArmedDataloggingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.ArmedDataloggingNetwork_removeNode(self, nodeAddress) - - def startSampling(self): - return _mscl.ArmedDataloggingNetwork_startSampling(self) - __swig_destroy__ = _mscl.delete_ArmedDataloggingNetwork - -# Register ArmedDataloggingNetwork in _mscl: -_mscl.ArmedDataloggingNetwork_swigregister(ArmedDataloggingNetwork) - -class SyncNetworkInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - status_OK = _mscl.SyncNetworkInfo_status_OK - status_PoorCommunication = _mscl.SyncNetworkInfo_status_PoorCommunication - status_DoesNotFit = _mscl.SyncNetworkInfo_status_DoesNotFit - status_Contention = _mscl.SyncNetworkInfo_status_Contention - - def __init__(self, node): - _mscl.SyncNetworkInfo_swiginit(self, _mscl.new_SyncNetworkInfo(node)) - - def status(self): - return _mscl.SyncNetworkInfo_status(self) - - def startedSampling(self): - return _mscl.SyncNetworkInfo_startedSampling(self) - - def configurationApplied(self): - return _mscl.SyncNetworkInfo_configurationApplied(self) - - def percentBandwidth(self): - return _mscl.SyncNetworkInfo_percentBandwidth(self) - - def tdmaAddress(self): - return _mscl.SyncNetworkInfo_tdmaAddress(self) - - def maxTdmaAddress(self): - return _mscl.SyncNetworkInfo_maxTdmaAddress(self) - - def transmissionPerGroup(self): - return _mscl.SyncNetworkInfo_transmissionPerGroup(self) - - def groupSize(self): - return _mscl.SyncNetworkInfo_groupSize(self) - __swig_destroy__ = _mscl.delete_SyncNetworkInfo - -# Register SyncNetworkInfo in _mscl: -_mscl.SyncNetworkInfo_swigregister(SyncNetworkInfo) - -class SyncSamplingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.SyncSamplingNetwork_swiginit(self, _mscl.new_SyncSamplingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.SyncSamplingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.SyncSamplingNetwork_removeNode(self, nodeAddress) - - def percentBandwidth(self): - return _mscl.SyncSamplingNetwork_percentBandwidth(self) - - def ok(self): - return _mscl.SyncSamplingNetwork_ok(self) - - def refresh(self): - return _mscl.SyncSamplingNetwork_refresh(self) - - def lossless(self, *args): - return _mscl.SyncSamplingNetwork_lossless(self, *args) - - def communicationProtocol(self, *args): - return _mscl.SyncSamplingNetwork_communicationProtocol(self, *args) - - def applyConfiguration(self): - return _mscl.SyncSamplingNetwork_applyConfiguration(self) - - def startSampling(self, *args): - return _mscl.SyncSamplingNetwork_startSampling(self, *args) - - def startSampling_noBeacon(self): - return _mscl.SyncSamplingNetwork_startSampling_noBeacon(self) - - def getNodeNetworkInfo(self, nodeAddress): - return _mscl.SyncSamplingNetwork_getNodeNetworkInfo(self, nodeAddress) - __swig_destroy__ = _mscl.delete_SyncSamplingNetwork - -# Register SyncSamplingNetwork in _mscl: -_mscl.SyncSamplingNetwork_swigregister(SyncSamplingNetwork) - -class NodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_NodeFeatures - - def normalizeNumSweeps(self, sweeps): - return _mscl.NodeFeatures_normalizeNumSweeps(self, sweeps) - - def normalizeTimeBetweenBursts(self, time): - return _mscl.NodeFeatures_normalizeTimeBetweenBursts(self, time) - - def channels(self): - return _mscl.NodeFeatures_channels(self) - - def channelGroups(self): - return _mscl.NodeFeatures_channelGroups(self) - - def channelType(self, channelNumber): - return _mscl.NodeFeatures_channelType(self, channelNumber) - - def supportsChannelSetting(self, setting, mask): - return _mscl.NodeFeatures_supportsChannelSetting(self, setting, mask) - - def supportsInputRangePerExcitationVoltage(self): - return _mscl.NodeFeatures_supportsInputRangePerExcitationVoltage(self) - - def supportsHardwareOffset(self): - return _mscl.NodeFeatures_supportsHardwareOffset(self) - - def supportsAntiAliasingFilter(self): - return _mscl.NodeFeatures_supportsAntiAliasingFilter(self) - - def supportsLowPassFilter(self): - return _mscl.NodeFeatures_supportsLowPassFilter(self) - - def supportsHighPassFilter(self): - return _mscl.NodeFeatures_supportsHighPassFilter(self) - - def supportsGaugeFactor(self): - return _mscl.NodeFeatures_supportsGaugeFactor(self) - - def supportsGaugeResistance(self): - return _mscl.NodeFeatures_supportsGaugeResistance(self) - - def supportsNumActiveGauges(self): - return _mscl.NodeFeatures_supportsNumActiveGauges(self) - - def supportsLostBeaconTimeout(self): - return _mscl.NodeFeatures_supportsLostBeaconTimeout(self) - - def supportsPullUpResistor(self): - return _mscl.NodeFeatures_supportsPullUpResistor(self) - - def supportsFilterSettlingTime(self): - return _mscl.NodeFeatures_supportsFilterSettlingTime(self) - - def supportsThermocoupleType(self): - return _mscl.NodeFeatures_supportsThermocoupleType(self) - - def supportsTempSensorOptions(self): - return _mscl.NodeFeatures_supportsTempSensorOptions(self) - - def supportsDebounceFilter(self): - return _mscl.NodeFeatures_supportsDebounceFilter(self) - - def supportsFatigueConfig(self): - return _mscl.NodeFeatures_supportsFatigueConfig(self) - - def supportsYoungsModConfig(self): - return _mscl.NodeFeatures_supportsYoungsModConfig(self) - - def supportsPoissonsRatioConfig(self): - return _mscl.NodeFeatures_supportsPoissonsRatioConfig(self) - - def supportsFatigueDebugModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueDebugModeConfig(self) - - def supportsFatigueModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueModeConfig(self) - - def supportsHistogramConfig(self): - return _mscl.NodeFeatures_supportsHistogramConfig(self) - - def supportsHistogramRateConfig(self): - return _mscl.NodeFeatures_supportsHistogramRateConfig(self) - - def supportsHistogramEnableConfig(self): - return _mscl.NodeFeatures_supportsHistogramEnableConfig(self) - - def supportsActivitySense(self): - return _mscl.NodeFeatures_supportsActivitySense(self) - - def supportsAutoBalance(self): - return _mscl.NodeFeatures_supportsAutoBalance(self) - - def supportsLegacyShuntCal(self): - return _mscl.NodeFeatures_supportsLegacyShuntCal(self) - - def supportsAutoCal_shm(self): - return _mscl.NodeFeatures_supportsAutoCal_shm(self) - - def supportsAutoCal_shm201(self): - return _mscl.NodeFeatures_supportsAutoCal_shm201(self) - - def supportsAutoShuntCal(self): - return _mscl.NodeFeatures_supportsAutoShuntCal(self) - - def supportsGetFactoryCal(self): - return _mscl.NodeFeatures_supportsGetFactoryCal(self) - - def supportsLimitedDuration(self): - return _mscl.NodeFeatures_supportsLimitedDuration(self) - - def supportsEventTrigger(self): - return _mscl.NodeFeatures_supportsEventTrigger(self) - - def supportsDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsDiagnosticInfo(self) - - def supportsLoggedData(self): - return _mscl.NodeFeatures_supportsLoggedData(self) - - def supportsPoll(self): - return _mscl.NodeFeatures_supportsPoll(self) - - def supportsSensorDelayConfig(self): - return _mscl.NodeFeatures_supportsSensorDelayConfig(self) - - def supportsSensorDelayAlwaysOn(self): - return _mscl.NodeFeatures_supportsSensorDelayAlwaysOn(self) - - def supportsSensorOutputMode(self): - return _mscl.NodeFeatures_supportsSensorOutputMode(self) - - def supportsCfcFilterConfiguration(self): - return _mscl.NodeFeatures_supportsCfcFilterConfiguration(self) - - def supportsChannel(self, channelNumber): - return _mscl.NodeFeatures_supportsChannel(self, channelNumber) - - def supportsSamplingMode(self, samplingMode): - return _mscl.NodeFeatures_supportsSamplingMode(self, samplingMode) - - def supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.NodeFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsDataFormat(self, dataFormat): - return _mscl.NodeFeatures_supportsDataFormat(self, dataFormat) - - def supportsDefaultMode(self, mode): - return _mscl.NodeFeatures_supportsDefaultMode(self, mode) - - def supportsDataCollectionMethod(self, collectionMethod): - return _mscl.NodeFeatures_supportsDataCollectionMethod(self, collectionMethod) - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.NodeFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsDataMode(self, dataMode): - return _mscl.NodeFeatures_supportsDataMode(self, dataMode) - - def supportsTransducerType(self, transducerType): - return _mscl.NodeFeatures_supportsTransducerType(self, transducerType) - - def supportsFatigueMode(self, mode): - return _mscl.NodeFeatures_supportsFatigueMode(self, mode) - - def supportsInputRange(self, *args): - return _mscl.NodeFeatures_supportsInputRange(self, *args) - - def supportsCentisecondEventDuration(self): - return _mscl.NodeFeatures_supportsCentisecondEventDuration(self) - - def supportsGetDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsGetDiagnosticInfo(self) - - def supportsNonSyncLogWithTimestamps(self): - return _mscl.NodeFeatures_supportsNonSyncLogWithTimestamps(self) - - def supportsDerivedCategory(self, category): - return _mscl.NodeFeatures_supportsDerivedCategory(self, category) - - def supportsRawDataMode(self): - return _mscl.NodeFeatures_supportsRawDataMode(self) - - def supportsDerivedDataMode(self): - return _mscl.NodeFeatures_supportsDerivedDataMode(self) - - def supportsDerivedVelocityUnitConfig(self): - return _mscl.NodeFeatures_supportsDerivedVelocityUnitConfig(self) - - def supportsExcitationVoltageConfig(self): - return _mscl.NodeFeatures_supportsExcitationVoltageConfig(self) - - def supportsLowBatteryThresholdConfig(self): - return _mscl.NodeFeatures_supportsLowBatteryThresholdConfig(self) - - def maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode) - - def maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode) - - def maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels): - return _mscl.NodeFeatures_maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels) - - def maxFilterSettlingTime(self, rate): - return _mscl.NodeFeatures_maxFilterSettlingTime(self, rate) - - def minInactivityTimeout(self): - return _mscl.NodeFeatures_minInactivityTimeout(self) - - def minLostBeaconTimeout(self): - return _mscl.NodeFeatures_minLostBeaconTimeout(self) - - def maxLostBeaconTimeout(self): - return _mscl.NodeFeatures_maxLostBeaconTimeout(self) - - def minCheckRadioInterval(self): - return _mscl.NodeFeatures_minCheckRadioInterval(self) - - def maxCheckRadioInterval(self): - return _mscl.NodeFeatures_maxCheckRadioInterval(self) - - def minSweeps(self): - return _mscl.NodeFeatures_minSweeps(self) - - def maxSweeps(self, samplingMode, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweeps(self, samplingMode, dataMode, dataFormat, channels) - - def maxSweepsPerBurst(self, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweepsPerBurst(self, dataMode, dataFormat, channels) - - def minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol): - return _mscl.NodeFeatures_minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol) - - def minSensorDelay(self): - return _mscl.NodeFeatures_minSensorDelay(self) - - def maxSensorDelay(self): - return _mscl.NodeFeatures_maxSensorDelay(self) - - def defaultSensorDelay(self): - return _mscl.NodeFeatures_defaultSensorDelay(self) - - def maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate): - return _mscl.NodeFeatures_maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate) - - def normalizeEventDuration(self, duration): - return _mscl.NodeFeatures_normalizeEventDuration(self, duration) - - def normalizeSensorDelay(self, delay): - return _mscl.NodeFeatures_normalizeSensorDelay(self, delay) - - def numDamageAngles(self): - return _mscl.NodeFeatures_numDamageAngles(self) - - def numSnCurveSegments(self): - return _mscl.NodeFeatures_numSnCurveSegments(self) - - def numEventTriggers(self): - return _mscl.NodeFeatures_numEventTriggers(self) - - def defaultModes(self): - return _mscl.NodeFeatures_defaultModes(self) - - def dataCollectionMethods(self): - return _mscl.NodeFeatures_dataCollectionMethods(self) - - def dataFormats(self): - return _mscl.NodeFeatures_dataFormats(self) - - def samplingModes(self): - return _mscl.NodeFeatures_samplingModes(self) - - def sampleRates(self, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_sampleRates(self, samplingMode, dataCollectionMethod, dataMode) - - def derivedDataRates(self): - return _mscl.NodeFeatures_derivedDataRates(self) - - def transmitPowers(self, *args): - return _mscl.NodeFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.NodeFeatures_commProtocols(self) - - def sensorOutputModes(self): - return _mscl.NodeFeatures_sensorOutputModes(self) - - def cfcFilters(self): - return _mscl.NodeFeatures_cfcFilters(self) - - def histogramTransmitRates(self): - return _mscl.NodeFeatures_histogramTransmitRates(self) - - def fatigueModes(self): - return _mscl.NodeFeatures_fatigueModes(self) - - def antiAliasingFilters(self): - return _mscl.NodeFeatures_antiAliasingFilters(self) - - def lowPassFilters(self): - return _mscl.NodeFeatures_lowPassFilters(self) - - def highPassFilters(self): - return _mscl.NodeFeatures_highPassFilters(self) - - def storageLimitModes(self): - return _mscl.NodeFeatures_storageLimitModes(self) - - def inputRanges(self, *args): - return _mscl.NodeFeatures_inputRanges(self, *args) - - def dataModes(self): - return _mscl.NodeFeatures_dataModes(self) - - def transducerTypes(self): - return _mscl.NodeFeatures_transducerTypes(self) - - def channelsPerDerivedCategory(self): - return _mscl.NodeFeatures_channelsPerDerivedCategory(self) - - def excitationVoltages(self): - return _mscl.NodeFeatures_excitationVoltages(self) - - def adcVoltageInputType(self): - return _mscl.NodeFeatures_adcVoltageInputType(self) - - def maxTransmitPower(self, *args): - return _mscl.NodeFeatures_maxTransmitPower(self, *args) - - def minTransmitPower(self, *args): - return _mscl.NodeFeatures_minTransmitPower(self, *args) - -# Register NodeFeatures in _mscl: -_mscl.NodeFeatures_swigregister(NodeFeatures) - -class BaseStationFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_BaseStationFeatures - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.BaseStationFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.BaseStationFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsButtons(self): - return _mscl.BaseStationFeatures_supportsButtons(self) - - def supportsAnalogPairing(self): - return _mscl.BaseStationFeatures_supportsAnalogPairing(self) - - def supportsBeaconStatus(self): - return _mscl.BaseStationFeatures_supportsBeaconStatus(self) - - def supportsRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsRfSweepMode(self) - - def supportsCustomRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsCustomRfSweepMode(self) - - def buttonCount(self): - return _mscl.BaseStationFeatures_buttonCount(self) - - def analogPortCount(self): - return _mscl.BaseStationFeatures_analogPortCount(self) - - def transmitPowers(self, *args): - return _mscl.BaseStationFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.BaseStationFeatures_commProtocols(self) - - def maxTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_maxTransmitPower(self, region, commProtocol) - - def minTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_minTransmitPower(self, region, commProtocol) - -# Register BaseStationFeatures in _mscl: -_mscl.BaseStationFeatures_swigregister(BaseStationFeatures) - -class EulerAngles(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EulerAngles_swiginit(self, _mscl.new_EulerAngles(*args)) - - def asMipFieldValues(self): - return _mscl.EulerAngles_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.EulerAngles_appendMipFieldValues(self, appendTo) - - def roll(self): - return _mscl.EulerAngles_roll(self) - - def pitch(self): - return _mscl.EulerAngles_pitch(self) - - def yaw(self): - return _mscl.EulerAngles_yaw(self) - - def heading(self): - return _mscl.EulerAngles_heading(self) - __swig_destroy__ = _mscl.delete_EulerAngles - -# Register EulerAngles in _mscl: -_mscl.EulerAngles_swigregister(EulerAngles) - -class Quaternion(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Quaternion_swiginit(self, _mscl.new_Quaternion(*args)) - - def asMipFieldValues(self): - return _mscl.Quaternion_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Quaternion_appendMipFieldValues(self, appendTo) - - def normalize(self): - return _mscl.Quaternion_normalize(self) - - def q0(self): - return _mscl.Quaternion_q0(self) - - def q1(self): - return _mscl.Quaternion_q1(self) - - def q2(self): - return _mscl.Quaternion_q2(self) - - def q3(self): - return _mscl.Quaternion_q3(self) - __swig_destroy__ = _mscl.delete_Quaternion - -# Register Quaternion in _mscl: -_mscl.Quaternion_swigregister(Quaternion) - -class Rotation(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EULER_ANGLES = _mscl.Rotation_EULER_ANGLES - QUATERNION = _mscl.Rotation_QUATERNION - - def __init__(self, *args): - _mscl.Rotation_swiginit(self, _mscl.new_Rotation(*args)) - - @staticmethod - def FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - - @staticmethod - def FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - - def asEulerAngles(self): - return _mscl.Rotation_asEulerAngles(self) - - def asQuaternion(self): - return _mscl.Rotation_asQuaternion(self) - - def asMipFieldValues(self, includeFormat=True): - return _mscl.Rotation_asMipFieldValues(self, includeFormat) - - def appendMipFieldValues(self, appendTo, includeFormat=True): - return _mscl.Rotation_appendMipFieldValues(self, appendTo, includeFormat) - - def format(self): - return _mscl.Rotation_format(self) - __swig_destroy__ = _mscl.delete_Rotation - -# Register Rotation in _mscl: -_mscl.Rotation_swigregister(Rotation) - -def Rotation_FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - -def Rotation_FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - -class Vec3f(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Vec3f_swiginit(self, _mscl.new_Vec3f(*args)) - __swig_destroy__ = _mscl.delete_Vec3f - - def fromMipFieldValues(self, data, offset=0): - return _mscl.Vec3f_fromMipFieldValues(self, data, offset) - - def asMipFieldValues(self): - return _mscl.Vec3f_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Vec3f_appendMipFieldValues(self, appendTo) - - def x(self, *args): - return _mscl.Vec3f_x(self, *args) - - def y(self, *args): - return _mscl.Vec3f_y(self, *args) - - def z(self, *args): - return _mscl.Vec3f_z(self, *args) - -# Register Vec3f in _mscl: -_mscl.Vec3f_swigregister(Vec3f) - -ECEF = _mscl.ECEF -LLH_NED = _mscl.LLH_NED -LOCAL = _mscl.LOCAL -VEHICLE = _mscl.VEHICLE -class GeometricVector(Vec3f): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - - @staticmethod - def VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - - def __init__(self, *args): - _mscl.GeometricVector_swiginit(self, _mscl.new_GeometricVector(*args)) - __swig_destroy__ = _mscl.delete_GeometricVector - - def fromMipFieldValues_includesFrame(self, data, offset=0): - return _mscl.GeometricVector_fromMipFieldValues_includesFrame(self, data, offset) - - def asMipFieldValues_includeFrame(self): - return _mscl.GeometricVector_asMipFieldValues_includeFrame(self) - - def appendMipFieldValues_includeFrame(self, appendTo): - return _mscl.GeometricVector_appendMipFieldValues_includeFrame(self, appendTo) - referenceFrame = property(_mscl.GeometricVector_referenceFrame_get, _mscl.GeometricVector_referenceFrame_set) - - def north(self, *args): - return _mscl.GeometricVector_north(self, *args) - - def east(self, *args): - return _mscl.GeometricVector_east(self, *args) - - def down(self, *args): - return _mscl.GeometricVector_down(self, *args) - -# Register GeometricVector in _mscl: -_mscl.GeometricVector_swigregister(GeometricVector) - -def GeometricVector_VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - -def GeometricVector_VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - -class PositionOffset(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.PositionOffset_swiginit(self, _mscl.new_PositionOffset(*args)) - __swig_destroy__ = _mscl.delete_PositionOffset - -# Register PositionOffset in _mscl: -_mscl.PositionOffset_swigregister(PositionOffset) - -class Velocity(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Velocity_swiginit(self, _mscl.new_Velocity(*args)) - __swig_destroy__ = _mscl.delete_Velocity - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - - @staticmethod - def NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - - @staticmethod - def Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -# Register Velocity in _mscl: -_mscl.Velocity_swigregister(Velocity) - -def Velocity_ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - -def Velocity_NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - -def Velocity_Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -class Position(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - - def __init__(self, *args): - _mscl.Position_swiginit(self, _mscl.new_Position(*args)) - __swig_destroy__ = _mscl.delete_Position - referenceFrame = property(_mscl.Position_referenceFrame_get, _mscl.Position_referenceFrame_set) - - def latitude(self, *args): - return _mscl.Position_latitude(self, *args) - - def longitude(self, *args): - return _mscl.Position_longitude(self, *args) - - def altitude(self, *args): - return _mscl.Position_altitude(self, *args) - - def height(self, *args): - return _mscl.Position_height(self, *args) - - def x(self, *args): - return _mscl.Position_x(self, *args) - - def y(self, *args): - return _mscl.Position_y(self, *args) - - def z(self, *args): - return _mscl.Position_z(self, *args) - -# Register Position in _mscl: -_mscl.Position_swigregister(Position) - -def Position_LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - -def Position_ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - -class GeometricUncertainty(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeometricUncertainty_swiginit(self, _mscl.new_GeometricUncertainty(*args)) - __swig_destroy__ = _mscl.delete_GeometricUncertainty - -# Register GeometricUncertainty in _mscl: -_mscl.GeometricUncertainty_swigregister(GeometricUncertainty) - -class MipModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_3dm_dh3 = _mscl.MipModels_node_3dm_dh3 - node_3dm_gx3_15 = _mscl.MipModels_node_3dm_gx3_15 - node_3dm_gx3_25 = _mscl.MipModels_node_3dm_gx3_25 - node_3dm_gx3_35 = _mscl.MipModels_node_3dm_gx3_35 - node_3dm_gx3_45 = _mscl.MipModels_node_3dm_gx3_45 - node_3dm_rq1_45_lt = _mscl.MipModels_node_3dm_rq1_45_lt - node_3dm_gx4_15 = _mscl.MipModels_node_3dm_gx4_15 - node_3dm_gx4_25 = _mscl.MipModels_node_3dm_gx4_25 - node_3dm_gx4_45 = _mscl.MipModels_node_3dm_gx4_45 - node_3dm_rq1_45_st = _mscl.MipModels_node_3dm_rq1_45_st - node_mv5_ar = _mscl.MipModels_node_mv5_ar - node_3dm_gx5_10 = _mscl.MipModels_node_3dm_gx5_10 - node_3dm_gx5_15 = _mscl.MipModels_node_3dm_gx5_15 - node_3dm_gx5_25 = _mscl.MipModels_node_3dm_gx5_25 - node_3dm_gx5_35 = _mscl.MipModels_node_3dm_gx5_35 - node_3dm_gx5_45 = _mscl.MipModels_node_3dm_gx5_45 - node_3dm_cv5_10 = _mscl.MipModels_node_3dm_cv5_10 - node_3dm_cv5_15 = _mscl.MipModels_node_3dm_cv5_15 - node_3dm_cv5_25 = _mscl.MipModels_node_3dm_cv5_25 - node_3dm_cv5_45 = _mscl.MipModels_node_3dm_cv5_45 - node_3dm_gq4_45 = _mscl.MipModels_node_3dm_gq4_45 - node_3dm_cx5_45 = _mscl.MipModels_node_3dm_cx5_45 - node_3dm_cx5_35 = _mscl.MipModels_node_3dm_cx5_35 - node_3dm_cx5_25 = _mscl.MipModels_node_3dm_cx5_25 - node_3dm_cx5_15 = _mscl.MipModels_node_3dm_cx5_15 - node_3dm_cx5_10 = _mscl.MipModels_node_3dm_cx5_10 - node_3dm_cl5_15 = _mscl.MipModels_node_3dm_cl5_15 - node_3dm_cl5_25 = _mscl.MipModels_node_3dm_cl5_25 - node_3dm_gq7 = _mscl.MipModels_node_3dm_gq7 - node_3dm_rtk = _mscl.MipModels_node_3dm_rtk - node_3dm_cv7_ahrs = _mscl.MipModels_node_3dm_cv7_ahrs - node_3dm_cv7_ar = _mscl.MipModels_node_3dm_cv7_ar - node_3dm_gv7_ahrs = _mscl.MipModels_node_3dm_gv7_ahrs - node_3dm_gv7_ar = _mscl.MipModels_node_3dm_gv7_ar - node_3dm_gv7_ins = _mscl.MipModels_node_3dm_gv7_ins - node_3dm_cv7_ins = _mscl.MipModels_node_3dm_cv7_ins - node_3dm_cv7_gnss_ins = _mscl.MipModels_node_3dm_cv7_gnss_ins - placeholder_matchAll = _mscl.MipModels_placeholder_matchAll - rtk_v1 = _mscl.MipModels_rtk_v1 - rtk_v2 = _mscl.MipModels_rtk_v2 - model_3dm_dh3 = _mscl.MipModels_model_3dm_dh3 - model_3dm_gx3_15 = _mscl.MipModels_model_3dm_gx3_15 - model_3dm_gx3_25 = _mscl.MipModels_model_3dm_gx3_25 - model_3dm_gx3_35 = _mscl.MipModels_model_3dm_gx3_35 - model_3dm_gx3_45 = _mscl.MipModels_model_3dm_gx3_45 - model_3dm_rq1_45_lt = _mscl.MipModels_model_3dm_rq1_45_lt - model_3dm_gx4_15 = _mscl.MipModels_model_3dm_gx4_15 - model_3dm_gx4_25 = _mscl.MipModels_model_3dm_gx4_25 - model_3dm_gx4_45 = _mscl.MipModels_model_3dm_gx4_45 - model_3dm_rq1_45_st = _mscl.MipModels_model_3dm_rq1_45_st - model_mv5_ar = _mscl.MipModels_model_mv5_ar - model_3dm_gx5_10 = _mscl.MipModels_model_3dm_gx5_10 - model_3dm_gx5_15 = _mscl.MipModels_model_3dm_gx5_15 - model_3dm_gx5_25 = _mscl.MipModels_model_3dm_gx5_25 - model_3dm_gx5_35 = _mscl.MipModels_model_3dm_gx5_35 - model_3dm_gx5_45 = _mscl.MipModels_model_3dm_gx5_45 - model_3dm_cv5_10 = _mscl.MipModels_model_3dm_cv5_10 - model_3dm_cv5_15 = _mscl.MipModels_model_3dm_cv5_15 - model_3dm_cv5_25 = _mscl.MipModels_model_3dm_cv5_25 - model_3dm_cv5_45 = _mscl.MipModels_model_3dm_cv5_45 - model_3dm_gq4_45 = _mscl.MipModels_model_3dm_gq4_45 - model_3dm_cx5_45 = _mscl.MipModels_model_3dm_cx5_45 - model_3dm_cx5_35 = _mscl.MipModels_model_3dm_cx5_35 - model_3dm_cx5_25 = _mscl.MipModels_model_3dm_cx5_25 - model_3dm_cx5_15 = _mscl.MipModels_model_3dm_cx5_15 - model_3dm_cx5_10 = _mscl.MipModels_model_3dm_cx5_10 - model_3dm_cl5_15 = _mscl.MipModels_model_3dm_cl5_15 - model_3dm_cl5_25 = _mscl.MipModels_model_3dm_cl5_25 - model_3dm_gq7 = _mscl.MipModels_model_3dm_gq7 - model_3dm_rtk_v1 = _mscl.MipModels_model_3dm_rtk_v1 - model_3dm_rtk = _mscl.MipModels_model_3dm_rtk - model_3dm_cv7_ahrs = _mscl.MipModels_model_3dm_cv7_ahrs - model_3dm_cv7_ar = _mscl.MipModels_model_3dm_cv7_ar - model_3dm_gv7_ahrs = _mscl.MipModels_model_3dm_gv7_ahrs - model_3dm_gv7_ar = _mscl.MipModels_model_3dm_gv7_ar - model_3dm_gv7_ins = _mscl.MipModels_model_3dm_gv7_ins - model_3dm_cv7_ins = _mscl.MipModels_model_3dm_cv7_ins - model_3dm_cv7_gnss_ins = _mscl.MipModels_model_3dm_cv7_gnss_ins - - @staticmethod - def modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - - @staticmethod - def modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - - @staticmethod - def modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - - @staticmethod - def nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - - @staticmethod - def modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - - @staticmethod - def nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - - @staticmethod - def modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - - @staticmethod - def stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - - def __init__(self): - _mscl.MipModels_swiginit(self, _mscl.new_MipModels()) - __swig_destroy__ = _mscl.delete_MipModels - -# Register MipModels in _mscl: -_mscl.MipModels_swigregister(MipModels) - -def MipModels_modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - -def MipModels_modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - -def MipModels_modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - -def MipModels_nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - -def MipModels_modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - -def MipModels_nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - -def MipModels_modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - -def MipModels_stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - -class MipModel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipModel_swiginit(self, _mscl.new_MipModel(*args)) - - def equals(self, compare): - return _mscl.MipModel_equals(self, compare) - - def __str__(self): - return _mscl.MipModel___str__(self) - - def nodeModel(self): - return _mscl.MipModel_nodeModel(self) - - def modifier(self): - return _mscl.MipModel_modifier(self) - - def modelNumber(self): - return _mscl.MipModel_modelNumber(self) - - def baseModel(self): - return _mscl.MipModel_baseModel(self) - __swig_destroy__ = _mscl.delete_MipModel - -# Register MipModel in _mscl: -_mscl.MipModel_swigregister(MipModel) -MipModel.mip_model_none = _mscl.cvar.MipModel_mip_model_none -MipModel.mip_model_3dm_dh3 = _mscl.cvar.MipModel_mip_model_3dm_dh3 -MipModel.mip_model_3dm_gx3_15 = _mscl.cvar.MipModel_mip_model_3dm_gx3_15 -MipModel.mip_model_3dm_gx3_25 = _mscl.cvar.MipModel_mip_model_3dm_gx3_25 -MipModel.mip_model_3dm_gx3_35 = _mscl.cvar.MipModel_mip_model_3dm_gx3_35 -MipModel.mip_model_3dm_gx3_45 = _mscl.cvar.MipModel_mip_model_3dm_gx3_45 -MipModel.mip_model_3dm_rq1_45_lt = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_lt -MipModel.mip_model_3dm_rq1_45_st = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_st -MipModel.mip_model_3dm_gx4_15 = _mscl.cvar.MipModel_mip_model_3dm_gx4_15 -MipModel.mip_model_3dm_gx4_25 = _mscl.cvar.MipModel_mip_model_3dm_gx4_25 -MipModel.mip_model_3dm_gx4_45 = _mscl.cvar.MipModel_mip_model_3dm_gx4_45 -MipModel.mip_model_mv5_ar = _mscl.cvar.MipModel_mip_model_mv5_ar -MipModel.mip_model_3dm_gx5_10 = _mscl.cvar.MipModel_mip_model_3dm_gx5_10 -MipModel.mip_model_3dm_gx5_15 = _mscl.cvar.MipModel_mip_model_3dm_gx5_15 -MipModel.mip_model_3dm_gx5_25 = _mscl.cvar.MipModel_mip_model_3dm_gx5_25 -MipModel.mip_model_3dm_gx5_35 = _mscl.cvar.MipModel_mip_model_3dm_gx5_35 -MipModel.mip_model_3dm_gx5_45 = _mscl.cvar.MipModel_mip_model_3dm_gx5_45 -MipModel.mip_model_3dm_cv5_10 = _mscl.cvar.MipModel_mip_model_3dm_cv5_10 -MipModel.mip_model_3dm_cv5_15 = _mscl.cvar.MipModel_mip_model_3dm_cv5_15 -MipModel.mip_model_3dm_cv5_25 = _mscl.cvar.MipModel_mip_model_3dm_cv5_25 -MipModel.mip_model_3dm_cv5_45 = _mscl.cvar.MipModel_mip_model_3dm_cv5_45 -MipModel.mip_model_3dm_gq4_45 = _mscl.cvar.MipModel_mip_model_3dm_gq4_45 -MipModel.mip_model_3dm_cx5_45 = _mscl.cvar.MipModel_mip_model_3dm_cx5_45 -MipModel.mip_model_3dm_cx5_35 = _mscl.cvar.MipModel_mip_model_3dm_cx5_35 -MipModel.mip_model_3dm_cx5_25 = _mscl.cvar.MipModel_mip_model_3dm_cx5_25 -MipModel.mip_model_3dm_cx5_15 = _mscl.cvar.MipModel_mip_model_3dm_cx5_15 -MipModel.mip_model_3dm_cx5_10 = _mscl.cvar.MipModel_mip_model_3dm_cx5_10 -MipModel.mip_model_3dm_cl5_15 = _mscl.cvar.MipModel_mip_model_3dm_cl5_15 -MipModel.mip_model_3dm_cl5_25 = _mscl.cvar.MipModel_mip_model_3dm_cl5_25 -MipModel.mip_model_3dm_gq7 = _mscl.cvar.MipModel_mip_model_3dm_gq7 -MipModel.mip_model_3dm_rtk_v1 = _mscl.cvar.MipModel_mip_model_3dm_rtk_v1 -MipModel.mip_model_3dm_rtk = _mscl.cvar.MipModel_mip_model_3dm_rtk -MipModel.mip_model_3dm_cv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_cv7_ahrs -MipModel.mip_model_3dm_cv7_ar = _mscl.cvar.MipModel_mip_model_3dm_cv7_ar -MipModel.mip_model_3dm_gv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_gv7_ahrs -MipModel.mip_model_3dm_gv7_ar = _mscl.cvar.MipModel_mip_model_3dm_gv7_ar -MipModel.mip_model_3dm_gv7_ins = _mscl.cvar.MipModel_mip_model_3dm_gv7_ins -MipModel.mip_model_3dm_cv7_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_ins -MipModel.mip_model_3dm_cv7_gnss_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_gnss_ins - -class DisplacementModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_digitalDemod = _mscl.DisplacementModels_node_digitalDemod - - def __init__(self): - _mscl.DisplacementModels_swiginit(self, _mscl.new_DisplacementModels()) - __swig_destroy__ = _mscl.delete_DisplacementModels - -# Register DisplacementModels in _mscl: -_mscl.DisplacementModels_swigregister(DisplacementModels) - -class MipTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CLASS_AHRS_IMU = _mscl.MipTypes_CLASS_AHRS_IMU - CLASS_GNSS = _mscl.MipTypes_CLASS_GNSS - CLASS_ESTFILTER = _mscl.MipTypes_CLASS_ESTFILTER - CLASS_DISPLACEMENT = _mscl.MipTypes_CLASS_DISPLACEMENT - CLASS_GNSS1 = _mscl.MipTypes_CLASS_GNSS1 - CLASS_GNSS2 = _mscl.MipTypes_CLASS_GNSS2 - CLASS_GNSS3 = _mscl.MipTypes_CLASS_GNSS3 - CLASS_RTK = _mscl.MipTypes_CLASS_RTK - CLASS_GNSS4 = _mscl.MipTypes_CLASS_GNSS4 - CLASS_GNSS5 = _mscl.MipTypes_CLASS_GNSS5 - CLASS_SYSTEM = _mscl.MipTypes_CLASS_SYSTEM - USE_NEW_SETTINGS = _mscl.MipTypes_USE_NEW_SETTINGS - READ_BACK_CURRENT_SETTINGS = _mscl.MipTypes_READ_BACK_CURRENT_SETTINGS - SAVE_CURRENT_SETTINGS = _mscl.MipTypes_SAVE_CURRENT_SETTINGS - LOAD_STARTUP_SETTINGS = _mscl.MipTypes_LOAD_STARTUP_SETTINGS - RESET_TO_DEFAULT = _mscl.MipTypes_RESET_TO_DEFAULT - USE_NEW_SETTINGS_NO_ACKNACK = _mscl.MipTypes_USE_NEW_SETTINGS_NO_ACKNACK - DISABLED = _mscl.MipTypes_DISABLED - ENABLED = _mscl.MipTypes_ENABLED - TIME_FRAME_WEEKS = _mscl.MipTypes_TIME_FRAME_WEEKS - TIME_FRAME_SECONDS = _mscl.MipTypes_TIME_FRAME_SECONDS - CMD_PING = _mscl.MipTypes_CMD_PING - CMD_SET_IDLE = _mscl.MipTypes_CMD_SET_IDLE - CMD_GET_DEVICE_INFO = _mscl.MipTypes_CMD_GET_DEVICE_INFO - CMD_GET_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_DESCRIPTOR_SETS - CMD_BUILT_IN_TEST = _mscl.MipTypes_CMD_BUILT_IN_TEST - CMD_RESUME = _mscl.MipTypes_CMD_RESUME - CMD_GET_EXT_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_EXT_DESCRIPTOR_SETS - CMD_COMM_PORT_SPEED = _mscl.MipTypes_CMD_COMM_PORT_SPEED - CMD_GPS_TIME_UPDATE = _mscl.MipTypes_CMD_GPS_TIME_UPDATE - CMD_RESET = _mscl.MipTypes_CMD_RESET - CMD_POLL_SENSOR_DATA = _mscl.MipTypes_CMD_POLL_SENSOR_DATA - CMD_POLL_GNSS_DATA = _mscl.MipTypes_CMD_POLL_GNSS_DATA - CMD_POLL_EF_DATA = _mscl.MipTypes_CMD_POLL_EF_DATA - CMD_GET_SENSOR_RATE_BASE = _mscl.MipTypes_CMD_GET_SENSOR_RATE_BASE - CMD_GET_GNSS_RATE_BASE = _mscl.MipTypes_CMD_GET_GNSS_RATE_BASE - CMD_GET_EF_RATE_BASE = _mscl.MipTypes_CMD_GET_EF_RATE_BASE - CMD_SENSOR_MESSAGE_FORMAT = _mscl.MipTypes_CMD_SENSOR_MESSAGE_FORMAT - CMD_GNSS_MESSAGE_FORMAT = _mscl.MipTypes_CMD_GNSS_MESSAGE_FORMAT - CMD_EF_MESSAGE_FORMAT = _mscl.MipTypes_CMD_EF_MESSAGE_FORMAT - CMD_NMEA_MESSAGE_FORMAT = _mscl.MipTypes_CMD_NMEA_MESSAGE_FORMAT - CMD_POLL = _mscl.MipTypes_CMD_POLL - CMD_GET_BASE_RATE = _mscl.MipTypes_CMD_GET_BASE_RATE - CMD_MESSAGE_FORMAT = _mscl.MipTypes_CMD_MESSAGE_FORMAT - CMD_FACTORY_STREAMING = _mscl.MipTypes_CMD_FACTORY_STREAMING - CMD_CONTINUOUS_DATA_STREAM = _mscl.MipTypes_CMD_CONTINUOUS_DATA_STREAM - CMD_RAW_RTCM_2_3_MESSAGE = _mscl.MipTypes_CMD_RAW_RTCM_2_3_MESSAGE - CMD_GNSS_CONSTELLATION_SETTINGS = _mscl.MipTypes_CMD_GNSS_CONSTELLATION_SETTINGS - CMD_GNSS_SBAS_SETTINGS = _mscl.MipTypes_CMD_GNSS_SBAS_SETTINGS - CMD_GNSS_ASSIST_FIX_CONTROL = _mscl.MipTypes_CMD_GNSS_ASSIST_FIX_CONTROL - CMD_GNSS_ASSIST_TIME_UPDATE = _mscl.MipTypes_CMD_GNSS_ASSIST_TIME_UPDATE - CMD_PPS_SOURCE = _mscl.MipTypes_CMD_PPS_SOURCE - CMD_EVENT_SUPPORT = _mscl.MipTypes_CMD_EVENT_SUPPORT - CMD_EVENT_CONTROL = _mscl.MipTypes_CMD_EVENT_CONTROL - CMD_EVENT_TRIGGER_STATUS = _mscl.MipTypes_CMD_EVENT_TRIGGER_STATUS - CMD_EVENT_ACTION_STATUS = _mscl.MipTypes_CMD_EVENT_ACTION_STATUS - CMD_EVENT_TRIGGER_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_TRIGGER_CONFIGURATION - CMD_EVENT_ACTION_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_ACTION_CONFIGURATION - CMD_SAVE_STARTUP_SETTINGS = _mscl.MipTypes_CMD_SAVE_STARTUP_SETTINGS - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM - CMD_GPS_DYNAMICS_MODE = _mscl.MipTypes_CMD_GPS_DYNAMICS_MODE - CMD_SENSOR_SIG_COND_SETTINGS = _mscl.MipTypes_CMD_SENSOR_SIG_COND_SETTINGS - CMD_SENSOR_TIMESTAMP = _mscl.MipTypes_CMD_SENSOR_TIMESTAMP - CMD_ACCEL_BIAS = _mscl.MipTypes_CMD_ACCEL_BIAS - CMD_GYRO_BIAS = _mscl.MipTypes_CMD_GYRO_BIAS - CMD_CAP_GYRO_BIAS = _mscl.MipTypes_CMD_CAP_GYRO_BIAS - CMD_MAG_HARD_IRON_OFFSET = _mscl.MipTypes_CMD_MAG_HARD_IRON_OFFSET - CMD_MAG_SOFT_IRON_MATRIX = _mscl.MipTypes_CMD_MAG_SOFT_IRON_MATRIX - CMD_CF_REALIGN_UP = _mscl.MipTypes_CMD_CF_REALIGN_UP - CMD_CF_REALIGN_NORTH = _mscl.MipTypes_CMD_CF_REALIGN_NORTH - CMD_CONING_SCULLING = _mscl.MipTypes_CMD_CONING_SCULLING - CMD_UART_BAUD_RATE = _mscl.MipTypes_CMD_UART_BAUD_RATE - CMD_GPIO_CONFIGURATION = _mscl.MipTypes_CMD_GPIO_CONFIGURATION - CMD_GPIO_STATE = _mscl.MipTypes_CMD_GPIO_STATE - CMD_ODOMETER_SETTINGS = _mscl.MipTypes_CMD_ODOMETER_SETTINGS - CMD_LOWPASS_FILTER_SETTINGS = _mscl.MipTypes_CMD_LOWPASS_FILTER_SETTINGS - CMD_COMPLEMENTARY_FILTER_SETTINGS = _mscl.MipTypes_CMD_COMPLEMENTARY_FILTER_SETTINGS - CMD_SENSOR_RANGE = _mscl.MipTypes_CMD_SENSOR_RANGE - CMD_SUPPORTED_SENSOR_RANGES = _mscl.MipTypes_CMD_SUPPORTED_SENSOR_RANGES - CMD_LOWPASS_ANTIALIASING_FILTER = _mscl.MipTypes_CMD_LOWPASS_ANTIALIASING_FILTER - CMD_DATA_STREAM_FORMAT = _mscl.MipTypes_CMD_DATA_STREAM_FORMAT - CMD_POWER_STATES = _mscl.MipTypes_CMD_POWER_STATES - CMD_GPS_STARTUP_SETTINGS = _mscl.MipTypes_CMD_GPS_STARTUP_SETTINGS - CMD_DEVICE_STATUS = _mscl.MipTypes_CMD_DEVICE_STATUS - CMD_EF_RESET_FILTER = _mscl.MipTypes_CMD_EF_RESET_FILTER - CMD_EF_INIT_ATTITUDE = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE - CMD_EF_INIT_HEADING = _mscl.MipTypes_CMD_EF_INIT_HEADING - CMD_EF_INIT_ATTITUDE_FROM_AHRS = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE_FROM_AHRS - CMD_EF_RUN_FILTER = _mscl.MipTypes_CMD_EF_RUN_FILTER - CMD_EF_VEHIC_DYNAMICS_MODE = _mscl.MipTypes_CMD_EF_VEHIC_DYNAMICS_MODE - CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER - CMD_EF_SENS_VEHIC_FRAME_OFFSET = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_OFFSET - CMD_EF_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_ANTENNA_OFFSET - CMD_EF_BIAS_EST_CTRL = _mscl.MipTypes_CMD_EF_BIAS_EST_CTRL - CMD_EF_GNSS_SRC_CTRL = _mscl.MipTypes_CMD_EF_GNSS_SRC_CTRL - CMD_EF_EXTERN_GNSS_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_GNSS_UPDATE - CMD_EF_EXTERN_HEADING_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_HEADING_UPDATE - CMD_EF_HEADING_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_HEADING_UPDATE_CTRL - CMD_EF_AUTO_INIT_CTRL = _mscl.MipTypes_CMD_EF_AUTO_INIT_CTRL - CMD_EF_ACCEL_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_ACCEL_WHT_NSE_STD_DEV - CMD_EF_GYRO_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_GYRO_WHT_NSE_STD_DEV - CMD_EF_ACCEL_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_ACCEL_BIAS_MODEL_PARAMS - CMD_EF_GYRO_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_GYRO_BIAS_MODEL_PARAMS - CMD_EF_ZERO_VEL_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_VEL_UPDATE_CTRL - CMD_EF_EXT_HEADING_UPDATE_TS = _mscl.MipTypes_CMD_EF_EXT_HEADING_UPDATE_TS - CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL - CMD_EF_TARE_ORIENT = _mscl.MipTypes_CMD_EF_TARE_ORIENT - CMD_EF_CMDED_ZERO_VEL_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_VEL_UPDATE - CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE - CMD_EF_SET_REF_POSITION = _mscl.MipTypes_CMD_EF_SET_REF_POSITION - CMD_EF_MAG_CAPTURE_AUTO_CAL = _mscl.MipTypes_CMD_EF_MAG_CAPTURE_AUTO_CAL - CMD_EF_GRAVITY_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_STD_DEV - CMD_EF_PRESS_ALT_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_PRESS_ALT_NOISE_STD_DEV - CMD_EF_GRAVITY_NOISE_MINIMUM = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_MINIMUM - CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE - CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE - CMD_EF_ENABLE_DISABLE_MEASUREMENTS = _mscl.MipTypes_CMD_EF_ENABLE_DISABLE_MEASUREMENTS - CMD_EF_MAG_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_MAG_NOISE_STD_DEV - CMD_EF_DECLINATION_SRC = _mscl.MipTypes_CMD_EF_DECLINATION_SRC - CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE - CMD_EF_ALTITUDE_AID_CTRL = _mscl.MipTypes_CMD_EF_ALTITUDE_AID_CTRL - CMD_EF_PITCH_ROLL_AID_CTRL = _mscl.MipTypes_CMD_EF_PITCH_ROLL_AID_CTRL - CMD_EF_INCLINATION_SRC = _mscl.MipTypes_CMD_EF_INCLINATION_SRC - CMD_EF_FIELD_MAGNITUDE_SRC = _mscl.MipTypes_CMD_EF_FIELD_MAGNITUDE_SRC - CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM - CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT - CMD_EF_AIDING_MEASUREMENT_ENABLE = _mscl.MipTypes_CMD_EF_AIDING_MEASUREMENT_ENABLE - CMD_EF_INITIALIZATION_CONFIG = _mscl.MipTypes_CMD_EF_INITIALIZATION_CONFIG - CMD_EF_ADAPTIVE_FILTER_OPTIONS = _mscl.MipTypes_CMD_EF_ADAPTIVE_FILTER_OPTIONS - CMD_EF_MULTI_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_MULTI_ANTENNA_OFFSET - CMD_EF_RELATIVE_POSITION_REF = _mscl.MipTypes_CMD_EF_RELATIVE_POSITION_REF - CMD_EF_LEVER_ARM_OFFSET_REF = _mscl.MipTypes_CMD_EF_LEVER_ARM_OFFSET_REF - CMD_EF_EXTERN_SPEED_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_SPEED_UPDATE - CMD_EF_SPEED_MEASUREMENT_OFFSET = _mscl.MipTypes_CMD_EF_SPEED_MEASUREMENT_OFFSET - CMD_EF_VERTICAL_GYRO_CONSTRAINT = _mscl.MipTypes_CMD_EF_VERTICAL_GYRO_CONSTRAINT - CMD_EF_WHEELED_VEHICLE_CONSTRAINT = _mscl.MipTypes_CMD_EF_WHEELED_VEHICLE_CONSTRAINT - CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL = _mscl.MipTypes_CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL - CMD_GNSS_RECEIVER_INFO = _mscl.MipTypes_CMD_GNSS_RECEIVER_INFO - CMD_GNSS_SIGNAL_CONFIG = _mscl.MipTypes_CMD_GNSS_SIGNAL_CONFIG - CMD_GNSS_SPARTN_CONFIG = _mscl.MipTypes_CMD_GNSS_SPARTN_CONFIG - CMD_GNSS_RTK_CONFIG = _mscl.MipTypes_CMD_GNSS_RTK_CONFIG - CMD_INTERFACE_CONTROL = _mscl.MipTypes_CMD_INTERFACE_CONTROL - CMD_COMMUNICATION_MODE = _mscl.MipTypes_CMD_COMMUNICATION_MODE - CMD_HARDWARE_CTRL = _mscl.MipTypes_CMD_HARDWARE_CTRL - CMD_GET_ANALOG_DISPLACEMENT_CALS = _mscl.MipTypes_CMD_GET_ANALOG_DISPLACEMENT_CALS - CMD_DISPLACEMENT_OUTPUT_RATE = _mscl.MipTypes_CMD_DISPLACEMENT_OUTPUT_RATE - CMD_DISPLACEMENT_DEVICE_TIME = _mscl.MipTypes_CMD_DISPLACEMENT_DEVICE_TIME - CMD_RTK_DEVICE_STATUS_FLAGS = _mscl.MipTypes_CMD_RTK_DEVICE_STATUS_FLAGS - CMD_RTK_ACTIVATION_CODE = _mscl.MipTypes_CMD_RTK_ACTIVATION_CODE - CMD_AIDING_FRAME_CONFIG = _mscl.MipTypes_CMD_AIDING_FRAME_CONFIG - CMD_AIDING_ECHO_CONTROL = _mscl.MipTypes_CMD_AIDING_ECHO_CONTROL - CMD_AIDING_POS_ECEF = _mscl.MipTypes_CMD_AIDING_POS_ECEF - CMD_AIDING_POS_LLH = _mscl.MipTypes_CMD_AIDING_POS_LLH - CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID - CMD_AIDING_VEL_ECEF = _mscl.MipTypes_CMD_AIDING_VEL_ECEF - CMD_AIDING_VEL_NED = _mscl.MipTypes_CMD_AIDING_VEL_NED - CMD_AIDING_VEL_BODY_FRAME = _mscl.MipTypes_CMD_AIDING_VEL_BODY_FRAME - CMD_AIDING_HEADING_TRUE = _mscl.MipTypes_CMD_AIDING_HEADING_TRUE - CMD_AIDING_MAGNETIC_FIELD = _mscl.MipTypes_CMD_AIDING_MAGNETIC_FIELD - CMD_AIDING_PRESSURE = _mscl.MipTypes_CMD_AIDING_PRESSURE - CH_FIELD_SENSOR_RAW_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_ACCEL_VEC - CH_FIELD_SENSOR_RAW_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_GYRO_VEC - CH_FIELD_SENSOR_RAW_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_MAG_VEC - CH_FIELD_SENSOR_SCALED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_ACCEL_VEC - CH_FIELD_SENSOR_SCALED_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_GYRO_VEC - CH_FIELD_SENSOR_SCALED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_MAG_VEC - CH_FIELD_SENSOR_DELTA_THETA_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_THETA_VEC - CH_FIELD_SENSOR_DELTA_VELOCITY_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_VELOCITY_VEC - CH_FIELD_SENSOR_ORIENTATION_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_MATRIX - CH_FIELD_SENSOR_ORIENTATION_QUATERNION = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_QUATERNION - CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX - CH_FIELD_SENSOR_EULER_ANGLES = _mscl.MipTypes_CH_FIELD_SENSOR_EULER_ANGLES - CH_FIELD_SENSOR_INTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_INTERNAL_TIMESTAMP - CH_FIELD_SENSOR_BEACONED_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_BEACONED_TIMESTAMP - CH_FIELD_SENSOR_STABILIZED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_MAG_VEC - CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC - CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP - CH_FIELD_SENSOR_TEMPERATURE_STATISTICS = _mscl.MipTypes_CH_FIELD_SENSOR_TEMPERATURE_STATISTICS - CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE - CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE - CH_FIELD_SENSOR_OVERRANGE_STATUS = _mscl.MipTypes_CH_FIELD_SENSOR_OVERRANGE_STATUS - CH_FIELD_SENSOR_ODOMETER_DATA = _mscl.MipTypes_CH_FIELD_SENSOR_ODOMETER_DATA - CH_FIELD_SENSOR_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EVENT_SOURCE - CH_FIELD_SENSOR_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_TICKS - CH_FIELD_SENSOR_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TICKS - CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP - CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_LLH_POSITION - CH_FIELD_GNSS_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_POSITION - CH_FIELD_GNSS_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_NED_VELOCITY - CH_FIELD_GNSS_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_VELOCITY - CH_FIELD_GNSS_DOP = _mscl.MipTypes_CH_FIELD_GNSS_DOP - CH_FIELD_GNSS_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_UTC_TIME - CH_FIELD_GNSS_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_GPS_TIME - CH_FIELD_GNSS_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO - CH_FIELD_GNSS_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_FIX_INFO - CH_FIELD_GNSS_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_HARDWARE_STATUS - CH_FIELD_GNSS_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_INFO - CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO_2 - CH_FIELD_GNSS_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_LEAP_SECONDS - CH_FIELD_GNSS_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_INFO - CH_FIELD_GNSS_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_CORRECTION - CH_FIELD_GNSS_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_RF_ERROR_DETECTION - CH_FIELD_GNSS_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_SATELLITE_STATUS - CH_FIELD_GNSS_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_RAW_OBSERVATION - CH_FIELD_GNSS_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_STATION_INFO - CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_EPHEMERIS - CH_FIELD_GNSS_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GLONASS_EPHEMERIS - CH_FIELD_GNSS_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_EPHEMERIS - CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_TICKS - CH_FIELD_GNSS_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TICKS - CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS - CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL - CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE - CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE - CH_FIELD_ESTFILTER_FILTER_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_FILTER_STATUS - CH_FIELD_ESTFILTER_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT - CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR - CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE - CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR - CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_MAG_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS - CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT - CH_FIELD_ESTFILTER_COMPENSATED_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_COMPENSATED_ACCEL - CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL - CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT - CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX - CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS_UNCERT - CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS - CH_FIELD_ESTFILTER_ECEF_VEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL - CH_FIELD_ESTFILTER_NED_RELATIVE_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_NED_RELATIVE_POS - CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS - CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS - CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY = _mscl.MipTypes_CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT - CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT - CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE - CH_FIELD_ESTFILTER_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_TICKS - CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS - CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_DISP_DISPLACEMENT_RAW = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_RAW - CH_FIELD_DISP_DISPLACEMENT_MM = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_MM - CH_FIELD_DISP_DISPLACEMENT_TS = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_TS - CH_FIELD_GNSS_1_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_LLH_POSITION - CH_FIELD_GNSS_1_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_POSITION - CH_FIELD_GNSS_1_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_NED_VELOCITY - CH_FIELD_GNSS_1_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_VELOCITY - CH_FIELD_GNSS_1_DOP = _mscl.MipTypes_CH_FIELD_GNSS_1_DOP - CH_FIELD_GNSS_1_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_UTC_TIME - CH_FIELD_GNSS_1_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_TIME - CH_FIELD_GNSS_1_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO - CH_FIELD_GNSS_1_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_FIX_INFO - CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_1_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_HARDWARE_STATUS - CH_FIELD_GNSS_1_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_INFO - CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_1_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO_2 - CH_FIELD_GNSS_1_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_LEAP_SECONDS - CH_FIELD_GNSS_1_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_INFO - CH_FIELD_GNSS_1_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_CORRECTION - CH_FIELD_GNSS_1_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_RF_ERROR_DETECTION - CH_FIELD_GNSS_1_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_SATELLITE_STATUS - CH_FIELD_GNSS_1_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_1_RAW_OBSERVATION - CH_FIELD_GNSS_1_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_STATION_INFO - CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_1_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_EPHEMERIS - CH_FIELD_GNSS_1_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GLONASS_EPHEMERIS - CH_FIELD_GNSS_1_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_EPHEMERIS - CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_1_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_TICKS - CH_FIELD_GNSS_1_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TICKS - CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_2_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_LLH_POSITION - CH_FIELD_GNSS_2_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_POSITION - CH_FIELD_GNSS_2_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_NED_VELOCITY - CH_FIELD_GNSS_2_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_VELOCITY - CH_FIELD_GNSS_2_DOP = _mscl.MipTypes_CH_FIELD_GNSS_2_DOP - CH_FIELD_GNSS_2_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_UTC_TIME - CH_FIELD_GNSS_2_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_TIME - CH_FIELD_GNSS_2_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO - CH_FIELD_GNSS_2_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_FIX_INFO - CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_2_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_HARDWARE_STATUS - CH_FIELD_GNSS_2_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_INFO - CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_2_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO_2 - CH_FIELD_GNSS_2_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_LEAP_SECONDS - CH_FIELD_GNSS_2_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_INFO - CH_FIELD_GNSS_2_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_CORRECTION - CH_FIELD_GNSS_2_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_RF_ERROR_DETECTION - CH_FIELD_GNSS_2_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_SATELLITE_STATUS - CH_FIELD_GNSS_2_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_2_RAW_OBSERVATION - CH_FIELD_GNSS_2_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_STATION_INFO - CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_2_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_EPHEMERIS - CH_FIELD_GNSS_2_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GLONASS_EPHEMERIS - CH_FIELD_GNSS_2_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_EPHEMERIS - CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_2_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_TICKS - CH_FIELD_GNSS_2_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TICKS - CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_3_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_LLH_POSITION - CH_FIELD_GNSS_3_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_POSITION - CH_FIELD_GNSS_3_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_NED_VELOCITY - CH_FIELD_GNSS_3_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_VELOCITY - CH_FIELD_GNSS_3_DOP = _mscl.MipTypes_CH_FIELD_GNSS_3_DOP - CH_FIELD_GNSS_3_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_UTC_TIME - CH_FIELD_GNSS_3_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_TIME - CH_FIELD_GNSS_3_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO - CH_FIELD_GNSS_3_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_FIX_INFO - CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_3_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_HARDWARE_STATUS - CH_FIELD_GNSS_3_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_INFO - CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_3_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO_2 - CH_FIELD_GNSS_3_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_LEAP_SECONDS - CH_FIELD_GNSS_3_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_INFO - CH_FIELD_GNSS_3_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_CORRECTION - CH_FIELD_GNSS_3_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_RF_ERROR_DETECTION - CH_FIELD_GNSS_3_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_SATELLITE_STATUS - CH_FIELD_GNSS_3_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_3_RAW_OBSERVATION - CH_FIELD_GNSS_3_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_STATION_INFO - CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_3_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_EPHEMERIS - CH_FIELD_GNSS_3_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GLONASS_EPHEMERIS - CH_FIELD_GNSS_3_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_EPHEMERIS - CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_3_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_TICKS - CH_FIELD_GNSS_3_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TICKS - CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_4_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_LLH_POSITION - CH_FIELD_GNSS_4_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_POSITION - CH_FIELD_GNSS_4_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_NED_VELOCITY - CH_FIELD_GNSS_4_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_VELOCITY - CH_FIELD_GNSS_4_DOP = _mscl.MipTypes_CH_FIELD_GNSS_4_DOP - CH_FIELD_GNSS_4_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_UTC_TIME - CH_FIELD_GNSS_4_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_TIME - CH_FIELD_GNSS_4_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO - CH_FIELD_GNSS_4_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_FIX_INFO - CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_4_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_HARDWARE_STATUS - CH_FIELD_GNSS_4_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_INFO - CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_4_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO_2 - CH_FIELD_GNSS_4_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_LEAP_SECONDS - CH_FIELD_GNSS_4_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_INFO - CH_FIELD_GNSS_4_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_CORRECTION - CH_FIELD_GNSS_4_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_RF_ERROR_DETECTION - CH_FIELD_GNSS_4_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_SATELLITE_STATUS - CH_FIELD_GNSS_4_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_4_RAW_OBSERVATION - CH_FIELD_GNSS_4_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_STATION_INFO - CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_4_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_EPHEMERIS - CH_FIELD_GNSS_4_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GLONASS_EPHEMERIS - CH_FIELD_GNSS_4_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_EPHEMERIS - CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_4_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_TICKS - CH_FIELD_GNSS_4_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TICKS - CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_5_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_LLH_POSITION - CH_FIELD_GNSS_5_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_POSITION - CH_FIELD_GNSS_5_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_NED_VELOCITY - CH_FIELD_GNSS_5_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_VELOCITY - CH_FIELD_GNSS_5_DOP = _mscl.MipTypes_CH_FIELD_GNSS_5_DOP - CH_FIELD_GNSS_5_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_UTC_TIME - CH_FIELD_GNSS_5_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_TIME - CH_FIELD_GNSS_5_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO - CH_FIELD_GNSS_5_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_FIX_INFO - CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_5_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_HARDWARE_STATUS - CH_FIELD_GNSS_5_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_INFO - CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_5_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO_2 - CH_FIELD_GNSS_5_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_LEAP_SECONDS - CH_FIELD_GNSS_5_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_INFO - CH_FIELD_GNSS_5_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_CORRECTION - CH_FIELD_GNSS_5_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_RF_ERROR_DETECTION - CH_FIELD_GNSS_5_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_SATELLITE_STATUS - CH_FIELD_GNSS_5_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_5_RAW_OBSERVATION - CH_FIELD_GNSS_5_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_STATION_INFO - CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_5_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_EPHEMERIS - CH_FIELD_GNSS_5_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GLONASS_EPHEMERIS - CH_FIELD_GNSS_5_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_EPHEMERIS - CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_5_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_TICKS - CH_FIELD_GNSS_5_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TICKS - CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_SYSTEM_BUILT_IN_TEST = _mscl.MipTypes_CH_FIELD_SYSTEM_BUILT_IN_TEST - CH_FIELD_SYSTEM_TIME_SYNC_STATUS = _mscl.MipTypes_CH_FIELD_SYSTEM_TIME_SYNC_STATUS - CH_FIELD_SYSTEM_GPIO_STATE = _mscl.MipTypes_CH_FIELD_SYSTEM_GPIO_STATE - CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE - CH_FIELD_SYSTEM_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_TICKS - CH_FIELD_SYSTEM_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TICKS - CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME - MIN_SHARED_FIELD_DESCRIPTOR = _mscl.MipTypes_MIN_SHARED_FIELD_DESCRIPTOR - CH_UNKNOWN = _mscl.MipTypes_CH_UNKNOWN - CH_X = _mscl.MipTypes_CH_X - CH_Y = _mscl.MipTypes_CH_Y - CH_Z = _mscl.MipTypes_CH_Z - CH_MATRIX = _mscl.MipTypes_CH_MATRIX - CH_QUATERNION = _mscl.MipTypes_CH_QUATERNION - CH_ROLL = _mscl.MipTypes_CH_ROLL - CH_PITCH = _mscl.MipTypes_CH_PITCH - CH_YAW = _mscl.MipTypes_CH_YAW - CH_TICK = _mscl.MipTypes_CH_TICK - CH_TIMESTAMP = _mscl.MipTypes_CH_TIMESTAMP - CH_STATUS = _mscl.MipTypes_CH_STATUS - CH_TIME_OF_WEEK = _mscl.MipTypes_CH_TIME_OF_WEEK - CH_WEEK_NUMBER = _mscl.MipTypes_CH_WEEK_NUMBER - CH_LATITUDE = _mscl.MipTypes_CH_LATITUDE - CH_LONGITUDE = _mscl.MipTypes_CH_LONGITUDE - CH_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CH_HEIGHT_ABOVE_ELLIPSOID - CH_HEIGHT_ABOVE_MSL = _mscl.MipTypes_CH_HEIGHT_ABOVE_MSL - CH_HORIZONTAL_ACCURACY = _mscl.MipTypes_CH_HORIZONTAL_ACCURACY - CH_VERTICAL_ACCURACY = _mscl.MipTypes_CH_VERTICAL_ACCURACY - CH_POSITION_ACCURACY = _mscl.MipTypes_CH_POSITION_ACCURACY - CH_NORTH = _mscl.MipTypes_CH_NORTH - CH_EAST = _mscl.MipTypes_CH_EAST - CH_DOWN = _mscl.MipTypes_CH_DOWN - CH_SPEED = _mscl.MipTypes_CH_SPEED - CH_GROUND_SPEED = _mscl.MipTypes_CH_GROUND_SPEED - CH_HEADING = _mscl.MipTypes_CH_HEADING - CH_SPEED_ACCURACY = _mscl.MipTypes_CH_SPEED_ACCURACY - CH_HEADING_ACCURACY = _mscl.MipTypes_CH_HEADING_ACCURACY - CH_VELOCITY_ACCURACY = _mscl.MipTypes_CH_VELOCITY_ACCURACY - CH_GEOMETRIC_DOP = _mscl.MipTypes_CH_GEOMETRIC_DOP - CH_POSITION_DOP = _mscl.MipTypes_CH_POSITION_DOP - CH_HORIZONTAL_DOP = _mscl.MipTypes_CH_HORIZONTAL_DOP - CH_VERTICAL_DOP = _mscl.MipTypes_CH_VERTICAL_DOP - CH_TIME_DOP = _mscl.MipTypes_CH_TIME_DOP - CH_NORTHING_DOP = _mscl.MipTypes_CH_NORTHING_DOP - CH_EASTING_DOP = _mscl.MipTypes_CH_EASTING_DOP - CH_FLAGS = _mscl.MipTypes_CH_FLAGS - CH_BIAS = _mscl.MipTypes_CH_BIAS - CH_DRIFT = _mscl.MipTypes_CH_DRIFT - CH_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_ACCURACY_ESTIMATE - CH_FIX_TYPE = _mscl.MipTypes_CH_FIX_TYPE - CH_SV_COUNT = _mscl.MipTypes_CH_SV_COUNT - CH_CHANNEL = _mscl.MipTypes_CH_CHANNEL - CH_ID = _mscl.MipTypes_CH_ID - CH_CARRIER_TO_NOISE_RATIO = _mscl.MipTypes_CH_CARRIER_TO_NOISE_RATIO - CH_AZIMUTH = _mscl.MipTypes_CH_AZIMUTH - CH_ELEVATION = _mscl.MipTypes_CH_ELEVATION - CH_SENSOR_STATE = _mscl.MipTypes_CH_SENSOR_STATE - CH_ANTENNA_STATE = _mscl.MipTypes_CH_ANTENNA_STATE - CH_ANTENNA_POWER = _mscl.MipTypes_CH_ANTENNA_POWER - CH_FILTER_STATE = _mscl.MipTypes_CH_FILTER_STATE - CH_DYNAMICS_MODE = _mscl.MipTypes_CH_DYNAMICS_MODE - CH_MAGNITUDE = _mscl.MipTypes_CH_MAGNITUDE - CH_HEADING_UNCERTAINTY = _mscl.MipTypes_CH_HEADING_UNCERTAINTY - CH_SOURCE = _mscl.MipTypes_CH_SOURCE - CH_INCLINATION = _mscl.MipTypes_CH_INCLINATION - CH_DECLINATION = _mscl.MipTypes_CH_DECLINATION - CH_PRESSURE = _mscl.MipTypes_CH_PRESSURE - CH_AGE = _mscl.MipTypes_CH_AGE - CH_NUM_CHANNELS = _mscl.MipTypes_CH_NUM_CHANNELS - CH_CORRECTION = _mscl.MipTypes_CH_CORRECTION - CH_RATE_CORRECTION = _mscl.MipTypes_CH_RATE_CORRECTION - CH_GEOMETRIC_ALTITUDE = _mscl.MipTypes_CH_GEOMETRIC_ALTITUDE - CH_GEOPOTENTIAL_ALTITUDE = _mscl.MipTypes_CH_GEOPOTENTIAL_ALTITUDE - CH_TEMPERATURE = _mscl.MipTypes_CH_TEMPERATURE - CH_DENSITY = _mscl.MipTypes_CH_DENSITY - CH_ALTITUDE = _mscl.MipTypes_CH_ALTITUDE - CH_DISPLACEMENT = _mscl.MipTypes_CH_DISPLACEMENT - CH_MAX_TEMP = _mscl.MipTypes_CH_MAX_TEMP - CH_MIN_TEMP = _mscl.MipTypes_CH_MIN_TEMP - CH_MEAN_TEMP = _mscl.MipTypes_CH_MEAN_TEMP - CH_BIAS_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_BIAS_ACCURACY_ESTIMATE - CH_DRIFT_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_DRIFT_ACCURACY_ESTIMATE - CH_SECONDS = _mscl.MipTypes_CH_SECONDS - CH_NUM_PACKETS = _mscl.MipTypes_CH_NUM_PACKETS - CH_GPS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GPS_CORRECTION_LATENCY - CH_GLONASS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GLONASS_CORRECTION_LATENCY - CH_GALILEO_CORRECTION_LATENCY = _mscl.MipTypes_CH_GALILEO_CORRECTION_LATENCY - CH_BEIDOU_CORRECTION_LATENCY = _mscl.MipTypes_CH_BEIDOU_CORRECTION_LATENCY - CH_HEIGHT = _mscl.MipTypes_CH_HEIGHT - CH_HEALTH = _mscl.MipTypes_CH_HEALTH - CH_INDEX = _mscl.MipTypes_CH_INDEX - CH_COUNT = _mscl.MipTypes_CH_COUNT - CH_SIGNAL_STRENGTH = _mscl.MipTypes_CH_SIGNAL_STRENGTH - CH_SIGNAL_QUALITY = _mscl.MipTypes_CH_SIGNAL_QUALITY - CH_RANGE = _mscl.MipTypes_CH_RANGE - CH_RANGE_UNC = _mscl.MipTypes_CH_RANGE_UNC - CH_ALPHA = _mscl.MipTypes_CH_ALPHA - CH_BETA = _mscl.MipTypes_CH_BETA - CH_DISTURBANCE_FLAGS = _mscl.MipTypes_CH_DISTURBANCE_FLAGS - CH_CARRIER_PHASE = _mscl.MipTypes_CH_CARRIER_PHASE - CH_CARRIER_PHASE_UNC = _mscl.MipTypes_CH_CARRIER_PHASE_UNC - CH_DOPPLER = _mscl.MipTypes_CH_DOPPLER - CH_DOPPLER_UNC = _mscl.MipTypes_CH_DOPPLER_UNC - CH_DELTA_TIME = _mscl.MipTypes_CH_DELTA_TIME - CH_DELTA_TICK = _mscl.MipTypes_CH_DELTA_TICK - CH_ERROR = _mscl.MipTypes_CH_ERROR - CH_ERROR_UNC = _mscl.MipTypes_CH_ERROR_UNC - CH_W = _mscl.MipTypes_CH_W - CH_M0 = _mscl.MipTypes_CH_M0 - CH_M1 = _mscl.MipTypes_CH_M1 - CH_M2 = _mscl.MipTypes_CH_M2 - CH_M3 = _mscl.MipTypes_CH_M3 - CH_M4 = _mscl.MipTypes_CH_M4 - CH_M5 = _mscl.MipTypes_CH_M5 - CH_M6 = _mscl.MipTypes_CH_M6 - CH_M7 = _mscl.MipTypes_CH_M7 - CH_M8 = _mscl.MipTypes_CH_M8 - CH_NANOSECONDS = _mscl.MipTypes_CH_NANOSECONDS - CH_VALID_FLAGS = _mscl.MipTypes_CH_VALID_FLAGS - CH_PPS_VALID = _mscl.MipTypes_CH_PPS_VALID - CH_LAST_PPS = _mscl.MipTypes_CH_LAST_PPS - CH_UDREI = _mscl.MipTypes_CH_UDREI - CH_PSEUDORANGE_CORRECTION = _mscl.MipTypes_CH_PSEUDORANGE_CORRECTION - CH_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_IONOSPHERIC_CORRECTION - CH_JAMMING_STATE = _mscl.MipTypes_CH_JAMMING_STATE - CH_SPOOFING_STATE = _mscl.MipTypes_CH_SPOOFING_STATE - CH_SYSTEM_ID = _mscl.MipTypes_CH_SYSTEM_ID - CH_SATELLITE_ID = _mscl.MipTypes_CH_SATELLITE_ID - CH_BIT_SYSTEM_GENERAL = _mscl.MipTypes_CH_BIT_SYSTEM_GENERAL - CH_BIT_SYSTEM_PROCESS = _mscl.MipTypes_CH_BIT_SYSTEM_PROCESS - CH_BIT_IMU_GENERAL = _mscl.MipTypes_CH_BIT_IMU_GENERAL - CH_BIT_IMU_SENSORS = _mscl.MipTypes_CH_BIT_IMU_SENSORS - CH_BIT_IMU_FACTORY_BITS = _mscl.MipTypes_CH_BIT_IMU_FACTORY_BITS - CH_BIT_FILTER_GENERAL = _mscl.MipTypes_CH_BIT_FILTER_GENERAL - CH_BIT_GNSS_GENERAL = _mscl.MipTypes_CH_BIT_GNSS_GENERAL - CH_BIT_GNSS_RECEIVERS = _mscl.MipTypes_CH_BIT_GNSS_RECEIVERS - - @staticmethod - def channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - - @staticmethod - def getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - - @staticmethod - def getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - - @staticmethod - def getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - - @staticmethod - def getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - - @staticmethod - def getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - - @staticmethod - def isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - - @staticmethod - def isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - - @staticmethod - def channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - - @staticmethod - def channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - - @staticmethod - def channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - - def __init__(self): - _mscl.MipTypes_swiginit(self, _mscl.new_MipTypes()) - __swig_destroy__ = _mscl.delete_MipTypes - -# Register MipTypes in _mscl: -_mscl.MipTypes_swigregister(MipTypes) - -def MipTypes_channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - -def MipTypes_getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - -def MipTypes_getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - -def MipTypes_getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - -def MipTypes_getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - -def MipTypes_getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - -def MipTypes_isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - -def MipTypes_isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - -def MipTypes_channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - -def MipTypes_channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - -def MipTypes_channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - -class MipChannelIdentifier(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - GNSS_RECEIVER_ID = _mscl.MipChannelIdentifier_GNSS_RECEIVER_ID - GNSS_BASE_STATION_ID = _mscl.MipChannelIdentifier_GNSS_BASE_STATION_ID - GNSS_CONSTELLATION = _mscl.MipChannelIdentifier_GNSS_CONSTELLATION - GNSS_SATELLITE_ID = _mscl.MipChannelIdentifier_GNSS_SATELLITE_ID - GNSS_SIGNAL_ID = _mscl.MipChannelIdentifier_GNSS_SIGNAL_ID - AIDING_MEASUREMENT_TYPE = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_TYPE - GNSS_RF_BAND = _mscl.MipChannelIdentifier_GNSS_RF_BAND - AIDING_MEASUREMENT_FRAME_ID = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_FRAME_ID - GNSS = _mscl.MipChannelIdentifier_GNSS - DUAL_ANTENNA = _mscl.MipChannelIdentifier_DUAL_ANTENNA - HEADING = _mscl.MipChannelIdentifier_HEADING - PRESSURE = _mscl.MipChannelIdentifier_PRESSURE - MAGNETOMETER = _mscl.MipChannelIdentifier_MAGNETOMETER - SPEED = _mscl.MipChannelIdentifier_SPEED - AIDING_POS_ECEF = _mscl.MipChannelIdentifier_AIDING_POS_ECEF - AIDING_POS_LLH = _mscl.MipChannelIdentifier_AIDING_POS_LLH - AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipChannelIdentifier_AIDING_HEIGHT_ABOVE_ELLIPSOID - AIDING_VEL_ECEF = _mscl.MipChannelIdentifier_AIDING_VEL_ECEF - AIDING_VEL_NED = _mscl.MipChannelIdentifier_AIDING_VEL_NED - AIDING_VEL_BODY_FRAME = _mscl.MipChannelIdentifier_AIDING_VEL_BODY_FRAME - AIDING_HEADING_TRUE = _mscl.MipChannelIdentifier_AIDING_HEADING_TRUE - AIDING_MAGNETIC_FIELD = _mscl.MipChannelIdentifier_AIDING_MAGNETIC_FIELD - AIDING_PRESSURE = _mscl.MipChannelIdentifier_AIDING_PRESSURE - UNKNOWN_CONSTELLATION = _mscl.MipChannelIdentifier_UNKNOWN_CONSTELLATION - GPS = _mscl.MipChannelIdentifier_GPS - GLONASS = _mscl.MipChannelIdentifier_GLONASS - GALILEO = _mscl.MipChannelIdentifier_GALILEO - BEIDOU = _mscl.MipChannelIdentifier_BEIDOU - UNKNOWN_SIGNAL = _mscl.MipChannelIdentifier_UNKNOWN_SIGNAL - GPS_L1CA = _mscl.MipChannelIdentifier_GPS_L1CA - GPS_L1P = _mscl.MipChannelIdentifier_GPS_L1P - GPS_L1Z = _mscl.MipChannelIdentifier_GPS_L1Z - GPS_L2CA = _mscl.MipChannelIdentifier_GPS_L2CA - GPS_L2P = _mscl.MipChannelIdentifier_GPS_L2P - GPS_L2Z = _mscl.MipChannelIdentifier_GPS_L2Z - GPS_L2CL = _mscl.MipChannelIdentifier_GPS_L2CL - GPS_L2CM = _mscl.MipChannelIdentifier_GPS_L2CM - GPS_L2CML = _mscl.MipChannelIdentifier_GPS_L2CML - GPS_L5I = _mscl.MipChannelIdentifier_GPS_L5I - GPS_L5Q = _mscl.MipChannelIdentifier_GPS_L5Q - GPS_L5IQ = _mscl.MipChannelIdentifier_GPS_L5IQ - GPS_L1CD = _mscl.MipChannelIdentifier_GPS_L1CD - GPS_L1CP = _mscl.MipChannelIdentifier_GPS_L1CP - GPS_L1CDP = _mscl.MipChannelIdentifier_GPS_L1CDP - GLONASS_G1CA = _mscl.MipChannelIdentifier_GLONASS_G1CA - GLONASS_G1P = _mscl.MipChannelIdentifier_GLONASS_G1P - GLONASS_G2C = _mscl.MipChannelIdentifier_GLONASS_G2C - GLONASS_G2P = _mscl.MipChannelIdentifier_GLONASS_G2P - GALILEO_E1C = _mscl.MipChannelIdentifier_GALILEO_E1C - GALILEO_E1A = _mscl.MipChannelIdentifier_GALILEO_E1A - GALILEO_E1B = _mscl.MipChannelIdentifier_GALILEO_E1B - GALILEO_E1BC = _mscl.MipChannelIdentifier_GALILEO_E1BC - GALILEO_E1ABC = _mscl.MipChannelIdentifier_GALILEO_E1ABC - GALILEO_E6C = _mscl.MipChannelIdentifier_GALILEO_E6C - GALILEO_E6A = _mscl.MipChannelIdentifier_GALILEO_E6A - GALILEO_E6B = _mscl.MipChannelIdentifier_GALILEO_E6B - GALILEO_E6BC = _mscl.MipChannelIdentifier_GALILEO_E6BC - GALILEO_E6ABC = _mscl.MipChannelIdentifier_GALILEO_E6ABC - GALILEO_E5BI = _mscl.MipChannelIdentifier_GALILEO_E5BI - GALILEO_E5BQ = _mscl.MipChannelIdentifier_GALILEO_E5BQ - GALILEO_E5BIQ = _mscl.MipChannelIdentifier_GALILEO_E5BIQ - GALILEO_E5ABI = _mscl.MipChannelIdentifier_GALILEO_E5ABI - GALILEO_E5ABQ = _mscl.MipChannelIdentifier_GALILEO_E5ABQ - GALILEO_E5ABIQ = _mscl.MipChannelIdentifier_GALILEO_E5ABIQ - GALILEO_E5AI = _mscl.MipChannelIdentifier_GALILEO_E5AI - GALILEO_E5AQ = _mscl.MipChannelIdentifier_GALILEO_E5AQ - GALILEO_E5AIQ = _mscl.MipChannelIdentifier_GALILEO_E5AIQ - SBAS_L1CA = _mscl.MipChannelIdentifier_SBAS_L1CA - SBAS_L5I = _mscl.MipChannelIdentifier_SBAS_L5I - SBAS_L5Q = _mscl.MipChannelIdentifier_SBAS_L5Q - SBAS_L5IQ = _mscl.MipChannelIdentifier_SBAS_L5IQ - QZSS_L1CA = _mscl.MipChannelIdentifier_QZSS_L1CA - QZSS_LEXS = _mscl.MipChannelIdentifier_QZSS_LEXS - QZSS_LEXL = _mscl.MipChannelIdentifier_QZSS_LEXL - QZSS_LEXSL = _mscl.MipChannelIdentifier_QZSS_LEXSL - QZSS_L2CM = _mscl.MipChannelIdentifier_QZSS_L2CM - QZSS_L2CL = _mscl.MipChannelIdentifier_QZSS_L2CL - QZSS_L2CML = _mscl.MipChannelIdentifier_QZSS_L2CML - QZSS_L5I = _mscl.MipChannelIdentifier_QZSS_L5I - QZSS_L5Q = _mscl.MipChannelIdentifier_QZSS_L5Q - QZSS_L5IQ = _mscl.MipChannelIdentifier_QZSS_L5IQ - QZSS_L1CD = _mscl.MipChannelIdentifier_QZSS_L1CD - QZSS_L1CP = _mscl.MipChannelIdentifier_QZSS_L1CP - QZSS_L1CDP = _mscl.MipChannelIdentifier_QZSS_L1CDP - BEIDOU_B1I = _mscl.MipChannelIdentifier_BEIDOU_B1I - BEIDOU_B1Q = _mscl.MipChannelIdentifier_BEIDOU_B1Q - BEIDOU_B1IQ = _mscl.MipChannelIdentifier_BEIDOU_B1IQ - BEIDOU_B3I = _mscl.MipChannelIdentifier_BEIDOU_B3I - BEIDOU_B3Q = _mscl.MipChannelIdentifier_BEIDOU_B3Q - BEIDOU_B3IQ = _mscl.MipChannelIdentifier_BEIDOU_B3IQ - BEIDOU_B2I = _mscl.MipChannelIdentifier_BEIDOU_B2I - BEIDOU_B2Q = _mscl.MipChannelIdentifier_BEIDOU_B2Q - BEIDOU_B2IQ = _mscl.MipChannelIdentifier_BEIDOU_B2IQ - UNKNOWN_RF_BAND = _mscl.MipChannelIdentifier_UNKNOWN_RF_BAND - RF_BAND_L1 = _mscl.MipChannelIdentifier_RF_BAND_L1 - RF_BAND_L2 = _mscl.MipChannelIdentifier_RF_BAND_L2 - RF_BAND_L5 = _mscl.MipChannelIdentifier_RF_BAND_L5 - - def __init__(self, *args): - _mscl.MipChannelIdentifier_swiginit(self, _mscl.new_MipChannelIdentifier(*args)) - __swig_destroy__ = _mscl.delete_MipChannelIdentifier - - def identifierType(self): - return _mscl.MipChannelIdentifier_identifierType(self) - - def id(self): - return _mscl.MipChannelIdentifier_id(self) - - def hasSpecifier(self): - return _mscl.MipChannelIdentifier_hasSpecifier(self) - - def specifier(self): - return _mscl.MipChannelIdentifier_specifier(self) - - def name(self, standardizedFormat=True): - return _mscl.MipChannelIdentifier_name(self, standardizedFormat) - -# Register MipChannelIdentifier in _mscl: -_mscl.MipChannelIdentifier_swigregister(MipChannelIdentifier) - -class MipCommandBytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - id = property(_mscl.MipCommandBytes_id_get, _mscl.MipCommandBytes_id_set) - commands = property(_mscl.MipCommandBytes_commands_get, _mscl.MipCommandBytes_commands_set) - buildCmdFailed = property(_mscl.MipCommandBytes_buildCmdFailed_get, _mscl.MipCommandBytes_buildCmdFailed_set) - sendCmdFailed = property(_mscl.MipCommandBytes_sendCmdFailed_get, _mscl.MipCommandBytes_sendCmdFailed_set) - - def __init__(self, *args): - _mscl.MipCommandBytes_swiginit(self, _mscl.new_MipCommandBytes(*args)) - - def add(self, cmd): - return _mscl.MipCommandBytes_add(self, cmd) - - def valid(self): - return _mscl.MipCommandBytes_valid(self) - __swig_destroy__ = _mscl.delete_MipCommandBytes - -# Register MipCommandBytes in _mscl: -_mscl.MipCommandBytes_swigregister(MipCommandBytes) - -class AidingMeasurementInput(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - ACK_NACK = _mscl.AidingMeasurementInput_ACK_NACK - ECHO_INPUT = _mscl.AidingMeasurementInput_ECHO_INPUT - - def toMipFieldValues(self): - return _mscl.AidingMeasurementInput_toMipFieldValues(self) - - def timestamp(self, *args): - return _mscl.AidingMeasurementInput_timestamp(self, *args) - - def timebase(self): - return _mscl.AidingMeasurementInput_timebase(self) - - def frameId(self, *args): - return _mscl.AidingMeasurementInput_frameId(self, *args) - - def validFlags(self, *args): - return _mscl.AidingMeasurementInput_validFlags(self, *args) - -# Register AidingMeasurementInput in _mscl: -_mscl.AidingMeasurementInput_swigregister(AidingMeasurementInput) - -class AidingMeasurementPosition(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementPosition_X - LATITUDE = _mscl.AidingMeasurementPosition_LATITUDE - Y = _mscl.AidingMeasurementPosition_Y - LONGITUDE = _mscl.AidingMeasurementPosition_LONGITUDE - Z = _mscl.AidingMeasurementPosition_Z - HEIGHT = _mscl.AidingMeasurementPosition_HEIGHT - ALTITUDE = _mscl.AidingMeasurementPosition_ALTITUDE - - def __init__(self, *args): - _mscl.AidingMeasurementPosition_swiginit(self, _mscl.new_AidingMeasurementPosition(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPosition - - def position(self, *args): - return _mscl.AidingMeasurementPosition_position(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPosition_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementPosition_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPosition_valid(self, *args) - -# Register AidingMeasurementPosition in _mscl: -_mscl.AidingMeasurementPosition_swigregister(AidingMeasurementPosition) - -class AidingMeasurementHeight(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeight_swiginit(self, _mscl.new_AidingMeasurementHeight(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeight - - def height(self, *args): - return _mscl.AidingMeasurementHeight_height(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeight_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeight_valid(self, *args) - -# Register AidingMeasurementHeight in _mscl: -_mscl.AidingMeasurementHeight_swigregister(AidingMeasurementHeight) - -class AidingMeasurementVelocity(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementVelocity_X - NORTH = _mscl.AidingMeasurementVelocity_NORTH - Y = _mscl.AidingMeasurementVelocity_Y - EAST = _mscl.AidingMeasurementVelocity_EAST - Z = _mscl.AidingMeasurementVelocity_Z - DOWN = _mscl.AidingMeasurementVelocity_DOWN - - def __init__(self, *args): - _mscl.AidingMeasurementVelocity_swiginit(self, _mscl.new_AidingMeasurementVelocity(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementVelocity - - def velocity(self, *args): - return _mscl.AidingMeasurementVelocity_velocity(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementVelocity_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementVelocity_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementVelocity_valid(self, *args) - -# Register AidingMeasurementVelocity in _mscl: -_mscl.AidingMeasurementVelocity_swigregister(AidingMeasurementVelocity) - -class AidingMeasurementHeading(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeading_swiginit(self, _mscl.new_AidingMeasurementHeading(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeading - - def heading(self, *args): - return _mscl.AidingMeasurementHeading_heading(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeading_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeading_valid(self, *args) - -# Register AidingMeasurementHeading in _mscl: -_mscl.AidingMeasurementHeading_swigregister(AidingMeasurementHeading) - -class AidingMeasurementMagneticField(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementMagneticField_X - Y = _mscl.AidingMeasurementMagneticField_Y - Z = _mscl.AidingMeasurementMagneticField_Z - - def __init__(self, *args): - _mscl.AidingMeasurementMagneticField_swiginit(self, _mscl.new_AidingMeasurementMagneticField(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementMagneticField - - def magneticField(self, *args): - return _mscl.AidingMeasurementMagneticField_magneticField(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementMagneticField_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementMagneticField_valid(self, *args) - -# Register AidingMeasurementMagneticField in _mscl: -_mscl.AidingMeasurementMagneticField_swigregister(AidingMeasurementMagneticField) - -class AidingMeasurementPressure(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementPressure_swiginit(self, _mscl.new_AidingMeasurementPressure(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPressure - - def pressure(self, *args): - return _mscl.AidingMeasurementPressure_pressure(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPressure_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPressure_valid(self, *args) - -# Register AidingMeasurementPressure in _mscl: -_mscl.AidingMeasurementPressure_swigregister(AidingMeasurementPressure) - -class GnssReceiverInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GnssReceiverInfo_swiginit(self, _mscl.new_GnssReceiverInfo(*args)) - id = property(_mscl.GnssReceiverInfo_id_get, _mscl.GnssReceiverInfo_id_set) - targetDataClass = property(_mscl.GnssReceiverInfo_targetDataClass_get, _mscl.GnssReceiverInfo_targetDataClass_set) - description = property(_mscl.GnssReceiverInfo_description_get, _mscl.GnssReceiverInfo_description_set) - module = property(_mscl.GnssReceiverInfo_module_get, _mscl.GnssReceiverInfo_module_set) - fwId = property(_mscl.GnssReceiverInfo_fwId_get, _mscl.GnssReceiverInfo_fwId_set) - fwVersion = property(_mscl.GnssReceiverInfo_fwVersion_get, _mscl.GnssReceiverInfo_fwVersion_set) - __swig_destroy__ = _mscl.delete_GnssReceiverInfo - -# Register GnssReceiverInfo in _mscl: -_mscl.GnssReceiverInfo_swigregister(GnssReceiverInfo) -GnssReceiverInfo.INFO_NOT_FOUND = _mscl.cvar.GnssReceiverInfo_INFO_NOT_FOUND - -class DeviceCommPort(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SPECIAL = _mscl.DeviceCommPort_SPECIAL - UART = _mscl.DeviceCommPort_UART - USB = _mscl.DeviceCommPort_USB - NONE = _mscl.DeviceCommPort_NONE - MIP_COMMANDS = _mscl.DeviceCommPort_MIP_COMMANDS - MIP_DATA = _mscl.DeviceCommPort_MIP_DATA - NMEA = _mscl.DeviceCommPort_NMEA - RTCM = _mscl.DeviceCommPort_RTCM - SPARTN = _mscl.DeviceCommPort_SPARTN - ALL = _mscl.DeviceCommPort_ALL - - def __init__(self, *args): - _mscl.DeviceCommPort_swiginit(self, _mscl.new_DeviceCommPort(*args)) - - def interfaceId(self): - return _mscl.DeviceCommPort_interfaceId(self) - type = property(_mscl.DeviceCommPort_type_get, _mscl.DeviceCommPort_type_set) - id = property(_mscl.DeviceCommPort_id_get, _mscl.DeviceCommPort_id_set) - inputProtocols = property(_mscl.DeviceCommPort_inputProtocols_get, _mscl.DeviceCommPort_inputProtocols_set) - outputProtocols = property(_mscl.DeviceCommPort_outputProtocols_get, _mscl.DeviceCommPort_outputProtocols_set) - __swig_destroy__ = _mscl.delete_DeviceCommPort - -# Register DeviceCommPort in _mscl: -_mscl.DeviceCommPort_swigregister(DeviceCommPort) - -class EventTypeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTypeInfo_swiginit(self, _mscl.new_EventTypeInfo(*args)) - type = property(_mscl.EventTypeInfo_type_get, _mscl.EventTypeInfo_type_set) - maxInstances = property(_mscl.EventTypeInfo_maxInstances_get, _mscl.EventTypeInfo_maxInstances_set) - __swig_destroy__ = _mscl.delete_EventTypeInfo - -# Register EventTypeInfo in _mscl: -_mscl.EventTypeInfo_swigregister(EventTypeInfo) - -class EventSupportInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - TRIGGERS = _mscl.EventSupportInfo_TRIGGERS - ACTIONS = _mscl.EventSupportInfo_ACTIONS - query = property(_mscl.EventSupportInfo_query_get, _mscl.EventSupportInfo_query_set) - maxInstances = property(_mscl.EventSupportInfo_maxInstances_get, _mscl.EventSupportInfo_maxInstances_set) - entries = property(_mscl.EventSupportInfo_entries_get, _mscl.EventSupportInfo_entries_set) - - def __init__(self): - _mscl.EventSupportInfo_swiginit(self, _mscl.new_EventSupportInfo()) - __swig_destroy__ = _mscl.delete_EventSupportInfo - -# Register EventSupportInfo in _mscl: -_mscl.EventSupportInfo_swigregister(EventSupportInfo) - -class SensorRange(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ALL = _mscl.SensorRange_ALL - ACCEL_G = _mscl.SensorRange_ACCEL_G - GYRO_DPS = _mscl.SensorRange_GYRO_DPS - MAG_GAUSS = _mscl.SensorRange_MAG_GAUSS - PRESSURE_HPA = _mscl.SensorRange_PRESSURE_HPA - - def __init__(self): - _mscl.SensorRange_swiginit(self, _mscl.new_SensorRange()) - - def type(self): - return _mscl.SensorRange_type(self) - - def range(self): - return _mscl.SensorRange_range(self) - - def id(self): - return _mscl.SensorRange_id(self) - __swig_destroy__ = _mscl.delete_SensorRange - -# Register SensorRange in _mscl: -_mscl.SensorRange_swigregister(SensorRange) - -class SupportedSensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.SupportedSensorRanges_swiginit(self, _mscl.new_SupportedSensorRanges()) - - def options(self): - return _mscl.SupportedSensorRanges_options(self) - - def lookupRecommended(self, type, range): - return _mscl.SupportedSensorRanges_lookupRecommended(self, type, range) - __swig_destroy__ = _mscl.delete_SupportedSensorRanges - -# Register SupportedSensorRanges in _mscl: -_mscl.SupportedSensorRanges_swigregister(SupportedSensorRanges) - -class InertialTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - PORTABLE_VEHICLE = _mscl.InertialTypes_PORTABLE_VEHICLE - AUTOMOTIVE_VEHICLE = _mscl.InertialTypes_AUTOMOTIVE_VEHICLE - AIRBORNE_VEHICLE = _mscl.InertialTypes_AIRBORNE_VEHICLE - AIRBORNE_HIGH_G_VEHICLE = _mscl.InertialTypes_AIRBORNE_HIGH_G_VEHICLE - GPS_PORTABLE = _mscl.InertialTypes_GPS_PORTABLE - GPS_STATIONARY = _mscl.InertialTypes_GPS_STATIONARY - GPS_PEDESTRIAN = _mscl.InertialTypes_GPS_PEDESTRIAN - GPS_AUTOMOTIVE = _mscl.InertialTypes_GPS_AUTOMOTIVE - GPS_SEA = _mscl.InertialTypes_GPS_SEA - GPS_AIRBORNE_1G = _mscl.InertialTypes_GPS_AIRBORNE_1G - GPS_AIRBORNE_2G = _mscl.InertialTypes_GPS_AIRBORNE_2G - GPS_AIRBORNE_4G = _mscl.InertialTypes_GPS_AIRBORNE_4G - RESET_ALL_AXIS = _mscl.InertialTypes_RESET_ALL_AXIS - TARE_ROLL_AXIS = _mscl.InertialTypes_TARE_ROLL_AXIS - TARE_PITCH_AXIS = _mscl.InertialTypes_TARE_PITCH_AXIS - TARE_YAW_AXIS = _mscl.InertialTypes_TARE_YAW_AXIS - INTERNAL_GNSS_ALL = _mscl.InertialTypes_INTERNAL_GNSS_ALL - EXTERNAL_GNSS = _mscl.InertialTypes_EXTERNAL_GNSS - INTERNAL_GNSS1 = _mscl.InertialTypes_INTERNAL_GNSS1 - INTERNAL_GNSS2 = _mscl.InertialTypes_INTERNAL_GNSS2 - FIX_SBAS_CORRECTIONS = _mscl.InertialTypes_FIX_SBAS_CORRECTIONS - FIX_DGNSS_CORRECTIONS = _mscl.InertialTypes_FIX_DGNSS_CORRECTIONS - FIXTYPE_3D = _mscl.InertialTypes_FIXTYPE_3D - FIXTYPE_2D = _mscl.InertialTypes_FIXTYPE_2D - FIXTYPE_TIMEONLY = _mscl.InertialTypes_FIXTYPE_TIMEONLY - FIXTYPE_NONE = _mscl.InertialTypes_FIXTYPE_NONE - FIXTYPE_INVALID = _mscl.InertialTypes_FIXTYPE_INVALID - FIXTYPE_RTK_FLOAT = _mscl.InertialTypes_FIXTYPE_RTK_FLOAT - FIXTYPE_RTK_FIXED = _mscl.InertialTypes_FIXTYPE_RTK_FIXED - FIXTYPE_DUAL_ANTENNA_NONE = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_NONE - FIXTYPE_DUAL_ANTENNA_FLOAT = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FLOAT - FIXTYPE_DUAL_ANTENNA_FIXED = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FIXED - DATA_VALID_REC_1 = _mscl.InertialTypes_DATA_VALID_REC_1 - DATA_VALID_REC_2 = _mscl.InertialTypes_DATA_VALID_REC_2 - ANTENNA_OFFSETS_VALID = _mscl.InertialTypes_ANTENNA_OFFSETS_VALID - SVFLAG_NAVIGATION = _mscl.InertialTypes_SVFLAG_NAVIGATION - SVFLAG_HEALTHY = _mscl.InertialTypes_SVFLAG_HEALTHY - DEVICE_AHRS = _mscl.InertialTypes_DEVICE_AHRS - DEVICE_GPS = _mscl.InertialTypes_DEVICE_GPS - ON_FULL_PERFORMANCE = _mscl.InertialTypes_ON_FULL_PERFORMANCE - ON_LOW_POWER = _mscl.InertialTypes_ON_LOW_POWER - SLEEP = _mscl.InertialTypes_SLEEP - OFF = _mscl.InertialTypes_OFF - STANDARD_MIP = _mscl.InertialTypes_STANDARD_MIP - WRAPPED_RAW = _mscl.InertialTypes_WRAPPED_RAW - SENSORSTATE_OFF = _mscl.InertialTypes_SENSORSTATE_OFF - SENSORSTATE_ON = _mscl.InertialTypes_SENSORSTATE_ON - SENSORSTATE_UNKNOWN = _mscl.InertialTypes_SENSORSTATE_UNKNOWN - ANTENNASTATE_INIT = _mscl.InertialTypes_ANTENNASTATE_INIT - ANTENNASTATE_SHORT = _mscl.InertialTypes_ANTENNASTATE_SHORT - ANTENNASTATE_OPEN = _mscl.InertialTypes_ANTENNASTATE_OPEN - ANTENNASTATE_GOOD = _mscl.InertialTypes_ANTENNASTATE_GOOD - ANTENNASTATE_UNKNOWN = _mscl.InertialTypes_ANTENNASTATE_UNKNOWN - ANTENNAPOWER_OFF = _mscl.InertialTypes_ANTENNAPOWER_OFF - ANTENNAPOWER_ON = _mscl.InertialTypes_ANTENNAPOWER_ON - ANTENNAPOWER_UNKNOWN = _mscl.InertialTypes_ANTENNAPOWER_UNKNOWN - FILTERSTATE_STARTUP = _mscl.InertialTypes_FILTERSTATE_STARTUP - FILTERSTATE_INIT = _mscl.InertialTypes_FILTERSTATE_INIT - FILTERSTATE_RUNNING_SLN_VALID = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_VALID - FILTERSTATE_RUNNING_SLN_ERROR = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_ERROR - FILTERSTATE_VERT_GYRO = _mscl.InertialTypes_FILTERSTATE_VERT_GYRO - FILTERSTATE_AHRS = _mscl.InertialTypes_FILTERSTATE_AHRS - FILTERSTATE_FULL_NAV = _mscl.InertialTypes_FILTERSTATE_FULL_NAV - FILTERSTATUS_IMU_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_IMU_UNAVAILABLE - FILTERSTATUS_GPS_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_GPS_UNAVAILABLE - FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC = _mscl.InertialTypes_FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC - FILTERSTATUS_POS_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_POS_COVARIANCE_HIGH_WARN - FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN - FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN - FILTERSTATUS_NAN_IN_SOLUTION = _mscl.InertialTypes_FILTERSTATUS_NAN_IN_SOLUTION - FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN - FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN - FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN - FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN - FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_CONDITION = _mscl.InertialTypes_FILTERSTATUS_CONDITION - FILTERSTATUS_ROLL_PITCH_WARNING = _mscl.InertialTypes_FILTERSTATUS_ROLL_PITCH_WARNING - FILTERSTATUS_HEADING_WARNING = _mscl.InertialTypes_FILTERSTATUS_HEADING_WARNING - FILTERSTATUS_POSITION_WARNING = _mscl.InertialTypes_FILTERSTATUS_POSITION_WARNING - FILTERSTATUS_VELOCITY_WARNING = _mscl.InertialTypes_FILTERSTATUS_VELOCITY_WARNING - FILTERSTATUS_IMU_BIAS_WARNING = _mscl.InertialTypes_FILTERSTATUS_IMU_BIAS_WARNING - FILTERSTATUS_GNSS_CLK_WARNING = _mscl.InertialTypes_FILTERSTATUS_GNSS_CLK_WARNING - FILTERSTATUS_ANT_LEVER_ARM_WARNING = _mscl.InertialTypes_FILTERSTATUS_ANT_LEVER_ARM_WARNING - FILTERSTATUS_MOUNTING_TRANSFORM_WARNING = _mscl.InertialTypes_FILTERSTATUS_MOUNTING_TRANSFORM_WARNING - FILTERSTATUS_ATT_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_ATT_NOT_INIT - FILTERSTATUS_POS_VEL_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_POS_VEL_NOT_INIT - STABLE = _mscl.InertialTypes_STABLE - CONVERGING = _mscl.InertialTypes_CONVERGING - UNSTABLE = _mscl.InertialTypes_UNSTABLE - DGNSSBASE_UDRE_SCALE_FACTOR_1_00 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_1_00 - DGNSSBASE_UDRE_SCALE_FACTOR_0_75 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_75 - DGNSSBASE_UDRE_SCALE_FACTOR_0_50 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_50 - DGNSSBASE_UDRE_SCALE_FACTOR_0_30 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_30 - DGNSSBASE_UDRE_SCALE_FACTOR_0_20 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_20 - DGNSSBASE_UDRE_SCALE_FACTOR_0_10 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_10 - DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED - DGNSSBASE_REFERENCE_STATION_NOT_WORKING = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_NOT_WORKING - HEADINGSOURCE_NONE = _mscl.InertialTypes_HEADINGSOURCE_NONE - HEADINGSOURCE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_MAGNETOMETER - HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR - HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD = _mscl.InertialTypes_HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD - HEADINGSOURCE_GNSS_DUAL_ANTENNA = _mscl.InertialTypes_HEADINGSOURCE_GNSS_DUAL_ANTENNA - ENABLE_NONE = _mscl.InertialTypes_ENABLE_NONE - ENABLE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_ENABLE_INTERNAL_MAGNETOMETER - ENABLE_INTERNAL_GNSS = _mscl.InertialTypes_ENABLE_INTERNAL_GNSS - ENABLE_EXTERNAL_MESSAGES = _mscl.InertialTypes_ENABLE_EXTERNAL_MESSAGES - ENABLE_MAGNETOMETER_AND_GNSS = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_GNSS - ENABLE_GNSS_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_GNSS_AND_EXTERNAL - ENABLE_MAGNETOMETER_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_EXTERNAL - ENABLE_ALL = _mscl.InertialTypes_ENABLE_ALL - ENABLE_GYRO_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_BIAS_ESTIMATION - ENABLE_ACCEL_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_BIAS_ESTIMATION - ENABLE_GYRO_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_SCALE_FACTOR_ESTIMATION - ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION - ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION = _mscl.InertialTypes_ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION - ENABLE_HARD_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_HARD_IRON_AUTO_CALIBRATION - ENABLE_SOFT_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_SOFT_IRON_AUTO_CALIBRATION - NONE = _mscl.InertialTypes_NONE - WORLD_MAGNETIC_MODEL = _mscl.InertialTypes_WORLD_MAGNETIC_MODEL - MANUAL = _mscl.InertialTypes_MANUAL - ADAPTIVE_MEASUREMENT_DISABLE = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_DISABLE - ADAPTIVE_MEASUREMENT_ENABLE_FIXED = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_FIXED - ADAPTIVE_MEASUREMENT_ENABLE_AUTO = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_AUTO - GNSS_POS_VEL_AIDING = _mscl.InertialTypes_GNSS_POS_VEL_AIDING - GNSS_HEADING_AIDING = _mscl.InertialTypes_GNSS_HEADING_AIDING - ALTIMETER_AIDING = _mscl.InertialTypes_ALTIMETER_AIDING - ODOMETER_AIDING = _mscl.InertialTypes_ODOMETER_AIDING - MAGNETOMETER_AIDING = _mscl.InertialTypes_MAGNETOMETER_AIDING - EXTERNAL_HEADING_AIDING = _mscl.InertialTypes_EXTERNAL_HEADING_AIDING - EXTERNAL_ALTIMETER_AIDING = _mscl.InertialTypes_EXTERNAL_ALTIMETER_AIDING - EXTERNAL_MAGNETOMETER_AIDING = _mscl.InertialTypes_EXTERNAL_MAGNETOMETER_AIDING - BODY_FRAME_VEL_AIDING = _mscl.InertialTypes_BODY_FRAME_VEL_AIDING - ALL_AIDING_MEASUREMENTS = _mscl.InertialTypes_ALL_AIDING_MEASUREMENTS - GPS = _mscl.InertialTypes_GPS - SBAS = _mscl.InertialTypes_SBAS - GALILEO = _mscl.InertialTypes_GALILEO - BEIDOU = _mscl.InertialTypes_BEIDOU - QZSS = _mscl.InertialTypes_QZSS - GLONASS = _mscl.InertialTypes_GLONASS - FILTERING_OFF = _mscl.InertialTypes_FILTERING_OFF - FILTERING_CONSERVATIVE = _mscl.InertialTypes_FILTERING_CONSERVATIVE - FILTERING_MODERATE = _mscl.InertialTypes_FILTERING_MODERATE - FILTERING_AGGRESSIVE = _mscl.InertialTypes_FILTERING_AGGRESSIVE - FACTORY_STREAMING_OVERWRITE = _mscl.InertialTypes_FACTORY_STREAMING_OVERWRITE - FACTORY_STREAMING_MERGE = _mscl.InertialTypes_FACTORY_STREAMING_MERGE - FACTORY_STREAMING_ADDITIVE = _mscl.InertialTypes_FACTORY_STREAMING_ADDITIVE - PPS_DISABLED = _mscl.InertialTypes_PPS_DISABLED - PPS_RECEIVER_1 = _mscl.InertialTypes_PPS_RECEIVER_1 - PPS_RECEIVER_2 = _mscl.InertialTypes_PPS_RECEIVER_2 - PPS_GPIO = _mscl.InertialTypes_PPS_GPIO - PPS_GENERATED = _mscl.InertialTypes_PPS_GENERATED - GNSS_AIDING_TIGHT_COUPLING = _mscl.InertialTypes_GNSS_AIDING_TIGHT_COUPLING - GNSS_AIDING_DIFFERENTIAL = _mscl.InertialTypes_GNSS_AIDING_DIFFERENTIAL - GNSS_AIDING_INTEGER_FIX = _mscl.InertialTypes_GNSS_AIDING_INTEGER_FIX - GNSS_AIDING_GPS = _mscl.InertialTypes_GNSS_AIDING_GPS - GNSS_AIDING_GLONASS = _mscl.InertialTypes_GNSS_AIDING_GLONASS - GNSS_AIDING_GALILEO = _mscl.InertialTypes_GNSS_AIDING_GALILEO - GNSS_AIDING_BEIDOU = _mscl.InertialTypes_GNSS_AIDING_BEIDOU - GNSS_AIDING_NO_FIX = _mscl.InertialTypes_GNSS_AIDING_NO_FIX - GNSS_AIDING_CONFIG_ERROR = _mscl.InertialTypes_GNSS_AIDING_CONFIG_ERROR - AIDING_MEASUREMENT_ENABLED = _mscl.InertialTypes_AIDING_MEASUREMENT_ENABLED - AIDING_MEASUREMENT_USED = _mscl.InertialTypes_AIDING_MEASUREMENT_USED - AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH - AIDING_MEASUREMENT_WARNING_SAMPLE_TIME = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_SAMPLE_TIME - AIDING_MEASUREMENT_CONFIG_ERROR = _mscl.InertialTypes_AIDING_MEASUREMENT_CONFIG_ERROR - AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED = _mscl.InertialTypes_AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED - RTK_CORRECTION_ANTENNA_POS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_POS_RECEIVED - RTK_CORRECTION_ANTENNA_DESC_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_DESC_RECEIVED - RTK_CORRECTION_GPS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GPS_RECEIVED - RTK_CORRECTION_GLONASS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GLONASS_RECEIVED - RTK_CORRECTION_GALILEO_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GALILEO_RECEIVED - RTK_CORRECTION_BEIDOU_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_BEIDOU_RECEIVED - RTK_CORRECTION_USING_GPS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GPS_MSM - RTK_CORRECTION_USING_GLONASS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GLONASS_MSM - SIGNAL_QUALITY_NONE = _mscl.InertialTypes_SIGNAL_QUALITY_NONE - SIGNAL_QUALITY_SEARCHING = _mscl.InertialTypes_SIGNAL_QUALITY_SEARCHING - SIGNAL_QUALITY_ACQUIRED = _mscl.InertialTypes_SIGNAL_QUALITY_ACQUIRED - SIGNAL_QUALITY_UNUSABLE = _mscl.InertialTypes_SIGNAL_QUALITY_UNUSABLE - SIGNAL_QUALITY_TIME_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_TIME_LOCKED - SIGNAL_QUALITY_FULLY_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_FULLY_LOCKED - OVERRANGE_ACCEL_X = _mscl.InertialTypes_OVERRANGE_ACCEL_X - OVERRANGE_ACCEL_Y = _mscl.InertialTypes_OVERRANGE_ACCEL_Y - OVERRANGE_ACCEL_Z = _mscl.InertialTypes_OVERRANGE_ACCEL_Z - OVERRANGE_GYRO_X = _mscl.InertialTypes_OVERRANGE_GYRO_X - OVERRANGE_GYRO_Y = _mscl.InertialTypes_OVERRANGE_GYRO_Y - OVERRANGE_GYRO_Z = _mscl.InertialTypes_OVERRANGE_GYRO_Z - OVERRANGE_MAG_X = _mscl.InertialTypes_OVERRANGE_MAG_X - OVERRANGE_MAG_Y = _mscl.InertialTypes_OVERRANGE_MAG_Y - OVERRANGE_MAG_Z = _mscl.InertialTypes_OVERRANGE_MAG_Z - OVERRANGE_PRESSURE = _mscl.InertialTypes_OVERRANGE_PRESSURE - UNKNOWN_SBAS_SYSTEM = _mscl.InertialTypes_UNKNOWN_SBAS_SYSTEM - WAAS = _mscl.InertialTypes_WAAS - EGNOS = _mscl.InertialTypes_EGNOS - MSAS = _mscl.InertialTypes_MSAS - GAGAN = _mscl.InertialTypes_GAGAN - SBAS_INFO_RANGE_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_RANGE_AVAILABLE - SBAS_INFO_CORRECTIONS_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_CORRECTIONS_AVAILABLE - SBAS_INFO_INTEGRITY_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_INTEGRITY_AVAILABLE - SBAS_INFO_TEST = _mscl.InertialTypes_SBAS_INFO_TEST - JAMMING_STATE_UNKNOWN = _mscl.InertialTypes_JAMMING_STATE_UNKNOWN - JAMMING_STATE_NONE = _mscl.InertialTypes_JAMMING_STATE_NONE - JAMMING_STATE_PARTIAL = _mscl.InertialTypes_JAMMING_STATE_PARTIAL - JAMMING_STATE_SIGNIFICANT = _mscl.InertialTypes_JAMMING_STATE_SIGNIFICANT - SPOOFING_STATE_UNKNOWN = _mscl.InertialTypes_SPOOFING_STATE_UNKNOWN - SPOOFING_STATE_NONE = _mscl.InertialTypes_SPOOFING_STATE_NONE - SPOOFING_STATE_PARTIAL = _mscl.InertialTypes_SPOOFING_STATE_PARTIAL - SPOOFING_STATE_SIGNIFICANT = _mscl.InertialTypes_SPOOFING_STATE_SIGNIFICANT - - def __init__(self): - _mscl.InertialTypes_swiginit(self, _mscl.new_InertialTypes()) - __swig_destroy__ = _mscl.delete_InertialTypes - -# Register InertialTypes in _mscl: -_mscl.InertialTypes_swigregister(InertialTypes) - -class NmeaMessageFormat(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_MESSAGES = _mscl.NmeaMessageFormat_MAX_MESSAGES - GGA = _mscl.NmeaMessageFormat_GGA - GLL = _mscl.NmeaMessageFormat_GLL - GSV = _mscl.NmeaMessageFormat_GSV - RMC = _mscl.NmeaMessageFormat_RMC - VTG = _mscl.NmeaMessageFormat_VTG - HDT = _mscl.NmeaMessageFormat_HDT - ZDA = _mscl.NmeaMessageFormat_ZDA - MSRA = _mscl.NmeaMessageFormat_MSRA - MSRR = _mscl.NmeaMessageFormat_MSRR - IGNORED = _mscl.NmeaMessageFormat_IGNORED - GNSS = _mscl.NmeaMessageFormat_GNSS - GPS = _mscl.NmeaMessageFormat_GPS - GALILEO = _mscl.NmeaMessageFormat_GALILEO - GLONASS = _mscl.NmeaMessageFormat_GLONASS - - def __init__(self): - _mscl.NmeaMessageFormat_swiginit(self, _mscl.new_NmeaMessageFormat()) - __swig_destroy__ = _mscl.delete_NmeaMessageFormat - - def sentenceType(self, *args): - return _mscl.NmeaMessageFormat_sentenceType(self, *args) - - def talkerId(self, *args): - return _mscl.NmeaMessageFormat_talkerId(self, *args) - - def sourceDataClass(self, *args): - return _mscl.NmeaMessageFormat_sourceDataClass(self, *args) - - def sampleRate(self, *args): - return _mscl.NmeaMessageFormat_sampleRate(self, *args) - - @staticmethod - def talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - - @staticmethod - def dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - - @staticmethod - def supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - - @staticmethod - def toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -# Register NmeaMessageFormat in _mscl: -_mscl.NmeaMessageFormat_swigregister(NmeaMessageFormat) -NmeaMessageFormat.MAX_FREQUENCY = _mscl.cvar.NmeaMessageFormat_MAX_FREQUENCY - -def NmeaMessageFormat_talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - -def NmeaMessageFormat_dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - -def NmeaMessageFormat_supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - -def NmeaMessageFormat_toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -class Matrix_3x3(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Matrix_3x3_swiginit(self, _mscl.new_Matrix_3x3(*args)) - __swig_destroy__ = _mscl.delete_Matrix_3x3 - - def set(self, row, col, value): - return _mscl.Matrix_3x3_set(self, row, col, value) - - def at(self, row, col): - return _mscl.Matrix_3x3_at(self, row, col) - - def __str__(self): - return _mscl.Matrix_3x3___str__(self) - - def asMipFieldValues(self): - return _mscl.Matrix_3x3_asMipFieldValues(self) - -# Register Matrix_3x3 in _mscl: -_mscl.Matrix_3x3_swigregister(Matrix_3x3) - -class TimeUpdate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, timeOfWeek, weekNumber, timeAccuracy=0): - _mscl.TimeUpdate_swiginit(self, _mscl.new_TimeUpdate(timeOfWeek, weekNumber, timeAccuracy)) - __swig_destroy__ = _mscl.delete_TimeUpdate - - def timeOfWeek(self): - return _mscl.TimeUpdate_timeOfWeek(self) - - def weekNumber(self): - return _mscl.TimeUpdate_weekNumber(self) - - def timeAccuracy(self): - return _mscl.TimeUpdate_timeAccuracy(self) - -# Register TimeUpdate in _mscl: -_mscl.TimeUpdate_swigregister(TimeUpdate) - -class ZUPTSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, enable, threshold): - _mscl.ZUPTSettingsData_swiginit(self, _mscl.new_ZUPTSettingsData(enable, threshold)) - enabled = property(_mscl.ZUPTSettingsData_enabled_get, _mscl.ZUPTSettingsData_enabled_set) - threshold = property(_mscl.ZUPTSettingsData_threshold_get, _mscl.ZUPTSettingsData_threshold_set) - __swig_destroy__ = _mscl.delete_ZUPTSettingsData - -# Register ZUPTSettingsData in _mscl: -_mscl.ZUPTSettingsData_swigregister(ZUPTSettingsData) - -class FixedReferencePositionData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.FixedReferencePositionData_swiginit(self, _mscl.new_FixedReferencePositionData(*args)) - enable = property(_mscl.FixedReferencePositionData_enable_get, _mscl.FixedReferencePositionData_enable_set) - referencePosition = property(_mscl.FixedReferencePositionData_referencePosition_get, _mscl.FixedReferencePositionData_referencePosition_set) - __swig_destroy__ = _mscl.delete_FixedReferencePositionData - -# Register FixedReferencePositionData in _mscl: -_mscl.FixedReferencePositionData_swigregister(FixedReferencePositionData) - -class SBASSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enableSBAS = property(_mscl.SBASSettingsData_enableSBAS_get, _mscl.SBASSettingsData_enableSBAS_set) - enableRanging = property(_mscl.SBASSettingsData_enableRanging_get, _mscl.SBASSettingsData_enableRanging_set) - enableCorrectionData = property(_mscl.SBASSettingsData_enableCorrectionData_get, _mscl.SBASSettingsData_enableCorrectionData_set) - applyIntegrityInfo = property(_mscl.SBASSettingsData_applyIntegrityInfo_get, _mscl.SBASSettingsData_applyIntegrityInfo_set) - satellitePRNs = property(_mscl.SBASSettingsData_satellitePRNs_get, _mscl.SBASSettingsData_satellitePRNs_set) - - def __init__(self): - _mscl.SBASSettingsData_swiginit(self, _mscl.new_SBASSettingsData()) - __swig_destroy__ = _mscl.delete_SBASSettingsData - -# Register SBASSettingsData in _mscl: -_mscl.SBASSettingsData_swigregister(SBASSettingsData) - -class Constellation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - constellationID = property(_mscl.Constellation_constellationID_get, _mscl.Constellation_constellationID_set) - enabled = property(_mscl.Constellation_enabled_get, _mscl.Constellation_enabled_set) - reservedChannelCount = property(_mscl.Constellation_reservedChannelCount_get, _mscl.Constellation_reservedChannelCount_set) - maxChannels = property(_mscl.Constellation_maxChannels_get, _mscl.Constellation_maxChannels_set) - enableL1SAIF = property(_mscl.Constellation_enableL1SAIF_get, _mscl.Constellation_enableL1SAIF_set) - - def __init__(self): - _mscl.Constellation_swiginit(self, _mscl.new_Constellation()) - __swig_destroy__ = _mscl.delete_Constellation - -# Register Constellation in _mscl: -_mscl.Constellation_swigregister(Constellation) - -class ConstellationSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - maxChannelsAvailable = property(_mscl.ConstellationSettingsData_maxChannelsAvailable_get, _mscl.ConstellationSettingsData_maxChannelsAvailable_set) - maxChannelsToUse = property(_mscl.ConstellationSettingsData_maxChannelsToUse_get, _mscl.ConstellationSettingsData_maxChannelsToUse_set) - constellations = property(_mscl.ConstellationSettingsData_constellations_get, _mscl.ConstellationSettingsData_constellations_set) - - def __init__(self): - _mscl.ConstellationSettingsData_swiginit(self, _mscl.new_ConstellationSettingsData()) - __swig_destroy__ = _mscl.delete_ConstellationSettingsData - -# Register ConstellationSettingsData in _mscl: -_mscl.ConstellationSettingsData_swigregister(ConstellationSettingsData) - -class LowPassFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SET_TO_HALF_REPORTING_RATE = _mscl.LowPassFilterData_SET_TO_HALF_REPORTING_RATE - USER_SPECIFIED_CUTOFF_FREQ = _mscl.LowPassFilterData_USER_SPECIFIED_CUTOFF_FREQ - - def __init__(self, *args): - _mscl.LowPassFilterData_swiginit(self, _mscl.new_LowPassFilterData(*args)) - dataDescriptor = property(_mscl.LowPassFilterData_dataDescriptor_get, _mscl.LowPassFilterData_dataDescriptor_set) - manualFilterBandwidthConfig = property(_mscl.LowPassFilterData_manualFilterBandwidthConfig_get, _mscl.LowPassFilterData_manualFilterBandwidthConfig_set) - applyLowPassFilter = property(_mscl.LowPassFilterData_applyLowPassFilter_get, _mscl.LowPassFilterData_applyLowPassFilter_set) - cutoffFrequency = property(_mscl.LowPassFilterData_cutoffFrequency_get, _mscl.LowPassFilterData_cutoffFrequency_set) - - @staticmethod - def getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - - @staticmethod - def getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - __swig_destroy__ = _mscl.delete_LowPassFilterData - -# Register LowPassFilterData in _mscl: -_mscl.LowPassFilterData_swigregister(LowPassFilterData) - -def LowPassFilterData_getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - -def LowPassFilterData_getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - -class ComplementaryFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ComplementaryFilterData_swiginit(self, _mscl.new_ComplementaryFilterData()) - upCompensationEnabled = property(_mscl.ComplementaryFilterData_upCompensationEnabled_get, _mscl.ComplementaryFilterData_upCompensationEnabled_set) - upCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_upCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_upCompensationTimeInSeconds_set) - northCompensationEnabled = property(_mscl.ComplementaryFilterData_northCompensationEnabled_get, _mscl.ComplementaryFilterData_northCompensationEnabled_set) - northCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_northCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_northCompensationTimeInSeconds_set) - __swig_destroy__ = _mscl.delete_ComplementaryFilterData - -# Register ComplementaryFilterData in _mscl: -_mscl.ComplementaryFilterData_swigregister(ComplementaryFilterData) - -class PpsPulseInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PpsPulseInfo_swiginit(self, _mscl.new_PpsPulseInfo()) - count = property(_mscl.PpsPulseInfo_count_get, _mscl.PpsPulseInfo_count_set) - lastTimeinMS = property(_mscl.PpsPulseInfo_lastTimeinMS_get, _mscl.PpsPulseInfo_lastTimeinMS_set) - __swig_destroy__ = _mscl.delete_PpsPulseInfo - -# Register PpsPulseInfo in _mscl: -_mscl.PpsPulseInfo_swigregister(PpsPulseInfo) - -class StreamInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.StreamInfo_swiginit(self, _mscl.new_StreamInfo()) - enabled = property(_mscl.StreamInfo_enabled_get, _mscl.StreamInfo_enabled_set) - outgoingPacketsDropped = property(_mscl.StreamInfo_outgoingPacketsDropped_get, _mscl.StreamInfo_outgoingPacketsDropped_set) - __swig_destroy__ = _mscl.delete_StreamInfo - -# Register StreamInfo in _mscl: -_mscl.StreamInfo_swigregister(StreamInfo) - -class DeviceMessageInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.DeviceMessageInfo_swiginit(self, _mscl.new_DeviceMessageInfo()) - messageParsingErrors = property(_mscl.DeviceMessageInfo_messageParsingErrors_get, _mscl.DeviceMessageInfo_messageParsingErrors_set) - messagesRead = property(_mscl.DeviceMessageInfo_messagesRead_get, _mscl.DeviceMessageInfo_messagesRead_set) - lastMessageReadinMS = property(_mscl.DeviceMessageInfo_lastMessageReadinMS_get, _mscl.DeviceMessageInfo_lastMessageReadinMS_set) - __swig_destroy__ = _mscl.delete_DeviceMessageInfo - -# Register DeviceMessageInfo in _mscl: -_mscl.DeviceMessageInfo_swigregister(DeviceMessageInfo) - -class PortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PortInfo_swiginit(self, _mscl.new_PortInfo()) - bytesWritten = property(_mscl.PortInfo_bytesWritten_get, _mscl.PortInfo_bytesWritten_set) - bytesRead = property(_mscl.PortInfo_bytesRead_get, _mscl.PortInfo_bytesRead_set) - overrunsOnWrite = property(_mscl.PortInfo_overrunsOnWrite_get, _mscl.PortInfo_overrunsOnWrite_set) - overrunsOnRead = property(_mscl.PortInfo_overrunsOnRead_get, _mscl.PortInfo_overrunsOnRead_set) - __swig_destroy__ = _mscl.delete_PortInfo - -# Register PortInfo in _mscl: -_mscl.PortInfo_swigregister(PortInfo) - -class TemperatureInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.TemperatureInfo_swiginit(self, _mscl.new_TemperatureInfo()) - onBoardTemp = property(_mscl.TemperatureInfo_onBoardTemp_get, _mscl.TemperatureInfo_onBoardTemp_set) - lastReadInMS = property(_mscl.TemperatureInfo_lastReadInMS_get, _mscl.TemperatureInfo_lastReadInMS_set) - error = property(_mscl.TemperatureInfo_error_get, _mscl.TemperatureInfo_error_set) - __swig_destroy__ = _mscl.delete_TemperatureInfo - -# Register TemperatureInfo in _mscl: -_mscl.TemperatureInfo_swigregister(TemperatureInfo) - -ModelNumber = _mscl.ModelNumber -StatusStructure_Value = _mscl.StatusStructure_Value -SystemState_Value = _mscl.SystemState_Value -gnss1PpsPulseInfo_Count = _mscl.gnss1PpsPulseInfo_Count -gnss1PpsPulseInfo_LastTimeinMS = _mscl.gnss1PpsPulseInfo_LastTimeinMS -GnssPowerStateOn = _mscl.GnssPowerStateOn -ImuStreamInfo_Enabled = _mscl.ImuStreamInfo_Enabled -ImuStreamInfo_PacketsDropped = _mscl.ImuStreamInfo_PacketsDropped -GnssStreamInfo_Enabled = _mscl.GnssStreamInfo_Enabled -GnssStreamInfo_PacketsDropped = _mscl.GnssStreamInfo_PacketsDropped -EstimationFilterStreamInfo_Enabled = _mscl.EstimationFilterStreamInfo_Enabled -EstimationFilterStreamInfo_PacketsDropped = _mscl.EstimationFilterStreamInfo_PacketsDropped -ComPortInfo_BytesRead = _mscl.ComPortInfo_BytesRead -ComPortInfo_BytesWritten = _mscl.ComPortInfo_BytesWritten -ComPortInfo_OverrunsOnRead = _mscl.ComPortInfo_OverrunsOnRead -ComPortInfo_OverrunsOnWrite = _mscl.ComPortInfo_OverrunsOnWrite -ImuMessageInfo_LastMessageReadinMS = _mscl.ImuMessageInfo_LastMessageReadinMS -ImuMessageInfo_MessageParsingErrors = _mscl.ImuMessageInfo_MessageParsingErrors -ImuMessageInfo_MessagesRead = _mscl.ImuMessageInfo_MessagesRead -GnssMessageInfo_LastMessageReadinMS = _mscl.GnssMessageInfo_LastMessageReadinMS -GnssMessageInfo_MessageParsingErrors = _mscl.GnssMessageInfo_MessageParsingErrors -GnssMessageInfo_MessagesRead = _mscl.GnssMessageInfo_MessagesRead -TemperatureInfo_Error = _mscl.TemperatureInfo_Error -TemperatureInfo_LastReadInMS = _mscl.TemperatureInfo_LastReadInMS -TemperatureInfo_OnBoardTemp = _mscl.TemperatureInfo_OnBoardTemp -PowerState = _mscl.PowerState -GyroRange = _mscl.GyroRange -AccelRange = _mscl.AccelRange -HasMagnetometer = _mscl.HasMagnetometer -HasPressure = _mscl.HasPressure -class DeviceStatusData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_BASIC_STATUS_STRUCTURE - DIAGNOSTIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_DIAGNOSTIC_STATUS_STRUCTURE - SYSTEM_INITIALIZATION = _mscl.DeviceStatusData_SYSTEM_INITIALIZATION - SYSTEM_STARTUP = _mscl.DeviceStatusData_SYSTEM_STARTUP - SYSTEM_RUNNING = _mscl.DeviceStatusData_SYSTEM_RUNNING - - def __init__(self): - _mscl.DeviceStatusData_swiginit(self, _mscl.new_DeviceStatusData()) - modelNumber = property(_mscl.DeviceStatusData_modelNumber_get, _mscl.DeviceStatusData_modelNumber_set) - statusStructure = property(_mscl.DeviceStatusData_statusStructure_get, _mscl.DeviceStatusData_statusStructure_set) - systemTimerInMS = property(_mscl.DeviceStatusData_systemTimerInMS_get, _mscl.DeviceStatusData_systemTimerInMS_set) - - def systemState(self, *args): - return _mscl.DeviceStatusData_systemState(self, *args) - - def gnssPowerStateOn(self, *args): - return _mscl.DeviceStatusData_gnssPowerStateOn(self, *args) - - def gnss1PpsPulseInfo(self, *args): - return _mscl.DeviceStatusData_gnss1PpsPulseInfo(self, *args) - - def imuStreamInfo(self, *args): - return _mscl.DeviceStatusData_imuStreamInfo(self, *args) - - def gnssStreamInfo(self, *args): - return _mscl.DeviceStatusData_gnssStreamInfo(self, *args) - - def estimationFilterStreamInfo(self, *args): - return _mscl.DeviceStatusData_estimationFilterStreamInfo(self, *args) - - def imuMessageInfo(self, *args): - return _mscl.DeviceStatusData_imuMessageInfo(self, *args) - - def gnssMessageInfo(self, *args): - return _mscl.DeviceStatusData_gnssMessageInfo(self, *args) - - def comPortInfo(self, *args): - return _mscl.DeviceStatusData_comPortInfo(self, *args) - - def usbPortInfo(self, *args): - return _mscl.DeviceStatusData_usbPortInfo(self, *args) - - def hasMagnetometer(self, *args): - return _mscl.DeviceStatusData_hasMagnetometer(self, *args) - - def magnetometerInitializationFailed(self, *args): - return _mscl.DeviceStatusData_magnetometerInitializationFailed(self, *args) - - def hasPressure(self, *args): - return _mscl.DeviceStatusData_hasPressure(self, *args) - - def pressureInitializationFailed(self, *args): - return _mscl.DeviceStatusData_pressureInitializationFailed(self, *args) - - def gnssReceiverInitializationFailed(self, *args): - return _mscl.DeviceStatusData_gnssReceiverInitializationFailed(self, *args) - - def coldStartOnPowerOn(self, *args): - return _mscl.DeviceStatusData_coldStartOnPowerOn(self, *args) - - def temperatureInfo(self, *args): - return _mscl.DeviceStatusData_temperatureInfo(self, *args) - - def powerState(self, *args): - return _mscl.DeviceStatusData_powerState(self, *args) - - def gyroRange(self, *args): - return _mscl.DeviceStatusData_gyroRange(self, *args) - - def accelRange(self, *args): - return _mscl.DeviceStatusData_accelRange(self, *args) - - def asMap(self): - return _mscl.DeviceStatusData_asMap(self) - - def asValueMap(self): - return _mscl.DeviceStatusData_asValueMap(self) - __swig_destroy__ = _mscl.delete_DeviceStatusData - -# Register DeviceStatusData in _mscl: -_mscl.DeviceStatusData_swigregister(DeviceStatusData) - -class ExternalGNSSUpdateData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - gpsTimeOfWeek = property(_mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_get, _mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_set) - gpsWeekNumber = property(_mscl.ExternalGNSSUpdateData_gpsWeekNumber_get, _mscl.ExternalGNSSUpdateData_gpsWeekNumber_set) - lattitude = property(_mscl.ExternalGNSSUpdateData_lattitude_get, _mscl.ExternalGNSSUpdateData_lattitude_set) - longitude = property(_mscl.ExternalGNSSUpdateData_longitude_get, _mscl.ExternalGNSSUpdateData_longitude_set) - altitudeAboveWGS84Ellipsoid = property(_mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_get, _mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_set) - northVelocity = property(_mscl.ExternalGNSSUpdateData_northVelocity_get, _mscl.ExternalGNSSUpdateData_northVelocity_set) - eastVelocity = property(_mscl.ExternalGNSSUpdateData_eastVelocity_get, _mscl.ExternalGNSSUpdateData_eastVelocity_set) - downVelocity = property(_mscl.ExternalGNSSUpdateData_downVelocity_get, _mscl.ExternalGNSSUpdateData_downVelocity_set) - northPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_northPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_northPositionUncertainty_set) - eastPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_eastPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_eastPositionUncertainty_set) - downPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_downPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_downPositionUncertainty_set) - northVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_northVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_northVelocityUncertainty_set) - eastVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_set) - downVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_downVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_downVelocityUncertainty_set) - - def __init__(self): - _mscl.ExternalGNSSUpdateData_swiginit(self, _mscl.new_ExternalGNSSUpdateData()) - __swig_destroy__ = _mscl.delete_ExternalGNSSUpdateData - -# Register ExternalGNSSUpdateData in _mscl: -_mscl.ExternalGNSSUpdateData_swigregister(ExternalGNSSUpdateData) - -class HeadingUpdateOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsOptionId(self): - return _mscl.HeadingUpdateOptions_AsOptionId(self) - - def __init__(self, *args): - _mscl.HeadingUpdateOptions_swiginit(self, _mscl.new_HeadingUpdateOptions(*args)) - useInternalMagnetometer = property(_mscl.HeadingUpdateOptions_useInternalMagnetometer_get, _mscl.HeadingUpdateOptions_useInternalMagnetometer_set) - useInternalGNSSVelocityVector = property(_mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_get, _mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_set) - useExternalHeadingMessages = property(_mscl.HeadingUpdateOptions_useExternalHeadingMessages_get, _mscl.HeadingUpdateOptions_useExternalHeadingMessages_set) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptions - -# Register HeadingUpdateOptions in _mscl: -_mscl.HeadingUpdateOptions_swigregister(HeadingUpdateOptions) - -Automatic = _mscl.Automatic -UserSpecified_Heading = _mscl.UserSpecified_Heading -UserSpecified_Attitude = _mscl.UserSpecified_Attitude -UserSpecified_All = _mscl.UserSpecified_All -GNSS_DualAntenna = _mscl.GNSS_DualAntenna -GNSS_Kinematic = _mscl.GNSS_Kinematic -Magnetometer = _mscl.Magnetometer -External = _mscl.External -class HeadingAlignmentMethod(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.HeadingAlignmentMethod_swiginit(self, _mscl.new_HeadingAlignmentMethod(*args)) - value = property(_mscl.HeadingAlignmentMethod_value_get, _mscl.HeadingAlignmentMethod_value_set) - - def select(self, option): - return _mscl.HeadingAlignmentMethod_select(self, option) - - def deselect(self, option): - return _mscl.HeadingAlignmentMethod_deselect(self, option) - - def selected(self, option): - return _mscl.HeadingAlignmentMethod_selected(self, option) - __swig_destroy__ = _mscl.delete_HeadingAlignmentMethod - -# Register HeadingAlignmentMethod in _mscl: -_mscl.HeadingAlignmentMethod_swigregister(HeadingAlignmentMethod) - -class FilterInitializationValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FilterInitializationValues_swiginit(self, _mscl.new_FilterInitializationValues()) - autoInitialize = property(_mscl.FilterInitializationValues_autoInitialize_get, _mscl.FilterInitializationValues_autoInitialize_set) - initialValuesSource = property(_mscl.FilterInitializationValues_initialValuesSource_get, _mscl.FilterInitializationValues_initialValuesSource_set) - autoHeadingAlignmentMethod = property(_mscl.FilterInitializationValues_autoHeadingAlignmentMethod_get, _mscl.FilterInitializationValues_autoHeadingAlignmentMethod_set) - initialAttitude = property(_mscl.FilterInitializationValues_initialAttitude_get, _mscl.FilterInitializationValues_initialAttitude_set) - initialPosition = property(_mscl.FilterInitializationValues_initialPosition_get, _mscl.FilterInitializationValues_initialPosition_set) - initialVelocity = property(_mscl.FilterInitializationValues_initialVelocity_get, _mscl.FilterInitializationValues_initialVelocity_set) - referenceFrame = property(_mscl.FilterInitializationValues_referenceFrame_get, _mscl.FilterInitializationValues_referenceFrame_set) - - def manualHeading(self): - return _mscl.FilterInitializationValues_manualHeading(self) - - def manualAttitude(self): - return _mscl.FilterInitializationValues_manualAttitude(self) - - def manualPositionVelocity(self): - return _mscl.FilterInitializationValues_manualPositionVelocity(self) - __swig_destroy__ = _mscl.delete_FilterInitializationValues - -# Register FilterInitializationValues in _mscl: -_mscl.FilterInitializationValues_swigregister(FilterInitializationValues) - -class TareAxisValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def asUint8(self): - return _mscl.TareAxisValues_asUint8(self) - - def __init__(self, tareRollAxis, tarePitchAxis, tareYawAxis): - _mscl.TareAxisValues_swiginit(self, _mscl.new_TareAxisValues(tareRollAxis, tarePitchAxis, tareYawAxis)) - tareRollAxis = property(_mscl.TareAxisValues_tareRollAxis_get, _mscl.TareAxisValues_tareRollAxis_set) - tarePitchAxis = property(_mscl.TareAxisValues_tarePitchAxis_get, _mscl.TareAxisValues_tarePitchAxis_set) - tareYawAxis = property(_mscl.TareAxisValues_tareYawAxis_get, _mscl.TareAxisValues_tareYawAxis_set) - __swig_destroy__ = _mscl.delete_TareAxisValues - -# Register TareAxisValues in _mscl: -_mscl.TareAxisValues_swigregister(TareAxisValues) - -class GeographicSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeographicSourceOptions_swiginit(self, _mscl.new_GeographicSourceOptions(*args)) - source = property(_mscl.GeographicSourceOptions_source_get, _mscl.GeographicSourceOptions_source_set) - manual = property(_mscl.GeographicSourceOptions_manual_get, _mscl.GeographicSourceOptions_manual_set) - __swig_destroy__ = _mscl.delete_GeographicSourceOptions - -# Register GeographicSourceOptions in _mscl: -_mscl.GeographicSourceOptions_swigregister(GeographicSourceOptions) - -class EstimationControlOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsUint16(self): - return _mscl.EstimationControlOptions_AsUint16(self) - - def __init__(self, *args): - _mscl.EstimationControlOptions_swiginit(self, _mscl.new_EstimationControlOptions(*args)) - enableGyroBiasEstimation = property(_mscl.EstimationControlOptions_enableGyroBiasEstimation_get, _mscl.EstimationControlOptions_enableGyroBiasEstimation_set) - enableAccelBiasEstimation = property(_mscl.EstimationControlOptions_enableAccelBiasEstimation_get, _mscl.EstimationControlOptions_enableAccelBiasEstimation_set) - enableGyroScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_set) - enableAccelScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_set) - enableGNSSAntennaOffsetEstimation = property(_mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_get, _mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_set) - enableHardIronAutoCalibration = property(_mscl.EstimationControlOptions_enableHardIronAutoCalibration_get, _mscl.EstimationControlOptions_enableHardIronAutoCalibration_set) - enableSoftIronAutoCalibration = property(_mscl.EstimationControlOptions_enableSoftIronAutoCalibration_get, _mscl.EstimationControlOptions_enableSoftIronAutoCalibration_set) - __swig_destroy__ = _mscl.delete_EstimationControlOptions - -# Register EstimationControlOptions in _mscl: -_mscl.EstimationControlOptions_swigregister(EstimationControlOptions) - -class HeadingData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HeadingData_swiginit(self, _mscl.new_HeadingData()) - TRUE_HEADING = _mscl.HeadingData_TRUE_HEADING - MAGNETIC_HEADING = _mscl.HeadingData_MAGNETIC_HEADING - heading = property(_mscl.HeadingData_heading_get, _mscl.HeadingData_heading_set) - headingAngle = property(_mscl.HeadingData_headingAngle_get, _mscl.HeadingData_headingAngle_set) - headingAngleUncertainty = property(_mscl.HeadingData_headingAngleUncertainty_get, _mscl.HeadingData_headingAngleUncertainty_set) - __swig_destroy__ = _mscl.delete_HeadingData - -# Register HeadingData in _mscl: -_mscl.HeadingData_swigregister(HeadingData) - -class AdaptiveMeasurementData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AdaptiveMeasurementData_swiginit(self, _mscl.new_AdaptiveMeasurementData()) - mode = property(_mscl.AdaptiveMeasurementData_mode_get, _mscl.AdaptiveMeasurementData_mode_set) - lowPassFilterCutoff = property(_mscl.AdaptiveMeasurementData_lowPassFilterCutoff_get, _mscl.AdaptiveMeasurementData_lowPassFilterCutoff_set) - lowLimit = property(_mscl.AdaptiveMeasurementData_lowLimit_get, _mscl.AdaptiveMeasurementData_lowLimit_set) - highLimit = property(_mscl.AdaptiveMeasurementData_highLimit_get, _mscl.AdaptiveMeasurementData_highLimit_set) - lowLimitUncertainty = property(_mscl.AdaptiveMeasurementData_lowLimitUncertainty_get, _mscl.AdaptiveMeasurementData_lowLimitUncertainty_set) - highLimitUncertainty = property(_mscl.AdaptiveMeasurementData_highLimitUncertainty_get, _mscl.AdaptiveMeasurementData_highLimitUncertainty_set) - minUncertainty = property(_mscl.AdaptiveMeasurementData_minUncertainty_get, _mscl.AdaptiveMeasurementData_minUncertainty_set) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementData - -# Register AdaptiveMeasurementData in _mscl: -_mscl.AdaptiveMeasurementData_swigregister(AdaptiveMeasurementData) - -class AutoAdaptiveFilterOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AutoAdaptiveFilterOptions_swiginit(self, _mscl.new_AutoAdaptiveFilterOptions(*args)) - level = property(_mscl.AutoAdaptiveFilterOptions_level_get, _mscl.AutoAdaptiveFilterOptions_level_set) - timeLimit = property(_mscl.AutoAdaptiveFilterOptions_timeLimit_get, _mscl.AutoAdaptiveFilterOptions_timeLimit_set) - __swig_destroy__ = _mscl.delete_AutoAdaptiveFilterOptions - -# Register AutoAdaptiveFilterOptions in _mscl: -_mscl.AutoAdaptiveFilterOptions_swigregister(AutoAdaptiveFilterOptions) - -class SignalConditioningValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ENABLE_ORIENTATION_CALC = _mscl.SignalConditioningValues_ENABLE_ORIENTATION_CALC - ENABLE_CONING_SCULLING = _mscl.SignalConditioningValues_ENABLE_CONING_SCULLING - ENABLE_FINITE_SIZE_CORRECTION = _mscl.SignalConditioningValues_ENABLE_FINITE_SIZE_CORRECTION - DISABLE_MAGNETOMETER = _mscl.SignalConditioningValues_DISABLE_MAGNETOMETER - DISABLE_NORTH_COMP = _mscl.SignalConditioningValues_DISABLE_NORTH_COMP - DISABLE_UP_COMP = _mscl.SignalConditioningValues_DISABLE_UP_COMP - ENABLE_QUATERNION_CALC = _mscl.SignalConditioningValues_ENABLE_QUATERNION_CALC - HIGH = _mscl.SignalConditioningValues_HIGH - LOW = _mscl.SignalConditioningValues_LOW - dataConditioningFlags = property(_mscl.SignalConditioningValues_dataConditioningFlags_get, _mscl.SignalConditioningValues_dataConditioningFlags_set) - orientationCalcDecimation = property(_mscl.SignalConditioningValues_orientationCalcDecimation_get, _mscl.SignalConditioningValues_orientationCalcDecimation_set) - accelGyroFilterWidth = property(_mscl.SignalConditioningValues_accelGyroFilterWidth_get, _mscl.SignalConditioningValues_accelGyroFilterWidth_set) - magFilterWidth = property(_mscl.SignalConditioningValues_magFilterWidth_get, _mscl.SignalConditioningValues_magFilterWidth_set) - upCompensation = property(_mscl.SignalConditioningValues_upCompensation_get, _mscl.SignalConditioningValues_upCompensation_set) - northCompensation = property(_mscl.SignalConditioningValues_northCompensation_get, _mscl.SignalConditioningValues_northCompensation_set) - magBandwidthPower = property(_mscl.SignalConditioningValues_magBandwidthPower_get, _mscl.SignalConditioningValues_magBandwidthPower_set) - - def __init__(self): - _mscl.SignalConditioningValues_swiginit(self, _mscl.new_SignalConditioningValues()) - - def conditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_conditioningOptionOn(self, *args) - - def setConditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOn(self, *args) - - def setConditioningOptionOff(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOff(self, *args) - __swig_destroy__ = _mscl.delete_SignalConditioningValues - -# Register SignalConditioningValues in _mscl: -_mscl.SignalConditioningValues_swigregister(SignalConditioningValues) - -class EnableDisableMeasurements(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ACCELEROMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_ACCELEROMETER_MEASUREMENTS - MAGNETOMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_MAGNETOMETER_MEASUREMENTS - - def __init__(self, *args): - _mscl.EnableDisableMeasurements_swiginit(self, _mscl.new_EnableDisableMeasurements(*args)) - measurementOptions = property(_mscl.EnableDisableMeasurements_measurementOptions_get, _mscl.EnableDisableMeasurements_measurementOptions_set) - - def optionEnabled(self, *args): - return _mscl.EnableDisableMeasurements_optionEnabled(self, *args) - - def enableOption(self, *args): - return _mscl.EnableDisableMeasurements_enableOption(self, *args) - - def disableOption(self, *args): - return _mscl.EnableDisableMeasurements_disableOption(self, *args) - __swig_destroy__ = _mscl.delete_EnableDisableMeasurements - -# Register EnableDisableMeasurements in _mscl: -_mscl.EnableDisableMeasurements_swigregister(EnableDisableMeasurements) - -class RTKDeviceStatusFlags(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MODEM_STATE = _mscl.RTKDeviceStatusFlags_MODEM_STATE - CONNECTION_TYPE = _mscl.RTKDeviceStatusFlags_CONNECTION_TYPE - RSSI = _mscl.RTKDeviceStatusFlags_RSSI - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_SIGNAL_QUALITY - TOWER_CHANGE_INDICATOR = _mscl.RTKDeviceStatusFlags_TOWER_CHANGE_INDICATOR - NMEA_TIMEOUT = _mscl.RTKDeviceStatusFlags_NMEA_TIMEOUT - SERVER_TIMEOUT = _mscl.RTKDeviceStatusFlags_SERVER_TIMEOUT - RTCM_TIMEOUT = _mscl.RTKDeviceStatusFlags_RTCM_TIMEOUT - DEVICE_OUT_OF_RANGE = _mscl.RTKDeviceStatusFlags_DEVICE_OUT_OF_RANGE - CORRECTIONS_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_CORRECTIONS_UNAVAILABLE - VERSION = _mscl.RTKDeviceStatusFlags_VERSION - OFF = _mscl.RTKDeviceStatusFlags_OFF - NO_NETWORK = _mscl.RTKDeviceStatusFlags_NO_NETWORK - NETWORK_CONNECTED = _mscl.RTKDeviceStatusFlags_NETWORK_CONNECTED - CONFIGURING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_CONFIGURING_DATA_CONTEXT - ACTIVATING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_ACTIVATING_DATA_CONTEXT - CONFIGURING_SOCKET = _mscl.RTKDeviceStatusFlags_CONFIGURING_SOCKET - WAITING_ON_SERVER_HANDSHAKE = _mscl.RTKDeviceStatusFlags_WAITING_ON_SERVER_HANDSHAKE - CONNECTED_AND_IDLE = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_IDLE - CONNECTED_AND_STREAMING = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_STREAMING - NO_CONNECTION = _mscl.RTKDeviceStatusFlags_NO_CONNECTION - CONNECTION_2G = _mscl.RTKDeviceStatusFlags_CONNECTION_2G - CONNECTION_3G = _mscl.RTKDeviceStatusFlags_CONNECTION_3G - CONNECTION_4G = _mscl.RTKDeviceStatusFlags_CONNECTION_4G - CONNECTION_5G = _mscl.RTKDeviceStatusFlags_CONNECTION_5G - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_swiginit(self, _mscl.new_RTKDeviceStatusFlags(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_version(self) - - def modemState(self, *args): - return _mscl.RTKDeviceStatusFlags_modemState(self, *args) - - def connectionType(self, *args): - return _mscl.RTKDeviceStatusFlags_connectionType(self, *args) - - def rssi(self, *args): - return _mscl.RTKDeviceStatusFlags_rssi(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_signalQuality(self, *args) - - def towerChangeIndicator(self, *args): - return _mscl.RTKDeviceStatusFlags_towerChangeIndicator(self, *args) - - def nmeaTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_nmeaTimeout(self, *args) - - def serverTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_serverTimeout(self, *args) - - def rtcmTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_rtcmTimeout(self, *args) - - def deviceOutOfRange(self, *args): - return _mscl.RTKDeviceStatusFlags_deviceOutOfRange(self, *args) - - def correctionsUnavailable(self, *args): - return _mscl.RTKDeviceStatusFlags_correctionsUnavailable(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags - -# Register RTKDeviceStatusFlags in _mscl: -_mscl.RTKDeviceStatusFlags_swigregister(RTKDeviceStatusFlags) - -class RTKDeviceStatusFlags_v1(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONTROLLER_STATE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATE - PLATFORM_STATE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATE - CONTROLLER_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATUS_CODE - PLATFORM_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATUS_CODE - RESET_REASON = _mscl.RTKDeviceStatusFlags_v1_RESET_REASON - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_v1_SIGNAL_QUALITY - VERSION = _mscl.RTKDeviceStatusFlags_v1_VERSION - IDLE = _mscl.RTKDeviceStatusFlags_v1_IDLE - ACTIVE = _mscl.RTKDeviceStatusFlags_v1_ACTIVE - MODEM_OFF = _mscl.RTKDeviceStatusFlags_v1_MODEM_OFF - MODEM_POWERING_ON = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_ON - MODEM_CONFIGURE = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONFIGURE - MODEM_POWERING_DOWN = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_DOWN - MODEM_READY = _mscl.RTKDeviceStatusFlags_v1_MODEM_READY - MODEM_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTING - MODEM_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_DISCONNECTING - MODEM_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTED - SERVICE_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTING - SERVICE_CONNECTION_FAILED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_FAILED - SERVICE_CONNECTION_CANCELED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_CANCELED - SERVICE_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_DISCONNECTING - SERVICE_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTED - PLATFORM_ERROR = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_ERROR - RESET_MODEM = _mscl.RTKDeviceStatusFlags_v1_RESET_MODEM - CONTROLLER_OK = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_OK - WAITING_NMEA = _mscl.RTKDeviceStatusFlags_v1_WAITING_NMEA - RTK_TIMEOUT = _mscl.RTKDeviceStatusFlags_v1_RTK_TIMEOUT - RTK_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_v1_RTK_UNAVAILABLE - CONFIG_INVALID = _mscl.RTKDeviceStatusFlags_v1_CONFIG_INVALID - PLATFORM_OK = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_OK - RTK_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_RTK_CONNECTION_DROPPED - CELL_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_CELL_CONNECTION_DROPPED - MODEM_ERROR = _mscl.RTKDeviceStatusFlags_v1_MODEM_ERROR - POWER_ON = _mscl.RTKDeviceStatusFlags_v1_POWER_ON - UNKNOWN = _mscl.RTKDeviceStatusFlags_v1_UNKNOWN - SOFT_RESET = _mscl.RTKDeviceStatusFlags_v1_SOFT_RESET - HARDWARE_ERROR_RESET = _mscl.RTKDeviceStatusFlags_v1_HARDWARE_ERROR_RESET - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_v1_swiginit(self, _mscl.new_RTKDeviceStatusFlags_v1(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_v1_version(self) - - def controllerState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerState(self, *args) - - def platformState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformState(self, *args) - - def controllerStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerStatusCode(self, *args) - - def platformStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformStatusCode(self, *args) - - def resetReason(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_resetReason(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_signalQuality(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags_v1 - -# Register RTKDeviceStatusFlags_v1 in _mscl: -_mscl.RTKDeviceStatusFlags_v1_swigregister(RTKDeviceStatusFlags_v1) - -class GnssSignalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - L1CA = _mscl.GnssSignalConfiguration_L1CA - L2C = _mscl.GnssSignalConfiguration_L2C - L1OF = _mscl.GnssSignalConfiguration_L1OF - L2OF = _mscl.GnssSignalConfiguration_L2OF - E1 = _mscl.GnssSignalConfiguration_E1 - E5B = _mscl.GnssSignalConfiguration_E5B - B1 = _mscl.GnssSignalConfiguration_B1 - B2 = _mscl.GnssSignalConfiguration_B2 - - def __init__(self): - _mscl.GnssSignalConfiguration_swiginit(self, _mscl.new_GnssSignalConfiguration()) - - def enableGpsSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGpsSignal(self, signal, enable) - - def gpsSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_gpsSignalEnabled(self, signal) - - def gpsSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_gpsSignalValue(self, *args) - - def enableGlonassSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGlonassSignal(self, signal, enable) - - def glonassSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_glonassSignalEnabled(self, signal) - - def glonassSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_glonassSignalValue(self, *args) - - def enableGalileoSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGalileoSignal(self, signal, enable) - - def galileoSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_galileoSignalEnabled(self, signal) - - def galileoSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_galileoSignalValue(self, *args) - - def enableBeiDouSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableBeiDouSignal(self, signal, enable) - - def beidouSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_beidouSignalEnabled(self, signal) - - def beidouSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_beidouSignalValue(self, *args) - __swig_destroy__ = _mscl.delete_GnssSignalConfiguration - -# Register GnssSignalConfiguration in _mscl: -_mscl.GnssSignalConfiguration_swigregister(GnssSignalConfiguration) - -class GnssSpartnConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - KEY_SIZE = _mscl.GnssSpartnConfiguration_KEY_SIZE - NONE = _mscl.GnssSpartnConfiguration_NONE - NETWORK = _mscl.GnssSpartnConfiguration_NETWORK - LBAND = _mscl.GnssSpartnConfiguration_LBAND - - def __init__(self): - _mscl.GnssSpartnConfiguration_swiginit(self, _mscl.new_GnssSpartnConfiguration()) - - def enable(self, enable): - return _mscl.GnssSpartnConfiguration_enable(self, enable) - - def enabled(self): - return _mscl.GnssSpartnConfiguration_enabled(self) - - def type(self, *args): - return _mscl.GnssSpartnConfiguration_type(self, *args) - - def currentKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyTow(self, *args) - - def currentKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyWeek(self, *args) - - def currentKey(self, *args): - return _mscl.GnssSpartnConfiguration_currentKey(self, *args) - - def nextKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyTow(self, *args) - - def nextKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyWeek(self, *args) - - def nextKey(self, *args): - return _mscl.GnssSpartnConfiguration_nextKey(self, *args) - __swig_destroy__ = _mscl.delete_GnssSpartnConfiguration - -# Register GnssSpartnConfiguration in _mscl: -_mscl.GnssSpartnConfiguration_swigregister(GnssSpartnConfiguration) - -class PositionReferenceConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - autoConfig = property(_mscl.PositionReferenceConfiguration_autoConfig_get, _mscl.PositionReferenceConfiguration_autoConfig_set) - position = property(_mscl.PositionReferenceConfiguration_position_get, _mscl.PositionReferenceConfiguration_position_set) - - def __init__(self): - _mscl.PositionReferenceConfiguration_swiginit(self, _mscl.new_PositionReferenceConfiguration()) - __swig_destroy__ = _mscl.delete_PositionReferenceConfiguration - -# Register PositionReferenceConfiguration in _mscl: -_mscl.PositionReferenceConfiguration_swigregister(PositionReferenceConfiguration) - -class AntennaLeverArmCalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enabled = property(_mscl.AntennaLeverArmCalConfiguration_enabled_get, _mscl.AntennaLeverArmCalConfiguration_enabled_set) - maxOffsetError = property(_mscl.AntennaLeverArmCalConfiguration_maxOffsetError_get, _mscl.AntennaLeverArmCalConfiguration_maxOffsetError_set) - - def __init__(self): - _mscl.AntennaLeverArmCalConfiguration_swiginit(self, _mscl.new_AntennaLeverArmCalConfiguration()) - __swig_destroy__ = _mscl.delete_AntennaLeverArmCalConfiguration - -# Register AntennaLeverArmCalConfiguration in _mscl: -_mscl.AntennaLeverArmCalConfiguration_swigregister(AntennaLeverArmCalConfiguration) - -class OdometerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.OdometerConfiguration_DISABLED - SINGLE = _mscl.OdometerConfiguration_SINGLE - QUADRATURE = _mscl.OdometerConfiguration_QUADRATURE - - def __init__(self): - _mscl.OdometerConfiguration_swiginit(self, _mscl.new_OdometerConfiguration()) - - def mode(self, *args): - return _mscl.OdometerConfiguration_mode(self, *args) - - def uncertainty(self, *args): - return _mscl.OdometerConfiguration_uncertainty(self, *args) - - def scaling(self, *args): - return _mscl.OdometerConfiguration_scaling(self, *args) - __swig_destroy__ = _mscl.delete_OdometerConfiguration - -# Register OdometerConfiguration in _mscl: -_mscl.OdometerConfiguration_swigregister(OdometerConfiguration) - -class GpioConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - UNUSED_FEATURE = _mscl.GpioConfiguration_UNUSED_FEATURE - GPIO_FEATURE = _mscl.GpioConfiguration_GPIO_FEATURE - PPS_FEATURE = _mscl.GpioConfiguration_PPS_FEATURE - ENCODER_FEATURE = _mscl.GpioConfiguration_ENCODER_FEATURE - EVENT_TIMESTAMP_FEATURE = _mscl.GpioConfiguration_EVENT_TIMESTAMP_FEATURE - UART_FEATURE = _mscl.GpioConfiguration_UART_FEATURE - GPIO_UNUSED = _mscl.GpioConfiguration_GPIO_UNUSED - GPIO_INPUT = _mscl.GpioConfiguration_GPIO_INPUT - GPIO_OUTPUT_LOW = _mscl.GpioConfiguration_GPIO_OUTPUT_LOW - GPIO_OUTPUT_HIGH = _mscl.GpioConfiguration_GPIO_OUTPUT_HIGH - PPS_UNUSED = _mscl.GpioConfiguration_PPS_UNUSED - PPS_INPUT = _mscl.GpioConfiguration_PPS_INPUT - PPS_OUTPUT = _mscl.GpioConfiguration_PPS_OUTPUT - ENCODER_UNUSED = _mscl.GpioConfiguration_ENCODER_UNUSED - ENCODER_A = _mscl.GpioConfiguration_ENCODER_A - ENCODER_B = _mscl.GpioConfiguration_ENCODER_B - TIMESTAMP_UNUSED = _mscl.GpioConfiguration_TIMESTAMP_UNUSED - TIMESTAMP_RISING = _mscl.GpioConfiguration_TIMESTAMP_RISING - TIMESTAMP_FALLING = _mscl.GpioConfiguration_TIMESTAMP_FALLING - TIMESTAMP_EITHER = _mscl.GpioConfiguration_TIMESTAMP_EITHER - UART_UNUSED = _mscl.GpioConfiguration_UART_UNUSED - UART_PORT2_TX = _mscl.GpioConfiguration_UART_PORT2_TX - UART_PORT2_RX = _mscl.GpioConfiguration_UART_PORT2_RX - UART_PORT3_TX = _mscl.GpioConfiguration_UART_PORT3_TX - UART_PORT3_RX = _mscl.GpioConfiguration_UART_PORT3_RX - NONE = _mscl.GpioConfiguration_NONE - OPEN_DRAIN = _mscl.GpioConfiguration_OPEN_DRAIN - PULLDOWN = _mscl.GpioConfiguration_PULLDOWN - PULLUP = _mscl.GpioConfiguration_PULLUP - pinMode = property(_mscl.GpioConfiguration_pinMode_get, _mscl.GpioConfiguration_pinMode_set) - pin = property(_mscl.GpioConfiguration_pin_get, _mscl.GpioConfiguration_pin_set) - feature = property(_mscl.GpioConfiguration_feature_get, _mscl.GpioConfiguration_feature_set) - behavior = property(_mscl.GpioConfiguration_behavior_get, _mscl.GpioConfiguration_behavior_set) - - def pinModeValue(self, *args): - return _mscl.GpioConfiguration_pinModeValue(self, *args) - - def __init__(self): - _mscl.GpioConfiguration_swiginit(self, _mscl.new_GpioConfiguration()) - __swig_destroy__ = _mscl.delete_GpioConfiguration - -# Register GpioConfiguration in _mscl: -_mscl.GpioConfiguration_swigregister(GpioConfiguration) - -DISABLED = _mscl.DISABLED -ENABLED = _mscl.ENABLED -TEST = _mscl.TEST -TEST_PULSE = _mscl.TEST_PULSE -class EventTriggerGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventTriggerGpioParameter_DISABLED - WHILE_HIGH = _mscl.EventTriggerGpioParameter_WHILE_HIGH - WHILE_LOW = _mscl.EventTriggerGpioParameter_WHILE_LOW - EDGE = _mscl.EventTriggerGpioParameter_EDGE - pin = property(_mscl.EventTriggerGpioParameter_pin_get, _mscl.EventTriggerGpioParameter_pin_set) - mode = property(_mscl.EventTriggerGpioParameter_mode_get, _mscl.EventTriggerGpioParameter_mode_set) - - def __init__(self): - _mscl.EventTriggerGpioParameter_swiginit(self, _mscl.new_EventTriggerGpioParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerGpioParameter - -# Register EventTriggerGpioParameter in _mscl: -_mscl.EventTriggerGpioParameter_swigregister(EventTriggerGpioParameter) - -class EventTriggerThresholdParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - WINDOW_TYPE = _mscl.EventTriggerThresholdParameter_WINDOW_TYPE - INTERVAL_TYPE = _mscl.EventTriggerThresholdParameter_INTERVAL_TYPE - type = property(_mscl.EventTriggerThresholdParameter_type_get, _mscl.EventTriggerThresholdParameter_type_set) - lowThreshold = property(_mscl.EventTriggerThresholdParameter_lowThreshold_get, _mscl.EventTriggerThresholdParameter_lowThreshold_set) - highThreshold = property(_mscl.EventTriggerThresholdParameter_highThreshold_get, _mscl.EventTriggerThresholdParameter_highThreshold_set) - - def channel(self, *args): - return _mscl.EventTriggerThresholdParameter_channel(self, *args) - - def channelField(self): - return _mscl.EventTriggerThresholdParameter_channelField(self) - - def channelQualifier(self): - return _mscl.EventTriggerThresholdParameter_channelQualifier(self) - - def channelIndex(self): - return _mscl.EventTriggerThresholdParameter_channelIndex(self) - - def __init__(self): - _mscl.EventTriggerThresholdParameter_swiginit(self, _mscl.new_EventTriggerThresholdParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerThresholdParameter - -# Register EventTriggerThresholdParameter in _mscl: -_mscl.EventTriggerThresholdParameter_swigregister(EventTriggerThresholdParameter) - -class EventTriggerCombinationParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_INPUT_TRIGGERS = _mscl.EventTriggerCombinationParameter_MAX_INPUT_TRIGGERS - LOGIC_NEVER = _mscl.EventTriggerCombinationParameter_LOGIC_NEVER - LOGIC_ALWAYS = _mscl.EventTriggerCombinationParameter_LOGIC_ALWAYS - LOGIC_NONE = _mscl.EventTriggerCombinationParameter_LOGIC_NONE - LOGIC_OR = _mscl.EventTriggerCombinationParameter_LOGIC_OR - LOGIC_NAND = _mscl.EventTriggerCombinationParameter_LOGIC_NAND - LOGIC_XOR_ONE = _mscl.EventTriggerCombinationParameter_LOGIC_XOR_ONE - LOGIC_ONLY_A = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_A - LOGIC_ONLY_B = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_B - LOGIC_ONLY_C = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_C - LOGIC_ONLY_D = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_D - LOGIC_AND_AB = _mscl.EventTriggerCombinationParameter_LOGIC_AND_AB - LOGIC_AB_OR_C = _mscl.EventTriggerCombinationParameter_LOGIC_AB_OR_C - LOGIC_AND = _mscl.EventTriggerCombinationParameter_LOGIC_AND - logicTable = property(_mscl.EventTriggerCombinationParameter_logicTable_get, _mscl.EventTriggerCombinationParameter_logicTable_set) - inputTriggers = property(_mscl.EventTriggerCombinationParameter_inputTriggers_get, _mscl.EventTriggerCombinationParameter_inputTriggers_set) - - def __init__(self): - _mscl.EventTriggerCombinationParameter_swiginit(self, _mscl.new_EventTriggerCombinationParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerCombinationParameter - -# Register EventTriggerCombinationParameter in _mscl: -_mscl.EventTriggerCombinationParameter_swigregister(EventTriggerCombinationParameter) - -class EventTriggerParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerParameters_swiginit(self, _mscl.new_EventTriggerParameters()) - gpio = property(_mscl.EventTriggerParameters_gpio_get, _mscl.EventTriggerParameters_gpio_set) - threshold = property(_mscl.EventTriggerParameters_threshold_get, _mscl.EventTriggerParameters_threshold_set) - combination = property(_mscl.EventTriggerParameters_combination_get, _mscl.EventTriggerParameters_combination_set) - __swig_destroy__ = _mscl.delete_EventTriggerParameters - -# Register EventTriggerParameters in _mscl: -_mscl.EventTriggerParameters_swigregister(EventTriggerParameters) - -class EventTriggerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventTriggerConfiguration_NONE - GPIO_TRIGGER = _mscl.EventTriggerConfiguration_GPIO_TRIGGER - THRESHOLD_TRIGGER = _mscl.EventTriggerConfiguration_THRESHOLD_TRIGGER - COMBINATION_TRIGGER = _mscl.EventTriggerConfiguration_COMBINATION_TRIGGER - instance = property(_mscl.EventTriggerConfiguration_instance_get, _mscl.EventTriggerConfiguration_instance_set) - trigger = property(_mscl.EventTriggerConfiguration_trigger_get, _mscl.EventTriggerConfiguration_trigger_set) - parameters = property(_mscl.EventTriggerConfiguration_parameters_get, _mscl.EventTriggerConfiguration_parameters_set) - - def __init__(self): - _mscl.EventTriggerConfiguration_swiginit(self, _mscl.new_EventTriggerConfiguration()) - __swig_destroy__ = _mscl.delete_EventTriggerConfiguration - -# Register EventTriggerConfiguration in _mscl: -_mscl.EventTriggerConfiguration_swigregister(EventTriggerConfiguration) - -class EventActionGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventActionGpioParameter_DISABLED - ACTIVE_HIGH = _mscl.EventActionGpioParameter_ACTIVE_HIGH - ACTIVE_LOW = _mscl.EventActionGpioParameter_ACTIVE_LOW - ONESHOT_HIGH = _mscl.EventActionGpioParameter_ONESHOT_HIGH - ONESHOT_LOW = _mscl.EventActionGpioParameter_ONESHOT_LOW - TOGGLE = _mscl.EventActionGpioParameter_TOGGLE - pin = property(_mscl.EventActionGpioParameter_pin_get, _mscl.EventActionGpioParameter_pin_set) - mode = property(_mscl.EventActionGpioParameter_mode_get, _mscl.EventActionGpioParameter_mode_set) - - def __init__(self): - _mscl.EventActionGpioParameter_swiginit(self, _mscl.new_EventActionGpioParameter()) - __swig_destroy__ = _mscl.delete_EventActionGpioParameter - -# Register EventActionGpioParameter in _mscl: -_mscl.EventActionGpioParameter_swigregister(EventActionGpioParameter) - -class EventActionMessageParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_DESCRIPTORS = _mscl.EventActionMessageParameter_MAX_DESCRIPTORS - sampleRate = property(_mscl.EventActionMessageParameter_sampleRate_get, _mscl.EventActionMessageParameter_sampleRate_set) - - def dataClass(self): - return _mscl.EventActionMessageParameter_dataClass(self) - - def setChannelFields(self, dataClass, fields): - return _mscl.EventActionMessageParameter_setChannelFields(self, dataClass, fields) - - def getChannelFields(self): - return _mscl.EventActionMessageParameter_getChannelFields(self) - - def __init__(self): - _mscl.EventActionMessageParameter_swiginit(self, _mscl.new_EventActionMessageParameter()) - __swig_destroy__ = _mscl.delete_EventActionMessageParameter - -# Register EventActionMessageParameter in _mscl: -_mscl.EventActionMessageParameter_swigregister(EventActionMessageParameter) - -class EventActionParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventActionParameters_swiginit(self, _mscl.new_EventActionParameters()) - gpio = property(_mscl.EventActionParameters_gpio_get, _mscl.EventActionParameters_gpio_set) - message = property(_mscl.EventActionParameters_message_get, _mscl.EventActionParameters_message_set) - __swig_destroy__ = _mscl.delete_EventActionParameters - -# Register EventActionParameters in _mscl: -_mscl.EventActionParameters_swigregister(EventActionParameters) - -class EventActionConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventActionConfiguration_NONE - GPIO = _mscl.EventActionConfiguration_GPIO - MESSAGE = _mscl.EventActionConfiguration_MESSAGE - instance = property(_mscl.EventActionConfiguration_instance_get, _mscl.EventActionConfiguration_instance_set) - trigger = property(_mscl.EventActionConfiguration_trigger_get, _mscl.EventActionConfiguration_trigger_set) - type = property(_mscl.EventActionConfiguration_type_get, _mscl.EventActionConfiguration_type_set) - parameters = property(_mscl.EventActionConfiguration_parameters_get, _mscl.EventActionConfiguration_parameters_set) - - def __init__(self): - _mscl.EventActionConfiguration_swiginit(self, _mscl.new_EventActionConfiguration()) - __swig_destroy__ = _mscl.delete_EventActionConfiguration - -# Register EventActionConfiguration in _mscl: -_mscl.EventActionConfiguration_swigregister(EventActionConfiguration) - -class EventTriggerInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTriggerInfo_swiginit(self, _mscl.new_EventTriggerInfo(*args)) - ACTIVE = _mscl.EventTriggerInfo_ACTIVE - ENABLED = _mscl.EventTriggerInfo_ENABLED - TEST = _mscl.EventTriggerInfo_TEST - type = property(_mscl.EventTriggerInfo_type_get, _mscl.EventTriggerInfo_type_set) - instanceId = property(_mscl.EventTriggerInfo_instanceId_get, _mscl.EventTriggerInfo_instanceId_set) - - def isActive(self): - return _mscl.EventTriggerInfo_isActive(self) - - def isEnabled(self): - return _mscl.EventTriggerInfo_isEnabled(self) - - def isTestMode(self): - return _mscl.EventTriggerInfo_isTestMode(self) - - def setStatus(self, value): - return _mscl.EventTriggerInfo_setStatus(self, value) - __swig_destroy__ = _mscl.delete_EventTriggerInfo - -# Register EventTriggerInfo in _mscl: -_mscl.EventTriggerInfo_swigregister(EventTriggerInfo) - -class EventActionInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventActionInfo_swiginit(self, _mscl.new_EventActionInfo(*args)) - type = property(_mscl.EventActionInfo_type_get, _mscl.EventActionInfo_type_set) - triggerId = property(_mscl.EventActionInfo_triggerId_get, _mscl.EventActionInfo_triggerId_set) - instanceId = property(_mscl.EventActionInfo_instanceId_get, _mscl.EventActionInfo_instanceId_set) - __swig_destroy__ = _mscl.delete_EventActionInfo - -# Register EventActionInfo in _mscl: -_mscl.EventActionInfo_swigregister(EventActionInfo) - -class MeasurementReferenceFrame(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MeasurementReferenceFrame_swiginit(self, _mscl.new_MeasurementReferenceFrame(*args)) - - def asMipFieldValues(self): - return _mscl.MeasurementReferenceFrame_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.MeasurementReferenceFrame_appendMipFieldValues(self, appendTo) - - def translation(self, *args): - return _mscl.MeasurementReferenceFrame_translation(self, *args) - - def rotation(self, *args): - return _mscl.MeasurementReferenceFrame_rotation(self, *args) - - def errorTrackingEnabled(self): - return _mscl.MeasurementReferenceFrame_errorTrackingEnabled(self) - - def enableErrorTracking(self, enable=True): - return _mscl.MeasurementReferenceFrame_enableErrorTracking(self, enable) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrame - -# Register MeasurementReferenceFrame in _mscl: -_mscl.MeasurementReferenceFrame_swigregister(MeasurementReferenceFrame) - -class MipChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipChannel_swiginit(self, _mscl.new_MipChannel(*args)) - - def channelField(self): - return _mscl.MipChannel_channelField(self) - - def sampleRate(self): - return _mscl.MipChannel_sampleRate(self) - - def rateDecimation(self, sampleRateBase): - return _mscl.MipChannel_rateDecimation(self, sampleRateBase) - __swig_destroy__ = _mscl.delete_MipChannel - -# Register MipChannel in _mscl: -_mscl.MipChannel_swigregister(MipChannel) - -class MipPacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MIP_ACK_NACK_ERROR_NONE = _mscl.MipPacket_MIP_ACK_NACK_ERROR_NONE - MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND - MIP_ACK_NACK_ERROR_CHECKSUM_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_CHECKSUM_INVALID - MIP_ACK_NACK_ERROR_PARAMETER_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_PARAMETER_INVALID - MIP_ACK_NACK_ERROR_COMMAND_FAILED = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_FAILED - MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT - MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET - - def __init__(self): - _mscl.MipPacket_swiginit(self, _mscl.new_MipPacket()) - - @staticmethod - def isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - - def descriptorSet(self): - return _mscl.MipPacket_descriptorSet(self) - - def payload(self): - return _mscl.MipPacket_payload(self) - __swig_destroy__ = _mscl.delete_MipPacket - -# Register MipPacket in _mscl: -_mscl.MipPacket_swigregister(MipPacket) - -def MipPacket_isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - -class MipDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def field(self): - return _mscl.MipDataPoint_field(self) - - def qualifier(self): - return _mscl.MipDataPoint_qualifier(self) - - def hasAddlIdentifiers(self): - return _mscl.MipDataPoint_hasAddlIdentifiers(self) - - def addlIdentifiers(self): - return _mscl.MipDataPoint_addlIdentifiers(self) - - def hasValidFlag(self): - return _mscl.MipDataPoint_hasValidFlag(self) - - def valid(self): - return _mscl.MipDataPoint_valid(self) - - def channelName(self, includeAddlIds=True, consolidatedFormat=False): - return _mscl.MipDataPoint_channelName(self, includeAddlIds, consolidatedFormat) - __swig_destroy__ = _mscl.delete_MipDataPoint - -# Register MipDataPoint in _mscl: -_mscl.MipDataPoint_swigregister(MipDataPoint) - -class ContinuousBIT(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def as_MipDataPoints(self): - return _mscl.ContinuousBIT_as_MipDataPoints(self) - - @staticmethod - def getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - - def data(self): - return _mscl.ContinuousBIT_data(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_bufferOverrun(self) - - def imuClockFault(self): - return _mscl.ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_pressureSelfTestFail(self) - - def filterTimingOverrun(self): - return _mscl.ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.ContinuousBIT_filterTimingUnderrun(self) - -# Register ContinuousBIT in _mscl: -_mscl.ContinuousBIT_swigregister(ContinuousBIT) - -def ContinuousBIT_getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - -class ContinuousBIT_System_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - SYSTEM_CLOCK_FAILURE = _mscl.ContinuousBIT_System_General_SYSTEM_CLOCK_FAILURE - POWER_FAULT = _mscl.ContinuousBIT_System_General_POWER_FAULT - FIRMWARE_FAULT = _mscl.ContinuousBIT_System_General_FIRMWARE_FAULT - TIMING_OVERLOAD = _mscl.ContinuousBIT_System_General_TIMING_OVERLOAD - BUFFER_OVERRUN = _mscl.ContinuousBIT_System_General_BUFFER_OVERRUN - - def flags(self): - return _mscl.ContinuousBIT_System_General_flags(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_System_General_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_System_General_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_System_General_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_System_General_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_System_General_bufferOverrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_General - -# Register ContinuousBIT_System_General in _mscl: -_mscl.ContinuousBIT_System_General_swigregister(ContinuousBIT_System_General) - -class ContinuousBIT_System_Process(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def flags(self): - return _mscl.ContinuousBIT_System_Process_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_Process - -# Register ContinuousBIT_System_Process in _mscl: -_mscl.ContinuousBIT_System_Process_swigregister(ContinuousBIT_System_Process) - -class ContinuousBIT_System(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_System_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_System_GENERAL_FLAGS - PROCESS_FLAGS = _mscl.ContinuousBIT_System_PROCESS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_System_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System - -# Register ContinuousBIT_System in _mscl: -_mscl.ContinuousBIT_System_swigregister(ContinuousBIT_System) - -class ContinuousBIT_IMU_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - CLOCK_FAULT = _mscl.ContinuousBIT_IMU_General_CLOCK_FAULT - COMMUNICATION_FAULT = _mscl.ContinuousBIT_IMU_General_COMMUNICATION_FAULT - TIMING_OVERRUN = _mscl.ContinuousBIT_IMU_General_TIMING_OVERRUN - CALIBRATION_ERROR_ACCEL = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_ACCEL - CALIBRATION_ERROR_GYRO = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_GYRO - CALIBRATION_ERROR_MAG = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_MAG - - def flags(self): - return _mscl.ContinuousBIT_IMU_General_flags(self) - - def clockFault(self): - return _mscl.ContinuousBIT_IMU_General_clockFault(self) - - def communicationFault(self): - return _mscl.ContinuousBIT_IMU_General_communicationFault(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_IMU_General_timingOverrun(self) - - def calibrationErrorAccel(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorAccel(self) - - def calibrationErrorGyro(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorGyro(self) - - def calibrationErrorMag(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorMag(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_General - -# Register ContinuousBIT_IMU_General in _mscl: -_mscl.ContinuousBIT_IMU_General_swigregister(ContinuousBIT_IMU_General) - -class ContinuousBIT_IMU_Sensors(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - ACCEL_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_GENERAL_FAULT - ACCEL_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_OVERRANGE - ACCEL_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_SELF_TEST_FAIL - GYRO_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_GYRO_GENERAL_FAULT - GYRO_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_GYRO_OVERRANGE - GYRO_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_GYRO_SELF_TEST_FAIL - MAG_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_MAG_GENERAL_FAULT - MAG_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_MAG_OVERRANGE - MAG_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_MAG_SELF_TEST_FAIL - PRESSURE_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_GENERAL_FAULT - PRESSURE_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_OVERRANGE - PRESSURE_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_SELF_TEST_FAIL - - def flags(self): - return _mscl.ContinuousBIT_IMU_Sensors_flags(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureSelfTestFail(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_Sensors - -# Register ContinuousBIT_IMU_Sensors in _mscl: -_mscl.ContinuousBIT_IMU_Sensors_swigregister(ContinuousBIT_IMU_Sensors) - -class ContinuousBIT_IMU(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_IMU_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_IMU_GENERAL_FLAGS - SENSORS_FLAGS = _mscl.ContinuousBIT_IMU_SENSORS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_IMU_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU - -# Register ContinuousBIT_IMU in _mscl: -_mscl.ContinuousBIT_IMU_swigregister(ContinuousBIT_IMU) - -class ContinuousBIT_Filter_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - TIMING_OVERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_OVERRUN - TIMING_UNDERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_UNDERRUN - - def flags(self): - return _mscl.ContinuousBIT_Filter_General_flags(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_Filter_General_timingOverrun(self) - - def timingUnderrun(self): - return _mscl.ContinuousBIT_Filter_General_timingUnderrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter_General - -# Register ContinuousBIT_Filter_General in _mscl: -_mscl.ContinuousBIT_Filter_General_swigregister(ContinuousBIT_Filter_General) - -class ContinuousBIT_Filter(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_Filter_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_Filter_GENERAL_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_Filter_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter - -# Register ContinuousBIT_Filter in _mscl: -_mscl.ContinuousBIT_Filter_swigregister(ContinuousBIT_Filter) - -class CV7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_General_swiginit(self, _mscl.new_CV7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_General - -# Register CV7ContinuousBIT_System_General in _mscl: -_mscl.CV7ContinuousBIT_System_General_swigregister(CV7ContinuousBIT_System_General) - -class CV7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_Process_swiginit(self, _mscl.new_CV7ContinuousBIT_System_Process(*args)) - IMU_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_IMU_PROCESS_FAULT - IMU_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_IMU_RATE_MISMATCH - IMU_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_IMU_DROPPED_DATA - IMU_STUCK = _mscl.CV7ContinuousBIT_System_Process_IMU_STUCK - FILTER_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_FILTER_PROCESS_FAULT - FILTER_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_FILTER_DROPPED_DATA - FILTER_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_FILTER_RATE_MISMATCH - FILTER_STUCK = _mscl.CV7ContinuousBIT_System_Process_FILTER_STUCK - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_filterStuck(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_Process - -# Register CV7ContinuousBIT_System_Process in _mscl: -_mscl.CV7ContinuousBIT_System_Process_swigregister(CV7ContinuousBIT_System_Process) - -class CV7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_swiginit(self, _mscl.new_CV7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.CV7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System - -# Register CV7ContinuousBIT_System in _mscl: -_mscl.CV7ContinuousBIT_System_swigregister(CV7ContinuousBIT_System) - -class CV7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_General - -# Register CV7ContinuousBIT_IMU_General in _mscl: -_mscl.CV7ContinuousBIT_IMU_General_swigregister(CV7ContinuousBIT_IMU_General) - -class CV7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_Sensors - -# Register CV7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.CV7ContinuousBIT_IMU_Sensors_swigregister(CV7ContinuousBIT_IMU_Sensors) - -class CV7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU(*args)) - FACTORY_BITS_INVALID = _mscl.CV7ContinuousBIT_IMU_FACTORY_BITS_INVALID - - def general(self): - return _mscl.CV7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.CV7ContinuousBIT_IMU_sensors(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_IMU_factoryBitsInvalid(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU - -# Register CV7ContinuousBIT_IMU in _mscl: -_mscl.CV7ContinuousBIT_IMU_swigregister(CV7ContinuousBIT_IMU) - -class CV7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter_General(*args)) - FAULT = _mscl.CV7ContinuousBIT_Filter_General_FAULT - - def fault(self): - return _mscl.CV7ContinuousBIT_Filter_General_fault(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter_General - -# Register CV7ContinuousBIT_Filter_General in _mscl: -_mscl.CV7ContinuousBIT_Filter_General_swigregister(CV7ContinuousBIT_Filter_General) - -class CV7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter - -# Register CV7ContinuousBIT_Filter in _mscl: -_mscl.CV7ContinuousBIT_Filter_swigregister(CV7ContinuousBIT_Filter) - -class CV7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.CV7ContinuousBIT_swiginit(self, _mscl.new_CV7ContinuousBIT(bytes)) - - def system(self): - return _mscl.CV7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.CV7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.CV7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.CV7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.CV7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.CV7ContinuousBIT_bufferOverrun(self) - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_filterStuck(self) - - def imu(self): - return _mscl.CV7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.CV7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.CV7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.CV7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.CV7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.CV7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.CV7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.CV7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.CV7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.CV7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.CV7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.CV7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.CV7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.CV7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.CV7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.CV7ContinuousBIT_pressureSelfTestFail(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_factoryBitsInvalid(self) - - def filter(self): - return _mscl.CV7ContinuousBIT_filter(self) - - def filterFault(self): - return _mscl.CV7ContinuousBIT_filterFault(self) - - def filterTimingOverrun(self): - return _mscl.CV7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.CV7ContinuousBIT_filterTimingUnderrun(self) - - def as_MipDataPoints(self): - return _mscl.CV7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT - -# Register CV7ContinuousBIT in _mscl: -_mscl.CV7ContinuousBIT_swigregister(CV7ContinuousBIT) - -class GQ7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_General - -# Register GQ7ContinuousBIT_System_General in _mscl: -_mscl.GQ7ContinuousBIT_System_General_swigregister(GQ7ContinuousBIT_System_General) - -class GQ7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_Process_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_Process(*args)) - IMU_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_CONTROL_LINE_FAULT - IMU_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_COMMAND_RESPONSE_FAULT - IMU_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_SPI_TRANSFER_FAULT - IMU_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_DATA_FRAME_FAULT - FILTER_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_CONTROL_LINE_FAULT - FILTER_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_COMMAND_RESPONSE_FAULT - FILTER_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_SPI_TRANSFER_FAULT - FILTER_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_DATA_FRAME_FAULT - GNSS_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_CONTROL_LINE_FAULT - GNSS_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_COMMAND_RESPONSE_FAULT - GNSS_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_SPI_TRANSFER_FAULT - GNSS_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_DATA_FRAME_FAULT - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssDataFrameFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_Process - -# Register GQ7ContinuousBIT_System_Process in _mscl: -_mscl.GQ7ContinuousBIT_System_Process_swigregister(GQ7ContinuousBIT_System_Process) - -class GQ7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_swiginit(self, _mscl.new_GQ7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.GQ7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System - -# Register GQ7ContinuousBIT_System in _mscl: -_mscl.GQ7ContinuousBIT_System_swigregister(GQ7ContinuousBIT_System) - -class GQ7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_General - -# Register GQ7ContinuousBIT_IMU_General in _mscl: -_mscl.GQ7ContinuousBIT_IMU_General_swigregister(GQ7ContinuousBIT_IMU_General) - -class GQ7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_Sensors - -# Register GQ7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.GQ7ContinuousBIT_IMU_Sensors_swigregister(GQ7ContinuousBIT_IMU_Sensors) - -class GQ7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.GQ7ContinuousBIT_IMU_sensors(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU - -# Register GQ7ContinuousBIT_IMU in _mscl: -_mscl.GQ7ContinuousBIT_IMU_swigregister(GQ7ContinuousBIT_IMU) - -class GQ7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_HARDWARE_FAULT - COMMUNICATION_ERROR_IMU_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_IMU_SPI - COMMUNICATION_ERROR_GNSS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_GNSS_SPI - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_COMMS_UART = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_UART - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationError(self) - - def communicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorImuSpi(self) - - def communicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorGnssSpi(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsSpi(self) - - def communicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsUart(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter_General - -# Register GQ7ContinuousBIT_Filter_General in _mscl: -_mscl.GQ7ContinuousBIT_Filter_General_swigregister(GQ7ContinuousBIT_Filter_General) - -class GQ7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter - -# Register GQ7ContinuousBIT_Filter in _mscl: -_mscl.GQ7ContinuousBIT_Filter_swigregister(GQ7ContinuousBIT_Filter) - -class GQ7ContinuousBIT_GNSS_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_HARDWARE_FAULT - COMMUNICATION_ERROR_COMMS_SERIAL = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SERIAL - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_NAV_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_NAV_SPI - GPS_TIME_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_GPS_TIME_FAULT - TIMING_OVERRUN = _mscl.GQ7ContinuousBIT_GNSS_General_TIMING_OVERRUN - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_flags(self) - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationError(self) - - def communicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSerial(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSpi(self) - - def communicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_gpsTimeFault(self) - - def timingOverrun(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_timingOverrun(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_General - -# Register GQ7ContinuousBIT_GNSS_General in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_General_swigregister(GQ7ContinuousBIT_GNSS_General) - -class GQ7ContinuousBIT_GNSS_Receivers(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_Receivers_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_Receivers(*args)) - POWER_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_1 - FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_1 - SHORTED_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_1 - OPEN_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_1 - SOLUTION_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_1 - POWER_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_2 - FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_2 - SHORTED_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_2 - OPEN_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_2 - SOLUTION_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_2 - RTCM_COMMUNICATION_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTCM_COMMUNICATION_FAULT - RTK_DONGLE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTK_DONGLE_FAULT - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_flags(self) - - def powerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver1(self) - - def faultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver1(self) - - def shortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna1(self) - - def openAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna1(self) - - def solutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver1(self) - - def powerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver2(self) - - def faultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver2(self) - - def shortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna2(self) - - def openAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna2(self) - - def solutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtkDongleFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_Receivers - -# Register GQ7ContinuousBIT_GNSS_Receivers in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_Receivers_swigregister(GQ7ContinuousBIT_GNSS_Receivers) - -class GQ7ContinuousBIT_GNSS(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS(*args)) - RESPONSE_OFFSET = _mscl.GQ7ContinuousBIT_GNSS_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_GENERAL_FLAGS - RECEIVERS_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_RECEIVERS_FLAGS - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_flags(self) - - def general(self): - return _mscl.GQ7ContinuousBIT_GNSS_general(self) - - def receivers(self): - return _mscl.GQ7ContinuousBIT_GNSS_receivers(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS - -# Register GQ7ContinuousBIT_GNSS in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_swigregister(GQ7ContinuousBIT_GNSS) - -class GQ7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.GQ7ContinuousBIT_swiginit(self, _mscl.new_GQ7ContinuousBIT(bytes)) - - def system(self): - return _mscl.GQ7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.GQ7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.GQ7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.GQ7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.GQ7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.GQ7ContinuousBIT_bufferOverrun(self) - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_gnssDataFrameFault(self) - - def imu(self): - return _mscl.GQ7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.GQ7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.GQ7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.GQ7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.GQ7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.GQ7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.GQ7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.GQ7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.GQ7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.GQ7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_pressureSelfTestFail(self) - - def filter(self): - return _mscl.GQ7ContinuousBIT_filter(self) - - def filterClockFault(self): - return _mscl.GQ7ContinuousBIT_filterClockFault(self) - - def filterHardwareFault(self): - return _mscl.GQ7ContinuousBIT_filterHardwareFault(self) - - def filterTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingUnderrun(self) - - def filterCommunicationError(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationError(self) - - def filterCommunicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorImuSpi(self) - - def filterCommunicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorGnssSpi(self) - - def filterCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsSpi(self) - - def filterCommunicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsUart(self) - - def gnss(self): - return _mscl.GQ7ContinuousBIT_gnss(self) - - def gnssClockFault(self): - return _mscl.GQ7ContinuousBIT_gnssClockFault(self) - - def gnssHardwareFault(self): - return _mscl.GQ7ContinuousBIT_gnssHardwareFault(self) - - def gnssCommunicationError(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationError(self) - - def gnssCommunicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSerial(self) - - def gnssCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSpi(self) - - def gnssCommunicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_gpsTimeFault(self) - - def gnssTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_gnssTimingOverrun(self) - - def gnssPowerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver1(self) - - def gnssFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver1(self) - - def gnssShortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna1(self) - - def gnssOpenAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna1(self) - - def gnssSolutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver1(self) - - def gnssPowerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver2(self) - - def gnssFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver2(self) - - def gnssShortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna2(self) - - def gnssOpenAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna2(self) - - def gnssSolutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_rtkDongleFault(self) - - def as_MipDataPoints(self): - return _mscl.GQ7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT - -# Register GQ7ContinuousBIT in _mscl: -_mscl.GQ7ContinuousBIT_swigregister(GQ7ContinuousBIT) - -class MipSharedDataFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EVENT_SOURCE_NONE = _mscl.MipSharedDataFields_EVENT_SOURCE_NONE - EVENT_SOURCE_UNKNOWN = _mscl.MipSharedDataFields_EVENT_SOURCE_UNKNOWN - - def __init__(self): - _mscl.MipSharedDataFields_swiginit(self, _mscl.new_MipSharedDataFields()) - - def hasEventSource(self): - return _mscl.MipSharedDataFields_hasEventSource(self) - - def eventSource(self): - return _mscl.MipSharedDataFields_eventSource(self) - - def hasTicks(self): - return _mscl.MipSharedDataFields_hasTicks(self) - - def ticks(self): - return _mscl.MipSharedDataFields_ticks(self) - - def hasDeltaTicks(self): - return _mscl.MipSharedDataFields_hasDeltaTicks(self) - - def deltaTicks(self): - return _mscl.MipSharedDataFields_deltaTicks(self) - - def hasGpsTimestamp(self): - return _mscl.MipSharedDataFields_hasGpsTimestamp(self) - - def gpsTimestamp(self): - return _mscl.MipSharedDataFields_gpsTimestamp(self) - - def gpsTimestampValid(self): - return _mscl.MipSharedDataFields_gpsTimestampValid(self) - - def hasDeltaTime(self): - return _mscl.MipSharedDataFields_hasDeltaTime(self) - - def deltaTime(self): - return _mscl.MipSharedDataFields_deltaTime(self) - - def hasReferenceTime(self): - return _mscl.MipSharedDataFields_hasReferenceTime(self) - - def referenceTime(self): - return _mscl.MipSharedDataFields_referenceTime(self) - - def hasDeltaReferenceTime(self): - return _mscl.MipSharedDataFields_hasDeltaReferenceTime(self) - - def deltaReferenceTime(self): - return _mscl.MipSharedDataFields_deltaReferenceTime(self) - - def hasExternalTimestamp(self): - return _mscl.MipSharedDataFields_hasExternalTimestamp(self) - - def externalTimestamp(self): - return _mscl.MipSharedDataFields_externalTimestamp(self) - - def externalTimestampValid(self): - return _mscl.MipSharedDataFields_externalTimestampValid(self) - - def hasDeltaExternalTime(self): - return _mscl.MipSharedDataFields_hasDeltaExternalTime(self) - - def deltaExternalTime(self): - return _mscl.MipSharedDataFields_deltaExternalTime(self) - - def deltaExternalTimeValid(self): - return _mscl.MipSharedDataFields_deltaExternalTimeValid(self) - - def get(self, *args): - return _mscl.MipSharedDataFields_get(self, *args) - __swig_destroy__ = _mscl.delete_MipSharedDataFields - -# Register MipSharedDataFields in _mscl: -_mscl.MipSharedDataFields_swigregister(MipSharedDataFields) - -class MipDataPacket(MipPacket): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipDataPacket_swiginit(self, _mscl.new_MipDataPacket(*args)) - - def data(self): - return _mscl.MipDataPacket_data(self) - - def shared(self): - return _mscl.MipDataPacket_shared(self) - - def collectedTimestamp(self): - return _mscl.MipDataPacket_collectedTimestamp(self) - - def deviceTimestamp(self): - return _mscl.MipDataPacket_deviceTimestamp(self) - - def hasDeviceTime(self): - return _mscl.MipDataPacket_hasDeviceTime(self) - - def deviceTimeValid(self): - return _mscl.MipDataPacket_deviceTimeValid(self) - - def deviceTimeFlags(self): - return _mscl.MipDataPacket_deviceTimeFlags(self) - __swig_destroy__ = _mscl.delete_MipDataPacket - -# Register MipDataPacket in _mscl: -_mscl.MipDataPacket_swigregister(MipDataPacket) - -class RawBytePacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INVALID_PACKET = _mscl.RawBytePacket_INVALID_PACKET - DATA_PACKET = _mscl.RawBytePacket_DATA_PACKET - COMMAND_PACKET = _mscl.RawBytePacket_COMMAND_PACKET - NO_PACKET_FOUND = _mscl.RawBytePacket_NO_PACKET_FOUND - FROM_READ = _mscl.RawBytePacket_FROM_READ - FROM_SEND = _mscl.RawBytePacket_FROM_SEND - - def __init__(self): - _mscl.RawBytePacket_swiginit(self, _mscl.new_RawBytePacket()) - - def type(self, *args): - return _mscl.RawBytePacket_type(self, *args) - - def source(self, *args): - return _mscl.RawBytePacket_source(self, *args) - - def payload(self, *args): - return _mscl.RawBytePacket_payload(self, *args) - __swig_destroy__ = _mscl.delete_RawBytePacket - -# Register RawBytePacket in _mscl: -_mscl.RawBytePacket_swigregister(RawBytePacket) - -class MipNodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_MipNodeFeatures - - @staticmethod - def isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - - def supportsCategory(self, dataClass): - return _mscl.MipNodeFeatures_supportsCategory(self, dataClass) - - def supportsCommand(self, commandId): - return _mscl.MipNodeFeatures_supportsCommand(self, commandId) - - def supportedCommands(self): - return _mscl.MipNodeFeatures_supportedCommands(self) - - def supportsChannelField(self, fieldId): - return _mscl.MipNodeFeatures_supportsChannelField(self, fieldId) - - def filterSupportedChannelFields(self, fields): - return _mscl.MipNodeFeatures_filterSupportedChannelFields(self, fields) - - def supportedChannelFields(self, *args): - return _mscl.MipNodeFeatures_supportedChannelFields(self, *args) - - def supportedSampleRates(self, dataClass): - return _mscl.MipNodeFeatures_supportedSampleRates(self, dataClass) - - def baseDataRate(self, dataClass): - return _mscl.MipNodeFeatures_baseDataRate(self, dataClass) - - def gnssReceiverInfo(self): - return _mscl.MipNodeFeatures_gnssReceiverInfo(self) - - def supportedGnssSources(self): - return _mscl.MipNodeFeatures_supportedGnssSources(self) - - def supportedSensorRanges(self, *args): - return _mscl.MipNodeFeatures_supportedSensorRanges(self, *args) - - def getCommPortInfo(self): - return _mscl.MipNodeFeatures_getCommPortInfo(self) - - def useLegacyIdsForEnableDataStream(self): - return _mscl.MipNodeFeatures_useLegacyIdsForEnableDataStream(self) - - def supportedHeadingUpdateOptions(self): - return _mscl.MipNodeFeatures_supportedHeadingUpdateOptions(self) - - def supportedHeadingAlignmentMethods(self): - return _mscl.MipNodeFeatures_supportedHeadingAlignmentMethods(self) - - def supportedStatusSelectors(self): - return _mscl.MipNodeFeatures_supportedStatusSelectors(self) - - def supportedEstimationControlOptions(self): - return _mscl.MipNodeFeatures_supportedEstimationControlOptions(self) - - def supportedVehicleModeTypes(self): - return _mscl.MipNodeFeatures_supportedVehicleModeTypes(self) - - def supportedAdaptiveMeasurementModes(self): - return _mscl.MipNodeFeatures_supportedAdaptiveMeasurementModes(self) - - def supportedAdaptiveFilterLevels(self): - return _mscl.MipNodeFeatures_supportedAdaptiveFilterLevels(self) - - def supportedAidingMeasurementOptions(self): - return _mscl.MipNodeFeatures_supportedAidingMeasurementOptions(self) - - def supportedPpsSourceOptions(self): - return _mscl.MipNodeFeatures_supportedPpsSourceOptions(self) - - def supportedGpioPins(self): - return _mscl.MipNodeFeatures_supportedGpioPins(self) - - def supportedGpioPinModes(self, feature, behavior): - return _mscl.MipNodeFeatures_supportedGpioPinModes(self, feature, behavior) - - def supportedGpioBehaviors(self, feature, pin): - return _mscl.MipNodeFeatures_supportedGpioBehaviors(self, feature, pin) - - def supportedGpioFeatures(self, pin): - return _mscl.MipNodeFeatures_supportedGpioFeatures(self, pin) - - def supportedGpioConfigurations(self): - return _mscl.MipNodeFeatures_supportedGpioConfigurations(self) - - def supportedGnssSignalConfigurations(self): - return _mscl.MipNodeFeatures_supportedGnssSignalConfigurations(self) - - def supportedDeclinationSources(self): - return _mscl.MipNodeFeatures_supportedDeclinationSources(self) - - def supportedInclinationSources(self): - return _mscl.MipNodeFeatures_supportedInclinationSources(self) - - def supportedMagneticMagnitudeSources(self): - return _mscl.MipNodeFeatures_supportedMagneticMagnitudeSources(self) - - def supportedEventThresholdChannels(self): - return _mscl.MipNodeFeatures_supportedEventThresholdChannels(self) - - def supportedEventActionInfo(self): - return _mscl.MipNodeFeatures_supportedEventActionInfo(self) - - def supportedEventTriggerInfo(self): - return _mscl.MipNodeFeatures_supportedEventTriggerInfo(self) - - def supportsNorthCompensation(self): - return _mscl.MipNodeFeatures_supportsNorthCompensation(self) - - def supportedLowPassFilterChannelFields(self): - return _mscl.MipNodeFeatures_supportedLowPassFilterChannelFields(self) - - def maxMeasurementReferenceFrameId(self): - return _mscl.MipNodeFeatures_maxMeasurementReferenceFrameId(self) - -# Register MipNodeFeatures in _mscl: -_mscl.MipNodeFeatures_swigregister(MipNodeFeatures) - -def MipNodeFeatures_isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - -class MipNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.MipNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - def getConfigCommandBytes(self): - return _mscl.MipNode_getConfigCommandBytes(self) - - def sendCommandBytes(self, *args): - return _mscl.MipNode_sendCommandBytes(self, *args) - - @staticmethod - def deviceName(serial): - return _mscl.MipNode_deviceName(serial) - - def connection(self): - return _mscl.MipNode_connection(self) - - def features(self): - return _mscl.MipNode_features(self) - - def clearDeviceInfo(self): - return _mscl.MipNode_clearDeviceInfo(self) - - def lastCommunicationTime(self): - return _mscl.MipNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.MipNode_lastDeviceState(self) - - def setLastDeviceState(self, state): - return _mscl.MipNode_setLastDeviceState(self, state) - - def firmwareVersion(self): - return _mscl.MipNode_firmwareVersion(self) - - def model(self): - return _mscl.MipNode_model(self) - - def modelName(self): - return _mscl.MipNode_modelName(self) - - def modelNumber(self): - return _mscl.MipNode_modelNumber(self) - - def serialNumber(self): - return _mscl.MipNode_serialNumber(self) - - def lotNumber(self): - return _mscl.MipNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.MipNode_deviceOptions(self) - - def timeout(self, *args): - return _mscl.MipNode_timeout(self, *args) - - def name(self): - return _mscl.MipNode_name(self) - - def ping(self): - return _mscl.MipNode_ping(self) - - def setToIdle(self): - return _mscl.MipNode_setToIdle(self) - - def cyclePower(self): - return _mscl.MipNode_cyclePower(self) - - def resume(self): - return _mscl.MipNode_resume(self) - - def getCommunicationMode(self): - return _mscl.MipNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.MipNode_setCommunicationMode(self, communicationMode) - - def saveSettingsAsStartup(self, *args): - return _mscl.MipNode_saveSettingsAsStartup(self, *args) - - def loadStartupSettings(self, *args): - return _mscl.MipNode_loadStartupSettings(self, *args) - - def loadFactoryDefaultSettings(self, *args): - return _mscl.MipNode_loadFactoryDefaultSettings(self, *args) - - def setUARTBaudRate(self, *args): - return _mscl.MipNode_setUARTBaudRate(self, *args) - - def getUARTBaudRate(self, portId=1): - return _mscl.MipNode_getUARTBaudRate(self, portId) - - def getRawBytePackets(self, timeout=0, maxPackets=0): - return _mscl.MipNode_getRawBytePackets(self, timeout, maxPackets) - -# Register MipNode in _mscl: -_mscl.MipNode_swigregister(MipNode) - -def MipNode_deviceName(serial): - return _mscl.MipNode_deviceName(serial) - -class InertialNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.InertialNode_swiginit(self, _mscl.new_InertialNode(connection)) - __swig_destroy__ = _mscl.delete_InertialNode - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.InertialNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.InertialNode_totalPackets(self) - - def pollData(self, *args): - return _mscl.InertialNode_pollData(self, *args) - - def getDataRateBase(self, dataClass): - return _mscl.InertialNode_getDataRateBase(self, dataClass) - - def getActiveChannelFields(self, dataClass): - return _mscl.InertialNode_getActiveChannelFields(self, dataClass) - - def setActiveChannelFields(self, dataClass, channels): - return _mscl.InertialNode_setActiveChannelFields(self, dataClass, channels) - - def saveActiveChannelFields(self, dataClass): - return _mscl.InertialNode_saveActiveChannelFields(self, dataClass) - - def setFactoryStreamingChannels(self, option): - return _mscl.InertialNode_setFactoryStreamingChannels(self, option) - - def getInterfaceControl(self, interfaceId): - return _mscl.InertialNode_getInterfaceControl(self, interfaceId) - - def setInterfaceControl(self, *args): - return _mscl.InertialNode_setInterfaceControl(self, *args) - - def getCommunicationMode(self): - return _mscl.InertialNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.InertialNode_setCommunicationMode(self, communicationMode) - - def isDataStreamEnabled(self, dataClass): - return _mscl.InertialNode_isDataStreamEnabled(self, dataClass) - - def enableDataStream(self, dataClass, enable=True, resumeStreaming=True): - return _mscl.InertialNode_enableDataStream(self, dataClass, enable, resumeStreaming) - - def resetFilter(self): - return _mscl.InertialNode_resetFilter(self) - - def runFilter(self): - return _mscl.InertialNode_runFilter(self) - - def getAutoInitialization(self): - return _mscl.InertialNode_getAutoInitialization(self) - - def setAutoInitialization(self, enable): - return _mscl.InertialNode_setAutoInitialization(self, enable) - - def getAltitudeAid(self): - return _mscl.InertialNode_getAltitudeAid(self) - - def setAltitudeAid(self, enable): - return _mscl.InertialNode_setAltitudeAid(self, enable) - - def getPitchRollAid(self): - return _mscl.InertialNode_getPitchRollAid(self) - - def setPitchRollAid(self, enable): - return _mscl.InertialNode_setPitchRollAid(self, enable) - - def enableVerticalGyroConstraint(self, enable): - return _mscl.InertialNode_enableVerticalGyroConstraint(self, enable) - - def verticalGyroConstraintEnabled(self): - return _mscl.InertialNode_verticalGyroConstraintEnabled(self) - - def enableWheeledVehicleConstraint(self, enable): - return _mscl.InertialNode_enableWheeledVehicleConstraint(self, enable) - - def wheeledVehicleConstraintEnabled(self): - return _mscl.InertialNode_wheeledVehicleConstraintEnabled(self) - - def setVelocityZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setVelocityZUPT(self, ZUPTSettings) - - def getVelocityZUPT(self): - return _mscl.InertialNode_getVelocityZUPT(self) - - def setAngularRateZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setAngularRateZUPT(self, ZUPTSettings) - - def getAngularRateZUPT(self): - return _mscl.InertialNode_getAngularRateZUPT(self) - - def cmdedVelZUPT(self): - return _mscl.InertialNode_cmdedVelZUPT(self) - - def cmdedAngRateZUPT(self): - return _mscl.InertialNode_cmdedAngRateZUPT(self) - - def setInitialAttitude(self, attitude): - return _mscl.InertialNode_setInitialAttitude(self, attitude) - - def setInitialHeading(self, heading): - return _mscl.InertialNode_setInitialHeading(self, heading) - - def getInitialFilterConfiguration(self): - return _mscl.InertialNode_getInitialFilterConfiguration(self) - - def setInitialFilterConfiguration(self, filterConfig): - return _mscl.InertialNode_setInitialFilterConfiguration(self, filterConfig) - - def getSensorToVehicleRotation_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleRotation_eulerAngles(self) - - def setSensorToVehicleRotation_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleRotation_eulerAngles(self, angles) - - def getSensorToVehicleRotation_matrix(self): - return _mscl.InertialNode_getSensorToVehicleRotation_matrix(self) - - def setSensorToVehicleRotation_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleRotation_matrix(self, dcm) - - def getSensorToVehicleRotation_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleRotation_quaternion(self) - - def setSensorToVehicleRotation_quaternion(self, rotation): - return _mscl.InertialNode_setSensorToVehicleRotation_quaternion(self, rotation) - - def getSensorToVehicleTransform_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleTransform_eulerAngles(self) - - def setSensorToVehicleTransform_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleTransform_eulerAngles(self, angles) - - def getSensorToVehicleTransform_matrix(self): - return _mscl.InertialNode_getSensorToVehicleTransform_matrix(self) - - def setSensorToVehicleTransform_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleTransform_matrix(self, dcm) - - def getSensorToVehicleTransform_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleTransform_quaternion(self) - - def setSensorToVehicleTransform_quaternion(self, transformation): - return _mscl.InertialNode_setSensorToVehicleTransform_quaternion(self, transformation) - - def getSensorToVehicleOffset(self): - return _mscl.InertialNode_getSensorToVehicleOffset(self) - - def setSensorToVehicleOffset(self, offset): - return _mscl.InertialNode_setSensorToVehicleOffset(self, offset) - - def getAntennaOffset(self): - return _mscl.InertialNode_getAntennaOffset(self) - - def setAntennaOffset(self, offset): - return _mscl.InertialNode_setAntennaOffset(self, offset) - - def getGNSSAssistedFixControl(self): - return _mscl.InertialNode_getGNSSAssistedFixControl(self) - - def setGNSSAssistedFixControl(self, enableAssistedFix): - return _mscl.InertialNode_setGNSSAssistedFixControl(self, enableAssistedFix) - - def getGNSSAssistTimeUpdate(self): - return _mscl.InertialNode_getGNSSAssistTimeUpdate(self) - - def setGNSSAssistTimeUpdate(self, timeUpdate): - return _mscl.InertialNode_setGNSSAssistTimeUpdate(self, timeUpdate) - - def getGPSTimeUpdate(self, timeFrame): - return _mscl.InertialNode_getGPSTimeUpdate(self, timeFrame) - - def setGPSTimeUpdate(self, arg2, timeData): - return _mscl.InertialNode_setGPSTimeUpdate(self, arg2, timeData) - - def setConstellationSettings(self, dataToUse): - return _mscl.InertialNode_setConstellationSettings(self, dataToUse) - - def getConstellationSettings(self): - return _mscl.InertialNode_getConstellationSettings(self) - - def setSBASSettings(self, dataToUse): - return _mscl.InertialNode_setSBASSettings(self, dataToUse) - - def getSBASSettings(self): - return _mscl.InertialNode_getSBASSettings(self) - - def setAccelerometerBias(self, biasVector): - return _mscl.InertialNode_setAccelerometerBias(self, biasVector) - - def getAccelerometerBias(self): - return _mscl.InertialNode_getAccelerometerBias(self) - - def setGyroBias(self, biasVector): - return _mscl.InertialNode_setGyroBias(self, biasVector) - - def getGyroBias(self): - return _mscl.InertialNode_getGyroBias(self) - - def captureGyroBias(self, samplingTime): - return _mscl.InertialNode_captureGyroBias(self, samplingTime) - - def findMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_findMagnetometerCaptureAutoCalibration(self) - - def saveMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_saveMagnetometerCaptureAutoCalibration(self) - - def setMagnetometerSoftIronMatrix(self, matrix): - return _mscl.InertialNode_setMagnetometerSoftIronMatrix(self, matrix) - - def getMagnetometerSoftIronMatrix(self): - return _mscl.InertialNode_getMagnetometerSoftIronMatrix(self) - - def setMagnetometerHardIronOffset(self, offsetVector): - return _mscl.InertialNode_setMagnetometerHardIronOffset(self, offsetVector) - - def getMagnetometerHardIronOffset(self): - return _mscl.InertialNode_getMagnetometerHardIronOffset(self) - - def setConingAndScullingEnable(self, enable): - return _mscl.InertialNode_setConingAndScullingEnable(self, enable) - - def getConingAndScullingEnable(self): - return _mscl.InertialNode_getConingAndScullingEnable(self) - - def setLowPassFilterSettings(self, data): - return _mscl.InertialNode_setLowPassFilterSettings(self, data) - - def getLowPassFilterSettings(self, dataDescriptors): - return _mscl.InertialNode_getLowPassFilterSettings(self, dataDescriptors) - - def setComplementaryFilterSettings(self, data): - return _mscl.InertialNode_setComplementaryFilterSettings(self, data) - - def getComplementaryFilterSettings(self): - return _mscl.InertialNode_getComplementaryFilterSettings(self) - - def getBasicDeviceStatus(self): - return _mscl.InertialNode_getBasicDeviceStatus(self) - - def getDiagnosticDeviceStatus(self): - return _mscl.InertialNode_getDiagnosticDeviceStatus(self) - - def sendRawRTCM_2_3Message(self, theMessage): - return _mscl.InertialNode_sendRawRTCM_2_3Message(self, theMessage) - - def setVehicleDynamicsMode(self, mode): - return _mscl.InertialNode_setVehicleDynamicsMode(self, mode) - - def getVehicleDynamicsMode(self): - return _mscl.InertialNode_getVehicleDynamicsMode(self) - - def setEstimationControlFlags(self, flags): - return _mscl.InertialNode_setEstimationControlFlags(self, flags) - - def getEstimationControlFlags(self): - return _mscl.InertialNode_getEstimationControlFlags(self) - - def setInclinationSource(self, options): - return _mscl.InertialNode_setInclinationSource(self, options) - - def getInclinationSource(self): - return _mscl.InertialNode_getInclinationSource(self) - - def setDeclinationSource(self, options): - return _mscl.InertialNode_setDeclinationSource(self, options) - - def getDeclinationSource(self): - return _mscl.InertialNode_getDeclinationSource(self) - - def setMagneticFieldMagnitudeSource(self, options): - return _mscl.InertialNode_setMagneticFieldMagnitudeSource(self, options) - - def getMagneticFieldMagnitudeSource(self): - return _mscl.InertialNode_getMagneticFieldMagnitudeSource(self) - - def setGNSS_SourceControl(self, gnssSource): - return _mscl.InertialNode_setGNSS_SourceControl(self, gnssSource) - - def getGNSS_SourceControl(self): - return _mscl.InertialNode_getGNSS_SourceControl(self) - - def sendExternalGNSSUpdate(self, gnssUpdateData): - return _mscl.InertialNode_sendExternalGNSSUpdate(self, gnssUpdateData) - - def setHeadingUpdateControl(self, headingUpdateOptions): - return _mscl.InertialNode_setHeadingUpdateControl(self, headingUpdateOptions) - - def tareOrientation(self, axisValue): - return _mscl.InertialNode_tareOrientation(self, axisValue) - - def getHeadingUpdateControl(self): - return _mscl.InertialNode_getHeadingUpdateControl(self) - - def setGravityErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setGravityErrorAdaptiveMeasurement(self, data) - - def getGravityErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getGravityErrorAdaptiveMeasurement(self) - - def setMagnetometerErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagnetometerErrorAdaptiveMeasurement(self, data) - - def getMagnetometerErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagnetometerErrorAdaptiveMeasurement(self) - - def setMagDipAngleErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagDipAngleErrorAdaptiveMeasurement(self, data) - - def getMagDipAngleErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagDipAngleErrorAdaptiveMeasurement(self) - - def setMagNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setMagNoiseStandardDeviation(self, data) - - def getMagNoiseStandardDeviation(self): - return _mscl.InertialNode_getMagNoiseStandardDeviation(self) - - def setGravNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGravNoiseStandardDeviation(self, data) - - def getGravNoiseStandardDeviation(self): - return _mscl.InertialNode_getGravNoiseStandardDeviation(self) - - def setAccelNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setAccelNoiseStandardDeviation(self, data) - - def getAccelNoiseStandardDeviation(self): - return _mscl.InertialNode_getAccelNoiseStandardDeviation(self) - - def setGyroNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGyroNoiseStandardDeviation(self, data) - - def getGyroNoiseStandardDeviation(self): - return _mscl.InertialNode_getGyroNoiseStandardDeviation(self) - - def setPressureAltNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setPressureAltNoiseStandardDeviation(self, data) - - def getPressureAltNoiseStandardDeviation(self): - return _mscl.InertialNode_getPressureAltNoiseStandardDeviation(self) - - def setHardIronOffsetProcessNoise(self, data): - return _mscl.InertialNode_setHardIronOffsetProcessNoise(self, data) - - def getHardIronOffsetProcessNoise(self): - return _mscl.InertialNode_getHardIronOffsetProcessNoise(self) - - def setAccelBiasModelParams(self, data): - return _mscl.InertialNode_setAccelBiasModelParams(self, data) - - def getAccelBiasModelParams(self): - return _mscl.InertialNode_getAccelBiasModelParams(self) - - def setGyroBiasModelParams(self, data): - return _mscl.InertialNode_setGyroBiasModelParams(self, data) - - def getGyroBiasModelParams(self): - return _mscl.InertialNode_getGyroBiasModelParams(self) - - def setSoftIronMatrixProcessNoise(self, data): - return _mscl.InertialNode_setSoftIronMatrixProcessNoise(self, data) - - def getSoftIronMatrixProcessNoise(self): - return _mscl.InertialNode_getSoftIronMatrixProcessNoise(self) - - def setFixedReferencePosition(self, data): - return _mscl.InertialNode_setFixedReferencePosition(self, data) - - def getFixedReferencePosition(self): - return _mscl.InertialNode_getFixedReferencePosition(self) - - def setGPSDynamicsMode(self, data): - return _mscl.InertialNode_setGPSDynamicsMode(self, data) - - def getGPSDynamicsMode(self): - return _mscl.InertialNode_getGPSDynamicsMode(self) - - def setDevicePowerState(self, device, data): - return _mscl.InertialNode_setDevicePowerState(self, device, data) - - def getDevicePowerState(self, device): - return _mscl.InertialNode_getDevicePowerState(self, device) - - def setDeviceStreamFormat(self, device, data): - return _mscl.InertialNode_setDeviceStreamFormat(self, device, data) - - def getDeviceStreamFormat(self, device): - return _mscl.InertialNode_getDeviceStreamFormat(self, device) - - def setSignalConditioningSettings(self, data): - return _mscl.InertialNode_setSignalConditioningSettings(self, data) - - def getSignalConditioningSettings(self): - return _mscl.InertialNode_getSignalConditioningSettings(self) - - def setEnableDisableMeasurements(self, data): - return _mscl.InertialNode_setEnableDisableMeasurements(self, data) - - def getEnableDisableMeasurements(self): - return _mscl.InertialNode_getEnableDisableMeasurements(self) - - def setGravityNoiseMinimum(self, data): - return _mscl.InertialNode_setGravityNoiseMinimum(self, data) - - def getGravityNoiseMinimum(self): - return _mscl.InertialNode_getGravityNoiseMinimum(self) - - def sendExternalHeadingUpdate(self, *args): - return _mscl.InertialNode_sendExternalHeadingUpdate(self, *args) - - def aidingMeasurementEnabled(self, aidingSource): - return _mscl.InertialNode_aidingMeasurementEnabled(self, aidingSource) - - def enableDisableAidingMeasurement(self, aidingSource, enable): - return _mscl.InertialNode_enableDisableAidingMeasurement(self, aidingSource, enable) - - def getAdaptiveFilterOptions(self): - return _mscl.InertialNode_getAdaptiveFilterOptions(self) - - def setAdaptiveFilterOptions(self, options): - return _mscl.InertialNode_setAdaptiveFilterOptions(self, options) - - def getMultiAntennaOffset(self, receiverId): - return _mscl.InertialNode_getMultiAntennaOffset(self, receiverId) - - def setMultiAntennaOffset(self, receiverId, offset): - return _mscl.InertialNode_setMultiAntennaOffset(self, receiverId, offset) - - def getPpsSource(self): - return _mscl.InertialNode_getPpsSource(self) - - def setPpsSource(self, ppsSource): - return _mscl.InertialNode_setPpsSource(self, ppsSource) - - def getOdometerConfig(self): - return _mscl.InertialNode_getOdometerConfig(self) - - def setOdometerConfig(self, config): - return _mscl.InertialNode_setOdometerConfig(self, config) - - def getSensorRange(self, sensorRangeType): - return _mscl.InertialNode_getSensorRange(self, sensorRangeType) - - def setSensorRange(self, *args): - return _mscl.InertialNode_setSensorRange(self, *args) - - def getGpioConfig(self, pin): - return _mscl.InertialNode_getGpioConfig(self, pin) - - def setGpioConfig(self, config): - return _mscl.InertialNode_setGpioConfig(self, config) - - def getGpioState(self, pin): - return _mscl.InertialNode_getGpioState(self, pin) - - def setGpioState(self, pin, state): - return _mscl.InertialNode_setGpioState(self, pin, state) - - def getEventTriggerMode(self, instance): - return _mscl.InertialNode_getEventTriggerMode(self, instance) - - def setEventTriggerMode(self, instance, mode): - return _mscl.InertialNode_setEventTriggerMode(self, instance, mode) - - def getEventTriggerConfig(self, instance): - return _mscl.InertialNode_getEventTriggerConfig(self, instance) - - def setEventTriggerConfig(self, config): - return _mscl.InertialNode_setEventTriggerConfig(self, config) - - def getEventActionConfig(self, instance): - return _mscl.InertialNode_getEventActionConfig(self, instance) - - def setEventActionConfig(self, config, validateSupported=True): - return _mscl.InertialNode_setEventActionConfig(self, config, validateSupported) - - def getAntennaLeverArmCal(self): - return _mscl.InertialNode_getAntennaLeverArmCal(self) - - def setAntennaLeverArmCal(self, config): - return _mscl.InertialNode_setAntennaLeverArmCal(self, config) - - def getRelativePositionReference(self): - return _mscl.InertialNode_getRelativePositionReference(self) - - def setRelativePositionReference(self, ref): - return _mscl.InertialNode_setRelativePositionReference(self, ref) - - def getLeverArmReferenceOffset(self): - return _mscl.InertialNode_getLeverArmReferenceOffset(self) - - def setLeverArmReferenceOffset(self, offset): - return _mscl.InertialNode_setLeverArmReferenceOffset(self, offset) - - def sendExternalSpeedMeasurementUpdate(self, tow, speed, unc): - return _mscl.InertialNode_sendExternalSpeedMeasurementUpdate(self, tow, speed, unc) - - def getSpeedMeasurementOffset(self): - return _mscl.InertialNode_getSpeedMeasurementOffset(self) - - def setSpeedMeasurementOffset(self, offset): - return _mscl.InertialNode_setSpeedMeasurementOffset(self, offset) - - def getGnssSignalConfig(self): - return _mscl.InertialNode_getGnssSignalConfig(self) - - def setGnssSignalConfig(self, config): - return _mscl.InertialNode_setGnssSignalConfig(self, config) - - def getGnssSpartnConfig(self): - return _mscl.InertialNode_getGnssSpartnConfig(self) - - def setGnssSpartnConfig(self, config): - return _mscl.InertialNode_setGnssSpartnConfig(self, config) - - def rtkEnabled(self): - return _mscl.InertialNode_rtkEnabled(self) - - def enableRtk(self, enable): - return _mscl.InertialNode_enableRtk(self, enable) - - def getEventTriggerStatus(self, *args): - return _mscl.InertialNode_getEventTriggerStatus(self, *args) - - def getEventActionStatus(self, *args): - return _mscl.InertialNode_getEventActionStatus(self, *args) - - def getNmeaMessageFormat(self): - return _mscl.InertialNode_getNmeaMessageFormat(self) - - def setNmeaMessageFormat(self, nmeaFormats): - return _mscl.InertialNode_setNmeaMessageFormat(self, nmeaFormats) - - def getAidingMeasurementReferenceFrames(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrames(self, *args) - - def setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds=False): - return _mscl.InertialNode_setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds) - - def getAidingMeasurementReferenceFrame(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrame(self, *args) - - def setAidingMeasurementReferenceFrame(self, id, frame): - return _mscl.InertialNode_setAidingMeasurementReferenceFrame(self, id, frame) - - def setAidingMeasurementResponseMode(self, mode): - return _mscl.InertialNode_setAidingMeasurementResponseMode(self, mode) - - def getAidingMeasurementResponseMode(self): - return _mscl.InertialNode_getAidingMeasurementResponseMode(self) - - def sendAidingMeasurement(self, *args): - return _mscl.InertialNode_sendAidingMeasurement(self, *args) - - def sendAidingMeasurement_readEcho(self, *args): - return _mscl.InertialNode_sendAidingMeasurement_readEcho(self, *args) - -# Register InertialNode in _mscl: -_mscl.InertialNode_swigregister(InertialNode) - -class DisplacementNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.DisplacementNode_swiginit(self, _mscl.new_DisplacementNode(connection)) - __swig_destroy__ = _mscl.delete_DisplacementNode - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.DisplacementNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - @staticmethod - def deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - - def connection(self): - return _mscl.DisplacementNode_connection(self) - - def features(self): - return _mscl.DisplacementNode_features(self) - - def lastCommunicationTime(self): - return _mscl.DisplacementNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.DisplacementNode_lastDeviceState(self) - - def firmwareVersion(self): - return _mscl.DisplacementNode_firmwareVersion(self) - - def model(self): - return _mscl.DisplacementNode_model(self) - - def modelName(self): - return _mscl.DisplacementNode_modelName(self) - - def modelNumber(self): - return _mscl.DisplacementNode_modelNumber(self) - - def serialNumber(self): - return _mscl.DisplacementNode_serialNumber(self) - - def lotNumber(self): - return _mscl.DisplacementNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.DisplacementNode_deviceOptions(self) - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.DisplacementNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.DisplacementNode_totalPackets(self) - - def timeout(self, *args): - return _mscl.DisplacementNode_timeout(self, *args) - - def name(self): - return _mscl.DisplacementNode_name(self) - - def ping(self): - return _mscl.DisplacementNode_ping(self) - - def setToIdle(self): - return _mscl.DisplacementNode_setToIdle(self) - - def cyclePower(self): - return _mscl.DisplacementNode_cyclePower(self) - - def resume(self): - return _mscl.DisplacementNode_resume(self) - - def getDisplacementOutputDataRate(self): - return _mscl.DisplacementNode_getDisplacementOutputDataRate(self) - - def getAnalogToDisplacementCal(self): - return _mscl.DisplacementNode_getAnalogToDisplacementCal(self) - - def setDeviceTime(self, *args): - return _mscl.DisplacementNode_setDeviceTime(self, *args) - -# Register DisplacementNode in _mscl: -_mscl.DisplacementNode_swigregister(DisplacementNode) - -def DisplacementNode_deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - -class RTKNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.RTKNode_swiginit(self, _mscl.new_RTKNode(connection)) - __swig_destroy__ = _mscl.delete_RTKNode - - def getCommunicationMode(self): - return _mscl.RTKNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.RTKNode_setCommunicationMode(self, communicationMode) - - def getDeviceStatusFlags(self): - return _mscl.RTKNode_getDeviceStatusFlags(self) - - def getActivationCode(self): - return _mscl.RTKNode_getActivationCode(self) - - def getStatusBitfieldVersion(self): - return _mscl.RTKNode_getStatusBitfieldVersion(self) - -# Register RTKNode in _mscl: -_mscl.RTKNode_swigregister(RTKNode) - -class ChannelData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelData___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelData___bool__(self) - - def __len__(self): - return _mscl.ChannelData___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelData___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelData___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelData___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelData___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelData___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelData___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelData_pop(self) - - def append(self, x): - return _mscl.ChannelData_append(self, x) - - def empty(self): - return _mscl.ChannelData_empty(self) - - def size(self): - return _mscl.ChannelData_size(self) - - def swap(self, v): - return _mscl.ChannelData_swap(self, v) - - def begin(self): - return _mscl.ChannelData_begin(self) - - def end(self): - return _mscl.ChannelData_end(self) - - def rbegin(self): - return _mscl.ChannelData_rbegin(self) - - def rend(self): - return _mscl.ChannelData_rend(self) - - def clear(self): - return _mscl.ChannelData_clear(self) - - def get_allocator(self): - return _mscl.ChannelData_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelData_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelData_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelData_swiginit(self, _mscl.new_ChannelData(*args)) - - def push_back(self, x): - return _mscl.ChannelData_push_back(self, x) - - def front(self): - return _mscl.ChannelData_front(self) - - def back(self): - return _mscl.ChannelData_back(self) - - def assign(self, n, x): - return _mscl.ChannelData_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelData_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelData_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelData_reserve(self, n) - - def capacity(self): - return _mscl.ChannelData_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelData - -# Register ChannelData in _mscl: -_mscl.ChannelData_swigregister(ChannelData) - -class MipDataPoints(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPoints_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPoints___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPoints___bool__(self) - - def __len__(self): - return _mscl.MipDataPoints___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPoints___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPoints___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPoints___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPoints___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPoints___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPoints___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPoints_pop(self) - - def append(self, x): - return _mscl.MipDataPoints_append(self, x) - - def empty(self): - return _mscl.MipDataPoints_empty(self) - - def size(self): - return _mscl.MipDataPoints_size(self) - - def swap(self, v): - return _mscl.MipDataPoints_swap(self, v) - - def begin(self): - return _mscl.MipDataPoints_begin(self) - - def end(self): - return _mscl.MipDataPoints_end(self) - - def rbegin(self): - return _mscl.MipDataPoints_rbegin(self) - - def rend(self): - return _mscl.MipDataPoints_rend(self) - - def clear(self): - return _mscl.MipDataPoints_clear(self) - - def get_allocator(self): - return _mscl.MipDataPoints_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPoints_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPoints_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPoints_swiginit(self, _mscl.new_MipDataPoints(*args)) - - def push_back(self, x): - return _mscl.MipDataPoints_push_back(self, x) - - def front(self): - return _mscl.MipDataPoints_front(self) - - def back(self): - return _mscl.MipDataPoints_back(self) - - def assign(self, n, x): - return _mscl.MipDataPoints_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPoints_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPoints_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPoints_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPoints_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPoints - -# Register MipDataPoints in _mscl: -_mscl.MipDataPoints_swigregister(MipDataPoints) - -class Bytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bytes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bytes___nonzero__(self) - - def __bool__(self): - return _mscl.Bytes___bool__(self) - - def __len__(self): - return _mscl.Bytes___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bytes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bytes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bytes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bytes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bytes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bytes___setitem__(self, *args) - - def pop(self): - return _mscl.Bytes_pop(self) - - def append(self, x): - return _mscl.Bytes_append(self, x) - - def empty(self): - return _mscl.Bytes_empty(self) - - def size(self): - return _mscl.Bytes_size(self) - - def swap(self, v): - return _mscl.Bytes_swap(self, v) - - def begin(self): - return _mscl.Bytes_begin(self) - - def end(self): - return _mscl.Bytes_end(self) - - def rbegin(self): - return _mscl.Bytes_rbegin(self) - - def rend(self): - return _mscl.Bytes_rend(self) - - def clear(self): - return _mscl.Bytes_clear(self) - - def get_allocator(self): - return _mscl.Bytes_get_allocator(self) - - def pop_back(self): - return _mscl.Bytes_pop_back(self) - - def erase(self, *args): - return _mscl.Bytes_erase(self, *args) - - def __init__(self, *args): - _mscl.Bytes_swiginit(self, _mscl.new_Bytes(*args)) - - def push_back(self, x): - return _mscl.Bytes_push_back(self, x) - - def front(self): - return _mscl.Bytes_front(self) - - def back(self): - return _mscl.Bytes_back(self) - - def assign(self, n, x): - return _mscl.Bytes_assign(self, n, x) - - def resize(self, *args): - return _mscl.Bytes_resize(self, *args) - - def insert(self, *args): - return _mscl.Bytes_insert(self, *args) - - def reserve(self, n): - return _mscl.Bytes_reserve(self, n) - - def capacity(self): - return _mscl.Bytes_capacity(self) - __swig_destroy__ = _mscl.delete_Bytes - -# Register Bytes in _mscl: -_mscl.Bytes_swigregister(Bytes) - -class BytesCollection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.BytesCollection_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.BytesCollection___nonzero__(self) - - def __bool__(self): - return _mscl.BytesCollection___bool__(self) - - def __len__(self): - return _mscl.BytesCollection___len__(self) - - def __getslice__(self, i, j): - return _mscl.BytesCollection___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.BytesCollection___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.BytesCollection___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.BytesCollection___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.BytesCollection___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.BytesCollection___setitem__(self, *args) - - def pop(self): - return _mscl.BytesCollection_pop(self) - - def append(self, x): - return _mscl.BytesCollection_append(self, x) - - def empty(self): - return _mscl.BytesCollection_empty(self) - - def size(self): - return _mscl.BytesCollection_size(self) - - def swap(self, v): - return _mscl.BytesCollection_swap(self, v) - - def begin(self): - return _mscl.BytesCollection_begin(self) - - def end(self): - return _mscl.BytesCollection_end(self) - - def rbegin(self): - return _mscl.BytesCollection_rbegin(self) - - def rend(self): - return _mscl.BytesCollection_rend(self) - - def clear(self): - return _mscl.BytesCollection_clear(self) - - def get_allocator(self): - return _mscl.BytesCollection_get_allocator(self) - - def pop_back(self): - return _mscl.BytesCollection_pop_back(self) - - def erase(self, *args): - return _mscl.BytesCollection_erase(self, *args) - - def __init__(self, *args): - _mscl.BytesCollection_swiginit(self, _mscl.new_BytesCollection(*args)) - - def push_back(self, x): - return _mscl.BytesCollection_push_back(self, x) - - def front(self): - return _mscl.BytesCollection_front(self) - - def back(self): - return _mscl.BytesCollection_back(self) - - def assign(self, n, x): - return _mscl.BytesCollection_assign(self, n, x) - - def resize(self, *args): - return _mscl.BytesCollection_resize(self, *args) - - def insert(self, *args): - return _mscl.BytesCollection_insert(self, *args) - - def reserve(self, n): - return _mscl.BytesCollection_reserve(self, n) - - def capacity(self): - return _mscl.BytesCollection_capacity(self) - __swig_destroy__ = _mscl.delete_BytesCollection - -# Register BytesCollection in _mscl: -_mscl.BytesCollection_swigregister(BytesCollection) - -class DeviceList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceList___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceList___bool__(self) - - def __len__(self): - return _mscl.DeviceList___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceList___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceList___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceList_has_key(self, key) - - def keys(self): - return _mscl.DeviceList_keys(self) - - def values(self): - return _mscl.DeviceList_values(self) - - def items(self): - return _mscl.DeviceList_items(self) - - def __contains__(self, key): - return _mscl.DeviceList___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceList_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceList_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceList___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceList_asdict(self) - - def __init__(self, *args): - _mscl.DeviceList_swiginit(self, _mscl.new_DeviceList(*args)) - - def empty(self): - return _mscl.DeviceList_empty(self) - - def size(self): - return _mscl.DeviceList_size(self) - - def swap(self, v): - return _mscl.DeviceList_swap(self, v) - - def begin(self): - return _mscl.DeviceList_begin(self) - - def end(self): - return _mscl.DeviceList_end(self) - - def rbegin(self): - return _mscl.DeviceList_rbegin(self) - - def rend(self): - return _mscl.DeviceList_rend(self) - - def clear(self): - return _mscl.DeviceList_clear(self) - - def get_allocator(self): - return _mscl.DeviceList_get_allocator(self) - - def count(self, x): - return _mscl.DeviceList_count(self, x) - - def erase(self, *args): - return _mscl.DeviceList_erase(self, *args) - - def find(self, x): - return _mscl.DeviceList_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceList_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceList_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceList - -# Register DeviceList in _mscl: -_mscl.DeviceList_swigregister(DeviceList) - -class NodeDiscoveries(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NodeDiscoveries_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NodeDiscoveries___nonzero__(self) - - def __bool__(self): - return _mscl.NodeDiscoveries___bool__(self) - - def __len__(self): - return _mscl.NodeDiscoveries___len__(self) - - def __getslice__(self, i, j): - return _mscl.NodeDiscoveries___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NodeDiscoveries___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NodeDiscoveries___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NodeDiscoveries___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NodeDiscoveries___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NodeDiscoveries___setitem__(self, *args) - - def pop(self): - return _mscl.NodeDiscoveries_pop(self) - - def append(self, x): - return _mscl.NodeDiscoveries_append(self, x) - - def empty(self): - return _mscl.NodeDiscoveries_empty(self) - - def size(self): - return _mscl.NodeDiscoveries_size(self) - - def swap(self, v): - return _mscl.NodeDiscoveries_swap(self, v) - - def begin(self): - return _mscl.NodeDiscoveries_begin(self) - - def end(self): - return _mscl.NodeDiscoveries_end(self) - - def rbegin(self): - return _mscl.NodeDiscoveries_rbegin(self) - - def rend(self): - return _mscl.NodeDiscoveries_rend(self) - - def clear(self): - return _mscl.NodeDiscoveries_clear(self) - - def get_allocator(self): - return _mscl.NodeDiscoveries_get_allocator(self) - - def pop_back(self): - return _mscl.NodeDiscoveries_pop_back(self) - - def erase(self, *args): - return _mscl.NodeDiscoveries_erase(self, *args) - - def __init__(self, *args): - _mscl.NodeDiscoveries_swiginit(self, _mscl.new_NodeDiscoveries(*args)) - - def push_back(self, x): - return _mscl.NodeDiscoveries_push_back(self, x) - - def front(self): - return _mscl.NodeDiscoveries_front(self) - - def back(self): - return _mscl.NodeDiscoveries_back(self) - - def assign(self, n, x): - return _mscl.NodeDiscoveries_assign(self, n, x) - - def resize(self, *args): - return _mscl.NodeDiscoveries_resize(self, *args) - - def insert(self, *args): - return _mscl.NodeDiscoveries_insert(self, *args) - - def reserve(self, n): - return _mscl.NodeDiscoveries_reserve(self, n) - - def capacity(self): - return _mscl.NodeDiscoveries_capacity(self) - __swig_destroy__ = _mscl.delete_NodeDiscoveries - -# Register NodeDiscoveries in _mscl: -_mscl.NodeDiscoveries_swigregister(NodeDiscoveries) - -class DataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.DataSweeps___bool__(self) - - def __len__(self): - return _mscl.DataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.DataSweeps_pop(self) - - def append(self, x): - return _mscl.DataSweeps_append(self, x) - - def empty(self): - return _mscl.DataSweeps_empty(self) - - def size(self): - return _mscl.DataSweeps_size(self) - - def swap(self, v): - return _mscl.DataSweeps_swap(self, v) - - def begin(self): - return _mscl.DataSweeps_begin(self) - - def end(self): - return _mscl.DataSweeps_end(self) - - def rbegin(self): - return _mscl.DataSweeps_rbegin(self) - - def rend(self): - return _mscl.DataSweeps_rend(self) - - def clear(self): - return _mscl.DataSweeps_clear(self) - - def get_allocator(self): - return _mscl.DataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.DataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.DataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.DataSweeps_swiginit(self, _mscl.new_DataSweeps(*args)) - - def push_back(self, x): - return _mscl.DataSweeps_push_back(self, x) - - def front(self): - return _mscl.DataSweeps_front(self) - - def back(self): - return _mscl.DataSweeps_back(self) - - def assign(self, n, x): - return _mscl.DataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.DataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.DataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.DataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_DataSweeps - -# Register DataSweeps in _mscl: -_mscl.DataSweeps_swigregister(DataSweeps) - -class LoggedDataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LoggedDataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LoggedDataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.LoggedDataSweeps___bool__(self) - - def __len__(self): - return _mscl.LoggedDataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.LoggedDataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LoggedDataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LoggedDataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LoggedDataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LoggedDataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LoggedDataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.LoggedDataSweeps_pop(self) - - def append(self, x): - return _mscl.LoggedDataSweeps_append(self, x) - - def empty(self): - return _mscl.LoggedDataSweeps_empty(self) - - def size(self): - return _mscl.LoggedDataSweeps_size(self) - - def swap(self, v): - return _mscl.LoggedDataSweeps_swap(self, v) - - def begin(self): - return _mscl.LoggedDataSweeps_begin(self) - - def end(self): - return _mscl.LoggedDataSweeps_end(self) - - def rbegin(self): - return _mscl.LoggedDataSweeps_rbegin(self) - - def rend(self): - return _mscl.LoggedDataSweeps_rend(self) - - def clear(self): - return _mscl.LoggedDataSweeps_clear(self) - - def get_allocator(self): - return _mscl.LoggedDataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.LoggedDataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.LoggedDataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.LoggedDataSweeps_swiginit(self, _mscl.new_LoggedDataSweeps(*args)) - - def push_back(self, x): - return _mscl.LoggedDataSweeps_push_back(self, x) - - def front(self): - return _mscl.LoggedDataSweeps_front(self) - - def back(self): - return _mscl.LoggedDataSweeps_back(self) - - def assign(self, n, x): - return _mscl.LoggedDataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.LoggedDataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.LoggedDataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.LoggedDataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.LoggedDataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweeps - -# Register LoggedDataSweeps in _mscl: -_mscl.LoggedDataSweeps_swigregister(LoggedDataSweeps) - -class MipDataPackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPackets___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPackets___bool__(self) - - def __len__(self): - return _mscl.MipDataPackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPackets___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPackets_pop(self) - - def append(self, x): - return _mscl.MipDataPackets_append(self, x) - - def empty(self): - return _mscl.MipDataPackets_empty(self) - - def size(self): - return _mscl.MipDataPackets_size(self) - - def swap(self, v): - return _mscl.MipDataPackets_swap(self, v) - - def begin(self): - return _mscl.MipDataPackets_begin(self) - - def end(self): - return _mscl.MipDataPackets_end(self) - - def rbegin(self): - return _mscl.MipDataPackets_rbegin(self) - - def rend(self): - return _mscl.MipDataPackets_rend(self) - - def clear(self): - return _mscl.MipDataPackets_clear(self) - - def get_allocator(self): - return _mscl.MipDataPackets_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPackets_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPackets_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPackets_swiginit(self, _mscl.new_MipDataPackets(*args)) - - def push_back(self, x): - return _mscl.MipDataPackets_push_back(self, x) - - def front(self): - return _mscl.MipDataPackets_front(self) - - def back(self): - return _mscl.MipDataPackets_back(self) - - def assign(self, n, x): - return _mscl.MipDataPackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPackets_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPackets_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPackets_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPackets_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPackets - -# Register MipDataPackets in _mscl: -_mscl.MipDataPackets_swigregister(MipDataPackets) - -class RawBytePackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RawBytePackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RawBytePackets___nonzero__(self) - - def __bool__(self): - return _mscl.RawBytePackets___bool__(self) - - def __len__(self): - return _mscl.RawBytePackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.RawBytePackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.RawBytePackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.RawBytePackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.RawBytePackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.RawBytePackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.RawBytePackets___setitem__(self, *args) - - def pop(self): - return _mscl.RawBytePackets_pop(self) - - def append(self, x): - return _mscl.RawBytePackets_append(self, x) - - def empty(self): - return _mscl.RawBytePackets_empty(self) - - def size(self): - return _mscl.RawBytePackets_size(self) - - def swap(self, v): - return _mscl.RawBytePackets_swap(self, v) - - def begin(self): - return _mscl.RawBytePackets_begin(self) - - def end(self): - return _mscl.RawBytePackets_end(self) - - def rbegin(self): - return _mscl.RawBytePackets_rbegin(self) - - def rend(self): - return _mscl.RawBytePackets_rend(self) - - def clear(self): - return _mscl.RawBytePackets_clear(self) - - def get_allocator(self): - return _mscl.RawBytePackets_get_allocator(self) - - def pop_back(self): - return _mscl.RawBytePackets_pop_back(self) - - def erase(self, *args): - return _mscl.RawBytePackets_erase(self, *args) - - def __init__(self, *args): - _mscl.RawBytePackets_swiginit(self, _mscl.new_RawBytePackets(*args)) - - def push_back(self, x): - return _mscl.RawBytePackets_push_back(self, x) - - def front(self): - return _mscl.RawBytePackets_front(self) - - def back(self): - return _mscl.RawBytePackets_back(self) - - def assign(self, n, x): - return _mscl.RawBytePackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.RawBytePackets_resize(self, *args) - - def insert(self, *args): - return _mscl.RawBytePackets_insert(self, *args) - - def reserve(self, n): - return _mscl.RawBytePackets_reserve(self, n) - - def capacity(self): - return _mscl.RawBytePackets_capacity(self) - __swig_destroy__ = _mscl.delete_RawBytePackets - -# Register RawBytePackets in _mscl: -_mscl.RawBytePackets_swigregister(RawBytePackets) - -class MipChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannels___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannels___bool__(self) - - def __len__(self): - return _mscl.MipChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannels___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannels_pop(self) - - def append(self, x): - return _mscl.MipChannels_append(self, x) - - def empty(self): - return _mscl.MipChannels_empty(self) - - def size(self): - return _mscl.MipChannels_size(self) - - def swap(self, v): - return _mscl.MipChannels_swap(self, v) - - def begin(self): - return _mscl.MipChannels_begin(self) - - def end(self): - return _mscl.MipChannels_end(self) - - def rbegin(self): - return _mscl.MipChannels_rbegin(self) - - def rend(self): - return _mscl.MipChannels_rend(self) - - def clear(self): - return _mscl.MipChannels_clear(self) - - def get_allocator(self): - return _mscl.MipChannels_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannels_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannels_swiginit(self, _mscl.new_MipChannels(*args)) - - def push_back(self, x): - return _mscl.MipChannels_push_back(self, x) - - def front(self): - return _mscl.MipChannels_front(self) - - def back(self): - return _mscl.MipChannels_back(self) - - def assign(self, n, x): - return _mscl.MipChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannels_reserve(self, n) - - def capacity(self): - return _mscl.MipChannels_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannels - -# Register MipChannels in _mscl: -_mscl.MipChannels_swigregister(MipChannels) - -class DataCollectionMethods(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataCollectionMethods_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataCollectionMethods___nonzero__(self) - - def __bool__(self): - return _mscl.DataCollectionMethods___bool__(self) - - def __len__(self): - return _mscl.DataCollectionMethods___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataCollectionMethods___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataCollectionMethods___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataCollectionMethods___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataCollectionMethods___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataCollectionMethods___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataCollectionMethods___setitem__(self, *args) - - def pop(self): - return _mscl.DataCollectionMethods_pop(self) - - def append(self, x): - return _mscl.DataCollectionMethods_append(self, x) - - def empty(self): - return _mscl.DataCollectionMethods_empty(self) - - def size(self): - return _mscl.DataCollectionMethods_size(self) - - def swap(self, v): - return _mscl.DataCollectionMethods_swap(self, v) - - def begin(self): - return _mscl.DataCollectionMethods_begin(self) - - def end(self): - return _mscl.DataCollectionMethods_end(self) - - def rbegin(self): - return _mscl.DataCollectionMethods_rbegin(self) - - def rend(self): - return _mscl.DataCollectionMethods_rend(self) - - def clear(self): - return _mscl.DataCollectionMethods_clear(self) - - def get_allocator(self): - return _mscl.DataCollectionMethods_get_allocator(self) - - def pop_back(self): - return _mscl.DataCollectionMethods_pop_back(self) - - def erase(self, *args): - return _mscl.DataCollectionMethods_erase(self, *args) - - def __init__(self, *args): - _mscl.DataCollectionMethods_swiginit(self, _mscl.new_DataCollectionMethods(*args)) - - def push_back(self, x): - return _mscl.DataCollectionMethods_push_back(self, x) - - def front(self): - return _mscl.DataCollectionMethods_front(self) - - def back(self): - return _mscl.DataCollectionMethods_back(self) - - def assign(self, n, x): - return _mscl.DataCollectionMethods_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataCollectionMethods_resize(self, *args) - - def insert(self, *args): - return _mscl.DataCollectionMethods_insert(self, *args) - - def reserve(self, n): - return _mscl.DataCollectionMethods_reserve(self, n) - - def capacity(self): - return _mscl.DataCollectionMethods_capacity(self) - __swig_destroy__ = _mscl.delete_DataCollectionMethods - -# Register DataCollectionMethods in _mscl: -_mscl.DataCollectionMethods_swigregister(DataCollectionMethods) - -class DataFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataFormats___nonzero__(self) - - def __bool__(self): - return _mscl.DataFormats___bool__(self) - - def __len__(self): - return _mscl.DataFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataFormats___setitem__(self, *args) - - def pop(self): - return _mscl.DataFormats_pop(self) - - def append(self, x): - return _mscl.DataFormats_append(self, x) - - def empty(self): - return _mscl.DataFormats_empty(self) - - def size(self): - return _mscl.DataFormats_size(self) - - def swap(self, v): - return _mscl.DataFormats_swap(self, v) - - def begin(self): - return _mscl.DataFormats_begin(self) - - def end(self): - return _mscl.DataFormats_end(self) - - def rbegin(self): - return _mscl.DataFormats_rbegin(self) - - def rend(self): - return _mscl.DataFormats_rend(self) - - def clear(self): - return _mscl.DataFormats_clear(self) - - def get_allocator(self): - return _mscl.DataFormats_get_allocator(self) - - def pop_back(self): - return _mscl.DataFormats_pop_back(self) - - def erase(self, *args): - return _mscl.DataFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.DataFormats_swiginit(self, _mscl.new_DataFormats(*args)) - - def push_back(self, x): - return _mscl.DataFormats_push_back(self, x) - - def front(self): - return _mscl.DataFormats_front(self) - - def back(self): - return _mscl.DataFormats_back(self) - - def assign(self, n, x): - return _mscl.DataFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.DataFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.DataFormats_reserve(self, n) - - def capacity(self): - return _mscl.DataFormats_capacity(self) - __swig_destroy__ = _mscl.delete_DataFormats - -# Register DataFormats in _mscl: -_mscl.DataFormats_swigregister(DataFormats) - -class WirelessSampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessSampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessSampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessSampleRates___bool__(self) - - def __len__(self): - return _mscl.WirelessSampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessSampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessSampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessSampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessSampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessSampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessSampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessSampleRates_pop(self) - - def append(self, x): - return _mscl.WirelessSampleRates_append(self, x) - - def empty(self): - return _mscl.WirelessSampleRates_empty(self) - - def size(self): - return _mscl.WirelessSampleRates_size(self) - - def swap(self, v): - return _mscl.WirelessSampleRates_swap(self, v) - - def begin(self): - return _mscl.WirelessSampleRates_begin(self) - - def end(self): - return _mscl.WirelessSampleRates_end(self) - - def rbegin(self): - return _mscl.WirelessSampleRates_rbegin(self) - - def rend(self): - return _mscl.WirelessSampleRates_rend(self) - - def clear(self): - return _mscl.WirelessSampleRates_clear(self) - - def get_allocator(self): - return _mscl.WirelessSampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessSampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessSampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessSampleRates_swiginit(self, _mscl.new_WirelessSampleRates(*args)) - - def push_back(self, x): - return _mscl.WirelessSampleRates_push_back(self, x) - - def front(self): - return _mscl.WirelessSampleRates_front(self) - - def back(self): - return _mscl.WirelessSampleRates_back(self) - - def assign(self, n, x): - return _mscl.WirelessSampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessSampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessSampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessSampleRates_reserve(self, n) - - def capacity(self): - return _mscl.WirelessSampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessSampleRates - -# Register WirelessSampleRates in _mscl: -_mscl.WirelessSampleRates_swigregister(WirelessSampleRates) - -class SamplingModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SamplingModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SamplingModes___nonzero__(self) - - def __bool__(self): - return _mscl.SamplingModes___bool__(self) - - def __len__(self): - return _mscl.SamplingModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SamplingModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SamplingModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SamplingModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SamplingModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SamplingModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SamplingModes___setitem__(self, *args) - - def pop(self): - return _mscl.SamplingModes_pop(self) - - def append(self, x): - return _mscl.SamplingModes_append(self, x) - - def empty(self): - return _mscl.SamplingModes_empty(self) - - def size(self): - return _mscl.SamplingModes_size(self) - - def swap(self, v): - return _mscl.SamplingModes_swap(self, v) - - def begin(self): - return _mscl.SamplingModes_begin(self) - - def end(self): - return _mscl.SamplingModes_end(self) - - def rbegin(self): - return _mscl.SamplingModes_rbegin(self) - - def rend(self): - return _mscl.SamplingModes_rend(self) - - def clear(self): - return _mscl.SamplingModes_clear(self) - - def get_allocator(self): - return _mscl.SamplingModes_get_allocator(self) - - def pop_back(self): - return _mscl.SamplingModes_pop_back(self) - - def erase(self, *args): - return _mscl.SamplingModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SamplingModes_swiginit(self, _mscl.new_SamplingModes(*args)) - - def push_back(self, x): - return _mscl.SamplingModes_push_back(self, x) - - def front(self): - return _mscl.SamplingModes_front(self) - - def back(self): - return _mscl.SamplingModes_back(self) - - def assign(self, n, x): - return _mscl.SamplingModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SamplingModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SamplingModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SamplingModes_reserve(self, n) - - def capacity(self): - return _mscl.SamplingModes_capacity(self) - __swig_destroy__ = _mscl.delete_SamplingModes - -# Register SamplingModes in _mscl: -_mscl.SamplingModes_swigregister(SamplingModes) - -class DefaultModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DefaultModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DefaultModes___nonzero__(self) - - def __bool__(self): - return _mscl.DefaultModes___bool__(self) - - def __len__(self): - return _mscl.DefaultModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DefaultModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DefaultModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DefaultModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DefaultModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DefaultModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DefaultModes___setitem__(self, *args) - - def pop(self): - return _mscl.DefaultModes_pop(self) - - def append(self, x): - return _mscl.DefaultModes_append(self, x) - - def empty(self): - return _mscl.DefaultModes_empty(self) - - def size(self): - return _mscl.DefaultModes_size(self) - - def swap(self, v): - return _mscl.DefaultModes_swap(self, v) - - def begin(self): - return _mscl.DefaultModes_begin(self) - - def end(self): - return _mscl.DefaultModes_end(self) - - def rbegin(self): - return _mscl.DefaultModes_rbegin(self) - - def rend(self): - return _mscl.DefaultModes_rend(self) - - def clear(self): - return _mscl.DefaultModes_clear(self) - - def get_allocator(self): - return _mscl.DefaultModes_get_allocator(self) - - def pop_back(self): - return _mscl.DefaultModes_pop_back(self) - - def erase(self, *args): - return _mscl.DefaultModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DefaultModes_swiginit(self, _mscl.new_DefaultModes(*args)) - - def push_back(self, x): - return _mscl.DefaultModes_push_back(self, x) - - def front(self): - return _mscl.DefaultModes_front(self) - - def back(self): - return _mscl.DefaultModes_back(self) - - def assign(self, n, x): - return _mscl.DefaultModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DefaultModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DefaultModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DefaultModes_reserve(self, n) - - def capacity(self): - return _mscl.DefaultModes_capacity(self) - __swig_destroy__ = _mscl.delete_DefaultModes - -# Register DefaultModes in _mscl: -_mscl.DefaultModes_swigregister(DefaultModes) - -class TransmitPowers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransmitPowers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransmitPowers___nonzero__(self) - - def __bool__(self): - return _mscl.TransmitPowers___bool__(self) - - def __len__(self): - return _mscl.TransmitPowers___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransmitPowers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransmitPowers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransmitPowers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransmitPowers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransmitPowers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransmitPowers___setitem__(self, *args) - - def pop(self): - return _mscl.TransmitPowers_pop(self) - - def append(self, x): - return _mscl.TransmitPowers_append(self, x) - - def empty(self): - return _mscl.TransmitPowers_empty(self) - - def size(self): - return _mscl.TransmitPowers_size(self) - - def swap(self, v): - return _mscl.TransmitPowers_swap(self, v) - - def begin(self): - return _mscl.TransmitPowers_begin(self) - - def end(self): - return _mscl.TransmitPowers_end(self) - - def rbegin(self): - return _mscl.TransmitPowers_rbegin(self) - - def rend(self): - return _mscl.TransmitPowers_rend(self) - - def clear(self): - return _mscl.TransmitPowers_clear(self) - - def get_allocator(self): - return _mscl.TransmitPowers_get_allocator(self) - - def pop_back(self): - return _mscl.TransmitPowers_pop_back(self) - - def erase(self, *args): - return _mscl.TransmitPowers_erase(self, *args) - - def __init__(self, *args): - _mscl.TransmitPowers_swiginit(self, _mscl.new_TransmitPowers(*args)) - - def push_back(self, x): - return _mscl.TransmitPowers_push_back(self, x) - - def front(self): - return _mscl.TransmitPowers_front(self) - - def back(self): - return _mscl.TransmitPowers_back(self) - - def assign(self, n, x): - return _mscl.TransmitPowers_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransmitPowers_resize(self, *args) - - def insert(self, *args): - return _mscl.TransmitPowers_insert(self, *args) - - def reserve(self, n): - return _mscl.TransmitPowers_reserve(self, n) - - def capacity(self): - return _mscl.TransmitPowers_capacity(self) - __swig_destroy__ = _mscl.delete_TransmitPowers - -# Register TransmitPowers in _mscl: -_mscl.TransmitPowers_swigregister(TransmitPowers) - -class ChannelGroupSettings(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroupSettings_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroupSettings___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroupSettings___bool__(self) - - def __len__(self): - return _mscl.ChannelGroupSettings___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroupSettings___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroupSettings___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroupSettings___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroupSettings___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroupSettings___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroupSettings___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroupSettings_pop(self) - - def append(self, x): - return _mscl.ChannelGroupSettings_append(self, x) - - def empty(self): - return _mscl.ChannelGroupSettings_empty(self) - - def size(self): - return _mscl.ChannelGroupSettings_size(self) - - def swap(self, v): - return _mscl.ChannelGroupSettings_swap(self, v) - - def begin(self): - return _mscl.ChannelGroupSettings_begin(self) - - def end(self): - return _mscl.ChannelGroupSettings_end(self) - - def rbegin(self): - return _mscl.ChannelGroupSettings_rbegin(self) - - def rend(self): - return _mscl.ChannelGroupSettings_rend(self) - - def clear(self): - return _mscl.ChannelGroupSettings_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroupSettings_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroupSettings_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroupSettings_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroupSettings_swiginit(self, _mscl.new_ChannelGroupSettings(*args)) - - def push_back(self, x): - return _mscl.ChannelGroupSettings_push_back(self, x) - - def front(self): - return _mscl.ChannelGroupSettings_front(self) - - def back(self): - return _mscl.ChannelGroupSettings_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroupSettings_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroupSettings_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroupSettings_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroupSettings_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroupSettings_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroupSettings - -# Register ChannelGroupSettings in _mscl: -_mscl.ChannelGroupSettings_swigregister(ChannelGroupSettings) - -class FatigueModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.FatigueModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.FatigueModes___nonzero__(self) - - def __bool__(self): - return _mscl.FatigueModes___bool__(self) - - def __len__(self): - return _mscl.FatigueModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.FatigueModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.FatigueModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.FatigueModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.FatigueModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.FatigueModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.FatigueModes___setitem__(self, *args) - - def pop(self): - return _mscl.FatigueModes_pop(self) - - def append(self, x): - return _mscl.FatigueModes_append(self, x) - - def empty(self): - return _mscl.FatigueModes_empty(self) - - def size(self): - return _mscl.FatigueModes_size(self) - - def swap(self, v): - return _mscl.FatigueModes_swap(self, v) - - def begin(self): - return _mscl.FatigueModes_begin(self) - - def end(self): - return _mscl.FatigueModes_end(self) - - def rbegin(self): - return _mscl.FatigueModes_rbegin(self) - - def rend(self): - return _mscl.FatigueModes_rend(self) - - def clear(self): - return _mscl.FatigueModes_clear(self) - - def get_allocator(self): - return _mscl.FatigueModes_get_allocator(self) - - def pop_back(self): - return _mscl.FatigueModes_pop_back(self) - - def erase(self, *args): - return _mscl.FatigueModes_erase(self, *args) - - def __init__(self, *args): - _mscl.FatigueModes_swiginit(self, _mscl.new_FatigueModes(*args)) - - def push_back(self, x): - return _mscl.FatigueModes_push_back(self, x) - - def front(self): - return _mscl.FatigueModes_front(self) - - def back(self): - return _mscl.FatigueModes_back(self) - - def assign(self, n, x): - return _mscl.FatigueModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.FatigueModes_resize(self, *args) - - def insert(self, *args): - return _mscl.FatigueModes_insert(self, *args) - - def reserve(self, n): - return _mscl.FatigueModes_reserve(self, n) - - def capacity(self): - return _mscl.FatigueModes_capacity(self) - __swig_destroy__ = _mscl.delete_FatigueModes - -# Register FatigueModes in _mscl: -_mscl.FatigueModes_swigregister(FatigueModes) - -class Filters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Filters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Filters___nonzero__(self) - - def __bool__(self): - return _mscl.Filters___bool__(self) - - def __len__(self): - return _mscl.Filters___len__(self) - - def __getslice__(self, i, j): - return _mscl.Filters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Filters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Filters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Filters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Filters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Filters___setitem__(self, *args) - - def pop(self): - return _mscl.Filters_pop(self) - - def append(self, x): - return _mscl.Filters_append(self, x) - - def empty(self): - return _mscl.Filters_empty(self) - - def size(self): - return _mscl.Filters_size(self) - - def swap(self, v): - return _mscl.Filters_swap(self, v) - - def begin(self): - return _mscl.Filters_begin(self) - - def end(self): - return _mscl.Filters_end(self) - - def rbegin(self): - return _mscl.Filters_rbegin(self) - - def rend(self): - return _mscl.Filters_rend(self) - - def clear(self): - return _mscl.Filters_clear(self) - - def get_allocator(self): - return _mscl.Filters_get_allocator(self) - - def pop_back(self): - return _mscl.Filters_pop_back(self) - - def erase(self, *args): - return _mscl.Filters_erase(self, *args) - - def __init__(self, *args): - _mscl.Filters_swiginit(self, _mscl.new_Filters(*args)) - - def push_back(self, x): - return _mscl.Filters_push_back(self, x) - - def front(self): - return _mscl.Filters_front(self) - - def back(self): - return _mscl.Filters_back(self) - - def assign(self, n, x): - return _mscl.Filters_assign(self, n, x) - - def resize(self, *args): - return _mscl.Filters_resize(self, *args) - - def insert(self, *args): - return _mscl.Filters_insert(self, *args) - - def reserve(self, n): - return _mscl.Filters_reserve(self, n) - - def capacity(self): - return _mscl.Filters_capacity(self) - __swig_destroy__ = _mscl.delete_Filters - -# Register Filters in _mscl: -_mscl.Filters_swigregister(Filters) - -class HighPassFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HighPassFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HighPassFilters___nonzero__(self) - - def __bool__(self): - return _mscl.HighPassFilters___bool__(self) - - def __len__(self): - return _mscl.HighPassFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.HighPassFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HighPassFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HighPassFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HighPassFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HighPassFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HighPassFilters___setitem__(self, *args) - - def pop(self): - return _mscl.HighPassFilters_pop(self) - - def append(self, x): - return _mscl.HighPassFilters_append(self, x) - - def empty(self): - return _mscl.HighPassFilters_empty(self) - - def size(self): - return _mscl.HighPassFilters_size(self) - - def swap(self, v): - return _mscl.HighPassFilters_swap(self, v) - - def begin(self): - return _mscl.HighPassFilters_begin(self) - - def end(self): - return _mscl.HighPassFilters_end(self) - - def rbegin(self): - return _mscl.HighPassFilters_rbegin(self) - - def rend(self): - return _mscl.HighPassFilters_rend(self) - - def clear(self): - return _mscl.HighPassFilters_clear(self) - - def get_allocator(self): - return _mscl.HighPassFilters_get_allocator(self) - - def pop_back(self): - return _mscl.HighPassFilters_pop_back(self) - - def erase(self, *args): - return _mscl.HighPassFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.HighPassFilters_swiginit(self, _mscl.new_HighPassFilters(*args)) - - def push_back(self, x): - return _mscl.HighPassFilters_push_back(self, x) - - def front(self): - return _mscl.HighPassFilters_front(self) - - def back(self): - return _mscl.HighPassFilters_back(self) - - def assign(self, n, x): - return _mscl.HighPassFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.HighPassFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.HighPassFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.HighPassFilters_reserve(self, n) - - def capacity(self): - return _mscl.HighPassFilters_capacity(self) - __swig_destroy__ = _mscl.delete_HighPassFilters - -# Register HighPassFilters in _mscl: -_mscl.HighPassFilters_swigregister(HighPassFilters) - -class StorageLimitModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StorageLimitModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StorageLimitModes___nonzero__(self) - - def __bool__(self): - return _mscl.StorageLimitModes___bool__(self) - - def __len__(self): - return _mscl.StorageLimitModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.StorageLimitModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StorageLimitModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StorageLimitModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StorageLimitModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StorageLimitModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StorageLimitModes___setitem__(self, *args) - - def pop(self): - return _mscl.StorageLimitModes_pop(self) - - def append(self, x): - return _mscl.StorageLimitModes_append(self, x) - - def empty(self): - return _mscl.StorageLimitModes_empty(self) - - def size(self): - return _mscl.StorageLimitModes_size(self) - - def swap(self, v): - return _mscl.StorageLimitModes_swap(self, v) - - def begin(self): - return _mscl.StorageLimitModes_begin(self) - - def end(self): - return _mscl.StorageLimitModes_end(self) - - def rbegin(self): - return _mscl.StorageLimitModes_rbegin(self) - - def rend(self): - return _mscl.StorageLimitModes_rend(self) - - def clear(self): - return _mscl.StorageLimitModes_clear(self) - - def get_allocator(self): - return _mscl.StorageLimitModes_get_allocator(self) - - def pop_back(self): - return _mscl.StorageLimitModes_pop_back(self) - - def erase(self, *args): - return _mscl.StorageLimitModes_erase(self, *args) - - def __init__(self, *args): - _mscl.StorageLimitModes_swiginit(self, _mscl.new_StorageLimitModes(*args)) - - def push_back(self, x): - return _mscl.StorageLimitModes_push_back(self, x) - - def front(self): - return _mscl.StorageLimitModes_front(self) - - def back(self): - return _mscl.StorageLimitModes_back(self) - - def assign(self, n, x): - return _mscl.StorageLimitModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.StorageLimitModes_resize(self, *args) - - def insert(self, *args): - return _mscl.StorageLimitModes_insert(self, *args) - - def reserve(self, n): - return _mscl.StorageLimitModes_reserve(self, n) - - def capacity(self): - return _mscl.StorageLimitModes_capacity(self) - __swig_destroy__ = _mscl.delete_StorageLimitModes - -# Register StorageLimitModes in _mscl: -_mscl.StorageLimitModes_swigregister(StorageLimitModes) - -class InputRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.InputRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.InputRanges___nonzero__(self) - - def __bool__(self): - return _mscl.InputRanges___bool__(self) - - def __len__(self): - return _mscl.InputRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.InputRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.InputRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.InputRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.InputRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.InputRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.InputRanges___setitem__(self, *args) - - def pop(self): - return _mscl.InputRanges_pop(self) - - def append(self, x): - return _mscl.InputRanges_append(self, x) - - def empty(self): - return _mscl.InputRanges_empty(self) - - def size(self): - return _mscl.InputRanges_size(self) - - def swap(self, v): - return _mscl.InputRanges_swap(self, v) - - def begin(self): - return _mscl.InputRanges_begin(self) - - def end(self): - return _mscl.InputRanges_end(self) - - def rbegin(self): - return _mscl.InputRanges_rbegin(self) - - def rend(self): - return _mscl.InputRanges_rend(self) - - def clear(self): - return _mscl.InputRanges_clear(self) - - def get_allocator(self): - return _mscl.InputRanges_get_allocator(self) - - def pop_back(self): - return _mscl.InputRanges_pop_back(self) - - def erase(self, *args): - return _mscl.InputRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.InputRanges_swiginit(self, _mscl.new_InputRanges(*args)) - - def push_back(self, x): - return _mscl.InputRanges_push_back(self, x) - - def front(self): - return _mscl.InputRanges_front(self) - - def back(self): - return _mscl.InputRanges_back(self) - - def assign(self, n, x): - return _mscl.InputRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.InputRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.InputRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.InputRanges_reserve(self, n) - - def capacity(self): - return _mscl.InputRanges_capacity(self) - __swig_destroy__ = _mscl.delete_InputRanges - -# Register InputRanges in _mscl: -_mscl.InputRanges_swigregister(InputRanges) - -class DataModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataModes___nonzero__(self) - - def __bool__(self): - return _mscl.DataModes___bool__(self) - - def __len__(self): - return _mscl.DataModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataModes___setitem__(self, *args) - - def pop(self): - return _mscl.DataModes_pop(self) - - def append(self, x): - return _mscl.DataModes_append(self, x) - - def empty(self): - return _mscl.DataModes_empty(self) - - def size(self): - return _mscl.DataModes_size(self) - - def swap(self, v): - return _mscl.DataModes_swap(self, v) - - def begin(self): - return _mscl.DataModes_begin(self) - - def end(self): - return _mscl.DataModes_end(self) - - def rbegin(self): - return _mscl.DataModes_rbegin(self) - - def rend(self): - return _mscl.DataModes_rend(self) - - def clear(self): - return _mscl.DataModes_clear(self) - - def get_allocator(self): - return _mscl.DataModes_get_allocator(self) - - def pop_back(self): - return _mscl.DataModes_pop_back(self) - - def erase(self, *args): - return _mscl.DataModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DataModes_swiginit(self, _mscl.new_DataModes(*args)) - - def push_back(self, x): - return _mscl.DataModes_push_back(self, x) - - def front(self): - return _mscl.DataModes_front(self) - - def back(self): - return _mscl.DataModes_back(self) - - def assign(self, n, x): - return _mscl.DataModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DataModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DataModes_reserve(self, n) - - def capacity(self): - return _mscl.DataModes_capacity(self) - __swig_destroy__ = _mscl.delete_DataModes - -# Register DataModes in _mscl: -_mscl.DataModes_swigregister(DataModes) - -class CommProtocols(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommProtocols_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommProtocols___nonzero__(self) - - def __bool__(self): - return _mscl.CommProtocols___bool__(self) - - def __len__(self): - return _mscl.CommProtocols___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommProtocols___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommProtocols___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommProtocols___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommProtocols___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommProtocols___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommProtocols___setitem__(self, *args) - - def pop(self): - return _mscl.CommProtocols_pop(self) - - def append(self, x): - return _mscl.CommProtocols_append(self, x) - - def empty(self): - return _mscl.CommProtocols_empty(self) - - def size(self): - return _mscl.CommProtocols_size(self) - - def swap(self, v): - return _mscl.CommProtocols_swap(self, v) - - def begin(self): - return _mscl.CommProtocols_begin(self) - - def end(self): - return _mscl.CommProtocols_end(self) - - def rbegin(self): - return _mscl.CommProtocols_rbegin(self) - - def rend(self): - return _mscl.CommProtocols_rend(self) - - def clear(self): - return _mscl.CommProtocols_clear(self) - - def get_allocator(self): - return _mscl.CommProtocols_get_allocator(self) - - def pop_back(self): - return _mscl.CommProtocols_pop_back(self) - - def erase(self, *args): - return _mscl.CommProtocols_erase(self, *args) - - def __init__(self, *args): - _mscl.CommProtocols_swiginit(self, _mscl.new_CommProtocols(*args)) - - def push_back(self, x): - return _mscl.CommProtocols_push_back(self, x) - - def front(self): - return _mscl.CommProtocols_front(self) - - def back(self): - return _mscl.CommProtocols_back(self) - - def assign(self, n, x): - return _mscl.CommProtocols_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommProtocols_resize(self, *args) - - def insert(self, *args): - return _mscl.CommProtocols_insert(self, *args) - - def reserve(self, n): - return _mscl.CommProtocols_reserve(self, n) - - def capacity(self): - return _mscl.CommProtocols_capacity(self) - __swig_destroy__ = _mscl.delete_CommProtocols - -# Register CommProtocols in _mscl: -_mscl.CommProtocols_swigregister(CommProtocols) - -class Voltages(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Voltages_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Voltages___nonzero__(self) - - def __bool__(self): - return _mscl.Voltages___bool__(self) - - def __len__(self): - return _mscl.Voltages___len__(self) - - def __getslice__(self, i, j): - return _mscl.Voltages___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Voltages___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Voltages___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Voltages___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Voltages___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Voltages___setitem__(self, *args) - - def pop(self): - return _mscl.Voltages_pop(self) - - def append(self, x): - return _mscl.Voltages_append(self, x) - - def empty(self): - return _mscl.Voltages_empty(self) - - def size(self): - return _mscl.Voltages_size(self) - - def swap(self, v): - return _mscl.Voltages_swap(self, v) - - def begin(self): - return _mscl.Voltages_begin(self) - - def end(self): - return _mscl.Voltages_end(self) - - def rbegin(self): - return _mscl.Voltages_rbegin(self) - - def rend(self): - return _mscl.Voltages_rend(self) - - def clear(self): - return _mscl.Voltages_clear(self) - - def get_allocator(self): - return _mscl.Voltages_get_allocator(self) - - def pop_back(self): - return _mscl.Voltages_pop_back(self) - - def erase(self, *args): - return _mscl.Voltages_erase(self, *args) - - def __init__(self, *args): - _mscl.Voltages_swiginit(self, _mscl.new_Voltages(*args)) - - def push_back(self, x): - return _mscl.Voltages_push_back(self, x) - - def front(self): - return _mscl.Voltages_front(self) - - def back(self): - return _mscl.Voltages_back(self) - - def assign(self, n, x): - return _mscl.Voltages_assign(self, n, x) - - def resize(self, *args): - return _mscl.Voltages_resize(self, *args) - - def insert(self, *args): - return _mscl.Voltages_insert(self, *args) - - def reserve(self, n): - return _mscl.Voltages_reserve(self, n) - - def capacity(self): - return _mscl.Voltages_capacity(self) - __swig_destroy__ = _mscl.delete_Voltages - -# Register Voltages in _mscl: -_mscl.Voltages_swigregister(Voltages) - -class SensorOutputModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorOutputModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorOutputModes___nonzero__(self) - - def __bool__(self): - return _mscl.SensorOutputModes___bool__(self) - - def __len__(self): - return _mscl.SensorOutputModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorOutputModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorOutputModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorOutputModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorOutputModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorOutputModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorOutputModes___setitem__(self, *args) - - def pop(self): - return _mscl.SensorOutputModes_pop(self) - - def append(self, x): - return _mscl.SensorOutputModes_append(self, x) - - def empty(self): - return _mscl.SensorOutputModes_empty(self) - - def size(self): - return _mscl.SensorOutputModes_size(self) - - def swap(self, v): - return _mscl.SensorOutputModes_swap(self, v) - - def begin(self): - return _mscl.SensorOutputModes_begin(self) - - def end(self): - return _mscl.SensorOutputModes_end(self) - - def rbegin(self): - return _mscl.SensorOutputModes_rbegin(self) - - def rend(self): - return _mscl.SensorOutputModes_rend(self) - - def clear(self): - return _mscl.SensorOutputModes_clear(self) - - def get_allocator(self): - return _mscl.SensorOutputModes_get_allocator(self) - - def pop_back(self): - return _mscl.SensorOutputModes_pop_back(self) - - def erase(self, *args): - return _mscl.SensorOutputModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorOutputModes_swiginit(self, _mscl.new_SensorOutputModes(*args)) - - def push_back(self, x): - return _mscl.SensorOutputModes_push_back(self, x) - - def front(self): - return _mscl.SensorOutputModes_front(self) - - def back(self): - return _mscl.SensorOutputModes_back(self) - - def assign(self, n, x): - return _mscl.SensorOutputModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorOutputModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorOutputModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorOutputModes_reserve(self, n) - - def capacity(self): - return _mscl.SensorOutputModes_capacity(self) - __swig_destroy__ = _mscl.delete_SensorOutputModes - -# Register SensorOutputModes in _mscl: -_mscl.SensorOutputModes_swigregister(SensorOutputModes) - -class CfcFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CfcFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CfcFilters___nonzero__(self) - - def __bool__(self): - return _mscl.CfcFilters___bool__(self) - - def __len__(self): - return _mscl.CfcFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.CfcFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CfcFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CfcFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CfcFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CfcFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CfcFilters___setitem__(self, *args) - - def pop(self): - return _mscl.CfcFilters_pop(self) - - def append(self, x): - return _mscl.CfcFilters_append(self, x) - - def empty(self): - return _mscl.CfcFilters_empty(self) - - def size(self): - return _mscl.CfcFilters_size(self) - - def swap(self, v): - return _mscl.CfcFilters_swap(self, v) - - def begin(self): - return _mscl.CfcFilters_begin(self) - - def end(self): - return _mscl.CfcFilters_end(self) - - def rbegin(self): - return _mscl.CfcFilters_rbegin(self) - - def rend(self): - return _mscl.CfcFilters_rend(self) - - def clear(self): - return _mscl.CfcFilters_clear(self) - - def get_allocator(self): - return _mscl.CfcFilters_get_allocator(self) - - def pop_back(self): - return _mscl.CfcFilters_pop_back(self) - - def erase(self, *args): - return _mscl.CfcFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.CfcFilters_swiginit(self, _mscl.new_CfcFilters(*args)) - - def push_back(self, x): - return _mscl.CfcFilters_push_back(self, x) - - def front(self): - return _mscl.CfcFilters_front(self) - - def back(self): - return _mscl.CfcFilters_back(self) - - def assign(self, n, x): - return _mscl.CfcFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.CfcFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.CfcFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.CfcFilters_reserve(self, n) - - def capacity(self): - return _mscl.CfcFilters_capacity(self) - __swig_destroy__ = _mscl.delete_CfcFilters - -# Register CfcFilters in _mscl: -_mscl.CfcFilters_swigregister(CfcFilters) - -class TransducerTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransducerTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransducerTypes___nonzero__(self) - - def __bool__(self): - return _mscl.TransducerTypes___bool__(self) - - def __len__(self): - return _mscl.TransducerTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransducerTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransducerTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransducerTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransducerTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransducerTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransducerTypes___setitem__(self, *args) - - def pop(self): - return _mscl.TransducerTypes_pop(self) - - def append(self, x): - return _mscl.TransducerTypes_append(self, x) - - def empty(self): - return _mscl.TransducerTypes_empty(self) - - def size(self): - return _mscl.TransducerTypes_size(self) - - def swap(self, v): - return _mscl.TransducerTypes_swap(self, v) - - def begin(self): - return _mscl.TransducerTypes_begin(self) - - def end(self): - return _mscl.TransducerTypes_end(self) - - def rbegin(self): - return _mscl.TransducerTypes_rbegin(self) - - def rend(self): - return _mscl.TransducerTypes_rend(self) - - def clear(self): - return _mscl.TransducerTypes_clear(self) - - def get_allocator(self): - return _mscl.TransducerTypes_get_allocator(self) - - def pop_back(self): - return _mscl.TransducerTypes_pop_back(self) - - def erase(self, *args): - return _mscl.TransducerTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.TransducerTypes_swiginit(self, _mscl.new_TransducerTypes(*args)) - - def push_back(self, x): - return _mscl.TransducerTypes_push_back(self, x) - - def front(self): - return _mscl.TransducerTypes_front(self) - - def back(self): - return _mscl.TransducerTypes_back(self) - - def assign(self, n, x): - return _mscl.TransducerTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransducerTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.TransducerTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.TransducerTypes_reserve(self, n) - - def capacity(self): - return _mscl.TransducerTypes_capacity(self) - __swig_destroy__ = _mscl.delete_TransducerTypes - -# Register TransducerTypes in _mscl: -_mscl.TransducerTypes_swigregister(TransducerTypes) - -class EepromMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EepromMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EepromMap___nonzero__(self) - - def __bool__(self): - return _mscl.EepromMap___bool__(self) - - def __len__(self): - return _mscl.EepromMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.EepromMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.EepromMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.EepromMap_has_key(self, key) - - def keys(self): - return _mscl.EepromMap_keys(self) - - def values(self): - return _mscl.EepromMap_values(self) - - def items(self): - return _mscl.EepromMap_items(self) - - def __contains__(self, key): - return _mscl.EepromMap___contains__(self, key) - - def key_iterator(self): - return _mscl.EepromMap_key_iterator(self) - - def value_iterator(self): - return _mscl.EepromMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.EepromMap___setitem__(self, *args) - - def asdict(self): - return _mscl.EepromMap_asdict(self) - - def __init__(self, *args): - _mscl.EepromMap_swiginit(self, _mscl.new_EepromMap(*args)) - - def empty(self): - return _mscl.EepromMap_empty(self) - - def size(self): - return _mscl.EepromMap_size(self) - - def swap(self, v): - return _mscl.EepromMap_swap(self, v) - - def begin(self): - return _mscl.EepromMap_begin(self) - - def end(self): - return _mscl.EepromMap_end(self) - - def rbegin(self): - return _mscl.EepromMap_rbegin(self) - - def rend(self): - return _mscl.EepromMap_rend(self) - - def clear(self): - return _mscl.EepromMap_clear(self) - - def get_allocator(self): - return _mscl.EepromMap_get_allocator(self) - - def count(self, x): - return _mscl.EepromMap_count(self, x) - - def erase(self, *args): - return _mscl.EepromMap_erase(self, *args) - - def find(self, x): - return _mscl.EepromMap_find(self, x) - - def lower_bound(self, x): - return _mscl.EepromMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.EepromMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_EepromMap - -# Register EepromMap in _mscl: -_mscl.EepromMap_swigregister(EepromMap) - -class DerivedChannelMasks(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DerivedChannelMasks_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DerivedChannelMasks___nonzero__(self) - - def __bool__(self): - return _mscl.DerivedChannelMasks___bool__(self) - - def __len__(self): - return _mscl.DerivedChannelMasks___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DerivedChannelMasks___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DerivedChannelMasks___delitem__(self, key) - - def has_key(self, key): - return _mscl.DerivedChannelMasks_has_key(self, key) - - def keys(self): - return _mscl.DerivedChannelMasks_keys(self) - - def values(self): - return _mscl.DerivedChannelMasks_values(self) - - def items(self): - return _mscl.DerivedChannelMasks_items(self) - - def __contains__(self, key): - return _mscl.DerivedChannelMasks___contains__(self, key) - - def key_iterator(self): - return _mscl.DerivedChannelMasks_key_iterator(self) - - def value_iterator(self): - return _mscl.DerivedChannelMasks_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DerivedChannelMasks___setitem__(self, *args) - - def asdict(self): - return _mscl.DerivedChannelMasks_asdict(self) - - def __init__(self, *args): - _mscl.DerivedChannelMasks_swiginit(self, _mscl.new_DerivedChannelMasks(*args)) - - def empty(self): - return _mscl.DerivedChannelMasks_empty(self) - - def size(self): - return _mscl.DerivedChannelMasks_size(self) - - def swap(self, v): - return _mscl.DerivedChannelMasks_swap(self, v) - - def begin(self): - return _mscl.DerivedChannelMasks_begin(self) - - def end(self): - return _mscl.DerivedChannelMasks_end(self) - - def rbegin(self): - return _mscl.DerivedChannelMasks_rbegin(self) - - def rend(self): - return _mscl.DerivedChannelMasks_rend(self) - - def clear(self): - return _mscl.DerivedChannelMasks_clear(self) - - def get_allocator(self): - return _mscl.DerivedChannelMasks_get_allocator(self) - - def count(self, x): - return _mscl.DerivedChannelMasks_count(self, x) - - def erase(self, *args): - return _mscl.DerivedChannelMasks_erase(self, *args) - - def find(self, x): - return _mscl.DerivedChannelMasks_find(self, x) - - def lower_bound(self, x): - return _mscl.DerivedChannelMasks_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DerivedChannelMasks_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DerivedChannelMasks - -# Register DerivedChannelMasks in _mscl: -_mscl.DerivedChannelMasks_swigregister(DerivedChannelMasks) - -class DeviceStatusMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusMap_keys(self) - - def values(self): - return _mscl.DeviceStatusMap_values(self) - - def items(self): - return _mscl.DeviceStatusMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusMap_swiginit(self, _mscl.new_DeviceStatusMap(*args)) - - def empty(self): - return _mscl.DeviceStatusMap_empty(self) - - def size(self): - return _mscl.DeviceStatusMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusMap_begin(self) - - def end(self): - return _mscl.DeviceStatusMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusMap - -# Register DeviceStatusMap in _mscl: -_mscl.DeviceStatusMap_swigregister(DeviceStatusMap) - -class DeviceStatusValueMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusValueMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusValueMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusValueMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusValueMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusValueMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusValueMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusValueMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusValueMap_keys(self) - - def values(self): - return _mscl.DeviceStatusValueMap_values(self) - - def items(self): - return _mscl.DeviceStatusValueMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusValueMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusValueMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusValueMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusValueMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusValueMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusValueMap_swiginit(self, _mscl.new_DeviceStatusValueMap(*args)) - - def empty(self): - return _mscl.DeviceStatusValueMap_empty(self) - - def size(self): - return _mscl.DeviceStatusValueMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusValueMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusValueMap_begin(self) - - def end(self): - return _mscl.DeviceStatusValueMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusValueMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusValueMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusValueMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusValueMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusValueMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusValueMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusValueMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusValueMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusValueMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusValueMap - -# Register DeviceStatusValueMap in _mscl: -_mscl.DeviceStatusValueMap_swigregister(DeviceStatusValueMap) - -class SampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.SampleRates___bool__(self) - - def __len__(self): - return _mscl.SampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.SampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.SampleRates_pop(self) - - def append(self, x): - return _mscl.SampleRates_append(self, x) - - def empty(self): - return _mscl.SampleRates_empty(self) - - def size(self): - return _mscl.SampleRates_size(self) - - def swap(self, v): - return _mscl.SampleRates_swap(self, v) - - def begin(self): - return _mscl.SampleRates_begin(self) - - def end(self): - return _mscl.SampleRates_end(self) - - def rbegin(self): - return _mscl.SampleRates_rbegin(self) - - def rend(self): - return _mscl.SampleRates_rend(self) - - def clear(self): - return _mscl.SampleRates_clear(self) - - def get_allocator(self): - return _mscl.SampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.SampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.SampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.SampleRates_swiginit(self, _mscl.new_SampleRates(*args)) - - def push_back(self, x): - return _mscl.SampleRates_push_back(self, x) - - def front(self): - return _mscl.SampleRates_front(self) - - def back(self): - return _mscl.SampleRates_back(self) - - def assign(self, n, x): - return _mscl.SampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.SampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.SampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.SampleRates_reserve(self, n) - - def capacity(self): - return _mscl.SampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_SampleRates - -# Register SampleRates in _mscl: -_mscl.SampleRates_swigregister(SampleRates) - -class ConfigIssues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConfigIssues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConfigIssues___nonzero__(self) - - def __bool__(self): - return _mscl.ConfigIssues___bool__(self) - - def __len__(self): - return _mscl.ConfigIssues___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConfigIssues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConfigIssues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConfigIssues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConfigIssues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConfigIssues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConfigIssues___setitem__(self, *args) - - def pop(self): - return _mscl.ConfigIssues_pop(self) - - def append(self, x): - return _mscl.ConfigIssues_append(self, x) - - def empty(self): - return _mscl.ConfigIssues_empty(self) - - def size(self): - return _mscl.ConfigIssues_size(self) - - def swap(self, v): - return _mscl.ConfigIssues_swap(self, v) - - def begin(self): - return _mscl.ConfigIssues_begin(self) - - def end(self): - return _mscl.ConfigIssues_end(self) - - def rbegin(self): - return _mscl.ConfigIssues_rbegin(self) - - def rend(self): - return _mscl.ConfigIssues_rend(self) - - def clear(self): - return _mscl.ConfigIssues_clear(self) - - def get_allocator(self): - return _mscl.ConfigIssues_get_allocator(self) - - def pop_back(self): - return _mscl.ConfigIssues_pop_back(self) - - def erase(self, *args): - return _mscl.ConfigIssues_erase(self, *args) - - def __init__(self, *args): - _mscl.ConfigIssues_swiginit(self, _mscl.new_ConfigIssues(*args)) - - def push_back(self, x): - return _mscl.ConfigIssues_push_back(self, x) - - def front(self): - return _mscl.ConfigIssues_front(self) - - def back(self): - return _mscl.ConfigIssues_back(self) - - def assign(self, n, x): - return _mscl.ConfigIssues_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConfigIssues_resize(self, *args) - - def insert(self, *args): - return _mscl.ConfigIssues_insert(self, *args) - - def reserve(self, n): - return _mscl.ConfigIssues_reserve(self, n) - - def capacity(self): - return _mscl.ConfigIssues_capacity(self) - __swig_destroy__ = _mscl.delete_ConfigIssues - -# Register ConfigIssues in _mscl: -_mscl.ConfigIssues_swigregister(ConfigIssues) - -class MipChannelFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelFields_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelFields___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelFields___bool__(self) - - def __len__(self): - return _mscl.MipChannelFields___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelFields___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelFields___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelFields___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelFields___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelFields___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelFields___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelFields_pop(self) - - def append(self, x): - return _mscl.MipChannelFields_append(self, x) - - def empty(self): - return _mscl.MipChannelFields_empty(self) - - def size(self): - return _mscl.MipChannelFields_size(self) - - def swap(self, v): - return _mscl.MipChannelFields_swap(self, v) - - def begin(self): - return _mscl.MipChannelFields_begin(self) - - def end(self): - return _mscl.MipChannelFields_end(self) - - def rbegin(self): - return _mscl.MipChannelFields_rbegin(self) - - def rend(self): - return _mscl.MipChannelFields_rend(self) - - def clear(self): - return _mscl.MipChannelFields_clear(self) - - def get_allocator(self): - return _mscl.MipChannelFields_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelFields_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelFields_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelFields_swiginit(self, _mscl.new_MipChannelFields(*args)) - - def push_back(self, x): - return _mscl.MipChannelFields_push_back(self, x) - - def front(self): - return _mscl.MipChannelFields_front(self) - - def back(self): - return _mscl.MipChannelFields_back(self) - - def assign(self, n, x): - return _mscl.MipChannelFields_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelFields_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelFields_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelFields_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelFields_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelFields - -# Register MipChannelFields in _mscl: -_mscl.MipChannelFields_swigregister(MipChannelFields) - -class MipCommands(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommands_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommands___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommands___bool__(self) - - def __len__(self): - return _mscl.MipCommands___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommands___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommands___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommands___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommands___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommands___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommands___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommands_pop(self) - - def append(self, x): - return _mscl.MipCommands_append(self, x) - - def empty(self): - return _mscl.MipCommands_empty(self) - - def size(self): - return _mscl.MipCommands_size(self) - - def swap(self, v): - return _mscl.MipCommands_swap(self, v) - - def begin(self): - return _mscl.MipCommands_begin(self) - - def end(self): - return _mscl.MipCommands_end(self) - - def rbegin(self): - return _mscl.MipCommands_rbegin(self) - - def rend(self): - return _mscl.MipCommands_rend(self) - - def clear(self): - return _mscl.MipCommands_clear(self) - - def get_allocator(self): - return _mscl.MipCommands_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommands_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommands_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommands_swiginit(self, _mscl.new_MipCommands(*args)) - - def push_back(self, x): - return _mscl.MipCommands_push_back(self, x) - - def front(self): - return _mscl.MipCommands_front(self) - - def back(self): - return _mscl.MipCommands_back(self) - - def assign(self, n, x): - return _mscl.MipCommands_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommands_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommands_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommands_reserve(self, n) - - def capacity(self): - return _mscl.MipCommands_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommands - -# Register MipCommands in _mscl: -_mscl.MipCommands_swigregister(MipCommands) - -class MipDataClasses(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataClasses_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataClasses___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataClasses___bool__(self) - - def __len__(self): - return _mscl.MipDataClasses___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataClasses___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataClasses___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataClasses___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataClasses___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataClasses___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataClasses___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataClasses_pop(self) - - def append(self, x): - return _mscl.MipDataClasses_append(self, x) - - def empty(self): - return _mscl.MipDataClasses_empty(self) - - def size(self): - return _mscl.MipDataClasses_size(self) - - def swap(self, v): - return _mscl.MipDataClasses_swap(self, v) - - def begin(self): - return _mscl.MipDataClasses_begin(self) - - def end(self): - return _mscl.MipDataClasses_end(self) - - def rbegin(self): - return _mscl.MipDataClasses_rbegin(self) - - def rend(self): - return _mscl.MipDataClasses_rend(self) - - def clear(self): - return _mscl.MipDataClasses_clear(self) - - def get_allocator(self): - return _mscl.MipDataClasses_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataClasses_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataClasses_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataClasses_swiginit(self, _mscl.new_MipDataClasses(*args)) - - def push_back(self, x): - return _mscl.MipDataClasses_push_back(self, x) - - def front(self): - return _mscl.MipDataClasses_front(self) - - def back(self): - return _mscl.MipDataClasses_back(self) - - def assign(self, n, x): - return _mscl.MipDataClasses_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataClasses_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataClasses_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataClasses_reserve(self, n) - - def capacity(self): - return _mscl.MipDataClasses_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataClasses - -# Register MipDataClasses in _mscl: -_mscl.MipDataClasses_swigregister(MipDataClasses) - -class MipChannelIdentifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelIdentifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelIdentifiers___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelIdentifiers___bool__(self) - - def __len__(self): - return _mscl.MipChannelIdentifiers___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelIdentifiers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelIdentifiers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelIdentifiers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelIdentifiers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelIdentifiers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelIdentifiers___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelIdentifiers_pop(self) - - def append(self, x): - return _mscl.MipChannelIdentifiers_append(self, x) - - def empty(self): - return _mscl.MipChannelIdentifiers_empty(self) - - def size(self): - return _mscl.MipChannelIdentifiers_size(self) - - def swap(self, v): - return _mscl.MipChannelIdentifiers_swap(self, v) - - def begin(self): - return _mscl.MipChannelIdentifiers_begin(self) - - def end(self): - return _mscl.MipChannelIdentifiers_end(self) - - def rbegin(self): - return _mscl.MipChannelIdentifiers_rbegin(self) - - def rend(self): - return _mscl.MipChannelIdentifiers_rend(self) - - def clear(self): - return _mscl.MipChannelIdentifiers_clear(self) - - def get_allocator(self): - return _mscl.MipChannelIdentifiers_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelIdentifiers_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelIdentifiers_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelIdentifiers_swiginit(self, _mscl.new_MipChannelIdentifiers(*args)) - - def push_back(self, x): - return _mscl.MipChannelIdentifiers_push_back(self, x) - - def front(self): - return _mscl.MipChannelIdentifiers_front(self) - - def back(self): - return _mscl.MipChannelIdentifiers_back(self) - - def assign(self, n, x): - return _mscl.MipChannelIdentifiers_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelIdentifiers_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelIdentifiers_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelIdentifiers_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelIdentifiers_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelIdentifiers - -# Register MipChannelIdentifiers in _mscl: -_mscl.MipChannelIdentifiers_swigregister(MipChannelIdentifiers) - -class MipCommandSet(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandSet_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandSet___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandSet___bool__(self) - - def __len__(self): - return _mscl.MipCommandSet___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandSet___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandSet___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandSet___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandSet___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandSet___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandSet___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandSet_pop(self) - - def append(self, x): - return _mscl.MipCommandSet_append(self, x) - - def empty(self): - return _mscl.MipCommandSet_empty(self) - - def size(self): - return _mscl.MipCommandSet_size(self) - - def swap(self, v): - return _mscl.MipCommandSet_swap(self, v) - - def begin(self): - return _mscl.MipCommandSet_begin(self) - - def end(self): - return _mscl.MipCommandSet_end(self) - - def rbegin(self): - return _mscl.MipCommandSet_rbegin(self) - - def rend(self): - return _mscl.MipCommandSet_rend(self) - - def clear(self): - return _mscl.MipCommandSet_clear(self) - - def get_allocator(self): - return _mscl.MipCommandSet_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandSet_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandSet_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandSet_swiginit(self, _mscl.new_MipCommandSet(*args)) - - def push_back(self, x): - return _mscl.MipCommandSet_push_back(self, x) - - def front(self): - return _mscl.MipCommandSet_front(self) - - def back(self): - return _mscl.MipCommandSet_back(self) - - def assign(self, n, x): - return _mscl.MipCommandSet_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandSet_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandSet_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandSet_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandSet_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandSet - -# Register MipCommandSet in _mscl: -_mscl.MipCommandSet_swigregister(MipCommandSet) - -class MipFieldValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipFieldValues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipFieldValues___nonzero__(self) - - def __bool__(self): - return _mscl.MipFieldValues___bool__(self) - - def __len__(self): - return _mscl.MipFieldValues___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipFieldValues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipFieldValues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipFieldValues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipFieldValues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipFieldValues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipFieldValues___setitem__(self, *args) - - def pop(self): - return _mscl.MipFieldValues_pop(self) - - def append(self, x): - return _mscl.MipFieldValues_append(self, x) - - def empty(self): - return _mscl.MipFieldValues_empty(self) - - def size(self): - return _mscl.MipFieldValues_size(self) - - def swap(self, v): - return _mscl.MipFieldValues_swap(self, v) - - def begin(self): - return _mscl.MipFieldValues_begin(self) - - def end(self): - return _mscl.MipFieldValues_end(self) - - def rbegin(self): - return _mscl.MipFieldValues_rbegin(self) - - def rend(self): - return _mscl.MipFieldValues_rend(self) - - def clear(self): - return _mscl.MipFieldValues_clear(self) - - def get_allocator(self): - return _mscl.MipFieldValues_get_allocator(self) - - def pop_back(self): - return _mscl.MipFieldValues_pop_back(self) - - def erase(self, *args): - return _mscl.MipFieldValues_erase(self, *args) - - def __init__(self, *args): - _mscl.MipFieldValues_swiginit(self, _mscl.new_MipFieldValues(*args)) - - def push_back(self, x): - return _mscl.MipFieldValues_push_back(self, x) - - def front(self): - return _mscl.MipFieldValues_front(self) - - def back(self): - return _mscl.MipFieldValues_back(self) - - def assign(self, n, x): - return _mscl.MipFieldValues_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipFieldValues_resize(self, *args) - - def insert(self, *args): - return _mscl.MipFieldValues_insert(self, *args) - - def reserve(self, n): - return _mscl.MipFieldValues_reserve(self, n) - - def capacity(self): - return _mscl.MipFieldValues_capacity(self) - __swig_destroy__ = _mscl.delete_MipFieldValues - -# Register MipFieldValues in _mscl: -_mscl.MipFieldValues_swigregister(MipFieldValues) - -class MipCommandParamPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipCommandParamPair_swiginit(self, _mscl.new_MipCommandParamPair(*args)) - first = property(_mscl.MipCommandParamPair_first_get, _mscl.MipCommandParamPair_first_set) - second = property(_mscl.MipCommandParamPair_second_get, _mscl.MipCommandParamPair_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_MipCommandParamPair - -# Register MipCommandParamPair in _mscl: -_mscl.MipCommandParamPair_swigregister(MipCommandParamPair) - -class MipCommandParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandParameters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandParameters___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandParameters___bool__(self) - - def __len__(self): - return _mscl.MipCommandParameters___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandParameters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandParameters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandParameters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandParameters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandParameters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandParameters___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandParameters_pop(self) - - def append(self, x): - return _mscl.MipCommandParameters_append(self, x) - - def empty(self): - return _mscl.MipCommandParameters_empty(self) - - def size(self): - return _mscl.MipCommandParameters_size(self) - - def swap(self, v): - return _mscl.MipCommandParameters_swap(self, v) - - def begin(self): - return _mscl.MipCommandParameters_begin(self) - - def end(self): - return _mscl.MipCommandParameters_end(self) - - def rbegin(self): - return _mscl.MipCommandParameters_rbegin(self) - - def rend(self): - return _mscl.MipCommandParameters_rend(self) - - def clear(self): - return _mscl.MipCommandParameters_clear(self) - - def get_allocator(self): - return _mscl.MipCommandParameters_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandParameters_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandParameters_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandParameters_swiginit(self, _mscl.new_MipCommandParameters(*args)) - - def push_back(self, x): - return _mscl.MipCommandParameters_push_back(self, x) - - def front(self): - return _mscl.MipCommandParameters_front(self) - - def back(self): - return _mscl.MipCommandParameters_back(self) - - def assign(self, n, x): - return _mscl.MipCommandParameters_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandParameters_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandParameters_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandParameters_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandParameters_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandParameters - -# Register MipCommandParameters in _mscl: -_mscl.MipCommandParameters_swigregister(MipCommandParameters) - -class ChannelIndex(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ChannelIndex_swiginit(self, _mscl.new_ChannelIndex(*args)) - first = property(_mscl.ChannelIndex_first_get, _mscl.ChannelIndex_first_set) - second = property(_mscl.ChannelIndex_second_get, _mscl.ChannelIndex_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_ChannelIndex - -# Register ChannelIndex in _mscl: -_mscl.ChannelIndex_swigregister(ChannelIndex) - -class ChannelIndices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelIndices_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelIndices___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelIndices___bool__(self) - - def __len__(self): - return _mscl.ChannelIndices___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelIndices___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelIndices___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelIndices___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelIndices___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelIndices___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelIndices___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelIndices_pop(self) - - def append(self, x): - return _mscl.ChannelIndices_append(self, x) - - def empty(self): - return _mscl.ChannelIndices_empty(self) - - def size(self): - return _mscl.ChannelIndices_size(self) - - def swap(self, v): - return _mscl.ChannelIndices_swap(self, v) - - def begin(self): - return _mscl.ChannelIndices_begin(self) - - def end(self): - return _mscl.ChannelIndices_end(self) - - def rbegin(self): - return _mscl.ChannelIndices_rbegin(self) - - def rend(self): - return _mscl.ChannelIndices_rend(self) - - def clear(self): - return _mscl.ChannelIndices_clear(self) - - def get_allocator(self): - return _mscl.ChannelIndices_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelIndices_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelIndices_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelIndices_swiginit(self, _mscl.new_ChannelIndices(*args)) - - def push_back(self, x): - return _mscl.ChannelIndices_push_back(self, x) - - def front(self): - return _mscl.ChannelIndices_front(self) - - def back(self): - return _mscl.ChannelIndices_back(self) - - def assign(self, n, x): - return _mscl.ChannelIndices_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelIndices_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelIndices_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelIndices_reserve(self, n) - - def capacity(self): - return _mscl.ChannelIndices_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelIndices - -# Register ChannelIndices in _mscl: -_mscl.ChannelIndices_swigregister(ChannelIndices) - -class ChannelFieldQualifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelFieldQualifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelFieldQualifiers___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelFieldQualifiers___bool__(self) - - def __len__(self): - return _mscl.ChannelFieldQualifiers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelFieldQualifiers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelFieldQualifiers___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelFieldQualifiers_has_key(self, key) - - def keys(self): - return _mscl.ChannelFieldQualifiers_keys(self) - - def values(self): - return _mscl.ChannelFieldQualifiers_values(self) - - def items(self): - return _mscl.ChannelFieldQualifiers_items(self) - - def __contains__(self, key): - return _mscl.ChannelFieldQualifiers___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelFieldQualifiers_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelFieldQualifiers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelFieldQualifiers___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelFieldQualifiers_asdict(self) - - def __init__(self, *args): - _mscl.ChannelFieldQualifiers_swiginit(self, _mscl.new_ChannelFieldQualifiers(*args)) - - def empty(self): - return _mscl.ChannelFieldQualifiers_empty(self) - - def size(self): - return _mscl.ChannelFieldQualifiers_size(self) - - def swap(self, v): - return _mscl.ChannelFieldQualifiers_swap(self, v) - - def begin(self): - return _mscl.ChannelFieldQualifiers_begin(self) - - def end(self): - return _mscl.ChannelFieldQualifiers_end(self) - - def rbegin(self): - return _mscl.ChannelFieldQualifiers_rbegin(self) - - def rend(self): - return _mscl.ChannelFieldQualifiers_rend(self) - - def clear(self): - return _mscl.ChannelFieldQualifiers_clear(self) - - def get_allocator(self): - return _mscl.ChannelFieldQualifiers_get_allocator(self) - - def count(self, x): - return _mscl.ChannelFieldQualifiers_count(self, x) - - def erase(self, *args): - return _mscl.ChannelFieldQualifiers_erase(self, *args) - - def find(self, x): - return _mscl.ChannelFieldQualifiers_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelFieldQualifiers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelFieldQualifiers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelFieldQualifiers - -# Register ChannelFieldQualifiers in _mscl: -_mscl.ChannelFieldQualifiers_swigregister(ChannelFieldQualifiers) - -class GnssReceivers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssReceivers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssReceivers___nonzero__(self) - - def __bool__(self): - return _mscl.GnssReceivers___bool__(self) - - def __len__(self): - return _mscl.GnssReceivers___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssReceivers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssReceivers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssReceivers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssReceivers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssReceivers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssReceivers___setitem__(self, *args) - - def pop(self): - return _mscl.GnssReceivers_pop(self) - - def append(self, x): - return _mscl.GnssReceivers_append(self, x) - - def empty(self): - return _mscl.GnssReceivers_empty(self) - - def size(self): - return _mscl.GnssReceivers_size(self) - - def swap(self, v): - return _mscl.GnssReceivers_swap(self, v) - - def begin(self): - return _mscl.GnssReceivers_begin(self) - - def end(self): - return _mscl.GnssReceivers_end(self) - - def rbegin(self): - return _mscl.GnssReceivers_rbegin(self) - - def rend(self): - return _mscl.GnssReceivers_rend(self) - - def clear(self): - return _mscl.GnssReceivers_clear(self) - - def get_allocator(self): - return _mscl.GnssReceivers_get_allocator(self) - - def pop_back(self): - return _mscl.GnssReceivers_pop_back(self) - - def erase(self, *args): - return _mscl.GnssReceivers_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssReceivers_swiginit(self, _mscl.new_GnssReceivers(*args)) - - def push_back(self, x): - return _mscl.GnssReceivers_push_back(self, x) - - def front(self): - return _mscl.GnssReceivers_front(self) - - def back(self): - return _mscl.GnssReceivers_back(self) - - def assign(self, n, x): - return _mscl.GnssReceivers_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssReceivers_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssReceivers_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssReceivers_reserve(self, n) - - def capacity(self): - return _mscl.GnssReceivers_capacity(self) - __swig_destroy__ = _mscl.delete_GnssReceivers - -# Register GnssReceivers in _mscl: -_mscl.GnssReceivers_swigregister(GnssReceivers) - -class SensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRanges___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRanges___bool__(self) - - def __len__(self): - return _mscl.SensorRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorRanges___setitem__(self, *args) - - def pop(self): - return _mscl.SensorRanges_pop(self) - - def append(self, x): - return _mscl.SensorRanges_append(self, x) - - def empty(self): - return _mscl.SensorRanges_empty(self) - - def size(self): - return _mscl.SensorRanges_size(self) - - def swap(self, v): - return _mscl.SensorRanges_swap(self, v) - - def begin(self): - return _mscl.SensorRanges_begin(self) - - def end(self): - return _mscl.SensorRanges_end(self) - - def rbegin(self): - return _mscl.SensorRanges_rbegin(self) - - def rend(self): - return _mscl.SensorRanges_rend(self) - - def clear(self): - return _mscl.SensorRanges_clear(self) - - def get_allocator(self): - return _mscl.SensorRanges_get_allocator(self) - - def pop_back(self): - return _mscl.SensorRanges_pop_back(self) - - def erase(self, *args): - return _mscl.SensorRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorRanges_swiginit(self, _mscl.new_SensorRanges(*args)) - - def push_back(self, x): - return _mscl.SensorRanges_push_back(self, x) - - def front(self): - return _mscl.SensorRanges_front(self) - - def back(self): - return _mscl.SensorRanges_back(self) - - def assign(self, n, x): - return _mscl.SensorRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorRanges_reserve(self, n) - - def capacity(self): - return _mscl.SensorRanges_capacity(self) - __swig_destroy__ = _mscl.delete_SensorRanges - -# Register SensorRanges in _mscl: -_mscl.SensorRanges_swigregister(SensorRanges) - -class SensorRangeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRangeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRangeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRangeOptions___bool__(self) - - def __len__(self): - return _mscl.SensorRangeOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SensorRangeOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SensorRangeOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.SensorRangeOptions_has_key(self, key) - - def keys(self): - return _mscl.SensorRangeOptions_keys(self) - - def values(self): - return _mscl.SensorRangeOptions_values(self) - - def items(self): - return _mscl.SensorRangeOptions_items(self) - - def __contains__(self, key): - return _mscl.SensorRangeOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.SensorRangeOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.SensorRangeOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SensorRangeOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.SensorRangeOptions_asdict(self) - - def __init__(self, *args): - _mscl.SensorRangeOptions_swiginit(self, _mscl.new_SensorRangeOptions(*args)) - - def empty(self): - return _mscl.SensorRangeOptions_empty(self) - - def size(self): - return _mscl.SensorRangeOptions_size(self) - - def swap(self, v): - return _mscl.SensorRangeOptions_swap(self, v) - - def begin(self): - return _mscl.SensorRangeOptions_begin(self) - - def end(self): - return _mscl.SensorRangeOptions_end(self) - - def rbegin(self): - return _mscl.SensorRangeOptions_rbegin(self) - - def rend(self): - return _mscl.SensorRangeOptions_rend(self) - - def clear(self): - return _mscl.SensorRangeOptions_clear(self) - - def get_allocator(self): - return _mscl.SensorRangeOptions_get_allocator(self) - - def count(self, x): - return _mscl.SensorRangeOptions_count(self, x) - - def erase(self, *args): - return _mscl.SensorRangeOptions_erase(self, *args) - - def find(self, x): - return _mscl.SensorRangeOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.SensorRangeOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SensorRangeOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SensorRangeOptions - -# Register SensorRangeOptions in _mscl: -_mscl.SensorRangeOptions_swigregister(SensorRangeOptions) - -class CommPortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommPortInfo_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommPortInfo___nonzero__(self) - - def __bool__(self): - return _mscl.CommPortInfo___bool__(self) - - def __len__(self): - return _mscl.CommPortInfo___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommPortInfo___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommPortInfo___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommPortInfo___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommPortInfo___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommPortInfo___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommPortInfo___setitem__(self, *args) - - def pop(self): - return _mscl.CommPortInfo_pop(self) - - def append(self, x): - return _mscl.CommPortInfo_append(self, x) - - def empty(self): - return _mscl.CommPortInfo_empty(self) - - def size(self): - return _mscl.CommPortInfo_size(self) - - def swap(self, v): - return _mscl.CommPortInfo_swap(self, v) - - def begin(self): - return _mscl.CommPortInfo_begin(self) - - def end(self): - return _mscl.CommPortInfo_end(self) - - def rbegin(self): - return _mscl.CommPortInfo_rbegin(self) - - def rend(self): - return _mscl.CommPortInfo_rend(self) - - def clear(self): - return _mscl.CommPortInfo_clear(self) - - def get_allocator(self): - return _mscl.CommPortInfo_get_allocator(self) - - def pop_back(self): - return _mscl.CommPortInfo_pop_back(self) - - def erase(self, *args): - return _mscl.CommPortInfo_erase(self, *args) - - def __init__(self, *args): - _mscl.CommPortInfo_swiginit(self, _mscl.new_CommPortInfo(*args)) - - def push_back(self, x): - return _mscl.CommPortInfo_push_back(self, x) - - def front(self): - return _mscl.CommPortInfo_front(self) - - def back(self): - return _mscl.CommPortInfo_back(self) - - def assign(self, n, x): - return _mscl.CommPortInfo_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommPortInfo_resize(self, *args) - - def insert(self, *args): - return _mscl.CommPortInfo_insert(self, *args) - - def reserve(self, n): - return _mscl.CommPortInfo_reserve(self, n) - - def capacity(self): - return _mscl.CommPortInfo_capacity(self) - __swig_destroy__ = _mscl.delete_CommPortInfo - -# Register CommPortInfo in _mscl: -_mscl.CommPortInfo_swigregister(CommPortInfo) - -class EventTriggerStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTriggerStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTriggerStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventTriggerStatus___bool__(self) - - def __len__(self): - return _mscl.EventTriggerStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTriggerStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTriggerStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTriggerStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTriggerStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTriggerStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTriggerStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventTriggerStatus_pop(self) - - def append(self, x): - return _mscl.EventTriggerStatus_append(self, x) - - def empty(self): - return _mscl.EventTriggerStatus_empty(self) - - def size(self): - return _mscl.EventTriggerStatus_size(self) - - def swap(self, v): - return _mscl.EventTriggerStatus_swap(self, v) - - def begin(self): - return _mscl.EventTriggerStatus_begin(self) - - def end(self): - return _mscl.EventTriggerStatus_end(self) - - def rbegin(self): - return _mscl.EventTriggerStatus_rbegin(self) - - def rend(self): - return _mscl.EventTriggerStatus_rend(self) - - def clear(self): - return _mscl.EventTriggerStatus_clear(self) - - def get_allocator(self): - return _mscl.EventTriggerStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventTriggerStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventTriggerStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTriggerStatus_swiginit(self, _mscl.new_EventTriggerStatus(*args)) - - def push_back(self, x): - return _mscl.EventTriggerStatus_push_back(self, x) - - def front(self): - return _mscl.EventTriggerStatus_front(self) - - def back(self): - return _mscl.EventTriggerStatus_back(self) - - def assign(self, n, x): - return _mscl.EventTriggerStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTriggerStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTriggerStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTriggerStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventTriggerStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventTriggerStatus - -# Register EventTriggerStatus in _mscl: -_mscl.EventTriggerStatus_swigregister(EventTriggerStatus) - -class EventActionStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventActionStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventActionStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventActionStatus___bool__(self) - - def __len__(self): - return _mscl.EventActionStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventActionStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventActionStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventActionStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventActionStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventActionStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventActionStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventActionStatus_pop(self) - - def append(self, x): - return _mscl.EventActionStatus_append(self, x) - - def empty(self): - return _mscl.EventActionStatus_empty(self) - - def size(self): - return _mscl.EventActionStatus_size(self) - - def swap(self, v): - return _mscl.EventActionStatus_swap(self, v) - - def begin(self): - return _mscl.EventActionStatus_begin(self) - - def end(self): - return _mscl.EventActionStatus_end(self) - - def rbegin(self): - return _mscl.EventActionStatus_rbegin(self) - - def rend(self): - return _mscl.EventActionStatus_rend(self) - - def clear(self): - return _mscl.EventActionStatus_clear(self) - - def get_allocator(self): - return _mscl.EventActionStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventActionStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventActionStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventActionStatus_swiginit(self, _mscl.new_EventActionStatus(*args)) - - def push_back(self, x): - return _mscl.EventActionStatus_push_back(self, x) - - def front(self): - return _mscl.EventActionStatus_front(self) - - def back(self): - return _mscl.EventActionStatus_back(self) - - def assign(self, n, x): - return _mscl.EventActionStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventActionStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventActionStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventActionStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventActionStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventActionStatus - -# Register EventActionStatus in _mscl: -_mscl.EventActionStatus_swigregister(EventActionStatus) - -class ChannelGroups(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroups_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroups___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroups___bool__(self) - - def __len__(self): - return _mscl.ChannelGroups___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroups___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroups___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroups___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroups___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroups___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroups___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroups_pop(self) - - def append(self, x): - return _mscl.ChannelGroups_append(self, x) - - def empty(self): - return _mscl.ChannelGroups_empty(self) - - def size(self): - return _mscl.ChannelGroups_size(self) - - def swap(self, v): - return _mscl.ChannelGroups_swap(self, v) - - def begin(self): - return _mscl.ChannelGroups_begin(self) - - def end(self): - return _mscl.ChannelGroups_end(self) - - def rbegin(self): - return _mscl.ChannelGroups_rbegin(self) - - def rend(self): - return _mscl.ChannelGroups_rend(self) - - def clear(self): - return _mscl.ChannelGroups_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroups_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroups_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroups_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroups_swiginit(self, _mscl.new_ChannelGroups(*args)) - - def push_back(self, x): - return _mscl.ChannelGroups_push_back(self, x) - - def front(self): - return _mscl.ChannelGroups_front(self) - - def back(self): - return _mscl.ChannelGroups_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroups_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroups_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroups_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroups_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroups_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroups - -# Register ChannelGroups in _mscl: -_mscl.ChannelGroups_swigregister(ChannelGroups) - -class WirelessChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessChannels___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessChannels___bool__(self) - - def __len__(self): - return _mscl.WirelessChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessChannels___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessChannels_pop(self) - - def append(self, x): - return _mscl.WirelessChannels_append(self, x) - - def empty(self): - return _mscl.WirelessChannels_empty(self) - - def size(self): - return _mscl.WirelessChannels_size(self) - - def swap(self, v): - return _mscl.WirelessChannels_swap(self, v) - - def begin(self): - return _mscl.WirelessChannels_begin(self) - - def end(self): - return _mscl.WirelessChannels_end(self) - - def rbegin(self): - return _mscl.WirelessChannels_rbegin(self) - - def rend(self): - return _mscl.WirelessChannels_rend(self) - - def clear(self): - return _mscl.WirelessChannels_clear(self) - - def get_allocator(self): - return _mscl.WirelessChannels_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessChannels_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessChannels_swiginit(self, _mscl.new_WirelessChannels(*args)) - - def push_back(self, x): - return _mscl.WirelessChannels_push_back(self, x) - - def front(self): - return _mscl.WirelessChannels_front(self) - - def back(self): - return _mscl.WirelessChannels_back(self) - - def assign(self, n, x): - return _mscl.WirelessChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessChannels_reserve(self, n) - - def capacity(self): - return _mscl.WirelessChannels_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessChannels - -# Register WirelessChannels in _mscl: -_mscl.WirelessChannels_swigregister(WirelessChannels) - -class DamageAngles(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DamageAngles_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DamageAngles___nonzero__(self) - - def __bool__(self): - return _mscl.DamageAngles___bool__(self) - - def __len__(self): - return _mscl.DamageAngles___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DamageAngles___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DamageAngles___delitem__(self, key) - - def has_key(self, key): - return _mscl.DamageAngles_has_key(self, key) - - def keys(self): - return _mscl.DamageAngles_keys(self) - - def values(self): - return _mscl.DamageAngles_values(self) - - def items(self): - return _mscl.DamageAngles_items(self) - - def __contains__(self, key): - return _mscl.DamageAngles___contains__(self, key) - - def key_iterator(self): - return _mscl.DamageAngles_key_iterator(self) - - def value_iterator(self): - return _mscl.DamageAngles_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DamageAngles___setitem__(self, *args) - - def asdict(self): - return _mscl.DamageAngles_asdict(self) - - def __init__(self, *args): - _mscl.DamageAngles_swiginit(self, _mscl.new_DamageAngles(*args)) - - def empty(self): - return _mscl.DamageAngles_empty(self) - - def size(self): - return _mscl.DamageAngles_size(self) - - def swap(self, v): - return _mscl.DamageAngles_swap(self, v) - - def begin(self): - return _mscl.DamageAngles_begin(self) - - def end(self): - return _mscl.DamageAngles_end(self) - - def rbegin(self): - return _mscl.DamageAngles_rbegin(self) - - def rend(self): - return _mscl.DamageAngles_rend(self) - - def clear(self): - return _mscl.DamageAngles_clear(self) - - def get_allocator(self): - return _mscl.DamageAngles_get_allocator(self) - - def count(self, x): - return _mscl.DamageAngles_count(self, x) - - def erase(self, *args): - return _mscl.DamageAngles_erase(self, *args) - - def find(self, x): - return _mscl.DamageAngles_find(self, x) - - def lower_bound(self, x): - return _mscl.DamageAngles_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DamageAngles_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DamageAngles - -# Register DamageAngles in _mscl: -_mscl.DamageAngles_swigregister(DamageAngles) - -class SnCurveSegments(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SnCurveSegments_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SnCurveSegments___nonzero__(self) - - def __bool__(self): - return _mscl.SnCurveSegments___bool__(self) - - def __len__(self): - return _mscl.SnCurveSegments___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SnCurveSegments___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SnCurveSegments___delitem__(self, key) - - def has_key(self, key): - return _mscl.SnCurveSegments_has_key(self, key) - - def keys(self): - return _mscl.SnCurveSegments_keys(self) - - def values(self): - return _mscl.SnCurveSegments_values(self) - - def items(self): - return _mscl.SnCurveSegments_items(self) - - def __contains__(self, key): - return _mscl.SnCurveSegments___contains__(self, key) - - def key_iterator(self): - return _mscl.SnCurveSegments_key_iterator(self) - - def value_iterator(self): - return _mscl.SnCurveSegments_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SnCurveSegments___setitem__(self, *args) - - def asdict(self): - return _mscl.SnCurveSegments_asdict(self) - - def __init__(self, *args): - _mscl.SnCurveSegments_swiginit(self, _mscl.new_SnCurveSegments(*args)) - - def empty(self): - return _mscl.SnCurveSegments_empty(self) - - def size(self): - return _mscl.SnCurveSegments_size(self) - - def swap(self, v): - return _mscl.SnCurveSegments_swap(self, v) - - def begin(self): - return _mscl.SnCurveSegments_begin(self) - - def end(self): - return _mscl.SnCurveSegments_end(self) - - def rbegin(self): - return _mscl.SnCurveSegments_rbegin(self) - - def rend(self): - return _mscl.SnCurveSegments_rend(self) - - def clear(self): - return _mscl.SnCurveSegments_clear(self) - - def get_allocator(self): - return _mscl.SnCurveSegments_get_allocator(self) - - def count(self, x): - return _mscl.SnCurveSegments_count(self, x) - - def erase(self, *args): - return _mscl.SnCurveSegments_erase(self, *args) - - def find(self, x): - return _mscl.SnCurveSegments_find(self, x) - - def lower_bound(self, x): - return _mscl.SnCurveSegments_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SnCurveSegments_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SnCurveSegments - -# Register SnCurveSegments in _mscl: -_mscl.SnCurveSegments_swigregister(SnCurveSegments) - -class RfSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RfSweep_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RfSweep___nonzero__(self) - - def __bool__(self): - return _mscl.RfSweep___bool__(self) - - def __len__(self): - return _mscl.RfSweep___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.RfSweep___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.RfSweep___delitem__(self, key) - - def has_key(self, key): - return _mscl.RfSweep_has_key(self, key) - - def keys(self): - return _mscl.RfSweep_keys(self) - - def values(self): - return _mscl.RfSweep_values(self) - - def items(self): - return _mscl.RfSweep_items(self) - - def __contains__(self, key): - return _mscl.RfSweep___contains__(self, key) - - def key_iterator(self): - return _mscl.RfSweep_key_iterator(self) - - def value_iterator(self): - return _mscl.RfSweep_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.RfSweep___setitem__(self, *args) - - def asdict(self): - return _mscl.RfSweep_asdict(self) - - def __init__(self, *args): - _mscl.RfSweep_swiginit(self, _mscl.new_RfSweep(*args)) - - def empty(self): - return _mscl.RfSweep_empty(self) - - def size(self): - return _mscl.RfSweep_size(self) - - def swap(self, v): - return _mscl.RfSweep_swap(self, v) - - def begin(self): - return _mscl.RfSweep_begin(self) - - def end(self): - return _mscl.RfSweep_end(self) - - def rbegin(self): - return _mscl.RfSweep_rbegin(self) - - def rend(self): - return _mscl.RfSweep_rend(self) - - def clear(self): - return _mscl.RfSweep_clear(self) - - def get_allocator(self): - return _mscl.RfSweep_get_allocator(self) - - def count(self, x): - return _mscl.RfSweep_count(self, x) - - def erase(self, *args): - return _mscl.RfSweep_erase(self, *args) - - def find(self, x): - return _mscl.RfSweep_find(self, x) - - def lower_bound(self, x): - return _mscl.RfSweep_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.RfSweep_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_RfSweep - -# Register RfSweep in _mscl: -_mscl.RfSweep_swigregister(RfSweep) - -class Triggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Triggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Triggers___nonzero__(self) - - def __bool__(self): - return _mscl.Triggers___bool__(self) - - def __len__(self): - return _mscl.Triggers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.Triggers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.Triggers___delitem__(self, key) - - def has_key(self, key): - return _mscl.Triggers_has_key(self, key) - - def keys(self): - return _mscl.Triggers_keys(self) - - def values(self): - return _mscl.Triggers_values(self) - - def items(self): - return _mscl.Triggers_items(self) - - def __contains__(self, key): - return _mscl.Triggers___contains__(self, key) - - def key_iterator(self): - return _mscl.Triggers_key_iterator(self) - - def value_iterator(self): - return _mscl.Triggers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.Triggers___setitem__(self, *args) - - def asdict(self): - return _mscl.Triggers_asdict(self) - - def __init__(self, *args): - _mscl.Triggers_swiginit(self, _mscl.new_Triggers(*args)) - - def empty(self): - return _mscl.Triggers_empty(self) - - def size(self): - return _mscl.Triggers_size(self) - - def swap(self, v): - return _mscl.Triggers_swap(self, v) - - def begin(self): - return _mscl.Triggers_begin(self) - - def end(self): - return _mscl.Triggers_end(self) - - def rbegin(self): - return _mscl.Triggers_rbegin(self) - - def rend(self): - return _mscl.Triggers_rend(self) - - def clear(self): - return _mscl.Triggers_clear(self) - - def get_allocator(self): - return _mscl.Triggers_get_allocator(self) - - def count(self, x): - return _mscl.Triggers_count(self, x) - - def erase(self, *args): - return _mscl.Triggers_erase(self, *args) - - def find(self, x): - return _mscl.Triggers_find(self, x) - - def lower_bound(self, x): - return _mscl.Triggers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.Triggers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_Triggers - -# Register Triggers in _mscl: -_mscl.Triggers_swigregister(Triggers) - -class ChannelCalMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelCalMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelCalMap___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelCalMap___bool__(self) - - def __len__(self): - return _mscl.ChannelCalMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelCalMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelCalMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelCalMap_has_key(self, key) - - def keys(self): - return _mscl.ChannelCalMap_keys(self) - - def values(self): - return _mscl.ChannelCalMap_values(self) - - def items(self): - return _mscl.ChannelCalMap_items(self) - - def __contains__(self, key): - return _mscl.ChannelCalMap___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelCalMap_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelCalMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelCalMap___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelCalMap_asdict(self) - - def __init__(self, *args): - _mscl.ChannelCalMap_swiginit(self, _mscl.new_ChannelCalMap(*args)) - - def empty(self): - return _mscl.ChannelCalMap_empty(self) - - def size(self): - return _mscl.ChannelCalMap_size(self) - - def swap(self, v): - return _mscl.ChannelCalMap_swap(self, v) - - def begin(self): - return _mscl.ChannelCalMap_begin(self) - - def end(self): - return _mscl.ChannelCalMap_end(self) - - def rbegin(self): - return _mscl.ChannelCalMap_rbegin(self) - - def rend(self): - return _mscl.ChannelCalMap_rend(self) - - def clear(self): - return _mscl.ChannelCalMap_clear(self) - - def get_allocator(self): - return _mscl.ChannelCalMap_get_allocator(self) - - def count(self, x): - return _mscl.ChannelCalMap_count(self, x) - - def erase(self, *args): - return _mscl.ChannelCalMap_erase(self, *args) - - def find(self, x): - return _mscl.ChannelCalMap_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelCalMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelCalMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelCalMap - -# Register ChannelCalMap in _mscl: -_mscl.ChannelCalMap_swigregister(ChannelCalMap) - -class WirelessPollData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessPollData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessPollData___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessPollData___bool__(self) - - def __len__(self): - return _mscl.WirelessPollData___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.WirelessPollData___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.WirelessPollData___delitem__(self, key) - - def has_key(self, key): - return _mscl.WirelessPollData_has_key(self, key) - - def keys(self): - return _mscl.WirelessPollData_keys(self) - - def values(self): - return _mscl.WirelessPollData_values(self) - - def items(self): - return _mscl.WirelessPollData_items(self) - - def __contains__(self, key): - return _mscl.WirelessPollData___contains__(self, key) - - def key_iterator(self): - return _mscl.WirelessPollData_key_iterator(self) - - def value_iterator(self): - return _mscl.WirelessPollData_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.WirelessPollData___setitem__(self, *args) - - def asdict(self): - return _mscl.WirelessPollData_asdict(self) - - def __init__(self, *args): - _mscl.WirelessPollData_swiginit(self, _mscl.new_WirelessPollData(*args)) - - def empty(self): - return _mscl.WirelessPollData_empty(self) - - def size(self): - return _mscl.WirelessPollData_size(self) - - def swap(self, v): - return _mscl.WirelessPollData_swap(self, v) - - def begin(self): - return _mscl.WirelessPollData_begin(self) - - def end(self): - return _mscl.WirelessPollData_end(self) - - def rbegin(self): - return _mscl.WirelessPollData_rbegin(self) - - def rend(self): - return _mscl.WirelessPollData_rend(self) - - def clear(self): - return _mscl.WirelessPollData_clear(self) - - def get_allocator(self): - return _mscl.WirelessPollData_get_allocator(self) - - def count(self, x): - return _mscl.WirelessPollData_count(self, x) - - def erase(self, *args): - return _mscl.WirelessPollData_erase(self, *args) - - def find(self, x): - return _mscl.WirelessPollData_find(self, x) - - def lower_bound(self, x): - return _mscl.WirelessPollData_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.WirelessPollData_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_WirelessPollData - -# Register WirelessPollData in _mscl: -_mscl.WirelessPollData_swigregister(WirelessPollData) - -class ConnectionDebugDataVec(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConnectionDebugDataVec_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConnectionDebugDataVec___nonzero__(self) - - def __bool__(self): - return _mscl.ConnectionDebugDataVec___bool__(self) - - def __len__(self): - return _mscl.ConnectionDebugDataVec___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConnectionDebugDataVec___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConnectionDebugDataVec___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConnectionDebugDataVec___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConnectionDebugDataVec___setitem__(self, *args) - - def pop(self): - return _mscl.ConnectionDebugDataVec_pop(self) - - def append(self, x): - return _mscl.ConnectionDebugDataVec_append(self, x) - - def empty(self): - return _mscl.ConnectionDebugDataVec_empty(self) - - def size(self): - return _mscl.ConnectionDebugDataVec_size(self) - - def swap(self, v): - return _mscl.ConnectionDebugDataVec_swap(self, v) - - def begin(self): - return _mscl.ConnectionDebugDataVec_begin(self) - - def end(self): - return _mscl.ConnectionDebugDataVec_end(self) - - def rbegin(self): - return _mscl.ConnectionDebugDataVec_rbegin(self) - - def rend(self): - return _mscl.ConnectionDebugDataVec_rend(self) - - def clear(self): - return _mscl.ConnectionDebugDataVec_clear(self) - - def get_allocator(self): - return _mscl.ConnectionDebugDataVec_get_allocator(self) - - def pop_back(self): - return _mscl.ConnectionDebugDataVec_pop_back(self) - - def erase(self, *args): - return _mscl.ConnectionDebugDataVec_erase(self, *args) - - def __init__(self, *args): - _mscl.ConnectionDebugDataVec_swiginit(self, _mscl.new_ConnectionDebugDataVec(*args)) - - def push_back(self, x): - return _mscl.ConnectionDebugDataVec_push_back(self, x) - - def front(self): - return _mscl.ConnectionDebugDataVec_front(self) - - def back(self): - return _mscl.ConnectionDebugDataVec_back(self) - - def assign(self, n, x): - return _mscl.ConnectionDebugDataVec_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConnectionDebugDataVec_resize(self, *args) - - def insert(self, *args): - return _mscl.ConnectionDebugDataVec_insert(self, *args) - - def reserve(self, n): - return _mscl.ConnectionDebugDataVec_reserve(self, n) - - def capacity(self): - return _mscl.ConnectionDebugDataVec_capacity(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugDataVec - -# Register ConnectionDebugDataVec in _mscl: -_mscl.ConnectionDebugDataVec_swigregister(ConnectionDebugDataVec) - -class SatellitePRNs(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SatellitePRNs_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SatellitePRNs___nonzero__(self) - - def __bool__(self): - return _mscl.SatellitePRNs___bool__(self) - - def __len__(self): - return _mscl.SatellitePRNs___len__(self) - - def __getslice__(self, i, j): - return _mscl.SatellitePRNs___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SatellitePRNs___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SatellitePRNs___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SatellitePRNs___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SatellitePRNs___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SatellitePRNs___setitem__(self, *args) - - def pop(self): - return _mscl.SatellitePRNs_pop(self) - - def append(self, x): - return _mscl.SatellitePRNs_append(self, x) - - def empty(self): - return _mscl.SatellitePRNs_empty(self) - - def size(self): - return _mscl.SatellitePRNs_size(self) - - def swap(self, v): - return _mscl.SatellitePRNs_swap(self, v) - - def begin(self): - return _mscl.SatellitePRNs_begin(self) - - def end(self): - return _mscl.SatellitePRNs_end(self) - - def rbegin(self): - return _mscl.SatellitePRNs_rbegin(self) - - def rend(self): - return _mscl.SatellitePRNs_rend(self) - - def clear(self): - return _mscl.SatellitePRNs_clear(self) - - def get_allocator(self): - return _mscl.SatellitePRNs_get_allocator(self) - - def pop_back(self): - return _mscl.SatellitePRNs_pop_back(self) - - def erase(self, *args): - return _mscl.SatellitePRNs_erase(self, *args) - - def __init__(self, *args): - _mscl.SatellitePRNs_swiginit(self, _mscl.new_SatellitePRNs(*args)) - - def push_back(self, x): - return _mscl.SatellitePRNs_push_back(self, x) - - def front(self): - return _mscl.SatellitePRNs_front(self) - - def back(self): - return _mscl.SatellitePRNs_back(self) - - def assign(self, n, x): - return _mscl.SatellitePRNs_assign(self, n, x) - - def resize(self, *args): - return _mscl.SatellitePRNs_resize(self, *args) - - def insert(self, *args): - return _mscl.SatellitePRNs_insert(self, *args) - - def reserve(self, n): - return _mscl.SatellitePRNs_reserve(self, n) - - def capacity(self): - return _mscl.SatellitePRNs_capacity(self) - __swig_destroy__ = _mscl.delete_SatellitePRNs - -# Register SatellitePRNs in _mscl: -_mscl.SatellitePRNs_swigregister(SatellitePRNs) - -class Constellations(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Constellations_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Constellations___nonzero__(self) - - def __bool__(self): - return _mscl.Constellations___bool__(self) - - def __len__(self): - return _mscl.Constellations___len__(self) - - def __getslice__(self, i, j): - return _mscl.Constellations___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Constellations___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Constellations___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Constellations___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Constellations___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Constellations___setitem__(self, *args) - - def pop(self): - return _mscl.Constellations_pop(self) - - def append(self, x): - return _mscl.Constellations_append(self, x) - - def empty(self): - return _mscl.Constellations_empty(self) - - def size(self): - return _mscl.Constellations_size(self) - - def swap(self, v): - return _mscl.Constellations_swap(self, v) - - def begin(self): - return _mscl.Constellations_begin(self) - - def end(self): - return _mscl.Constellations_end(self) - - def rbegin(self): - return _mscl.Constellations_rbegin(self) - - def rend(self): - return _mscl.Constellations_rend(self) - - def clear(self): - return _mscl.Constellations_clear(self) - - def get_allocator(self): - return _mscl.Constellations_get_allocator(self) - - def pop_back(self): - return _mscl.Constellations_pop_back(self) - - def erase(self, *args): - return _mscl.Constellations_erase(self, *args) - - def __init__(self, *args): - _mscl.Constellations_swiginit(self, _mscl.new_Constellations(*args)) - - def push_back(self, x): - return _mscl.Constellations_push_back(self, x) - - def front(self): - return _mscl.Constellations_front(self) - - def back(self): - return _mscl.Constellations_back(self) - - def assign(self, n, x): - return _mscl.Constellations_assign(self, n, x) - - def resize(self, *args): - return _mscl.Constellations_resize(self, *args) - - def insert(self, *args): - return _mscl.Constellations_insert(self, *args) - - def reserve(self, n): - return _mscl.Constellations_reserve(self, n) - - def capacity(self): - return _mscl.Constellations_capacity(self) - __swig_destroy__ = _mscl.delete_Constellations - -# Register Constellations in _mscl: -_mscl.Constellations_swigregister(Constellations) - -class HeadingUpdateOptionsList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HeadingUpdateOptionsList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HeadingUpdateOptionsList___nonzero__(self) - - def __bool__(self): - return _mscl.HeadingUpdateOptionsList___bool__(self) - - def __len__(self): - return _mscl.HeadingUpdateOptionsList___len__(self) - - def __getslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HeadingUpdateOptionsList___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___setitem__(self, *args) - - def pop(self): - return _mscl.HeadingUpdateOptionsList_pop(self) - - def append(self, x): - return _mscl.HeadingUpdateOptionsList_append(self, x) - - def empty(self): - return _mscl.HeadingUpdateOptionsList_empty(self) - - def size(self): - return _mscl.HeadingUpdateOptionsList_size(self) - - def swap(self, v): - return _mscl.HeadingUpdateOptionsList_swap(self, v) - - def begin(self): - return _mscl.HeadingUpdateOptionsList_begin(self) - - def end(self): - return _mscl.HeadingUpdateOptionsList_end(self) - - def rbegin(self): - return _mscl.HeadingUpdateOptionsList_rbegin(self) - - def rend(self): - return _mscl.HeadingUpdateOptionsList_rend(self) - - def clear(self): - return _mscl.HeadingUpdateOptionsList_clear(self) - - def get_allocator(self): - return _mscl.HeadingUpdateOptionsList_get_allocator(self) - - def pop_back(self): - return _mscl.HeadingUpdateOptionsList_pop_back(self) - - def erase(self, *args): - return _mscl.HeadingUpdateOptionsList_erase(self, *args) - - def __init__(self, *args): - _mscl.HeadingUpdateOptionsList_swiginit(self, _mscl.new_HeadingUpdateOptionsList(*args)) - - def push_back(self, x): - return _mscl.HeadingUpdateOptionsList_push_back(self, x) - - def front(self): - return _mscl.HeadingUpdateOptionsList_front(self) - - def back(self): - return _mscl.HeadingUpdateOptionsList_back(self) - - def assign(self, n, x): - return _mscl.HeadingUpdateOptionsList_assign(self, n, x) - - def resize(self, *args): - return _mscl.HeadingUpdateOptionsList_resize(self, *args) - - def insert(self, *args): - return _mscl.HeadingUpdateOptionsList_insert(self, *args) - - def reserve(self, n): - return _mscl.HeadingUpdateOptionsList_reserve(self, n) - - def capacity(self): - return _mscl.HeadingUpdateOptionsList_capacity(self) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptionsList - -# Register HeadingUpdateOptionsList in _mscl: -_mscl.HeadingUpdateOptionsList_swigregister(HeadingUpdateOptionsList) - -class AdaptiveMeasurementModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveMeasurementModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveMeasurementModes___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveMeasurementModes___bool__(self) - - def __len__(self): - return _mscl.AdaptiveMeasurementModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveMeasurementModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveMeasurementModes_pop(self) - - def append(self, x): - return _mscl.AdaptiveMeasurementModes_append(self, x) - - def empty(self): - return _mscl.AdaptiveMeasurementModes_empty(self) - - def size(self): - return _mscl.AdaptiveMeasurementModes_size(self) - - def swap(self, v): - return _mscl.AdaptiveMeasurementModes_swap(self, v) - - def begin(self): - return _mscl.AdaptiveMeasurementModes_begin(self) - - def end(self): - return _mscl.AdaptiveMeasurementModes_end(self) - - def rbegin(self): - return _mscl.AdaptiveMeasurementModes_rbegin(self) - - def rend(self): - return _mscl.AdaptiveMeasurementModes_rend(self) - - def clear(self): - return _mscl.AdaptiveMeasurementModes_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveMeasurementModes_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveMeasurementModes_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveMeasurementModes_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveMeasurementModes_swiginit(self, _mscl.new_AdaptiveMeasurementModes(*args)) - - def push_back(self, x): - return _mscl.AdaptiveMeasurementModes_push_back(self, x) - - def front(self): - return _mscl.AdaptiveMeasurementModes_front(self) - - def back(self): - return _mscl.AdaptiveMeasurementModes_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveMeasurementModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveMeasurementModes_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveMeasurementModes_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveMeasurementModes_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveMeasurementModes_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementModes - -# Register AdaptiveMeasurementModes in _mscl: -_mscl.AdaptiveMeasurementModes_swigregister(AdaptiveMeasurementModes) - -class GeometricVectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeometricVectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeometricVectors___nonzero__(self) - - def __bool__(self): - return _mscl.GeometricVectors___bool__(self) - - def __len__(self): - return _mscl.GeometricVectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeometricVectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeometricVectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeometricVectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeometricVectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeometricVectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeometricVectors___setitem__(self, *args) - - def pop(self): - return _mscl.GeometricVectors_pop(self) - - def append(self, x): - return _mscl.GeometricVectors_append(self, x) - - def empty(self): - return _mscl.GeometricVectors_empty(self) - - def size(self): - return _mscl.GeometricVectors_size(self) - - def swap(self, v): - return _mscl.GeometricVectors_swap(self, v) - - def begin(self): - return _mscl.GeometricVectors_begin(self) - - def end(self): - return _mscl.GeometricVectors_end(self) - - def rbegin(self): - return _mscl.GeometricVectors_rbegin(self) - - def rend(self): - return _mscl.GeometricVectors_rend(self) - - def clear(self): - return _mscl.GeometricVectors_clear(self) - - def get_allocator(self): - return _mscl.GeometricVectors_get_allocator(self) - - def pop_back(self): - return _mscl.GeometricVectors_pop_back(self) - - def erase(self, *args): - return _mscl.GeometricVectors_erase(self, *args) - - def __init__(self, *args): - _mscl.GeometricVectors_swiginit(self, _mscl.new_GeometricVectors(*args)) - - def push_back(self, x): - return _mscl.GeometricVectors_push_back(self, x) - - def front(self): - return _mscl.GeometricVectors_front(self) - - def back(self): - return _mscl.GeometricVectors_back(self) - - def assign(self, n, x): - return _mscl.GeometricVectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeometricVectors_resize(self, *args) - - def insert(self, *args): - return _mscl.GeometricVectors_insert(self, *args) - - def reserve(self, n): - return _mscl.GeometricVectors_reserve(self, n) - - def capacity(self): - return _mscl.GeometricVectors_capacity(self) - __swig_destroy__ = _mscl.delete_GeometricVectors - -# Register GeometricVectors in _mscl: -_mscl.GeometricVectors_swigregister(GeometricVectors) - -class Matrix_3x3s(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Matrix_3x3s_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Matrix_3x3s___nonzero__(self) - - def __bool__(self): - return _mscl.Matrix_3x3s___bool__(self) - - def __len__(self): - return _mscl.Matrix_3x3s___len__(self) - - def __getslice__(self, i, j): - return _mscl.Matrix_3x3s___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Matrix_3x3s___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Matrix_3x3s___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Matrix_3x3s___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Matrix_3x3s___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Matrix_3x3s___setitem__(self, *args) - - def pop(self): - return _mscl.Matrix_3x3s_pop(self) - - def append(self, x): - return _mscl.Matrix_3x3s_append(self, x) - - def empty(self): - return _mscl.Matrix_3x3s_empty(self) - - def size(self): - return _mscl.Matrix_3x3s_size(self) - - def swap(self, v): - return _mscl.Matrix_3x3s_swap(self, v) - - def begin(self): - return _mscl.Matrix_3x3s_begin(self) - - def end(self): - return _mscl.Matrix_3x3s_end(self) - - def rbegin(self): - return _mscl.Matrix_3x3s_rbegin(self) - - def rend(self): - return _mscl.Matrix_3x3s_rend(self) - - def clear(self): - return _mscl.Matrix_3x3s_clear(self) - - def get_allocator(self): - return _mscl.Matrix_3x3s_get_allocator(self) - - def pop_back(self): - return _mscl.Matrix_3x3s_pop_back(self) - - def erase(self, *args): - return _mscl.Matrix_3x3s_erase(self, *args) - - def __init__(self, *args): - _mscl.Matrix_3x3s_swiginit(self, _mscl.new_Matrix_3x3s(*args)) - - def push_back(self, x): - return _mscl.Matrix_3x3s_push_back(self, x) - - def front(self): - return _mscl.Matrix_3x3s_front(self) - - def back(self): - return _mscl.Matrix_3x3s_back(self) - - def assign(self, n, x): - return _mscl.Matrix_3x3s_assign(self, n, x) - - def resize(self, *args): - return _mscl.Matrix_3x3s_resize(self, *args) - - def insert(self, *args): - return _mscl.Matrix_3x3s_insert(self, *args) - - def reserve(self, n): - return _mscl.Matrix_3x3s_reserve(self, n) - - def capacity(self): - return _mscl.Matrix_3x3s_capacity(self) - __swig_destroy__ = _mscl.delete_Matrix_3x3s - -# Register Matrix_3x3s in _mscl: -_mscl.Matrix_3x3s_swigregister(Matrix_3x3s) - -class StatusSelectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StatusSelectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StatusSelectors___nonzero__(self) - - def __bool__(self): - return _mscl.StatusSelectors___bool__(self) - - def __len__(self): - return _mscl.StatusSelectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.StatusSelectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StatusSelectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StatusSelectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StatusSelectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StatusSelectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StatusSelectors___setitem__(self, *args) - - def pop(self): - return _mscl.StatusSelectors_pop(self) - - def append(self, x): - return _mscl.StatusSelectors_append(self, x) - - def empty(self): - return _mscl.StatusSelectors_empty(self) - - def size(self): - return _mscl.StatusSelectors_size(self) - - def swap(self, v): - return _mscl.StatusSelectors_swap(self, v) - - def begin(self): - return _mscl.StatusSelectors_begin(self) - - def end(self): - return _mscl.StatusSelectors_end(self) - - def rbegin(self): - return _mscl.StatusSelectors_rbegin(self) - - def rend(self): - return _mscl.StatusSelectors_rend(self) - - def clear(self): - return _mscl.StatusSelectors_clear(self) - - def get_allocator(self): - return _mscl.StatusSelectors_get_allocator(self) - - def pop_back(self): - return _mscl.StatusSelectors_pop_back(self) - - def erase(self, *args): - return _mscl.StatusSelectors_erase(self, *args) - - def __init__(self, *args): - _mscl.StatusSelectors_swiginit(self, _mscl.new_StatusSelectors(*args)) - - def push_back(self, x): - return _mscl.StatusSelectors_push_back(self, x) - - def front(self): - return _mscl.StatusSelectors_front(self) - - def back(self): - return _mscl.StatusSelectors_back(self) - - def assign(self, n, x): - return _mscl.StatusSelectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.StatusSelectors_resize(self, *args) - - def insert(self, *args): - return _mscl.StatusSelectors_insert(self, *args) - - def reserve(self, n): - return _mscl.StatusSelectors_reserve(self, n) - - def capacity(self): - return _mscl.StatusSelectors_capacity(self) - __swig_destroy__ = _mscl.delete_StatusSelectors - -# Register StatusSelectors in _mscl: -_mscl.StatusSelectors_swigregister(StatusSelectors) - -class VehicleModeTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.VehicleModeTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.VehicleModeTypes___nonzero__(self) - - def __bool__(self): - return _mscl.VehicleModeTypes___bool__(self) - - def __len__(self): - return _mscl.VehicleModeTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.VehicleModeTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.VehicleModeTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.VehicleModeTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.VehicleModeTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.VehicleModeTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.VehicleModeTypes___setitem__(self, *args) - - def pop(self): - return _mscl.VehicleModeTypes_pop(self) - - def append(self, x): - return _mscl.VehicleModeTypes_append(self, x) - - def empty(self): - return _mscl.VehicleModeTypes_empty(self) - - def size(self): - return _mscl.VehicleModeTypes_size(self) - - def swap(self, v): - return _mscl.VehicleModeTypes_swap(self, v) - - def begin(self): - return _mscl.VehicleModeTypes_begin(self) - - def end(self): - return _mscl.VehicleModeTypes_end(self) - - def rbegin(self): - return _mscl.VehicleModeTypes_rbegin(self) - - def rend(self): - return _mscl.VehicleModeTypes_rend(self) - - def clear(self): - return _mscl.VehicleModeTypes_clear(self) - - def get_allocator(self): - return _mscl.VehicleModeTypes_get_allocator(self) - - def pop_back(self): - return _mscl.VehicleModeTypes_pop_back(self) - - def erase(self, *args): - return _mscl.VehicleModeTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.VehicleModeTypes_swiginit(self, _mscl.new_VehicleModeTypes(*args)) - - def push_back(self, x): - return _mscl.VehicleModeTypes_push_back(self, x) - - def front(self): - return _mscl.VehicleModeTypes_front(self) - - def back(self): - return _mscl.VehicleModeTypes_back(self) - - def assign(self, n, x): - return _mscl.VehicleModeTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.VehicleModeTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.VehicleModeTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.VehicleModeTypes_reserve(self, n) - - def capacity(self): - return _mscl.VehicleModeTypes_capacity(self) - __swig_destroy__ = _mscl.delete_VehicleModeTypes - -# Register VehicleModeTypes in _mscl: -_mscl.VehicleModeTypes_swigregister(VehicleModeTypes) - -class AdaptiveFilterLevels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveFilterLevels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveFilterLevels___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveFilterLevels___bool__(self) - - def __len__(self): - return _mscl.AdaptiveFilterLevels___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveFilterLevels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveFilterLevels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveFilterLevels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveFilterLevels___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveFilterLevels_pop(self) - - def append(self, x): - return _mscl.AdaptiveFilterLevels_append(self, x) - - def empty(self): - return _mscl.AdaptiveFilterLevels_empty(self) - - def size(self): - return _mscl.AdaptiveFilterLevels_size(self) - - def swap(self, v): - return _mscl.AdaptiveFilterLevels_swap(self, v) - - def begin(self): - return _mscl.AdaptiveFilterLevels_begin(self) - - def end(self): - return _mscl.AdaptiveFilterLevels_end(self) - - def rbegin(self): - return _mscl.AdaptiveFilterLevels_rbegin(self) - - def rend(self): - return _mscl.AdaptiveFilterLevels_rend(self) - - def clear(self): - return _mscl.AdaptiveFilterLevels_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveFilterLevels_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveFilterLevels_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveFilterLevels_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveFilterLevels_swiginit(self, _mscl.new_AdaptiveFilterLevels(*args)) - - def push_back(self, x): - return _mscl.AdaptiveFilterLevels_push_back(self, x) - - def front(self): - return _mscl.AdaptiveFilterLevels_front(self) - - def back(self): - return _mscl.AdaptiveFilterLevels_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveFilterLevels_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveFilterLevels_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveFilterLevels_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveFilterLevels_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveFilterLevels_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveFilterLevels - -# Register AdaptiveFilterLevels in _mscl: -_mscl.AdaptiveFilterLevels_swigregister(AdaptiveFilterLevels) - -class LowPassFilterConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LowPassFilterConfig_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LowPassFilterConfig___nonzero__(self) - - def __bool__(self): - return _mscl.LowPassFilterConfig___bool__(self) - - def __len__(self): - return _mscl.LowPassFilterConfig___len__(self) - - def __getslice__(self, i, j): - return _mscl.LowPassFilterConfig___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LowPassFilterConfig___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LowPassFilterConfig___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LowPassFilterConfig___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LowPassFilterConfig___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LowPassFilterConfig___setitem__(self, *args) - - def pop(self): - return _mscl.LowPassFilterConfig_pop(self) - - def append(self, x): - return _mscl.LowPassFilterConfig_append(self, x) - - def empty(self): - return _mscl.LowPassFilterConfig_empty(self) - - def size(self): - return _mscl.LowPassFilterConfig_size(self) - - def swap(self, v): - return _mscl.LowPassFilterConfig_swap(self, v) - - def begin(self): - return _mscl.LowPassFilterConfig_begin(self) - - def end(self): - return _mscl.LowPassFilterConfig_end(self) - - def rbegin(self): - return _mscl.LowPassFilterConfig_rbegin(self) - - def rend(self): - return _mscl.LowPassFilterConfig_rend(self) - - def clear(self): - return _mscl.LowPassFilterConfig_clear(self) - - def get_allocator(self): - return _mscl.LowPassFilterConfig_get_allocator(self) - - def pop_back(self): - return _mscl.LowPassFilterConfig_pop_back(self) - - def erase(self, *args): - return _mscl.LowPassFilterConfig_erase(self, *args) - - def __init__(self, *args): - _mscl.LowPassFilterConfig_swiginit(self, _mscl.new_LowPassFilterConfig(*args)) - - def push_back(self, x): - return _mscl.LowPassFilterConfig_push_back(self, x) - - def front(self): - return _mscl.LowPassFilterConfig_front(self) - - def back(self): - return _mscl.LowPassFilterConfig_back(self) - - def assign(self, n, x): - return _mscl.LowPassFilterConfig_assign(self, n, x) - - def resize(self, *args): - return _mscl.LowPassFilterConfig_resize(self, *args) - - def insert(self, *args): - return _mscl.LowPassFilterConfig_insert(self, *args) - - def reserve(self, n): - return _mscl.LowPassFilterConfig_reserve(self, n) - - def capacity(self): - return _mscl.LowPassFilterConfig_capacity(self) - __swig_destroy__ = _mscl.delete_LowPassFilterConfig - -# Register LowPassFilterConfig in _mscl: -_mscl.LowPassFilterConfig_swigregister(LowPassFilterConfig) - -class AidingMeasurementSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AidingMeasurementSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AidingMeasurementSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.AidingMeasurementSourceOptions___bool__(self) - - def __len__(self): - return _mscl.AidingMeasurementSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.AidingMeasurementSourceOptions_pop(self) - - def append(self, x): - return _mscl.AidingMeasurementSourceOptions_append(self, x) - - def empty(self): - return _mscl.AidingMeasurementSourceOptions_empty(self) - - def size(self): - return _mscl.AidingMeasurementSourceOptions_size(self) - - def swap(self, v): - return _mscl.AidingMeasurementSourceOptions_swap(self, v) - - def begin(self): - return _mscl.AidingMeasurementSourceOptions_begin(self) - - def end(self): - return _mscl.AidingMeasurementSourceOptions_end(self) - - def rbegin(self): - return _mscl.AidingMeasurementSourceOptions_rbegin(self) - - def rend(self): - return _mscl.AidingMeasurementSourceOptions_rend(self) - - def clear(self): - return _mscl.AidingMeasurementSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.AidingMeasurementSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.AidingMeasurementSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.AidingMeasurementSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.AidingMeasurementSourceOptions_swiginit(self, _mscl.new_AidingMeasurementSourceOptions(*args)) - - def push_back(self, x): - return _mscl.AidingMeasurementSourceOptions_push_back(self, x) - - def front(self): - return _mscl.AidingMeasurementSourceOptions_front(self) - - def back(self): - return _mscl.AidingMeasurementSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.AidingMeasurementSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.AidingMeasurementSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.AidingMeasurementSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.AidingMeasurementSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.AidingMeasurementSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_AidingMeasurementSourceOptions - -# Register AidingMeasurementSourceOptions in _mscl: -_mscl.AidingMeasurementSourceOptions_swigregister(AidingMeasurementSourceOptions) - -class PpsSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.PpsSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.PpsSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.PpsSourceOptions___bool__(self) - - def __len__(self): - return _mscl.PpsSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.PpsSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.PpsSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.PpsSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.PpsSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.PpsSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.PpsSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.PpsSourceOptions_pop(self) - - def append(self, x): - return _mscl.PpsSourceOptions_append(self, x) - - def empty(self): - return _mscl.PpsSourceOptions_empty(self) - - def size(self): - return _mscl.PpsSourceOptions_size(self) - - def swap(self, v): - return _mscl.PpsSourceOptions_swap(self, v) - - def begin(self): - return _mscl.PpsSourceOptions_begin(self) - - def end(self): - return _mscl.PpsSourceOptions_end(self) - - def rbegin(self): - return _mscl.PpsSourceOptions_rbegin(self) - - def rend(self): - return _mscl.PpsSourceOptions_rend(self) - - def clear(self): - return _mscl.PpsSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.PpsSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.PpsSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.PpsSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.PpsSourceOptions_swiginit(self, _mscl.new_PpsSourceOptions(*args)) - - def push_back(self, x): - return _mscl.PpsSourceOptions_push_back(self, x) - - def front(self): - return _mscl.PpsSourceOptions_front(self) - - def back(self): - return _mscl.PpsSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.PpsSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.PpsSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.PpsSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.PpsSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.PpsSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_PpsSourceOptions - -# Register PpsSourceOptions in _mscl: -_mscl.PpsSourceOptions_swigregister(PpsSourceOptions) - -class GeographicSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeographicSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeographicSources___nonzero__(self) - - def __bool__(self): - return _mscl.GeographicSources___bool__(self) - - def __len__(self): - return _mscl.GeographicSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeographicSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeographicSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeographicSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeographicSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeographicSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeographicSources___setitem__(self, *args) - - def pop(self): - return _mscl.GeographicSources_pop(self) - - def append(self, x): - return _mscl.GeographicSources_append(self, x) - - def empty(self): - return _mscl.GeographicSources_empty(self) - - def size(self): - return _mscl.GeographicSources_size(self) - - def swap(self, v): - return _mscl.GeographicSources_swap(self, v) - - def begin(self): - return _mscl.GeographicSources_begin(self) - - def end(self): - return _mscl.GeographicSources_end(self) - - def rbegin(self): - return _mscl.GeographicSources_rbegin(self) - - def rend(self): - return _mscl.GeographicSources_rend(self) - - def clear(self): - return _mscl.GeographicSources_clear(self) - - def get_allocator(self): - return _mscl.GeographicSources_get_allocator(self) - - def pop_back(self): - return _mscl.GeographicSources_pop_back(self) - - def erase(self, *args): - return _mscl.GeographicSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GeographicSources_swiginit(self, _mscl.new_GeographicSources(*args)) - - def push_back(self, x): - return _mscl.GeographicSources_push_back(self, x) - - def front(self): - return _mscl.GeographicSources_front(self) - - def back(self): - return _mscl.GeographicSources_back(self) - - def assign(self, n, x): - return _mscl.GeographicSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeographicSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GeographicSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GeographicSources_reserve(self, n) - - def capacity(self): - return _mscl.GeographicSources_capacity(self) - __swig_destroy__ = _mscl.delete_GeographicSources - -# Register GeographicSources in _mscl: -_mscl.GeographicSources_swigregister(GeographicSources) - -class GnssSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSources___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSources___bool__(self) - - def __len__(self): - return _mscl.GnssSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssSources___setitem__(self, *args) - - def pop(self): - return _mscl.GnssSources_pop(self) - - def append(self, x): - return _mscl.GnssSources_append(self, x) - - def empty(self): - return _mscl.GnssSources_empty(self) - - def size(self): - return _mscl.GnssSources_size(self) - - def swap(self, v): - return _mscl.GnssSources_swap(self, v) - - def begin(self): - return _mscl.GnssSources_begin(self) - - def end(self): - return _mscl.GnssSources_end(self) - - def rbegin(self): - return _mscl.GnssSources_rbegin(self) - - def rend(self): - return _mscl.GnssSources_rend(self) - - def clear(self): - return _mscl.GnssSources_clear(self) - - def get_allocator(self): - return _mscl.GnssSources_get_allocator(self) - - def pop_back(self): - return _mscl.GnssSources_pop_back(self) - - def erase(self, *args): - return _mscl.GnssSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssSources_swiginit(self, _mscl.new_GnssSources(*args)) - - def push_back(self, x): - return _mscl.GnssSources_push_back(self, x) - - def front(self): - return _mscl.GnssSources_front(self) - - def back(self): - return _mscl.GnssSources_back(self) - - def assign(self, n, x): - return _mscl.GnssSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssSources_reserve(self, n) - - def capacity(self): - return _mscl.GnssSources_capacity(self) - __swig_destroy__ = _mscl.delete_GnssSources - -# Register GnssSources in _mscl: -_mscl.GnssSources_swigregister(GnssSources) - -class GnssSignalConfigOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSignalConfigOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSignalConfigOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSignalConfigOptions___bool__(self) - - def __len__(self): - return _mscl.GnssSignalConfigOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GnssSignalConfigOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GnssSignalConfigOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GnssSignalConfigOptions_has_key(self, key) - - def keys(self): - return _mscl.GnssSignalConfigOptions_keys(self) - - def values(self): - return _mscl.GnssSignalConfigOptions_values(self) - - def items(self): - return _mscl.GnssSignalConfigOptions_items(self) - - def __contains__(self, key): - return _mscl.GnssSignalConfigOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GnssSignalConfigOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GnssSignalConfigOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GnssSignalConfigOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GnssSignalConfigOptions_asdict(self) - - def __init__(self, *args): - _mscl.GnssSignalConfigOptions_swiginit(self, _mscl.new_GnssSignalConfigOptions(*args)) - - def empty(self): - return _mscl.GnssSignalConfigOptions_empty(self) - - def size(self): - return _mscl.GnssSignalConfigOptions_size(self) - - def swap(self, v): - return _mscl.GnssSignalConfigOptions_swap(self, v) - - def begin(self): - return _mscl.GnssSignalConfigOptions_begin(self) - - def end(self): - return _mscl.GnssSignalConfigOptions_end(self) - - def rbegin(self): - return _mscl.GnssSignalConfigOptions_rbegin(self) - - def rend(self): - return _mscl.GnssSignalConfigOptions_rend(self) - - def clear(self): - return _mscl.GnssSignalConfigOptions_clear(self) - - def get_allocator(self): - return _mscl.GnssSignalConfigOptions_get_allocator(self) - - def count(self, x): - return _mscl.GnssSignalConfigOptions_count(self, x) - - def erase(self, *args): - return _mscl.GnssSignalConfigOptions_erase(self, *args) - - def find(self, x): - return _mscl.GnssSignalConfigOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GnssSignalConfigOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GnssSignalConfigOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GnssSignalConfigOptions - -# Register GnssSignalConfigOptions in _mscl: -_mscl.GnssSignalConfigOptions_swigregister(GnssSignalConfigOptions) - -class NmeaMessageFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NmeaMessageFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NmeaMessageFormats___nonzero__(self) - - def __bool__(self): - return _mscl.NmeaMessageFormats___bool__(self) - - def __len__(self): - return _mscl.NmeaMessageFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.NmeaMessageFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NmeaMessageFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NmeaMessageFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NmeaMessageFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NmeaMessageFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NmeaMessageFormats___setitem__(self, *args) - - def pop(self): - return _mscl.NmeaMessageFormats_pop(self) - - def append(self, x): - return _mscl.NmeaMessageFormats_append(self, x) - - def empty(self): - return _mscl.NmeaMessageFormats_empty(self) - - def size(self): - return _mscl.NmeaMessageFormats_size(self) - - def swap(self, v): - return _mscl.NmeaMessageFormats_swap(self, v) - - def begin(self): - return _mscl.NmeaMessageFormats_begin(self) - - def end(self): - return _mscl.NmeaMessageFormats_end(self) - - def rbegin(self): - return _mscl.NmeaMessageFormats_rbegin(self) - - def rend(self): - return _mscl.NmeaMessageFormats_rend(self) - - def clear(self): - return _mscl.NmeaMessageFormats_clear(self) - - def get_allocator(self): - return _mscl.NmeaMessageFormats_get_allocator(self) - - def pop_back(self): - return _mscl.NmeaMessageFormats_pop_back(self) - - def erase(self, *args): - return _mscl.NmeaMessageFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.NmeaMessageFormats_swiginit(self, _mscl.new_NmeaMessageFormats(*args)) - - def push_back(self, x): - return _mscl.NmeaMessageFormats_push_back(self, x) - - def front(self): - return _mscl.NmeaMessageFormats_front(self) - - def back(self): - return _mscl.NmeaMessageFormats_back(self) - - def assign(self, n, x): - return _mscl.NmeaMessageFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.NmeaMessageFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.NmeaMessageFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.NmeaMessageFormats_reserve(self, n) - - def capacity(self): - return _mscl.NmeaMessageFormats_capacity(self) - __swig_destroy__ = _mscl.delete_NmeaMessageFormats - -# Register NmeaMessageFormats in _mscl: -_mscl.NmeaMessageFormats_swigregister(NmeaMessageFormats) - -class GpioPinModeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinModeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinModeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinModeOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinModeOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.GpioPinModeOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GpioPinModeOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GpioPinModeOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GpioPinModeOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GpioPinModeOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GpioPinModeOptions___setitem__(self, *args) - - def pop(self): - return _mscl.GpioPinModeOptions_pop(self) - - def append(self, x): - return _mscl.GpioPinModeOptions_append(self, x) - - def empty(self): - return _mscl.GpioPinModeOptions_empty(self) - - def size(self): - return _mscl.GpioPinModeOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinModeOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinModeOptions_begin(self) - - def end(self): - return _mscl.GpioPinModeOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinModeOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinModeOptions_rend(self) - - def clear(self): - return _mscl.GpioPinModeOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinModeOptions_get_allocator(self) - - def pop_back(self): - return _mscl.GpioPinModeOptions_pop_back(self) - - def erase(self, *args): - return _mscl.GpioPinModeOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.GpioPinModeOptions_swiginit(self, _mscl.new_GpioPinModeOptions(*args)) - - def push_back(self, x): - return _mscl.GpioPinModeOptions_push_back(self, x) - - def front(self): - return _mscl.GpioPinModeOptions_front(self) - - def back(self): - return _mscl.GpioPinModeOptions_back(self) - - def assign(self, n, x): - return _mscl.GpioPinModeOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.GpioPinModeOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.GpioPinModeOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.GpioPinModeOptions_reserve(self, n) - - def capacity(self): - return _mscl.GpioPinModeOptions_capacity(self) - __swig_destroy__ = _mscl.delete_GpioPinModeOptions - -# Register GpioPinModeOptions in _mscl: -_mscl.GpioPinModeOptions_swigregister(GpioPinModeOptions) - -class GpioBehaviorModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioBehaviorModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioBehaviorModes___nonzero__(self) - - def __bool__(self): - return _mscl.GpioBehaviorModes___bool__(self) - - def __len__(self): - return _mscl.GpioBehaviorModes___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioBehaviorModes___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioBehaviorModes___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioBehaviorModes_has_key(self, key) - - def keys(self): - return _mscl.GpioBehaviorModes_keys(self) - - def values(self): - return _mscl.GpioBehaviorModes_values(self) - - def items(self): - return _mscl.GpioBehaviorModes_items(self) - - def __contains__(self, key): - return _mscl.GpioBehaviorModes___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioBehaviorModes_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioBehaviorModes_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioBehaviorModes___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioBehaviorModes_asdict(self) - - def __init__(self, *args): - _mscl.GpioBehaviorModes_swiginit(self, _mscl.new_GpioBehaviorModes(*args)) - - def empty(self): - return _mscl.GpioBehaviorModes_empty(self) - - def size(self): - return _mscl.GpioBehaviorModes_size(self) - - def swap(self, v): - return _mscl.GpioBehaviorModes_swap(self, v) - - def begin(self): - return _mscl.GpioBehaviorModes_begin(self) - - def end(self): - return _mscl.GpioBehaviorModes_end(self) - - def rbegin(self): - return _mscl.GpioBehaviorModes_rbegin(self) - - def rend(self): - return _mscl.GpioBehaviorModes_rend(self) - - def clear(self): - return _mscl.GpioBehaviorModes_clear(self) - - def get_allocator(self): - return _mscl.GpioBehaviorModes_get_allocator(self) - - def count(self, x): - return _mscl.GpioBehaviorModes_count(self, x) - - def erase(self, *args): - return _mscl.GpioBehaviorModes_erase(self, *args) - - def find(self, x): - return _mscl.GpioBehaviorModes_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioBehaviorModes_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioBehaviorModes_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioBehaviorModes - -# Register GpioBehaviorModes in _mscl: -_mscl.GpioBehaviorModes_swigregister(GpioBehaviorModes) - -class GpioFeatureBehaviors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioFeatureBehaviors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioFeatureBehaviors___nonzero__(self) - - def __bool__(self): - return _mscl.GpioFeatureBehaviors___bool__(self) - - def __len__(self): - return _mscl.GpioFeatureBehaviors___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioFeatureBehaviors___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioFeatureBehaviors___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioFeatureBehaviors_has_key(self, key) - - def keys(self): - return _mscl.GpioFeatureBehaviors_keys(self) - - def values(self): - return _mscl.GpioFeatureBehaviors_values(self) - - def items(self): - return _mscl.GpioFeatureBehaviors_items(self) - - def __contains__(self, key): - return _mscl.GpioFeatureBehaviors___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioFeatureBehaviors_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioFeatureBehaviors_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioFeatureBehaviors___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioFeatureBehaviors_asdict(self) - - def __init__(self, *args): - _mscl.GpioFeatureBehaviors_swiginit(self, _mscl.new_GpioFeatureBehaviors(*args)) - - def empty(self): - return _mscl.GpioFeatureBehaviors_empty(self) - - def size(self): - return _mscl.GpioFeatureBehaviors_size(self) - - def swap(self, v): - return _mscl.GpioFeatureBehaviors_swap(self, v) - - def begin(self): - return _mscl.GpioFeatureBehaviors_begin(self) - - def end(self): - return _mscl.GpioFeatureBehaviors_end(self) - - def rbegin(self): - return _mscl.GpioFeatureBehaviors_rbegin(self) - - def rend(self): - return _mscl.GpioFeatureBehaviors_rend(self) - - def clear(self): - return _mscl.GpioFeatureBehaviors_clear(self) - - def get_allocator(self): - return _mscl.GpioFeatureBehaviors_get_allocator(self) - - def count(self, x): - return _mscl.GpioFeatureBehaviors_count(self, x) - - def erase(self, *args): - return _mscl.GpioFeatureBehaviors_erase(self, *args) - - def find(self, x): - return _mscl.GpioFeatureBehaviors_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioFeatureBehaviors_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioFeatureBehaviors_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioFeatureBehaviors - -# Register GpioFeatureBehaviors in _mscl: -_mscl.GpioFeatureBehaviors_swigregister(GpioFeatureBehaviors) - -class GpioPinOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioPinOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioPinOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioPinOptions_has_key(self, key) - - def keys(self): - return _mscl.GpioPinOptions_keys(self) - - def values(self): - return _mscl.GpioPinOptions_values(self) - - def items(self): - return _mscl.GpioPinOptions_items(self) - - def __contains__(self, key): - return _mscl.GpioPinOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioPinOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioPinOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioPinOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioPinOptions_asdict(self) - - def __init__(self, *args): - _mscl.GpioPinOptions_swiginit(self, _mscl.new_GpioPinOptions(*args)) - - def empty(self): - return _mscl.GpioPinOptions_empty(self) - - def size(self): - return _mscl.GpioPinOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinOptions_begin(self) - - def end(self): - return _mscl.GpioPinOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinOptions_rend(self) - - def clear(self): - return _mscl.GpioPinOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinOptions_get_allocator(self) - - def count(self, x): - return _mscl.GpioPinOptions_count(self, x) - - def erase(self, *args): - return _mscl.GpioPinOptions_erase(self, *args) - - def find(self, x): - return _mscl.GpioPinOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioPinOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioPinOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioPinOptions - -# Register GpioPinOptions in _mscl: -_mscl.GpioPinOptions_swigregister(GpioPinOptions) - -class EventInputTriggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventInputTriggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventInputTriggers___nonzero__(self) - - def __bool__(self): - return _mscl.EventInputTriggers___bool__(self) - - def __len__(self): - return _mscl.EventInputTriggers___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventInputTriggers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventInputTriggers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventInputTriggers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventInputTriggers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventInputTriggers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventInputTriggers___setitem__(self, *args) - - def __init__(self, *args): - _mscl.EventInputTriggers_swiginit(self, _mscl.new_EventInputTriggers(*args)) - - def empty(self): - return _mscl.EventInputTriggers_empty(self) - - def size(self): - return _mscl.EventInputTriggers_size(self) - - def swap(self, v): - return _mscl.EventInputTriggers_swap(self, v) - - def begin(self): - return _mscl.EventInputTriggers_begin(self) - - def end(self): - return _mscl.EventInputTriggers_end(self) - - def rbegin(self): - return _mscl.EventInputTriggers_rbegin(self) - - def rend(self): - return _mscl.EventInputTriggers_rend(self) - - def front(self): - return _mscl.EventInputTriggers_front(self) - - def back(self): - return _mscl.EventInputTriggers_back(self) - - def fill(self, u): - return _mscl.EventInputTriggers_fill(self, u) - __swig_destroy__ = _mscl.delete_EventInputTriggers - -# Register EventInputTriggers in _mscl: -_mscl.EventInputTriggers_swigregister(EventInputTriggers) - -class EventTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTypes___nonzero__(self) - - def __bool__(self): - return _mscl.EventTypes___bool__(self) - - def __len__(self): - return _mscl.EventTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTypes___setitem__(self, *args) - - def pop(self): - return _mscl.EventTypes_pop(self) - - def append(self, x): - return _mscl.EventTypes_append(self, x) - - def empty(self): - return _mscl.EventTypes_empty(self) - - def size(self): - return _mscl.EventTypes_size(self) - - def swap(self, v): - return _mscl.EventTypes_swap(self, v) - - def begin(self): - return _mscl.EventTypes_begin(self) - - def end(self): - return _mscl.EventTypes_end(self) - - def rbegin(self): - return _mscl.EventTypes_rbegin(self) - - def rend(self): - return _mscl.EventTypes_rend(self) - - def clear(self): - return _mscl.EventTypes_clear(self) - - def get_allocator(self): - return _mscl.EventTypes_get_allocator(self) - - def pop_back(self): - return _mscl.EventTypes_pop_back(self) - - def erase(self, *args): - return _mscl.EventTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTypes_swiginit(self, _mscl.new_EventTypes(*args)) - - def push_back(self, x): - return _mscl.EventTypes_push_back(self, x) - - def front(self): - return _mscl.EventTypes_front(self) - - def back(self): - return _mscl.EventTypes_back(self) - - def assign(self, n, x): - return _mscl.EventTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTypes_reserve(self, n) - - def capacity(self): - return _mscl.EventTypes_capacity(self) - __swig_destroy__ = _mscl.delete_EventTypes - -# Register EventTypes in _mscl: -_mscl.EventTypes_swigregister(EventTypes) - -class MeasurementReferenceFrames(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MeasurementReferenceFrames_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MeasurementReferenceFrames___nonzero__(self) - - def __bool__(self): - return _mscl.MeasurementReferenceFrames___bool__(self) - - def __len__(self): - return _mscl.MeasurementReferenceFrames___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.MeasurementReferenceFrames___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.MeasurementReferenceFrames___delitem__(self, key) - - def has_key(self, key): - return _mscl.MeasurementReferenceFrames_has_key(self, key) - - def keys(self): - return _mscl.MeasurementReferenceFrames_keys(self) - - def values(self): - return _mscl.MeasurementReferenceFrames_values(self) - - def items(self): - return _mscl.MeasurementReferenceFrames_items(self) - - def __contains__(self, key): - return _mscl.MeasurementReferenceFrames___contains__(self, key) - - def key_iterator(self): - return _mscl.MeasurementReferenceFrames_key_iterator(self) - - def value_iterator(self): - return _mscl.MeasurementReferenceFrames_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.MeasurementReferenceFrames___setitem__(self, *args) - - def asdict(self): - return _mscl.MeasurementReferenceFrames_asdict(self) - - def __init__(self, *args): - _mscl.MeasurementReferenceFrames_swiginit(self, _mscl.new_MeasurementReferenceFrames(*args)) - - def empty(self): - return _mscl.MeasurementReferenceFrames_empty(self) - - def size(self): - return _mscl.MeasurementReferenceFrames_size(self) - - def swap(self, v): - return _mscl.MeasurementReferenceFrames_swap(self, v) - - def begin(self): - return _mscl.MeasurementReferenceFrames_begin(self) - - def end(self): - return _mscl.MeasurementReferenceFrames_end(self) - - def rbegin(self): - return _mscl.MeasurementReferenceFrames_rbegin(self) - - def rend(self): - return _mscl.MeasurementReferenceFrames_rend(self) - - def clear(self): - return _mscl.MeasurementReferenceFrames_clear(self) - - def get_allocator(self): - return _mscl.MeasurementReferenceFrames_get_allocator(self) - - def count(self, x): - return _mscl.MeasurementReferenceFrames_count(self, x) - - def erase(self, *args): - return _mscl.MeasurementReferenceFrames_erase(self, *args) - - def find(self, x): - return _mscl.MeasurementReferenceFrames_find(self, x) - - def lower_bound(self, x): - return _mscl.MeasurementReferenceFrames_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.MeasurementReferenceFrames_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrames - -# Register MeasurementReferenceFrames in _mscl: -_mscl.MeasurementReferenceFrames_swigregister(MeasurementReferenceFrames) - -class Bins(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bins_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bins___nonzero__(self) - - def __bool__(self): - return _mscl.Bins___bool__(self) - - def __len__(self): - return _mscl.Bins___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bins___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bins___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bins___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bins___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bins___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bins___setitem__(self, *args) - - def pop(self): - return _mscl.Bins_pop(self) - - def append(self, x): - return _mscl.Bins_append(self, x) - - def empty(self): - return _mscl.Bins_empty(self) - - def size(self): - return _mscl.Bins_size(self) - - def swap(self, v): - return _mscl.Bins_swap(self, v) - - def begin(self): - return _mscl.Bins_begin(self) - - def end(self): - return _mscl.Bins_end(self) - - def rbegin(self): - return _mscl.Bins_rbegin(self) - - def rend(self): - return _mscl.Bins_rend(self) - - def clear(self): - return _mscl.Bins_clear(self) - - def get_allocator(self): - return _mscl.Bins_get_allocator(self) - - def pop_back(self): - return _mscl.Bins_pop_back(self) - - def erase(self, *args): - return _mscl.Bins_erase(self, *args) - - def __init__(self, *args): - _mscl.Bins_swiginit(self, _mscl.new_Bins(*args)) - - def push_back(self, x): - return _mscl.Bins_push_back(self, x) - - def front(self): - return _mscl.Bins_front(self) - - def back(self): - return _mscl.Bins_back(self) - - def assign(self, n, x): - return _mscl.Bins_assign(self, n, x) - - def insert(self, *args): - return _mscl.Bins_insert(self, *args) - - def reserve(self, n): - return _mscl.Bins_reserve(self, n) - - def capacity(self): - return _mscl.Bins_capacity(self) - __swig_destroy__ = _mscl.delete_Bins - -# Register Bins in _mscl: -_mscl.Bins_swigregister(Bins) - -class Error(Exception): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_swiginit(self, _mscl.new_Error(*args)) - __swig_destroy__ = _mscl.delete_Error - - def what(self): - return _mscl.Error_what(self) - - def __str__(self): - return _mscl.Error___str__(self) - -# Register Error in _mscl: -_mscl.Error_swigregister(Error) - -class Error_NotSupported(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NotSupported_swiginit(self, _mscl.new_Error_NotSupported(*args)) - __swig_destroy__ = _mscl.delete_Error_NotSupported - -# Register Error_NotSupported in _mscl: -_mscl.Error_NotSupported_swigregister(Error_NotSupported) - -class Error_NoData(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NoData_swiginit(self, _mscl.new_Error_NoData(*args)) - __swig_destroy__ = _mscl.delete_Error_NoData - -# Register Error_NoData in _mscl: -_mscl.Error_NoData_swigregister(Error_NoData) - -class Error_BadDataType(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Error_BadDataType_swiginit(self, _mscl.new_Error_BadDataType()) - __swig_destroy__ = _mscl.delete_Error_BadDataType - -# Register Error_BadDataType in _mscl: -_mscl.Error_BadDataType_swigregister(Error_BadDataType) - -class Error_UnknownSampleRate(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_UnknownSampleRate_swiginit(self, _mscl.new_Error_UnknownSampleRate(*args)) - __swig_destroy__ = _mscl.delete_Error_UnknownSampleRate - -# Register Error_UnknownSampleRate in _mscl: -_mscl.Error_UnknownSampleRate_swigregister(Error_UnknownSampleRate) - -class Error_Communication(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Communication_swiginit(self, _mscl.new_Error_Communication(*args)) - __swig_destroy__ = _mscl.delete_Error_Communication - -# Register Error_Communication in _mscl: -_mscl.Error_Communication_swigregister(Error_Communication) - -class Error_NodeCommunication(Error_Communication): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NodeCommunication_swiginit(self, _mscl.new_Error_NodeCommunication(*args)) - - def nodeAddress(self): - return _mscl.Error_NodeCommunication_nodeAddress(self) - __swig_destroy__ = _mscl.delete_Error_NodeCommunication - -# Register Error_NodeCommunication in _mscl: -_mscl.Error_NodeCommunication_swigregister(Error_NodeCommunication) - -class Error_Connection(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Connection_swiginit(self, _mscl.new_Error_Connection(*args)) - __swig_destroy__ = _mscl.delete_Error_Connection - - def code(self): - return _mscl.Error_Connection_code(self) - - def value(self): - return _mscl.Error_Connection_value(self) - -# Register Error_Connection in _mscl: -_mscl.Error_Connection_swigregister(Error_Connection) - -class Error_InvalidSerialPort(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code): - _mscl.Error_InvalidSerialPort_swiginit(self, _mscl.new_Error_InvalidSerialPort(code)) - __swig_destroy__ = _mscl.delete_Error_InvalidSerialPort - -# Register Error_InvalidSerialPort in _mscl: -_mscl.Error_InvalidSerialPort_swigregister(Error_InvalidSerialPort) - -class Error_InvalidTcpServer(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidTcpServer_swiginit(self, _mscl.new_Error_InvalidTcpServer(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidTcpServer - -# Register Error_InvalidTcpServer in _mscl: -_mscl.Error_InvalidTcpServer_swigregister(Error_InvalidTcpServer) - -class Error_InvalidUnixSocket(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidUnixSocket_swiginit(self, _mscl.new_Error_InvalidUnixSocket(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidUnixSocket - -# Register Error_InvalidUnixSocket in _mscl: -_mscl.Error_InvalidUnixSocket_swigregister(Error_InvalidUnixSocket) - -class Error_MipCmdFailed(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_MipCmdFailed_swiginit(self, _mscl.new_Error_MipCmdFailed(*args)) - __swig_destroy__ = _mscl.delete_Error_MipCmdFailed - - def code(self): - return _mscl.Error_MipCmdFailed_code(self) - - def value(self): - return _mscl.Error_MipCmdFailed_value(self) - -# Register Error_MipCmdFailed in _mscl: -_mscl.Error_MipCmdFailed_swigregister(Error_MipCmdFailed) - -class Error_InvalidConfig(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_InvalidConfig_swiginit(self, _mscl.new_Error_InvalidConfig(*args)) - __swig_destroy__ = _mscl.delete_Error_InvalidConfig - - def issues(self): - return _mscl.Error_InvalidConfig_issues(self) - -# Register Error_InvalidConfig in _mscl: -_mscl.Error_InvalidConfig_swigregister(Error_InvalidConfig) - -class Error_InvalidNodeConfig(Error_InvalidConfig): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, issues, nodeAddress): - _mscl.Error_InvalidNodeConfig_swiginit(self, _mscl.new_Error_InvalidNodeConfig(issues, nodeAddress)) - __swig_destroy__ = _mscl.delete_Error_InvalidNodeConfig - - def nodeAddress(self): - return _mscl.Error_InvalidNodeConfig_nodeAddress(self) - -# Register Error_InvalidNodeConfig in _mscl: -_mscl.Error_InvalidNodeConfig_swigregister(Error_InvalidNodeConfig) - - - diff --git a/mscl_release_assets/mscl-arm64-Python3.11-v67.0.0/_mscl.so b/mscl_release_assets/mscl-arm64-Python3.11-v67.0.0/_mscl.so deleted file mode 100644 index 8df44f4..0000000 Binary files a/mscl_release_assets/mscl-arm64-Python3.11-v67.0.0/_mscl.so and /dev/null differ diff --git a/mscl_release_assets/mscl-arm64-Python3.11-v67.0.0/mscl.py b/mscl_release_assets/mscl-arm64-Python3.11-v67.0.0/mscl.py deleted file mode 100644 index daa6217..0000000 --- a/mscl_release_assets/mscl-arm64-Python3.11-v67.0.0/mscl.py +++ /dev/null @@ -1,18376 +0,0 @@ -# This file was automatically generated by SWIG (http://www.swig.org). -# Version 4.0.1 -# -# Do not make changes to this file unless you know what you are doing--modify -# the SWIG interface file instead. - -from sys import version_info as _swig_python_version_info -if _swig_python_version_info < (2, 7, 0): - raise RuntimeError("Python 2.7 or later required") - -# Import the low-level C/C++ module -if __package__ or "." in __name__: - from . import _mscl -else: - import _mscl - -try: - import builtins as __builtin__ -except ImportError: - import __builtin__ - -def _swig_repr(self): - try: - strthis = "proxy of " + self.this.__repr__() - except __builtin__.Exception: - strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - - -def _swig_setattr_nondynamic_instance_variable(set): - def set_instance_attr(self, name, value): - if name == "thisown": - self.this.own(value) - elif name == "this": - set(self, name, value) - elif hasattr(self, name) and isinstance(getattr(type(self), name), property): - set(self, name, value) - else: - raise AttributeError("You cannot add instance attributes to %s" % self) - return set_instance_attr - - -def _swig_setattr_nondynamic_class_variable(set): - def set_class_attr(cls, name, value): - if hasattr(cls, name) and not isinstance(getattr(cls, name), property): - set(cls, name, value) - else: - raise AttributeError("You cannot add class attributes to %s" % cls) - return set_class_attr - - -def _swig_add_metaclass(metaclass): - """Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass""" - def wrapper(cls): - return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy()) - return wrapper - - -class _SwigNonDynamicMeta(type): - """Meta class to enforce nondynamic attributes (no new attributes) for a class""" - __setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__) - - -class SwigPyIterator(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_SwigPyIterator - - def value(self): - return _mscl.SwigPyIterator_value(self) - - def incr(self, n=1): - return _mscl.SwigPyIterator_incr(self, n) - - def decr(self, n=1): - return _mscl.SwigPyIterator_decr(self, n) - - def distance(self, x): - return _mscl.SwigPyIterator_distance(self, x) - - def equal(self, x): - return _mscl.SwigPyIterator_equal(self, x) - - def copy(self): - return _mscl.SwigPyIterator_copy(self) - - def next(self): - return _mscl.SwigPyIterator_next(self) - - def __next__(self): - return _mscl.SwigPyIterator___next__(self) - - def previous(self): - return _mscl.SwigPyIterator_previous(self) - - def advance(self, n): - return _mscl.SwigPyIterator_advance(self, n) - - def __eq__(self, x): - return _mscl.SwigPyIterator___eq__(self, x) - - def __ne__(self, x): - return _mscl.SwigPyIterator___ne__(self, x) - - def __iadd__(self, n): - return _mscl.SwigPyIterator___iadd__(self, n) - - def __isub__(self, n): - return _mscl.SwigPyIterator___isub__(self, n) - - def __add__(self, n): - return _mscl.SwigPyIterator___add__(self, n) - - def __sub__(self, *args): - return _mscl.SwigPyIterator___sub__(self, *args) - def __iter__(self): - return self - -# Register SwigPyIterator in _mscl: -_mscl.SwigPyIterator_swigregister(SwigPyIterator) - -SHARED_PTR_DISOWN = _mscl.SHARED_PTR_DISOWN -valueType_float = _mscl.valueType_float -valueType_double = _mscl.valueType_double -valueType_uint8 = _mscl.valueType_uint8 -valueType_uint16 = _mscl.valueType_uint16 -valueType_uint32 = _mscl.valueType_uint32 -valueType_int16 = _mscl.valueType_int16 -valueType_int32 = _mscl.valueType_int32 -valueType_bool = _mscl.valueType_bool -valueType_Vector = _mscl.valueType_Vector -valueType_Matrix = _mscl.valueType_Matrix -valueType_Timestamp = _mscl.valueType_Timestamp -valueType_string = _mscl.valueType_string -valueType_Bytes = _mscl.valueType_Bytes -valueType_StructuralHealth = _mscl.valueType_StructuralHealth -valueType_RfSweep = _mscl.valueType_RfSweep -valueType_ChannelMask = _mscl.valueType_ChannelMask -valueType_int8 = _mscl.valueType_int8 -valueType_uint64 = _mscl.valueType_uint64 -deviceState_idle = _mscl.deviceState_idle -deviceState_sleep = _mscl.deviceState_sleep -deviceState_sampling = _mscl.deviceState_sampling -deviceState_sampling_lostBeacon = _mscl.deviceState_sampling_lostBeacon -deviceState_sampling_inactive = _mscl.deviceState_sampling_inactive -deviceState_unknown = _mscl.deviceState_unknown -class BitMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BitMask_swiginit(self, _mscl.new_BitMask(*args)) - __swig_destroy__ = _mscl.delete_BitMask - - def __eq__(self, other): - return _mscl.BitMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.BitMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.BitMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.BitMask___gt__(self, other) - - def fromMask(self, val): - return _mscl.BitMask_fromMask(self, val) - - def toMask(self): - return _mscl.BitMask_toMask(self) - - def enabledCount(self): - return _mscl.BitMask_enabledCount(self) - - def enabled(self, bitIndex): - return _mscl.BitMask_enabled(self, bitIndex) - - def enable(self, bitIndex, enable=True): - return _mscl.BitMask_enable(self, bitIndex, enable) - - def lastBitEnabled(self): - return _mscl.BitMask_lastBitEnabled(self) - -# Register BitMask in _mscl: -_mscl.BitMask_swigregister(BitMask) - -class ChannelMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_CHANNELS = _mscl.ChannelMask_MAX_CHANNELS - - def __init__(self, *args): - _mscl.ChannelMask_swiginit(self, _mscl.new_ChannelMask(*args)) - __swig_destroy__ = _mscl.delete_ChannelMask - - def __eq__(self, other): - return _mscl.ChannelMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.ChannelMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.ChannelMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.ChannelMask___gt__(self, other) - - def fromMask(self, channelMask): - return _mscl.ChannelMask_fromMask(self, channelMask) - - def toMask(self): - return _mscl.ChannelMask_toMask(self) - - def count(self): - return _mscl.ChannelMask_count(self) - - def enabled(self, channel): - return _mscl.ChannelMask_enabled(self, channel) - - def enable(self, channel, enable=True): - return _mscl.ChannelMask_enable(self, channel, enable) - - def lastChEnabled(self): - return _mscl.ChannelMask_lastChEnabled(self) - -# Register ChannelMask in _mscl: -_mscl.ChannelMask_swigregister(ChannelMask) - -class Value(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_Value - - def storedAs(self): - return _mscl.Value_storedAs(self) - - def as_float(self): - return _mscl.Value_as_float(self) - - def as_double(self): - return _mscl.Value_as_double(self) - - def as_uint8(self): - return _mscl.Value_as_uint8(self) - - def as_uint16(self): - return _mscl.Value_as_uint16(self) - - def as_uint32(self): - return _mscl.Value_as_uint32(self) - - def as_uint64(self): - return _mscl.Value_as_uint64(self) - - def as_int8(self): - return _mscl.Value_as_int8(self) - - def as_int16(self): - return _mscl.Value_as_int16(self) - - def as_int32(self): - return _mscl.Value_as_int32(self) - - def as_bool(self): - return _mscl.Value_as_bool(self) - - def as_ChannelMask(self): - return _mscl.Value_as_ChannelMask(self) - - def as_string(self): - return _mscl.Value_as_string(self) - - def __init__(self): - _mscl.Value_swiginit(self, _mscl.new_Value()) - -# Register Value in _mscl: -_mscl.Value_swigregister(Value) - -class Bin(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, start, end, count): - _mscl.Bin_swiginit(self, _mscl.new_Bin(start, end, count)) - - def start(self): - return _mscl.Bin_start(self) - - def end(self): - return _mscl.Bin_end(self) - - def count(self): - return _mscl.Bin_count(self) - __swig_destroy__ = _mscl.delete_Bin - -# Register Bin in _mscl: -_mscl.Bin_swigregister(Bin) - -class Histogram(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, binsStart, binsSize): - _mscl.Histogram_swiginit(self, _mscl.new_Histogram(binsStart, binsSize)) - - def binsStart(self): - return _mscl.Histogram_binsStart(self) - - def binsSize(self): - return _mscl.Histogram_binsSize(self) - - def bins(self): - return _mscl.Histogram_bins(self) - - def addBin(self, bin): - return _mscl.Histogram_addBin(self, bin) - __swig_destroy__ = _mscl.delete_Histogram - -# Register Histogram in _mscl: -_mscl.Histogram_swigregister(Histogram) - -class Timestamp(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INTERNAL = _mscl.Timestamp_INTERNAL - EXTERNAL = _mscl.Timestamp_EXTERNAL - TIME_OF_ARRIVAL = _mscl.Timestamp_TIME_OF_ARRIVAL - GPS = _mscl.Timestamp_GPS - UNIX = _mscl.Timestamp_UNIX - UTC = _mscl.Timestamp_UTC - - def __init__(self, *args): - _mscl.Timestamp_swiginit(self, _mscl.new_Timestamp(*args)) - __swig_destroy__ = _mscl.delete_Timestamp - - def nanoseconds(self, *args): - return _mscl.Timestamp_nanoseconds(self, *args) - - def seconds(self, *args): - return _mscl.Timestamp_seconds(self, *args) - - def storedEpoch(self): - return _mscl.Timestamp_storedEpoch(self) - - def __str__(self): - return _mscl.Timestamp___str__(self) - - def setTime(self, *args): - return _mscl.Timestamp_setTime(self, *args) - - def setTimeNow(self): - return _mscl.Timestamp_setTimeNow(self) - - @staticmethod - def timeNow(): - return _mscl.Timestamp_timeNow() - - @staticmethod - def setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - - @staticmethod - def getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - - @staticmethod - def gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - - @staticmethod - def utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -# Register Timestamp in _mscl: -_mscl.Timestamp_swigregister(Timestamp) - -def Timestamp_timeNow(): - return _mscl.Timestamp_timeNow() - -def Timestamp_setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - -def Timestamp_getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - -def Timestamp_gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - -def Timestamp_utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -class TimeSpan(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - NANOSECONDS_PER_MICROSECOND = _mscl.TimeSpan_NANOSECONDS_PER_MICROSECOND - NANOSECONDS_PER_MILLISECOND = _mscl.TimeSpan_NANOSECONDS_PER_MILLISECOND - NANOSECONDS_PER_SECOND = _mscl.TimeSpan_NANOSECONDS_PER_SECOND - - def getNanoseconds(self): - return _mscl.TimeSpan_getNanoseconds(self) - - def getMicroseconds(self): - return _mscl.TimeSpan_getMicroseconds(self) - - def getMilliseconds(self): - return _mscl.TimeSpan_getMilliseconds(self) - - def getSeconds(self): - return _mscl.TimeSpan_getSeconds(self) - - @staticmethod - def NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - - @staticmethod - def MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - - @staticmethod - def MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - - @staticmethod - def Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - - @staticmethod - def Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - - @staticmethod - def Hours(hours): - return _mscl.TimeSpan_Hours(hours) - - @staticmethod - def Days(days): - return _mscl.TimeSpan_Days(days) - __swig_destroy__ = _mscl.delete_TimeSpan - -# Register TimeSpan in _mscl: -_mscl.TimeSpan_swigregister(TimeSpan) - -def TimeSpan_NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - -def TimeSpan_MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - -def TimeSpan_MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - -def TimeSpan_Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - -def TimeSpan_Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - -def TimeSpan_Hours(hours): - return _mscl.TimeSpan_Hours(hours) - -def TimeSpan_Days(days): - return _mscl.TimeSpan_Days(days) - -class Version(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Version_swiginit(self, _mscl.new_Version(*args)) - - def __eq__(self, cmp): - return _mscl.Version___eq__(self, cmp) - - def __ne__(self, cmp): - return _mscl.Version___ne__(self, cmp) - - def __lt__(self, cmp): - return _mscl.Version___lt__(self, cmp) - - def __le__(self, cmp): - return _mscl.Version___le__(self, cmp) - - def __gt__(self, cmp): - return _mscl.Version___gt__(self, cmp) - - def __ge__(self, cmp): - return _mscl.Version___ge__(self, cmp) - - def __str__(self): - return _mscl.Version___str__(self) - - def fromString(self, strVersion): - return _mscl.Version_fromString(self, strVersion) - - def majorPart(self): - return _mscl.Version_majorPart(self) - - def minorPart(self): - return _mscl.Version_minorPart(self) - - def patchPart(self): - return _mscl.Version_patchPart(self) - __swig_destroy__ = _mscl.delete_Version - -# Register Version in _mscl: -_mscl.Version_swigregister(Version) - -class DeviceInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.DeviceInfo_connectionType_serial - connectionType_tcp = _mscl.DeviceInfo_connectionType_tcp - - def __init__(self, *args): - _mscl.DeviceInfo_swiginit(self, _mscl.new_DeviceInfo(*args)) - - def description(self): - return _mscl.DeviceInfo_description(self) - - def serial(self): - return _mscl.DeviceInfo_serial(self) - - def baudRate(self): - return _mscl.DeviceInfo_baudRate(self) - - def connectionType(self): - return _mscl.DeviceInfo_connectionType(self) - __swig_destroy__ = _mscl.delete_DeviceInfo - -# Register DeviceInfo in _mscl: -_mscl.DeviceInfo_swigregister(DeviceInfo) -cvar = _mscl.cvar -MSCL_VERSION = cvar.MSCL_VERSION - -class Devices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def listBaseStations(): - return _mscl.Devices_listBaseStations() - - @staticmethod - def listInertialDevices(): - return _mscl.Devices_listInertialDevices() - - @staticmethod - def listPorts(): - return _mscl.Devices_listPorts() - __swig_destroy__ = _mscl.delete_Devices - -# Register Devices in _mscl: -_mscl.Devices_swigregister(Devices) - -def Devices_listBaseStations(): - return _mscl.Devices_listBaseStations() - -def Devices_listInertialDevices(): - return _mscl.Devices_listInertialDevices() - -def Devices_listPorts(): - return _mscl.Devices_listPorts() - -class ConnectionDebugData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ConnectionDebugData_swiginit(self, _mscl.new_ConnectionDebugData(*args)) - - def fromRead(self): - return _mscl.ConnectionDebugData_fromRead(self) - - def timestamp(self): - return _mscl.ConnectionDebugData_timestamp(self) - - def data(self): - return _mscl.ConnectionDebugData_data(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugData - -# Register ConnectionDebugData in _mscl: -_mscl.ConnectionDebugData_swigregister(ConnectionDebugData) - -class Connection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.Connection_connectionType_serial - connectionType_tcp = _mscl.Connection_connectionType_tcp - connectionType_webSocket = _mscl.Connection_connectionType_webSocket - connectionType_unixSocket = _mscl.Connection_connectionType_unixSocket - - def __init__(self): - _mscl.Connection_swiginit(self, _mscl.new_Connection()) - - @staticmethod - def Serial(*args): - return _mscl.Connection_Serial(*args) - - @staticmethod - def TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - - @staticmethod - def UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - - @staticmethod - def Mock(): - return _mscl.Connection_Mock() - - def description(self): - return _mscl.Connection_description(self) - - def port(self): - return _mscl.Connection_port(self) - - def type(self): - return _mscl.Connection_type(self) - - def disconnect(self): - return _mscl.Connection_disconnect(self) - - def reconnect(self): - return _mscl.Connection_reconnect(self) - - def write(self, bytes): - return _mscl.Connection_write(self, bytes) - - def writeStr(self, bytes): - return _mscl.Connection_writeStr(self, bytes) - - def clearBuffer(self): - return _mscl.Connection_clearBuffer(self) - - def byteReadPos(self): - return _mscl.Connection_byteReadPos(self) - - def byteAppendPos(self): - return _mscl.Connection_byteAppendPos(self) - - def rawByteMode(self, *args): - return _mscl.Connection_rawByteMode(self, *args) - - def getRawBytes(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytes(self, timeout, maxBytes, minBytes) - - def getRawBytesStr(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytesStr(self, timeout, maxBytes, minBytes) - - def getRawBytesWithPattern(self, pattern, timeout=0): - return _mscl.Connection_getRawBytesWithPattern(self, pattern, timeout) - - def debugMode(self, *args): - return _mscl.Connection_debugMode(self, *args) - - def getDebugData(self, timeout=0): - return _mscl.Connection_getDebugData(self, timeout) - - def updateBaudRate(self, baudRate): - return _mscl.Connection_updateBaudRate(self, baudRate) - __swig_destroy__ = _mscl.delete_Connection - -# Register Connection in _mscl: -_mscl.Connection_swigregister(Connection) - -def Connection_Serial(*args): - return _mscl.Connection_Serial(*args) - -def Connection_TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - -def Connection_UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - -def Connection_Mock(): - return _mscl.Connection_Mock() - -class WirelessTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - beacon_none = _mscl.WirelessTypes_beacon_none - beacon_internalTimer = _mscl.WirelessTypes_beacon_internalTimer - beacon_internalPPS = _mscl.WirelessTypes_beacon_internalPPS - beacon_externalPPS = _mscl.WirelessTypes_beacon_externalPPS - microcontroller_18F452 = _mscl.WirelessTypes_microcontroller_18F452 - microcontroller_18F4620 = _mscl.WirelessTypes_microcontroller_18F4620 - microcontroller_18F46K20 = _mscl.WirelessTypes_microcontroller_18F46K20 - microcontroller_18F67K90 = _mscl.WirelessTypes_microcontroller_18F67K90 - microcontroller_EFM32WG990F256 = _mscl.WirelessTypes_microcontroller_EFM32WG990F256 - microcontroller_EFR32FG1P132F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32FG1P132F256GM48 - microcontroller_EFR32MG1P232F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32MG1P232F256GM48 - collectionMethod_logOnly = _mscl.WirelessTypes_collectionMethod_logOnly - collectionMethod_transmitOnly = _mscl.WirelessTypes_collectionMethod_transmitOnly - collectionMethod_logAndTransmit = _mscl.WirelessTypes_collectionMethod_logAndTransmit - dataType_first = _mscl.WirelessTypes_dataType_first - dataType_uint16_shifted = _mscl.WirelessTypes_dataType_uint16_shifted - dataType_float32 = _mscl.WirelessTypes_dataType_float32 - dataType_uint16_12bitRes = _mscl.WirelessTypes_dataType_uint16_12bitRes - dataType_uint32 = _mscl.WirelessTypes_dataType_uint32 - dataType_uint16 = _mscl.WirelessTypes_dataType_uint16 - dataType_float32_noCals = _mscl.WirelessTypes_dataType_float32_noCals - dataType_uint24_18bitRes = _mscl.WirelessTypes_dataType_uint24_18bitRes - dataType_uint16_18bitTrunc = _mscl.WirelessTypes_dataType_uint16_18bitTrunc - dataType_int24_20bit = _mscl.WirelessTypes_dataType_int24_20bit - dataType_int16_20bitTrunc = _mscl.WirelessTypes_dataType_int16_20bitTrunc - dataType_uint24 = _mscl.WirelessTypes_dataType_uint24 - dataType_uint16_24bitTrunc = _mscl.WirelessTypes_dataType_uint16_24bitTrunc - dataType_int16_x10 = _mscl.WirelessTypes_dataType_int16_x10 - dataType_last = _mscl.WirelessTypes_dataType_last - dataFormat_raw_uint16 = _mscl.WirelessTypes_dataFormat_raw_uint16 - dataFormat_cal_float = _mscl.WirelessTypes_dataFormat_cal_float - dataFormat_raw_uint24 = _mscl.WirelessTypes_dataFormat_raw_uint24 - dataFormat_raw_int24 = _mscl.WirelessTypes_dataFormat_raw_int24 - dataFormat_raw_int16 = _mscl.WirelessTypes_dataFormat_raw_int16 - dataFormat_cal_int16_x10 = _mscl.WirelessTypes_dataFormat_cal_int16_x10 - syncMode_continuous = _mscl.WirelessTypes_syncMode_continuous - syncMode_burst = _mscl.WirelessTypes_syncMode_burst - samplingMode_sync = _mscl.WirelessTypes_samplingMode_sync - samplingMode_syncBurst = _mscl.WirelessTypes_samplingMode_syncBurst - samplingMode_nonSync = _mscl.WirelessTypes_samplingMode_nonSync - samplingMode_armedDatalog = _mscl.WirelessTypes_samplingMode_armedDatalog - samplingMode_syncEvent = _mscl.WirelessTypes_samplingMode_syncEvent - samplingMode_nonSyncEvent = _mscl.WirelessTypes_samplingMode_nonSyncEvent - defaultMode_idle = _mscl.WirelessTypes_defaultMode_idle - defaultMode_ldc = _mscl.WirelessTypes_defaultMode_ldc - defaultMode_datalog = _mscl.WirelessTypes_defaultMode_datalog - defaultMode_sleep = _mscl.WirelessTypes_defaultMode_sleep - defaultMode_sync = _mscl.WirelessTypes_defaultMode_sync - freq_unknown = _mscl.WirelessTypes_freq_unknown - freq_11 = _mscl.WirelessTypes_freq_11 - freq_12 = _mscl.WirelessTypes_freq_12 - freq_13 = _mscl.WirelessTypes_freq_13 - freq_14 = _mscl.WirelessTypes_freq_14 - freq_15 = _mscl.WirelessTypes_freq_15 - freq_16 = _mscl.WirelessTypes_freq_16 - freq_17 = _mscl.WirelessTypes_freq_17 - freq_18 = _mscl.WirelessTypes_freq_18 - freq_19 = _mscl.WirelessTypes_freq_19 - freq_20 = _mscl.WirelessTypes_freq_20 - freq_21 = _mscl.WirelessTypes_freq_21 - freq_22 = _mscl.WirelessTypes_freq_22 - freq_23 = _mscl.WirelessTypes_freq_23 - freq_24 = _mscl.WirelessTypes_freq_24 - freq_25 = _mscl.WirelessTypes_freq_25 - freq_26 = _mscl.WirelessTypes_freq_26 - power_20dBm = _mscl.WirelessTypes_power_20dBm - power_16dBm = _mscl.WirelessTypes_power_16dBm - power_15dBm = _mscl.WirelessTypes_power_15dBm - power_12dBm = _mscl.WirelessTypes_power_12dBm - power_11dBm = _mscl.WirelessTypes_power_11dBm - power_10dBm = _mscl.WirelessTypes_power_10dBm - power_5dBm = _mscl.WirelessTypes_power_5dBm - power_1dBm = _mscl.WirelessTypes_power_1dBm - power_0dBm = _mscl.WirelessTypes_power_0dBm - retransmission_off = _mscl.WirelessTypes_retransmission_off - retransmission_on = _mscl.WirelessTypes_retransmission_on - retransmission_disabled = _mscl.WirelessTypes_retransmission_disabled - trigger_userInit = _mscl.WirelessTypes_trigger_userInit - trigger_ceiling = _mscl.WirelessTypes_trigger_ceiling - trigger_floor = _mscl.WirelessTypes_trigger_floor - trigger_rampUp = _mscl.WirelessTypes_trigger_rampUp - trigger_rampDown = _mscl.WirelessTypes_trigger_rampDown - equation_none = _mscl.WirelessTypes_equation_none - equation_standard = _mscl.WirelessTypes_equation_standard - unit_none = _mscl.WirelessTypes_unit_none - unit_other_bits = _mscl.WirelessTypes_unit_other_bits - unit_strain_strain = _mscl.WirelessTypes_unit_strain_strain - unit_strain_microStrain = _mscl.WirelessTypes_unit_strain_microStrain - unit_accel_g = _mscl.WirelessTypes_unit_accel_g - unit_accel_mPerSec2 = _mscl.WirelessTypes_unit_accel_mPerSec2 - unit_volts_volts = _mscl.WirelessTypes_unit_volts_volts - unit_volts_millivolts = _mscl.WirelessTypes_unit_volts_millivolts - unit_volts_microvolts = _mscl.WirelessTypes_unit_volts_microvolts - unit_temp_celsius = _mscl.WirelessTypes_unit_temp_celsius - unit_temp_kelvin = _mscl.WirelessTypes_unit_temp_kelvin - unit_temp_fahrenheit = _mscl.WirelessTypes_unit_temp_fahrenheit - unit_displacement_meters = _mscl.WirelessTypes_unit_displacement_meters - unit_displacement_millimeters = _mscl.WirelessTypes_unit_displacement_millimeters - unit_displacement_micrometers = _mscl.WirelessTypes_unit_displacement_micrometers - unit_force_lbf = _mscl.WirelessTypes_unit_force_lbf - unit_force_newtons = _mscl.WirelessTypes_unit_force_newtons - unit_force_kiloNewtons = _mscl.WirelessTypes_unit_force_kiloNewtons - unit_mass_kilograms = _mscl.WirelessTypes_unit_mass_kilograms - unit_pressure_bar = _mscl.WirelessTypes_unit_pressure_bar - unit_pressure_psi = _mscl.WirelessTypes_unit_pressure_psi - unit_pressure_atm = _mscl.WirelessTypes_unit_pressure_atm - unit_pressure_mmHg = _mscl.WirelessTypes_unit_pressure_mmHg - unit_pressure_pascal = _mscl.WirelessTypes_unit_pressure_pascal - unit_pressure_megaPascal = _mscl.WirelessTypes_unit_pressure_megaPascal - unit_pressure_kiloPascal = _mscl.WirelessTypes_unit_pressure_kiloPascal - unit_angDisplacement_degrees = _mscl.WirelessTypes_unit_angDisplacement_degrees - unit_angVelocity_degreesPerSec = _mscl.WirelessTypes_unit_angVelocity_degreesPerSec - unit_angVelocity_radiansPerSec = _mscl.WirelessTypes_unit_angVelocity_radiansPerSec - unit_other_percent = _mscl.WirelessTypes_unit_other_percent - unit_freq_rpm = _mscl.WirelessTypes_unit_freq_rpm - unit_freq_hertz = _mscl.WirelessTypes_unit_freq_hertz - unit_rh_percentRh = _mscl.WirelessTypes_unit_rh_percentRh - unit_other_mVperV = _mscl.WirelessTypes_unit_other_mVperV - unit_accel_milliG = _mscl.WirelessTypes_unit_accel_milliG - unit_accel_ftPerSec2 = _mscl.WirelessTypes_unit_accel_ftPerSec2 - unit_other_percentLife = _mscl.WirelessTypes_unit_other_percentLife - unit_other_count = _mscl.WirelessTypes_unit_other_count - unit_displacement_feet = _mscl.WirelessTypes_unit_displacement_feet - unit_displacement_inches = _mscl.WirelessTypes_unit_displacement_inches - unit_displacement_yards = _mscl.WirelessTypes_unit_displacement_yards - unit_displacement_miles = _mscl.WirelessTypes_unit_displacement_miles - unit_displacement_nautMiles = _mscl.WirelessTypes_unit_displacement_nautMiles - unit_displacement_thouInch = _mscl.WirelessTypes_unit_displacement_thouInch - unit_displacement_hundInch = _mscl.WirelessTypes_unit_displacement_hundInch - unit_displacement_kilometers = _mscl.WirelessTypes_unit_displacement_kilometers - unit_displacement_centimeters = _mscl.WirelessTypes_unit_displacement_centimeters - unit_irradiance_wattsPerSqMeter = _mscl.WirelessTypes_unit_irradiance_wattsPerSqMeter - unit_par_microEinstein = _mscl.WirelessTypes_unit_par_microEinstein - unit_mass_pound = _mscl.WirelessTypes_unit_mass_pound - unit_power_watt = _mscl.WirelessTypes_unit_power_watt - unit_power_milliwatt = _mscl.WirelessTypes_unit_power_milliwatt - unit_power_horsepower = _mscl.WirelessTypes_unit_power_horsepower - unit_reactivePower_var = _mscl.WirelessTypes_unit_reactivePower_var - unit_energy_wattHour = _mscl.WirelessTypes_unit_energy_wattHour - unit_energy_kiloWattHour = _mscl.WirelessTypes_unit_energy_kiloWattHour - unit_reactiveEnergy_VARh = _mscl.WirelessTypes_unit_reactiveEnergy_VARh - unit_reactiveEnergy_kVARh = _mscl.WirelessTypes_unit_reactiveEnergy_kVARh - unit_current_ampere = _mscl.WirelessTypes_unit_current_ampere - unit_current_milliampere = _mscl.WirelessTypes_unit_current_milliampere - unit_current_microampere = _mscl.WirelessTypes_unit_current_microampere - unit_pressure_millibar = _mscl.WirelessTypes_unit_pressure_millibar - unit_pressure_inHg = _mscl.WirelessTypes_unit_pressure_inHg - unit_rssi_dBm = _mscl.WirelessTypes_unit_rssi_dBm - unit_freq_kiloHertz = _mscl.WirelessTypes_unit_freq_kiloHertz - unit_angDisplacement_radians = _mscl.WirelessTypes_unit_angDisplacement_radians - unit_velocity_metersPerSec = _mscl.WirelessTypes_unit_velocity_metersPerSec - unit_velocity_kilometersPerSec = _mscl.WirelessTypes_unit_velocity_kilometersPerSec - unit_velocity_kilometersPerHr = _mscl.WirelessTypes_unit_velocity_kilometersPerHr - unit_velocity_milesPerHr = _mscl.WirelessTypes_unit_velocity_milesPerHr - unit_velocity_knots = _mscl.WirelessTypes_unit_velocity_knots - unit_volume_cubicMeter = _mscl.WirelessTypes_unit_volume_cubicMeter - unit_volume_cubicFt = _mscl.WirelessTypes_unit_volume_cubicFt - unit_volume_liters = _mscl.WirelessTypes_unit_volume_liters - unit_volume_gallon = _mscl.WirelessTypes_unit_volume_gallon - unit_flowRate_cubicMetersPerSec = _mscl.WirelessTypes_unit_flowRate_cubicMetersPerSec - unit_flowRate_cubicFtPerSec = _mscl.WirelessTypes_unit_flowRate_cubicFtPerSec - unit_torque_newtonMeter = _mscl.WirelessTypes_unit_torque_newtonMeter - unit_torque_footPounds = _mscl.WirelessTypes_unit_torque_footPounds - unit_torque_inchPounds = _mscl.WirelessTypes_unit_torque_inchPounds - unit_time_secs = _mscl.WirelessTypes_unit_time_secs - unit_time_nanosecs = _mscl.WirelessTypes_unit_time_nanosecs - unit_time_microsecs = _mscl.WirelessTypes_unit_time_microsecs - unit_time_millisecs = _mscl.WirelessTypes_unit_time_millisecs - unit_time_minutes = _mscl.WirelessTypes_unit_time_minutes - unit_time_hours = _mscl.WirelessTypes_unit_time_hours - unit_time_days = _mscl.WirelessTypes_unit_time_days - unit_time_weeks = _mscl.WirelessTypes_unit_time_weeks - unit_other_value = _mscl.WirelessTypes_unit_other_value - unit_magneticFlux_gauss = _mscl.WirelessTypes_unit_magneticFlux_gauss - unit_other_gSec = _mscl.WirelessTypes_unit_other_gSec - unit_other_secsPerSec = _mscl.WirelessTypes_unit_other_secsPerSec - unit_rssi_dBHz = _mscl.WirelessTypes_unit_rssi_dBHz - unit_density_kgPerMeter3 = _mscl.WirelessTypes_unit_density_kgPerMeter3 - unit_other_unitless = _mscl.WirelessTypes_unit_other_unitless - unit_velocity_inchesPerSec = _mscl.WirelessTypes_unit_velocity_inchesPerSec - unit_force_kg = _mscl.WirelessTypes_unit_force_kg - unit_rawVoltage_volts = _mscl.WirelessTypes_unit_rawVoltage_volts - unit_rawVoltage_millivolts = _mscl.WirelessTypes_unit_rawVoltage_millivolts - unit_rawVoltage_microvolts = _mscl.WirelessTypes_unit_rawVoltage_microvolts - unit_resistance_ohm = _mscl.WirelessTypes_unit_resistance_ohm - unit_resistance_milliohm = _mscl.WirelessTypes_unit_resistance_milliohm - unit_resistance_kiloohm = _mscl.WirelessTypes_unit_resistance_kiloohm - unit_velocity_mmPerSec = _mscl.WirelessTypes_unit_velocity_mmPerSec - unit_mass_grams = _mscl.WirelessTypes_unit_mass_grams - unit_mass_ton = _mscl.WirelessTypes_unit_mass_ton - unit_mass_tonne = _mscl.WirelessTypes_unit_mass_tonne - chType_none = _mscl.WirelessTypes_chType_none - chType_fullDifferential = _mscl.WirelessTypes_chType_fullDifferential - chType_singleEnded = _mscl.WirelessTypes_chType_singleEnded - chType_battery = _mscl.WirelessTypes_chType_battery - chType_temperature = _mscl.WirelessTypes_chType_temperature - chType_rh = _mscl.WirelessTypes_chType_rh - chType_acceleration = _mscl.WirelessTypes_chType_acceleration - chType_displacement = _mscl.WirelessTypes_chType_displacement - chType_voltage = _mscl.WirelessTypes_chType_voltage - chType_diffTemperature = _mscl.WirelessTypes_chType_diffTemperature - chType_digital = _mscl.WirelessTypes_chType_digital - chType_tilt = _mscl.WirelessTypes_chType_tilt - voltageType_singleEnded = _mscl.WirelessTypes_voltageType_singleEnded - voltageType_differential = _mscl.WirelessTypes_voltageType_differential - settling_4ms = _mscl.WirelessTypes_settling_4ms - settling_8ms = _mscl.WirelessTypes_settling_8ms - settling_16ms = _mscl.WirelessTypes_settling_16ms - settling_32ms = _mscl.WirelessTypes_settling_32ms - settling_40ms = _mscl.WirelessTypes_settling_40ms - settling_48ms = _mscl.WirelessTypes_settling_48ms - settling_60ms = _mscl.WirelessTypes_settling_60ms - settling_101ms_90db = _mscl.WirelessTypes_settling_101ms_90db - settling_120ms_80db = _mscl.WirelessTypes_settling_120ms_80db - settling_120ms_65db = _mscl.WirelessTypes_settling_120ms_65db - settling_160ms_69db = _mscl.WirelessTypes_settling_160ms_69db - settling_200ms = _mscl.WirelessTypes_settling_200ms - transducer_thermocouple = _mscl.WirelessTypes_transducer_thermocouple - transducer_rtd = _mscl.WirelessTypes_transducer_rtd - transducer_thermistor = _mscl.WirelessTypes_transducer_thermistor - tc_uncompensated = _mscl.WirelessTypes_tc_uncompensated - tc_K = _mscl.WirelessTypes_tc_K - tc_J = _mscl.WirelessTypes_tc_J - tc_R = _mscl.WirelessTypes_tc_R - tc_S = _mscl.WirelessTypes_tc_S - tc_T = _mscl.WirelessTypes_tc_T - tc_E = _mscl.WirelessTypes_tc_E - tc_B = _mscl.WirelessTypes_tc_B - tc_N = _mscl.WirelessTypes_tc_N - tc_customPolynomial = _mscl.WirelessTypes_tc_customPolynomial - rtd_uncompensated = _mscl.WirelessTypes_rtd_uncompensated - rtd_pt10 = _mscl.WirelessTypes_rtd_pt10 - rtd_pt50 = _mscl.WirelessTypes_rtd_pt50 - rtd_pt100 = _mscl.WirelessTypes_rtd_pt100 - rtd_pt200 = _mscl.WirelessTypes_rtd_pt200 - rtd_pt500 = _mscl.WirelessTypes_rtd_pt500 - rtd_pt1000 = _mscl.WirelessTypes_rtd_pt1000 - rtd_2wire = _mscl.WirelessTypes_rtd_2wire - rtd_3wire = _mscl.WirelessTypes_rtd_3wire - rtd_4wire = _mscl.WirelessTypes_rtd_4wire - thermistor_uncompensated = _mscl.WirelessTypes_thermistor_uncompensated - thermistor_44004_44033 = _mscl.WirelessTypes_thermistor_44004_44033 - thermistor_44005_44030 = _mscl.WirelessTypes_thermistor_44005_44030 - thermistor_44007_44034 = _mscl.WirelessTypes_thermistor_44007_44034 - thermistor_44006_44031 = _mscl.WirelessTypes_thermistor_44006_44031 - thermistor_44008_44032 = _mscl.WirelessTypes_thermistor_44008_44032 - thermistor_ysi_400 = _mscl.WirelessTypes_thermistor_ysi_400 - sampleRate_104170Hz = _mscl.WirelessTypes_sampleRate_104170Hz - sampleRate_78125Hz = _mscl.WirelessTypes_sampleRate_78125Hz - sampleRate_62500Hz = _mscl.WirelessTypes_sampleRate_62500Hz - sampleRate_25000Hz = _mscl.WirelessTypes_sampleRate_25000Hz - sampleRate_12500Hz = _mscl.WirelessTypes_sampleRate_12500Hz - sampleRate_3200Hz = _mscl.WirelessTypes_sampleRate_3200Hz - sampleRate_1600Hz = _mscl.WirelessTypes_sampleRate_1600Hz - sampleRate_800Hz = _mscl.WirelessTypes_sampleRate_800Hz - sampleRate_300Hz = _mscl.WirelessTypes_sampleRate_300Hz - sampleRate_1kHz = _mscl.WirelessTypes_sampleRate_1kHz - sampleRate_2kHz = _mscl.WirelessTypes_sampleRate_2kHz - sampleRate_3kHz = _mscl.WirelessTypes_sampleRate_3kHz - sampleRate_4kHz = _mscl.WirelessTypes_sampleRate_4kHz - sampleRate_5kHz = _mscl.WirelessTypes_sampleRate_5kHz - sampleRate_6kHz = _mscl.WirelessTypes_sampleRate_6kHz - sampleRate_7kHz = _mscl.WirelessTypes_sampleRate_7kHz - sampleRate_8kHz = _mscl.WirelessTypes_sampleRate_8kHz - sampleRate_9kHz = _mscl.WirelessTypes_sampleRate_9kHz - sampleRate_10kHz = _mscl.WirelessTypes_sampleRate_10kHz - sampleRate_20kHz = _mscl.WirelessTypes_sampleRate_20kHz - sampleRate_30kHz = _mscl.WirelessTypes_sampleRate_30kHz - sampleRate_40kHz = _mscl.WirelessTypes_sampleRate_40kHz - sampleRate_50kHz = _mscl.WirelessTypes_sampleRate_50kHz - sampleRate_60kHz = _mscl.WirelessTypes_sampleRate_60kHz - sampleRate_70kHz = _mscl.WirelessTypes_sampleRate_70kHz - sampleRate_80kHz = _mscl.WirelessTypes_sampleRate_80kHz - sampleRate_90kHz = _mscl.WirelessTypes_sampleRate_90kHz - sampleRate_100kHz = _mscl.WirelessTypes_sampleRate_100kHz - sampleRate_887Hz = _mscl.WirelessTypes_sampleRate_887Hz - sampleRate_8192Hz = _mscl.WirelessTypes_sampleRate_8192Hz - sampleRate_4096Hz = _mscl.WirelessTypes_sampleRate_4096Hz - sampleRate_2048Hz = _mscl.WirelessTypes_sampleRate_2048Hz - sampleRate_1024Hz = _mscl.WirelessTypes_sampleRate_1024Hz - sampleRate_512Hz = _mscl.WirelessTypes_sampleRate_512Hz - sampleRate_256Hz = _mscl.WirelessTypes_sampleRate_256Hz - sampleRate_128Hz = _mscl.WirelessTypes_sampleRate_128Hz - sampleRate_64Hz = _mscl.WirelessTypes_sampleRate_64Hz - sampleRate_32Hz = _mscl.WirelessTypes_sampleRate_32Hz - sampleRate_16Hz = _mscl.WirelessTypes_sampleRate_16Hz - sampleRate_8Hz = _mscl.WirelessTypes_sampleRate_8Hz - sampleRate_4Hz = _mscl.WirelessTypes_sampleRate_4Hz - sampleRate_2Hz = _mscl.WirelessTypes_sampleRate_2Hz - sampleRate_1Hz = _mscl.WirelessTypes_sampleRate_1Hz - sampleRate_2Sec = _mscl.WirelessTypes_sampleRate_2Sec - sampleRate_5Sec = _mscl.WirelessTypes_sampleRate_5Sec - sampleRate_10Sec = _mscl.WirelessTypes_sampleRate_10Sec - sampleRate_30Sec = _mscl.WirelessTypes_sampleRate_30Sec - sampleRate_1Min = _mscl.WirelessTypes_sampleRate_1Min - sampleRate_2Min = _mscl.WirelessTypes_sampleRate_2Min - sampleRate_5Min = _mscl.WirelessTypes_sampleRate_5Min - sampleRate_10Min = _mscl.WirelessTypes_sampleRate_10Min - sampleRate_30Min = _mscl.WirelessTypes_sampleRate_30Min - sampleRate_60Min = _mscl.WirelessTypes_sampleRate_60Min - sampleRate_24Hours = _mscl.WirelessTypes_sampleRate_24Hours - region_usa = _mscl.WirelessTypes_region_usa - region_europeanUnion = _mscl.WirelessTypes_region_europeanUnion - region_japan = _mscl.WirelessTypes_region_japan - region_other = _mscl.WirelessTypes_region_other - region_brazil = _mscl.WirelessTypes_region_brazil - region_china = _mscl.WirelessTypes_region_china - region_australia_newzealand = _mscl.WirelessTypes_region_australia_newzealand - region_singapore = _mscl.WirelessTypes_region_singapore - region_canada = _mscl.WirelessTypes_region_canada - region_southAfrica = _mscl.WirelessTypes_region_southAfrica - region_indonesia = _mscl.WirelessTypes_region_indonesia - region_taiwan = _mscl.WirelessTypes_region_taiwan - chSetting_inputRange = _mscl.WirelessTypes_chSetting_inputRange - chSetting_filterSettlingTime = _mscl.WirelessTypes_chSetting_filterSettlingTime - chSetting_thermocoupleType = _mscl.WirelessTypes_chSetting_thermocoupleType - chSetting_linearEquation = _mscl.WirelessTypes_chSetting_linearEquation - chSetting_unit = _mscl.WirelessTypes_chSetting_unit - chSetting_equationType = _mscl.WirelessTypes_chSetting_equationType - chSetting_hardwareOffset = _mscl.WirelessTypes_chSetting_hardwareOffset - chSetting_autoBalance = _mscl.WirelessTypes_chSetting_autoBalance - chSetting_gaugeFactor = _mscl.WirelessTypes_chSetting_gaugeFactor - chSetting_antiAliasingFilter = _mscl.WirelessTypes_chSetting_antiAliasingFilter - chSetting_legacyShuntCal = _mscl.WirelessTypes_chSetting_legacyShuntCal - chSetting_autoShuntCal = _mscl.WirelessTypes_chSetting_autoShuntCal - chSetting_lowPassFilter = _mscl.WirelessTypes_chSetting_lowPassFilter - chSetting_highPassFilter = _mscl.WirelessTypes_chSetting_highPassFilter - chSetting_tempSensorOptions = _mscl.WirelessTypes_chSetting_tempSensorOptions - chSetting_debounceFilter = _mscl.WirelessTypes_chSetting_debounceFilter - chSetting_pullUpResistor = _mscl.WirelessTypes_chSetting_pullUpResistor - chSetting_factoryLinearEq = _mscl.WirelessTypes_chSetting_factoryLinearEq - chSetting_factoryUnit = _mscl.WirelessTypes_chSetting_factoryUnit - chSetting_factoryEqType = _mscl.WirelessTypes_chSetting_factoryEqType - autobalance_success = _mscl.WirelessTypes_autobalance_success - autobalance_maybeInvalid = _mscl.WirelessTypes_autobalance_maybeInvalid - autobalance_notSupportedByNode = _mscl.WirelessTypes_autobalance_notSupportedByNode - autobalance_notSupportedByCh = _mscl.WirelessTypes_autobalance_notSupportedByCh - autobalance_targetOutOfRange = _mscl.WirelessTypes_autobalance_targetOutOfRange - autobalance_failed = _mscl.WirelessTypes_autobalance_failed - autobalance_legacyNone = _mscl.WirelessTypes_autobalance_legacyNone - autobalance_notComplete = _mscl.WirelessTypes_autobalance_notComplete - autocal_success = _mscl.WirelessTypes_autocal_success - autocal_maybeInvalid_applied = _mscl.WirelessTypes_autocal_maybeInvalid_applied - autocal_maybeInvalid_notApplied = _mscl.WirelessTypes_autocal_maybeInvalid_notApplied - autocal_notComplete = _mscl.WirelessTypes_autocal_notComplete - autocalError_none = _mscl.WirelessTypes_autocalError_none - autocalError_sensorDetached = _mscl.WirelessTypes_autocalError_sensorDetached - autocalError_sensorShorted = _mscl.WirelessTypes_autocalError_sensorShorted - autocalError_unsupportedChannel = _mscl.WirelessTypes_autocalError_unsupportedChannel - autocalError_baseHighRail = _mscl.WirelessTypes_autocalError_baseHighRail - autocalError_baseLowRail = _mscl.WirelessTypes_autocalError_baseLowRail - autocalError_shuntHighRail = _mscl.WirelessTypes_autocalError_shuntHighRail - autocalError_shuntLowRail = _mscl.WirelessTypes_autocalError_shuntLowRail - autocalError_ramp = _mscl.WirelessTypes_autocalError_ramp - autocalError_noShunt = _mscl.WirelessTypes_autocalError_noShunt - autocalError_timeout = _mscl.WirelessTypes_autocalError_timeout - fatigueMode_angleStrain = _mscl.WirelessTypes_fatigueMode_angleStrain - fatigueMode_distributedAngle = _mscl.WirelessTypes_fatigueMode_distributedAngle - fatigueMode_rawGaugeStrain = _mscl.WirelessTypes_fatigueMode_rawGaugeStrain - eventTrigger_ceiling = _mscl.WirelessTypes_eventTrigger_ceiling - eventTrigger_floor = _mscl.WirelessTypes_eventTrigger_floor - filter_33000hz = _mscl.WirelessTypes_filter_33000hz - filter_20000hz = _mscl.WirelessTypes_filter_20000hz - filter_10000hz = _mscl.WirelessTypes_filter_10000hz - filter_5222hz = _mscl.WirelessTypes_filter_5222hz - filter_5000hz = _mscl.WirelessTypes_filter_5000hz - filter_4416hz = _mscl.WirelessTypes_filter_4416hz - filter_4096hz = _mscl.WirelessTypes_filter_4096hz - filter_4000hz = _mscl.WirelessTypes_filter_4000hz - filter_2208hz = _mscl.WirelessTypes_filter_2208hz - filter_2048hz = _mscl.WirelessTypes_filter_2048hz - filter_2000hz = _mscl.WirelessTypes_filter_2000hz - filter_1104hz = _mscl.WirelessTypes_filter_1104hz - filter_1024hz = _mscl.WirelessTypes_filter_1024hz - filter_1000hz = _mscl.WirelessTypes_filter_1000hz - filter_800hz = _mscl.WirelessTypes_filter_800hz - filter_552hz = _mscl.WirelessTypes_filter_552hz - filter_512hz = _mscl.WirelessTypes_filter_512hz - filter_500hz = _mscl.WirelessTypes_filter_500hz - filter_418hz = _mscl.WirelessTypes_filter_418hz - filter_294hz = _mscl.WirelessTypes_filter_294hz - filter_256hz = _mscl.WirelessTypes_filter_256hz - filter_250hz = _mscl.WirelessTypes_filter_250hz - filter_209hz = _mscl.WirelessTypes_filter_209hz - filter_200hz = _mscl.WirelessTypes_filter_200hz - filter_147hz = _mscl.WirelessTypes_filter_147hz - filter_128hz = _mscl.WirelessTypes_filter_128hz - filter_125hz = _mscl.WirelessTypes_filter_125hz - filter_104hz = _mscl.WirelessTypes_filter_104hz - filter_100hz = _mscl.WirelessTypes_filter_100hz - filter_62hz = _mscl.WirelessTypes_filter_62hz - filter_52hz = _mscl.WirelessTypes_filter_52hz - filter_50hz = _mscl.WirelessTypes_filter_50hz - filter_31hz = _mscl.WirelessTypes_filter_31hz - filter_26hz = _mscl.WirelessTypes_filter_26hz - filter_12_66hz = _mscl.WirelessTypes_filter_12_66hz - filter_2_6hz = _mscl.WirelessTypes_filter_2_6hz - highPass_off = _mscl.WirelessTypes_highPass_off - highPass_auto = _mscl.WirelessTypes_highPass_auto - cfc_10 = _mscl.WirelessTypes_cfc_10 - cfc_21 = _mscl.WirelessTypes_cfc_21 - cfc_60 = _mscl.WirelessTypes_cfc_60 - storageLimit_overwrite = _mscl.WirelessTypes_storageLimit_overwrite - storageLimit_stop = _mscl.WirelessTypes_storageLimit_stop - range_14_545mV = _mscl.WirelessTypes_range_14_545mV - range_10_236mV = _mscl.WirelessTypes_range_10_236mV - range_7_608mV = _mscl.WirelessTypes_range_7_608mV - range_4_046mV = _mscl.WirelessTypes_range_4_046mV - range_2_008mV = _mscl.WirelessTypes_range_2_008mV - range_1_511mV = _mscl.WirelessTypes_range_1_511mV - range_1_001mV = _mscl.WirelessTypes_range_1_001mV - range_0_812mV = _mscl.WirelessTypes_range_0_812mV - range_75mV = _mscl.WirelessTypes_range_75mV - range_37_5mV = _mscl.WirelessTypes_range_37_5mV - range_18_75mV = _mscl.WirelessTypes_range_18_75mV - range_9_38mV = _mscl.WirelessTypes_range_9_38mV - range_4_69mV = _mscl.WirelessTypes_range_4_69mV - range_2_34mV = _mscl.WirelessTypes_range_2_34mV - range_1_17mV = _mscl.WirelessTypes_range_1_17mV - range_0_586mV = _mscl.WirelessTypes_range_0_586mV - range_70mV = _mscl.WirelessTypes_range_70mV - range_35mV = _mscl.WirelessTypes_range_35mV - range_17_5mV = _mscl.WirelessTypes_range_17_5mV - range_8_75mV = _mscl.WirelessTypes_range_8_75mV - range_4_38mV = _mscl.WirelessTypes_range_4_38mV - range_2_19mV = _mscl.WirelessTypes_range_2_19mV - range_1_09mV = _mscl.WirelessTypes_range_1_09mV - range_0_547mV = _mscl.WirelessTypes_range_0_547mV - range_44mV = _mscl.WirelessTypes_range_44mV - range_30mV = _mscl.WirelessTypes_range_30mV - range_20mV = _mscl.WirelessTypes_range_20mV - range_15mV = _mscl.WirelessTypes_range_15mV - range_10mV = _mscl.WirelessTypes_range_10mV - range_5mV = _mscl.WirelessTypes_range_5mV - range_3mV = _mscl.WirelessTypes_range_3mV - range_2mV = _mscl.WirelessTypes_range_2mV - range_6mV = _mscl.WirelessTypes_range_6mV - range_1mV = _mscl.WirelessTypes_range_1mV - range_50mV = _mscl.WirelessTypes_range_50mV - range_2_5mV = _mscl.WirelessTypes_range_2_5mV - range_0_6mV = _mscl.WirelessTypes_range_0_6mV - range_0_35mV = _mscl.WirelessTypes_range_0_35mV - range_0_1mV = _mscl.WirelessTypes_range_0_1mV - range_156mV = _mscl.WirelessTypes_range_156mV - range_78_1mV = _mscl.WirelessTypes_range_78_1mV - range_39mV = _mscl.WirelessTypes_range_39mV - range_19_5mV = _mscl.WirelessTypes_range_19_5mV - range_9_76mV = _mscl.WirelessTypes_range_9_76mV - range_4_88mV = _mscl.WirelessTypes_range_4_88mV - range_2_44mV = _mscl.WirelessTypes_range_2_44mV - range_1_22mV = _mscl.WirelessTypes_range_1_22mV - range_10_24V = _mscl.WirelessTypes_range_10_24V - range_5_12V = _mscl.WirelessTypes_range_5_12V - range_2_56V = _mscl.WirelessTypes_range_2_56V - range_0to10_24V = _mscl.WirelessTypes_range_0to10_24V - range_0to5_12V = _mscl.WirelessTypes_range_0to5_12V - range_1_147V = _mscl.WirelessTypes_range_1_147V - range_585mV = _mscl.WirelessTypes_range_585mV - range_292_5mV = _mscl.WirelessTypes_range_292_5mV - range_146_25mV = _mscl.WirelessTypes_range_146_25mV - range_73_13mV = _mscl.WirelessTypes_range_73_13mV - range_36_56mV = _mscl.WirelessTypes_range_36_56mV - range_18_23mV = _mscl.WirelessTypes_range_18_23mV - range_9_14mV = _mscl.WirelessTypes_range_9_14mV - range_5_74V = _mscl.WirelessTypes_range_5_74V - range_2_93V = _mscl.WirelessTypes_range_2_93V - range_1_46V = _mscl.WirelessTypes_range_1_46V - range_731_3mV = _mscl.WirelessTypes_range_731_3mV - range_365_6mV = _mscl.WirelessTypes_range_365_6mV - range_182_8mV = _mscl.WirelessTypes_range_182_8mV - range_91_4mV = _mscl.WirelessTypes_range_91_4mV - range_45_7mV = _mscl.WirelessTypes_range_45_7mV - range_62_5mV = _mscl.WirelessTypes_range_62_5mV - range_31_25mV = _mscl.WirelessTypes_range_31_25mV - range_15_63mV = _mscl.WirelessTypes_range_15_63mV - range_7_81mV = _mscl.WirelessTypes_range_7_81mV - range_3_91mV = _mscl.WirelessTypes_range_3_91mV - range_1_95mV = _mscl.WirelessTypes_range_1_95mV - range_0_976mV = _mscl.WirelessTypes_range_0_976mV - range_0_488mV = _mscl.WirelessTypes_range_0_488mV - range_2G = _mscl.WirelessTypes_range_2G - range_4G = _mscl.WirelessTypes_range_4G - range_8G = _mscl.WirelessTypes_range_8G - range_10G = _mscl.WirelessTypes_range_10G - range_20G = _mscl.WirelessTypes_range_20G - range_40G = _mscl.WirelessTypes_range_40G - range_2_5V = _mscl.WirelessTypes_range_2_5V - range_1_25V = _mscl.WirelessTypes_range_1_25V - range_625mV = _mscl.WirelessTypes_range_625mV - range_312_5mV = _mscl.WirelessTypes_range_312_5mV - range_156_25mV = _mscl.WirelessTypes_range_156_25mV - range_78_125mV = _mscl.WirelessTypes_range_78_125mV - range_39_063mV = _mscl.WirelessTypes_range_39_063mV - range_19_532mV = _mscl.WirelessTypes_range_19_532mV - range_0to2_5V = _mscl.WirelessTypes_range_0to2_5V - range_0to1_25V = _mscl.WirelessTypes_range_0to1_25V - range_0to625mV = _mscl.WirelessTypes_range_0to625mV - range_0to312_5mV = _mscl.WirelessTypes_range_0to312_5mV - range_0to156_25mV = _mscl.WirelessTypes_range_0to156_25mV - range_0to78_125mV = _mscl.WirelessTypes_range_0to78_125mV - range_0to39_063mV = _mscl.WirelessTypes_range_0to39_063mV - range_0to19_532mV = _mscl.WirelessTypes_range_0to19_532mV - range_9_766mV = _mscl.WirelessTypes_range_9_766mV - range_1_35V_or_0to1000000ohm = _mscl.WirelessTypes_range_1_35V_or_0to1000000ohm - range_1_25V_or_0to10000ohm = _mscl.WirelessTypes_range_1_25V_or_0to10000ohm - range_625mV_or_0to3333_3ohm = _mscl.WirelessTypes_range_625mV_or_0to3333_3ohm - range_312_5mV_or_0to1428_6ohm = _mscl.WirelessTypes_range_312_5mV_or_0to1428_6ohm - range_156_25mV_or_0to666_67ohm = _mscl.WirelessTypes_range_156_25mV_or_0to666_67ohm - range_78_125mV_or_0to322_58ohm = _mscl.WirelessTypes_range_78_125mV_or_0to322_58ohm - range_39_0625mV_or_0to158_73ohm = _mscl.WirelessTypes_range_39_0625mV_or_0to158_73ohm - range_19_5313mV_or_0to78_74ohm = _mscl.WirelessTypes_range_19_5313mV_or_0to78_74ohm - range_750mV = _mscl.WirelessTypes_range_750mV - range_375mV = _mscl.WirelessTypes_range_375mV - range_187_5mV = _mscl.WirelessTypes_range_187_5mV - range_93_75mV = _mscl.WirelessTypes_range_93_75mV - range_46_875mV = _mscl.WirelessTypes_range_46_875mV - range_23_438mV = _mscl.WirelessTypes_range_23_438mV - range_11_719mV = _mscl.WirelessTypes_range_11_719mV - range_5_859mV = _mscl.WirelessTypes_range_5_859mV - range_0to1_5V = _mscl.WirelessTypes_range_0to1_5V - range_0to750mV = _mscl.WirelessTypes_range_0to750mV - range_0to375mV = _mscl.WirelessTypes_range_0to375mV - range_0to187_5mV = _mscl.WirelessTypes_range_0to187_5mV - range_0to93_75mV = _mscl.WirelessTypes_range_0to93_75mV - range_0to46_875mV = _mscl.WirelessTypes_range_0to46_875mV - range_0to23_438mV = _mscl.WirelessTypes_range_0to23_438mV - range_0to11_719mV = _mscl.WirelessTypes_range_0to11_719mV - range_1_5V = _mscl.WirelessTypes_range_1_5V - range_1_35V = _mscl.WirelessTypes_range_1_35V - range_0to1000000ohm = _mscl.WirelessTypes_range_0to1000000ohm - range_0to10000ohm = _mscl.WirelessTypes_range_0to10000ohm - range_0to3333_3ohm = _mscl.WirelessTypes_range_0to3333_3ohm - range_0to1428_6ohm = _mscl.WirelessTypes_range_0to1428_6ohm - range_0to666_67ohm = _mscl.WirelessTypes_range_0to666_67ohm - range_0to322_58ohm = _mscl.WirelessTypes_range_0to322_58ohm - range_0to158_73ohm = _mscl.WirelessTypes_range_0to158_73ohm - range_0to78_74ohm = _mscl.WirelessTypes_range_0to78_74ohm - range_39_0625mV = _mscl.WirelessTypes_range_39_0625mV - range_19_5313mV = _mscl.WirelessTypes_range_19_5313mV - range_125mV = _mscl.WirelessTypes_range_125mV - range_invalid = _mscl.WirelessTypes_range_invalid - dataMode_none = _mscl.WirelessTypes_dataMode_none - dataMode_raw = _mscl.WirelessTypes_dataMode_raw - dataMode_derived = _mscl.WirelessTypes_dataMode_derived - dataMode_raw_derived = _mscl.WirelessTypes_dataMode_raw_derived - derivedCategory_rms = _mscl.WirelessTypes_derivedCategory_rms - derivedCategory_peakToPeak = _mscl.WirelessTypes_derivedCategory_peakToPeak - derivedCategory_velocity = _mscl.WirelessTypes_derivedCategory_velocity - derivedCategory_crestFactor = _mscl.WirelessTypes_derivedCategory_crestFactor - derivedCategory_mean = _mscl.WirelessTypes_derivedCategory_mean - derivedAlgId_rms = _mscl.WirelessTypes_derivedAlgId_rms - derivedAlgId_peakToPeak = _mscl.WirelessTypes_derivedAlgId_peakToPeak - derivedAlgId_ips = _mscl.WirelessTypes_derivedAlgId_ips - derivedAlgId_crestFactor = _mscl.WirelessTypes_derivedAlgId_crestFactor - derivedAlgId_mean = _mscl.WirelessTypes_derivedAlgId_mean - derivedAlgId_mmps = _mscl.WirelessTypes_derivedAlgId_mmps - derivedVelocity_ips = _mscl.WirelessTypes_derivedVelocity_ips - derivedVelocity_mmps = _mscl.WirelessTypes_derivedVelocity_mmps - commProtocol_lxrs = _mscl.WirelessTypes_commProtocol_lxrs - commProtocol_lxrsPlus = _mscl.WirelessTypes_commProtocol_lxrsPlus - voltage_5120mV = _mscl.WirelessTypes_voltage_5120mV - voltage_5000mV = _mscl.WirelessTypes_voltage_5000mV - voltage_4096mV = _mscl.WirelessTypes_voltage_4096mV - voltage_3000mV = _mscl.WirelessTypes_voltage_3000mV - voltage_2800mV = _mscl.WirelessTypes_voltage_2800mV - voltage_2750mV = _mscl.WirelessTypes_voltage_2750mV - voltage_2700mV = _mscl.WirelessTypes_voltage_2700mV - voltage_2500mV = _mscl.WirelessTypes_voltage_2500mV - voltage_1500mV = _mscl.WirelessTypes_voltage_1500mV - sensorOutputMode_accel = _mscl.WirelessTypes_sensorOutputMode_accel - sensorOutputMode_tilt = _mscl.WirelessTypes_sensorOutputMode_tilt - batteryStatus_good = _mscl.WirelessTypes_batteryStatus_good - batteryStatus_low = _mscl.WirelessTypes_batteryStatus_low - batteryStatus_critical = _mscl.WirelessTypes_batteryStatus_critical - externalPower_notConnected = _mscl.WirelessTypes_externalPower_notConnected - externalPower_connected = _mscl.WirelessTypes_externalPower_connected - delayVersion_v1 = _mscl.WirelessTypes_delayVersion_v1 - delayVersion_v2 = _mscl.WirelessTypes_delayVersion_v2 - delayVersion_v3 = _mscl.WirelessTypes_delayVersion_v3 - delayVersion_v4 = _mscl.WirelessTypes_delayVersion_v4 - UNKNOWN_RSSI = _mscl.WirelessTypes_UNKNOWN_RSSI - - def __init__(self): - _mscl.WirelessTypes_swiginit(self, _mscl.new_WirelessTypes()) - __swig_destroy__ = _mscl.delete_WirelessTypes - -# Register WirelessTypes in _mscl: -_mscl.WirelessTypes_swigregister(WirelessTypes) - -class SampleRate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - rateType_seconds = _mscl.SampleRate_rateType_seconds - rateType_hertz = _mscl.SampleRate_rateType_hertz - rateType_event = _mscl.SampleRate_rateType_event - rateType_decimation = _mscl.SampleRate_rateType_decimation - - def __init__(self, *args): - _mscl.SampleRate_swiginit(self, _mscl.new_SampleRate(*args)) - - def __str__(self): - return _mscl.SampleRate___str__(self) - - def prettyStr(self): - return _mscl.SampleRate_prettyStr(self) - - def samplePeriod(self): - return _mscl.SampleRate_samplePeriod(self) - - def samplesPerSecond(self): - return _mscl.SampleRate_samplesPerSecond(self) - - def rateType(self): - return _mscl.SampleRate_rateType(self) - - def samples(self): - return _mscl.SampleRate_samples(self) - - def toWirelessSampleRate(self): - return _mscl.SampleRate_toWirelessSampleRate(self) - - def toDecimation(self, sampleRateBase): - return _mscl.SampleRate_toDecimation(self, sampleRateBase) - - @staticmethod - def Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - - @staticmethod - def KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - - @staticmethod - def Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - - @staticmethod - def Event(): - return _mscl.SampleRate_Event() - - @staticmethod - def Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - - @staticmethod - def FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - - @staticmethod - def FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - __swig_destroy__ = _mscl.delete_SampleRate - -# Register SampleRate in _mscl: -_mscl.SampleRate_swigregister(SampleRate) - -def SampleRate_Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - -def SampleRate_KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - -def SampleRate_Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - -def SampleRate_Event(): - return _mscl.SampleRate_Event() - -def SampleRate_Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - -def SampleRate_FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - -def SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - -class Matrix(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Matrix_swiginit(self, _mscl.new_Matrix()) - - def valuesType(self): - return _mscl.Matrix_valuesType(self) - - def rows(self): - return _mscl.Matrix_rows(self) - - def columns(self): - return _mscl.Matrix_columns(self) - - def as_doubleAt(self, row, column): - return _mscl.Matrix_as_doubleAt(self, row, column) - - def as_floatAt(self, row, column): - return _mscl.Matrix_as_floatAt(self, row, column) - - def as_uint16At(self, row, column): - return _mscl.Matrix_as_uint16At(self, row, column) - - def as_uint8At(self, row, column): - return _mscl.Matrix_as_uint8At(self, row, column) - - def __str__(self): - return _mscl.Matrix___str__(self) - __swig_destroy__ = _mscl.delete_Matrix - -# Register Matrix in _mscl: -_mscl.Matrix_swigregister(Matrix) - -class Vector(Matrix): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Vector_swiginit(self, _mscl.new_Vector()) - - def size(self): - return _mscl.Vector_size(self) - - def as_doubleAt(self, index): - return _mscl.Vector_as_doubleAt(self, index) - - def as_floatAt(self, index): - return _mscl.Vector_as_floatAt(self, index) - - def as_uint16At(self, index): - return _mscl.Vector_as_uint16At(self, index) - - def as_uint8At(self, index): - return _mscl.Vector_as_uint8At(self, index) - __swig_destroy__ = _mscl.delete_Vector - -# Register Vector in _mscl: -_mscl.Vector_swigregister(Vector) - -class Bitfield(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Bitfield_swiginit(self, _mscl.new_Bitfield(*args)) - __swig_destroy__ = _mscl.delete_Bitfield - - def value(self, *args): - return _mscl.Bitfield_value(self, *args) - - def get(self, mask, shiftToLsb=True): - return _mscl.Bitfield_get(self, mask, shiftToLsb) - - def set(self, mask, value, shiftRequired=True): - return _mscl.Bitfield_set(self, mask, value, shiftRequired) - - def checkBit(self, bitIndex, indexBase=0): - return _mscl.Bitfield_checkBit(self, bitIndex, indexBase) - - def setBit(self, bitIndex, value, indexBase=0): - return _mscl.Bitfield_setBit(self, bitIndex, value, indexBase) - -# Register Bitfield in _mscl: -_mscl.Bitfield_swigregister(Bitfield) - -class StructuralHealth(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, angle, uptime, damage, processingRate, histogram): - _mscl.StructuralHealth_swiginit(self, _mscl.new_StructuralHealth(angle, uptime, damage, processingRate, histogram)) - - def angle(self): - return _mscl.StructuralHealth_angle(self) - - def uptime(self): - return _mscl.StructuralHealth_uptime(self) - - def damage(self): - return _mscl.StructuralHealth_damage(self) - - def processingRate(self): - return _mscl.StructuralHealth_processingRate(self) - - def histogram(self): - return _mscl.StructuralHealth_histogram(self) - __swig_destroy__ = _mscl.delete_StructuralHealth - -# Register StructuralHealth in _mscl: -_mscl.StructuralHealth_swigregister(StructuralHealth) - -class DataPoint(Value): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - channelPropertyId_angle = _mscl.DataPoint_channelPropertyId_angle - channelPropertyId_derivedFrom = _mscl.DataPoint_channelPropertyId_derivedFrom - channelPropertyId_derivedAlgorithmId = _mscl.DataPoint_channelPropertyId_derivedAlgorithmId - __swig_destroy__ = _mscl.delete_DataPoint - - def channelProperty(self, id): - return _mscl.DataPoint_channelProperty(self, id) - - def as_Vector(self): - return _mscl.DataPoint_as_Vector(self) - - def as_Matrix(self): - return _mscl.DataPoint_as_Matrix(self) - - def as_Timestamp(self): - return _mscl.DataPoint_as_Timestamp(self) - - def as_Bytes(self): - return _mscl.DataPoint_as_Bytes(self) - - def as_StructuralHealth(self): - return _mscl.DataPoint_as_StructuralHealth(self) - - def as_RfSweep(self): - return _mscl.DataPoint_as_RfSweep(self) - - def as_string(self): - return _mscl.DataPoint_as_string(self) - -# Register DataPoint in _mscl: -_mscl.DataPoint_swigregister(DataPoint) - -class ConfigIssue(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONFIG_SAMPLING_MODE = _mscl.ConfigIssue_CONFIG_SAMPLING_MODE - CONFIG_ACTIVE_CHANNELS = _mscl.ConfigIssue_CONFIG_ACTIVE_CHANNELS - CONFIG_SAMPLE_RATE = _mscl.ConfigIssue_CONFIG_SAMPLE_RATE - CONFIG_SWEEPS = _mscl.ConfigIssue_CONFIG_SWEEPS - CONFIG_UNLIMITED_DURATION = _mscl.ConfigIssue_CONFIG_UNLIMITED_DURATION - CONFIG_DATA_FORMAT = _mscl.ConfigIssue_CONFIG_DATA_FORMAT - CONFIG_DATA_COLLECTION_METHOD = _mscl.ConfigIssue_CONFIG_DATA_COLLECTION_METHOD - CONFIG_TIME_BETWEEN_BURSTS = _mscl.ConfigIssue_CONFIG_TIME_BETWEEN_BURSTS - CONFIG_THERMOCOUPLE_TYPE = _mscl.ConfigIssue_CONFIG_THERMOCOUPLE_TYPE - CONFIG_FILTER_SETTLING_TIME = _mscl.ConfigIssue_CONFIG_FILTER_SETTLING_TIME - CONFIG_BUTTON = _mscl.ConfigIssue_CONFIG_BUTTON - CONFIG_ANALOG_PAIR = _mscl.ConfigIssue_CONFIG_ANALOG_PAIR - CONFIG_INPUT_RANGE = _mscl.ConfigIssue_CONFIG_INPUT_RANGE - CONFIG_INACTIVITY_TIMEOUT = _mscl.ConfigIssue_CONFIG_INACTIVITY_TIMEOUT - CONFIG_CHECK_RADIO_INTERVAL = _mscl.ConfigIssue_CONFIG_CHECK_RADIO_INTERVAL - CONFIG_LOST_BEACON_TIMEOUT = _mscl.ConfigIssue_CONFIG_LOST_BEACON_TIMEOUT - CONFIG_DEFAULT_MODE = _mscl.ConfigIssue_CONFIG_DEFAULT_MODE - CONFIG_TRANSMIT_POWER = _mscl.ConfigIssue_CONFIG_TRANSMIT_POWER - CONFIG_LINEAR_EQUATION = _mscl.ConfigIssue_CONFIG_LINEAR_EQUATION - CONFIG_FATIGUE = _mscl.ConfigIssue_CONFIG_FATIGUE - CONFIG_FATIGUE_MODE = _mscl.ConfigIssue_CONFIG_FATIGUE_MODE - CONFIG_FATIGUE_ANGLE_ID = _mscl.ConfigIssue_CONFIG_FATIGUE_ANGLE_ID - CONFIG_FATIGUE_SN_CURVE = _mscl.ConfigIssue_CONFIG_FATIGUE_SN_CURVE - CONFIG_FATIGUE_DIST_NUM_ANGLES = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_NUM_ANGLES - CONFIG_FATIGUE_DIST_ANGLE = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_ANGLE - CONFIG_HISTOGRAM = _mscl.ConfigIssue_CONFIG_HISTOGRAM - CONFIG_HISTOGRAM_TX_RATE = _mscl.ConfigIssue_CONFIG_HISTOGRAM_TX_RATE - CONFIG_HARDWARE_OFFSET = _mscl.ConfigIssue_CONFIG_HARDWARE_OFFSET - CONFIG_ACTIVITY_SENSE = _mscl.ConfigIssue_CONFIG_ACTIVITY_SENSE - CONFIG_GAUGE_FACTOR = _mscl.ConfigIssue_CONFIG_GAUGE_FACTOR - CONFIG_EVENT_TRIGGER = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER - CONFIG_EVENT_TRIGGER_DURATION = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_DURATION - CONFIG_EVENT_TRIGGER_MASK = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_MASK - CONFIG_DIAGNOSTIC_INTERVAL = _mscl.ConfigIssue_CONFIG_DIAGNOSTIC_INTERVAL - CONFIG_ANTI_ALIASING_FILTER = _mscl.ConfigIssue_CONFIG_ANTI_ALIASING_FILTER - CONFIG_STORAGE_LIMIT_MODE = _mscl.ConfigIssue_CONFIG_STORAGE_LIMIT_MODE - CONFIG_SENSOR_DELAY = _mscl.ConfigIssue_CONFIG_SENSOR_DELAY - CONFIG_LOW_PASS_FILTER = _mscl.ConfigIssue_CONFIG_LOW_PASS_FILTER - CONFIG_DATA_MODE = _mscl.ConfigIssue_CONFIG_DATA_MODE - CONFIG_DERIVED_DATA_RATE = _mscl.ConfigIssue_CONFIG_DERIVED_DATA_RATE - CONFIG_DERIVED_MASK_RMS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_RMS - CONFIG_DERIVED_MASK_P2P = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_P2P - CONFIG_DERIVED_MASK_IPS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_IPS - CONFIG_DERIVED_MASK_CREST_FACTOR = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_CREST_FACTOR - CONFIG_HIGH_PASS_FILTER = _mscl.ConfigIssue_CONFIG_HIGH_PASS_FILTER - CONFIG_DERIVED_MASK = _mscl.ConfigIssue_CONFIG_DERIVED_MASK - CONFIG_COMM_PROTOCOL = _mscl.ConfigIssue_CONFIG_COMM_PROTOCOL - CONFIG_DERIVED_MASK_MEAN = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_MEAN - CONFIG_GAUGE_RESISTANCE = _mscl.ConfigIssue_CONFIG_GAUGE_RESISTANCE - CONFIG_NUM_ACTIVE_GAUGES = _mscl.ConfigIssue_CONFIG_NUM_ACTIVE_GAUGES - CONFIG_TEMP_SENSOR_OPTS = _mscl.ConfigIssue_CONFIG_TEMP_SENSOR_OPTS - CONFIG_DEBOUNCE_FILTER = _mscl.ConfigIssue_CONFIG_DEBOUNCE_FILTER - CONFIG_PULLUP_RESISTOR = _mscl.ConfigIssue_CONFIG_PULLUP_RESISTOR - CONFIG_EXCITATION_VOLTAGE = _mscl.ConfigIssue_CONFIG_EXCITATION_VOLTAGE - CONFIG_DERIVED_UNIT = _mscl.ConfigIssue_CONFIG_DERIVED_UNIT - CONFIG_SENSOR_OUTPUT_MODE = _mscl.ConfigIssue_CONFIG_SENSOR_OUTPUT_MODE - CONFIG_LOW_BATTERY_THRESHOLD = _mscl.ConfigIssue_CONFIG_LOW_BATTERY_THRESHOLD - CONFIG_CFC_FILTER = _mscl.ConfigIssue_CONFIG_CFC_FILTER - - def __init__(self, *args): - _mscl.ConfigIssue_swiginit(self, _mscl.new_ConfigIssue(*args)) - - def id(self): - return _mscl.ConfigIssue_id(self) - - def description(self): - return _mscl.ConfigIssue_description(self) - - def isChannelGroupIssue(self): - return _mscl.ConfigIssue_isChannelGroupIssue(self) - - def channelMask(self): - return _mscl.ConfigIssue_channelMask(self) - __swig_destroy__ = _mscl.delete_ConfigIssue - -# Register ConfigIssue in _mscl: -_mscl.ConfigIssue_swigregister(ConfigIssue) - -class ActivitySense(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ActivitySense_swiginit(self, _mscl.new_ActivitySense()) - - def enabled(self, *args): - return _mscl.ActivitySense_enabled(self, *args) - - def activityThreshold(self, *args): - return _mscl.ActivitySense_activityThreshold(self, *args) - - def inactivityThreshold(self, *args): - return _mscl.ActivitySense_inactivityThreshold(self, *args) - - def activityTime(self, *args): - return _mscl.ActivitySense_activityTime(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.ActivitySense_inactivityTimeout(self, *args) - __swig_destroy__ = _mscl.delete_ActivitySense - -# Register ActivitySense in _mscl: -_mscl.ActivitySense_swigregister(ActivitySense) - -class Trigger(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Trigger_swiginit(self, _mscl.new_Trigger(*args)) - - def channelNumber(self, *args): - return _mscl.Trigger_channelNumber(self, *args) - - def triggerType(self, *args): - return _mscl.Trigger_triggerType(self, *args) - - def triggerValue(self, *args): - return _mscl.Trigger_triggerValue(self, *args) - __swig_destroy__ = _mscl.delete_Trigger - -# Register Trigger in _mscl: -_mscl.Trigger_swigregister(Trigger) - -class EventTriggerOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerOptions_swiginit(self, _mscl.new_EventTriggerOptions()) - - def triggerMask(self, *args): - return _mscl.EventTriggerOptions_triggerMask(self, *args) - - def anyTriggersEnabled(self): - return _mscl.EventTriggerOptions_anyTriggersEnabled(self) - - def triggerEnabled(self, triggerIndex): - return _mscl.EventTriggerOptions_triggerEnabled(self, triggerIndex) - - def enableTrigger(self, triggerIndex, enable=True): - return _mscl.EventTriggerOptions_enableTrigger(self, triggerIndex, enable) - - def preDuration(self, *args): - return _mscl.EventTriggerOptions_preDuration(self, *args) - - def postDuration(self, *args): - return _mscl.EventTriggerOptions_postDuration(self, *args) - - def trigger(self, *args): - return _mscl.EventTriggerOptions_trigger(self, *args) - - def triggers(self): - return _mscl.EventTriggerOptions_triggers(self) - __swig_destroy__ = _mscl.delete_EventTriggerOptions - -# Register EventTriggerOptions in _mscl: -_mscl.EventTriggerOptions_swigregister(EventTriggerOptions) - -class SnCurveSegment(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.SnCurveSegment_swiginit(self, _mscl.new_SnCurveSegment(*args)) - - def m(self, *args): - return _mscl.SnCurveSegment_m(self, *args) - - def logA(self, *args): - return _mscl.SnCurveSegment_logA(self, *args) - __swig_destroy__ = _mscl.delete_SnCurveSegment - -# Register SnCurveSegment in _mscl: -_mscl.SnCurveSegment_swigregister(SnCurveSegment) - -class FatigueOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FatigueOptions_swiginit(self, _mscl.new_FatigueOptions()) - - def youngsModulus(self, *args): - return _mscl.FatigueOptions_youngsModulus(self, *args) - - def poissonsRatio(self, *args): - return _mscl.FatigueOptions_poissonsRatio(self, *args) - - def peakValleyThreshold(self, *args): - return _mscl.FatigueOptions_peakValleyThreshold(self, *args) - - def debugMode(self, *args): - return _mscl.FatigueOptions_debugMode(self, *args) - - def damageAngles(self): - return _mscl.FatigueOptions_damageAngles(self) - - def damageAngle(self, *args): - return _mscl.FatigueOptions_damageAngle(self, *args) - - def snCurveSegments(self): - return _mscl.FatigueOptions_snCurveSegments(self) - - def snCurveSegment(self, *args): - return _mscl.FatigueOptions_snCurveSegment(self, *args) - - def fatigueMode(self, *args): - return _mscl.FatigueOptions_fatigueMode(self, *args) - - def distributedAngleMode_numAngles(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_numAngles(self, *args) - - def distributedAngleMode_lowerBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_lowerBound(self, *args) - - def distributedAngleMode_upperBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_upperBound(self, *args) - - def histogramEnable(self, *args): - return _mscl.FatigueOptions_histogramEnable(self, *args) - __swig_destroy__ = _mscl.delete_FatigueOptions - -# Register FatigueOptions in _mscl: -_mscl.FatigueOptions_swigregister(FatigueOptions) - -class HistogramOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HistogramOptions_swiginit(self, _mscl.new_HistogramOptions()) - - def transmitRate(self, *args): - return _mscl.HistogramOptions_transmitRate(self, *args) - - def binsStart(self, *args): - return _mscl.HistogramOptions_binsStart(self, *args) - - def binsSize(self, *args): - return _mscl.HistogramOptions_binsSize(self, *args) - __swig_destroy__ = _mscl.delete_HistogramOptions - -# Register HistogramOptions in _mscl: -_mscl.HistogramOptions_swigregister(HistogramOptions) - -class InputRangeEntry(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - inputRange = property(_mscl.InputRangeEntry_inputRange_get, _mscl.InputRangeEntry_inputRange_set) - hasGain = property(_mscl.InputRangeEntry_hasGain_get, _mscl.InputRangeEntry_hasGain_set) - gain = property(_mscl.InputRangeEntry_gain_get, _mscl.InputRangeEntry_gain_set) - - def __init__(self, *args): - _mscl.InputRangeEntry_swiginit(self, _mscl.new_InputRangeEntry(*args)) - __swig_destroy__ = _mscl.delete_InputRangeEntry - -# Register InputRangeEntry in _mscl: -_mscl.InputRangeEntry_swigregister(InputRangeEntry) - -class TempSensorOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - - @staticmethod - def RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - - @staticmethod - def Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - - def transducerType(self): - return _mscl.TempSensorOptions_transducerType(self) - - def thermocoupleType(self): - return _mscl.TempSensorOptions_thermocoupleType(self) - - def rtdType(self): - return _mscl.TempSensorOptions_rtdType(self) - - def rtdWireType(self): - return _mscl.TempSensorOptions_rtdWireType(self) - - def thermistorType(self): - return _mscl.TempSensorOptions_thermistorType(self) - __swig_destroy__ = _mscl.delete_TempSensorOptions - -# Register TempSensorOptions in _mscl: -_mscl.TempSensorOptions_swigregister(TempSensorOptions) - -def TempSensorOptions_Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - -def TempSensorOptions_RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - -def TempSensorOptions_Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - -class WirelessModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_vLink_legacy = _mscl.WirelessModels_node_vLink_legacy - node_cfBearingTempLink = _mscl.WirelessModels_node_cfBearingTempLink - node_envLink_pro = _mscl.WirelessModels_node_envLink_pro - node_gLink_2g = _mscl.WirelessModels_node_gLink_2g - node_gLink_10g = _mscl.WirelessModels_node_gLink_10g - node_gLinkII_cust_in = _mscl.WirelessModels_node_gLinkII_cust_in - node_gLinkII_2g_in = _mscl.WirelessModels_node_gLinkII_2g_in - node_gLinkII_10g_in = _mscl.WirelessModels_node_gLinkII_10g_in - node_gLinkII_cust_ex = _mscl.WirelessModels_node_gLinkII_cust_ex - node_gLinkII_2g_ex = _mscl.WirelessModels_node_gLinkII_2g_ex - node_gLinkII_10g_ex = _mscl.WirelessModels_node_gLinkII_10g_ex - node_gLink_rgd_10g = _mscl.WirelessModels_node_gLink_rgd_10g - node_gLink_200_8g = _mscl.WirelessModels_node_gLink_200_8g - node_gLink_200_40g = _mscl.WirelessModels_node_gLink_200_40g - node_gLink_200_8g_oem = _mscl.WirelessModels_node_gLink_200_8g_oem - node_gLink_200_40g_oem = _mscl.WirelessModels_node_gLink_200_40g_oem - node_gLink_200_8g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_8g_oem_mmcx - node_gLink_200_40g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_40g_oem_mmcx - node_gLink_200_8g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_8g_oem_u_fl - node_gLink_200_40g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_40g_oem_u_fl - node_gLink_200_r = _mscl.WirelessModels_node_gLink_200_r - node_sgLink_oem_S = _mscl.WirelessModels_node_sgLink_oem_S - node_sgLink = _mscl.WirelessModels_node_sgLink - node_sgLink200 = _mscl.WirelessModels_node_sgLink200 - node_sgLink200_hbridge_1K = _mscl.WirelessModels_node_sgLink200_hbridge_1K - node_sgLink200_hbridge_350 = _mscl.WirelessModels_node_sgLink200_hbridge_350 - node_sgLink200_hbridge_120 = _mscl.WirelessModels_node_sgLink200_hbridge_120 - node_sgLink200_qbridge_1K = _mscl.WirelessModels_node_sgLink200_qbridge_1K - node_sgLink200_qbridge_350 = _mscl.WirelessModels_node_sgLink200_qbridge_350 - node_sgLink200_qbridge_120 = _mscl.WirelessModels_node_sgLink200_qbridge_120 - node_sgLink_oem = _mscl.WirelessModels_node_sgLink_oem - node_sgLink_micro = _mscl.WirelessModels_node_sgLink_micro - node_sgLink200_oem = _mscl.WirelessModels_node_sgLink200_oem - node_sgLink200_oem_ufl = _mscl.WirelessModels_node_sgLink200_oem_ufl - node_sgLink200_oem_hbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K - node_sgLink200_oem_hbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K_ufl - node_sgLink200_oem_hbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120 - node_sgLink200_oem_hbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120_ufl - node_sgLink200_oem_hbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350 - node_sgLink200_oem_hbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350_ufl - node_sgLink200_oem_qbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K - node_sgLink200_oem_qbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K_ufl - node_sgLink200_oem_qbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120 - node_sgLink200_oem_qbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120_ufl - node_sgLink200_oem_qbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350 - node_sgLink200_oem_qbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350_ufl - node_sgLink_rgd = _mscl.WirelessModels_node_sgLink_rgd - node_shmLink = _mscl.WirelessModels_node_shmLink - node_tcLink_1ch = _mscl.WirelessModels_node_tcLink_1ch - node_tcLink_6ch = _mscl.WirelessModels_node_tcLink_6ch - node_tcLink_3ch = _mscl.WirelessModels_node_tcLink_3ch - node_tcLink_6ch_ip67 = _mscl.WirelessModels_node_tcLink_6ch_ip67 - node_tcLink200_oem = _mscl.WirelessModels_node_tcLink200_oem - node_tcLink200_oem_ufl = _mscl.WirelessModels_node_tcLink200_oem_ufl - node_tcLink200 = _mscl.WirelessModels_node_tcLink200 - node_rtdLink200 = _mscl.WirelessModels_node_rtdLink200 - node_tcLink_6ch_ip67_rht = _mscl.WirelessModels_node_tcLink_6ch_ip67_rht - node_vLink = _mscl.WirelessModels_node_vLink - node_vLink200 = _mscl.WirelessModels_node_vLink200 - node_vLink200_qbridge_1K = _mscl.WirelessModels_node_vLink200_qbridge_1K - node_vLink200_qbridge_120 = _mscl.WirelessModels_node_vLink200_qbridge_120 - node_vLink200_qbridge_350 = _mscl.WirelessModels_node_vLink200_qbridge_350 - node_vLink200_hbridge_1K = _mscl.WirelessModels_node_vLink200_hbridge_1K - node_vLink200_hbridge_120 = _mscl.WirelessModels_node_vLink200_hbridge_120 - node_vLink200_hbridge_350 = _mscl.WirelessModels_node_vLink200_hbridge_350 - node_iepeLink = _mscl.WirelessModels_node_iepeLink - node_dvrtLink = _mscl.WirelessModels_node_dvrtLink - node_envLink_mini = _mscl.WirelessModels_node_envLink_mini - node_wattLink = _mscl.WirelessModels_node_wattLink - node_wattLink_3Y208 = _mscl.WirelessModels_node_wattLink_3Y208 - node_wattLink_3D240 = _mscl.WirelessModels_node_wattLink_3D240 - node_wattLink_3Y400 = _mscl.WirelessModels_node_wattLink_3Y400 - node_wattLink_3D400 = _mscl.WirelessModels_node_wattLink_3D400 - node_wattLink_3Y480 = _mscl.WirelessModels_node_wattLink_3Y480 - node_wattLink_3D480 = _mscl.WirelessModels_node_wattLink_3D480 - node_wattLink_3Y600 = _mscl.WirelessModels_node_wattLink_3Y600 - node_ptLink200 = _mscl.WirelessModels_node_ptLink200 - node_rtdLink = _mscl.WirelessModels_node_rtdLink - node_shmLink2_cust1_oldNumber = _mscl.WirelessModels_node_shmLink2_cust1_oldNumber - node_shmLink2_cust1 = _mscl.WirelessModels_node_shmLink2_cust1 - node_shmLink200 = _mscl.WirelessModels_node_shmLink200 - node_shmLink201 = _mscl.WirelessModels_node_shmLink201 - node_shmLink201_qbridge_1K = _mscl.WirelessModels_node_shmLink201_qbridge_1K - node_shmLink201_qbridge_348 = _mscl.WirelessModels_node_shmLink201_qbridge_348 - node_shmLink201_hbridge_1K = _mscl.WirelessModels_node_shmLink201_hbridge_1K - node_shmLink201_hbridge_348 = _mscl.WirelessModels_node_shmLink201_hbridge_348 - node_shmLink201_fullbridge = _mscl.WirelessModels_node_shmLink201_fullbridge - node_shmLink210_fullbridge = _mscl.WirelessModels_node_shmLink210_fullbridge - node_shmLink210_qbridge_3K = _mscl.WirelessModels_node_shmLink210_qbridge_3K - node_torqueLink = _mscl.WirelessModels_node_torqueLink - node_torqueLink200_3ch = _mscl.WirelessModels_node_torqueLink200_3ch - node_torqueLink200 = _mscl.WirelessModels_node_torqueLink200 - node_torqueLink200_3ch_s = _mscl.WirelessModels_node_torqueLink200_3ch_s - node_sgLink_herm = _mscl.WirelessModels_node_sgLink_herm - node_sgLink_herm_2600 = _mscl.WirelessModels_node_sgLink_herm_2600 - node_sgLink_herm_2700 = _mscl.WirelessModels_node_sgLink_herm_2700 - node_sgLink_herm_2800 = _mscl.WirelessModels_node_sgLink_herm_2800 - node_sgLink_herm_2900 = _mscl.WirelessModels_node_sgLink_herm_2900 - node_wirelessImpactSensor = _mscl.WirelessModels_node_wirelessImpactSensor - node_gLink_200_40g_s = _mscl.WirelessModels_node_gLink_200_40g_s - base_wsda_1000 = _mscl.WirelessModels_base_wsda_1000 - base_wsda_1500 = _mscl.WirelessModels_base_wsda_1500 - base_wsda_2000 = _mscl.WirelessModels_base_wsda_2000 - base_wsdaBase_200_legacy = _mscl.WirelessModels_base_wsdaBase_200_legacy - base_wsdaBase_200 = _mscl.WirelessModels_base_wsdaBase_200 - base_wsdaBase_200_extAntenna = _mscl.WirelessModels_base_wsdaBase_200_extAntenna - base_wsdaBase_101_analog = _mscl.WirelessModels_base_wsdaBase_101_analog - base_wsdaBase_102_rs232 = _mscl.WirelessModels_base_wsdaBase_102_rs232 - base_wsdaBase_104_usb = _mscl.WirelessModels_base_wsdaBase_104_usb - base_wsi_104 = _mscl.WirelessModels_base_wsi_104 - base_wsdaBase_mini = _mscl.WirelessModels_base_wsdaBase_mini - - def __init__(self): - _mscl.WirelessModels_swiginit(self, _mscl.new_WirelessModels()) - __swig_destroy__ = _mscl.delete_WirelessModels - -# Register WirelessModels in _mscl: -_mscl.WirelessModels_swigregister(WirelessModels) - -class NodeDiscovery(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def nodeAddress(self): - return _mscl.NodeDiscovery_nodeAddress(self) - - def frequency(self): - return _mscl.NodeDiscovery_frequency(self) - - def panId(self): - return _mscl.NodeDiscovery_panId(self) - - def model(self): - return _mscl.NodeDiscovery_model(self) - - def serialNumber(self): - return _mscl.NodeDiscovery_serialNumber(self) - - def firmwareVersion(self): - return _mscl.NodeDiscovery_firmwareVersion(self) - - def defaultMode(self): - return _mscl.NodeDiscovery_defaultMode(self) - - def builtInTestResult(self): - return _mscl.NodeDiscovery_builtInTestResult(self) - - def communicationProtocol(self): - return _mscl.NodeDiscovery_communicationProtocol(self) - - def asppVersion_lxrs(self): - return _mscl.NodeDiscovery_asppVersion_lxrs(self) - - def asppVersion_lxrsPlus(self): - return _mscl.NodeDiscovery_asppVersion_lxrsPlus(self) - - def baseRssi(self): - return _mscl.NodeDiscovery_baseRssi(self) - - def timestamp(self): - return _mscl.NodeDiscovery_timestamp(self) - - def __init__(self): - _mscl.NodeDiscovery_swiginit(self, _mscl.new_NodeDiscovery()) - __swig_destroy__ = _mscl.delete_NodeDiscovery - -# Register NodeDiscovery in _mscl: -_mscl.NodeDiscovery_swigregister(NodeDiscovery) - -class LinearEquation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LinearEquation_swiginit(self, _mscl.new_LinearEquation(*args)) - - def slope(self, *args): - return _mscl.LinearEquation_slope(self, *args) - - def offset(self, *args): - return _mscl.LinearEquation_offset(self, *args) - __swig_destroy__ = _mscl.delete_LinearEquation - -# Register LinearEquation in _mscl: -_mscl.LinearEquation_swigregister(LinearEquation) - -class CalCoefficients(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CalCoefficients_swiginit(self, _mscl.new_CalCoefficients(*args)) - - def equationType(self): - return _mscl.CalCoefficients_equationType(self) - - def unit(self): - return _mscl.CalCoefficients_unit(self) - - def linearEquation(self): - return _mscl.CalCoefficients_linearEquation(self) - __swig_destroy__ = _mscl.delete_CalCoefficients - -# Register CalCoefficients in _mscl: -_mscl.CalCoefficients_swigregister(CalCoefficients) - -class ChannelGroup(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ChannelGroup_swiginit(self, _mscl.new_ChannelGroup()) - - def channels(self): - return _mscl.ChannelGroup_channels(self) - - def name(self): - return _mscl.ChannelGroup_name(self) - - def eepromLocation(self, setting): - return _mscl.ChannelGroup_eepromLocation(self, setting) - - def settings(self): - return _mscl.ChannelGroup_settings(self) - - def hasSetting(self, setting): - return _mscl.ChannelGroup_hasSetting(self, setting) - - def hasSettingAndChannel(self, setting, channelNumber): - return _mscl.ChannelGroup_hasSettingAndChannel(self, setting, channelNumber) - __swig_destroy__ = _mscl.delete_ChannelGroup - -# Register ChannelGroup in _mscl: -_mscl.ChannelGroup_swigregister(ChannelGroup) - -class WirelessChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - channel_unknown = _mscl.WirelessChannel_channel_unknown - channel_1 = _mscl.WirelessChannel_channel_1 - channel_2 = _mscl.WirelessChannel_channel_2 - channel_3 = _mscl.WirelessChannel_channel_3 - channel_4 = _mscl.WirelessChannel_channel_4 - channel_5 = _mscl.WirelessChannel_channel_5 - channel_6 = _mscl.WirelessChannel_channel_6 - channel_7 = _mscl.WirelessChannel_channel_7 - channel_8 = _mscl.WirelessChannel_channel_8 - channel_9 = _mscl.WirelessChannel_channel_9 - channel_10 = _mscl.WirelessChannel_channel_10 - channel_11 = _mscl.WirelessChannel_channel_11 - channel_12 = _mscl.WirelessChannel_channel_12 - channel_13 = _mscl.WirelessChannel_channel_13 - channel_14 = _mscl.WirelessChannel_channel_14 - channel_15 = _mscl.WirelessChannel_channel_15 - channel_16 = _mscl.WirelessChannel_channel_16 - channel_digital_1 = _mscl.WirelessChannel_channel_digital_1 - channel_digital_2 = _mscl.WirelessChannel_channel_digital_2 - channel_digital_3 = _mscl.WirelessChannel_channel_digital_3 - channel_digital_4 = _mscl.WirelessChannel_channel_digital_4 - channel_digital_5 = _mscl.WirelessChannel_channel_digital_5 - channel_digital_6 = _mscl.WirelessChannel_channel_digital_6 - channel_digital_7 = _mscl.WirelessChannel_channel_digital_7 - channel_digital_8 = _mscl.WirelessChannel_channel_digital_8 - channel_digital_9 = _mscl.WirelessChannel_channel_digital_9 - channel_digital_10 = _mscl.WirelessChannel_channel_digital_10 - channel_digital_11 = _mscl.WirelessChannel_channel_digital_11 - channel_digital_12 = _mscl.WirelessChannel_channel_digital_12 - channel_digital_13 = _mscl.WirelessChannel_channel_digital_13 - channel_digital_14 = _mscl.WirelessChannel_channel_digital_14 - channel_digital_15 = _mscl.WirelessChannel_channel_digital_15 - channel_digital_16 = _mscl.WirelessChannel_channel_digital_16 - channel_structuralHealth = _mscl.WirelessChannel_channel_structuralHealth - channel_hcl_rawBase_mag1_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_x - channel_hcl_rawBase_mag1_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_y - channel_hcl_rawBase_mag1_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_z - channel_hcl_rawBase_mag2_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_x - channel_hcl_rawBase_mag2_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_y - channel_hcl_rawBase_mag2_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_z - channel_hcl_rawBase_mag3_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_x - channel_hcl_rawBase_mag3_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_y - channel_hcl_rawBase_mag3_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_z - channel_hcl_rawBase_mag4_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_x - channel_hcl_rawBase_mag4_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_y - channel_hcl_rawBase_mag4_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_z - channel_hcl_rawBase_mag5_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_x - channel_hcl_rawBase_mag5_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_y - channel_hcl_rawBase_mag5_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_z - channel_hcl_rawBase_mag6_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_x - channel_hcl_rawBase_mag6_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_y - channel_hcl_rawBase_mag6_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_z - channel_hcl_rawBase_mag7_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_x - channel_hcl_rawBase_mag7_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_y - channel_hcl_rawBase_mag7_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_z - channel_hcl_rawBase_mag8_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_x - channel_hcl_rawBase_mag8_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_y - channel_hcl_rawBase_mag8_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_z - channel_hcl_rawBase_gyro_x = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_x - channel_hcl_rawBase_gyro_y = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_y - channel_hcl_rawBase_gyro_z = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_z - channel_error_code = _mscl.WirelessChannel_channel_error_code - channel_hcl_rawStrain_BL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL30 - channel_hcl_rawStrain_BL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL120 - channel_hcl_rawStrain_A60 = _mscl.WirelessChannel_channel_hcl_rawStrain_A60 - channel_hcl_rawStrain_A150 = _mscl.WirelessChannel_channel_hcl_rawStrain_A150 - channel_hcl_rawStrain_AL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL30 - channel_hcl_rawStrain_AL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL120 - channel_hcl_rawStrain_BR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR60 - channel_hcl_rawStrain_BR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR150 - channel_hcl_rawStrain_B30 = _mscl.WirelessChannel_channel_hcl_rawStrain_B30 - channel_hcl_rawStrain_T120 = _mscl.WirelessChannel_channel_hcl_rawStrain_T120 - channel_hcl_rawStrain_AR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR60 - channel_hcl_rawStrain_AR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR150 - channel_hcl_rawStrain_A30 = _mscl.WirelessChannel_channel_hcl_rawStrain_A30 - channel_hcl_rawStrain_A120 = _mscl.WirelessChannel_channel_hcl_rawStrain_A120 - channel_hcl_rawStrain_BL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL90 - channel_hcl_rawStrain_BL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL180 - channel_hcl_rawStrain_BR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR30 - channel_hcl_rawStrain_BR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR120 - channel_hcl_rawStrain_AL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL90 - channel_hcl_rawStrain_AL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL180 - channel_hcl_rawStrain_AR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR30 - channel_hcl_rawStrain_AR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR120 - channel_hcl_rawStrain_B90 = _mscl.WirelessChannel_channel_hcl_rawStrain_B90 - channel_hcl_rawStrain_T0 = _mscl.WirelessChannel_channel_hcl_rawStrain_T0 - channel_hcl_rawStrain_BL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL60 - channel_hcl_rawStrain_BL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL150 - channel_hcl_rawStrain_A90 = _mscl.WirelessChannel_channel_hcl_rawStrain_A90 - channel_hcl_rawStrain_A0 = _mscl.WirelessChannel_channel_hcl_rawStrain_A0 - channel_hcl_rawStrain_AL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL60 - channel_hcl_rawStrain_AL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL150 - channel_hcl_rawStrain_BR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR90 - channel_hcl_rawStrain_BR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR0 - channel_hcl_rawStrain_T60 = _mscl.WirelessChannel_channel_hcl_rawStrain_T60 - channel_hcl_rawStrain_B150 = _mscl.WirelessChannel_channel_hcl_rawStrain_B150 - channel_hcl_rawStrain_AR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR90 - channel_hcl_rawStrain_AR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR0 - channel_hcl_rawInertial_accel1 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel1 - channel_hcl_rawInertial_accel2 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel2 - channel_hcl_rawInertial_accel3 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel3 - channel_hcl_rawInertial_accel4 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel4 - channel_hcl_rawInertial_accel5 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel5 - channel_hcl_rawInertial_accel6 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel6 - channel_hcl_rawInertial_accel7 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel7 - channel_hcl_rawInertial_accel8 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel8 - channel_hcl_rawInertial_gyroX = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroX - channel_hcl_rawInertial_gyroY = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroY - channel_hcl_rawInertial_gyroZ = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroZ - channel_rawAngleStrain = _mscl.WirelessChannel_channel_rawAngleStrain - channel_beaconEcho = _mscl.WirelessChannel_channel_beaconEcho - channel_rfSweep = _mscl.WirelessChannel_channel_rfSweep - channel_diag_state = _mscl.WirelessChannel_channel_diag_state - channel_diag_runtime_idle = _mscl.WirelessChannel_channel_diag_runtime_idle - channel_diag_runtime_sleep = _mscl.WirelessChannel_channel_diag_runtime_sleep - channel_diag_runtime_activeRun = _mscl.WirelessChannel_channel_diag_runtime_activeRun - channel_diag_runtime_inactiveRun = _mscl.WirelessChannel_channel_diag_runtime_inactiveRun - channel_diag_resetCounter = _mscl.WirelessChannel_channel_diag_resetCounter - channel_diag_lowBatteryFlag = _mscl.WirelessChannel_channel_diag_lowBatteryFlag - channel_diag_sweepIndex = _mscl.WirelessChannel_channel_diag_sweepIndex - channel_diag_badSweepCount = _mscl.WirelessChannel_channel_diag_badSweepCount - channel_diag_totalTx = _mscl.WirelessChannel_channel_diag_totalTx - channel_diag_totalReTx = _mscl.WirelessChannel_channel_diag_totalReTx - channel_diag_totalDroppedPackets = _mscl.WirelessChannel_channel_diag_totalDroppedPackets - channel_diag_builtInTestResult = _mscl.WirelessChannel_channel_diag_builtInTestResult - channel_diag_eventIndex = _mscl.WirelessChannel_channel_diag_eventIndex - channel_hcl_axialLoadX = _mscl.WirelessChannel_channel_hcl_axialLoadX - channel_hcl_axialLoadY = _mscl.WirelessChannel_channel_hcl_axialLoadY - channel_hcl_axialLoadZ = _mscl.WirelessChannel_channel_hcl_axialLoadZ - channel_hcl_bendingMomentFlap = _mscl.WirelessChannel_channel_hcl_bendingMomentFlap - channel_hcl_bendingMomentLag = _mscl.WirelessChannel_channel_hcl_bendingMomentLag - channel_hcl_bendingMomentPitch = _mscl.WirelessChannel_channel_hcl_bendingMomentPitch - channel_hcl_motionFlap_mag = _mscl.WirelessChannel_channel_hcl_motionFlap_mag - channel_hcl_motionLag_mag = _mscl.WirelessChannel_channel_hcl_motionLag_mag - channel_hcl_motionPitch_mag = _mscl.WirelessChannel_channel_hcl_motionPitch_mag - channel_hcl_motionFlap_inertial = _mscl.WirelessChannel_channel_hcl_motionFlap_inertial - channel_hcl_motionLag_inertial = _mscl.WirelessChannel_channel_hcl_motionLag_inertial - channel_hcl_motionPitch_inertial = _mscl.WirelessChannel_channel_hcl_motionPitch_inertial - channel_hcl_cockingStiffness_mag = _mscl.WirelessChannel_channel_hcl_cockingStiffness_mag - channel_hcl_cockingStiffness_inertial = _mscl.WirelessChannel_channel_hcl_cockingStiffness_inertial - channel_hcl_temperature = _mscl.WirelessChannel_channel_hcl_temperature - channel_diag_externalPower = _mscl.WirelessChannel_channel_diag_externalPower - channel_diag_internalTemp = _mscl.WirelessChannel_channel_diag_internalTemp - channel_1_rms = _mscl.WirelessChannel_channel_1_rms - channel_2_rms = _mscl.WirelessChannel_channel_2_rms - channel_3_rms = _mscl.WirelessChannel_channel_3_rms - channel_4_rms = _mscl.WirelessChannel_channel_4_rms - channel_5_rms = _mscl.WirelessChannel_channel_5_rms - channel_6_rms = _mscl.WirelessChannel_channel_6_rms - channel_7_rms = _mscl.WirelessChannel_channel_7_rms - channel_8_rms = _mscl.WirelessChannel_channel_8_rms - channel_9_rms = _mscl.WirelessChannel_channel_9_rms - channel_10_rms = _mscl.WirelessChannel_channel_10_rms - channel_11_rms = _mscl.WirelessChannel_channel_11_rms - channel_12_rms = _mscl.WirelessChannel_channel_12_rms - channel_13_rms = _mscl.WirelessChannel_channel_13_rms - channel_14_rms = _mscl.WirelessChannel_channel_14_rms - channel_15_rms = _mscl.WirelessChannel_channel_15_rms - channel_16_rms = _mscl.WirelessChannel_channel_16_rms - channel_1_peakToPeak = _mscl.WirelessChannel_channel_1_peakToPeak - channel_2_peakToPeak = _mscl.WirelessChannel_channel_2_peakToPeak - channel_3_peakToPeak = _mscl.WirelessChannel_channel_3_peakToPeak - channel_4_peakToPeak = _mscl.WirelessChannel_channel_4_peakToPeak - channel_5_peakToPeak = _mscl.WirelessChannel_channel_5_peakToPeak - channel_6_peakToPeak = _mscl.WirelessChannel_channel_6_peakToPeak - channel_7_peakToPeak = _mscl.WirelessChannel_channel_7_peakToPeak - channel_8_peakToPeak = _mscl.WirelessChannel_channel_8_peakToPeak - channel_9_peakToPeak = _mscl.WirelessChannel_channel_9_peakToPeak - channel_10_peakToPeak = _mscl.WirelessChannel_channel_10_peakToPeak - channel_11_peakToPeak = _mscl.WirelessChannel_channel_11_peakToPeak - channel_12_peakToPeak = _mscl.WirelessChannel_channel_12_peakToPeak - channel_13_peakToPeak = _mscl.WirelessChannel_channel_13_peakToPeak - channel_14_peakToPeak = _mscl.WirelessChannel_channel_14_peakToPeak - channel_15_peakToPeak = _mscl.WirelessChannel_channel_15_peakToPeak - channel_16_peakToPeak = _mscl.WirelessChannel_channel_16_peakToPeak - channel_1_ips = _mscl.WirelessChannel_channel_1_ips - channel_2_ips = _mscl.WirelessChannel_channel_2_ips - channel_3_ips = _mscl.WirelessChannel_channel_3_ips - channel_4_ips = _mscl.WirelessChannel_channel_4_ips - channel_5_ips = _mscl.WirelessChannel_channel_5_ips - channel_6_ips = _mscl.WirelessChannel_channel_6_ips - channel_7_ips = _mscl.WirelessChannel_channel_7_ips - channel_8_ips = _mscl.WirelessChannel_channel_8_ips - channel_9_ips = _mscl.WirelessChannel_channel_9_ips - channel_10_ips = _mscl.WirelessChannel_channel_10_ips - channel_11_ips = _mscl.WirelessChannel_channel_11_ips - channel_12_ips = _mscl.WirelessChannel_channel_12_ips - channel_13_ips = _mscl.WirelessChannel_channel_13_ips - channel_14_ips = _mscl.WirelessChannel_channel_14_ips - channel_15_ips = _mscl.WirelessChannel_channel_15_ips - channel_16_ips = _mscl.WirelessChannel_channel_16_ips - channel_1_crestFactor = _mscl.WirelessChannel_channel_1_crestFactor - channel_2_crestFactor = _mscl.WirelessChannel_channel_2_crestFactor - channel_3_crestFactor = _mscl.WirelessChannel_channel_3_crestFactor - channel_4_crestFactor = _mscl.WirelessChannel_channel_4_crestFactor - channel_5_crestFactor = _mscl.WirelessChannel_channel_5_crestFactor - channel_6_crestFactor = _mscl.WirelessChannel_channel_6_crestFactor - channel_7_crestFactor = _mscl.WirelessChannel_channel_7_crestFactor - channel_8_crestFactor = _mscl.WirelessChannel_channel_8_crestFactor - channel_9_crestFactor = _mscl.WirelessChannel_channel_9_crestFactor - channel_10_crestFactor = _mscl.WirelessChannel_channel_10_crestFactor - channel_11_crestFactor = _mscl.WirelessChannel_channel_11_crestFactor - channel_12_crestFactor = _mscl.WirelessChannel_channel_12_crestFactor - channel_13_crestFactor = _mscl.WirelessChannel_channel_13_crestFactor - channel_14_crestFactor = _mscl.WirelessChannel_channel_14_crestFactor - channel_15_crestFactor = _mscl.WirelessChannel_channel_15_crestFactor - channel_16_crestFactor = _mscl.WirelessChannel_channel_16_crestFactor - channel_diag_syncAttempts = _mscl.WirelessChannel_channel_diag_syncAttempts - channel_diag_syncFailures = _mscl.WirelessChannel_channel_diag_syncFailures - channel_diag_secsSinceLastSync = _mscl.WirelessChannel_channel_diag_secsSinceLastSync - channel_beaconConflict = _mscl.WirelessChannel_channel_beaconConflict - channel_1_mean = _mscl.WirelessChannel_channel_1_mean - channel_2_mean = _mscl.WirelessChannel_channel_2_mean - channel_3_mean = _mscl.WirelessChannel_channel_3_mean - channel_4_mean = _mscl.WirelessChannel_channel_4_mean - channel_5_mean = _mscl.WirelessChannel_channel_5_mean - channel_6_mean = _mscl.WirelessChannel_channel_6_mean - channel_7_mean = _mscl.WirelessChannel_channel_7_mean - channel_8_mean = _mscl.WirelessChannel_channel_8_mean - channel_9_mean = _mscl.WirelessChannel_channel_9_mean - channel_10_mean = _mscl.WirelessChannel_channel_10_mean - channel_11_mean = _mscl.WirelessChannel_channel_11_mean - channel_12_mean = _mscl.WirelessChannel_channel_12_mean - channel_13_mean = _mscl.WirelessChannel_channel_13_mean - channel_14_mean = _mscl.WirelessChannel_channel_14_mean - channel_15_mean = _mscl.WirelessChannel_channel_15_mean - channel_16_mean = _mscl.WirelessChannel_channel_16_mean - channel_1_mmps = _mscl.WirelessChannel_channel_1_mmps - channel_2_mmps = _mscl.WirelessChannel_channel_2_mmps - channel_3_mmps = _mscl.WirelessChannel_channel_3_mmps - channel_4_mmps = _mscl.WirelessChannel_channel_4_mmps - channel_5_mmps = _mscl.WirelessChannel_channel_5_mmps - channel_6_mmps = _mscl.WirelessChannel_channel_6_mmps - channel_7_mmps = _mscl.WirelessChannel_channel_7_mmps - channel_8_mmps = _mscl.WirelessChannel_channel_8_mmps - channel_9_mmps = _mscl.WirelessChannel_channel_9_mmps - channel_10_mmps = _mscl.WirelessChannel_channel_10_mmps - channel_11_mmps = _mscl.WirelessChannel_channel_11_mmps - channel_12_mmps = _mscl.WirelessChannel_channel_12_mmps - channel_13_mmps = _mscl.WirelessChannel_channel_13_mmps - channel_14_mmps = _mscl.WirelessChannel_channel_14_mmps - channel_15_mmps = _mscl.WirelessChannel_channel_15_mmps - channel_16_mmps = _mscl.WirelessChannel_channel_16_mmps - channel_diag_memoryFull = _mscl.WirelessChannel_channel_diag_memoryFull - - def __init__(self, *args): - _mscl.WirelessChannel_swiginit(self, _mscl.new_WirelessChannel(*args)) - - def channelNumber(self): - return _mscl.WirelessChannel_channelNumber(self) - - def id(self): - return _mscl.WirelessChannel_id(self) - - def type(self): - return _mscl.WirelessChannel_type(self) - - def description(self): - return _mscl.WirelessChannel_description(self) - - def adcResolution(self): - return _mscl.WirelessChannel_adcResolution(self) - - def adcMaxValue(self): - return _mscl.WirelessChannel_adcMaxValue(self) - - def name(self): - return _mscl.WirelessChannel_name(self) - __swig_destroy__ = _mscl.delete_WirelessChannel - -# Register WirelessChannel in _mscl: -_mscl.WirelessChannel_swigregister(WirelessChannel) - -class WirelessDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessDataPoint_swiginit(self, _mscl.new_WirelessDataPoint()) - - def channelId(self): - return _mscl.WirelessDataPoint_channelId(self) - - def channelNumber(self): - return _mscl.WirelessDataPoint_channelNumber(self) - - def channelName(self): - return _mscl.WirelessDataPoint_channelName(self) - __swig_destroy__ = _mscl.delete_WirelessDataPoint - -# Register WirelessDataPoint in _mscl: -_mscl.WirelessDataPoint_swigregister(WirelessDataPoint) - -class DataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - samplingType_NonSync = _mscl.DataSweep_samplingType_NonSync - samplingType_NonSync_Buffered = _mscl.DataSweep_samplingType_NonSync_Buffered - samplingType_SyncSampling = _mscl.DataSweep_samplingType_SyncSampling - samplingType_SyncSampling_Burst = _mscl.DataSweep_samplingType_SyncSampling_Burst - samplingType_AsyncDigital = _mscl.DataSweep_samplingType_AsyncDigital - samplingType_AsyncDigitalAnalog = _mscl.DataSweep_samplingType_AsyncDigitalAnalog - samplingType_SHM = _mscl.DataSweep_samplingType_SHM - samplingType_BeaconEcho = _mscl.DataSweep_samplingType_BeaconEcho - samplingType_RfSweep = _mscl.DataSweep_samplingType_RfSweep - samplingType_Diagnostic = _mscl.DataSweep_samplingType_Diagnostic - - def __init__(self): - _mscl.DataSweep_swiginit(self, _mscl.new_DataSweep()) - - def timestamp(self): - return _mscl.DataSweep_timestamp(self) - - def tick(self): - return _mscl.DataSweep_tick(self) - - def sampleRate(self): - return _mscl.DataSweep_sampleRate(self) - - def nodeAddress(self): - return _mscl.DataSweep_nodeAddress(self) - - def data(self): - return _mscl.DataSweep_data(self) - - def samplingType(self): - return _mscl.DataSweep_samplingType(self) - - def nodeRssi(self): - return _mscl.DataSweep_nodeRssi(self) - - def baseRssi(self): - return _mscl.DataSweep_baseRssi(self) - - def frequency(self): - return _mscl.DataSweep_frequency(self) - - def calApplied(self): - return _mscl.DataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_DataSweep - -# Register DataSweep in _mscl: -_mscl.DataSweep_swigregister(DataSweep) - -class BaseStationAnalogPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationAnalogPair_swiginit(self, _mscl.new_BaseStationAnalogPair()) - - @staticmethod - def Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - - @staticmethod - def NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - - def nodeAddress(self, *args): - return _mscl.BaseStationAnalogPair_nodeAddress(self, *args) - - def nodeChannel(self, *args): - return _mscl.BaseStationAnalogPair_nodeChannel(self, *args) - - def expectFloatData(self, *args): - return _mscl.BaseStationAnalogPair_expectFloatData(self, *args) - - def outputVal_0V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_0V(self, *args) - - def outputVal_3V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_3V(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationAnalogPair - -# Register BaseStationAnalogPair in _mscl: -_mscl.BaseStationAnalogPair_swigregister(BaseStationAnalogPair) -BaseStationAnalogPair.CHANNEL_NOT_FLOAT = _mscl.cvar.BaseStationAnalogPair_CHANNEL_NOT_FLOAT - -def BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - -def BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - -class BaseStationButton(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - btn_nodeSleep = _mscl.BaseStationButton_btn_nodeSleep - btn_nodeStop = _mscl.BaseStationButton_btn_nodeStop - btn_enableBeacon = _mscl.BaseStationButton_btn_enableBeacon - btn_disableBeacon = _mscl.BaseStationButton_btn_disableBeacon - btn_nodeNonSyncSampling = _mscl.BaseStationButton_btn_nodeNonSyncSampling - btn_nodeSyncSampling = _mscl.BaseStationButton_btn_nodeSyncSampling - btn_nodeArmedDatalogging = _mscl.BaseStationButton_btn_nodeArmedDatalogging - btn_cyclePower = _mscl.BaseStationButton_btn_cyclePower - btn_disabled = _mscl.BaseStationButton_btn_disabled - - def __init__(self, *args): - _mscl.BaseStationButton_swiginit(self, _mscl.new_BaseStationButton(*args)) - - def command(self, *args): - return _mscl.BaseStationButton_command(self, *args) - - def nodeAddress(self, *args): - return _mscl.BaseStationButton_nodeAddress(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationButton - -# Register BaseStationButton in _mscl: -_mscl.BaseStationButton_swigregister(BaseStationButton) - -class BaseStationConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationConfig_swiginit(self, _mscl.new_BaseStationConfig()) - - def transmitPower(self, *args): - return _mscl.BaseStationConfig_transmitPower(self, *args) - - def communicationProtocol(self, *args): - return _mscl.BaseStationConfig_communicationProtocol(self, *args) - - def buttonLongPress(self, *args): - return _mscl.BaseStationConfig_buttonLongPress(self, *args) - - def buttonShortPress(self, *args): - return _mscl.BaseStationConfig_buttonShortPress(self, *args) - - def analogPairingEnable(self, *args): - return _mscl.BaseStationConfig_analogPairingEnable(self, *args) - - def analogTimeoutTime(self, *args): - return _mscl.BaseStationConfig_analogTimeoutTime(self, *args) - - def analogTimeoutVoltage(self, *args): - return _mscl.BaseStationConfig_analogTimeoutVoltage(self, *args) - - def analogExceedanceEnable(self, *args): - return _mscl.BaseStationConfig_analogExceedanceEnable(self, *args) - - def analogPairing(self, *args): - return _mscl.BaseStationConfig_analogPairing(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationConfig - -# Register BaseStationConfig in _mscl: -_mscl.BaseStationConfig_swigregister(BaseStationConfig) - -class BeaconStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BeaconStatus_swiginit(self, _mscl.new_BeaconStatus(*args)) - - def enabled(self): - return _mscl.BeaconStatus_enabled(self) - - def timestamp(self): - return _mscl.BeaconStatus_timestamp(self) - __swig_destroy__ = _mscl.delete_BeaconStatus - -# Register BeaconStatus in _mscl: -_mscl.BeaconStatus_swigregister(BeaconStatus) - -class BaseStationInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region, asppVer_lxrs, asppVer_lxrsPlus): - _mscl.BaseStationInfo_swiginit(self, _mscl.new_BaseStationInfo(fw, model, region, asppVer_lxrs, asppVer_lxrsPlus)) - __swig_destroy__ = _mscl.delete_BaseStationInfo - -# Register BaseStationInfo in _mscl: -_mscl.BaseStationInfo_swigregister(BaseStationInfo) - -class BaseStation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_BASE_COMMANDS_DEFAULT_TIMEOUT - ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT - BROADCAST_NODE_ADDRESS = _mscl.BaseStation_BROADCAST_NODE_ADDRESS - BROADCAST_NODE_ADDRESS_ASPP3 = _mscl.BaseStation_BROADCAST_NODE_ADDRESS_ASPP3 - - def __init__(self, *args): - _mscl.BaseStation_swiginit(self, _mscl.new_BaseStation(*args)) - __swig_destroy__ = _mscl.delete_BaseStation - - @staticmethod - def Mock(*args): - return _mscl.BaseStation_Mock(*args) - - @staticmethod - def deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - - def connection(self): - return _mscl.BaseStation_connection(self) - - def features(self): - return _mscl.BaseStation_features(self) - - def lastCommunicationTime(self): - return _mscl.BaseStation_lastCommunicationTime(self) - - def readWriteRetries(self, *args): - return _mscl.BaseStation_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.BaseStation_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.BaseStation_clearEepromCache(self) - - def frequency(self): - return _mscl.BaseStation_frequency(self) - - def communicationProtocol(self): - return _mscl.BaseStation_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.BaseStation_firmwareVersion(self) - - def model(self): - return _mscl.BaseStation_model(self) - - def serial(self): - return _mscl.BaseStation_serial(self) - - def name(self): - return _mscl.BaseStation_name(self) - - def microcontroller(self): - return _mscl.BaseStation_microcontroller(self) - - def regionCode(self): - return _mscl.BaseStation_regionCode(self) - - def getData(self, timeout=0, maxSweeps=0): - return _mscl.BaseStation_getData(self, timeout, maxSweeps) - - def totalData(self): - return _mscl.BaseStation_totalData(self) - - def getNodeDiscoveries(self): - return _mscl.BaseStation_getNodeDiscoveries(self) - - def timeout(self, *args): - return _mscl.BaseStation_timeout(self, *args) - - def ping(self): - return _mscl.BaseStation_ping(self) - - def readEeprom(self, eepromAddress): - return _mscl.BaseStation_readEeprom(self, eepromAddress) - - def writeEeprom(self, eepromAddress, value): - return _mscl.BaseStation_writeEeprom(self, eepromAddress, value) - - def enableBeacon(self, *args): - return _mscl.BaseStation_enableBeacon(self, *args) - - def disableBeacon(self): - return _mscl.BaseStation_disableBeacon(self) - - def beaconStatus(self): - return _mscl.BaseStation_beaconStatus(self) - - def startRfSweepMode(self, *args): - return _mscl.BaseStation_startRfSweepMode(self, *args) - - def cyclePower(self, checkComm=True): - return _mscl.BaseStation_cyclePower(self, checkComm) - - def resetRadio(self): - return _mscl.BaseStation_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.BaseStation_changeFrequency(self, frequency) - - def broadcastSetToIdle(self): - return _mscl.BaseStation_broadcastSetToIdle(self) - - def verifyConfig(self, config, outIssues): - return _mscl.BaseStation_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.BaseStation_applyConfig(self, config) - - def getTransmitPower(self): - return _mscl.BaseStation_getTransmitPower(self) - - def getButtonLongPress(self, buttonNumber): - return _mscl.BaseStation_getButtonLongPress(self, buttonNumber) - - def getButtonShortPress(self, buttonNumber): - return _mscl.BaseStation_getButtonShortPress(self, buttonNumber) - - def getAnalogPairingEnabled(self): - return _mscl.BaseStation_getAnalogPairingEnabled(self) - - def getAnalogTimeoutTime(self): - return _mscl.BaseStation_getAnalogTimeoutTime(self) - - def getAnalogTimeoutVoltage(self): - return _mscl.BaseStation_getAnalogTimeoutVoltage(self) - - def getAnalogExceedanceEnabled(self): - return _mscl.BaseStation_getAnalogExceedanceEnabled(self) - - def getAnalogPair(self, portNumber): - return _mscl.BaseStation_getAnalogPair(self, portNumber) - -# Register BaseStation in _mscl: -_mscl.BaseStation_swigregister(BaseStation) - -def BaseStation_Mock(*args): - return _mscl.BaseStation_Mock(*args) - -def BaseStation_deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - -class LoggedDataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LoggedDataSweep_swiginit(self, _mscl.new_LoggedDataSweep(*args)) - - def timestamp(self): - return _mscl.LoggedDataSweep_timestamp(self) - - def tick(self): - return _mscl.LoggedDataSweep_tick(self) - - def data(self): - return _mscl.LoggedDataSweep_data(self) - - def calApplied(self): - return _mscl.LoggedDataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweep - -# Register LoggedDataSweep in _mscl: -_mscl.LoggedDataSweep_swigregister(LoggedDataSweep) - -class RadioFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.RadioFeatures_swiginit(self, _mscl.new_RadioFeatures(*args)) - - def extendedRange(self): - return _mscl.RadioFeatures_extendedRange(self) - __swig_destroy__ = _mscl.delete_RadioFeatures - -# Register RadioFeatures in _mscl: -_mscl.RadioFeatures_swigregister(RadioFeatures) - -class WirelessNodeConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessNodeConfig_swiginit(self, _mscl.new_WirelessNodeConfig()) - SENSOR_DELAY_ALWAYS_ON = _mscl.WirelessNodeConfig_SENSOR_DELAY_ALWAYS_ON - - def defaultMode(self, *args): - return _mscl.WirelessNodeConfig_defaultMode(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.WirelessNodeConfig_inactivityTimeout(self, *args) - - def checkRadioInterval(self, *args): - return _mscl.WirelessNodeConfig_checkRadioInterval(self, *args) - - def transmitPower(self, *args): - return _mscl.WirelessNodeConfig_transmitPower(self, *args) - - def samplingMode(self, *args): - return _mscl.WirelessNodeConfig_samplingMode(self, *args) - - def sampleRate(self, *args): - return _mscl.WirelessNodeConfig_sampleRate(self, *args) - - def activeChannels(self, *args): - return _mscl.WirelessNodeConfig_activeChannels(self, *args) - - def numSweeps(self, *args): - return _mscl.WirelessNodeConfig_numSweeps(self, *args) - - def unlimitedDuration(self, *args): - return _mscl.WirelessNodeConfig_unlimitedDuration(self, *args) - - def dataFormat(self, *args): - return _mscl.WirelessNodeConfig_dataFormat(self, *args) - - def dataCollectionMethod(self, *args): - return _mscl.WirelessNodeConfig_dataCollectionMethod(self, *args) - - def timeBetweenBursts(self, *args): - return _mscl.WirelessNodeConfig_timeBetweenBursts(self, *args) - - def lostBeaconTimeout(self, *args): - return _mscl.WirelessNodeConfig_lostBeaconTimeout(self, *args) - - def pullUpResistor(self, *args): - return _mscl.WirelessNodeConfig_pullUpResistor(self, *args) - - def inputRange(self, *args): - return _mscl.WirelessNodeConfig_inputRange(self, *args) - - def hardwareOffset(self, *args): - return _mscl.WirelessNodeConfig_hardwareOffset(self, *args) - - def antiAliasingFilter(self, *args): - return _mscl.WirelessNodeConfig_antiAliasingFilter(self, *args) - - def cfcFilterConfig(self, *args): - return _mscl.WirelessNodeConfig_cfcFilterConfig(self, *args) - - def lowPassFilter(self, *args): - return _mscl.WirelessNodeConfig_lowPassFilter(self, *args) - - def highPassFilter(self, *args): - return _mscl.WirelessNodeConfig_highPassFilter(self, *args) - - def gaugeFactor(self, *args): - return _mscl.WirelessNodeConfig_gaugeFactor(self, *args) - - def gaugeResistance(self, *args): - return _mscl.WirelessNodeConfig_gaugeResistance(self, *args) - - def excitationVoltage(self, *args): - return _mscl.WirelessNodeConfig_excitationVoltage(self, *args) - - def numActiveGauges(self, *args): - return _mscl.WirelessNodeConfig_numActiveGauges(self, *args) - - def lowBatteryThreshold(self, *args): - return _mscl.WirelessNodeConfig_lowBatteryThreshold(self, *args) - - def linearEquation(self, *args): - return _mscl.WirelessNodeConfig_linearEquation(self, *args) - - def unit(self, *args): - return _mscl.WirelessNodeConfig_unit(self, *args) - - def equationType(self, *args): - return _mscl.WirelessNodeConfig_equationType(self, *args) - - def filterSettlingTime(self, *args): - return _mscl.WirelessNodeConfig_filterSettlingTime(self, *args) - - def thermocoupleType(self, *args): - return _mscl.WirelessNodeConfig_thermocoupleType(self, *args) - - def tempSensorOptions(self, *args): - return _mscl.WirelessNodeConfig_tempSensorOptions(self, *args) - - def debounceFilter(self, *args): - return _mscl.WirelessNodeConfig_debounceFilter(self, *args) - - def fatigueOptions(self, *args): - return _mscl.WirelessNodeConfig_fatigueOptions(self, *args) - - def histogramOptions(self, *args): - return _mscl.WirelessNodeConfig_histogramOptions(self, *args) - - def activitySense(self, *args): - return _mscl.WirelessNodeConfig_activitySense(self, *args) - - def eventTriggerOptions(self, *args): - return _mscl.WirelessNodeConfig_eventTriggerOptions(self, *args) - - def diagnosticInterval(self, *args): - return _mscl.WirelessNodeConfig_diagnosticInterval(self, *args) - - def storageLimitMode(self, *args): - return _mscl.WirelessNodeConfig_storageLimitMode(self, *args) - - def sensorDelay(self, *args): - return _mscl.WirelessNodeConfig_sensorDelay(self, *args) - - def dataMode(self, *args): - return _mscl.WirelessNodeConfig_dataMode(self, *args) - - def derivedDataRate(self, *args): - return _mscl.WirelessNodeConfig_derivedDataRate(self, *args) - - def derivedChannelMask(self, *args): - return _mscl.WirelessNodeConfig_derivedChannelMask(self, *args) - - def derivedVelocityUnit(self, *args): - return _mscl.WirelessNodeConfig_derivedVelocityUnit(self, *args) - - def communicationProtocol(self, *args): - return _mscl.WirelessNodeConfig_communicationProtocol(self, *args) - - def sensorOutputMode(self, *args): - return _mscl.WirelessNodeConfig_sensorOutputMode(self, *args) - - @staticmethod - def flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - - @staticmethod - def flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - __swig_destroy__ = _mscl.delete_WirelessNodeConfig - -# Register WirelessNodeConfig in _mscl: -_mscl.WirelessNodeConfig_swigregister(WirelessNodeConfig) - -def WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - -def WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - -class AutoBalanceResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoBalanceResult_swiginit(self, _mscl.new_AutoBalanceResult()) - - def errorCode(self): - return _mscl.AutoBalanceResult_errorCode(self) - - def percentAchieved(self): - return _mscl.AutoBalanceResult_percentAchieved(self) - - def hardwareOffset(self): - return _mscl.AutoBalanceResult_hardwareOffset(self) - __swig_destroy__ = _mscl.delete_AutoBalanceResult - -# Register AutoBalanceResult in _mscl: -_mscl.AutoBalanceResult_swigregister(AutoBalanceResult) - -class ShuntCalCmdInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - useInternalShunt = property(_mscl.ShuntCalCmdInfo_useInternalShunt_get, _mscl.ShuntCalCmdInfo_useInternalShunt_set) - numActiveGauges = property(_mscl.ShuntCalCmdInfo_numActiveGauges_get, _mscl.ShuntCalCmdInfo_numActiveGauges_set) - gaugeResistance = property(_mscl.ShuntCalCmdInfo_gaugeResistance_get, _mscl.ShuntCalCmdInfo_gaugeResistance_set) - shuntResistance = property(_mscl.ShuntCalCmdInfo_shuntResistance_get, _mscl.ShuntCalCmdInfo_shuntResistance_set) - gaugeFactor = property(_mscl.ShuntCalCmdInfo_gaugeFactor_get, _mscl.ShuntCalCmdInfo_gaugeFactor_set) - inputRange = property(_mscl.ShuntCalCmdInfo_inputRange_get, _mscl.ShuntCalCmdInfo_inputRange_set) - hardwareOffset = property(_mscl.ShuntCalCmdInfo_hardwareOffset_get, _mscl.ShuntCalCmdInfo_hardwareOffset_set) - excitationVoltage = property(_mscl.ShuntCalCmdInfo_excitationVoltage_get, _mscl.ShuntCalCmdInfo_excitationVoltage_set) - - def __init__(self): - _mscl.ShuntCalCmdInfo_swiginit(self, _mscl.new_ShuntCalCmdInfo()) - __swig_destroy__ = _mscl.delete_ShuntCalCmdInfo - -# Register ShuntCalCmdInfo in _mscl: -_mscl.ShuntCalCmdInfo_swigregister(ShuntCalCmdInfo) - -class AutoCalResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_AutoCalResult - - def completionFlag(self): - return _mscl.AutoCalResult_completionFlag(self) - -# Register AutoCalResult in _mscl: -_mscl.AutoCalResult_swigregister(AutoCalResult) - -class AutoCalResult_shmLink(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink_swiginit(self, _mscl.new_AutoCalResult_shmLink()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh3(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink_offsetCh1(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink_offsetCh2(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink_temperature(self) - -# Register AutoCalResult_shmLink in _mscl: -_mscl.AutoCalResult_shmLink_swigregister(AutoCalResult_shmLink) - -class AutoCalResult_shmLink201(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink201_swiginit(self, _mscl.new_AutoCalResult_shmLink201()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink201 - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh3(self) - - def slopeCh1(self): - return _mscl.AutoCalResult_shmLink201_slopeCh1(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink201_offsetCh1(self) - - def slopeCh2(self): - return _mscl.AutoCalResult_shmLink201_slopeCh2(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink201_offsetCh2(self) - - def slopeCh3(self): - return _mscl.AutoCalResult_shmLink201_slopeCh3(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink201_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink201_temperature(self) - -# Register AutoCalResult_shmLink201 in _mscl: -_mscl.AutoCalResult_shmLink201_swigregister(AutoCalResult_shmLink201) - -class AutoShuntCalResult(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoShuntCalResult_swiginit(self, _mscl.new_AutoShuntCalResult()) - __swig_destroy__ = _mscl.delete_AutoShuntCalResult - - def errorFlag(self): - return _mscl.AutoShuntCalResult_errorFlag(self) - - def slope(self): - return _mscl.AutoShuntCalResult_slope(self) - - def offset(self): - return _mscl.AutoShuntCalResult_offset(self) - - def baseMedian(self): - return _mscl.AutoShuntCalResult_baseMedian(self) - - def baseMin(self): - return _mscl.AutoShuntCalResult_baseMin(self) - - def baseMax(self): - return _mscl.AutoShuntCalResult_baseMax(self) - - def shuntMedian(self): - return _mscl.AutoShuntCalResult_shuntMedian(self) - - def shuntMin(self): - return _mscl.AutoShuntCalResult_shuntMin(self) - - def shuntMax(self): - return _mscl.AutoShuntCalResult_shuntMax(self) - -# Register AutoShuntCalResult in _mscl: -_mscl.AutoShuntCalResult_swigregister(AutoShuntCalResult) - -class PingResponse(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PingResponse_swiginit(self, _mscl.new_PingResponse()) - - def success(self): - return _mscl.PingResponse_success(self) - - def nodeRssi(self): - return _mscl.PingResponse_nodeRssi(self) - - def baseRssi(self): - return _mscl.PingResponse_baseRssi(self) - __swig_destroy__ = _mscl.delete_PingResponse - -# Register PingResponse in _mscl: -_mscl.PingResponse_swigregister(PingResponse) - -class SetToIdleStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - setToIdleResult_success = _mscl.SetToIdleStatus_setToIdleResult_success - setToIdleResult_canceled = _mscl.SetToIdleStatus_setToIdleResult_canceled - setToIdleResult_failed = _mscl.SetToIdleStatus_setToIdleResult_failed - setToIdleResult_notCompleted = _mscl.SetToIdleStatus_setToIdleResult_notCompleted - - def result(self): - return _mscl.SetToIdleStatus_result(self) - - def complete(self, timeout=10): - return _mscl.SetToIdleStatus_complete(self, timeout) - - def cancel(self): - return _mscl.SetToIdleStatus_cancel(self) - __swig_destroy__ = _mscl.delete_SetToIdleStatus - -# Register SetToIdleStatus in _mscl: -_mscl.SetToIdleStatus_swigregister(SetToIdleStatus) - -class NodeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region): - _mscl.NodeInfo_swiginit(self, _mscl.new_NodeInfo(fw, model, region)) - __swig_destroy__ = _mscl.delete_NodeInfo - -# Register NodeInfo in _mscl: -_mscl.NodeInfo_swigregister(NodeInfo) - -class WirelessNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, nodeAddress, basestation): - _mscl.WirelessNode_swiginit(self, _mscl.new_WirelessNode(nodeAddress, basestation)) - __swig_destroy__ = _mscl.delete_WirelessNode - - @staticmethod - def Mock(*args): - return _mscl.WirelessNode_Mock(*args) - - @staticmethod - def deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - - def features(self): - return _mscl.WirelessNode_features(self) - - def lastCommunicationTime(self): - return _mscl.WirelessNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.WirelessNode_lastDeviceState(self) - - def setBaseStation(self, basestation): - return _mscl.WirelessNode_setBaseStation(self, basestation) - - def getBaseStation(self): - return _mscl.WirelessNode_getBaseStation(self) - - def hasBaseStation(self, basestation): - return _mscl.WirelessNode_hasBaseStation(self, basestation) - - def useGroupRead(self, useGroup): - return _mscl.WirelessNode_useGroupRead(self, useGroup) - - def readWriteRetries(self, *args): - return _mscl.WirelessNode_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.WirelessNode_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.WirelessNode_clearEepromCache(self) - - def updateEepromCacheFromNodeDiscovery(self, nodeDisovery): - return _mscl.WirelessNode_updateEepromCacheFromNodeDiscovery(self, nodeDisovery) - - def getEepromCache(self): - return _mscl.WirelessNode_getEepromCache(self) - - def nodeAddress(self): - return _mscl.WirelessNode_nodeAddress(self) - - def frequency(self): - return _mscl.WirelessNode_frequency(self) - - def communicationProtocol(self): - return _mscl.WirelessNode_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.WirelessNode_firmwareVersion(self) - - def model(self): - return _mscl.WirelessNode_model(self) - - def serial(self): - return _mscl.WirelessNode_serial(self) - - def name(self): - return _mscl.WirelessNode_name(self) - - def microcontroller(self): - return _mscl.WirelessNode_microcontroller(self) - - def radioFeatures(self): - return _mscl.WirelessNode_radioFeatures(self) - - def dataStorageSize(self): - return _mscl.WirelessNode_dataStorageSize(self) - - def regionCode(self): - return _mscl.WirelessNode_regionCode(self) - - def ping(self): - return _mscl.WirelessNode_ping(self) - - def sleep(self): - return _mscl.WirelessNode_sleep(self) - - def cyclePower(self): - return _mscl.WirelessNode_cyclePower(self) - - def resetRadio(self): - return _mscl.WirelessNode_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.WirelessNode_changeFrequency(self, frequency) - - def setToIdle(self): - return _mscl.WirelessNode_setToIdle(self) - - def erase(self): - return _mscl.WirelessNode_erase(self) - - def startNonSyncSampling(self): - return _mscl.WirelessNode_startNonSyncSampling(self) - - def resendStartSyncSampling(self): - return _mscl.WirelessNode_resendStartSyncSampling(self) - - def clearHistogram(self): - return _mscl.WirelessNode_clearHistogram(self) - - def autoBalance(self, mask, targetPercent): - return _mscl.WirelessNode_autoBalance(self, mask, targetPercent) - - def autoCal_shmLink(self): - return _mscl.WirelessNode_autoCal_shmLink(self) - - def autoCal_shmLink201(self): - return _mscl.WirelessNode_autoCal_shmLink201(self) - - def autoShuntCal(self, mask, commandInfo): - return _mscl.WirelessNode_autoShuntCal(self, mask, commandInfo) - - def poll(self, mask): - return _mscl.WirelessNode_poll(self, mask) - - def readEeprom(self, location): - return _mscl.WirelessNode_readEeprom(self, location) - - def writeEeprom(self, location, value): - return _mscl.WirelessNode_writeEeprom(self, location, value) - - def getDiagnosticInfo(self): - return _mscl.WirelessNode_getDiagnosticInfo(self) - - def testCommunicationProtocol(self, protocol): - return _mscl.WirelessNode_testCommunicationProtocol(self, protocol) - - def verifyConfig(self, config, outIssues): - return _mscl.WirelessNode_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.WirelessNode_applyConfig(self, config) - - def getNumDatalogSessions(self): - return _mscl.WirelessNode_getNumDatalogSessions(self) - - def percentFull(self): - return _mscl.WirelessNode_percentFull(self) - - def getDefaultMode(self): - return _mscl.WirelessNode_getDefaultMode(self) - - def getInactivityTimeout(self): - return _mscl.WirelessNode_getInactivityTimeout(self) - - def getCheckRadioInterval(self): - return _mscl.WirelessNode_getCheckRadioInterval(self) - - def getTransmitPower(self): - return _mscl.WirelessNode_getTransmitPower(self) - - def getSamplingMode(self): - return _mscl.WirelessNode_getSamplingMode(self) - - def getActiveChannels(self): - return _mscl.WirelessNode_getActiveChannels(self) - - def getSampleRate(self): - return _mscl.WirelessNode_getSampleRate(self) - - def getNumSweeps(self): - return _mscl.WirelessNode_getNumSweeps(self) - - def getUnlimitedDuration(self): - return _mscl.WirelessNode_getUnlimitedDuration(self) - - def getDataFormat(self): - return _mscl.WirelessNode_getDataFormat(self) - - def getDataCollectionMethod(self): - return _mscl.WirelessNode_getDataCollectionMethod(self) - - def getTimeBetweenBursts(self): - return _mscl.WirelessNode_getTimeBetweenBursts(self) - - def getLostBeaconTimeout(self): - return _mscl.WirelessNode_getLostBeaconTimeout(self) - - def getInputRange(self, mask): - return _mscl.WirelessNode_getInputRange(self, mask) - - def getHardwareOffset(self, mask): - return _mscl.WirelessNode_getHardwareOffset(self, mask) - - def getAntiAliasingFilter(self, mask): - return _mscl.WirelessNode_getAntiAliasingFilter(self, mask) - - def getCfcFilterConfiguration(self): - return _mscl.WirelessNode_getCfcFilterConfiguration(self) - - def getLowPassFilter(self, mask): - return _mscl.WirelessNode_getLowPassFilter(self, mask) - - def getHighPassFilter(self, mask): - return _mscl.WirelessNode_getHighPassFilter(self, mask) - - def getDebounceFilter(self, mask): - return _mscl.WirelessNode_getDebounceFilter(self, mask) - - def getPullUpResistor(self, mask): - return _mscl.WirelessNode_getPullUpResistor(self, mask) - - def getSensorOutputMode(self): - return _mscl.WirelessNode_getSensorOutputMode(self) - - def getGaugeFactor(self, mask): - return _mscl.WirelessNode_getGaugeFactor(self, mask) - - def getExcitationVoltage(self): - return _mscl.WirelessNode_getExcitationVoltage(self) - - def getAdcVoltageRef(self): - return _mscl.WirelessNode_getAdcVoltageRef(self) - - def getGainAmplifierVoltageRef(self): - return _mscl.WirelessNode_getGainAmplifierVoltageRef(self) - - def getGaugeResistance(self): - return _mscl.WirelessNode_getGaugeResistance(self) - - def getNumActiveGauges(self): - return _mscl.WirelessNode_getNumActiveGauges(self) - - def getLowBatteryThreshold(self): - return _mscl.WirelessNode_getLowBatteryThreshold(self) - - def getLinearEquation(self, mask): - return _mscl.WirelessNode_getLinearEquation(self, mask) - - def getUnit(self, mask): - return _mscl.WirelessNode_getUnit(self, mask) - - def getEquationType(self, mask): - return _mscl.WirelessNode_getEquationType(self, mask) - - def getFactoryCalibrationLinearEq(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationLinearEq(self, mask) - - def getFactoryCalibrationUnit(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationUnit(self, mask) - - def getFactoryCalibrationEqType(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationEqType(self, mask) - - def getFilterSettlingTime(self, mask): - return _mscl.WirelessNode_getFilterSettlingTime(self, mask) - - def getThermocoupleType(self, mask): - return _mscl.WirelessNode_getThermocoupleType(self, mask) - - def getTempSensorOptions(self, mask): - return _mscl.WirelessNode_getTempSensorOptions(self, mask) - - def getFatigueOptions(self): - return _mscl.WirelessNode_getFatigueOptions(self) - - def getHistogramOptions(self): - return _mscl.WirelessNode_getHistogramOptions(self) - - def getActivitySense(self): - return _mscl.WirelessNode_getActivitySense(self) - - def getEventTriggerOptions(self): - return _mscl.WirelessNode_getEventTriggerOptions(self) - - def getDiagnosticInterval(self): - return _mscl.WirelessNode_getDiagnosticInterval(self) - - def getStorageLimitMode(self): - return _mscl.WirelessNode_getStorageLimitMode(self) - - def getSensorDelay(self): - return _mscl.WirelessNode_getSensorDelay(self) - - def getDataMode(self): - return _mscl.WirelessNode_getDataMode(self) - - def getDerivedDataRate(self): - return _mscl.WirelessNode_getDerivedDataRate(self) - - def getDerivedChannelMask(self, category): - return _mscl.WirelessNode_getDerivedChannelMask(self, category) - - def getDerivedVelocityUnit(self): - return _mscl.WirelessNode_getDerivedVelocityUnit(self) - -# Register WirelessNode in _mscl: -_mscl.WirelessNode_swigregister(WirelessNode) - -def WirelessNode_Mock(*args): - return _mscl.WirelessNode_Mock(*args) - -def WirelessNode_deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - -class DatalogDownloader(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.DatalogDownloader_swiginit(self, _mscl.new_DatalogDownloader(*args)) - __swig_destroy__ = _mscl.delete_DatalogDownloader - - def complete(self): - return _mscl.DatalogDownloader_complete(self) - - def percentComplete(self): - return _mscl.DatalogDownloader_percentComplete(self) - - def getNextData(self): - return _mscl.DatalogDownloader_getNextData(self) - - def metaDataUpdated(self): - return _mscl.DatalogDownloader_metaDataUpdated(self) - - def calCoefficientsUpdated(self): - return _mscl.DatalogDownloader_calCoefficientsUpdated(self) - - def startOfSession(self): - return _mscl.DatalogDownloader_startOfSession(self) - - def sessionIndex(self): - return _mscl.DatalogDownloader_sessionIndex(self) - - def sampleRate(self): - return _mscl.DatalogDownloader_sampleRate(self) - - def userString(self): - return _mscl.DatalogDownloader_userString(self) - - def calCoefficients(self): - return _mscl.DatalogDownloader_calCoefficients(self) - -# Register DatalogDownloader in _mscl: -_mscl.DatalogDownloader_swigregister(DatalogDownloader) - -class ArmedDataloggingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.ArmedDataloggingNetwork_swiginit(self, _mscl.new_ArmedDataloggingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.ArmedDataloggingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.ArmedDataloggingNetwork_removeNode(self, nodeAddress) - - def startSampling(self): - return _mscl.ArmedDataloggingNetwork_startSampling(self) - __swig_destroy__ = _mscl.delete_ArmedDataloggingNetwork - -# Register ArmedDataloggingNetwork in _mscl: -_mscl.ArmedDataloggingNetwork_swigregister(ArmedDataloggingNetwork) - -class SyncNetworkInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - status_OK = _mscl.SyncNetworkInfo_status_OK - status_PoorCommunication = _mscl.SyncNetworkInfo_status_PoorCommunication - status_DoesNotFit = _mscl.SyncNetworkInfo_status_DoesNotFit - status_Contention = _mscl.SyncNetworkInfo_status_Contention - - def __init__(self, node): - _mscl.SyncNetworkInfo_swiginit(self, _mscl.new_SyncNetworkInfo(node)) - - def status(self): - return _mscl.SyncNetworkInfo_status(self) - - def startedSampling(self): - return _mscl.SyncNetworkInfo_startedSampling(self) - - def configurationApplied(self): - return _mscl.SyncNetworkInfo_configurationApplied(self) - - def percentBandwidth(self): - return _mscl.SyncNetworkInfo_percentBandwidth(self) - - def tdmaAddress(self): - return _mscl.SyncNetworkInfo_tdmaAddress(self) - - def maxTdmaAddress(self): - return _mscl.SyncNetworkInfo_maxTdmaAddress(self) - - def transmissionPerGroup(self): - return _mscl.SyncNetworkInfo_transmissionPerGroup(self) - - def groupSize(self): - return _mscl.SyncNetworkInfo_groupSize(self) - __swig_destroy__ = _mscl.delete_SyncNetworkInfo - -# Register SyncNetworkInfo in _mscl: -_mscl.SyncNetworkInfo_swigregister(SyncNetworkInfo) - -class SyncSamplingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.SyncSamplingNetwork_swiginit(self, _mscl.new_SyncSamplingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.SyncSamplingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.SyncSamplingNetwork_removeNode(self, nodeAddress) - - def percentBandwidth(self): - return _mscl.SyncSamplingNetwork_percentBandwidth(self) - - def ok(self): - return _mscl.SyncSamplingNetwork_ok(self) - - def refresh(self): - return _mscl.SyncSamplingNetwork_refresh(self) - - def lossless(self, *args): - return _mscl.SyncSamplingNetwork_lossless(self, *args) - - def communicationProtocol(self, *args): - return _mscl.SyncSamplingNetwork_communicationProtocol(self, *args) - - def applyConfiguration(self): - return _mscl.SyncSamplingNetwork_applyConfiguration(self) - - def startSampling(self, *args): - return _mscl.SyncSamplingNetwork_startSampling(self, *args) - - def startSampling_noBeacon(self): - return _mscl.SyncSamplingNetwork_startSampling_noBeacon(self) - - def getNodeNetworkInfo(self, nodeAddress): - return _mscl.SyncSamplingNetwork_getNodeNetworkInfo(self, nodeAddress) - __swig_destroy__ = _mscl.delete_SyncSamplingNetwork - -# Register SyncSamplingNetwork in _mscl: -_mscl.SyncSamplingNetwork_swigregister(SyncSamplingNetwork) - -class NodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_NodeFeatures - - def normalizeNumSweeps(self, sweeps): - return _mscl.NodeFeatures_normalizeNumSweeps(self, sweeps) - - def normalizeTimeBetweenBursts(self, time): - return _mscl.NodeFeatures_normalizeTimeBetweenBursts(self, time) - - def channels(self): - return _mscl.NodeFeatures_channels(self) - - def channelGroups(self): - return _mscl.NodeFeatures_channelGroups(self) - - def channelType(self, channelNumber): - return _mscl.NodeFeatures_channelType(self, channelNumber) - - def supportsChannelSetting(self, setting, mask): - return _mscl.NodeFeatures_supportsChannelSetting(self, setting, mask) - - def supportsInputRangePerExcitationVoltage(self): - return _mscl.NodeFeatures_supportsInputRangePerExcitationVoltage(self) - - def supportsHardwareOffset(self): - return _mscl.NodeFeatures_supportsHardwareOffset(self) - - def supportsAntiAliasingFilter(self): - return _mscl.NodeFeatures_supportsAntiAliasingFilter(self) - - def supportsLowPassFilter(self): - return _mscl.NodeFeatures_supportsLowPassFilter(self) - - def supportsHighPassFilter(self): - return _mscl.NodeFeatures_supportsHighPassFilter(self) - - def supportsGaugeFactor(self): - return _mscl.NodeFeatures_supportsGaugeFactor(self) - - def supportsGaugeResistance(self): - return _mscl.NodeFeatures_supportsGaugeResistance(self) - - def supportsNumActiveGauges(self): - return _mscl.NodeFeatures_supportsNumActiveGauges(self) - - def supportsLostBeaconTimeout(self): - return _mscl.NodeFeatures_supportsLostBeaconTimeout(self) - - def supportsPullUpResistor(self): - return _mscl.NodeFeatures_supportsPullUpResistor(self) - - def supportsFilterSettlingTime(self): - return _mscl.NodeFeatures_supportsFilterSettlingTime(self) - - def supportsThermocoupleType(self): - return _mscl.NodeFeatures_supportsThermocoupleType(self) - - def supportsTempSensorOptions(self): - return _mscl.NodeFeatures_supportsTempSensorOptions(self) - - def supportsDebounceFilter(self): - return _mscl.NodeFeatures_supportsDebounceFilter(self) - - def supportsFatigueConfig(self): - return _mscl.NodeFeatures_supportsFatigueConfig(self) - - def supportsYoungsModConfig(self): - return _mscl.NodeFeatures_supportsYoungsModConfig(self) - - def supportsPoissonsRatioConfig(self): - return _mscl.NodeFeatures_supportsPoissonsRatioConfig(self) - - def supportsFatigueDebugModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueDebugModeConfig(self) - - def supportsFatigueModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueModeConfig(self) - - def supportsHistogramConfig(self): - return _mscl.NodeFeatures_supportsHistogramConfig(self) - - def supportsHistogramRateConfig(self): - return _mscl.NodeFeatures_supportsHistogramRateConfig(self) - - def supportsHistogramEnableConfig(self): - return _mscl.NodeFeatures_supportsHistogramEnableConfig(self) - - def supportsActivitySense(self): - return _mscl.NodeFeatures_supportsActivitySense(self) - - def supportsAutoBalance(self): - return _mscl.NodeFeatures_supportsAutoBalance(self) - - def supportsLegacyShuntCal(self): - return _mscl.NodeFeatures_supportsLegacyShuntCal(self) - - def supportsAutoCal_shm(self): - return _mscl.NodeFeatures_supportsAutoCal_shm(self) - - def supportsAutoCal_shm201(self): - return _mscl.NodeFeatures_supportsAutoCal_shm201(self) - - def supportsAutoShuntCal(self): - return _mscl.NodeFeatures_supportsAutoShuntCal(self) - - def supportsGetFactoryCal(self): - return _mscl.NodeFeatures_supportsGetFactoryCal(self) - - def supportsLimitedDuration(self): - return _mscl.NodeFeatures_supportsLimitedDuration(self) - - def supportsEventTrigger(self): - return _mscl.NodeFeatures_supportsEventTrigger(self) - - def supportsDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsDiagnosticInfo(self) - - def supportsLoggedData(self): - return _mscl.NodeFeatures_supportsLoggedData(self) - - def supportsPoll(self): - return _mscl.NodeFeatures_supportsPoll(self) - - def supportsSensorDelayConfig(self): - return _mscl.NodeFeatures_supportsSensorDelayConfig(self) - - def supportsSensorDelayAlwaysOn(self): - return _mscl.NodeFeatures_supportsSensorDelayAlwaysOn(self) - - def supportsSensorOutputMode(self): - return _mscl.NodeFeatures_supportsSensorOutputMode(self) - - def supportsCfcFilterConfiguration(self): - return _mscl.NodeFeatures_supportsCfcFilterConfiguration(self) - - def supportsChannel(self, channelNumber): - return _mscl.NodeFeatures_supportsChannel(self, channelNumber) - - def supportsSamplingMode(self, samplingMode): - return _mscl.NodeFeatures_supportsSamplingMode(self, samplingMode) - - def supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.NodeFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsDataFormat(self, dataFormat): - return _mscl.NodeFeatures_supportsDataFormat(self, dataFormat) - - def supportsDefaultMode(self, mode): - return _mscl.NodeFeatures_supportsDefaultMode(self, mode) - - def supportsDataCollectionMethod(self, collectionMethod): - return _mscl.NodeFeatures_supportsDataCollectionMethod(self, collectionMethod) - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.NodeFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsDataMode(self, dataMode): - return _mscl.NodeFeatures_supportsDataMode(self, dataMode) - - def supportsTransducerType(self, transducerType): - return _mscl.NodeFeatures_supportsTransducerType(self, transducerType) - - def supportsFatigueMode(self, mode): - return _mscl.NodeFeatures_supportsFatigueMode(self, mode) - - def supportsInputRange(self, *args): - return _mscl.NodeFeatures_supportsInputRange(self, *args) - - def supportsCentisecondEventDuration(self): - return _mscl.NodeFeatures_supportsCentisecondEventDuration(self) - - def supportsGetDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsGetDiagnosticInfo(self) - - def supportsNonSyncLogWithTimestamps(self): - return _mscl.NodeFeatures_supportsNonSyncLogWithTimestamps(self) - - def supportsDerivedCategory(self, category): - return _mscl.NodeFeatures_supportsDerivedCategory(self, category) - - def supportsRawDataMode(self): - return _mscl.NodeFeatures_supportsRawDataMode(self) - - def supportsDerivedDataMode(self): - return _mscl.NodeFeatures_supportsDerivedDataMode(self) - - def supportsDerivedVelocityUnitConfig(self): - return _mscl.NodeFeatures_supportsDerivedVelocityUnitConfig(self) - - def supportsExcitationVoltageConfig(self): - return _mscl.NodeFeatures_supportsExcitationVoltageConfig(self) - - def supportsLowBatteryThresholdConfig(self): - return _mscl.NodeFeatures_supportsLowBatteryThresholdConfig(self) - - def maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode) - - def maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode) - - def maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels): - return _mscl.NodeFeatures_maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels) - - def maxFilterSettlingTime(self, rate): - return _mscl.NodeFeatures_maxFilterSettlingTime(self, rate) - - def minInactivityTimeout(self): - return _mscl.NodeFeatures_minInactivityTimeout(self) - - def minLostBeaconTimeout(self): - return _mscl.NodeFeatures_minLostBeaconTimeout(self) - - def maxLostBeaconTimeout(self): - return _mscl.NodeFeatures_maxLostBeaconTimeout(self) - - def minCheckRadioInterval(self): - return _mscl.NodeFeatures_minCheckRadioInterval(self) - - def maxCheckRadioInterval(self): - return _mscl.NodeFeatures_maxCheckRadioInterval(self) - - def minSweeps(self): - return _mscl.NodeFeatures_minSweeps(self) - - def maxSweeps(self, samplingMode, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweeps(self, samplingMode, dataMode, dataFormat, channels) - - def maxSweepsPerBurst(self, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweepsPerBurst(self, dataMode, dataFormat, channels) - - def minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol): - return _mscl.NodeFeatures_minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol) - - def minSensorDelay(self): - return _mscl.NodeFeatures_minSensorDelay(self) - - def maxSensorDelay(self): - return _mscl.NodeFeatures_maxSensorDelay(self) - - def defaultSensorDelay(self): - return _mscl.NodeFeatures_defaultSensorDelay(self) - - def maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate): - return _mscl.NodeFeatures_maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate) - - def normalizeEventDuration(self, duration): - return _mscl.NodeFeatures_normalizeEventDuration(self, duration) - - def normalizeSensorDelay(self, delay): - return _mscl.NodeFeatures_normalizeSensorDelay(self, delay) - - def numDamageAngles(self): - return _mscl.NodeFeatures_numDamageAngles(self) - - def numSnCurveSegments(self): - return _mscl.NodeFeatures_numSnCurveSegments(self) - - def numEventTriggers(self): - return _mscl.NodeFeatures_numEventTriggers(self) - - def defaultModes(self): - return _mscl.NodeFeatures_defaultModes(self) - - def dataCollectionMethods(self): - return _mscl.NodeFeatures_dataCollectionMethods(self) - - def dataFormats(self): - return _mscl.NodeFeatures_dataFormats(self) - - def samplingModes(self): - return _mscl.NodeFeatures_samplingModes(self) - - def sampleRates(self, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_sampleRates(self, samplingMode, dataCollectionMethod, dataMode) - - def derivedDataRates(self): - return _mscl.NodeFeatures_derivedDataRates(self) - - def transmitPowers(self, *args): - return _mscl.NodeFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.NodeFeatures_commProtocols(self) - - def sensorOutputModes(self): - return _mscl.NodeFeatures_sensorOutputModes(self) - - def cfcFilters(self): - return _mscl.NodeFeatures_cfcFilters(self) - - def histogramTransmitRates(self): - return _mscl.NodeFeatures_histogramTransmitRates(self) - - def fatigueModes(self): - return _mscl.NodeFeatures_fatigueModes(self) - - def antiAliasingFilters(self): - return _mscl.NodeFeatures_antiAliasingFilters(self) - - def lowPassFilters(self): - return _mscl.NodeFeatures_lowPassFilters(self) - - def highPassFilters(self): - return _mscl.NodeFeatures_highPassFilters(self) - - def storageLimitModes(self): - return _mscl.NodeFeatures_storageLimitModes(self) - - def inputRanges(self, *args): - return _mscl.NodeFeatures_inputRanges(self, *args) - - def dataModes(self): - return _mscl.NodeFeatures_dataModes(self) - - def transducerTypes(self): - return _mscl.NodeFeatures_transducerTypes(self) - - def channelsPerDerivedCategory(self): - return _mscl.NodeFeatures_channelsPerDerivedCategory(self) - - def excitationVoltages(self): - return _mscl.NodeFeatures_excitationVoltages(self) - - def adcVoltageInputType(self): - return _mscl.NodeFeatures_adcVoltageInputType(self) - - def maxTransmitPower(self, *args): - return _mscl.NodeFeatures_maxTransmitPower(self, *args) - - def minTransmitPower(self, *args): - return _mscl.NodeFeatures_minTransmitPower(self, *args) - -# Register NodeFeatures in _mscl: -_mscl.NodeFeatures_swigregister(NodeFeatures) - -class BaseStationFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_BaseStationFeatures - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.BaseStationFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.BaseStationFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsButtons(self): - return _mscl.BaseStationFeatures_supportsButtons(self) - - def supportsAnalogPairing(self): - return _mscl.BaseStationFeatures_supportsAnalogPairing(self) - - def supportsBeaconStatus(self): - return _mscl.BaseStationFeatures_supportsBeaconStatus(self) - - def supportsRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsRfSweepMode(self) - - def supportsCustomRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsCustomRfSweepMode(self) - - def buttonCount(self): - return _mscl.BaseStationFeatures_buttonCount(self) - - def analogPortCount(self): - return _mscl.BaseStationFeatures_analogPortCount(self) - - def transmitPowers(self, *args): - return _mscl.BaseStationFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.BaseStationFeatures_commProtocols(self) - - def maxTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_maxTransmitPower(self, region, commProtocol) - - def minTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_minTransmitPower(self, region, commProtocol) - -# Register BaseStationFeatures in _mscl: -_mscl.BaseStationFeatures_swigregister(BaseStationFeatures) - -class EulerAngles(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EulerAngles_swiginit(self, _mscl.new_EulerAngles(*args)) - - def asMipFieldValues(self): - return _mscl.EulerAngles_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.EulerAngles_appendMipFieldValues(self, appendTo) - - def roll(self): - return _mscl.EulerAngles_roll(self) - - def pitch(self): - return _mscl.EulerAngles_pitch(self) - - def yaw(self): - return _mscl.EulerAngles_yaw(self) - - def heading(self): - return _mscl.EulerAngles_heading(self) - __swig_destroy__ = _mscl.delete_EulerAngles - -# Register EulerAngles in _mscl: -_mscl.EulerAngles_swigregister(EulerAngles) - -class Quaternion(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Quaternion_swiginit(self, _mscl.new_Quaternion(*args)) - - def asMipFieldValues(self): - return _mscl.Quaternion_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Quaternion_appendMipFieldValues(self, appendTo) - - def normalize(self): - return _mscl.Quaternion_normalize(self) - - def q0(self): - return _mscl.Quaternion_q0(self) - - def q1(self): - return _mscl.Quaternion_q1(self) - - def q2(self): - return _mscl.Quaternion_q2(self) - - def q3(self): - return _mscl.Quaternion_q3(self) - __swig_destroy__ = _mscl.delete_Quaternion - -# Register Quaternion in _mscl: -_mscl.Quaternion_swigregister(Quaternion) - -class Rotation(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EULER_ANGLES = _mscl.Rotation_EULER_ANGLES - QUATERNION = _mscl.Rotation_QUATERNION - - def __init__(self, *args): - _mscl.Rotation_swiginit(self, _mscl.new_Rotation(*args)) - - @staticmethod - def FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - - @staticmethod - def FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - - def asEulerAngles(self): - return _mscl.Rotation_asEulerAngles(self) - - def asQuaternion(self): - return _mscl.Rotation_asQuaternion(self) - - def asMipFieldValues(self, includeFormat=True): - return _mscl.Rotation_asMipFieldValues(self, includeFormat) - - def appendMipFieldValues(self, appendTo, includeFormat=True): - return _mscl.Rotation_appendMipFieldValues(self, appendTo, includeFormat) - - def format(self): - return _mscl.Rotation_format(self) - __swig_destroy__ = _mscl.delete_Rotation - -# Register Rotation in _mscl: -_mscl.Rotation_swigregister(Rotation) - -def Rotation_FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - -def Rotation_FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - -class Vec3f(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Vec3f_swiginit(self, _mscl.new_Vec3f(*args)) - __swig_destroy__ = _mscl.delete_Vec3f - - def fromMipFieldValues(self, data, offset=0): - return _mscl.Vec3f_fromMipFieldValues(self, data, offset) - - def asMipFieldValues(self): - return _mscl.Vec3f_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Vec3f_appendMipFieldValues(self, appendTo) - - def x(self, *args): - return _mscl.Vec3f_x(self, *args) - - def y(self, *args): - return _mscl.Vec3f_y(self, *args) - - def z(self, *args): - return _mscl.Vec3f_z(self, *args) - -# Register Vec3f in _mscl: -_mscl.Vec3f_swigregister(Vec3f) - -ECEF = _mscl.ECEF -LLH_NED = _mscl.LLH_NED -LOCAL = _mscl.LOCAL -VEHICLE = _mscl.VEHICLE -class GeometricVector(Vec3f): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - - @staticmethod - def VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - - def __init__(self, *args): - _mscl.GeometricVector_swiginit(self, _mscl.new_GeometricVector(*args)) - __swig_destroy__ = _mscl.delete_GeometricVector - - def fromMipFieldValues_includesFrame(self, data, offset=0): - return _mscl.GeometricVector_fromMipFieldValues_includesFrame(self, data, offset) - - def asMipFieldValues_includeFrame(self): - return _mscl.GeometricVector_asMipFieldValues_includeFrame(self) - - def appendMipFieldValues_includeFrame(self, appendTo): - return _mscl.GeometricVector_appendMipFieldValues_includeFrame(self, appendTo) - referenceFrame = property(_mscl.GeometricVector_referenceFrame_get, _mscl.GeometricVector_referenceFrame_set) - - def north(self, *args): - return _mscl.GeometricVector_north(self, *args) - - def east(self, *args): - return _mscl.GeometricVector_east(self, *args) - - def down(self, *args): - return _mscl.GeometricVector_down(self, *args) - -# Register GeometricVector in _mscl: -_mscl.GeometricVector_swigregister(GeometricVector) - -def GeometricVector_VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - -def GeometricVector_VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - -class PositionOffset(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.PositionOffset_swiginit(self, _mscl.new_PositionOffset(*args)) - __swig_destroy__ = _mscl.delete_PositionOffset - -# Register PositionOffset in _mscl: -_mscl.PositionOffset_swigregister(PositionOffset) - -class Velocity(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Velocity_swiginit(self, _mscl.new_Velocity(*args)) - __swig_destroy__ = _mscl.delete_Velocity - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - - @staticmethod - def NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - - @staticmethod - def Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -# Register Velocity in _mscl: -_mscl.Velocity_swigregister(Velocity) - -def Velocity_ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - -def Velocity_NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - -def Velocity_Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -class Position(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - - def __init__(self, *args): - _mscl.Position_swiginit(self, _mscl.new_Position(*args)) - __swig_destroy__ = _mscl.delete_Position - referenceFrame = property(_mscl.Position_referenceFrame_get, _mscl.Position_referenceFrame_set) - - def latitude(self, *args): - return _mscl.Position_latitude(self, *args) - - def longitude(self, *args): - return _mscl.Position_longitude(self, *args) - - def altitude(self, *args): - return _mscl.Position_altitude(self, *args) - - def height(self, *args): - return _mscl.Position_height(self, *args) - - def x(self, *args): - return _mscl.Position_x(self, *args) - - def y(self, *args): - return _mscl.Position_y(self, *args) - - def z(self, *args): - return _mscl.Position_z(self, *args) - -# Register Position in _mscl: -_mscl.Position_swigregister(Position) - -def Position_LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - -def Position_ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - -class GeometricUncertainty(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeometricUncertainty_swiginit(self, _mscl.new_GeometricUncertainty(*args)) - __swig_destroy__ = _mscl.delete_GeometricUncertainty - -# Register GeometricUncertainty in _mscl: -_mscl.GeometricUncertainty_swigregister(GeometricUncertainty) - -class MipModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_3dm_dh3 = _mscl.MipModels_node_3dm_dh3 - node_3dm_gx3_15 = _mscl.MipModels_node_3dm_gx3_15 - node_3dm_gx3_25 = _mscl.MipModels_node_3dm_gx3_25 - node_3dm_gx3_35 = _mscl.MipModels_node_3dm_gx3_35 - node_3dm_gx3_45 = _mscl.MipModels_node_3dm_gx3_45 - node_3dm_rq1_45_lt = _mscl.MipModels_node_3dm_rq1_45_lt - node_3dm_gx4_15 = _mscl.MipModels_node_3dm_gx4_15 - node_3dm_gx4_25 = _mscl.MipModels_node_3dm_gx4_25 - node_3dm_gx4_45 = _mscl.MipModels_node_3dm_gx4_45 - node_3dm_rq1_45_st = _mscl.MipModels_node_3dm_rq1_45_st - node_mv5_ar = _mscl.MipModels_node_mv5_ar - node_3dm_gx5_10 = _mscl.MipModels_node_3dm_gx5_10 - node_3dm_gx5_15 = _mscl.MipModels_node_3dm_gx5_15 - node_3dm_gx5_25 = _mscl.MipModels_node_3dm_gx5_25 - node_3dm_gx5_35 = _mscl.MipModels_node_3dm_gx5_35 - node_3dm_gx5_45 = _mscl.MipModels_node_3dm_gx5_45 - node_3dm_cv5_10 = _mscl.MipModels_node_3dm_cv5_10 - node_3dm_cv5_15 = _mscl.MipModels_node_3dm_cv5_15 - node_3dm_cv5_25 = _mscl.MipModels_node_3dm_cv5_25 - node_3dm_cv5_45 = _mscl.MipModels_node_3dm_cv5_45 - node_3dm_gq4_45 = _mscl.MipModels_node_3dm_gq4_45 - node_3dm_cx5_45 = _mscl.MipModels_node_3dm_cx5_45 - node_3dm_cx5_35 = _mscl.MipModels_node_3dm_cx5_35 - node_3dm_cx5_25 = _mscl.MipModels_node_3dm_cx5_25 - node_3dm_cx5_15 = _mscl.MipModels_node_3dm_cx5_15 - node_3dm_cx5_10 = _mscl.MipModels_node_3dm_cx5_10 - node_3dm_cl5_15 = _mscl.MipModels_node_3dm_cl5_15 - node_3dm_cl5_25 = _mscl.MipModels_node_3dm_cl5_25 - node_3dm_gq7 = _mscl.MipModels_node_3dm_gq7 - node_3dm_rtk = _mscl.MipModels_node_3dm_rtk - node_3dm_cv7_ahrs = _mscl.MipModels_node_3dm_cv7_ahrs - node_3dm_cv7_ar = _mscl.MipModels_node_3dm_cv7_ar - node_3dm_gv7_ahrs = _mscl.MipModels_node_3dm_gv7_ahrs - node_3dm_gv7_ar = _mscl.MipModels_node_3dm_gv7_ar - node_3dm_gv7_ins = _mscl.MipModels_node_3dm_gv7_ins - node_3dm_cv7_ins = _mscl.MipModels_node_3dm_cv7_ins - node_3dm_cv7_gnss_ins = _mscl.MipModels_node_3dm_cv7_gnss_ins - placeholder_matchAll = _mscl.MipModels_placeholder_matchAll - rtk_v1 = _mscl.MipModels_rtk_v1 - rtk_v2 = _mscl.MipModels_rtk_v2 - model_3dm_dh3 = _mscl.MipModels_model_3dm_dh3 - model_3dm_gx3_15 = _mscl.MipModels_model_3dm_gx3_15 - model_3dm_gx3_25 = _mscl.MipModels_model_3dm_gx3_25 - model_3dm_gx3_35 = _mscl.MipModels_model_3dm_gx3_35 - model_3dm_gx3_45 = _mscl.MipModels_model_3dm_gx3_45 - model_3dm_rq1_45_lt = _mscl.MipModels_model_3dm_rq1_45_lt - model_3dm_gx4_15 = _mscl.MipModels_model_3dm_gx4_15 - model_3dm_gx4_25 = _mscl.MipModels_model_3dm_gx4_25 - model_3dm_gx4_45 = _mscl.MipModels_model_3dm_gx4_45 - model_3dm_rq1_45_st = _mscl.MipModels_model_3dm_rq1_45_st - model_mv5_ar = _mscl.MipModels_model_mv5_ar - model_3dm_gx5_10 = _mscl.MipModels_model_3dm_gx5_10 - model_3dm_gx5_15 = _mscl.MipModels_model_3dm_gx5_15 - model_3dm_gx5_25 = _mscl.MipModels_model_3dm_gx5_25 - model_3dm_gx5_35 = _mscl.MipModels_model_3dm_gx5_35 - model_3dm_gx5_45 = _mscl.MipModels_model_3dm_gx5_45 - model_3dm_cv5_10 = _mscl.MipModels_model_3dm_cv5_10 - model_3dm_cv5_15 = _mscl.MipModels_model_3dm_cv5_15 - model_3dm_cv5_25 = _mscl.MipModels_model_3dm_cv5_25 - model_3dm_cv5_45 = _mscl.MipModels_model_3dm_cv5_45 - model_3dm_gq4_45 = _mscl.MipModels_model_3dm_gq4_45 - model_3dm_cx5_45 = _mscl.MipModels_model_3dm_cx5_45 - model_3dm_cx5_35 = _mscl.MipModels_model_3dm_cx5_35 - model_3dm_cx5_25 = _mscl.MipModels_model_3dm_cx5_25 - model_3dm_cx5_15 = _mscl.MipModels_model_3dm_cx5_15 - model_3dm_cx5_10 = _mscl.MipModels_model_3dm_cx5_10 - model_3dm_cl5_15 = _mscl.MipModels_model_3dm_cl5_15 - model_3dm_cl5_25 = _mscl.MipModels_model_3dm_cl5_25 - model_3dm_gq7 = _mscl.MipModels_model_3dm_gq7 - model_3dm_rtk_v1 = _mscl.MipModels_model_3dm_rtk_v1 - model_3dm_rtk = _mscl.MipModels_model_3dm_rtk - model_3dm_cv7_ahrs = _mscl.MipModels_model_3dm_cv7_ahrs - model_3dm_cv7_ar = _mscl.MipModels_model_3dm_cv7_ar - model_3dm_gv7_ahrs = _mscl.MipModels_model_3dm_gv7_ahrs - model_3dm_gv7_ar = _mscl.MipModels_model_3dm_gv7_ar - model_3dm_gv7_ins = _mscl.MipModels_model_3dm_gv7_ins - model_3dm_cv7_ins = _mscl.MipModels_model_3dm_cv7_ins - model_3dm_cv7_gnss_ins = _mscl.MipModels_model_3dm_cv7_gnss_ins - - @staticmethod - def modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - - @staticmethod - def modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - - @staticmethod - def modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - - @staticmethod - def nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - - @staticmethod - def modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - - @staticmethod - def nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - - @staticmethod - def modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - - @staticmethod - def stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - - def __init__(self): - _mscl.MipModels_swiginit(self, _mscl.new_MipModels()) - __swig_destroy__ = _mscl.delete_MipModels - -# Register MipModels in _mscl: -_mscl.MipModels_swigregister(MipModels) - -def MipModels_modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - -def MipModels_modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - -def MipModels_modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - -def MipModels_nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - -def MipModels_modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - -def MipModels_nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - -def MipModels_modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - -def MipModels_stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - -class MipModel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipModel_swiginit(self, _mscl.new_MipModel(*args)) - - def equals(self, compare): - return _mscl.MipModel_equals(self, compare) - - def __str__(self): - return _mscl.MipModel___str__(self) - - def nodeModel(self): - return _mscl.MipModel_nodeModel(self) - - def modifier(self): - return _mscl.MipModel_modifier(self) - - def modelNumber(self): - return _mscl.MipModel_modelNumber(self) - - def baseModel(self): - return _mscl.MipModel_baseModel(self) - __swig_destroy__ = _mscl.delete_MipModel - -# Register MipModel in _mscl: -_mscl.MipModel_swigregister(MipModel) -MipModel.mip_model_none = _mscl.cvar.MipModel_mip_model_none -MipModel.mip_model_3dm_dh3 = _mscl.cvar.MipModel_mip_model_3dm_dh3 -MipModel.mip_model_3dm_gx3_15 = _mscl.cvar.MipModel_mip_model_3dm_gx3_15 -MipModel.mip_model_3dm_gx3_25 = _mscl.cvar.MipModel_mip_model_3dm_gx3_25 -MipModel.mip_model_3dm_gx3_35 = _mscl.cvar.MipModel_mip_model_3dm_gx3_35 -MipModel.mip_model_3dm_gx3_45 = _mscl.cvar.MipModel_mip_model_3dm_gx3_45 -MipModel.mip_model_3dm_rq1_45_lt = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_lt -MipModel.mip_model_3dm_rq1_45_st = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_st -MipModel.mip_model_3dm_gx4_15 = _mscl.cvar.MipModel_mip_model_3dm_gx4_15 -MipModel.mip_model_3dm_gx4_25 = _mscl.cvar.MipModel_mip_model_3dm_gx4_25 -MipModel.mip_model_3dm_gx4_45 = _mscl.cvar.MipModel_mip_model_3dm_gx4_45 -MipModel.mip_model_mv5_ar = _mscl.cvar.MipModel_mip_model_mv5_ar -MipModel.mip_model_3dm_gx5_10 = _mscl.cvar.MipModel_mip_model_3dm_gx5_10 -MipModel.mip_model_3dm_gx5_15 = _mscl.cvar.MipModel_mip_model_3dm_gx5_15 -MipModel.mip_model_3dm_gx5_25 = _mscl.cvar.MipModel_mip_model_3dm_gx5_25 -MipModel.mip_model_3dm_gx5_35 = _mscl.cvar.MipModel_mip_model_3dm_gx5_35 -MipModel.mip_model_3dm_gx5_45 = _mscl.cvar.MipModel_mip_model_3dm_gx5_45 -MipModel.mip_model_3dm_cv5_10 = _mscl.cvar.MipModel_mip_model_3dm_cv5_10 -MipModel.mip_model_3dm_cv5_15 = _mscl.cvar.MipModel_mip_model_3dm_cv5_15 -MipModel.mip_model_3dm_cv5_25 = _mscl.cvar.MipModel_mip_model_3dm_cv5_25 -MipModel.mip_model_3dm_cv5_45 = _mscl.cvar.MipModel_mip_model_3dm_cv5_45 -MipModel.mip_model_3dm_gq4_45 = _mscl.cvar.MipModel_mip_model_3dm_gq4_45 -MipModel.mip_model_3dm_cx5_45 = _mscl.cvar.MipModel_mip_model_3dm_cx5_45 -MipModel.mip_model_3dm_cx5_35 = _mscl.cvar.MipModel_mip_model_3dm_cx5_35 -MipModel.mip_model_3dm_cx5_25 = _mscl.cvar.MipModel_mip_model_3dm_cx5_25 -MipModel.mip_model_3dm_cx5_15 = _mscl.cvar.MipModel_mip_model_3dm_cx5_15 -MipModel.mip_model_3dm_cx5_10 = _mscl.cvar.MipModel_mip_model_3dm_cx5_10 -MipModel.mip_model_3dm_cl5_15 = _mscl.cvar.MipModel_mip_model_3dm_cl5_15 -MipModel.mip_model_3dm_cl5_25 = _mscl.cvar.MipModel_mip_model_3dm_cl5_25 -MipModel.mip_model_3dm_gq7 = _mscl.cvar.MipModel_mip_model_3dm_gq7 -MipModel.mip_model_3dm_rtk_v1 = _mscl.cvar.MipModel_mip_model_3dm_rtk_v1 -MipModel.mip_model_3dm_rtk = _mscl.cvar.MipModel_mip_model_3dm_rtk -MipModel.mip_model_3dm_cv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_cv7_ahrs -MipModel.mip_model_3dm_cv7_ar = _mscl.cvar.MipModel_mip_model_3dm_cv7_ar -MipModel.mip_model_3dm_gv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_gv7_ahrs -MipModel.mip_model_3dm_gv7_ar = _mscl.cvar.MipModel_mip_model_3dm_gv7_ar -MipModel.mip_model_3dm_gv7_ins = _mscl.cvar.MipModel_mip_model_3dm_gv7_ins -MipModel.mip_model_3dm_cv7_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_ins -MipModel.mip_model_3dm_cv7_gnss_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_gnss_ins - -class DisplacementModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_digitalDemod = _mscl.DisplacementModels_node_digitalDemod - - def __init__(self): - _mscl.DisplacementModels_swiginit(self, _mscl.new_DisplacementModels()) - __swig_destroy__ = _mscl.delete_DisplacementModels - -# Register DisplacementModels in _mscl: -_mscl.DisplacementModels_swigregister(DisplacementModels) - -class MipTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CLASS_AHRS_IMU = _mscl.MipTypes_CLASS_AHRS_IMU - CLASS_GNSS = _mscl.MipTypes_CLASS_GNSS - CLASS_ESTFILTER = _mscl.MipTypes_CLASS_ESTFILTER - CLASS_DISPLACEMENT = _mscl.MipTypes_CLASS_DISPLACEMENT - CLASS_GNSS1 = _mscl.MipTypes_CLASS_GNSS1 - CLASS_GNSS2 = _mscl.MipTypes_CLASS_GNSS2 - CLASS_GNSS3 = _mscl.MipTypes_CLASS_GNSS3 - CLASS_RTK = _mscl.MipTypes_CLASS_RTK - CLASS_GNSS4 = _mscl.MipTypes_CLASS_GNSS4 - CLASS_GNSS5 = _mscl.MipTypes_CLASS_GNSS5 - CLASS_SYSTEM = _mscl.MipTypes_CLASS_SYSTEM - USE_NEW_SETTINGS = _mscl.MipTypes_USE_NEW_SETTINGS - READ_BACK_CURRENT_SETTINGS = _mscl.MipTypes_READ_BACK_CURRENT_SETTINGS - SAVE_CURRENT_SETTINGS = _mscl.MipTypes_SAVE_CURRENT_SETTINGS - LOAD_STARTUP_SETTINGS = _mscl.MipTypes_LOAD_STARTUP_SETTINGS - RESET_TO_DEFAULT = _mscl.MipTypes_RESET_TO_DEFAULT - USE_NEW_SETTINGS_NO_ACKNACK = _mscl.MipTypes_USE_NEW_SETTINGS_NO_ACKNACK - DISABLED = _mscl.MipTypes_DISABLED - ENABLED = _mscl.MipTypes_ENABLED - TIME_FRAME_WEEKS = _mscl.MipTypes_TIME_FRAME_WEEKS - TIME_FRAME_SECONDS = _mscl.MipTypes_TIME_FRAME_SECONDS - CMD_PING = _mscl.MipTypes_CMD_PING - CMD_SET_IDLE = _mscl.MipTypes_CMD_SET_IDLE - CMD_GET_DEVICE_INFO = _mscl.MipTypes_CMD_GET_DEVICE_INFO - CMD_GET_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_DESCRIPTOR_SETS - CMD_BUILT_IN_TEST = _mscl.MipTypes_CMD_BUILT_IN_TEST - CMD_RESUME = _mscl.MipTypes_CMD_RESUME - CMD_GET_EXT_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_EXT_DESCRIPTOR_SETS - CMD_COMM_PORT_SPEED = _mscl.MipTypes_CMD_COMM_PORT_SPEED - CMD_GPS_TIME_UPDATE = _mscl.MipTypes_CMD_GPS_TIME_UPDATE - CMD_RESET = _mscl.MipTypes_CMD_RESET - CMD_POLL_SENSOR_DATA = _mscl.MipTypes_CMD_POLL_SENSOR_DATA - CMD_POLL_GNSS_DATA = _mscl.MipTypes_CMD_POLL_GNSS_DATA - CMD_POLL_EF_DATA = _mscl.MipTypes_CMD_POLL_EF_DATA - CMD_GET_SENSOR_RATE_BASE = _mscl.MipTypes_CMD_GET_SENSOR_RATE_BASE - CMD_GET_GNSS_RATE_BASE = _mscl.MipTypes_CMD_GET_GNSS_RATE_BASE - CMD_GET_EF_RATE_BASE = _mscl.MipTypes_CMD_GET_EF_RATE_BASE - CMD_SENSOR_MESSAGE_FORMAT = _mscl.MipTypes_CMD_SENSOR_MESSAGE_FORMAT - CMD_GNSS_MESSAGE_FORMAT = _mscl.MipTypes_CMD_GNSS_MESSAGE_FORMAT - CMD_EF_MESSAGE_FORMAT = _mscl.MipTypes_CMD_EF_MESSAGE_FORMAT - CMD_NMEA_MESSAGE_FORMAT = _mscl.MipTypes_CMD_NMEA_MESSAGE_FORMAT - CMD_POLL = _mscl.MipTypes_CMD_POLL - CMD_GET_BASE_RATE = _mscl.MipTypes_CMD_GET_BASE_RATE - CMD_MESSAGE_FORMAT = _mscl.MipTypes_CMD_MESSAGE_FORMAT - CMD_FACTORY_STREAMING = _mscl.MipTypes_CMD_FACTORY_STREAMING - CMD_CONTINUOUS_DATA_STREAM = _mscl.MipTypes_CMD_CONTINUOUS_DATA_STREAM - CMD_RAW_RTCM_2_3_MESSAGE = _mscl.MipTypes_CMD_RAW_RTCM_2_3_MESSAGE - CMD_GNSS_CONSTELLATION_SETTINGS = _mscl.MipTypes_CMD_GNSS_CONSTELLATION_SETTINGS - CMD_GNSS_SBAS_SETTINGS = _mscl.MipTypes_CMD_GNSS_SBAS_SETTINGS - CMD_GNSS_ASSIST_FIX_CONTROL = _mscl.MipTypes_CMD_GNSS_ASSIST_FIX_CONTROL - CMD_GNSS_ASSIST_TIME_UPDATE = _mscl.MipTypes_CMD_GNSS_ASSIST_TIME_UPDATE - CMD_PPS_SOURCE = _mscl.MipTypes_CMD_PPS_SOURCE - CMD_EVENT_SUPPORT = _mscl.MipTypes_CMD_EVENT_SUPPORT - CMD_EVENT_CONTROL = _mscl.MipTypes_CMD_EVENT_CONTROL - CMD_EVENT_TRIGGER_STATUS = _mscl.MipTypes_CMD_EVENT_TRIGGER_STATUS - CMD_EVENT_ACTION_STATUS = _mscl.MipTypes_CMD_EVENT_ACTION_STATUS - CMD_EVENT_TRIGGER_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_TRIGGER_CONFIGURATION - CMD_EVENT_ACTION_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_ACTION_CONFIGURATION - CMD_SAVE_STARTUP_SETTINGS = _mscl.MipTypes_CMD_SAVE_STARTUP_SETTINGS - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM - CMD_GPS_DYNAMICS_MODE = _mscl.MipTypes_CMD_GPS_DYNAMICS_MODE - CMD_SENSOR_SIG_COND_SETTINGS = _mscl.MipTypes_CMD_SENSOR_SIG_COND_SETTINGS - CMD_SENSOR_TIMESTAMP = _mscl.MipTypes_CMD_SENSOR_TIMESTAMP - CMD_ACCEL_BIAS = _mscl.MipTypes_CMD_ACCEL_BIAS - CMD_GYRO_BIAS = _mscl.MipTypes_CMD_GYRO_BIAS - CMD_CAP_GYRO_BIAS = _mscl.MipTypes_CMD_CAP_GYRO_BIAS - CMD_MAG_HARD_IRON_OFFSET = _mscl.MipTypes_CMD_MAG_HARD_IRON_OFFSET - CMD_MAG_SOFT_IRON_MATRIX = _mscl.MipTypes_CMD_MAG_SOFT_IRON_MATRIX - CMD_CF_REALIGN_UP = _mscl.MipTypes_CMD_CF_REALIGN_UP - CMD_CF_REALIGN_NORTH = _mscl.MipTypes_CMD_CF_REALIGN_NORTH - CMD_CONING_SCULLING = _mscl.MipTypes_CMD_CONING_SCULLING - CMD_UART_BAUD_RATE = _mscl.MipTypes_CMD_UART_BAUD_RATE - CMD_GPIO_CONFIGURATION = _mscl.MipTypes_CMD_GPIO_CONFIGURATION - CMD_GPIO_STATE = _mscl.MipTypes_CMD_GPIO_STATE - CMD_ODOMETER_SETTINGS = _mscl.MipTypes_CMD_ODOMETER_SETTINGS - CMD_LOWPASS_FILTER_SETTINGS = _mscl.MipTypes_CMD_LOWPASS_FILTER_SETTINGS - CMD_COMPLEMENTARY_FILTER_SETTINGS = _mscl.MipTypes_CMD_COMPLEMENTARY_FILTER_SETTINGS - CMD_SENSOR_RANGE = _mscl.MipTypes_CMD_SENSOR_RANGE - CMD_SUPPORTED_SENSOR_RANGES = _mscl.MipTypes_CMD_SUPPORTED_SENSOR_RANGES - CMD_LOWPASS_ANTIALIASING_FILTER = _mscl.MipTypes_CMD_LOWPASS_ANTIALIASING_FILTER - CMD_DATA_STREAM_FORMAT = _mscl.MipTypes_CMD_DATA_STREAM_FORMAT - CMD_POWER_STATES = _mscl.MipTypes_CMD_POWER_STATES - CMD_GPS_STARTUP_SETTINGS = _mscl.MipTypes_CMD_GPS_STARTUP_SETTINGS - CMD_DEVICE_STATUS = _mscl.MipTypes_CMD_DEVICE_STATUS - CMD_EF_RESET_FILTER = _mscl.MipTypes_CMD_EF_RESET_FILTER - CMD_EF_INIT_ATTITUDE = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE - CMD_EF_INIT_HEADING = _mscl.MipTypes_CMD_EF_INIT_HEADING - CMD_EF_INIT_ATTITUDE_FROM_AHRS = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE_FROM_AHRS - CMD_EF_RUN_FILTER = _mscl.MipTypes_CMD_EF_RUN_FILTER - CMD_EF_VEHIC_DYNAMICS_MODE = _mscl.MipTypes_CMD_EF_VEHIC_DYNAMICS_MODE - CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER - CMD_EF_SENS_VEHIC_FRAME_OFFSET = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_OFFSET - CMD_EF_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_ANTENNA_OFFSET - CMD_EF_BIAS_EST_CTRL = _mscl.MipTypes_CMD_EF_BIAS_EST_CTRL - CMD_EF_GNSS_SRC_CTRL = _mscl.MipTypes_CMD_EF_GNSS_SRC_CTRL - CMD_EF_EXTERN_GNSS_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_GNSS_UPDATE - CMD_EF_EXTERN_HEADING_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_HEADING_UPDATE - CMD_EF_HEADING_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_HEADING_UPDATE_CTRL - CMD_EF_AUTO_INIT_CTRL = _mscl.MipTypes_CMD_EF_AUTO_INIT_CTRL - CMD_EF_ACCEL_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_ACCEL_WHT_NSE_STD_DEV - CMD_EF_GYRO_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_GYRO_WHT_NSE_STD_DEV - CMD_EF_ACCEL_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_ACCEL_BIAS_MODEL_PARAMS - CMD_EF_GYRO_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_GYRO_BIAS_MODEL_PARAMS - CMD_EF_ZERO_VEL_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_VEL_UPDATE_CTRL - CMD_EF_EXT_HEADING_UPDATE_TS = _mscl.MipTypes_CMD_EF_EXT_HEADING_UPDATE_TS - CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL - CMD_EF_TARE_ORIENT = _mscl.MipTypes_CMD_EF_TARE_ORIENT - CMD_EF_CMDED_ZERO_VEL_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_VEL_UPDATE - CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE - CMD_EF_SET_REF_POSITION = _mscl.MipTypes_CMD_EF_SET_REF_POSITION - CMD_EF_MAG_CAPTURE_AUTO_CAL = _mscl.MipTypes_CMD_EF_MAG_CAPTURE_AUTO_CAL - CMD_EF_GRAVITY_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_STD_DEV - CMD_EF_PRESS_ALT_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_PRESS_ALT_NOISE_STD_DEV - CMD_EF_GRAVITY_NOISE_MINIMUM = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_MINIMUM - CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE - CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE - CMD_EF_ENABLE_DISABLE_MEASUREMENTS = _mscl.MipTypes_CMD_EF_ENABLE_DISABLE_MEASUREMENTS - CMD_EF_MAG_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_MAG_NOISE_STD_DEV - CMD_EF_DECLINATION_SRC = _mscl.MipTypes_CMD_EF_DECLINATION_SRC - CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE - CMD_EF_ALTITUDE_AID_CTRL = _mscl.MipTypes_CMD_EF_ALTITUDE_AID_CTRL - CMD_EF_PITCH_ROLL_AID_CTRL = _mscl.MipTypes_CMD_EF_PITCH_ROLL_AID_CTRL - CMD_EF_INCLINATION_SRC = _mscl.MipTypes_CMD_EF_INCLINATION_SRC - CMD_EF_FIELD_MAGNITUDE_SRC = _mscl.MipTypes_CMD_EF_FIELD_MAGNITUDE_SRC - CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM - CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT - CMD_EF_AIDING_MEASUREMENT_ENABLE = _mscl.MipTypes_CMD_EF_AIDING_MEASUREMENT_ENABLE - CMD_EF_INITIALIZATION_CONFIG = _mscl.MipTypes_CMD_EF_INITIALIZATION_CONFIG - CMD_EF_ADAPTIVE_FILTER_OPTIONS = _mscl.MipTypes_CMD_EF_ADAPTIVE_FILTER_OPTIONS - CMD_EF_MULTI_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_MULTI_ANTENNA_OFFSET - CMD_EF_RELATIVE_POSITION_REF = _mscl.MipTypes_CMD_EF_RELATIVE_POSITION_REF - CMD_EF_LEVER_ARM_OFFSET_REF = _mscl.MipTypes_CMD_EF_LEVER_ARM_OFFSET_REF - CMD_EF_EXTERN_SPEED_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_SPEED_UPDATE - CMD_EF_SPEED_MEASUREMENT_OFFSET = _mscl.MipTypes_CMD_EF_SPEED_MEASUREMENT_OFFSET - CMD_EF_VERTICAL_GYRO_CONSTRAINT = _mscl.MipTypes_CMD_EF_VERTICAL_GYRO_CONSTRAINT - CMD_EF_WHEELED_VEHICLE_CONSTRAINT = _mscl.MipTypes_CMD_EF_WHEELED_VEHICLE_CONSTRAINT - CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL = _mscl.MipTypes_CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL - CMD_GNSS_RECEIVER_INFO = _mscl.MipTypes_CMD_GNSS_RECEIVER_INFO - CMD_GNSS_SIGNAL_CONFIG = _mscl.MipTypes_CMD_GNSS_SIGNAL_CONFIG - CMD_GNSS_SPARTN_CONFIG = _mscl.MipTypes_CMD_GNSS_SPARTN_CONFIG - CMD_GNSS_RTK_CONFIG = _mscl.MipTypes_CMD_GNSS_RTK_CONFIG - CMD_INTERFACE_CONTROL = _mscl.MipTypes_CMD_INTERFACE_CONTROL - CMD_COMMUNICATION_MODE = _mscl.MipTypes_CMD_COMMUNICATION_MODE - CMD_HARDWARE_CTRL = _mscl.MipTypes_CMD_HARDWARE_CTRL - CMD_GET_ANALOG_DISPLACEMENT_CALS = _mscl.MipTypes_CMD_GET_ANALOG_DISPLACEMENT_CALS - CMD_DISPLACEMENT_OUTPUT_RATE = _mscl.MipTypes_CMD_DISPLACEMENT_OUTPUT_RATE - CMD_DISPLACEMENT_DEVICE_TIME = _mscl.MipTypes_CMD_DISPLACEMENT_DEVICE_TIME - CMD_RTK_DEVICE_STATUS_FLAGS = _mscl.MipTypes_CMD_RTK_DEVICE_STATUS_FLAGS - CMD_RTK_ACTIVATION_CODE = _mscl.MipTypes_CMD_RTK_ACTIVATION_CODE - CMD_AIDING_FRAME_CONFIG = _mscl.MipTypes_CMD_AIDING_FRAME_CONFIG - CMD_AIDING_ECHO_CONTROL = _mscl.MipTypes_CMD_AIDING_ECHO_CONTROL - CMD_AIDING_POS_ECEF = _mscl.MipTypes_CMD_AIDING_POS_ECEF - CMD_AIDING_POS_LLH = _mscl.MipTypes_CMD_AIDING_POS_LLH - CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID - CMD_AIDING_VEL_ECEF = _mscl.MipTypes_CMD_AIDING_VEL_ECEF - CMD_AIDING_VEL_NED = _mscl.MipTypes_CMD_AIDING_VEL_NED - CMD_AIDING_VEL_BODY_FRAME = _mscl.MipTypes_CMD_AIDING_VEL_BODY_FRAME - CMD_AIDING_HEADING_TRUE = _mscl.MipTypes_CMD_AIDING_HEADING_TRUE - CMD_AIDING_MAGNETIC_FIELD = _mscl.MipTypes_CMD_AIDING_MAGNETIC_FIELD - CMD_AIDING_PRESSURE = _mscl.MipTypes_CMD_AIDING_PRESSURE - CH_FIELD_SENSOR_RAW_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_ACCEL_VEC - CH_FIELD_SENSOR_RAW_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_GYRO_VEC - CH_FIELD_SENSOR_RAW_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_MAG_VEC - CH_FIELD_SENSOR_SCALED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_ACCEL_VEC - CH_FIELD_SENSOR_SCALED_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_GYRO_VEC - CH_FIELD_SENSOR_SCALED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_MAG_VEC - CH_FIELD_SENSOR_DELTA_THETA_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_THETA_VEC - CH_FIELD_SENSOR_DELTA_VELOCITY_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_VELOCITY_VEC - CH_FIELD_SENSOR_ORIENTATION_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_MATRIX - CH_FIELD_SENSOR_ORIENTATION_QUATERNION = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_QUATERNION - CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX - CH_FIELD_SENSOR_EULER_ANGLES = _mscl.MipTypes_CH_FIELD_SENSOR_EULER_ANGLES - CH_FIELD_SENSOR_INTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_INTERNAL_TIMESTAMP - CH_FIELD_SENSOR_BEACONED_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_BEACONED_TIMESTAMP - CH_FIELD_SENSOR_STABILIZED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_MAG_VEC - CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC - CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP - CH_FIELD_SENSOR_TEMPERATURE_STATISTICS = _mscl.MipTypes_CH_FIELD_SENSOR_TEMPERATURE_STATISTICS - CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE - CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE - CH_FIELD_SENSOR_OVERRANGE_STATUS = _mscl.MipTypes_CH_FIELD_SENSOR_OVERRANGE_STATUS - CH_FIELD_SENSOR_ODOMETER_DATA = _mscl.MipTypes_CH_FIELD_SENSOR_ODOMETER_DATA - CH_FIELD_SENSOR_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EVENT_SOURCE - CH_FIELD_SENSOR_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_TICKS - CH_FIELD_SENSOR_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TICKS - CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP - CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_LLH_POSITION - CH_FIELD_GNSS_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_POSITION - CH_FIELD_GNSS_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_NED_VELOCITY - CH_FIELD_GNSS_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_VELOCITY - CH_FIELD_GNSS_DOP = _mscl.MipTypes_CH_FIELD_GNSS_DOP - CH_FIELD_GNSS_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_UTC_TIME - CH_FIELD_GNSS_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_GPS_TIME - CH_FIELD_GNSS_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO - CH_FIELD_GNSS_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_FIX_INFO - CH_FIELD_GNSS_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_HARDWARE_STATUS - CH_FIELD_GNSS_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_INFO - CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO_2 - CH_FIELD_GNSS_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_LEAP_SECONDS - CH_FIELD_GNSS_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_INFO - CH_FIELD_GNSS_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_CORRECTION - CH_FIELD_GNSS_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_RF_ERROR_DETECTION - CH_FIELD_GNSS_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_SATELLITE_STATUS - CH_FIELD_GNSS_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_RAW_OBSERVATION - CH_FIELD_GNSS_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_STATION_INFO - CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_EPHEMERIS - CH_FIELD_GNSS_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GLONASS_EPHEMERIS - CH_FIELD_GNSS_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_EPHEMERIS - CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_TICKS - CH_FIELD_GNSS_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TICKS - CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS - CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL - CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE - CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE - CH_FIELD_ESTFILTER_FILTER_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_FILTER_STATUS - CH_FIELD_ESTFILTER_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT - CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR - CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE - CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR - CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_MAG_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS - CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT - CH_FIELD_ESTFILTER_COMPENSATED_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_COMPENSATED_ACCEL - CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL - CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT - CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX - CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS_UNCERT - CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS - CH_FIELD_ESTFILTER_ECEF_VEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL - CH_FIELD_ESTFILTER_NED_RELATIVE_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_NED_RELATIVE_POS - CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS - CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS - CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY = _mscl.MipTypes_CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT - CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT - CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE - CH_FIELD_ESTFILTER_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_TICKS - CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS - CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_DISP_DISPLACEMENT_RAW = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_RAW - CH_FIELD_DISP_DISPLACEMENT_MM = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_MM - CH_FIELD_DISP_DISPLACEMENT_TS = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_TS - CH_FIELD_GNSS_1_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_LLH_POSITION - CH_FIELD_GNSS_1_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_POSITION - CH_FIELD_GNSS_1_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_NED_VELOCITY - CH_FIELD_GNSS_1_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_VELOCITY - CH_FIELD_GNSS_1_DOP = _mscl.MipTypes_CH_FIELD_GNSS_1_DOP - CH_FIELD_GNSS_1_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_UTC_TIME - CH_FIELD_GNSS_1_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_TIME - CH_FIELD_GNSS_1_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO - CH_FIELD_GNSS_1_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_FIX_INFO - CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_1_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_HARDWARE_STATUS - CH_FIELD_GNSS_1_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_INFO - CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_1_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO_2 - CH_FIELD_GNSS_1_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_LEAP_SECONDS - CH_FIELD_GNSS_1_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_INFO - CH_FIELD_GNSS_1_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_CORRECTION - CH_FIELD_GNSS_1_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_RF_ERROR_DETECTION - CH_FIELD_GNSS_1_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_SATELLITE_STATUS - CH_FIELD_GNSS_1_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_1_RAW_OBSERVATION - CH_FIELD_GNSS_1_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_STATION_INFO - CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_1_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_EPHEMERIS - CH_FIELD_GNSS_1_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GLONASS_EPHEMERIS - CH_FIELD_GNSS_1_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_EPHEMERIS - CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_1_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_TICKS - CH_FIELD_GNSS_1_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TICKS - CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_2_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_LLH_POSITION - CH_FIELD_GNSS_2_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_POSITION - CH_FIELD_GNSS_2_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_NED_VELOCITY - CH_FIELD_GNSS_2_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_VELOCITY - CH_FIELD_GNSS_2_DOP = _mscl.MipTypes_CH_FIELD_GNSS_2_DOP - CH_FIELD_GNSS_2_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_UTC_TIME - CH_FIELD_GNSS_2_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_TIME - CH_FIELD_GNSS_2_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO - CH_FIELD_GNSS_2_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_FIX_INFO - CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_2_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_HARDWARE_STATUS - CH_FIELD_GNSS_2_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_INFO - CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_2_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO_2 - CH_FIELD_GNSS_2_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_LEAP_SECONDS - CH_FIELD_GNSS_2_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_INFO - CH_FIELD_GNSS_2_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_CORRECTION - CH_FIELD_GNSS_2_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_RF_ERROR_DETECTION - CH_FIELD_GNSS_2_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_SATELLITE_STATUS - CH_FIELD_GNSS_2_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_2_RAW_OBSERVATION - CH_FIELD_GNSS_2_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_STATION_INFO - CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_2_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_EPHEMERIS - CH_FIELD_GNSS_2_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GLONASS_EPHEMERIS - CH_FIELD_GNSS_2_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_EPHEMERIS - CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_2_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_TICKS - CH_FIELD_GNSS_2_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TICKS - CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_3_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_LLH_POSITION - CH_FIELD_GNSS_3_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_POSITION - CH_FIELD_GNSS_3_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_NED_VELOCITY - CH_FIELD_GNSS_3_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_VELOCITY - CH_FIELD_GNSS_3_DOP = _mscl.MipTypes_CH_FIELD_GNSS_3_DOP - CH_FIELD_GNSS_3_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_UTC_TIME - CH_FIELD_GNSS_3_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_TIME - CH_FIELD_GNSS_3_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO - CH_FIELD_GNSS_3_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_FIX_INFO - CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_3_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_HARDWARE_STATUS - CH_FIELD_GNSS_3_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_INFO - CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_3_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO_2 - CH_FIELD_GNSS_3_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_LEAP_SECONDS - CH_FIELD_GNSS_3_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_INFO - CH_FIELD_GNSS_3_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_CORRECTION - CH_FIELD_GNSS_3_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_RF_ERROR_DETECTION - CH_FIELD_GNSS_3_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_SATELLITE_STATUS - CH_FIELD_GNSS_3_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_3_RAW_OBSERVATION - CH_FIELD_GNSS_3_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_STATION_INFO - CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_3_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_EPHEMERIS - CH_FIELD_GNSS_3_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GLONASS_EPHEMERIS - CH_FIELD_GNSS_3_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_EPHEMERIS - CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_3_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_TICKS - CH_FIELD_GNSS_3_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TICKS - CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_4_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_LLH_POSITION - CH_FIELD_GNSS_4_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_POSITION - CH_FIELD_GNSS_4_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_NED_VELOCITY - CH_FIELD_GNSS_4_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_VELOCITY - CH_FIELD_GNSS_4_DOP = _mscl.MipTypes_CH_FIELD_GNSS_4_DOP - CH_FIELD_GNSS_4_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_UTC_TIME - CH_FIELD_GNSS_4_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_TIME - CH_FIELD_GNSS_4_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO - CH_FIELD_GNSS_4_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_FIX_INFO - CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_4_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_HARDWARE_STATUS - CH_FIELD_GNSS_4_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_INFO - CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_4_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO_2 - CH_FIELD_GNSS_4_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_LEAP_SECONDS - CH_FIELD_GNSS_4_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_INFO - CH_FIELD_GNSS_4_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_CORRECTION - CH_FIELD_GNSS_4_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_RF_ERROR_DETECTION - CH_FIELD_GNSS_4_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_SATELLITE_STATUS - CH_FIELD_GNSS_4_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_4_RAW_OBSERVATION - CH_FIELD_GNSS_4_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_STATION_INFO - CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_4_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_EPHEMERIS - CH_FIELD_GNSS_4_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GLONASS_EPHEMERIS - CH_FIELD_GNSS_4_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_EPHEMERIS - CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_4_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_TICKS - CH_FIELD_GNSS_4_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TICKS - CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_5_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_LLH_POSITION - CH_FIELD_GNSS_5_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_POSITION - CH_FIELD_GNSS_5_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_NED_VELOCITY - CH_FIELD_GNSS_5_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_VELOCITY - CH_FIELD_GNSS_5_DOP = _mscl.MipTypes_CH_FIELD_GNSS_5_DOP - CH_FIELD_GNSS_5_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_UTC_TIME - CH_FIELD_GNSS_5_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_TIME - CH_FIELD_GNSS_5_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO - CH_FIELD_GNSS_5_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_FIX_INFO - CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_5_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_HARDWARE_STATUS - CH_FIELD_GNSS_5_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_INFO - CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_5_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO_2 - CH_FIELD_GNSS_5_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_LEAP_SECONDS - CH_FIELD_GNSS_5_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_INFO - CH_FIELD_GNSS_5_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_CORRECTION - CH_FIELD_GNSS_5_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_RF_ERROR_DETECTION - CH_FIELD_GNSS_5_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_SATELLITE_STATUS - CH_FIELD_GNSS_5_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_5_RAW_OBSERVATION - CH_FIELD_GNSS_5_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_STATION_INFO - CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_5_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_EPHEMERIS - CH_FIELD_GNSS_5_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GLONASS_EPHEMERIS - CH_FIELD_GNSS_5_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_EPHEMERIS - CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_5_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_TICKS - CH_FIELD_GNSS_5_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TICKS - CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_SYSTEM_BUILT_IN_TEST = _mscl.MipTypes_CH_FIELD_SYSTEM_BUILT_IN_TEST - CH_FIELD_SYSTEM_TIME_SYNC_STATUS = _mscl.MipTypes_CH_FIELD_SYSTEM_TIME_SYNC_STATUS - CH_FIELD_SYSTEM_GPIO_STATE = _mscl.MipTypes_CH_FIELD_SYSTEM_GPIO_STATE - CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE - CH_FIELD_SYSTEM_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_TICKS - CH_FIELD_SYSTEM_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TICKS - CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME - MIN_SHARED_FIELD_DESCRIPTOR = _mscl.MipTypes_MIN_SHARED_FIELD_DESCRIPTOR - CH_UNKNOWN = _mscl.MipTypes_CH_UNKNOWN - CH_X = _mscl.MipTypes_CH_X - CH_Y = _mscl.MipTypes_CH_Y - CH_Z = _mscl.MipTypes_CH_Z - CH_MATRIX = _mscl.MipTypes_CH_MATRIX - CH_QUATERNION = _mscl.MipTypes_CH_QUATERNION - CH_ROLL = _mscl.MipTypes_CH_ROLL - CH_PITCH = _mscl.MipTypes_CH_PITCH - CH_YAW = _mscl.MipTypes_CH_YAW - CH_TICK = _mscl.MipTypes_CH_TICK - CH_TIMESTAMP = _mscl.MipTypes_CH_TIMESTAMP - CH_STATUS = _mscl.MipTypes_CH_STATUS - CH_TIME_OF_WEEK = _mscl.MipTypes_CH_TIME_OF_WEEK - CH_WEEK_NUMBER = _mscl.MipTypes_CH_WEEK_NUMBER - CH_LATITUDE = _mscl.MipTypes_CH_LATITUDE - CH_LONGITUDE = _mscl.MipTypes_CH_LONGITUDE - CH_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CH_HEIGHT_ABOVE_ELLIPSOID - CH_HEIGHT_ABOVE_MSL = _mscl.MipTypes_CH_HEIGHT_ABOVE_MSL - CH_HORIZONTAL_ACCURACY = _mscl.MipTypes_CH_HORIZONTAL_ACCURACY - CH_VERTICAL_ACCURACY = _mscl.MipTypes_CH_VERTICAL_ACCURACY - CH_POSITION_ACCURACY = _mscl.MipTypes_CH_POSITION_ACCURACY - CH_NORTH = _mscl.MipTypes_CH_NORTH - CH_EAST = _mscl.MipTypes_CH_EAST - CH_DOWN = _mscl.MipTypes_CH_DOWN - CH_SPEED = _mscl.MipTypes_CH_SPEED - CH_GROUND_SPEED = _mscl.MipTypes_CH_GROUND_SPEED - CH_HEADING = _mscl.MipTypes_CH_HEADING - CH_SPEED_ACCURACY = _mscl.MipTypes_CH_SPEED_ACCURACY - CH_HEADING_ACCURACY = _mscl.MipTypes_CH_HEADING_ACCURACY - CH_VELOCITY_ACCURACY = _mscl.MipTypes_CH_VELOCITY_ACCURACY - CH_GEOMETRIC_DOP = _mscl.MipTypes_CH_GEOMETRIC_DOP - CH_POSITION_DOP = _mscl.MipTypes_CH_POSITION_DOP - CH_HORIZONTAL_DOP = _mscl.MipTypes_CH_HORIZONTAL_DOP - CH_VERTICAL_DOP = _mscl.MipTypes_CH_VERTICAL_DOP - CH_TIME_DOP = _mscl.MipTypes_CH_TIME_DOP - CH_NORTHING_DOP = _mscl.MipTypes_CH_NORTHING_DOP - CH_EASTING_DOP = _mscl.MipTypes_CH_EASTING_DOP - CH_FLAGS = _mscl.MipTypes_CH_FLAGS - CH_BIAS = _mscl.MipTypes_CH_BIAS - CH_DRIFT = _mscl.MipTypes_CH_DRIFT - CH_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_ACCURACY_ESTIMATE - CH_FIX_TYPE = _mscl.MipTypes_CH_FIX_TYPE - CH_SV_COUNT = _mscl.MipTypes_CH_SV_COUNT - CH_CHANNEL = _mscl.MipTypes_CH_CHANNEL - CH_ID = _mscl.MipTypes_CH_ID - CH_CARRIER_TO_NOISE_RATIO = _mscl.MipTypes_CH_CARRIER_TO_NOISE_RATIO - CH_AZIMUTH = _mscl.MipTypes_CH_AZIMUTH - CH_ELEVATION = _mscl.MipTypes_CH_ELEVATION - CH_SENSOR_STATE = _mscl.MipTypes_CH_SENSOR_STATE - CH_ANTENNA_STATE = _mscl.MipTypes_CH_ANTENNA_STATE - CH_ANTENNA_POWER = _mscl.MipTypes_CH_ANTENNA_POWER - CH_FILTER_STATE = _mscl.MipTypes_CH_FILTER_STATE - CH_DYNAMICS_MODE = _mscl.MipTypes_CH_DYNAMICS_MODE - CH_MAGNITUDE = _mscl.MipTypes_CH_MAGNITUDE - CH_HEADING_UNCERTAINTY = _mscl.MipTypes_CH_HEADING_UNCERTAINTY - CH_SOURCE = _mscl.MipTypes_CH_SOURCE - CH_INCLINATION = _mscl.MipTypes_CH_INCLINATION - CH_DECLINATION = _mscl.MipTypes_CH_DECLINATION - CH_PRESSURE = _mscl.MipTypes_CH_PRESSURE - CH_AGE = _mscl.MipTypes_CH_AGE - CH_NUM_CHANNELS = _mscl.MipTypes_CH_NUM_CHANNELS - CH_CORRECTION = _mscl.MipTypes_CH_CORRECTION - CH_RATE_CORRECTION = _mscl.MipTypes_CH_RATE_CORRECTION - CH_GEOMETRIC_ALTITUDE = _mscl.MipTypes_CH_GEOMETRIC_ALTITUDE - CH_GEOPOTENTIAL_ALTITUDE = _mscl.MipTypes_CH_GEOPOTENTIAL_ALTITUDE - CH_TEMPERATURE = _mscl.MipTypes_CH_TEMPERATURE - CH_DENSITY = _mscl.MipTypes_CH_DENSITY - CH_ALTITUDE = _mscl.MipTypes_CH_ALTITUDE - CH_DISPLACEMENT = _mscl.MipTypes_CH_DISPLACEMENT - CH_MAX_TEMP = _mscl.MipTypes_CH_MAX_TEMP - CH_MIN_TEMP = _mscl.MipTypes_CH_MIN_TEMP - CH_MEAN_TEMP = _mscl.MipTypes_CH_MEAN_TEMP - CH_BIAS_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_BIAS_ACCURACY_ESTIMATE - CH_DRIFT_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_DRIFT_ACCURACY_ESTIMATE - CH_SECONDS = _mscl.MipTypes_CH_SECONDS - CH_NUM_PACKETS = _mscl.MipTypes_CH_NUM_PACKETS - CH_GPS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GPS_CORRECTION_LATENCY - CH_GLONASS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GLONASS_CORRECTION_LATENCY - CH_GALILEO_CORRECTION_LATENCY = _mscl.MipTypes_CH_GALILEO_CORRECTION_LATENCY - CH_BEIDOU_CORRECTION_LATENCY = _mscl.MipTypes_CH_BEIDOU_CORRECTION_LATENCY - CH_HEIGHT = _mscl.MipTypes_CH_HEIGHT - CH_HEALTH = _mscl.MipTypes_CH_HEALTH - CH_INDEX = _mscl.MipTypes_CH_INDEX - CH_COUNT = _mscl.MipTypes_CH_COUNT - CH_SIGNAL_STRENGTH = _mscl.MipTypes_CH_SIGNAL_STRENGTH - CH_SIGNAL_QUALITY = _mscl.MipTypes_CH_SIGNAL_QUALITY - CH_RANGE = _mscl.MipTypes_CH_RANGE - CH_RANGE_UNC = _mscl.MipTypes_CH_RANGE_UNC - CH_ALPHA = _mscl.MipTypes_CH_ALPHA - CH_BETA = _mscl.MipTypes_CH_BETA - CH_DISTURBANCE_FLAGS = _mscl.MipTypes_CH_DISTURBANCE_FLAGS - CH_CARRIER_PHASE = _mscl.MipTypes_CH_CARRIER_PHASE - CH_CARRIER_PHASE_UNC = _mscl.MipTypes_CH_CARRIER_PHASE_UNC - CH_DOPPLER = _mscl.MipTypes_CH_DOPPLER - CH_DOPPLER_UNC = _mscl.MipTypes_CH_DOPPLER_UNC - CH_DELTA_TIME = _mscl.MipTypes_CH_DELTA_TIME - CH_DELTA_TICK = _mscl.MipTypes_CH_DELTA_TICK - CH_ERROR = _mscl.MipTypes_CH_ERROR - CH_ERROR_UNC = _mscl.MipTypes_CH_ERROR_UNC - CH_W = _mscl.MipTypes_CH_W - CH_M0 = _mscl.MipTypes_CH_M0 - CH_M1 = _mscl.MipTypes_CH_M1 - CH_M2 = _mscl.MipTypes_CH_M2 - CH_M3 = _mscl.MipTypes_CH_M3 - CH_M4 = _mscl.MipTypes_CH_M4 - CH_M5 = _mscl.MipTypes_CH_M5 - CH_M6 = _mscl.MipTypes_CH_M6 - CH_M7 = _mscl.MipTypes_CH_M7 - CH_M8 = _mscl.MipTypes_CH_M8 - CH_NANOSECONDS = _mscl.MipTypes_CH_NANOSECONDS - CH_VALID_FLAGS = _mscl.MipTypes_CH_VALID_FLAGS - CH_PPS_VALID = _mscl.MipTypes_CH_PPS_VALID - CH_LAST_PPS = _mscl.MipTypes_CH_LAST_PPS - CH_UDREI = _mscl.MipTypes_CH_UDREI - CH_PSEUDORANGE_CORRECTION = _mscl.MipTypes_CH_PSEUDORANGE_CORRECTION - CH_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_IONOSPHERIC_CORRECTION - CH_JAMMING_STATE = _mscl.MipTypes_CH_JAMMING_STATE - CH_SPOOFING_STATE = _mscl.MipTypes_CH_SPOOFING_STATE - CH_SYSTEM_ID = _mscl.MipTypes_CH_SYSTEM_ID - CH_SATELLITE_ID = _mscl.MipTypes_CH_SATELLITE_ID - CH_BIT_SYSTEM_GENERAL = _mscl.MipTypes_CH_BIT_SYSTEM_GENERAL - CH_BIT_SYSTEM_PROCESS = _mscl.MipTypes_CH_BIT_SYSTEM_PROCESS - CH_BIT_IMU_GENERAL = _mscl.MipTypes_CH_BIT_IMU_GENERAL - CH_BIT_IMU_SENSORS = _mscl.MipTypes_CH_BIT_IMU_SENSORS - CH_BIT_IMU_FACTORY_BITS = _mscl.MipTypes_CH_BIT_IMU_FACTORY_BITS - CH_BIT_FILTER_GENERAL = _mscl.MipTypes_CH_BIT_FILTER_GENERAL - CH_BIT_GNSS_GENERAL = _mscl.MipTypes_CH_BIT_GNSS_GENERAL - CH_BIT_GNSS_RECEIVERS = _mscl.MipTypes_CH_BIT_GNSS_RECEIVERS - - @staticmethod - def channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - - @staticmethod - def getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - - @staticmethod - def getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - - @staticmethod - def getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - - @staticmethod - def getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - - @staticmethod - def getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - - @staticmethod - def isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - - @staticmethod - def isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - - @staticmethod - def channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - - @staticmethod - def channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - - @staticmethod - def channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - - def __init__(self): - _mscl.MipTypes_swiginit(self, _mscl.new_MipTypes()) - __swig_destroy__ = _mscl.delete_MipTypes - -# Register MipTypes in _mscl: -_mscl.MipTypes_swigregister(MipTypes) - -def MipTypes_channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - -def MipTypes_getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - -def MipTypes_getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - -def MipTypes_getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - -def MipTypes_getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - -def MipTypes_getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - -def MipTypes_isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - -def MipTypes_isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - -def MipTypes_channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - -def MipTypes_channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - -def MipTypes_channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - -class MipChannelIdentifier(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - GNSS_RECEIVER_ID = _mscl.MipChannelIdentifier_GNSS_RECEIVER_ID - GNSS_BASE_STATION_ID = _mscl.MipChannelIdentifier_GNSS_BASE_STATION_ID - GNSS_CONSTELLATION = _mscl.MipChannelIdentifier_GNSS_CONSTELLATION - GNSS_SATELLITE_ID = _mscl.MipChannelIdentifier_GNSS_SATELLITE_ID - GNSS_SIGNAL_ID = _mscl.MipChannelIdentifier_GNSS_SIGNAL_ID - AIDING_MEASUREMENT_TYPE = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_TYPE - GNSS_RF_BAND = _mscl.MipChannelIdentifier_GNSS_RF_BAND - AIDING_MEASUREMENT_FRAME_ID = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_FRAME_ID - GNSS = _mscl.MipChannelIdentifier_GNSS - DUAL_ANTENNA = _mscl.MipChannelIdentifier_DUAL_ANTENNA - HEADING = _mscl.MipChannelIdentifier_HEADING - PRESSURE = _mscl.MipChannelIdentifier_PRESSURE - MAGNETOMETER = _mscl.MipChannelIdentifier_MAGNETOMETER - SPEED = _mscl.MipChannelIdentifier_SPEED - AIDING_POS_ECEF = _mscl.MipChannelIdentifier_AIDING_POS_ECEF - AIDING_POS_LLH = _mscl.MipChannelIdentifier_AIDING_POS_LLH - AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipChannelIdentifier_AIDING_HEIGHT_ABOVE_ELLIPSOID - AIDING_VEL_ECEF = _mscl.MipChannelIdentifier_AIDING_VEL_ECEF - AIDING_VEL_NED = _mscl.MipChannelIdentifier_AIDING_VEL_NED - AIDING_VEL_BODY_FRAME = _mscl.MipChannelIdentifier_AIDING_VEL_BODY_FRAME - AIDING_HEADING_TRUE = _mscl.MipChannelIdentifier_AIDING_HEADING_TRUE - AIDING_MAGNETIC_FIELD = _mscl.MipChannelIdentifier_AIDING_MAGNETIC_FIELD - AIDING_PRESSURE = _mscl.MipChannelIdentifier_AIDING_PRESSURE - UNKNOWN_CONSTELLATION = _mscl.MipChannelIdentifier_UNKNOWN_CONSTELLATION - GPS = _mscl.MipChannelIdentifier_GPS - GLONASS = _mscl.MipChannelIdentifier_GLONASS - GALILEO = _mscl.MipChannelIdentifier_GALILEO - BEIDOU = _mscl.MipChannelIdentifier_BEIDOU - UNKNOWN_SIGNAL = _mscl.MipChannelIdentifier_UNKNOWN_SIGNAL - GPS_L1CA = _mscl.MipChannelIdentifier_GPS_L1CA - GPS_L1P = _mscl.MipChannelIdentifier_GPS_L1P - GPS_L1Z = _mscl.MipChannelIdentifier_GPS_L1Z - GPS_L2CA = _mscl.MipChannelIdentifier_GPS_L2CA - GPS_L2P = _mscl.MipChannelIdentifier_GPS_L2P - GPS_L2Z = _mscl.MipChannelIdentifier_GPS_L2Z - GPS_L2CL = _mscl.MipChannelIdentifier_GPS_L2CL - GPS_L2CM = _mscl.MipChannelIdentifier_GPS_L2CM - GPS_L2CML = _mscl.MipChannelIdentifier_GPS_L2CML - GPS_L5I = _mscl.MipChannelIdentifier_GPS_L5I - GPS_L5Q = _mscl.MipChannelIdentifier_GPS_L5Q - GPS_L5IQ = _mscl.MipChannelIdentifier_GPS_L5IQ - GPS_L1CD = _mscl.MipChannelIdentifier_GPS_L1CD - GPS_L1CP = _mscl.MipChannelIdentifier_GPS_L1CP - GPS_L1CDP = _mscl.MipChannelIdentifier_GPS_L1CDP - GLONASS_G1CA = _mscl.MipChannelIdentifier_GLONASS_G1CA - GLONASS_G1P = _mscl.MipChannelIdentifier_GLONASS_G1P - GLONASS_G2C = _mscl.MipChannelIdentifier_GLONASS_G2C - GLONASS_G2P = _mscl.MipChannelIdentifier_GLONASS_G2P - GALILEO_E1C = _mscl.MipChannelIdentifier_GALILEO_E1C - GALILEO_E1A = _mscl.MipChannelIdentifier_GALILEO_E1A - GALILEO_E1B = _mscl.MipChannelIdentifier_GALILEO_E1B - GALILEO_E1BC = _mscl.MipChannelIdentifier_GALILEO_E1BC - GALILEO_E1ABC = _mscl.MipChannelIdentifier_GALILEO_E1ABC - GALILEO_E6C = _mscl.MipChannelIdentifier_GALILEO_E6C - GALILEO_E6A = _mscl.MipChannelIdentifier_GALILEO_E6A - GALILEO_E6B = _mscl.MipChannelIdentifier_GALILEO_E6B - GALILEO_E6BC = _mscl.MipChannelIdentifier_GALILEO_E6BC - GALILEO_E6ABC = _mscl.MipChannelIdentifier_GALILEO_E6ABC - GALILEO_E5BI = _mscl.MipChannelIdentifier_GALILEO_E5BI - GALILEO_E5BQ = _mscl.MipChannelIdentifier_GALILEO_E5BQ - GALILEO_E5BIQ = _mscl.MipChannelIdentifier_GALILEO_E5BIQ - GALILEO_E5ABI = _mscl.MipChannelIdentifier_GALILEO_E5ABI - GALILEO_E5ABQ = _mscl.MipChannelIdentifier_GALILEO_E5ABQ - GALILEO_E5ABIQ = _mscl.MipChannelIdentifier_GALILEO_E5ABIQ - GALILEO_E5AI = _mscl.MipChannelIdentifier_GALILEO_E5AI - GALILEO_E5AQ = _mscl.MipChannelIdentifier_GALILEO_E5AQ - GALILEO_E5AIQ = _mscl.MipChannelIdentifier_GALILEO_E5AIQ - SBAS_L1CA = _mscl.MipChannelIdentifier_SBAS_L1CA - SBAS_L5I = _mscl.MipChannelIdentifier_SBAS_L5I - SBAS_L5Q = _mscl.MipChannelIdentifier_SBAS_L5Q - SBAS_L5IQ = _mscl.MipChannelIdentifier_SBAS_L5IQ - QZSS_L1CA = _mscl.MipChannelIdentifier_QZSS_L1CA - QZSS_LEXS = _mscl.MipChannelIdentifier_QZSS_LEXS - QZSS_LEXL = _mscl.MipChannelIdentifier_QZSS_LEXL - QZSS_LEXSL = _mscl.MipChannelIdentifier_QZSS_LEXSL - QZSS_L2CM = _mscl.MipChannelIdentifier_QZSS_L2CM - QZSS_L2CL = _mscl.MipChannelIdentifier_QZSS_L2CL - QZSS_L2CML = _mscl.MipChannelIdentifier_QZSS_L2CML - QZSS_L5I = _mscl.MipChannelIdentifier_QZSS_L5I - QZSS_L5Q = _mscl.MipChannelIdentifier_QZSS_L5Q - QZSS_L5IQ = _mscl.MipChannelIdentifier_QZSS_L5IQ - QZSS_L1CD = _mscl.MipChannelIdentifier_QZSS_L1CD - QZSS_L1CP = _mscl.MipChannelIdentifier_QZSS_L1CP - QZSS_L1CDP = _mscl.MipChannelIdentifier_QZSS_L1CDP - BEIDOU_B1I = _mscl.MipChannelIdentifier_BEIDOU_B1I - BEIDOU_B1Q = _mscl.MipChannelIdentifier_BEIDOU_B1Q - BEIDOU_B1IQ = _mscl.MipChannelIdentifier_BEIDOU_B1IQ - BEIDOU_B3I = _mscl.MipChannelIdentifier_BEIDOU_B3I - BEIDOU_B3Q = _mscl.MipChannelIdentifier_BEIDOU_B3Q - BEIDOU_B3IQ = _mscl.MipChannelIdentifier_BEIDOU_B3IQ - BEIDOU_B2I = _mscl.MipChannelIdentifier_BEIDOU_B2I - BEIDOU_B2Q = _mscl.MipChannelIdentifier_BEIDOU_B2Q - BEIDOU_B2IQ = _mscl.MipChannelIdentifier_BEIDOU_B2IQ - UNKNOWN_RF_BAND = _mscl.MipChannelIdentifier_UNKNOWN_RF_BAND - RF_BAND_L1 = _mscl.MipChannelIdentifier_RF_BAND_L1 - RF_BAND_L2 = _mscl.MipChannelIdentifier_RF_BAND_L2 - RF_BAND_L5 = _mscl.MipChannelIdentifier_RF_BAND_L5 - - def __init__(self, *args): - _mscl.MipChannelIdentifier_swiginit(self, _mscl.new_MipChannelIdentifier(*args)) - __swig_destroy__ = _mscl.delete_MipChannelIdentifier - - def identifierType(self): - return _mscl.MipChannelIdentifier_identifierType(self) - - def id(self): - return _mscl.MipChannelIdentifier_id(self) - - def hasSpecifier(self): - return _mscl.MipChannelIdentifier_hasSpecifier(self) - - def specifier(self): - return _mscl.MipChannelIdentifier_specifier(self) - - def name(self, standardizedFormat=True): - return _mscl.MipChannelIdentifier_name(self, standardizedFormat) - -# Register MipChannelIdentifier in _mscl: -_mscl.MipChannelIdentifier_swigregister(MipChannelIdentifier) - -class MipCommandBytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - id = property(_mscl.MipCommandBytes_id_get, _mscl.MipCommandBytes_id_set) - commands = property(_mscl.MipCommandBytes_commands_get, _mscl.MipCommandBytes_commands_set) - buildCmdFailed = property(_mscl.MipCommandBytes_buildCmdFailed_get, _mscl.MipCommandBytes_buildCmdFailed_set) - sendCmdFailed = property(_mscl.MipCommandBytes_sendCmdFailed_get, _mscl.MipCommandBytes_sendCmdFailed_set) - - def __init__(self, *args): - _mscl.MipCommandBytes_swiginit(self, _mscl.new_MipCommandBytes(*args)) - - def add(self, cmd): - return _mscl.MipCommandBytes_add(self, cmd) - - def valid(self): - return _mscl.MipCommandBytes_valid(self) - __swig_destroy__ = _mscl.delete_MipCommandBytes - -# Register MipCommandBytes in _mscl: -_mscl.MipCommandBytes_swigregister(MipCommandBytes) - -class AidingMeasurementInput(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - ACK_NACK = _mscl.AidingMeasurementInput_ACK_NACK - ECHO_INPUT = _mscl.AidingMeasurementInput_ECHO_INPUT - - def toMipFieldValues(self): - return _mscl.AidingMeasurementInput_toMipFieldValues(self) - - def timestamp(self, *args): - return _mscl.AidingMeasurementInput_timestamp(self, *args) - - def timebase(self): - return _mscl.AidingMeasurementInput_timebase(self) - - def frameId(self, *args): - return _mscl.AidingMeasurementInput_frameId(self, *args) - - def validFlags(self, *args): - return _mscl.AidingMeasurementInput_validFlags(self, *args) - -# Register AidingMeasurementInput in _mscl: -_mscl.AidingMeasurementInput_swigregister(AidingMeasurementInput) - -class AidingMeasurementPosition(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementPosition_X - LATITUDE = _mscl.AidingMeasurementPosition_LATITUDE - Y = _mscl.AidingMeasurementPosition_Y - LONGITUDE = _mscl.AidingMeasurementPosition_LONGITUDE - Z = _mscl.AidingMeasurementPosition_Z - HEIGHT = _mscl.AidingMeasurementPosition_HEIGHT - ALTITUDE = _mscl.AidingMeasurementPosition_ALTITUDE - - def __init__(self, *args): - _mscl.AidingMeasurementPosition_swiginit(self, _mscl.new_AidingMeasurementPosition(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPosition - - def position(self, *args): - return _mscl.AidingMeasurementPosition_position(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPosition_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementPosition_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPosition_valid(self, *args) - -# Register AidingMeasurementPosition in _mscl: -_mscl.AidingMeasurementPosition_swigregister(AidingMeasurementPosition) - -class AidingMeasurementHeight(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeight_swiginit(self, _mscl.new_AidingMeasurementHeight(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeight - - def height(self, *args): - return _mscl.AidingMeasurementHeight_height(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeight_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeight_valid(self, *args) - -# Register AidingMeasurementHeight in _mscl: -_mscl.AidingMeasurementHeight_swigregister(AidingMeasurementHeight) - -class AidingMeasurementVelocity(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementVelocity_X - NORTH = _mscl.AidingMeasurementVelocity_NORTH - Y = _mscl.AidingMeasurementVelocity_Y - EAST = _mscl.AidingMeasurementVelocity_EAST - Z = _mscl.AidingMeasurementVelocity_Z - DOWN = _mscl.AidingMeasurementVelocity_DOWN - - def __init__(self, *args): - _mscl.AidingMeasurementVelocity_swiginit(self, _mscl.new_AidingMeasurementVelocity(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementVelocity - - def velocity(self, *args): - return _mscl.AidingMeasurementVelocity_velocity(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementVelocity_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementVelocity_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementVelocity_valid(self, *args) - -# Register AidingMeasurementVelocity in _mscl: -_mscl.AidingMeasurementVelocity_swigregister(AidingMeasurementVelocity) - -class AidingMeasurementHeading(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeading_swiginit(self, _mscl.new_AidingMeasurementHeading(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeading - - def heading(self, *args): - return _mscl.AidingMeasurementHeading_heading(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeading_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeading_valid(self, *args) - -# Register AidingMeasurementHeading in _mscl: -_mscl.AidingMeasurementHeading_swigregister(AidingMeasurementHeading) - -class AidingMeasurementMagneticField(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementMagneticField_X - Y = _mscl.AidingMeasurementMagneticField_Y - Z = _mscl.AidingMeasurementMagneticField_Z - - def __init__(self, *args): - _mscl.AidingMeasurementMagneticField_swiginit(self, _mscl.new_AidingMeasurementMagneticField(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementMagneticField - - def magneticField(self, *args): - return _mscl.AidingMeasurementMagneticField_magneticField(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementMagneticField_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementMagneticField_valid(self, *args) - -# Register AidingMeasurementMagneticField in _mscl: -_mscl.AidingMeasurementMagneticField_swigregister(AidingMeasurementMagneticField) - -class AidingMeasurementPressure(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementPressure_swiginit(self, _mscl.new_AidingMeasurementPressure(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPressure - - def pressure(self, *args): - return _mscl.AidingMeasurementPressure_pressure(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPressure_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPressure_valid(self, *args) - -# Register AidingMeasurementPressure in _mscl: -_mscl.AidingMeasurementPressure_swigregister(AidingMeasurementPressure) - -class GnssReceiverInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GnssReceiverInfo_swiginit(self, _mscl.new_GnssReceiverInfo(*args)) - id = property(_mscl.GnssReceiverInfo_id_get, _mscl.GnssReceiverInfo_id_set) - targetDataClass = property(_mscl.GnssReceiverInfo_targetDataClass_get, _mscl.GnssReceiverInfo_targetDataClass_set) - description = property(_mscl.GnssReceiverInfo_description_get, _mscl.GnssReceiverInfo_description_set) - module = property(_mscl.GnssReceiverInfo_module_get, _mscl.GnssReceiverInfo_module_set) - fwId = property(_mscl.GnssReceiverInfo_fwId_get, _mscl.GnssReceiverInfo_fwId_set) - fwVersion = property(_mscl.GnssReceiverInfo_fwVersion_get, _mscl.GnssReceiverInfo_fwVersion_set) - __swig_destroy__ = _mscl.delete_GnssReceiverInfo - -# Register GnssReceiverInfo in _mscl: -_mscl.GnssReceiverInfo_swigregister(GnssReceiverInfo) -GnssReceiverInfo.INFO_NOT_FOUND = _mscl.cvar.GnssReceiverInfo_INFO_NOT_FOUND - -class DeviceCommPort(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SPECIAL = _mscl.DeviceCommPort_SPECIAL - UART = _mscl.DeviceCommPort_UART - USB = _mscl.DeviceCommPort_USB - NONE = _mscl.DeviceCommPort_NONE - MIP_COMMANDS = _mscl.DeviceCommPort_MIP_COMMANDS - MIP_DATA = _mscl.DeviceCommPort_MIP_DATA - NMEA = _mscl.DeviceCommPort_NMEA - RTCM = _mscl.DeviceCommPort_RTCM - SPARTN = _mscl.DeviceCommPort_SPARTN - ALL = _mscl.DeviceCommPort_ALL - - def __init__(self, *args): - _mscl.DeviceCommPort_swiginit(self, _mscl.new_DeviceCommPort(*args)) - - def interfaceId(self): - return _mscl.DeviceCommPort_interfaceId(self) - type = property(_mscl.DeviceCommPort_type_get, _mscl.DeviceCommPort_type_set) - id = property(_mscl.DeviceCommPort_id_get, _mscl.DeviceCommPort_id_set) - inputProtocols = property(_mscl.DeviceCommPort_inputProtocols_get, _mscl.DeviceCommPort_inputProtocols_set) - outputProtocols = property(_mscl.DeviceCommPort_outputProtocols_get, _mscl.DeviceCommPort_outputProtocols_set) - __swig_destroy__ = _mscl.delete_DeviceCommPort - -# Register DeviceCommPort in _mscl: -_mscl.DeviceCommPort_swigregister(DeviceCommPort) - -class EventTypeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTypeInfo_swiginit(self, _mscl.new_EventTypeInfo(*args)) - type = property(_mscl.EventTypeInfo_type_get, _mscl.EventTypeInfo_type_set) - maxInstances = property(_mscl.EventTypeInfo_maxInstances_get, _mscl.EventTypeInfo_maxInstances_set) - __swig_destroy__ = _mscl.delete_EventTypeInfo - -# Register EventTypeInfo in _mscl: -_mscl.EventTypeInfo_swigregister(EventTypeInfo) - -class EventSupportInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - TRIGGERS = _mscl.EventSupportInfo_TRIGGERS - ACTIONS = _mscl.EventSupportInfo_ACTIONS - query = property(_mscl.EventSupportInfo_query_get, _mscl.EventSupportInfo_query_set) - maxInstances = property(_mscl.EventSupportInfo_maxInstances_get, _mscl.EventSupportInfo_maxInstances_set) - entries = property(_mscl.EventSupportInfo_entries_get, _mscl.EventSupportInfo_entries_set) - - def __init__(self): - _mscl.EventSupportInfo_swiginit(self, _mscl.new_EventSupportInfo()) - __swig_destroy__ = _mscl.delete_EventSupportInfo - -# Register EventSupportInfo in _mscl: -_mscl.EventSupportInfo_swigregister(EventSupportInfo) - -class SensorRange(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ALL = _mscl.SensorRange_ALL - ACCEL_G = _mscl.SensorRange_ACCEL_G - GYRO_DPS = _mscl.SensorRange_GYRO_DPS - MAG_GAUSS = _mscl.SensorRange_MAG_GAUSS - PRESSURE_HPA = _mscl.SensorRange_PRESSURE_HPA - - def __init__(self): - _mscl.SensorRange_swiginit(self, _mscl.new_SensorRange()) - - def type(self): - return _mscl.SensorRange_type(self) - - def range(self): - return _mscl.SensorRange_range(self) - - def id(self): - return _mscl.SensorRange_id(self) - __swig_destroy__ = _mscl.delete_SensorRange - -# Register SensorRange in _mscl: -_mscl.SensorRange_swigregister(SensorRange) - -class SupportedSensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.SupportedSensorRanges_swiginit(self, _mscl.new_SupportedSensorRanges()) - - def options(self): - return _mscl.SupportedSensorRanges_options(self) - - def lookupRecommended(self, type, range): - return _mscl.SupportedSensorRanges_lookupRecommended(self, type, range) - __swig_destroy__ = _mscl.delete_SupportedSensorRanges - -# Register SupportedSensorRanges in _mscl: -_mscl.SupportedSensorRanges_swigregister(SupportedSensorRanges) - -class InertialTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - PORTABLE_VEHICLE = _mscl.InertialTypes_PORTABLE_VEHICLE - AUTOMOTIVE_VEHICLE = _mscl.InertialTypes_AUTOMOTIVE_VEHICLE - AIRBORNE_VEHICLE = _mscl.InertialTypes_AIRBORNE_VEHICLE - AIRBORNE_HIGH_G_VEHICLE = _mscl.InertialTypes_AIRBORNE_HIGH_G_VEHICLE - GPS_PORTABLE = _mscl.InertialTypes_GPS_PORTABLE - GPS_STATIONARY = _mscl.InertialTypes_GPS_STATIONARY - GPS_PEDESTRIAN = _mscl.InertialTypes_GPS_PEDESTRIAN - GPS_AUTOMOTIVE = _mscl.InertialTypes_GPS_AUTOMOTIVE - GPS_SEA = _mscl.InertialTypes_GPS_SEA - GPS_AIRBORNE_1G = _mscl.InertialTypes_GPS_AIRBORNE_1G - GPS_AIRBORNE_2G = _mscl.InertialTypes_GPS_AIRBORNE_2G - GPS_AIRBORNE_4G = _mscl.InertialTypes_GPS_AIRBORNE_4G - RESET_ALL_AXIS = _mscl.InertialTypes_RESET_ALL_AXIS - TARE_ROLL_AXIS = _mscl.InertialTypes_TARE_ROLL_AXIS - TARE_PITCH_AXIS = _mscl.InertialTypes_TARE_PITCH_AXIS - TARE_YAW_AXIS = _mscl.InertialTypes_TARE_YAW_AXIS - INTERNAL_GNSS_ALL = _mscl.InertialTypes_INTERNAL_GNSS_ALL - EXTERNAL_GNSS = _mscl.InertialTypes_EXTERNAL_GNSS - INTERNAL_GNSS1 = _mscl.InertialTypes_INTERNAL_GNSS1 - INTERNAL_GNSS2 = _mscl.InertialTypes_INTERNAL_GNSS2 - FIX_SBAS_CORRECTIONS = _mscl.InertialTypes_FIX_SBAS_CORRECTIONS - FIX_DGNSS_CORRECTIONS = _mscl.InertialTypes_FIX_DGNSS_CORRECTIONS - FIXTYPE_3D = _mscl.InertialTypes_FIXTYPE_3D - FIXTYPE_2D = _mscl.InertialTypes_FIXTYPE_2D - FIXTYPE_TIMEONLY = _mscl.InertialTypes_FIXTYPE_TIMEONLY - FIXTYPE_NONE = _mscl.InertialTypes_FIXTYPE_NONE - FIXTYPE_INVALID = _mscl.InertialTypes_FIXTYPE_INVALID - FIXTYPE_RTK_FLOAT = _mscl.InertialTypes_FIXTYPE_RTK_FLOAT - FIXTYPE_RTK_FIXED = _mscl.InertialTypes_FIXTYPE_RTK_FIXED - FIXTYPE_DUAL_ANTENNA_NONE = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_NONE - FIXTYPE_DUAL_ANTENNA_FLOAT = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FLOAT - FIXTYPE_DUAL_ANTENNA_FIXED = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FIXED - DATA_VALID_REC_1 = _mscl.InertialTypes_DATA_VALID_REC_1 - DATA_VALID_REC_2 = _mscl.InertialTypes_DATA_VALID_REC_2 - ANTENNA_OFFSETS_VALID = _mscl.InertialTypes_ANTENNA_OFFSETS_VALID - SVFLAG_NAVIGATION = _mscl.InertialTypes_SVFLAG_NAVIGATION - SVFLAG_HEALTHY = _mscl.InertialTypes_SVFLAG_HEALTHY - DEVICE_AHRS = _mscl.InertialTypes_DEVICE_AHRS - DEVICE_GPS = _mscl.InertialTypes_DEVICE_GPS - ON_FULL_PERFORMANCE = _mscl.InertialTypes_ON_FULL_PERFORMANCE - ON_LOW_POWER = _mscl.InertialTypes_ON_LOW_POWER - SLEEP = _mscl.InertialTypes_SLEEP - OFF = _mscl.InertialTypes_OFF - STANDARD_MIP = _mscl.InertialTypes_STANDARD_MIP - WRAPPED_RAW = _mscl.InertialTypes_WRAPPED_RAW - SENSORSTATE_OFF = _mscl.InertialTypes_SENSORSTATE_OFF - SENSORSTATE_ON = _mscl.InertialTypes_SENSORSTATE_ON - SENSORSTATE_UNKNOWN = _mscl.InertialTypes_SENSORSTATE_UNKNOWN - ANTENNASTATE_INIT = _mscl.InertialTypes_ANTENNASTATE_INIT - ANTENNASTATE_SHORT = _mscl.InertialTypes_ANTENNASTATE_SHORT - ANTENNASTATE_OPEN = _mscl.InertialTypes_ANTENNASTATE_OPEN - ANTENNASTATE_GOOD = _mscl.InertialTypes_ANTENNASTATE_GOOD - ANTENNASTATE_UNKNOWN = _mscl.InertialTypes_ANTENNASTATE_UNKNOWN - ANTENNAPOWER_OFF = _mscl.InertialTypes_ANTENNAPOWER_OFF - ANTENNAPOWER_ON = _mscl.InertialTypes_ANTENNAPOWER_ON - ANTENNAPOWER_UNKNOWN = _mscl.InertialTypes_ANTENNAPOWER_UNKNOWN - FILTERSTATE_STARTUP = _mscl.InertialTypes_FILTERSTATE_STARTUP - FILTERSTATE_INIT = _mscl.InertialTypes_FILTERSTATE_INIT - FILTERSTATE_RUNNING_SLN_VALID = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_VALID - FILTERSTATE_RUNNING_SLN_ERROR = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_ERROR - FILTERSTATE_VERT_GYRO = _mscl.InertialTypes_FILTERSTATE_VERT_GYRO - FILTERSTATE_AHRS = _mscl.InertialTypes_FILTERSTATE_AHRS - FILTERSTATE_FULL_NAV = _mscl.InertialTypes_FILTERSTATE_FULL_NAV - FILTERSTATUS_IMU_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_IMU_UNAVAILABLE - FILTERSTATUS_GPS_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_GPS_UNAVAILABLE - FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC = _mscl.InertialTypes_FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC - FILTERSTATUS_POS_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_POS_COVARIANCE_HIGH_WARN - FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN - FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN - FILTERSTATUS_NAN_IN_SOLUTION = _mscl.InertialTypes_FILTERSTATUS_NAN_IN_SOLUTION - FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN - FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN - FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN - FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN - FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_CONDITION = _mscl.InertialTypes_FILTERSTATUS_CONDITION - FILTERSTATUS_ROLL_PITCH_WARNING = _mscl.InertialTypes_FILTERSTATUS_ROLL_PITCH_WARNING - FILTERSTATUS_HEADING_WARNING = _mscl.InertialTypes_FILTERSTATUS_HEADING_WARNING - FILTERSTATUS_POSITION_WARNING = _mscl.InertialTypes_FILTERSTATUS_POSITION_WARNING - FILTERSTATUS_VELOCITY_WARNING = _mscl.InertialTypes_FILTERSTATUS_VELOCITY_WARNING - FILTERSTATUS_IMU_BIAS_WARNING = _mscl.InertialTypes_FILTERSTATUS_IMU_BIAS_WARNING - FILTERSTATUS_GNSS_CLK_WARNING = _mscl.InertialTypes_FILTERSTATUS_GNSS_CLK_WARNING - FILTERSTATUS_ANT_LEVER_ARM_WARNING = _mscl.InertialTypes_FILTERSTATUS_ANT_LEVER_ARM_WARNING - FILTERSTATUS_MOUNTING_TRANSFORM_WARNING = _mscl.InertialTypes_FILTERSTATUS_MOUNTING_TRANSFORM_WARNING - FILTERSTATUS_ATT_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_ATT_NOT_INIT - FILTERSTATUS_POS_VEL_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_POS_VEL_NOT_INIT - STABLE = _mscl.InertialTypes_STABLE - CONVERGING = _mscl.InertialTypes_CONVERGING - UNSTABLE = _mscl.InertialTypes_UNSTABLE - DGNSSBASE_UDRE_SCALE_FACTOR_1_00 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_1_00 - DGNSSBASE_UDRE_SCALE_FACTOR_0_75 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_75 - DGNSSBASE_UDRE_SCALE_FACTOR_0_50 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_50 - DGNSSBASE_UDRE_SCALE_FACTOR_0_30 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_30 - DGNSSBASE_UDRE_SCALE_FACTOR_0_20 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_20 - DGNSSBASE_UDRE_SCALE_FACTOR_0_10 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_10 - DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED - DGNSSBASE_REFERENCE_STATION_NOT_WORKING = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_NOT_WORKING - HEADINGSOURCE_NONE = _mscl.InertialTypes_HEADINGSOURCE_NONE - HEADINGSOURCE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_MAGNETOMETER - HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR - HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD = _mscl.InertialTypes_HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD - HEADINGSOURCE_GNSS_DUAL_ANTENNA = _mscl.InertialTypes_HEADINGSOURCE_GNSS_DUAL_ANTENNA - ENABLE_NONE = _mscl.InertialTypes_ENABLE_NONE - ENABLE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_ENABLE_INTERNAL_MAGNETOMETER - ENABLE_INTERNAL_GNSS = _mscl.InertialTypes_ENABLE_INTERNAL_GNSS - ENABLE_EXTERNAL_MESSAGES = _mscl.InertialTypes_ENABLE_EXTERNAL_MESSAGES - ENABLE_MAGNETOMETER_AND_GNSS = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_GNSS - ENABLE_GNSS_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_GNSS_AND_EXTERNAL - ENABLE_MAGNETOMETER_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_EXTERNAL - ENABLE_ALL = _mscl.InertialTypes_ENABLE_ALL - ENABLE_GYRO_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_BIAS_ESTIMATION - ENABLE_ACCEL_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_BIAS_ESTIMATION - ENABLE_GYRO_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_SCALE_FACTOR_ESTIMATION - ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION - ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION = _mscl.InertialTypes_ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION - ENABLE_HARD_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_HARD_IRON_AUTO_CALIBRATION - ENABLE_SOFT_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_SOFT_IRON_AUTO_CALIBRATION - NONE = _mscl.InertialTypes_NONE - WORLD_MAGNETIC_MODEL = _mscl.InertialTypes_WORLD_MAGNETIC_MODEL - MANUAL = _mscl.InertialTypes_MANUAL - ADAPTIVE_MEASUREMENT_DISABLE = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_DISABLE - ADAPTIVE_MEASUREMENT_ENABLE_FIXED = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_FIXED - ADAPTIVE_MEASUREMENT_ENABLE_AUTO = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_AUTO - GNSS_POS_VEL_AIDING = _mscl.InertialTypes_GNSS_POS_VEL_AIDING - GNSS_HEADING_AIDING = _mscl.InertialTypes_GNSS_HEADING_AIDING - ALTIMETER_AIDING = _mscl.InertialTypes_ALTIMETER_AIDING - ODOMETER_AIDING = _mscl.InertialTypes_ODOMETER_AIDING - MAGNETOMETER_AIDING = _mscl.InertialTypes_MAGNETOMETER_AIDING - EXTERNAL_HEADING_AIDING = _mscl.InertialTypes_EXTERNAL_HEADING_AIDING - EXTERNAL_ALTIMETER_AIDING = _mscl.InertialTypes_EXTERNAL_ALTIMETER_AIDING - EXTERNAL_MAGNETOMETER_AIDING = _mscl.InertialTypes_EXTERNAL_MAGNETOMETER_AIDING - BODY_FRAME_VEL_AIDING = _mscl.InertialTypes_BODY_FRAME_VEL_AIDING - ALL_AIDING_MEASUREMENTS = _mscl.InertialTypes_ALL_AIDING_MEASUREMENTS - GPS = _mscl.InertialTypes_GPS - SBAS = _mscl.InertialTypes_SBAS - GALILEO = _mscl.InertialTypes_GALILEO - BEIDOU = _mscl.InertialTypes_BEIDOU - QZSS = _mscl.InertialTypes_QZSS - GLONASS = _mscl.InertialTypes_GLONASS - FILTERING_OFF = _mscl.InertialTypes_FILTERING_OFF - FILTERING_CONSERVATIVE = _mscl.InertialTypes_FILTERING_CONSERVATIVE - FILTERING_MODERATE = _mscl.InertialTypes_FILTERING_MODERATE - FILTERING_AGGRESSIVE = _mscl.InertialTypes_FILTERING_AGGRESSIVE - FACTORY_STREAMING_OVERWRITE = _mscl.InertialTypes_FACTORY_STREAMING_OVERWRITE - FACTORY_STREAMING_MERGE = _mscl.InertialTypes_FACTORY_STREAMING_MERGE - FACTORY_STREAMING_ADDITIVE = _mscl.InertialTypes_FACTORY_STREAMING_ADDITIVE - PPS_DISABLED = _mscl.InertialTypes_PPS_DISABLED - PPS_RECEIVER_1 = _mscl.InertialTypes_PPS_RECEIVER_1 - PPS_RECEIVER_2 = _mscl.InertialTypes_PPS_RECEIVER_2 - PPS_GPIO = _mscl.InertialTypes_PPS_GPIO - PPS_GENERATED = _mscl.InertialTypes_PPS_GENERATED - GNSS_AIDING_TIGHT_COUPLING = _mscl.InertialTypes_GNSS_AIDING_TIGHT_COUPLING - GNSS_AIDING_DIFFERENTIAL = _mscl.InertialTypes_GNSS_AIDING_DIFFERENTIAL - GNSS_AIDING_INTEGER_FIX = _mscl.InertialTypes_GNSS_AIDING_INTEGER_FIX - GNSS_AIDING_GPS = _mscl.InertialTypes_GNSS_AIDING_GPS - GNSS_AIDING_GLONASS = _mscl.InertialTypes_GNSS_AIDING_GLONASS - GNSS_AIDING_GALILEO = _mscl.InertialTypes_GNSS_AIDING_GALILEO - GNSS_AIDING_BEIDOU = _mscl.InertialTypes_GNSS_AIDING_BEIDOU - GNSS_AIDING_NO_FIX = _mscl.InertialTypes_GNSS_AIDING_NO_FIX - GNSS_AIDING_CONFIG_ERROR = _mscl.InertialTypes_GNSS_AIDING_CONFIG_ERROR - AIDING_MEASUREMENT_ENABLED = _mscl.InertialTypes_AIDING_MEASUREMENT_ENABLED - AIDING_MEASUREMENT_USED = _mscl.InertialTypes_AIDING_MEASUREMENT_USED - AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH - AIDING_MEASUREMENT_WARNING_SAMPLE_TIME = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_SAMPLE_TIME - AIDING_MEASUREMENT_CONFIG_ERROR = _mscl.InertialTypes_AIDING_MEASUREMENT_CONFIG_ERROR - AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED = _mscl.InertialTypes_AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED - RTK_CORRECTION_ANTENNA_POS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_POS_RECEIVED - RTK_CORRECTION_ANTENNA_DESC_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_DESC_RECEIVED - RTK_CORRECTION_GPS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GPS_RECEIVED - RTK_CORRECTION_GLONASS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GLONASS_RECEIVED - RTK_CORRECTION_GALILEO_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GALILEO_RECEIVED - RTK_CORRECTION_BEIDOU_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_BEIDOU_RECEIVED - RTK_CORRECTION_USING_GPS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GPS_MSM - RTK_CORRECTION_USING_GLONASS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GLONASS_MSM - SIGNAL_QUALITY_NONE = _mscl.InertialTypes_SIGNAL_QUALITY_NONE - SIGNAL_QUALITY_SEARCHING = _mscl.InertialTypes_SIGNAL_QUALITY_SEARCHING - SIGNAL_QUALITY_ACQUIRED = _mscl.InertialTypes_SIGNAL_QUALITY_ACQUIRED - SIGNAL_QUALITY_UNUSABLE = _mscl.InertialTypes_SIGNAL_QUALITY_UNUSABLE - SIGNAL_QUALITY_TIME_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_TIME_LOCKED - SIGNAL_QUALITY_FULLY_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_FULLY_LOCKED - OVERRANGE_ACCEL_X = _mscl.InertialTypes_OVERRANGE_ACCEL_X - OVERRANGE_ACCEL_Y = _mscl.InertialTypes_OVERRANGE_ACCEL_Y - OVERRANGE_ACCEL_Z = _mscl.InertialTypes_OVERRANGE_ACCEL_Z - OVERRANGE_GYRO_X = _mscl.InertialTypes_OVERRANGE_GYRO_X - OVERRANGE_GYRO_Y = _mscl.InertialTypes_OVERRANGE_GYRO_Y - OVERRANGE_GYRO_Z = _mscl.InertialTypes_OVERRANGE_GYRO_Z - OVERRANGE_MAG_X = _mscl.InertialTypes_OVERRANGE_MAG_X - OVERRANGE_MAG_Y = _mscl.InertialTypes_OVERRANGE_MAG_Y - OVERRANGE_MAG_Z = _mscl.InertialTypes_OVERRANGE_MAG_Z - OVERRANGE_PRESSURE = _mscl.InertialTypes_OVERRANGE_PRESSURE - UNKNOWN_SBAS_SYSTEM = _mscl.InertialTypes_UNKNOWN_SBAS_SYSTEM - WAAS = _mscl.InertialTypes_WAAS - EGNOS = _mscl.InertialTypes_EGNOS - MSAS = _mscl.InertialTypes_MSAS - GAGAN = _mscl.InertialTypes_GAGAN - SBAS_INFO_RANGE_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_RANGE_AVAILABLE - SBAS_INFO_CORRECTIONS_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_CORRECTIONS_AVAILABLE - SBAS_INFO_INTEGRITY_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_INTEGRITY_AVAILABLE - SBAS_INFO_TEST = _mscl.InertialTypes_SBAS_INFO_TEST - JAMMING_STATE_UNKNOWN = _mscl.InertialTypes_JAMMING_STATE_UNKNOWN - JAMMING_STATE_NONE = _mscl.InertialTypes_JAMMING_STATE_NONE - JAMMING_STATE_PARTIAL = _mscl.InertialTypes_JAMMING_STATE_PARTIAL - JAMMING_STATE_SIGNIFICANT = _mscl.InertialTypes_JAMMING_STATE_SIGNIFICANT - SPOOFING_STATE_UNKNOWN = _mscl.InertialTypes_SPOOFING_STATE_UNKNOWN - SPOOFING_STATE_NONE = _mscl.InertialTypes_SPOOFING_STATE_NONE - SPOOFING_STATE_PARTIAL = _mscl.InertialTypes_SPOOFING_STATE_PARTIAL - SPOOFING_STATE_SIGNIFICANT = _mscl.InertialTypes_SPOOFING_STATE_SIGNIFICANT - - def __init__(self): - _mscl.InertialTypes_swiginit(self, _mscl.new_InertialTypes()) - __swig_destroy__ = _mscl.delete_InertialTypes - -# Register InertialTypes in _mscl: -_mscl.InertialTypes_swigregister(InertialTypes) - -class NmeaMessageFormat(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_MESSAGES = _mscl.NmeaMessageFormat_MAX_MESSAGES - GGA = _mscl.NmeaMessageFormat_GGA - GLL = _mscl.NmeaMessageFormat_GLL - GSV = _mscl.NmeaMessageFormat_GSV - RMC = _mscl.NmeaMessageFormat_RMC - VTG = _mscl.NmeaMessageFormat_VTG - HDT = _mscl.NmeaMessageFormat_HDT - ZDA = _mscl.NmeaMessageFormat_ZDA - MSRA = _mscl.NmeaMessageFormat_MSRA - MSRR = _mscl.NmeaMessageFormat_MSRR - IGNORED = _mscl.NmeaMessageFormat_IGNORED - GNSS = _mscl.NmeaMessageFormat_GNSS - GPS = _mscl.NmeaMessageFormat_GPS - GALILEO = _mscl.NmeaMessageFormat_GALILEO - GLONASS = _mscl.NmeaMessageFormat_GLONASS - - def __init__(self): - _mscl.NmeaMessageFormat_swiginit(self, _mscl.new_NmeaMessageFormat()) - __swig_destroy__ = _mscl.delete_NmeaMessageFormat - - def sentenceType(self, *args): - return _mscl.NmeaMessageFormat_sentenceType(self, *args) - - def talkerId(self, *args): - return _mscl.NmeaMessageFormat_talkerId(self, *args) - - def sourceDataClass(self, *args): - return _mscl.NmeaMessageFormat_sourceDataClass(self, *args) - - def sampleRate(self, *args): - return _mscl.NmeaMessageFormat_sampleRate(self, *args) - - @staticmethod - def talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - - @staticmethod - def dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - - @staticmethod - def supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - - @staticmethod - def toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -# Register NmeaMessageFormat in _mscl: -_mscl.NmeaMessageFormat_swigregister(NmeaMessageFormat) -NmeaMessageFormat.MAX_FREQUENCY = _mscl.cvar.NmeaMessageFormat_MAX_FREQUENCY - -def NmeaMessageFormat_talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - -def NmeaMessageFormat_dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - -def NmeaMessageFormat_supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - -def NmeaMessageFormat_toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -class Matrix_3x3(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Matrix_3x3_swiginit(self, _mscl.new_Matrix_3x3(*args)) - __swig_destroy__ = _mscl.delete_Matrix_3x3 - - def set(self, row, col, value): - return _mscl.Matrix_3x3_set(self, row, col, value) - - def at(self, row, col): - return _mscl.Matrix_3x3_at(self, row, col) - - def __str__(self): - return _mscl.Matrix_3x3___str__(self) - - def asMipFieldValues(self): - return _mscl.Matrix_3x3_asMipFieldValues(self) - -# Register Matrix_3x3 in _mscl: -_mscl.Matrix_3x3_swigregister(Matrix_3x3) - -class TimeUpdate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, timeOfWeek, weekNumber, timeAccuracy=0): - _mscl.TimeUpdate_swiginit(self, _mscl.new_TimeUpdate(timeOfWeek, weekNumber, timeAccuracy)) - __swig_destroy__ = _mscl.delete_TimeUpdate - - def timeOfWeek(self): - return _mscl.TimeUpdate_timeOfWeek(self) - - def weekNumber(self): - return _mscl.TimeUpdate_weekNumber(self) - - def timeAccuracy(self): - return _mscl.TimeUpdate_timeAccuracy(self) - -# Register TimeUpdate in _mscl: -_mscl.TimeUpdate_swigregister(TimeUpdate) - -class ZUPTSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, enable, threshold): - _mscl.ZUPTSettingsData_swiginit(self, _mscl.new_ZUPTSettingsData(enable, threshold)) - enabled = property(_mscl.ZUPTSettingsData_enabled_get, _mscl.ZUPTSettingsData_enabled_set) - threshold = property(_mscl.ZUPTSettingsData_threshold_get, _mscl.ZUPTSettingsData_threshold_set) - __swig_destroy__ = _mscl.delete_ZUPTSettingsData - -# Register ZUPTSettingsData in _mscl: -_mscl.ZUPTSettingsData_swigregister(ZUPTSettingsData) - -class FixedReferencePositionData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.FixedReferencePositionData_swiginit(self, _mscl.new_FixedReferencePositionData(*args)) - enable = property(_mscl.FixedReferencePositionData_enable_get, _mscl.FixedReferencePositionData_enable_set) - referencePosition = property(_mscl.FixedReferencePositionData_referencePosition_get, _mscl.FixedReferencePositionData_referencePosition_set) - __swig_destroy__ = _mscl.delete_FixedReferencePositionData - -# Register FixedReferencePositionData in _mscl: -_mscl.FixedReferencePositionData_swigregister(FixedReferencePositionData) - -class SBASSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enableSBAS = property(_mscl.SBASSettingsData_enableSBAS_get, _mscl.SBASSettingsData_enableSBAS_set) - enableRanging = property(_mscl.SBASSettingsData_enableRanging_get, _mscl.SBASSettingsData_enableRanging_set) - enableCorrectionData = property(_mscl.SBASSettingsData_enableCorrectionData_get, _mscl.SBASSettingsData_enableCorrectionData_set) - applyIntegrityInfo = property(_mscl.SBASSettingsData_applyIntegrityInfo_get, _mscl.SBASSettingsData_applyIntegrityInfo_set) - satellitePRNs = property(_mscl.SBASSettingsData_satellitePRNs_get, _mscl.SBASSettingsData_satellitePRNs_set) - - def __init__(self): - _mscl.SBASSettingsData_swiginit(self, _mscl.new_SBASSettingsData()) - __swig_destroy__ = _mscl.delete_SBASSettingsData - -# Register SBASSettingsData in _mscl: -_mscl.SBASSettingsData_swigregister(SBASSettingsData) - -class Constellation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - constellationID = property(_mscl.Constellation_constellationID_get, _mscl.Constellation_constellationID_set) - enabled = property(_mscl.Constellation_enabled_get, _mscl.Constellation_enabled_set) - reservedChannelCount = property(_mscl.Constellation_reservedChannelCount_get, _mscl.Constellation_reservedChannelCount_set) - maxChannels = property(_mscl.Constellation_maxChannels_get, _mscl.Constellation_maxChannels_set) - enableL1SAIF = property(_mscl.Constellation_enableL1SAIF_get, _mscl.Constellation_enableL1SAIF_set) - - def __init__(self): - _mscl.Constellation_swiginit(self, _mscl.new_Constellation()) - __swig_destroy__ = _mscl.delete_Constellation - -# Register Constellation in _mscl: -_mscl.Constellation_swigregister(Constellation) - -class ConstellationSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - maxChannelsAvailable = property(_mscl.ConstellationSettingsData_maxChannelsAvailable_get, _mscl.ConstellationSettingsData_maxChannelsAvailable_set) - maxChannelsToUse = property(_mscl.ConstellationSettingsData_maxChannelsToUse_get, _mscl.ConstellationSettingsData_maxChannelsToUse_set) - constellations = property(_mscl.ConstellationSettingsData_constellations_get, _mscl.ConstellationSettingsData_constellations_set) - - def __init__(self): - _mscl.ConstellationSettingsData_swiginit(self, _mscl.new_ConstellationSettingsData()) - __swig_destroy__ = _mscl.delete_ConstellationSettingsData - -# Register ConstellationSettingsData in _mscl: -_mscl.ConstellationSettingsData_swigregister(ConstellationSettingsData) - -class LowPassFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SET_TO_HALF_REPORTING_RATE = _mscl.LowPassFilterData_SET_TO_HALF_REPORTING_RATE - USER_SPECIFIED_CUTOFF_FREQ = _mscl.LowPassFilterData_USER_SPECIFIED_CUTOFF_FREQ - - def __init__(self, *args): - _mscl.LowPassFilterData_swiginit(self, _mscl.new_LowPassFilterData(*args)) - dataDescriptor = property(_mscl.LowPassFilterData_dataDescriptor_get, _mscl.LowPassFilterData_dataDescriptor_set) - manualFilterBandwidthConfig = property(_mscl.LowPassFilterData_manualFilterBandwidthConfig_get, _mscl.LowPassFilterData_manualFilterBandwidthConfig_set) - applyLowPassFilter = property(_mscl.LowPassFilterData_applyLowPassFilter_get, _mscl.LowPassFilterData_applyLowPassFilter_set) - cutoffFrequency = property(_mscl.LowPassFilterData_cutoffFrequency_get, _mscl.LowPassFilterData_cutoffFrequency_set) - - @staticmethod - def getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - - @staticmethod - def getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - __swig_destroy__ = _mscl.delete_LowPassFilterData - -# Register LowPassFilterData in _mscl: -_mscl.LowPassFilterData_swigregister(LowPassFilterData) - -def LowPassFilterData_getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - -def LowPassFilterData_getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - -class ComplementaryFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ComplementaryFilterData_swiginit(self, _mscl.new_ComplementaryFilterData()) - upCompensationEnabled = property(_mscl.ComplementaryFilterData_upCompensationEnabled_get, _mscl.ComplementaryFilterData_upCompensationEnabled_set) - upCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_upCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_upCompensationTimeInSeconds_set) - northCompensationEnabled = property(_mscl.ComplementaryFilterData_northCompensationEnabled_get, _mscl.ComplementaryFilterData_northCompensationEnabled_set) - northCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_northCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_northCompensationTimeInSeconds_set) - __swig_destroy__ = _mscl.delete_ComplementaryFilterData - -# Register ComplementaryFilterData in _mscl: -_mscl.ComplementaryFilterData_swigregister(ComplementaryFilterData) - -class PpsPulseInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PpsPulseInfo_swiginit(self, _mscl.new_PpsPulseInfo()) - count = property(_mscl.PpsPulseInfo_count_get, _mscl.PpsPulseInfo_count_set) - lastTimeinMS = property(_mscl.PpsPulseInfo_lastTimeinMS_get, _mscl.PpsPulseInfo_lastTimeinMS_set) - __swig_destroy__ = _mscl.delete_PpsPulseInfo - -# Register PpsPulseInfo in _mscl: -_mscl.PpsPulseInfo_swigregister(PpsPulseInfo) - -class StreamInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.StreamInfo_swiginit(self, _mscl.new_StreamInfo()) - enabled = property(_mscl.StreamInfo_enabled_get, _mscl.StreamInfo_enabled_set) - outgoingPacketsDropped = property(_mscl.StreamInfo_outgoingPacketsDropped_get, _mscl.StreamInfo_outgoingPacketsDropped_set) - __swig_destroy__ = _mscl.delete_StreamInfo - -# Register StreamInfo in _mscl: -_mscl.StreamInfo_swigregister(StreamInfo) - -class DeviceMessageInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.DeviceMessageInfo_swiginit(self, _mscl.new_DeviceMessageInfo()) - messageParsingErrors = property(_mscl.DeviceMessageInfo_messageParsingErrors_get, _mscl.DeviceMessageInfo_messageParsingErrors_set) - messagesRead = property(_mscl.DeviceMessageInfo_messagesRead_get, _mscl.DeviceMessageInfo_messagesRead_set) - lastMessageReadinMS = property(_mscl.DeviceMessageInfo_lastMessageReadinMS_get, _mscl.DeviceMessageInfo_lastMessageReadinMS_set) - __swig_destroy__ = _mscl.delete_DeviceMessageInfo - -# Register DeviceMessageInfo in _mscl: -_mscl.DeviceMessageInfo_swigregister(DeviceMessageInfo) - -class PortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PortInfo_swiginit(self, _mscl.new_PortInfo()) - bytesWritten = property(_mscl.PortInfo_bytesWritten_get, _mscl.PortInfo_bytesWritten_set) - bytesRead = property(_mscl.PortInfo_bytesRead_get, _mscl.PortInfo_bytesRead_set) - overrunsOnWrite = property(_mscl.PortInfo_overrunsOnWrite_get, _mscl.PortInfo_overrunsOnWrite_set) - overrunsOnRead = property(_mscl.PortInfo_overrunsOnRead_get, _mscl.PortInfo_overrunsOnRead_set) - __swig_destroy__ = _mscl.delete_PortInfo - -# Register PortInfo in _mscl: -_mscl.PortInfo_swigregister(PortInfo) - -class TemperatureInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.TemperatureInfo_swiginit(self, _mscl.new_TemperatureInfo()) - onBoardTemp = property(_mscl.TemperatureInfo_onBoardTemp_get, _mscl.TemperatureInfo_onBoardTemp_set) - lastReadInMS = property(_mscl.TemperatureInfo_lastReadInMS_get, _mscl.TemperatureInfo_lastReadInMS_set) - error = property(_mscl.TemperatureInfo_error_get, _mscl.TemperatureInfo_error_set) - __swig_destroy__ = _mscl.delete_TemperatureInfo - -# Register TemperatureInfo in _mscl: -_mscl.TemperatureInfo_swigregister(TemperatureInfo) - -ModelNumber = _mscl.ModelNumber -StatusStructure_Value = _mscl.StatusStructure_Value -SystemState_Value = _mscl.SystemState_Value -gnss1PpsPulseInfo_Count = _mscl.gnss1PpsPulseInfo_Count -gnss1PpsPulseInfo_LastTimeinMS = _mscl.gnss1PpsPulseInfo_LastTimeinMS -GnssPowerStateOn = _mscl.GnssPowerStateOn -ImuStreamInfo_Enabled = _mscl.ImuStreamInfo_Enabled -ImuStreamInfo_PacketsDropped = _mscl.ImuStreamInfo_PacketsDropped -GnssStreamInfo_Enabled = _mscl.GnssStreamInfo_Enabled -GnssStreamInfo_PacketsDropped = _mscl.GnssStreamInfo_PacketsDropped -EstimationFilterStreamInfo_Enabled = _mscl.EstimationFilterStreamInfo_Enabled -EstimationFilterStreamInfo_PacketsDropped = _mscl.EstimationFilterStreamInfo_PacketsDropped -ComPortInfo_BytesRead = _mscl.ComPortInfo_BytesRead -ComPortInfo_BytesWritten = _mscl.ComPortInfo_BytesWritten -ComPortInfo_OverrunsOnRead = _mscl.ComPortInfo_OverrunsOnRead -ComPortInfo_OverrunsOnWrite = _mscl.ComPortInfo_OverrunsOnWrite -ImuMessageInfo_LastMessageReadinMS = _mscl.ImuMessageInfo_LastMessageReadinMS -ImuMessageInfo_MessageParsingErrors = _mscl.ImuMessageInfo_MessageParsingErrors -ImuMessageInfo_MessagesRead = _mscl.ImuMessageInfo_MessagesRead -GnssMessageInfo_LastMessageReadinMS = _mscl.GnssMessageInfo_LastMessageReadinMS -GnssMessageInfo_MessageParsingErrors = _mscl.GnssMessageInfo_MessageParsingErrors -GnssMessageInfo_MessagesRead = _mscl.GnssMessageInfo_MessagesRead -TemperatureInfo_Error = _mscl.TemperatureInfo_Error -TemperatureInfo_LastReadInMS = _mscl.TemperatureInfo_LastReadInMS -TemperatureInfo_OnBoardTemp = _mscl.TemperatureInfo_OnBoardTemp -PowerState = _mscl.PowerState -GyroRange = _mscl.GyroRange -AccelRange = _mscl.AccelRange -HasMagnetometer = _mscl.HasMagnetometer -HasPressure = _mscl.HasPressure -class DeviceStatusData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_BASIC_STATUS_STRUCTURE - DIAGNOSTIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_DIAGNOSTIC_STATUS_STRUCTURE - SYSTEM_INITIALIZATION = _mscl.DeviceStatusData_SYSTEM_INITIALIZATION - SYSTEM_STARTUP = _mscl.DeviceStatusData_SYSTEM_STARTUP - SYSTEM_RUNNING = _mscl.DeviceStatusData_SYSTEM_RUNNING - - def __init__(self): - _mscl.DeviceStatusData_swiginit(self, _mscl.new_DeviceStatusData()) - modelNumber = property(_mscl.DeviceStatusData_modelNumber_get, _mscl.DeviceStatusData_modelNumber_set) - statusStructure = property(_mscl.DeviceStatusData_statusStructure_get, _mscl.DeviceStatusData_statusStructure_set) - systemTimerInMS = property(_mscl.DeviceStatusData_systemTimerInMS_get, _mscl.DeviceStatusData_systemTimerInMS_set) - - def systemState(self, *args): - return _mscl.DeviceStatusData_systemState(self, *args) - - def gnssPowerStateOn(self, *args): - return _mscl.DeviceStatusData_gnssPowerStateOn(self, *args) - - def gnss1PpsPulseInfo(self, *args): - return _mscl.DeviceStatusData_gnss1PpsPulseInfo(self, *args) - - def imuStreamInfo(self, *args): - return _mscl.DeviceStatusData_imuStreamInfo(self, *args) - - def gnssStreamInfo(self, *args): - return _mscl.DeviceStatusData_gnssStreamInfo(self, *args) - - def estimationFilterStreamInfo(self, *args): - return _mscl.DeviceStatusData_estimationFilterStreamInfo(self, *args) - - def imuMessageInfo(self, *args): - return _mscl.DeviceStatusData_imuMessageInfo(self, *args) - - def gnssMessageInfo(self, *args): - return _mscl.DeviceStatusData_gnssMessageInfo(self, *args) - - def comPortInfo(self, *args): - return _mscl.DeviceStatusData_comPortInfo(self, *args) - - def usbPortInfo(self, *args): - return _mscl.DeviceStatusData_usbPortInfo(self, *args) - - def hasMagnetometer(self, *args): - return _mscl.DeviceStatusData_hasMagnetometer(self, *args) - - def magnetometerInitializationFailed(self, *args): - return _mscl.DeviceStatusData_magnetometerInitializationFailed(self, *args) - - def hasPressure(self, *args): - return _mscl.DeviceStatusData_hasPressure(self, *args) - - def pressureInitializationFailed(self, *args): - return _mscl.DeviceStatusData_pressureInitializationFailed(self, *args) - - def gnssReceiverInitializationFailed(self, *args): - return _mscl.DeviceStatusData_gnssReceiverInitializationFailed(self, *args) - - def coldStartOnPowerOn(self, *args): - return _mscl.DeviceStatusData_coldStartOnPowerOn(self, *args) - - def temperatureInfo(self, *args): - return _mscl.DeviceStatusData_temperatureInfo(self, *args) - - def powerState(self, *args): - return _mscl.DeviceStatusData_powerState(self, *args) - - def gyroRange(self, *args): - return _mscl.DeviceStatusData_gyroRange(self, *args) - - def accelRange(self, *args): - return _mscl.DeviceStatusData_accelRange(self, *args) - - def asMap(self): - return _mscl.DeviceStatusData_asMap(self) - - def asValueMap(self): - return _mscl.DeviceStatusData_asValueMap(self) - __swig_destroy__ = _mscl.delete_DeviceStatusData - -# Register DeviceStatusData in _mscl: -_mscl.DeviceStatusData_swigregister(DeviceStatusData) - -class ExternalGNSSUpdateData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - gpsTimeOfWeek = property(_mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_get, _mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_set) - gpsWeekNumber = property(_mscl.ExternalGNSSUpdateData_gpsWeekNumber_get, _mscl.ExternalGNSSUpdateData_gpsWeekNumber_set) - lattitude = property(_mscl.ExternalGNSSUpdateData_lattitude_get, _mscl.ExternalGNSSUpdateData_lattitude_set) - longitude = property(_mscl.ExternalGNSSUpdateData_longitude_get, _mscl.ExternalGNSSUpdateData_longitude_set) - altitudeAboveWGS84Ellipsoid = property(_mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_get, _mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_set) - northVelocity = property(_mscl.ExternalGNSSUpdateData_northVelocity_get, _mscl.ExternalGNSSUpdateData_northVelocity_set) - eastVelocity = property(_mscl.ExternalGNSSUpdateData_eastVelocity_get, _mscl.ExternalGNSSUpdateData_eastVelocity_set) - downVelocity = property(_mscl.ExternalGNSSUpdateData_downVelocity_get, _mscl.ExternalGNSSUpdateData_downVelocity_set) - northPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_northPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_northPositionUncertainty_set) - eastPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_eastPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_eastPositionUncertainty_set) - downPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_downPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_downPositionUncertainty_set) - northVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_northVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_northVelocityUncertainty_set) - eastVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_set) - downVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_downVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_downVelocityUncertainty_set) - - def __init__(self): - _mscl.ExternalGNSSUpdateData_swiginit(self, _mscl.new_ExternalGNSSUpdateData()) - __swig_destroy__ = _mscl.delete_ExternalGNSSUpdateData - -# Register ExternalGNSSUpdateData in _mscl: -_mscl.ExternalGNSSUpdateData_swigregister(ExternalGNSSUpdateData) - -class HeadingUpdateOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsOptionId(self): - return _mscl.HeadingUpdateOptions_AsOptionId(self) - - def __init__(self, *args): - _mscl.HeadingUpdateOptions_swiginit(self, _mscl.new_HeadingUpdateOptions(*args)) - useInternalMagnetometer = property(_mscl.HeadingUpdateOptions_useInternalMagnetometer_get, _mscl.HeadingUpdateOptions_useInternalMagnetometer_set) - useInternalGNSSVelocityVector = property(_mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_get, _mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_set) - useExternalHeadingMessages = property(_mscl.HeadingUpdateOptions_useExternalHeadingMessages_get, _mscl.HeadingUpdateOptions_useExternalHeadingMessages_set) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptions - -# Register HeadingUpdateOptions in _mscl: -_mscl.HeadingUpdateOptions_swigregister(HeadingUpdateOptions) - -Automatic = _mscl.Automatic -UserSpecified_Heading = _mscl.UserSpecified_Heading -UserSpecified_Attitude = _mscl.UserSpecified_Attitude -UserSpecified_All = _mscl.UserSpecified_All -GNSS_DualAntenna = _mscl.GNSS_DualAntenna -GNSS_Kinematic = _mscl.GNSS_Kinematic -Magnetometer = _mscl.Magnetometer -External = _mscl.External -class HeadingAlignmentMethod(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.HeadingAlignmentMethod_swiginit(self, _mscl.new_HeadingAlignmentMethod(*args)) - value = property(_mscl.HeadingAlignmentMethod_value_get, _mscl.HeadingAlignmentMethod_value_set) - - def select(self, option): - return _mscl.HeadingAlignmentMethod_select(self, option) - - def deselect(self, option): - return _mscl.HeadingAlignmentMethod_deselect(self, option) - - def selected(self, option): - return _mscl.HeadingAlignmentMethod_selected(self, option) - __swig_destroy__ = _mscl.delete_HeadingAlignmentMethod - -# Register HeadingAlignmentMethod in _mscl: -_mscl.HeadingAlignmentMethod_swigregister(HeadingAlignmentMethod) - -class FilterInitializationValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FilterInitializationValues_swiginit(self, _mscl.new_FilterInitializationValues()) - autoInitialize = property(_mscl.FilterInitializationValues_autoInitialize_get, _mscl.FilterInitializationValues_autoInitialize_set) - initialValuesSource = property(_mscl.FilterInitializationValues_initialValuesSource_get, _mscl.FilterInitializationValues_initialValuesSource_set) - autoHeadingAlignmentMethod = property(_mscl.FilterInitializationValues_autoHeadingAlignmentMethod_get, _mscl.FilterInitializationValues_autoHeadingAlignmentMethod_set) - initialAttitude = property(_mscl.FilterInitializationValues_initialAttitude_get, _mscl.FilterInitializationValues_initialAttitude_set) - initialPosition = property(_mscl.FilterInitializationValues_initialPosition_get, _mscl.FilterInitializationValues_initialPosition_set) - initialVelocity = property(_mscl.FilterInitializationValues_initialVelocity_get, _mscl.FilterInitializationValues_initialVelocity_set) - referenceFrame = property(_mscl.FilterInitializationValues_referenceFrame_get, _mscl.FilterInitializationValues_referenceFrame_set) - - def manualHeading(self): - return _mscl.FilterInitializationValues_manualHeading(self) - - def manualAttitude(self): - return _mscl.FilterInitializationValues_manualAttitude(self) - - def manualPositionVelocity(self): - return _mscl.FilterInitializationValues_manualPositionVelocity(self) - __swig_destroy__ = _mscl.delete_FilterInitializationValues - -# Register FilterInitializationValues in _mscl: -_mscl.FilterInitializationValues_swigregister(FilterInitializationValues) - -class TareAxisValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def asUint8(self): - return _mscl.TareAxisValues_asUint8(self) - - def __init__(self, tareRollAxis, tarePitchAxis, tareYawAxis): - _mscl.TareAxisValues_swiginit(self, _mscl.new_TareAxisValues(tareRollAxis, tarePitchAxis, tareYawAxis)) - tareRollAxis = property(_mscl.TareAxisValues_tareRollAxis_get, _mscl.TareAxisValues_tareRollAxis_set) - tarePitchAxis = property(_mscl.TareAxisValues_tarePitchAxis_get, _mscl.TareAxisValues_tarePitchAxis_set) - tareYawAxis = property(_mscl.TareAxisValues_tareYawAxis_get, _mscl.TareAxisValues_tareYawAxis_set) - __swig_destroy__ = _mscl.delete_TareAxisValues - -# Register TareAxisValues in _mscl: -_mscl.TareAxisValues_swigregister(TareAxisValues) - -class GeographicSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeographicSourceOptions_swiginit(self, _mscl.new_GeographicSourceOptions(*args)) - source = property(_mscl.GeographicSourceOptions_source_get, _mscl.GeographicSourceOptions_source_set) - manual = property(_mscl.GeographicSourceOptions_manual_get, _mscl.GeographicSourceOptions_manual_set) - __swig_destroy__ = _mscl.delete_GeographicSourceOptions - -# Register GeographicSourceOptions in _mscl: -_mscl.GeographicSourceOptions_swigregister(GeographicSourceOptions) - -class EstimationControlOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsUint16(self): - return _mscl.EstimationControlOptions_AsUint16(self) - - def __init__(self, *args): - _mscl.EstimationControlOptions_swiginit(self, _mscl.new_EstimationControlOptions(*args)) - enableGyroBiasEstimation = property(_mscl.EstimationControlOptions_enableGyroBiasEstimation_get, _mscl.EstimationControlOptions_enableGyroBiasEstimation_set) - enableAccelBiasEstimation = property(_mscl.EstimationControlOptions_enableAccelBiasEstimation_get, _mscl.EstimationControlOptions_enableAccelBiasEstimation_set) - enableGyroScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_set) - enableAccelScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_set) - enableGNSSAntennaOffsetEstimation = property(_mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_get, _mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_set) - enableHardIronAutoCalibration = property(_mscl.EstimationControlOptions_enableHardIronAutoCalibration_get, _mscl.EstimationControlOptions_enableHardIronAutoCalibration_set) - enableSoftIronAutoCalibration = property(_mscl.EstimationControlOptions_enableSoftIronAutoCalibration_get, _mscl.EstimationControlOptions_enableSoftIronAutoCalibration_set) - __swig_destroy__ = _mscl.delete_EstimationControlOptions - -# Register EstimationControlOptions in _mscl: -_mscl.EstimationControlOptions_swigregister(EstimationControlOptions) - -class HeadingData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HeadingData_swiginit(self, _mscl.new_HeadingData()) - TRUE_HEADING = _mscl.HeadingData_TRUE_HEADING - MAGNETIC_HEADING = _mscl.HeadingData_MAGNETIC_HEADING - heading = property(_mscl.HeadingData_heading_get, _mscl.HeadingData_heading_set) - headingAngle = property(_mscl.HeadingData_headingAngle_get, _mscl.HeadingData_headingAngle_set) - headingAngleUncertainty = property(_mscl.HeadingData_headingAngleUncertainty_get, _mscl.HeadingData_headingAngleUncertainty_set) - __swig_destroy__ = _mscl.delete_HeadingData - -# Register HeadingData in _mscl: -_mscl.HeadingData_swigregister(HeadingData) - -class AdaptiveMeasurementData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AdaptiveMeasurementData_swiginit(self, _mscl.new_AdaptiveMeasurementData()) - mode = property(_mscl.AdaptiveMeasurementData_mode_get, _mscl.AdaptiveMeasurementData_mode_set) - lowPassFilterCutoff = property(_mscl.AdaptiveMeasurementData_lowPassFilterCutoff_get, _mscl.AdaptiveMeasurementData_lowPassFilterCutoff_set) - lowLimit = property(_mscl.AdaptiveMeasurementData_lowLimit_get, _mscl.AdaptiveMeasurementData_lowLimit_set) - highLimit = property(_mscl.AdaptiveMeasurementData_highLimit_get, _mscl.AdaptiveMeasurementData_highLimit_set) - lowLimitUncertainty = property(_mscl.AdaptiveMeasurementData_lowLimitUncertainty_get, _mscl.AdaptiveMeasurementData_lowLimitUncertainty_set) - highLimitUncertainty = property(_mscl.AdaptiveMeasurementData_highLimitUncertainty_get, _mscl.AdaptiveMeasurementData_highLimitUncertainty_set) - minUncertainty = property(_mscl.AdaptiveMeasurementData_minUncertainty_get, _mscl.AdaptiveMeasurementData_minUncertainty_set) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementData - -# Register AdaptiveMeasurementData in _mscl: -_mscl.AdaptiveMeasurementData_swigregister(AdaptiveMeasurementData) - -class AutoAdaptiveFilterOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AutoAdaptiveFilterOptions_swiginit(self, _mscl.new_AutoAdaptiveFilterOptions(*args)) - level = property(_mscl.AutoAdaptiveFilterOptions_level_get, _mscl.AutoAdaptiveFilterOptions_level_set) - timeLimit = property(_mscl.AutoAdaptiveFilterOptions_timeLimit_get, _mscl.AutoAdaptiveFilterOptions_timeLimit_set) - __swig_destroy__ = _mscl.delete_AutoAdaptiveFilterOptions - -# Register AutoAdaptiveFilterOptions in _mscl: -_mscl.AutoAdaptiveFilterOptions_swigregister(AutoAdaptiveFilterOptions) - -class SignalConditioningValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ENABLE_ORIENTATION_CALC = _mscl.SignalConditioningValues_ENABLE_ORIENTATION_CALC - ENABLE_CONING_SCULLING = _mscl.SignalConditioningValues_ENABLE_CONING_SCULLING - ENABLE_FINITE_SIZE_CORRECTION = _mscl.SignalConditioningValues_ENABLE_FINITE_SIZE_CORRECTION - DISABLE_MAGNETOMETER = _mscl.SignalConditioningValues_DISABLE_MAGNETOMETER - DISABLE_NORTH_COMP = _mscl.SignalConditioningValues_DISABLE_NORTH_COMP - DISABLE_UP_COMP = _mscl.SignalConditioningValues_DISABLE_UP_COMP - ENABLE_QUATERNION_CALC = _mscl.SignalConditioningValues_ENABLE_QUATERNION_CALC - HIGH = _mscl.SignalConditioningValues_HIGH - LOW = _mscl.SignalConditioningValues_LOW - dataConditioningFlags = property(_mscl.SignalConditioningValues_dataConditioningFlags_get, _mscl.SignalConditioningValues_dataConditioningFlags_set) - orientationCalcDecimation = property(_mscl.SignalConditioningValues_orientationCalcDecimation_get, _mscl.SignalConditioningValues_orientationCalcDecimation_set) - accelGyroFilterWidth = property(_mscl.SignalConditioningValues_accelGyroFilterWidth_get, _mscl.SignalConditioningValues_accelGyroFilterWidth_set) - magFilterWidth = property(_mscl.SignalConditioningValues_magFilterWidth_get, _mscl.SignalConditioningValues_magFilterWidth_set) - upCompensation = property(_mscl.SignalConditioningValues_upCompensation_get, _mscl.SignalConditioningValues_upCompensation_set) - northCompensation = property(_mscl.SignalConditioningValues_northCompensation_get, _mscl.SignalConditioningValues_northCompensation_set) - magBandwidthPower = property(_mscl.SignalConditioningValues_magBandwidthPower_get, _mscl.SignalConditioningValues_magBandwidthPower_set) - - def __init__(self): - _mscl.SignalConditioningValues_swiginit(self, _mscl.new_SignalConditioningValues()) - - def conditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_conditioningOptionOn(self, *args) - - def setConditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOn(self, *args) - - def setConditioningOptionOff(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOff(self, *args) - __swig_destroy__ = _mscl.delete_SignalConditioningValues - -# Register SignalConditioningValues in _mscl: -_mscl.SignalConditioningValues_swigregister(SignalConditioningValues) - -class EnableDisableMeasurements(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ACCELEROMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_ACCELEROMETER_MEASUREMENTS - MAGNETOMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_MAGNETOMETER_MEASUREMENTS - - def __init__(self, *args): - _mscl.EnableDisableMeasurements_swiginit(self, _mscl.new_EnableDisableMeasurements(*args)) - measurementOptions = property(_mscl.EnableDisableMeasurements_measurementOptions_get, _mscl.EnableDisableMeasurements_measurementOptions_set) - - def optionEnabled(self, *args): - return _mscl.EnableDisableMeasurements_optionEnabled(self, *args) - - def enableOption(self, *args): - return _mscl.EnableDisableMeasurements_enableOption(self, *args) - - def disableOption(self, *args): - return _mscl.EnableDisableMeasurements_disableOption(self, *args) - __swig_destroy__ = _mscl.delete_EnableDisableMeasurements - -# Register EnableDisableMeasurements in _mscl: -_mscl.EnableDisableMeasurements_swigregister(EnableDisableMeasurements) - -class RTKDeviceStatusFlags(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MODEM_STATE = _mscl.RTKDeviceStatusFlags_MODEM_STATE - CONNECTION_TYPE = _mscl.RTKDeviceStatusFlags_CONNECTION_TYPE - RSSI = _mscl.RTKDeviceStatusFlags_RSSI - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_SIGNAL_QUALITY - TOWER_CHANGE_INDICATOR = _mscl.RTKDeviceStatusFlags_TOWER_CHANGE_INDICATOR - NMEA_TIMEOUT = _mscl.RTKDeviceStatusFlags_NMEA_TIMEOUT - SERVER_TIMEOUT = _mscl.RTKDeviceStatusFlags_SERVER_TIMEOUT - RTCM_TIMEOUT = _mscl.RTKDeviceStatusFlags_RTCM_TIMEOUT - DEVICE_OUT_OF_RANGE = _mscl.RTKDeviceStatusFlags_DEVICE_OUT_OF_RANGE - CORRECTIONS_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_CORRECTIONS_UNAVAILABLE - VERSION = _mscl.RTKDeviceStatusFlags_VERSION - OFF = _mscl.RTKDeviceStatusFlags_OFF - NO_NETWORK = _mscl.RTKDeviceStatusFlags_NO_NETWORK - NETWORK_CONNECTED = _mscl.RTKDeviceStatusFlags_NETWORK_CONNECTED - CONFIGURING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_CONFIGURING_DATA_CONTEXT - ACTIVATING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_ACTIVATING_DATA_CONTEXT - CONFIGURING_SOCKET = _mscl.RTKDeviceStatusFlags_CONFIGURING_SOCKET - WAITING_ON_SERVER_HANDSHAKE = _mscl.RTKDeviceStatusFlags_WAITING_ON_SERVER_HANDSHAKE - CONNECTED_AND_IDLE = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_IDLE - CONNECTED_AND_STREAMING = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_STREAMING - NO_CONNECTION = _mscl.RTKDeviceStatusFlags_NO_CONNECTION - CONNECTION_2G = _mscl.RTKDeviceStatusFlags_CONNECTION_2G - CONNECTION_3G = _mscl.RTKDeviceStatusFlags_CONNECTION_3G - CONNECTION_4G = _mscl.RTKDeviceStatusFlags_CONNECTION_4G - CONNECTION_5G = _mscl.RTKDeviceStatusFlags_CONNECTION_5G - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_swiginit(self, _mscl.new_RTKDeviceStatusFlags(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_version(self) - - def modemState(self, *args): - return _mscl.RTKDeviceStatusFlags_modemState(self, *args) - - def connectionType(self, *args): - return _mscl.RTKDeviceStatusFlags_connectionType(self, *args) - - def rssi(self, *args): - return _mscl.RTKDeviceStatusFlags_rssi(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_signalQuality(self, *args) - - def towerChangeIndicator(self, *args): - return _mscl.RTKDeviceStatusFlags_towerChangeIndicator(self, *args) - - def nmeaTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_nmeaTimeout(self, *args) - - def serverTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_serverTimeout(self, *args) - - def rtcmTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_rtcmTimeout(self, *args) - - def deviceOutOfRange(self, *args): - return _mscl.RTKDeviceStatusFlags_deviceOutOfRange(self, *args) - - def correctionsUnavailable(self, *args): - return _mscl.RTKDeviceStatusFlags_correctionsUnavailable(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags - -# Register RTKDeviceStatusFlags in _mscl: -_mscl.RTKDeviceStatusFlags_swigregister(RTKDeviceStatusFlags) - -class RTKDeviceStatusFlags_v1(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONTROLLER_STATE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATE - PLATFORM_STATE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATE - CONTROLLER_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATUS_CODE - PLATFORM_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATUS_CODE - RESET_REASON = _mscl.RTKDeviceStatusFlags_v1_RESET_REASON - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_v1_SIGNAL_QUALITY - VERSION = _mscl.RTKDeviceStatusFlags_v1_VERSION - IDLE = _mscl.RTKDeviceStatusFlags_v1_IDLE - ACTIVE = _mscl.RTKDeviceStatusFlags_v1_ACTIVE - MODEM_OFF = _mscl.RTKDeviceStatusFlags_v1_MODEM_OFF - MODEM_POWERING_ON = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_ON - MODEM_CONFIGURE = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONFIGURE - MODEM_POWERING_DOWN = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_DOWN - MODEM_READY = _mscl.RTKDeviceStatusFlags_v1_MODEM_READY - MODEM_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTING - MODEM_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_DISCONNECTING - MODEM_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTED - SERVICE_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTING - SERVICE_CONNECTION_FAILED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_FAILED - SERVICE_CONNECTION_CANCELED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_CANCELED - SERVICE_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_DISCONNECTING - SERVICE_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTED - PLATFORM_ERROR = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_ERROR - RESET_MODEM = _mscl.RTKDeviceStatusFlags_v1_RESET_MODEM - CONTROLLER_OK = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_OK - WAITING_NMEA = _mscl.RTKDeviceStatusFlags_v1_WAITING_NMEA - RTK_TIMEOUT = _mscl.RTKDeviceStatusFlags_v1_RTK_TIMEOUT - RTK_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_v1_RTK_UNAVAILABLE - CONFIG_INVALID = _mscl.RTKDeviceStatusFlags_v1_CONFIG_INVALID - PLATFORM_OK = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_OK - RTK_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_RTK_CONNECTION_DROPPED - CELL_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_CELL_CONNECTION_DROPPED - MODEM_ERROR = _mscl.RTKDeviceStatusFlags_v1_MODEM_ERROR - POWER_ON = _mscl.RTKDeviceStatusFlags_v1_POWER_ON - UNKNOWN = _mscl.RTKDeviceStatusFlags_v1_UNKNOWN - SOFT_RESET = _mscl.RTKDeviceStatusFlags_v1_SOFT_RESET - HARDWARE_ERROR_RESET = _mscl.RTKDeviceStatusFlags_v1_HARDWARE_ERROR_RESET - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_v1_swiginit(self, _mscl.new_RTKDeviceStatusFlags_v1(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_v1_version(self) - - def controllerState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerState(self, *args) - - def platformState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformState(self, *args) - - def controllerStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerStatusCode(self, *args) - - def platformStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformStatusCode(self, *args) - - def resetReason(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_resetReason(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_signalQuality(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags_v1 - -# Register RTKDeviceStatusFlags_v1 in _mscl: -_mscl.RTKDeviceStatusFlags_v1_swigregister(RTKDeviceStatusFlags_v1) - -class GnssSignalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - L1CA = _mscl.GnssSignalConfiguration_L1CA - L2C = _mscl.GnssSignalConfiguration_L2C - L1OF = _mscl.GnssSignalConfiguration_L1OF - L2OF = _mscl.GnssSignalConfiguration_L2OF - E1 = _mscl.GnssSignalConfiguration_E1 - E5B = _mscl.GnssSignalConfiguration_E5B - B1 = _mscl.GnssSignalConfiguration_B1 - B2 = _mscl.GnssSignalConfiguration_B2 - - def __init__(self): - _mscl.GnssSignalConfiguration_swiginit(self, _mscl.new_GnssSignalConfiguration()) - - def enableGpsSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGpsSignal(self, signal, enable) - - def gpsSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_gpsSignalEnabled(self, signal) - - def gpsSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_gpsSignalValue(self, *args) - - def enableGlonassSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGlonassSignal(self, signal, enable) - - def glonassSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_glonassSignalEnabled(self, signal) - - def glonassSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_glonassSignalValue(self, *args) - - def enableGalileoSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGalileoSignal(self, signal, enable) - - def galileoSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_galileoSignalEnabled(self, signal) - - def galileoSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_galileoSignalValue(self, *args) - - def enableBeiDouSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableBeiDouSignal(self, signal, enable) - - def beidouSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_beidouSignalEnabled(self, signal) - - def beidouSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_beidouSignalValue(self, *args) - __swig_destroy__ = _mscl.delete_GnssSignalConfiguration - -# Register GnssSignalConfiguration in _mscl: -_mscl.GnssSignalConfiguration_swigregister(GnssSignalConfiguration) - -class GnssSpartnConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - KEY_SIZE = _mscl.GnssSpartnConfiguration_KEY_SIZE - NONE = _mscl.GnssSpartnConfiguration_NONE - NETWORK = _mscl.GnssSpartnConfiguration_NETWORK - LBAND = _mscl.GnssSpartnConfiguration_LBAND - - def __init__(self): - _mscl.GnssSpartnConfiguration_swiginit(self, _mscl.new_GnssSpartnConfiguration()) - - def enable(self, enable): - return _mscl.GnssSpartnConfiguration_enable(self, enable) - - def enabled(self): - return _mscl.GnssSpartnConfiguration_enabled(self) - - def type(self, *args): - return _mscl.GnssSpartnConfiguration_type(self, *args) - - def currentKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyTow(self, *args) - - def currentKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyWeek(self, *args) - - def currentKey(self, *args): - return _mscl.GnssSpartnConfiguration_currentKey(self, *args) - - def nextKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyTow(self, *args) - - def nextKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyWeek(self, *args) - - def nextKey(self, *args): - return _mscl.GnssSpartnConfiguration_nextKey(self, *args) - __swig_destroy__ = _mscl.delete_GnssSpartnConfiguration - -# Register GnssSpartnConfiguration in _mscl: -_mscl.GnssSpartnConfiguration_swigregister(GnssSpartnConfiguration) - -class PositionReferenceConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - autoConfig = property(_mscl.PositionReferenceConfiguration_autoConfig_get, _mscl.PositionReferenceConfiguration_autoConfig_set) - position = property(_mscl.PositionReferenceConfiguration_position_get, _mscl.PositionReferenceConfiguration_position_set) - - def __init__(self): - _mscl.PositionReferenceConfiguration_swiginit(self, _mscl.new_PositionReferenceConfiguration()) - __swig_destroy__ = _mscl.delete_PositionReferenceConfiguration - -# Register PositionReferenceConfiguration in _mscl: -_mscl.PositionReferenceConfiguration_swigregister(PositionReferenceConfiguration) - -class AntennaLeverArmCalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enabled = property(_mscl.AntennaLeverArmCalConfiguration_enabled_get, _mscl.AntennaLeverArmCalConfiguration_enabled_set) - maxOffsetError = property(_mscl.AntennaLeverArmCalConfiguration_maxOffsetError_get, _mscl.AntennaLeverArmCalConfiguration_maxOffsetError_set) - - def __init__(self): - _mscl.AntennaLeverArmCalConfiguration_swiginit(self, _mscl.new_AntennaLeverArmCalConfiguration()) - __swig_destroy__ = _mscl.delete_AntennaLeverArmCalConfiguration - -# Register AntennaLeverArmCalConfiguration in _mscl: -_mscl.AntennaLeverArmCalConfiguration_swigregister(AntennaLeverArmCalConfiguration) - -class OdometerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.OdometerConfiguration_DISABLED - SINGLE = _mscl.OdometerConfiguration_SINGLE - QUADRATURE = _mscl.OdometerConfiguration_QUADRATURE - - def __init__(self): - _mscl.OdometerConfiguration_swiginit(self, _mscl.new_OdometerConfiguration()) - - def mode(self, *args): - return _mscl.OdometerConfiguration_mode(self, *args) - - def uncertainty(self, *args): - return _mscl.OdometerConfiguration_uncertainty(self, *args) - - def scaling(self, *args): - return _mscl.OdometerConfiguration_scaling(self, *args) - __swig_destroy__ = _mscl.delete_OdometerConfiguration - -# Register OdometerConfiguration in _mscl: -_mscl.OdometerConfiguration_swigregister(OdometerConfiguration) - -class GpioConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - UNUSED_FEATURE = _mscl.GpioConfiguration_UNUSED_FEATURE - GPIO_FEATURE = _mscl.GpioConfiguration_GPIO_FEATURE - PPS_FEATURE = _mscl.GpioConfiguration_PPS_FEATURE - ENCODER_FEATURE = _mscl.GpioConfiguration_ENCODER_FEATURE - EVENT_TIMESTAMP_FEATURE = _mscl.GpioConfiguration_EVENT_TIMESTAMP_FEATURE - UART_FEATURE = _mscl.GpioConfiguration_UART_FEATURE - GPIO_UNUSED = _mscl.GpioConfiguration_GPIO_UNUSED - GPIO_INPUT = _mscl.GpioConfiguration_GPIO_INPUT - GPIO_OUTPUT_LOW = _mscl.GpioConfiguration_GPIO_OUTPUT_LOW - GPIO_OUTPUT_HIGH = _mscl.GpioConfiguration_GPIO_OUTPUT_HIGH - PPS_UNUSED = _mscl.GpioConfiguration_PPS_UNUSED - PPS_INPUT = _mscl.GpioConfiguration_PPS_INPUT - PPS_OUTPUT = _mscl.GpioConfiguration_PPS_OUTPUT - ENCODER_UNUSED = _mscl.GpioConfiguration_ENCODER_UNUSED - ENCODER_A = _mscl.GpioConfiguration_ENCODER_A - ENCODER_B = _mscl.GpioConfiguration_ENCODER_B - TIMESTAMP_UNUSED = _mscl.GpioConfiguration_TIMESTAMP_UNUSED - TIMESTAMP_RISING = _mscl.GpioConfiguration_TIMESTAMP_RISING - TIMESTAMP_FALLING = _mscl.GpioConfiguration_TIMESTAMP_FALLING - TIMESTAMP_EITHER = _mscl.GpioConfiguration_TIMESTAMP_EITHER - UART_UNUSED = _mscl.GpioConfiguration_UART_UNUSED - UART_PORT2_TX = _mscl.GpioConfiguration_UART_PORT2_TX - UART_PORT2_RX = _mscl.GpioConfiguration_UART_PORT2_RX - UART_PORT3_TX = _mscl.GpioConfiguration_UART_PORT3_TX - UART_PORT3_RX = _mscl.GpioConfiguration_UART_PORT3_RX - NONE = _mscl.GpioConfiguration_NONE - OPEN_DRAIN = _mscl.GpioConfiguration_OPEN_DRAIN - PULLDOWN = _mscl.GpioConfiguration_PULLDOWN - PULLUP = _mscl.GpioConfiguration_PULLUP - pinMode = property(_mscl.GpioConfiguration_pinMode_get, _mscl.GpioConfiguration_pinMode_set) - pin = property(_mscl.GpioConfiguration_pin_get, _mscl.GpioConfiguration_pin_set) - feature = property(_mscl.GpioConfiguration_feature_get, _mscl.GpioConfiguration_feature_set) - behavior = property(_mscl.GpioConfiguration_behavior_get, _mscl.GpioConfiguration_behavior_set) - - def pinModeValue(self, *args): - return _mscl.GpioConfiguration_pinModeValue(self, *args) - - def __init__(self): - _mscl.GpioConfiguration_swiginit(self, _mscl.new_GpioConfiguration()) - __swig_destroy__ = _mscl.delete_GpioConfiguration - -# Register GpioConfiguration in _mscl: -_mscl.GpioConfiguration_swigregister(GpioConfiguration) - -DISABLED = _mscl.DISABLED -ENABLED = _mscl.ENABLED -TEST = _mscl.TEST -TEST_PULSE = _mscl.TEST_PULSE -class EventTriggerGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventTriggerGpioParameter_DISABLED - WHILE_HIGH = _mscl.EventTriggerGpioParameter_WHILE_HIGH - WHILE_LOW = _mscl.EventTriggerGpioParameter_WHILE_LOW - EDGE = _mscl.EventTriggerGpioParameter_EDGE - pin = property(_mscl.EventTriggerGpioParameter_pin_get, _mscl.EventTriggerGpioParameter_pin_set) - mode = property(_mscl.EventTriggerGpioParameter_mode_get, _mscl.EventTriggerGpioParameter_mode_set) - - def __init__(self): - _mscl.EventTriggerGpioParameter_swiginit(self, _mscl.new_EventTriggerGpioParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerGpioParameter - -# Register EventTriggerGpioParameter in _mscl: -_mscl.EventTriggerGpioParameter_swigregister(EventTriggerGpioParameter) - -class EventTriggerThresholdParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - WINDOW_TYPE = _mscl.EventTriggerThresholdParameter_WINDOW_TYPE - INTERVAL_TYPE = _mscl.EventTriggerThresholdParameter_INTERVAL_TYPE - type = property(_mscl.EventTriggerThresholdParameter_type_get, _mscl.EventTriggerThresholdParameter_type_set) - lowThreshold = property(_mscl.EventTriggerThresholdParameter_lowThreshold_get, _mscl.EventTriggerThresholdParameter_lowThreshold_set) - highThreshold = property(_mscl.EventTriggerThresholdParameter_highThreshold_get, _mscl.EventTriggerThresholdParameter_highThreshold_set) - - def channel(self, *args): - return _mscl.EventTriggerThresholdParameter_channel(self, *args) - - def channelField(self): - return _mscl.EventTriggerThresholdParameter_channelField(self) - - def channelQualifier(self): - return _mscl.EventTriggerThresholdParameter_channelQualifier(self) - - def channelIndex(self): - return _mscl.EventTriggerThresholdParameter_channelIndex(self) - - def __init__(self): - _mscl.EventTriggerThresholdParameter_swiginit(self, _mscl.new_EventTriggerThresholdParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerThresholdParameter - -# Register EventTriggerThresholdParameter in _mscl: -_mscl.EventTriggerThresholdParameter_swigregister(EventTriggerThresholdParameter) - -class EventTriggerCombinationParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_INPUT_TRIGGERS = _mscl.EventTriggerCombinationParameter_MAX_INPUT_TRIGGERS - LOGIC_NEVER = _mscl.EventTriggerCombinationParameter_LOGIC_NEVER - LOGIC_ALWAYS = _mscl.EventTriggerCombinationParameter_LOGIC_ALWAYS - LOGIC_NONE = _mscl.EventTriggerCombinationParameter_LOGIC_NONE - LOGIC_OR = _mscl.EventTriggerCombinationParameter_LOGIC_OR - LOGIC_NAND = _mscl.EventTriggerCombinationParameter_LOGIC_NAND - LOGIC_XOR_ONE = _mscl.EventTriggerCombinationParameter_LOGIC_XOR_ONE - LOGIC_ONLY_A = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_A - LOGIC_ONLY_B = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_B - LOGIC_ONLY_C = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_C - LOGIC_ONLY_D = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_D - LOGIC_AND_AB = _mscl.EventTriggerCombinationParameter_LOGIC_AND_AB - LOGIC_AB_OR_C = _mscl.EventTriggerCombinationParameter_LOGIC_AB_OR_C - LOGIC_AND = _mscl.EventTriggerCombinationParameter_LOGIC_AND - logicTable = property(_mscl.EventTriggerCombinationParameter_logicTable_get, _mscl.EventTriggerCombinationParameter_logicTable_set) - inputTriggers = property(_mscl.EventTriggerCombinationParameter_inputTriggers_get, _mscl.EventTriggerCombinationParameter_inputTriggers_set) - - def __init__(self): - _mscl.EventTriggerCombinationParameter_swiginit(self, _mscl.new_EventTriggerCombinationParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerCombinationParameter - -# Register EventTriggerCombinationParameter in _mscl: -_mscl.EventTriggerCombinationParameter_swigregister(EventTriggerCombinationParameter) - -class EventTriggerParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerParameters_swiginit(self, _mscl.new_EventTriggerParameters()) - gpio = property(_mscl.EventTriggerParameters_gpio_get, _mscl.EventTriggerParameters_gpio_set) - threshold = property(_mscl.EventTriggerParameters_threshold_get, _mscl.EventTriggerParameters_threshold_set) - combination = property(_mscl.EventTriggerParameters_combination_get, _mscl.EventTriggerParameters_combination_set) - __swig_destroy__ = _mscl.delete_EventTriggerParameters - -# Register EventTriggerParameters in _mscl: -_mscl.EventTriggerParameters_swigregister(EventTriggerParameters) - -class EventTriggerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventTriggerConfiguration_NONE - GPIO_TRIGGER = _mscl.EventTriggerConfiguration_GPIO_TRIGGER - THRESHOLD_TRIGGER = _mscl.EventTriggerConfiguration_THRESHOLD_TRIGGER - COMBINATION_TRIGGER = _mscl.EventTriggerConfiguration_COMBINATION_TRIGGER - instance = property(_mscl.EventTriggerConfiguration_instance_get, _mscl.EventTriggerConfiguration_instance_set) - trigger = property(_mscl.EventTriggerConfiguration_trigger_get, _mscl.EventTriggerConfiguration_trigger_set) - parameters = property(_mscl.EventTriggerConfiguration_parameters_get, _mscl.EventTriggerConfiguration_parameters_set) - - def __init__(self): - _mscl.EventTriggerConfiguration_swiginit(self, _mscl.new_EventTriggerConfiguration()) - __swig_destroy__ = _mscl.delete_EventTriggerConfiguration - -# Register EventTriggerConfiguration in _mscl: -_mscl.EventTriggerConfiguration_swigregister(EventTriggerConfiguration) - -class EventActionGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventActionGpioParameter_DISABLED - ACTIVE_HIGH = _mscl.EventActionGpioParameter_ACTIVE_HIGH - ACTIVE_LOW = _mscl.EventActionGpioParameter_ACTIVE_LOW - ONESHOT_HIGH = _mscl.EventActionGpioParameter_ONESHOT_HIGH - ONESHOT_LOW = _mscl.EventActionGpioParameter_ONESHOT_LOW - TOGGLE = _mscl.EventActionGpioParameter_TOGGLE - pin = property(_mscl.EventActionGpioParameter_pin_get, _mscl.EventActionGpioParameter_pin_set) - mode = property(_mscl.EventActionGpioParameter_mode_get, _mscl.EventActionGpioParameter_mode_set) - - def __init__(self): - _mscl.EventActionGpioParameter_swiginit(self, _mscl.new_EventActionGpioParameter()) - __swig_destroy__ = _mscl.delete_EventActionGpioParameter - -# Register EventActionGpioParameter in _mscl: -_mscl.EventActionGpioParameter_swigregister(EventActionGpioParameter) - -class EventActionMessageParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_DESCRIPTORS = _mscl.EventActionMessageParameter_MAX_DESCRIPTORS - sampleRate = property(_mscl.EventActionMessageParameter_sampleRate_get, _mscl.EventActionMessageParameter_sampleRate_set) - - def dataClass(self): - return _mscl.EventActionMessageParameter_dataClass(self) - - def setChannelFields(self, dataClass, fields): - return _mscl.EventActionMessageParameter_setChannelFields(self, dataClass, fields) - - def getChannelFields(self): - return _mscl.EventActionMessageParameter_getChannelFields(self) - - def __init__(self): - _mscl.EventActionMessageParameter_swiginit(self, _mscl.new_EventActionMessageParameter()) - __swig_destroy__ = _mscl.delete_EventActionMessageParameter - -# Register EventActionMessageParameter in _mscl: -_mscl.EventActionMessageParameter_swigregister(EventActionMessageParameter) - -class EventActionParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventActionParameters_swiginit(self, _mscl.new_EventActionParameters()) - gpio = property(_mscl.EventActionParameters_gpio_get, _mscl.EventActionParameters_gpio_set) - message = property(_mscl.EventActionParameters_message_get, _mscl.EventActionParameters_message_set) - __swig_destroy__ = _mscl.delete_EventActionParameters - -# Register EventActionParameters in _mscl: -_mscl.EventActionParameters_swigregister(EventActionParameters) - -class EventActionConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventActionConfiguration_NONE - GPIO = _mscl.EventActionConfiguration_GPIO - MESSAGE = _mscl.EventActionConfiguration_MESSAGE - instance = property(_mscl.EventActionConfiguration_instance_get, _mscl.EventActionConfiguration_instance_set) - trigger = property(_mscl.EventActionConfiguration_trigger_get, _mscl.EventActionConfiguration_trigger_set) - type = property(_mscl.EventActionConfiguration_type_get, _mscl.EventActionConfiguration_type_set) - parameters = property(_mscl.EventActionConfiguration_parameters_get, _mscl.EventActionConfiguration_parameters_set) - - def __init__(self): - _mscl.EventActionConfiguration_swiginit(self, _mscl.new_EventActionConfiguration()) - __swig_destroy__ = _mscl.delete_EventActionConfiguration - -# Register EventActionConfiguration in _mscl: -_mscl.EventActionConfiguration_swigregister(EventActionConfiguration) - -class EventTriggerInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTriggerInfo_swiginit(self, _mscl.new_EventTriggerInfo(*args)) - ACTIVE = _mscl.EventTriggerInfo_ACTIVE - ENABLED = _mscl.EventTriggerInfo_ENABLED - TEST = _mscl.EventTriggerInfo_TEST - type = property(_mscl.EventTriggerInfo_type_get, _mscl.EventTriggerInfo_type_set) - instanceId = property(_mscl.EventTriggerInfo_instanceId_get, _mscl.EventTriggerInfo_instanceId_set) - - def isActive(self): - return _mscl.EventTriggerInfo_isActive(self) - - def isEnabled(self): - return _mscl.EventTriggerInfo_isEnabled(self) - - def isTestMode(self): - return _mscl.EventTriggerInfo_isTestMode(self) - - def setStatus(self, value): - return _mscl.EventTriggerInfo_setStatus(self, value) - __swig_destroy__ = _mscl.delete_EventTriggerInfo - -# Register EventTriggerInfo in _mscl: -_mscl.EventTriggerInfo_swigregister(EventTriggerInfo) - -class EventActionInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventActionInfo_swiginit(self, _mscl.new_EventActionInfo(*args)) - type = property(_mscl.EventActionInfo_type_get, _mscl.EventActionInfo_type_set) - triggerId = property(_mscl.EventActionInfo_triggerId_get, _mscl.EventActionInfo_triggerId_set) - instanceId = property(_mscl.EventActionInfo_instanceId_get, _mscl.EventActionInfo_instanceId_set) - __swig_destroy__ = _mscl.delete_EventActionInfo - -# Register EventActionInfo in _mscl: -_mscl.EventActionInfo_swigregister(EventActionInfo) - -class MeasurementReferenceFrame(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MeasurementReferenceFrame_swiginit(self, _mscl.new_MeasurementReferenceFrame(*args)) - - def asMipFieldValues(self): - return _mscl.MeasurementReferenceFrame_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.MeasurementReferenceFrame_appendMipFieldValues(self, appendTo) - - def translation(self, *args): - return _mscl.MeasurementReferenceFrame_translation(self, *args) - - def rotation(self, *args): - return _mscl.MeasurementReferenceFrame_rotation(self, *args) - - def errorTrackingEnabled(self): - return _mscl.MeasurementReferenceFrame_errorTrackingEnabled(self) - - def enableErrorTracking(self, enable=True): - return _mscl.MeasurementReferenceFrame_enableErrorTracking(self, enable) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrame - -# Register MeasurementReferenceFrame in _mscl: -_mscl.MeasurementReferenceFrame_swigregister(MeasurementReferenceFrame) - -class MipChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipChannel_swiginit(self, _mscl.new_MipChannel(*args)) - - def channelField(self): - return _mscl.MipChannel_channelField(self) - - def sampleRate(self): - return _mscl.MipChannel_sampleRate(self) - - def rateDecimation(self, sampleRateBase): - return _mscl.MipChannel_rateDecimation(self, sampleRateBase) - __swig_destroy__ = _mscl.delete_MipChannel - -# Register MipChannel in _mscl: -_mscl.MipChannel_swigregister(MipChannel) - -class MipPacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MIP_ACK_NACK_ERROR_NONE = _mscl.MipPacket_MIP_ACK_NACK_ERROR_NONE - MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND - MIP_ACK_NACK_ERROR_CHECKSUM_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_CHECKSUM_INVALID - MIP_ACK_NACK_ERROR_PARAMETER_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_PARAMETER_INVALID - MIP_ACK_NACK_ERROR_COMMAND_FAILED = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_FAILED - MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT - MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET - - def __init__(self): - _mscl.MipPacket_swiginit(self, _mscl.new_MipPacket()) - - @staticmethod - def isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - - def descriptorSet(self): - return _mscl.MipPacket_descriptorSet(self) - - def payload(self): - return _mscl.MipPacket_payload(self) - __swig_destroy__ = _mscl.delete_MipPacket - -# Register MipPacket in _mscl: -_mscl.MipPacket_swigregister(MipPacket) - -def MipPacket_isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - -class MipDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def field(self): - return _mscl.MipDataPoint_field(self) - - def qualifier(self): - return _mscl.MipDataPoint_qualifier(self) - - def hasAddlIdentifiers(self): - return _mscl.MipDataPoint_hasAddlIdentifiers(self) - - def addlIdentifiers(self): - return _mscl.MipDataPoint_addlIdentifiers(self) - - def hasValidFlag(self): - return _mscl.MipDataPoint_hasValidFlag(self) - - def valid(self): - return _mscl.MipDataPoint_valid(self) - - def channelName(self, includeAddlIds=True, consolidatedFormat=False): - return _mscl.MipDataPoint_channelName(self, includeAddlIds, consolidatedFormat) - __swig_destroy__ = _mscl.delete_MipDataPoint - -# Register MipDataPoint in _mscl: -_mscl.MipDataPoint_swigregister(MipDataPoint) - -class ContinuousBIT(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def as_MipDataPoints(self): - return _mscl.ContinuousBIT_as_MipDataPoints(self) - - @staticmethod - def getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - - def data(self): - return _mscl.ContinuousBIT_data(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_bufferOverrun(self) - - def imuClockFault(self): - return _mscl.ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_pressureSelfTestFail(self) - - def filterTimingOverrun(self): - return _mscl.ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.ContinuousBIT_filterTimingUnderrun(self) - -# Register ContinuousBIT in _mscl: -_mscl.ContinuousBIT_swigregister(ContinuousBIT) - -def ContinuousBIT_getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - -class ContinuousBIT_System_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - SYSTEM_CLOCK_FAILURE = _mscl.ContinuousBIT_System_General_SYSTEM_CLOCK_FAILURE - POWER_FAULT = _mscl.ContinuousBIT_System_General_POWER_FAULT - FIRMWARE_FAULT = _mscl.ContinuousBIT_System_General_FIRMWARE_FAULT - TIMING_OVERLOAD = _mscl.ContinuousBIT_System_General_TIMING_OVERLOAD - BUFFER_OVERRUN = _mscl.ContinuousBIT_System_General_BUFFER_OVERRUN - - def flags(self): - return _mscl.ContinuousBIT_System_General_flags(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_System_General_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_System_General_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_System_General_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_System_General_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_System_General_bufferOverrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_General - -# Register ContinuousBIT_System_General in _mscl: -_mscl.ContinuousBIT_System_General_swigregister(ContinuousBIT_System_General) - -class ContinuousBIT_System_Process(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def flags(self): - return _mscl.ContinuousBIT_System_Process_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_Process - -# Register ContinuousBIT_System_Process in _mscl: -_mscl.ContinuousBIT_System_Process_swigregister(ContinuousBIT_System_Process) - -class ContinuousBIT_System(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_System_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_System_GENERAL_FLAGS - PROCESS_FLAGS = _mscl.ContinuousBIT_System_PROCESS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_System_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System - -# Register ContinuousBIT_System in _mscl: -_mscl.ContinuousBIT_System_swigregister(ContinuousBIT_System) - -class ContinuousBIT_IMU_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - CLOCK_FAULT = _mscl.ContinuousBIT_IMU_General_CLOCK_FAULT - COMMUNICATION_FAULT = _mscl.ContinuousBIT_IMU_General_COMMUNICATION_FAULT - TIMING_OVERRUN = _mscl.ContinuousBIT_IMU_General_TIMING_OVERRUN - CALIBRATION_ERROR_ACCEL = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_ACCEL - CALIBRATION_ERROR_GYRO = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_GYRO - CALIBRATION_ERROR_MAG = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_MAG - - def flags(self): - return _mscl.ContinuousBIT_IMU_General_flags(self) - - def clockFault(self): - return _mscl.ContinuousBIT_IMU_General_clockFault(self) - - def communicationFault(self): - return _mscl.ContinuousBIT_IMU_General_communicationFault(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_IMU_General_timingOverrun(self) - - def calibrationErrorAccel(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorAccel(self) - - def calibrationErrorGyro(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorGyro(self) - - def calibrationErrorMag(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorMag(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_General - -# Register ContinuousBIT_IMU_General in _mscl: -_mscl.ContinuousBIT_IMU_General_swigregister(ContinuousBIT_IMU_General) - -class ContinuousBIT_IMU_Sensors(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - ACCEL_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_GENERAL_FAULT - ACCEL_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_OVERRANGE - ACCEL_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_SELF_TEST_FAIL - GYRO_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_GYRO_GENERAL_FAULT - GYRO_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_GYRO_OVERRANGE - GYRO_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_GYRO_SELF_TEST_FAIL - MAG_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_MAG_GENERAL_FAULT - MAG_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_MAG_OVERRANGE - MAG_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_MAG_SELF_TEST_FAIL - PRESSURE_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_GENERAL_FAULT - PRESSURE_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_OVERRANGE - PRESSURE_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_SELF_TEST_FAIL - - def flags(self): - return _mscl.ContinuousBIT_IMU_Sensors_flags(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureSelfTestFail(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_Sensors - -# Register ContinuousBIT_IMU_Sensors in _mscl: -_mscl.ContinuousBIT_IMU_Sensors_swigregister(ContinuousBIT_IMU_Sensors) - -class ContinuousBIT_IMU(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_IMU_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_IMU_GENERAL_FLAGS - SENSORS_FLAGS = _mscl.ContinuousBIT_IMU_SENSORS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_IMU_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU - -# Register ContinuousBIT_IMU in _mscl: -_mscl.ContinuousBIT_IMU_swigregister(ContinuousBIT_IMU) - -class ContinuousBIT_Filter_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - TIMING_OVERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_OVERRUN - TIMING_UNDERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_UNDERRUN - - def flags(self): - return _mscl.ContinuousBIT_Filter_General_flags(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_Filter_General_timingOverrun(self) - - def timingUnderrun(self): - return _mscl.ContinuousBIT_Filter_General_timingUnderrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter_General - -# Register ContinuousBIT_Filter_General in _mscl: -_mscl.ContinuousBIT_Filter_General_swigregister(ContinuousBIT_Filter_General) - -class ContinuousBIT_Filter(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_Filter_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_Filter_GENERAL_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_Filter_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter - -# Register ContinuousBIT_Filter in _mscl: -_mscl.ContinuousBIT_Filter_swigregister(ContinuousBIT_Filter) - -class CV7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_General_swiginit(self, _mscl.new_CV7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_General - -# Register CV7ContinuousBIT_System_General in _mscl: -_mscl.CV7ContinuousBIT_System_General_swigregister(CV7ContinuousBIT_System_General) - -class CV7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_Process_swiginit(self, _mscl.new_CV7ContinuousBIT_System_Process(*args)) - IMU_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_IMU_PROCESS_FAULT - IMU_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_IMU_RATE_MISMATCH - IMU_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_IMU_DROPPED_DATA - IMU_STUCK = _mscl.CV7ContinuousBIT_System_Process_IMU_STUCK - FILTER_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_FILTER_PROCESS_FAULT - FILTER_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_FILTER_DROPPED_DATA - FILTER_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_FILTER_RATE_MISMATCH - FILTER_STUCK = _mscl.CV7ContinuousBIT_System_Process_FILTER_STUCK - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_filterStuck(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_Process - -# Register CV7ContinuousBIT_System_Process in _mscl: -_mscl.CV7ContinuousBIT_System_Process_swigregister(CV7ContinuousBIT_System_Process) - -class CV7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_swiginit(self, _mscl.new_CV7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.CV7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System - -# Register CV7ContinuousBIT_System in _mscl: -_mscl.CV7ContinuousBIT_System_swigregister(CV7ContinuousBIT_System) - -class CV7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_General - -# Register CV7ContinuousBIT_IMU_General in _mscl: -_mscl.CV7ContinuousBIT_IMU_General_swigregister(CV7ContinuousBIT_IMU_General) - -class CV7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_Sensors - -# Register CV7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.CV7ContinuousBIT_IMU_Sensors_swigregister(CV7ContinuousBIT_IMU_Sensors) - -class CV7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU(*args)) - FACTORY_BITS_INVALID = _mscl.CV7ContinuousBIT_IMU_FACTORY_BITS_INVALID - - def general(self): - return _mscl.CV7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.CV7ContinuousBIT_IMU_sensors(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_IMU_factoryBitsInvalid(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU - -# Register CV7ContinuousBIT_IMU in _mscl: -_mscl.CV7ContinuousBIT_IMU_swigregister(CV7ContinuousBIT_IMU) - -class CV7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter_General(*args)) - FAULT = _mscl.CV7ContinuousBIT_Filter_General_FAULT - - def fault(self): - return _mscl.CV7ContinuousBIT_Filter_General_fault(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter_General - -# Register CV7ContinuousBIT_Filter_General in _mscl: -_mscl.CV7ContinuousBIT_Filter_General_swigregister(CV7ContinuousBIT_Filter_General) - -class CV7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter - -# Register CV7ContinuousBIT_Filter in _mscl: -_mscl.CV7ContinuousBIT_Filter_swigregister(CV7ContinuousBIT_Filter) - -class CV7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.CV7ContinuousBIT_swiginit(self, _mscl.new_CV7ContinuousBIT(bytes)) - - def system(self): - return _mscl.CV7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.CV7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.CV7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.CV7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.CV7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.CV7ContinuousBIT_bufferOverrun(self) - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_filterStuck(self) - - def imu(self): - return _mscl.CV7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.CV7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.CV7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.CV7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.CV7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.CV7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.CV7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.CV7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.CV7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.CV7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.CV7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.CV7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.CV7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.CV7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.CV7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.CV7ContinuousBIT_pressureSelfTestFail(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_factoryBitsInvalid(self) - - def filter(self): - return _mscl.CV7ContinuousBIT_filter(self) - - def filterFault(self): - return _mscl.CV7ContinuousBIT_filterFault(self) - - def filterTimingOverrun(self): - return _mscl.CV7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.CV7ContinuousBIT_filterTimingUnderrun(self) - - def as_MipDataPoints(self): - return _mscl.CV7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT - -# Register CV7ContinuousBIT in _mscl: -_mscl.CV7ContinuousBIT_swigregister(CV7ContinuousBIT) - -class GQ7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_General - -# Register GQ7ContinuousBIT_System_General in _mscl: -_mscl.GQ7ContinuousBIT_System_General_swigregister(GQ7ContinuousBIT_System_General) - -class GQ7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_Process_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_Process(*args)) - IMU_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_CONTROL_LINE_FAULT - IMU_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_COMMAND_RESPONSE_FAULT - IMU_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_SPI_TRANSFER_FAULT - IMU_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_DATA_FRAME_FAULT - FILTER_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_CONTROL_LINE_FAULT - FILTER_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_COMMAND_RESPONSE_FAULT - FILTER_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_SPI_TRANSFER_FAULT - FILTER_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_DATA_FRAME_FAULT - GNSS_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_CONTROL_LINE_FAULT - GNSS_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_COMMAND_RESPONSE_FAULT - GNSS_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_SPI_TRANSFER_FAULT - GNSS_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_DATA_FRAME_FAULT - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssDataFrameFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_Process - -# Register GQ7ContinuousBIT_System_Process in _mscl: -_mscl.GQ7ContinuousBIT_System_Process_swigregister(GQ7ContinuousBIT_System_Process) - -class GQ7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_swiginit(self, _mscl.new_GQ7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.GQ7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System - -# Register GQ7ContinuousBIT_System in _mscl: -_mscl.GQ7ContinuousBIT_System_swigregister(GQ7ContinuousBIT_System) - -class GQ7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_General - -# Register GQ7ContinuousBIT_IMU_General in _mscl: -_mscl.GQ7ContinuousBIT_IMU_General_swigregister(GQ7ContinuousBIT_IMU_General) - -class GQ7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_Sensors - -# Register GQ7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.GQ7ContinuousBIT_IMU_Sensors_swigregister(GQ7ContinuousBIT_IMU_Sensors) - -class GQ7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.GQ7ContinuousBIT_IMU_sensors(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU - -# Register GQ7ContinuousBIT_IMU in _mscl: -_mscl.GQ7ContinuousBIT_IMU_swigregister(GQ7ContinuousBIT_IMU) - -class GQ7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_HARDWARE_FAULT - COMMUNICATION_ERROR_IMU_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_IMU_SPI - COMMUNICATION_ERROR_GNSS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_GNSS_SPI - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_COMMS_UART = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_UART - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationError(self) - - def communicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorImuSpi(self) - - def communicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorGnssSpi(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsSpi(self) - - def communicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsUart(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter_General - -# Register GQ7ContinuousBIT_Filter_General in _mscl: -_mscl.GQ7ContinuousBIT_Filter_General_swigregister(GQ7ContinuousBIT_Filter_General) - -class GQ7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter - -# Register GQ7ContinuousBIT_Filter in _mscl: -_mscl.GQ7ContinuousBIT_Filter_swigregister(GQ7ContinuousBIT_Filter) - -class GQ7ContinuousBIT_GNSS_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_HARDWARE_FAULT - COMMUNICATION_ERROR_COMMS_SERIAL = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SERIAL - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_NAV_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_NAV_SPI - GPS_TIME_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_GPS_TIME_FAULT - TIMING_OVERRUN = _mscl.GQ7ContinuousBIT_GNSS_General_TIMING_OVERRUN - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_flags(self) - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationError(self) - - def communicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSerial(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSpi(self) - - def communicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_gpsTimeFault(self) - - def timingOverrun(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_timingOverrun(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_General - -# Register GQ7ContinuousBIT_GNSS_General in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_General_swigregister(GQ7ContinuousBIT_GNSS_General) - -class GQ7ContinuousBIT_GNSS_Receivers(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_Receivers_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_Receivers(*args)) - POWER_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_1 - FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_1 - SHORTED_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_1 - OPEN_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_1 - SOLUTION_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_1 - POWER_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_2 - FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_2 - SHORTED_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_2 - OPEN_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_2 - SOLUTION_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_2 - RTCM_COMMUNICATION_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTCM_COMMUNICATION_FAULT - RTK_DONGLE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTK_DONGLE_FAULT - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_flags(self) - - def powerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver1(self) - - def faultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver1(self) - - def shortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna1(self) - - def openAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna1(self) - - def solutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver1(self) - - def powerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver2(self) - - def faultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver2(self) - - def shortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna2(self) - - def openAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna2(self) - - def solutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtkDongleFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_Receivers - -# Register GQ7ContinuousBIT_GNSS_Receivers in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_Receivers_swigregister(GQ7ContinuousBIT_GNSS_Receivers) - -class GQ7ContinuousBIT_GNSS(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS(*args)) - RESPONSE_OFFSET = _mscl.GQ7ContinuousBIT_GNSS_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_GENERAL_FLAGS - RECEIVERS_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_RECEIVERS_FLAGS - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_flags(self) - - def general(self): - return _mscl.GQ7ContinuousBIT_GNSS_general(self) - - def receivers(self): - return _mscl.GQ7ContinuousBIT_GNSS_receivers(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS - -# Register GQ7ContinuousBIT_GNSS in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_swigregister(GQ7ContinuousBIT_GNSS) - -class GQ7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.GQ7ContinuousBIT_swiginit(self, _mscl.new_GQ7ContinuousBIT(bytes)) - - def system(self): - return _mscl.GQ7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.GQ7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.GQ7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.GQ7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.GQ7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.GQ7ContinuousBIT_bufferOverrun(self) - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_gnssDataFrameFault(self) - - def imu(self): - return _mscl.GQ7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.GQ7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.GQ7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.GQ7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.GQ7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.GQ7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.GQ7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.GQ7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.GQ7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.GQ7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_pressureSelfTestFail(self) - - def filter(self): - return _mscl.GQ7ContinuousBIT_filter(self) - - def filterClockFault(self): - return _mscl.GQ7ContinuousBIT_filterClockFault(self) - - def filterHardwareFault(self): - return _mscl.GQ7ContinuousBIT_filterHardwareFault(self) - - def filterTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingUnderrun(self) - - def filterCommunicationError(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationError(self) - - def filterCommunicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorImuSpi(self) - - def filterCommunicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorGnssSpi(self) - - def filterCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsSpi(self) - - def filterCommunicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsUart(self) - - def gnss(self): - return _mscl.GQ7ContinuousBIT_gnss(self) - - def gnssClockFault(self): - return _mscl.GQ7ContinuousBIT_gnssClockFault(self) - - def gnssHardwareFault(self): - return _mscl.GQ7ContinuousBIT_gnssHardwareFault(self) - - def gnssCommunicationError(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationError(self) - - def gnssCommunicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSerial(self) - - def gnssCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSpi(self) - - def gnssCommunicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_gpsTimeFault(self) - - def gnssTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_gnssTimingOverrun(self) - - def gnssPowerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver1(self) - - def gnssFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver1(self) - - def gnssShortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna1(self) - - def gnssOpenAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna1(self) - - def gnssSolutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver1(self) - - def gnssPowerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver2(self) - - def gnssFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver2(self) - - def gnssShortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna2(self) - - def gnssOpenAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna2(self) - - def gnssSolutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_rtkDongleFault(self) - - def as_MipDataPoints(self): - return _mscl.GQ7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT - -# Register GQ7ContinuousBIT in _mscl: -_mscl.GQ7ContinuousBIT_swigregister(GQ7ContinuousBIT) - -class MipSharedDataFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EVENT_SOURCE_NONE = _mscl.MipSharedDataFields_EVENT_SOURCE_NONE - EVENT_SOURCE_UNKNOWN = _mscl.MipSharedDataFields_EVENT_SOURCE_UNKNOWN - - def __init__(self): - _mscl.MipSharedDataFields_swiginit(self, _mscl.new_MipSharedDataFields()) - - def hasEventSource(self): - return _mscl.MipSharedDataFields_hasEventSource(self) - - def eventSource(self): - return _mscl.MipSharedDataFields_eventSource(self) - - def hasTicks(self): - return _mscl.MipSharedDataFields_hasTicks(self) - - def ticks(self): - return _mscl.MipSharedDataFields_ticks(self) - - def hasDeltaTicks(self): - return _mscl.MipSharedDataFields_hasDeltaTicks(self) - - def deltaTicks(self): - return _mscl.MipSharedDataFields_deltaTicks(self) - - def hasGpsTimestamp(self): - return _mscl.MipSharedDataFields_hasGpsTimestamp(self) - - def gpsTimestamp(self): - return _mscl.MipSharedDataFields_gpsTimestamp(self) - - def gpsTimestampValid(self): - return _mscl.MipSharedDataFields_gpsTimestampValid(self) - - def hasDeltaTime(self): - return _mscl.MipSharedDataFields_hasDeltaTime(self) - - def deltaTime(self): - return _mscl.MipSharedDataFields_deltaTime(self) - - def hasReferenceTime(self): - return _mscl.MipSharedDataFields_hasReferenceTime(self) - - def referenceTime(self): - return _mscl.MipSharedDataFields_referenceTime(self) - - def hasDeltaReferenceTime(self): - return _mscl.MipSharedDataFields_hasDeltaReferenceTime(self) - - def deltaReferenceTime(self): - return _mscl.MipSharedDataFields_deltaReferenceTime(self) - - def hasExternalTimestamp(self): - return _mscl.MipSharedDataFields_hasExternalTimestamp(self) - - def externalTimestamp(self): - return _mscl.MipSharedDataFields_externalTimestamp(self) - - def externalTimestampValid(self): - return _mscl.MipSharedDataFields_externalTimestampValid(self) - - def hasDeltaExternalTime(self): - return _mscl.MipSharedDataFields_hasDeltaExternalTime(self) - - def deltaExternalTime(self): - return _mscl.MipSharedDataFields_deltaExternalTime(self) - - def deltaExternalTimeValid(self): - return _mscl.MipSharedDataFields_deltaExternalTimeValid(self) - - def get(self, *args): - return _mscl.MipSharedDataFields_get(self, *args) - __swig_destroy__ = _mscl.delete_MipSharedDataFields - -# Register MipSharedDataFields in _mscl: -_mscl.MipSharedDataFields_swigregister(MipSharedDataFields) - -class MipDataPacket(MipPacket): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipDataPacket_swiginit(self, _mscl.new_MipDataPacket(*args)) - - def data(self): - return _mscl.MipDataPacket_data(self) - - def shared(self): - return _mscl.MipDataPacket_shared(self) - - def collectedTimestamp(self): - return _mscl.MipDataPacket_collectedTimestamp(self) - - def deviceTimestamp(self): - return _mscl.MipDataPacket_deviceTimestamp(self) - - def hasDeviceTime(self): - return _mscl.MipDataPacket_hasDeviceTime(self) - - def deviceTimeValid(self): - return _mscl.MipDataPacket_deviceTimeValid(self) - - def deviceTimeFlags(self): - return _mscl.MipDataPacket_deviceTimeFlags(self) - __swig_destroy__ = _mscl.delete_MipDataPacket - -# Register MipDataPacket in _mscl: -_mscl.MipDataPacket_swigregister(MipDataPacket) - -class RawBytePacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INVALID_PACKET = _mscl.RawBytePacket_INVALID_PACKET - DATA_PACKET = _mscl.RawBytePacket_DATA_PACKET - COMMAND_PACKET = _mscl.RawBytePacket_COMMAND_PACKET - NO_PACKET_FOUND = _mscl.RawBytePacket_NO_PACKET_FOUND - FROM_READ = _mscl.RawBytePacket_FROM_READ - FROM_SEND = _mscl.RawBytePacket_FROM_SEND - - def __init__(self): - _mscl.RawBytePacket_swiginit(self, _mscl.new_RawBytePacket()) - - def type(self, *args): - return _mscl.RawBytePacket_type(self, *args) - - def source(self, *args): - return _mscl.RawBytePacket_source(self, *args) - - def payload(self, *args): - return _mscl.RawBytePacket_payload(self, *args) - __swig_destroy__ = _mscl.delete_RawBytePacket - -# Register RawBytePacket in _mscl: -_mscl.RawBytePacket_swigregister(RawBytePacket) - -class MipNodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_MipNodeFeatures - - @staticmethod - def isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - - def supportsCategory(self, dataClass): - return _mscl.MipNodeFeatures_supportsCategory(self, dataClass) - - def supportsCommand(self, commandId): - return _mscl.MipNodeFeatures_supportsCommand(self, commandId) - - def supportedCommands(self): - return _mscl.MipNodeFeatures_supportedCommands(self) - - def supportsChannelField(self, fieldId): - return _mscl.MipNodeFeatures_supportsChannelField(self, fieldId) - - def filterSupportedChannelFields(self, fields): - return _mscl.MipNodeFeatures_filterSupportedChannelFields(self, fields) - - def supportedChannelFields(self, *args): - return _mscl.MipNodeFeatures_supportedChannelFields(self, *args) - - def supportedSampleRates(self, dataClass): - return _mscl.MipNodeFeatures_supportedSampleRates(self, dataClass) - - def baseDataRate(self, dataClass): - return _mscl.MipNodeFeatures_baseDataRate(self, dataClass) - - def gnssReceiverInfo(self): - return _mscl.MipNodeFeatures_gnssReceiverInfo(self) - - def supportedGnssSources(self): - return _mscl.MipNodeFeatures_supportedGnssSources(self) - - def supportedSensorRanges(self, *args): - return _mscl.MipNodeFeatures_supportedSensorRanges(self, *args) - - def getCommPortInfo(self): - return _mscl.MipNodeFeatures_getCommPortInfo(self) - - def useLegacyIdsForEnableDataStream(self): - return _mscl.MipNodeFeatures_useLegacyIdsForEnableDataStream(self) - - def supportedHeadingUpdateOptions(self): - return _mscl.MipNodeFeatures_supportedHeadingUpdateOptions(self) - - def supportedHeadingAlignmentMethods(self): - return _mscl.MipNodeFeatures_supportedHeadingAlignmentMethods(self) - - def supportedStatusSelectors(self): - return _mscl.MipNodeFeatures_supportedStatusSelectors(self) - - def supportedEstimationControlOptions(self): - return _mscl.MipNodeFeatures_supportedEstimationControlOptions(self) - - def supportedVehicleModeTypes(self): - return _mscl.MipNodeFeatures_supportedVehicleModeTypes(self) - - def supportedAdaptiveMeasurementModes(self): - return _mscl.MipNodeFeatures_supportedAdaptiveMeasurementModes(self) - - def supportedAdaptiveFilterLevels(self): - return _mscl.MipNodeFeatures_supportedAdaptiveFilterLevels(self) - - def supportedAidingMeasurementOptions(self): - return _mscl.MipNodeFeatures_supportedAidingMeasurementOptions(self) - - def supportedPpsSourceOptions(self): - return _mscl.MipNodeFeatures_supportedPpsSourceOptions(self) - - def supportedGpioPins(self): - return _mscl.MipNodeFeatures_supportedGpioPins(self) - - def supportedGpioPinModes(self, feature, behavior): - return _mscl.MipNodeFeatures_supportedGpioPinModes(self, feature, behavior) - - def supportedGpioBehaviors(self, feature, pin): - return _mscl.MipNodeFeatures_supportedGpioBehaviors(self, feature, pin) - - def supportedGpioFeatures(self, pin): - return _mscl.MipNodeFeatures_supportedGpioFeatures(self, pin) - - def supportedGpioConfigurations(self): - return _mscl.MipNodeFeatures_supportedGpioConfigurations(self) - - def supportedGnssSignalConfigurations(self): - return _mscl.MipNodeFeatures_supportedGnssSignalConfigurations(self) - - def supportedDeclinationSources(self): - return _mscl.MipNodeFeatures_supportedDeclinationSources(self) - - def supportedInclinationSources(self): - return _mscl.MipNodeFeatures_supportedInclinationSources(self) - - def supportedMagneticMagnitudeSources(self): - return _mscl.MipNodeFeatures_supportedMagneticMagnitudeSources(self) - - def supportedEventThresholdChannels(self): - return _mscl.MipNodeFeatures_supportedEventThresholdChannels(self) - - def supportedEventActionInfo(self): - return _mscl.MipNodeFeatures_supportedEventActionInfo(self) - - def supportedEventTriggerInfo(self): - return _mscl.MipNodeFeatures_supportedEventTriggerInfo(self) - - def supportsNorthCompensation(self): - return _mscl.MipNodeFeatures_supportsNorthCompensation(self) - - def supportedLowPassFilterChannelFields(self): - return _mscl.MipNodeFeatures_supportedLowPassFilterChannelFields(self) - - def maxMeasurementReferenceFrameId(self): - return _mscl.MipNodeFeatures_maxMeasurementReferenceFrameId(self) - -# Register MipNodeFeatures in _mscl: -_mscl.MipNodeFeatures_swigregister(MipNodeFeatures) - -def MipNodeFeatures_isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - -class MipNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.MipNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - def getConfigCommandBytes(self): - return _mscl.MipNode_getConfigCommandBytes(self) - - def sendCommandBytes(self, *args): - return _mscl.MipNode_sendCommandBytes(self, *args) - - @staticmethod - def deviceName(serial): - return _mscl.MipNode_deviceName(serial) - - def connection(self): - return _mscl.MipNode_connection(self) - - def features(self): - return _mscl.MipNode_features(self) - - def clearDeviceInfo(self): - return _mscl.MipNode_clearDeviceInfo(self) - - def lastCommunicationTime(self): - return _mscl.MipNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.MipNode_lastDeviceState(self) - - def setLastDeviceState(self, state): - return _mscl.MipNode_setLastDeviceState(self, state) - - def firmwareVersion(self): - return _mscl.MipNode_firmwareVersion(self) - - def model(self): - return _mscl.MipNode_model(self) - - def modelName(self): - return _mscl.MipNode_modelName(self) - - def modelNumber(self): - return _mscl.MipNode_modelNumber(self) - - def serialNumber(self): - return _mscl.MipNode_serialNumber(self) - - def lotNumber(self): - return _mscl.MipNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.MipNode_deviceOptions(self) - - def timeout(self, *args): - return _mscl.MipNode_timeout(self, *args) - - def name(self): - return _mscl.MipNode_name(self) - - def ping(self): - return _mscl.MipNode_ping(self) - - def setToIdle(self): - return _mscl.MipNode_setToIdle(self) - - def cyclePower(self): - return _mscl.MipNode_cyclePower(self) - - def resume(self): - return _mscl.MipNode_resume(self) - - def getCommunicationMode(self): - return _mscl.MipNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.MipNode_setCommunicationMode(self, communicationMode) - - def saveSettingsAsStartup(self, *args): - return _mscl.MipNode_saveSettingsAsStartup(self, *args) - - def loadStartupSettings(self, *args): - return _mscl.MipNode_loadStartupSettings(self, *args) - - def loadFactoryDefaultSettings(self, *args): - return _mscl.MipNode_loadFactoryDefaultSettings(self, *args) - - def setUARTBaudRate(self, *args): - return _mscl.MipNode_setUARTBaudRate(self, *args) - - def getUARTBaudRate(self, portId=1): - return _mscl.MipNode_getUARTBaudRate(self, portId) - - def getRawBytePackets(self, timeout=0, maxPackets=0): - return _mscl.MipNode_getRawBytePackets(self, timeout, maxPackets) - -# Register MipNode in _mscl: -_mscl.MipNode_swigregister(MipNode) - -def MipNode_deviceName(serial): - return _mscl.MipNode_deviceName(serial) - -class InertialNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.InertialNode_swiginit(self, _mscl.new_InertialNode(connection)) - __swig_destroy__ = _mscl.delete_InertialNode - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.InertialNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.InertialNode_totalPackets(self) - - def pollData(self, *args): - return _mscl.InertialNode_pollData(self, *args) - - def getDataRateBase(self, dataClass): - return _mscl.InertialNode_getDataRateBase(self, dataClass) - - def getActiveChannelFields(self, dataClass): - return _mscl.InertialNode_getActiveChannelFields(self, dataClass) - - def setActiveChannelFields(self, dataClass, channels): - return _mscl.InertialNode_setActiveChannelFields(self, dataClass, channels) - - def saveActiveChannelFields(self, dataClass): - return _mscl.InertialNode_saveActiveChannelFields(self, dataClass) - - def setFactoryStreamingChannels(self, option): - return _mscl.InertialNode_setFactoryStreamingChannels(self, option) - - def getInterfaceControl(self, interfaceId): - return _mscl.InertialNode_getInterfaceControl(self, interfaceId) - - def setInterfaceControl(self, *args): - return _mscl.InertialNode_setInterfaceControl(self, *args) - - def getCommunicationMode(self): - return _mscl.InertialNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.InertialNode_setCommunicationMode(self, communicationMode) - - def isDataStreamEnabled(self, dataClass): - return _mscl.InertialNode_isDataStreamEnabled(self, dataClass) - - def enableDataStream(self, dataClass, enable=True, resumeStreaming=True): - return _mscl.InertialNode_enableDataStream(self, dataClass, enable, resumeStreaming) - - def resetFilter(self): - return _mscl.InertialNode_resetFilter(self) - - def runFilter(self): - return _mscl.InertialNode_runFilter(self) - - def getAutoInitialization(self): - return _mscl.InertialNode_getAutoInitialization(self) - - def setAutoInitialization(self, enable): - return _mscl.InertialNode_setAutoInitialization(self, enable) - - def getAltitudeAid(self): - return _mscl.InertialNode_getAltitudeAid(self) - - def setAltitudeAid(self, enable): - return _mscl.InertialNode_setAltitudeAid(self, enable) - - def getPitchRollAid(self): - return _mscl.InertialNode_getPitchRollAid(self) - - def setPitchRollAid(self, enable): - return _mscl.InertialNode_setPitchRollAid(self, enable) - - def enableVerticalGyroConstraint(self, enable): - return _mscl.InertialNode_enableVerticalGyroConstraint(self, enable) - - def verticalGyroConstraintEnabled(self): - return _mscl.InertialNode_verticalGyroConstraintEnabled(self) - - def enableWheeledVehicleConstraint(self, enable): - return _mscl.InertialNode_enableWheeledVehicleConstraint(self, enable) - - def wheeledVehicleConstraintEnabled(self): - return _mscl.InertialNode_wheeledVehicleConstraintEnabled(self) - - def setVelocityZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setVelocityZUPT(self, ZUPTSettings) - - def getVelocityZUPT(self): - return _mscl.InertialNode_getVelocityZUPT(self) - - def setAngularRateZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setAngularRateZUPT(self, ZUPTSettings) - - def getAngularRateZUPT(self): - return _mscl.InertialNode_getAngularRateZUPT(self) - - def cmdedVelZUPT(self): - return _mscl.InertialNode_cmdedVelZUPT(self) - - def cmdedAngRateZUPT(self): - return _mscl.InertialNode_cmdedAngRateZUPT(self) - - def setInitialAttitude(self, attitude): - return _mscl.InertialNode_setInitialAttitude(self, attitude) - - def setInitialHeading(self, heading): - return _mscl.InertialNode_setInitialHeading(self, heading) - - def getInitialFilterConfiguration(self): - return _mscl.InertialNode_getInitialFilterConfiguration(self) - - def setInitialFilterConfiguration(self, filterConfig): - return _mscl.InertialNode_setInitialFilterConfiguration(self, filterConfig) - - def getSensorToVehicleRotation_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleRotation_eulerAngles(self) - - def setSensorToVehicleRotation_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleRotation_eulerAngles(self, angles) - - def getSensorToVehicleRotation_matrix(self): - return _mscl.InertialNode_getSensorToVehicleRotation_matrix(self) - - def setSensorToVehicleRotation_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleRotation_matrix(self, dcm) - - def getSensorToVehicleRotation_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleRotation_quaternion(self) - - def setSensorToVehicleRotation_quaternion(self, rotation): - return _mscl.InertialNode_setSensorToVehicleRotation_quaternion(self, rotation) - - def getSensorToVehicleTransform_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleTransform_eulerAngles(self) - - def setSensorToVehicleTransform_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleTransform_eulerAngles(self, angles) - - def getSensorToVehicleTransform_matrix(self): - return _mscl.InertialNode_getSensorToVehicleTransform_matrix(self) - - def setSensorToVehicleTransform_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleTransform_matrix(self, dcm) - - def getSensorToVehicleTransform_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleTransform_quaternion(self) - - def setSensorToVehicleTransform_quaternion(self, transformation): - return _mscl.InertialNode_setSensorToVehicleTransform_quaternion(self, transformation) - - def getSensorToVehicleOffset(self): - return _mscl.InertialNode_getSensorToVehicleOffset(self) - - def setSensorToVehicleOffset(self, offset): - return _mscl.InertialNode_setSensorToVehicleOffset(self, offset) - - def getAntennaOffset(self): - return _mscl.InertialNode_getAntennaOffset(self) - - def setAntennaOffset(self, offset): - return _mscl.InertialNode_setAntennaOffset(self, offset) - - def getGNSSAssistedFixControl(self): - return _mscl.InertialNode_getGNSSAssistedFixControl(self) - - def setGNSSAssistedFixControl(self, enableAssistedFix): - return _mscl.InertialNode_setGNSSAssistedFixControl(self, enableAssistedFix) - - def getGNSSAssistTimeUpdate(self): - return _mscl.InertialNode_getGNSSAssistTimeUpdate(self) - - def setGNSSAssistTimeUpdate(self, timeUpdate): - return _mscl.InertialNode_setGNSSAssistTimeUpdate(self, timeUpdate) - - def getGPSTimeUpdate(self, timeFrame): - return _mscl.InertialNode_getGPSTimeUpdate(self, timeFrame) - - def setGPSTimeUpdate(self, arg2, timeData): - return _mscl.InertialNode_setGPSTimeUpdate(self, arg2, timeData) - - def setConstellationSettings(self, dataToUse): - return _mscl.InertialNode_setConstellationSettings(self, dataToUse) - - def getConstellationSettings(self): - return _mscl.InertialNode_getConstellationSettings(self) - - def setSBASSettings(self, dataToUse): - return _mscl.InertialNode_setSBASSettings(self, dataToUse) - - def getSBASSettings(self): - return _mscl.InertialNode_getSBASSettings(self) - - def setAccelerometerBias(self, biasVector): - return _mscl.InertialNode_setAccelerometerBias(self, biasVector) - - def getAccelerometerBias(self): - return _mscl.InertialNode_getAccelerometerBias(self) - - def setGyroBias(self, biasVector): - return _mscl.InertialNode_setGyroBias(self, biasVector) - - def getGyroBias(self): - return _mscl.InertialNode_getGyroBias(self) - - def captureGyroBias(self, samplingTime): - return _mscl.InertialNode_captureGyroBias(self, samplingTime) - - def findMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_findMagnetometerCaptureAutoCalibration(self) - - def saveMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_saveMagnetometerCaptureAutoCalibration(self) - - def setMagnetometerSoftIronMatrix(self, matrix): - return _mscl.InertialNode_setMagnetometerSoftIronMatrix(self, matrix) - - def getMagnetometerSoftIronMatrix(self): - return _mscl.InertialNode_getMagnetometerSoftIronMatrix(self) - - def setMagnetometerHardIronOffset(self, offsetVector): - return _mscl.InertialNode_setMagnetometerHardIronOffset(self, offsetVector) - - def getMagnetometerHardIronOffset(self): - return _mscl.InertialNode_getMagnetometerHardIronOffset(self) - - def setConingAndScullingEnable(self, enable): - return _mscl.InertialNode_setConingAndScullingEnable(self, enable) - - def getConingAndScullingEnable(self): - return _mscl.InertialNode_getConingAndScullingEnable(self) - - def setLowPassFilterSettings(self, data): - return _mscl.InertialNode_setLowPassFilterSettings(self, data) - - def getLowPassFilterSettings(self, dataDescriptors): - return _mscl.InertialNode_getLowPassFilterSettings(self, dataDescriptors) - - def setComplementaryFilterSettings(self, data): - return _mscl.InertialNode_setComplementaryFilterSettings(self, data) - - def getComplementaryFilterSettings(self): - return _mscl.InertialNode_getComplementaryFilterSettings(self) - - def getBasicDeviceStatus(self): - return _mscl.InertialNode_getBasicDeviceStatus(self) - - def getDiagnosticDeviceStatus(self): - return _mscl.InertialNode_getDiagnosticDeviceStatus(self) - - def sendRawRTCM_2_3Message(self, theMessage): - return _mscl.InertialNode_sendRawRTCM_2_3Message(self, theMessage) - - def setVehicleDynamicsMode(self, mode): - return _mscl.InertialNode_setVehicleDynamicsMode(self, mode) - - def getVehicleDynamicsMode(self): - return _mscl.InertialNode_getVehicleDynamicsMode(self) - - def setEstimationControlFlags(self, flags): - return _mscl.InertialNode_setEstimationControlFlags(self, flags) - - def getEstimationControlFlags(self): - return _mscl.InertialNode_getEstimationControlFlags(self) - - def setInclinationSource(self, options): - return _mscl.InertialNode_setInclinationSource(self, options) - - def getInclinationSource(self): - return _mscl.InertialNode_getInclinationSource(self) - - def setDeclinationSource(self, options): - return _mscl.InertialNode_setDeclinationSource(self, options) - - def getDeclinationSource(self): - return _mscl.InertialNode_getDeclinationSource(self) - - def setMagneticFieldMagnitudeSource(self, options): - return _mscl.InertialNode_setMagneticFieldMagnitudeSource(self, options) - - def getMagneticFieldMagnitudeSource(self): - return _mscl.InertialNode_getMagneticFieldMagnitudeSource(self) - - def setGNSS_SourceControl(self, gnssSource): - return _mscl.InertialNode_setGNSS_SourceControl(self, gnssSource) - - def getGNSS_SourceControl(self): - return _mscl.InertialNode_getGNSS_SourceControl(self) - - def sendExternalGNSSUpdate(self, gnssUpdateData): - return _mscl.InertialNode_sendExternalGNSSUpdate(self, gnssUpdateData) - - def setHeadingUpdateControl(self, headingUpdateOptions): - return _mscl.InertialNode_setHeadingUpdateControl(self, headingUpdateOptions) - - def tareOrientation(self, axisValue): - return _mscl.InertialNode_tareOrientation(self, axisValue) - - def getHeadingUpdateControl(self): - return _mscl.InertialNode_getHeadingUpdateControl(self) - - def setGravityErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setGravityErrorAdaptiveMeasurement(self, data) - - def getGravityErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getGravityErrorAdaptiveMeasurement(self) - - def setMagnetometerErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagnetometerErrorAdaptiveMeasurement(self, data) - - def getMagnetometerErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagnetometerErrorAdaptiveMeasurement(self) - - def setMagDipAngleErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagDipAngleErrorAdaptiveMeasurement(self, data) - - def getMagDipAngleErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagDipAngleErrorAdaptiveMeasurement(self) - - def setMagNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setMagNoiseStandardDeviation(self, data) - - def getMagNoiseStandardDeviation(self): - return _mscl.InertialNode_getMagNoiseStandardDeviation(self) - - def setGravNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGravNoiseStandardDeviation(self, data) - - def getGravNoiseStandardDeviation(self): - return _mscl.InertialNode_getGravNoiseStandardDeviation(self) - - def setAccelNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setAccelNoiseStandardDeviation(self, data) - - def getAccelNoiseStandardDeviation(self): - return _mscl.InertialNode_getAccelNoiseStandardDeviation(self) - - def setGyroNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGyroNoiseStandardDeviation(self, data) - - def getGyroNoiseStandardDeviation(self): - return _mscl.InertialNode_getGyroNoiseStandardDeviation(self) - - def setPressureAltNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setPressureAltNoiseStandardDeviation(self, data) - - def getPressureAltNoiseStandardDeviation(self): - return _mscl.InertialNode_getPressureAltNoiseStandardDeviation(self) - - def setHardIronOffsetProcessNoise(self, data): - return _mscl.InertialNode_setHardIronOffsetProcessNoise(self, data) - - def getHardIronOffsetProcessNoise(self): - return _mscl.InertialNode_getHardIronOffsetProcessNoise(self) - - def setAccelBiasModelParams(self, data): - return _mscl.InertialNode_setAccelBiasModelParams(self, data) - - def getAccelBiasModelParams(self): - return _mscl.InertialNode_getAccelBiasModelParams(self) - - def setGyroBiasModelParams(self, data): - return _mscl.InertialNode_setGyroBiasModelParams(self, data) - - def getGyroBiasModelParams(self): - return _mscl.InertialNode_getGyroBiasModelParams(self) - - def setSoftIronMatrixProcessNoise(self, data): - return _mscl.InertialNode_setSoftIronMatrixProcessNoise(self, data) - - def getSoftIronMatrixProcessNoise(self): - return _mscl.InertialNode_getSoftIronMatrixProcessNoise(self) - - def setFixedReferencePosition(self, data): - return _mscl.InertialNode_setFixedReferencePosition(self, data) - - def getFixedReferencePosition(self): - return _mscl.InertialNode_getFixedReferencePosition(self) - - def setGPSDynamicsMode(self, data): - return _mscl.InertialNode_setGPSDynamicsMode(self, data) - - def getGPSDynamicsMode(self): - return _mscl.InertialNode_getGPSDynamicsMode(self) - - def setDevicePowerState(self, device, data): - return _mscl.InertialNode_setDevicePowerState(self, device, data) - - def getDevicePowerState(self, device): - return _mscl.InertialNode_getDevicePowerState(self, device) - - def setDeviceStreamFormat(self, device, data): - return _mscl.InertialNode_setDeviceStreamFormat(self, device, data) - - def getDeviceStreamFormat(self, device): - return _mscl.InertialNode_getDeviceStreamFormat(self, device) - - def setSignalConditioningSettings(self, data): - return _mscl.InertialNode_setSignalConditioningSettings(self, data) - - def getSignalConditioningSettings(self): - return _mscl.InertialNode_getSignalConditioningSettings(self) - - def setEnableDisableMeasurements(self, data): - return _mscl.InertialNode_setEnableDisableMeasurements(self, data) - - def getEnableDisableMeasurements(self): - return _mscl.InertialNode_getEnableDisableMeasurements(self) - - def setGravityNoiseMinimum(self, data): - return _mscl.InertialNode_setGravityNoiseMinimum(self, data) - - def getGravityNoiseMinimum(self): - return _mscl.InertialNode_getGravityNoiseMinimum(self) - - def sendExternalHeadingUpdate(self, *args): - return _mscl.InertialNode_sendExternalHeadingUpdate(self, *args) - - def aidingMeasurementEnabled(self, aidingSource): - return _mscl.InertialNode_aidingMeasurementEnabled(self, aidingSource) - - def enableDisableAidingMeasurement(self, aidingSource, enable): - return _mscl.InertialNode_enableDisableAidingMeasurement(self, aidingSource, enable) - - def getAdaptiveFilterOptions(self): - return _mscl.InertialNode_getAdaptiveFilterOptions(self) - - def setAdaptiveFilterOptions(self, options): - return _mscl.InertialNode_setAdaptiveFilterOptions(self, options) - - def getMultiAntennaOffset(self, receiverId): - return _mscl.InertialNode_getMultiAntennaOffset(self, receiverId) - - def setMultiAntennaOffset(self, receiverId, offset): - return _mscl.InertialNode_setMultiAntennaOffset(self, receiverId, offset) - - def getPpsSource(self): - return _mscl.InertialNode_getPpsSource(self) - - def setPpsSource(self, ppsSource): - return _mscl.InertialNode_setPpsSource(self, ppsSource) - - def getOdometerConfig(self): - return _mscl.InertialNode_getOdometerConfig(self) - - def setOdometerConfig(self, config): - return _mscl.InertialNode_setOdometerConfig(self, config) - - def getSensorRange(self, sensorRangeType): - return _mscl.InertialNode_getSensorRange(self, sensorRangeType) - - def setSensorRange(self, *args): - return _mscl.InertialNode_setSensorRange(self, *args) - - def getGpioConfig(self, pin): - return _mscl.InertialNode_getGpioConfig(self, pin) - - def setGpioConfig(self, config): - return _mscl.InertialNode_setGpioConfig(self, config) - - def getGpioState(self, pin): - return _mscl.InertialNode_getGpioState(self, pin) - - def setGpioState(self, pin, state): - return _mscl.InertialNode_setGpioState(self, pin, state) - - def getEventTriggerMode(self, instance): - return _mscl.InertialNode_getEventTriggerMode(self, instance) - - def setEventTriggerMode(self, instance, mode): - return _mscl.InertialNode_setEventTriggerMode(self, instance, mode) - - def getEventTriggerConfig(self, instance): - return _mscl.InertialNode_getEventTriggerConfig(self, instance) - - def setEventTriggerConfig(self, config): - return _mscl.InertialNode_setEventTriggerConfig(self, config) - - def getEventActionConfig(self, instance): - return _mscl.InertialNode_getEventActionConfig(self, instance) - - def setEventActionConfig(self, config, validateSupported=True): - return _mscl.InertialNode_setEventActionConfig(self, config, validateSupported) - - def getAntennaLeverArmCal(self): - return _mscl.InertialNode_getAntennaLeverArmCal(self) - - def setAntennaLeverArmCal(self, config): - return _mscl.InertialNode_setAntennaLeverArmCal(self, config) - - def getRelativePositionReference(self): - return _mscl.InertialNode_getRelativePositionReference(self) - - def setRelativePositionReference(self, ref): - return _mscl.InertialNode_setRelativePositionReference(self, ref) - - def getLeverArmReferenceOffset(self): - return _mscl.InertialNode_getLeverArmReferenceOffset(self) - - def setLeverArmReferenceOffset(self, offset): - return _mscl.InertialNode_setLeverArmReferenceOffset(self, offset) - - def sendExternalSpeedMeasurementUpdate(self, tow, speed, unc): - return _mscl.InertialNode_sendExternalSpeedMeasurementUpdate(self, tow, speed, unc) - - def getSpeedMeasurementOffset(self): - return _mscl.InertialNode_getSpeedMeasurementOffset(self) - - def setSpeedMeasurementOffset(self, offset): - return _mscl.InertialNode_setSpeedMeasurementOffset(self, offset) - - def getGnssSignalConfig(self): - return _mscl.InertialNode_getGnssSignalConfig(self) - - def setGnssSignalConfig(self, config): - return _mscl.InertialNode_setGnssSignalConfig(self, config) - - def getGnssSpartnConfig(self): - return _mscl.InertialNode_getGnssSpartnConfig(self) - - def setGnssSpartnConfig(self, config): - return _mscl.InertialNode_setGnssSpartnConfig(self, config) - - def rtkEnabled(self): - return _mscl.InertialNode_rtkEnabled(self) - - def enableRtk(self, enable): - return _mscl.InertialNode_enableRtk(self, enable) - - def getEventTriggerStatus(self, *args): - return _mscl.InertialNode_getEventTriggerStatus(self, *args) - - def getEventActionStatus(self, *args): - return _mscl.InertialNode_getEventActionStatus(self, *args) - - def getNmeaMessageFormat(self): - return _mscl.InertialNode_getNmeaMessageFormat(self) - - def setNmeaMessageFormat(self, nmeaFormats): - return _mscl.InertialNode_setNmeaMessageFormat(self, nmeaFormats) - - def getAidingMeasurementReferenceFrames(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrames(self, *args) - - def setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds=False): - return _mscl.InertialNode_setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds) - - def getAidingMeasurementReferenceFrame(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrame(self, *args) - - def setAidingMeasurementReferenceFrame(self, id, frame): - return _mscl.InertialNode_setAidingMeasurementReferenceFrame(self, id, frame) - - def setAidingMeasurementResponseMode(self, mode): - return _mscl.InertialNode_setAidingMeasurementResponseMode(self, mode) - - def getAidingMeasurementResponseMode(self): - return _mscl.InertialNode_getAidingMeasurementResponseMode(self) - - def sendAidingMeasurement(self, *args): - return _mscl.InertialNode_sendAidingMeasurement(self, *args) - - def sendAidingMeasurement_readEcho(self, *args): - return _mscl.InertialNode_sendAidingMeasurement_readEcho(self, *args) - -# Register InertialNode in _mscl: -_mscl.InertialNode_swigregister(InertialNode) - -class DisplacementNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.DisplacementNode_swiginit(self, _mscl.new_DisplacementNode(connection)) - __swig_destroy__ = _mscl.delete_DisplacementNode - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.DisplacementNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - @staticmethod - def deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - - def connection(self): - return _mscl.DisplacementNode_connection(self) - - def features(self): - return _mscl.DisplacementNode_features(self) - - def lastCommunicationTime(self): - return _mscl.DisplacementNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.DisplacementNode_lastDeviceState(self) - - def firmwareVersion(self): - return _mscl.DisplacementNode_firmwareVersion(self) - - def model(self): - return _mscl.DisplacementNode_model(self) - - def modelName(self): - return _mscl.DisplacementNode_modelName(self) - - def modelNumber(self): - return _mscl.DisplacementNode_modelNumber(self) - - def serialNumber(self): - return _mscl.DisplacementNode_serialNumber(self) - - def lotNumber(self): - return _mscl.DisplacementNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.DisplacementNode_deviceOptions(self) - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.DisplacementNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.DisplacementNode_totalPackets(self) - - def timeout(self, *args): - return _mscl.DisplacementNode_timeout(self, *args) - - def name(self): - return _mscl.DisplacementNode_name(self) - - def ping(self): - return _mscl.DisplacementNode_ping(self) - - def setToIdle(self): - return _mscl.DisplacementNode_setToIdle(self) - - def cyclePower(self): - return _mscl.DisplacementNode_cyclePower(self) - - def resume(self): - return _mscl.DisplacementNode_resume(self) - - def getDisplacementOutputDataRate(self): - return _mscl.DisplacementNode_getDisplacementOutputDataRate(self) - - def getAnalogToDisplacementCal(self): - return _mscl.DisplacementNode_getAnalogToDisplacementCal(self) - - def setDeviceTime(self, *args): - return _mscl.DisplacementNode_setDeviceTime(self, *args) - -# Register DisplacementNode in _mscl: -_mscl.DisplacementNode_swigregister(DisplacementNode) - -def DisplacementNode_deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - -class RTKNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.RTKNode_swiginit(self, _mscl.new_RTKNode(connection)) - __swig_destroy__ = _mscl.delete_RTKNode - - def getCommunicationMode(self): - return _mscl.RTKNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.RTKNode_setCommunicationMode(self, communicationMode) - - def getDeviceStatusFlags(self): - return _mscl.RTKNode_getDeviceStatusFlags(self) - - def getActivationCode(self): - return _mscl.RTKNode_getActivationCode(self) - - def getStatusBitfieldVersion(self): - return _mscl.RTKNode_getStatusBitfieldVersion(self) - -# Register RTKNode in _mscl: -_mscl.RTKNode_swigregister(RTKNode) - -class ChannelData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelData___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelData___bool__(self) - - def __len__(self): - return _mscl.ChannelData___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelData___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelData___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelData___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelData___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelData___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelData___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelData_pop(self) - - def append(self, x): - return _mscl.ChannelData_append(self, x) - - def empty(self): - return _mscl.ChannelData_empty(self) - - def size(self): - return _mscl.ChannelData_size(self) - - def swap(self, v): - return _mscl.ChannelData_swap(self, v) - - def begin(self): - return _mscl.ChannelData_begin(self) - - def end(self): - return _mscl.ChannelData_end(self) - - def rbegin(self): - return _mscl.ChannelData_rbegin(self) - - def rend(self): - return _mscl.ChannelData_rend(self) - - def clear(self): - return _mscl.ChannelData_clear(self) - - def get_allocator(self): - return _mscl.ChannelData_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelData_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelData_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelData_swiginit(self, _mscl.new_ChannelData(*args)) - - def push_back(self, x): - return _mscl.ChannelData_push_back(self, x) - - def front(self): - return _mscl.ChannelData_front(self) - - def back(self): - return _mscl.ChannelData_back(self) - - def assign(self, n, x): - return _mscl.ChannelData_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelData_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelData_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelData_reserve(self, n) - - def capacity(self): - return _mscl.ChannelData_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelData - -# Register ChannelData in _mscl: -_mscl.ChannelData_swigregister(ChannelData) - -class MipDataPoints(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPoints_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPoints___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPoints___bool__(self) - - def __len__(self): - return _mscl.MipDataPoints___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPoints___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPoints___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPoints___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPoints___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPoints___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPoints___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPoints_pop(self) - - def append(self, x): - return _mscl.MipDataPoints_append(self, x) - - def empty(self): - return _mscl.MipDataPoints_empty(self) - - def size(self): - return _mscl.MipDataPoints_size(self) - - def swap(self, v): - return _mscl.MipDataPoints_swap(self, v) - - def begin(self): - return _mscl.MipDataPoints_begin(self) - - def end(self): - return _mscl.MipDataPoints_end(self) - - def rbegin(self): - return _mscl.MipDataPoints_rbegin(self) - - def rend(self): - return _mscl.MipDataPoints_rend(self) - - def clear(self): - return _mscl.MipDataPoints_clear(self) - - def get_allocator(self): - return _mscl.MipDataPoints_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPoints_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPoints_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPoints_swiginit(self, _mscl.new_MipDataPoints(*args)) - - def push_back(self, x): - return _mscl.MipDataPoints_push_back(self, x) - - def front(self): - return _mscl.MipDataPoints_front(self) - - def back(self): - return _mscl.MipDataPoints_back(self) - - def assign(self, n, x): - return _mscl.MipDataPoints_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPoints_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPoints_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPoints_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPoints_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPoints - -# Register MipDataPoints in _mscl: -_mscl.MipDataPoints_swigregister(MipDataPoints) - -class Bytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bytes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bytes___nonzero__(self) - - def __bool__(self): - return _mscl.Bytes___bool__(self) - - def __len__(self): - return _mscl.Bytes___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bytes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bytes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bytes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bytes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bytes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bytes___setitem__(self, *args) - - def pop(self): - return _mscl.Bytes_pop(self) - - def append(self, x): - return _mscl.Bytes_append(self, x) - - def empty(self): - return _mscl.Bytes_empty(self) - - def size(self): - return _mscl.Bytes_size(self) - - def swap(self, v): - return _mscl.Bytes_swap(self, v) - - def begin(self): - return _mscl.Bytes_begin(self) - - def end(self): - return _mscl.Bytes_end(self) - - def rbegin(self): - return _mscl.Bytes_rbegin(self) - - def rend(self): - return _mscl.Bytes_rend(self) - - def clear(self): - return _mscl.Bytes_clear(self) - - def get_allocator(self): - return _mscl.Bytes_get_allocator(self) - - def pop_back(self): - return _mscl.Bytes_pop_back(self) - - def erase(self, *args): - return _mscl.Bytes_erase(self, *args) - - def __init__(self, *args): - _mscl.Bytes_swiginit(self, _mscl.new_Bytes(*args)) - - def push_back(self, x): - return _mscl.Bytes_push_back(self, x) - - def front(self): - return _mscl.Bytes_front(self) - - def back(self): - return _mscl.Bytes_back(self) - - def assign(self, n, x): - return _mscl.Bytes_assign(self, n, x) - - def resize(self, *args): - return _mscl.Bytes_resize(self, *args) - - def insert(self, *args): - return _mscl.Bytes_insert(self, *args) - - def reserve(self, n): - return _mscl.Bytes_reserve(self, n) - - def capacity(self): - return _mscl.Bytes_capacity(self) - __swig_destroy__ = _mscl.delete_Bytes - -# Register Bytes in _mscl: -_mscl.Bytes_swigregister(Bytes) - -class BytesCollection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.BytesCollection_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.BytesCollection___nonzero__(self) - - def __bool__(self): - return _mscl.BytesCollection___bool__(self) - - def __len__(self): - return _mscl.BytesCollection___len__(self) - - def __getslice__(self, i, j): - return _mscl.BytesCollection___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.BytesCollection___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.BytesCollection___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.BytesCollection___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.BytesCollection___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.BytesCollection___setitem__(self, *args) - - def pop(self): - return _mscl.BytesCollection_pop(self) - - def append(self, x): - return _mscl.BytesCollection_append(self, x) - - def empty(self): - return _mscl.BytesCollection_empty(self) - - def size(self): - return _mscl.BytesCollection_size(self) - - def swap(self, v): - return _mscl.BytesCollection_swap(self, v) - - def begin(self): - return _mscl.BytesCollection_begin(self) - - def end(self): - return _mscl.BytesCollection_end(self) - - def rbegin(self): - return _mscl.BytesCollection_rbegin(self) - - def rend(self): - return _mscl.BytesCollection_rend(self) - - def clear(self): - return _mscl.BytesCollection_clear(self) - - def get_allocator(self): - return _mscl.BytesCollection_get_allocator(self) - - def pop_back(self): - return _mscl.BytesCollection_pop_back(self) - - def erase(self, *args): - return _mscl.BytesCollection_erase(self, *args) - - def __init__(self, *args): - _mscl.BytesCollection_swiginit(self, _mscl.new_BytesCollection(*args)) - - def push_back(self, x): - return _mscl.BytesCollection_push_back(self, x) - - def front(self): - return _mscl.BytesCollection_front(self) - - def back(self): - return _mscl.BytesCollection_back(self) - - def assign(self, n, x): - return _mscl.BytesCollection_assign(self, n, x) - - def resize(self, *args): - return _mscl.BytesCollection_resize(self, *args) - - def insert(self, *args): - return _mscl.BytesCollection_insert(self, *args) - - def reserve(self, n): - return _mscl.BytesCollection_reserve(self, n) - - def capacity(self): - return _mscl.BytesCollection_capacity(self) - __swig_destroy__ = _mscl.delete_BytesCollection - -# Register BytesCollection in _mscl: -_mscl.BytesCollection_swigregister(BytesCollection) - -class DeviceList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceList___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceList___bool__(self) - - def __len__(self): - return _mscl.DeviceList___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceList___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceList___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceList_has_key(self, key) - - def keys(self): - return _mscl.DeviceList_keys(self) - - def values(self): - return _mscl.DeviceList_values(self) - - def items(self): - return _mscl.DeviceList_items(self) - - def __contains__(self, key): - return _mscl.DeviceList___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceList_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceList_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceList___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceList_asdict(self) - - def __init__(self, *args): - _mscl.DeviceList_swiginit(self, _mscl.new_DeviceList(*args)) - - def empty(self): - return _mscl.DeviceList_empty(self) - - def size(self): - return _mscl.DeviceList_size(self) - - def swap(self, v): - return _mscl.DeviceList_swap(self, v) - - def begin(self): - return _mscl.DeviceList_begin(self) - - def end(self): - return _mscl.DeviceList_end(self) - - def rbegin(self): - return _mscl.DeviceList_rbegin(self) - - def rend(self): - return _mscl.DeviceList_rend(self) - - def clear(self): - return _mscl.DeviceList_clear(self) - - def get_allocator(self): - return _mscl.DeviceList_get_allocator(self) - - def count(self, x): - return _mscl.DeviceList_count(self, x) - - def erase(self, *args): - return _mscl.DeviceList_erase(self, *args) - - def find(self, x): - return _mscl.DeviceList_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceList_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceList_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceList - -# Register DeviceList in _mscl: -_mscl.DeviceList_swigregister(DeviceList) - -class NodeDiscoveries(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NodeDiscoveries_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NodeDiscoveries___nonzero__(self) - - def __bool__(self): - return _mscl.NodeDiscoveries___bool__(self) - - def __len__(self): - return _mscl.NodeDiscoveries___len__(self) - - def __getslice__(self, i, j): - return _mscl.NodeDiscoveries___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NodeDiscoveries___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NodeDiscoveries___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NodeDiscoveries___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NodeDiscoveries___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NodeDiscoveries___setitem__(self, *args) - - def pop(self): - return _mscl.NodeDiscoveries_pop(self) - - def append(self, x): - return _mscl.NodeDiscoveries_append(self, x) - - def empty(self): - return _mscl.NodeDiscoveries_empty(self) - - def size(self): - return _mscl.NodeDiscoveries_size(self) - - def swap(self, v): - return _mscl.NodeDiscoveries_swap(self, v) - - def begin(self): - return _mscl.NodeDiscoveries_begin(self) - - def end(self): - return _mscl.NodeDiscoveries_end(self) - - def rbegin(self): - return _mscl.NodeDiscoveries_rbegin(self) - - def rend(self): - return _mscl.NodeDiscoveries_rend(self) - - def clear(self): - return _mscl.NodeDiscoveries_clear(self) - - def get_allocator(self): - return _mscl.NodeDiscoveries_get_allocator(self) - - def pop_back(self): - return _mscl.NodeDiscoveries_pop_back(self) - - def erase(self, *args): - return _mscl.NodeDiscoveries_erase(self, *args) - - def __init__(self, *args): - _mscl.NodeDiscoveries_swiginit(self, _mscl.new_NodeDiscoveries(*args)) - - def push_back(self, x): - return _mscl.NodeDiscoveries_push_back(self, x) - - def front(self): - return _mscl.NodeDiscoveries_front(self) - - def back(self): - return _mscl.NodeDiscoveries_back(self) - - def assign(self, n, x): - return _mscl.NodeDiscoveries_assign(self, n, x) - - def resize(self, *args): - return _mscl.NodeDiscoveries_resize(self, *args) - - def insert(self, *args): - return _mscl.NodeDiscoveries_insert(self, *args) - - def reserve(self, n): - return _mscl.NodeDiscoveries_reserve(self, n) - - def capacity(self): - return _mscl.NodeDiscoveries_capacity(self) - __swig_destroy__ = _mscl.delete_NodeDiscoveries - -# Register NodeDiscoveries in _mscl: -_mscl.NodeDiscoveries_swigregister(NodeDiscoveries) - -class DataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.DataSweeps___bool__(self) - - def __len__(self): - return _mscl.DataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.DataSweeps_pop(self) - - def append(self, x): - return _mscl.DataSweeps_append(self, x) - - def empty(self): - return _mscl.DataSweeps_empty(self) - - def size(self): - return _mscl.DataSweeps_size(self) - - def swap(self, v): - return _mscl.DataSweeps_swap(self, v) - - def begin(self): - return _mscl.DataSweeps_begin(self) - - def end(self): - return _mscl.DataSweeps_end(self) - - def rbegin(self): - return _mscl.DataSweeps_rbegin(self) - - def rend(self): - return _mscl.DataSweeps_rend(self) - - def clear(self): - return _mscl.DataSweeps_clear(self) - - def get_allocator(self): - return _mscl.DataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.DataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.DataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.DataSweeps_swiginit(self, _mscl.new_DataSweeps(*args)) - - def push_back(self, x): - return _mscl.DataSweeps_push_back(self, x) - - def front(self): - return _mscl.DataSweeps_front(self) - - def back(self): - return _mscl.DataSweeps_back(self) - - def assign(self, n, x): - return _mscl.DataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.DataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.DataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.DataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_DataSweeps - -# Register DataSweeps in _mscl: -_mscl.DataSweeps_swigregister(DataSweeps) - -class LoggedDataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LoggedDataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LoggedDataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.LoggedDataSweeps___bool__(self) - - def __len__(self): - return _mscl.LoggedDataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.LoggedDataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LoggedDataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LoggedDataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LoggedDataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LoggedDataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LoggedDataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.LoggedDataSweeps_pop(self) - - def append(self, x): - return _mscl.LoggedDataSweeps_append(self, x) - - def empty(self): - return _mscl.LoggedDataSweeps_empty(self) - - def size(self): - return _mscl.LoggedDataSweeps_size(self) - - def swap(self, v): - return _mscl.LoggedDataSweeps_swap(self, v) - - def begin(self): - return _mscl.LoggedDataSweeps_begin(self) - - def end(self): - return _mscl.LoggedDataSweeps_end(self) - - def rbegin(self): - return _mscl.LoggedDataSweeps_rbegin(self) - - def rend(self): - return _mscl.LoggedDataSweeps_rend(self) - - def clear(self): - return _mscl.LoggedDataSweeps_clear(self) - - def get_allocator(self): - return _mscl.LoggedDataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.LoggedDataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.LoggedDataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.LoggedDataSweeps_swiginit(self, _mscl.new_LoggedDataSweeps(*args)) - - def push_back(self, x): - return _mscl.LoggedDataSweeps_push_back(self, x) - - def front(self): - return _mscl.LoggedDataSweeps_front(self) - - def back(self): - return _mscl.LoggedDataSweeps_back(self) - - def assign(self, n, x): - return _mscl.LoggedDataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.LoggedDataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.LoggedDataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.LoggedDataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.LoggedDataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweeps - -# Register LoggedDataSweeps in _mscl: -_mscl.LoggedDataSweeps_swigregister(LoggedDataSweeps) - -class MipDataPackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPackets___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPackets___bool__(self) - - def __len__(self): - return _mscl.MipDataPackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPackets___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPackets_pop(self) - - def append(self, x): - return _mscl.MipDataPackets_append(self, x) - - def empty(self): - return _mscl.MipDataPackets_empty(self) - - def size(self): - return _mscl.MipDataPackets_size(self) - - def swap(self, v): - return _mscl.MipDataPackets_swap(self, v) - - def begin(self): - return _mscl.MipDataPackets_begin(self) - - def end(self): - return _mscl.MipDataPackets_end(self) - - def rbegin(self): - return _mscl.MipDataPackets_rbegin(self) - - def rend(self): - return _mscl.MipDataPackets_rend(self) - - def clear(self): - return _mscl.MipDataPackets_clear(self) - - def get_allocator(self): - return _mscl.MipDataPackets_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPackets_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPackets_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPackets_swiginit(self, _mscl.new_MipDataPackets(*args)) - - def push_back(self, x): - return _mscl.MipDataPackets_push_back(self, x) - - def front(self): - return _mscl.MipDataPackets_front(self) - - def back(self): - return _mscl.MipDataPackets_back(self) - - def assign(self, n, x): - return _mscl.MipDataPackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPackets_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPackets_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPackets_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPackets_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPackets - -# Register MipDataPackets in _mscl: -_mscl.MipDataPackets_swigregister(MipDataPackets) - -class RawBytePackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RawBytePackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RawBytePackets___nonzero__(self) - - def __bool__(self): - return _mscl.RawBytePackets___bool__(self) - - def __len__(self): - return _mscl.RawBytePackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.RawBytePackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.RawBytePackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.RawBytePackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.RawBytePackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.RawBytePackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.RawBytePackets___setitem__(self, *args) - - def pop(self): - return _mscl.RawBytePackets_pop(self) - - def append(self, x): - return _mscl.RawBytePackets_append(self, x) - - def empty(self): - return _mscl.RawBytePackets_empty(self) - - def size(self): - return _mscl.RawBytePackets_size(self) - - def swap(self, v): - return _mscl.RawBytePackets_swap(self, v) - - def begin(self): - return _mscl.RawBytePackets_begin(self) - - def end(self): - return _mscl.RawBytePackets_end(self) - - def rbegin(self): - return _mscl.RawBytePackets_rbegin(self) - - def rend(self): - return _mscl.RawBytePackets_rend(self) - - def clear(self): - return _mscl.RawBytePackets_clear(self) - - def get_allocator(self): - return _mscl.RawBytePackets_get_allocator(self) - - def pop_back(self): - return _mscl.RawBytePackets_pop_back(self) - - def erase(self, *args): - return _mscl.RawBytePackets_erase(self, *args) - - def __init__(self, *args): - _mscl.RawBytePackets_swiginit(self, _mscl.new_RawBytePackets(*args)) - - def push_back(self, x): - return _mscl.RawBytePackets_push_back(self, x) - - def front(self): - return _mscl.RawBytePackets_front(self) - - def back(self): - return _mscl.RawBytePackets_back(self) - - def assign(self, n, x): - return _mscl.RawBytePackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.RawBytePackets_resize(self, *args) - - def insert(self, *args): - return _mscl.RawBytePackets_insert(self, *args) - - def reserve(self, n): - return _mscl.RawBytePackets_reserve(self, n) - - def capacity(self): - return _mscl.RawBytePackets_capacity(self) - __swig_destroy__ = _mscl.delete_RawBytePackets - -# Register RawBytePackets in _mscl: -_mscl.RawBytePackets_swigregister(RawBytePackets) - -class MipChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannels___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannels___bool__(self) - - def __len__(self): - return _mscl.MipChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannels___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannels_pop(self) - - def append(self, x): - return _mscl.MipChannels_append(self, x) - - def empty(self): - return _mscl.MipChannels_empty(self) - - def size(self): - return _mscl.MipChannels_size(self) - - def swap(self, v): - return _mscl.MipChannels_swap(self, v) - - def begin(self): - return _mscl.MipChannels_begin(self) - - def end(self): - return _mscl.MipChannels_end(self) - - def rbegin(self): - return _mscl.MipChannels_rbegin(self) - - def rend(self): - return _mscl.MipChannels_rend(self) - - def clear(self): - return _mscl.MipChannels_clear(self) - - def get_allocator(self): - return _mscl.MipChannels_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannels_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannels_swiginit(self, _mscl.new_MipChannels(*args)) - - def push_back(self, x): - return _mscl.MipChannels_push_back(self, x) - - def front(self): - return _mscl.MipChannels_front(self) - - def back(self): - return _mscl.MipChannels_back(self) - - def assign(self, n, x): - return _mscl.MipChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannels_reserve(self, n) - - def capacity(self): - return _mscl.MipChannels_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannels - -# Register MipChannels in _mscl: -_mscl.MipChannels_swigregister(MipChannels) - -class DataCollectionMethods(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataCollectionMethods_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataCollectionMethods___nonzero__(self) - - def __bool__(self): - return _mscl.DataCollectionMethods___bool__(self) - - def __len__(self): - return _mscl.DataCollectionMethods___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataCollectionMethods___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataCollectionMethods___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataCollectionMethods___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataCollectionMethods___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataCollectionMethods___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataCollectionMethods___setitem__(self, *args) - - def pop(self): - return _mscl.DataCollectionMethods_pop(self) - - def append(self, x): - return _mscl.DataCollectionMethods_append(self, x) - - def empty(self): - return _mscl.DataCollectionMethods_empty(self) - - def size(self): - return _mscl.DataCollectionMethods_size(self) - - def swap(self, v): - return _mscl.DataCollectionMethods_swap(self, v) - - def begin(self): - return _mscl.DataCollectionMethods_begin(self) - - def end(self): - return _mscl.DataCollectionMethods_end(self) - - def rbegin(self): - return _mscl.DataCollectionMethods_rbegin(self) - - def rend(self): - return _mscl.DataCollectionMethods_rend(self) - - def clear(self): - return _mscl.DataCollectionMethods_clear(self) - - def get_allocator(self): - return _mscl.DataCollectionMethods_get_allocator(self) - - def pop_back(self): - return _mscl.DataCollectionMethods_pop_back(self) - - def erase(self, *args): - return _mscl.DataCollectionMethods_erase(self, *args) - - def __init__(self, *args): - _mscl.DataCollectionMethods_swiginit(self, _mscl.new_DataCollectionMethods(*args)) - - def push_back(self, x): - return _mscl.DataCollectionMethods_push_back(self, x) - - def front(self): - return _mscl.DataCollectionMethods_front(self) - - def back(self): - return _mscl.DataCollectionMethods_back(self) - - def assign(self, n, x): - return _mscl.DataCollectionMethods_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataCollectionMethods_resize(self, *args) - - def insert(self, *args): - return _mscl.DataCollectionMethods_insert(self, *args) - - def reserve(self, n): - return _mscl.DataCollectionMethods_reserve(self, n) - - def capacity(self): - return _mscl.DataCollectionMethods_capacity(self) - __swig_destroy__ = _mscl.delete_DataCollectionMethods - -# Register DataCollectionMethods in _mscl: -_mscl.DataCollectionMethods_swigregister(DataCollectionMethods) - -class DataFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataFormats___nonzero__(self) - - def __bool__(self): - return _mscl.DataFormats___bool__(self) - - def __len__(self): - return _mscl.DataFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataFormats___setitem__(self, *args) - - def pop(self): - return _mscl.DataFormats_pop(self) - - def append(self, x): - return _mscl.DataFormats_append(self, x) - - def empty(self): - return _mscl.DataFormats_empty(self) - - def size(self): - return _mscl.DataFormats_size(self) - - def swap(self, v): - return _mscl.DataFormats_swap(self, v) - - def begin(self): - return _mscl.DataFormats_begin(self) - - def end(self): - return _mscl.DataFormats_end(self) - - def rbegin(self): - return _mscl.DataFormats_rbegin(self) - - def rend(self): - return _mscl.DataFormats_rend(self) - - def clear(self): - return _mscl.DataFormats_clear(self) - - def get_allocator(self): - return _mscl.DataFormats_get_allocator(self) - - def pop_back(self): - return _mscl.DataFormats_pop_back(self) - - def erase(self, *args): - return _mscl.DataFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.DataFormats_swiginit(self, _mscl.new_DataFormats(*args)) - - def push_back(self, x): - return _mscl.DataFormats_push_back(self, x) - - def front(self): - return _mscl.DataFormats_front(self) - - def back(self): - return _mscl.DataFormats_back(self) - - def assign(self, n, x): - return _mscl.DataFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.DataFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.DataFormats_reserve(self, n) - - def capacity(self): - return _mscl.DataFormats_capacity(self) - __swig_destroy__ = _mscl.delete_DataFormats - -# Register DataFormats in _mscl: -_mscl.DataFormats_swigregister(DataFormats) - -class WirelessSampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessSampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessSampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessSampleRates___bool__(self) - - def __len__(self): - return _mscl.WirelessSampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessSampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessSampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessSampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessSampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessSampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessSampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessSampleRates_pop(self) - - def append(self, x): - return _mscl.WirelessSampleRates_append(self, x) - - def empty(self): - return _mscl.WirelessSampleRates_empty(self) - - def size(self): - return _mscl.WirelessSampleRates_size(self) - - def swap(self, v): - return _mscl.WirelessSampleRates_swap(self, v) - - def begin(self): - return _mscl.WirelessSampleRates_begin(self) - - def end(self): - return _mscl.WirelessSampleRates_end(self) - - def rbegin(self): - return _mscl.WirelessSampleRates_rbegin(self) - - def rend(self): - return _mscl.WirelessSampleRates_rend(self) - - def clear(self): - return _mscl.WirelessSampleRates_clear(self) - - def get_allocator(self): - return _mscl.WirelessSampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessSampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessSampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessSampleRates_swiginit(self, _mscl.new_WirelessSampleRates(*args)) - - def push_back(self, x): - return _mscl.WirelessSampleRates_push_back(self, x) - - def front(self): - return _mscl.WirelessSampleRates_front(self) - - def back(self): - return _mscl.WirelessSampleRates_back(self) - - def assign(self, n, x): - return _mscl.WirelessSampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessSampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessSampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessSampleRates_reserve(self, n) - - def capacity(self): - return _mscl.WirelessSampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessSampleRates - -# Register WirelessSampleRates in _mscl: -_mscl.WirelessSampleRates_swigregister(WirelessSampleRates) - -class SamplingModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SamplingModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SamplingModes___nonzero__(self) - - def __bool__(self): - return _mscl.SamplingModes___bool__(self) - - def __len__(self): - return _mscl.SamplingModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SamplingModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SamplingModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SamplingModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SamplingModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SamplingModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SamplingModes___setitem__(self, *args) - - def pop(self): - return _mscl.SamplingModes_pop(self) - - def append(self, x): - return _mscl.SamplingModes_append(self, x) - - def empty(self): - return _mscl.SamplingModes_empty(self) - - def size(self): - return _mscl.SamplingModes_size(self) - - def swap(self, v): - return _mscl.SamplingModes_swap(self, v) - - def begin(self): - return _mscl.SamplingModes_begin(self) - - def end(self): - return _mscl.SamplingModes_end(self) - - def rbegin(self): - return _mscl.SamplingModes_rbegin(self) - - def rend(self): - return _mscl.SamplingModes_rend(self) - - def clear(self): - return _mscl.SamplingModes_clear(self) - - def get_allocator(self): - return _mscl.SamplingModes_get_allocator(self) - - def pop_back(self): - return _mscl.SamplingModes_pop_back(self) - - def erase(self, *args): - return _mscl.SamplingModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SamplingModes_swiginit(self, _mscl.new_SamplingModes(*args)) - - def push_back(self, x): - return _mscl.SamplingModes_push_back(self, x) - - def front(self): - return _mscl.SamplingModes_front(self) - - def back(self): - return _mscl.SamplingModes_back(self) - - def assign(self, n, x): - return _mscl.SamplingModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SamplingModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SamplingModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SamplingModes_reserve(self, n) - - def capacity(self): - return _mscl.SamplingModes_capacity(self) - __swig_destroy__ = _mscl.delete_SamplingModes - -# Register SamplingModes in _mscl: -_mscl.SamplingModes_swigregister(SamplingModes) - -class DefaultModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DefaultModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DefaultModes___nonzero__(self) - - def __bool__(self): - return _mscl.DefaultModes___bool__(self) - - def __len__(self): - return _mscl.DefaultModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DefaultModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DefaultModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DefaultModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DefaultModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DefaultModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DefaultModes___setitem__(self, *args) - - def pop(self): - return _mscl.DefaultModes_pop(self) - - def append(self, x): - return _mscl.DefaultModes_append(self, x) - - def empty(self): - return _mscl.DefaultModes_empty(self) - - def size(self): - return _mscl.DefaultModes_size(self) - - def swap(self, v): - return _mscl.DefaultModes_swap(self, v) - - def begin(self): - return _mscl.DefaultModes_begin(self) - - def end(self): - return _mscl.DefaultModes_end(self) - - def rbegin(self): - return _mscl.DefaultModes_rbegin(self) - - def rend(self): - return _mscl.DefaultModes_rend(self) - - def clear(self): - return _mscl.DefaultModes_clear(self) - - def get_allocator(self): - return _mscl.DefaultModes_get_allocator(self) - - def pop_back(self): - return _mscl.DefaultModes_pop_back(self) - - def erase(self, *args): - return _mscl.DefaultModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DefaultModes_swiginit(self, _mscl.new_DefaultModes(*args)) - - def push_back(self, x): - return _mscl.DefaultModes_push_back(self, x) - - def front(self): - return _mscl.DefaultModes_front(self) - - def back(self): - return _mscl.DefaultModes_back(self) - - def assign(self, n, x): - return _mscl.DefaultModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DefaultModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DefaultModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DefaultModes_reserve(self, n) - - def capacity(self): - return _mscl.DefaultModes_capacity(self) - __swig_destroy__ = _mscl.delete_DefaultModes - -# Register DefaultModes in _mscl: -_mscl.DefaultModes_swigregister(DefaultModes) - -class TransmitPowers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransmitPowers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransmitPowers___nonzero__(self) - - def __bool__(self): - return _mscl.TransmitPowers___bool__(self) - - def __len__(self): - return _mscl.TransmitPowers___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransmitPowers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransmitPowers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransmitPowers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransmitPowers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransmitPowers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransmitPowers___setitem__(self, *args) - - def pop(self): - return _mscl.TransmitPowers_pop(self) - - def append(self, x): - return _mscl.TransmitPowers_append(self, x) - - def empty(self): - return _mscl.TransmitPowers_empty(self) - - def size(self): - return _mscl.TransmitPowers_size(self) - - def swap(self, v): - return _mscl.TransmitPowers_swap(self, v) - - def begin(self): - return _mscl.TransmitPowers_begin(self) - - def end(self): - return _mscl.TransmitPowers_end(self) - - def rbegin(self): - return _mscl.TransmitPowers_rbegin(self) - - def rend(self): - return _mscl.TransmitPowers_rend(self) - - def clear(self): - return _mscl.TransmitPowers_clear(self) - - def get_allocator(self): - return _mscl.TransmitPowers_get_allocator(self) - - def pop_back(self): - return _mscl.TransmitPowers_pop_back(self) - - def erase(self, *args): - return _mscl.TransmitPowers_erase(self, *args) - - def __init__(self, *args): - _mscl.TransmitPowers_swiginit(self, _mscl.new_TransmitPowers(*args)) - - def push_back(self, x): - return _mscl.TransmitPowers_push_back(self, x) - - def front(self): - return _mscl.TransmitPowers_front(self) - - def back(self): - return _mscl.TransmitPowers_back(self) - - def assign(self, n, x): - return _mscl.TransmitPowers_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransmitPowers_resize(self, *args) - - def insert(self, *args): - return _mscl.TransmitPowers_insert(self, *args) - - def reserve(self, n): - return _mscl.TransmitPowers_reserve(self, n) - - def capacity(self): - return _mscl.TransmitPowers_capacity(self) - __swig_destroy__ = _mscl.delete_TransmitPowers - -# Register TransmitPowers in _mscl: -_mscl.TransmitPowers_swigregister(TransmitPowers) - -class ChannelGroupSettings(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroupSettings_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroupSettings___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroupSettings___bool__(self) - - def __len__(self): - return _mscl.ChannelGroupSettings___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroupSettings___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroupSettings___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroupSettings___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroupSettings___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroupSettings___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroupSettings___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroupSettings_pop(self) - - def append(self, x): - return _mscl.ChannelGroupSettings_append(self, x) - - def empty(self): - return _mscl.ChannelGroupSettings_empty(self) - - def size(self): - return _mscl.ChannelGroupSettings_size(self) - - def swap(self, v): - return _mscl.ChannelGroupSettings_swap(self, v) - - def begin(self): - return _mscl.ChannelGroupSettings_begin(self) - - def end(self): - return _mscl.ChannelGroupSettings_end(self) - - def rbegin(self): - return _mscl.ChannelGroupSettings_rbegin(self) - - def rend(self): - return _mscl.ChannelGroupSettings_rend(self) - - def clear(self): - return _mscl.ChannelGroupSettings_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroupSettings_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroupSettings_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroupSettings_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroupSettings_swiginit(self, _mscl.new_ChannelGroupSettings(*args)) - - def push_back(self, x): - return _mscl.ChannelGroupSettings_push_back(self, x) - - def front(self): - return _mscl.ChannelGroupSettings_front(self) - - def back(self): - return _mscl.ChannelGroupSettings_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroupSettings_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroupSettings_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroupSettings_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroupSettings_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroupSettings_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroupSettings - -# Register ChannelGroupSettings in _mscl: -_mscl.ChannelGroupSettings_swigregister(ChannelGroupSettings) - -class FatigueModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.FatigueModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.FatigueModes___nonzero__(self) - - def __bool__(self): - return _mscl.FatigueModes___bool__(self) - - def __len__(self): - return _mscl.FatigueModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.FatigueModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.FatigueModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.FatigueModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.FatigueModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.FatigueModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.FatigueModes___setitem__(self, *args) - - def pop(self): - return _mscl.FatigueModes_pop(self) - - def append(self, x): - return _mscl.FatigueModes_append(self, x) - - def empty(self): - return _mscl.FatigueModes_empty(self) - - def size(self): - return _mscl.FatigueModes_size(self) - - def swap(self, v): - return _mscl.FatigueModes_swap(self, v) - - def begin(self): - return _mscl.FatigueModes_begin(self) - - def end(self): - return _mscl.FatigueModes_end(self) - - def rbegin(self): - return _mscl.FatigueModes_rbegin(self) - - def rend(self): - return _mscl.FatigueModes_rend(self) - - def clear(self): - return _mscl.FatigueModes_clear(self) - - def get_allocator(self): - return _mscl.FatigueModes_get_allocator(self) - - def pop_back(self): - return _mscl.FatigueModes_pop_back(self) - - def erase(self, *args): - return _mscl.FatigueModes_erase(self, *args) - - def __init__(self, *args): - _mscl.FatigueModes_swiginit(self, _mscl.new_FatigueModes(*args)) - - def push_back(self, x): - return _mscl.FatigueModes_push_back(self, x) - - def front(self): - return _mscl.FatigueModes_front(self) - - def back(self): - return _mscl.FatigueModes_back(self) - - def assign(self, n, x): - return _mscl.FatigueModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.FatigueModes_resize(self, *args) - - def insert(self, *args): - return _mscl.FatigueModes_insert(self, *args) - - def reserve(self, n): - return _mscl.FatigueModes_reserve(self, n) - - def capacity(self): - return _mscl.FatigueModes_capacity(self) - __swig_destroy__ = _mscl.delete_FatigueModes - -# Register FatigueModes in _mscl: -_mscl.FatigueModes_swigregister(FatigueModes) - -class Filters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Filters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Filters___nonzero__(self) - - def __bool__(self): - return _mscl.Filters___bool__(self) - - def __len__(self): - return _mscl.Filters___len__(self) - - def __getslice__(self, i, j): - return _mscl.Filters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Filters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Filters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Filters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Filters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Filters___setitem__(self, *args) - - def pop(self): - return _mscl.Filters_pop(self) - - def append(self, x): - return _mscl.Filters_append(self, x) - - def empty(self): - return _mscl.Filters_empty(self) - - def size(self): - return _mscl.Filters_size(self) - - def swap(self, v): - return _mscl.Filters_swap(self, v) - - def begin(self): - return _mscl.Filters_begin(self) - - def end(self): - return _mscl.Filters_end(self) - - def rbegin(self): - return _mscl.Filters_rbegin(self) - - def rend(self): - return _mscl.Filters_rend(self) - - def clear(self): - return _mscl.Filters_clear(self) - - def get_allocator(self): - return _mscl.Filters_get_allocator(self) - - def pop_back(self): - return _mscl.Filters_pop_back(self) - - def erase(self, *args): - return _mscl.Filters_erase(self, *args) - - def __init__(self, *args): - _mscl.Filters_swiginit(self, _mscl.new_Filters(*args)) - - def push_back(self, x): - return _mscl.Filters_push_back(self, x) - - def front(self): - return _mscl.Filters_front(self) - - def back(self): - return _mscl.Filters_back(self) - - def assign(self, n, x): - return _mscl.Filters_assign(self, n, x) - - def resize(self, *args): - return _mscl.Filters_resize(self, *args) - - def insert(self, *args): - return _mscl.Filters_insert(self, *args) - - def reserve(self, n): - return _mscl.Filters_reserve(self, n) - - def capacity(self): - return _mscl.Filters_capacity(self) - __swig_destroy__ = _mscl.delete_Filters - -# Register Filters in _mscl: -_mscl.Filters_swigregister(Filters) - -class HighPassFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HighPassFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HighPassFilters___nonzero__(self) - - def __bool__(self): - return _mscl.HighPassFilters___bool__(self) - - def __len__(self): - return _mscl.HighPassFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.HighPassFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HighPassFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HighPassFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HighPassFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HighPassFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HighPassFilters___setitem__(self, *args) - - def pop(self): - return _mscl.HighPassFilters_pop(self) - - def append(self, x): - return _mscl.HighPassFilters_append(self, x) - - def empty(self): - return _mscl.HighPassFilters_empty(self) - - def size(self): - return _mscl.HighPassFilters_size(self) - - def swap(self, v): - return _mscl.HighPassFilters_swap(self, v) - - def begin(self): - return _mscl.HighPassFilters_begin(self) - - def end(self): - return _mscl.HighPassFilters_end(self) - - def rbegin(self): - return _mscl.HighPassFilters_rbegin(self) - - def rend(self): - return _mscl.HighPassFilters_rend(self) - - def clear(self): - return _mscl.HighPassFilters_clear(self) - - def get_allocator(self): - return _mscl.HighPassFilters_get_allocator(self) - - def pop_back(self): - return _mscl.HighPassFilters_pop_back(self) - - def erase(self, *args): - return _mscl.HighPassFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.HighPassFilters_swiginit(self, _mscl.new_HighPassFilters(*args)) - - def push_back(self, x): - return _mscl.HighPassFilters_push_back(self, x) - - def front(self): - return _mscl.HighPassFilters_front(self) - - def back(self): - return _mscl.HighPassFilters_back(self) - - def assign(self, n, x): - return _mscl.HighPassFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.HighPassFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.HighPassFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.HighPassFilters_reserve(self, n) - - def capacity(self): - return _mscl.HighPassFilters_capacity(self) - __swig_destroy__ = _mscl.delete_HighPassFilters - -# Register HighPassFilters in _mscl: -_mscl.HighPassFilters_swigregister(HighPassFilters) - -class StorageLimitModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StorageLimitModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StorageLimitModes___nonzero__(self) - - def __bool__(self): - return _mscl.StorageLimitModes___bool__(self) - - def __len__(self): - return _mscl.StorageLimitModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.StorageLimitModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StorageLimitModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StorageLimitModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StorageLimitModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StorageLimitModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StorageLimitModes___setitem__(self, *args) - - def pop(self): - return _mscl.StorageLimitModes_pop(self) - - def append(self, x): - return _mscl.StorageLimitModes_append(self, x) - - def empty(self): - return _mscl.StorageLimitModes_empty(self) - - def size(self): - return _mscl.StorageLimitModes_size(self) - - def swap(self, v): - return _mscl.StorageLimitModes_swap(self, v) - - def begin(self): - return _mscl.StorageLimitModes_begin(self) - - def end(self): - return _mscl.StorageLimitModes_end(self) - - def rbegin(self): - return _mscl.StorageLimitModes_rbegin(self) - - def rend(self): - return _mscl.StorageLimitModes_rend(self) - - def clear(self): - return _mscl.StorageLimitModes_clear(self) - - def get_allocator(self): - return _mscl.StorageLimitModes_get_allocator(self) - - def pop_back(self): - return _mscl.StorageLimitModes_pop_back(self) - - def erase(self, *args): - return _mscl.StorageLimitModes_erase(self, *args) - - def __init__(self, *args): - _mscl.StorageLimitModes_swiginit(self, _mscl.new_StorageLimitModes(*args)) - - def push_back(self, x): - return _mscl.StorageLimitModes_push_back(self, x) - - def front(self): - return _mscl.StorageLimitModes_front(self) - - def back(self): - return _mscl.StorageLimitModes_back(self) - - def assign(self, n, x): - return _mscl.StorageLimitModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.StorageLimitModes_resize(self, *args) - - def insert(self, *args): - return _mscl.StorageLimitModes_insert(self, *args) - - def reserve(self, n): - return _mscl.StorageLimitModes_reserve(self, n) - - def capacity(self): - return _mscl.StorageLimitModes_capacity(self) - __swig_destroy__ = _mscl.delete_StorageLimitModes - -# Register StorageLimitModes in _mscl: -_mscl.StorageLimitModes_swigregister(StorageLimitModes) - -class InputRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.InputRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.InputRanges___nonzero__(self) - - def __bool__(self): - return _mscl.InputRanges___bool__(self) - - def __len__(self): - return _mscl.InputRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.InputRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.InputRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.InputRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.InputRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.InputRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.InputRanges___setitem__(self, *args) - - def pop(self): - return _mscl.InputRanges_pop(self) - - def append(self, x): - return _mscl.InputRanges_append(self, x) - - def empty(self): - return _mscl.InputRanges_empty(self) - - def size(self): - return _mscl.InputRanges_size(self) - - def swap(self, v): - return _mscl.InputRanges_swap(self, v) - - def begin(self): - return _mscl.InputRanges_begin(self) - - def end(self): - return _mscl.InputRanges_end(self) - - def rbegin(self): - return _mscl.InputRanges_rbegin(self) - - def rend(self): - return _mscl.InputRanges_rend(self) - - def clear(self): - return _mscl.InputRanges_clear(self) - - def get_allocator(self): - return _mscl.InputRanges_get_allocator(self) - - def pop_back(self): - return _mscl.InputRanges_pop_back(self) - - def erase(self, *args): - return _mscl.InputRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.InputRanges_swiginit(self, _mscl.new_InputRanges(*args)) - - def push_back(self, x): - return _mscl.InputRanges_push_back(self, x) - - def front(self): - return _mscl.InputRanges_front(self) - - def back(self): - return _mscl.InputRanges_back(self) - - def assign(self, n, x): - return _mscl.InputRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.InputRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.InputRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.InputRanges_reserve(self, n) - - def capacity(self): - return _mscl.InputRanges_capacity(self) - __swig_destroy__ = _mscl.delete_InputRanges - -# Register InputRanges in _mscl: -_mscl.InputRanges_swigregister(InputRanges) - -class DataModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataModes___nonzero__(self) - - def __bool__(self): - return _mscl.DataModes___bool__(self) - - def __len__(self): - return _mscl.DataModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataModes___setitem__(self, *args) - - def pop(self): - return _mscl.DataModes_pop(self) - - def append(self, x): - return _mscl.DataModes_append(self, x) - - def empty(self): - return _mscl.DataModes_empty(self) - - def size(self): - return _mscl.DataModes_size(self) - - def swap(self, v): - return _mscl.DataModes_swap(self, v) - - def begin(self): - return _mscl.DataModes_begin(self) - - def end(self): - return _mscl.DataModes_end(self) - - def rbegin(self): - return _mscl.DataModes_rbegin(self) - - def rend(self): - return _mscl.DataModes_rend(self) - - def clear(self): - return _mscl.DataModes_clear(self) - - def get_allocator(self): - return _mscl.DataModes_get_allocator(self) - - def pop_back(self): - return _mscl.DataModes_pop_back(self) - - def erase(self, *args): - return _mscl.DataModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DataModes_swiginit(self, _mscl.new_DataModes(*args)) - - def push_back(self, x): - return _mscl.DataModes_push_back(self, x) - - def front(self): - return _mscl.DataModes_front(self) - - def back(self): - return _mscl.DataModes_back(self) - - def assign(self, n, x): - return _mscl.DataModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DataModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DataModes_reserve(self, n) - - def capacity(self): - return _mscl.DataModes_capacity(self) - __swig_destroy__ = _mscl.delete_DataModes - -# Register DataModes in _mscl: -_mscl.DataModes_swigregister(DataModes) - -class CommProtocols(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommProtocols_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommProtocols___nonzero__(self) - - def __bool__(self): - return _mscl.CommProtocols___bool__(self) - - def __len__(self): - return _mscl.CommProtocols___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommProtocols___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommProtocols___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommProtocols___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommProtocols___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommProtocols___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommProtocols___setitem__(self, *args) - - def pop(self): - return _mscl.CommProtocols_pop(self) - - def append(self, x): - return _mscl.CommProtocols_append(self, x) - - def empty(self): - return _mscl.CommProtocols_empty(self) - - def size(self): - return _mscl.CommProtocols_size(self) - - def swap(self, v): - return _mscl.CommProtocols_swap(self, v) - - def begin(self): - return _mscl.CommProtocols_begin(self) - - def end(self): - return _mscl.CommProtocols_end(self) - - def rbegin(self): - return _mscl.CommProtocols_rbegin(self) - - def rend(self): - return _mscl.CommProtocols_rend(self) - - def clear(self): - return _mscl.CommProtocols_clear(self) - - def get_allocator(self): - return _mscl.CommProtocols_get_allocator(self) - - def pop_back(self): - return _mscl.CommProtocols_pop_back(self) - - def erase(self, *args): - return _mscl.CommProtocols_erase(self, *args) - - def __init__(self, *args): - _mscl.CommProtocols_swiginit(self, _mscl.new_CommProtocols(*args)) - - def push_back(self, x): - return _mscl.CommProtocols_push_back(self, x) - - def front(self): - return _mscl.CommProtocols_front(self) - - def back(self): - return _mscl.CommProtocols_back(self) - - def assign(self, n, x): - return _mscl.CommProtocols_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommProtocols_resize(self, *args) - - def insert(self, *args): - return _mscl.CommProtocols_insert(self, *args) - - def reserve(self, n): - return _mscl.CommProtocols_reserve(self, n) - - def capacity(self): - return _mscl.CommProtocols_capacity(self) - __swig_destroy__ = _mscl.delete_CommProtocols - -# Register CommProtocols in _mscl: -_mscl.CommProtocols_swigregister(CommProtocols) - -class Voltages(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Voltages_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Voltages___nonzero__(self) - - def __bool__(self): - return _mscl.Voltages___bool__(self) - - def __len__(self): - return _mscl.Voltages___len__(self) - - def __getslice__(self, i, j): - return _mscl.Voltages___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Voltages___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Voltages___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Voltages___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Voltages___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Voltages___setitem__(self, *args) - - def pop(self): - return _mscl.Voltages_pop(self) - - def append(self, x): - return _mscl.Voltages_append(self, x) - - def empty(self): - return _mscl.Voltages_empty(self) - - def size(self): - return _mscl.Voltages_size(self) - - def swap(self, v): - return _mscl.Voltages_swap(self, v) - - def begin(self): - return _mscl.Voltages_begin(self) - - def end(self): - return _mscl.Voltages_end(self) - - def rbegin(self): - return _mscl.Voltages_rbegin(self) - - def rend(self): - return _mscl.Voltages_rend(self) - - def clear(self): - return _mscl.Voltages_clear(self) - - def get_allocator(self): - return _mscl.Voltages_get_allocator(self) - - def pop_back(self): - return _mscl.Voltages_pop_back(self) - - def erase(self, *args): - return _mscl.Voltages_erase(self, *args) - - def __init__(self, *args): - _mscl.Voltages_swiginit(self, _mscl.new_Voltages(*args)) - - def push_back(self, x): - return _mscl.Voltages_push_back(self, x) - - def front(self): - return _mscl.Voltages_front(self) - - def back(self): - return _mscl.Voltages_back(self) - - def assign(self, n, x): - return _mscl.Voltages_assign(self, n, x) - - def resize(self, *args): - return _mscl.Voltages_resize(self, *args) - - def insert(self, *args): - return _mscl.Voltages_insert(self, *args) - - def reserve(self, n): - return _mscl.Voltages_reserve(self, n) - - def capacity(self): - return _mscl.Voltages_capacity(self) - __swig_destroy__ = _mscl.delete_Voltages - -# Register Voltages in _mscl: -_mscl.Voltages_swigregister(Voltages) - -class SensorOutputModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorOutputModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorOutputModes___nonzero__(self) - - def __bool__(self): - return _mscl.SensorOutputModes___bool__(self) - - def __len__(self): - return _mscl.SensorOutputModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorOutputModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorOutputModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorOutputModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorOutputModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorOutputModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorOutputModes___setitem__(self, *args) - - def pop(self): - return _mscl.SensorOutputModes_pop(self) - - def append(self, x): - return _mscl.SensorOutputModes_append(self, x) - - def empty(self): - return _mscl.SensorOutputModes_empty(self) - - def size(self): - return _mscl.SensorOutputModes_size(self) - - def swap(self, v): - return _mscl.SensorOutputModes_swap(self, v) - - def begin(self): - return _mscl.SensorOutputModes_begin(self) - - def end(self): - return _mscl.SensorOutputModes_end(self) - - def rbegin(self): - return _mscl.SensorOutputModes_rbegin(self) - - def rend(self): - return _mscl.SensorOutputModes_rend(self) - - def clear(self): - return _mscl.SensorOutputModes_clear(self) - - def get_allocator(self): - return _mscl.SensorOutputModes_get_allocator(self) - - def pop_back(self): - return _mscl.SensorOutputModes_pop_back(self) - - def erase(self, *args): - return _mscl.SensorOutputModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorOutputModes_swiginit(self, _mscl.new_SensorOutputModes(*args)) - - def push_back(self, x): - return _mscl.SensorOutputModes_push_back(self, x) - - def front(self): - return _mscl.SensorOutputModes_front(self) - - def back(self): - return _mscl.SensorOutputModes_back(self) - - def assign(self, n, x): - return _mscl.SensorOutputModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorOutputModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorOutputModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorOutputModes_reserve(self, n) - - def capacity(self): - return _mscl.SensorOutputModes_capacity(self) - __swig_destroy__ = _mscl.delete_SensorOutputModes - -# Register SensorOutputModes in _mscl: -_mscl.SensorOutputModes_swigregister(SensorOutputModes) - -class CfcFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CfcFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CfcFilters___nonzero__(self) - - def __bool__(self): - return _mscl.CfcFilters___bool__(self) - - def __len__(self): - return _mscl.CfcFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.CfcFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CfcFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CfcFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CfcFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CfcFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CfcFilters___setitem__(self, *args) - - def pop(self): - return _mscl.CfcFilters_pop(self) - - def append(self, x): - return _mscl.CfcFilters_append(self, x) - - def empty(self): - return _mscl.CfcFilters_empty(self) - - def size(self): - return _mscl.CfcFilters_size(self) - - def swap(self, v): - return _mscl.CfcFilters_swap(self, v) - - def begin(self): - return _mscl.CfcFilters_begin(self) - - def end(self): - return _mscl.CfcFilters_end(self) - - def rbegin(self): - return _mscl.CfcFilters_rbegin(self) - - def rend(self): - return _mscl.CfcFilters_rend(self) - - def clear(self): - return _mscl.CfcFilters_clear(self) - - def get_allocator(self): - return _mscl.CfcFilters_get_allocator(self) - - def pop_back(self): - return _mscl.CfcFilters_pop_back(self) - - def erase(self, *args): - return _mscl.CfcFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.CfcFilters_swiginit(self, _mscl.new_CfcFilters(*args)) - - def push_back(self, x): - return _mscl.CfcFilters_push_back(self, x) - - def front(self): - return _mscl.CfcFilters_front(self) - - def back(self): - return _mscl.CfcFilters_back(self) - - def assign(self, n, x): - return _mscl.CfcFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.CfcFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.CfcFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.CfcFilters_reserve(self, n) - - def capacity(self): - return _mscl.CfcFilters_capacity(self) - __swig_destroy__ = _mscl.delete_CfcFilters - -# Register CfcFilters in _mscl: -_mscl.CfcFilters_swigregister(CfcFilters) - -class TransducerTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransducerTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransducerTypes___nonzero__(self) - - def __bool__(self): - return _mscl.TransducerTypes___bool__(self) - - def __len__(self): - return _mscl.TransducerTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransducerTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransducerTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransducerTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransducerTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransducerTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransducerTypes___setitem__(self, *args) - - def pop(self): - return _mscl.TransducerTypes_pop(self) - - def append(self, x): - return _mscl.TransducerTypes_append(self, x) - - def empty(self): - return _mscl.TransducerTypes_empty(self) - - def size(self): - return _mscl.TransducerTypes_size(self) - - def swap(self, v): - return _mscl.TransducerTypes_swap(self, v) - - def begin(self): - return _mscl.TransducerTypes_begin(self) - - def end(self): - return _mscl.TransducerTypes_end(self) - - def rbegin(self): - return _mscl.TransducerTypes_rbegin(self) - - def rend(self): - return _mscl.TransducerTypes_rend(self) - - def clear(self): - return _mscl.TransducerTypes_clear(self) - - def get_allocator(self): - return _mscl.TransducerTypes_get_allocator(self) - - def pop_back(self): - return _mscl.TransducerTypes_pop_back(self) - - def erase(self, *args): - return _mscl.TransducerTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.TransducerTypes_swiginit(self, _mscl.new_TransducerTypes(*args)) - - def push_back(self, x): - return _mscl.TransducerTypes_push_back(self, x) - - def front(self): - return _mscl.TransducerTypes_front(self) - - def back(self): - return _mscl.TransducerTypes_back(self) - - def assign(self, n, x): - return _mscl.TransducerTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransducerTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.TransducerTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.TransducerTypes_reserve(self, n) - - def capacity(self): - return _mscl.TransducerTypes_capacity(self) - __swig_destroy__ = _mscl.delete_TransducerTypes - -# Register TransducerTypes in _mscl: -_mscl.TransducerTypes_swigregister(TransducerTypes) - -class EepromMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EepromMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EepromMap___nonzero__(self) - - def __bool__(self): - return _mscl.EepromMap___bool__(self) - - def __len__(self): - return _mscl.EepromMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.EepromMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.EepromMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.EepromMap_has_key(self, key) - - def keys(self): - return _mscl.EepromMap_keys(self) - - def values(self): - return _mscl.EepromMap_values(self) - - def items(self): - return _mscl.EepromMap_items(self) - - def __contains__(self, key): - return _mscl.EepromMap___contains__(self, key) - - def key_iterator(self): - return _mscl.EepromMap_key_iterator(self) - - def value_iterator(self): - return _mscl.EepromMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.EepromMap___setitem__(self, *args) - - def asdict(self): - return _mscl.EepromMap_asdict(self) - - def __init__(self, *args): - _mscl.EepromMap_swiginit(self, _mscl.new_EepromMap(*args)) - - def empty(self): - return _mscl.EepromMap_empty(self) - - def size(self): - return _mscl.EepromMap_size(self) - - def swap(self, v): - return _mscl.EepromMap_swap(self, v) - - def begin(self): - return _mscl.EepromMap_begin(self) - - def end(self): - return _mscl.EepromMap_end(self) - - def rbegin(self): - return _mscl.EepromMap_rbegin(self) - - def rend(self): - return _mscl.EepromMap_rend(self) - - def clear(self): - return _mscl.EepromMap_clear(self) - - def get_allocator(self): - return _mscl.EepromMap_get_allocator(self) - - def count(self, x): - return _mscl.EepromMap_count(self, x) - - def erase(self, *args): - return _mscl.EepromMap_erase(self, *args) - - def find(self, x): - return _mscl.EepromMap_find(self, x) - - def lower_bound(self, x): - return _mscl.EepromMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.EepromMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_EepromMap - -# Register EepromMap in _mscl: -_mscl.EepromMap_swigregister(EepromMap) - -class DerivedChannelMasks(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DerivedChannelMasks_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DerivedChannelMasks___nonzero__(self) - - def __bool__(self): - return _mscl.DerivedChannelMasks___bool__(self) - - def __len__(self): - return _mscl.DerivedChannelMasks___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DerivedChannelMasks___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DerivedChannelMasks___delitem__(self, key) - - def has_key(self, key): - return _mscl.DerivedChannelMasks_has_key(self, key) - - def keys(self): - return _mscl.DerivedChannelMasks_keys(self) - - def values(self): - return _mscl.DerivedChannelMasks_values(self) - - def items(self): - return _mscl.DerivedChannelMasks_items(self) - - def __contains__(self, key): - return _mscl.DerivedChannelMasks___contains__(self, key) - - def key_iterator(self): - return _mscl.DerivedChannelMasks_key_iterator(self) - - def value_iterator(self): - return _mscl.DerivedChannelMasks_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DerivedChannelMasks___setitem__(self, *args) - - def asdict(self): - return _mscl.DerivedChannelMasks_asdict(self) - - def __init__(self, *args): - _mscl.DerivedChannelMasks_swiginit(self, _mscl.new_DerivedChannelMasks(*args)) - - def empty(self): - return _mscl.DerivedChannelMasks_empty(self) - - def size(self): - return _mscl.DerivedChannelMasks_size(self) - - def swap(self, v): - return _mscl.DerivedChannelMasks_swap(self, v) - - def begin(self): - return _mscl.DerivedChannelMasks_begin(self) - - def end(self): - return _mscl.DerivedChannelMasks_end(self) - - def rbegin(self): - return _mscl.DerivedChannelMasks_rbegin(self) - - def rend(self): - return _mscl.DerivedChannelMasks_rend(self) - - def clear(self): - return _mscl.DerivedChannelMasks_clear(self) - - def get_allocator(self): - return _mscl.DerivedChannelMasks_get_allocator(self) - - def count(self, x): - return _mscl.DerivedChannelMasks_count(self, x) - - def erase(self, *args): - return _mscl.DerivedChannelMasks_erase(self, *args) - - def find(self, x): - return _mscl.DerivedChannelMasks_find(self, x) - - def lower_bound(self, x): - return _mscl.DerivedChannelMasks_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DerivedChannelMasks_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DerivedChannelMasks - -# Register DerivedChannelMasks in _mscl: -_mscl.DerivedChannelMasks_swigregister(DerivedChannelMasks) - -class DeviceStatusMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusMap_keys(self) - - def values(self): - return _mscl.DeviceStatusMap_values(self) - - def items(self): - return _mscl.DeviceStatusMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusMap_swiginit(self, _mscl.new_DeviceStatusMap(*args)) - - def empty(self): - return _mscl.DeviceStatusMap_empty(self) - - def size(self): - return _mscl.DeviceStatusMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusMap_begin(self) - - def end(self): - return _mscl.DeviceStatusMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusMap - -# Register DeviceStatusMap in _mscl: -_mscl.DeviceStatusMap_swigregister(DeviceStatusMap) - -class DeviceStatusValueMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusValueMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusValueMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusValueMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusValueMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusValueMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusValueMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusValueMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusValueMap_keys(self) - - def values(self): - return _mscl.DeviceStatusValueMap_values(self) - - def items(self): - return _mscl.DeviceStatusValueMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusValueMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusValueMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusValueMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusValueMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusValueMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusValueMap_swiginit(self, _mscl.new_DeviceStatusValueMap(*args)) - - def empty(self): - return _mscl.DeviceStatusValueMap_empty(self) - - def size(self): - return _mscl.DeviceStatusValueMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusValueMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusValueMap_begin(self) - - def end(self): - return _mscl.DeviceStatusValueMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusValueMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusValueMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusValueMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusValueMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusValueMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusValueMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusValueMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusValueMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusValueMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusValueMap - -# Register DeviceStatusValueMap in _mscl: -_mscl.DeviceStatusValueMap_swigregister(DeviceStatusValueMap) - -class SampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.SampleRates___bool__(self) - - def __len__(self): - return _mscl.SampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.SampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.SampleRates_pop(self) - - def append(self, x): - return _mscl.SampleRates_append(self, x) - - def empty(self): - return _mscl.SampleRates_empty(self) - - def size(self): - return _mscl.SampleRates_size(self) - - def swap(self, v): - return _mscl.SampleRates_swap(self, v) - - def begin(self): - return _mscl.SampleRates_begin(self) - - def end(self): - return _mscl.SampleRates_end(self) - - def rbegin(self): - return _mscl.SampleRates_rbegin(self) - - def rend(self): - return _mscl.SampleRates_rend(self) - - def clear(self): - return _mscl.SampleRates_clear(self) - - def get_allocator(self): - return _mscl.SampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.SampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.SampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.SampleRates_swiginit(self, _mscl.new_SampleRates(*args)) - - def push_back(self, x): - return _mscl.SampleRates_push_back(self, x) - - def front(self): - return _mscl.SampleRates_front(self) - - def back(self): - return _mscl.SampleRates_back(self) - - def assign(self, n, x): - return _mscl.SampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.SampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.SampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.SampleRates_reserve(self, n) - - def capacity(self): - return _mscl.SampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_SampleRates - -# Register SampleRates in _mscl: -_mscl.SampleRates_swigregister(SampleRates) - -class ConfigIssues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConfigIssues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConfigIssues___nonzero__(self) - - def __bool__(self): - return _mscl.ConfigIssues___bool__(self) - - def __len__(self): - return _mscl.ConfigIssues___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConfigIssues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConfigIssues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConfigIssues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConfigIssues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConfigIssues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConfigIssues___setitem__(self, *args) - - def pop(self): - return _mscl.ConfigIssues_pop(self) - - def append(self, x): - return _mscl.ConfigIssues_append(self, x) - - def empty(self): - return _mscl.ConfigIssues_empty(self) - - def size(self): - return _mscl.ConfigIssues_size(self) - - def swap(self, v): - return _mscl.ConfigIssues_swap(self, v) - - def begin(self): - return _mscl.ConfigIssues_begin(self) - - def end(self): - return _mscl.ConfigIssues_end(self) - - def rbegin(self): - return _mscl.ConfigIssues_rbegin(self) - - def rend(self): - return _mscl.ConfigIssues_rend(self) - - def clear(self): - return _mscl.ConfigIssues_clear(self) - - def get_allocator(self): - return _mscl.ConfigIssues_get_allocator(self) - - def pop_back(self): - return _mscl.ConfigIssues_pop_back(self) - - def erase(self, *args): - return _mscl.ConfigIssues_erase(self, *args) - - def __init__(self, *args): - _mscl.ConfigIssues_swiginit(self, _mscl.new_ConfigIssues(*args)) - - def push_back(self, x): - return _mscl.ConfigIssues_push_back(self, x) - - def front(self): - return _mscl.ConfigIssues_front(self) - - def back(self): - return _mscl.ConfigIssues_back(self) - - def assign(self, n, x): - return _mscl.ConfigIssues_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConfigIssues_resize(self, *args) - - def insert(self, *args): - return _mscl.ConfigIssues_insert(self, *args) - - def reserve(self, n): - return _mscl.ConfigIssues_reserve(self, n) - - def capacity(self): - return _mscl.ConfigIssues_capacity(self) - __swig_destroy__ = _mscl.delete_ConfigIssues - -# Register ConfigIssues in _mscl: -_mscl.ConfigIssues_swigregister(ConfigIssues) - -class MipChannelFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelFields_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelFields___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelFields___bool__(self) - - def __len__(self): - return _mscl.MipChannelFields___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelFields___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelFields___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelFields___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelFields___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelFields___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelFields___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelFields_pop(self) - - def append(self, x): - return _mscl.MipChannelFields_append(self, x) - - def empty(self): - return _mscl.MipChannelFields_empty(self) - - def size(self): - return _mscl.MipChannelFields_size(self) - - def swap(self, v): - return _mscl.MipChannelFields_swap(self, v) - - def begin(self): - return _mscl.MipChannelFields_begin(self) - - def end(self): - return _mscl.MipChannelFields_end(self) - - def rbegin(self): - return _mscl.MipChannelFields_rbegin(self) - - def rend(self): - return _mscl.MipChannelFields_rend(self) - - def clear(self): - return _mscl.MipChannelFields_clear(self) - - def get_allocator(self): - return _mscl.MipChannelFields_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelFields_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelFields_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelFields_swiginit(self, _mscl.new_MipChannelFields(*args)) - - def push_back(self, x): - return _mscl.MipChannelFields_push_back(self, x) - - def front(self): - return _mscl.MipChannelFields_front(self) - - def back(self): - return _mscl.MipChannelFields_back(self) - - def assign(self, n, x): - return _mscl.MipChannelFields_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelFields_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelFields_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelFields_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelFields_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelFields - -# Register MipChannelFields in _mscl: -_mscl.MipChannelFields_swigregister(MipChannelFields) - -class MipCommands(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommands_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommands___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommands___bool__(self) - - def __len__(self): - return _mscl.MipCommands___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommands___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommands___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommands___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommands___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommands___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommands___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommands_pop(self) - - def append(self, x): - return _mscl.MipCommands_append(self, x) - - def empty(self): - return _mscl.MipCommands_empty(self) - - def size(self): - return _mscl.MipCommands_size(self) - - def swap(self, v): - return _mscl.MipCommands_swap(self, v) - - def begin(self): - return _mscl.MipCommands_begin(self) - - def end(self): - return _mscl.MipCommands_end(self) - - def rbegin(self): - return _mscl.MipCommands_rbegin(self) - - def rend(self): - return _mscl.MipCommands_rend(self) - - def clear(self): - return _mscl.MipCommands_clear(self) - - def get_allocator(self): - return _mscl.MipCommands_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommands_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommands_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommands_swiginit(self, _mscl.new_MipCommands(*args)) - - def push_back(self, x): - return _mscl.MipCommands_push_back(self, x) - - def front(self): - return _mscl.MipCommands_front(self) - - def back(self): - return _mscl.MipCommands_back(self) - - def assign(self, n, x): - return _mscl.MipCommands_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommands_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommands_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommands_reserve(self, n) - - def capacity(self): - return _mscl.MipCommands_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommands - -# Register MipCommands in _mscl: -_mscl.MipCommands_swigregister(MipCommands) - -class MipDataClasses(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataClasses_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataClasses___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataClasses___bool__(self) - - def __len__(self): - return _mscl.MipDataClasses___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataClasses___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataClasses___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataClasses___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataClasses___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataClasses___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataClasses___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataClasses_pop(self) - - def append(self, x): - return _mscl.MipDataClasses_append(self, x) - - def empty(self): - return _mscl.MipDataClasses_empty(self) - - def size(self): - return _mscl.MipDataClasses_size(self) - - def swap(self, v): - return _mscl.MipDataClasses_swap(self, v) - - def begin(self): - return _mscl.MipDataClasses_begin(self) - - def end(self): - return _mscl.MipDataClasses_end(self) - - def rbegin(self): - return _mscl.MipDataClasses_rbegin(self) - - def rend(self): - return _mscl.MipDataClasses_rend(self) - - def clear(self): - return _mscl.MipDataClasses_clear(self) - - def get_allocator(self): - return _mscl.MipDataClasses_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataClasses_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataClasses_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataClasses_swiginit(self, _mscl.new_MipDataClasses(*args)) - - def push_back(self, x): - return _mscl.MipDataClasses_push_back(self, x) - - def front(self): - return _mscl.MipDataClasses_front(self) - - def back(self): - return _mscl.MipDataClasses_back(self) - - def assign(self, n, x): - return _mscl.MipDataClasses_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataClasses_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataClasses_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataClasses_reserve(self, n) - - def capacity(self): - return _mscl.MipDataClasses_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataClasses - -# Register MipDataClasses in _mscl: -_mscl.MipDataClasses_swigregister(MipDataClasses) - -class MipChannelIdentifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelIdentifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelIdentifiers___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelIdentifiers___bool__(self) - - def __len__(self): - return _mscl.MipChannelIdentifiers___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelIdentifiers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelIdentifiers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelIdentifiers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelIdentifiers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelIdentifiers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelIdentifiers___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelIdentifiers_pop(self) - - def append(self, x): - return _mscl.MipChannelIdentifiers_append(self, x) - - def empty(self): - return _mscl.MipChannelIdentifiers_empty(self) - - def size(self): - return _mscl.MipChannelIdentifiers_size(self) - - def swap(self, v): - return _mscl.MipChannelIdentifiers_swap(self, v) - - def begin(self): - return _mscl.MipChannelIdentifiers_begin(self) - - def end(self): - return _mscl.MipChannelIdentifiers_end(self) - - def rbegin(self): - return _mscl.MipChannelIdentifiers_rbegin(self) - - def rend(self): - return _mscl.MipChannelIdentifiers_rend(self) - - def clear(self): - return _mscl.MipChannelIdentifiers_clear(self) - - def get_allocator(self): - return _mscl.MipChannelIdentifiers_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelIdentifiers_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelIdentifiers_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelIdentifiers_swiginit(self, _mscl.new_MipChannelIdentifiers(*args)) - - def push_back(self, x): - return _mscl.MipChannelIdentifiers_push_back(self, x) - - def front(self): - return _mscl.MipChannelIdentifiers_front(self) - - def back(self): - return _mscl.MipChannelIdentifiers_back(self) - - def assign(self, n, x): - return _mscl.MipChannelIdentifiers_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelIdentifiers_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelIdentifiers_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelIdentifiers_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelIdentifiers_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelIdentifiers - -# Register MipChannelIdentifiers in _mscl: -_mscl.MipChannelIdentifiers_swigregister(MipChannelIdentifiers) - -class MipCommandSet(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandSet_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandSet___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandSet___bool__(self) - - def __len__(self): - return _mscl.MipCommandSet___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandSet___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandSet___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandSet___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandSet___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandSet___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandSet___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandSet_pop(self) - - def append(self, x): - return _mscl.MipCommandSet_append(self, x) - - def empty(self): - return _mscl.MipCommandSet_empty(self) - - def size(self): - return _mscl.MipCommandSet_size(self) - - def swap(self, v): - return _mscl.MipCommandSet_swap(self, v) - - def begin(self): - return _mscl.MipCommandSet_begin(self) - - def end(self): - return _mscl.MipCommandSet_end(self) - - def rbegin(self): - return _mscl.MipCommandSet_rbegin(self) - - def rend(self): - return _mscl.MipCommandSet_rend(self) - - def clear(self): - return _mscl.MipCommandSet_clear(self) - - def get_allocator(self): - return _mscl.MipCommandSet_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandSet_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandSet_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandSet_swiginit(self, _mscl.new_MipCommandSet(*args)) - - def push_back(self, x): - return _mscl.MipCommandSet_push_back(self, x) - - def front(self): - return _mscl.MipCommandSet_front(self) - - def back(self): - return _mscl.MipCommandSet_back(self) - - def assign(self, n, x): - return _mscl.MipCommandSet_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandSet_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandSet_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandSet_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandSet_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandSet - -# Register MipCommandSet in _mscl: -_mscl.MipCommandSet_swigregister(MipCommandSet) - -class MipFieldValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipFieldValues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipFieldValues___nonzero__(self) - - def __bool__(self): - return _mscl.MipFieldValues___bool__(self) - - def __len__(self): - return _mscl.MipFieldValues___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipFieldValues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipFieldValues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipFieldValues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipFieldValues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipFieldValues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipFieldValues___setitem__(self, *args) - - def pop(self): - return _mscl.MipFieldValues_pop(self) - - def append(self, x): - return _mscl.MipFieldValues_append(self, x) - - def empty(self): - return _mscl.MipFieldValues_empty(self) - - def size(self): - return _mscl.MipFieldValues_size(self) - - def swap(self, v): - return _mscl.MipFieldValues_swap(self, v) - - def begin(self): - return _mscl.MipFieldValues_begin(self) - - def end(self): - return _mscl.MipFieldValues_end(self) - - def rbegin(self): - return _mscl.MipFieldValues_rbegin(self) - - def rend(self): - return _mscl.MipFieldValues_rend(self) - - def clear(self): - return _mscl.MipFieldValues_clear(self) - - def get_allocator(self): - return _mscl.MipFieldValues_get_allocator(self) - - def pop_back(self): - return _mscl.MipFieldValues_pop_back(self) - - def erase(self, *args): - return _mscl.MipFieldValues_erase(self, *args) - - def __init__(self, *args): - _mscl.MipFieldValues_swiginit(self, _mscl.new_MipFieldValues(*args)) - - def push_back(self, x): - return _mscl.MipFieldValues_push_back(self, x) - - def front(self): - return _mscl.MipFieldValues_front(self) - - def back(self): - return _mscl.MipFieldValues_back(self) - - def assign(self, n, x): - return _mscl.MipFieldValues_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipFieldValues_resize(self, *args) - - def insert(self, *args): - return _mscl.MipFieldValues_insert(self, *args) - - def reserve(self, n): - return _mscl.MipFieldValues_reserve(self, n) - - def capacity(self): - return _mscl.MipFieldValues_capacity(self) - __swig_destroy__ = _mscl.delete_MipFieldValues - -# Register MipFieldValues in _mscl: -_mscl.MipFieldValues_swigregister(MipFieldValues) - -class MipCommandParamPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipCommandParamPair_swiginit(self, _mscl.new_MipCommandParamPair(*args)) - first = property(_mscl.MipCommandParamPair_first_get, _mscl.MipCommandParamPair_first_set) - second = property(_mscl.MipCommandParamPair_second_get, _mscl.MipCommandParamPair_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_MipCommandParamPair - -# Register MipCommandParamPair in _mscl: -_mscl.MipCommandParamPair_swigregister(MipCommandParamPair) - -class MipCommandParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandParameters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandParameters___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandParameters___bool__(self) - - def __len__(self): - return _mscl.MipCommandParameters___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandParameters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandParameters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandParameters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandParameters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandParameters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandParameters___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandParameters_pop(self) - - def append(self, x): - return _mscl.MipCommandParameters_append(self, x) - - def empty(self): - return _mscl.MipCommandParameters_empty(self) - - def size(self): - return _mscl.MipCommandParameters_size(self) - - def swap(self, v): - return _mscl.MipCommandParameters_swap(self, v) - - def begin(self): - return _mscl.MipCommandParameters_begin(self) - - def end(self): - return _mscl.MipCommandParameters_end(self) - - def rbegin(self): - return _mscl.MipCommandParameters_rbegin(self) - - def rend(self): - return _mscl.MipCommandParameters_rend(self) - - def clear(self): - return _mscl.MipCommandParameters_clear(self) - - def get_allocator(self): - return _mscl.MipCommandParameters_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandParameters_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandParameters_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandParameters_swiginit(self, _mscl.new_MipCommandParameters(*args)) - - def push_back(self, x): - return _mscl.MipCommandParameters_push_back(self, x) - - def front(self): - return _mscl.MipCommandParameters_front(self) - - def back(self): - return _mscl.MipCommandParameters_back(self) - - def assign(self, n, x): - return _mscl.MipCommandParameters_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandParameters_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandParameters_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandParameters_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandParameters_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandParameters - -# Register MipCommandParameters in _mscl: -_mscl.MipCommandParameters_swigregister(MipCommandParameters) - -class ChannelIndex(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ChannelIndex_swiginit(self, _mscl.new_ChannelIndex(*args)) - first = property(_mscl.ChannelIndex_first_get, _mscl.ChannelIndex_first_set) - second = property(_mscl.ChannelIndex_second_get, _mscl.ChannelIndex_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_ChannelIndex - -# Register ChannelIndex in _mscl: -_mscl.ChannelIndex_swigregister(ChannelIndex) - -class ChannelIndices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelIndices_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelIndices___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelIndices___bool__(self) - - def __len__(self): - return _mscl.ChannelIndices___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelIndices___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelIndices___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelIndices___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelIndices___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelIndices___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelIndices___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelIndices_pop(self) - - def append(self, x): - return _mscl.ChannelIndices_append(self, x) - - def empty(self): - return _mscl.ChannelIndices_empty(self) - - def size(self): - return _mscl.ChannelIndices_size(self) - - def swap(self, v): - return _mscl.ChannelIndices_swap(self, v) - - def begin(self): - return _mscl.ChannelIndices_begin(self) - - def end(self): - return _mscl.ChannelIndices_end(self) - - def rbegin(self): - return _mscl.ChannelIndices_rbegin(self) - - def rend(self): - return _mscl.ChannelIndices_rend(self) - - def clear(self): - return _mscl.ChannelIndices_clear(self) - - def get_allocator(self): - return _mscl.ChannelIndices_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelIndices_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelIndices_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelIndices_swiginit(self, _mscl.new_ChannelIndices(*args)) - - def push_back(self, x): - return _mscl.ChannelIndices_push_back(self, x) - - def front(self): - return _mscl.ChannelIndices_front(self) - - def back(self): - return _mscl.ChannelIndices_back(self) - - def assign(self, n, x): - return _mscl.ChannelIndices_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelIndices_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelIndices_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelIndices_reserve(self, n) - - def capacity(self): - return _mscl.ChannelIndices_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelIndices - -# Register ChannelIndices in _mscl: -_mscl.ChannelIndices_swigregister(ChannelIndices) - -class ChannelFieldQualifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelFieldQualifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelFieldQualifiers___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelFieldQualifiers___bool__(self) - - def __len__(self): - return _mscl.ChannelFieldQualifiers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelFieldQualifiers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelFieldQualifiers___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelFieldQualifiers_has_key(self, key) - - def keys(self): - return _mscl.ChannelFieldQualifiers_keys(self) - - def values(self): - return _mscl.ChannelFieldQualifiers_values(self) - - def items(self): - return _mscl.ChannelFieldQualifiers_items(self) - - def __contains__(self, key): - return _mscl.ChannelFieldQualifiers___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelFieldQualifiers_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelFieldQualifiers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelFieldQualifiers___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelFieldQualifiers_asdict(self) - - def __init__(self, *args): - _mscl.ChannelFieldQualifiers_swiginit(self, _mscl.new_ChannelFieldQualifiers(*args)) - - def empty(self): - return _mscl.ChannelFieldQualifiers_empty(self) - - def size(self): - return _mscl.ChannelFieldQualifiers_size(self) - - def swap(self, v): - return _mscl.ChannelFieldQualifiers_swap(self, v) - - def begin(self): - return _mscl.ChannelFieldQualifiers_begin(self) - - def end(self): - return _mscl.ChannelFieldQualifiers_end(self) - - def rbegin(self): - return _mscl.ChannelFieldQualifiers_rbegin(self) - - def rend(self): - return _mscl.ChannelFieldQualifiers_rend(self) - - def clear(self): - return _mscl.ChannelFieldQualifiers_clear(self) - - def get_allocator(self): - return _mscl.ChannelFieldQualifiers_get_allocator(self) - - def count(self, x): - return _mscl.ChannelFieldQualifiers_count(self, x) - - def erase(self, *args): - return _mscl.ChannelFieldQualifiers_erase(self, *args) - - def find(self, x): - return _mscl.ChannelFieldQualifiers_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelFieldQualifiers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelFieldQualifiers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelFieldQualifiers - -# Register ChannelFieldQualifiers in _mscl: -_mscl.ChannelFieldQualifiers_swigregister(ChannelFieldQualifiers) - -class GnssReceivers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssReceivers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssReceivers___nonzero__(self) - - def __bool__(self): - return _mscl.GnssReceivers___bool__(self) - - def __len__(self): - return _mscl.GnssReceivers___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssReceivers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssReceivers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssReceivers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssReceivers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssReceivers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssReceivers___setitem__(self, *args) - - def pop(self): - return _mscl.GnssReceivers_pop(self) - - def append(self, x): - return _mscl.GnssReceivers_append(self, x) - - def empty(self): - return _mscl.GnssReceivers_empty(self) - - def size(self): - return _mscl.GnssReceivers_size(self) - - def swap(self, v): - return _mscl.GnssReceivers_swap(self, v) - - def begin(self): - return _mscl.GnssReceivers_begin(self) - - def end(self): - return _mscl.GnssReceivers_end(self) - - def rbegin(self): - return _mscl.GnssReceivers_rbegin(self) - - def rend(self): - return _mscl.GnssReceivers_rend(self) - - def clear(self): - return _mscl.GnssReceivers_clear(self) - - def get_allocator(self): - return _mscl.GnssReceivers_get_allocator(self) - - def pop_back(self): - return _mscl.GnssReceivers_pop_back(self) - - def erase(self, *args): - return _mscl.GnssReceivers_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssReceivers_swiginit(self, _mscl.new_GnssReceivers(*args)) - - def push_back(self, x): - return _mscl.GnssReceivers_push_back(self, x) - - def front(self): - return _mscl.GnssReceivers_front(self) - - def back(self): - return _mscl.GnssReceivers_back(self) - - def assign(self, n, x): - return _mscl.GnssReceivers_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssReceivers_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssReceivers_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssReceivers_reserve(self, n) - - def capacity(self): - return _mscl.GnssReceivers_capacity(self) - __swig_destroy__ = _mscl.delete_GnssReceivers - -# Register GnssReceivers in _mscl: -_mscl.GnssReceivers_swigregister(GnssReceivers) - -class SensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRanges___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRanges___bool__(self) - - def __len__(self): - return _mscl.SensorRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorRanges___setitem__(self, *args) - - def pop(self): - return _mscl.SensorRanges_pop(self) - - def append(self, x): - return _mscl.SensorRanges_append(self, x) - - def empty(self): - return _mscl.SensorRanges_empty(self) - - def size(self): - return _mscl.SensorRanges_size(self) - - def swap(self, v): - return _mscl.SensorRanges_swap(self, v) - - def begin(self): - return _mscl.SensorRanges_begin(self) - - def end(self): - return _mscl.SensorRanges_end(self) - - def rbegin(self): - return _mscl.SensorRanges_rbegin(self) - - def rend(self): - return _mscl.SensorRanges_rend(self) - - def clear(self): - return _mscl.SensorRanges_clear(self) - - def get_allocator(self): - return _mscl.SensorRanges_get_allocator(self) - - def pop_back(self): - return _mscl.SensorRanges_pop_back(self) - - def erase(self, *args): - return _mscl.SensorRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorRanges_swiginit(self, _mscl.new_SensorRanges(*args)) - - def push_back(self, x): - return _mscl.SensorRanges_push_back(self, x) - - def front(self): - return _mscl.SensorRanges_front(self) - - def back(self): - return _mscl.SensorRanges_back(self) - - def assign(self, n, x): - return _mscl.SensorRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorRanges_reserve(self, n) - - def capacity(self): - return _mscl.SensorRanges_capacity(self) - __swig_destroy__ = _mscl.delete_SensorRanges - -# Register SensorRanges in _mscl: -_mscl.SensorRanges_swigregister(SensorRanges) - -class SensorRangeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRangeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRangeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRangeOptions___bool__(self) - - def __len__(self): - return _mscl.SensorRangeOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SensorRangeOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SensorRangeOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.SensorRangeOptions_has_key(self, key) - - def keys(self): - return _mscl.SensorRangeOptions_keys(self) - - def values(self): - return _mscl.SensorRangeOptions_values(self) - - def items(self): - return _mscl.SensorRangeOptions_items(self) - - def __contains__(self, key): - return _mscl.SensorRangeOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.SensorRangeOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.SensorRangeOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SensorRangeOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.SensorRangeOptions_asdict(self) - - def __init__(self, *args): - _mscl.SensorRangeOptions_swiginit(self, _mscl.new_SensorRangeOptions(*args)) - - def empty(self): - return _mscl.SensorRangeOptions_empty(self) - - def size(self): - return _mscl.SensorRangeOptions_size(self) - - def swap(self, v): - return _mscl.SensorRangeOptions_swap(self, v) - - def begin(self): - return _mscl.SensorRangeOptions_begin(self) - - def end(self): - return _mscl.SensorRangeOptions_end(self) - - def rbegin(self): - return _mscl.SensorRangeOptions_rbegin(self) - - def rend(self): - return _mscl.SensorRangeOptions_rend(self) - - def clear(self): - return _mscl.SensorRangeOptions_clear(self) - - def get_allocator(self): - return _mscl.SensorRangeOptions_get_allocator(self) - - def count(self, x): - return _mscl.SensorRangeOptions_count(self, x) - - def erase(self, *args): - return _mscl.SensorRangeOptions_erase(self, *args) - - def find(self, x): - return _mscl.SensorRangeOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.SensorRangeOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SensorRangeOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SensorRangeOptions - -# Register SensorRangeOptions in _mscl: -_mscl.SensorRangeOptions_swigregister(SensorRangeOptions) - -class CommPortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommPortInfo_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommPortInfo___nonzero__(self) - - def __bool__(self): - return _mscl.CommPortInfo___bool__(self) - - def __len__(self): - return _mscl.CommPortInfo___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommPortInfo___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommPortInfo___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommPortInfo___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommPortInfo___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommPortInfo___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommPortInfo___setitem__(self, *args) - - def pop(self): - return _mscl.CommPortInfo_pop(self) - - def append(self, x): - return _mscl.CommPortInfo_append(self, x) - - def empty(self): - return _mscl.CommPortInfo_empty(self) - - def size(self): - return _mscl.CommPortInfo_size(self) - - def swap(self, v): - return _mscl.CommPortInfo_swap(self, v) - - def begin(self): - return _mscl.CommPortInfo_begin(self) - - def end(self): - return _mscl.CommPortInfo_end(self) - - def rbegin(self): - return _mscl.CommPortInfo_rbegin(self) - - def rend(self): - return _mscl.CommPortInfo_rend(self) - - def clear(self): - return _mscl.CommPortInfo_clear(self) - - def get_allocator(self): - return _mscl.CommPortInfo_get_allocator(self) - - def pop_back(self): - return _mscl.CommPortInfo_pop_back(self) - - def erase(self, *args): - return _mscl.CommPortInfo_erase(self, *args) - - def __init__(self, *args): - _mscl.CommPortInfo_swiginit(self, _mscl.new_CommPortInfo(*args)) - - def push_back(self, x): - return _mscl.CommPortInfo_push_back(self, x) - - def front(self): - return _mscl.CommPortInfo_front(self) - - def back(self): - return _mscl.CommPortInfo_back(self) - - def assign(self, n, x): - return _mscl.CommPortInfo_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommPortInfo_resize(self, *args) - - def insert(self, *args): - return _mscl.CommPortInfo_insert(self, *args) - - def reserve(self, n): - return _mscl.CommPortInfo_reserve(self, n) - - def capacity(self): - return _mscl.CommPortInfo_capacity(self) - __swig_destroy__ = _mscl.delete_CommPortInfo - -# Register CommPortInfo in _mscl: -_mscl.CommPortInfo_swigregister(CommPortInfo) - -class EventTriggerStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTriggerStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTriggerStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventTriggerStatus___bool__(self) - - def __len__(self): - return _mscl.EventTriggerStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTriggerStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTriggerStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTriggerStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTriggerStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTriggerStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTriggerStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventTriggerStatus_pop(self) - - def append(self, x): - return _mscl.EventTriggerStatus_append(self, x) - - def empty(self): - return _mscl.EventTriggerStatus_empty(self) - - def size(self): - return _mscl.EventTriggerStatus_size(self) - - def swap(self, v): - return _mscl.EventTriggerStatus_swap(self, v) - - def begin(self): - return _mscl.EventTriggerStatus_begin(self) - - def end(self): - return _mscl.EventTriggerStatus_end(self) - - def rbegin(self): - return _mscl.EventTriggerStatus_rbegin(self) - - def rend(self): - return _mscl.EventTriggerStatus_rend(self) - - def clear(self): - return _mscl.EventTriggerStatus_clear(self) - - def get_allocator(self): - return _mscl.EventTriggerStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventTriggerStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventTriggerStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTriggerStatus_swiginit(self, _mscl.new_EventTriggerStatus(*args)) - - def push_back(self, x): - return _mscl.EventTriggerStatus_push_back(self, x) - - def front(self): - return _mscl.EventTriggerStatus_front(self) - - def back(self): - return _mscl.EventTriggerStatus_back(self) - - def assign(self, n, x): - return _mscl.EventTriggerStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTriggerStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTriggerStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTriggerStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventTriggerStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventTriggerStatus - -# Register EventTriggerStatus in _mscl: -_mscl.EventTriggerStatus_swigregister(EventTriggerStatus) - -class EventActionStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventActionStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventActionStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventActionStatus___bool__(self) - - def __len__(self): - return _mscl.EventActionStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventActionStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventActionStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventActionStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventActionStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventActionStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventActionStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventActionStatus_pop(self) - - def append(self, x): - return _mscl.EventActionStatus_append(self, x) - - def empty(self): - return _mscl.EventActionStatus_empty(self) - - def size(self): - return _mscl.EventActionStatus_size(self) - - def swap(self, v): - return _mscl.EventActionStatus_swap(self, v) - - def begin(self): - return _mscl.EventActionStatus_begin(self) - - def end(self): - return _mscl.EventActionStatus_end(self) - - def rbegin(self): - return _mscl.EventActionStatus_rbegin(self) - - def rend(self): - return _mscl.EventActionStatus_rend(self) - - def clear(self): - return _mscl.EventActionStatus_clear(self) - - def get_allocator(self): - return _mscl.EventActionStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventActionStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventActionStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventActionStatus_swiginit(self, _mscl.new_EventActionStatus(*args)) - - def push_back(self, x): - return _mscl.EventActionStatus_push_back(self, x) - - def front(self): - return _mscl.EventActionStatus_front(self) - - def back(self): - return _mscl.EventActionStatus_back(self) - - def assign(self, n, x): - return _mscl.EventActionStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventActionStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventActionStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventActionStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventActionStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventActionStatus - -# Register EventActionStatus in _mscl: -_mscl.EventActionStatus_swigregister(EventActionStatus) - -class ChannelGroups(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroups_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroups___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroups___bool__(self) - - def __len__(self): - return _mscl.ChannelGroups___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroups___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroups___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroups___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroups___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroups___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroups___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroups_pop(self) - - def append(self, x): - return _mscl.ChannelGroups_append(self, x) - - def empty(self): - return _mscl.ChannelGroups_empty(self) - - def size(self): - return _mscl.ChannelGroups_size(self) - - def swap(self, v): - return _mscl.ChannelGroups_swap(self, v) - - def begin(self): - return _mscl.ChannelGroups_begin(self) - - def end(self): - return _mscl.ChannelGroups_end(self) - - def rbegin(self): - return _mscl.ChannelGroups_rbegin(self) - - def rend(self): - return _mscl.ChannelGroups_rend(self) - - def clear(self): - return _mscl.ChannelGroups_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroups_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroups_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroups_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroups_swiginit(self, _mscl.new_ChannelGroups(*args)) - - def push_back(self, x): - return _mscl.ChannelGroups_push_back(self, x) - - def front(self): - return _mscl.ChannelGroups_front(self) - - def back(self): - return _mscl.ChannelGroups_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroups_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroups_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroups_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroups_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroups_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroups - -# Register ChannelGroups in _mscl: -_mscl.ChannelGroups_swigregister(ChannelGroups) - -class WirelessChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessChannels___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessChannels___bool__(self) - - def __len__(self): - return _mscl.WirelessChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessChannels___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessChannels_pop(self) - - def append(self, x): - return _mscl.WirelessChannels_append(self, x) - - def empty(self): - return _mscl.WirelessChannels_empty(self) - - def size(self): - return _mscl.WirelessChannels_size(self) - - def swap(self, v): - return _mscl.WirelessChannels_swap(self, v) - - def begin(self): - return _mscl.WirelessChannels_begin(self) - - def end(self): - return _mscl.WirelessChannels_end(self) - - def rbegin(self): - return _mscl.WirelessChannels_rbegin(self) - - def rend(self): - return _mscl.WirelessChannels_rend(self) - - def clear(self): - return _mscl.WirelessChannels_clear(self) - - def get_allocator(self): - return _mscl.WirelessChannels_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessChannels_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessChannels_swiginit(self, _mscl.new_WirelessChannels(*args)) - - def push_back(self, x): - return _mscl.WirelessChannels_push_back(self, x) - - def front(self): - return _mscl.WirelessChannels_front(self) - - def back(self): - return _mscl.WirelessChannels_back(self) - - def assign(self, n, x): - return _mscl.WirelessChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessChannels_reserve(self, n) - - def capacity(self): - return _mscl.WirelessChannels_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessChannels - -# Register WirelessChannels in _mscl: -_mscl.WirelessChannels_swigregister(WirelessChannels) - -class DamageAngles(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DamageAngles_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DamageAngles___nonzero__(self) - - def __bool__(self): - return _mscl.DamageAngles___bool__(self) - - def __len__(self): - return _mscl.DamageAngles___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DamageAngles___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DamageAngles___delitem__(self, key) - - def has_key(self, key): - return _mscl.DamageAngles_has_key(self, key) - - def keys(self): - return _mscl.DamageAngles_keys(self) - - def values(self): - return _mscl.DamageAngles_values(self) - - def items(self): - return _mscl.DamageAngles_items(self) - - def __contains__(self, key): - return _mscl.DamageAngles___contains__(self, key) - - def key_iterator(self): - return _mscl.DamageAngles_key_iterator(self) - - def value_iterator(self): - return _mscl.DamageAngles_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DamageAngles___setitem__(self, *args) - - def asdict(self): - return _mscl.DamageAngles_asdict(self) - - def __init__(self, *args): - _mscl.DamageAngles_swiginit(self, _mscl.new_DamageAngles(*args)) - - def empty(self): - return _mscl.DamageAngles_empty(self) - - def size(self): - return _mscl.DamageAngles_size(self) - - def swap(self, v): - return _mscl.DamageAngles_swap(self, v) - - def begin(self): - return _mscl.DamageAngles_begin(self) - - def end(self): - return _mscl.DamageAngles_end(self) - - def rbegin(self): - return _mscl.DamageAngles_rbegin(self) - - def rend(self): - return _mscl.DamageAngles_rend(self) - - def clear(self): - return _mscl.DamageAngles_clear(self) - - def get_allocator(self): - return _mscl.DamageAngles_get_allocator(self) - - def count(self, x): - return _mscl.DamageAngles_count(self, x) - - def erase(self, *args): - return _mscl.DamageAngles_erase(self, *args) - - def find(self, x): - return _mscl.DamageAngles_find(self, x) - - def lower_bound(self, x): - return _mscl.DamageAngles_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DamageAngles_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DamageAngles - -# Register DamageAngles in _mscl: -_mscl.DamageAngles_swigregister(DamageAngles) - -class SnCurveSegments(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SnCurveSegments_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SnCurveSegments___nonzero__(self) - - def __bool__(self): - return _mscl.SnCurveSegments___bool__(self) - - def __len__(self): - return _mscl.SnCurveSegments___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SnCurveSegments___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SnCurveSegments___delitem__(self, key) - - def has_key(self, key): - return _mscl.SnCurveSegments_has_key(self, key) - - def keys(self): - return _mscl.SnCurveSegments_keys(self) - - def values(self): - return _mscl.SnCurveSegments_values(self) - - def items(self): - return _mscl.SnCurveSegments_items(self) - - def __contains__(self, key): - return _mscl.SnCurveSegments___contains__(self, key) - - def key_iterator(self): - return _mscl.SnCurveSegments_key_iterator(self) - - def value_iterator(self): - return _mscl.SnCurveSegments_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SnCurveSegments___setitem__(self, *args) - - def asdict(self): - return _mscl.SnCurveSegments_asdict(self) - - def __init__(self, *args): - _mscl.SnCurveSegments_swiginit(self, _mscl.new_SnCurveSegments(*args)) - - def empty(self): - return _mscl.SnCurveSegments_empty(self) - - def size(self): - return _mscl.SnCurveSegments_size(self) - - def swap(self, v): - return _mscl.SnCurveSegments_swap(self, v) - - def begin(self): - return _mscl.SnCurveSegments_begin(self) - - def end(self): - return _mscl.SnCurveSegments_end(self) - - def rbegin(self): - return _mscl.SnCurveSegments_rbegin(self) - - def rend(self): - return _mscl.SnCurveSegments_rend(self) - - def clear(self): - return _mscl.SnCurveSegments_clear(self) - - def get_allocator(self): - return _mscl.SnCurveSegments_get_allocator(self) - - def count(self, x): - return _mscl.SnCurveSegments_count(self, x) - - def erase(self, *args): - return _mscl.SnCurveSegments_erase(self, *args) - - def find(self, x): - return _mscl.SnCurveSegments_find(self, x) - - def lower_bound(self, x): - return _mscl.SnCurveSegments_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SnCurveSegments_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SnCurveSegments - -# Register SnCurveSegments in _mscl: -_mscl.SnCurveSegments_swigregister(SnCurveSegments) - -class RfSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RfSweep_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RfSweep___nonzero__(self) - - def __bool__(self): - return _mscl.RfSweep___bool__(self) - - def __len__(self): - return _mscl.RfSweep___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.RfSweep___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.RfSweep___delitem__(self, key) - - def has_key(self, key): - return _mscl.RfSweep_has_key(self, key) - - def keys(self): - return _mscl.RfSweep_keys(self) - - def values(self): - return _mscl.RfSweep_values(self) - - def items(self): - return _mscl.RfSweep_items(self) - - def __contains__(self, key): - return _mscl.RfSweep___contains__(self, key) - - def key_iterator(self): - return _mscl.RfSweep_key_iterator(self) - - def value_iterator(self): - return _mscl.RfSweep_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.RfSweep___setitem__(self, *args) - - def asdict(self): - return _mscl.RfSweep_asdict(self) - - def __init__(self, *args): - _mscl.RfSweep_swiginit(self, _mscl.new_RfSweep(*args)) - - def empty(self): - return _mscl.RfSweep_empty(self) - - def size(self): - return _mscl.RfSweep_size(self) - - def swap(self, v): - return _mscl.RfSweep_swap(self, v) - - def begin(self): - return _mscl.RfSweep_begin(self) - - def end(self): - return _mscl.RfSweep_end(self) - - def rbegin(self): - return _mscl.RfSweep_rbegin(self) - - def rend(self): - return _mscl.RfSweep_rend(self) - - def clear(self): - return _mscl.RfSweep_clear(self) - - def get_allocator(self): - return _mscl.RfSweep_get_allocator(self) - - def count(self, x): - return _mscl.RfSweep_count(self, x) - - def erase(self, *args): - return _mscl.RfSweep_erase(self, *args) - - def find(self, x): - return _mscl.RfSweep_find(self, x) - - def lower_bound(self, x): - return _mscl.RfSweep_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.RfSweep_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_RfSweep - -# Register RfSweep in _mscl: -_mscl.RfSweep_swigregister(RfSweep) - -class Triggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Triggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Triggers___nonzero__(self) - - def __bool__(self): - return _mscl.Triggers___bool__(self) - - def __len__(self): - return _mscl.Triggers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.Triggers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.Triggers___delitem__(self, key) - - def has_key(self, key): - return _mscl.Triggers_has_key(self, key) - - def keys(self): - return _mscl.Triggers_keys(self) - - def values(self): - return _mscl.Triggers_values(self) - - def items(self): - return _mscl.Triggers_items(self) - - def __contains__(self, key): - return _mscl.Triggers___contains__(self, key) - - def key_iterator(self): - return _mscl.Triggers_key_iterator(self) - - def value_iterator(self): - return _mscl.Triggers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.Triggers___setitem__(self, *args) - - def asdict(self): - return _mscl.Triggers_asdict(self) - - def __init__(self, *args): - _mscl.Triggers_swiginit(self, _mscl.new_Triggers(*args)) - - def empty(self): - return _mscl.Triggers_empty(self) - - def size(self): - return _mscl.Triggers_size(self) - - def swap(self, v): - return _mscl.Triggers_swap(self, v) - - def begin(self): - return _mscl.Triggers_begin(self) - - def end(self): - return _mscl.Triggers_end(self) - - def rbegin(self): - return _mscl.Triggers_rbegin(self) - - def rend(self): - return _mscl.Triggers_rend(self) - - def clear(self): - return _mscl.Triggers_clear(self) - - def get_allocator(self): - return _mscl.Triggers_get_allocator(self) - - def count(self, x): - return _mscl.Triggers_count(self, x) - - def erase(self, *args): - return _mscl.Triggers_erase(self, *args) - - def find(self, x): - return _mscl.Triggers_find(self, x) - - def lower_bound(self, x): - return _mscl.Triggers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.Triggers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_Triggers - -# Register Triggers in _mscl: -_mscl.Triggers_swigregister(Triggers) - -class ChannelCalMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelCalMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelCalMap___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelCalMap___bool__(self) - - def __len__(self): - return _mscl.ChannelCalMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelCalMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelCalMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelCalMap_has_key(self, key) - - def keys(self): - return _mscl.ChannelCalMap_keys(self) - - def values(self): - return _mscl.ChannelCalMap_values(self) - - def items(self): - return _mscl.ChannelCalMap_items(self) - - def __contains__(self, key): - return _mscl.ChannelCalMap___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelCalMap_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelCalMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelCalMap___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelCalMap_asdict(self) - - def __init__(self, *args): - _mscl.ChannelCalMap_swiginit(self, _mscl.new_ChannelCalMap(*args)) - - def empty(self): - return _mscl.ChannelCalMap_empty(self) - - def size(self): - return _mscl.ChannelCalMap_size(self) - - def swap(self, v): - return _mscl.ChannelCalMap_swap(self, v) - - def begin(self): - return _mscl.ChannelCalMap_begin(self) - - def end(self): - return _mscl.ChannelCalMap_end(self) - - def rbegin(self): - return _mscl.ChannelCalMap_rbegin(self) - - def rend(self): - return _mscl.ChannelCalMap_rend(self) - - def clear(self): - return _mscl.ChannelCalMap_clear(self) - - def get_allocator(self): - return _mscl.ChannelCalMap_get_allocator(self) - - def count(self, x): - return _mscl.ChannelCalMap_count(self, x) - - def erase(self, *args): - return _mscl.ChannelCalMap_erase(self, *args) - - def find(self, x): - return _mscl.ChannelCalMap_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelCalMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelCalMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelCalMap - -# Register ChannelCalMap in _mscl: -_mscl.ChannelCalMap_swigregister(ChannelCalMap) - -class WirelessPollData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessPollData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessPollData___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessPollData___bool__(self) - - def __len__(self): - return _mscl.WirelessPollData___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.WirelessPollData___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.WirelessPollData___delitem__(self, key) - - def has_key(self, key): - return _mscl.WirelessPollData_has_key(self, key) - - def keys(self): - return _mscl.WirelessPollData_keys(self) - - def values(self): - return _mscl.WirelessPollData_values(self) - - def items(self): - return _mscl.WirelessPollData_items(self) - - def __contains__(self, key): - return _mscl.WirelessPollData___contains__(self, key) - - def key_iterator(self): - return _mscl.WirelessPollData_key_iterator(self) - - def value_iterator(self): - return _mscl.WirelessPollData_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.WirelessPollData___setitem__(self, *args) - - def asdict(self): - return _mscl.WirelessPollData_asdict(self) - - def __init__(self, *args): - _mscl.WirelessPollData_swiginit(self, _mscl.new_WirelessPollData(*args)) - - def empty(self): - return _mscl.WirelessPollData_empty(self) - - def size(self): - return _mscl.WirelessPollData_size(self) - - def swap(self, v): - return _mscl.WirelessPollData_swap(self, v) - - def begin(self): - return _mscl.WirelessPollData_begin(self) - - def end(self): - return _mscl.WirelessPollData_end(self) - - def rbegin(self): - return _mscl.WirelessPollData_rbegin(self) - - def rend(self): - return _mscl.WirelessPollData_rend(self) - - def clear(self): - return _mscl.WirelessPollData_clear(self) - - def get_allocator(self): - return _mscl.WirelessPollData_get_allocator(self) - - def count(self, x): - return _mscl.WirelessPollData_count(self, x) - - def erase(self, *args): - return _mscl.WirelessPollData_erase(self, *args) - - def find(self, x): - return _mscl.WirelessPollData_find(self, x) - - def lower_bound(self, x): - return _mscl.WirelessPollData_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.WirelessPollData_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_WirelessPollData - -# Register WirelessPollData in _mscl: -_mscl.WirelessPollData_swigregister(WirelessPollData) - -class ConnectionDebugDataVec(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConnectionDebugDataVec_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConnectionDebugDataVec___nonzero__(self) - - def __bool__(self): - return _mscl.ConnectionDebugDataVec___bool__(self) - - def __len__(self): - return _mscl.ConnectionDebugDataVec___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConnectionDebugDataVec___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConnectionDebugDataVec___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConnectionDebugDataVec___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConnectionDebugDataVec___setitem__(self, *args) - - def pop(self): - return _mscl.ConnectionDebugDataVec_pop(self) - - def append(self, x): - return _mscl.ConnectionDebugDataVec_append(self, x) - - def empty(self): - return _mscl.ConnectionDebugDataVec_empty(self) - - def size(self): - return _mscl.ConnectionDebugDataVec_size(self) - - def swap(self, v): - return _mscl.ConnectionDebugDataVec_swap(self, v) - - def begin(self): - return _mscl.ConnectionDebugDataVec_begin(self) - - def end(self): - return _mscl.ConnectionDebugDataVec_end(self) - - def rbegin(self): - return _mscl.ConnectionDebugDataVec_rbegin(self) - - def rend(self): - return _mscl.ConnectionDebugDataVec_rend(self) - - def clear(self): - return _mscl.ConnectionDebugDataVec_clear(self) - - def get_allocator(self): - return _mscl.ConnectionDebugDataVec_get_allocator(self) - - def pop_back(self): - return _mscl.ConnectionDebugDataVec_pop_back(self) - - def erase(self, *args): - return _mscl.ConnectionDebugDataVec_erase(self, *args) - - def __init__(self, *args): - _mscl.ConnectionDebugDataVec_swiginit(self, _mscl.new_ConnectionDebugDataVec(*args)) - - def push_back(self, x): - return _mscl.ConnectionDebugDataVec_push_back(self, x) - - def front(self): - return _mscl.ConnectionDebugDataVec_front(self) - - def back(self): - return _mscl.ConnectionDebugDataVec_back(self) - - def assign(self, n, x): - return _mscl.ConnectionDebugDataVec_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConnectionDebugDataVec_resize(self, *args) - - def insert(self, *args): - return _mscl.ConnectionDebugDataVec_insert(self, *args) - - def reserve(self, n): - return _mscl.ConnectionDebugDataVec_reserve(self, n) - - def capacity(self): - return _mscl.ConnectionDebugDataVec_capacity(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugDataVec - -# Register ConnectionDebugDataVec in _mscl: -_mscl.ConnectionDebugDataVec_swigregister(ConnectionDebugDataVec) - -class SatellitePRNs(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SatellitePRNs_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SatellitePRNs___nonzero__(self) - - def __bool__(self): - return _mscl.SatellitePRNs___bool__(self) - - def __len__(self): - return _mscl.SatellitePRNs___len__(self) - - def __getslice__(self, i, j): - return _mscl.SatellitePRNs___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SatellitePRNs___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SatellitePRNs___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SatellitePRNs___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SatellitePRNs___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SatellitePRNs___setitem__(self, *args) - - def pop(self): - return _mscl.SatellitePRNs_pop(self) - - def append(self, x): - return _mscl.SatellitePRNs_append(self, x) - - def empty(self): - return _mscl.SatellitePRNs_empty(self) - - def size(self): - return _mscl.SatellitePRNs_size(self) - - def swap(self, v): - return _mscl.SatellitePRNs_swap(self, v) - - def begin(self): - return _mscl.SatellitePRNs_begin(self) - - def end(self): - return _mscl.SatellitePRNs_end(self) - - def rbegin(self): - return _mscl.SatellitePRNs_rbegin(self) - - def rend(self): - return _mscl.SatellitePRNs_rend(self) - - def clear(self): - return _mscl.SatellitePRNs_clear(self) - - def get_allocator(self): - return _mscl.SatellitePRNs_get_allocator(self) - - def pop_back(self): - return _mscl.SatellitePRNs_pop_back(self) - - def erase(self, *args): - return _mscl.SatellitePRNs_erase(self, *args) - - def __init__(self, *args): - _mscl.SatellitePRNs_swiginit(self, _mscl.new_SatellitePRNs(*args)) - - def push_back(self, x): - return _mscl.SatellitePRNs_push_back(self, x) - - def front(self): - return _mscl.SatellitePRNs_front(self) - - def back(self): - return _mscl.SatellitePRNs_back(self) - - def assign(self, n, x): - return _mscl.SatellitePRNs_assign(self, n, x) - - def resize(self, *args): - return _mscl.SatellitePRNs_resize(self, *args) - - def insert(self, *args): - return _mscl.SatellitePRNs_insert(self, *args) - - def reserve(self, n): - return _mscl.SatellitePRNs_reserve(self, n) - - def capacity(self): - return _mscl.SatellitePRNs_capacity(self) - __swig_destroy__ = _mscl.delete_SatellitePRNs - -# Register SatellitePRNs in _mscl: -_mscl.SatellitePRNs_swigregister(SatellitePRNs) - -class Constellations(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Constellations_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Constellations___nonzero__(self) - - def __bool__(self): - return _mscl.Constellations___bool__(self) - - def __len__(self): - return _mscl.Constellations___len__(self) - - def __getslice__(self, i, j): - return _mscl.Constellations___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Constellations___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Constellations___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Constellations___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Constellations___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Constellations___setitem__(self, *args) - - def pop(self): - return _mscl.Constellations_pop(self) - - def append(self, x): - return _mscl.Constellations_append(self, x) - - def empty(self): - return _mscl.Constellations_empty(self) - - def size(self): - return _mscl.Constellations_size(self) - - def swap(self, v): - return _mscl.Constellations_swap(self, v) - - def begin(self): - return _mscl.Constellations_begin(self) - - def end(self): - return _mscl.Constellations_end(self) - - def rbegin(self): - return _mscl.Constellations_rbegin(self) - - def rend(self): - return _mscl.Constellations_rend(self) - - def clear(self): - return _mscl.Constellations_clear(self) - - def get_allocator(self): - return _mscl.Constellations_get_allocator(self) - - def pop_back(self): - return _mscl.Constellations_pop_back(self) - - def erase(self, *args): - return _mscl.Constellations_erase(self, *args) - - def __init__(self, *args): - _mscl.Constellations_swiginit(self, _mscl.new_Constellations(*args)) - - def push_back(self, x): - return _mscl.Constellations_push_back(self, x) - - def front(self): - return _mscl.Constellations_front(self) - - def back(self): - return _mscl.Constellations_back(self) - - def assign(self, n, x): - return _mscl.Constellations_assign(self, n, x) - - def resize(self, *args): - return _mscl.Constellations_resize(self, *args) - - def insert(self, *args): - return _mscl.Constellations_insert(self, *args) - - def reserve(self, n): - return _mscl.Constellations_reserve(self, n) - - def capacity(self): - return _mscl.Constellations_capacity(self) - __swig_destroy__ = _mscl.delete_Constellations - -# Register Constellations in _mscl: -_mscl.Constellations_swigregister(Constellations) - -class HeadingUpdateOptionsList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HeadingUpdateOptionsList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HeadingUpdateOptionsList___nonzero__(self) - - def __bool__(self): - return _mscl.HeadingUpdateOptionsList___bool__(self) - - def __len__(self): - return _mscl.HeadingUpdateOptionsList___len__(self) - - def __getslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HeadingUpdateOptionsList___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___setitem__(self, *args) - - def pop(self): - return _mscl.HeadingUpdateOptionsList_pop(self) - - def append(self, x): - return _mscl.HeadingUpdateOptionsList_append(self, x) - - def empty(self): - return _mscl.HeadingUpdateOptionsList_empty(self) - - def size(self): - return _mscl.HeadingUpdateOptionsList_size(self) - - def swap(self, v): - return _mscl.HeadingUpdateOptionsList_swap(self, v) - - def begin(self): - return _mscl.HeadingUpdateOptionsList_begin(self) - - def end(self): - return _mscl.HeadingUpdateOptionsList_end(self) - - def rbegin(self): - return _mscl.HeadingUpdateOptionsList_rbegin(self) - - def rend(self): - return _mscl.HeadingUpdateOptionsList_rend(self) - - def clear(self): - return _mscl.HeadingUpdateOptionsList_clear(self) - - def get_allocator(self): - return _mscl.HeadingUpdateOptionsList_get_allocator(self) - - def pop_back(self): - return _mscl.HeadingUpdateOptionsList_pop_back(self) - - def erase(self, *args): - return _mscl.HeadingUpdateOptionsList_erase(self, *args) - - def __init__(self, *args): - _mscl.HeadingUpdateOptionsList_swiginit(self, _mscl.new_HeadingUpdateOptionsList(*args)) - - def push_back(self, x): - return _mscl.HeadingUpdateOptionsList_push_back(self, x) - - def front(self): - return _mscl.HeadingUpdateOptionsList_front(self) - - def back(self): - return _mscl.HeadingUpdateOptionsList_back(self) - - def assign(self, n, x): - return _mscl.HeadingUpdateOptionsList_assign(self, n, x) - - def resize(self, *args): - return _mscl.HeadingUpdateOptionsList_resize(self, *args) - - def insert(self, *args): - return _mscl.HeadingUpdateOptionsList_insert(self, *args) - - def reserve(self, n): - return _mscl.HeadingUpdateOptionsList_reserve(self, n) - - def capacity(self): - return _mscl.HeadingUpdateOptionsList_capacity(self) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptionsList - -# Register HeadingUpdateOptionsList in _mscl: -_mscl.HeadingUpdateOptionsList_swigregister(HeadingUpdateOptionsList) - -class AdaptiveMeasurementModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveMeasurementModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveMeasurementModes___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveMeasurementModes___bool__(self) - - def __len__(self): - return _mscl.AdaptiveMeasurementModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveMeasurementModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveMeasurementModes_pop(self) - - def append(self, x): - return _mscl.AdaptiveMeasurementModes_append(self, x) - - def empty(self): - return _mscl.AdaptiveMeasurementModes_empty(self) - - def size(self): - return _mscl.AdaptiveMeasurementModes_size(self) - - def swap(self, v): - return _mscl.AdaptiveMeasurementModes_swap(self, v) - - def begin(self): - return _mscl.AdaptiveMeasurementModes_begin(self) - - def end(self): - return _mscl.AdaptiveMeasurementModes_end(self) - - def rbegin(self): - return _mscl.AdaptiveMeasurementModes_rbegin(self) - - def rend(self): - return _mscl.AdaptiveMeasurementModes_rend(self) - - def clear(self): - return _mscl.AdaptiveMeasurementModes_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveMeasurementModes_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveMeasurementModes_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveMeasurementModes_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveMeasurementModes_swiginit(self, _mscl.new_AdaptiveMeasurementModes(*args)) - - def push_back(self, x): - return _mscl.AdaptiveMeasurementModes_push_back(self, x) - - def front(self): - return _mscl.AdaptiveMeasurementModes_front(self) - - def back(self): - return _mscl.AdaptiveMeasurementModes_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveMeasurementModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveMeasurementModes_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveMeasurementModes_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveMeasurementModes_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveMeasurementModes_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementModes - -# Register AdaptiveMeasurementModes in _mscl: -_mscl.AdaptiveMeasurementModes_swigregister(AdaptiveMeasurementModes) - -class GeometricVectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeometricVectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeometricVectors___nonzero__(self) - - def __bool__(self): - return _mscl.GeometricVectors___bool__(self) - - def __len__(self): - return _mscl.GeometricVectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeometricVectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeometricVectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeometricVectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeometricVectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeometricVectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeometricVectors___setitem__(self, *args) - - def pop(self): - return _mscl.GeometricVectors_pop(self) - - def append(self, x): - return _mscl.GeometricVectors_append(self, x) - - def empty(self): - return _mscl.GeometricVectors_empty(self) - - def size(self): - return _mscl.GeometricVectors_size(self) - - def swap(self, v): - return _mscl.GeometricVectors_swap(self, v) - - def begin(self): - return _mscl.GeometricVectors_begin(self) - - def end(self): - return _mscl.GeometricVectors_end(self) - - def rbegin(self): - return _mscl.GeometricVectors_rbegin(self) - - def rend(self): - return _mscl.GeometricVectors_rend(self) - - def clear(self): - return _mscl.GeometricVectors_clear(self) - - def get_allocator(self): - return _mscl.GeometricVectors_get_allocator(self) - - def pop_back(self): - return _mscl.GeometricVectors_pop_back(self) - - def erase(self, *args): - return _mscl.GeometricVectors_erase(self, *args) - - def __init__(self, *args): - _mscl.GeometricVectors_swiginit(self, _mscl.new_GeometricVectors(*args)) - - def push_back(self, x): - return _mscl.GeometricVectors_push_back(self, x) - - def front(self): - return _mscl.GeometricVectors_front(self) - - def back(self): - return _mscl.GeometricVectors_back(self) - - def assign(self, n, x): - return _mscl.GeometricVectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeometricVectors_resize(self, *args) - - def insert(self, *args): - return _mscl.GeometricVectors_insert(self, *args) - - def reserve(self, n): - return _mscl.GeometricVectors_reserve(self, n) - - def capacity(self): - return _mscl.GeometricVectors_capacity(self) - __swig_destroy__ = _mscl.delete_GeometricVectors - -# Register GeometricVectors in _mscl: -_mscl.GeometricVectors_swigregister(GeometricVectors) - -class Matrix_3x3s(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Matrix_3x3s_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Matrix_3x3s___nonzero__(self) - - def __bool__(self): - return _mscl.Matrix_3x3s___bool__(self) - - def __len__(self): - return _mscl.Matrix_3x3s___len__(self) - - def __getslice__(self, i, j): - return _mscl.Matrix_3x3s___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Matrix_3x3s___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Matrix_3x3s___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Matrix_3x3s___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Matrix_3x3s___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Matrix_3x3s___setitem__(self, *args) - - def pop(self): - return _mscl.Matrix_3x3s_pop(self) - - def append(self, x): - return _mscl.Matrix_3x3s_append(self, x) - - def empty(self): - return _mscl.Matrix_3x3s_empty(self) - - def size(self): - return _mscl.Matrix_3x3s_size(self) - - def swap(self, v): - return _mscl.Matrix_3x3s_swap(self, v) - - def begin(self): - return _mscl.Matrix_3x3s_begin(self) - - def end(self): - return _mscl.Matrix_3x3s_end(self) - - def rbegin(self): - return _mscl.Matrix_3x3s_rbegin(self) - - def rend(self): - return _mscl.Matrix_3x3s_rend(self) - - def clear(self): - return _mscl.Matrix_3x3s_clear(self) - - def get_allocator(self): - return _mscl.Matrix_3x3s_get_allocator(self) - - def pop_back(self): - return _mscl.Matrix_3x3s_pop_back(self) - - def erase(self, *args): - return _mscl.Matrix_3x3s_erase(self, *args) - - def __init__(self, *args): - _mscl.Matrix_3x3s_swiginit(self, _mscl.new_Matrix_3x3s(*args)) - - def push_back(self, x): - return _mscl.Matrix_3x3s_push_back(self, x) - - def front(self): - return _mscl.Matrix_3x3s_front(self) - - def back(self): - return _mscl.Matrix_3x3s_back(self) - - def assign(self, n, x): - return _mscl.Matrix_3x3s_assign(self, n, x) - - def resize(self, *args): - return _mscl.Matrix_3x3s_resize(self, *args) - - def insert(self, *args): - return _mscl.Matrix_3x3s_insert(self, *args) - - def reserve(self, n): - return _mscl.Matrix_3x3s_reserve(self, n) - - def capacity(self): - return _mscl.Matrix_3x3s_capacity(self) - __swig_destroy__ = _mscl.delete_Matrix_3x3s - -# Register Matrix_3x3s in _mscl: -_mscl.Matrix_3x3s_swigregister(Matrix_3x3s) - -class StatusSelectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StatusSelectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StatusSelectors___nonzero__(self) - - def __bool__(self): - return _mscl.StatusSelectors___bool__(self) - - def __len__(self): - return _mscl.StatusSelectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.StatusSelectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StatusSelectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StatusSelectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StatusSelectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StatusSelectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StatusSelectors___setitem__(self, *args) - - def pop(self): - return _mscl.StatusSelectors_pop(self) - - def append(self, x): - return _mscl.StatusSelectors_append(self, x) - - def empty(self): - return _mscl.StatusSelectors_empty(self) - - def size(self): - return _mscl.StatusSelectors_size(self) - - def swap(self, v): - return _mscl.StatusSelectors_swap(self, v) - - def begin(self): - return _mscl.StatusSelectors_begin(self) - - def end(self): - return _mscl.StatusSelectors_end(self) - - def rbegin(self): - return _mscl.StatusSelectors_rbegin(self) - - def rend(self): - return _mscl.StatusSelectors_rend(self) - - def clear(self): - return _mscl.StatusSelectors_clear(self) - - def get_allocator(self): - return _mscl.StatusSelectors_get_allocator(self) - - def pop_back(self): - return _mscl.StatusSelectors_pop_back(self) - - def erase(self, *args): - return _mscl.StatusSelectors_erase(self, *args) - - def __init__(self, *args): - _mscl.StatusSelectors_swiginit(self, _mscl.new_StatusSelectors(*args)) - - def push_back(self, x): - return _mscl.StatusSelectors_push_back(self, x) - - def front(self): - return _mscl.StatusSelectors_front(self) - - def back(self): - return _mscl.StatusSelectors_back(self) - - def assign(self, n, x): - return _mscl.StatusSelectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.StatusSelectors_resize(self, *args) - - def insert(self, *args): - return _mscl.StatusSelectors_insert(self, *args) - - def reserve(self, n): - return _mscl.StatusSelectors_reserve(self, n) - - def capacity(self): - return _mscl.StatusSelectors_capacity(self) - __swig_destroy__ = _mscl.delete_StatusSelectors - -# Register StatusSelectors in _mscl: -_mscl.StatusSelectors_swigregister(StatusSelectors) - -class VehicleModeTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.VehicleModeTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.VehicleModeTypes___nonzero__(self) - - def __bool__(self): - return _mscl.VehicleModeTypes___bool__(self) - - def __len__(self): - return _mscl.VehicleModeTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.VehicleModeTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.VehicleModeTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.VehicleModeTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.VehicleModeTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.VehicleModeTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.VehicleModeTypes___setitem__(self, *args) - - def pop(self): - return _mscl.VehicleModeTypes_pop(self) - - def append(self, x): - return _mscl.VehicleModeTypes_append(self, x) - - def empty(self): - return _mscl.VehicleModeTypes_empty(self) - - def size(self): - return _mscl.VehicleModeTypes_size(self) - - def swap(self, v): - return _mscl.VehicleModeTypes_swap(self, v) - - def begin(self): - return _mscl.VehicleModeTypes_begin(self) - - def end(self): - return _mscl.VehicleModeTypes_end(self) - - def rbegin(self): - return _mscl.VehicleModeTypes_rbegin(self) - - def rend(self): - return _mscl.VehicleModeTypes_rend(self) - - def clear(self): - return _mscl.VehicleModeTypes_clear(self) - - def get_allocator(self): - return _mscl.VehicleModeTypes_get_allocator(self) - - def pop_back(self): - return _mscl.VehicleModeTypes_pop_back(self) - - def erase(self, *args): - return _mscl.VehicleModeTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.VehicleModeTypes_swiginit(self, _mscl.new_VehicleModeTypes(*args)) - - def push_back(self, x): - return _mscl.VehicleModeTypes_push_back(self, x) - - def front(self): - return _mscl.VehicleModeTypes_front(self) - - def back(self): - return _mscl.VehicleModeTypes_back(self) - - def assign(self, n, x): - return _mscl.VehicleModeTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.VehicleModeTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.VehicleModeTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.VehicleModeTypes_reserve(self, n) - - def capacity(self): - return _mscl.VehicleModeTypes_capacity(self) - __swig_destroy__ = _mscl.delete_VehicleModeTypes - -# Register VehicleModeTypes in _mscl: -_mscl.VehicleModeTypes_swigregister(VehicleModeTypes) - -class AdaptiveFilterLevels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveFilterLevels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveFilterLevels___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveFilterLevels___bool__(self) - - def __len__(self): - return _mscl.AdaptiveFilterLevels___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveFilterLevels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveFilterLevels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveFilterLevels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveFilterLevels___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveFilterLevels_pop(self) - - def append(self, x): - return _mscl.AdaptiveFilterLevels_append(self, x) - - def empty(self): - return _mscl.AdaptiveFilterLevels_empty(self) - - def size(self): - return _mscl.AdaptiveFilterLevels_size(self) - - def swap(self, v): - return _mscl.AdaptiveFilterLevels_swap(self, v) - - def begin(self): - return _mscl.AdaptiveFilterLevels_begin(self) - - def end(self): - return _mscl.AdaptiveFilterLevels_end(self) - - def rbegin(self): - return _mscl.AdaptiveFilterLevels_rbegin(self) - - def rend(self): - return _mscl.AdaptiveFilterLevels_rend(self) - - def clear(self): - return _mscl.AdaptiveFilterLevels_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveFilterLevels_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveFilterLevels_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveFilterLevels_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveFilterLevels_swiginit(self, _mscl.new_AdaptiveFilterLevels(*args)) - - def push_back(self, x): - return _mscl.AdaptiveFilterLevels_push_back(self, x) - - def front(self): - return _mscl.AdaptiveFilterLevels_front(self) - - def back(self): - return _mscl.AdaptiveFilterLevels_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveFilterLevels_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveFilterLevels_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveFilterLevels_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveFilterLevels_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveFilterLevels_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveFilterLevels - -# Register AdaptiveFilterLevels in _mscl: -_mscl.AdaptiveFilterLevels_swigregister(AdaptiveFilterLevels) - -class LowPassFilterConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LowPassFilterConfig_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LowPassFilterConfig___nonzero__(self) - - def __bool__(self): - return _mscl.LowPassFilterConfig___bool__(self) - - def __len__(self): - return _mscl.LowPassFilterConfig___len__(self) - - def __getslice__(self, i, j): - return _mscl.LowPassFilterConfig___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LowPassFilterConfig___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LowPassFilterConfig___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LowPassFilterConfig___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LowPassFilterConfig___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LowPassFilterConfig___setitem__(self, *args) - - def pop(self): - return _mscl.LowPassFilterConfig_pop(self) - - def append(self, x): - return _mscl.LowPassFilterConfig_append(self, x) - - def empty(self): - return _mscl.LowPassFilterConfig_empty(self) - - def size(self): - return _mscl.LowPassFilterConfig_size(self) - - def swap(self, v): - return _mscl.LowPassFilterConfig_swap(self, v) - - def begin(self): - return _mscl.LowPassFilterConfig_begin(self) - - def end(self): - return _mscl.LowPassFilterConfig_end(self) - - def rbegin(self): - return _mscl.LowPassFilterConfig_rbegin(self) - - def rend(self): - return _mscl.LowPassFilterConfig_rend(self) - - def clear(self): - return _mscl.LowPassFilterConfig_clear(self) - - def get_allocator(self): - return _mscl.LowPassFilterConfig_get_allocator(self) - - def pop_back(self): - return _mscl.LowPassFilterConfig_pop_back(self) - - def erase(self, *args): - return _mscl.LowPassFilterConfig_erase(self, *args) - - def __init__(self, *args): - _mscl.LowPassFilterConfig_swiginit(self, _mscl.new_LowPassFilterConfig(*args)) - - def push_back(self, x): - return _mscl.LowPassFilterConfig_push_back(self, x) - - def front(self): - return _mscl.LowPassFilterConfig_front(self) - - def back(self): - return _mscl.LowPassFilterConfig_back(self) - - def assign(self, n, x): - return _mscl.LowPassFilterConfig_assign(self, n, x) - - def resize(self, *args): - return _mscl.LowPassFilterConfig_resize(self, *args) - - def insert(self, *args): - return _mscl.LowPassFilterConfig_insert(self, *args) - - def reserve(self, n): - return _mscl.LowPassFilterConfig_reserve(self, n) - - def capacity(self): - return _mscl.LowPassFilterConfig_capacity(self) - __swig_destroy__ = _mscl.delete_LowPassFilterConfig - -# Register LowPassFilterConfig in _mscl: -_mscl.LowPassFilterConfig_swigregister(LowPassFilterConfig) - -class AidingMeasurementSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AidingMeasurementSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AidingMeasurementSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.AidingMeasurementSourceOptions___bool__(self) - - def __len__(self): - return _mscl.AidingMeasurementSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.AidingMeasurementSourceOptions_pop(self) - - def append(self, x): - return _mscl.AidingMeasurementSourceOptions_append(self, x) - - def empty(self): - return _mscl.AidingMeasurementSourceOptions_empty(self) - - def size(self): - return _mscl.AidingMeasurementSourceOptions_size(self) - - def swap(self, v): - return _mscl.AidingMeasurementSourceOptions_swap(self, v) - - def begin(self): - return _mscl.AidingMeasurementSourceOptions_begin(self) - - def end(self): - return _mscl.AidingMeasurementSourceOptions_end(self) - - def rbegin(self): - return _mscl.AidingMeasurementSourceOptions_rbegin(self) - - def rend(self): - return _mscl.AidingMeasurementSourceOptions_rend(self) - - def clear(self): - return _mscl.AidingMeasurementSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.AidingMeasurementSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.AidingMeasurementSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.AidingMeasurementSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.AidingMeasurementSourceOptions_swiginit(self, _mscl.new_AidingMeasurementSourceOptions(*args)) - - def push_back(self, x): - return _mscl.AidingMeasurementSourceOptions_push_back(self, x) - - def front(self): - return _mscl.AidingMeasurementSourceOptions_front(self) - - def back(self): - return _mscl.AidingMeasurementSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.AidingMeasurementSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.AidingMeasurementSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.AidingMeasurementSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.AidingMeasurementSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.AidingMeasurementSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_AidingMeasurementSourceOptions - -# Register AidingMeasurementSourceOptions in _mscl: -_mscl.AidingMeasurementSourceOptions_swigregister(AidingMeasurementSourceOptions) - -class PpsSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.PpsSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.PpsSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.PpsSourceOptions___bool__(self) - - def __len__(self): - return _mscl.PpsSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.PpsSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.PpsSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.PpsSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.PpsSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.PpsSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.PpsSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.PpsSourceOptions_pop(self) - - def append(self, x): - return _mscl.PpsSourceOptions_append(self, x) - - def empty(self): - return _mscl.PpsSourceOptions_empty(self) - - def size(self): - return _mscl.PpsSourceOptions_size(self) - - def swap(self, v): - return _mscl.PpsSourceOptions_swap(self, v) - - def begin(self): - return _mscl.PpsSourceOptions_begin(self) - - def end(self): - return _mscl.PpsSourceOptions_end(self) - - def rbegin(self): - return _mscl.PpsSourceOptions_rbegin(self) - - def rend(self): - return _mscl.PpsSourceOptions_rend(self) - - def clear(self): - return _mscl.PpsSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.PpsSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.PpsSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.PpsSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.PpsSourceOptions_swiginit(self, _mscl.new_PpsSourceOptions(*args)) - - def push_back(self, x): - return _mscl.PpsSourceOptions_push_back(self, x) - - def front(self): - return _mscl.PpsSourceOptions_front(self) - - def back(self): - return _mscl.PpsSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.PpsSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.PpsSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.PpsSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.PpsSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.PpsSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_PpsSourceOptions - -# Register PpsSourceOptions in _mscl: -_mscl.PpsSourceOptions_swigregister(PpsSourceOptions) - -class GeographicSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeographicSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeographicSources___nonzero__(self) - - def __bool__(self): - return _mscl.GeographicSources___bool__(self) - - def __len__(self): - return _mscl.GeographicSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeographicSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeographicSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeographicSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeographicSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeographicSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeographicSources___setitem__(self, *args) - - def pop(self): - return _mscl.GeographicSources_pop(self) - - def append(self, x): - return _mscl.GeographicSources_append(self, x) - - def empty(self): - return _mscl.GeographicSources_empty(self) - - def size(self): - return _mscl.GeographicSources_size(self) - - def swap(self, v): - return _mscl.GeographicSources_swap(self, v) - - def begin(self): - return _mscl.GeographicSources_begin(self) - - def end(self): - return _mscl.GeographicSources_end(self) - - def rbegin(self): - return _mscl.GeographicSources_rbegin(self) - - def rend(self): - return _mscl.GeographicSources_rend(self) - - def clear(self): - return _mscl.GeographicSources_clear(self) - - def get_allocator(self): - return _mscl.GeographicSources_get_allocator(self) - - def pop_back(self): - return _mscl.GeographicSources_pop_back(self) - - def erase(self, *args): - return _mscl.GeographicSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GeographicSources_swiginit(self, _mscl.new_GeographicSources(*args)) - - def push_back(self, x): - return _mscl.GeographicSources_push_back(self, x) - - def front(self): - return _mscl.GeographicSources_front(self) - - def back(self): - return _mscl.GeographicSources_back(self) - - def assign(self, n, x): - return _mscl.GeographicSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeographicSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GeographicSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GeographicSources_reserve(self, n) - - def capacity(self): - return _mscl.GeographicSources_capacity(self) - __swig_destroy__ = _mscl.delete_GeographicSources - -# Register GeographicSources in _mscl: -_mscl.GeographicSources_swigregister(GeographicSources) - -class GnssSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSources___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSources___bool__(self) - - def __len__(self): - return _mscl.GnssSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssSources___setitem__(self, *args) - - def pop(self): - return _mscl.GnssSources_pop(self) - - def append(self, x): - return _mscl.GnssSources_append(self, x) - - def empty(self): - return _mscl.GnssSources_empty(self) - - def size(self): - return _mscl.GnssSources_size(self) - - def swap(self, v): - return _mscl.GnssSources_swap(self, v) - - def begin(self): - return _mscl.GnssSources_begin(self) - - def end(self): - return _mscl.GnssSources_end(self) - - def rbegin(self): - return _mscl.GnssSources_rbegin(self) - - def rend(self): - return _mscl.GnssSources_rend(self) - - def clear(self): - return _mscl.GnssSources_clear(self) - - def get_allocator(self): - return _mscl.GnssSources_get_allocator(self) - - def pop_back(self): - return _mscl.GnssSources_pop_back(self) - - def erase(self, *args): - return _mscl.GnssSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssSources_swiginit(self, _mscl.new_GnssSources(*args)) - - def push_back(self, x): - return _mscl.GnssSources_push_back(self, x) - - def front(self): - return _mscl.GnssSources_front(self) - - def back(self): - return _mscl.GnssSources_back(self) - - def assign(self, n, x): - return _mscl.GnssSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssSources_reserve(self, n) - - def capacity(self): - return _mscl.GnssSources_capacity(self) - __swig_destroy__ = _mscl.delete_GnssSources - -# Register GnssSources in _mscl: -_mscl.GnssSources_swigregister(GnssSources) - -class GnssSignalConfigOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSignalConfigOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSignalConfigOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSignalConfigOptions___bool__(self) - - def __len__(self): - return _mscl.GnssSignalConfigOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GnssSignalConfigOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GnssSignalConfigOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GnssSignalConfigOptions_has_key(self, key) - - def keys(self): - return _mscl.GnssSignalConfigOptions_keys(self) - - def values(self): - return _mscl.GnssSignalConfigOptions_values(self) - - def items(self): - return _mscl.GnssSignalConfigOptions_items(self) - - def __contains__(self, key): - return _mscl.GnssSignalConfigOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GnssSignalConfigOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GnssSignalConfigOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GnssSignalConfigOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GnssSignalConfigOptions_asdict(self) - - def __init__(self, *args): - _mscl.GnssSignalConfigOptions_swiginit(self, _mscl.new_GnssSignalConfigOptions(*args)) - - def empty(self): - return _mscl.GnssSignalConfigOptions_empty(self) - - def size(self): - return _mscl.GnssSignalConfigOptions_size(self) - - def swap(self, v): - return _mscl.GnssSignalConfigOptions_swap(self, v) - - def begin(self): - return _mscl.GnssSignalConfigOptions_begin(self) - - def end(self): - return _mscl.GnssSignalConfigOptions_end(self) - - def rbegin(self): - return _mscl.GnssSignalConfigOptions_rbegin(self) - - def rend(self): - return _mscl.GnssSignalConfigOptions_rend(self) - - def clear(self): - return _mscl.GnssSignalConfigOptions_clear(self) - - def get_allocator(self): - return _mscl.GnssSignalConfigOptions_get_allocator(self) - - def count(self, x): - return _mscl.GnssSignalConfigOptions_count(self, x) - - def erase(self, *args): - return _mscl.GnssSignalConfigOptions_erase(self, *args) - - def find(self, x): - return _mscl.GnssSignalConfigOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GnssSignalConfigOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GnssSignalConfigOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GnssSignalConfigOptions - -# Register GnssSignalConfigOptions in _mscl: -_mscl.GnssSignalConfigOptions_swigregister(GnssSignalConfigOptions) - -class NmeaMessageFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NmeaMessageFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NmeaMessageFormats___nonzero__(self) - - def __bool__(self): - return _mscl.NmeaMessageFormats___bool__(self) - - def __len__(self): - return _mscl.NmeaMessageFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.NmeaMessageFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NmeaMessageFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NmeaMessageFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NmeaMessageFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NmeaMessageFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NmeaMessageFormats___setitem__(self, *args) - - def pop(self): - return _mscl.NmeaMessageFormats_pop(self) - - def append(self, x): - return _mscl.NmeaMessageFormats_append(self, x) - - def empty(self): - return _mscl.NmeaMessageFormats_empty(self) - - def size(self): - return _mscl.NmeaMessageFormats_size(self) - - def swap(self, v): - return _mscl.NmeaMessageFormats_swap(self, v) - - def begin(self): - return _mscl.NmeaMessageFormats_begin(self) - - def end(self): - return _mscl.NmeaMessageFormats_end(self) - - def rbegin(self): - return _mscl.NmeaMessageFormats_rbegin(self) - - def rend(self): - return _mscl.NmeaMessageFormats_rend(self) - - def clear(self): - return _mscl.NmeaMessageFormats_clear(self) - - def get_allocator(self): - return _mscl.NmeaMessageFormats_get_allocator(self) - - def pop_back(self): - return _mscl.NmeaMessageFormats_pop_back(self) - - def erase(self, *args): - return _mscl.NmeaMessageFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.NmeaMessageFormats_swiginit(self, _mscl.new_NmeaMessageFormats(*args)) - - def push_back(self, x): - return _mscl.NmeaMessageFormats_push_back(self, x) - - def front(self): - return _mscl.NmeaMessageFormats_front(self) - - def back(self): - return _mscl.NmeaMessageFormats_back(self) - - def assign(self, n, x): - return _mscl.NmeaMessageFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.NmeaMessageFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.NmeaMessageFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.NmeaMessageFormats_reserve(self, n) - - def capacity(self): - return _mscl.NmeaMessageFormats_capacity(self) - __swig_destroy__ = _mscl.delete_NmeaMessageFormats - -# Register NmeaMessageFormats in _mscl: -_mscl.NmeaMessageFormats_swigregister(NmeaMessageFormats) - -class GpioPinModeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinModeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinModeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinModeOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinModeOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.GpioPinModeOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GpioPinModeOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GpioPinModeOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GpioPinModeOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GpioPinModeOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GpioPinModeOptions___setitem__(self, *args) - - def pop(self): - return _mscl.GpioPinModeOptions_pop(self) - - def append(self, x): - return _mscl.GpioPinModeOptions_append(self, x) - - def empty(self): - return _mscl.GpioPinModeOptions_empty(self) - - def size(self): - return _mscl.GpioPinModeOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinModeOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinModeOptions_begin(self) - - def end(self): - return _mscl.GpioPinModeOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinModeOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinModeOptions_rend(self) - - def clear(self): - return _mscl.GpioPinModeOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinModeOptions_get_allocator(self) - - def pop_back(self): - return _mscl.GpioPinModeOptions_pop_back(self) - - def erase(self, *args): - return _mscl.GpioPinModeOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.GpioPinModeOptions_swiginit(self, _mscl.new_GpioPinModeOptions(*args)) - - def push_back(self, x): - return _mscl.GpioPinModeOptions_push_back(self, x) - - def front(self): - return _mscl.GpioPinModeOptions_front(self) - - def back(self): - return _mscl.GpioPinModeOptions_back(self) - - def assign(self, n, x): - return _mscl.GpioPinModeOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.GpioPinModeOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.GpioPinModeOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.GpioPinModeOptions_reserve(self, n) - - def capacity(self): - return _mscl.GpioPinModeOptions_capacity(self) - __swig_destroy__ = _mscl.delete_GpioPinModeOptions - -# Register GpioPinModeOptions in _mscl: -_mscl.GpioPinModeOptions_swigregister(GpioPinModeOptions) - -class GpioBehaviorModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioBehaviorModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioBehaviorModes___nonzero__(self) - - def __bool__(self): - return _mscl.GpioBehaviorModes___bool__(self) - - def __len__(self): - return _mscl.GpioBehaviorModes___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioBehaviorModes___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioBehaviorModes___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioBehaviorModes_has_key(self, key) - - def keys(self): - return _mscl.GpioBehaviorModes_keys(self) - - def values(self): - return _mscl.GpioBehaviorModes_values(self) - - def items(self): - return _mscl.GpioBehaviorModes_items(self) - - def __contains__(self, key): - return _mscl.GpioBehaviorModes___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioBehaviorModes_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioBehaviorModes_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioBehaviorModes___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioBehaviorModes_asdict(self) - - def __init__(self, *args): - _mscl.GpioBehaviorModes_swiginit(self, _mscl.new_GpioBehaviorModes(*args)) - - def empty(self): - return _mscl.GpioBehaviorModes_empty(self) - - def size(self): - return _mscl.GpioBehaviorModes_size(self) - - def swap(self, v): - return _mscl.GpioBehaviorModes_swap(self, v) - - def begin(self): - return _mscl.GpioBehaviorModes_begin(self) - - def end(self): - return _mscl.GpioBehaviorModes_end(self) - - def rbegin(self): - return _mscl.GpioBehaviorModes_rbegin(self) - - def rend(self): - return _mscl.GpioBehaviorModes_rend(self) - - def clear(self): - return _mscl.GpioBehaviorModes_clear(self) - - def get_allocator(self): - return _mscl.GpioBehaviorModes_get_allocator(self) - - def count(self, x): - return _mscl.GpioBehaviorModes_count(self, x) - - def erase(self, *args): - return _mscl.GpioBehaviorModes_erase(self, *args) - - def find(self, x): - return _mscl.GpioBehaviorModes_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioBehaviorModes_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioBehaviorModes_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioBehaviorModes - -# Register GpioBehaviorModes in _mscl: -_mscl.GpioBehaviorModes_swigregister(GpioBehaviorModes) - -class GpioFeatureBehaviors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioFeatureBehaviors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioFeatureBehaviors___nonzero__(self) - - def __bool__(self): - return _mscl.GpioFeatureBehaviors___bool__(self) - - def __len__(self): - return _mscl.GpioFeatureBehaviors___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioFeatureBehaviors___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioFeatureBehaviors___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioFeatureBehaviors_has_key(self, key) - - def keys(self): - return _mscl.GpioFeatureBehaviors_keys(self) - - def values(self): - return _mscl.GpioFeatureBehaviors_values(self) - - def items(self): - return _mscl.GpioFeatureBehaviors_items(self) - - def __contains__(self, key): - return _mscl.GpioFeatureBehaviors___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioFeatureBehaviors_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioFeatureBehaviors_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioFeatureBehaviors___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioFeatureBehaviors_asdict(self) - - def __init__(self, *args): - _mscl.GpioFeatureBehaviors_swiginit(self, _mscl.new_GpioFeatureBehaviors(*args)) - - def empty(self): - return _mscl.GpioFeatureBehaviors_empty(self) - - def size(self): - return _mscl.GpioFeatureBehaviors_size(self) - - def swap(self, v): - return _mscl.GpioFeatureBehaviors_swap(self, v) - - def begin(self): - return _mscl.GpioFeatureBehaviors_begin(self) - - def end(self): - return _mscl.GpioFeatureBehaviors_end(self) - - def rbegin(self): - return _mscl.GpioFeatureBehaviors_rbegin(self) - - def rend(self): - return _mscl.GpioFeatureBehaviors_rend(self) - - def clear(self): - return _mscl.GpioFeatureBehaviors_clear(self) - - def get_allocator(self): - return _mscl.GpioFeatureBehaviors_get_allocator(self) - - def count(self, x): - return _mscl.GpioFeatureBehaviors_count(self, x) - - def erase(self, *args): - return _mscl.GpioFeatureBehaviors_erase(self, *args) - - def find(self, x): - return _mscl.GpioFeatureBehaviors_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioFeatureBehaviors_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioFeatureBehaviors_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioFeatureBehaviors - -# Register GpioFeatureBehaviors in _mscl: -_mscl.GpioFeatureBehaviors_swigregister(GpioFeatureBehaviors) - -class GpioPinOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioPinOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioPinOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioPinOptions_has_key(self, key) - - def keys(self): - return _mscl.GpioPinOptions_keys(self) - - def values(self): - return _mscl.GpioPinOptions_values(self) - - def items(self): - return _mscl.GpioPinOptions_items(self) - - def __contains__(self, key): - return _mscl.GpioPinOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioPinOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioPinOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioPinOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioPinOptions_asdict(self) - - def __init__(self, *args): - _mscl.GpioPinOptions_swiginit(self, _mscl.new_GpioPinOptions(*args)) - - def empty(self): - return _mscl.GpioPinOptions_empty(self) - - def size(self): - return _mscl.GpioPinOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinOptions_begin(self) - - def end(self): - return _mscl.GpioPinOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinOptions_rend(self) - - def clear(self): - return _mscl.GpioPinOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinOptions_get_allocator(self) - - def count(self, x): - return _mscl.GpioPinOptions_count(self, x) - - def erase(self, *args): - return _mscl.GpioPinOptions_erase(self, *args) - - def find(self, x): - return _mscl.GpioPinOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioPinOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioPinOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioPinOptions - -# Register GpioPinOptions in _mscl: -_mscl.GpioPinOptions_swigregister(GpioPinOptions) - -class EventInputTriggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventInputTriggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventInputTriggers___nonzero__(self) - - def __bool__(self): - return _mscl.EventInputTriggers___bool__(self) - - def __len__(self): - return _mscl.EventInputTriggers___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventInputTriggers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventInputTriggers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventInputTriggers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventInputTriggers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventInputTriggers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventInputTriggers___setitem__(self, *args) - - def __init__(self, *args): - _mscl.EventInputTriggers_swiginit(self, _mscl.new_EventInputTriggers(*args)) - - def empty(self): - return _mscl.EventInputTriggers_empty(self) - - def size(self): - return _mscl.EventInputTriggers_size(self) - - def swap(self, v): - return _mscl.EventInputTriggers_swap(self, v) - - def begin(self): - return _mscl.EventInputTriggers_begin(self) - - def end(self): - return _mscl.EventInputTriggers_end(self) - - def rbegin(self): - return _mscl.EventInputTriggers_rbegin(self) - - def rend(self): - return _mscl.EventInputTriggers_rend(self) - - def front(self): - return _mscl.EventInputTriggers_front(self) - - def back(self): - return _mscl.EventInputTriggers_back(self) - - def fill(self, u): - return _mscl.EventInputTriggers_fill(self, u) - __swig_destroy__ = _mscl.delete_EventInputTriggers - -# Register EventInputTriggers in _mscl: -_mscl.EventInputTriggers_swigregister(EventInputTriggers) - -class EventTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTypes___nonzero__(self) - - def __bool__(self): - return _mscl.EventTypes___bool__(self) - - def __len__(self): - return _mscl.EventTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTypes___setitem__(self, *args) - - def pop(self): - return _mscl.EventTypes_pop(self) - - def append(self, x): - return _mscl.EventTypes_append(self, x) - - def empty(self): - return _mscl.EventTypes_empty(self) - - def size(self): - return _mscl.EventTypes_size(self) - - def swap(self, v): - return _mscl.EventTypes_swap(self, v) - - def begin(self): - return _mscl.EventTypes_begin(self) - - def end(self): - return _mscl.EventTypes_end(self) - - def rbegin(self): - return _mscl.EventTypes_rbegin(self) - - def rend(self): - return _mscl.EventTypes_rend(self) - - def clear(self): - return _mscl.EventTypes_clear(self) - - def get_allocator(self): - return _mscl.EventTypes_get_allocator(self) - - def pop_back(self): - return _mscl.EventTypes_pop_back(self) - - def erase(self, *args): - return _mscl.EventTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTypes_swiginit(self, _mscl.new_EventTypes(*args)) - - def push_back(self, x): - return _mscl.EventTypes_push_back(self, x) - - def front(self): - return _mscl.EventTypes_front(self) - - def back(self): - return _mscl.EventTypes_back(self) - - def assign(self, n, x): - return _mscl.EventTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTypes_reserve(self, n) - - def capacity(self): - return _mscl.EventTypes_capacity(self) - __swig_destroy__ = _mscl.delete_EventTypes - -# Register EventTypes in _mscl: -_mscl.EventTypes_swigregister(EventTypes) - -class MeasurementReferenceFrames(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MeasurementReferenceFrames_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MeasurementReferenceFrames___nonzero__(self) - - def __bool__(self): - return _mscl.MeasurementReferenceFrames___bool__(self) - - def __len__(self): - return _mscl.MeasurementReferenceFrames___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.MeasurementReferenceFrames___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.MeasurementReferenceFrames___delitem__(self, key) - - def has_key(self, key): - return _mscl.MeasurementReferenceFrames_has_key(self, key) - - def keys(self): - return _mscl.MeasurementReferenceFrames_keys(self) - - def values(self): - return _mscl.MeasurementReferenceFrames_values(self) - - def items(self): - return _mscl.MeasurementReferenceFrames_items(self) - - def __contains__(self, key): - return _mscl.MeasurementReferenceFrames___contains__(self, key) - - def key_iterator(self): - return _mscl.MeasurementReferenceFrames_key_iterator(self) - - def value_iterator(self): - return _mscl.MeasurementReferenceFrames_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.MeasurementReferenceFrames___setitem__(self, *args) - - def asdict(self): - return _mscl.MeasurementReferenceFrames_asdict(self) - - def __init__(self, *args): - _mscl.MeasurementReferenceFrames_swiginit(self, _mscl.new_MeasurementReferenceFrames(*args)) - - def empty(self): - return _mscl.MeasurementReferenceFrames_empty(self) - - def size(self): - return _mscl.MeasurementReferenceFrames_size(self) - - def swap(self, v): - return _mscl.MeasurementReferenceFrames_swap(self, v) - - def begin(self): - return _mscl.MeasurementReferenceFrames_begin(self) - - def end(self): - return _mscl.MeasurementReferenceFrames_end(self) - - def rbegin(self): - return _mscl.MeasurementReferenceFrames_rbegin(self) - - def rend(self): - return _mscl.MeasurementReferenceFrames_rend(self) - - def clear(self): - return _mscl.MeasurementReferenceFrames_clear(self) - - def get_allocator(self): - return _mscl.MeasurementReferenceFrames_get_allocator(self) - - def count(self, x): - return _mscl.MeasurementReferenceFrames_count(self, x) - - def erase(self, *args): - return _mscl.MeasurementReferenceFrames_erase(self, *args) - - def find(self, x): - return _mscl.MeasurementReferenceFrames_find(self, x) - - def lower_bound(self, x): - return _mscl.MeasurementReferenceFrames_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.MeasurementReferenceFrames_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrames - -# Register MeasurementReferenceFrames in _mscl: -_mscl.MeasurementReferenceFrames_swigregister(MeasurementReferenceFrames) - -class Bins(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bins_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bins___nonzero__(self) - - def __bool__(self): - return _mscl.Bins___bool__(self) - - def __len__(self): - return _mscl.Bins___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bins___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bins___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bins___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bins___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bins___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bins___setitem__(self, *args) - - def pop(self): - return _mscl.Bins_pop(self) - - def append(self, x): - return _mscl.Bins_append(self, x) - - def empty(self): - return _mscl.Bins_empty(self) - - def size(self): - return _mscl.Bins_size(self) - - def swap(self, v): - return _mscl.Bins_swap(self, v) - - def begin(self): - return _mscl.Bins_begin(self) - - def end(self): - return _mscl.Bins_end(self) - - def rbegin(self): - return _mscl.Bins_rbegin(self) - - def rend(self): - return _mscl.Bins_rend(self) - - def clear(self): - return _mscl.Bins_clear(self) - - def get_allocator(self): - return _mscl.Bins_get_allocator(self) - - def pop_back(self): - return _mscl.Bins_pop_back(self) - - def erase(self, *args): - return _mscl.Bins_erase(self, *args) - - def __init__(self, *args): - _mscl.Bins_swiginit(self, _mscl.new_Bins(*args)) - - def push_back(self, x): - return _mscl.Bins_push_back(self, x) - - def front(self): - return _mscl.Bins_front(self) - - def back(self): - return _mscl.Bins_back(self) - - def assign(self, n, x): - return _mscl.Bins_assign(self, n, x) - - def insert(self, *args): - return _mscl.Bins_insert(self, *args) - - def reserve(self, n): - return _mscl.Bins_reserve(self, n) - - def capacity(self): - return _mscl.Bins_capacity(self) - __swig_destroy__ = _mscl.delete_Bins - -# Register Bins in _mscl: -_mscl.Bins_swigregister(Bins) - -class Error(Exception): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_swiginit(self, _mscl.new_Error(*args)) - __swig_destroy__ = _mscl.delete_Error - - def what(self): - return _mscl.Error_what(self) - - def __str__(self): - return _mscl.Error___str__(self) - -# Register Error in _mscl: -_mscl.Error_swigregister(Error) - -class Error_NotSupported(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NotSupported_swiginit(self, _mscl.new_Error_NotSupported(*args)) - __swig_destroy__ = _mscl.delete_Error_NotSupported - -# Register Error_NotSupported in _mscl: -_mscl.Error_NotSupported_swigregister(Error_NotSupported) - -class Error_NoData(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NoData_swiginit(self, _mscl.new_Error_NoData(*args)) - __swig_destroy__ = _mscl.delete_Error_NoData - -# Register Error_NoData in _mscl: -_mscl.Error_NoData_swigregister(Error_NoData) - -class Error_BadDataType(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Error_BadDataType_swiginit(self, _mscl.new_Error_BadDataType()) - __swig_destroy__ = _mscl.delete_Error_BadDataType - -# Register Error_BadDataType in _mscl: -_mscl.Error_BadDataType_swigregister(Error_BadDataType) - -class Error_UnknownSampleRate(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_UnknownSampleRate_swiginit(self, _mscl.new_Error_UnknownSampleRate(*args)) - __swig_destroy__ = _mscl.delete_Error_UnknownSampleRate - -# Register Error_UnknownSampleRate in _mscl: -_mscl.Error_UnknownSampleRate_swigregister(Error_UnknownSampleRate) - -class Error_Communication(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Communication_swiginit(self, _mscl.new_Error_Communication(*args)) - __swig_destroy__ = _mscl.delete_Error_Communication - -# Register Error_Communication in _mscl: -_mscl.Error_Communication_swigregister(Error_Communication) - -class Error_NodeCommunication(Error_Communication): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NodeCommunication_swiginit(self, _mscl.new_Error_NodeCommunication(*args)) - - def nodeAddress(self): - return _mscl.Error_NodeCommunication_nodeAddress(self) - __swig_destroy__ = _mscl.delete_Error_NodeCommunication - -# Register Error_NodeCommunication in _mscl: -_mscl.Error_NodeCommunication_swigregister(Error_NodeCommunication) - -class Error_Connection(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Connection_swiginit(self, _mscl.new_Error_Connection(*args)) - __swig_destroy__ = _mscl.delete_Error_Connection - - def code(self): - return _mscl.Error_Connection_code(self) - - def value(self): - return _mscl.Error_Connection_value(self) - -# Register Error_Connection in _mscl: -_mscl.Error_Connection_swigregister(Error_Connection) - -class Error_InvalidSerialPort(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code): - _mscl.Error_InvalidSerialPort_swiginit(self, _mscl.new_Error_InvalidSerialPort(code)) - __swig_destroy__ = _mscl.delete_Error_InvalidSerialPort - -# Register Error_InvalidSerialPort in _mscl: -_mscl.Error_InvalidSerialPort_swigregister(Error_InvalidSerialPort) - -class Error_InvalidTcpServer(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidTcpServer_swiginit(self, _mscl.new_Error_InvalidTcpServer(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidTcpServer - -# Register Error_InvalidTcpServer in _mscl: -_mscl.Error_InvalidTcpServer_swigregister(Error_InvalidTcpServer) - -class Error_InvalidUnixSocket(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidUnixSocket_swiginit(self, _mscl.new_Error_InvalidUnixSocket(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidUnixSocket - -# Register Error_InvalidUnixSocket in _mscl: -_mscl.Error_InvalidUnixSocket_swigregister(Error_InvalidUnixSocket) - -class Error_MipCmdFailed(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_MipCmdFailed_swiginit(self, _mscl.new_Error_MipCmdFailed(*args)) - __swig_destroy__ = _mscl.delete_Error_MipCmdFailed - - def code(self): - return _mscl.Error_MipCmdFailed_code(self) - - def value(self): - return _mscl.Error_MipCmdFailed_value(self) - -# Register Error_MipCmdFailed in _mscl: -_mscl.Error_MipCmdFailed_swigregister(Error_MipCmdFailed) - -class Error_InvalidConfig(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_InvalidConfig_swiginit(self, _mscl.new_Error_InvalidConfig(*args)) - __swig_destroy__ = _mscl.delete_Error_InvalidConfig - - def issues(self): - return _mscl.Error_InvalidConfig_issues(self) - -# Register Error_InvalidConfig in _mscl: -_mscl.Error_InvalidConfig_swigregister(Error_InvalidConfig) - -class Error_InvalidNodeConfig(Error_InvalidConfig): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, issues, nodeAddress): - _mscl.Error_InvalidNodeConfig_swiginit(self, _mscl.new_Error_InvalidNodeConfig(issues, nodeAddress)) - __swig_destroy__ = _mscl.delete_Error_InvalidNodeConfig - - def nodeAddress(self): - return _mscl.Error_InvalidNodeConfig_nodeAddress(self) - -# Register Error_InvalidNodeConfig in _mscl: -_mscl.Error_InvalidNodeConfig_swigregister(Error_InvalidNodeConfig) - - - diff --git a/mscl_release_assets/mscl-arm64-Python3.12-v67.0.0/_mscl.so b/mscl_release_assets/mscl-arm64-Python3.12-v67.0.0/_mscl.so deleted file mode 100644 index d68667d..0000000 Binary files a/mscl_release_assets/mscl-arm64-Python3.12-v67.0.0/_mscl.so and /dev/null differ diff --git a/mscl_release_assets/mscl-arm64-Python3.12-v67.0.0/mscl.py b/mscl_release_assets/mscl-arm64-Python3.12-v67.0.0/mscl.py deleted file mode 100644 index daa6217..0000000 --- a/mscl_release_assets/mscl-arm64-Python3.12-v67.0.0/mscl.py +++ /dev/null @@ -1,18376 +0,0 @@ -# This file was automatically generated by SWIG (http://www.swig.org). -# Version 4.0.1 -# -# Do not make changes to this file unless you know what you are doing--modify -# the SWIG interface file instead. - -from sys import version_info as _swig_python_version_info -if _swig_python_version_info < (2, 7, 0): - raise RuntimeError("Python 2.7 or later required") - -# Import the low-level C/C++ module -if __package__ or "." in __name__: - from . import _mscl -else: - import _mscl - -try: - import builtins as __builtin__ -except ImportError: - import __builtin__ - -def _swig_repr(self): - try: - strthis = "proxy of " + self.this.__repr__() - except __builtin__.Exception: - strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - - -def _swig_setattr_nondynamic_instance_variable(set): - def set_instance_attr(self, name, value): - if name == "thisown": - self.this.own(value) - elif name == "this": - set(self, name, value) - elif hasattr(self, name) and isinstance(getattr(type(self), name), property): - set(self, name, value) - else: - raise AttributeError("You cannot add instance attributes to %s" % self) - return set_instance_attr - - -def _swig_setattr_nondynamic_class_variable(set): - def set_class_attr(cls, name, value): - if hasattr(cls, name) and not isinstance(getattr(cls, name), property): - set(cls, name, value) - else: - raise AttributeError("You cannot add class attributes to %s" % cls) - return set_class_attr - - -def _swig_add_metaclass(metaclass): - """Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass""" - def wrapper(cls): - return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy()) - return wrapper - - -class _SwigNonDynamicMeta(type): - """Meta class to enforce nondynamic attributes (no new attributes) for a class""" - __setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__) - - -class SwigPyIterator(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_SwigPyIterator - - def value(self): - return _mscl.SwigPyIterator_value(self) - - def incr(self, n=1): - return _mscl.SwigPyIterator_incr(self, n) - - def decr(self, n=1): - return _mscl.SwigPyIterator_decr(self, n) - - def distance(self, x): - return _mscl.SwigPyIterator_distance(self, x) - - def equal(self, x): - return _mscl.SwigPyIterator_equal(self, x) - - def copy(self): - return _mscl.SwigPyIterator_copy(self) - - def next(self): - return _mscl.SwigPyIterator_next(self) - - def __next__(self): - return _mscl.SwigPyIterator___next__(self) - - def previous(self): - return _mscl.SwigPyIterator_previous(self) - - def advance(self, n): - return _mscl.SwigPyIterator_advance(self, n) - - def __eq__(self, x): - return _mscl.SwigPyIterator___eq__(self, x) - - def __ne__(self, x): - return _mscl.SwigPyIterator___ne__(self, x) - - def __iadd__(self, n): - return _mscl.SwigPyIterator___iadd__(self, n) - - def __isub__(self, n): - return _mscl.SwigPyIterator___isub__(self, n) - - def __add__(self, n): - return _mscl.SwigPyIterator___add__(self, n) - - def __sub__(self, *args): - return _mscl.SwigPyIterator___sub__(self, *args) - def __iter__(self): - return self - -# Register SwigPyIterator in _mscl: -_mscl.SwigPyIterator_swigregister(SwigPyIterator) - -SHARED_PTR_DISOWN = _mscl.SHARED_PTR_DISOWN -valueType_float = _mscl.valueType_float -valueType_double = _mscl.valueType_double -valueType_uint8 = _mscl.valueType_uint8 -valueType_uint16 = _mscl.valueType_uint16 -valueType_uint32 = _mscl.valueType_uint32 -valueType_int16 = _mscl.valueType_int16 -valueType_int32 = _mscl.valueType_int32 -valueType_bool = _mscl.valueType_bool -valueType_Vector = _mscl.valueType_Vector -valueType_Matrix = _mscl.valueType_Matrix -valueType_Timestamp = _mscl.valueType_Timestamp -valueType_string = _mscl.valueType_string -valueType_Bytes = _mscl.valueType_Bytes -valueType_StructuralHealth = _mscl.valueType_StructuralHealth -valueType_RfSweep = _mscl.valueType_RfSweep -valueType_ChannelMask = _mscl.valueType_ChannelMask -valueType_int8 = _mscl.valueType_int8 -valueType_uint64 = _mscl.valueType_uint64 -deviceState_idle = _mscl.deviceState_idle -deviceState_sleep = _mscl.deviceState_sleep -deviceState_sampling = _mscl.deviceState_sampling -deviceState_sampling_lostBeacon = _mscl.deviceState_sampling_lostBeacon -deviceState_sampling_inactive = _mscl.deviceState_sampling_inactive -deviceState_unknown = _mscl.deviceState_unknown -class BitMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BitMask_swiginit(self, _mscl.new_BitMask(*args)) - __swig_destroy__ = _mscl.delete_BitMask - - def __eq__(self, other): - return _mscl.BitMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.BitMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.BitMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.BitMask___gt__(self, other) - - def fromMask(self, val): - return _mscl.BitMask_fromMask(self, val) - - def toMask(self): - return _mscl.BitMask_toMask(self) - - def enabledCount(self): - return _mscl.BitMask_enabledCount(self) - - def enabled(self, bitIndex): - return _mscl.BitMask_enabled(self, bitIndex) - - def enable(self, bitIndex, enable=True): - return _mscl.BitMask_enable(self, bitIndex, enable) - - def lastBitEnabled(self): - return _mscl.BitMask_lastBitEnabled(self) - -# Register BitMask in _mscl: -_mscl.BitMask_swigregister(BitMask) - -class ChannelMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_CHANNELS = _mscl.ChannelMask_MAX_CHANNELS - - def __init__(self, *args): - _mscl.ChannelMask_swiginit(self, _mscl.new_ChannelMask(*args)) - __swig_destroy__ = _mscl.delete_ChannelMask - - def __eq__(self, other): - return _mscl.ChannelMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.ChannelMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.ChannelMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.ChannelMask___gt__(self, other) - - def fromMask(self, channelMask): - return _mscl.ChannelMask_fromMask(self, channelMask) - - def toMask(self): - return _mscl.ChannelMask_toMask(self) - - def count(self): - return _mscl.ChannelMask_count(self) - - def enabled(self, channel): - return _mscl.ChannelMask_enabled(self, channel) - - def enable(self, channel, enable=True): - return _mscl.ChannelMask_enable(self, channel, enable) - - def lastChEnabled(self): - return _mscl.ChannelMask_lastChEnabled(self) - -# Register ChannelMask in _mscl: -_mscl.ChannelMask_swigregister(ChannelMask) - -class Value(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_Value - - def storedAs(self): - return _mscl.Value_storedAs(self) - - def as_float(self): - return _mscl.Value_as_float(self) - - def as_double(self): - return _mscl.Value_as_double(self) - - def as_uint8(self): - return _mscl.Value_as_uint8(self) - - def as_uint16(self): - return _mscl.Value_as_uint16(self) - - def as_uint32(self): - return _mscl.Value_as_uint32(self) - - def as_uint64(self): - return _mscl.Value_as_uint64(self) - - def as_int8(self): - return _mscl.Value_as_int8(self) - - def as_int16(self): - return _mscl.Value_as_int16(self) - - def as_int32(self): - return _mscl.Value_as_int32(self) - - def as_bool(self): - return _mscl.Value_as_bool(self) - - def as_ChannelMask(self): - return _mscl.Value_as_ChannelMask(self) - - def as_string(self): - return _mscl.Value_as_string(self) - - def __init__(self): - _mscl.Value_swiginit(self, _mscl.new_Value()) - -# Register Value in _mscl: -_mscl.Value_swigregister(Value) - -class Bin(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, start, end, count): - _mscl.Bin_swiginit(self, _mscl.new_Bin(start, end, count)) - - def start(self): - return _mscl.Bin_start(self) - - def end(self): - return _mscl.Bin_end(self) - - def count(self): - return _mscl.Bin_count(self) - __swig_destroy__ = _mscl.delete_Bin - -# Register Bin in _mscl: -_mscl.Bin_swigregister(Bin) - -class Histogram(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, binsStart, binsSize): - _mscl.Histogram_swiginit(self, _mscl.new_Histogram(binsStart, binsSize)) - - def binsStart(self): - return _mscl.Histogram_binsStart(self) - - def binsSize(self): - return _mscl.Histogram_binsSize(self) - - def bins(self): - return _mscl.Histogram_bins(self) - - def addBin(self, bin): - return _mscl.Histogram_addBin(self, bin) - __swig_destroy__ = _mscl.delete_Histogram - -# Register Histogram in _mscl: -_mscl.Histogram_swigregister(Histogram) - -class Timestamp(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INTERNAL = _mscl.Timestamp_INTERNAL - EXTERNAL = _mscl.Timestamp_EXTERNAL - TIME_OF_ARRIVAL = _mscl.Timestamp_TIME_OF_ARRIVAL - GPS = _mscl.Timestamp_GPS - UNIX = _mscl.Timestamp_UNIX - UTC = _mscl.Timestamp_UTC - - def __init__(self, *args): - _mscl.Timestamp_swiginit(self, _mscl.new_Timestamp(*args)) - __swig_destroy__ = _mscl.delete_Timestamp - - def nanoseconds(self, *args): - return _mscl.Timestamp_nanoseconds(self, *args) - - def seconds(self, *args): - return _mscl.Timestamp_seconds(self, *args) - - def storedEpoch(self): - return _mscl.Timestamp_storedEpoch(self) - - def __str__(self): - return _mscl.Timestamp___str__(self) - - def setTime(self, *args): - return _mscl.Timestamp_setTime(self, *args) - - def setTimeNow(self): - return _mscl.Timestamp_setTimeNow(self) - - @staticmethod - def timeNow(): - return _mscl.Timestamp_timeNow() - - @staticmethod - def setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - - @staticmethod - def getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - - @staticmethod - def gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - - @staticmethod - def utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -# Register Timestamp in _mscl: -_mscl.Timestamp_swigregister(Timestamp) - -def Timestamp_timeNow(): - return _mscl.Timestamp_timeNow() - -def Timestamp_setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - -def Timestamp_getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - -def Timestamp_gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - -def Timestamp_utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -class TimeSpan(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - NANOSECONDS_PER_MICROSECOND = _mscl.TimeSpan_NANOSECONDS_PER_MICROSECOND - NANOSECONDS_PER_MILLISECOND = _mscl.TimeSpan_NANOSECONDS_PER_MILLISECOND - NANOSECONDS_PER_SECOND = _mscl.TimeSpan_NANOSECONDS_PER_SECOND - - def getNanoseconds(self): - return _mscl.TimeSpan_getNanoseconds(self) - - def getMicroseconds(self): - return _mscl.TimeSpan_getMicroseconds(self) - - def getMilliseconds(self): - return _mscl.TimeSpan_getMilliseconds(self) - - def getSeconds(self): - return _mscl.TimeSpan_getSeconds(self) - - @staticmethod - def NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - - @staticmethod - def MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - - @staticmethod - def MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - - @staticmethod - def Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - - @staticmethod - def Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - - @staticmethod - def Hours(hours): - return _mscl.TimeSpan_Hours(hours) - - @staticmethod - def Days(days): - return _mscl.TimeSpan_Days(days) - __swig_destroy__ = _mscl.delete_TimeSpan - -# Register TimeSpan in _mscl: -_mscl.TimeSpan_swigregister(TimeSpan) - -def TimeSpan_NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - -def TimeSpan_MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - -def TimeSpan_MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - -def TimeSpan_Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - -def TimeSpan_Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - -def TimeSpan_Hours(hours): - return _mscl.TimeSpan_Hours(hours) - -def TimeSpan_Days(days): - return _mscl.TimeSpan_Days(days) - -class Version(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Version_swiginit(self, _mscl.new_Version(*args)) - - def __eq__(self, cmp): - return _mscl.Version___eq__(self, cmp) - - def __ne__(self, cmp): - return _mscl.Version___ne__(self, cmp) - - def __lt__(self, cmp): - return _mscl.Version___lt__(self, cmp) - - def __le__(self, cmp): - return _mscl.Version___le__(self, cmp) - - def __gt__(self, cmp): - return _mscl.Version___gt__(self, cmp) - - def __ge__(self, cmp): - return _mscl.Version___ge__(self, cmp) - - def __str__(self): - return _mscl.Version___str__(self) - - def fromString(self, strVersion): - return _mscl.Version_fromString(self, strVersion) - - def majorPart(self): - return _mscl.Version_majorPart(self) - - def minorPart(self): - return _mscl.Version_minorPart(self) - - def patchPart(self): - return _mscl.Version_patchPart(self) - __swig_destroy__ = _mscl.delete_Version - -# Register Version in _mscl: -_mscl.Version_swigregister(Version) - -class DeviceInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.DeviceInfo_connectionType_serial - connectionType_tcp = _mscl.DeviceInfo_connectionType_tcp - - def __init__(self, *args): - _mscl.DeviceInfo_swiginit(self, _mscl.new_DeviceInfo(*args)) - - def description(self): - return _mscl.DeviceInfo_description(self) - - def serial(self): - return _mscl.DeviceInfo_serial(self) - - def baudRate(self): - return _mscl.DeviceInfo_baudRate(self) - - def connectionType(self): - return _mscl.DeviceInfo_connectionType(self) - __swig_destroy__ = _mscl.delete_DeviceInfo - -# Register DeviceInfo in _mscl: -_mscl.DeviceInfo_swigregister(DeviceInfo) -cvar = _mscl.cvar -MSCL_VERSION = cvar.MSCL_VERSION - -class Devices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def listBaseStations(): - return _mscl.Devices_listBaseStations() - - @staticmethod - def listInertialDevices(): - return _mscl.Devices_listInertialDevices() - - @staticmethod - def listPorts(): - return _mscl.Devices_listPorts() - __swig_destroy__ = _mscl.delete_Devices - -# Register Devices in _mscl: -_mscl.Devices_swigregister(Devices) - -def Devices_listBaseStations(): - return _mscl.Devices_listBaseStations() - -def Devices_listInertialDevices(): - return _mscl.Devices_listInertialDevices() - -def Devices_listPorts(): - return _mscl.Devices_listPorts() - -class ConnectionDebugData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ConnectionDebugData_swiginit(self, _mscl.new_ConnectionDebugData(*args)) - - def fromRead(self): - return _mscl.ConnectionDebugData_fromRead(self) - - def timestamp(self): - return _mscl.ConnectionDebugData_timestamp(self) - - def data(self): - return _mscl.ConnectionDebugData_data(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugData - -# Register ConnectionDebugData in _mscl: -_mscl.ConnectionDebugData_swigregister(ConnectionDebugData) - -class Connection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.Connection_connectionType_serial - connectionType_tcp = _mscl.Connection_connectionType_tcp - connectionType_webSocket = _mscl.Connection_connectionType_webSocket - connectionType_unixSocket = _mscl.Connection_connectionType_unixSocket - - def __init__(self): - _mscl.Connection_swiginit(self, _mscl.new_Connection()) - - @staticmethod - def Serial(*args): - return _mscl.Connection_Serial(*args) - - @staticmethod - def TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - - @staticmethod - def UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - - @staticmethod - def Mock(): - return _mscl.Connection_Mock() - - def description(self): - return _mscl.Connection_description(self) - - def port(self): - return _mscl.Connection_port(self) - - def type(self): - return _mscl.Connection_type(self) - - def disconnect(self): - return _mscl.Connection_disconnect(self) - - def reconnect(self): - return _mscl.Connection_reconnect(self) - - def write(self, bytes): - return _mscl.Connection_write(self, bytes) - - def writeStr(self, bytes): - return _mscl.Connection_writeStr(self, bytes) - - def clearBuffer(self): - return _mscl.Connection_clearBuffer(self) - - def byteReadPos(self): - return _mscl.Connection_byteReadPos(self) - - def byteAppendPos(self): - return _mscl.Connection_byteAppendPos(self) - - def rawByteMode(self, *args): - return _mscl.Connection_rawByteMode(self, *args) - - def getRawBytes(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytes(self, timeout, maxBytes, minBytes) - - def getRawBytesStr(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytesStr(self, timeout, maxBytes, minBytes) - - def getRawBytesWithPattern(self, pattern, timeout=0): - return _mscl.Connection_getRawBytesWithPattern(self, pattern, timeout) - - def debugMode(self, *args): - return _mscl.Connection_debugMode(self, *args) - - def getDebugData(self, timeout=0): - return _mscl.Connection_getDebugData(self, timeout) - - def updateBaudRate(self, baudRate): - return _mscl.Connection_updateBaudRate(self, baudRate) - __swig_destroy__ = _mscl.delete_Connection - -# Register Connection in _mscl: -_mscl.Connection_swigregister(Connection) - -def Connection_Serial(*args): - return _mscl.Connection_Serial(*args) - -def Connection_TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - -def Connection_UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - -def Connection_Mock(): - return _mscl.Connection_Mock() - -class WirelessTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - beacon_none = _mscl.WirelessTypes_beacon_none - beacon_internalTimer = _mscl.WirelessTypes_beacon_internalTimer - beacon_internalPPS = _mscl.WirelessTypes_beacon_internalPPS - beacon_externalPPS = _mscl.WirelessTypes_beacon_externalPPS - microcontroller_18F452 = _mscl.WirelessTypes_microcontroller_18F452 - microcontroller_18F4620 = _mscl.WirelessTypes_microcontroller_18F4620 - microcontroller_18F46K20 = _mscl.WirelessTypes_microcontroller_18F46K20 - microcontroller_18F67K90 = _mscl.WirelessTypes_microcontroller_18F67K90 - microcontroller_EFM32WG990F256 = _mscl.WirelessTypes_microcontroller_EFM32WG990F256 - microcontroller_EFR32FG1P132F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32FG1P132F256GM48 - microcontroller_EFR32MG1P232F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32MG1P232F256GM48 - collectionMethod_logOnly = _mscl.WirelessTypes_collectionMethod_logOnly - collectionMethod_transmitOnly = _mscl.WirelessTypes_collectionMethod_transmitOnly - collectionMethod_logAndTransmit = _mscl.WirelessTypes_collectionMethod_logAndTransmit - dataType_first = _mscl.WirelessTypes_dataType_first - dataType_uint16_shifted = _mscl.WirelessTypes_dataType_uint16_shifted - dataType_float32 = _mscl.WirelessTypes_dataType_float32 - dataType_uint16_12bitRes = _mscl.WirelessTypes_dataType_uint16_12bitRes - dataType_uint32 = _mscl.WirelessTypes_dataType_uint32 - dataType_uint16 = _mscl.WirelessTypes_dataType_uint16 - dataType_float32_noCals = _mscl.WirelessTypes_dataType_float32_noCals - dataType_uint24_18bitRes = _mscl.WirelessTypes_dataType_uint24_18bitRes - dataType_uint16_18bitTrunc = _mscl.WirelessTypes_dataType_uint16_18bitTrunc - dataType_int24_20bit = _mscl.WirelessTypes_dataType_int24_20bit - dataType_int16_20bitTrunc = _mscl.WirelessTypes_dataType_int16_20bitTrunc - dataType_uint24 = _mscl.WirelessTypes_dataType_uint24 - dataType_uint16_24bitTrunc = _mscl.WirelessTypes_dataType_uint16_24bitTrunc - dataType_int16_x10 = _mscl.WirelessTypes_dataType_int16_x10 - dataType_last = _mscl.WirelessTypes_dataType_last - dataFormat_raw_uint16 = _mscl.WirelessTypes_dataFormat_raw_uint16 - dataFormat_cal_float = _mscl.WirelessTypes_dataFormat_cal_float - dataFormat_raw_uint24 = _mscl.WirelessTypes_dataFormat_raw_uint24 - dataFormat_raw_int24 = _mscl.WirelessTypes_dataFormat_raw_int24 - dataFormat_raw_int16 = _mscl.WirelessTypes_dataFormat_raw_int16 - dataFormat_cal_int16_x10 = _mscl.WirelessTypes_dataFormat_cal_int16_x10 - syncMode_continuous = _mscl.WirelessTypes_syncMode_continuous - syncMode_burst = _mscl.WirelessTypes_syncMode_burst - samplingMode_sync = _mscl.WirelessTypes_samplingMode_sync - samplingMode_syncBurst = _mscl.WirelessTypes_samplingMode_syncBurst - samplingMode_nonSync = _mscl.WirelessTypes_samplingMode_nonSync - samplingMode_armedDatalog = _mscl.WirelessTypes_samplingMode_armedDatalog - samplingMode_syncEvent = _mscl.WirelessTypes_samplingMode_syncEvent - samplingMode_nonSyncEvent = _mscl.WirelessTypes_samplingMode_nonSyncEvent - defaultMode_idle = _mscl.WirelessTypes_defaultMode_idle - defaultMode_ldc = _mscl.WirelessTypes_defaultMode_ldc - defaultMode_datalog = _mscl.WirelessTypes_defaultMode_datalog - defaultMode_sleep = _mscl.WirelessTypes_defaultMode_sleep - defaultMode_sync = _mscl.WirelessTypes_defaultMode_sync - freq_unknown = _mscl.WirelessTypes_freq_unknown - freq_11 = _mscl.WirelessTypes_freq_11 - freq_12 = _mscl.WirelessTypes_freq_12 - freq_13 = _mscl.WirelessTypes_freq_13 - freq_14 = _mscl.WirelessTypes_freq_14 - freq_15 = _mscl.WirelessTypes_freq_15 - freq_16 = _mscl.WirelessTypes_freq_16 - freq_17 = _mscl.WirelessTypes_freq_17 - freq_18 = _mscl.WirelessTypes_freq_18 - freq_19 = _mscl.WirelessTypes_freq_19 - freq_20 = _mscl.WirelessTypes_freq_20 - freq_21 = _mscl.WirelessTypes_freq_21 - freq_22 = _mscl.WirelessTypes_freq_22 - freq_23 = _mscl.WirelessTypes_freq_23 - freq_24 = _mscl.WirelessTypes_freq_24 - freq_25 = _mscl.WirelessTypes_freq_25 - freq_26 = _mscl.WirelessTypes_freq_26 - power_20dBm = _mscl.WirelessTypes_power_20dBm - power_16dBm = _mscl.WirelessTypes_power_16dBm - power_15dBm = _mscl.WirelessTypes_power_15dBm - power_12dBm = _mscl.WirelessTypes_power_12dBm - power_11dBm = _mscl.WirelessTypes_power_11dBm - power_10dBm = _mscl.WirelessTypes_power_10dBm - power_5dBm = _mscl.WirelessTypes_power_5dBm - power_1dBm = _mscl.WirelessTypes_power_1dBm - power_0dBm = _mscl.WirelessTypes_power_0dBm - retransmission_off = _mscl.WirelessTypes_retransmission_off - retransmission_on = _mscl.WirelessTypes_retransmission_on - retransmission_disabled = _mscl.WirelessTypes_retransmission_disabled - trigger_userInit = _mscl.WirelessTypes_trigger_userInit - trigger_ceiling = _mscl.WirelessTypes_trigger_ceiling - trigger_floor = _mscl.WirelessTypes_trigger_floor - trigger_rampUp = _mscl.WirelessTypes_trigger_rampUp - trigger_rampDown = _mscl.WirelessTypes_trigger_rampDown - equation_none = _mscl.WirelessTypes_equation_none - equation_standard = _mscl.WirelessTypes_equation_standard - unit_none = _mscl.WirelessTypes_unit_none - unit_other_bits = _mscl.WirelessTypes_unit_other_bits - unit_strain_strain = _mscl.WirelessTypes_unit_strain_strain - unit_strain_microStrain = _mscl.WirelessTypes_unit_strain_microStrain - unit_accel_g = _mscl.WirelessTypes_unit_accel_g - unit_accel_mPerSec2 = _mscl.WirelessTypes_unit_accel_mPerSec2 - unit_volts_volts = _mscl.WirelessTypes_unit_volts_volts - unit_volts_millivolts = _mscl.WirelessTypes_unit_volts_millivolts - unit_volts_microvolts = _mscl.WirelessTypes_unit_volts_microvolts - unit_temp_celsius = _mscl.WirelessTypes_unit_temp_celsius - unit_temp_kelvin = _mscl.WirelessTypes_unit_temp_kelvin - unit_temp_fahrenheit = _mscl.WirelessTypes_unit_temp_fahrenheit - unit_displacement_meters = _mscl.WirelessTypes_unit_displacement_meters - unit_displacement_millimeters = _mscl.WirelessTypes_unit_displacement_millimeters - unit_displacement_micrometers = _mscl.WirelessTypes_unit_displacement_micrometers - unit_force_lbf = _mscl.WirelessTypes_unit_force_lbf - unit_force_newtons = _mscl.WirelessTypes_unit_force_newtons - unit_force_kiloNewtons = _mscl.WirelessTypes_unit_force_kiloNewtons - unit_mass_kilograms = _mscl.WirelessTypes_unit_mass_kilograms - unit_pressure_bar = _mscl.WirelessTypes_unit_pressure_bar - unit_pressure_psi = _mscl.WirelessTypes_unit_pressure_psi - unit_pressure_atm = _mscl.WirelessTypes_unit_pressure_atm - unit_pressure_mmHg = _mscl.WirelessTypes_unit_pressure_mmHg - unit_pressure_pascal = _mscl.WirelessTypes_unit_pressure_pascal - unit_pressure_megaPascal = _mscl.WirelessTypes_unit_pressure_megaPascal - unit_pressure_kiloPascal = _mscl.WirelessTypes_unit_pressure_kiloPascal - unit_angDisplacement_degrees = _mscl.WirelessTypes_unit_angDisplacement_degrees - unit_angVelocity_degreesPerSec = _mscl.WirelessTypes_unit_angVelocity_degreesPerSec - unit_angVelocity_radiansPerSec = _mscl.WirelessTypes_unit_angVelocity_radiansPerSec - unit_other_percent = _mscl.WirelessTypes_unit_other_percent - unit_freq_rpm = _mscl.WirelessTypes_unit_freq_rpm - unit_freq_hertz = _mscl.WirelessTypes_unit_freq_hertz - unit_rh_percentRh = _mscl.WirelessTypes_unit_rh_percentRh - unit_other_mVperV = _mscl.WirelessTypes_unit_other_mVperV - unit_accel_milliG = _mscl.WirelessTypes_unit_accel_milliG - unit_accel_ftPerSec2 = _mscl.WirelessTypes_unit_accel_ftPerSec2 - unit_other_percentLife = _mscl.WirelessTypes_unit_other_percentLife - unit_other_count = _mscl.WirelessTypes_unit_other_count - unit_displacement_feet = _mscl.WirelessTypes_unit_displacement_feet - unit_displacement_inches = _mscl.WirelessTypes_unit_displacement_inches - unit_displacement_yards = _mscl.WirelessTypes_unit_displacement_yards - unit_displacement_miles = _mscl.WirelessTypes_unit_displacement_miles - unit_displacement_nautMiles = _mscl.WirelessTypes_unit_displacement_nautMiles - unit_displacement_thouInch = _mscl.WirelessTypes_unit_displacement_thouInch - unit_displacement_hundInch = _mscl.WirelessTypes_unit_displacement_hundInch - unit_displacement_kilometers = _mscl.WirelessTypes_unit_displacement_kilometers - unit_displacement_centimeters = _mscl.WirelessTypes_unit_displacement_centimeters - unit_irradiance_wattsPerSqMeter = _mscl.WirelessTypes_unit_irradiance_wattsPerSqMeter - unit_par_microEinstein = _mscl.WirelessTypes_unit_par_microEinstein - unit_mass_pound = _mscl.WirelessTypes_unit_mass_pound - unit_power_watt = _mscl.WirelessTypes_unit_power_watt - unit_power_milliwatt = _mscl.WirelessTypes_unit_power_milliwatt - unit_power_horsepower = _mscl.WirelessTypes_unit_power_horsepower - unit_reactivePower_var = _mscl.WirelessTypes_unit_reactivePower_var - unit_energy_wattHour = _mscl.WirelessTypes_unit_energy_wattHour - unit_energy_kiloWattHour = _mscl.WirelessTypes_unit_energy_kiloWattHour - unit_reactiveEnergy_VARh = _mscl.WirelessTypes_unit_reactiveEnergy_VARh - unit_reactiveEnergy_kVARh = _mscl.WirelessTypes_unit_reactiveEnergy_kVARh - unit_current_ampere = _mscl.WirelessTypes_unit_current_ampere - unit_current_milliampere = _mscl.WirelessTypes_unit_current_milliampere - unit_current_microampere = _mscl.WirelessTypes_unit_current_microampere - unit_pressure_millibar = _mscl.WirelessTypes_unit_pressure_millibar - unit_pressure_inHg = _mscl.WirelessTypes_unit_pressure_inHg - unit_rssi_dBm = _mscl.WirelessTypes_unit_rssi_dBm - unit_freq_kiloHertz = _mscl.WirelessTypes_unit_freq_kiloHertz - unit_angDisplacement_radians = _mscl.WirelessTypes_unit_angDisplacement_radians - unit_velocity_metersPerSec = _mscl.WirelessTypes_unit_velocity_metersPerSec - unit_velocity_kilometersPerSec = _mscl.WirelessTypes_unit_velocity_kilometersPerSec - unit_velocity_kilometersPerHr = _mscl.WirelessTypes_unit_velocity_kilometersPerHr - unit_velocity_milesPerHr = _mscl.WirelessTypes_unit_velocity_milesPerHr - unit_velocity_knots = _mscl.WirelessTypes_unit_velocity_knots - unit_volume_cubicMeter = _mscl.WirelessTypes_unit_volume_cubicMeter - unit_volume_cubicFt = _mscl.WirelessTypes_unit_volume_cubicFt - unit_volume_liters = _mscl.WirelessTypes_unit_volume_liters - unit_volume_gallon = _mscl.WirelessTypes_unit_volume_gallon - unit_flowRate_cubicMetersPerSec = _mscl.WirelessTypes_unit_flowRate_cubicMetersPerSec - unit_flowRate_cubicFtPerSec = _mscl.WirelessTypes_unit_flowRate_cubicFtPerSec - unit_torque_newtonMeter = _mscl.WirelessTypes_unit_torque_newtonMeter - unit_torque_footPounds = _mscl.WirelessTypes_unit_torque_footPounds - unit_torque_inchPounds = _mscl.WirelessTypes_unit_torque_inchPounds - unit_time_secs = _mscl.WirelessTypes_unit_time_secs - unit_time_nanosecs = _mscl.WirelessTypes_unit_time_nanosecs - unit_time_microsecs = _mscl.WirelessTypes_unit_time_microsecs - unit_time_millisecs = _mscl.WirelessTypes_unit_time_millisecs - unit_time_minutes = _mscl.WirelessTypes_unit_time_minutes - unit_time_hours = _mscl.WirelessTypes_unit_time_hours - unit_time_days = _mscl.WirelessTypes_unit_time_days - unit_time_weeks = _mscl.WirelessTypes_unit_time_weeks - unit_other_value = _mscl.WirelessTypes_unit_other_value - unit_magneticFlux_gauss = _mscl.WirelessTypes_unit_magneticFlux_gauss - unit_other_gSec = _mscl.WirelessTypes_unit_other_gSec - unit_other_secsPerSec = _mscl.WirelessTypes_unit_other_secsPerSec - unit_rssi_dBHz = _mscl.WirelessTypes_unit_rssi_dBHz - unit_density_kgPerMeter3 = _mscl.WirelessTypes_unit_density_kgPerMeter3 - unit_other_unitless = _mscl.WirelessTypes_unit_other_unitless - unit_velocity_inchesPerSec = _mscl.WirelessTypes_unit_velocity_inchesPerSec - unit_force_kg = _mscl.WirelessTypes_unit_force_kg - unit_rawVoltage_volts = _mscl.WirelessTypes_unit_rawVoltage_volts - unit_rawVoltage_millivolts = _mscl.WirelessTypes_unit_rawVoltage_millivolts - unit_rawVoltage_microvolts = _mscl.WirelessTypes_unit_rawVoltage_microvolts - unit_resistance_ohm = _mscl.WirelessTypes_unit_resistance_ohm - unit_resistance_milliohm = _mscl.WirelessTypes_unit_resistance_milliohm - unit_resistance_kiloohm = _mscl.WirelessTypes_unit_resistance_kiloohm - unit_velocity_mmPerSec = _mscl.WirelessTypes_unit_velocity_mmPerSec - unit_mass_grams = _mscl.WirelessTypes_unit_mass_grams - unit_mass_ton = _mscl.WirelessTypes_unit_mass_ton - unit_mass_tonne = _mscl.WirelessTypes_unit_mass_tonne - chType_none = _mscl.WirelessTypes_chType_none - chType_fullDifferential = _mscl.WirelessTypes_chType_fullDifferential - chType_singleEnded = _mscl.WirelessTypes_chType_singleEnded - chType_battery = _mscl.WirelessTypes_chType_battery - chType_temperature = _mscl.WirelessTypes_chType_temperature - chType_rh = _mscl.WirelessTypes_chType_rh - chType_acceleration = _mscl.WirelessTypes_chType_acceleration - chType_displacement = _mscl.WirelessTypes_chType_displacement - chType_voltage = _mscl.WirelessTypes_chType_voltage - chType_diffTemperature = _mscl.WirelessTypes_chType_diffTemperature - chType_digital = _mscl.WirelessTypes_chType_digital - chType_tilt = _mscl.WirelessTypes_chType_tilt - voltageType_singleEnded = _mscl.WirelessTypes_voltageType_singleEnded - voltageType_differential = _mscl.WirelessTypes_voltageType_differential - settling_4ms = _mscl.WirelessTypes_settling_4ms - settling_8ms = _mscl.WirelessTypes_settling_8ms - settling_16ms = _mscl.WirelessTypes_settling_16ms - settling_32ms = _mscl.WirelessTypes_settling_32ms - settling_40ms = _mscl.WirelessTypes_settling_40ms - settling_48ms = _mscl.WirelessTypes_settling_48ms - settling_60ms = _mscl.WirelessTypes_settling_60ms - settling_101ms_90db = _mscl.WirelessTypes_settling_101ms_90db - settling_120ms_80db = _mscl.WirelessTypes_settling_120ms_80db - settling_120ms_65db = _mscl.WirelessTypes_settling_120ms_65db - settling_160ms_69db = _mscl.WirelessTypes_settling_160ms_69db - settling_200ms = _mscl.WirelessTypes_settling_200ms - transducer_thermocouple = _mscl.WirelessTypes_transducer_thermocouple - transducer_rtd = _mscl.WirelessTypes_transducer_rtd - transducer_thermistor = _mscl.WirelessTypes_transducer_thermistor - tc_uncompensated = _mscl.WirelessTypes_tc_uncompensated - tc_K = _mscl.WirelessTypes_tc_K - tc_J = _mscl.WirelessTypes_tc_J - tc_R = _mscl.WirelessTypes_tc_R - tc_S = _mscl.WirelessTypes_tc_S - tc_T = _mscl.WirelessTypes_tc_T - tc_E = _mscl.WirelessTypes_tc_E - tc_B = _mscl.WirelessTypes_tc_B - tc_N = _mscl.WirelessTypes_tc_N - tc_customPolynomial = _mscl.WirelessTypes_tc_customPolynomial - rtd_uncompensated = _mscl.WirelessTypes_rtd_uncompensated - rtd_pt10 = _mscl.WirelessTypes_rtd_pt10 - rtd_pt50 = _mscl.WirelessTypes_rtd_pt50 - rtd_pt100 = _mscl.WirelessTypes_rtd_pt100 - rtd_pt200 = _mscl.WirelessTypes_rtd_pt200 - rtd_pt500 = _mscl.WirelessTypes_rtd_pt500 - rtd_pt1000 = _mscl.WirelessTypes_rtd_pt1000 - rtd_2wire = _mscl.WirelessTypes_rtd_2wire - rtd_3wire = _mscl.WirelessTypes_rtd_3wire - rtd_4wire = _mscl.WirelessTypes_rtd_4wire - thermistor_uncompensated = _mscl.WirelessTypes_thermistor_uncompensated - thermistor_44004_44033 = _mscl.WirelessTypes_thermistor_44004_44033 - thermistor_44005_44030 = _mscl.WirelessTypes_thermistor_44005_44030 - thermistor_44007_44034 = _mscl.WirelessTypes_thermistor_44007_44034 - thermistor_44006_44031 = _mscl.WirelessTypes_thermistor_44006_44031 - thermistor_44008_44032 = _mscl.WirelessTypes_thermistor_44008_44032 - thermistor_ysi_400 = _mscl.WirelessTypes_thermistor_ysi_400 - sampleRate_104170Hz = _mscl.WirelessTypes_sampleRate_104170Hz - sampleRate_78125Hz = _mscl.WirelessTypes_sampleRate_78125Hz - sampleRate_62500Hz = _mscl.WirelessTypes_sampleRate_62500Hz - sampleRate_25000Hz = _mscl.WirelessTypes_sampleRate_25000Hz - sampleRate_12500Hz = _mscl.WirelessTypes_sampleRate_12500Hz - sampleRate_3200Hz = _mscl.WirelessTypes_sampleRate_3200Hz - sampleRate_1600Hz = _mscl.WirelessTypes_sampleRate_1600Hz - sampleRate_800Hz = _mscl.WirelessTypes_sampleRate_800Hz - sampleRate_300Hz = _mscl.WirelessTypes_sampleRate_300Hz - sampleRate_1kHz = _mscl.WirelessTypes_sampleRate_1kHz - sampleRate_2kHz = _mscl.WirelessTypes_sampleRate_2kHz - sampleRate_3kHz = _mscl.WirelessTypes_sampleRate_3kHz - sampleRate_4kHz = _mscl.WirelessTypes_sampleRate_4kHz - sampleRate_5kHz = _mscl.WirelessTypes_sampleRate_5kHz - sampleRate_6kHz = _mscl.WirelessTypes_sampleRate_6kHz - sampleRate_7kHz = _mscl.WirelessTypes_sampleRate_7kHz - sampleRate_8kHz = _mscl.WirelessTypes_sampleRate_8kHz - sampleRate_9kHz = _mscl.WirelessTypes_sampleRate_9kHz - sampleRate_10kHz = _mscl.WirelessTypes_sampleRate_10kHz - sampleRate_20kHz = _mscl.WirelessTypes_sampleRate_20kHz - sampleRate_30kHz = _mscl.WirelessTypes_sampleRate_30kHz - sampleRate_40kHz = _mscl.WirelessTypes_sampleRate_40kHz - sampleRate_50kHz = _mscl.WirelessTypes_sampleRate_50kHz - sampleRate_60kHz = _mscl.WirelessTypes_sampleRate_60kHz - sampleRate_70kHz = _mscl.WirelessTypes_sampleRate_70kHz - sampleRate_80kHz = _mscl.WirelessTypes_sampleRate_80kHz - sampleRate_90kHz = _mscl.WirelessTypes_sampleRate_90kHz - sampleRate_100kHz = _mscl.WirelessTypes_sampleRate_100kHz - sampleRate_887Hz = _mscl.WirelessTypes_sampleRate_887Hz - sampleRate_8192Hz = _mscl.WirelessTypes_sampleRate_8192Hz - sampleRate_4096Hz = _mscl.WirelessTypes_sampleRate_4096Hz - sampleRate_2048Hz = _mscl.WirelessTypes_sampleRate_2048Hz - sampleRate_1024Hz = _mscl.WirelessTypes_sampleRate_1024Hz - sampleRate_512Hz = _mscl.WirelessTypes_sampleRate_512Hz - sampleRate_256Hz = _mscl.WirelessTypes_sampleRate_256Hz - sampleRate_128Hz = _mscl.WirelessTypes_sampleRate_128Hz - sampleRate_64Hz = _mscl.WirelessTypes_sampleRate_64Hz - sampleRate_32Hz = _mscl.WirelessTypes_sampleRate_32Hz - sampleRate_16Hz = _mscl.WirelessTypes_sampleRate_16Hz - sampleRate_8Hz = _mscl.WirelessTypes_sampleRate_8Hz - sampleRate_4Hz = _mscl.WirelessTypes_sampleRate_4Hz - sampleRate_2Hz = _mscl.WirelessTypes_sampleRate_2Hz - sampleRate_1Hz = _mscl.WirelessTypes_sampleRate_1Hz - sampleRate_2Sec = _mscl.WirelessTypes_sampleRate_2Sec - sampleRate_5Sec = _mscl.WirelessTypes_sampleRate_5Sec - sampleRate_10Sec = _mscl.WirelessTypes_sampleRate_10Sec - sampleRate_30Sec = _mscl.WirelessTypes_sampleRate_30Sec - sampleRate_1Min = _mscl.WirelessTypes_sampleRate_1Min - sampleRate_2Min = _mscl.WirelessTypes_sampleRate_2Min - sampleRate_5Min = _mscl.WirelessTypes_sampleRate_5Min - sampleRate_10Min = _mscl.WirelessTypes_sampleRate_10Min - sampleRate_30Min = _mscl.WirelessTypes_sampleRate_30Min - sampleRate_60Min = _mscl.WirelessTypes_sampleRate_60Min - sampleRate_24Hours = _mscl.WirelessTypes_sampleRate_24Hours - region_usa = _mscl.WirelessTypes_region_usa - region_europeanUnion = _mscl.WirelessTypes_region_europeanUnion - region_japan = _mscl.WirelessTypes_region_japan - region_other = _mscl.WirelessTypes_region_other - region_brazil = _mscl.WirelessTypes_region_brazil - region_china = _mscl.WirelessTypes_region_china - region_australia_newzealand = _mscl.WirelessTypes_region_australia_newzealand - region_singapore = _mscl.WirelessTypes_region_singapore - region_canada = _mscl.WirelessTypes_region_canada - region_southAfrica = _mscl.WirelessTypes_region_southAfrica - region_indonesia = _mscl.WirelessTypes_region_indonesia - region_taiwan = _mscl.WirelessTypes_region_taiwan - chSetting_inputRange = _mscl.WirelessTypes_chSetting_inputRange - chSetting_filterSettlingTime = _mscl.WirelessTypes_chSetting_filterSettlingTime - chSetting_thermocoupleType = _mscl.WirelessTypes_chSetting_thermocoupleType - chSetting_linearEquation = _mscl.WirelessTypes_chSetting_linearEquation - chSetting_unit = _mscl.WirelessTypes_chSetting_unit - chSetting_equationType = _mscl.WirelessTypes_chSetting_equationType - chSetting_hardwareOffset = _mscl.WirelessTypes_chSetting_hardwareOffset - chSetting_autoBalance = _mscl.WirelessTypes_chSetting_autoBalance - chSetting_gaugeFactor = _mscl.WirelessTypes_chSetting_gaugeFactor - chSetting_antiAliasingFilter = _mscl.WirelessTypes_chSetting_antiAliasingFilter - chSetting_legacyShuntCal = _mscl.WirelessTypes_chSetting_legacyShuntCal - chSetting_autoShuntCal = _mscl.WirelessTypes_chSetting_autoShuntCal - chSetting_lowPassFilter = _mscl.WirelessTypes_chSetting_lowPassFilter - chSetting_highPassFilter = _mscl.WirelessTypes_chSetting_highPassFilter - chSetting_tempSensorOptions = _mscl.WirelessTypes_chSetting_tempSensorOptions - chSetting_debounceFilter = _mscl.WirelessTypes_chSetting_debounceFilter - chSetting_pullUpResistor = _mscl.WirelessTypes_chSetting_pullUpResistor - chSetting_factoryLinearEq = _mscl.WirelessTypes_chSetting_factoryLinearEq - chSetting_factoryUnit = _mscl.WirelessTypes_chSetting_factoryUnit - chSetting_factoryEqType = _mscl.WirelessTypes_chSetting_factoryEqType - autobalance_success = _mscl.WirelessTypes_autobalance_success - autobalance_maybeInvalid = _mscl.WirelessTypes_autobalance_maybeInvalid - autobalance_notSupportedByNode = _mscl.WirelessTypes_autobalance_notSupportedByNode - autobalance_notSupportedByCh = _mscl.WirelessTypes_autobalance_notSupportedByCh - autobalance_targetOutOfRange = _mscl.WirelessTypes_autobalance_targetOutOfRange - autobalance_failed = _mscl.WirelessTypes_autobalance_failed - autobalance_legacyNone = _mscl.WirelessTypes_autobalance_legacyNone - autobalance_notComplete = _mscl.WirelessTypes_autobalance_notComplete - autocal_success = _mscl.WirelessTypes_autocal_success - autocal_maybeInvalid_applied = _mscl.WirelessTypes_autocal_maybeInvalid_applied - autocal_maybeInvalid_notApplied = _mscl.WirelessTypes_autocal_maybeInvalid_notApplied - autocal_notComplete = _mscl.WirelessTypes_autocal_notComplete - autocalError_none = _mscl.WirelessTypes_autocalError_none - autocalError_sensorDetached = _mscl.WirelessTypes_autocalError_sensorDetached - autocalError_sensorShorted = _mscl.WirelessTypes_autocalError_sensorShorted - autocalError_unsupportedChannel = _mscl.WirelessTypes_autocalError_unsupportedChannel - autocalError_baseHighRail = _mscl.WirelessTypes_autocalError_baseHighRail - autocalError_baseLowRail = _mscl.WirelessTypes_autocalError_baseLowRail - autocalError_shuntHighRail = _mscl.WirelessTypes_autocalError_shuntHighRail - autocalError_shuntLowRail = _mscl.WirelessTypes_autocalError_shuntLowRail - autocalError_ramp = _mscl.WirelessTypes_autocalError_ramp - autocalError_noShunt = _mscl.WirelessTypes_autocalError_noShunt - autocalError_timeout = _mscl.WirelessTypes_autocalError_timeout - fatigueMode_angleStrain = _mscl.WirelessTypes_fatigueMode_angleStrain - fatigueMode_distributedAngle = _mscl.WirelessTypes_fatigueMode_distributedAngle - fatigueMode_rawGaugeStrain = _mscl.WirelessTypes_fatigueMode_rawGaugeStrain - eventTrigger_ceiling = _mscl.WirelessTypes_eventTrigger_ceiling - eventTrigger_floor = _mscl.WirelessTypes_eventTrigger_floor - filter_33000hz = _mscl.WirelessTypes_filter_33000hz - filter_20000hz = _mscl.WirelessTypes_filter_20000hz - filter_10000hz = _mscl.WirelessTypes_filter_10000hz - filter_5222hz = _mscl.WirelessTypes_filter_5222hz - filter_5000hz = _mscl.WirelessTypes_filter_5000hz - filter_4416hz = _mscl.WirelessTypes_filter_4416hz - filter_4096hz = _mscl.WirelessTypes_filter_4096hz - filter_4000hz = _mscl.WirelessTypes_filter_4000hz - filter_2208hz = _mscl.WirelessTypes_filter_2208hz - filter_2048hz = _mscl.WirelessTypes_filter_2048hz - filter_2000hz = _mscl.WirelessTypes_filter_2000hz - filter_1104hz = _mscl.WirelessTypes_filter_1104hz - filter_1024hz = _mscl.WirelessTypes_filter_1024hz - filter_1000hz = _mscl.WirelessTypes_filter_1000hz - filter_800hz = _mscl.WirelessTypes_filter_800hz - filter_552hz = _mscl.WirelessTypes_filter_552hz - filter_512hz = _mscl.WirelessTypes_filter_512hz - filter_500hz = _mscl.WirelessTypes_filter_500hz - filter_418hz = _mscl.WirelessTypes_filter_418hz - filter_294hz = _mscl.WirelessTypes_filter_294hz - filter_256hz = _mscl.WirelessTypes_filter_256hz - filter_250hz = _mscl.WirelessTypes_filter_250hz - filter_209hz = _mscl.WirelessTypes_filter_209hz - filter_200hz = _mscl.WirelessTypes_filter_200hz - filter_147hz = _mscl.WirelessTypes_filter_147hz - filter_128hz = _mscl.WirelessTypes_filter_128hz - filter_125hz = _mscl.WirelessTypes_filter_125hz - filter_104hz = _mscl.WirelessTypes_filter_104hz - filter_100hz = _mscl.WirelessTypes_filter_100hz - filter_62hz = _mscl.WirelessTypes_filter_62hz - filter_52hz = _mscl.WirelessTypes_filter_52hz - filter_50hz = _mscl.WirelessTypes_filter_50hz - filter_31hz = _mscl.WirelessTypes_filter_31hz - filter_26hz = _mscl.WirelessTypes_filter_26hz - filter_12_66hz = _mscl.WirelessTypes_filter_12_66hz - filter_2_6hz = _mscl.WirelessTypes_filter_2_6hz - highPass_off = _mscl.WirelessTypes_highPass_off - highPass_auto = _mscl.WirelessTypes_highPass_auto - cfc_10 = _mscl.WirelessTypes_cfc_10 - cfc_21 = _mscl.WirelessTypes_cfc_21 - cfc_60 = _mscl.WirelessTypes_cfc_60 - storageLimit_overwrite = _mscl.WirelessTypes_storageLimit_overwrite - storageLimit_stop = _mscl.WirelessTypes_storageLimit_stop - range_14_545mV = _mscl.WirelessTypes_range_14_545mV - range_10_236mV = _mscl.WirelessTypes_range_10_236mV - range_7_608mV = _mscl.WirelessTypes_range_7_608mV - range_4_046mV = _mscl.WirelessTypes_range_4_046mV - range_2_008mV = _mscl.WirelessTypes_range_2_008mV - range_1_511mV = _mscl.WirelessTypes_range_1_511mV - range_1_001mV = _mscl.WirelessTypes_range_1_001mV - range_0_812mV = _mscl.WirelessTypes_range_0_812mV - range_75mV = _mscl.WirelessTypes_range_75mV - range_37_5mV = _mscl.WirelessTypes_range_37_5mV - range_18_75mV = _mscl.WirelessTypes_range_18_75mV - range_9_38mV = _mscl.WirelessTypes_range_9_38mV - range_4_69mV = _mscl.WirelessTypes_range_4_69mV - range_2_34mV = _mscl.WirelessTypes_range_2_34mV - range_1_17mV = _mscl.WirelessTypes_range_1_17mV - range_0_586mV = _mscl.WirelessTypes_range_0_586mV - range_70mV = _mscl.WirelessTypes_range_70mV - range_35mV = _mscl.WirelessTypes_range_35mV - range_17_5mV = _mscl.WirelessTypes_range_17_5mV - range_8_75mV = _mscl.WirelessTypes_range_8_75mV - range_4_38mV = _mscl.WirelessTypes_range_4_38mV - range_2_19mV = _mscl.WirelessTypes_range_2_19mV - range_1_09mV = _mscl.WirelessTypes_range_1_09mV - range_0_547mV = _mscl.WirelessTypes_range_0_547mV - range_44mV = _mscl.WirelessTypes_range_44mV - range_30mV = _mscl.WirelessTypes_range_30mV - range_20mV = _mscl.WirelessTypes_range_20mV - range_15mV = _mscl.WirelessTypes_range_15mV - range_10mV = _mscl.WirelessTypes_range_10mV - range_5mV = _mscl.WirelessTypes_range_5mV - range_3mV = _mscl.WirelessTypes_range_3mV - range_2mV = _mscl.WirelessTypes_range_2mV - range_6mV = _mscl.WirelessTypes_range_6mV - range_1mV = _mscl.WirelessTypes_range_1mV - range_50mV = _mscl.WirelessTypes_range_50mV - range_2_5mV = _mscl.WirelessTypes_range_2_5mV - range_0_6mV = _mscl.WirelessTypes_range_0_6mV - range_0_35mV = _mscl.WirelessTypes_range_0_35mV - range_0_1mV = _mscl.WirelessTypes_range_0_1mV - range_156mV = _mscl.WirelessTypes_range_156mV - range_78_1mV = _mscl.WirelessTypes_range_78_1mV - range_39mV = _mscl.WirelessTypes_range_39mV - range_19_5mV = _mscl.WirelessTypes_range_19_5mV - range_9_76mV = _mscl.WirelessTypes_range_9_76mV - range_4_88mV = _mscl.WirelessTypes_range_4_88mV - range_2_44mV = _mscl.WirelessTypes_range_2_44mV - range_1_22mV = _mscl.WirelessTypes_range_1_22mV - range_10_24V = _mscl.WirelessTypes_range_10_24V - range_5_12V = _mscl.WirelessTypes_range_5_12V - range_2_56V = _mscl.WirelessTypes_range_2_56V - range_0to10_24V = _mscl.WirelessTypes_range_0to10_24V - range_0to5_12V = _mscl.WirelessTypes_range_0to5_12V - range_1_147V = _mscl.WirelessTypes_range_1_147V - range_585mV = _mscl.WirelessTypes_range_585mV - range_292_5mV = _mscl.WirelessTypes_range_292_5mV - range_146_25mV = _mscl.WirelessTypes_range_146_25mV - range_73_13mV = _mscl.WirelessTypes_range_73_13mV - range_36_56mV = _mscl.WirelessTypes_range_36_56mV - range_18_23mV = _mscl.WirelessTypes_range_18_23mV - range_9_14mV = _mscl.WirelessTypes_range_9_14mV - range_5_74V = _mscl.WirelessTypes_range_5_74V - range_2_93V = _mscl.WirelessTypes_range_2_93V - range_1_46V = _mscl.WirelessTypes_range_1_46V - range_731_3mV = _mscl.WirelessTypes_range_731_3mV - range_365_6mV = _mscl.WirelessTypes_range_365_6mV - range_182_8mV = _mscl.WirelessTypes_range_182_8mV - range_91_4mV = _mscl.WirelessTypes_range_91_4mV - range_45_7mV = _mscl.WirelessTypes_range_45_7mV - range_62_5mV = _mscl.WirelessTypes_range_62_5mV - range_31_25mV = _mscl.WirelessTypes_range_31_25mV - range_15_63mV = _mscl.WirelessTypes_range_15_63mV - range_7_81mV = _mscl.WirelessTypes_range_7_81mV - range_3_91mV = _mscl.WirelessTypes_range_3_91mV - range_1_95mV = _mscl.WirelessTypes_range_1_95mV - range_0_976mV = _mscl.WirelessTypes_range_0_976mV - range_0_488mV = _mscl.WirelessTypes_range_0_488mV - range_2G = _mscl.WirelessTypes_range_2G - range_4G = _mscl.WirelessTypes_range_4G - range_8G = _mscl.WirelessTypes_range_8G - range_10G = _mscl.WirelessTypes_range_10G - range_20G = _mscl.WirelessTypes_range_20G - range_40G = _mscl.WirelessTypes_range_40G - range_2_5V = _mscl.WirelessTypes_range_2_5V - range_1_25V = _mscl.WirelessTypes_range_1_25V - range_625mV = _mscl.WirelessTypes_range_625mV - range_312_5mV = _mscl.WirelessTypes_range_312_5mV - range_156_25mV = _mscl.WirelessTypes_range_156_25mV - range_78_125mV = _mscl.WirelessTypes_range_78_125mV - range_39_063mV = _mscl.WirelessTypes_range_39_063mV - range_19_532mV = _mscl.WirelessTypes_range_19_532mV - range_0to2_5V = _mscl.WirelessTypes_range_0to2_5V - range_0to1_25V = _mscl.WirelessTypes_range_0to1_25V - range_0to625mV = _mscl.WirelessTypes_range_0to625mV - range_0to312_5mV = _mscl.WirelessTypes_range_0to312_5mV - range_0to156_25mV = _mscl.WirelessTypes_range_0to156_25mV - range_0to78_125mV = _mscl.WirelessTypes_range_0to78_125mV - range_0to39_063mV = _mscl.WirelessTypes_range_0to39_063mV - range_0to19_532mV = _mscl.WirelessTypes_range_0to19_532mV - range_9_766mV = _mscl.WirelessTypes_range_9_766mV - range_1_35V_or_0to1000000ohm = _mscl.WirelessTypes_range_1_35V_or_0to1000000ohm - range_1_25V_or_0to10000ohm = _mscl.WirelessTypes_range_1_25V_or_0to10000ohm - range_625mV_or_0to3333_3ohm = _mscl.WirelessTypes_range_625mV_or_0to3333_3ohm - range_312_5mV_or_0to1428_6ohm = _mscl.WirelessTypes_range_312_5mV_or_0to1428_6ohm - range_156_25mV_or_0to666_67ohm = _mscl.WirelessTypes_range_156_25mV_or_0to666_67ohm - range_78_125mV_or_0to322_58ohm = _mscl.WirelessTypes_range_78_125mV_or_0to322_58ohm - range_39_0625mV_or_0to158_73ohm = _mscl.WirelessTypes_range_39_0625mV_or_0to158_73ohm - range_19_5313mV_or_0to78_74ohm = _mscl.WirelessTypes_range_19_5313mV_or_0to78_74ohm - range_750mV = _mscl.WirelessTypes_range_750mV - range_375mV = _mscl.WirelessTypes_range_375mV - range_187_5mV = _mscl.WirelessTypes_range_187_5mV - range_93_75mV = _mscl.WirelessTypes_range_93_75mV - range_46_875mV = _mscl.WirelessTypes_range_46_875mV - range_23_438mV = _mscl.WirelessTypes_range_23_438mV - range_11_719mV = _mscl.WirelessTypes_range_11_719mV - range_5_859mV = _mscl.WirelessTypes_range_5_859mV - range_0to1_5V = _mscl.WirelessTypes_range_0to1_5V - range_0to750mV = _mscl.WirelessTypes_range_0to750mV - range_0to375mV = _mscl.WirelessTypes_range_0to375mV - range_0to187_5mV = _mscl.WirelessTypes_range_0to187_5mV - range_0to93_75mV = _mscl.WirelessTypes_range_0to93_75mV - range_0to46_875mV = _mscl.WirelessTypes_range_0to46_875mV - range_0to23_438mV = _mscl.WirelessTypes_range_0to23_438mV - range_0to11_719mV = _mscl.WirelessTypes_range_0to11_719mV - range_1_5V = _mscl.WirelessTypes_range_1_5V - range_1_35V = _mscl.WirelessTypes_range_1_35V - range_0to1000000ohm = _mscl.WirelessTypes_range_0to1000000ohm - range_0to10000ohm = _mscl.WirelessTypes_range_0to10000ohm - range_0to3333_3ohm = _mscl.WirelessTypes_range_0to3333_3ohm - range_0to1428_6ohm = _mscl.WirelessTypes_range_0to1428_6ohm - range_0to666_67ohm = _mscl.WirelessTypes_range_0to666_67ohm - range_0to322_58ohm = _mscl.WirelessTypes_range_0to322_58ohm - range_0to158_73ohm = _mscl.WirelessTypes_range_0to158_73ohm - range_0to78_74ohm = _mscl.WirelessTypes_range_0to78_74ohm - range_39_0625mV = _mscl.WirelessTypes_range_39_0625mV - range_19_5313mV = _mscl.WirelessTypes_range_19_5313mV - range_125mV = _mscl.WirelessTypes_range_125mV - range_invalid = _mscl.WirelessTypes_range_invalid - dataMode_none = _mscl.WirelessTypes_dataMode_none - dataMode_raw = _mscl.WirelessTypes_dataMode_raw - dataMode_derived = _mscl.WirelessTypes_dataMode_derived - dataMode_raw_derived = _mscl.WirelessTypes_dataMode_raw_derived - derivedCategory_rms = _mscl.WirelessTypes_derivedCategory_rms - derivedCategory_peakToPeak = _mscl.WirelessTypes_derivedCategory_peakToPeak - derivedCategory_velocity = _mscl.WirelessTypes_derivedCategory_velocity - derivedCategory_crestFactor = _mscl.WirelessTypes_derivedCategory_crestFactor - derivedCategory_mean = _mscl.WirelessTypes_derivedCategory_mean - derivedAlgId_rms = _mscl.WirelessTypes_derivedAlgId_rms - derivedAlgId_peakToPeak = _mscl.WirelessTypes_derivedAlgId_peakToPeak - derivedAlgId_ips = _mscl.WirelessTypes_derivedAlgId_ips - derivedAlgId_crestFactor = _mscl.WirelessTypes_derivedAlgId_crestFactor - derivedAlgId_mean = _mscl.WirelessTypes_derivedAlgId_mean - derivedAlgId_mmps = _mscl.WirelessTypes_derivedAlgId_mmps - derivedVelocity_ips = _mscl.WirelessTypes_derivedVelocity_ips - derivedVelocity_mmps = _mscl.WirelessTypes_derivedVelocity_mmps - commProtocol_lxrs = _mscl.WirelessTypes_commProtocol_lxrs - commProtocol_lxrsPlus = _mscl.WirelessTypes_commProtocol_lxrsPlus - voltage_5120mV = _mscl.WirelessTypes_voltage_5120mV - voltage_5000mV = _mscl.WirelessTypes_voltage_5000mV - voltage_4096mV = _mscl.WirelessTypes_voltage_4096mV - voltage_3000mV = _mscl.WirelessTypes_voltage_3000mV - voltage_2800mV = _mscl.WirelessTypes_voltage_2800mV - voltage_2750mV = _mscl.WirelessTypes_voltage_2750mV - voltage_2700mV = _mscl.WirelessTypes_voltage_2700mV - voltage_2500mV = _mscl.WirelessTypes_voltage_2500mV - voltage_1500mV = _mscl.WirelessTypes_voltage_1500mV - sensorOutputMode_accel = _mscl.WirelessTypes_sensorOutputMode_accel - sensorOutputMode_tilt = _mscl.WirelessTypes_sensorOutputMode_tilt - batteryStatus_good = _mscl.WirelessTypes_batteryStatus_good - batteryStatus_low = _mscl.WirelessTypes_batteryStatus_low - batteryStatus_critical = _mscl.WirelessTypes_batteryStatus_critical - externalPower_notConnected = _mscl.WirelessTypes_externalPower_notConnected - externalPower_connected = _mscl.WirelessTypes_externalPower_connected - delayVersion_v1 = _mscl.WirelessTypes_delayVersion_v1 - delayVersion_v2 = _mscl.WirelessTypes_delayVersion_v2 - delayVersion_v3 = _mscl.WirelessTypes_delayVersion_v3 - delayVersion_v4 = _mscl.WirelessTypes_delayVersion_v4 - UNKNOWN_RSSI = _mscl.WirelessTypes_UNKNOWN_RSSI - - def __init__(self): - _mscl.WirelessTypes_swiginit(self, _mscl.new_WirelessTypes()) - __swig_destroy__ = _mscl.delete_WirelessTypes - -# Register WirelessTypes in _mscl: -_mscl.WirelessTypes_swigregister(WirelessTypes) - -class SampleRate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - rateType_seconds = _mscl.SampleRate_rateType_seconds - rateType_hertz = _mscl.SampleRate_rateType_hertz - rateType_event = _mscl.SampleRate_rateType_event - rateType_decimation = _mscl.SampleRate_rateType_decimation - - def __init__(self, *args): - _mscl.SampleRate_swiginit(self, _mscl.new_SampleRate(*args)) - - def __str__(self): - return _mscl.SampleRate___str__(self) - - def prettyStr(self): - return _mscl.SampleRate_prettyStr(self) - - def samplePeriod(self): - return _mscl.SampleRate_samplePeriod(self) - - def samplesPerSecond(self): - return _mscl.SampleRate_samplesPerSecond(self) - - def rateType(self): - return _mscl.SampleRate_rateType(self) - - def samples(self): - return _mscl.SampleRate_samples(self) - - def toWirelessSampleRate(self): - return _mscl.SampleRate_toWirelessSampleRate(self) - - def toDecimation(self, sampleRateBase): - return _mscl.SampleRate_toDecimation(self, sampleRateBase) - - @staticmethod - def Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - - @staticmethod - def KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - - @staticmethod - def Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - - @staticmethod - def Event(): - return _mscl.SampleRate_Event() - - @staticmethod - def Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - - @staticmethod - def FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - - @staticmethod - def FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - __swig_destroy__ = _mscl.delete_SampleRate - -# Register SampleRate in _mscl: -_mscl.SampleRate_swigregister(SampleRate) - -def SampleRate_Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - -def SampleRate_KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - -def SampleRate_Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - -def SampleRate_Event(): - return _mscl.SampleRate_Event() - -def SampleRate_Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - -def SampleRate_FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - -def SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - -class Matrix(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Matrix_swiginit(self, _mscl.new_Matrix()) - - def valuesType(self): - return _mscl.Matrix_valuesType(self) - - def rows(self): - return _mscl.Matrix_rows(self) - - def columns(self): - return _mscl.Matrix_columns(self) - - def as_doubleAt(self, row, column): - return _mscl.Matrix_as_doubleAt(self, row, column) - - def as_floatAt(self, row, column): - return _mscl.Matrix_as_floatAt(self, row, column) - - def as_uint16At(self, row, column): - return _mscl.Matrix_as_uint16At(self, row, column) - - def as_uint8At(self, row, column): - return _mscl.Matrix_as_uint8At(self, row, column) - - def __str__(self): - return _mscl.Matrix___str__(self) - __swig_destroy__ = _mscl.delete_Matrix - -# Register Matrix in _mscl: -_mscl.Matrix_swigregister(Matrix) - -class Vector(Matrix): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Vector_swiginit(self, _mscl.new_Vector()) - - def size(self): - return _mscl.Vector_size(self) - - def as_doubleAt(self, index): - return _mscl.Vector_as_doubleAt(self, index) - - def as_floatAt(self, index): - return _mscl.Vector_as_floatAt(self, index) - - def as_uint16At(self, index): - return _mscl.Vector_as_uint16At(self, index) - - def as_uint8At(self, index): - return _mscl.Vector_as_uint8At(self, index) - __swig_destroy__ = _mscl.delete_Vector - -# Register Vector in _mscl: -_mscl.Vector_swigregister(Vector) - -class Bitfield(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Bitfield_swiginit(self, _mscl.new_Bitfield(*args)) - __swig_destroy__ = _mscl.delete_Bitfield - - def value(self, *args): - return _mscl.Bitfield_value(self, *args) - - def get(self, mask, shiftToLsb=True): - return _mscl.Bitfield_get(self, mask, shiftToLsb) - - def set(self, mask, value, shiftRequired=True): - return _mscl.Bitfield_set(self, mask, value, shiftRequired) - - def checkBit(self, bitIndex, indexBase=0): - return _mscl.Bitfield_checkBit(self, bitIndex, indexBase) - - def setBit(self, bitIndex, value, indexBase=0): - return _mscl.Bitfield_setBit(self, bitIndex, value, indexBase) - -# Register Bitfield in _mscl: -_mscl.Bitfield_swigregister(Bitfield) - -class StructuralHealth(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, angle, uptime, damage, processingRate, histogram): - _mscl.StructuralHealth_swiginit(self, _mscl.new_StructuralHealth(angle, uptime, damage, processingRate, histogram)) - - def angle(self): - return _mscl.StructuralHealth_angle(self) - - def uptime(self): - return _mscl.StructuralHealth_uptime(self) - - def damage(self): - return _mscl.StructuralHealth_damage(self) - - def processingRate(self): - return _mscl.StructuralHealth_processingRate(self) - - def histogram(self): - return _mscl.StructuralHealth_histogram(self) - __swig_destroy__ = _mscl.delete_StructuralHealth - -# Register StructuralHealth in _mscl: -_mscl.StructuralHealth_swigregister(StructuralHealth) - -class DataPoint(Value): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - channelPropertyId_angle = _mscl.DataPoint_channelPropertyId_angle - channelPropertyId_derivedFrom = _mscl.DataPoint_channelPropertyId_derivedFrom - channelPropertyId_derivedAlgorithmId = _mscl.DataPoint_channelPropertyId_derivedAlgorithmId - __swig_destroy__ = _mscl.delete_DataPoint - - def channelProperty(self, id): - return _mscl.DataPoint_channelProperty(self, id) - - def as_Vector(self): - return _mscl.DataPoint_as_Vector(self) - - def as_Matrix(self): - return _mscl.DataPoint_as_Matrix(self) - - def as_Timestamp(self): - return _mscl.DataPoint_as_Timestamp(self) - - def as_Bytes(self): - return _mscl.DataPoint_as_Bytes(self) - - def as_StructuralHealth(self): - return _mscl.DataPoint_as_StructuralHealth(self) - - def as_RfSweep(self): - return _mscl.DataPoint_as_RfSweep(self) - - def as_string(self): - return _mscl.DataPoint_as_string(self) - -# Register DataPoint in _mscl: -_mscl.DataPoint_swigregister(DataPoint) - -class ConfigIssue(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONFIG_SAMPLING_MODE = _mscl.ConfigIssue_CONFIG_SAMPLING_MODE - CONFIG_ACTIVE_CHANNELS = _mscl.ConfigIssue_CONFIG_ACTIVE_CHANNELS - CONFIG_SAMPLE_RATE = _mscl.ConfigIssue_CONFIG_SAMPLE_RATE - CONFIG_SWEEPS = _mscl.ConfigIssue_CONFIG_SWEEPS - CONFIG_UNLIMITED_DURATION = _mscl.ConfigIssue_CONFIG_UNLIMITED_DURATION - CONFIG_DATA_FORMAT = _mscl.ConfigIssue_CONFIG_DATA_FORMAT - CONFIG_DATA_COLLECTION_METHOD = _mscl.ConfigIssue_CONFIG_DATA_COLLECTION_METHOD - CONFIG_TIME_BETWEEN_BURSTS = _mscl.ConfigIssue_CONFIG_TIME_BETWEEN_BURSTS - CONFIG_THERMOCOUPLE_TYPE = _mscl.ConfigIssue_CONFIG_THERMOCOUPLE_TYPE - CONFIG_FILTER_SETTLING_TIME = _mscl.ConfigIssue_CONFIG_FILTER_SETTLING_TIME - CONFIG_BUTTON = _mscl.ConfigIssue_CONFIG_BUTTON - CONFIG_ANALOG_PAIR = _mscl.ConfigIssue_CONFIG_ANALOG_PAIR - CONFIG_INPUT_RANGE = _mscl.ConfigIssue_CONFIG_INPUT_RANGE - CONFIG_INACTIVITY_TIMEOUT = _mscl.ConfigIssue_CONFIG_INACTIVITY_TIMEOUT - CONFIG_CHECK_RADIO_INTERVAL = _mscl.ConfigIssue_CONFIG_CHECK_RADIO_INTERVAL - CONFIG_LOST_BEACON_TIMEOUT = _mscl.ConfigIssue_CONFIG_LOST_BEACON_TIMEOUT - CONFIG_DEFAULT_MODE = _mscl.ConfigIssue_CONFIG_DEFAULT_MODE - CONFIG_TRANSMIT_POWER = _mscl.ConfigIssue_CONFIG_TRANSMIT_POWER - CONFIG_LINEAR_EQUATION = _mscl.ConfigIssue_CONFIG_LINEAR_EQUATION - CONFIG_FATIGUE = _mscl.ConfigIssue_CONFIG_FATIGUE - CONFIG_FATIGUE_MODE = _mscl.ConfigIssue_CONFIG_FATIGUE_MODE - CONFIG_FATIGUE_ANGLE_ID = _mscl.ConfigIssue_CONFIG_FATIGUE_ANGLE_ID - CONFIG_FATIGUE_SN_CURVE = _mscl.ConfigIssue_CONFIG_FATIGUE_SN_CURVE - CONFIG_FATIGUE_DIST_NUM_ANGLES = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_NUM_ANGLES - CONFIG_FATIGUE_DIST_ANGLE = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_ANGLE - CONFIG_HISTOGRAM = _mscl.ConfigIssue_CONFIG_HISTOGRAM - CONFIG_HISTOGRAM_TX_RATE = _mscl.ConfigIssue_CONFIG_HISTOGRAM_TX_RATE - CONFIG_HARDWARE_OFFSET = _mscl.ConfigIssue_CONFIG_HARDWARE_OFFSET - CONFIG_ACTIVITY_SENSE = _mscl.ConfigIssue_CONFIG_ACTIVITY_SENSE - CONFIG_GAUGE_FACTOR = _mscl.ConfigIssue_CONFIG_GAUGE_FACTOR - CONFIG_EVENT_TRIGGER = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER - CONFIG_EVENT_TRIGGER_DURATION = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_DURATION - CONFIG_EVENT_TRIGGER_MASK = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_MASK - CONFIG_DIAGNOSTIC_INTERVAL = _mscl.ConfigIssue_CONFIG_DIAGNOSTIC_INTERVAL - CONFIG_ANTI_ALIASING_FILTER = _mscl.ConfigIssue_CONFIG_ANTI_ALIASING_FILTER - CONFIG_STORAGE_LIMIT_MODE = _mscl.ConfigIssue_CONFIG_STORAGE_LIMIT_MODE - CONFIG_SENSOR_DELAY = _mscl.ConfigIssue_CONFIG_SENSOR_DELAY - CONFIG_LOW_PASS_FILTER = _mscl.ConfigIssue_CONFIG_LOW_PASS_FILTER - CONFIG_DATA_MODE = _mscl.ConfigIssue_CONFIG_DATA_MODE - CONFIG_DERIVED_DATA_RATE = _mscl.ConfigIssue_CONFIG_DERIVED_DATA_RATE - CONFIG_DERIVED_MASK_RMS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_RMS - CONFIG_DERIVED_MASK_P2P = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_P2P - CONFIG_DERIVED_MASK_IPS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_IPS - CONFIG_DERIVED_MASK_CREST_FACTOR = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_CREST_FACTOR - CONFIG_HIGH_PASS_FILTER = _mscl.ConfigIssue_CONFIG_HIGH_PASS_FILTER - CONFIG_DERIVED_MASK = _mscl.ConfigIssue_CONFIG_DERIVED_MASK - CONFIG_COMM_PROTOCOL = _mscl.ConfigIssue_CONFIG_COMM_PROTOCOL - CONFIG_DERIVED_MASK_MEAN = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_MEAN - CONFIG_GAUGE_RESISTANCE = _mscl.ConfigIssue_CONFIG_GAUGE_RESISTANCE - CONFIG_NUM_ACTIVE_GAUGES = _mscl.ConfigIssue_CONFIG_NUM_ACTIVE_GAUGES - CONFIG_TEMP_SENSOR_OPTS = _mscl.ConfigIssue_CONFIG_TEMP_SENSOR_OPTS - CONFIG_DEBOUNCE_FILTER = _mscl.ConfigIssue_CONFIG_DEBOUNCE_FILTER - CONFIG_PULLUP_RESISTOR = _mscl.ConfigIssue_CONFIG_PULLUP_RESISTOR - CONFIG_EXCITATION_VOLTAGE = _mscl.ConfigIssue_CONFIG_EXCITATION_VOLTAGE - CONFIG_DERIVED_UNIT = _mscl.ConfigIssue_CONFIG_DERIVED_UNIT - CONFIG_SENSOR_OUTPUT_MODE = _mscl.ConfigIssue_CONFIG_SENSOR_OUTPUT_MODE - CONFIG_LOW_BATTERY_THRESHOLD = _mscl.ConfigIssue_CONFIG_LOW_BATTERY_THRESHOLD - CONFIG_CFC_FILTER = _mscl.ConfigIssue_CONFIG_CFC_FILTER - - def __init__(self, *args): - _mscl.ConfigIssue_swiginit(self, _mscl.new_ConfigIssue(*args)) - - def id(self): - return _mscl.ConfigIssue_id(self) - - def description(self): - return _mscl.ConfigIssue_description(self) - - def isChannelGroupIssue(self): - return _mscl.ConfigIssue_isChannelGroupIssue(self) - - def channelMask(self): - return _mscl.ConfigIssue_channelMask(self) - __swig_destroy__ = _mscl.delete_ConfigIssue - -# Register ConfigIssue in _mscl: -_mscl.ConfigIssue_swigregister(ConfigIssue) - -class ActivitySense(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ActivitySense_swiginit(self, _mscl.new_ActivitySense()) - - def enabled(self, *args): - return _mscl.ActivitySense_enabled(self, *args) - - def activityThreshold(self, *args): - return _mscl.ActivitySense_activityThreshold(self, *args) - - def inactivityThreshold(self, *args): - return _mscl.ActivitySense_inactivityThreshold(self, *args) - - def activityTime(self, *args): - return _mscl.ActivitySense_activityTime(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.ActivitySense_inactivityTimeout(self, *args) - __swig_destroy__ = _mscl.delete_ActivitySense - -# Register ActivitySense in _mscl: -_mscl.ActivitySense_swigregister(ActivitySense) - -class Trigger(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Trigger_swiginit(self, _mscl.new_Trigger(*args)) - - def channelNumber(self, *args): - return _mscl.Trigger_channelNumber(self, *args) - - def triggerType(self, *args): - return _mscl.Trigger_triggerType(self, *args) - - def triggerValue(self, *args): - return _mscl.Trigger_triggerValue(self, *args) - __swig_destroy__ = _mscl.delete_Trigger - -# Register Trigger in _mscl: -_mscl.Trigger_swigregister(Trigger) - -class EventTriggerOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerOptions_swiginit(self, _mscl.new_EventTriggerOptions()) - - def triggerMask(self, *args): - return _mscl.EventTriggerOptions_triggerMask(self, *args) - - def anyTriggersEnabled(self): - return _mscl.EventTriggerOptions_anyTriggersEnabled(self) - - def triggerEnabled(self, triggerIndex): - return _mscl.EventTriggerOptions_triggerEnabled(self, triggerIndex) - - def enableTrigger(self, triggerIndex, enable=True): - return _mscl.EventTriggerOptions_enableTrigger(self, triggerIndex, enable) - - def preDuration(self, *args): - return _mscl.EventTriggerOptions_preDuration(self, *args) - - def postDuration(self, *args): - return _mscl.EventTriggerOptions_postDuration(self, *args) - - def trigger(self, *args): - return _mscl.EventTriggerOptions_trigger(self, *args) - - def triggers(self): - return _mscl.EventTriggerOptions_triggers(self) - __swig_destroy__ = _mscl.delete_EventTriggerOptions - -# Register EventTriggerOptions in _mscl: -_mscl.EventTriggerOptions_swigregister(EventTriggerOptions) - -class SnCurveSegment(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.SnCurveSegment_swiginit(self, _mscl.new_SnCurveSegment(*args)) - - def m(self, *args): - return _mscl.SnCurveSegment_m(self, *args) - - def logA(self, *args): - return _mscl.SnCurveSegment_logA(self, *args) - __swig_destroy__ = _mscl.delete_SnCurveSegment - -# Register SnCurveSegment in _mscl: -_mscl.SnCurveSegment_swigregister(SnCurveSegment) - -class FatigueOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FatigueOptions_swiginit(self, _mscl.new_FatigueOptions()) - - def youngsModulus(self, *args): - return _mscl.FatigueOptions_youngsModulus(self, *args) - - def poissonsRatio(self, *args): - return _mscl.FatigueOptions_poissonsRatio(self, *args) - - def peakValleyThreshold(self, *args): - return _mscl.FatigueOptions_peakValleyThreshold(self, *args) - - def debugMode(self, *args): - return _mscl.FatigueOptions_debugMode(self, *args) - - def damageAngles(self): - return _mscl.FatigueOptions_damageAngles(self) - - def damageAngle(self, *args): - return _mscl.FatigueOptions_damageAngle(self, *args) - - def snCurveSegments(self): - return _mscl.FatigueOptions_snCurveSegments(self) - - def snCurveSegment(self, *args): - return _mscl.FatigueOptions_snCurveSegment(self, *args) - - def fatigueMode(self, *args): - return _mscl.FatigueOptions_fatigueMode(self, *args) - - def distributedAngleMode_numAngles(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_numAngles(self, *args) - - def distributedAngleMode_lowerBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_lowerBound(self, *args) - - def distributedAngleMode_upperBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_upperBound(self, *args) - - def histogramEnable(self, *args): - return _mscl.FatigueOptions_histogramEnable(self, *args) - __swig_destroy__ = _mscl.delete_FatigueOptions - -# Register FatigueOptions in _mscl: -_mscl.FatigueOptions_swigregister(FatigueOptions) - -class HistogramOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HistogramOptions_swiginit(self, _mscl.new_HistogramOptions()) - - def transmitRate(self, *args): - return _mscl.HistogramOptions_transmitRate(self, *args) - - def binsStart(self, *args): - return _mscl.HistogramOptions_binsStart(self, *args) - - def binsSize(self, *args): - return _mscl.HistogramOptions_binsSize(self, *args) - __swig_destroy__ = _mscl.delete_HistogramOptions - -# Register HistogramOptions in _mscl: -_mscl.HistogramOptions_swigregister(HistogramOptions) - -class InputRangeEntry(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - inputRange = property(_mscl.InputRangeEntry_inputRange_get, _mscl.InputRangeEntry_inputRange_set) - hasGain = property(_mscl.InputRangeEntry_hasGain_get, _mscl.InputRangeEntry_hasGain_set) - gain = property(_mscl.InputRangeEntry_gain_get, _mscl.InputRangeEntry_gain_set) - - def __init__(self, *args): - _mscl.InputRangeEntry_swiginit(self, _mscl.new_InputRangeEntry(*args)) - __swig_destroy__ = _mscl.delete_InputRangeEntry - -# Register InputRangeEntry in _mscl: -_mscl.InputRangeEntry_swigregister(InputRangeEntry) - -class TempSensorOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - - @staticmethod - def RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - - @staticmethod - def Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - - def transducerType(self): - return _mscl.TempSensorOptions_transducerType(self) - - def thermocoupleType(self): - return _mscl.TempSensorOptions_thermocoupleType(self) - - def rtdType(self): - return _mscl.TempSensorOptions_rtdType(self) - - def rtdWireType(self): - return _mscl.TempSensorOptions_rtdWireType(self) - - def thermistorType(self): - return _mscl.TempSensorOptions_thermistorType(self) - __swig_destroy__ = _mscl.delete_TempSensorOptions - -# Register TempSensorOptions in _mscl: -_mscl.TempSensorOptions_swigregister(TempSensorOptions) - -def TempSensorOptions_Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - -def TempSensorOptions_RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - -def TempSensorOptions_Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - -class WirelessModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_vLink_legacy = _mscl.WirelessModels_node_vLink_legacy - node_cfBearingTempLink = _mscl.WirelessModels_node_cfBearingTempLink - node_envLink_pro = _mscl.WirelessModels_node_envLink_pro - node_gLink_2g = _mscl.WirelessModels_node_gLink_2g - node_gLink_10g = _mscl.WirelessModels_node_gLink_10g - node_gLinkII_cust_in = _mscl.WirelessModels_node_gLinkII_cust_in - node_gLinkII_2g_in = _mscl.WirelessModels_node_gLinkII_2g_in - node_gLinkII_10g_in = _mscl.WirelessModels_node_gLinkII_10g_in - node_gLinkII_cust_ex = _mscl.WirelessModels_node_gLinkII_cust_ex - node_gLinkII_2g_ex = _mscl.WirelessModels_node_gLinkII_2g_ex - node_gLinkII_10g_ex = _mscl.WirelessModels_node_gLinkII_10g_ex - node_gLink_rgd_10g = _mscl.WirelessModels_node_gLink_rgd_10g - node_gLink_200_8g = _mscl.WirelessModels_node_gLink_200_8g - node_gLink_200_40g = _mscl.WirelessModels_node_gLink_200_40g - node_gLink_200_8g_oem = _mscl.WirelessModels_node_gLink_200_8g_oem - node_gLink_200_40g_oem = _mscl.WirelessModels_node_gLink_200_40g_oem - node_gLink_200_8g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_8g_oem_mmcx - node_gLink_200_40g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_40g_oem_mmcx - node_gLink_200_8g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_8g_oem_u_fl - node_gLink_200_40g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_40g_oem_u_fl - node_gLink_200_r = _mscl.WirelessModels_node_gLink_200_r - node_sgLink_oem_S = _mscl.WirelessModels_node_sgLink_oem_S - node_sgLink = _mscl.WirelessModels_node_sgLink - node_sgLink200 = _mscl.WirelessModels_node_sgLink200 - node_sgLink200_hbridge_1K = _mscl.WirelessModels_node_sgLink200_hbridge_1K - node_sgLink200_hbridge_350 = _mscl.WirelessModels_node_sgLink200_hbridge_350 - node_sgLink200_hbridge_120 = _mscl.WirelessModels_node_sgLink200_hbridge_120 - node_sgLink200_qbridge_1K = _mscl.WirelessModels_node_sgLink200_qbridge_1K - node_sgLink200_qbridge_350 = _mscl.WirelessModels_node_sgLink200_qbridge_350 - node_sgLink200_qbridge_120 = _mscl.WirelessModels_node_sgLink200_qbridge_120 - node_sgLink_oem = _mscl.WirelessModels_node_sgLink_oem - node_sgLink_micro = _mscl.WirelessModels_node_sgLink_micro - node_sgLink200_oem = _mscl.WirelessModels_node_sgLink200_oem - node_sgLink200_oem_ufl = _mscl.WirelessModels_node_sgLink200_oem_ufl - node_sgLink200_oem_hbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K - node_sgLink200_oem_hbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K_ufl - node_sgLink200_oem_hbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120 - node_sgLink200_oem_hbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120_ufl - node_sgLink200_oem_hbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350 - node_sgLink200_oem_hbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350_ufl - node_sgLink200_oem_qbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K - node_sgLink200_oem_qbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K_ufl - node_sgLink200_oem_qbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120 - node_sgLink200_oem_qbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120_ufl - node_sgLink200_oem_qbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350 - node_sgLink200_oem_qbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350_ufl - node_sgLink_rgd = _mscl.WirelessModels_node_sgLink_rgd - node_shmLink = _mscl.WirelessModels_node_shmLink - node_tcLink_1ch = _mscl.WirelessModels_node_tcLink_1ch - node_tcLink_6ch = _mscl.WirelessModels_node_tcLink_6ch - node_tcLink_3ch = _mscl.WirelessModels_node_tcLink_3ch - node_tcLink_6ch_ip67 = _mscl.WirelessModels_node_tcLink_6ch_ip67 - node_tcLink200_oem = _mscl.WirelessModels_node_tcLink200_oem - node_tcLink200_oem_ufl = _mscl.WirelessModels_node_tcLink200_oem_ufl - node_tcLink200 = _mscl.WirelessModels_node_tcLink200 - node_rtdLink200 = _mscl.WirelessModels_node_rtdLink200 - node_tcLink_6ch_ip67_rht = _mscl.WirelessModels_node_tcLink_6ch_ip67_rht - node_vLink = _mscl.WirelessModels_node_vLink - node_vLink200 = _mscl.WirelessModels_node_vLink200 - node_vLink200_qbridge_1K = _mscl.WirelessModels_node_vLink200_qbridge_1K - node_vLink200_qbridge_120 = _mscl.WirelessModels_node_vLink200_qbridge_120 - node_vLink200_qbridge_350 = _mscl.WirelessModels_node_vLink200_qbridge_350 - node_vLink200_hbridge_1K = _mscl.WirelessModels_node_vLink200_hbridge_1K - node_vLink200_hbridge_120 = _mscl.WirelessModels_node_vLink200_hbridge_120 - node_vLink200_hbridge_350 = _mscl.WirelessModels_node_vLink200_hbridge_350 - node_iepeLink = _mscl.WirelessModels_node_iepeLink - node_dvrtLink = _mscl.WirelessModels_node_dvrtLink - node_envLink_mini = _mscl.WirelessModels_node_envLink_mini - node_wattLink = _mscl.WirelessModels_node_wattLink - node_wattLink_3Y208 = _mscl.WirelessModels_node_wattLink_3Y208 - node_wattLink_3D240 = _mscl.WirelessModels_node_wattLink_3D240 - node_wattLink_3Y400 = _mscl.WirelessModels_node_wattLink_3Y400 - node_wattLink_3D400 = _mscl.WirelessModels_node_wattLink_3D400 - node_wattLink_3Y480 = _mscl.WirelessModels_node_wattLink_3Y480 - node_wattLink_3D480 = _mscl.WirelessModels_node_wattLink_3D480 - node_wattLink_3Y600 = _mscl.WirelessModels_node_wattLink_3Y600 - node_ptLink200 = _mscl.WirelessModels_node_ptLink200 - node_rtdLink = _mscl.WirelessModels_node_rtdLink - node_shmLink2_cust1_oldNumber = _mscl.WirelessModels_node_shmLink2_cust1_oldNumber - node_shmLink2_cust1 = _mscl.WirelessModels_node_shmLink2_cust1 - node_shmLink200 = _mscl.WirelessModels_node_shmLink200 - node_shmLink201 = _mscl.WirelessModels_node_shmLink201 - node_shmLink201_qbridge_1K = _mscl.WirelessModels_node_shmLink201_qbridge_1K - node_shmLink201_qbridge_348 = _mscl.WirelessModels_node_shmLink201_qbridge_348 - node_shmLink201_hbridge_1K = _mscl.WirelessModels_node_shmLink201_hbridge_1K - node_shmLink201_hbridge_348 = _mscl.WirelessModels_node_shmLink201_hbridge_348 - node_shmLink201_fullbridge = _mscl.WirelessModels_node_shmLink201_fullbridge - node_shmLink210_fullbridge = _mscl.WirelessModels_node_shmLink210_fullbridge - node_shmLink210_qbridge_3K = _mscl.WirelessModels_node_shmLink210_qbridge_3K - node_torqueLink = _mscl.WirelessModels_node_torqueLink - node_torqueLink200_3ch = _mscl.WirelessModels_node_torqueLink200_3ch - node_torqueLink200 = _mscl.WirelessModels_node_torqueLink200 - node_torqueLink200_3ch_s = _mscl.WirelessModels_node_torqueLink200_3ch_s - node_sgLink_herm = _mscl.WirelessModels_node_sgLink_herm - node_sgLink_herm_2600 = _mscl.WirelessModels_node_sgLink_herm_2600 - node_sgLink_herm_2700 = _mscl.WirelessModels_node_sgLink_herm_2700 - node_sgLink_herm_2800 = _mscl.WirelessModels_node_sgLink_herm_2800 - node_sgLink_herm_2900 = _mscl.WirelessModels_node_sgLink_herm_2900 - node_wirelessImpactSensor = _mscl.WirelessModels_node_wirelessImpactSensor - node_gLink_200_40g_s = _mscl.WirelessModels_node_gLink_200_40g_s - base_wsda_1000 = _mscl.WirelessModels_base_wsda_1000 - base_wsda_1500 = _mscl.WirelessModels_base_wsda_1500 - base_wsda_2000 = _mscl.WirelessModels_base_wsda_2000 - base_wsdaBase_200_legacy = _mscl.WirelessModels_base_wsdaBase_200_legacy - base_wsdaBase_200 = _mscl.WirelessModels_base_wsdaBase_200 - base_wsdaBase_200_extAntenna = _mscl.WirelessModels_base_wsdaBase_200_extAntenna - base_wsdaBase_101_analog = _mscl.WirelessModels_base_wsdaBase_101_analog - base_wsdaBase_102_rs232 = _mscl.WirelessModels_base_wsdaBase_102_rs232 - base_wsdaBase_104_usb = _mscl.WirelessModels_base_wsdaBase_104_usb - base_wsi_104 = _mscl.WirelessModels_base_wsi_104 - base_wsdaBase_mini = _mscl.WirelessModels_base_wsdaBase_mini - - def __init__(self): - _mscl.WirelessModels_swiginit(self, _mscl.new_WirelessModels()) - __swig_destroy__ = _mscl.delete_WirelessModels - -# Register WirelessModels in _mscl: -_mscl.WirelessModels_swigregister(WirelessModels) - -class NodeDiscovery(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def nodeAddress(self): - return _mscl.NodeDiscovery_nodeAddress(self) - - def frequency(self): - return _mscl.NodeDiscovery_frequency(self) - - def panId(self): - return _mscl.NodeDiscovery_panId(self) - - def model(self): - return _mscl.NodeDiscovery_model(self) - - def serialNumber(self): - return _mscl.NodeDiscovery_serialNumber(self) - - def firmwareVersion(self): - return _mscl.NodeDiscovery_firmwareVersion(self) - - def defaultMode(self): - return _mscl.NodeDiscovery_defaultMode(self) - - def builtInTestResult(self): - return _mscl.NodeDiscovery_builtInTestResult(self) - - def communicationProtocol(self): - return _mscl.NodeDiscovery_communicationProtocol(self) - - def asppVersion_lxrs(self): - return _mscl.NodeDiscovery_asppVersion_lxrs(self) - - def asppVersion_lxrsPlus(self): - return _mscl.NodeDiscovery_asppVersion_lxrsPlus(self) - - def baseRssi(self): - return _mscl.NodeDiscovery_baseRssi(self) - - def timestamp(self): - return _mscl.NodeDiscovery_timestamp(self) - - def __init__(self): - _mscl.NodeDiscovery_swiginit(self, _mscl.new_NodeDiscovery()) - __swig_destroy__ = _mscl.delete_NodeDiscovery - -# Register NodeDiscovery in _mscl: -_mscl.NodeDiscovery_swigregister(NodeDiscovery) - -class LinearEquation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LinearEquation_swiginit(self, _mscl.new_LinearEquation(*args)) - - def slope(self, *args): - return _mscl.LinearEquation_slope(self, *args) - - def offset(self, *args): - return _mscl.LinearEquation_offset(self, *args) - __swig_destroy__ = _mscl.delete_LinearEquation - -# Register LinearEquation in _mscl: -_mscl.LinearEquation_swigregister(LinearEquation) - -class CalCoefficients(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CalCoefficients_swiginit(self, _mscl.new_CalCoefficients(*args)) - - def equationType(self): - return _mscl.CalCoefficients_equationType(self) - - def unit(self): - return _mscl.CalCoefficients_unit(self) - - def linearEquation(self): - return _mscl.CalCoefficients_linearEquation(self) - __swig_destroy__ = _mscl.delete_CalCoefficients - -# Register CalCoefficients in _mscl: -_mscl.CalCoefficients_swigregister(CalCoefficients) - -class ChannelGroup(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ChannelGroup_swiginit(self, _mscl.new_ChannelGroup()) - - def channels(self): - return _mscl.ChannelGroup_channels(self) - - def name(self): - return _mscl.ChannelGroup_name(self) - - def eepromLocation(self, setting): - return _mscl.ChannelGroup_eepromLocation(self, setting) - - def settings(self): - return _mscl.ChannelGroup_settings(self) - - def hasSetting(self, setting): - return _mscl.ChannelGroup_hasSetting(self, setting) - - def hasSettingAndChannel(self, setting, channelNumber): - return _mscl.ChannelGroup_hasSettingAndChannel(self, setting, channelNumber) - __swig_destroy__ = _mscl.delete_ChannelGroup - -# Register ChannelGroup in _mscl: -_mscl.ChannelGroup_swigregister(ChannelGroup) - -class WirelessChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - channel_unknown = _mscl.WirelessChannel_channel_unknown - channel_1 = _mscl.WirelessChannel_channel_1 - channel_2 = _mscl.WirelessChannel_channel_2 - channel_3 = _mscl.WirelessChannel_channel_3 - channel_4 = _mscl.WirelessChannel_channel_4 - channel_5 = _mscl.WirelessChannel_channel_5 - channel_6 = _mscl.WirelessChannel_channel_6 - channel_7 = _mscl.WirelessChannel_channel_7 - channel_8 = _mscl.WirelessChannel_channel_8 - channel_9 = _mscl.WirelessChannel_channel_9 - channel_10 = _mscl.WirelessChannel_channel_10 - channel_11 = _mscl.WirelessChannel_channel_11 - channel_12 = _mscl.WirelessChannel_channel_12 - channel_13 = _mscl.WirelessChannel_channel_13 - channel_14 = _mscl.WirelessChannel_channel_14 - channel_15 = _mscl.WirelessChannel_channel_15 - channel_16 = _mscl.WirelessChannel_channel_16 - channel_digital_1 = _mscl.WirelessChannel_channel_digital_1 - channel_digital_2 = _mscl.WirelessChannel_channel_digital_2 - channel_digital_3 = _mscl.WirelessChannel_channel_digital_3 - channel_digital_4 = _mscl.WirelessChannel_channel_digital_4 - channel_digital_5 = _mscl.WirelessChannel_channel_digital_5 - channel_digital_6 = _mscl.WirelessChannel_channel_digital_6 - channel_digital_7 = _mscl.WirelessChannel_channel_digital_7 - channel_digital_8 = _mscl.WirelessChannel_channel_digital_8 - channel_digital_9 = _mscl.WirelessChannel_channel_digital_9 - channel_digital_10 = _mscl.WirelessChannel_channel_digital_10 - channel_digital_11 = _mscl.WirelessChannel_channel_digital_11 - channel_digital_12 = _mscl.WirelessChannel_channel_digital_12 - channel_digital_13 = _mscl.WirelessChannel_channel_digital_13 - channel_digital_14 = _mscl.WirelessChannel_channel_digital_14 - channel_digital_15 = _mscl.WirelessChannel_channel_digital_15 - channel_digital_16 = _mscl.WirelessChannel_channel_digital_16 - channel_structuralHealth = _mscl.WirelessChannel_channel_structuralHealth - channel_hcl_rawBase_mag1_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_x - channel_hcl_rawBase_mag1_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_y - channel_hcl_rawBase_mag1_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_z - channel_hcl_rawBase_mag2_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_x - channel_hcl_rawBase_mag2_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_y - channel_hcl_rawBase_mag2_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_z - channel_hcl_rawBase_mag3_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_x - channel_hcl_rawBase_mag3_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_y - channel_hcl_rawBase_mag3_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_z - channel_hcl_rawBase_mag4_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_x - channel_hcl_rawBase_mag4_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_y - channel_hcl_rawBase_mag4_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_z - channel_hcl_rawBase_mag5_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_x - channel_hcl_rawBase_mag5_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_y - channel_hcl_rawBase_mag5_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_z - channel_hcl_rawBase_mag6_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_x - channel_hcl_rawBase_mag6_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_y - channel_hcl_rawBase_mag6_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_z - channel_hcl_rawBase_mag7_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_x - channel_hcl_rawBase_mag7_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_y - channel_hcl_rawBase_mag7_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_z - channel_hcl_rawBase_mag8_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_x - channel_hcl_rawBase_mag8_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_y - channel_hcl_rawBase_mag8_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_z - channel_hcl_rawBase_gyro_x = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_x - channel_hcl_rawBase_gyro_y = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_y - channel_hcl_rawBase_gyro_z = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_z - channel_error_code = _mscl.WirelessChannel_channel_error_code - channel_hcl_rawStrain_BL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL30 - channel_hcl_rawStrain_BL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL120 - channel_hcl_rawStrain_A60 = _mscl.WirelessChannel_channel_hcl_rawStrain_A60 - channel_hcl_rawStrain_A150 = _mscl.WirelessChannel_channel_hcl_rawStrain_A150 - channel_hcl_rawStrain_AL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL30 - channel_hcl_rawStrain_AL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL120 - channel_hcl_rawStrain_BR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR60 - channel_hcl_rawStrain_BR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR150 - channel_hcl_rawStrain_B30 = _mscl.WirelessChannel_channel_hcl_rawStrain_B30 - channel_hcl_rawStrain_T120 = _mscl.WirelessChannel_channel_hcl_rawStrain_T120 - channel_hcl_rawStrain_AR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR60 - channel_hcl_rawStrain_AR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR150 - channel_hcl_rawStrain_A30 = _mscl.WirelessChannel_channel_hcl_rawStrain_A30 - channel_hcl_rawStrain_A120 = _mscl.WirelessChannel_channel_hcl_rawStrain_A120 - channel_hcl_rawStrain_BL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL90 - channel_hcl_rawStrain_BL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL180 - channel_hcl_rawStrain_BR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR30 - channel_hcl_rawStrain_BR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR120 - channel_hcl_rawStrain_AL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL90 - channel_hcl_rawStrain_AL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL180 - channel_hcl_rawStrain_AR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR30 - channel_hcl_rawStrain_AR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR120 - channel_hcl_rawStrain_B90 = _mscl.WirelessChannel_channel_hcl_rawStrain_B90 - channel_hcl_rawStrain_T0 = _mscl.WirelessChannel_channel_hcl_rawStrain_T0 - channel_hcl_rawStrain_BL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL60 - channel_hcl_rawStrain_BL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL150 - channel_hcl_rawStrain_A90 = _mscl.WirelessChannel_channel_hcl_rawStrain_A90 - channel_hcl_rawStrain_A0 = _mscl.WirelessChannel_channel_hcl_rawStrain_A0 - channel_hcl_rawStrain_AL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL60 - channel_hcl_rawStrain_AL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL150 - channel_hcl_rawStrain_BR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR90 - channel_hcl_rawStrain_BR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR0 - channel_hcl_rawStrain_T60 = _mscl.WirelessChannel_channel_hcl_rawStrain_T60 - channel_hcl_rawStrain_B150 = _mscl.WirelessChannel_channel_hcl_rawStrain_B150 - channel_hcl_rawStrain_AR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR90 - channel_hcl_rawStrain_AR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR0 - channel_hcl_rawInertial_accel1 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel1 - channel_hcl_rawInertial_accel2 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel2 - channel_hcl_rawInertial_accel3 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel3 - channel_hcl_rawInertial_accel4 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel4 - channel_hcl_rawInertial_accel5 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel5 - channel_hcl_rawInertial_accel6 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel6 - channel_hcl_rawInertial_accel7 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel7 - channel_hcl_rawInertial_accel8 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel8 - channel_hcl_rawInertial_gyroX = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroX - channel_hcl_rawInertial_gyroY = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroY - channel_hcl_rawInertial_gyroZ = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroZ - channel_rawAngleStrain = _mscl.WirelessChannel_channel_rawAngleStrain - channel_beaconEcho = _mscl.WirelessChannel_channel_beaconEcho - channel_rfSweep = _mscl.WirelessChannel_channel_rfSweep - channel_diag_state = _mscl.WirelessChannel_channel_diag_state - channel_diag_runtime_idle = _mscl.WirelessChannel_channel_diag_runtime_idle - channel_diag_runtime_sleep = _mscl.WirelessChannel_channel_diag_runtime_sleep - channel_diag_runtime_activeRun = _mscl.WirelessChannel_channel_diag_runtime_activeRun - channel_diag_runtime_inactiveRun = _mscl.WirelessChannel_channel_diag_runtime_inactiveRun - channel_diag_resetCounter = _mscl.WirelessChannel_channel_diag_resetCounter - channel_diag_lowBatteryFlag = _mscl.WirelessChannel_channel_diag_lowBatteryFlag - channel_diag_sweepIndex = _mscl.WirelessChannel_channel_diag_sweepIndex - channel_diag_badSweepCount = _mscl.WirelessChannel_channel_diag_badSweepCount - channel_diag_totalTx = _mscl.WirelessChannel_channel_diag_totalTx - channel_diag_totalReTx = _mscl.WirelessChannel_channel_diag_totalReTx - channel_diag_totalDroppedPackets = _mscl.WirelessChannel_channel_diag_totalDroppedPackets - channel_diag_builtInTestResult = _mscl.WirelessChannel_channel_diag_builtInTestResult - channel_diag_eventIndex = _mscl.WirelessChannel_channel_diag_eventIndex - channel_hcl_axialLoadX = _mscl.WirelessChannel_channel_hcl_axialLoadX - channel_hcl_axialLoadY = _mscl.WirelessChannel_channel_hcl_axialLoadY - channel_hcl_axialLoadZ = _mscl.WirelessChannel_channel_hcl_axialLoadZ - channel_hcl_bendingMomentFlap = _mscl.WirelessChannel_channel_hcl_bendingMomentFlap - channel_hcl_bendingMomentLag = _mscl.WirelessChannel_channel_hcl_bendingMomentLag - channel_hcl_bendingMomentPitch = _mscl.WirelessChannel_channel_hcl_bendingMomentPitch - channel_hcl_motionFlap_mag = _mscl.WirelessChannel_channel_hcl_motionFlap_mag - channel_hcl_motionLag_mag = _mscl.WirelessChannel_channel_hcl_motionLag_mag - channel_hcl_motionPitch_mag = _mscl.WirelessChannel_channel_hcl_motionPitch_mag - channel_hcl_motionFlap_inertial = _mscl.WirelessChannel_channel_hcl_motionFlap_inertial - channel_hcl_motionLag_inertial = _mscl.WirelessChannel_channel_hcl_motionLag_inertial - channel_hcl_motionPitch_inertial = _mscl.WirelessChannel_channel_hcl_motionPitch_inertial - channel_hcl_cockingStiffness_mag = _mscl.WirelessChannel_channel_hcl_cockingStiffness_mag - channel_hcl_cockingStiffness_inertial = _mscl.WirelessChannel_channel_hcl_cockingStiffness_inertial - channel_hcl_temperature = _mscl.WirelessChannel_channel_hcl_temperature - channel_diag_externalPower = _mscl.WirelessChannel_channel_diag_externalPower - channel_diag_internalTemp = _mscl.WirelessChannel_channel_diag_internalTemp - channel_1_rms = _mscl.WirelessChannel_channel_1_rms - channel_2_rms = _mscl.WirelessChannel_channel_2_rms - channel_3_rms = _mscl.WirelessChannel_channel_3_rms - channel_4_rms = _mscl.WirelessChannel_channel_4_rms - channel_5_rms = _mscl.WirelessChannel_channel_5_rms - channel_6_rms = _mscl.WirelessChannel_channel_6_rms - channel_7_rms = _mscl.WirelessChannel_channel_7_rms - channel_8_rms = _mscl.WirelessChannel_channel_8_rms - channel_9_rms = _mscl.WirelessChannel_channel_9_rms - channel_10_rms = _mscl.WirelessChannel_channel_10_rms - channel_11_rms = _mscl.WirelessChannel_channel_11_rms - channel_12_rms = _mscl.WirelessChannel_channel_12_rms - channel_13_rms = _mscl.WirelessChannel_channel_13_rms - channel_14_rms = _mscl.WirelessChannel_channel_14_rms - channel_15_rms = _mscl.WirelessChannel_channel_15_rms - channel_16_rms = _mscl.WirelessChannel_channel_16_rms - channel_1_peakToPeak = _mscl.WirelessChannel_channel_1_peakToPeak - channel_2_peakToPeak = _mscl.WirelessChannel_channel_2_peakToPeak - channel_3_peakToPeak = _mscl.WirelessChannel_channel_3_peakToPeak - channel_4_peakToPeak = _mscl.WirelessChannel_channel_4_peakToPeak - channel_5_peakToPeak = _mscl.WirelessChannel_channel_5_peakToPeak - channel_6_peakToPeak = _mscl.WirelessChannel_channel_6_peakToPeak - channel_7_peakToPeak = _mscl.WirelessChannel_channel_7_peakToPeak - channel_8_peakToPeak = _mscl.WirelessChannel_channel_8_peakToPeak - channel_9_peakToPeak = _mscl.WirelessChannel_channel_9_peakToPeak - channel_10_peakToPeak = _mscl.WirelessChannel_channel_10_peakToPeak - channel_11_peakToPeak = _mscl.WirelessChannel_channel_11_peakToPeak - channel_12_peakToPeak = _mscl.WirelessChannel_channel_12_peakToPeak - channel_13_peakToPeak = _mscl.WirelessChannel_channel_13_peakToPeak - channel_14_peakToPeak = _mscl.WirelessChannel_channel_14_peakToPeak - channel_15_peakToPeak = _mscl.WirelessChannel_channel_15_peakToPeak - channel_16_peakToPeak = _mscl.WirelessChannel_channel_16_peakToPeak - channel_1_ips = _mscl.WirelessChannel_channel_1_ips - channel_2_ips = _mscl.WirelessChannel_channel_2_ips - channel_3_ips = _mscl.WirelessChannel_channel_3_ips - channel_4_ips = _mscl.WirelessChannel_channel_4_ips - channel_5_ips = _mscl.WirelessChannel_channel_5_ips - channel_6_ips = _mscl.WirelessChannel_channel_6_ips - channel_7_ips = _mscl.WirelessChannel_channel_7_ips - channel_8_ips = _mscl.WirelessChannel_channel_8_ips - channel_9_ips = _mscl.WirelessChannel_channel_9_ips - channel_10_ips = _mscl.WirelessChannel_channel_10_ips - channel_11_ips = _mscl.WirelessChannel_channel_11_ips - channel_12_ips = _mscl.WirelessChannel_channel_12_ips - channel_13_ips = _mscl.WirelessChannel_channel_13_ips - channel_14_ips = _mscl.WirelessChannel_channel_14_ips - channel_15_ips = _mscl.WirelessChannel_channel_15_ips - channel_16_ips = _mscl.WirelessChannel_channel_16_ips - channel_1_crestFactor = _mscl.WirelessChannel_channel_1_crestFactor - channel_2_crestFactor = _mscl.WirelessChannel_channel_2_crestFactor - channel_3_crestFactor = _mscl.WirelessChannel_channel_3_crestFactor - channel_4_crestFactor = _mscl.WirelessChannel_channel_4_crestFactor - channel_5_crestFactor = _mscl.WirelessChannel_channel_5_crestFactor - channel_6_crestFactor = _mscl.WirelessChannel_channel_6_crestFactor - channel_7_crestFactor = _mscl.WirelessChannel_channel_7_crestFactor - channel_8_crestFactor = _mscl.WirelessChannel_channel_8_crestFactor - channel_9_crestFactor = _mscl.WirelessChannel_channel_9_crestFactor - channel_10_crestFactor = _mscl.WirelessChannel_channel_10_crestFactor - channel_11_crestFactor = _mscl.WirelessChannel_channel_11_crestFactor - channel_12_crestFactor = _mscl.WirelessChannel_channel_12_crestFactor - channel_13_crestFactor = _mscl.WirelessChannel_channel_13_crestFactor - channel_14_crestFactor = _mscl.WirelessChannel_channel_14_crestFactor - channel_15_crestFactor = _mscl.WirelessChannel_channel_15_crestFactor - channel_16_crestFactor = _mscl.WirelessChannel_channel_16_crestFactor - channel_diag_syncAttempts = _mscl.WirelessChannel_channel_diag_syncAttempts - channel_diag_syncFailures = _mscl.WirelessChannel_channel_diag_syncFailures - channel_diag_secsSinceLastSync = _mscl.WirelessChannel_channel_diag_secsSinceLastSync - channel_beaconConflict = _mscl.WirelessChannel_channel_beaconConflict - channel_1_mean = _mscl.WirelessChannel_channel_1_mean - channel_2_mean = _mscl.WirelessChannel_channel_2_mean - channel_3_mean = _mscl.WirelessChannel_channel_3_mean - channel_4_mean = _mscl.WirelessChannel_channel_4_mean - channel_5_mean = _mscl.WirelessChannel_channel_5_mean - channel_6_mean = _mscl.WirelessChannel_channel_6_mean - channel_7_mean = _mscl.WirelessChannel_channel_7_mean - channel_8_mean = _mscl.WirelessChannel_channel_8_mean - channel_9_mean = _mscl.WirelessChannel_channel_9_mean - channel_10_mean = _mscl.WirelessChannel_channel_10_mean - channel_11_mean = _mscl.WirelessChannel_channel_11_mean - channel_12_mean = _mscl.WirelessChannel_channel_12_mean - channel_13_mean = _mscl.WirelessChannel_channel_13_mean - channel_14_mean = _mscl.WirelessChannel_channel_14_mean - channel_15_mean = _mscl.WirelessChannel_channel_15_mean - channel_16_mean = _mscl.WirelessChannel_channel_16_mean - channel_1_mmps = _mscl.WirelessChannel_channel_1_mmps - channel_2_mmps = _mscl.WirelessChannel_channel_2_mmps - channel_3_mmps = _mscl.WirelessChannel_channel_3_mmps - channel_4_mmps = _mscl.WirelessChannel_channel_4_mmps - channel_5_mmps = _mscl.WirelessChannel_channel_5_mmps - channel_6_mmps = _mscl.WirelessChannel_channel_6_mmps - channel_7_mmps = _mscl.WirelessChannel_channel_7_mmps - channel_8_mmps = _mscl.WirelessChannel_channel_8_mmps - channel_9_mmps = _mscl.WirelessChannel_channel_9_mmps - channel_10_mmps = _mscl.WirelessChannel_channel_10_mmps - channel_11_mmps = _mscl.WirelessChannel_channel_11_mmps - channel_12_mmps = _mscl.WirelessChannel_channel_12_mmps - channel_13_mmps = _mscl.WirelessChannel_channel_13_mmps - channel_14_mmps = _mscl.WirelessChannel_channel_14_mmps - channel_15_mmps = _mscl.WirelessChannel_channel_15_mmps - channel_16_mmps = _mscl.WirelessChannel_channel_16_mmps - channel_diag_memoryFull = _mscl.WirelessChannel_channel_diag_memoryFull - - def __init__(self, *args): - _mscl.WirelessChannel_swiginit(self, _mscl.new_WirelessChannel(*args)) - - def channelNumber(self): - return _mscl.WirelessChannel_channelNumber(self) - - def id(self): - return _mscl.WirelessChannel_id(self) - - def type(self): - return _mscl.WirelessChannel_type(self) - - def description(self): - return _mscl.WirelessChannel_description(self) - - def adcResolution(self): - return _mscl.WirelessChannel_adcResolution(self) - - def adcMaxValue(self): - return _mscl.WirelessChannel_adcMaxValue(self) - - def name(self): - return _mscl.WirelessChannel_name(self) - __swig_destroy__ = _mscl.delete_WirelessChannel - -# Register WirelessChannel in _mscl: -_mscl.WirelessChannel_swigregister(WirelessChannel) - -class WirelessDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessDataPoint_swiginit(self, _mscl.new_WirelessDataPoint()) - - def channelId(self): - return _mscl.WirelessDataPoint_channelId(self) - - def channelNumber(self): - return _mscl.WirelessDataPoint_channelNumber(self) - - def channelName(self): - return _mscl.WirelessDataPoint_channelName(self) - __swig_destroy__ = _mscl.delete_WirelessDataPoint - -# Register WirelessDataPoint in _mscl: -_mscl.WirelessDataPoint_swigregister(WirelessDataPoint) - -class DataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - samplingType_NonSync = _mscl.DataSweep_samplingType_NonSync - samplingType_NonSync_Buffered = _mscl.DataSweep_samplingType_NonSync_Buffered - samplingType_SyncSampling = _mscl.DataSweep_samplingType_SyncSampling - samplingType_SyncSampling_Burst = _mscl.DataSweep_samplingType_SyncSampling_Burst - samplingType_AsyncDigital = _mscl.DataSweep_samplingType_AsyncDigital - samplingType_AsyncDigitalAnalog = _mscl.DataSweep_samplingType_AsyncDigitalAnalog - samplingType_SHM = _mscl.DataSweep_samplingType_SHM - samplingType_BeaconEcho = _mscl.DataSweep_samplingType_BeaconEcho - samplingType_RfSweep = _mscl.DataSweep_samplingType_RfSweep - samplingType_Diagnostic = _mscl.DataSweep_samplingType_Diagnostic - - def __init__(self): - _mscl.DataSweep_swiginit(self, _mscl.new_DataSweep()) - - def timestamp(self): - return _mscl.DataSweep_timestamp(self) - - def tick(self): - return _mscl.DataSweep_tick(self) - - def sampleRate(self): - return _mscl.DataSweep_sampleRate(self) - - def nodeAddress(self): - return _mscl.DataSweep_nodeAddress(self) - - def data(self): - return _mscl.DataSweep_data(self) - - def samplingType(self): - return _mscl.DataSweep_samplingType(self) - - def nodeRssi(self): - return _mscl.DataSweep_nodeRssi(self) - - def baseRssi(self): - return _mscl.DataSweep_baseRssi(self) - - def frequency(self): - return _mscl.DataSweep_frequency(self) - - def calApplied(self): - return _mscl.DataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_DataSweep - -# Register DataSweep in _mscl: -_mscl.DataSweep_swigregister(DataSweep) - -class BaseStationAnalogPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationAnalogPair_swiginit(self, _mscl.new_BaseStationAnalogPair()) - - @staticmethod - def Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - - @staticmethod - def NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - - def nodeAddress(self, *args): - return _mscl.BaseStationAnalogPair_nodeAddress(self, *args) - - def nodeChannel(self, *args): - return _mscl.BaseStationAnalogPair_nodeChannel(self, *args) - - def expectFloatData(self, *args): - return _mscl.BaseStationAnalogPair_expectFloatData(self, *args) - - def outputVal_0V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_0V(self, *args) - - def outputVal_3V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_3V(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationAnalogPair - -# Register BaseStationAnalogPair in _mscl: -_mscl.BaseStationAnalogPair_swigregister(BaseStationAnalogPair) -BaseStationAnalogPair.CHANNEL_NOT_FLOAT = _mscl.cvar.BaseStationAnalogPair_CHANNEL_NOT_FLOAT - -def BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - -def BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - -class BaseStationButton(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - btn_nodeSleep = _mscl.BaseStationButton_btn_nodeSleep - btn_nodeStop = _mscl.BaseStationButton_btn_nodeStop - btn_enableBeacon = _mscl.BaseStationButton_btn_enableBeacon - btn_disableBeacon = _mscl.BaseStationButton_btn_disableBeacon - btn_nodeNonSyncSampling = _mscl.BaseStationButton_btn_nodeNonSyncSampling - btn_nodeSyncSampling = _mscl.BaseStationButton_btn_nodeSyncSampling - btn_nodeArmedDatalogging = _mscl.BaseStationButton_btn_nodeArmedDatalogging - btn_cyclePower = _mscl.BaseStationButton_btn_cyclePower - btn_disabled = _mscl.BaseStationButton_btn_disabled - - def __init__(self, *args): - _mscl.BaseStationButton_swiginit(self, _mscl.new_BaseStationButton(*args)) - - def command(self, *args): - return _mscl.BaseStationButton_command(self, *args) - - def nodeAddress(self, *args): - return _mscl.BaseStationButton_nodeAddress(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationButton - -# Register BaseStationButton in _mscl: -_mscl.BaseStationButton_swigregister(BaseStationButton) - -class BaseStationConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationConfig_swiginit(self, _mscl.new_BaseStationConfig()) - - def transmitPower(self, *args): - return _mscl.BaseStationConfig_transmitPower(self, *args) - - def communicationProtocol(self, *args): - return _mscl.BaseStationConfig_communicationProtocol(self, *args) - - def buttonLongPress(self, *args): - return _mscl.BaseStationConfig_buttonLongPress(self, *args) - - def buttonShortPress(self, *args): - return _mscl.BaseStationConfig_buttonShortPress(self, *args) - - def analogPairingEnable(self, *args): - return _mscl.BaseStationConfig_analogPairingEnable(self, *args) - - def analogTimeoutTime(self, *args): - return _mscl.BaseStationConfig_analogTimeoutTime(self, *args) - - def analogTimeoutVoltage(self, *args): - return _mscl.BaseStationConfig_analogTimeoutVoltage(self, *args) - - def analogExceedanceEnable(self, *args): - return _mscl.BaseStationConfig_analogExceedanceEnable(self, *args) - - def analogPairing(self, *args): - return _mscl.BaseStationConfig_analogPairing(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationConfig - -# Register BaseStationConfig in _mscl: -_mscl.BaseStationConfig_swigregister(BaseStationConfig) - -class BeaconStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BeaconStatus_swiginit(self, _mscl.new_BeaconStatus(*args)) - - def enabled(self): - return _mscl.BeaconStatus_enabled(self) - - def timestamp(self): - return _mscl.BeaconStatus_timestamp(self) - __swig_destroy__ = _mscl.delete_BeaconStatus - -# Register BeaconStatus in _mscl: -_mscl.BeaconStatus_swigregister(BeaconStatus) - -class BaseStationInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region, asppVer_lxrs, asppVer_lxrsPlus): - _mscl.BaseStationInfo_swiginit(self, _mscl.new_BaseStationInfo(fw, model, region, asppVer_lxrs, asppVer_lxrsPlus)) - __swig_destroy__ = _mscl.delete_BaseStationInfo - -# Register BaseStationInfo in _mscl: -_mscl.BaseStationInfo_swigregister(BaseStationInfo) - -class BaseStation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_BASE_COMMANDS_DEFAULT_TIMEOUT - ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT - BROADCAST_NODE_ADDRESS = _mscl.BaseStation_BROADCAST_NODE_ADDRESS - BROADCAST_NODE_ADDRESS_ASPP3 = _mscl.BaseStation_BROADCAST_NODE_ADDRESS_ASPP3 - - def __init__(self, *args): - _mscl.BaseStation_swiginit(self, _mscl.new_BaseStation(*args)) - __swig_destroy__ = _mscl.delete_BaseStation - - @staticmethod - def Mock(*args): - return _mscl.BaseStation_Mock(*args) - - @staticmethod - def deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - - def connection(self): - return _mscl.BaseStation_connection(self) - - def features(self): - return _mscl.BaseStation_features(self) - - def lastCommunicationTime(self): - return _mscl.BaseStation_lastCommunicationTime(self) - - def readWriteRetries(self, *args): - return _mscl.BaseStation_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.BaseStation_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.BaseStation_clearEepromCache(self) - - def frequency(self): - return _mscl.BaseStation_frequency(self) - - def communicationProtocol(self): - return _mscl.BaseStation_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.BaseStation_firmwareVersion(self) - - def model(self): - return _mscl.BaseStation_model(self) - - def serial(self): - return _mscl.BaseStation_serial(self) - - def name(self): - return _mscl.BaseStation_name(self) - - def microcontroller(self): - return _mscl.BaseStation_microcontroller(self) - - def regionCode(self): - return _mscl.BaseStation_regionCode(self) - - def getData(self, timeout=0, maxSweeps=0): - return _mscl.BaseStation_getData(self, timeout, maxSweeps) - - def totalData(self): - return _mscl.BaseStation_totalData(self) - - def getNodeDiscoveries(self): - return _mscl.BaseStation_getNodeDiscoveries(self) - - def timeout(self, *args): - return _mscl.BaseStation_timeout(self, *args) - - def ping(self): - return _mscl.BaseStation_ping(self) - - def readEeprom(self, eepromAddress): - return _mscl.BaseStation_readEeprom(self, eepromAddress) - - def writeEeprom(self, eepromAddress, value): - return _mscl.BaseStation_writeEeprom(self, eepromAddress, value) - - def enableBeacon(self, *args): - return _mscl.BaseStation_enableBeacon(self, *args) - - def disableBeacon(self): - return _mscl.BaseStation_disableBeacon(self) - - def beaconStatus(self): - return _mscl.BaseStation_beaconStatus(self) - - def startRfSweepMode(self, *args): - return _mscl.BaseStation_startRfSweepMode(self, *args) - - def cyclePower(self, checkComm=True): - return _mscl.BaseStation_cyclePower(self, checkComm) - - def resetRadio(self): - return _mscl.BaseStation_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.BaseStation_changeFrequency(self, frequency) - - def broadcastSetToIdle(self): - return _mscl.BaseStation_broadcastSetToIdle(self) - - def verifyConfig(self, config, outIssues): - return _mscl.BaseStation_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.BaseStation_applyConfig(self, config) - - def getTransmitPower(self): - return _mscl.BaseStation_getTransmitPower(self) - - def getButtonLongPress(self, buttonNumber): - return _mscl.BaseStation_getButtonLongPress(self, buttonNumber) - - def getButtonShortPress(self, buttonNumber): - return _mscl.BaseStation_getButtonShortPress(self, buttonNumber) - - def getAnalogPairingEnabled(self): - return _mscl.BaseStation_getAnalogPairingEnabled(self) - - def getAnalogTimeoutTime(self): - return _mscl.BaseStation_getAnalogTimeoutTime(self) - - def getAnalogTimeoutVoltage(self): - return _mscl.BaseStation_getAnalogTimeoutVoltage(self) - - def getAnalogExceedanceEnabled(self): - return _mscl.BaseStation_getAnalogExceedanceEnabled(self) - - def getAnalogPair(self, portNumber): - return _mscl.BaseStation_getAnalogPair(self, portNumber) - -# Register BaseStation in _mscl: -_mscl.BaseStation_swigregister(BaseStation) - -def BaseStation_Mock(*args): - return _mscl.BaseStation_Mock(*args) - -def BaseStation_deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - -class LoggedDataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LoggedDataSweep_swiginit(self, _mscl.new_LoggedDataSweep(*args)) - - def timestamp(self): - return _mscl.LoggedDataSweep_timestamp(self) - - def tick(self): - return _mscl.LoggedDataSweep_tick(self) - - def data(self): - return _mscl.LoggedDataSweep_data(self) - - def calApplied(self): - return _mscl.LoggedDataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweep - -# Register LoggedDataSweep in _mscl: -_mscl.LoggedDataSweep_swigregister(LoggedDataSweep) - -class RadioFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.RadioFeatures_swiginit(self, _mscl.new_RadioFeatures(*args)) - - def extendedRange(self): - return _mscl.RadioFeatures_extendedRange(self) - __swig_destroy__ = _mscl.delete_RadioFeatures - -# Register RadioFeatures in _mscl: -_mscl.RadioFeatures_swigregister(RadioFeatures) - -class WirelessNodeConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessNodeConfig_swiginit(self, _mscl.new_WirelessNodeConfig()) - SENSOR_DELAY_ALWAYS_ON = _mscl.WirelessNodeConfig_SENSOR_DELAY_ALWAYS_ON - - def defaultMode(self, *args): - return _mscl.WirelessNodeConfig_defaultMode(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.WirelessNodeConfig_inactivityTimeout(self, *args) - - def checkRadioInterval(self, *args): - return _mscl.WirelessNodeConfig_checkRadioInterval(self, *args) - - def transmitPower(self, *args): - return _mscl.WirelessNodeConfig_transmitPower(self, *args) - - def samplingMode(self, *args): - return _mscl.WirelessNodeConfig_samplingMode(self, *args) - - def sampleRate(self, *args): - return _mscl.WirelessNodeConfig_sampleRate(self, *args) - - def activeChannels(self, *args): - return _mscl.WirelessNodeConfig_activeChannels(self, *args) - - def numSweeps(self, *args): - return _mscl.WirelessNodeConfig_numSweeps(self, *args) - - def unlimitedDuration(self, *args): - return _mscl.WirelessNodeConfig_unlimitedDuration(self, *args) - - def dataFormat(self, *args): - return _mscl.WirelessNodeConfig_dataFormat(self, *args) - - def dataCollectionMethod(self, *args): - return _mscl.WirelessNodeConfig_dataCollectionMethod(self, *args) - - def timeBetweenBursts(self, *args): - return _mscl.WirelessNodeConfig_timeBetweenBursts(self, *args) - - def lostBeaconTimeout(self, *args): - return _mscl.WirelessNodeConfig_lostBeaconTimeout(self, *args) - - def pullUpResistor(self, *args): - return _mscl.WirelessNodeConfig_pullUpResistor(self, *args) - - def inputRange(self, *args): - return _mscl.WirelessNodeConfig_inputRange(self, *args) - - def hardwareOffset(self, *args): - return _mscl.WirelessNodeConfig_hardwareOffset(self, *args) - - def antiAliasingFilter(self, *args): - return _mscl.WirelessNodeConfig_antiAliasingFilter(self, *args) - - def cfcFilterConfig(self, *args): - return _mscl.WirelessNodeConfig_cfcFilterConfig(self, *args) - - def lowPassFilter(self, *args): - return _mscl.WirelessNodeConfig_lowPassFilter(self, *args) - - def highPassFilter(self, *args): - return _mscl.WirelessNodeConfig_highPassFilter(self, *args) - - def gaugeFactor(self, *args): - return _mscl.WirelessNodeConfig_gaugeFactor(self, *args) - - def gaugeResistance(self, *args): - return _mscl.WirelessNodeConfig_gaugeResistance(self, *args) - - def excitationVoltage(self, *args): - return _mscl.WirelessNodeConfig_excitationVoltage(self, *args) - - def numActiveGauges(self, *args): - return _mscl.WirelessNodeConfig_numActiveGauges(self, *args) - - def lowBatteryThreshold(self, *args): - return _mscl.WirelessNodeConfig_lowBatteryThreshold(self, *args) - - def linearEquation(self, *args): - return _mscl.WirelessNodeConfig_linearEquation(self, *args) - - def unit(self, *args): - return _mscl.WirelessNodeConfig_unit(self, *args) - - def equationType(self, *args): - return _mscl.WirelessNodeConfig_equationType(self, *args) - - def filterSettlingTime(self, *args): - return _mscl.WirelessNodeConfig_filterSettlingTime(self, *args) - - def thermocoupleType(self, *args): - return _mscl.WirelessNodeConfig_thermocoupleType(self, *args) - - def tempSensorOptions(self, *args): - return _mscl.WirelessNodeConfig_tempSensorOptions(self, *args) - - def debounceFilter(self, *args): - return _mscl.WirelessNodeConfig_debounceFilter(self, *args) - - def fatigueOptions(self, *args): - return _mscl.WirelessNodeConfig_fatigueOptions(self, *args) - - def histogramOptions(self, *args): - return _mscl.WirelessNodeConfig_histogramOptions(self, *args) - - def activitySense(self, *args): - return _mscl.WirelessNodeConfig_activitySense(self, *args) - - def eventTriggerOptions(self, *args): - return _mscl.WirelessNodeConfig_eventTriggerOptions(self, *args) - - def diagnosticInterval(self, *args): - return _mscl.WirelessNodeConfig_diagnosticInterval(self, *args) - - def storageLimitMode(self, *args): - return _mscl.WirelessNodeConfig_storageLimitMode(self, *args) - - def sensorDelay(self, *args): - return _mscl.WirelessNodeConfig_sensorDelay(self, *args) - - def dataMode(self, *args): - return _mscl.WirelessNodeConfig_dataMode(self, *args) - - def derivedDataRate(self, *args): - return _mscl.WirelessNodeConfig_derivedDataRate(self, *args) - - def derivedChannelMask(self, *args): - return _mscl.WirelessNodeConfig_derivedChannelMask(self, *args) - - def derivedVelocityUnit(self, *args): - return _mscl.WirelessNodeConfig_derivedVelocityUnit(self, *args) - - def communicationProtocol(self, *args): - return _mscl.WirelessNodeConfig_communicationProtocol(self, *args) - - def sensorOutputMode(self, *args): - return _mscl.WirelessNodeConfig_sensorOutputMode(self, *args) - - @staticmethod - def flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - - @staticmethod - def flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - __swig_destroy__ = _mscl.delete_WirelessNodeConfig - -# Register WirelessNodeConfig in _mscl: -_mscl.WirelessNodeConfig_swigregister(WirelessNodeConfig) - -def WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - -def WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - -class AutoBalanceResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoBalanceResult_swiginit(self, _mscl.new_AutoBalanceResult()) - - def errorCode(self): - return _mscl.AutoBalanceResult_errorCode(self) - - def percentAchieved(self): - return _mscl.AutoBalanceResult_percentAchieved(self) - - def hardwareOffset(self): - return _mscl.AutoBalanceResult_hardwareOffset(self) - __swig_destroy__ = _mscl.delete_AutoBalanceResult - -# Register AutoBalanceResult in _mscl: -_mscl.AutoBalanceResult_swigregister(AutoBalanceResult) - -class ShuntCalCmdInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - useInternalShunt = property(_mscl.ShuntCalCmdInfo_useInternalShunt_get, _mscl.ShuntCalCmdInfo_useInternalShunt_set) - numActiveGauges = property(_mscl.ShuntCalCmdInfo_numActiveGauges_get, _mscl.ShuntCalCmdInfo_numActiveGauges_set) - gaugeResistance = property(_mscl.ShuntCalCmdInfo_gaugeResistance_get, _mscl.ShuntCalCmdInfo_gaugeResistance_set) - shuntResistance = property(_mscl.ShuntCalCmdInfo_shuntResistance_get, _mscl.ShuntCalCmdInfo_shuntResistance_set) - gaugeFactor = property(_mscl.ShuntCalCmdInfo_gaugeFactor_get, _mscl.ShuntCalCmdInfo_gaugeFactor_set) - inputRange = property(_mscl.ShuntCalCmdInfo_inputRange_get, _mscl.ShuntCalCmdInfo_inputRange_set) - hardwareOffset = property(_mscl.ShuntCalCmdInfo_hardwareOffset_get, _mscl.ShuntCalCmdInfo_hardwareOffset_set) - excitationVoltage = property(_mscl.ShuntCalCmdInfo_excitationVoltage_get, _mscl.ShuntCalCmdInfo_excitationVoltage_set) - - def __init__(self): - _mscl.ShuntCalCmdInfo_swiginit(self, _mscl.new_ShuntCalCmdInfo()) - __swig_destroy__ = _mscl.delete_ShuntCalCmdInfo - -# Register ShuntCalCmdInfo in _mscl: -_mscl.ShuntCalCmdInfo_swigregister(ShuntCalCmdInfo) - -class AutoCalResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_AutoCalResult - - def completionFlag(self): - return _mscl.AutoCalResult_completionFlag(self) - -# Register AutoCalResult in _mscl: -_mscl.AutoCalResult_swigregister(AutoCalResult) - -class AutoCalResult_shmLink(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink_swiginit(self, _mscl.new_AutoCalResult_shmLink()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh3(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink_offsetCh1(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink_offsetCh2(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink_temperature(self) - -# Register AutoCalResult_shmLink in _mscl: -_mscl.AutoCalResult_shmLink_swigregister(AutoCalResult_shmLink) - -class AutoCalResult_shmLink201(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink201_swiginit(self, _mscl.new_AutoCalResult_shmLink201()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink201 - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh3(self) - - def slopeCh1(self): - return _mscl.AutoCalResult_shmLink201_slopeCh1(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink201_offsetCh1(self) - - def slopeCh2(self): - return _mscl.AutoCalResult_shmLink201_slopeCh2(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink201_offsetCh2(self) - - def slopeCh3(self): - return _mscl.AutoCalResult_shmLink201_slopeCh3(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink201_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink201_temperature(self) - -# Register AutoCalResult_shmLink201 in _mscl: -_mscl.AutoCalResult_shmLink201_swigregister(AutoCalResult_shmLink201) - -class AutoShuntCalResult(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoShuntCalResult_swiginit(self, _mscl.new_AutoShuntCalResult()) - __swig_destroy__ = _mscl.delete_AutoShuntCalResult - - def errorFlag(self): - return _mscl.AutoShuntCalResult_errorFlag(self) - - def slope(self): - return _mscl.AutoShuntCalResult_slope(self) - - def offset(self): - return _mscl.AutoShuntCalResult_offset(self) - - def baseMedian(self): - return _mscl.AutoShuntCalResult_baseMedian(self) - - def baseMin(self): - return _mscl.AutoShuntCalResult_baseMin(self) - - def baseMax(self): - return _mscl.AutoShuntCalResult_baseMax(self) - - def shuntMedian(self): - return _mscl.AutoShuntCalResult_shuntMedian(self) - - def shuntMin(self): - return _mscl.AutoShuntCalResult_shuntMin(self) - - def shuntMax(self): - return _mscl.AutoShuntCalResult_shuntMax(self) - -# Register AutoShuntCalResult in _mscl: -_mscl.AutoShuntCalResult_swigregister(AutoShuntCalResult) - -class PingResponse(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PingResponse_swiginit(self, _mscl.new_PingResponse()) - - def success(self): - return _mscl.PingResponse_success(self) - - def nodeRssi(self): - return _mscl.PingResponse_nodeRssi(self) - - def baseRssi(self): - return _mscl.PingResponse_baseRssi(self) - __swig_destroy__ = _mscl.delete_PingResponse - -# Register PingResponse in _mscl: -_mscl.PingResponse_swigregister(PingResponse) - -class SetToIdleStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - setToIdleResult_success = _mscl.SetToIdleStatus_setToIdleResult_success - setToIdleResult_canceled = _mscl.SetToIdleStatus_setToIdleResult_canceled - setToIdleResult_failed = _mscl.SetToIdleStatus_setToIdleResult_failed - setToIdleResult_notCompleted = _mscl.SetToIdleStatus_setToIdleResult_notCompleted - - def result(self): - return _mscl.SetToIdleStatus_result(self) - - def complete(self, timeout=10): - return _mscl.SetToIdleStatus_complete(self, timeout) - - def cancel(self): - return _mscl.SetToIdleStatus_cancel(self) - __swig_destroy__ = _mscl.delete_SetToIdleStatus - -# Register SetToIdleStatus in _mscl: -_mscl.SetToIdleStatus_swigregister(SetToIdleStatus) - -class NodeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region): - _mscl.NodeInfo_swiginit(self, _mscl.new_NodeInfo(fw, model, region)) - __swig_destroy__ = _mscl.delete_NodeInfo - -# Register NodeInfo in _mscl: -_mscl.NodeInfo_swigregister(NodeInfo) - -class WirelessNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, nodeAddress, basestation): - _mscl.WirelessNode_swiginit(self, _mscl.new_WirelessNode(nodeAddress, basestation)) - __swig_destroy__ = _mscl.delete_WirelessNode - - @staticmethod - def Mock(*args): - return _mscl.WirelessNode_Mock(*args) - - @staticmethod - def deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - - def features(self): - return _mscl.WirelessNode_features(self) - - def lastCommunicationTime(self): - return _mscl.WirelessNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.WirelessNode_lastDeviceState(self) - - def setBaseStation(self, basestation): - return _mscl.WirelessNode_setBaseStation(self, basestation) - - def getBaseStation(self): - return _mscl.WirelessNode_getBaseStation(self) - - def hasBaseStation(self, basestation): - return _mscl.WirelessNode_hasBaseStation(self, basestation) - - def useGroupRead(self, useGroup): - return _mscl.WirelessNode_useGroupRead(self, useGroup) - - def readWriteRetries(self, *args): - return _mscl.WirelessNode_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.WirelessNode_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.WirelessNode_clearEepromCache(self) - - def updateEepromCacheFromNodeDiscovery(self, nodeDisovery): - return _mscl.WirelessNode_updateEepromCacheFromNodeDiscovery(self, nodeDisovery) - - def getEepromCache(self): - return _mscl.WirelessNode_getEepromCache(self) - - def nodeAddress(self): - return _mscl.WirelessNode_nodeAddress(self) - - def frequency(self): - return _mscl.WirelessNode_frequency(self) - - def communicationProtocol(self): - return _mscl.WirelessNode_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.WirelessNode_firmwareVersion(self) - - def model(self): - return _mscl.WirelessNode_model(self) - - def serial(self): - return _mscl.WirelessNode_serial(self) - - def name(self): - return _mscl.WirelessNode_name(self) - - def microcontroller(self): - return _mscl.WirelessNode_microcontroller(self) - - def radioFeatures(self): - return _mscl.WirelessNode_radioFeatures(self) - - def dataStorageSize(self): - return _mscl.WirelessNode_dataStorageSize(self) - - def regionCode(self): - return _mscl.WirelessNode_regionCode(self) - - def ping(self): - return _mscl.WirelessNode_ping(self) - - def sleep(self): - return _mscl.WirelessNode_sleep(self) - - def cyclePower(self): - return _mscl.WirelessNode_cyclePower(self) - - def resetRadio(self): - return _mscl.WirelessNode_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.WirelessNode_changeFrequency(self, frequency) - - def setToIdle(self): - return _mscl.WirelessNode_setToIdle(self) - - def erase(self): - return _mscl.WirelessNode_erase(self) - - def startNonSyncSampling(self): - return _mscl.WirelessNode_startNonSyncSampling(self) - - def resendStartSyncSampling(self): - return _mscl.WirelessNode_resendStartSyncSampling(self) - - def clearHistogram(self): - return _mscl.WirelessNode_clearHistogram(self) - - def autoBalance(self, mask, targetPercent): - return _mscl.WirelessNode_autoBalance(self, mask, targetPercent) - - def autoCal_shmLink(self): - return _mscl.WirelessNode_autoCal_shmLink(self) - - def autoCal_shmLink201(self): - return _mscl.WirelessNode_autoCal_shmLink201(self) - - def autoShuntCal(self, mask, commandInfo): - return _mscl.WirelessNode_autoShuntCal(self, mask, commandInfo) - - def poll(self, mask): - return _mscl.WirelessNode_poll(self, mask) - - def readEeprom(self, location): - return _mscl.WirelessNode_readEeprom(self, location) - - def writeEeprom(self, location, value): - return _mscl.WirelessNode_writeEeprom(self, location, value) - - def getDiagnosticInfo(self): - return _mscl.WirelessNode_getDiagnosticInfo(self) - - def testCommunicationProtocol(self, protocol): - return _mscl.WirelessNode_testCommunicationProtocol(self, protocol) - - def verifyConfig(self, config, outIssues): - return _mscl.WirelessNode_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.WirelessNode_applyConfig(self, config) - - def getNumDatalogSessions(self): - return _mscl.WirelessNode_getNumDatalogSessions(self) - - def percentFull(self): - return _mscl.WirelessNode_percentFull(self) - - def getDefaultMode(self): - return _mscl.WirelessNode_getDefaultMode(self) - - def getInactivityTimeout(self): - return _mscl.WirelessNode_getInactivityTimeout(self) - - def getCheckRadioInterval(self): - return _mscl.WirelessNode_getCheckRadioInterval(self) - - def getTransmitPower(self): - return _mscl.WirelessNode_getTransmitPower(self) - - def getSamplingMode(self): - return _mscl.WirelessNode_getSamplingMode(self) - - def getActiveChannels(self): - return _mscl.WirelessNode_getActiveChannels(self) - - def getSampleRate(self): - return _mscl.WirelessNode_getSampleRate(self) - - def getNumSweeps(self): - return _mscl.WirelessNode_getNumSweeps(self) - - def getUnlimitedDuration(self): - return _mscl.WirelessNode_getUnlimitedDuration(self) - - def getDataFormat(self): - return _mscl.WirelessNode_getDataFormat(self) - - def getDataCollectionMethod(self): - return _mscl.WirelessNode_getDataCollectionMethod(self) - - def getTimeBetweenBursts(self): - return _mscl.WirelessNode_getTimeBetweenBursts(self) - - def getLostBeaconTimeout(self): - return _mscl.WirelessNode_getLostBeaconTimeout(self) - - def getInputRange(self, mask): - return _mscl.WirelessNode_getInputRange(self, mask) - - def getHardwareOffset(self, mask): - return _mscl.WirelessNode_getHardwareOffset(self, mask) - - def getAntiAliasingFilter(self, mask): - return _mscl.WirelessNode_getAntiAliasingFilter(self, mask) - - def getCfcFilterConfiguration(self): - return _mscl.WirelessNode_getCfcFilterConfiguration(self) - - def getLowPassFilter(self, mask): - return _mscl.WirelessNode_getLowPassFilter(self, mask) - - def getHighPassFilter(self, mask): - return _mscl.WirelessNode_getHighPassFilter(self, mask) - - def getDebounceFilter(self, mask): - return _mscl.WirelessNode_getDebounceFilter(self, mask) - - def getPullUpResistor(self, mask): - return _mscl.WirelessNode_getPullUpResistor(self, mask) - - def getSensorOutputMode(self): - return _mscl.WirelessNode_getSensorOutputMode(self) - - def getGaugeFactor(self, mask): - return _mscl.WirelessNode_getGaugeFactor(self, mask) - - def getExcitationVoltage(self): - return _mscl.WirelessNode_getExcitationVoltage(self) - - def getAdcVoltageRef(self): - return _mscl.WirelessNode_getAdcVoltageRef(self) - - def getGainAmplifierVoltageRef(self): - return _mscl.WirelessNode_getGainAmplifierVoltageRef(self) - - def getGaugeResistance(self): - return _mscl.WirelessNode_getGaugeResistance(self) - - def getNumActiveGauges(self): - return _mscl.WirelessNode_getNumActiveGauges(self) - - def getLowBatteryThreshold(self): - return _mscl.WirelessNode_getLowBatteryThreshold(self) - - def getLinearEquation(self, mask): - return _mscl.WirelessNode_getLinearEquation(self, mask) - - def getUnit(self, mask): - return _mscl.WirelessNode_getUnit(self, mask) - - def getEquationType(self, mask): - return _mscl.WirelessNode_getEquationType(self, mask) - - def getFactoryCalibrationLinearEq(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationLinearEq(self, mask) - - def getFactoryCalibrationUnit(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationUnit(self, mask) - - def getFactoryCalibrationEqType(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationEqType(self, mask) - - def getFilterSettlingTime(self, mask): - return _mscl.WirelessNode_getFilterSettlingTime(self, mask) - - def getThermocoupleType(self, mask): - return _mscl.WirelessNode_getThermocoupleType(self, mask) - - def getTempSensorOptions(self, mask): - return _mscl.WirelessNode_getTempSensorOptions(self, mask) - - def getFatigueOptions(self): - return _mscl.WirelessNode_getFatigueOptions(self) - - def getHistogramOptions(self): - return _mscl.WirelessNode_getHistogramOptions(self) - - def getActivitySense(self): - return _mscl.WirelessNode_getActivitySense(self) - - def getEventTriggerOptions(self): - return _mscl.WirelessNode_getEventTriggerOptions(self) - - def getDiagnosticInterval(self): - return _mscl.WirelessNode_getDiagnosticInterval(self) - - def getStorageLimitMode(self): - return _mscl.WirelessNode_getStorageLimitMode(self) - - def getSensorDelay(self): - return _mscl.WirelessNode_getSensorDelay(self) - - def getDataMode(self): - return _mscl.WirelessNode_getDataMode(self) - - def getDerivedDataRate(self): - return _mscl.WirelessNode_getDerivedDataRate(self) - - def getDerivedChannelMask(self, category): - return _mscl.WirelessNode_getDerivedChannelMask(self, category) - - def getDerivedVelocityUnit(self): - return _mscl.WirelessNode_getDerivedVelocityUnit(self) - -# Register WirelessNode in _mscl: -_mscl.WirelessNode_swigregister(WirelessNode) - -def WirelessNode_Mock(*args): - return _mscl.WirelessNode_Mock(*args) - -def WirelessNode_deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - -class DatalogDownloader(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.DatalogDownloader_swiginit(self, _mscl.new_DatalogDownloader(*args)) - __swig_destroy__ = _mscl.delete_DatalogDownloader - - def complete(self): - return _mscl.DatalogDownloader_complete(self) - - def percentComplete(self): - return _mscl.DatalogDownloader_percentComplete(self) - - def getNextData(self): - return _mscl.DatalogDownloader_getNextData(self) - - def metaDataUpdated(self): - return _mscl.DatalogDownloader_metaDataUpdated(self) - - def calCoefficientsUpdated(self): - return _mscl.DatalogDownloader_calCoefficientsUpdated(self) - - def startOfSession(self): - return _mscl.DatalogDownloader_startOfSession(self) - - def sessionIndex(self): - return _mscl.DatalogDownloader_sessionIndex(self) - - def sampleRate(self): - return _mscl.DatalogDownloader_sampleRate(self) - - def userString(self): - return _mscl.DatalogDownloader_userString(self) - - def calCoefficients(self): - return _mscl.DatalogDownloader_calCoefficients(self) - -# Register DatalogDownloader in _mscl: -_mscl.DatalogDownloader_swigregister(DatalogDownloader) - -class ArmedDataloggingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.ArmedDataloggingNetwork_swiginit(self, _mscl.new_ArmedDataloggingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.ArmedDataloggingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.ArmedDataloggingNetwork_removeNode(self, nodeAddress) - - def startSampling(self): - return _mscl.ArmedDataloggingNetwork_startSampling(self) - __swig_destroy__ = _mscl.delete_ArmedDataloggingNetwork - -# Register ArmedDataloggingNetwork in _mscl: -_mscl.ArmedDataloggingNetwork_swigregister(ArmedDataloggingNetwork) - -class SyncNetworkInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - status_OK = _mscl.SyncNetworkInfo_status_OK - status_PoorCommunication = _mscl.SyncNetworkInfo_status_PoorCommunication - status_DoesNotFit = _mscl.SyncNetworkInfo_status_DoesNotFit - status_Contention = _mscl.SyncNetworkInfo_status_Contention - - def __init__(self, node): - _mscl.SyncNetworkInfo_swiginit(self, _mscl.new_SyncNetworkInfo(node)) - - def status(self): - return _mscl.SyncNetworkInfo_status(self) - - def startedSampling(self): - return _mscl.SyncNetworkInfo_startedSampling(self) - - def configurationApplied(self): - return _mscl.SyncNetworkInfo_configurationApplied(self) - - def percentBandwidth(self): - return _mscl.SyncNetworkInfo_percentBandwidth(self) - - def tdmaAddress(self): - return _mscl.SyncNetworkInfo_tdmaAddress(self) - - def maxTdmaAddress(self): - return _mscl.SyncNetworkInfo_maxTdmaAddress(self) - - def transmissionPerGroup(self): - return _mscl.SyncNetworkInfo_transmissionPerGroup(self) - - def groupSize(self): - return _mscl.SyncNetworkInfo_groupSize(self) - __swig_destroy__ = _mscl.delete_SyncNetworkInfo - -# Register SyncNetworkInfo in _mscl: -_mscl.SyncNetworkInfo_swigregister(SyncNetworkInfo) - -class SyncSamplingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.SyncSamplingNetwork_swiginit(self, _mscl.new_SyncSamplingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.SyncSamplingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.SyncSamplingNetwork_removeNode(self, nodeAddress) - - def percentBandwidth(self): - return _mscl.SyncSamplingNetwork_percentBandwidth(self) - - def ok(self): - return _mscl.SyncSamplingNetwork_ok(self) - - def refresh(self): - return _mscl.SyncSamplingNetwork_refresh(self) - - def lossless(self, *args): - return _mscl.SyncSamplingNetwork_lossless(self, *args) - - def communicationProtocol(self, *args): - return _mscl.SyncSamplingNetwork_communicationProtocol(self, *args) - - def applyConfiguration(self): - return _mscl.SyncSamplingNetwork_applyConfiguration(self) - - def startSampling(self, *args): - return _mscl.SyncSamplingNetwork_startSampling(self, *args) - - def startSampling_noBeacon(self): - return _mscl.SyncSamplingNetwork_startSampling_noBeacon(self) - - def getNodeNetworkInfo(self, nodeAddress): - return _mscl.SyncSamplingNetwork_getNodeNetworkInfo(self, nodeAddress) - __swig_destroy__ = _mscl.delete_SyncSamplingNetwork - -# Register SyncSamplingNetwork in _mscl: -_mscl.SyncSamplingNetwork_swigregister(SyncSamplingNetwork) - -class NodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_NodeFeatures - - def normalizeNumSweeps(self, sweeps): - return _mscl.NodeFeatures_normalizeNumSweeps(self, sweeps) - - def normalizeTimeBetweenBursts(self, time): - return _mscl.NodeFeatures_normalizeTimeBetweenBursts(self, time) - - def channels(self): - return _mscl.NodeFeatures_channels(self) - - def channelGroups(self): - return _mscl.NodeFeatures_channelGroups(self) - - def channelType(self, channelNumber): - return _mscl.NodeFeatures_channelType(self, channelNumber) - - def supportsChannelSetting(self, setting, mask): - return _mscl.NodeFeatures_supportsChannelSetting(self, setting, mask) - - def supportsInputRangePerExcitationVoltage(self): - return _mscl.NodeFeatures_supportsInputRangePerExcitationVoltage(self) - - def supportsHardwareOffset(self): - return _mscl.NodeFeatures_supportsHardwareOffset(self) - - def supportsAntiAliasingFilter(self): - return _mscl.NodeFeatures_supportsAntiAliasingFilter(self) - - def supportsLowPassFilter(self): - return _mscl.NodeFeatures_supportsLowPassFilter(self) - - def supportsHighPassFilter(self): - return _mscl.NodeFeatures_supportsHighPassFilter(self) - - def supportsGaugeFactor(self): - return _mscl.NodeFeatures_supportsGaugeFactor(self) - - def supportsGaugeResistance(self): - return _mscl.NodeFeatures_supportsGaugeResistance(self) - - def supportsNumActiveGauges(self): - return _mscl.NodeFeatures_supportsNumActiveGauges(self) - - def supportsLostBeaconTimeout(self): - return _mscl.NodeFeatures_supportsLostBeaconTimeout(self) - - def supportsPullUpResistor(self): - return _mscl.NodeFeatures_supportsPullUpResistor(self) - - def supportsFilterSettlingTime(self): - return _mscl.NodeFeatures_supportsFilterSettlingTime(self) - - def supportsThermocoupleType(self): - return _mscl.NodeFeatures_supportsThermocoupleType(self) - - def supportsTempSensorOptions(self): - return _mscl.NodeFeatures_supportsTempSensorOptions(self) - - def supportsDebounceFilter(self): - return _mscl.NodeFeatures_supportsDebounceFilter(self) - - def supportsFatigueConfig(self): - return _mscl.NodeFeatures_supportsFatigueConfig(self) - - def supportsYoungsModConfig(self): - return _mscl.NodeFeatures_supportsYoungsModConfig(self) - - def supportsPoissonsRatioConfig(self): - return _mscl.NodeFeatures_supportsPoissonsRatioConfig(self) - - def supportsFatigueDebugModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueDebugModeConfig(self) - - def supportsFatigueModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueModeConfig(self) - - def supportsHistogramConfig(self): - return _mscl.NodeFeatures_supportsHistogramConfig(self) - - def supportsHistogramRateConfig(self): - return _mscl.NodeFeatures_supportsHistogramRateConfig(self) - - def supportsHistogramEnableConfig(self): - return _mscl.NodeFeatures_supportsHistogramEnableConfig(self) - - def supportsActivitySense(self): - return _mscl.NodeFeatures_supportsActivitySense(self) - - def supportsAutoBalance(self): - return _mscl.NodeFeatures_supportsAutoBalance(self) - - def supportsLegacyShuntCal(self): - return _mscl.NodeFeatures_supportsLegacyShuntCal(self) - - def supportsAutoCal_shm(self): - return _mscl.NodeFeatures_supportsAutoCal_shm(self) - - def supportsAutoCal_shm201(self): - return _mscl.NodeFeatures_supportsAutoCal_shm201(self) - - def supportsAutoShuntCal(self): - return _mscl.NodeFeatures_supportsAutoShuntCal(self) - - def supportsGetFactoryCal(self): - return _mscl.NodeFeatures_supportsGetFactoryCal(self) - - def supportsLimitedDuration(self): - return _mscl.NodeFeatures_supportsLimitedDuration(self) - - def supportsEventTrigger(self): - return _mscl.NodeFeatures_supportsEventTrigger(self) - - def supportsDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsDiagnosticInfo(self) - - def supportsLoggedData(self): - return _mscl.NodeFeatures_supportsLoggedData(self) - - def supportsPoll(self): - return _mscl.NodeFeatures_supportsPoll(self) - - def supportsSensorDelayConfig(self): - return _mscl.NodeFeatures_supportsSensorDelayConfig(self) - - def supportsSensorDelayAlwaysOn(self): - return _mscl.NodeFeatures_supportsSensorDelayAlwaysOn(self) - - def supportsSensorOutputMode(self): - return _mscl.NodeFeatures_supportsSensorOutputMode(self) - - def supportsCfcFilterConfiguration(self): - return _mscl.NodeFeatures_supportsCfcFilterConfiguration(self) - - def supportsChannel(self, channelNumber): - return _mscl.NodeFeatures_supportsChannel(self, channelNumber) - - def supportsSamplingMode(self, samplingMode): - return _mscl.NodeFeatures_supportsSamplingMode(self, samplingMode) - - def supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.NodeFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsDataFormat(self, dataFormat): - return _mscl.NodeFeatures_supportsDataFormat(self, dataFormat) - - def supportsDefaultMode(self, mode): - return _mscl.NodeFeatures_supportsDefaultMode(self, mode) - - def supportsDataCollectionMethod(self, collectionMethod): - return _mscl.NodeFeatures_supportsDataCollectionMethod(self, collectionMethod) - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.NodeFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsDataMode(self, dataMode): - return _mscl.NodeFeatures_supportsDataMode(self, dataMode) - - def supportsTransducerType(self, transducerType): - return _mscl.NodeFeatures_supportsTransducerType(self, transducerType) - - def supportsFatigueMode(self, mode): - return _mscl.NodeFeatures_supportsFatigueMode(self, mode) - - def supportsInputRange(self, *args): - return _mscl.NodeFeatures_supportsInputRange(self, *args) - - def supportsCentisecondEventDuration(self): - return _mscl.NodeFeatures_supportsCentisecondEventDuration(self) - - def supportsGetDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsGetDiagnosticInfo(self) - - def supportsNonSyncLogWithTimestamps(self): - return _mscl.NodeFeatures_supportsNonSyncLogWithTimestamps(self) - - def supportsDerivedCategory(self, category): - return _mscl.NodeFeatures_supportsDerivedCategory(self, category) - - def supportsRawDataMode(self): - return _mscl.NodeFeatures_supportsRawDataMode(self) - - def supportsDerivedDataMode(self): - return _mscl.NodeFeatures_supportsDerivedDataMode(self) - - def supportsDerivedVelocityUnitConfig(self): - return _mscl.NodeFeatures_supportsDerivedVelocityUnitConfig(self) - - def supportsExcitationVoltageConfig(self): - return _mscl.NodeFeatures_supportsExcitationVoltageConfig(self) - - def supportsLowBatteryThresholdConfig(self): - return _mscl.NodeFeatures_supportsLowBatteryThresholdConfig(self) - - def maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode) - - def maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode) - - def maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels): - return _mscl.NodeFeatures_maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels) - - def maxFilterSettlingTime(self, rate): - return _mscl.NodeFeatures_maxFilterSettlingTime(self, rate) - - def minInactivityTimeout(self): - return _mscl.NodeFeatures_minInactivityTimeout(self) - - def minLostBeaconTimeout(self): - return _mscl.NodeFeatures_minLostBeaconTimeout(self) - - def maxLostBeaconTimeout(self): - return _mscl.NodeFeatures_maxLostBeaconTimeout(self) - - def minCheckRadioInterval(self): - return _mscl.NodeFeatures_minCheckRadioInterval(self) - - def maxCheckRadioInterval(self): - return _mscl.NodeFeatures_maxCheckRadioInterval(self) - - def minSweeps(self): - return _mscl.NodeFeatures_minSweeps(self) - - def maxSweeps(self, samplingMode, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweeps(self, samplingMode, dataMode, dataFormat, channels) - - def maxSweepsPerBurst(self, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweepsPerBurst(self, dataMode, dataFormat, channels) - - def minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol): - return _mscl.NodeFeatures_minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol) - - def minSensorDelay(self): - return _mscl.NodeFeatures_minSensorDelay(self) - - def maxSensorDelay(self): - return _mscl.NodeFeatures_maxSensorDelay(self) - - def defaultSensorDelay(self): - return _mscl.NodeFeatures_defaultSensorDelay(self) - - def maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate): - return _mscl.NodeFeatures_maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate) - - def normalizeEventDuration(self, duration): - return _mscl.NodeFeatures_normalizeEventDuration(self, duration) - - def normalizeSensorDelay(self, delay): - return _mscl.NodeFeatures_normalizeSensorDelay(self, delay) - - def numDamageAngles(self): - return _mscl.NodeFeatures_numDamageAngles(self) - - def numSnCurveSegments(self): - return _mscl.NodeFeatures_numSnCurveSegments(self) - - def numEventTriggers(self): - return _mscl.NodeFeatures_numEventTriggers(self) - - def defaultModes(self): - return _mscl.NodeFeatures_defaultModes(self) - - def dataCollectionMethods(self): - return _mscl.NodeFeatures_dataCollectionMethods(self) - - def dataFormats(self): - return _mscl.NodeFeatures_dataFormats(self) - - def samplingModes(self): - return _mscl.NodeFeatures_samplingModes(self) - - def sampleRates(self, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_sampleRates(self, samplingMode, dataCollectionMethod, dataMode) - - def derivedDataRates(self): - return _mscl.NodeFeatures_derivedDataRates(self) - - def transmitPowers(self, *args): - return _mscl.NodeFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.NodeFeatures_commProtocols(self) - - def sensorOutputModes(self): - return _mscl.NodeFeatures_sensorOutputModes(self) - - def cfcFilters(self): - return _mscl.NodeFeatures_cfcFilters(self) - - def histogramTransmitRates(self): - return _mscl.NodeFeatures_histogramTransmitRates(self) - - def fatigueModes(self): - return _mscl.NodeFeatures_fatigueModes(self) - - def antiAliasingFilters(self): - return _mscl.NodeFeatures_antiAliasingFilters(self) - - def lowPassFilters(self): - return _mscl.NodeFeatures_lowPassFilters(self) - - def highPassFilters(self): - return _mscl.NodeFeatures_highPassFilters(self) - - def storageLimitModes(self): - return _mscl.NodeFeatures_storageLimitModes(self) - - def inputRanges(self, *args): - return _mscl.NodeFeatures_inputRanges(self, *args) - - def dataModes(self): - return _mscl.NodeFeatures_dataModes(self) - - def transducerTypes(self): - return _mscl.NodeFeatures_transducerTypes(self) - - def channelsPerDerivedCategory(self): - return _mscl.NodeFeatures_channelsPerDerivedCategory(self) - - def excitationVoltages(self): - return _mscl.NodeFeatures_excitationVoltages(self) - - def adcVoltageInputType(self): - return _mscl.NodeFeatures_adcVoltageInputType(self) - - def maxTransmitPower(self, *args): - return _mscl.NodeFeatures_maxTransmitPower(self, *args) - - def minTransmitPower(self, *args): - return _mscl.NodeFeatures_minTransmitPower(self, *args) - -# Register NodeFeatures in _mscl: -_mscl.NodeFeatures_swigregister(NodeFeatures) - -class BaseStationFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_BaseStationFeatures - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.BaseStationFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.BaseStationFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsButtons(self): - return _mscl.BaseStationFeatures_supportsButtons(self) - - def supportsAnalogPairing(self): - return _mscl.BaseStationFeatures_supportsAnalogPairing(self) - - def supportsBeaconStatus(self): - return _mscl.BaseStationFeatures_supportsBeaconStatus(self) - - def supportsRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsRfSweepMode(self) - - def supportsCustomRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsCustomRfSweepMode(self) - - def buttonCount(self): - return _mscl.BaseStationFeatures_buttonCount(self) - - def analogPortCount(self): - return _mscl.BaseStationFeatures_analogPortCount(self) - - def transmitPowers(self, *args): - return _mscl.BaseStationFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.BaseStationFeatures_commProtocols(self) - - def maxTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_maxTransmitPower(self, region, commProtocol) - - def minTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_minTransmitPower(self, region, commProtocol) - -# Register BaseStationFeatures in _mscl: -_mscl.BaseStationFeatures_swigregister(BaseStationFeatures) - -class EulerAngles(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EulerAngles_swiginit(self, _mscl.new_EulerAngles(*args)) - - def asMipFieldValues(self): - return _mscl.EulerAngles_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.EulerAngles_appendMipFieldValues(self, appendTo) - - def roll(self): - return _mscl.EulerAngles_roll(self) - - def pitch(self): - return _mscl.EulerAngles_pitch(self) - - def yaw(self): - return _mscl.EulerAngles_yaw(self) - - def heading(self): - return _mscl.EulerAngles_heading(self) - __swig_destroy__ = _mscl.delete_EulerAngles - -# Register EulerAngles in _mscl: -_mscl.EulerAngles_swigregister(EulerAngles) - -class Quaternion(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Quaternion_swiginit(self, _mscl.new_Quaternion(*args)) - - def asMipFieldValues(self): - return _mscl.Quaternion_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Quaternion_appendMipFieldValues(self, appendTo) - - def normalize(self): - return _mscl.Quaternion_normalize(self) - - def q0(self): - return _mscl.Quaternion_q0(self) - - def q1(self): - return _mscl.Quaternion_q1(self) - - def q2(self): - return _mscl.Quaternion_q2(self) - - def q3(self): - return _mscl.Quaternion_q3(self) - __swig_destroy__ = _mscl.delete_Quaternion - -# Register Quaternion in _mscl: -_mscl.Quaternion_swigregister(Quaternion) - -class Rotation(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EULER_ANGLES = _mscl.Rotation_EULER_ANGLES - QUATERNION = _mscl.Rotation_QUATERNION - - def __init__(self, *args): - _mscl.Rotation_swiginit(self, _mscl.new_Rotation(*args)) - - @staticmethod - def FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - - @staticmethod - def FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - - def asEulerAngles(self): - return _mscl.Rotation_asEulerAngles(self) - - def asQuaternion(self): - return _mscl.Rotation_asQuaternion(self) - - def asMipFieldValues(self, includeFormat=True): - return _mscl.Rotation_asMipFieldValues(self, includeFormat) - - def appendMipFieldValues(self, appendTo, includeFormat=True): - return _mscl.Rotation_appendMipFieldValues(self, appendTo, includeFormat) - - def format(self): - return _mscl.Rotation_format(self) - __swig_destroy__ = _mscl.delete_Rotation - -# Register Rotation in _mscl: -_mscl.Rotation_swigregister(Rotation) - -def Rotation_FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - -def Rotation_FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - -class Vec3f(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Vec3f_swiginit(self, _mscl.new_Vec3f(*args)) - __swig_destroy__ = _mscl.delete_Vec3f - - def fromMipFieldValues(self, data, offset=0): - return _mscl.Vec3f_fromMipFieldValues(self, data, offset) - - def asMipFieldValues(self): - return _mscl.Vec3f_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Vec3f_appendMipFieldValues(self, appendTo) - - def x(self, *args): - return _mscl.Vec3f_x(self, *args) - - def y(self, *args): - return _mscl.Vec3f_y(self, *args) - - def z(self, *args): - return _mscl.Vec3f_z(self, *args) - -# Register Vec3f in _mscl: -_mscl.Vec3f_swigregister(Vec3f) - -ECEF = _mscl.ECEF -LLH_NED = _mscl.LLH_NED -LOCAL = _mscl.LOCAL -VEHICLE = _mscl.VEHICLE -class GeometricVector(Vec3f): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - - @staticmethod - def VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - - def __init__(self, *args): - _mscl.GeometricVector_swiginit(self, _mscl.new_GeometricVector(*args)) - __swig_destroy__ = _mscl.delete_GeometricVector - - def fromMipFieldValues_includesFrame(self, data, offset=0): - return _mscl.GeometricVector_fromMipFieldValues_includesFrame(self, data, offset) - - def asMipFieldValues_includeFrame(self): - return _mscl.GeometricVector_asMipFieldValues_includeFrame(self) - - def appendMipFieldValues_includeFrame(self, appendTo): - return _mscl.GeometricVector_appendMipFieldValues_includeFrame(self, appendTo) - referenceFrame = property(_mscl.GeometricVector_referenceFrame_get, _mscl.GeometricVector_referenceFrame_set) - - def north(self, *args): - return _mscl.GeometricVector_north(self, *args) - - def east(self, *args): - return _mscl.GeometricVector_east(self, *args) - - def down(self, *args): - return _mscl.GeometricVector_down(self, *args) - -# Register GeometricVector in _mscl: -_mscl.GeometricVector_swigregister(GeometricVector) - -def GeometricVector_VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - -def GeometricVector_VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - -class PositionOffset(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.PositionOffset_swiginit(self, _mscl.new_PositionOffset(*args)) - __swig_destroy__ = _mscl.delete_PositionOffset - -# Register PositionOffset in _mscl: -_mscl.PositionOffset_swigregister(PositionOffset) - -class Velocity(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Velocity_swiginit(self, _mscl.new_Velocity(*args)) - __swig_destroy__ = _mscl.delete_Velocity - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - - @staticmethod - def NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - - @staticmethod - def Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -# Register Velocity in _mscl: -_mscl.Velocity_swigregister(Velocity) - -def Velocity_ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - -def Velocity_NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - -def Velocity_Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -class Position(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - - def __init__(self, *args): - _mscl.Position_swiginit(self, _mscl.new_Position(*args)) - __swig_destroy__ = _mscl.delete_Position - referenceFrame = property(_mscl.Position_referenceFrame_get, _mscl.Position_referenceFrame_set) - - def latitude(self, *args): - return _mscl.Position_latitude(self, *args) - - def longitude(self, *args): - return _mscl.Position_longitude(self, *args) - - def altitude(self, *args): - return _mscl.Position_altitude(self, *args) - - def height(self, *args): - return _mscl.Position_height(self, *args) - - def x(self, *args): - return _mscl.Position_x(self, *args) - - def y(self, *args): - return _mscl.Position_y(self, *args) - - def z(self, *args): - return _mscl.Position_z(self, *args) - -# Register Position in _mscl: -_mscl.Position_swigregister(Position) - -def Position_LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - -def Position_ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - -class GeometricUncertainty(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeometricUncertainty_swiginit(self, _mscl.new_GeometricUncertainty(*args)) - __swig_destroy__ = _mscl.delete_GeometricUncertainty - -# Register GeometricUncertainty in _mscl: -_mscl.GeometricUncertainty_swigregister(GeometricUncertainty) - -class MipModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_3dm_dh3 = _mscl.MipModels_node_3dm_dh3 - node_3dm_gx3_15 = _mscl.MipModels_node_3dm_gx3_15 - node_3dm_gx3_25 = _mscl.MipModels_node_3dm_gx3_25 - node_3dm_gx3_35 = _mscl.MipModels_node_3dm_gx3_35 - node_3dm_gx3_45 = _mscl.MipModels_node_3dm_gx3_45 - node_3dm_rq1_45_lt = _mscl.MipModels_node_3dm_rq1_45_lt - node_3dm_gx4_15 = _mscl.MipModels_node_3dm_gx4_15 - node_3dm_gx4_25 = _mscl.MipModels_node_3dm_gx4_25 - node_3dm_gx4_45 = _mscl.MipModels_node_3dm_gx4_45 - node_3dm_rq1_45_st = _mscl.MipModels_node_3dm_rq1_45_st - node_mv5_ar = _mscl.MipModels_node_mv5_ar - node_3dm_gx5_10 = _mscl.MipModels_node_3dm_gx5_10 - node_3dm_gx5_15 = _mscl.MipModels_node_3dm_gx5_15 - node_3dm_gx5_25 = _mscl.MipModels_node_3dm_gx5_25 - node_3dm_gx5_35 = _mscl.MipModels_node_3dm_gx5_35 - node_3dm_gx5_45 = _mscl.MipModels_node_3dm_gx5_45 - node_3dm_cv5_10 = _mscl.MipModels_node_3dm_cv5_10 - node_3dm_cv5_15 = _mscl.MipModels_node_3dm_cv5_15 - node_3dm_cv5_25 = _mscl.MipModels_node_3dm_cv5_25 - node_3dm_cv5_45 = _mscl.MipModels_node_3dm_cv5_45 - node_3dm_gq4_45 = _mscl.MipModels_node_3dm_gq4_45 - node_3dm_cx5_45 = _mscl.MipModels_node_3dm_cx5_45 - node_3dm_cx5_35 = _mscl.MipModels_node_3dm_cx5_35 - node_3dm_cx5_25 = _mscl.MipModels_node_3dm_cx5_25 - node_3dm_cx5_15 = _mscl.MipModels_node_3dm_cx5_15 - node_3dm_cx5_10 = _mscl.MipModels_node_3dm_cx5_10 - node_3dm_cl5_15 = _mscl.MipModels_node_3dm_cl5_15 - node_3dm_cl5_25 = _mscl.MipModels_node_3dm_cl5_25 - node_3dm_gq7 = _mscl.MipModels_node_3dm_gq7 - node_3dm_rtk = _mscl.MipModels_node_3dm_rtk - node_3dm_cv7_ahrs = _mscl.MipModels_node_3dm_cv7_ahrs - node_3dm_cv7_ar = _mscl.MipModels_node_3dm_cv7_ar - node_3dm_gv7_ahrs = _mscl.MipModels_node_3dm_gv7_ahrs - node_3dm_gv7_ar = _mscl.MipModels_node_3dm_gv7_ar - node_3dm_gv7_ins = _mscl.MipModels_node_3dm_gv7_ins - node_3dm_cv7_ins = _mscl.MipModels_node_3dm_cv7_ins - node_3dm_cv7_gnss_ins = _mscl.MipModels_node_3dm_cv7_gnss_ins - placeholder_matchAll = _mscl.MipModels_placeholder_matchAll - rtk_v1 = _mscl.MipModels_rtk_v1 - rtk_v2 = _mscl.MipModels_rtk_v2 - model_3dm_dh3 = _mscl.MipModels_model_3dm_dh3 - model_3dm_gx3_15 = _mscl.MipModels_model_3dm_gx3_15 - model_3dm_gx3_25 = _mscl.MipModels_model_3dm_gx3_25 - model_3dm_gx3_35 = _mscl.MipModels_model_3dm_gx3_35 - model_3dm_gx3_45 = _mscl.MipModels_model_3dm_gx3_45 - model_3dm_rq1_45_lt = _mscl.MipModels_model_3dm_rq1_45_lt - model_3dm_gx4_15 = _mscl.MipModels_model_3dm_gx4_15 - model_3dm_gx4_25 = _mscl.MipModels_model_3dm_gx4_25 - model_3dm_gx4_45 = _mscl.MipModels_model_3dm_gx4_45 - model_3dm_rq1_45_st = _mscl.MipModels_model_3dm_rq1_45_st - model_mv5_ar = _mscl.MipModels_model_mv5_ar - model_3dm_gx5_10 = _mscl.MipModels_model_3dm_gx5_10 - model_3dm_gx5_15 = _mscl.MipModels_model_3dm_gx5_15 - model_3dm_gx5_25 = _mscl.MipModels_model_3dm_gx5_25 - model_3dm_gx5_35 = _mscl.MipModels_model_3dm_gx5_35 - model_3dm_gx5_45 = _mscl.MipModels_model_3dm_gx5_45 - model_3dm_cv5_10 = _mscl.MipModels_model_3dm_cv5_10 - model_3dm_cv5_15 = _mscl.MipModels_model_3dm_cv5_15 - model_3dm_cv5_25 = _mscl.MipModels_model_3dm_cv5_25 - model_3dm_cv5_45 = _mscl.MipModels_model_3dm_cv5_45 - model_3dm_gq4_45 = _mscl.MipModels_model_3dm_gq4_45 - model_3dm_cx5_45 = _mscl.MipModels_model_3dm_cx5_45 - model_3dm_cx5_35 = _mscl.MipModels_model_3dm_cx5_35 - model_3dm_cx5_25 = _mscl.MipModels_model_3dm_cx5_25 - model_3dm_cx5_15 = _mscl.MipModels_model_3dm_cx5_15 - model_3dm_cx5_10 = _mscl.MipModels_model_3dm_cx5_10 - model_3dm_cl5_15 = _mscl.MipModels_model_3dm_cl5_15 - model_3dm_cl5_25 = _mscl.MipModels_model_3dm_cl5_25 - model_3dm_gq7 = _mscl.MipModels_model_3dm_gq7 - model_3dm_rtk_v1 = _mscl.MipModels_model_3dm_rtk_v1 - model_3dm_rtk = _mscl.MipModels_model_3dm_rtk - model_3dm_cv7_ahrs = _mscl.MipModels_model_3dm_cv7_ahrs - model_3dm_cv7_ar = _mscl.MipModels_model_3dm_cv7_ar - model_3dm_gv7_ahrs = _mscl.MipModels_model_3dm_gv7_ahrs - model_3dm_gv7_ar = _mscl.MipModels_model_3dm_gv7_ar - model_3dm_gv7_ins = _mscl.MipModels_model_3dm_gv7_ins - model_3dm_cv7_ins = _mscl.MipModels_model_3dm_cv7_ins - model_3dm_cv7_gnss_ins = _mscl.MipModels_model_3dm_cv7_gnss_ins - - @staticmethod - def modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - - @staticmethod - def modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - - @staticmethod - def modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - - @staticmethod - def nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - - @staticmethod - def modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - - @staticmethod - def nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - - @staticmethod - def modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - - @staticmethod - def stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - - def __init__(self): - _mscl.MipModels_swiginit(self, _mscl.new_MipModels()) - __swig_destroy__ = _mscl.delete_MipModels - -# Register MipModels in _mscl: -_mscl.MipModels_swigregister(MipModels) - -def MipModels_modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - -def MipModels_modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - -def MipModels_modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - -def MipModels_nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - -def MipModels_modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - -def MipModels_nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - -def MipModels_modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - -def MipModels_stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - -class MipModel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipModel_swiginit(self, _mscl.new_MipModel(*args)) - - def equals(self, compare): - return _mscl.MipModel_equals(self, compare) - - def __str__(self): - return _mscl.MipModel___str__(self) - - def nodeModel(self): - return _mscl.MipModel_nodeModel(self) - - def modifier(self): - return _mscl.MipModel_modifier(self) - - def modelNumber(self): - return _mscl.MipModel_modelNumber(self) - - def baseModel(self): - return _mscl.MipModel_baseModel(self) - __swig_destroy__ = _mscl.delete_MipModel - -# Register MipModel in _mscl: -_mscl.MipModel_swigregister(MipModel) -MipModel.mip_model_none = _mscl.cvar.MipModel_mip_model_none -MipModel.mip_model_3dm_dh3 = _mscl.cvar.MipModel_mip_model_3dm_dh3 -MipModel.mip_model_3dm_gx3_15 = _mscl.cvar.MipModel_mip_model_3dm_gx3_15 -MipModel.mip_model_3dm_gx3_25 = _mscl.cvar.MipModel_mip_model_3dm_gx3_25 -MipModel.mip_model_3dm_gx3_35 = _mscl.cvar.MipModel_mip_model_3dm_gx3_35 -MipModel.mip_model_3dm_gx3_45 = _mscl.cvar.MipModel_mip_model_3dm_gx3_45 -MipModel.mip_model_3dm_rq1_45_lt = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_lt -MipModel.mip_model_3dm_rq1_45_st = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_st -MipModel.mip_model_3dm_gx4_15 = _mscl.cvar.MipModel_mip_model_3dm_gx4_15 -MipModel.mip_model_3dm_gx4_25 = _mscl.cvar.MipModel_mip_model_3dm_gx4_25 -MipModel.mip_model_3dm_gx4_45 = _mscl.cvar.MipModel_mip_model_3dm_gx4_45 -MipModel.mip_model_mv5_ar = _mscl.cvar.MipModel_mip_model_mv5_ar -MipModel.mip_model_3dm_gx5_10 = _mscl.cvar.MipModel_mip_model_3dm_gx5_10 -MipModel.mip_model_3dm_gx5_15 = _mscl.cvar.MipModel_mip_model_3dm_gx5_15 -MipModel.mip_model_3dm_gx5_25 = _mscl.cvar.MipModel_mip_model_3dm_gx5_25 -MipModel.mip_model_3dm_gx5_35 = _mscl.cvar.MipModel_mip_model_3dm_gx5_35 -MipModel.mip_model_3dm_gx5_45 = _mscl.cvar.MipModel_mip_model_3dm_gx5_45 -MipModel.mip_model_3dm_cv5_10 = _mscl.cvar.MipModel_mip_model_3dm_cv5_10 -MipModel.mip_model_3dm_cv5_15 = _mscl.cvar.MipModel_mip_model_3dm_cv5_15 -MipModel.mip_model_3dm_cv5_25 = _mscl.cvar.MipModel_mip_model_3dm_cv5_25 -MipModel.mip_model_3dm_cv5_45 = _mscl.cvar.MipModel_mip_model_3dm_cv5_45 -MipModel.mip_model_3dm_gq4_45 = _mscl.cvar.MipModel_mip_model_3dm_gq4_45 -MipModel.mip_model_3dm_cx5_45 = _mscl.cvar.MipModel_mip_model_3dm_cx5_45 -MipModel.mip_model_3dm_cx5_35 = _mscl.cvar.MipModel_mip_model_3dm_cx5_35 -MipModel.mip_model_3dm_cx5_25 = _mscl.cvar.MipModel_mip_model_3dm_cx5_25 -MipModel.mip_model_3dm_cx5_15 = _mscl.cvar.MipModel_mip_model_3dm_cx5_15 -MipModel.mip_model_3dm_cx5_10 = _mscl.cvar.MipModel_mip_model_3dm_cx5_10 -MipModel.mip_model_3dm_cl5_15 = _mscl.cvar.MipModel_mip_model_3dm_cl5_15 -MipModel.mip_model_3dm_cl5_25 = _mscl.cvar.MipModel_mip_model_3dm_cl5_25 -MipModel.mip_model_3dm_gq7 = _mscl.cvar.MipModel_mip_model_3dm_gq7 -MipModel.mip_model_3dm_rtk_v1 = _mscl.cvar.MipModel_mip_model_3dm_rtk_v1 -MipModel.mip_model_3dm_rtk = _mscl.cvar.MipModel_mip_model_3dm_rtk -MipModel.mip_model_3dm_cv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_cv7_ahrs -MipModel.mip_model_3dm_cv7_ar = _mscl.cvar.MipModel_mip_model_3dm_cv7_ar -MipModel.mip_model_3dm_gv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_gv7_ahrs -MipModel.mip_model_3dm_gv7_ar = _mscl.cvar.MipModel_mip_model_3dm_gv7_ar -MipModel.mip_model_3dm_gv7_ins = _mscl.cvar.MipModel_mip_model_3dm_gv7_ins -MipModel.mip_model_3dm_cv7_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_ins -MipModel.mip_model_3dm_cv7_gnss_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_gnss_ins - -class DisplacementModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_digitalDemod = _mscl.DisplacementModels_node_digitalDemod - - def __init__(self): - _mscl.DisplacementModels_swiginit(self, _mscl.new_DisplacementModels()) - __swig_destroy__ = _mscl.delete_DisplacementModels - -# Register DisplacementModels in _mscl: -_mscl.DisplacementModels_swigregister(DisplacementModels) - -class MipTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CLASS_AHRS_IMU = _mscl.MipTypes_CLASS_AHRS_IMU - CLASS_GNSS = _mscl.MipTypes_CLASS_GNSS - CLASS_ESTFILTER = _mscl.MipTypes_CLASS_ESTFILTER - CLASS_DISPLACEMENT = _mscl.MipTypes_CLASS_DISPLACEMENT - CLASS_GNSS1 = _mscl.MipTypes_CLASS_GNSS1 - CLASS_GNSS2 = _mscl.MipTypes_CLASS_GNSS2 - CLASS_GNSS3 = _mscl.MipTypes_CLASS_GNSS3 - CLASS_RTK = _mscl.MipTypes_CLASS_RTK - CLASS_GNSS4 = _mscl.MipTypes_CLASS_GNSS4 - CLASS_GNSS5 = _mscl.MipTypes_CLASS_GNSS5 - CLASS_SYSTEM = _mscl.MipTypes_CLASS_SYSTEM - USE_NEW_SETTINGS = _mscl.MipTypes_USE_NEW_SETTINGS - READ_BACK_CURRENT_SETTINGS = _mscl.MipTypes_READ_BACK_CURRENT_SETTINGS - SAVE_CURRENT_SETTINGS = _mscl.MipTypes_SAVE_CURRENT_SETTINGS - LOAD_STARTUP_SETTINGS = _mscl.MipTypes_LOAD_STARTUP_SETTINGS - RESET_TO_DEFAULT = _mscl.MipTypes_RESET_TO_DEFAULT - USE_NEW_SETTINGS_NO_ACKNACK = _mscl.MipTypes_USE_NEW_SETTINGS_NO_ACKNACK - DISABLED = _mscl.MipTypes_DISABLED - ENABLED = _mscl.MipTypes_ENABLED - TIME_FRAME_WEEKS = _mscl.MipTypes_TIME_FRAME_WEEKS - TIME_FRAME_SECONDS = _mscl.MipTypes_TIME_FRAME_SECONDS - CMD_PING = _mscl.MipTypes_CMD_PING - CMD_SET_IDLE = _mscl.MipTypes_CMD_SET_IDLE - CMD_GET_DEVICE_INFO = _mscl.MipTypes_CMD_GET_DEVICE_INFO - CMD_GET_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_DESCRIPTOR_SETS - CMD_BUILT_IN_TEST = _mscl.MipTypes_CMD_BUILT_IN_TEST - CMD_RESUME = _mscl.MipTypes_CMD_RESUME - CMD_GET_EXT_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_EXT_DESCRIPTOR_SETS - CMD_COMM_PORT_SPEED = _mscl.MipTypes_CMD_COMM_PORT_SPEED - CMD_GPS_TIME_UPDATE = _mscl.MipTypes_CMD_GPS_TIME_UPDATE - CMD_RESET = _mscl.MipTypes_CMD_RESET - CMD_POLL_SENSOR_DATA = _mscl.MipTypes_CMD_POLL_SENSOR_DATA - CMD_POLL_GNSS_DATA = _mscl.MipTypes_CMD_POLL_GNSS_DATA - CMD_POLL_EF_DATA = _mscl.MipTypes_CMD_POLL_EF_DATA - CMD_GET_SENSOR_RATE_BASE = _mscl.MipTypes_CMD_GET_SENSOR_RATE_BASE - CMD_GET_GNSS_RATE_BASE = _mscl.MipTypes_CMD_GET_GNSS_RATE_BASE - CMD_GET_EF_RATE_BASE = _mscl.MipTypes_CMD_GET_EF_RATE_BASE - CMD_SENSOR_MESSAGE_FORMAT = _mscl.MipTypes_CMD_SENSOR_MESSAGE_FORMAT - CMD_GNSS_MESSAGE_FORMAT = _mscl.MipTypes_CMD_GNSS_MESSAGE_FORMAT - CMD_EF_MESSAGE_FORMAT = _mscl.MipTypes_CMD_EF_MESSAGE_FORMAT - CMD_NMEA_MESSAGE_FORMAT = _mscl.MipTypes_CMD_NMEA_MESSAGE_FORMAT - CMD_POLL = _mscl.MipTypes_CMD_POLL - CMD_GET_BASE_RATE = _mscl.MipTypes_CMD_GET_BASE_RATE - CMD_MESSAGE_FORMAT = _mscl.MipTypes_CMD_MESSAGE_FORMAT - CMD_FACTORY_STREAMING = _mscl.MipTypes_CMD_FACTORY_STREAMING - CMD_CONTINUOUS_DATA_STREAM = _mscl.MipTypes_CMD_CONTINUOUS_DATA_STREAM - CMD_RAW_RTCM_2_3_MESSAGE = _mscl.MipTypes_CMD_RAW_RTCM_2_3_MESSAGE - CMD_GNSS_CONSTELLATION_SETTINGS = _mscl.MipTypes_CMD_GNSS_CONSTELLATION_SETTINGS - CMD_GNSS_SBAS_SETTINGS = _mscl.MipTypes_CMD_GNSS_SBAS_SETTINGS - CMD_GNSS_ASSIST_FIX_CONTROL = _mscl.MipTypes_CMD_GNSS_ASSIST_FIX_CONTROL - CMD_GNSS_ASSIST_TIME_UPDATE = _mscl.MipTypes_CMD_GNSS_ASSIST_TIME_UPDATE - CMD_PPS_SOURCE = _mscl.MipTypes_CMD_PPS_SOURCE - CMD_EVENT_SUPPORT = _mscl.MipTypes_CMD_EVENT_SUPPORT - CMD_EVENT_CONTROL = _mscl.MipTypes_CMD_EVENT_CONTROL - CMD_EVENT_TRIGGER_STATUS = _mscl.MipTypes_CMD_EVENT_TRIGGER_STATUS - CMD_EVENT_ACTION_STATUS = _mscl.MipTypes_CMD_EVENT_ACTION_STATUS - CMD_EVENT_TRIGGER_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_TRIGGER_CONFIGURATION - CMD_EVENT_ACTION_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_ACTION_CONFIGURATION - CMD_SAVE_STARTUP_SETTINGS = _mscl.MipTypes_CMD_SAVE_STARTUP_SETTINGS - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM - CMD_GPS_DYNAMICS_MODE = _mscl.MipTypes_CMD_GPS_DYNAMICS_MODE - CMD_SENSOR_SIG_COND_SETTINGS = _mscl.MipTypes_CMD_SENSOR_SIG_COND_SETTINGS - CMD_SENSOR_TIMESTAMP = _mscl.MipTypes_CMD_SENSOR_TIMESTAMP - CMD_ACCEL_BIAS = _mscl.MipTypes_CMD_ACCEL_BIAS - CMD_GYRO_BIAS = _mscl.MipTypes_CMD_GYRO_BIAS - CMD_CAP_GYRO_BIAS = _mscl.MipTypes_CMD_CAP_GYRO_BIAS - CMD_MAG_HARD_IRON_OFFSET = _mscl.MipTypes_CMD_MAG_HARD_IRON_OFFSET - CMD_MAG_SOFT_IRON_MATRIX = _mscl.MipTypes_CMD_MAG_SOFT_IRON_MATRIX - CMD_CF_REALIGN_UP = _mscl.MipTypes_CMD_CF_REALIGN_UP - CMD_CF_REALIGN_NORTH = _mscl.MipTypes_CMD_CF_REALIGN_NORTH - CMD_CONING_SCULLING = _mscl.MipTypes_CMD_CONING_SCULLING - CMD_UART_BAUD_RATE = _mscl.MipTypes_CMD_UART_BAUD_RATE - CMD_GPIO_CONFIGURATION = _mscl.MipTypes_CMD_GPIO_CONFIGURATION - CMD_GPIO_STATE = _mscl.MipTypes_CMD_GPIO_STATE - CMD_ODOMETER_SETTINGS = _mscl.MipTypes_CMD_ODOMETER_SETTINGS - CMD_LOWPASS_FILTER_SETTINGS = _mscl.MipTypes_CMD_LOWPASS_FILTER_SETTINGS - CMD_COMPLEMENTARY_FILTER_SETTINGS = _mscl.MipTypes_CMD_COMPLEMENTARY_FILTER_SETTINGS - CMD_SENSOR_RANGE = _mscl.MipTypes_CMD_SENSOR_RANGE - CMD_SUPPORTED_SENSOR_RANGES = _mscl.MipTypes_CMD_SUPPORTED_SENSOR_RANGES - CMD_LOWPASS_ANTIALIASING_FILTER = _mscl.MipTypes_CMD_LOWPASS_ANTIALIASING_FILTER - CMD_DATA_STREAM_FORMAT = _mscl.MipTypes_CMD_DATA_STREAM_FORMAT - CMD_POWER_STATES = _mscl.MipTypes_CMD_POWER_STATES - CMD_GPS_STARTUP_SETTINGS = _mscl.MipTypes_CMD_GPS_STARTUP_SETTINGS - CMD_DEVICE_STATUS = _mscl.MipTypes_CMD_DEVICE_STATUS - CMD_EF_RESET_FILTER = _mscl.MipTypes_CMD_EF_RESET_FILTER - CMD_EF_INIT_ATTITUDE = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE - CMD_EF_INIT_HEADING = _mscl.MipTypes_CMD_EF_INIT_HEADING - CMD_EF_INIT_ATTITUDE_FROM_AHRS = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE_FROM_AHRS - CMD_EF_RUN_FILTER = _mscl.MipTypes_CMD_EF_RUN_FILTER - CMD_EF_VEHIC_DYNAMICS_MODE = _mscl.MipTypes_CMD_EF_VEHIC_DYNAMICS_MODE - CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER - CMD_EF_SENS_VEHIC_FRAME_OFFSET = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_OFFSET - CMD_EF_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_ANTENNA_OFFSET - CMD_EF_BIAS_EST_CTRL = _mscl.MipTypes_CMD_EF_BIAS_EST_CTRL - CMD_EF_GNSS_SRC_CTRL = _mscl.MipTypes_CMD_EF_GNSS_SRC_CTRL - CMD_EF_EXTERN_GNSS_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_GNSS_UPDATE - CMD_EF_EXTERN_HEADING_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_HEADING_UPDATE - CMD_EF_HEADING_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_HEADING_UPDATE_CTRL - CMD_EF_AUTO_INIT_CTRL = _mscl.MipTypes_CMD_EF_AUTO_INIT_CTRL - CMD_EF_ACCEL_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_ACCEL_WHT_NSE_STD_DEV - CMD_EF_GYRO_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_GYRO_WHT_NSE_STD_DEV - CMD_EF_ACCEL_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_ACCEL_BIAS_MODEL_PARAMS - CMD_EF_GYRO_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_GYRO_BIAS_MODEL_PARAMS - CMD_EF_ZERO_VEL_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_VEL_UPDATE_CTRL - CMD_EF_EXT_HEADING_UPDATE_TS = _mscl.MipTypes_CMD_EF_EXT_HEADING_UPDATE_TS - CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL - CMD_EF_TARE_ORIENT = _mscl.MipTypes_CMD_EF_TARE_ORIENT - CMD_EF_CMDED_ZERO_VEL_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_VEL_UPDATE - CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE - CMD_EF_SET_REF_POSITION = _mscl.MipTypes_CMD_EF_SET_REF_POSITION - CMD_EF_MAG_CAPTURE_AUTO_CAL = _mscl.MipTypes_CMD_EF_MAG_CAPTURE_AUTO_CAL - CMD_EF_GRAVITY_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_STD_DEV - CMD_EF_PRESS_ALT_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_PRESS_ALT_NOISE_STD_DEV - CMD_EF_GRAVITY_NOISE_MINIMUM = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_MINIMUM - CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE - CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE - CMD_EF_ENABLE_DISABLE_MEASUREMENTS = _mscl.MipTypes_CMD_EF_ENABLE_DISABLE_MEASUREMENTS - CMD_EF_MAG_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_MAG_NOISE_STD_DEV - CMD_EF_DECLINATION_SRC = _mscl.MipTypes_CMD_EF_DECLINATION_SRC - CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE - CMD_EF_ALTITUDE_AID_CTRL = _mscl.MipTypes_CMD_EF_ALTITUDE_AID_CTRL - CMD_EF_PITCH_ROLL_AID_CTRL = _mscl.MipTypes_CMD_EF_PITCH_ROLL_AID_CTRL - CMD_EF_INCLINATION_SRC = _mscl.MipTypes_CMD_EF_INCLINATION_SRC - CMD_EF_FIELD_MAGNITUDE_SRC = _mscl.MipTypes_CMD_EF_FIELD_MAGNITUDE_SRC - CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM - CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT - CMD_EF_AIDING_MEASUREMENT_ENABLE = _mscl.MipTypes_CMD_EF_AIDING_MEASUREMENT_ENABLE - CMD_EF_INITIALIZATION_CONFIG = _mscl.MipTypes_CMD_EF_INITIALIZATION_CONFIG - CMD_EF_ADAPTIVE_FILTER_OPTIONS = _mscl.MipTypes_CMD_EF_ADAPTIVE_FILTER_OPTIONS - CMD_EF_MULTI_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_MULTI_ANTENNA_OFFSET - CMD_EF_RELATIVE_POSITION_REF = _mscl.MipTypes_CMD_EF_RELATIVE_POSITION_REF - CMD_EF_LEVER_ARM_OFFSET_REF = _mscl.MipTypes_CMD_EF_LEVER_ARM_OFFSET_REF - CMD_EF_EXTERN_SPEED_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_SPEED_UPDATE - CMD_EF_SPEED_MEASUREMENT_OFFSET = _mscl.MipTypes_CMD_EF_SPEED_MEASUREMENT_OFFSET - CMD_EF_VERTICAL_GYRO_CONSTRAINT = _mscl.MipTypes_CMD_EF_VERTICAL_GYRO_CONSTRAINT - CMD_EF_WHEELED_VEHICLE_CONSTRAINT = _mscl.MipTypes_CMD_EF_WHEELED_VEHICLE_CONSTRAINT - CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL = _mscl.MipTypes_CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL - CMD_GNSS_RECEIVER_INFO = _mscl.MipTypes_CMD_GNSS_RECEIVER_INFO - CMD_GNSS_SIGNAL_CONFIG = _mscl.MipTypes_CMD_GNSS_SIGNAL_CONFIG - CMD_GNSS_SPARTN_CONFIG = _mscl.MipTypes_CMD_GNSS_SPARTN_CONFIG - CMD_GNSS_RTK_CONFIG = _mscl.MipTypes_CMD_GNSS_RTK_CONFIG - CMD_INTERFACE_CONTROL = _mscl.MipTypes_CMD_INTERFACE_CONTROL - CMD_COMMUNICATION_MODE = _mscl.MipTypes_CMD_COMMUNICATION_MODE - CMD_HARDWARE_CTRL = _mscl.MipTypes_CMD_HARDWARE_CTRL - CMD_GET_ANALOG_DISPLACEMENT_CALS = _mscl.MipTypes_CMD_GET_ANALOG_DISPLACEMENT_CALS - CMD_DISPLACEMENT_OUTPUT_RATE = _mscl.MipTypes_CMD_DISPLACEMENT_OUTPUT_RATE - CMD_DISPLACEMENT_DEVICE_TIME = _mscl.MipTypes_CMD_DISPLACEMENT_DEVICE_TIME - CMD_RTK_DEVICE_STATUS_FLAGS = _mscl.MipTypes_CMD_RTK_DEVICE_STATUS_FLAGS - CMD_RTK_ACTIVATION_CODE = _mscl.MipTypes_CMD_RTK_ACTIVATION_CODE - CMD_AIDING_FRAME_CONFIG = _mscl.MipTypes_CMD_AIDING_FRAME_CONFIG - CMD_AIDING_ECHO_CONTROL = _mscl.MipTypes_CMD_AIDING_ECHO_CONTROL - CMD_AIDING_POS_ECEF = _mscl.MipTypes_CMD_AIDING_POS_ECEF - CMD_AIDING_POS_LLH = _mscl.MipTypes_CMD_AIDING_POS_LLH - CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID - CMD_AIDING_VEL_ECEF = _mscl.MipTypes_CMD_AIDING_VEL_ECEF - CMD_AIDING_VEL_NED = _mscl.MipTypes_CMD_AIDING_VEL_NED - CMD_AIDING_VEL_BODY_FRAME = _mscl.MipTypes_CMD_AIDING_VEL_BODY_FRAME - CMD_AIDING_HEADING_TRUE = _mscl.MipTypes_CMD_AIDING_HEADING_TRUE - CMD_AIDING_MAGNETIC_FIELD = _mscl.MipTypes_CMD_AIDING_MAGNETIC_FIELD - CMD_AIDING_PRESSURE = _mscl.MipTypes_CMD_AIDING_PRESSURE - CH_FIELD_SENSOR_RAW_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_ACCEL_VEC - CH_FIELD_SENSOR_RAW_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_GYRO_VEC - CH_FIELD_SENSOR_RAW_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_MAG_VEC - CH_FIELD_SENSOR_SCALED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_ACCEL_VEC - CH_FIELD_SENSOR_SCALED_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_GYRO_VEC - CH_FIELD_SENSOR_SCALED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_MAG_VEC - CH_FIELD_SENSOR_DELTA_THETA_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_THETA_VEC - CH_FIELD_SENSOR_DELTA_VELOCITY_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_VELOCITY_VEC - CH_FIELD_SENSOR_ORIENTATION_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_MATRIX - CH_FIELD_SENSOR_ORIENTATION_QUATERNION = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_QUATERNION - CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX - CH_FIELD_SENSOR_EULER_ANGLES = _mscl.MipTypes_CH_FIELD_SENSOR_EULER_ANGLES - CH_FIELD_SENSOR_INTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_INTERNAL_TIMESTAMP - CH_FIELD_SENSOR_BEACONED_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_BEACONED_TIMESTAMP - CH_FIELD_SENSOR_STABILIZED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_MAG_VEC - CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC - CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP - CH_FIELD_SENSOR_TEMPERATURE_STATISTICS = _mscl.MipTypes_CH_FIELD_SENSOR_TEMPERATURE_STATISTICS - CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE - CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE - CH_FIELD_SENSOR_OVERRANGE_STATUS = _mscl.MipTypes_CH_FIELD_SENSOR_OVERRANGE_STATUS - CH_FIELD_SENSOR_ODOMETER_DATA = _mscl.MipTypes_CH_FIELD_SENSOR_ODOMETER_DATA - CH_FIELD_SENSOR_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EVENT_SOURCE - CH_FIELD_SENSOR_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_TICKS - CH_FIELD_SENSOR_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TICKS - CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP - CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_LLH_POSITION - CH_FIELD_GNSS_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_POSITION - CH_FIELD_GNSS_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_NED_VELOCITY - CH_FIELD_GNSS_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_VELOCITY - CH_FIELD_GNSS_DOP = _mscl.MipTypes_CH_FIELD_GNSS_DOP - CH_FIELD_GNSS_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_UTC_TIME - CH_FIELD_GNSS_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_GPS_TIME - CH_FIELD_GNSS_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO - CH_FIELD_GNSS_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_FIX_INFO - CH_FIELD_GNSS_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_HARDWARE_STATUS - CH_FIELD_GNSS_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_INFO - CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO_2 - CH_FIELD_GNSS_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_LEAP_SECONDS - CH_FIELD_GNSS_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_INFO - CH_FIELD_GNSS_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_CORRECTION - CH_FIELD_GNSS_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_RF_ERROR_DETECTION - CH_FIELD_GNSS_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_SATELLITE_STATUS - CH_FIELD_GNSS_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_RAW_OBSERVATION - CH_FIELD_GNSS_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_STATION_INFO - CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_EPHEMERIS - CH_FIELD_GNSS_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GLONASS_EPHEMERIS - CH_FIELD_GNSS_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_EPHEMERIS - CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_TICKS - CH_FIELD_GNSS_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TICKS - CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS - CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL - CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE - CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE - CH_FIELD_ESTFILTER_FILTER_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_FILTER_STATUS - CH_FIELD_ESTFILTER_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT - CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR - CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE - CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR - CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_MAG_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS - CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT - CH_FIELD_ESTFILTER_COMPENSATED_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_COMPENSATED_ACCEL - CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL - CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT - CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX - CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS_UNCERT - CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS - CH_FIELD_ESTFILTER_ECEF_VEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL - CH_FIELD_ESTFILTER_NED_RELATIVE_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_NED_RELATIVE_POS - CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS - CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS - CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY = _mscl.MipTypes_CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT - CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT - CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE - CH_FIELD_ESTFILTER_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_TICKS - CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS - CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_DISP_DISPLACEMENT_RAW = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_RAW - CH_FIELD_DISP_DISPLACEMENT_MM = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_MM - CH_FIELD_DISP_DISPLACEMENT_TS = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_TS - CH_FIELD_GNSS_1_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_LLH_POSITION - CH_FIELD_GNSS_1_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_POSITION - CH_FIELD_GNSS_1_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_NED_VELOCITY - CH_FIELD_GNSS_1_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_VELOCITY - CH_FIELD_GNSS_1_DOP = _mscl.MipTypes_CH_FIELD_GNSS_1_DOP - CH_FIELD_GNSS_1_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_UTC_TIME - CH_FIELD_GNSS_1_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_TIME - CH_FIELD_GNSS_1_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO - CH_FIELD_GNSS_1_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_FIX_INFO - CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_1_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_HARDWARE_STATUS - CH_FIELD_GNSS_1_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_INFO - CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_1_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO_2 - CH_FIELD_GNSS_1_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_LEAP_SECONDS - CH_FIELD_GNSS_1_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_INFO - CH_FIELD_GNSS_1_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_CORRECTION - CH_FIELD_GNSS_1_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_RF_ERROR_DETECTION - CH_FIELD_GNSS_1_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_SATELLITE_STATUS - CH_FIELD_GNSS_1_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_1_RAW_OBSERVATION - CH_FIELD_GNSS_1_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_STATION_INFO - CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_1_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_EPHEMERIS - CH_FIELD_GNSS_1_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GLONASS_EPHEMERIS - CH_FIELD_GNSS_1_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_EPHEMERIS - CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_1_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_TICKS - CH_FIELD_GNSS_1_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TICKS - CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_2_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_LLH_POSITION - CH_FIELD_GNSS_2_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_POSITION - CH_FIELD_GNSS_2_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_NED_VELOCITY - CH_FIELD_GNSS_2_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_VELOCITY - CH_FIELD_GNSS_2_DOP = _mscl.MipTypes_CH_FIELD_GNSS_2_DOP - CH_FIELD_GNSS_2_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_UTC_TIME - CH_FIELD_GNSS_2_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_TIME - CH_FIELD_GNSS_2_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO - CH_FIELD_GNSS_2_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_FIX_INFO - CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_2_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_HARDWARE_STATUS - CH_FIELD_GNSS_2_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_INFO - CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_2_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO_2 - CH_FIELD_GNSS_2_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_LEAP_SECONDS - CH_FIELD_GNSS_2_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_INFO - CH_FIELD_GNSS_2_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_CORRECTION - CH_FIELD_GNSS_2_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_RF_ERROR_DETECTION - CH_FIELD_GNSS_2_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_SATELLITE_STATUS - CH_FIELD_GNSS_2_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_2_RAW_OBSERVATION - CH_FIELD_GNSS_2_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_STATION_INFO - CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_2_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_EPHEMERIS - CH_FIELD_GNSS_2_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GLONASS_EPHEMERIS - CH_FIELD_GNSS_2_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_EPHEMERIS - CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_2_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_TICKS - CH_FIELD_GNSS_2_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TICKS - CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_3_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_LLH_POSITION - CH_FIELD_GNSS_3_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_POSITION - CH_FIELD_GNSS_3_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_NED_VELOCITY - CH_FIELD_GNSS_3_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_VELOCITY - CH_FIELD_GNSS_3_DOP = _mscl.MipTypes_CH_FIELD_GNSS_3_DOP - CH_FIELD_GNSS_3_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_UTC_TIME - CH_FIELD_GNSS_3_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_TIME - CH_FIELD_GNSS_3_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO - CH_FIELD_GNSS_3_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_FIX_INFO - CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_3_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_HARDWARE_STATUS - CH_FIELD_GNSS_3_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_INFO - CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_3_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO_2 - CH_FIELD_GNSS_3_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_LEAP_SECONDS - CH_FIELD_GNSS_3_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_INFO - CH_FIELD_GNSS_3_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_CORRECTION - CH_FIELD_GNSS_3_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_RF_ERROR_DETECTION - CH_FIELD_GNSS_3_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_SATELLITE_STATUS - CH_FIELD_GNSS_3_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_3_RAW_OBSERVATION - CH_FIELD_GNSS_3_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_STATION_INFO - CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_3_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_EPHEMERIS - CH_FIELD_GNSS_3_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GLONASS_EPHEMERIS - CH_FIELD_GNSS_3_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_EPHEMERIS - CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_3_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_TICKS - CH_FIELD_GNSS_3_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TICKS - CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_4_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_LLH_POSITION - CH_FIELD_GNSS_4_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_POSITION - CH_FIELD_GNSS_4_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_NED_VELOCITY - CH_FIELD_GNSS_4_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_VELOCITY - CH_FIELD_GNSS_4_DOP = _mscl.MipTypes_CH_FIELD_GNSS_4_DOP - CH_FIELD_GNSS_4_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_UTC_TIME - CH_FIELD_GNSS_4_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_TIME - CH_FIELD_GNSS_4_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO - CH_FIELD_GNSS_4_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_FIX_INFO - CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_4_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_HARDWARE_STATUS - CH_FIELD_GNSS_4_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_INFO - CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_4_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO_2 - CH_FIELD_GNSS_4_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_LEAP_SECONDS - CH_FIELD_GNSS_4_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_INFO - CH_FIELD_GNSS_4_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_CORRECTION - CH_FIELD_GNSS_4_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_RF_ERROR_DETECTION - CH_FIELD_GNSS_4_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_SATELLITE_STATUS - CH_FIELD_GNSS_4_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_4_RAW_OBSERVATION - CH_FIELD_GNSS_4_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_STATION_INFO - CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_4_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_EPHEMERIS - CH_FIELD_GNSS_4_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GLONASS_EPHEMERIS - CH_FIELD_GNSS_4_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_EPHEMERIS - CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_4_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_TICKS - CH_FIELD_GNSS_4_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TICKS - CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_5_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_LLH_POSITION - CH_FIELD_GNSS_5_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_POSITION - CH_FIELD_GNSS_5_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_NED_VELOCITY - CH_FIELD_GNSS_5_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_VELOCITY - CH_FIELD_GNSS_5_DOP = _mscl.MipTypes_CH_FIELD_GNSS_5_DOP - CH_FIELD_GNSS_5_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_UTC_TIME - CH_FIELD_GNSS_5_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_TIME - CH_FIELD_GNSS_5_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO - CH_FIELD_GNSS_5_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_FIX_INFO - CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_5_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_HARDWARE_STATUS - CH_FIELD_GNSS_5_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_INFO - CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_5_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO_2 - CH_FIELD_GNSS_5_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_LEAP_SECONDS - CH_FIELD_GNSS_5_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_INFO - CH_FIELD_GNSS_5_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_CORRECTION - CH_FIELD_GNSS_5_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_RF_ERROR_DETECTION - CH_FIELD_GNSS_5_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_SATELLITE_STATUS - CH_FIELD_GNSS_5_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_5_RAW_OBSERVATION - CH_FIELD_GNSS_5_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_STATION_INFO - CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_5_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_EPHEMERIS - CH_FIELD_GNSS_5_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GLONASS_EPHEMERIS - CH_FIELD_GNSS_5_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_EPHEMERIS - CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_5_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_TICKS - CH_FIELD_GNSS_5_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TICKS - CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_SYSTEM_BUILT_IN_TEST = _mscl.MipTypes_CH_FIELD_SYSTEM_BUILT_IN_TEST - CH_FIELD_SYSTEM_TIME_SYNC_STATUS = _mscl.MipTypes_CH_FIELD_SYSTEM_TIME_SYNC_STATUS - CH_FIELD_SYSTEM_GPIO_STATE = _mscl.MipTypes_CH_FIELD_SYSTEM_GPIO_STATE - CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE - CH_FIELD_SYSTEM_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_TICKS - CH_FIELD_SYSTEM_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TICKS - CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME - MIN_SHARED_FIELD_DESCRIPTOR = _mscl.MipTypes_MIN_SHARED_FIELD_DESCRIPTOR - CH_UNKNOWN = _mscl.MipTypes_CH_UNKNOWN - CH_X = _mscl.MipTypes_CH_X - CH_Y = _mscl.MipTypes_CH_Y - CH_Z = _mscl.MipTypes_CH_Z - CH_MATRIX = _mscl.MipTypes_CH_MATRIX - CH_QUATERNION = _mscl.MipTypes_CH_QUATERNION - CH_ROLL = _mscl.MipTypes_CH_ROLL - CH_PITCH = _mscl.MipTypes_CH_PITCH - CH_YAW = _mscl.MipTypes_CH_YAW - CH_TICK = _mscl.MipTypes_CH_TICK - CH_TIMESTAMP = _mscl.MipTypes_CH_TIMESTAMP - CH_STATUS = _mscl.MipTypes_CH_STATUS - CH_TIME_OF_WEEK = _mscl.MipTypes_CH_TIME_OF_WEEK - CH_WEEK_NUMBER = _mscl.MipTypes_CH_WEEK_NUMBER - CH_LATITUDE = _mscl.MipTypes_CH_LATITUDE - CH_LONGITUDE = _mscl.MipTypes_CH_LONGITUDE - CH_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CH_HEIGHT_ABOVE_ELLIPSOID - CH_HEIGHT_ABOVE_MSL = _mscl.MipTypes_CH_HEIGHT_ABOVE_MSL - CH_HORIZONTAL_ACCURACY = _mscl.MipTypes_CH_HORIZONTAL_ACCURACY - CH_VERTICAL_ACCURACY = _mscl.MipTypes_CH_VERTICAL_ACCURACY - CH_POSITION_ACCURACY = _mscl.MipTypes_CH_POSITION_ACCURACY - CH_NORTH = _mscl.MipTypes_CH_NORTH - CH_EAST = _mscl.MipTypes_CH_EAST - CH_DOWN = _mscl.MipTypes_CH_DOWN - CH_SPEED = _mscl.MipTypes_CH_SPEED - CH_GROUND_SPEED = _mscl.MipTypes_CH_GROUND_SPEED - CH_HEADING = _mscl.MipTypes_CH_HEADING - CH_SPEED_ACCURACY = _mscl.MipTypes_CH_SPEED_ACCURACY - CH_HEADING_ACCURACY = _mscl.MipTypes_CH_HEADING_ACCURACY - CH_VELOCITY_ACCURACY = _mscl.MipTypes_CH_VELOCITY_ACCURACY - CH_GEOMETRIC_DOP = _mscl.MipTypes_CH_GEOMETRIC_DOP - CH_POSITION_DOP = _mscl.MipTypes_CH_POSITION_DOP - CH_HORIZONTAL_DOP = _mscl.MipTypes_CH_HORIZONTAL_DOP - CH_VERTICAL_DOP = _mscl.MipTypes_CH_VERTICAL_DOP - CH_TIME_DOP = _mscl.MipTypes_CH_TIME_DOP - CH_NORTHING_DOP = _mscl.MipTypes_CH_NORTHING_DOP - CH_EASTING_DOP = _mscl.MipTypes_CH_EASTING_DOP - CH_FLAGS = _mscl.MipTypes_CH_FLAGS - CH_BIAS = _mscl.MipTypes_CH_BIAS - CH_DRIFT = _mscl.MipTypes_CH_DRIFT - CH_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_ACCURACY_ESTIMATE - CH_FIX_TYPE = _mscl.MipTypes_CH_FIX_TYPE - CH_SV_COUNT = _mscl.MipTypes_CH_SV_COUNT - CH_CHANNEL = _mscl.MipTypes_CH_CHANNEL - CH_ID = _mscl.MipTypes_CH_ID - CH_CARRIER_TO_NOISE_RATIO = _mscl.MipTypes_CH_CARRIER_TO_NOISE_RATIO - CH_AZIMUTH = _mscl.MipTypes_CH_AZIMUTH - CH_ELEVATION = _mscl.MipTypes_CH_ELEVATION - CH_SENSOR_STATE = _mscl.MipTypes_CH_SENSOR_STATE - CH_ANTENNA_STATE = _mscl.MipTypes_CH_ANTENNA_STATE - CH_ANTENNA_POWER = _mscl.MipTypes_CH_ANTENNA_POWER - CH_FILTER_STATE = _mscl.MipTypes_CH_FILTER_STATE - CH_DYNAMICS_MODE = _mscl.MipTypes_CH_DYNAMICS_MODE - CH_MAGNITUDE = _mscl.MipTypes_CH_MAGNITUDE - CH_HEADING_UNCERTAINTY = _mscl.MipTypes_CH_HEADING_UNCERTAINTY - CH_SOURCE = _mscl.MipTypes_CH_SOURCE - CH_INCLINATION = _mscl.MipTypes_CH_INCLINATION - CH_DECLINATION = _mscl.MipTypes_CH_DECLINATION - CH_PRESSURE = _mscl.MipTypes_CH_PRESSURE - CH_AGE = _mscl.MipTypes_CH_AGE - CH_NUM_CHANNELS = _mscl.MipTypes_CH_NUM_CHANNELS - CH_CORRECTION = _mscl.MipTypes_CH_CORRECTION - CH_RATE_CORRECTION = _mscl.MipTypes_CH_RATE_CORRECTION - CH_GEOMETRIC_ALTITUDE = _mscl.MipTypes_CH_GEOMETRIC_ALTITUDE - CH_GEOPOTENTIAL_ALTITUDE = _mscl.MipTypes_CH_GEOPOTENTIAL_ALTITUDE - CH_TEMPERATURE = _mscl.MipTypes_CH_TEMPERATURE - CH_DENSITY = _mscl.MipTypes_CH_DENSITY - CH_ALTITUDE = _mscl.MipTypes_CH_ALTITUDE - CH_DISPLACEMENT = _mscl.MipTypes_CH_DISPLACEMENT - CH_MAX_TEMP = _mscl.MipTypes_CH_MAX_TEMP - CH_MIN_TEMP = _mscl.MipTypes_CH_MIN_TEMP - CH_MEAN_TEMP = _mscl.MipTypes_CH_MEAN_TEMP - CH_BIAS_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_BIAS_ACCURACY_ESTIMATE - CH_DRIFT_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_DRIFT_ACCURACY_ESTIMATE - CH_SECONDS = _mscl.MipTypes_CH_SECONDS - CH_NUM_PACKETS = _mscl.MipTypes_CH_NUM_PACKETS - CH_GPS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GPS_CORRECTION_LATENCY - CH_GLONASS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GLONASS_CORRECTION_LATENCY - CH_GALILEO_CORRECTION_LATENCY = _mscl.MipTypes_CH_GALILEO_CORRECTION_LATENCY - CH_BEIDOU_CORRECTION_LATENCY = _mscl.MipTypes_CH_BEIDOU_CORRECTION_LATENCY - CH_HEIGHT = _mscl.MipTypes_CH_HEIGHT - CH_HEALTH = _mscl.MipTypes_CH_HEALTH - CH_INDEX = _mscl.MipTypes_CH_INDEX - CH_COUNT = _mscl.MipTypes_CH_COUNT - CH_SIGNAL_STRENGTH = _mscl.MipTypes_CH_SIGNAL_STRENGTH - CH_SIGNAL_QUALITY = _mscl.MipTypes_CH_SIGNAL_QUALITY - CH_RANGE = _mscl.MipTypes_CH_RANGE - CH_RANGE_UNC = _mscl.MipTypes_CH_RANGE_UNC - CH_ALPHA = _mscl.MipTypes_CH_ALPHA - CH_BETA = _mscl.MipTypes_CH_BETA - CH_DISTURBANCE_FLAGS = _mscl.MipTypes_CH_DISTURBANCE_FLAGS - CH_CARRIER_PHASE = _mscl.MipTypes_CH_CARRIER_PHASE - CH_CARRIER_PHASE_UNC = _mscl.MipTypes_CH_CARRIER_PHASE_UNC - CH_DOPPLER = _mscl.MipTypes_CH_DOPPLER - CH_DOPPLER_UNC = _mscl.MipTypes_CH_DOPPLER_UNC - CH_DELTA_TIME = _mscl.MipTypes_CH_DELTA_TIME - CH_DELTA_TICK = _mscl.MipTypes_CH_DELTA_TICK - CH_ERROR = _mscl.MipTypes_CH_ERROR - CH_ERROR_UNC = _mscl.MipTypes_CH_ERROR_UNC - CH_W = _mscl.MipTypes_CH_W - CH_M0 = _mscl.MipTypes_CH_M0 - CH_M1 = _mscl.MipTypes_CH_M1 - CH_M2 = _mscl.MipTypes_CH_M2 - CH_M3 = _mscl.MipTypes_CH_M3 - CH_M4 = _mscl.MipTypes_CH_M4 - CH_M5 = _mscl.MipTypes_CH_M5 - CH_M6 = _mscl.MipTypes_CH_M6 - CH_M7 = _mscl.MipTypes_CH_M7 - CH_M8 = _mscl.MipTypes_CH_M8 - CH_NANOSECONDS = _mscl.MipTypes_CH_NANOSECONDS - CH_VALID_FLAGS = _mscl.MipTypes_CH_VALID_FLAGS - CH_PPS_VALID = _mscl.MipTypes_CH_PPS_VALID - CH_LAST_PPS = _mscl.MipTypes_CH_LAST_PPS - CH_UDREI = _mscl.MipTypes_CH_UDREI - CH_PSEUDORANGE_CORRECTION = _mscl.MipTypes_CH_PSEUDORANGE_CORRECTION - CH_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_IONOSPHERIC_CORRECTION - CH_JAMMING_STATE = _mscl.MipTypes_CH_JAMMING_STATE - CH_SPOOFING_STATE = _mscl.MipTypes_CH_SPOOFING_STATE - CH_SYSTEM_ID = _mscl.MipTypes_CH_SYSTEM_ID - CH_SATELLITE_ID = _mscl.MipTypes_CH_SATELLITE_ID - CH_BIT_SYSTEM_GENERAL = _mscl.MipTypes_CH_BIT_SYSTEM_GENERAL - CH_BIT_SYSTEM_PROCESS = _mscl.MipTypes_CH_BIT_SYSTEM_PROCESS - CH_BIT_IMU_GENERAL = _mscl.MipTypes_CH_BIT_IMU_GENERAL - CH_BIT_IMU_SENSORS = _mscl.MipTypes_CH_BIT_IMU_SENSORS - CH_BIT_IMU_FACTORY_BITS = _mscl.MipTypes_CH_BIT_IMU_FACTORY_BITS - CH_BIT_FILTER_GENERAL = _mscl.MipTypes_CH_BIT_FILTER_GENERAL - CH_BIT_GNSS_GENERAL = _mscl.MipTypes_CH_BIT_GNSS_GENERAL - CH_BIT_GNSS_RECEIVERS = _mscl.MipTypes_CH_BIT_GNSS_RECEIVERS - - @staticmethod - def channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - - @staticmethod - def getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - - @staticmethod - def getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - - @staticmethod - def getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - - @staticmethod - def getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - - @staticmethod - def getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - - @staticmethod - def isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - - @staticmethod - def isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - - @staticmethod - def channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - - @staticmethod - def channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - - @staticmethod - def channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - - def __init__(self): - _mscl.MipTypes_swiginit(self, _mscl.new_MipTypes()) - __swig_destroy__ = _mscl.delete_MipTypes - -# Register MipTypes in _mscl: -_mscl.MipTypes_swigregister(MipTypes) - -def MipTypes_channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - -def MipTypes_getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - -def MipTypes_getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - -def MipTypes_getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - -def MipTypes_getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - -def MipTypes_getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - -def MipTypes_isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - -def MipTypes_isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - -def MipTypes_channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - -def MipTypes_channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - -def MipTypes_channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - -class MipChannelIdentifier(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - GNSS_RECEIVER_ID = _mscl.MipChannelIdentifier_GNSS_RECEIVER_ID - GNSS_BASE_STATION_ID = _mscl.MipChannelIdentifier_GNSS_BASE_STATION_ID - GNSS_CONSTELLATION = _mscl.MipChannelIdentifier_GNSS_CONSTELLATION - GNSS_SATELLITE_ID = _mscl.MipChannelIdentifier_GNSS_SATELLITE_ID - GNSS_SIGNAL_ID = _mscl.MipChannelIdentifier_GNSS_SIGNAL_ID - AIDING_MEASUREMENT_TYPE = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_TYPE - GNSS_RF_BAND = _mscl.MipChannelIdentifier_GNSS_RF_BAND - AIDING_MEASUREMENT_FRAME_ID = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_FRAME_ID - GNSS = _mscl.MipChannelIdentifier_GNSS - DUAL_ANTENNA = _mscl.MipChannelIdentifier_DUAL_ANTENNA - HEADING = _mscl.MipChannelIdentifier_HEADING - PRESSURE = _mscl.MipChannelIdentifier_PRESSURE - MAGNETOMETER = _mscl.MipChannelIdentifier_MAGNETOMETER - SPEED = _mscl.MipChannelIdentifier_SPEED - AIDING_POS_ECEF = _mscl.MipChannelIdentifier_AIDING_POS_ECEF - AIDING_POS_LLH = _mscl.MipChannelIdentifier_AIDING_POS_LLH - AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipChannelIdentifier_AIDING_HEIGHT_ABOVE_ELLIPSOID - AIDING_VEL_ECEF = _mscl.MipChannelIdentifier_AIDING_VEL_ECEF - AIDING_VEL_NED = _mscl.MipChannelIdentifier_AIDING_VEL_NED - AIDING_VEL_BODY_FRAME = _mscl.MipChannelIdentifier_AIDING_VEL_BODY_FRAME - AIDING_HEADING_TRUE = _mscl.MipChannelIdentifier_AIDING_HEADING_TRUE - AIDING_MAGNETIC_FIELD = _mscl.MipChannelIdentifier_AIDING_MAGNETIC_FIELD - AIDING_PRESSURE = _mscl.MipChannelIdentifier_AIDING_PRESSURE - UNKNOWN_CONSTELLATION = _mscl.MipChannelIdentifier_UNKNOWN_CONSTELLATION - GPS = _mscl.MipChannelIdentifier_GPS - GLONASS = _mscl.MipChannelIdentifier_GLONASS - GALILEO = _mscl.MipChannelIdentifier_GALILEO - BEIDOU = _mscl.MipChannelIdentifier_BEIDOU - UNKNOWN_SIGNAL = _mscl.MipChannelIdentifier_UNKNOWN_SIGNAL - GPS_L1CA = _mscl.MipChannelIdentifier_GPS_L1CA - GPS_L1P = _mscl.MipChannelIdentifier_GPS_L1P - GPS_L1Z = _mscl.MipChannelIdentifier_GPS_L1Z - GPS_L2CA = _mscl.MipChannelIdentifier_GPS_L2CA - GPS_L2P = _mscl.MipChannelIdentifier_GPS_L2P - GPS_L2Z = _mscl.MipChannelIdentifier_GPS_L2Z - GPS_L2CL = _mscl.MipChannelIdentifier_GPS_L2CL - GPS_L2CM = _mscl.MipChannelIdentifier_GPS_L2CM - GPS_L2CML = _mscl.MipChannelIdentifier_GPS_L2CML - GPS_L5I = _mscl.MipChannelIdentifier_GPS_L5I - GPS_L5Q = _mscl.MipChannelIdentifier_GPS_L5Q - GPS_L5IQ = _mscl.MipChannelIdentifier_GPS_L5IQ - GPS_L1CD = _mscl.MipChannelIdentifier_GPS_L1CD - GPS_L1CP = _mscl.MipChannelIdentifier_GPS_L1CP - GPS_L1CDP = _mscl.MipChannelIdentifier_GPS_L1CDP - GLONASS_G1CA = _mscl.MipChannelIdentifier_GLONASS_G1CA - GLONASS_G1P = _mscl.MipChannelIdentifier_GLONASS_G1P - GLONASS_G2C = _mscl.MipChannelIdentifier_GLONASS_G2C - GLONASS_G2P = _mscl.MipChannelIdentifier_GLONASS_G2P - GALILEO_E1C = _mscl.MipChannelIdentifier_GALILEO_E1C - GALILEO_E1A = _mscl.MipChannelIdentifier_GALILEO_E1A - GALILEO_E1B = _mscl.MipChannelIdentifier_GALILEO_E1B - GALILEO_E1BC = _mscl.MipChannelIdentifier_GALILEO_E1BC - GALILEO_E1ABC = _mscl.MipChannelIdentifier_GALILEO_E1ABC - GALILEO_E6C = _mscl.MipChannelIdentifier_GALILEO_E6C - GALILEO_E6A = _mscl.MipChannelIdentifier_GALILEO_E6A - GALILEO_E6B = _mscl.MipChannelIdentifier_GALILEO_E6B - GALILEO_E6BC = _mscl.MipChannelIdentifier_GALILEO_E6BC - GALILEO_E6ABC = _mscl.MipChannelIdentifier_GALILEO_E6ABC - GALILEO_E5BI = _mscl.MipChannelIdentifier_GALILEO_E5BI - GALILEO_E5BQ = _mscl.MipChannelIdentifier_GALILEO_E5BQ - GALILEO_E5BIQ = _mscl.MipChannelIdentifier_GALILEO_E5BIQ - GALILEO_E5ABI = _mscl.MipChannelIdentifier_GALILEO_E5ABI - GALILEO_E5ABQ = _mscl.MipChannelIdentifier_GALILEO_E5ABQ - GALILEO_E5ABIQ = _mscl.MipChannelIdentifier_GALILEO_E5ABIQ - GALILEO_E5AI = _mscl.MipChannelIdentifier_GALILEO_E5AI - GALILEO_E5AQ = _mscl.MipChannelIdentifier_GALILEO_E5AQ - GALILEO_E5AIQ = _mscl.MipChannelIdentifier_GALILEO_E5AIQ - SBAS_L1CA = _mscl.MipChannelIdentifier_SBAS_L1CA - SBAS_L5I = _mscl.MipChannelIdentifier_SBAS_L5I - SBAS_L5Q = _mscl.MipChannelIdentifier_SBAS_L5Q - SBAS_L5IQ = _mscl.MipChannelIdentifier_SBAS_L5IQ - QZSS_L1CA = _mscl.MipChannelIdentifier_QZSS_L1CA - QZSS_LEXS = _mscl.MipChannelIdentifier_QZSS_LEXS - QZSS_LEXL = _mscl.MipChannelIdentifier_QZSS_LEXL - QZSS_LEXSL = _mscl.MipChannelIdentifier_QZSS_LEXSL - QZSS_L2CM = _mscl.MipChannelIdentifier_QZSS_L2CM - QZSS_L2CL = _mscl.MipChannelIdentifier_QZSS_L2CL - QZSS_L2CML = _mscl.MipChannelIdentifier_QZSS_L2CML - QZSS_L5I = _mscl.MipChannelIdentifier_QZSS_L5I - QZSS_L5Q = _mscl.MipChannelIdentifier_QZSS_L5Q - QZSS_L5IQ = _mscl.MipChannelIdentifier_QZSS_L5IQ - QZSS_L1CD = _mscl.MipChannelIdentifier_QZSS_L1CD - QZSS_L1CP = _mscl.MipChannelIdentifier_QZSS_L1CP - QZSS_L1CDP = _mscl.MipChannelIdentifier_QZSS_L1CDP - BEIDOU_B1I = _mscl.MipChannelIdentifier_BEIDOU_B1I - BEIDOU_B1Q = _mscl.MipChannelIdentifier_BEIDOU_B1Q - BEIDOU_B1IQ = _mscl.MipChannelIdentifier_BEIDOU_B1IQ - BEIDOU_B3I = _mscl.MipChannelIdentifier_BEIDOU_B3I - BEIDOU_B3Q = _mscl.MipChannelIdentifier_BEIDOU_B3Q - BEIDOU_B3IQ = _mscl.MipChannelIdentifier_BEIDOU_B3IQ - BEIDOU_B2I = _mscl.MipChannelIdentifier_BEIDOU_B2I - BEIDOU_B2Q = _mscl.MipChannelIdentifier_BEIDOU_B2Q - BEIDOU_B2IQ = _mscl.MipChannelIdentifier_BEIDOU_B2IQ - UNKNOWN_RF_BAND = _mscl.MipChannelIdentifier_UNKNOWN_RF_BAND - RF_BAND_L1 = _mscl.MipChannelIdentifier_RF_BAND_L1 - RF_BAND_L2 = _mscl.MipChannelIdentifier_RF_BAND_L2 - RF_BAND_L5 = _mscl.MipChannelIdentifier_RF_BAND_L5 - - def __init__(self, *args): - _mscl.MipChannelIdentifier_swiginit(self, _mscl.new_MipChannelIdentifier(*args)) - __swig_destroy__ = _mscl.delete_MipChannelIdentifier - - def identifierType(self): - return _mscl.MipChannelIdentifier_identifierType(self) - - def id(self): - return _mscl.MipChannelIdentifier_id(self) - - def hasSpecifier(self): - return _mscl.MipChannelIdentifier_hasSpecifier(self) - - def specifier(self): - return _mscl.MipChannelIdentifier_specifier(self) - - def name(self, standardizedFormat=True): - return _mscl.MipChannelIdentifier_name(self, standardizedFormat) - -# Register MipChannelIdentifier in _mscl: -_mscl.MipChannelIdentifier_swigregister(MipChannelIdentifier) - -class MipCommandBytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - id = property(_mscl.MipCommandBytes_id_get, _mscl.MipCommandBytes_id_set) - commands = property(_mscl.MipCommandBytes_commands_get, _mscl.MipCommandBytes_commands_set) - buildCmdFailed = property(_mscl.MipCommandBytes_buildCmdFailed_get, _mscl.MipCommandBytes_buildCmdFailed_set) - sendCmdFailed = property(_mscl.MipCommandBytes_sendCmdFailed_get, _mscl.MipCommandBytes_sendCmdFailed_set) - - def __init__(self, *args): - _mscl.MipCommandBytes_swiginit(self, _mscl.new_MipCommandBytes(*args)) - - def add(self, cmd): - return _mscl.MipCommandBytes_add(self, cmd) - - def valid(self): - return _mscl.MipCommandBytes_valid(self) - __swig_destroy__ = _mscl.delete_MipCommandBytes - -# Register MipCommandBytes in _mscl: -_mscl.MipCommandBytes_swigregister(MipCommandBytes) - -class AidingMeasurementInput(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - ACK_NACK = _mscl.AidingMeasurementInput_ACK_NACK - ECHO_INPUT = _mscl.AidingMeasurementInput_ECHO_INPUT - - def toMipFieldValues(self): - return _mscl.AidingMeasurementInput_toMipFieldValues(self) - - def timestamp(self, *args): - return _mscl.AidingMeasurementInput_timestamp(self, *args) - - def timebase(self): - return _mscl.AidingMeasurementInput_timebase(self) - - def frameId(self, *args): - return _mscl.AidingMeasurementInput_frameId(self, *args) - - def validFlags(self, *args): - return _mscl.AidingMeasurementInput_validFlags(self, *args) - -# Register AidingMeasurementInput in _mscl: -_mscl.AidingMeasurementInput_swigregister(AidingMeasurementInput) - -class AidingMeasurementPosition(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementPosition_X - LATITUDE = _mscl.AidingMeasurementPosition_LATITUDE - Y = _mscl.AidingMeasurementPosition_Y - LONGITUDE = _mscl.AidingMeasurementPosition_LONGITUDE - Z = _mscl.AidingMeasurementPosition_Z - HEIGHT = _mscl.AidingMeasurementPosition_HEIGHT - ALTITUDE = _mscl.AidingMeasurementPosition_ALTITUDE - - def __init__(self, *args): - _mscl.AidingMeasurementPosition_swiginit(self, _mscl.new_AidingMeasurementPosition(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPosition - - def position(self, *args): - return _mscl.AidingMeasurementPosition_position(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPosition_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementPosition_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPosition_valid(self, *args) - -# Register AidingMeasurementPosition in _mscl: -_mscl.AidingMeasurementPosition_swigregister(AidingMeasurementPosition) - -class AidingMeasurementHeight(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeight_swiginit(self, _mscl.new_AidingMeasurementHeight(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeight - - def height(self, *args): - return _mscl.AidingMeasurementHeight_height(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeight_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeight_valid(self, *args) - -# Register AidingMeasurementHeight in _mscl: -_mscl.AidingMeasurementHeight_swigregister(AidingMeasurementHeight) - -class AidingMeasurementVelocity(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementVelocity_X - NORTH = _mscl.AidingMeasurementVelocity_NORTH - Y = _mscl.AidingMeasurementVelocity_Y - EAST = _mscl.AidingMeasurementVelocity_EAST - Z = _mscl.AidingMeasurementVelocity_Z - DOWN = _mscl.AidingMeasurementVelocity_DOWN - - def __init__(self, *args): - _mscl.AidingMeasurementVelocity_swiginit(self, _mscl.new_AidingMeasurementVelocity(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementVelocity - - def velocity(self, *args): - return _mscl.AidingMeasurementVelocity_velocity(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementVelocity_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementVelocity_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementVelocity_valid(self, *args) - -# Register AidingMeasurementVelocity in _mscl: -_mscl.AidingMeasurementVelocity_swigregister(AidingMeasurementVelocity) - -class AidingMeasurementHeading(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeading_swiginit(self, _mscl.new_AidingMeasurementHeading(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeading - - def heading(self, *args): - return _mscl.AidingMeasurementHeading_heading(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeading_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeading_valid(self, *args) - -# Register AidingMeasurementHeading in _mscl: -_mscl.AidingMeasurementHeading_swigregister(AidingMeasurementHeading) - -class AidingMeasurementMagneticField(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementMagneticField_X - Y = _mscl.AidingMeasurementMagneticField_Y - Z = _mscl.AidingMeasurementMagneticField_Z - - def __init__(self, *args): - _mscl.AidingMeasurementMagneticField_swiginit(self, _mscl.new_AidingMeasurementMagneticField(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementMagneticField - - def magneticField(self, *args): - return _mscl.AidingMeasurementMagneticField_magneticField(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementMagneticField_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementMagneticField_valid(self, *args) - -# Register AidingMeasurementMagneticField in _mscl: -_mscl.AidingMeasurementMagneticField_swigregister(AidingMeasurementMagneticField) - -class AidingMeasurementPressure(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementPressure_swiginit(self, _mscl.new_AidingMeasurementPressure(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPressure - - def pressure(self, *args): - return _mscl.AidingMeasurementPressure_pressure(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPressure_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPressure_valid(self, *args) - -# Register AidingMeasurementPressure in _mscl: -_mscl.AidingMeasurementPressure_swigregister(AidingMeasurementPressure) - -class GnssReceiverInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GnssReceiverInfo_swiginit(self, _mscl.new_GnssReceiverInfo(*args)) - id = property(_mscl.GnssReceiverInfo_id_get, _mscl.GnssReceiverInfo_id_set) - targetDataClass = property(_mscl.GnssReceiverInfo_targetDataClass_get, _mscl.GnssReceiverInfo_targetDataClass_set) - description = property(_mscl.GnssReceiverInfo_description_get, _mscl.GnssReceiverInfo_description_set) - module = property(_mscl.GnssReceiverInfo_module_get, _mscl.GnssReceiverInfo_module_set) - fwId = property(_mscl.GnssReceiverInfo_fwId_get, _mscl.GnssReceiverInfo_fwId_set) - fwVersion = property(_mscl.GnssReceiverInfo_fwVersion_get, _mscl.GnssReceiverInfo_fwVersion_set) - __swig_destroy__ = _mscl.delete_GnssReceiverInfo - -# Register GnssReceiverInfo in _mscl: -_mscl.GnssReceiverInfo_swigregister(GnssReceiverInfo) -GnssReceiverInfo.INFO_NOT_FOUND = _mscl.cvar.GnssReceiverInfo_INFO_NOT_FOUND - -class DeviceCommPort(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SPECIAL = _mscl.DeviceCommPort_SPECIAL - UART = _mscl.DeviceCommPort_UART - USB = _mscl.DeviceCommPort_USB - NONE = _mscl.DeviceCommPort_NONE - MIP_COMMANDS = _mscl.DeviceCommPort_MIP_COMMANDS - MIP_DATA = _mscl.DeviceCommPort_MIP_DATA - NMEA = _mscl.DeviceCommPort_NMEA - RTCM = _mscl.DeviceCommPort_RTCM - SPARTN = _mscl.DeviceCommPort_SPARTN - ALL = _mscl.DeviceCommPort_ALL - - def __init__(self, *args): - _mscl.DeviceCommPort_swiginit(self, _mscl.new_DeviceCommPort(*args)) - - def interfaceId(self): - return _mscl.DeviceCommPort_interfaceId(self) - type = property(_mscl.DeviceCommPort_type_get, _mscl.DeviceCommPort_type_set) - id = property(_mscl.DeviceCommPort_id_get, _mscl.DeviceCommPort_id_set) - inputProtocols = property(_mscl.DeviceCommPort_inputProtocols_get, _mscl.DeviceCommPort_inputProtocols_set) - outputProtocols = property(_mscl.DeviceCommPort_outputProtocols_get, _mscl.DeviceCommPort_outputProtocols_set) - __swig_destroy__ = _mscl.delete_DeviceCommPort - -# Register DeviceCommPort in _mscl: -_mscl.DeviceCommPort_swigregister(DeviceCommPort) - -class EventTypeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTypeInfo_swiginit(self, _mscl.new_EventTypeInfo(*args)) - type = property(_mscl.EventTypeInfo_type_get, _mscl.EventTypeInfo_type_set) - maxInstances = property(_mscl.EventTypeInfo_maxInstances_get, _mscl.EventTypeInfo_maxInstances_set) - __swig_destroy__ = _mscl.delete_EventTypeInfo - -# Register EventTypeInfo in _mscl: -_mscl.EventTypeInfo_swigregister(EventTypeInfo) - -class EventSupportInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - TRIGGERS = _mscl.EventSupportInfo_TRIGGERS - ACTIONS = _mscl.EventSupportInfo_ACTIONS - query = property(_mscl.EventSupportInfo_query_get, _mscl.EventSupportInfo_query_set) - maxInstances = property(_mscl.EventSupportInfo_maxInstances_get, _mscl.EventSupportInfo_maxInstances_set) - entries = property(_mscl.EventSupportInfo_entries_get, _mscl.EventSupportInfo_entries_set) - - def __init__(self): - _mscl.EventSupportInfo_swiginit(self, _mscl.new_EventSupportInfo()) - __swig_destroy__ = _mscl.delete_EventSupportInfo - -# Register EventSupportInfo in _mscl: -_mscl.EventSupportInfo_swigregister(EventSupportInfo) - -class SensorRange(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ALL = _mscl.SensorRange_ALL - ACCEL_G = _mscl.SensorRange_ACCEL_G - GYRO_DPS = _mscl.SensorRange_GYRO_DPS - MAG_GAUSS = _mscl.SensorRange_MAG_GAUSS - PRESSURE_HPA = _mscl.SensorRange_PRESSURE_HPA - - def __init__(self): - _mscl.SensorRange_swiginit(self, _mscl.new_SensorRange()) - - def type(self): - return _mscl.SensorRange_type(self) - - def range(self): - return _mscl.SensorRange_range(self) - - def id(self): - return _mscl.SensorRange_id(self) - __swig_destroy__ = _mscl.delete_SensorRange - -# Register SensorRange in _mscl: -_mscl.SensorRange_swigregister(SensorRange) - -class SupportedSensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.SupportedSensorRanges_swiginit(self, _mscl.new_SupportedSensorRanges()) - - def options(self): - return _mscl.SupportedSensorRanges_options(self) - - def lookupRecommended(self, type, range): - return _mscl.SupportedSensorRanges_lookupRecommended(self, type, range) - __swig_destroy__ = _mscl.delete_SupportedSensorRanges - -# Register SupportedSensorRanges in _mscl: -_mscl.SupportedSensorRanges_swigregister(SupportedSensorRanges) - -class InertialTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - PORTABLE_VEHICLE = _mscl.InertialTypes_PORTABLE_VEHICLE - AUTOMOTIVE_VEHICLE = _mscl.InertialTypes_AUTOMOTIVE_VEHICLE - AIRBORNE_VEHICLE = _mscl.InertialTypes_AIRBORNE_VEHICLE - AIRBORNE_HIGH_G_VEHICLE = _mscl.InertialTypes_AIRBORNE_HIGH_G_VEHICLE - GPS_PORTABLE = _mscl.InertialTypes_GPS_PORTABLE - GPS_STATIONARY = _mscl.InertialTypes_GPS_STATIONARY - GPS_PEDESTRIAN = _mscl.InertialTypes_GPS_PEDESTRIAN - GPS_AUTOMOTIVE = _mscl.InertialTypes_GPS_AUTOMOTIVE - GPS_SEA = _mscl.InertialTypes_GPS_SEA - GPS_AIRBORNE_1G = _mscl.InertialTypes_GPS_AIRBORNE_1G - GPS_AIRBORNE_2G = _mscl.InertialTypes_GPS_AIRBORNE_2G - GPS_AIRBORNE_4G = _mscl.InertialTypes_GPS_AIRBORNE_4G - RESET_ALL_AXIS = _mscl.InertialTypes_RESET_ALL_AXIS - TARE_ROLL_AXIS = _mscl.InertialTypes_TARE_ROLL_AXIS - TARE_PITCH_AXIS = _mscl.InertialTypes_TARE_PITCH_AXIS - TARE_YAW_AXIS = _mscl.InertialTypes_TARE_YAW_AXIS - INTERNAL_GNSS_ALL = _mscl.InertialTypes_INTERNAL_GNSS_ALL - EXTERNAL_GNSS = _mscl.InertialTypes_EXTERNAL_GNSS - INTERNAL_GNSS1 = _mscl.InertialTypes_INTERNAL_GNSS1 - INTERNAL_GNSS2 = _mscl.InertialTypes_INTERNAL_GNSS2 - FIX_SBAS_CORRECTIONS = _mscl.InertialTypes_FIX_SBAS_CORRECTIONS - FIX_DGNSS_CORRECTIONS = _mscl.InertialTypes_FIX_DGNSS_CORRECTIONS - FIXTYPE_3D = _mscl.InertialTypes_FIXTYPE_3D - FIXTYPE_2D = _mscl.InertialTypes_FIXTYPE_2D - FIXTYPE_TIMEONLY = _mscl.InertialTypes_FIXTYPE_TIMEONLY - FIXTYPE_NONE = _mscl.InertialTypes_FIXTYPE_NONE - FIXTYPE_INVALID = _mscl.InertialTypes_FIXTYPE_INVALID - FIXTYPE_RTK_FLOAT = _mscl.InertialTypes_FIXTYPE_RTK_FLOAT - FIXTYPE_RTK_FIXED = _mscl.InertialTypes_FIXTYPE_RTK_FIXED - FIXTYPE_DUAL_ANTENNA_NONE = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_NONE - FIXTYPE_DUAL_ANTENNA_FLOAT = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FLOAT - FIXTYPE_DUAL_ANTENNA_FIXED = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FIXED - DATA_VALID_REC_1 = _mscl.InertialTypes_DATA_VALID_REC_1 - DATA_VALID_REC_2 = _mscl.InertialTypes_DATA_VALID_REC_2 - ANTENNA_OFFSETS_VALID = _mscl.InertialTypes_ANTENNA_OFFSETS_VALID - SVFLAG_NAVIGATION = _mscl.InertialTypes_SVFLAG_NAVIGATION - SVFLAG_HEALTHY = _mscl.InertialTypes_SVFLAG_HEALTHY - DEVICE_AHRS = _mscl.InertialTypes_DEVICE_AHRS - DEVICE_GPS = _mscl.InertialTypes_DEVICE_GPS - ON_FULL_PERFORMANCE = _mscl.InertialTypes_ON_FULL_PERFORMANCE - ON_LOW_POWER = _mscl.InertialTypes_ON_LOW_POWER - SLEEP = _mscl.InertialTypes_SLEEP - OFF = _mscl.InertialTypes_OFF - STANDARD_MIP = _mscl.InertialTypes_STANDARD_MIP - WRAPPED_RAW = _mscl.InertialTypes_WRAPPED_RAW - SENSORSTATE_OFF = _mscl.InertialTypes_SENSORSTATE_OFF - SENSORSTATE_ON = _mscl.InertialTypes_SENSORSTATE_ON - SENSORSTATE_UNKNOWN = _mscl.InertialTypes_SENSORSTATE_UNKNOWN - ANTENNASTATE_INIT = _mscl.InertialTypes_ANTENNASTATE_INIT - ANTENNASTATE_SHORT = _mscl.InertialTypes_ANTENNASTATE_SHORT - ANTENNASTATE_OPEN = _mscl.InertialTypes_ANTENNASTATE_OPEN - ANTENNASTATE_GOOD = _mscl.InertialTypes_ANTENNASTATE_GOOD - ANTENNASTATE_UNKNOWN = _mscl.InertialTypes_ANTENNASTATE_UNKNOWN - ANTENNAPOWER_OFF = _mscl.InertialTypes_ANTENNAPOWER_OFF - ANTENNAPOWER_ON = _mscl.InertialTypes_ANTENNAPOWER_ON - ANTENNAPOWER_UNKNOWN = _mscl.InertialTypes_ANTENNAPOWER_UNKNOWN - FILTERSTATE_STARTUP = _mscl.InertialTypes_FILTERSTATE_STARTUP - FILTERSTATE_INIT = _mscl.InertialTypes_FILTERSTATE_INIT - FILTERSTATE_RUNNING_SLN_VALID = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_VALID - FILTERSTATE_RUNNING_SLN_ERROR = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_ERROR - FILTERSTATE_VERT_GYRO = _mscl.InertialTypes_FILTERSTATE_VERT_GYRO - FILTERSTATE_AHRS = _mscl.InertialTypes_FILTERSTATE_AHRS - FILTERSTATE_FULL_NAV = _mscl.InertialTypes_FILTERSTATE_FULL_NAV - FILTERSTATUS_IMU_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_IMU_UNAVAILABLE - FILTERSTATUS_GPS_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_GPS_UNAVAILABLE - FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC = _mscl.InertialTypes_FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC - FILTERSTATUS_POS_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_POS_COVARIANCE_HIGH_WARN - FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN - FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN - FILTERSTATUS_NAN_IN_SOLUTION = _mscl.InertialTypes_FILTERSTATUS_NAN_IN_SOLUTION - FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN - FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN - FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN - FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN - FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_CONDITION = _mscl.InertialTypes_FILTERSTATUS_CONDITION - FILTERSTATUS_ROLL_PITCH_WARNING = _mscl.InertialTypes_FILTERSTATUS_ROLL_PITCH_WARNING - FILTERSTATUS_HEADING_WARNING = _mscl.InertialTypes_FILTERSTATUS_HEADING_WARNING - FILTERSTATUS_POSITION_WARNING = _mscl.InertialTypes_FILTERSTATUS_POSITION_WARNING - FILTERSTATUS_VELOCITY_WARNING = _mscl.InertialTypes_FILTERSTATUS_VELOCITY_WARNING - FILTERSTATUS_IMU_BIAS_WARNING = _mscl.InertialTypes_FILTERSTATUS_IMU_BIAS_WARNING - FILTERSTATUS_GNSS_CLK_WARNING = _mscl.InertialTypes_FILTERSTATUS_GNSS_CLK_WARNING - FILTERSTATUS_ANT_LEVER_ARM_WARNING = _mscl.InertialTypes_FILTERSTATUS_ANT_LEVER_ARM_WARNING - FILTERSTATUS_MOUNTING_TRANSFORM_WARNING = _mscl.InertialTypes_FILTERSTATUS_MOUNTING_TRANSFORM_WARNING - FILTERSTATUS_ATT_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_ATT_NOT_INIT - FILTERSTATUS_POS_VEL_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_POS_VEL_NOT_INIT - STABLE = _mscl.InertialTypes_STABLE - CONVERGING = _mscl.InertialTypes_CONVERGING - UNSTABLE = _mscl.InertialTypes_UNSTABLE - DGNSSBASE_UDRE_SCALE_FACTOR_1_00 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_1_00 - DGNSSBASE_UDRE_SCALE_FACTOR_0_75 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_75 - DGNSSBASE_UDRE_SCALE_FACTOR_0_50 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_50 - DGNSSBASE_UDRE_SCALE_FACTOR_0_30 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_30 - DGNSSBASE_UDRE_SCALE_FACTOR_0_20 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_20 - DGNSSBASE_UDRE_SCALE_FACTOR_0_10 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_10 - DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED - DGNSSBASE_REFERENCE_STATION_NOT_WORKING = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_NOT_WORKING - HEADINGSOURCE_NONE = _mscl.InertialTypes_HEADINGSOURCE_NONE - HEADINGSOURCE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_MAGNETOMETER - HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR - HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD = _mscl.InertialTypes_HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD - HEADINGSOURCE_GNSS_DUAL_ANTENNA = _mscl.InertialTypes_HEADINGSOURCE_GNSS_DUAL_ANTENNA - ENABLE_NONE = _mscl.InertialTypes_ENABLE_NONE - ENABLE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_ENABLE_INTERNAL_MAGNETOMETER - ENABLE_INTERNAL_GNSS = _mscl.InertialTypes_ENABLE_INTERNAL_GNSS - ENABLE_EXTERNAL_MESSAGES = _mscl.InertialTypes_ENABLE_EXTERNAL_MESSAGES - ENABLE_MAGNETOMETER_AND_GNSS = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_GNSS - ENABLE_GNSS_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_GNSS_AND_EXTERNAL - ENABLE_MAGNETOMETER_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_EXTERNAL - ENABLE_ALL = _mscl.InertialTypes_ENABLE_ALL - ENABLE_GYRO_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_BIAS_ESTIMATION - ENABLE_ACCEL_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_BIAS_ESTIMATION - ENABLE_GYRO_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_SCALE_FACTOR_ESTIMATION - ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION - ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION = _mscl.InertialTypes_ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION - ENABLE_HARD_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_HARD_IRON_AUTO_CALIBRATION - ENABLE_SOFT_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_SOFT_IRON_AUTO_CALIBRATION - NONE = _mscl.InertialTypes_NONE - WORLD_MAGNETIC_MODEL = _mscl.InertialTypes_WORLD_MAGNETIC_MODEL - MANUAL = _mscl.InertialTypes_MANUAL - ADAPTIVE_MEASUREMENT_DISABLE = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_DISABLE - ADAPTIVE_MEASUREMENT_ENABLE_FIXED = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_FIXED - ADAPTIVE_MEASUREMENT_ENABLE_AUTO = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_AUTO - GNSS_POS_VEL_AIDING = _mscl.InertialTypes_GNSS_POS_VEL_AIDING - GNSS_HEADING_AIDING = _mscl.InertialTypes_GNSS_HEADING_AIDING - ALTIMETER_AIDING = _mscl.InertialTypes_ALTIMETER_AIDING - ODOMETER_AIDING = _mscl.InertialTypes_ODOMETER_AIDING - MAGNETOMETER_AIDING = _mscl.InertialTypes_MAGNETOMETER_AIDING - EXTERNAL_HEADING_AIDING = _mscl.InertialTypes_EXTERNAL_HEADING_AIDING - EXTERNAL_ALTIMETER_AIDING = _mscl.InertialTypes_EXTERNAL_ALTIMETER_AIDING - EXTERNAL_MAGNETOMETER_AIDING = _mscl.InertialTypes_EXTERNAL_MAGNETOMETER_AIDING - BODY_FRAME_VEL_AIDING = _mscl.InertialTypes_BODY_FRAME_VEL_AIDING - ALL_AIDING_MEASUREMENTS = _mscl.InertialTypes_ALL_AIDING_MEASUREMENTS - GPS = _mscl.InertialTypes_GPS - SBAS = _mscl.InertialTypes_SBAS - GALILEO = _mscl.InertialTypes_GALILEO - BEIDOU = _mscl.InertialTypes_BEIDOU - QZSS = _mscl.InertialTypes_QZSS - GLONASS = _mscl.InertialTypes_GLONASS - FILTERING_OFF = _mscl.InertialTypes_FILTERING_OFF - FILTERING_CONSERVATIVE = _mscl.InertialTypes_FILTERING_CONSERVATIVE - FILTERING_MODERATE = _mscl.InertialTypes_FILTERING_MODERATE - FILTERING_AGGRESSIVE = _mscl.InertialTypes_FILTERING_AGGRESSIVE - FACTORY_STREAMING_OVERWRITE = _mscl.InertialTypes_FACTORY_STREAMING_OVERWRITE - FACTORY_STREAMING_MERGE = _mscl.InertialTypes_FACTORY_STREAMING_MERGE - FACTORY_STREAMING_ADDITIVE = _mscl.InertialTypes_FACTORY_STREAMING_ADDITIVE - PPS_DISABLED = _mscl.InertialTypes_PPS_DISABLED - PPS_RECEIVER_1 = _mscl.InertialTypes_PPS_RECEIVER_1 - PPS_RECEIVER_2 = _mscl.InertialTypes_PPS_RECEIVER_2 - PPS_GPIO = _mscl.InertialTypes_PPS_GPIO - PPS_GENERATED = _mscl.InertialTypes_PPS_GENERATED - GNSS_AIDING_TIGHT_COUPLING = _mscl.InertialTypes_GNSS_AIDING_TIGHT_COUPLING - GNSS_AIDING_DIFFERENTIAL = _mscl.InertialTypes_GNSS_AIDING_DIFFERENTIAL - GNSS_AIDING_INTEGER_FIX = _mscl.InertialTypes_GNSS_AIDING_INTEGER_FIX - GNSS_AIDING_GPS = _mscl.InertialTypes_GNSS_AIDING_GPS - GNSS_AIDING_GLONASS = _mscl.InertialTypes_GNSS_AIDING_GLONASS - GNSS_AIDING_GALILEO = _mscl.InertialTypes_GNSS_AIDING_GALILEO - GNSS_AIDING_BEIDOU = _mscl.InertialTypes_GNSS_AIDING_BEIDOU - GNSS_AIDING_NO_FIX = _mscl.InertialTypes_GNSS_AIDING_NO_FIX - GNSS_AIDING_CONFIG_ERROR = _mscl.InertialTypes_GNSS_AIDING_CONFIG_ERROR - AIDING_MEASUREMENT_ENABLED = _mscl.InertialTypes_AIDING_MEASUREMENT_ENABLED - AIDING_MEASUREMENT_USED = _mscl.InertialTypes_AIDING_MEASUREMENT_USED - AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH - AIDING_MEASUREMENT_WARNING_SAMPLE_TIME = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_SAMPLE_TIME - AIDING_MEASUREMENT_CONFIG_ERROR = _mscl.InertialTypes_AIDING_MEASUREMENT_CONFIG_ERROR - AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED = _mscl.InertialTypes_AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED - RTK_CORRECTION_ANTENNA_POS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_POS_RECEIVED - RTK_CORRECTION_ANTENNA_DESC_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_DESC_RECEIVED - RTK_CORRECTION_GPS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GPS_RECEIVED - RTK_CORRECTION_GLONASS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GLONASS_RECEIVED - RTK_CORRECTION_GALILEO_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GALILEO_RECEIVED - RTK_CORRECTION_BEIDOU_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_BEIDOU_RECEIVED - RTK_CORRECTION_USING_GPS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GPS_MSM - RTK_CORRECTION_USING_GLONASS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GLONASS_MSM - SIGNAL_QUALITY_NONE = _mscl.InertialTypes_SIGNAL_QUALITY_NONE - SIGNAL_QUALITY_SEARCHING = _mscl.InertialTypes_SIGNAL_QUALITY_SEARCHING - SIGNAL_QUALITY_ACQUIRED = _mscl.InertialTypes_SIGNAL_QUALITY_ACQUIRED - SIGNAL_QUALITY_UNUSABLE = _mscl.InertialTypes_SIGNAL_QUALITY_UNUSABLE - SIGNAL_QUALITY_TIME_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_TIME_LOCKED - SIGNAL_QUALITY_FULLY_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_FULLY_LOCKED - OVERRANGE_ACCEL_X = _mscl.InertialTypes_OVERRANGE_ACCEL_X - OVERRANGE_ACCEL_Y = _mscl.InertialTypes_OVERRANGE_ACCEL_Y - OVERRANGE_ACCEL_Z = _mscl.InertialTypes_OVERRANGE_ACCEL_Z - OVERRANGE_GYRO_X = _mscl.InertialTypes_OVERRANGE_GYRO_X - OVERRANGE_GYRO_Y = _mscl.InertialTypes_OVERRANGE_GYRO_Y - OVERRANGE_GYRO_Z = _mscl.InertialTypes_OVERRANGE_GYRO_Z - OVERRANGE_MAG_X = _mscl.InertialTypes_OVERRANGE_MAG_X - OVERRANGE_MAG_Y = _mscl.InertialTypes_OVERRANGE_MAG_Y - OVERRANGE_MAG_Z = _mscl.InertialTypes_OVERRANGE_MAG_Z - OVERRANGE_PRESSURE = _mscl.InertialTypes_OVERRANGE_PRESSURE - UNKNOWN_SBAS_SYSTEM = _mscl.InertialTypes_UNKNOWN_SBAS_SYSTEM - WAAS = _mscl.InertialTypes_WAAS - EGNOS = _mscl.InertialTypes_EGNOS - MSAS = _mscl.InertialTypes_MSAS - GAGAN = _mscl.InertialTypes_GAGAN - SBAS_INFO_RANGE_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_RANGE_AVAILABLE - SBAS_INFO_CORRECTIONS_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_CORRECTIONS_AVAILABLE - SBAS_INFO_INTEGRITY_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_INTEGRITY_AVAILABLE - SBAS_INFO_TEST = _mscl.InertialTypes_SBAS_INFO_TEST - JAMMING_STATE_UNKNOWN = _mscl.InertialTypes_JAMMING_STATE_UNKNOWN - JAMMING_STATE_NONE = _mscl.InertialTypes_JAMMING_STATE_NONE - JAMMING_STATE_PARTIAL = _mscl.InertialTypes_JAMMING_STATE_PARTIAL - JAMMING_STATE_SIGNIFICANT = _mscl.InertialTypes_JAMMING_STATE_SIGNIFICANT - SPOOFING_STATE_UNKNOWN = _mscl.InertialTypes_SPOOFING_STATE_UNKNOWN - SPOOFING_STATE_NONE = _mscl.InertialTypes_SPOOFING_STATE_NONE - SPOOFING_STATE_PARTIAL = _mscl.InertialTypes_SPOOFING_STATE_PARTIAL - SPOOFING_STATE_SIGNIFICANT = _mscl.InertialTypes_SPOOFING_STATE_SIGNIFICANT - - def __init__(self): - _mscl.InertialTypes_swiginit(self, _mscl.new_InertialTypes()) - __swig_destroy__ = _mscl.delete_InertialTypes - -# Register InertialTypes in _mscl: -_mscl.InertialTypes_swigregister(InertialTypes) - -class NmeaMessageFormat(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_MESSAGES = _mscl.NmeaMessageFormat_MAX_MESSAGES - GGA = _mscl.NmeaMessageFormat_GGA - GLL = _mscl.NmeaMessageFormat_GLL - GSV = _mscl.NmeaMessageFormat_GSV - RMC = _mscl.NmeaMessageFormat_RMC - VTG = _mscl.NmeaMessageFormat_VTG - HDT = _mscl.NmeaMessageFormat_HDT - ZDA = _mscl.NmeaMessageFormat_ZDA - MSRA = _mscl.NmeaMessageFormat_MSRA - MSRR = _mscl.NmeaMessageFormat_MSRR - IGNORED = _mscl.NmeaMessageFormat_IGNORED - GNSS = _mscl.NmeaMessageFormat_GNSS - GPS = _mscl.NmeaMessageFormat_GPS - GALILEO = _mscl.NmeaMessageFormat_GALILEO - GLONASS = _mscl.NmeaMessageFormat_GLONASS - - def __init__(self): - _mscl.NmeaMessageFormat_swiginit(self, _mscl.new_NmeaMessageFormat()) - __swig_destroy__ = _mscl.delete_NmeaMessageFormat - - def sentenceType(self, *args): - return _mscl.NmeaMessageFormat_sentenceType(self, *args) - - def talkerId(self, *args): - return _mscl.NmeaMessageFormat_talkerId(self, *args) - - def sourceDataClass(self, *args): - return _mscl.NmeaMessageFormat_sourceDataClass(self, *args) - - def sampleRate(self, *args): - return _mscl.NmeaMessageFormat_sampleRate(self, *args) - - @staticmethod - def talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - - @staticmethod - def dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - - @staticmethod - def supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - - @staticmethod - def toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -# Register NmeaMessageFormat in _mscl: -_mscl.NmeaMessageFormat_swigregister(NmeaMessageFormat) -NmeaMessageFormat.MAX_FREQUENCY = _mscl.cvar.NmeaMessageFormat_MAX_FREQUENCY - -def NmeaMessageFormat_talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - -def NmeaMessageFormat_dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - -def NmeaMessageFormat_supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - -def NmeaMessageFormat_toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -class Matrix_3x3(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Matrix_3x3_swiginit(self, _mscl.new_Matrix_3x3(*args)) - __swig_destroy__ = _mscl.delete_Matrix_3x3 - - def set(self, row, col, value): - return _mscl.Matrix_3x3_set(self, row, col, value) - - def at(self, row, col): - return _mscl.Matrix_3x3_at(self, row, col) - - def __str__(self): - return _mscl.Matrix_3x3___str__(self) - - def asMipFieldValues(self): - return _mscl.Matrix_3x3_asMipFieldValues(self) - -# Register Matrix_3x3 in _mscl: -_mscl.Matrix_3x3_swigregister(Matrix_3x3) - -class TimeUpdate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, timeOfWeek, weekNumber, timeAccuracy=0): - _mscl.TimeUpdate_swiginit(self, _mscl.new_TimeUpdate(timeOfWeek, weekNumber, timeAccuracy)) - __swig_destroy__ = _mscl.delete_TimeUpdate - - def timeOfWeek(self): - return _mscl.TimeUpdate_timeOfWeek(self) - - def weekNumber(self): - return _mscl.TimeUpdate_weekNumber(self) - - def timeAccuracy(self): - return _mscl.TimeUpdate_timeAccuracy(self) - -# Register TimeUpdate in _mscl: -_mscl.TimeUpdate_swigregister(TimeUpdate) - -class ZUPTSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, enable, threshold): - _mscl.ZUPTSettingsData_swiginit(self, _mscl.new_ZUPTSettingsData(enable, threshold)) - enabled = property(_mscl.ZUPTSettingsData_enabled_get, _mscl.ZUPTSettingsData_enabled_set) - threshold = property(_mscl.ZUPTSettingsData_threshold_get, _mscl.ZUPTSettingsData_threshold_set) - __swig_destroy__ = _mscl.delete_ZUPTSettingsData - -# Register ZUPTSettingsData in _mscl: -_mscl.ZUPTSettingsData_swigregister(ZUPTSettingsData) - -class FixedReferencePositionData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.FixedReferencePositionData_swiginit(self, _mscl.new_FixedReferencePositionData(*args)) - enable = property(_mscl.FixedReferencePositionData_enable_get, _mscl.FixedReferencePositionData_enable_set) - referencePosition = property(_mscl.FixedReferencePositionData_referencePosition_get, _mscl.FixedReferencePositionData_referencePosition_set) - __swig_destroy__ = _mscl.delete_FixedReferencePositionData - -# Register FixedReferencePositionData in _mscl: -_mscl.FixedReferencePositionData_swigregister(FixedReferencePositionData) - -class SBASSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enableSBAS = property(_mscl.SBASSettingsData_enableSBAS_get, _mscl.SBASSettingsData_enableSBAS_set) - enableRanging = property(_mscl.SBASSettingsData_enableRanging_get, _mscl.SBASSettingsData_enableRanging_set) - enableCorrectionData = property(_mscl.SBASSettingsData_enableCorrectionData_get, _mscl.SBASSettingsData_enableCorrectionData_set) - applyIntegrityInfo = property(_mscl.SBASSettingsData_applyIntegrityInfo_get, _mscl.SBASSettingsData_applyIntegrityInfo_set) - satellitePRNs = property(_mscl.SBASSettingsData_satellitePRNs_get, _mscl.SBASSettingsData_satellitePRNs_set) - - def __init__(self): - _mscl.SBASSettingsData_swiginit(self, _mscl.new_SBASSettingsData()) - __swig_destroy__ = _mscl.delete_SBASSettingsData - -# Register SBASSettingsData in _mscl: -_mscl.SBASSettingsData_swigregister(SBASSettingsData) - -class Constellation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - constellationID = property(_mscl.Constellation_constellationID_get, _mscl.Constellation_constellationID_set) - enabled = property(_mscl.Constellation_enabled_get, _mscl.Constellation_enabled_set) - reservedChannelCount = property(_mscl.Constellation_reservedChannelCount_get, _mscl.Constellation_reservedChannelCount_set) - maxChannels = property(_mscl.Constellation_maxChannels_get, _mscl.Constellation_maxChannels_set) - enableL1SAIF = property(_mscl.Constellation_enableL1SAIF_get, _mscl.Constellation_enableL1SAIF_set) - - def __init__(self): - _mscl.Constellation_swiginit(self, _mscl.new_Constellation()) - __swig_destroy__ = _mscl.delete_Constellation - -# Register Constellation in _mscl: -_mscl.Constellation_swigregister(Constellation) - -class ConstellationSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - maxChannelsAvailable = property(_mscl.ConstellationSettingsData_maxChannelsAvailable_get, _mscl.ConstellationSettingsData_maxChannelsAvailable_set) - maxChannelsToUse = property(_mscl.ConstellationSettingsData_maxChannelsToUse_get, _mscl.ConstellationSettingsData_maxChannelsToUse_set) - constellations = property(_mscl.ConstellationSettingsData_constellations_get, _mscl.ConstellationSettingsData_constellations_set) - - def __init__(self): - _mscl.ConstellationSettingsData_swiginit(self, _mscl.new_ConstellationSettingsData()) - __swig_destroy__ = _mscl.delete_ConstellationSettingsData - -# Register ConstellationSettingsData in _mscl: -_mscl.ConstellationSettingsData_swigregister(ConstellationSettingsData) - -class LowPassFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SET_TO_HALF_REPORTING_RATE = _mscl.LowPassFilterData_SET_TO_HALF_REPORTING_RATE - USER_SPECIFIED_CUTOFF_FREQ = _mscl.LowPassFilterData_USER_SPECIFIED_CUTOFF_FREQ - - def __init__(self, *args): - _mscl.LowPassFilterData_swiginit(self, _mscl.new_LowPassFilterData(*args)) - dataDescriptor = property(_mscl.LowPassFilterData_dataDescriptor_get, _mscl.LowPassFilterData_dataDescriptor_set) - manualFilterBandwidthConfig = property(_mscl.LowPassFilterData_manualFilterBandwidthConfig_get, _mscl.LowPassFilterData_manualFilterBandwidthConfig_set) - applyLowPassFilter = property(_mscl.LowPassFilterData_applyLowPassFilter_get, _mscl.LowPassFilterData_applyLowPassFilter_set) - cutoffFrequency = property(_mscl.LowPassFilterData_cutoffFrequency_get, _mscl.LowPassFilterData_cutoffFrequency_set) - - @staticmethod - def getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - - @staticmethod - def getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - __swig_destroy__ = _mscl.delete_LowPassFilterData - -# Register LowPassFilterData in _mscl: -_mscl.LowPassFilterData_swigregister(LowPassFilterData) - -def LowPassFilterData_getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - -def LowPassFilterData_getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - -class ComplementaryFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ComplementaryFilterData_swiginit(self, _mscl.new_ComplementaryFilterData()) - upCompensationEnabled = property(_mscl.ComplementaryFilterData_upCompensationEnabled_get, _mscl.ComplementaryFilterData_upCompensationEnabled_set) - upCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_upCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_upCompensationTimeInSeconds_set) - northCompensationEnabled = property(_mscl.ComplementaryFilterData_northCompensationEnabled_get, _mscl.ComplementaryFilterData_northCompensationEnabled_set) - northCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_northCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_northCompensationTimeInSeconds_set) - __swig_destroy__ = _mscl.delete_ComplementaryFilterData - -# Register ComplementaryFilterData in _mscl: -_mscl.ComplementaryFilterData_swigregister(ComplementaryFilterData) - -class PpsPulseInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PpsPulseInfo_swiginit(self, _mscl.new_PpsPulseInfo()) - count = property(_mscl.PpsPulseInfo_count_get, _mscl.PpsPulseInfo_count_set) - lastTimeinMS = property(_mscl.PpsPulseInfo_lastTimeinMS_get, _mscl.PpsPulseInfo_lastTimeinMS_set) - __swig_destroy__ = _mscl.delete_PpsPulseInfo - -# Register PpsPulseInfo in _mscl: -_mscl.PpsPulseInfo_swigregister(PpsPulseInfo) - -class StreamInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.StreamInfo_swiginit(self, _mscl.new_StreamInfo()) - enabled = property(_mscl.StreamInfo_enabled_get, _mscl.StreamInfo_enabled_set) - outgoingPacketsDropped = property(_mscl.StreamInfo_outgoingPacketsDropped_get, _mscl.StreamInfo_outgoingPacketsDropped_set) - __swig_destroy__ = _mscl.delete_StreamInfo - -# Register StreamInfo in _mscl: -_mscl.StreamInfo_swigregister(StreamInfo) - -class DeviceMessageInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.DeviceMessageInfo_swiginit(self, _mscl.new_DeviceMessageInfo()) - messageParsingErrors = property(_mscl.DeviceMessageInfo_messageParsingErrors_get, _mscl.DeviceMessageInfo_messageParsingErrors_set) - messagesRead = property(_mscl.DeviceMessageInfo_messagesRead_get, _mscl.DeviceMessageInfo_messagesRead_set) - lastMessageReadinMS = property(_mscl.DeviceMessageInfo_lastMessageReadinMS_get, _mscl.DeviceMessageInfo_lastMessageReadinMS_set) - __swig_destroy__ = _mscl.delete_DeviceMessageInfo - -# Register DeviceMessageInfo in _mscl: -_mscl.DeviceMessageInfo_swigregister(DeviceMessageInfo) - -class PortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PortInfo_swiginit(self, _mscl.new_PortInfo()) - bytesWritten = property(_mscl.PortInfo_bytesWritten_get, _mscl.PortInfo_bytesWritten_set) - bytesRead = property(_mscl.PortInfo_bytesRead_get, _mscl.PortInfo_bytesRead_set) - overrunsOnWrite = property(_mscl.PortInfo_overrunsOnWrite_get, _mscl.PortInfo_overrunsOnWrite_set) - overrunsOnRead = property(_mscl.PortInfo_overrunsOnRead_get, _mscl.PortInfo_overrunsOnRead_set) - __swig_destroy__ = _mscl.delete_PortInfo - -# Register PortInfo in _mscl: -_mscl.PortInfo_swigregister(PortInfo) - -class TemperatureInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.TemperatureInfo_swiginit(self, _mscl.new_TemperatureInfo()) - onBoardTemp = property(_mscl.TemperatureInfo_onBoardTemp_get, _mscl.TemperatureInfo_onBoardTemp_set) - lastReadInMS = property(_mscl.TemperatureInfo_lastReadInMS_get, _mscl.TemperatureInfo_lastReadInMS_set) - error = property(_mscl.TemperatureInfo_error_get, _mscl.TemperatureInfo_error_set) - __swig_destroy__ = _mscl.delete_TemperatureInfo - -# Register TemperatureInfo in _mscl: -_mscl.TemperatureInfo_swigregister(TemperatureInfo) - -ModelNumber = _mscl.ModelNumber -StatusStructure_Value = _mscl.StatusStructure_Value -SystemState_Value = _mscl.SystemState_Value -gnss1PpsPulseInfo_Count = _mscl.gnss1PpsPulseInfo_Count -gnss1PpsPulseInfo_LastTimeinMS = _mscl.gnss1PpsPulseInfo_LastTimeinMS -GnssPowerStateOn = _mscl.GnssPowerStateOn -ImuStreamInfo_Enabled = _mscl.ImuStreamInfo_Enabled -ImuStreamInfo_PacketsDropped = _mscl.ImuStreamInfo_PacketsDropped -GnssStreamInfo_Enabled = _mscl.GnssStreamInfo_Enabled -GnssStreamInfo_PacketsDropped = _mscl.GnssStreamInfo_PacketsDropped -EstimationFilterStreamInfo_Enabled = _mscl.EstimationFilterStreamInfo_Enabled -EstimationFilterStreamInfo_PacketsDropped = _mscl.EstimationFilterStreamInfo_PacketsDropped -ComPortInfo_BytesRead = _mscl.ComPortInfo_BytesRead -ComPortInfo_BytesWritten = _mscl.ComPortInfo_BytesWritten -ComPortInfo_OverrunsOnRead = _mscl.ComPortInfo_OverrunsOnRead -ComPortInfo_OverrunsOnWrite = _mscl.ComPortInfo_OverrunsOnWrite -ImuMessageInfo_LastMessageReadinMS = _mscl.ImuMessageInfo_LastMessageReadinMS -ImuMessageInfo_MessageParsingErrors = _mscl.ImuMessageInfo_MessageParsingErrors -ImuMessageInfo_MessagesRead = _mscl.ImuMessageInfo_MessagesRead -GnssMessageInfo_LastMessageReadinMS = _mscl.GnssMessageInfo_LastMessageReadinMS -GnssMessageInfo_MessageParsingErrors = _mscl.GnssMessageInfo_MessageParsingErrors -GnssMessageInfo_MessagesRead = _mscl.GnssMessageInfo_MessagesRead -TemperatureInfo_Error = _mscl.TemperatureInfo_Error -TemperatureInfo_LastReadInMS = _mscl.TemperatureInfo_LastReadInMS -TemperatureInfo_OnBoardTemp = _mscl.TemperatureInfo_OnBoardTemp -PowerState = _mscl.PowerState -GyroRange = _mscl.GyroRange -AccelRange = _mscl.AccelRange -HasMagnetometer = _mscl.HasMagnetometer -HasPressure = _mscl.HasPressure -class DeviceStatusData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_BASIC_STATUS_STRUCTURE - DIAGNOSTIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_DIAGNOSTIC_STATUS_STRUCTURE - SYSTEM_INITIALIZATION = _mscl.DeviceStatusData_SYSTEM_INITIALIZATION - SYSTEM_STARTUP = _mscl.DeviceStatusData_SYSTEM_STARTUP - SYSTEM_RUNNING = _mscl.DeviceStatusData_SYSTEM_RUNNING - - def __init__(self): - _mscl.DeviceStatusData_swiginit(self, _mscl.new_DeviceStatusData()) - modelNumber = property(_mscl.DeviceStatusData_modelNumber_get, _mscl.DeviceStatusData_modelNumber_set) - statusStructure = property(_mscl.DeviceStatusData_statusStructure_get, _mscl.DeviceStatusData_statusStructure_set) - systemTimerInMS = property(_mscl.DeviceStatusData_systemTimerInMS_get, _mscl.DeviceStatusData_systemTimerInMS_set) - - def systemState(self, *args): - return _mscl.DeviceStatusData_systemState(self, *args) - - def gnssPowerStateOn(self, *args): - return _mscl.DeviceStatusData_gnssPowerStateOn(self, *args) - - def gnss1PpsPulseInfo(self, *args): - return _mscl.DeviceStatusData_gnss1PpsPulseInfo(self, *args) - - def imuStreamInfo(self, *args): - return _mscl.DeviceStatusData_imuStreamInfo(self, *args) - - def gnssStreamInfo(self, *args): - return _mscl.DeviceStatusData_gnssStreamInfo(self, *args) - - def estimationFilterStreamInfo(self, *args): - return _mscl.DeviceStatusData_estimationFilterStreamInfo(self, *args) - - def imuMessageInfo(self, *args): - return _mscl.DeviceStatusData_imuMessageInfo(self, *args) - - def gnssMessageInfo(self, *args): - return _mscl.DeviceStatusData_gnssMessageInfo(self, *args) - - def comPortInfo(self, *args): - return _mscl.DeviceStatusData_comPortInfo(self, *args) - - def usbPortInfo(self, *args): - return _mscl.DeviceStatusData_usbPortInfo(self, *args) - - def hasMagnetometer(self, *args): - return _mscl.DeviceStatusData_hasMagnetometer(self, *args) - - def magnetometerInitializationFailed(self, *args): - return _mscl.DeviceStatusData_magnetometerInitializationFailed(self, *args) - - def hasPressure(self, *args): - return _mscl.DeviceStatusData_hasPressure(self, *args) - - def pressureInitializationFailed(self, *args): - return _mscl.DeviceStatusData_pressureInitializationFailed(self, *args) - - def gnssReceiverInitializationFailed(self, *args): - return _mscl.DeviceStatusData_gnssReceiverInitializationFailed(self, *args) - - def coldStartOnPowerOn(self, *args): - return _mscl.DeviceStatusData_coldStartOnPowerOn(self, *args) - - def temperatureInfo(self, *args): - return _mscl.DeviceStatusData_temperatureInfo(self, *args) - - def powerState(self, *args): - return _mscl.DeviceStatusData_powerState(self, *args) - - def gyroRange(self, *args): - return _mscl.DeviceStatusData_gyroRange(self, *args) - - def accelRange(self, *args): - return _mscl.DeviceStatusData_accelRange(self, *args) - - def asMap(self): - return _mscl.DeviceStatusData_asMap(self) - - def asValueMap(self): - return _mscl.DeviceStatusData_asValueMap(self) - __swig_destroy__ = _mscl.delete_DeviceStatusData - -# Register DeviceStatusData in _mscl: -_mscl.DeviceStatusData_swigregister(DeviceStatusData) - -class ExternalGNSSUpdateData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - gpsTimeOfWeek = property(_mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_get, _mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_set) - gpsWeekNumber = property(_mscl.ExternalGNSSUpdateData_gpsWeekNumber_get, _mscl.ExternalGNSSUpdateData_gpsWeekNumber_set) - lattitude = property(_mscl.ExternalGNSSUpdateData_lattitude_get, _mscl.ExternalGNSSUpdateData_lattitude_set) - longitude = property(_mscl.ExternalGNSSUpdateData_longitude_get, _mscl.ExternalGNSSUpdateData_longitude_set) - altitudeAboveWGS84Ellipsoid = property(_mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_get, _mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_set) - northVelocity = property(_mscl.ExternalGNSSUpdateData_northVelocity_get, _mscl.ExternalGNSSUpdateData_northVelocity_set) - eastVelocity = property(_mscl.ExternalGNSSUpdateData_eastVelocity_get, _mscl.ExternalGNSSUpdateData_eastVelocity_set) - downVelocity = property(_mscl.ExternalGNSSUpdateData_downVelocity_get, _mscl.ExternalGNSSUpdateData_downVelocity_set) - northPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_northPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_northPositionUncertainty_set) - eastPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_eastPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_eastPositionUncertainty_set) - downPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_downPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_downPositionUncertainty_set) - northVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_northVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_northVelocityUncertainty_set) - eastVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_set) - downVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_downVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_downVelocityUncertainty_set) - - def __init__(self): - _mscl.ExternalGNSSUpdateData_swiginit(self, _mscl.new_ExternalGNSSUpdateData()) - __swig_destroy__ = _mscl.delete_ExternalGNSSUpdateData - -# Register ExternalGNSSUpdateData in _mscl: -_mscl.ExternalGNSSUpdateData_swigregister(ExternalGNSSUpdateData) - -class HeadingUpdateOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsOptionId(self): - return _mscl.HeadingUpdateOptions_AsOptionId(self) - - def __init__(self, *args): - _mscl.HeadingUpdateOptions_swiginit(self, _mscl.new_HeadingUpdateOptions(*args)) - useInternalMagnetometer = property(_mscl.HeadingUpdateOptions_useInternalMagnetometer_get, _mscl.HeadingUpdateOptions_useInternalMagnetometer_set) - useInternalGNSSVelocityVector = property(_mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_get, _mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_set) - useExternalHeadingMessages = property(_mscl.HeadingUpdateOptions_useExternalHeadingMessages_get, _mscl.HeadingUpdateOptions_useExternalHeadingMessages_set) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptions - -# Register HeadingUpdateOptions in _mscl: -_mscl.HeadingUpdateOptions_swigregister(HeadingUpdateOptions) - -Automatic = _mscl.Automatic -UserSpecified_Heading = _mscl.UserSpecified_Heading -UserSpecified_Attitude = _mscl.UserSpecified_Attitude -UserSpecified_All = _mscl.UserSpecified_All -GNSS_DualAntenna = _mscl.GNSS_DualAntenna -GNSS_Kinematic = _mscl.GNSS_Kinematic -Magnetometer = _mscl.Magnetometer -External = _mscl.External -class HeadingAlignmentMethod(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.HeadingAlignmentMethod_swiginit(self, _mscl.new_HeadingAlignmentMethod(*args)) - value = property(_mscl.HeadingAlignmentMethod_value_get, _mscl.HeadingAlignmentMethod_value_set) - - def select(self, option): - return _mscl.HeadingAlignmentMethod_select(self, option) - - def deselect(self, option): - return _mscl.HeadingAlignmentMethod_deselect(self, option) - - def selected(self, option): - return _mscl.HeadingAlignmentMethod_selected(self, option) - __swig_destroy__ = _mscl.delete_HeadingAlignmentMethod - -# Register HeadingAlignmentMethod in _mscl: -_mscl.HeadingAlignmentMethod_swigregister(HeadingAlignmentMethod) - -class FilterInitializationValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FilterInitializationValues_swiginit(self, _mscl.new_FilterInitializationValues()) - autoInitialize = property(_mscl.FilterInitializationValues_autoInitialize_get, _mscl.FilterInitializationValues_autoInitialize_set) - initialValuesSource = property(_mscl.FilterInitializationValues_initialValuesSource_get, _mscl.FilterInitializationValues_initialValuesSource_set) - autoHeadingAlignmentMethod = property(_mscl.FilterInitializationValues_autoHeadingAlignmentMethod_get, _mscl.FilterInitializationValues_autoHeadingAlignmentMethod_set) - initialAttitude = property(_mscl.FilterInitializationValues_initialAttitude_get, _mscl.FilterInitializationValues_initialAttitude_set) - initialPosition = property(_mscl.FilterInitializationValues_initialPosition_get, _mscl.FilterInitializationValues_initialPosition_set) - initialVelocity = property(_mscl.FilterInitializationValues_initialVelocity_get, _mscl.FilterInitializationValues_initialVelocity_set) - referenceFrame = property(_mscl.FilterInitializationValues_referenceFrame_get, _mscl.FilterInitializationValues_referenceFrame_set) - - def manualHeading(self): - return _mscl.FilterInitializationValues_manualHeading(self) - - def manualAttitude(self): - return _mscl.FilterInitializationValues_manualAttitude(self) - - def manualPositionVelocity(self): - return _mscl.FilterInitializationValues_manualPositionVelocity(self) - __swig_destroy__ = _mscl.delete_FilterInitializationValues - -# Register FilterInitializationValues in _mscl: -_mscl.FilterInitializationValues_swigregister(FilterInitializationValues) - -class TareAxisValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def asUint8(self): - return _mscl.TareAxisValues_asUint8(self) - - def __init__(self, tareRollAxis, tarePitchAxis, tareYawAxis): - _mscl.TareAxisValues_swiginit(self, _mscl.new_TareAxisValues(tareRollAxis, tarePitchAxis, tareYawAxis)) - tareRollAxis = property(_mscl.TareAxisValues_tareRollAxis_get, _mscl.TareAxisValues_tareRollAxis_set) - tarePitchAxis = property(_mscl.TareAxisValues_tarePitchAxis_get, _mscl.TareAxisValues_tarePitchAxis_set) - tareYawAxis = property(_mscl.TareAxisValues_tareYawAxis_get, _mscl.TareAxisValues_tareYawAxis_set) - __swig_destroy__ = _mscl.delete_TareAxisValues - -# Register TareAxisValues in _mscl: -_mscl.TareAxisValues_swigregister(TareAxisValues) - -class GeographicSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeographicSourceOptions_swiginit(self, _mscl.new_GeographicSourceOptions(*args)) - source = property(_mscl.GeographicSourceOptions_source_get, _mscl.GeographicSourceOptions_source_set) - manual = property(_mscl.GeographicSourceOptions_manual_get, _mscl.GeographicSourceOptions_manual_set) - __swig_destroy__ = _mscl.delete_GeographicSourceOptions - -# Register GeographicSourceOptions in _mscl: -_mscl.GeographicSourceOptions_swigregister(GeographicSourceOptions) - -class EstimationControlOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsUint16(self): - return _mscl.EstimationControlOptions_AsUint16(self) - - def __init__(self, *args): - _mscl.EstimationControlOptions_swiginit(self, _mscl.new_EstimationControlOptions(*args)) - enableGyroBiasEstimation = property(_mscl.EstimationControlOptions_enableGyroBiasEstimation_get, _mscl.EstimationControlOptions_enableGyroBiasEstimation_set) - enableAccelBiasEstimation = property(_mscl.EstimationControlOptions_enableAccelBiasEstimation_get, _mscl.EstimationControlOptions_enableAccelBiasEstimation_set) - enableGyroScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_set) - enableAccelScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_set) - enableGNSSAntennaOffsetEstimation = property(_mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_get, _mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_set) - enableHardIronAutoCalibration = property(_mscl.EstimationControlOptions_enableHardIronAutoCalibration_get, _mscl.EstimationControlOptions_enableHardIronAutoCalibration_set) - enableSoftIronAutoCalibration = property(_mscl.EstimationControlOptions_enableSoftIronAutoCalibration_get, _mscl.EstimationControlOptions_enableSoftIronAutoCalibration_set) - __swig_destroy__ = _mscl.delete_EstimationControlOptions - -# Register EstimationControlOptions in _mscl: -_mscl.EstimationControlOptions_swigregister(EstimationControlOptions) - -class HeadingData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HeadingData_swiginit(self, _mscl.new_HeadingData()) - TRUE_HEADING = _mscl.HeadingData_TRUE_HEADING - MAGNETIC_HEADING = _mscl.HeadingData_MAGNETIC_HEADING - heading = property(_mscl.HeadingData_heading_get, _mscl.HeadingData_heading_set) - headingAngle = property(_mscl.HeadingData_headingAngle_get, _mscl.HeadingData_headingAngle_set) - headingAngleUncertainty = property(_mscl.HeadingData_headingAngleUncertainty_get, _mscl.HeadingData_headingAngleUncertainty_set) - __swig_destroy__ = _mscl.delete_HeadingData - -# Register HeadingData in _mscl: -_mscl.HeadingData_swigregister(HeadingData) - -class AdaptiveMeasurementData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AdaptiveMeasurementData_swiginit(self, _mscl.new_AdaptiveMeasurementData()) - mode = property(_mscl.AdaptiveMeasurementData_mode_get, _mscl.AdaptiveMeasurementData_mode_set) - lowPassFilterCutoff = property(_mscl.AdaptiveMeasurementData_lowPassFilterCutoff_get, _mscl.AdaptiveMeasurementData_lowPassFilterCutoff_set) - lowLimit = property(_mscl.AdaptiveMeasurementData_lowLimit_get, _mscl.AdaptiveMeasurementData_lowLimit_set) - highLimit = property(_mscl.AdaptiveMeasurementData_highLimit_get, _mscl.AdaptiveMeasurementData_highLimit_set) - lowLimitUncertainty = property(_mscl.AdaptiveMeasurementData_lowLimitUncertainty_get, _mscl.AdaptiveMeasurementData_lowLimitUncertainty_set) - highLimitUncertainty = property(_mscl.AdaptiveMeasurementData_highLimitUncertainty_get, _mscl.AdaptiveMeasurementData_highLimitUncertainty_set) - minUncertainty = property(_mscl.AdaptiveMeasurementData_minUncertainty_get, _mscl.AdaptiveMeasurementData_minUncertainty_set) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementData - -# Register AdaptiveMeasurementData in _mscl: -_mscl.AdaptiveMeasurementData_swigregister(AdaptiveMeasurementData) - -class AutoAdaptiveFilterOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AutoAdaptiveFilterOptions_swiginit(self, _mscl.new_AutoAdaptiveFilterOptions(*args)) - level = property(_mscl.AutoAdaptiveFilterOptions_level_get, _mscl.AutoAdaptiveFilterOptions_level_set) - timeLimit = property(_mscl.AutoAdaptiveFilterOptions_timeLimit_get, _mscl.AutoAdaptiveFilterOptions_timeLimit_set) - __swig_destroy__ = _mscl.delete_AutoAdaptiveFilterOptions - -# Register AutoAdaptiveFilterOptions in _mscl: -_mscl.AutoAdaptiveFilterOptions_swigregister(AutoAdaptiveFilterOptions) - -class SignalConditioningValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ENABLE_ORIENTATION_CALC = _mscl.SignalConditioningValues_ENABLE_ORIENTATION_CALC - ENABLE_CONING_SCULLING = _mscl.SignalConditioningValues_ENABLE_CONING_SCULLING - ENABLE_FINITE_SIZE_CORRECTION = _mscl.SignalConditioningValues_ENABLE_FINITE_SIZE_CORRECTION - DISABLE_MAGNETOMETER = _mscl.SignalConditioningValues_DISABLE_MAGNETOMETER - DISABLE_NORTH_COMP = _mscl.SignalConditioningValues_DISABLE_NORTH_COMP - DISABLE_UP_COMP = _mscl.SignalConditioningValues_DISABLE_UP_COMP - ENABLE_QUATERNION_CALC = _mscl.SignalConditioningValues_ENABLE_QUATERNION_CALC - HIGH = _mscl.SignalConditioningValues_HIGH - LOW = _mscl.SignalConditioningValues_LOW - dataConditioningFlags = property(_mscl.SignalConditioningValues_dataConditioningFlags_get, _mscl.SignalConditioningValues_dataConditioningFlags_set) - orientationCalcDecimation = property(_mscl.SignalConditioningValues_orientationCalcDecimation_get, _mscl.SignalConditioningValues_orientationCalcDecimation_set) - accelGyroFilterWidth = property(_mscl.SignalConditioningValues_accelGyroFilterWidth_get, _mscl.SignalConditioningValues_accelGyroFilterWidth_set) - magFilterWidth = property(_mscl.SignalConditioningValues_magFilterWidth_get, _mscl.SignalConditioningValues_magFilterWidth_set) - upCompensation = property(_mscl.SignalConditioningValues_upCompensation_get, _mscl.SignalConditioningValues_upCompensation_set) - northCompensation = property(_mscl.SignalConditioningValues_northCompensation_get, _mscl.SignalConditioningValues_northCompensation_set) - magBandwidthPower = property(_mscl.SignalConditioningValues_magBandwidthPower_get, _mscl.SignalConditioningValues_magBandwidthPower_set) - - def __init__(self): - _mscl.SignalConditioningValues_swiginit(self, _mscl.new_SignalConditioningValues()) - - def conditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_conditioningOptionOn(self, *args) - - def setConditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOn(self, *args) - - def setConditioningOptionOff(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOff(self, *args) - __swig_destroy__ = _mscl.delete_SignalConditioningValues - -# Register SignalConditioningValues in _mscl: -_mscl.SignalConditioningValues_swigregister(SignalConditioningValues) - -class EnableDisableMeasurements(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ACCELEROMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_ACCELEROMETER_MEASUREMENTS - MAGNETOMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_MAGNETOMETER_MEASUREMENTS - - def __init__(self, *args): - _mscl.EnableDisableMeasurements_swiginit(self, _mscl.new_EnableDisableMeasurements(*args)) - measurementOptions = property(_mscl.EnableDisableMeasurements_measurementOptions_get, _mscl.EnableDisableMeasurements_measurementOptions_set) - - def optionEnabled(self, *args): - return _mscl.EnableDisableMeasurements_optionEnabled(self, *args) - - def enableOption(self, *args): - return _mscl.EnableDisableMeasurements_enableOption(self, *args) - - def disableOption(self, *args): - return _mscl.EnableDisableMeasurements_disableOption(self, *args) - __swig_destroy__ = _mscl.delete_EnableDisableMeasurements - -# Register EnableDisableMeasurements in _mscl: -_mscl.EnableDisableMeasurements_swigregister(EnableDisableMeasurements) - -class RTKDeviceStatusFlags(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MODEM_STATE = _mscl.RTKDeviceStatusFlags_MODEM_STATE - CONNECTION_TYPE = _mscl.RTKDeviceStatusFlags_CONNECTION_TYPE - RSSI = _mscl.RTKDeviceStatusFlags_RSSI - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_SIGNAL_QUALITY - TOWER_CHANGE_INDICATOR = _mscl.RTKDeviceStatusFlags_TOWER_CHANGE_INDICATOR - NMEA_TIMEOUT = _mscl.RTKDeviceStatusFlags_NMEA_TIMEOUT - SERVER_TIMEOUT = _mscl.RTKDeviceStatusFlags_SERVER_TIMEOUT - RTCM_TIMEOUT = _mscl.RTKDeviceStatusFlags_RTCM_TIMEOUT - DEVICE_OUT_OF_RANGE = _mscl.RTKDeviceStatusFlags_DEVICE_OUT_OF_RANGE - CORRECTIONS_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_CORRECTIONS_UNAVAILABLE - VERSION = _mscl.RTKDeviceStatusFlags_VERSION - OFF = _mscl.RTKDeviceStatusFlags_OFF - NO_NETWORK = _mscl.RTKDeviceStatusFlags_NO_NETWORK - NETWORK_CONNECTED = _mscl.RTKDeviceStatusFlags_NETWORK_CONNECTED - CONFIGURING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_CONFIGURING_DATA_CONTEXT - ACTIVATING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_ACTIVATING_DATA_CONTEXT - CONFIGURING_SOCKET = _mscl.RTKDeviceStatusFlags_CONFIGURING_SOCKET - WAITING_ON_SERVER_HANDSHAKE = _mscl.RTKDeviceStatusFlags_WAITING_ON_SERVER_HANDSHAKE - CONNECTED_AND_IDLE = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_IDLE - CONNECTED_AND_STREAMING = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_STREAMING - NO_CONNECTION = _mscl.RTKDeviceStatusFlags_NO_CONNECTION - CONNECTION_2G = _mscl.RTKDeviceStatusFlags_CONNECTION_2G - CONNECTION_3G = _mscl.RTKDeviceStatusFlags_CONNECTION_3G - CONNECTION_4G = _mscl.RTKDeviceStatusFlags_CONNECTION_4G - CONNECTION_5G = _mscl.RTKDeviceStatusFlags_CONNECTION_5G - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_swiginit(self, _mscl.new_RTKDeviceStatusFlags(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_version(self) - - def modemState(self, *args): - return _mscl.RTKDeviceStatusFlags_modemState(self, *args) - - def connectionType(self, *args): - return _mscl.RTKDeviceStatusFlags_connectionType(self, *args) - - def rssi(self, *args): - return _mscl.RTKDeviceStatusFlags_rssi(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_signalQuality(self, *args) - - def towerChangeIndicator(self, *args): - return _mscl.RTKDeviceStatusFlags_towerChangeIndicator(self, *args) - - def nmeaTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_nmeaTimeout(self, *args) - - def serverTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_serverTimeout(self, *args) - - def rtcmTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_rtcmTimeout(self, *args) - - def deviceOutOfRange(self, *args): - return _mscl.RTKDeviceStatusFlags_deviceOutOfRange(self, *args) - - def correctionsUnavailable(self, *args): - return _mscl.RTKDeviceStatusFlags_correctionsUnavailable(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags - -# Register RTKDeviceStatusFlags in _mscl: -_mscl.RTKDeviceStatusFlags_swigregister(RTKDeviceStatusFlags) - -class RTKDeviceStatusFlags_v1(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONTROLLER_STATE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATE - PLATFORM_STATE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATE - CONTROLLER_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATUS_CODE - PLATFORM_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATUS_CODE - RESET_REASON = _mscl.RTKDeviceStatusFlags_v1_RESET_REASON - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_v1_SIGNAL_QUALITY - VERSION = _mscl.RTKDeviceStatusFlags_v1_VERSION - IDLE = _mscl.RTKDeviceStatusFlags_v1_IDLE - ACTIVE = _mscl.RTKDeviceStatusFlags_v1_ACTIVE - MODEM_OFF = _mscl.RTKDeviceStatusFlags_v1_MODEM_OFF - MODEM_POWERING_ON = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_ON - MODEM_CONFIGURE = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONFIGURE - MODEM_POWERING_DOWN = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_DOWN - MODEM_READY = _mscl.RTKDeviceStatusFlags_v1_MODEM_READY - MODEM_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTING - MODEM_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_DISCONNECTING - MODEM_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTED - SERVICE_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTING - SERVICE_CONNECTION_FAILED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_FAILED - SERVICE_CONNECTION_CANCELED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_CANCELED - SERVICE_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_DISCONNECTING - SERVICE_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTED - PLATFORM_ERROR = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_ERROR - RESET_MODEM = _mscl.RTKDeviceStatusFlags_v1_RESET_MODEM - CONTROLLER_OK = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_OK - WAITING_NMEA = _mscl.RTKDeviceStatusFlags_v1_WAITING_NMEA - RTK_TIMEOUT = _mscl.RTKDeviceStatusFlags_v1_RTK_TIMEOUT - RTK_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_v1_RTK_UNAVAILABLE - CONFIG_INVALID = _mscl.RTKDeviceStatusFlags_v1_CONFIG_INVALID - PLATFORM_OK = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_OK - RTK_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_RTK_CONNECTION_DROPPED - CELL_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_CELL_CONNECTION_DROPPED - MODEM_ERROR = _mscl.RTKDeviceStatusFlags_v1_MODEM_ERROR - POWER_ON = _mscl.RTKDeviceStatusFlags_v1_POWER_ON - UNKNOWN = _mscl.RTKDeviceStatusFlags_v1_UNKNOWN - SOFT_RESET = _mscl.RTKDeviceStatusFlags_v1_SOFT_RESET - HARDWARE_ERROR_RESET = _mscl.RTKDeviceStatusFlags_v1_HARDWARE_ERROR_RESET - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_v1_swiginit(self, _mscl.new_RTKDeviceStatusFlags_v1(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_v1_version(self) - - def controllerState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerState(self, *args) - - def platformState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformState(self, *args) - - def controllerStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerStatusCode(self, *args) - - def platformStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformStatusCode(self, *args) - - def resetReason(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_resetReason(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_signalQuality(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags_v1 - -# Register RTKDeviceStatusFlags_v1 in _mscl: -_mscl.RTKDeviceStatusFlags_v1_swigregister(RTKDeviceStatusFlags_v1) - -class GnssSignalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - L1CA = _mscl.GnssSignalConfiguration_L1CA - L2C = _mscl.GnssSignalConfiguration_L2C - L1OF = _mscl.GnssSignalConfiguration_L1OF - L2OF = _mscl.GnssSignalConfiguration_L2OF - E1 = _mscl.GnssSignalConfiguration_E1 - E5B = _mscl.GnssSignalConfiguration_E5B - B1 = _mscl.GnssSignalConfiguration_B1 - B2 = _mscl.GnssSignalConfiguration_B2 - - def __init__(self): - _mscl.GnssSignalConfiguration_swiginit(self, _mscl.new_GnssSignalConfiguration()) - - def enableGpsSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGpsSignal(self, signal, enable) - - def gpsSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_gpsSignalEnabled(self, signal) - - def gpsSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_gpsSignalValue(self, *args) - - def enableGlonassSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGlonassSignal(self, signal, enable) - - def glonassSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_glonassSignalEnabled(self, signal) - - def glonassSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_glonassSignalValue(self, *args) - - def enableGalileoSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGalileoSignal(self, signal, enable) - - def galileoSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_galileoSignalEnabled(self, signal) - - def galileoSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_galileoSignalValue(self, *args) - - def enableBeiDouSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableBeiDouSignal(self, signal, enable) - - def beidouSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_beidouSignalEnabled(self, signal) - - def beidouSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_beidouSignalValue(self, *args) - __swig_destroy__ = _mscl.delete_GnssSignalConfiguration - -# Register GnssSignalConfiguration in _mscl: -_mscl.GnssSignalConfiguration_swigregister(GnssSignalConfiguration) - -class GnssSpartnConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - KEY_SIZE = _mscl.GnssSpartnConfiguration_KEY_SIZE - NONE = _mscl.GnssSpartnConfiguration_NONE - NETWORK = _mscl.GnssSpartnConfiguration_NETWORK - LBAND = _mscl.GnssSpartnConfiguration_LBAND - - def __init__(self): - _mscl.GnssSpartnConfiguration_swiginit(self, _mscl.new_GnssSpartnConfiguration()) - - def enable(self, enable): - return _mscl.GnssSpartnConfiguration_enable(self, enable) - - def enabled(self): - return _mscl.GnssSpartnConfiguration_enabled(self) - - def type(self, *args): - return _mscl.GnssSpartnConfiguration_type(self, *args) - - def currentKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyTow(self, *args) - - def currentKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyWeek(self, *args) - - def currentKey(self, *args): - return _mscl.GnssSpartnConfiguration_currentKey(self, *args) - - def nextKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyTow(self, *args) - - def nextKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyWeek(self, *args) - - def nextKey(self, *args): - return _mscl.GnssSpartnConfiguration_nextKey(self, *args) - __swig_destroy__ = _mscl.delete_GnssSpartnConfiguration - -# Register GnssSpartnConfiguration in _mscl: -_mscl.GnssSpartnConfiguration_swigregister(GnssSpartnConfiguration) - -class PositionReferenceConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - autoConfig = property(_mscl.PositionReferenceConfiguration_autoConfig_get, _mscl.PositionReferenceConfiguration_autoConfig_set) - position = property(_mscl.PositionReferenceConfiguration_position_get, _mscl.PositionReferenceConfiguration_position_set) - - def __init__(self): - _mscl.PositionReferenceConfiguration_swiginit(self, _mscl.new_PositionReferenceConfiguration()) - __swig_destroy__ = _mscl.delete_PositionReferenceConfiguration - -# Register PositionReferenceConfiguration in _mscl: -_mscl.PositionReferenceConfiguration_swigregister(PositionReferenceConfiguration) - -class AntennaLeverArmCalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enabled = property(_mscl.AntennaLeverArmCalConfiguration_enabled_get, _mscl.AntennaLeverArmCalConfiguration_enabled_set) - maxOffsetError = property(_mscl.AntennaLeverArmCalConfiguration_maxOffsetError_get, _mscl.AntennaLeverArmCalConfiguration_maxOffsetError_set) - - def __init__(self): - _mscl.AntennaLeverArmCalConfiguration_swiginit(self, _mscl.new_AntennaLeverArmCalConfiguration()) - __swig_destroy__ = _mscl.delete_AntennaLeverArmCalConfiguration - -# Register AntennaLeverArmCalConfiguration in _mscl: -_mscl.AntennaLeverArmCalConfiguration_swigregister(AntennaLeverArmCalConfiguration) - -class OdometerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.OdometerConfiguration_DISABLED - SINGLE = _mscl.OdometerConfiguration_SINGLE - QUADRATURE = _mscl.OdometerConfiguration_QUADRATURE - - def __init__(self): - _mscl.OdometerConfiguration_swiginit(self, _mscl.new_OdometerConfiguration()) - - def mode(self, *args): - return _mscl.OdometerConfiguration_mode(self, *args) - - def uncertainty(self, *args): - return _mscl.OdometerConfiguration_uncertainty(self, *args) - - def scaling(self, *args): - return _mscl.OdometerConfiguration_scaling(self, *args) - __swig_destroy__ = _mscl.delete_OdometerConfiguration - -# Register OdometerConfiguration in _mscl: -_mscl.OdometerConfiguration_swigregister(OdometerConfiguration) - -class GpioConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - UNUSED_FEATURE = _mscl.GpioConfiguration_UNUSED_FEATURE - GPIO_FEATURE = _mscl.GpioConfiguration_GPIO_FEATURE - PPS_FEATURE = _mscl.GpioConfiguration_PPS_FEATURE - ENCODER_FEATURE = _mscl.GpioConfiguration_ENCODER_FEATURE - EVENT_TIMESTAMP_FEATURE = _mscl.GpioConfiguration_EVENT_TIMESTAMP_FEATURE - UART_FEATURE = _mscl.GpioConfiguration_UART_FEATURE - GPIO_UNUSED = _mscl.GpioConfiguration_GPIO_UNUSED - GPIO_INPUT = _mscl.GpioConfiguration_GPIO_INPUT - GPIO_OUTPUT_LOW = _mscl.GpioConfiguration_GPIO_OUTPUT_LOW - GPIO_OUTPUT_HIGH = _mscl.GpioConfiguration_GPIO_OUTPUT_HIGH - PPS_UNUSED = _mscl.GpioConfiguration_PPS_UNUSED - PPS_INPUT = _mscl.GpioConfiguration_PPS_INPUT - PPS_OUTPUT = _mscl.GpioConfiguration_PPS_OUTPUT - ENCODER_UNUSED = _mscl.GpioConfiguration_ENCODER_UNUSED - ENCODER_A = _mscl.GpioConfiguration_ENCODER_A - ENCODER_B = _mscl.GpioConfiguration_ENCODER_B - TIMESTAMP_UNUSED = _mscl.GpioConfiguration_TIMESTAMP_UNUSED - TIMESTAMP_RISING = _mscl.GpioConfiguration_TIMESTAMP_RISING - TIMESTAMP_FALLING = _mscl.GpioConfiguration_TIMESTAMP_FALLING - TIMESTAMP_EITHER = _mscl.GpioConfiguration_TIMESTAMP_EITHER - UART_UNUSED = _mscl.GpioConfiguration_UART_UNUSED - UART_PORT2_TX = _mscl.GpioConfiguration_UART_PORT2_TX - UART_PORT2_RX = _mscl.GpioConfiguration_UART_PORT2_RX - UART_PORT3_TX = _mscl.GpioConfiguration_UART_PORT3_TX - UART_PORT3_RX = _mscl.GpioConfiguration_UART_PORT3_RX - NONE = _mscl.GpioConfiguration_NONE - OPEN_DRAIN = _mscl.GpioConfiguration_OPEN_DRAIN - PULLDOWN = _mscl.GpioConfiguration_PULLDOWN - PULLUP = _mscl.GpioConfiguration_PULLUP - pinMode = property(_mscl.GpioConfiguration_pinMode_get, _mscl.GpioConfiguration_pinMode_set) - pin = property(_mscl.GpioConfiguration_pin_get, _mscl.GpioConfiguration_pin_set) - feature = property(_mscl.GpioConfiguration_feature_get, _mscl.GpioConfiguration_feature_set) - behavior = property(_mscl.GpioConfiguration_behavior_get, _mscl.GpioConfiguration_behavior_set) - - def pinModeValue(self, *args): - return _mscl.GpioConfiguration_pinModeValue(self, *args) - - def __init__(self): - _mscl.GpioConfiguration_swiginit(self, _mscl.new_GpioConfiguration()) - __swig_destroy__ = _mscl.delete_GpioConfiguration - -# Register GpioConfiguration in _mscl: -_mscl.GpioConfiguration_swigregister(GpioConfiguration) - -DISABLED = _mscl.DISABLED -ENABLED = _mscl.ENABLED -TEST = _mscl.TEST -TEST_PULSE = _mscl.TEST_PULSE -class EventTriggerGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventTriggerGpioParameter_DISABLED - WHILE_HIGH = _mscl.EventTriggerGpioParameter_WHILE_HIGH - WHILE_LOW = _mscl.EventTriggerGpioParameter_WHILE_LOW - EDGE = _mscl.EventTriggerGpioParameter_EDGE - pin = property(_mscl.EventTriggerGpioParameter_pin_get, _mscl.EventTriggerGpioParameter_pin_set) - mode = property(_mscl.EventTriggerGpioParameter_mode_get, _mscl.EventTriggerGpioParameter_mode_set) - - def __init__(self): - _mscl.EventTriggerGpioParameter_swiginit(self, _mscl.new_EventTriggerGpioParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerGpioParameter - -# Register EventTriggerGpioParameter in _mscl: -_mscl.EventTriggerGpioParameter_swigregister(EventTriggerGpioParameter) - -class EventTriggerThresholdParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - WINDOW_TYPE = _mscl.EventTriggerThresholdParameter_WINDOW_TYPE - INTERVAL_TYPE = _mscl.EventTriggerThresholdParameter_INTERVAL_TYPE - type = property(_mscl.EventTriggerThresholdParameter_type_get, _mscl.EventTriggerThresholdParameter_type_set) - lowThreshold = property(_mscl.EventTriggerThresholdParameter_lowThreshold_get, _mscl.EventTriggerThresholdParameter_lowThreshold_set) - highThreshold = property(_mscl.EventTriggerThresholdParameter_highThreshold_get, _mscl.EventTriggerThresholdParameter_highThreshold_set) - - def channel(self, *args): - return _mscl.EventTriggerThresholdParameter_channel(self, *args) - - def channelField(self): - return _mscl.EventTriggerThresholdParameter_channelField(self) - - def channelQualifier(self): - return _mscl.EventTriggerThresholdParameter_channelQualifier(self) - - def channelIndex(self): - return _mscl.EventTriggerThresholdParameter_channelIndex(self) - - def __init__(self): - _mscl.EventTriggerThresholdParameter_swiginit(self, _mscl.new_EventTriggerThresholdParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerThresholdParameter - -# Register EventTriggerThresholdParameter in _mscl: -_mscl.EventTriggerThresholdParameter_swigregister(EventTriggerThresholdParameter) - -class EventTriggerCombinationParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_INPUT_TRIGGERS = _mscl.EventTriggerCombinationParameter_MAX_INPUT_TRIGGERS - LOGIC_NEVER = _mscl.EventTriggerCombinationParameter_LOGIC_NEVER - LOGIC_ALWAYS = _mscl.EventTriggerCombinationParameter_LOGIC_ALWAYS - LOGIC_NONE = _mscl.EventTriggerCombinationParameter_LOGIC_NONE - LOGIC_OR = _mscl.EventTriggerCombinationParameter_LOGIC_OR - LOGIC_NAND = _mscl.EventTriggerCombinationParameter_LOGIC_NAND - LOGIC_XOR_ONE = _mscl.EventTriggerCombinationParameter_LOGIC_XOR_ONE - LOGIC_ONLY_A = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_A - LOGIC_ONLY_B = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_B - LOGIC_ONLY_C = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_C - LOGIC_ONLY_D = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_D - LOGIC_AND_AB = _mscl.EventTriggerCombinationParameter_LOGIC_AND_AB - LOGIC_AB_OR_C = _mscl.EventTriggerCombinationParameter_LOGIC_AB_OR_C - LOGIC_AND = _mscl.EventTriggerCombinationParameter_LOGIC_AND - logicTable = property(_mscl.EventTriggerCombinationParameter_logicTable_get, _mscl.EventTriggerCombinationParameter_logicTable_set) - inputTriggers = property(_mscl.EventTriggerCombinationParameter_inputTriggers_get, _mscl.EventTriggerCombinationParameter_inputTriggers_set) - - def __init__(self): - _mscl.EventTriggerCombinationParameter_swiginit(self, _mscl.new_EventTriggerCombinationParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerCombinationParameter - -# Register EventTriggerCombinationParameter in _mscl: -_mscl.EventTriggerCombinationParameter_swigregister(EventTriggerCombinationParameter) - -class EventTriggerParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerParameters_swiginit(self, _mscl.new_EventTriggerParameters()) - gpio = property(_mscl.EventTriggerParameters_gpio_get, _mscl.EventTriggerParameters_gpio_set) - threshold = property(_mscl.EventTriggerParameters_threshold_get, _mscl.EventTriggerParameters_threshold_set) - combination = property(_mscl.EventTriggerParameters_combination_get, _mscl.EventTriggerParameters_combination_set) - __swig_destroy__ = _mscl.delete_EventTriggerParameters - -# Register EventTriggerParameters in _mscl: -_mscl.EventTriggerParameters_swigregister(EventTriggerParameters) - -class EventTriggerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventTriggerConfiguration_NONE - GPIO_TRIGGER = _mscl.EventTriggerConfiguration_GPIO_TRIGGER - THRESHOLD_TRIGGER = _mscl.EventTriggerConfiguration_THRESHOLD_TRIGGER - COMBINATION_TRIGGER = _mscl.EventTriggerConfiguration_COMBINATION_TRIGGER - instance = property(_mscl.EventTriggerConfiguration_instance_get, _mscl.EventTriggerConfiguration_instance_set) - trigger = property(_mscl.EventTriggerConfiguration_trigger_get, _mscl.EventTriggerConfiguration_trigger_set) - parameters = property(_mscl.EventTriggerConfiguration_parameters_get, _mscl.EventTriggerConfiguration_parameters_set) - - def __init__(self): - _mscl.EventTriggerConfiguration_swiginit(self, _mscl.new_EventTriggerConfiguration()) - __swig_destroy__ = _mscl.delete_EventTriggerConfiguration - -# Register EventTriggerConfiguration in _mscl: -_mscl.EventTriggerConfiguration_swigregister(EventTriggerConfiguration) - -class EventActionGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventActionGpioParameter_DISABLED - ACTIVE_HIGH = _mscl.EventActionGpioParameter_ACTIVE_HIGH - ACTIVE_LOW = _mscl.EventActionGpioParameter_ACTIVE_LOW - ONESHOT_HIGH = _mscl.EventActionGpioParameter_ONESHOT_HIGH - ONESHOT_LOW = _mscl.EventActionGpioParameter_ONESHOT_LOW - TOGGLE = _mscl.EventActionGpioParameter_TOGGLE - pin = property(_mscl.EventActionGpioParameter_pin_get, _mscl.EventActionGpioParameter_pin_set) - mode = property(_mscl.EventActionGpioParameter_mode_get, _mscl.EventActionGpioParameter_mode_set) - - def __init__(self): - _mscl.EventActionGpioParameter_swiginit(self, _mscl.new_EventActionGpioParameter()) - __swig_destroy__ = _mscl.delete_EventActionGpioParameter - -# Register EventActionGpioParameter in _mscl: -_mscl.EventActionGpioParameter_swigregister(EventActionGpioParameter) - -class EventActionMessageParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_DESCRIPTORS = _mscl.EventActionMessageParameter_MAX_DESCRIPTORS - sampleRate = property(_mscl.EventActionMessageParameter_sampleRate_get, _mscl.EventActionMessageParameter_sampleRate_set) - - def dataClass(self): - return _mscl.EventActionMessageParameter_dataClass(self) - - def setChannelFields(self, dataClass, fields): - return _mscl.EventActionMessageParameter_setChannelFields(self, dataClass, fields) - - def getChannelFields(self): - return _mscl.EventActionMessageParameter_getChannelFields(self) - - def __init__(self): - _mscl.EventActionMessageParameter_swiginit(self, _mscl.new_EventActionMessageParameter()) - __swig_destroy__ = _mscl.delete_EventActionMessageParameter - -# Register EventActionMessageParameter in _mscl: -_mscl.EventActionMessageParameter_swigregister(EventActionMessageParameter) - -class EventActionParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventActionParameters_swiginit(self, _mscl.new_EventActionParameters()) - gpio = property(_mscl.EventActionParameters_gpio_get, _mscl.EventActionParameters_gpio_set) - message = property(_mscl.EventActionParameters_message_get, _mscl.EventActionParameters_message_set) - __swig_destroy__ = _mscl.delete_EventActionParameters - -# Register EventActionParameters in _mscl: -_mscl.EventActionParameters_swigregister(EventActionParameters) - -class EventActionConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventActionConfiguration_NONE - GPIO = _mscl.EventActionConfiguration_GPIO - MESSAGE = _mscl.EventActionConfiguration_MESSAGE - instance = property(_mscl.EventActionConfiguration_instance_get, _mscl.EventActionConfiguration_instance_set) - trigger = property(_mscl.EventActionConfiguration_trigger_get, _mscl.EventActionConfiguration_trigger_set) - type = property(_mscl.EventActionConfiguration_type_get, _mscl.EventActionConfiguration_type_set) - parameters = property(_mscl.EventActionConfiguration_parameters_get, _mscl.EventActionConfiguration_parameters_set) - - def __init__(self): - _mscl.EventActionConfiguration_swiginit(self, _mscl.new_EventActionConfiguration()) - __swig_destroy__ = _mscl.delete_EventActionConfiguration - -# Register EventActionConfiguration in _mscl: -_mscl.EventActionConfiguration_swigregister(EventActionConfiguration) - -class EventTriggerInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTriggerInfo_swiginit(self, _mscl.new_EventTriggerInfo(*args)) - ACTIVE = _mscl.EventTriggerInfo_ACTIVE - ENABLED = _mscl.EventTriggerInfo_ENABLED - TEST = _mscl.EventTriggerInfo_TEST - type = property(_mscl.EventTriggerInfo_type_get, _mscl.EventTriggerInfo_type_set) - instanceId = property(_mscl.EventTriggerInfo_instanceId_get, _mscl.EventTriggerInfo_instanceId_set) - - def isActive(self): - return _mscl.EventTriggerInfo_isActive(self) - - def isEnabled(self): - return _mscl.EventTriggerInfo_isEnabled(self) - - def isTestMode(self): - return _mscl.EventTriggerInfo_isTestMode(self) - - def setStatus(self, value): - return _mscl.EventTriggerInfo_setStatus(self, value) - __swig_destroy__ = _mscl.delete_EventTriggerInfo - -# Register EventTriggerInfo in _mscl: -_mscl.EventTriggerInfo_swigregister(EventTriggerInfo) - -class EventActionInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventActionInfo_swiginit(self, _mscl.new_EventActionInfo(*args)) - type = property(_mscl.EventActionInfo_type_get, _mscl.EventActionInfo_type_set) - triggerId = property(_mscl.EventActionInfo_triggerId_get, _mscl.EventActionInfo_triggerId_set) - instanceId = property(_mscl.EventActionInfo_instanceId_get, _mscl.EventActionInfo_instanceId_set) - __swig_destroy__ = _mscl.delete_EventActionInfo - -# Register EventActionInfo in _mscl: -_mscl.EventActionInfo_swigregister(EventActionInfo) - -class MeasurementReferenceFrame(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MeasurementReferenceFrame_swiginit(self, _mscl.new_MeasurementReferenceFrame(*args)) - - def asMipFieldValues(self): - return _mscl.MeasurementReferenceFrame_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.MeasurementReferenceFrame_appendMipFieldValues(self, appendTo) - - def translation(self, *args): - return _mscl.MeasurementReferenceFrame_translation(self, *args) - - def rotation(self, *args): - return _mscl.MeasurementReferenceFrame_rotation(self, *args) - - def errorTrackingEnabled(self): - return _mscl.MeasurementReferenceFrame_errorTrackingEnabled(self) - - def enableErrorTracking(self, enable=True): - return _mscl.MeasurementReferenceFrame_enableErrorTracking(self, enable) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrame - -# Register MeasurementReferenceFrame in _mscl: -_mscl.MeasurementReferenceFrame_swigregister(MeasurementReferenceFrame) - -class MipChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipChannel_swiginit(self, _mscl.new_MipChannel(*args)) - - def channelField(self): - return _mscl.MipChannel_channelField(self) - - def sampleRate(self): - return _mscl.MipChannel_sampleRate(self) - - def rateDecimation(self, sampleRateBase): - return _mscl.MipChannel_rateDecimation(self, sampleRateBase) - __swig_destroy__ = _mscl.delete_MipChannel - -# Register MipChannel in _mscl: -_mscl.MipChannel_swigregister(MipChannel) - -class MipPacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MIP_ACK_NACK_ERROR_NONE = _mscl.MipPacket_MIP_ACK_NACK_ERROR_NONE - MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND - MIP_ACK_NACK_ERROR_CHECKSUM_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_CHECKSUM_INVALID - MIP_ACK_NACK_ERROR_PARAMETER_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_PARAMETER_INVALID - MIP_ACK_NACK_ERROR_COMMAND_FAILED = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_FAILED - MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT - MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET - - def __init__(self): - _mscl.MipPacket_swiginit(self, _mscl.new_MipPacket()) - - @staticmethod - def isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - - def descriptorSet(self): - return _mscl.MipPacket_descriptorSet(self) - - def payload(self): - return _mscl.MipPacket_payload(self) - __swig_destroy__ = _mscl.delete_MipPacket - -# Register MipPacket in _mscl: -_mscl.MipPacket_swigregister(MipPacket) - -def MipPacket_isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - -class MipDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def field(self): - return _mscl.MipDataPoint_field(self) - - def qualifier(self): - return _mscl.MipDataPoint_qualifier(self) - - def hasAddlIdentifiers(self): - return _mscl.MipDataPoint_hasAddlIdentifiers(self) - - def addlIdentifiers(self): - return _mscl.MipDataPoint_addlIdentifiers(self) - - def hasValidFlag(self): - return _mscl.MipDataPoint_hasValidFlag(self) - - def valid(self): - return _mscl.MipDataPoint_valid(self) - - def channelName(self, includeAddlIds=True, consolidatedFormat=False): - return _mscl.MipDataPoint_channelName(self, includeAddlIds, consolidatedFormat) - __swig_destroy__ = _mscl.delete_MipDataPoint - -# Register MipDataPoint in _mscl: -_mscl.MipDataPoint_swigregister(MipDataPoint) - -class ContinuousBIT(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def as_MipDataPoints(self): - return _mscl.ContinuousBIT_as_MipDataPoints(self) - - @staticmethod - def getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - - def data(self): - return _mscl.ContinuousBIT_data(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_bufferOverrun(self) - - def imuClockFault(self): - return _mscl.ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_pressureSelfTestFail(self) - - def filterTimingOverrun(self): - return _mscl.ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.ContinuousBIT_filterTimingUnderrun(self) - -# Register ContinuousBIT in _mscl: -_mscl.ContinuousBIT_swigregister(ContinuousBIT) - -def ContinuousBIT_getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - -class ContinuousBIT_System_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - SYSTEM_CLOCK_FAILURE = _mscl.ContinuousBIT_System_General_SYSTEM_CLOCK_FAILURE - POWER_FAULT = _mscl.ContinuousBIT_System_General_POWER_FAULT - FIRMWARE_FAULT = _mscl.ContinuousBIT_System_General_FIRMWARE_FAULT - TIMING_OVERLOAD = _mscl.ContinuousBIT_System_General_TIMING_OVERLOAD - BUFFER_OVERRUN = _mscl.ContinuousBIT_System_General_BUFFER_OVERRUN - - def flags(self): - return _mscl.ContinuousBIT_System_General_flags(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_System_General_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_System_General_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_System_General_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_System_General_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_System_General_bufferOverrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_General - -# Register ContinuousBIT_System_General in _mscl: -_mscl.ContinuousBIT_System_General_swigregister(ContinuousBIT_System_General) - -class ContinuousBIT_System_Process(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def flags(self): - return _mscl.ContinuousBIT_System_Process_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_Process - -# Register ContinuousBIT_System_Process in _mscl: -_mscl.ContinuousBIT_System_Process_swigregister(ContinuousBIT_System_Process) - -class ContinuousBIT_System(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_System_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_System_GENERAL_FLAGS - PROCESS_FLAGS = _mscl.ContinuousBIT_System_PROCESS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_System_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System - -# Register ContinuousBIT_System in _mscl: -_mscl.ContinuousBIT_System_swigregister(ContinuousBIT_System) - -class ContinuousBIT_IMU_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - CLOCK_FAULT = _mscl.ContinuousBIT_IMU_General_CLOCK_FAULT - COMMUNICATION_FAULT = _mscl.ContinuousBIT_IMU_General_COMMUNICATION_FAULT - TIMING_OVERRUN = _mscl.ContinuousBIT_IMU_General_TIMING_OVERRUN - CALIBRATION_ERROR_ACCEL = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_ACCEL - CALIBRATION_ERROR_GYRO = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_GYRO - CALIBRATION_ERROR_MAG = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_MAG - - def flags(self): - return _mscl.ContinuousBIT_IMU_General_flags(self) - - def clockFault(self): - return _mscl.ContinuousBIT_IMU_General_clockFault(self) - - def communicationFault(self): - return _mscl.ContinuousBIT_IMU_General_communicationFault(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_IMU_General_timingOverrun(self) - - def calibrationErrorAccel(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorAccel(self) - - def calibrationErrorGyro(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorGyro(self) - - def calibrationErrorMag(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorMag(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_General - -# Register ContinuousBIT_IMU_General in _mscl: -_mscl.ContinuousBIT_IMU_General_swigregister(ContinuousBIT_IMU_General) - -class ContinuousBIT_IMU_Sensors(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - ACCEL_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_GENERAL_FAULT - ACCEL_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_OVERRANGE - ACCEL_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_SELF_TEST_FAIL - GYRO_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_GYRO_GENERAL_FAULT - GYRO_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_GYRO_OVERRANGE - GYRO_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_GYRO_SELF_TEST_FAIL - MAG_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_MAG_GENERAL_FAULT - MAG_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_MAG_OVERRANGE - MAG_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_MAG_SELF_TEST_FAIL - PRESSURE_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_GENERAL_FAULT - PRESSURE_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_OVERRANGE - PRESSURE_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_SELF_TEST_FAIL - - def flags(self): - return _mscl.ContinuousBIT_IMU_Sensors_flags(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureSelfTestFail(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_Sensors - -# Register ContinuousBIT_IMU_Sensors in _mscl: -_mscl.ContinuousBIT_IMU_Sensors_swigregister(ContinuousBIT_IMU_Sensors) - -class ContinuousBIT_IMU(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_IMU_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_IMU_GENERAL_FLAGS - SENSORS_FLAGS = _mscl.ContinuousBIT_IMU_SENSORS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_IMU_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU - -# Register ContinuousBIT_IMU in _mscl: -_mscl.ContinuousBIT_IMU_swigregister(ContinuousBIT_IMU) - -class ContinuousBIT_Filter_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - TIMING_OVERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_OVERRUN - TIMING_UNDERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_UNDERRUN - - def flags(self): - return _mscl.ContinuousBIT_Filter_General_flags(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_Filter_General_timingOverrun(self) - - def timingUnderrun(self): - return _mscl.ContinuousBIT_Filter_General_timingUnderrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter_General - -# Register ContinuousBIT_Filter_General in _mscl: -_mscl.ContinuousBIT_Filter_General_swigregister(ContinuousBIT_Filter_General) - -class ContinuousBIT_Filter(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_Filter_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_Filter_GENERAL_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_Filter_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter - -# Register ContinuousBIT_Filter in _mscl: -_mscl.ContinuousBIT_Filter_swigregister(ContinuousBIT_Filter) - -class CV7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_General_swiginit(self, _mscl.new_CV7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_General - -# Register CV7ContinuousBIT_System_General in _mscl: -_mscl.CV7ContinuousBIT_System_General_swigregister(CV7ContinuousBIT_System_General) - -class CV7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_Process_swiginit(self, _mscl.new_CV7ContinuousBIT_System_Process(*args)) - IMU_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_IMU_PROCESS_FAULT - IMU_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_IMU_RATE_MISMATCH - IMU_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_IMU_DROPPED_DATA - IMU_STUCK = _mscl.CV7ContinuousBIT_System_Process_IMU_STUCK - FILTER_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_FILTER_PROCESS_FAULT - FILTER_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_FILTER_DROPPED_DATA - FILTER_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_FILTER_RATE_MISMATCH - FILTER_STUCK = _mscl.CV7ContinuousBIT_System_Process_FILTER_STUCK - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_filterStuck(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_Process - -# Register CV7ContinuousBIT_System_Process in _mscl: -_mscl.CV7ContinuousBIT_System_Process_swigregister(CV7ContinuousBIT_System_Process) - -class CV7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_swiginit(self, _mscl.new_CV7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.CV7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System - -# Register CV7ContinuousBIT_System in _mscl: -_mscl.CV7ContinuousBIT_System_swigregister(CV7ContinuousBIT_System) - -class CV7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_General - -# Register CV7ContinuousBIT_IMU_General in _mscl: -_mscl.CV7ContinuousBIT_IMU_General_swigregister(CV7ContinuousBIT_IMU_General) - -class CV7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_Sensors - -# Register CV7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.CV7ContinuousBIT_IMU_Sensors_swigregister(CV7ContinuousBIT_IMU_Sensors) - -class CV7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU(*args)) - FACTORY_BITS_INVALID = _mscl.CV7ContinuousBIT_IMU_FACTORY_BITS_INVALID - - def general(self): - return _mscl.CV7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.CV7ContinuousBIT_IMU_sensors(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_IMU_factoryBitsInvalid(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU - -# Register CV7ContinuousBIT_IMU in _mscl: -_mscl.CV7ContinuousBIT_IMU_swigregister(CV7ContinuousBIT_IMU) - -class CV7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter_General(*args)) - FAULT = _mscl.CV7ContinuousBIT_Filter_General_FAULT - - def fault(self): - return _mscl.CV7ContinuousBIT_Filter_General_fault(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter_General - -# Register CV7ContinuousBIT_Filter_General in _mscl: -_mscl.CV7ContinuousBIT_Filter_General_swigregister(CV7ContinuousBIT_Filter_General) - -class CV7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter - -# Register CV7ContinuousBIT_Filter in _mscl: -_mscl.CV7ContinuousBIT_Filter_swigregister(CV7ContinuousBIT_Filter) - -class CV7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.CV7ContinuousBIT_swiginit(self, _mscl.new_CV7ContinuousBIT(bytes)) - - def system(self): - return _mscl.CV7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.CV7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.CV7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.CV7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.CV7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.CV7ContinuousBIT_bufferOverrun(self) - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_filterStuck(self) - - def imu(self): - return _mscl.CV7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.CV7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.CV7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.CV7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.CV7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.CV7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.CV7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.CV7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.CV7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.CV7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.CV7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.CV7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.CV7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.CV7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.CV7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.CV7ContinuousBIT_pressureSelfTestFail(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_factoryBitsInvalid(self) - - def filter(self): - return _mscl.CV7ContinuousBIT_filter(self) - - def filterFault(self): - return _mscl.CV7ContinuousBIT_filterFault(self) - - def filterTimingOverrun(self): - return _mscl.CV7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.CV7ContinuousBIT_filterTimingUnderrun(self) - - def as_MipDataPoints(self): - return _mscl.CV7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT - -# Register CV7ContinuousBIT in _mscl: -_mscl.CV7ContinuousBIT_swigregister(CV7ContinuousBIT) - -class GQ7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_General - -# Register GQ7ContinuousBIT_System_General in _mscl: -_mscl.GQ7ContinuousBIT_System_General_swigregister(GQ7ContinuousBIT_System_General) - -class GQ7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_Process_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_Process(*args)) - IMU_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_CONTROL_LINE_FAULT - IMU_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_COMMAND_RESPONSE_FAULT - IMU_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_SPI_TRANSFER_FAULT - IMU_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_DATA_FRAME_FAULT - FILTER_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_CONTROL_LINE_FAULT - FILTER_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_COMMAND_RESPONSE_FAULT - FILTER_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_SPI_TRANSFER_FAULT - FILTER_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_DATA_FRAME_FAULT - GNSS_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_CONTROL_LINE_FAULT - GNSS_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_COMMAND_RESPONSE_FAULT - GNSS_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_SPI_TRANSFER_FAULT - GNSS_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_DATA_FRAME_FAULT - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssDataFrameFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_Process - -# Register GQ7ContinuousBIT_System_Process in _mscl: -_mscl.GQ7ContinuousBIT_System_Process_swigregister(GQ7ContinuousBIT_System_Process) - -class GQ7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_swiginit(self, _mscl.new_GQ7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.GQ7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System - -# Register GQ7ContinuousBIT_System in _mscl: -_mscl.GQ7ContinuousBIT_System_swigregister(GQ7ContinuousBIT_System) - -class GQ7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_General - -# Register GQ7ContinuousBIT_IMU_General in _mscl: -_mscl.GQ7ContinuousBIT_IMU_General_swigregister(GQ7ContinuousBIT_IMU_General) - -class GQ7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_Sensors - -# Register GQ7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.GQ7ContinuousBIT_IMU_Sensors_swigregister(GQ7ContinuousBIT_IMU_Sensors) - -class GQ7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.GQ7ContinuousBIT_IMU_sensors(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU - -# Register GQ7ContinuousBIT_IMU in _mscl: -_mscl.GQ7ContinuousBIT_IMU_swigregister(GQ7ContinuousBIT_IMU) - -class GQ7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_HARDWARE_FAULT - COMMUNICATION_ERROR_IMU_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_IMU_SPI - COMMUNICATION_ERROR_GNSS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_GNSS_SPI - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_COMMS_UART = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_UART - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationError(self) - - def communicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorImuSpi(self) - - def communicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorGnssSpi(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsSpi(self) - - def communicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsUart(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter_General - -# Register GQ7ContinuousBIT_Filter_General in _mscl: -_mscl.GQ7ContinuousBIT_Filter_General_swigregister(GQ7ContinuousBIT_Filter_General) - -class GQ7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter - -# Register GQ7ContinuousBIT_Filter in _mscl: -_mscl.GQ7ContinuousBIT_Filter_swigregister(GQ7ContinuousBIT_Filter) - -class GQ7ContinuousBIT_GNSS_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_HARDWARE_FAULT - COMMUNICATION_ERROR_COMMS_SERIAL = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SERIAL - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_NAV_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_NAV_SPI - GPS_TIME_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_GPS_TIME_FAULT - TIMING_OVERRUN = _mscl.GQ7ContinuousBIT_GNSS_General_TIMING_OVERRUN - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_flags(self) - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationError(self) - - def communicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSerial(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSpi(self) - - def communicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_gpsTimeFault(self) - - def timingOverrun(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_timingOverrun(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_General - -# Register GQ7ContinuousBIT_GNSS_General in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_General_swigregister(GQ7ContinuousBIT_GNSS_General) - -class GQ7ContinuousBIT_GNSS_Receivers(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_Receivers_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_Receivers(*args)) - POWER_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_1 - FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_1 - SHORTED_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_1 - OPEN_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_1 - SOLUTION_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_1 - POWER_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_2 - FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_2 - SHORTED_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_2 - OPEN_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_2 - SOLUTION_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_2 - RTCM_COMMUNICATION_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTCM_COMMUNICATION_FAULT - RTK_DONGLE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTK_DONGLE_FAULT - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_flags(self) - - def powerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver1(self) - - def faultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver1(self) - - def shortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna1(self) - - def openAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna1(self) - - def solutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver1(self) - - def powerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver2(self) - - def faultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver2(self) - - def shortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna2(self) - - def openAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna2(self) - - def solutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtkDongleFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_Receivers - -# Register GQ7ContinuousBIT_GNSS_Receivers in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_Receivers_swigregister(GQ7ContinuousBIT_GNSS_Receivers) - -class GQ7ContinuousBIT_GNSS(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS(*args)) - RESPONSE_OFFSET = _mscl.GQ7ContinuousBIT_GNSS_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_GENERAL_FLAGS - RECEIVERS_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_RECEIVERS_FLAGS - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_flags(self) - - def general(self): - return _mscl.GQ7ContinuousBIT_GNSS_general(self) - - def receivers(self): - return _mscl.GQ7ContinuousBIT_GNSS_receivers(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS - -# Register GQ7ContinuousBIT_GNSS in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_swigregister(GQ7ContinuousBIT_GNSS) - -class GQ7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.GQ7ContinuousBIT_swiginit(self, _mscl.new_GQ7ContinuousBIT(bytes)) - - def system(self): - return _mscl.GQ7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.GQ7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.GQ7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.GQ7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.GQ7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.GQ7ContinuousBIT_bufferOverrun(self) - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_gnssDataFrameFault(self) - - def imu(self): - return _mscl.GQ7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.GQ7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.GQ7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.GQ7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.GQ7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.GQ7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.GQ7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.GQ7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.GQ7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.GQ7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_pressureSelfTestFail(self) - - def filter(self): - return _mscl.GQ7ContinuousBIT_filter(self) - - def filterClockFault(self): - return _mscl.GQ7ContinuousBIT_filterClockFault(self) - - def filterHardwareFault(self): - return _mscl.GQ7ContinuousBIT_filterHardwareFault(self) - - def filterTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingUnderrun(self) - - def filterCommunicationError(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationError(self) - - def filterCommunicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorImuSpi(self) - - def filterCommunicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorGnssSpi(self) - - def filterCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsSpi(self) - - def filterCommunicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsUart(self) - - def gnss(self): - return _mscl.GQ7ContinuousBIT_gnss(self) - - def gnssClockFault(self): - return _mscl.GQ7ContinuousBIT_gnssClockFault(self) - - def gnssHardwareFault(self): - return _mscl.GQ7ContinuousBIT_gnssHardwareFault(self) - - def gnssCommunicationError(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationError(self) - - def gnssCommunicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSerial(self) - - def gnssCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSpi(self) - - def gnssCommunicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_gpsTimeFault(self) - - def gnssTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_gnssTimingOverrun(self) - - def gnssPowerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver1(self) - - def gnssFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver1(self) - - def gnssShortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna1(self) - - def gnssOpenAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna1(self) - - def gnssSolutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver1(self) - - def gnssPowerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver2(self) - - def gnssFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver2(self) - - def gnssShortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna2(self) - - def gnssOpenAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna2(self) - - def gnssSolutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_rtkDongleFault(self) - - def as_MipDataPoints(self): - return _mscl.GQ7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT - -# Register GQ7ContinuousBIT in _mscl: -_mscl.GQ7ContinuousBIT_swigregister(GQ7ContinuousBIT) - -class MipSharedDataFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EVENT_SOURCE_NONE = _mscl.MipSharedDataFields_EVENT_SOURCE_NONE - EVENT_SOURCE_UNKNOWN = _mscl.MipSharedDataFields_EVENT_SOURCE_UNKNOWN - - def __init__(self): - _mscl.MipSharedDataFields_swiginit(self, _mscl.new_MipSharedDataFields()) - - def hasEventSource(self): - return _mscl.MipSharedDataFields_hasEventSource(self) - - def eventSource(self): - return _mscl.MipSharedDataFields_eventSource(self) - - def hasTicks(self): - return _mscl.MipSharedDataFields_hasTicks(self) - - def ticks(self): - return _mscl.MipSharedDataFields_ticks(self) - - def hasDeltaTicks(self): - return _mscl.MipSharedDataFields_hasDeltaTicks(self) - - def deltaTicks(self): - return _mscl.MipSharedDataFields_deltaTicks(self) - - def hasGpsTimestamp(self): - return _mscl.MipSharedDataFields_hasGpsTimestamp(self) - - def gpsTimestamp(self): - return _mscl.MipSharedDataFields_gpsTimestamp(self) - - def gpsTimestampValid(self): - return _mscl.MipSharedDataFields_gpsTimestampValid(self) - - def hasDeltaTime(self): - return _mscl.MipSharedDataFields_hasDeltaTime(self) - - def deltaTime(self): - return _mscl.MipSharedDataFields_deltaTime(self) - - def hasReferenceTime(self): - return _mscl.MipSharedDataFields_hasReferenceTime(self) - - def referenceTime(self): - return _mscl.MipSharedDataFields_referenceTime(self) - - def hasDeltaReferenceTime(self): - return _mscl.MipSharedDataFields_hasDeltaReferenceTime(self) - - def deltaReferenceTime(self): - return _mscl.MipSharedDataFields_deltaReferenceTime(self) - - def hasExternalTimestamp(self): - return _mscl.MipSharedDataFields_hasExternalTimestamp(self) - - def externalTimestamp(self): - return _mscl.MipSharedDataFields_externalTimestamp(self) - - def externalTimestampValid(self): - return _mscl.MipSharedDataFields_externalTimestampValid(self) - - def hasDeltaExternalTime(self): - return _mscl.MipSharedDataFields_hasDeltaExternalTime(self) - - def deltaExternalTime(self): - return _mscl.MipSharedDataFields_deltaExternalTime(self) - - def deltaExternalTimeValid(self): - return _mscl.MipSharedDataFields_deltaExternalTimeValid(self) - - def get(self, *args): - return _mscl.MipSharedDataFields_get(self, *args) - __swig_destroy__ = _mscl.delete_MipSharedDataFields - -# Register MipSharedDataFields in _mscl: -_mscl.MipSharedDataFields_swigregister(MipSharedDataFields) - -class MipDataPacket(MipPacket): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipDataPacket_swiginit(self, _mscl.new_MipDataPacket(*args)) - - def data(self): - return _mscl.MipDataPacket_data(self) - - def shared(self): - return _mscl.MipDataPacket_shared(self) - - def collectedTimestamp(self): - return _mscl.MipDataPacket_collectedTimestamp(self) - - def deviceTimestamp(self): - return _mscl.MipDataPacket_deviceTimestamp(self) - - def hasDeviceTime(self): - return _mscl.MipDataPacket_hasDeviceTime(self) - - def deviceTimeValid(self): - return _mscl.MipDataPacket_deviceTimeValid(self) - - def deviceTimeFlags(self): - return _mscl.MipDataPacket_deviceTimeFlags(self) - __swig_destroy__ = _mscl.delete_MipDataPacket - -# Register MipDataPacket in _mscl: -_mscl.MipDataPacket_swigregister(MipDataPacket) - -class RawBytePacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INVALID_PACKET = _mscl.RawBytePacket_INVALID_PACKET - DATA_PACKET = _mscl.RawBytePacket_DATA_PACKET - COMMAND_PACKET = _mscl.RawBytePacket_COMMAND_PACKET - NO_PACKET_FOUND = _mscl.RawBytePacket_NO_PACKET_FOUND - FROM_READ = _mscl.RawBytePacket_FROM_READ - FROM_SEND = _mscl.RawBytePacket_FROM_SEND - - def __init__(self): - _mscl.RawBytePacket_swiginit(self, _mscl.new_RawBytePacket()) - - def type(self, *args): - return _mscl.RawBytePacket_type(self, *args) - - def source(self, *args): - return _mscl.RawBytePacket_source(self, *args) - - def payload(self, *args): - return _mscl.RawBytePacket_payload(self, *args) - __swig_destroy__ = _mscl.delete_RawBytePacket - -# Register RawBytePacket in _mscl: -_mscl.RawBytePacket_swigregister(RawBytePacket) - -class MipNodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_MipNodeFeatures - - @staticmethod - def isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - - def supportsCategory(self, dataClass): - return _mscl.MipNodeFeatures_supportsCategory(self, dataClass) - - def supportsCommand(self, commandId): - return _mscl.MipNodeFeatures_supportsCommand(self, commandId) - - def supportedCommands(self): - return _mscl.MipNodeFeatures_supportedCommands(self) - - def supportsChannelField(self, fieldId): - return _mscl.MipNodeFeatures_supportsChannelField(self, fieldId) - - def filterSupportedChannelFields(self, fields): - return _mscl.MipNodeFeatures_filterSupportedChannelFields(self, fields) - - def supportedChannelFields(self, *args): - return _mscl.MipNodeFeatures_supportedChannelFields(self, *args) - - def supportedSampleRates(self, dataClass): - return _mscl.MipNodeFeatures_supportedSampleRates(self, dataClass) - - def baseDataRate(self, dataClass): - return _mscl.MipNodeFeatures_baseDataRate(self, dataClass) - - def gnssReceiverInfo(self): - return _mscl.MipNodeFeatures_gnssReceiverInfo(self) - - def supportedGnssSources(self): - return _mscl.MipNodeFeatures_supportedGnssSources(self) - - def supportedSensorRanges(self, *args): - return _mscl.MipNodeFeatures_supportedSensorRanges(self, *args) - - def getCommPortInfo(self): - return _mscl.MipNodeFeatures_getCommPortInfo(self) - - def useLegacyIdsForEnableDataStream(self): - return _mscl.MipNodeFeatures_useLegacyIdsForEnableDataStream(self) - - def supportedHeadingUpdateOptions(self): - return _mscl.MipNodeFeatures_supportedHeadingUpdateOptions(self) - - def supportedHeadingAlignmentMethods(self): - return _mscl.MipNodeFeatures_supportedHeadingAlignmentMethods(self) - - def supportedStatusSelectors(self): - return _mscl.MipNodeFeatures_supportedStatusSelectors(self) - - def supportedEstimationControlOptions(self): - return _mscl.MipNodeFeatures_supportedEstimationControlOptions(self) - - def supportedVehicleModeTypes(self): - return _mscl.MipNodeFeatures_supportedVehicleModeTypes(self) - - def supportedAdaptiveMeasurementModes(self): - return _mscl.MipNodeFeatures_supportedAdaptiveMeasurementModes(self) - - def supportedAdaptiveFilterLevels(self): - return _mscl.MipNodeFeatures_supportedAdaptiveFilterLevels(self) - - def supportedAidingMeasurementOptions(self): - return _mscl.MipNodeFeatures_supportedAidingMeasurementOptions(self) - - def supportedPpsSourceOptions(self): - return _mscl.MipNodeFeatures_supportedPpsSourceOptions(self) - - def supportedGpioPins(self): - return _mscl.MipNodeFeatures_supportedGpioPins(self) - - def supportedGpioPinModes(self, feature, behavior): - return _mscl.MipNodeFeatures_supportedGpioPinModes(self, feature, behavior) - - def supportedGpioBehaviors(self, feature, pin): - return _mscl.MipNodeFeatures_supportedGpioBehaviors(self, feature, pin) - - def supportedGpioFeatures(self, pin): - return _mscl.MipNodeFeatures_supportedGpioFeatures(self, pin) - - def supportedGpioConfigurations(self): - return _mscl.MipNodeFeatures_supportedGpioConfigurations(self) - - def supportedGnssSignalConfigurations(self): - return _mscl.MipNodeFeatures_supportedGnssSignalConfigurations(self) - - def supportedDeclinationSources(self): - return _mscl.MipNodeFeatures_supportedDeclinationSources(self) - - def supportedInclinationSources(self): - return _mscl.MipNodeFeatures_supportedInclinationSources(self) - - def supportedMagneticMagnitudeSources(self): - return _mscl.MipNodeFeatures_supportedMagneticMagnitudeSources(self) - - def supportedEventThresholdChannels(self): - return _mscl.MipNodeFeatures_supportedEventThresholdChannels(self) - - def supportedEventActionInfo(self): - return _mscl.MipNodeFeatures_supportedEventActionInfo(self) - - def supportedEventTriggerInfo(self): - return _mscl.MipNodeFeatures_supportedEventTriggerInfo(self) - - def supportsNorthCompensation(self): - return _mscl.MipNodeFeatures_supportsNorthCompensation(self) - - def supportedLowPassFilterChannelFields(self): - return _mscl.MipNodeFeatures_supportedLowPassFilterChannelFields(self) - - def maxMeasurementReferenceFrameId(self): - return _mscl.MipNodeFeatures_maxMeasurementReferenceFrameId(self) - -# Register MipNodeFeatures in _mscl: -_mscl.MipNodeFeatures_swigregister(MipNodeFeatures) - -def MipNodeFeatures_isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - -class MipNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.MipNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - def getConfigCommandBytes(self): - return _mscl.MipNode_getConfigCommandBytes(self) - - def sendCommandBytes(self, *args): - return _mscl.MipNode_sendCommandBytes(self, *args) - - @staticmethod - def deviceName(serial): - return _mscl.MipNode_deviceName(serial) - - def connection(self): - return _mscl.MipNode_connection(self) - - def features(self): - return _mscl.MipNode_features(self) - - def clearDeviceInfo(self): - return _mscl.MipNode_clearDeviceInfo(self) - - def lastCommunicationTime(self): - return _mscl.MipNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.MipNode_lastDeviceState(self) - - def setLastDeviceState(self, state): - return _mscl.MipNode_setLastDeviceState(self, state) - - def firmwareVersion(self): - return _mscl.MipNode_firmwareVersion(self) - - def model(self): - return _mscl.MipNode_model(self) - - def modelName(self): - return _mscl.MipNode_modelName(self) - - def modelNumber(self): - return _mscl.MipNode_modelNumber(self) - - def serialNumber(self): - return _mscl.MipNode_serialNumber(self) - - def lotNumber(self): - return _mscl.MipNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.MipNode_deviceOptions(self) - - def timeout(self, *args): - return _mscl.MipNode_timeout(self, *args) - - def name(self): - return _mscl.MipNode_name(self) - - def ping(self): - return _mscl.MipNode_ping(self) - - def setToIdle(self): - return _mscl.MipNode_setToIdle(self) - - def cyclePower(self): - return _mscl.MipNode_cyclePower(self) - - def resume(self): - return _mscl.MipNode_resume(self) - - def getCommunicationMode(self): - return _mscl.MipNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.MipNode_setCommunicationMode(self, communicationMode) - - def saveSettingsAsStartup(self, *args): - return _mscl.MipNode_saveSettingsAsStartup(self, *args) - - def loadStartupSettings(self, *args): - return _mscl.MipNode_loadStartupSettings(self, *args) - - def loadFactoryDefaultSettings(self, *args): - return _mscl.MipNode_loadFactoryDefaultSettings(self, *args) - - def setUARTBaudRate(self, *args): - return _mscl.MipNode_setUARTBaudRate(self, *args) - - def getUARTBaudRate(self, portId=1): - return _mscl.MipNode_getUARTBaudRate(self, portId) - - def getRawBytePackets(self, timeout=0, maxPackets=0): - return _mscl.MipNode_getRawBytePackets(self, timeout, maxPackets) - -# Register MipNode in _mscl: -_mscl.MipNode_swigregister(MipNode) - -def MipNode_deviceName(serial): - return _mscl.MipNode_deviceName(serial) - -class InertialNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.InertialNode_swiginit(self, _mscl.new_InertialNode(connection)) - __swig_destroy__ = _mscl.delete_InertialNode - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.InertialNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.InertialNode_totalPackets(self) - - def pollData(self, *args): - return _mscl.InertialNode_pollData(self, *args) - - def getDataRateBase(self, dataClass): - return _mscl.InertialNode_getDataRateBase(self, dataClass) - - def getActiveChannelFields(self, dataClass): - return _mscl.InertialNode_getActiveChannelFields(self, dataClass) - - def setActiveChannelFields(self, dataClass, channels): - return _mscl.InertialNode_setActiveChannelFields(self, dataClass, channels) - - def saveActiveChannelFields(self, dataClass): - return _mscl.InertialNode_saveActiveChannelFields(self, dataClass) - - def setFactoryStreamingChannels(self, option): - return _mscl.InertialNode_setFactoryStreamingChannels(self, option) - - def getInterfaceControl(self, interfaceId): - return _mscl.InertialNode_getInterfaceControl(self, interfaceId) - - def setInterfaceControl(self, *args): - return _mscl.InertialNode_setInterfaceControl(self, *args) - - def getCommunicationMode(self): - return _mscl.InertialNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.InertialNode_setCommunicationMode(self, communicationMode) - - def isDataStreamEnabled(self, dataClass): - return _mscl.InertialNode_isDataStreamEnabled(self, dataClass) - - def enableDataStream(self, dataClass, enable=True, resumeStreaming=True): - return _mscl.InertialNode_enableDataStream(self, dataClass, enable, resumeStreaming) - - def resetFilter(self): - return _mscl.InertialNode_resetFilter(self) - - def runFilter(self): - return _mscl.InertialNode_runFilter(self) - - def getAutoInitialization(self): - return _mscl.InertialNode_getAutoInitialization(self) - - def setAutoInitialization(self, enable): - return _mscl.InertialNode_setAutoInitialization(self, enable) - - def getAltitudeAid(self): - return _mscl.InertialNode_getAltitudeAid(self) - - def setAltitudeAid(self, enable): - return _mscl.InertialNode_setAltitudeAid(self, enable) - - def getPitchRollAid(self): - return _mscl.InertialNode_getPitchRollAid(self) - - def setPitchRollAid(self, enable): - return _mscl.InertialNode_setPitchRollAid(self, enable) - - def enableVerticalGyroConstraint(self, enable): - return _mscl.InertialNode_enableVerticalGyroConstraint(self, enable) - - def verticalGyroConstraintEnabled(self): - return _mscl.InertialNode_verticalGyroConstraintEnabled(self) - - def enableWheeledVehicleConstraint(self, enable): - return _mscl.InertialNode_enableWheeledVehicleConstraint(self, enable) - - def wheeledVehicleConstraintEnabled(self): - return _mscl.InertialNode_wheeledVehicleConstraintEnabled(self) - - def setVelocityZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setVelocityZUPT(self, ZUPTSettings) - - def getVelocityZUPT(self): - return _mscl.InertialNode_getVelocityZUPT(self) - - def setAngularRateZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setAngularRateZUPT(self, ZUPTSettings) - - def getAngularRateZUPT(self): - return _mscl.InertialNode_getAngularRateZUPT(self) - - def cmdedVelZUPT(self): - return _mscl.InertialNode_cmdedVelZUPT(self) - - def cmdedAngRateZUPT(self): - return _mscl.InertialNode_cmdedAngRateZUPT(self) - - def setInitialAttitude(self, attitude): - return _mscl.InertialNode_setInitialAttitude(self, attitude) - - def setInitialHeading(self, heading): - return _mscl.InertialNode_setInitialHeading(self, heading) - - def getInitialFilterConfiguration(self): - return _mscl.InertialNode_getInitialFilterConfiguration(self) - - def setInitialFilterConfiguration(self, filterConfig): - return _mscl.InertialNode_setInitialFilterConfiguration(self, filterConfig) - - def getSensorToVehicleRotation_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleRotation_eulerAngles(self) - - def setSensorToVehicleRotation_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleRotation_eulerAngles(self, angles) - - def getSensorToVehicleRotation_matrix(self): - return _mscl.InertialNode_getSensorToVehicleRotation_matrix(self) - - def setSensorToVehicleRotation_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleRotation_matrix(self, dcm) - - def getSensorToVehicleRotation_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleRotation_quaternion(self) - - def setSensorToVehicleRotation_quaternion(self, rotation): - return _mscl.InertialNode_setSensorToVehicleRotation_quaternion(self, rotation) - - def getSensorToVehicleTransform_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleTransform_eulerAngles(self) - - def setSensorToVehicleTransform_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleTransform_eulerAngles(self, angles) - - def getSensorToVehicleTransform_matrix(self): - return _mscl.InertialNode_getSensorToVehicleTransform_matrix(self) - - def setSensorToVehicleTransform_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleTransform_matrix(self, dcm) - - def getSensorToVehicleTransform_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleTransform_quaternion(self) - - def setSensorToVehicleTransform_quaternion(self, transformation): - return _mscl.InertialNode_setSensorToVehicleTransform_quaternion(self, transformation) - - def getSensorToVehicleOffset(self): - return _mscl.InertialNode_getSensorToVehicleOffset(self) - - def setSensorToVehicleOffset(self, offset): - return _mscl.InertialNode_setSensorToVehicleOffset(self, offset) - - def getAntennaOffset(self): - return _mscl.InertialNode_getAntennaOffset(self) - - def setAntennaOffset(self, offset): - return _mscl.InertialNode_setAntennaOffset(self, offset) - - def getGNSSAssistedFixControl(self): - return _mscl.InertialNode_getGNSSAssistedFixControl(self) - - def setGNSSAssistedFixControl(self, enableAssistedFix): - return _mscl.InertialNode_setGNSSAssistedFixControl(self, enableAssistedFix) - - def getGNSSAssistTimeUpdate(self): - return _mscl.InertialNode_getGNSSAssistTimeUpdate(self) - - def setGNSSAssistTimeUpdate(self, timeUpdate): - return _mscl.InertialNode_setGNSSAssistTimeUpdate(self, timeUpdate) - - def getGPSTimeUpdate(self, timeFrame): - return _mscl.InertialNode_getGPSTimeUpdate(self, timeFrame) - - def setGPSTimeUpdate(self, arg2, timeData): - return _mscl.InertialNode_setGPSTimeUpdate(self, arg2, timeData) - - def setConstellationSettings(self, dataToUse): - return _mscl.InertialNode_setConstellationSettings(self, dataToUse) - - def getConstellationSettings(self): - return _mscl.InertialNode_getConstellationSettings(self) - - def setSBASSettings(self, dataToUse): - return _mscl.InertialNode_setSBASSettings(self, dataToUse) - - def getSBASSettings(self): - return _mscl.InertialNode_getSBASSettings(self) - - def setAccelerometerBias(self, biasVector): - return _mscl.InertialNode_setAccelerometerBias(self, biasVector) - - def getAccelerometerBias(self): - return _mscl.InertialNode_getAccelerometerBias(self) - - def setGyroBias(self, biasVector): - return _mscl.InertialNode_setGyroBias(self, biasVector) - - def getGyroBias(self): - return _mscl.InertialNode_getGyroBias(self) - - def captureGyroBias(self, samplingTime): - return _mscl.InertialNode_captureGyroBias(self, samplingTime) - - def findMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_findMagnetometerCaptureAutoCalibration(self) - - def saveMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_saveMagnetometerCaptureAutoCalibration(self) - - def setMagnetometerSoftIronMatrix(self, matrix): - return _mscl.InertialNode_setMagnetometerSoftIronMatrix(self, matrix) - - def getMagnetometerSoftIronMatrix(self): - return _mscl.InertialNode_getMagnetometerSoftIronMatrix(self) - - def setMagnetometerHardIronOffset(self, offsetVector): - return _mscl.InertialNode_setMagnetometerHardIronOffset(self, offsetVector) - - def getMagnetometerHardIronOffset(self): - return _mscl.InertialNode_getMagnetometerHardIronOffset(self) - - def setConingAndScullingEnable(self, enable): - return _mscl.InertialNode_setConingAndScullingEnable(self, enable) - - def getConingAndScullingEnable(self): - return _mscl.InertialNode_getConingAndScullingEnable(self) - - def setLowPassFilterSettings(self, data): - return _mscl.InertialNode_setLowPassFilterSettings(self, data) - - def getLowPassFilterSettings(self, dataDescriptors): - return _mscl.InertialNode_getLowPassFilterSettings(self, dataDescriptors) - - def setComplementaryFilterSettings(self, data): - return _mscl.InertialNode_setComplementaryFilterSettings(self, data) - - def getComplementaryFilterSettings(self): - return _mscl.InertialNode_getComplementaryFilterSettings(self) - - def getBasicDeviceStatus(self): - return _mscl.InertialNode_getBasicDeviceStatus(self) - - def getDiagnosticDeviceStatus(self): - return _mscl.InertialNode_getDiagnosticDeviceStatus(self) - - def sendRawRTCM_2_3Message(self, theMessage): - return _mscl.InertialNode_sendRawRTCM_2_3Message(self, theMessage) - - def setVehicleDynamicsMode(self, mode): - return _mscl.InertialNode_setVehicleDynamicsMode(self, mode) - - def getVehicleDynamicsMode(self): - return _mscl.InertialNode_getVehicleDynamicsMode(self) - - def setEstimationControlFlags(self, flags): - return _mscl.InertialNode_setEstimationControlFlags(self, flags) - - def getEstimationControlFlags(self): - return _mscl.InertialNode_getEstimationControlFlags(self) - - def setInclinationSource(self, options): - return _mscl.InertialNode_setInclinationSource(self, options) - - def getInclinationSource(self): - return _mscl.InertialNode_getInclinationSource(self) - - def setDeclinationSource(self, options): - return _mscl.InertialNode_setDeclinationSource(self, options) - - def getDeclinationSource(self): - return _mscl.InertialNode_getDeclinationSource(self) - - def setMagneticFieldMagnitudeSource(self, options): - return _mscl.InertialNode_setMagneticFieldMagnitudeSource(self, options) - - def getMagneticFieldMagnitudeSource(self): - return _mscl.InertialNode_getMagneticFieldMagnitudeSource(self) - - def setGNSS_SourceControl(self, gnssSource): - return _mscl.InertialNode_setGNSS_SourceControl(self, gnssSource) - - def getGNSS_SourceControl(self): - return _mscl.InertialNode_getGNSS_SourceControl(self) - - def sendExternalGNSSUpdate(self, gnssUpdateData): - return _mscl.InertialNode_sendExternalGNSSUpdate(self, gnssUpdateData) - - def setHeadingUpdateControl(self, headingUpdateOptions): - return _mscl.InertialNode_setHeadingUpdateControl(self, headingUpdateOptions) - - def tareOrientation(self, axisValue): - return _mscl.InertialNode_tareOrientation(self, axisValue) - - def getHeadingUpdateControl(self): - return _mscl.InertialNode_getHeadingUpdateControl(self) - - def setGravityErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setGravityErrorAdaptiveMeasurement(self, data) - - def getGravityErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getGravityErrorAdaptiveMeasurement(self) - - def setMagnetometerErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagnetometerErrorAdaptiveMeasurement(self, data) - - def getMagnetometerErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagnetometerErrorAdaptiveMeasurement(self) - - def setMagDipAngleErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagDipAngleErrorAdaptiveMeasurement(self, data) - - def getMagDipAngleErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagDipAngleErrorAdaptiveMeasurement(self) - - def setMagNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setMagNoiseStandardDeviation(self, data) - - def getMagNoiseStandardDeviation(self): - return _mscl.InertialNode_getMagNoiseStandardDeviation(self) - - def setGravNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGravNoiseStandardDeviation(self, data) - - def getGravNoiseStandardDeviation(self): - return _mscl.InertialNode_getGravNoiseStandardDeviation(self) - - def setAccelNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setAccelNoiseStandardDeviation(self, data) - - def getAccelNoiseStandardDeviation(self): - return _mscl.InertialNode_getAccelNoiseStandardDeviation(self) - - def setGyroNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGyroNoiseStandardDeviation(self, data) - - def getGyroNoiseStandardDeviation(self): - return _mscl.InertialNode_getGyroNoiseStandardDeviation(self) - - def setPressureAltNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setPressureAltNoiseStandardDeviation(self, data) - - def getPressureAltNoiseStandardDeviation(self): - return _mscl.InertialNode_getPressureAltNoiseStandardDeviation(self) - - def setHardIronOffsetProcessNoise(self, data): - return _mscl.InertialNode_setHardIronOffsetProcessNoise(self, data) - - def getHardIronOffsetProcessNoise(self): - return _mscl.InertialNode_getHardIronOffsetProcessNoise(self) - - def setAccelBiasModelParams(self, data): - return _mscl.InertialNode_setAccelBiasModelParams(self, data) - - def getAccelBiasModelParams(self): - return _mscl.InertialNode_getAccelBiasModelParams(self) - - def setGyroBiasModelParams(self, data): - return _mscl.InertialNode_setGyroBiasModelParams(self, data) - - def getGyroBiasModelParams(self): - return _mscl.InertialNode_getGyroBiasModelParams(self) - - def setSoftIronMatrixProcessNoise(self, data): - return _mscl.InertialNode_setSoftIronMatrixProcessNoise(self, data) - - def getSoftIronMatrixProcessNoise(self): - return _mscl.InertialNode_getSoftIronMatrixProcessNoise(self) - - def setFixedReferencePosition(self, data): - return _mscl.InertialNode_setFixedReferencePosition(self, data) - - def getFixedReferencePosition(self): - return _mscl.InertialNode_getFixedReferencePosition(self) - - def setGPSDynamicsMode(self, data): - return _mscl.InertialNode_setGPSDynamicsMode(self, data) - - def getGPSDynamicsMode(self): - return _mscl.InertialNode_getGPSDynamicsMode(self) - - def setDevicePowerState(self, device, data): - return _mscl.InertialNode_setDevicePowerState(self, device, data) - - def getDevicePowerState(self, device): - return _mscl.InertialNode_getDevicePowerState(self, device) - - def setDeviceStreamFormat(self, device, data): - return _mscl.InertialNode_setDeviceStreamFormat(self, device, data) - - def getDeviceStreamFormat(self, device): - return _mscl.InertialNode_getDeviceStreamFormat(self, device) - - def setSignalConditioningSettings(self, data): - return _mscl.InertialNode_setSignalConditioningSettings(self, data) - - def getSignalConditioningSettings(self): - return _mscl.InertialNode_getSignalConditioningSettings(self) - - def setEnableDisableMeasurements(self, data): - return _mscl.InertialNode_setEnableDisableMeasurements(self, data) - - def getEnableDisableMeasurements(self): - return _mscl.InertialNode_getEnableDisableMeasurements(self) - - def setGravityNoiseMinimum(self, data): - return _mscl.InertialNode_setGravityNoiseMinimum(self, data) - - def getGravityNoiseMinimum(self): - return _mscl.InertialNode_getGravityNoiseMinimum(self) - - def sendExternalHeadingUpdate(self, *args): - return _mscl.InertialNode_sendExternalHeadingUpdate(self, *args) - - def aidingMeasurementEnabled(self, aidingSource): - return _mscl.InertialNode_aidingMeasurementEnabled(self, aidingSource) - - def enableDisableAidingMeasurement(self, aidingSource, enable): - return _mscl.InertialNode_enableDisableAidingMeasurement(self, aidingSource, enable) - - def getAdaptiveFilterOptions(self): - return _mscl.InertialNode_getAdaptiveFilterOptions(self) - - def setAdaptiveFilterOptions(self, options): - return _mscl.InertialNode_setAdaptiveFilterOptions(self, options) - - def getMultiAntennaOffset(self, receiverId): - return _mscl.InertialNode_getMultiAntennaOffset(self, receiverId) - - def setMultiAntennaOffset(self, receiverId, offset): - return _mscl.InertialNode_setMultiAntennaOffset(self, receiverId, offset) - - def getPpsSource(self): - return _mscl.InertialNode_getPpsSource(self) - - def setPpsSource(self, ppsSource): - return _mscl.InertialNode_setPpsSource(self, ppsSource) - - def getOdometerConfig(self): - return _mscl.InertialNode_getOdometerConfig(self) - - def setOdometerConfig(self, config): - return _mscl.InertialNode_setOdometerConfig(self, config) - - def getSensorRange(self, sensorRangeType): - return _mscl.InertialNode_getSensorRange(self, sensorRangeType) - - def setSensorRange(self, *args): - return _mscl.InertialNode_setSensorRange(self, *args) - - def getGpioConfig(self, pin): - return _mscl.InertialNode_getGpioConfig(self, pin) - - def setGpioConfig(self, config): - return _mscl.InertialNode_setGpioConfig(self, config) - - def getGpioState(self, pin): - return _mscl.InertialNode_getGpioState(self, pin) - - def setGpioState(self, pin, state): - return _mscl.InertialNode_setGpioState(self, pin, state) - - def getEventTriggerMode(self, instance): - return _mscl.InertialNode_getEventTriggerMode(self, instance) - - def setEventTriggerMode(self, instance, mode): - return _mscl.InertialNode_setEventTriggerMode(self, instance, mode) - - def getEventTriggerConfig(self, instance): - return _mscl.InertialNode_getEventTriggerConfig(self, instance) - - def setEventTriggerConfig(self, config): - return _mscl.InertialNode_setEventTriggerConfig(self, config) - - def getEventActionConfig(self, instance): - return _mscl.InertialNode_getEventActionConfig(self, instance) - - def setEventActionConfig(self, config, validateSupported=True): - return _mscl.InertialNode_setEventActionConfig(self, config, validateSupported) - - def getAntennaLeverArmCal(self): - return _mscl.InertialNode_getAntennaLeverArmCal(self) - - def setAntennaLeverArmCal(self, config): - return _mscl.InertialNode_setAntennaLeverArmCal(self, config) - - def getRelativePositionReference(self): - return _mscl.InertialNode_getRelativePositionReference(self) - - def setRelativePositionReference(self, ref): - return _mscl.InertialNode_setRelativePositionReference(self, ref) - - def getLeverArmReferenceOffset(self): - return _mscl.InertialNode_getLeverArmReferenceOffset(self) - - def setLeverArmReferenceOffset(self, offset): - return _mscl.InertialNode_setLeverArmReferenceOffset(self, offset) - - def sendExternalSpeedMeasurementUpdate(self, tow, speed, unc): - return _mscl.InertialNode_sendExternalSpeedMeasurementUpdate(self, tow, speed, unc) - - def getSpeedMeasurementOffset(self): - return _mscl.InertialNode_getSpeedMeasurementOffset(self) - - def setSpeedMeasurementOffset(self, offset): - return _mscl.InertialNode_setSpeedMeasurementOffset(self, offset) - - def getGnssSignalConfig(self): - return _mscl.InertialNode_getGnssSignalConfig(self) - - def setGnssSignalConfig(self, config): - return _mscl.InertialNode_setGnssSignalConfig(self, config) - - def getGnssSpartnConfig(self): - return _mscl.InertialNode_getGnssSpartnConfig(self) - - def setGnssSpartnConfig(self, config): - return _mscl.InertialNode_setGnssSpartnConfig(self, config) - - def rtkEnabled(self): - return _mscl.InertialNode_rtkEnabled(self) - - def enableRtk(self, enable): - return _mscl.InertialNode_enableRtk(self, enable) - - def getEventTriggerStatus(self, *args): - return _mscl.InertialNode_getEventTriggerStatus(self, *args) - - def getEventActionStatus(self, *args): - return _mscl.InertialNode_getEventActionStatus(self, *args) - - def getNmeaMessageFormat(self): - return _mscl.InertialNode_getNmeaMessageFormat(self) - - def setNmeaMessageFormat(self, nmeaFormats): - return _mscl.InertialNode_setNmeaMessageFormat(self, nmeaFormats) - - def getAidingMeasurementReferenceFrames(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrames(self, *args) - - def setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds=False): - return _mscl.InertialNode_setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds) - - def getAidingMeasurementReferenceFrame(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrame(self, *args) - - def setAidingMeasurementReferenceFrame(self, id, frame): - return _mscl.InertialNode_setAidingMeasurementReferenceFrame(self, id, frame) - - def setAidingMeasurementResponseMode(self, mode): - return _mscl.InertialNode_setAidingMeasurementResponseMode(self, mode) - - def getAidingMeasurementResponseMode(self): - return _mscl.InertialNode_getAidingMeasurementResponseMode(self) - - def sendAidingMeasurement(self, *args): - return _mscl.InertialNode_sendAidingMeasurement(self, *args) - - def sendAidingMeasurement_readEcho(self, *args): - return _mscl.InertialNode_sendAidingMeasurement_readEcho(self, *args) - -# Register InertialNode in _mscl: -_mscl.InertialNode_swigregister(InertialNode) - -class DisplacementNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.DisplacementNode_swiginit(self, _mscl.new_DisplacementNode(connection)) - __swig_destroy__ = _mscl.delete_DisplacementNode - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.DisplacementNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - @staticmethod - def deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - - def connection(self): - return _mscl.DisplacementNode_connection(self) - - def features(self): - return _mscl.DisplacementNode_features(self) - - def lastCommunicationTime(self): - return _mscl.DisplacementNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.DisplacementNode_lastDeviceState(self) - - def firmwareVersion(self): - return _mscl.DisplacementNode_firmwareVersion(self) - - def model(self): - return _mscl.DisplacementNode_model(self) - - def modelName(self): - return _mscl.DisplacementNode_modelName(self) - - def modelNumber(self): - return _mscl.DisplacementNode_modelNumber(self) - - def serialNumber(self): - return _mscl.DisplacementNode_serialNumber(self) - - def lotNumber(self): - return _mscl.DisplacementNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.DisplacementNode_deviceOptions(self) - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.DisplacementNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.DisplacementNode_totalPackets(self) - - def timeout(self, *args): - return _mscl.DisplacementNode_timeout(self, *args) - - def name(self): - return _mscl.DisplacementNode_name(self) - - def ping(self): - return _mscl.DisplacementNode_ping(self) - - def setToIdle(self): - return _mscl.DisplacementNode_setToIdle(self) - - def cyclePower(self): - return _mscl.DisplacementNode_cyclePower(self) - - def resume(self): - return _mscl.DisplacementNode_resume(self) - - def getDisplacementOutputDataRate(self): - return _mscl.DisplacementNode_getDisplacementOutputDataRate(self) - - def getAnalogToDisplacementCal(self): - return _mscl.DisplacementNode_getAnalogToDisplacementCal(self) - - def setDeviceTime(self, *args): - return _mscl.DisplacementNode_setDeviceTime(self, *args) - -# Register DisplacementNode in _mscl: -_mscl.DisplacementNode_swigregister(DisplacementNode) - -def DisplacementNode_deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - -class RTKNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.RTKNode_swiginit(self, _mscl.new_RTKNode(connection)) - __swig_destroy__ = _mscl.delete_RTKNode - - def getCommunicationMode(self): - return _mscl.RTKNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.RTKNode_setCommunicationMode(self, communicationMode) - - def getDeviceStatusFlags(self): - return _mscl.RTKNode_getDeviceStatusFlags(self) - - def getActivationCode(self): - return _mscl.RTKNode_getActivationCode(self) - - def getStatusBitfieldVersion(self): - return _mscl.RTKNode_getStatusBitfieldVersion(self) - -# Register RTKNode in _mscl: -_mscl.RTKNode_swigregister(RTKNode) - -class ChannelData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelData___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelData___bool__(self) - - def __len__(self): - return _mscl.ChannelData___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelData___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelData___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelData___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelData___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelData___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelData___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelData_pop(self) - - def append(self, x): - return _mscl.ChannelData_append(self, x) - - def empty(self): - return _mscl.ChannelData_empty(self) - - def size(self): - return _mscl.ChannelData_size(self) - - def swap(self, v): - return _mscl.ChannelData_swap(self, v) - - def begin(self): - return _mscl.ChannelData_begin(self) - - def end(self): - return _mscl.ChannelData_end(self) - - def rbegin(self): - return _mscl.ChannelData_rbegin(self) - - def rend(self): - return _mscl.ChannelData_rend(self) - - def clear(self): - return _mscl.ChannelData_clear(self) - - def get_allocator(self): - return _mscl.ChannelData_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelData_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelData_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelData_swiginit(self, _mscl.new_ChannelData(*args)) - - def push_back(self, x): - return _mscl.ChannelData_push_back(self, x) - - def front(self): - return _mscl.ChannelData_front(self) - - def back(self): - return _mscl.ChannelData_back(self) - - def assign(self, n, x): - return _mscl.ChannelData_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelData_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelData_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelData_reserve(self, n) - - def capacity(self): - return _mscl.ChannelData_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelData - -# Register ChannelData in _mscl: -_mscl.ChannelData_swigregister(ChannelData) - -class MipDataPoints(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPoints_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPoints___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPoints___bool__(self) - - def __len__(self): - return _mscl.MipDataPoints___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPoints___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPoints___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPoints___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPoints___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPoints___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPoints___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPoints_pop(self) - - def append(self, x): - return _mscl.MipDataPoints_append(self, x) - - def empty(self): - return _mscl.MipDataPoints_empty(self) - - def size(self): - return _mscl.MipDataPoints_size(self) - - def swap(self, v): - return _mscl.MipDataPoints_swap(self, v) - - def begin(self): - return _mscl.MipDataPoints_begin(self) - - def end(self): - return _mscl.MipDataPoints_end(self) - - def rbegin(self): - return _mscl.MipDataPoints_rbegin(self) - - def rend(self): - return _mscl.MipDataPoints_rend(self) - - def clear(self): - return _mscl.MipDataPoints_clear(self) - - def get_allocator(self): - return _mscl.MipDataPoints_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPoints_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPoints_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPoints_swiginit(self, _mscl.new_MipDataPoints(*args)) - - def push_back(self, x): - return _mscl.MipDataPoints_push_back(self, x) - - def front(self): - return _mscl.MipDataPoints_front(self) - - def back(self): - return _mscl.MipDataPoints_back(self) - - def assign(self, n, x): - return _mscl.MipDataPoints_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPoints_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPoints_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPoints_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPoints_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPoints - -# Register MipDataPoints in _mscl: -_mscl.MipDataPoints_swigregister(MipDataPoints) - -class Bytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bytes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bytes___nonzero__(self) - - def __bool__(self): - return _mscl.Bytes___bool__(self) - - def __len__(self): - return _mscl.Bytes___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bytes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bytes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bytes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bytes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bytes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bytes___setitem__(self, *args) - - def pop(self): - return _mscl.Bytes_pop(self) - - def append(self, x): - return _mscl.Bytes_append(self, x) - - def empty(self): - return _mscl.Bytes_empty(self) - - def size(self): - return _mscl.Bytes_size(self) - - def swap(self, v): - return _mscl.Bytes_swap(self, v) - - def begin(self): - return _mscl.Bytes_begin(self) - - def end(self): - return _mscl.Bytes_end(self) - - def rbegin(self): - return _mscl.Bytes_rbegin(self) - - def rend(self): - return _mscl.Bytes_rend(self) - - def clear(self): - return _mscl.Bytes_clear(self) - - def get_allocator(self): - return _mscl.Bytes_get_allocator(self) - - def pop_back(self): - return _mscl.Bytes_pop_back(self) - - def erase(self, *args): - return _mscl.Bytes_erase(self, *args) - - def __init__(self, *args): - _mscl.Bytes_swiginit(self, _mscl.new_Bytes(*args)) - - def push_back(self, x): - return _mscl.Bytes_push_back(self, x) - - def front(self): - return _mscl.Bytes_front(self) - - def back(self): - return _mscl.Bytes_back(self) - - def assign(self, n, x): - return _mscl.Bytes_assign(self, n, x) - - def resize(self, *args): - return _mscl.Bytes_resize(self, *args) - - def insert(self, *args): - return _mscl.Bytes_insert(self, *args) - - def reserve(self, n): - return _mscl.Bytes_reserve(self, n) - - def capacity(self): - return _mscl.Bytes_capacity(self) - __swig_destroy__ = _mscl.delete_Bytes - -# Register Bytes in _mscl: -_mscl.Bytes_swigregister(Bytes) - -class BytesCollection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.BytesCollection_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.BytesCollection___nonzero__(self) - - def __bool__(self): - return _mscl.BytesCollection___bool__(self) - - def __len__(self): - return _mscl.BytesCollection___len__(self) - - def __getslice__(self, i, j): - return _mscl.BytesCollection___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.BytesCollection___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.BytesCollection___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.BytesCollection___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.BytesCollection___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.BytesCollection___setitem__(self, *args) - - def pop(self): - return _mscl.BytesCollection_pop(self) - - def append(self, x): - return _mscl.BytesCollection_append(self, x) - - def empty(self): - return _mscl.BytesCollection_empty(self) - - def size(self): - return _mscl.BytesCollection_size(self) - - def swap(self, v): - return _mscl.BytesCollection_swap(self, v) - - def begin(self): - return _mscl.BytesCollection_begin(self) - - def end(self): - return _mscl.BytesCollection_end(self) - - def rbegin(self): - return _mscl.BytesCollection_rbegin(self) - - def rend(self): - return _mscl.BytesCollection_rend(self) - - def clear(self): - return _mscl.BytesCollection_clear(self) - - def get_allocator(self): - return _mscl.BytesCollection_get_allocator(self) - - def pop_back(self): - return _mscl.BytesCollection_pop_back(self) - - def erase(self, *args): - return _mscl.BytesCollection_erase(self, *args) - - def __init__(self, *args): - _mscl.BytesCollection_swiginit(self, _mscl.new_BytesCollection(*args)) - - def push_back(self, x): - return _mscl.BytesCollection_push_back(self, x) - - def front(self): - return _mscl.BytesCollection_front(self) - - def back(self): - return _mscl.BytesCollection_back(self) - - def assign(self, n, x): - return _mscl.BytesCollection_assign(self, n, x) - - def resize(self, *args): - return _mscl.BytesCollection_resize(self, *args) - - def insert(self, *args): - return _mscl.BytesCollection_insert(self, *args) - - def reserve(self, n): - return _mscl.BytesCollection_reserve(self, n) - - def capacity(self): - return _mscl.BytesCollection_capacity(self) - __swig_destroy__ = _mscl.delete_BytesCollection - -# Register BytesCollection in _mscl: -_mscl.BytesCollection_swigregister(BytesCollection) - -class DeviceList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceList___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceList___bool__(self) - - def __len__(self): - return _mscl.DeviceList___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceList___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceList___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceList_has_key(self, key) - - def keys(self): - return _mscl.DeviceList_keys(self) - - def values(self): - return _mscl.DeviceList_values(self) - - def items(self): - return _mscl.DeviceList_items(self) - - def __contains__(self, key): - return _mscl.DeviceList___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceList_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceList_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceList___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceList_asdict(self) - - def __init__(self, *args): - _mscl.DeviceList_swiginit(self, _mscl.new_DeviceList(*args)) - - def empty(self): - return _mscl.DeviceList_empty(self) - - def size(self): - return _mscl.DeviceList_size(self) - - def swap(self, v): - return _mscl.DeviceList_swap(self, v) - - def begin(self): - return _mscl.DeviceList_begin(self) - - def end(self): - return _mscl.DeviceList_end(self) - - def rbegin(self): - return _mscl.DeviceList_rbegin(self) - - def rend(self): - return _mscl.DeviceList_rend(self) - - def clear(self): - return _mscl.DeviceList_clear(self) - - def get_allocator(self): - return _mscl.DeviceList_get_allocator(self) - - def count(self, x): - return _mscl.DeviceList_count(self, x) - - def erase(self, *args): - return _mscl.DeviceList_erase(self, *args) - - def find(self, x): - return _mscl.DeviceList_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceList_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceList_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceList - -# Register DeviceList in _mscl: -_mscl.DeviceList_swigregister(DeviceList) - -class NodeDiscoveries(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NodeDiscoveries_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NodeDiscoveries___nonzero__(self) - - def __bool__(self): - return _mscl.NodeDiscoveries___bool__(self) - - def __len__(self): - return _mscl.NodeDiscoveries___len__(self) - - def __getslice__(self, i, j): - return _mscl.NodeDiscoveries___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NodeDiscoveries___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NodeDiscoveries___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NodeDiscoveries___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NodeDiscoveries___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NodeDiscoveries___setitem__(self, *args) - - def pop(self): - return _mscl.NodeDiscoveries_pop(self) - - def append(self, x): - return _mscl.NodeDiscoveries_append(self, x) - - def empty(self): - return _mscl.NodeDiscoveries_empty(self) - - def size(self): - return _mscl.NodeDiscoveries_size(self) - - def swap(self, v): - return _mscl.NodeDiscoveries_swap(self, v) - - def begin(self): - return _mscl.NodeDiscoveries_begin(self) - - def end(self): - return _mscl.NodeDiscoveries_end(self) - - def rbegin(self): - return _mscl.NodeDiscoveries_rbegin(self) - - def rend(self): - return _mscl.NodeDiscoveries_rend(self) - - def clear(self): - return _mscl.NodeDiscoveries_clear(self) - - def get_allocator(self): - return _mscl.NodeDiscoveries_get_allocator(self) - - def pop_back(self): - return _mscl.NodeDiscoveries_pop_back(self) - - def erase(self, *args): - return _mscl.NodeDiscoveries_erase(self, *args) - - def __init__(self, *args): - _mscl.NodeDiscoveries_swiginit(self, _mscl.new_NodeDiscoveries(*args)) - - def push_back(self, x): - return _mscl.NodeDiscoveries_push_back(self, x) - - def front(self): - return _mscl.NodeDiscoveries_front(self) - - def back(self): - return _mscl.NodeDiscoveries_back(self) - - def assign(self, n, x): - return _mscl.NodeDiscoveries_assign(self, n, x) - - def resize(self, *args): - return _mscl.NodeDiscoveries_resize(self, *args) - - def insert(self, *args): - return _mscl.NodeDiscoveries_insert(self, *args) - - def reserve(self, n): - return _mscl.NodeDiscoveries_reserve(self, n) - - def capacity(self): - return _mscl.NodeDiscoveries_capacity(self) - __swig_destroy__ = _mscl.delete_NodeDiscoveries - -# Register NodeDiscoveries in _mscl: -_mscl.NodeDiscoveries_swigregister(NodeDiscoveries) - -class DataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.DataSweeps___bool__(self) - - def __len__(self): - return _mscl.DataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.DataSweeps_pop(self) - - def append(self, x): - return _mscl.DataSweeps_append(self, x) - - def empty(self): - return _mscl.DataSweeps_empty(self) - - def size(self): - return _mscl.DataSweeps_size(self) - - def swap(self, v): - return _mscl.DataSweeps_swap(self, v) - - def begin(self): - return _mscl.DataSweeps_begin(self) - - def end(self): - return _mscl.DataSweeps_end(self) - - def rbegin(self): - return _mscl.DataSweeps_rbegin(self) - - def rend(self): - return _mscl.DataSweeps_rend(self) - - def clear(self): - return _mscl.DataSweeps_clear(self) - - def get_allocator(self): - return _mscl.DataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.DataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.DataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.DataSweeps_swiginit(self, _mscl.new_DataSweeps(*args)) - - def push_back(self, x): - return _mscl.DataSweeps_push_back(self, x) - - def front(self): - return _mscl.DataSweeps_front(self) - - def back(self): - return _mscl.DataSweeps_back(self) - - def assign(self, n, x): - return _mscl.DataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.DataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.DataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.DataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_DataSweeps - -# Register DataSweeps in _mscl: -_mscl.DataSweeps_swigregister(DataSweeps) - -class LoggedDataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LoggedDataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LoggedDataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.LoggedDataSweeps___bool__(self) - - def __len__(self): - return _mscl.LoggedDataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.LoggedDataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LoggedDataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LoggedDataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LoggedDataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LoggedDataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LoggedDataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.LoggedDataSweeps_pop(self) - - def append(self, x): - return _mscl.LoggedDataSweeps_append(self, x) - - def empty(self): - return _mscl.LoggedDataSweeps_empty(self) - - def size(self): - return _mscl.LoggedDataSweeps_size(self) - - def swap(self, v): - return _mscl.LoggedDataSweeps_swap(self, v) - - def begin(self): - return _mscl.LoggedDataSweeps_begin(self) - - def end(self): - return _mscl.LoggedDataSweeps_end(self) - - def rbegin(self): - return _mscl.LoggedDataSweeps_rbegin(self) - - def rend(self): - return _mscl.LoggedDataSweeps_rend(self) - - def clear(self): - return _mscl.LoggedDataSweeps_clear(self) - - def get_allocator(self): - return _mscl.LoggedDataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.LoggedDataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.LoggedDataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.LoggedDataSweeps_swiginit(self, _mscl.new_LoggedDataSweeps(*args)) - - def push_back(self, x): - return _mscl.LoggedDataSweeps_push_back(self, x) - - def front(self): - return _mscl.LoggedDataSweeps_front(self) - - def back(self): - return _mscl.LoggedDataSweeps_back(self) - - def assign(self, n, x): - return _mscl.LoggedDataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.LoggedDataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.LoggedDataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.LoggedDataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.LoggedDataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweeps - -# Register LoggedDataSweeps in _mscl: -_mscl.LoggedDataSweeps_swigregister(LoggedDataSweeps) - -class MipDataPackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPackets___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPackets___bool__(self) - - def __len__(self): - return _mscl.MipDataPackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPackets___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPackets_pop(self) - - def append(self, x): - return _mscl.MipDataPackets_append(self, x) - - def empty(self): - return _mscl.MipDataPackets_empty(self) - - def size(self): - return _mscl.MipDataPackets_size(self) - - def swap(self, v): - return _mscl.MipDataPackets_swap(self, v) - - def begin(self): - return _mscl.MipDataPackets_begin(self) - - def end(self): - return _mscl.MipDataPackets_end(self) - - def rbegin(self): - return _mscl.MipDataPackets_rbegin(self) - - def rend(self): - return _mscl.MipDataPackets_rend(self) - - def clear(self): - return _mscl.MipDataPackets_clear(self) - - def get_allocator(self): - return _mscl.MipDataPackets_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPackets_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPackets_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPackets_swiginit(self, _mscl.new_MipDataPackets(*args)) - - def push_back(self, x): - return _mscl.MipDataPackets_push_back(self, x) - - def front(self): - return _mscl.MipDataPackets_front(self) - - def back(self): - return _mscl.MipDataPackets_back(self) - - def assign(self, n, x): - return _mscl.MipDataPackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPackets_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPackets_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPackets_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPackets_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPackets - -# Register MipDataPackets in _mscl: -_mscl.MipDataPackets_swigregister(MipDataPackets) - -class RawBytePackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RawBytePackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RawBytePackets___nonzero__(self) - - def __bool__(self): - return _mscl.RawBytePackets___bool__(self) - - def __len__(self): - return _mscl.RawBytePackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.RawBytePackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.RawBytePackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.RawBytePackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.RawBytePackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.RawBytePackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.RawBytePackets___setitem__(self, *args) - - def pop(self): - return _mscl.RawBytePackets_pop(self) - - def append(self, x): - return _mscl.RawBytePackets_append(self, x) - - def empty(self): - return _mscl.RawBytePackets_empty(self) - - def size(self): - return _mscl.RawBytePackets_size(self) - - def swap(self, v): - return _mscl.RawBytePackets_swap(self, v) - - def begin(self): - return _mscl.RawBytePackets_begin(self) - - def end(self): - return _mscl.RawBytePackets_end(self) - - def rbegin(self): - return _mscl.RawBytePackets_rbegin(self) - - def rend(self): - return _mscl.RawBytePackets_rend(self) - - def clear(self): - return _mscl.RawBytePackets_clear(self) - - def get_allocator(self): - return _mscl.RawBytePackets_get_allocator(self) - - def pop_back(self): - return _mscl.RawBytePackets_pop_back(self) - - def erase(self, *args): - return _mscl.RawBytePackets_erase(self, *args) - - def __init__(self, *args): - _mscl.RawBytePackets_swiginit(self, _mscl.new_RawBytePackets(*args)) - - def push_back(self, x): - return _mscl.RawBytePackets_push_back(self, x) - - def front(self): - return _mscl.RawBytePackets_front(self) - - def back(self): - return _mscl.RawBytePackets_back(self) - - def assign(self, n, x): - return _mscl.RawBytePackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.RawBytePackets_resize(self, *args) - - def insert(self, *args): - return _mscl.RawBytePackets_insert(self, *args) - - def reserve(self, n): - return _mscl.RawBytePackets_reserve(self, n) - - def capacity(self): - return _mscl.RawBytePackets_capacity(self) - __swig_destroy__ = _mscl.delete_RawBytePackets - -# Register RawBytePackets in _mscl: -_mscl.RawBytePackets_swigregister(RawBytePackets) - -class MipChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannels___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannels___bool__(self) - - def __len__(self): - return _mscl.MipChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannels___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannels_pop(self) - - def append(self, x): - return _mscl.MipChannels_append(self, x) - - def empty(self): - return _mscl.MipChannels_empty(self) - - def size(self): - return _mscl.MipChannels_size(self) - - def swap(self, v): - return _mscl.MipChannels_swap(self, v) - - def begin(self): - return _mscl.MipChannels_begin(self) - - def end(self): - return _mscl.MipChannels_end(self) - - def rbegin(self): - return _mscl.MipChannels_rbegin(self) - - def rend(self): - return _mscl.MipChannels_rend(self) - - def clear(self): - return _mscl.MipChannels_clear(self) - - def get_allocator(self): - return _mscl.MipChannels_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannels_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannels_swiginit(self, _mscl.new_MipChannels(*args)) - - def push_back(self, x): - return _mscl.MipChannels_push_back(self, x) - - def front(self): - return _mscl.MipChannels_front(self) - - def back(self): - return _mscl.MipChannels_back(self) - - def assign(self, n, x): - return _mscl.MipChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannels_reserve(self, n) - - def capacity(self): - return _mscl.MipChannels_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannels - -# Register MipChannels in _mscl: -_mscl.MipChannels_swigregister(MipChannels) - -class DataCollectionMethods(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataCollectionMethods_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataCollectionMethods___nonzero__(self) - - def __bool__(self): - return _mscl.DataCollectionMethods___bool__(self) - - def __len__(self): - return _mscl.DataCollectionMethods___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataCollectionMethods___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataCollectionMethods___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataCollectionMethods___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataCollectionMethods___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataCollectionMethods___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataCollectionMethods___setitem__(self, *args) - - def pop(self): - return _mscl.DataCollectionMethods_pop(self) - - def append(self, x): - return _mscl.DataCollectionMethods_append(self, x) - - def empty(self): - return _mscl.DataCollectionMethods_empty(self) - - def size(self): - return _mscl.DataCollectionMethods_size(self) - - def swap(self, v): - return _mscl.DataCollectionMethods_swap(self, v) - - def begin(self): - return _mscl.DataCollectionMethods_begin(self) - - def end(self): - return _mscl.DataCollectionMethods_end(self) - - def rbegin(self): - return _mscl.DataCollectionMethods_rbegin(self) - - def rend(self): - return _mscl.DataCollectionMethods_rend(self) - - def clear(self): - return _mscl.DataCollectionMethods_clear(self) - - def get_allocator(self): - return _mscl.DataCollectionMethods_get_allocator(self) - - def pop_back(self): - return _mscl.DataCollectionMethods_pop_back(self) - - def erase(self, *args): - return _mscl.DataCollectionMethods_erase(self, *args) - - def __init__(self, *args): - _mscl.DataCollectionMethods_swiginit(self, _mscl.new_DataCollectionMethods(*args)) - - def push_back(self, x): - return _mscl.DataCollectionMethods_push_back(self, x) - - def front(self): - return _mscl.DataCollectionMethods_front(self) - - def back(self): - return _mscl.DataCollectionMethods_back(self) - - def assign(self, n, x): - return _mscl.DataCollectionMethods_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataCollectionMethods_resize(self, *args) - - def insert(self, *args): - return _mscl.DataCollectionMethods_insert(self, *args) - - def reserve(self, n): - return _mscl.DataCollectionMethods_reserve(self, n) - - def capacity(self): - return _mscl.DataCollectionMethods_capacity(self) - __swig_destroy__ = _mscl.delete_DataCollectionMethods - -# Register DataCollectionMethods in _mscl: -_mscl.DataCollectionMethods_swigregister(DataCollectionMethods) - -class DataFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataFormats___nonzero__(self) - - def __bool__(self): - return _mscl.DataFormats___bool__(self) - - def __len__(self): - return _mscl.DataFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataFormats___setitem__(self, *args) - - def pop(self): - return _mscl.DataFormats_pop(self) - - def append(self, x): - return _mscl.DataFormats_append(self, x) - - def empty(self): - return _mscl.DataFormats_empty(self) - - def size(self): - return _mscl.DataFormats_size(self) - - def swap(self, v): - return _mscl.DataFormats_swap(self, v) - - def begin(self): - return _mscl.DataFormats_begin(self) - - def end(self): - return _mscl.DataFormats_end(self) - - def rbegin(self): - return _mscl.DataFormats_rbegin(self) - - def rend(self): - return _mscl.DataFormats_rend(self) - - def clear(self): - return _mscl.DataFormats_clear(self) - - def get_allocator(self): - return _mscl.DataFormats_get_allocator(self) - - def pop_back(self): - return _mscl.DataFormats_pop_back(self) - - def erase(self, *args): - return _mscl.DataFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.DataFormats_swiginit(self, _mscl.new_DataFormats(*args)) - - def push_back(self, x): - return _mscl.DataFormats_push_back(self, x) - - def front(self): - return _mscl.DataFormats_front(self) - - def back(self): - return _mscl.DataFormats_back(self) - - def assign(self, n, x): - return _mscl.DataFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.DataFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.DataFormats_reserve(self, n) - - def capacity(self): - return _mscl.DataFormats_capacity(self) - __swig_destroy__ = _mscl.delete_DataFormats - -# Register DataFormats in _mscl: -_mscl.DataFormats_swigregister(DataFormats) - -class WirelessSampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessSampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessSampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessSampleRates___bool__(self) - - def __len__(self): - return _mscl.WirelessSampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessSampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessSampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessSampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessSampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessSampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessSampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessSampleRates_pop(self) - - def append(self, x): - return _mscl.WirelessSampleRates_append(self, x) - - def empty(self): - return _mscl.WirelessSampleRates_empty(self) - - def size(self): - return _mscl.WirelessSampleRates_size(self) - - def swap(self, v): - return _mscl.WirelessSampleRates_swap(self, v) - - def begin(self): - return _mscl.WirelessSampleRates_begin(self) - - def end(self): - return _mscl.WirelessSampleRates_end(self) - - def rbegin(self): - return _mscl.WirelessSampleRates_rbegin(self) - - def rend(self): - return _mscl.WirelessSampleRates_rend(self) - - def clear(self): - return _mscl.WirelessSampleRates_clear(self) - - def get_allocator(self): - return _mscl.WirelessSampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessSampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessSampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessSampleRates_swiginit(self, _mscl.new_WirelessSampleRates(*args)) - - def push_back(self, x): - return _mscl.WirelessSampleRates_push_back(self, x) - - def front(self): - return _mscl.WirelessSampleRates_front(self) - - def back(self): - return _mscl.WirelessSampleRates_back(self) - - def assign(self, n, x): - return _mscl.WirelessSampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessSampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessSampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessSampleRates_reserve(self, n) - - def capacity(self): - return _mscl.WirelessSampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessSampleRates - -# Register WirelessSampleRates in _mscl: -_mscl.WirelessSampleRates_swigregister(WirelessSampleRates) - -class SamplingModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SamplingModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SamplingModes___nonzero__(self) - - def __bool__(self): - return _mscl.SamplingModes___bool__(self) - - def __len__(self): - return _mscl.SamplingModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SamplingModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SamplingModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SamplingModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SamplingModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SamplingModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SamplingModes___setitem__(self, *args) - - def pop(self): - return _mscl.SamplingModes_pop(self) - - def append(self, x): - return _mscl.SamplingModes_append(self, x) - - def empty(self): - return _mscl.SamplingModes_empty(self) - - def size(self): - return _mscl.SamplingModes_size(self) - - def swap(self, v): - return _mscl.SamplingModes_swap(self, v) - - def begin(self): - return _mscl.SamplingModes_begin(self) - - def end(self): - return _mscl.SamplingModes_end(self) - - def rbegin(self): - return _mscl.SamplingModes_rbegin(self) - - def rend(self): - return _mscl.SamplingModes_rend(self) - - def clear(self): - return _mscl.SamplingModes_clear(self) - - def get_allocator(self): - return _mscl.SamplingModes_get_allocator(self) - - def pop_back(self): - return _mscl.SamplingModes_pop_back(self) - - def erase(self, *args): - return _mscl.SamplingModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SamplingModes_swiginit(self, _mscl.new_SamplingModes(*args)) - - def push_back(self, x): - return _mscl.SamplingModes_push_back(self, x) - - def front(self): - return _mscl.SamplingModes_front(self) - - def back(self): - return _mscl.SamplingModes_back(self) - - def assign(self, n, x): - return _mscl.SamplingModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SamplingModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SamplingModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SamplingModes_reserve(self, n) - - def capacity(self): - return _mscl.SamplingModes_capacity(self) - __swig_destroy__ = _mscl.delete_SamplingModes - -# Register SamplingModes in _mscl: -_mscl.SamplingModes_swigregister(SamplingModes) - -class DefaultModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DefaultModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DefaultModes___nonzero__(self) - - def __bool__(self): - return _mscl.DefaultModes___bool__(self) - - def __len__(self): - return _mscl.DefaultModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DefaultModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DefaultModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DefaultModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DefaultModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DefaultModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DefaultModes___setitem__(self, *args) - - def pop(self): - return _mscl.DefaultModes_pop(self) - - def append(self, x): - return _mscl.DefaultModes_append(self, x) - - def empty(self): - return _mscl.DefaultModes_empty(self) - - def size(self): - return _mscl.DefaultModes_size(self) - - def swap(self, v): - return _mscl.DefaultModes_swap(self, v) - - def begin(self): - return _mscl.DefaultModes_begin(self) - - def end(self): - return _mscl.DefaultModes_end(self) - - def rbegin(self): - return _mscl.DefaultModes_rbegin(self) - - def rend(self): - return _mscl.DefaultModes_rend(self) - - def clear(self): - return _mscl.DefaultModes_clear(self) - - def get_allocator(self): - return _mscl.DefaultModes_get_allocator(self) - - def pop_back(self): - return _mscl.DefaultModes_pop_back(self) - - def erase(self, *args): - return _mscl.DefaultModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DefaultModes_swiginit(self, _mscl.new_DefaultModes(*args)) - - def push_back(self, x): - return _mscl.DefaultModes_push_back(self, x) - - def front(self): - return _mscl.DefaultModes_front(self) - - def back(self): - return _mscl.DefaultModes_back(self) - - def assign(self, n, x): - return _mscl.DefaultModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DefaultModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DefaultModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DefaultModes_reserve(self, n) - - def capacity(self): - return _mscl.DefaultModes_capacity(self) - __swig_destroy__ = _mscl.delete_DefaultModes - -# Register DefaultModes in _mscl: -_mscl.DefaultModes_swigregister(DefaultModes) - -class TransmitPowers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransmitPowers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransmitPowers___nonzero__(self) - - def __bool__(self): - return _mscl.TransmitPowers___bool__(self) - - def __len__(self): - return _mscl.TransmitPowers___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransmitPowers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransmitPowers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransmitPowers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransmitPowers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransmitPowers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransmitPowers___setitem__(self, *args) - - def pop(self): - return _mscl.TransmitPowers_pop(self) - - def append(self, x): - return _mscl.TransmitPowers_append(self, x) - - def empty(self): - return _mscl.TransmitPowers_empty(self) - - def size(self): - return _mscl.TransmitPowers_size(self) - - def swap(self, v): - return _mscl.TransmitPowers_swap(self, v) - - def begin(self): - return _mscl.TransmitPowers_begin(self) - - def end(self): - return _mscl.TransmitPowers_end(self) - - def rbegin(self): - return _mscl.TransmitPowers_rbegin(self) - - def rend(self): - return _mscl.TransmitPowers_rend(self) - - def clear(self): - return _mscl.TransmitPowers_clear(self) - - def get_allocator(self): - return _mscl.TransmitPowers_get_allocator(self) - - def pop_back(self): - return _mscl.TransmitPowers_pop_back(self) - - def erase(self, *args): - return _mscl.TransmitPowers_erase(self, *args) - - def __init__(self, *args): - _mscl.TransmitPowers_swiginit(self, _mscl.new_TransmitPowers(*args)) - - def push_back(self, x): - return _mscl.TransmitPowers_push_back(self, x) - - def front(self): - return _mscl.TransmitPowers_front(self) - - def back(self): - return _mscl.TransmitPowers_back(self) - - def assign(self, n, x): - return _mscl.TransmitPowers_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransmitPowers_resize(self, *args) - - def insert(self, *args): - return _mscl.TransmitPowers_insert(self, *args) - - def reserve(self, n): - return _mscl.TransmitPowers_reserve(self, n) - - def capacity(self): - return _mscl.TransmitPowers_capacity(self) - __swig_destroy__ = _mscl.delete_TransmitPowers - -# Register TransmitPowers in _mscl: -_mscl.TransmitPowers_swigregister(TransmitPowers) - -class ChannelGroupSettings(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroupSettings_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroupSettings___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroupSettings___bool__(self) - - def __len__(self): - return _mscl.ChannelGroupSettings___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroupSettings___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroupSettings___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroupSettings___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroupSettings___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroupSettings___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroupSettings___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroupSettings_pop(self) - - def append(self, x): - return _mscl.ChannelGroupSettings_append(self, x) - - def empty(self): - return _mscl.ChannelGroupSettings_empty(self) - - def size(self): - return _mscl.ChannelGroupSettings_size(self) - - def swap(self, v): - return _mscl.ChannelGroupSettings_swap(self, v) - - def begin(self): - return _mscl.ChannelGroupSettings_begin(self) - - def end(self): - return _mscl.ChannelGroupSettings_end(self) - - def rbegin(self): - return _mscl.ChannelGroupSettings_rbegin(self) - - def rend(self): - return _mscl.ChannelGroupSettings_rend(self) - - def clear(self): - return _mscl.ChannelGroupSettings_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroupSettings_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroupSettings_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroupSettings_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroupSettings_swiginit(self, _mscl.new_ChannelGroupSettings(*args)) - - def push_back(self, x): - return _mscl.ChannelGroupSettings_push_back(self, x) - - def front(self): - return _mscl.ChannelGroupSettings_front(self) - - def back(self): - return _mscl.ChannelGroupSettings_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroupSettings_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroupSettings_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroupSettings_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroupSettings_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroupSettings_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroupSettings - -# Register ChannelGroupSettings in _mscl: -_mscl.ChannelGroupSettings_swigregister(ChannelGroupSettings) - -class FatigueModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.FatigueModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.FatigueModes___nonzero__(self) - - def __bool__(self): - return _mscl.FatigueModes___bool__(self) - - def __len__(self): - return _mscl.FatigueModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.FatigueModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.FatigueModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.FatigueModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.FatigueModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.FatigueModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.FatigueModes___setitem__(self, *args) - - def pop(self): - return _mscl.FatigueModes_pop(self) - - def append(self, x): - return _mscl.FatigueModes_append(self, x) - - def empty(self): - return _mscl.FatigueModes_empty(self) - - def size(self): - return _mscl.FatigueModes_size(self) - - def swap(self, v): - return _mscl.FatigueModes_swap(self, v) - - def begin(self): - return _mscl.FatigueModes_begin(self) - - def end(self): - return _mscl.FatigueModes_end(self) - - def rbegin(self): - return _mscl.FatigueModes_rbegin(self) - - def rend(self): - return _mscl.FatigueModes_rend(self) - - def clear(self): - return _mscl.FatigueModes_clear(self) - - def get_allocator(self): - return _mscl.FatigueModes_get_allocator(self) - - def pop_back(self): - return _mscl.FatigueModes_pop_back(self) - - def erase(self, *args): - return _mscl.FatigueModes_erase(self, *args) - - def __init__(self, *args): - _mscl.FatigueModes_swiginit(self, _mscl.new_FatigueModes(*args)) - - def push_back(self, x): - return _mscl.FatigueModes_push_back(self, x) - - def front(self): - return _mscl.FatigueModes_front(self) - - def back(self): - return _mscl.FatigueModes_back(self) - - def assign(self, n, x): - return _mscl.FatigueModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.FatigueModes_resize(self, *args) - - def insert(self, *args): - return _mscl.FatigueModes_insert(self, *args) - - def reserve(self, n): - return _mscl.FatigueModes_reserve(self, n) - - def capacity(self): - return _mscl.FatigueModes_capacity(self) - __swig_destroy__ = _mscl.delete_FatigueModes - -# Register FatigueModes in _mscl: -_mscl.FatigueModes_swigregister(FatigueModes) - -class Filters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Filters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Filters___nonzero__(self) - - def __bool__(self): - return _mscl.Filters___bool__(self) - - def __len__(self): - return _mscl.Filters___len__(self) - - def __getslice__(self, i, j): - return _mscl.Filters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Filters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Filters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Filters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Filters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Filters___setitem__(self, *args) - - def pop(self): - return _mscl.Filters_pop(self) - - def append(self, x): - return _mscl.Filters_append(self, x) - - def empty(self): - return _mscl.Filters_empty(self) - - def size(self): - return _mscl.Filters_size(self) - - def swap(self, v): - return _mscl.Filters_swap(self, v) - - def begin(self): - return _mscl.Filters_begin(self) - - def end(self): - return _mscl.Filters_end(self) - - def rbegin(self): - return _mscl.Filters_rbegin(self) - - def rend(self): - return _mscl.Filters_rend(self) - - def clear(self): - return _mscl.Filters_clear(self) - - def get_allocator(self): - return _mscl.Filters_get_allocator(self) - - def pop_back(self): - return _mscl.Filters_pop_back(self) - - def erase(self, *args): - return _mscl.Filters_erase(self, *args) - - def __init__(self, *args): - _mscl.Filters_swiginit(self, _mscl.new_Filters(*args)) - - def push_back(self, x): - return _mscl.Filters_push_back(self, x) - - def front(self): - return _mscl.Filters_front(self) - - def back(self): - return _mscl.Filters_back(self) - - def assign(self, n, x): - return _mscl.Filters_assign(self, n, x) - - def resize(self, *args): - return _mscl.Filters_resize(self, *args) - - def insert(self, *args): - return _mscl.Filters_insert(self, *args) - - def reserve(self, n): - return _mscl.Filters_reserve(self, n) - - def capacity(self): - return _mscl.Filters_capacity(self) - __swig_destroy__ = _mscl.delete_Filters - -# Register Filters in _mscl: -_mscl.Filters_swigregister(Filters) - -class HighPassFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HighPassFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HighPassFilters___nonzero__(self) - - def __bool__(self): - return _mscl.HighPassFilters___bool__(self) - - def __len__(self): - return _mscl.HighPassFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.HighPassFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HighPassFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HighPassFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HighPassFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HighPassFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HighPassFilters___setitem__(self, *args) - - def pop(self): - return _mscl.HighPassFilters_pop(self) - - def append(self, x): - return _mscl.HighPassFilters_append(self, x) - - def empty(self): - return _mscl.HighPassFilters_empty(self) - - def size(self): - return _mscl.HighPassFilters_size(self) - - def swap(self, v): - return _mscl.HighPassFilters_swap(self, v) - - def begin(self): - return _mscl.HighPassFilters_begin(self) - - def end(self): - return _mscl.HighPassFilters_end(self) - - def rbegin(self): - return _mscl.HighPassFilters_rbegin(self) - - def rend(self): - return _mscl.HighPassFilters_rend(self) - - def clear(self): - return _mscl.HighPassFilters_clear(self) - - def get_allocator(self): - return _mscl.HighPassFilters_get_allocator(self) - - def pop_back(self): - return _mscl.HighPassFilters_pop_back(self) - - def erase(self, *args): - return _mscl.HighPassFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.HighPassFilters_swiginit(self, _mscl.new_HighPassFilters(*args)) - - def push_back(self, x): - return _mscl.HighPassFilters_push_back(self, x) - - def front(self): - return _mscl.HighPassFilters_front(self) - - def back(self): - return _mscl.HighPassFilters_back(self) - - def assign(self, n, x): - return _mscl.HighPassFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.HighPassFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.HighPassFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.HighPassFilters_reserve(self, n) - - def capacity(self): - return _mscl.HighPassFilters_capacity(self) - __swig_destroy__ = _mscl.delete_HighPassFilters - -# Register HighPassFilters in _mscl: -_mscl.HighPassFilters_swigregister(HighPassFilters) - -class StorageLimitModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StorageLimitModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StorageLimitModes___nonzero__(self) - - def __bool__(self): - return _mscl.StorageLimitModes___bool__(self) - - def __len__(self): - return _mscl.StorageLimitModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.StorageLimitModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StorageLimitModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StorageLimitModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StorageLimitModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StorageLimitModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StorageLimitModes___setitem__(self, *args) - - def pop(self): - return _mscl.StorageLimitModes_pop(self) - - def append(self, x): - return _mscl.StorageLimitModes_append(self, x) - - def empty(self): - return _mscl.StorageLimitModes_empty(self) - - def size(self): - return _mscl.StorageLimitModes_size(self) - - def swap(self, v): - return _mscl.StorageLimitModes_swap(self, v) - - def begin(self): - return _mscl.StorageLimitModes_begin(self) - - def end(self): - return _mscl.StorageLimitModes_end(self) - - def rbegin(self): - return _mscl.StorageLimitModes_rbegin(self) - - def rend(self): - return _mscl.StorageLimitModes_rend(self) - - def clear(self): - return _mscl.StorageLimitModes_clear(self) - - def get_allocator(self): - return _mscl.StorageLimitModes_get_allocator(self) - - def pop_back(self): - return _mscl.StorageLimitModes_pop_back(self) - - def erase(self, *args): - return _mscl.StorageLimitModes_erase(self, *args) - - def __init__(self, *args): - _mscl.StorageLimitModes_swiginit(self, _mscl.new_StorageLimitModes(*args)) - - def push_back(self, x): - return _mscl.StorageLimitModes_push_back(self, x) - - def front(self): - return _mscl.StorageLimitModes_front(self) - - def back(self): - return _mscl.StorageLimitModes_back(self) - - def assign(self, n, x): - return _mscl.StorageLimitModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.StorageLimitModes_resize(self, *args) - - def insert(self, *args): - return _mscl.StorageLimitModes_insert(self, *args) - - def reserve(self, n): - return _mscl.StorageLimitModes_reserve(self, n) - - def capacity(self): - return _mscl.StorageLimitModes_capacity(self) - __swig_destroy__ = _mscl.delete_StorageLimitModes - -# Register StorageLimitModes in _mscl: -_mscl.StorageLimitModes_swigregister(StorageLimitModes) - -class InputRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.InputRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.InputRanges___nonzero__(self) - - def __bool__(self): - return _mscl.InputRanges___bool__(self) - - def __len__(self): - return _mscl.InputRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.InputRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.InputRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.InputRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.InputRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.InputRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.InputRanges___setitem__(self, *args) - - def pop(self): - return _mscl.InputRanges_pop(self) - - def append(self, x): - return _mscl.InputRanges_append(self, x) - - def empty(self): - return _mscl.InputRanges_empty(self) - - def size(self): - return _mscl.InputRanges_size(self) - - def swap(self, v): - return _mscl.InputRanges_swap(self, v) - - def begin(self): - return _mscl.InputRanges_begin(self) - - def end(self): - return _mscl.InputRanges_end(self) - - def rbegin(self): - return _mscl.InputRanges_rbegin(self) - - def rend(self): - return _mscl.InputRanges_rend(self) - - def clear(self): - return _mscl.InputRanges_clear(self) - - def get_allocator(self): - return _mscl.InputRanges_get_allocator(self) - - def pop_back(self): - return _mscl.InputRanges_pop_back(self) - - def erase(self, *args): - return _mscl.InputRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.InputRanges_swiginit(self, _mscl.new_InputRanges(*args)) - - def push_back(self, x): - return _mscl.InputRanges_push_back(self, x) - - def front(self): - return _mscl.InputRanges_front(self) - - def back(self): - return _mscl.InputRanges_back(self) - - def assign(self, n, x): - return _mscl.InputRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.InputRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.InputRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.InputRanges_reserve(self, n) - - def capacity(self): - return _mscl.InputRanges_capacity(self) - __swig_destroy__ = _mscl.delete_InputRanges - -# Register InputRanges in _mscl: -_mscl.InputRanges_swigregister(InputRanges) - -class DataModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataModes___nonzero__(self) - - def __bool__(self): - return _mscl.DataModes___bool__(self) - - def __len__(self): - return _mscl.DataModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataModes___setitem__(self, *args) - - def pop(self): - return _mscl.DataModes_pop(self) - - def append(self, x): - return _mscl.DataModes_append(self, x) - - def empty(self): - return _mscl.DataModes_empty(self) - - def size(self): - return _mscl.DataModes_size(self) - - def swap(self, v): - return _mscl.DataModes_swap(self, v) - - def begin(self): - return _mscl.DataModes_begin(self) - - def end(self): - return _mscl.DataModes_end(self) - - def rbegin(self): - return _mscl.DataModes_rbegin(self) - - def rend(self): - return _mscl.DataModes_rend(self) - - def clear(self): - return _mscl.DataModes_clear(self) - - def get_allocator(self): - return _mscl.DataModes_get_allocator(self) - - def pop_back(self): - return _mscl.DataModes_pop_back(self) - - def erase(self, *args): - return _mscl.DataModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DataModes_swiginit(self, _mscl.new_DataModes(*args)) - - def push_back(self, x): - return _mscl.DataModes_push_back(self, x) - - def front(self): - return _mscl.DataModes_front(self) - - def back(self): - return _mscl.DataModes_back(self) - - def assign(self, n, x): - return _mscl.DataModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DataModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DataModes_reserve(self, n) - - def capacity(self): - return _mscl.DataModes_capacity(self) - __swig_destroy__ = _mscl.delete_DataModes - -# Register DataModes in _mscl: -_mscl.DataModes_swigregister(DataModes) - -class CommProtocols(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommProtocols_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommProtocols___nonzero__(self) - - def __bool__(self): - return _mscl.CommProtocols___bool__(self) - - def __len__(self): - return _mscl.CommProtocols___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommProtocols___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommProtocols___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommProtocols___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommProtocols___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommProtocols___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommProtocols___setitem__(self, *args) - - def pop(self): - return _mscl.CommProtocols_pop(self) - - def append(self, x): - return _mscl.CommProtocols_append(self, x) - - def empty(self): - return _mscl.CommProtocols_empty(self) - - def size(self): - return _mscl.CommProtocols_size(self) - - def swap(self, v): - return _mscl.CommProtocols_swap(self, v) - - def begin(self): - return _mscl.CommProtocols_begin(self) - - def end(self): - return _mscl.CommProtocols_end(self) - - def rbegin(self): - return _mscl.CommProtocols_rbegin(self) - - def rend(self): - return _mscl.CommProtocols_rend(self) - - def clear(self): - return _mscl.CommProtocols_clear(self) - - def get_allocator(self): - return _mscl.CommProtocols_get_allocator(self) - - def pop_back(self): - return _mscl.CommProtocols_pop_back(self) - - def erase(self, *args): - return _mscl.CommProtocols_erase(self, *args) - - def __init__(self, *args): - _mscl.CommProtocols_swiginit(self, _mscl.new_CommProtocols(*args)) - - def push_back(self, x): - return _mscl.CommProtocols_push_back(self, x) - - def front(self): - return _mscl.CommProtocols_front(self) - - def back(self): - return _mscl.CommProtocols_back(self) - - def assign(self, n, x): - return _mscl.CommProtocols_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommProtocols_resize(self, *args) - - def insert(self, *args): - return _mscl.CommProtocols_insert(self, *args) - - def reserve(self, n): - return _mscl.CommProtocols_reserve(self, n) - - def capacity(self): - return _mscl.CommProtocols_capacity(self) - __swig_destroy__ = _mscl.delete_CommProtocols - -# Register CommProtocols in _mscl: -_mscl.CommProtocols_swigregister(CommProtocols) - -class Voltages(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Voltages_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Voltages___nonzero__(self) - - def __bool__(self): - return _mscl.Voltages___bool__(self) - - def __len__(self): - return _mscl.Voltages___len__(self) - - def __getslice__(self, i, j): - return _mscl.Voltages___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Voltages___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Voltages___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Voltages___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Voltages___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Voltages___setitem__(self, *args) - - def pop(self): - return _mscl.Voltages_pop(self) - - def append(self, x): - return _mscl.Voltages_append(self, x) - - def empty(self): - return _mscl.Voltages_empty(self) - - def size(self): - return _mscl.Voltages_size(self) - - def swap(self, v): - return _mscl.Voltages_swap(self, v) - - def begin(self): - return _mscl.Voltages_begin(self) - - def end(self): - return _mscl.Voltages_end(self) - - def rbegin(self): - return _mscl.Voltages_rbegin(self) - - def rend(self): - return _mscl.Voltages_rend(self) - - def clear(self): - return _mscl.Voltages_clear(self) - - def get_allocator(self): - return _mscl.Voltages_get_allocator(self) - - def pop_back(self): - return _mscl.Voltages_pop_back(self) - - def erase(self, *args): - return _mscl.Voltages_erase(self, *args) - - def __init__(self, *args): - _mscl.Voltages_swiginit(self, _mscl.new_Voltages(*args)) - - def push_back(self, x): - return _mscl.Voltages_push_back(self, x) - - def front(self): - return _mscl.Voltages_front(self) - - def back(self): - return _mscl.Voltages_back(self) - - def assign(self, n, x): - return _mscl.Voltages_assign(self, n, x) - - def resize(self, *args): - return _mscl.Voltages_resize(self, *args) - - def insert(self, *args): - return _mscl.Voltages_insert(self, *args) - - def reserve(self, n): - return _mscl.Voltages_reserve(self, n) - - def capacity(self): - return _mscl.Voltages_capacity(self) - __swig_destroy__ = _mscl.delete_Voltages - -# Register Voltages in _mscl: -_mscl.Voltages_swigregister(Voltages) - -class SensorOutputModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorOutputModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorOutputModes___nonzero__(self) - - def __bool__(self): - return _mscl.SensorOutputModes___bool__(self) - - def __len__(self): - return _mscl.SensorOutputModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorOutputModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorOutputModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorOutputModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorOutputModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorOutputModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorOutputModes___setitem__(self, *args) - - def pop(self): - return _mscl.SensorOutputModes_pop(self) - - def append(self, x): - return _mscl.SensorOutputModes_append(self, x) - - def empty(self): - return _mscl.SensorOutputModes_empty(self) - - def size(self): - return _mscl.SensorOutputModes_size(self) - - def swap(self, v): - return _mscl.SensorOutputModes_swap(self, v) - - def begin(self): - return _mscl.SensorOutputModes_begin(self) - - def end(self): - return _mscl.SensorOutputModes_end(self) - - def rbegin(self): - return _mscl.SensorOutputModes_rbegin(self) - - def rend(self): - return _mscl.SensorOutputModes_rend(self) - - def clear(self): - return _mscl.SensorOutputModes_clear(self) - - def get_allocator(self): - return _mscl.SensorOutputModes_get_allocator(self) - - def pop_back(self): - return _mscl.SensorOutputModes_pop_back(self) - - def erase(self, *args): - return _mscl.SensorOutputModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorOutputModes_swiginit(self, _mscl.new_SensorOutputModes(*args)) - - def push_back(self, x): - return _mscl.SensorOutputModes_push_back(self, x) - - def front(self): - return _mscl.SensorOutputModes_front(self) - - def back(self): - return _mscl.SensorOutputModes_back(self) - - def assign(self, n, x): - return _mscl.SensorOutputModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorOutputModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorOutputModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorOutputModes_reserve(self, n) - - def capacity(self): - return _mscl.SensorOutputModes_capacity(self) - __swig_destroy__ = _mscl.delete_SensorOutputModes - -# Register SensorOutputModes in _mscl: -_mscl.SensorOutputModes_swigregister(SensorOutputModes) - -class CfcFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CfcFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CfcFilters___nonzero__(self) - - def __bool__(self): - return _mscl.CfcFilters___bool__(self) - - def __len__(self): - return _mscl.CfcFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.CfcFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CfcFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CfcFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CfcFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CfcFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CfcFilters___setitem__(self, *args) - - def pop(self): - return _mscl.CfcFilters_pop(self) - - def append(self, x): - return _mscl.CfcFilters_append(self, x) - - def empty(self): - return _mscl.CfcFilters_empty(self) - - def size(self): - return _mscl.CfcFilters_size(self) - - def swap(self, v): - return _mscl.CfcFilters_swap(self, v) - - def begin(self): - return _mscl.CfcFilters_begin(self) - - def end(self): - return _mscl.CfcFilters_end(self) - - def rbegin(self): - return _mscl.CfcFilters_rbegin(self) - - def rend(self): - return _mscl.CfcFilters_rend(self) - - def clear(self): - return _mscl.CfcFilters_clear(self) - - def get_allocator(self): - return _mscl.CfcFilters_get_allocator(self) - - def pop_back(self): - return _mscl.CfcFilters_pop_back(self) - - def erase(self, *args): - return _mscl.CfcFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.CfcFilters_swiginit(self, _mscl.new_CfcFilters(*args)) - - def push_back(self, x): - return _mscl.CfcFilters_push_back(self, x) - - def front(self): - return _mscl.CfcFilters_front(self) - - def back(self): - return _mscl.CfcFilters_back(self) - - def assign(self, n, x): - return _mscl.CfcFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.CfcFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.CfcFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.CfcFilters_reserve(self, n) - - def capacity(self): - return _mscl.CfcFilters_capacity(self) - __swig_destroy__ = _mscl.delete_CfcFilters - -# Register CfcFilters in _mscl: -_mscl.CfcFilters_swigregister(CfcFilters) - -class TransducerTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransducerTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransducerTypes___nonzero__(self) - - def __bool__(self): - return _mscl.TransducerTypes___bool__(self) - - def __len__(self): - return _mscl.TransducerTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransducerTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransducerTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransducerTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransducerTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransducerTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransducerTypes___setitem__(self, *args) - - def pop(self): - return _mscl.TransducerTypes_pop(self) - - def append(self, x): - return _mscl.TransducerTypes_append(self, x) - - def empty(self): - return _mscl.TransducerTypes_empty(self) - - def size(self): - return _mscl.TransducerTypes_size(self) - - def swap(self, v): - return _mscl.TransducerTypes_swap(self, v) - - def begin(self): - return _mscl.TransducerTypes_begin(self) - - def end(self): - return _mscl.TransducerTypes_end(self) - - def rbegin(self): - return _mscl.TransducerTypes_rbegin(self) - - def rend(self): - return _mscl.TransducerTypes_rend(self) - - def clear(self): - return _mscl.TransducerTypes_clear(self) - - def get_allocator(self): - return _mscl.TransducerTypes_get_allocator(self) - - def pop_back(self): - return _mscl.TransducerTypes_pop_back(self) - - def erase(self, *args): - return _mscl.TransducerTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.TransducerTypes_swiginit(self, _mscl.new_TransducerTypes(*args)) - - def push_back(self, x): - return _mscl.TransducerTypes_push_back(self, x) - - def front(self): - return _mscl.TransducerTypes_front(self) - - def back(self): - return _mscl.TransducerTypes_back(self) - - def assign(self, n, x): - return _mscl.TransducerTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransducerTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.TransducerTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.TransducerTypes_reserve(self, n) - - def capacity(self): - return _mscl.TransducerTypes_capacity(self) - __swig_destroy__ = _mscl.delete_TransducerTypes - -# Register TransducerTypes in _mscl: -_mscl.TransducerTypes_swigregister(TransducerTypes) - -class EepromMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EepromMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EepromMap___nonzero__(self) - - def __bool__(self): - return _mscl.EepromMap___bool__(self) - - def __len__(self): - return _mscl.EepromMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.EepromMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.EepromMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.EepromMap_has_key(self, key) - - def keys(self): - return _mscl.EepromMap_keys(self) - - def values(self): - return _mscl.EepromMap_values(self) - - def items(self): - return _mscl.EepromMap_items(self) - - def __contains__(self, key): - return _mscl.EepromMap___contains__(self, key) - - def key_iterator(self): - return _mscl.EepromMap_key_iterator(self) - - def value_iterator(self): - return _mscl.EepromMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.EepromMap___setitem__(self, *args) - - def asdict(self): - return _mscl.EepromMap_asdict(self) - - def __init__(self, *args): - _mscl.EepromMap_swiginit(self, _mscl.new_EepromMap(*args)) - - def empty(self): - return _mscl.EepromMap_empty(self) - - def size(self): - return _mscl.EepromMap_size(self) - - def swap(self, v): - return _mscl.EepromMap_swap(self, v) - - def begin(self): - return _mscl.EepromMap_begin(self) - - def end(self): - return _mscl.EepromMap_end(self) - - def rbegin(self): - return _mscl.EepromMap_rbegin(self) - - def rend(self): - return _mscl.EepromMap_rend(self) - - def clear(self): - return _mscl.EepromMap_clear(self) - - def get_allocator(self): - return _mscl.EepromMap_get_allocator(self) - - def count(self, x): - return _mscl.EepromMap_count(self, x) - - def erase(self, *args): - return _mscl.EepromMap_erase(self, *args) - - def find(self, x): - return _mscl.EepromMap_find(self, x) - - def lower_bound(self, x): - return _mscl.EepromMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.EepromMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_EepromMap - -# Register EepromMap in _mscl: -_mscl.EepromMap_swigregister(EepromMap) - -class DerivedChannelMasks(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DerivedChannelMasks_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DerivedChannelMasks___nonzero__(self) - - def __bool__(self): - return _mscl.DerivedChannelMasks___bool__(self) - - def __len__(self): - return _mscl.DerivedChannelMasks___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DerivedChannelMasks___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DerivedChannelMasks___delitem__(self, key) - - def has_key(self, key): - return _mscl.DerivedChannelMasks_has_key(self, key) - - def keys(self): - return _mscl.DerivedChannelMasks_keys(self) - - def values(self): - return _mscl.DerivedChannelMasks_values(self) - - def items(self): - return _mscl.DerivedChannelMasks_items(self) - - def __contains__(self, key): - return _mscl.DerivedChannelMasks___contains__(self, key) - - def key_iterator(self): - return _mscl.DerivedChannelMasks_key_iterator(self) - - def value_iterator(self): - return _mscl.DerivedChannelMasks_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DerivedChannelMasks___setitem__(self, *args) - - def asdict(self): - return _mscl.DerivedChannelMasks_asdict(self) - - def __init__(self, *args): - _mscl.DerivedChannelMasks_swiginit(self, _mscl.new_DerivedChannelMasks(*args)) - - def empty(self): - return _mscl.DerivedChannelMasks_empty(self) - - def size(self): - return _mscl.DerivedChannelMasks_size(self) - - def swap(self, v): - return _mscl.DerivedChannelMasks_swap(self, v) - - def begin(self): - return _mscl.DerivedChannelMasks_begin(self) - - def end(self): - return _mscl.DerivedChannelMasks_end(self) - - def rbegin(self): - return _mscl.DerivedChannelMasks_rbegin(self) - - def rend(self): - return _mscl.DerivedChannelMasks_rend(self) - - def clear(self): - return _mscl.DerivedChannelMasks_clear(self) - - def get_allocator(self): - return _mscl.DerivedChannelMasks_get_allocator(self) - - def count(self, x): - return _mscl.DerivedChannelMasks_count(self, x) - - def erase(self, *args): - return _mscl.DerivedChannelMasks_erase(self, *args) - - def find(self, x): - return _mscl.DerivedChannelMasks_find(self, x) - - def lower_bound(self, x): - return _mscl.DerivedChannelMasks_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DerivedChannelMasks_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DerivedChannelMasks - -# Register DerivedChannelMasks in _mscl: -_mscl.DerivedChannelMasks_swigregister(DerivedChannelMasks) - -class DeviceStatusMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusMap_keys(self) - - def values(self): - return _mscl.DeviceStatusMap_values(self) - - def items(self): - return _mscl.DeviceStatusMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusMap_swiginit(self, _mscl.new_DeviceStatusMap(*args)) - - def empty(self): - return _mscl.DeviceStatusMap_empty(self) - - def size(self): - return _mscl.DeviceStatusMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusMap_begin(self) - - def end(self): - return _mscl.DeviceStatusMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusMap - -# Register DeviceStatusMap in _mscl: -_mscl.DeviceStatusMap_swigregister(DeviceStatusMap) - -class DeviceStatusValueMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusValueMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusValueMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusValueMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusValueMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusValueMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusValueMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusValueMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusValueMap_keys(self) - - def values(self): - return _mscl.DeviceStatusValueMap_values(self) - - def items(self): - return _mscl.DeviceStatusValueMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusValueMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusValueMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusValueMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusValueMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusValueMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusValueMap_swiginit(self, _mscl.new_DeviceStatusValueMap(*args)) - - def empty(self): - return _mscl.DeviceStatusValueMap_empty(self) - - def size(self): - return _mscl.DeviceStatusValueMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusValueMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusValueMap_begin(self) - - def end(self): - return _mscl.DeviceStatusValueMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusValueMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusValueMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusValueMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusValueMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusValueMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusValueMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusValueMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusValueMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusValueMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusValueMap - -# Register DeviceStatusValueMap in _mscl: -_mscl.DeviceStatusValueMap_swigregister(DeviceStatusValueMap) - -class SampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.SampleRates___bool__(self) - - def __len__(self): - return _mscl.SampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.SampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.SampleRates_pop(self) - - def append(self, x): - return _mscl.SampleRates_append(self, x) - - def empty(self): - return _mscl.SampleRates_empty(self) - - def size(self): - return _mscl.SampleRates_size(self) - - def swap(self, v): - return _mscl.SampleRates_swap(self, v) - - def begin(self): - return _mscl.SampleRates_begin(self) - - def end(self): - return _mscl.SampleRates_end(self) - - def rbegin(self): - return _mscl.SampleRates_rbegin(self) - - def rend(self): - return _mscl.SampleRates_rend(self) - - def clear(self): - return _mscl.SampleRates_clear(self) - - def get_allocator(self): - return _mscl.SampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.SampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.SampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.SampleRates_swiginit(self, _mscl.new_SampleRates(*args)) - - def push_back(self, x): - return _mscl.SampleRates_push_back(self, x) - - def front(self): - return _mscl.SampleRates_front(self) - - def back(self): - return _mscl.SampleRates_back(self) - - def assign(self, n, x): - return _mscl.SampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.SampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.SampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.SampleRates_reserve(self, n) - - def capacity(self): - return _mscl.SampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_SampleRates - -# Register SampleRates in _mscl: -_mscl.SampleRates_swigregister(SampleRates) - -class ConfigIssues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConfigIssues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConfigIssues___nonzero__(self) - - def __bool__(self): - return _mscl.ConfigIssues___bool__(self) - - def __len__(self): - return _mscl.ConfigIssues___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConfigIssues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConfigIssues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConfigIssues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConfigIssues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConfigIssues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConfigIssues___setitem__(self, *args) - - def pop(self): - return _mscl.ConfigIssues_pop(self) - - def append(self, x): - return _mscl.ConfigIssues_append(self, x) - - def empty(self): - return _mscl.ConfigIssues_empty(self) - - def size(self): - return _mscl.ConfigIssues_size(self) - - def swap(self, v): - return _mscl.ConfigIssues_swap(self, v) - - def begin(self): - return _mscl.ConfigIssues_begin(self) - - def end(self): - return _mscl.ConfigIssues_end(self) - - def rbegin(self): - return _mscl.ConfigIssues_rbegin(self) - - def rend(self): - return _mscl.ConfigIssues_rend(self) - - def clear(self): - return _mscl.ConfigIssues_clear(self) - - def get_allocator(self): - return _mscl.ConfigIssues_get_allocator(self) - - def pop_back(self): - return _mscl.ConfigIssues_pop_back(self) - - def erase(self, *args): - return _mscl.ConfigIssues_erase(self, *args) - - def __init__(self, *args): - _mscl.ConfigIssues_swiginit(self, _mscl.new_ConfigIssues(*args)) - - def push_back(self, x): - return _mscl.ConfigIssues_push_back(self, x) - - def front(self): - return _mscl.ConfigIssues_front(self) - - def back(self): - return _mscl.ConfigIssues_back(self) - - def assign(self, n, x): - return _mscl.ConfigIssues_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConfigIssues_resize(self, *args) - - def insert(self, *args): - return _mscl.ConfigIssues_insert(self, *args) - - def reserve(self, n): - return _mscl.ConfigIssues_reserve(self, n) - - def capacity(self): - return _mscl.ConfigIssues_capacity(self) - __swig_destroy__ = _mscl.delete_ConfigIssues - -# Register ConfigIssues in _mscl: -_mscl.ConfigIssues_swigregister(ConfigIssues) - -class MipChannelFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelFields_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelFields___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelFields___bool__(self) - - def __len__(self): - return _mscl.MipChannelFields___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelFields___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelFields___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelFields___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelFields___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelFields___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelFields___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelFields_pop(self) - - def append(self, x): - return _mscl.MipChannelFields_append(self, x) - - def empty(self): - return _mscl.MipChannelFields_empty(self) - - def size(self): - return _mscl.MipChannelFields_size(self) - - def swap(self, v): - return _mscl.MipChannelFields_swap(self, v) - - def begin(self): - return _mscl.MipChannelFields_begin(self) - - def end(self): - return _mscl.MipChannelFields_end(self) - - def rbegin(self): - return _mscl.MipChannelFields_rbegin(self) - - def rend(self): - return _mscl.MipChannelFields_rend(self) - - def clear(self): - return _mscl.MipChannelFields_clear(self) - - def get_allocator(self): - return _mscl.MipChannelFields_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelFields_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelFields_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelFields_swiginit(self, _mscl.new_MipChannelFields(*args)) - - def push_back(self, x): - return _mscl.MipChannelFields_push_back(self, x) - - def front(self): - return _mscl.MipChannelFields_front(self) - - def back(self): - return _mscl.MipChannelFields_back(self) - - def assign(self, n, x): - return _mscl.MipChannelFields_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelFields_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelFields_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelFields_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelFields_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelFields - -# Register MipChannelFields in _mscl: -_mscl.MipChannelFields_swigregister(MipChannelFields) - -class MipCommands(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommands_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommands___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommands___bool__(self) - - def __len__(self): - return _mscl.MipCommands___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommands___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommands___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommands___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommands___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommands___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommands___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommands_pop(self) - - def append(self, x): - return _mscl.MipCommands_append(self, x) - - def empty(self): - return _mscl.MipCommands_empty(self) - - def size(self): - return _mscl.MipCommands_size(self) - - def swap(self, v): - return _mscl.MipCommands_swap(self, v) - - def begin(self): - return _mscl.MipCommands_begin(self) - - def end(self): - return _mscl.MipCommands_end(self) - - def rbegin(self): - return _mscl.MipCommands_rbegin(self) - - def rend(self): - return _mscl.MipCommands_rend(self) - - def clear(self): - return _mscl.MipCommands_clear(self) - - def get_allocator(self): - return _mscl.MipCommands_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommands_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommands_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommands_swiginit(self, _mscl.new_MipCommands(*args)) - - def push_back(self, x): - return _mscl.MipCommands_push_back(self, x) - - def front(self): - return _mscl.MipCommands_front(self) - - def back(self): - return _mscl.MipCommands_back(self) - - def assign(self, n, x): - return _mscl.MipCommands_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommands_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommands_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommands_reserve(self, n) - - def capacity(self): - return _mscl.MipCommands_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommands - -# Register MipCommands in _mscl: -_mscl.MipCommands_swigregister(MipCommands) - -class MipDataClasses(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataClasses_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataClasses___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataClasses___bool__(self) - - def __len__(self): - return _mscl.MipDataClasses___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataClasses___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataClasses___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataClasses___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataClasses___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataClasses___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataClasses___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataClasses_pop(self) - - def append(self, x): - return _mscl.MipDataClasses_append(self, x) - - def empty(self): - return _mscl.MipDataClasses_empty(self) - - def size(self): - return _mscl.MipDataClasses_size(self) - - def swap(self, v): - return _mscl.MipDataClasses_swap(self, v) - - def begin(self): - return _mscl.MipDataClasses_begin(self) - - def end(self): - return _mscl.MipDataClasses_end(self) - - def rbegin(self): - return _mscl.MipDataClasses_rbegin(self) - - def rend(self): - return _mscl.MipDataClasses_rend(self) - - def clear(self): - return _mscl.MipDataClasses_clear(self) - - def get_allocator(self): - return _mscl.MipDataClasses_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataClasses_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataClasses_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataClasses_swiginit(self, _mscl.new_MipDataClasses(*args)) - - def push_back(self, x): - return _mscl.MipDataClasses_push_back(self, x) - - def front(self): - return _mscl.MipDataClasses_front(self) - - def back(self): - return _mscl.MipDataClasses_back(self) - - def assign(self, n, x): - return _mscl.MipDataClasses_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataClasses_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataClasses_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataClasses_reserve(self, n) - - def capacity(self): - return _mscl.MipDataClasses_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataClasses - -# Register MipDataClasses in _mscl: -_mscl.MipDataClasses_swigregister(MipDataClasses) - -class MipChannelIdentifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelIdentifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelIdentifiers___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelIdentifiers___bool__(self) - - def __len__(self): - return _mscl.MipChannelIdentifiers___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelIdentifiers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelIdentifiers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelIdentifiers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelIdentifiers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelIdentifiers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelIdentifiers___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelIdentifiers_pop(self) - - def append(self, x): - return _mscl.MipChannelIdentifiers_append(self, x) - - def empty(self): - return _mscl.MipChannelIdentifiers_empty(self) - - def size(self): - return _mscl.MipChannelIdentifiers_size(self) - - def swap(self, v): - return _mscl.MipChannelIdentifiers_swap(self, v) - - def begin(self): - return _mscl.MipChannelIdentifiers_begin(self) - - def end(self): - return _mscl.MipChannelIdentifiers_end(self) - - def rbegin(self): - return _mscl.MipChannelIdentifiers_rbegin(self) - - def rend(self): - return _mscl.MipChannelIdentifiers_rend(self) - - def clear(self): - return _mscl.MipChannelIdentifiers_clear(self) - - def get_allocator(self): - return _mscl.MipChannelIdentifiers_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelIdentifiers_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelIdentifiers_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelIdentifiers_swiginit(self, _mscl.new_MipChannelIdentifiers(*args)) - - def push_back(self, x): - return _mscl.MipChannelIdentifiers_push_back(self, x) - - def front(self): - return _mscl.MipChannelIdentifiers_front(self) - - def back(self): - return _mscl.MipChannelIdentifiers_back(self) - - def assign(self, n, x): - return _mscl.MipChannelIdentifiers_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelIdentifiers_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelIdentifiers_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelIdentifiers_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelIdentifiers_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelIdentifiers - -# Register MipChannelIdentifiers in _mscl: -_mscl.MipChannelIdentifiers_swigregister(MipChannelIdentifiers) - -class MipCommandSet(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandSet_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandSet___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandSet___bool__(self) - - def __len__(self): - return _mscl.MipCommandSet___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandSet___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandSet___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandSet___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandSet___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandSet___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandSet___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandSet_pop(self) - - def append(self, x): - return _mscl.MipCommandSet_append(self, x) - - def empty(self): - return _mscl.MipCommandSet_empty(self) - - def size(self): - return _mscl.MipCommandSet_size(self) - - def swap(self, v): - return _mscl.MipCommandSet_swap(self, v) - - def begin(self): - return _mscl.MipCommandSet_begin(self) - - def end(self): - return _mscl.MipCommandSet_end(self) - - def rbegin(self): - return _mscl.MipCommandSet_rbegin(self) - - def rend(self): - return _mscl.MipCommandSet_rend(self) - - def clear(self): - return _mscl.MipCommandSet_clear(self) - - def get_allocator(self): - return _mscl.MipCommandSet_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandSet_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandSet_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandSet_swiginit(self, _mscl.new_MipCommandSet(*args)) - - def push_back(self, x): - return _mscl.MipCommandSet_push_back(self, x) - - def front(self): - return _mscl.MipCommandSet_front(self) - - def back(self): - return _mscl.MipCommandSet_back(self) - - def assign(self, n, x): - return _mscl.MipCommandSet_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandSet_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandSet_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandSet_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandSet_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandSet - -# Register MipCommandSet in _mscl: -_mscl.MipCommandSet_swigregister(MipCommandSet) - -class MipFieldValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipFieldValues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipFieldValues___nonzero__(self) - - def __bool__(self): - return _mscl.MipFieldValues___bool__(self) - - def __len__(self): - return _mscl.MipFieldValues___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipFieldValues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipFieldValues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipFieldValues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipFieldValues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipFieldValues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipFieldValues___setitem__(self, *args) - - def pop(self): - return _mscl.MipFieldValues_pop(self) - - def append(self, x): - return _mscl.MipFieldValues_append(self, x) - - def empty(self): - return _mscl.MipFieldValues_empty(self) - - def size(self): - return _mscl.MipFieldValues_size(self) - - def swap(self, v): - return _mscl.MipFieldValues_swap(self, v) - - def begin(self): - return _mscl.MipFieldValues_begin(self) - - def end(self): - return _mscl.MipFieldValues_end(self) - - def rbegin(self): - return _mscl.MipFieldValues_rbegin(self) - - def rend(self): - return _mscl.MipFieldValues_rend(self) - - def clear(self): - return _mscl.MipFieldValues_clear(self) - - def get_allocator(self): - return _mscl.MipFieldValues_get_allocator(self) - - def pop_back(self): - return _mscl.MipFieldValues_pop_back(self) - - def erase(self, *args): - return _mscl.MipFieldValues_erase(self, *args) - - def __init__(self, *args): - _mscl.MipFieldValues_swiginit(self, _mscl.new_MipFieldValues(*args)) - - def push_back(self, x): - return _mscl.MipFieldValues_push_back(self, x) - - def front(self): - return _mscl.MipFieldValues_front(self) - - def back(self): - return _mscl.MipFieldValues_back(self) - - def assign(self, n, x): - return _mscl.MipFieldValues_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipFieldValues_resize(self, *args) - - def insert(self, *args): - return _mscl.MipFieldValues_insert(self, *args) - - def reserve(self, n): - return _mscl.MipFieldValues_reserve(self, n) - - def capacity(self): - return _mscl.MipFieldValues_capacity(self) - __swig_destroy__ = _mscl.delete_MipFieldValues - -# Register MipFieldValues in _mscl: -_mscl.MipFieldValues_swigregister(MipFieldValues) - -class MipCommandParamPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipCommandParamPair_swiginit(self, _mscl.new_MipCommandParamPair(*args)) - first = property(_mscl.MipCommandParamPair_first_get, _mscl.MipCommandParamPair_first_set) - second = property(_mscl.MipCommandParamPair_second_get, _mscl.MipCommandParamPair_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_MipCommandParamPair - -# Register MipCommandParamPair in _mscl: -_mscl.MipCommandParamPair_swigregister(MipCommandParamPair) - -class MipCommandParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandParameters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandParameters___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandParameters___bool__(self) - - def __len__(self): - return _mscl.MipCommandParameters___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandParameters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandParameters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandParameters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandParameters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandParameters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandParameters___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandParameters_pop(self) - - def append(self, x): - return _mscl.MipCommandParameters_append(self, x) - - def empty(self): - return _mscl.MipCommandParameters_empty(self) - - def size(self): - return _mscl.MipCommandParameters_size(self) - - def swap(self, v): - return _mscl.MipCommandParameters_swap(self, v) - - def begin(self): - return _mscl.MipCommandParameters_begin(self) - - def end(self): - return _mscl.MipCommandParameters_end(self) - - def rbegin(self): - return _mscl.MipCommandParameters_rbegin(self) - - def rend(self): - return _mscl.MipCommandParameters_rend(self) - - def clear(self): - return _mscl.MipCommandParameters_clear(self) - - def get_allocator(self): - return _mscl.MipCommandParameters_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandParameters_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandParameters_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandParameters_swiginit(self, _mscl.new_MipCommandParameters(*args)) - - def push_back(self, x): - return _mscl.MipCommandParameters_push_back(self, x) - - def front(self): - return _mscl.MipCommandParameters_front(self) - - def back(self): - return _mscl.MipCommandParameters_back(self) - - def assign(self, n, x): - return _mscl.MipCommandParameters_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandParameters_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandParameters_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandParameters_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandParameters_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandParameters - -# Register MipCommandParameters in _mscl: -_mscl.MipCommandParameters_swigregister(MipCommandParameters) - -class ChannelIndex(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ChannelIndex_swiginit(self, _mscl.new_ChannelIndex(*args)) - first = property(_mscl.ChannelIndex_first_get, _mscl.ChannelIndex_first_set) - second = property(_mscl.ChannelIndex_second_get, _mscl.ChannelIndex_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_ChannelIndex - -# Register ChannelIndex in _mscl: -_mscl.ChannelIndex_swigregister(ChannelIndex) - -class ChannelIndices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelIndices_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelIndices___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelIndices___bool__(self) - - def __len__(self): - return _mscl.ChannelIndices___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelIndices___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelIndices___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelIndices___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelIndices___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelIndices___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelIndices___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelIndices_pop(self) - - def append(self, x): - return _mscl.ChannelIndices_append(self, x) - - def empty(self): - return _mscl.ChannelIndices_empty(self) - - def size(self): - return _mscl.ChannelIndices_size(self) - - def swap(self, v): - return _mscl.ChannelIndices_swap(self, v) - - def begin(self): - return _mscl.ChannelIndices_begin(self) - - def end(self): - return _mscl.ChannelIndices_end(self) - - def rbegin(self): - return _mscl.ChannelIndices_rbegin(self) - - def rend(self): - return _mscl.ChannelIndices_rend(self) - - def clear(self): - return _mscl.ChannelIndices_clear(self) - - def get_allocator(self): - return _mscl.ChannelIndices_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelIndices_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelIndices_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelIndices_swiginit(self, _mscl.new_ChannelIndices(*args)) - - def push_back(self, x): - return _mscl.ChannelIndices_push_back(self, x) - - def front(self): - return _mscl.ChannelIndices_front(self) - - def back(self): - return _mscl.ChannelIndices_back(self) - - def assign(self, n, x): - return _mscl.ChannelIndices_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelIndices_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelIndices_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelIndices_reserve(self, n) - - def capacity(self): - return _mscl.ChannelIndices_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelIndices - -# Register ChannelIndices in _mscl: -_mscl.ChannelIndices_swigregister(ChannelIndices) - -class ChannelFieldQualifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelFieldQualifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelFieldQualifiers___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelFieldQualifiers___bool__(self) - - def __len__(self): - return _mscl.ChannelFieldQualifiers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelFieldQualifiers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelFieldQualifiers___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelFieldQualifiers_has_key(self, key) - - def keys(self): - return _mscl.ChannelFieldQualifiers_keys(self) - - def values(self): - return _mscl.ChannelFieldQualifiers_values(self) - - def items(self): - return _mscl.ChannelFieldQualifiers_items(self) - - def __contains__(self, key): - return _mscl.ChannelFieldQualifiers___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelFieldQualifiers_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelFieldQualifiers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelFieldQualifiers___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelFieldQualifiers_asdict(self) - - def __init__(self, *args): - _mscl.ChannelFieldQualifiers_swiginit(self, _mscl.new_ChannelFieldQualifiers(*args)) - - def empty(self): - return _mscl.ChannelFieldQualifiers_empty(self) - - def size(self): - return _mscl.ChannelFieldQualifiers_size(self) - - def swap(self, v): - return _mscl.ChannelFieldQualifiers_swap(self, v) - - def begin(self): - return _mscl.ChannelFieldQualifiers_begin(self) - - def end(self): - return _mscl.ChannelFieldQualifiers_end(self) - - def rbegin(self): - return _mscl.ChannelFieldQualifiers_rbegin(self) - - def rend(self): - return _mscl.ChannelFieldQualifiers_rend(self) - - def clear(self): - return _mscl.ChannelFieldQualifiers_clear(self) - - def get_allocator(self): - return _mscl.ChannelFieldQualifiers_get_allocator(self) - - def count(self, x): - return _mscl.ChannelFieldQualifiers_count(self, x) - - def erase(self, *args): - return _mscl.ChannelFieldQualifiers_erase(self, *args) - - def find(self, x): - return _mscl.ChannelFieldQualifiers_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelFieldQualifiers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelFieldQualifiers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelFieldQualifiers - -# Register ChannelFieldQualifiers in _mscl: -_mscl.ChannelFieldQualifiers_swigregister(ChannelFieldQualifiers) - -class GnssReceivers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssReceivers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssReceivers___nonzero__(self) - - def __bool__(self): - return _mscl.GnssReceivers___bool__(self) - - def __len__(self): - return _mscl.GnssReceivers___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssReceivers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssReceivers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssReceivers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssReceivers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssReceivers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssReceivers___setitem__(self, *args) - - def pop(self): - return _mscl.GnssReceivers_pop(self) - - def append(self, x): - return _mscl.GnssReceivers_append(self, x) - - def empty(self): - return _mscl.GnssReceivers_empty(self) - - def size(self): - return _mscl.GnssReceivers_size(self) - - def swap(self, v): - return _mscl.GnssReceivers_swap(self, v) - - def begin(self): - return _mscl.GnssReceivers_begin(self) - - def end(self): - return _mscl.GnssReceivers_end(self) - - def rbegin(self): - return _mscl.GnssReceivers_rbegin(self) - - def rend(self): - return _mscl.GnssReceivers_rend(self) - - def clear(self): - return _mscl.GnssReceivers_clear(self) - - def get_allocator(self): - return _mscl.GnssReceivers_get_allocator(self) - - def pop_back(self): - return _mscl.GnssReceivers_pop_back(self) - - def erase(self, *args): - return _mscl.GnssReceivers_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssReceivers_swiginit(self, _mscl.new_GnssReceivers(*args)) - - def push_back(self, x): - return _mscl.GnssReceivers_push_back(self, x) - - def front(self): - return _mscl.GnssReceivers_front(self) - - def back(self): - return _mscl.GnssReceivers_back(self) - - def assign(self, n, x): - return _mscl.GnssReceivers_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssReceivers_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssReceivers_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssReceivers_reserve(self, n) - - def capacity(self): - return _mscl.GnssReceivers_capacity(self) - __swig_destroy__ = _mscl.delete_GnssReceivers - -# Register GnssReceivers in _mscl: -_mscl.GnssReceivers_swigregister(GnssReceivers) - -class SensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRanges___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRanges___bool__(self) - - def __len__(self): - return _mscl.SensorRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorRanges___setitem__(self, *args) - - def pop(self): - return _mscl.SensorRanges_pop(self) - - def append(self, x): - return _mscl.SensorRanges_append(self, x) - - def empty(self): - return _mscl.SensorRanges_empty(self) - - def size(self): - return _mscl.SensorRanges_size(self) - - def swap(self, v): - return _mscl.SensorRanges_swap(self, v) - - def begin(self): - return _mscl.SensorRanges_begin(self) - - def end(self): - return _mscl.SensorRanges_end(self) - - def rbegin(self): - return _mscl.SensorRanges_rbegin(self) - - def rend(self): - return _mscl.SensorRanges_rend(self) - - def clear(self): - return _mscl.SensorRanges_clear(self) - - def get_allocator(self): - return _mscl.SensorRanges_get_allocator(self) - - def pop_back(self): - return _mscl.SensorRanges_pop_back(self) - - def erase(self, *args): - return _mscl.SensorRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorRanges_swiginit(self, _mscl.new_SensorRanges(*args)) - - def push_back(self, x): - return _mscl.SensorRanges_push_back(self, x) - - def front(self): - return _mscl.SensorRanges_front(self) - - def back(self): - return _mscl.SensorRanges_back(self) - - def assign(self, n, x): - return _mscl.SensorRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorRanges_reserve(self, n) - - def capacity(self): - return _mscl.SensorRanges_capacity(self) - __swig_destroy__ = _mscl.delete_SensorRanges - -# Register SensorRanges in _mscl: -_mscl.SensorRanges_swigregister(SensorRanges) - -class SensorRangeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRangeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRangeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRangeOptions___bool__(self) - - def __len__(self): - return _mscl.SensorRangeOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SensorRangeOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SensorRangeOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.SensorRangeOptions_has_key(self, key) - - def keys(self): - return _mscl.SensorRangeOptions_keys(self) - - def values(self): - return _mscl.SensorRangeOptions_values(self) - - def items(self): - return _mscl.SensorRangeOptions_items(self) - - def __contains__(self, key): - return _mscl.SensorRangeOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.SensorRangeOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.SensorRangeOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SensorRangeOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.SensorRangeOptions_asdict(self) - - def __init__(self, *args): - _mscl.SensorRangeOptions_swiginit(self, _mscl.new_SensorRangeOptions(*args)) - - def empty(self): - return _mscl.SensorRangeOptions_empty(self) - - def size(self): - return _mscl.SensorRangeOptions_size(self) - - def swap(self, v): - return _mscl.SensorRangeOptions_swap(self, v) - - def begin(self): - return _mscl.SensorRangeOptions_begin(self) - - def end(self): - return _mscl.SensorRangeOptions_end(self) - - def rbegin(self): - return _mscl.SensorRangeOptions_rbegin(self) - - def rend(self): - return _mscl.SensorRangeOptions_rend(self) - - def clear(self): - return _mscl.SensorRangeOptions_clear(self) - - def get_allocator(self): - return _mscl.SensorRangeOptions_get_allocator(self) - - def count(self, x): - return _mscl.SensorRangeOptions_count(self, x) - - def erase(self, *args): - return _mscl.SensorRangeOptions_erase(self, *args) - - def find(self, x): - return _mscl.SensorRangeOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.SensorRangeOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SensorRangeOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SensorRangeOptions - -# Register SensorRangeOptions in _mscl: -_mscl.SensorRangeOptions_swigregister(SensorRangeOptions) - -class CommPortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommPortInfo_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommPortInfo___nonzero__(self) - - def __bool__(self): - return _mscl.CommPortInfo___bool__(self) - - def __len__(self): - return _mscl.CommPortInfo___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommPortInfo___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommPortInfo___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommPortInfo___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommPortInfo___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommPortInfo___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommPortInfo___setitem__(self, *args) - - def pop(self): - return _mscl.CommPortInfo_pop(self) - - def append(self, x): - return _mscl.CommPortInfo_append(self, x) - - def empty(self): - return _mscl.CommPortInfo_empty(self) - - def size(self): - return _mscl.CommPortInfo_size(self) - - def swap(self, v): - return _mscl.CommPortInfo_swap(self, v) - - def begin(self): - return _mscl.CommPortInfo_begin(self) - - def end(self): - return _mscl.CommPortInfo_end(self) - - def rbegin(self): - return _mscl.CommPortInfo_rbegin(self) - - def rend(self): - return _mscl.CommPortInfo_rend(self) - - def clear(self): - return _mscl.CommPortInfo_clear(self) - - def get_allocator(self): - return _mscl.CommPortInfo_get_allocator(self) - - def pop_back(self): - return _mscl.CommPortInfo_pop_back(self) - - def erase(self, *args): - return _mscl.CommPortInfo_erase(self, *args) - - def __init__(self, *args): - _mscl.CommPortInfo_swiginit(self, _mscl.new_CommPortInfo(*args)) - - def push_back(self, x): - return _mscl.CommPortInfo_push_back(self, x) - - def front(self): - return _mscl.CommPortInfo_front(self) - - def back(self): - return _mscl.CommPortInfo_back(self) - - def assign(self, n, x): - return _mscl.CommPortInfo_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommPortInfo_resize(self, *args) - - def insert(self, *args): - return _mscl.CommPortInfo_insert(self, *args) - - def reserve(self, n): - return _mscl.CommPortInfo_reserve(self, n) - - def capacity(self): - return _mscl.CommPortInfo_capacity(self) - __swig_destroy__ = _mscl.delete_CommPortInfo - -# Register CommPortInfo in _mscl: -_mscl.CommPortInfo_swigregister(CommPortInfo) - -class EventTriggerStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTriggerStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTriggerStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventTriggerStatus___bool__(self) - - def __len__(self): - return _mscl.EventTriggerStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTriggerStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTriggerStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTriggerStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTriggerStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTriggerStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTriggerStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventTriggerStatus_pop(self) - - def append(self, x): - return _mscl.EventTriggerStatus_append(self, x) - - def empty(self): - return _mscl.EventTriggerStatus_empty(self) - - def size(self): - return _mscl.EventTriggerStatus_size(self) - - def swap(self, v): - return _mscl.EventTriggerStatus_swap(self, v) - - def begin(self): - return _mscl.EventTriggerStatus_begin(self) - - def end(self): - return _mscl.EventTriggerStatus_end(self) - - def rbegin(self): - return _mscl.EventTriggerStatus_rbegin(self) - - def rend(self): - return _mscl.EventTriggerStatus_rend(self) - - def clear(self): - return _mscl.EventTriggerStatus_clear(self) - - def get_allocator(self): - return _mscl.EventTriggerStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventTriggerStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventTriggerStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTriggerStatus_swiginit(self, _mscl.new_EventTriggerStatus(*args)) - - def push_back(self, x): - return _mscl.EventTriggerStatus_push_back(self, x) - - def front(self): - return _mscl.EventTriggerStatus_front(self) - - def back(self): - return _mscl.EventTriggerStatus_back(self) - - def assign(self, n, x): - return _mscl.EventTriggerStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTriggerStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTriggerStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTriggerStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventTriggerStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventTriggerStatus - -# Register EventTriggerStatus in _mscl: -_mscl.EventTriggerStatus_swigregister(EventTriggerStatus) - -class EventActionStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventActionStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventActionStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventActionStatus___bool__(self) - - def __len__(self): - return _mscl.EventActionStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventActionStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventActionStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventActionStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventActionStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventActionStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventActionStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventActionStatus_pop(self) - - def append(self, x): - return _mscl.EventActionStatus_append(self, x) - - def empty(self): - return _mscl.EventActionStatus_empty(self) - - def size(self): - return _mscl.EventActionStatus_size(self) - - def swap(self, v): - return _mscl.EventActionStatus_swap(self, v) - - def begin(self): - return _mscl.EventActionStatus_begin(self) - - def end(self): - return _mscl.EventActionStatus_end(self) - - def rbegin(self): - return _mscl.EventActionStatus_rbegin(self) - - def rend(self): - return _mscl.EventActionStatus_rend(self) - - def clear(self): - return _mscl.EventActionStatus_clear(self) - - def get_allocator(self): - return _mscl.EventActionStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventActionStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventActionStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventActionStatus_swiginit(self, _mscl.new_EventActionStatus(*args)) - - def push_back(self, x): - return _mscl.EventActionStatus_push_back(self, x) - - def front(self): - return _mscl.EventActionStatus_front(self) - - def back(self): - return _mscl.EventActionStatus_back(self) - - def assign(self, n, x): - return _mscl.EventActionStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventActionStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventActionStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventActionStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventActionStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventActionStatus - -# Register EventActionStatus in _mscl: -_mscl.EventActionStatus_swigregister(EventActionStatus) - -class ChannelGroups(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroups_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroups___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroups___bool__(self) - - def __len__(self): - return _mscl.ChannelGroups___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroups___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroups___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroups___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroups___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroups___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroups___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroups_pop(self) - - def append(self, x): - return _mscl.ChannelGroups_append(self, x) - - def empty(self): - return _mscl.ChannelGroups_empty(self) - - def size(self): - return _mscl.ChannelGroups_size(self) - - def swap(self, v): - return _mscl.ChannelGroups_swap(self, v) - - def begin(self): - return _mscl.ChannelGroups_begin(self) - - def end(self): - return _mscl.ChannelGroups_end(self) - - def rbegin(self): - return _mscl.ChannelGroups_rbegin(self) - - def rend(self): - return _mscl.ChannelGroups_rend(self) - - def clear(self): - return _mscl.ChannelGroups_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroups_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroups_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroups_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroups_swiginit(self, _mscl.new_ChannelGroups(*args)) - - def push_back(self, x): - return _mscl.ChannelGroups_push_back(self, x) - - def front(self): - return _mscl.ChannelGroups_front(self) - - def back(self): - return _mscl.ChannelGroups_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroups_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroups_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroups_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroups_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroups_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroups - -# Register ChannelGroups in _mscl: -_mscl.ChannelGroups_swigregister(ChannelGroups) - -class WirelessChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessChannels___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessChannels___bool__(self) - - def __len__(self): - return _mscl.WirelessChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessChannels___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessChannels_pop(self) - - def append(self, x): - return _mscl.WirelessChannels_append(self, x) - - def empty(self): - return _mscl.WirelessChannels_empty(self) - - def size(self): - return _mscl.WirelessChannels_size(self) - - def swap(self, v): - return _mscl.WirelessChannels_swap(self, v) - - def begin(self): - return _mscl.WirelessChannels_begin(self) - - def end(self): - return _mscl.WirelessChannels_end(self) - - def rbegin(self): - return _mscl.WirelessChannels_rbegin(self) - - def rend(self): - return _mscl.WirelessChannels_rend(self) - - def clear(self): - return _mscl.WirelessChannels_clear(self) - - def get_allocator(self): - return _mscl.WirelessChannels_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessChannels_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessChannels_swiginit(self, _mscl.new_WirelessChannels(*args)) - - def push_back(self, x): - return _mscl.WirelessChannels_push_back(self, x) - - def front(self): - return _mscl.WirelessChannels_front(self) - - def back(self): - return _mscl.WirelessChannels_back(self) - - def assign(self, n, x): - return _mscl.WirelessChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessChannels_reserve(self, n) - - def capacity(self): - return _mscl.WirelessChannels_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessChannels - -# Register WirelessChannels in _mscl: -_mscl.WirelessChannels_swigregister(WirelessChannels) - -class DamageAngles(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DamageAngles_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DamageAngles___nonzero__(self) - - def __bool__(self): - return _mscl.DamageAngles___bool__(self) - - def __len__(self): - return _mscl.DamageAngles___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DamageAngles___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DamageAngles___delitem__(self, key) - - def has_key(self, key): - return _mscl.DamageAngles_has_key(self, key) - - def keys(self): - return _mscl.DamageAngles_keys(self) - - def values(self): - return _mscl.DamageAngles_values(self) - - def items(self): - return _mscl.DamageAngles_items(self) - - def __contains__(self, key): - return _mscl.DamageAngles___contains__(self, key) - - def key_iterator(self): - return _mscl.DamageAngles_key_iterator(self) - - def value_iterator(self): - return _mscl.DamageAngles_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DamageAngles___setitem__(self, *args) - - def asdict(self): - return _mscl.DamageAngles_asdict(self) - - def __init__(self, *args): - _mscl.DamageAngles_swiginit(self, _mscl.new_DamageAngles(*args)) - - def empty(self): - return _mscl.DamageAngles_empty(self) - - def size(self): - return _mscl.DamageAngles_size(self) - - def swap(self, v): - return _mscl.DamageAngles_swap(self, v) - - def begin(self): - return _mscl.DamageAngles_begin(self) - - def end(self): - return _mscl.DamageAngles_end(self) - - def rbegin(self): - return _mscl.DamageAngles_rbegin(self) - - def rend(self): - return _mscl.DamageAngles_rend(self) - - def clear(self): - return _mscl.DamageAngles_clear(self) - - def get_allocator(self): - return _mscl.DamageAngles_get_allocator(self) - - def count(self, x): - return _mscl.DamageAngles_count(self, x) - - def erase(self, *args): - return _mscl.DamageAngles_erase(self, *args) - - def find(self, x): - return _mscl.DamageAngles_find(self, x) - - def lower_bound(self, x): - return _mscl.DamageAngles_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DamageAngles_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DamageAngles - -# Register DamageAngles in _mscl: -_mscl.DamageAngles_swigregister(DamageAngles) - -class SnCurveSegments(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SnCurveSegments_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SnCurveSegments___nonzero__(self) - - def __bool__(self): - return _mscl.SnCurveSegments___bool__(self) - - def __len__(self): - return _mscl.SnCurveSegments___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SnCurveSegments___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SnCurveSegments___delitem__(self, key) - - def has_key(self, key): - return _mscl.SnCurveSegments_has_key(self, key) - - def keys(self): - return _mscl.SnCurveSegments_keys(self) - - def values(self): - return _mscl.SnCurveSegments_values(self) - - def items(self): - return _mscl.SnCurveSegments_items(self) - - def __contains__(self, key): - return _mscl.SnCurveSegments___contains__(self, key) - - def key_iterator(self): - return _mscl.SnCurveSegments_key_iterator(self) - - def value_iterator(self): - return _mscl.SnCurveSegments_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SnCurveSegments___setitem__(self, *args) - - def asdict(self): - return _mscl.SnCurveSegments_asdict(self) - - def __init__(self, *args): - _mscl.SnCurveSegments_swiginit(self, _mscl.new_SnCurveSegments(*args)) - - def empty(self): - return _mscl.SnCurveSegments_empty(self) - - def size(self): - return _mscl.SnCurveSegments_size(self) - - def swap(self, v): - return _mscl.SnCurveSegments_swap(self, v) - - def begin(self): - return _mscl.SnCurveSegments_begin(self) - - def end(self): - return _mscl.SnCurveSegments_end(self) - - def rbegin(self): - return _mscl.SnCurveSegments_rbegin(self) - - def rend(self): - return _mscl.SnCurveSegments_rend(self) - - def clear(self): - return _mscl.SnCurveSegments_clear(self) - - def get_allocator(self): - return _mscl.SnCurveSegments_get_allocator(self) - - def count(self, x): - return _mscl.SnCurveSegments_count(self, x) - - def erase(self, *args): - return _mscl.SnCurveSegments_erase(self, *args) - - def find(self, x): - return _mscl.SnCurveSegments_find(self, x) - - def lower_bound(self, x): - return _mscl.SnCurveSegments_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SnCurveSegments_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SnCurveSegments - -# Register SnCurveSegments in _mscl: -_mscl.SnCurveSegments_swigregister(SnCurveSegments) - -class RfSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RfSweep_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RfSweep___nonzero__(self) - - def __bool__(self): - return _mscl.RfSweep___bool__(self) - - def __len__(self): - return _mscl.RfSweep___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.RfSweep___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.RfSweep___delitem__(self, key) - - def has_key(self, key): - return _mscl.RfSweep_has_key(self, key) - - def keys(self): - return _mscl.RfSweep_keys(self) - - def values(self): - return _mscl.RfSweep_values(self) - - def items(self): - return _mscl.RfSweep_items(self) - - def __contains__(self, key): - return _mscl.RfSweep___contains__(self, key) - - def key_iterator(self): - return _mscl.RfSweep_key_iterator(self) - - def value_iterator(self): - return _mscl.RfSweep_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.RfSweep___setitem__(self, *args) - - def asdict(self): - return _mscl.RfSweep_asdict(self) - - def __init__(self, *args): - _mscl.RfSweep_swiginit(self, _mscl.new_RfSweep(*args)) - - def empty(self): - return _mscl.RfSweep_empty(self) - - def size(self): - return _mscl.RfSweep_size(self) - - def swap(self, v): - return _mscl.RfSweep_swap(self, v) - - def begin(self): - return _mscl.RfSweep_begin(self) - - def end(self): - return _mscl.RfSweep_end(self) - - def rbegin(self): - return _mscl.RfSweep_rbegin(self) - - def rend(self): - return _mscl.RfSweep_rend(self) - - def clear(self): - return _mscl.RfSweep_clear(self) - - def get_allocator(self): - return _mscl.RfSweep_get_allocator(self) - - def count(self, x): - return _mscl.RfSweep_count(self, x) - - def erase(self, *args): - return _mscl.RfSweep_erase(self, *args) - - def find(self, x): - return _mscl.RfSweep_find(self, x) - - def lower_bound(self, x): - return _mscl.RfSweep_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.RfSweep_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_RfSweep - -# Register RfSweep in _mscl: -_mscl.RfSweep_swigregister(RfSweep) - -class Triggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Triggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Triggers___nonzero__(self) - - def __bool__(self): - return _mscl.Triggers___bool__(self) - - def __len__(self): - return _mscl.Triggers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.Triggers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.Triggers___delitem__(self, key) - - def has_key(self, key): - return _mscl.Triggers_has_key(self, key) - - def keys(self): - return _mscl.Triggers_keys(self) - - def values(self): - return _mscl.Triggers_values(self) - - def items(self): - return _mscl.Triggers_items(self) - - def __contains__(self, key): - return _mscl.Triggers___contains__(self, key) - - def key_iterator(self): - return _mscl.Triggers_key_iterator(self) - - def value_iterator(self): - return _mscl.Triggers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.Triggers___setitem__(self, *args) - - def asdict(self): - return _mscl.Triggers_asdict(self) - - def __init__(self, *args): - _mscl.Triggers_swiginit(self, _mscl.new_Triggers(*args)) - - def empty(self): - return _mscl.Triggers_empty(self) - - def size(self): - return _mscl.Triggers_size(self) - - def swap(self, v): - return _mscl.Triggers_swap(self, v) - - def begin(self): - return _mscl.Triggers_begin(self) - - def end(self): - return _mscl.Triggers_end(self) - - def rbegin(self): - return _mscl.Triggers_rbegin(self) - - def rend(self): - return _mscl.Triggers_rend(self) - - def clear(self): - return _mscl.Triggers_clear(self) - - def get_allocator(self): - return _mscl.Triggers_get_allocator(self) - - def count(self, x): - return _mscl.Triggers_count(self, x) - - def erase(self, *args): - return _mscl.Triggers_erase(self, *args) - - def find(self, x): - return _mscl.Triggers_find(self, x) - - def lower_bound(self, x): - return _mscl.Triggers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.Triggers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_Triggers - -# Register Triggers in _mscl: -_mscl.Triggers_swigregister(Triggers) - -class ChannelCalMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelCalMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelCalMap___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelCalMap___bool__(self) - - def __len__(self): - return _mscl.ChannelCalMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelCalMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelCalMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelCalMap_has_key(self, key) - - def keys(self): - return _mscl.ChannelCalMap_keys(self) - - def values(self): - return _mscl.ChannelCalMap_values(self) - - def items(self): - return _mscl.ChannelCalMap_items(self) - - def __contains__(self, key): - return _mscl.ChannelCalMap___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelCalMap_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelCalMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelCalMap___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelCalMap_asdict(self) - - def __init__(self, *args): - _mscl.ChannelCalMap_swiginit(self, _mscl.new_ChannelCalMap(*args)) - - def empty(self): - return _mscl.ChannelCalMap_empty(self) - - def size(self): - return _mscl.ChannelCalMap_size(self) - - def swap(self, v): - return _mscl.ChannelCalMap_swap(self, v) - - def begin(self): - return _mscl.ChannelCalMap_begin(self) - - def end(self): - return _mscl.ChannelCalMap_end(self) - - def rbegin(self): - return _mscl.ChannelCalMap_rbegin(self) - - def rend(self): - return _mscl.ChannelCalMap_rend(self) - - def clear(self): - return _mscl.ChannelCalMap_clear(self) - - def get_allocator(self): - return _mscl.ChannelCalMap_get_allocator(self) - - def count(self, x): - return _mscl.ChannelCalMap_count(self, x) - - def erase(self, *args): - return _mscl.ChannelCalMap_erase(self, *args) - - def find(self, x): - return _mscl.ChannelCalMap_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelCalMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelCalMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelCalMap - -# Register ChannelCalMap in _mscl: -_mscl.ChannelCalMap_swigregister(ChannelCalMap) - -class WirelessPollData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessPollData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessPollData___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessPollData___bool__(self) - - def __len__(self): - return _mscl.WirelessPollData___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.WirelessPollData___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.WirelessPollData___delitem__(self, key) - - def has_key(self, key): - return _mscl.WirelessPollData_has_key(self, key) - - def keys(self): - return _mscl.WirelessPollData_keys(self) - - def values(self): - return _mscl.WirelessPollData_values(self) - - def items(self): - return _mscl.WirelessPollData_items(self) - - def __contains__(self, key): - return _mscl.WirelessPollData___contains__(self, key) - - def key_iterator(self): - return _mscl.WirelessPollData_key_iterator(self) - - def value_iterator(self): - return _mscl.WirelessPollData_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.WirelessPollData___setitem__(self, *args) - - def asdict(self): - return _mscl.WirelessPollData_asdict(self) - - def __init__(self, *args): - _mscl.WirelessPollData_swiginit(self, _mscl.new_WirelessPollData(*args)) - - def empty(self): - return _mscl.WirelessPollData_empty(self) - - def size(self): - return _mscl.WirelessPollData_size(self) - - def swap(self, v): - return _mscl.WirelessPollData_swap(self, v) - - def begin(self): - return _mscl.WirelessPollData_begin(self) - - def end(self): - return _mscl.WirelessPollData_end(self) - - def rbegin(self): - return _mscl.WirelessPollData_rbegin(self) - - def rend(self): - return _mscl.WirelessPollData_rend(self) - - def clear(self): - return _mscl.WirelessPollData_clear(self) - - def get_allocator(self): - return _mscl.WirelessPollData_get_allocator(self) - - def count(self, x): - return _mscl.WirelessPollData_count(self, x) - - def erase(self, *args): - return _mscl.WirelessPollData_erase(self, *args) - - def find(self, x): - return _mscl.WirelessPollData_find(self, x) - - def lower_bound(self, x): - return _mscl.WirelessPollData_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.WirelessPollData_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_WirelessPollData - -# Register WirelessPollData in _mscl: -_mscl.WirelessPollData_swigregister(WirelessPollData) - -class ConnectionDebugDataVec(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConnectionDebugDataVec_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConnectionDebugDataVec___nonzero__(self) - - def __bool__(self): - return _mscl.ConnectionDebugDataVec___bool__(self) - - def __len__(self): - return _mscl.ConnectionDebugDataVec___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConnectionDebugDataVec___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConnectionDebugDataVec___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConnectionDebugDataVec___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConnectionDebugDataVec___setitem__(self, *args) - - def pop(self): - return _mscl.ConnectionDebugDataVec_pop(self) - - def append(self, x): - return _mscl.ConnectionDebugDataVec_append(self, x) - - def empty(self): - return _mscl.ConnectionDebugDataVec_empty(self) - - def size(self): - return _mscl.ConnectionDebugDataVec_size(self) - - def swap(self, v): - return _mscl.ConnectionDebugDataVec_swap(self, v) - - def begin(self): - return _mscl.ConnectionDebugDataVec_begin(self) - - def end(self): - return _mscl.ConnectionDebugDataVec_end(self) - - def rbegin(self): - return _mscl.ConnectionDebugDataVec_rbegin(self) - - def rend(self): - return _mscl.ConnectionDebugDataVec_rend(self) - - def clear(self): - return _mscl.ConnectionDebugDataVec_clear(self) - - def get_allocator(self): - return _mscl.ConnectionDebugDataVec_get_allocator(self) - - def pop_back(self): - return _mscl.ConnectionDebugDataVec_pop_back(self) - - def erase(self, *args): - return _mscl.ConnectionDebugDataVec_erase(self, *args) - - def __init__(self, *args): - _mscl.ConnectionDebugDataVec_swiginit(self, _mscl.new_ConnectionDebugDataVec(*args)) - - def push_back(self, x): - return _mscl.ConnectionDebugDataVec_push_back(self, x) - - def front(self): - return _mscl.ConnectionDebugDataVec_front(self) - - def back(self): - return _mscl.ConnectionDebugDataVec_back(self) - - def assign(self, n, x): - return _mscl.ConnectionDebugDataVec_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConnectionDebugDataVec_resize(self, *args) - - def insert(self, *args): - return _mscl.ConnectionDebugDataVec_insert(self, *args) - - def reserve(self, n): - return _mscl.ConnectionDebugDataVec_reserve(self, n) - - def capacity(self): - return _mscl.ConnectionDebugDataVec_capacity(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugDataVec - -# Register ConnectionDebugDataVec in _mscl: -_mscl.ConnectionDebugDataVec_swigregister(ConnectionDebugDataVec) - -class SatellitePRNs(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SatellitePRNs_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SatellitePRNs___nonzero__(self) - - def __bool__(self): - return _mscl.SatellitePRNs___bool__(self) - - def __len__(self): - return _mscl.SatellitePRNs___len__(self) - - def __getslice__(self, i, j): - return _mscl.SatellitePRNs___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SatellitePRNs___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SatellitePRNs___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SatellitePRNs___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SatellitePRNs___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SatellitePRNs___setitem__(self, *args) - - def pop(self): - return _mscl.SatellitePRNs_pop(self) - - def append(self, x): - return _mscl.SatellitePRNs_append(self, x) - - def empty(self): - return _mscl.SatellitePRNs_empty(self) - - def size(self): - return _mscl.SatellitePRNs_size(self) - - def swap(self, v): - return _mscl.SatellitePRNs_swap(self, v) - - def begin(self): - return _mscl.SatellitePRNs_begin(self) - - def end(self): - return _mscl.SatellitePRNs_end(self) - - def rbegin(self): - return _mscl.SatellitePRNs_rbegin(self) - - def rend(self): - return _mscl.SatellitePRNs_rend(self) - - def clear(self): - return _mscl.SatellitePRNs_clear(self) - - def get_allocator(self): - return _mscl.SatellitePRNs_get_allocator(self) - - def pop_back(self): - return _mscl.SatellitePRNs_pop_back(self) - - def erase(self, *args): - return _mscl.SatellitePRNs_erase(self, *args) - - def __init__(self, *args): - _mscl.SatellitePRNs_swiginit(self, _mscl.new_SatellitePRNs(*args)) - - def push_back(self, x): - return _mscl.SatellitePRNs_push_back(self, x) - - def front(self): - return _mscl.SatellitePRNs_front(self) - - def back(self): - return _mscl.SatellitePRNs_back(self) - - def assign(self, n, x): - return _mscl.SatellitePRNs_assign(self, n, x) - - def resize(self, *args): - return _mscl.SatellitePRNs_resize(self, *args) - - def insert(self, *args): - return _mscl.SatellitePRNs_insert(self, *args) - - def reserve(self, n): - return _mscl.SatellitePRNs_reserve(self, n) - - def capacity(self): - return _mscl.SatellitePRNs_capacity(self) - __swig_destroy__ = _mscl.delete_SatellitePRNs - -# Register SatellitePRNs in _mscl: -_mscl.SatellitePRNs_swigregister(SatellitePRNs) - -class Constellations(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Constellations_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Constellations___nonzero__(self) - - def __bool__(self): - return _mscl.Constellations___bool__(self) - - def __len__(self): - return _mscl.Constellations___len__(self) - - def __getslice__(self, i, j): - return _mscl.Constellations___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Constellations___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Constellations___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Constellations___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Constellations___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Constellations___setitem__(self, *args) - - def pop(self): - return _mscl.Constellations_pop(self) - - def append(self, x): - return _mscl.Constellations_append(self, x) - - def empty(self): - return _mscl.Constellations_empty(self) - - def size(self): - return _mscl.Constellations_size(self) - - def swap(self, v): - return _mscl.Constellations_swap(self, v) - - def begin(self): - return _mscl.Constellations_begin(self) - - def end(self): - return _mscl.Constellations_end(self) - - def rbegin(self): - return _mscl.Constellations_rbegin(self) - - def rend(self): - return _mscl.Constellations_rend(self) - - def clear(self): - return _mscl.Constellations_clear(self) - - def get_allocator(self): - return _mscl.Constellations_get_allocator(self) - - def pop_back(self): - return _mscl.Constellations_pop_back(self) - - def erase(self, *args): - return _mscl.Constellations_erase(self, *args) - - def __init__(self, *args): - _mscl.Constellations_swiginit(self, _mscl.new_Constellations(*args)) - - def push_back(self, x): - return _mscl.Constellations_push_back(self, x) - - def front(self): - return _mscl.Constellations_front(self) - - def back(self): - return _mscl.Constellations_back(self) - - def assign(self, n, x): - return _mscl.Constellations_assign(self, n, x) - - def resize(self, *args): - return _mscl.Constellations_resize(self, *args) - - def insert(self, *args): - return _mscl.Constellations_insert(self, *args) - - def reserve(self, n): - return _mscl.Constellations_reserve(self, n) - - def capacity(self): - return _mscl.Constellations_capacity(self) - __swig_destroy__ = _mscl.delete_Constellations - -# Register Constellations in _mscl: -_mscl.Constellations_swigregister(Constellations) - -class HeadingUpdateOptionsList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HeadingUpdateOptionsList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HeadingUpdateOptionsList___nonzero__(self) - - def __bool__(self): - return _mscl.HeadingUpdateOptionsList___bool__(self) - - def __len__(self): - return _mscl.HeadingUpdateOptionsList___len__(self) - - def __getslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HeadingUpdateOptionsList___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___setitem__(self, *args) - - def pop(self): - return _mscl.HeadingUpdateOptionsList_pop(self) - - def append(self, x): - return _mscl.HeadingUpdateOptionsList_append(self, x) - - def empty(self): - return _mscl.HeadingUpdateOptionsList_empty(self) - - def size(self): - return _mscl.HeadingUpdateOptionsList_size(self) - - def swap(self, v): - return _mscl.HeadingUpdateOptionsList_swap(self, v) - - def begin(self): - return _mscl.HeadingUpdateOptionsList_begin(self) - - def end(self): - return _mscl.HeadingUpdateOptionsList_end(self) - - def rbegin(self): - return _mscl.HeadingUpdateOptionsList_rbegin(self) - - def rend(self): - return _mscl.HeadingUpdateOptionsList_rend(self) - - def clear(self): - return _mscl.HeadingUpdateOptionsList_clear(self) - - def get_allocator(self): - return _mscl.HeadingUpdateOptionsList_get_allocator(self) - - def pop_back(self): - return _mscl.HeadingUpdateOptionsList_pop_back(self) - - def erase(self, *args): - return _mscl.HeadingUpdateOptionsList_erase(self, *args) - - def __init__(self, *args): - _mscl.HeadingUpdateOptionsList_swiginit(self, _mscl.new_HeadingUpdateOptionsList(*args)) - - def push_back(self, x): - return _mscl.HeadingUpdateOptionsList_push_back(self, x) - - def front(self): - return _mscl.HeadingUpdateOptionsList_front(self) - - def back(self): - return _mscl.HeadingUpdateOptionsList_back(self) - - def assign(self, n, x): - return _mscl.HeadingUpdateOptionsList_assign(self, n, x) - - def resize(self, *args): - return _mscl.HeadingUpdateOptionsList_resize(self, *args) - - def insert(self, *args): - return _mscl.HeadingUpdateOptionsList_insert(self, *args) - - def reserve(self, n): - return _mscl.HeadingUpdateOptionsList_reserve(self, n) - - def capacity(self): - return _mscl.HeadingUpdateOptionsList_capacity(self) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptionsList - -# Register HeadingUpdateOptionsList in _mscl: -_mscl.HeadingUpdateOptionsList_swigregister(HeadingUpdateOptionsList) - -class AdaptiveMeasurementModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveMeasurementModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveMeasurementModes___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveMeasurementModes___bool__(self) - - def __len__(self): - return _mscl.AdaptiveMeasurementModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveMeasurementModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveMeasurementModes_pop(self) - - def append(self, x): - return _mscl.AdaptiveMeasurementModes_append(self, x) - - def empty(self): - return _mscl.AdaptiveMeasurementModes_empty(self) - - def size(self): - return _mscl.AdaptiveMeasurementModes_size(self) - - def swap(self, v): - return _mscl.AdaptiveMeasurementModes_swap(self, v) - - def begin(self): - return _mscl.AdaptiveMeasurementModes_begin(self) - - def end(self): - return _mscl.AdaptiveMeasurementModes_end(self) - - def rbegin(self): - return _mscl.AdaptiveMeasurementModes_rbegin(self) - - def rend(self): - return _mscl.AdaptiveMeasurementModes_rend(self) - - def clear(self): - return _mscl.AdaptiveMeasurementModes_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveMeasurementModes_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveMeasurementModes_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveMeasurementModes_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveMeasurementModes_swiginit(self, _mscl.new_AdaptiveMeasurementModes(*args)) - - def push_back(self, x): - return _mscl.AdaptiveMeasurementModes_push_back(self, x) - - def front(self): - return _mscl.AdaptiveMeasurementModes_front(self) - - def back(self): - return _mscl.AdaptiveMeasurementModes_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveMeasurementModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveMeasurementModes_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveMeasurementModes_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveMeasurementModes_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveMeasurementModes_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementModes - -# Register AdaptiveMeasurementModes in _mscl: -_mscl.AdaptiveMeasurementModes_swigregister(AdaptiveMeasurementModes) - -class GeometricVectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeometricVectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeometricVectors___nonzero__(self) - - def __bool__(self): - return _mscl.GeometricVectors___bool__(self) - - def __len__(self): - return _mscl.GeometricVectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeometricVectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeometricVectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeometricVectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeometricVectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeometricVectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeometricVectors___setitem__(self, *args) - - def pop(self): - return _mscl.GeometricVectors_pop(self) - - def append(self, x): - return _mscl.GeometricVectors_append(self, x) - - def empty(self): - return _mscl.GeometricVectors_empty(self) - - def size(self): - return _mscl.GeometricVectors_size(self) - - def swap(self, v): - return _mscl.GeometricVectors_swap(self, v) - - def begin(self): - return _mscl.GeometricVectors_begin(self) - - def end(self): - return _mscl.GeometricVectors_end(self) - - def rbegin(self): - return _mscl.GeometricVectors_rbegin(self) - - def rend(self): - return _mscl.GeometricVectors_rend(self) - - def clear(self): - return _mscl.GeometricVectors_clear(self) - - def get_allocator(self): - return _mscl.GeometricVectors_get_allocator(self) - - def pop_back(self): - return _mscl.GeometricVectors_pop_back(self) - - def erase(self, *args): - return _mscl.GeometricVectors_erase(self, *args) - - def __init__(self, *args): - _mscl.GeometricVectors_swiginit(self, _mscl.new_GeometricVectors(*args)) - - def push_back(self, x): - return _mscl.GeometricVectors_push_back(self, x) - - def front(self): - return _mscl.GeometricVectors_front(self) - - def back(self): - return _mscl.GeometricVectors_back(self) - - def assign(self, n, x): - return _mscl.GeometricVectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeometricVectors_resize(self, *args) - - def insert(self, *args): - return _mscl.GeometricVectors_insert(self, *args) - - def reserve(self, n): - return _mscl.GeometricVectors_reserve(self, n) - - def capacity(self): - return _mscl.GeometricVectors_capacity(self) - __swig_destroy__ = _mscl.delete_GeometricVectors - -# Register GeometricVectors in _mscl: -_mscl.GeometricVectors_swigregister(GeometricVectors) - -class Matrix_3x3s(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Matrix_3x3s_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Matrix_3x3s___nonzero__(self) - - def __bool__(self): - return _mscl.Matrix_3x3s___bool__(self) - - def __len__(self): - return _mscl.Matrix_3x3s___len__(self) - - def __getslice__(self, i, j): - return _mscl.Matrix_3x3s___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Matrix_3x3s___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Matrix_3x3s___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Matrix_3x3s___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Matrix_3x3s___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Matrix_3x3s___setitem__(self, *args) - - def pop(self): - return _mscl.Matrix_3x3s_pop(self) - - def append(self, x): - return _mscl.Matrix_3x3s_append(self, x) - - def empty(self): - return _mscl.Matrix_3x3s_empty(self) - - def size(self): - return _mscl.Matrix_3x3s_size(self) - - def swap(self, v): - return _mscl.Matrix_3x3s_swap(self, v) - - def begin(self): - return _mscl.Matrix_3x3s_begin(self) - - def end(self): - return _mscl.Matrix_3x3s_end(self) - - def rbegin(self): - return _mscl.Matrix_3x3s_rbegin(self) - - def rend(self): - return _mscl.Matrix_3x3s_rend(self) - - def clear(self): - return _mscl.Matrix_3x3s_clear(self) - - def get_allocator(self): - return _mscl.Matrix_3x3s_get_allocator(self) - - def pop_back(self): - return _mscl.Matrix_3x3s_pop_back(self) - - def erase(self, *args): - return _mscl.Matrix_3x3s_erase(self, *args) - - def __init__(self, *args): - _mscl.Matrix_3x3s_swiginit(self, _mscl.new_Matrix_3x3s(*args)) - - def push_back(self, x): - return _mscl.Matrix_3x3s_push_back(self, x) - - def front(self): - return _mscl.Matrix_3x3s_front(self) - - def back(self): - return _mscl.Matrix_3x3s_back(self) - - def assign(self, n, x): - return _mscl.Matrix_3x3s_assign(self, n, x) - - def resize(self, *args): - return _mscl.Matrix_3x3s_resize(self, *args) - - def insert(self, *args): - return _mscl.Matrix_3x3s_insert(self, *args) - - def reserve(self, n): - return _mscl.Matrix_3x3s_reserve(self, n) - - def capacity(self): - return _mscl.Matrix_3x3s_capacity(self) - __swig_destroy__ = _mscl.delete_Matrix_3x3s - -# Register Matrix_3x3s in _mscl: -_mscl.Matrix_3x3s_swigregister(Matrix_3x3s) - -class StatusSelectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StatusSelectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StatusSelectors___nonzero__(self) - - def __bool__(self): - return _mscl.StatusSelectors___bool__(self) - - def __len__(self): - return _mscl.StatusSelectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.StatusSelectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StatusSelectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StatusSelectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StatusSelectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StatusSelectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StatusSelectors___setitem__(self, *args) - - def pop(self): - return _mscl.StatusSelectors_pop(self) - - def append(self, x): - return _mscl.StatusSelectors_append(self, x) - - def empty(self): - return _mscl.StatusSelectors_empty(self) - - def size(self): - return _mscl.StatusSelectors_size(self) - - def swap(self, v): - return _mscl.StatusSelectors_swap(self, v) - - def begin(self): - return _mscl.StatusSelectors_begin(self) - - def end(self): - return _mscl.StatusSelectors_end(self) - - def rbegin(self): - return _mscl.StatusSelectors_rbegin(self) - - def rend(self): - return _mscl.StatusSelectors_rend(self) - - def clear(self): - return _mscl.StatusSelectors_clear(self) - - def get_allocator(self): - return _mscl.StatusSelectors_get_allocator(self) - - def pop_back(self): - return _mscl.StatusSelectors_pop_back(self) - - def erase(self, *args): - return _mscl.StatusSelectors_erase(self, *args) - - def __init__(self, *args): - _mscl.StatusSelectors_swiginit(self, _mscl.new_StatusSelectors(*args)) - - def push_back(self, x): - return _mscl.StatusSelectors_push_back(self, x) - - def front(self): - return _mscl.StatusSelectors_front(self) - - def back(self): - return _mscl.StatusSelectors_back(self) - - def assign(self, n, x): - return _mscl.StatusSelectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.StatusSelectors_resize(self, *args) - - def insert(self, *args): - return _mscl.StatusSelectors_insert(self, *args) - - def reserve(self, n): - return _mscl.StatusSelectors_reserve(self, n) - - def capacity(self): - return _mscl.StatusSelectors_capacity(self) - __swig_destroy__ = _mscl.delete_StatusSelectors - -# Register StatusSelectors in _mscl: -_mscl.StatusSelectors_swigregister(StatusSelectors) - -class VehicleModeTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.VehicleModeTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.VehicleModeTypes___nonzero__(self) - - def __bool__(self): - return _mscl.VehicleModeTypes___bool__(self) - - def __len__(self): - return _mscl.VehicleModeTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.VehicleModeTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.VehicleModeTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.VehicleModeTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.VehicleModeTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.VehicleModeTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.VehicleModeTypes___setitem__(self, *args) - - def pop(self): - return _mscl.VehicleModeTypes_pop(self) - - def append(self, x): - return _mscl.VehicleModeTypes_append(self, x) - - def empty(self): - return _mscl.VehicleModeTypes_empty(self) - - def size(self): - return _mscl.VehicleModeTypes_size(self) - - def swap(self, v): - return _mscl.VehicleModeTypes_swap(self, v) - - def begin(self): - return _mscl.VehicleModeTypes_begin(self) - - def end(self): - return _mscl.VehicleModeTypes_end(self) - - def rbegin(self): - return _mscl.VehicleModeTypes_rbegin(self) - - def rend(self): - return _mscl.VehicleModeTypes_rend(self) - - def clear(self): - return _mscl.VehicleModeTypes_clear(self) - - def get_allocator(self): - return _mscl.VehicleModeTypes_get_allocator(self) - - def pop_back(self): - return _mscl.VehicleModeTypes_pop_back(self) - - def erase(self, *args): - return _mscl.VehicleModeTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.VehicleModeTypes_swiginit(self, _mscl.new_VehicleModeTypes(*args)) - - def push_back(self, x): - return _mscl.VehicleModeTypes_push_back(self, x) - - def front(self): - return _mscl.VehicleModeTypes_front(self) - - def back(self): - return _mscl.VehicleModeTypes_back(self) - - def assign(self, n, x): - return _mscl.VehicleModeTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.VehicleModeTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.VehicleModeTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.VehicleModeTypes_reserve(self, n) - - def capacity(self): - return _mscl.VehicleModeTypes_capacity(self) - __swig_destroy__ = _mscl.delete_VehicleModeTypes - -# Register VehicleModeTypes in _mscl: -_mscl.VehicleModeTypes_swigregister(VehicleModeTypes) - -class AdaptiveFilterLevels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveFilterLevels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveFilterLevels___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveFilterLevels___bool__(self) - - def __len__(self): - return _mscl.AdaptiveFilterLevels___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveFilterLevels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveFilterLevels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveFilterLevels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveFilterLevels___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveFilterLevels_pop(self) - - def append(self, x): - return _mscl.AdaptiveFilterLevels_append(self, x) - - def empty(self): - return _mscl.AdaptiveFilterLevels_empty(self) - - def size(self): - return _mscl.AdaptiveFilterLevels_size(self) - - def swap(self, v): - return _mscl.AdaptiveFilterLevels_swap(self, v) - - def begin(self): - return _mscl.AdaptiveFilterLevels_begin(self) - - def end(self): - return _mscl.AdaptiveFilterLevels_end(self) - - def rbegin(self): - return _mscl.AdaptiveFilterLevels_rbegin(self) - - def rend(self): - return _mscl.AdaptiveFilterLevels_rend(self) - - def clear(self): - return _mscl.AdaptiveFilterLevels_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveFilterLevels_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveFilterLevels_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveFilterLevels_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveFilterLevels_swiginit(self, _mscl.new_AdaptiveFilterLevels(*args)) - - def push_back(self, x): - return _mscl.AdaptiveFilterLevels_push_back(self, x) - - def front(self): - return _mscl.AdaptiveFilterLevels_front(self) - - def back(self): - return _mscl.AdaptiveFilterLevels_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveFilterLevels_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveFilterLevels_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveFilterLevels_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveFilterLevels_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveFilterLevels_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveFilterLevels - -# Register AdaptiveFilterLevels in _mscl: -_mscl.AdaptiveFilterLevels_swigregister(AdaptiveFilterLevels) - -class LowPassFilterConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LowPassFilterConfig_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LowPassFilterConfig___nonzero__(self) - - def __bool__(self): - return _mscl.LowPassFilterConfig___bool__(self) - - def __len__(self): - return _mscl.LowPassFilterConfig___len__(self) - - def __getslice__(self, i, j): - return _mscl.LowPassFilterConfig___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LowPassFilterConfig___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LowPassFilterConfig___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LowPassFilterConfig___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LowPassFilterConfig___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LowPassFilterConfig___setitem__(self, *args) - - def pop(self): - return _mscl.LowPassFilterConfig_pop(self) - - def append(self, x): - return _mscl.LowPassFilterConfig_append(self, x) - - def empty(self): - return _mscl.LowPassFilterConfig_empty(self) - - def size(self): - return _mscl.LowPassFilterConfig_size(self) - - def swap(self, v): - return _mscl.LowPassFilterConfig_swap(self, v) - - def begin(self): - return _mscl.LowPassFilterConfig_begin(self) - - def end(self): - return _mscl.LowPassFilterConfig_end(self) - - def rbegin(self): - return _mscl.LowPassFilterConfig_rbegin(self) - - def rend(self): - return _mscl.LowPassFilterConfig_rend(self) - - def clear(self): - return _mscl.LowPassFilterConfig_clear(self) - - def get_allocator(self): - return _mscl.LowPassFilterConfig_get_allocator(self) - - def pop_back(self): - return _mscl.LowPassFilterConfig_pop_back(self) - - def erase(self, *args): - return _mscl.LowPassFilterConfig_erase(self, *args) - - def __init__(self, *args): - _mscl.LowPassFilterConfig_swiginit(self, _mscl.new_LowPassFilterConfig(*args)) - - def push_back(self, x): - return _mscl.LowPassFilterConfig_push_back(self, x) - - def front(self): - return _mscl.LowPassFilterConfig_front(self) - - def back(self): - return _mscl.LowPassFilterConfig_back(self) - - def assign(self, n, x): - return _mscl.LowPassFilterConfig_assign(self, n, x) - - def resize(self, *args): - return _mscl.LowPassFilterConfig_resize(self, *args) - - def insert(self, *args): - return _mscl.LowPassFilterConfig_insert(self, *args) - - def reserve(self, n): - return _mscl.LowPassFilterConfig_reserve(self, n) - - def capacity(self): - return _mscl.LowPassFilterConfig_capacity(self) - __swig_destroy__ = _mscl.delete_LowPassFilterConfig - -# Register LowPassFilterConfig in _mscl: -_mscl.LowPassFilterConfig_swigregister(LowPassFilterConfig) - -class AidingMeasurementSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AidingMeasurementSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AidingMeasurementSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.AidingMeasurementSourceOptions___bool__(self) - - def __len__(self): - return _mscl.AidingMeasurementSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.AidingMeasurementSourceOptions_pop(self) - - def append(self, x): - return _mscl.AidingMeasurementSourceOptions_append(self, x) - - def empty(self): - return _mscl.AidingMeasurementSourceOptions_empty(self) - - def size(self): - return _mscl.AidingMeasurementSourceOptions_size(self) - - def swap(self, v): - return _mscl.AidingMeasurementSourceOptions_swap(self, v) - - def begin(self): - return _mscl.AidingMeasurementSourceOptions_begin(self) - - def end(self): - return _mscl.AidingMeasurementSourceOptions_end(self) - - def rbegin(self): - return _mscl.AidingMeasurementSourceOptions_rbegin(self) - - def rend(self): - return _mscl.AidingMeasurementSourceOptions_rend(self) - - def clear(self): - return _mscl.AidingMeasurementSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.AidingMeasurementSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.AidingMeasurementSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.AidingMeasurementSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.AidingMeasurementSourceOptions_swiginit(self, _mscl.new_AidingMeasurementSourceOptions(*args)) - - def push_back(self, x): - return _mscl.AidingMeasurementSourceOptions_push_back(self, x) - - def front(self): - return _mscl.AidingMeasurementSourceOptions_front(self) - - def back(self): - return _mscl.AidingMeasurementSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.AidingMeasurementSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.AidingMeasurementSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.AidingMeasurementSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.AidingMeasurementSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.AidingMeasurementSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_AidingMeasurementSourceOptions - -# Register AidingMeasurementSourceOptions in _mscl: -_mscl.AidingMeasurementSourceOptions_swigregister(AidingMeasurementSourceOptions) - -class PpsSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.PpsSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.PpsSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.PpsSourceOptions___bool__(self) - - def __len__(self): - return _mscl.PpsSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.PpsSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.PpsSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.PpsSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.PpsSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.PpsSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.PpsSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.PpsSourceOptions_pop(self) - - def append(self, x): - return _mscl.PpsSourceOptions_append(self, x) - - def empty(self): - return _mscl.PpsSourceOptions_empty(self) - - def size(self): - return _mscl.PpsSourceOptions_size(self) - - def swap(self, v): - return _mscl.PpsSourceOptions_swap(self, v) - - def begin(self): - return _mscl.PpsSourceOptions_begin(self) - - def end(self): - return _mscl.PpsSourceOptions_end(self) - - def rbegin(self): - return _mscl.PpsSourceOptions_rbegin(self) - - def rend(self): - return _mscl.PpsSourceOptions_rend(self) - - def clear(self): - return _mscl.PpsSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.PpsSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.PpsSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.PpsSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.PpsSourceOptions_swiginit(self, _mscl.new_PpsSourceOptions(*args)) - - def push_back(self, x): - return _mscl.PpsSourceOptions_push_back(self, x) - - def front(self): - return _mscl.PpsSourceOptions_front(self) - - def back(self): - return _mscl.PpsSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.PpsSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.PpsSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.PpsSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.PpsSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.PpsSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_PpsSourceOptions - -# Register PpsSourceOptions in _mscl: -_mscl.PpsSourceOptions_swigregister(PpsSourceOptions) - -class GeographicSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeographicSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeographicSources___nonzero__(self) - - def __bool__(self): - return _mscl.GeographicSources___bool__(self) - - def __len__(self): - return _mscl.GeographicSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeographicSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeographicSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeographicSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeographicSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeographicSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeographicSources___setitem__(self, *args) - - def pop(self): - return _mscl.GeographicSources_pop(self) - - def append(self, x): - return _mscl.GeographicSources_append(self, x) - - def empty(self): - return _mscl.GeographicSources_empty(self) - - def size(self): - return _mscl.GeographicSources_size(self) - - def swap(self, v): - return _mscl.GeographicSources_swap(self, v) - - def begin(self): - return _mscl.GeographicSources_begin(self) - - def end(self): - return _mscl.GeographicSources_end(self) - - def rbegin(self): - return _mscl.GeographicSources_rbegin(self) - - def rend(self): - return _mscl.GeographicSources_rend(self) - - def clear(self): - return _mscl.GeographicSources_clear(self) - - def get_allocator(self): - return _mscl.GeographicSources_get_allocator(self) - - def pop_back(self): - return _mscl.GeographicSources_pop_back(self) - - def erase(self, *args): - return _mscl.GeographicSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GeographicSources_swiginit(self, _mscl.new_GeographicSources(*args)) - - def push_back(self, x): - return _mscl.GeographicSources_push_back(self, x) - - def front(self): - return _mscl.GeographicSources_front(self) - - def back(self): - return _mscl.GeographicSources_back(self) - - def assign(self, n, x): - return _mscl.GeographicSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeographicSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GeographicSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GeographicSources_reserve(self, n) - - def capacity(self): - return _mscl.GeographicSources_capacity(self) - __swig_destroy__ = _mscl.delete_GeographicSources - -# Register GeographicSources in _mscl: -_mscl.GeographicSources_swigregister(GeographicSources) - -class GnssSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSources___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSources___bool__(self) - - def __len__(self): - return _mscl.GnssSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssSources___setitem__(self, *args) - - def pop(self): - return _mscl.GnssSources_pop(self) - - def append(self, x): - return _mscl.GnssSources_append(self, x) - - def empty(self): - return _mscl.GnssSources_empty(self) - - def size(self): - return _mscl.GnssSources_size(self) - - def swap(self, v): - return _mscl.GnssSources_swap(self, v) - - def begin(self): - return _mscl.GnssSources_begin(self) - - def end(self): - return _mscl.GnssSources_end(self) - - def rbegin(self): - return _mscl.GnssSources_rbegin(self) - - def rend(self): - return _mscl.GnssSources_rend(self) - - def clear(self): - return _mscl.GnssSources_clear(self) - - def get_allocator(self): - return _mscl.GnssSources_get_allocator(self) - - def pop_back(self): - return _mscl.GnssSources_pop_back(self) - - def erase(self, *args): - return _mscl.GnssSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssSources_swiginit(self, _mscl.new_GnssSources(*args)) - - def push_back(self, x): - return _mscl.GnssSources_push_back(self, x) - - def front(self): - return _mscl.GnssSources_front(self) - - def back(self): - return _mscl.GnssSources_back(self) - - def assign(self, n, x): - return _mscl.GnssSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssSources_reserve(self, n) - - def capacity(self): - return _mscl.GnssSources_capacity(self) - __swig_destroy__ = _mscl.delete_GnssSources - -# Register GnssSources in _mscl: -_mscl.GnssSources_swigregister(GnssSources) - -class GnssSignalConfigOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSignalConfigOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSignalConfigOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSignalConfigOptions___bool__(self) - - def __len__(self): - return _mscl.GnssSignalConfigOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GnssSignalConfigOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GnssSignalConfigOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GnssSignalConfigOptions_has_key(self, key) - - def keys(self): - return _mscl.GnssSignalConfigOptions_keys(self) - - def values(self): - return _mscl.GnssSignalConfigOptions_values(self) - - def items(self): - return _mscl.GnssSignalConfigOptions_items(self) - - def __contains__(self, key): - return _mscl.GnssSignalConfigOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GnssSignalConfigOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GnssSignalConfigOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GnssSignalConfigOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GnssSignalConfigOptions_asdict(self) - - def __init__(self, *args): - _mscl.GnssSignalConfigOptions_swiginit(self, _mscl.new_GnssSignalConfigOptions(*args)) - - def empty(self): - return _mscl.GnssSignalConfigOptions_empty(self) - - def size(self): - return _mscl.GnssSignalConfigOptions_size(self) - - def swap(self, v): - return _mscl.GnssSignalConfigOptions_swap(self, v) - - def begin(self): - return _mscl.GnssSignalConfigOptions_begin(self) - - def end(self): - return _mscl.GnssSignalConfigOptions_end(self) - - def rbegin(self): - return _mscl.GnssSignalConfigOptions_rbegin(self) - - def rend(self): - return _mscl.GnssSignalConfigOptions_rend(self) - - def clear(self): - return _mscl.GnssSignalConfigOptions_clear(self) - - def get_allocator(self): - return _mscl.GnssSignalConfigOptions_get_allocator(self) - - def count(self, x): - return _mscl.GnssSignalConfigOptions_count(self, x) - - def erase(self, *args): - return _mscl.GnssSignalConfigOptions_erase(self, *args) - - def find(self, x): - return _mscl.GnssSignalConfigOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GnssSignalConfigOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GnssSignalConfigOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GnssSignalConfigOptions - -# Register GnssSignalConfigOptions in _mscl: -_mscl.GnssSignalConfigOptions_swigregister(GnssSignalConfigOptions) - -class NmeaMessageFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NmeaMessageFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NmeaMessageFormats___nonzero__(self) - - def __bool__(self): - return _mscl.NmeaMessageFormats___bool__(self) - - def __len__(self): - return _mscl.NmeaMessageFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.NmeaMessageFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NmeaMessageFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NmeaMessageFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NmeaMessageFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NmeaMessageFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NmeaMessageFormats___setitem__(self, *args) - - def pop(self): - return _mscl.NmeaMessageFormats_pop(self) - - def append(self, x): - return _mscl.NmeaMessageFormats_append(self, x) - - def empty(self): - return _mscl.NmeaMessageFormats_empty(self) - - def size(self): - return _mscl.NmeaMessageFormats_size(self) - - def swap(self, v): - return _mscl.NmeaMessageFormats_swap(self, v) - - def begin(self): - return _mscl.NmeaMessageFormats_begin(self) - - def end(self): - return _mscl.NmeaMessageFormats_end(self) - - def rbegin(self): - return _mscl.NmeaMessageFormats_rbegin(self) - - def rend(self): - return _mscl.NmeaMessageFormats_rend(self) - - def clear(self): - return _mscl.NmeaMessageFormats_clear(self) - - def get_allocator(self): - return _mscl.NmeaMessageFormats_get_allocator(self) - - def pop_back(self): - return _mscl.NmeaMessageFormats_pop_back(self) - - def erase(self, *args): - return _mscl.NmeaMessageFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.NmeaMessageFormats_swiginit(self, _mscl.new_NmeaMessageFormats(*args)) - - def push_back(self, x): - return _mscl.NmeaMessageFormats_push_back(self, x) - - def front(self): - return _mscl.NmeaMessageFormats_front(self) - - def back(self): - return _mscl.NmeaMessageFormats_back(self) - - def assign(self, n, x): - return _mscl.NmeaMessageFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.NmeaMessageFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.NmeaMessageFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.NmeaMessageFormats_reserve(self, n) - - def capacity(self): - return _mscl.NmeaMessageFormats_capacity(self) - __swig_destroy__ = _mscl.delete_NmeaMessageFormats - -# Register NmeaMessageFormats in _mscl: -_mscl.NmeaMessageFormats_swigregister(NmeaMessageFormats) - -class GpioPinModeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinModeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinModeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinModeOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinModeOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.GpioPinModeOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GpioPinModeOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GpioPinModeOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GpioPinModeOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GpioPinModeOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GpioPinModeOptions___setitem__(self, *args) - - def pop(self): - return _mscl.GpioPinModeOptions_pop(self) - - def append(self, x): - return _mscl.GpioPinModeOptions_append(self, x) - - def empty(self): - return _mscl.GpioPinModeOptions_empty(self) - - def size(self): - return _mscl.GpioPinModeOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinModeOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinModeOptions_begin(self) - - def end(self): - return _mscl.GpioPinModeOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinModeOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinModeOptions_rend(self) - - def clear(self): - return _mscl.GpioPinModeOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinModeOptions_get_allocator(self) - - def pop_back(self): - return _mscl.GpioPinModeOptions_pop_back(self) - - def erase(self, *args): - return _mscl.GpioPinModeOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.GpioPinModeOptions_swiginit(self, _mscl.new_GpioPinModeOptions(*args)) - - def push_back(self, x): - return _mscl.GpioPinModeOptions_push_back(self, x) - - def front(self): - return _mscl.GpioPinModeOptions_front(self) - - def back(self): - return _mscl.GpioPinModeOptions_back(self) - - def assign(self, n, x): - return _mscl.GpioPinModeOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.GpioPinModeOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.GpioPinModeOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.GpioPinModeOptions_reserve(self, n) - - def capacity(self): - return _mscl.GpioPinModeOptions_capacity(self) - __swig_destroy__ = _mscl.delete_GpioPinModeOptions - -# Register GpioPinModeOptions in _mscl: -_mscl.GpioPinModeOptions_swigregister(GpioPinModeOptions) - -class GpioBehaviorModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioBehaviorModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioBehaviorModes___nonzero__(self) - - def __bool__(self): - return _mscl.GpioBehaviorModes___bool__(self) - - def __len__(self): - return _mscl.GpioBehaviorModes___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioBehaviorModes___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioBehaviorModes___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioBehaviorModes_has_key(self, key) - - def keys(self): - return _mscl.GpioBehaviorModes_keys(self) - - def values(self): - return _mscl.GpioBehaviorModes_values(self) - - def items(self): - return _mscl.GpioBehaviorModes_items(self) - - def __contains__(self, key): - return _mscl.GpioBehaviorModes___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioBehaviorModes_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioBehaviorModes_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioBehaviorModes___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioBehaviorModes_asdict(self) - - def __init__(self, *args): - _mscl.GpioBehaviorModes_swiginit(self, _mscl.new_GpioBehaviorModes(*args)) - - def empty(self): - return _mscl.GpioBehaviorModes_empty(self) - - def size(self): - return _mscl.GpioBehaviorModes_size(self) - - def swap(self, v): - return _mscl.GpioBehaviorModes_swap(self, v) - - def begin(self): - return _mscl.GpioBehaviorModes_begin(self) - - def end(self): - return _mscl.GpioBehaviorModes_end(self) - - def rbegin(self): - return _mscl.GpioBehaviorModes_rbegin(self) - - def rend(self): - return _mscl.GpioBehaviorModes_rend(self) - - def clear(self): - return _mscl.GpioBehaviorModes_clear(self) - - def get_allocator(self): - return _mscl.GpioBehaviorModes_get_allocator(self) - - def count(self, x): - return _mscl.GpioBehaviorModes_count(self, x) - - def erase(self, *args): - return _mscl.GpioBehaviorModes_erase(self, *args) - - def find(self, x): - return _mscl.GpioBehaviorModes_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioBehaviorModes_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioBehaviorModes_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioBehaviorModes - -# Register GpioBehaviorModes in _mscl: -_mscl.GpioBehaviorModes_swigregister(GpioBehaviorModes) - -class GpioFeatureBehaviors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioFeatureBehaviors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioFeatureBehaviors___nonzero__(self) - - def __bool__(self): - return _mscl.GpioFeatureBehaviors___bool__(self) - - def __len__(self): - return _mscl.GpioFeatureBehaviors___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioFeatureBehaviors___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioFeatureBehaviors___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioFeatureBehaviors_has_key(self, key) - - def keys(self): - return _mscl.GpioFeatureBehaviors_keys(self) - - def values(self): - return _mscl.GpioFeatureBehaviors_values(self) - - def items(self): - return _mscl.GpioFeatureBehaviors_items(self) - - def __contains__(self, key): - return _mscl.GpioFeatureBehaviors___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioFeatureBehaviors_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioFeatureBehaviors_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioFeatureBehaviors___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioFeatureBehaviors_asdict(self) - - def __init__(self, *args): - _mscl.GpioFeatureBehaviors_swiginit(self, _mscl.new_GpioFeatureBehaviors(*args)) - - def empty(self): - return _mscl.GpioFeatureBehaviors_empty(self) - - def size(self): - return _mscl.GpioFeatureBehaviors_size(self) - - def swap(self, v): - return _mscl.GpioFeatureBehaviors_swap(self, v) - - def begin(self): - return _mscl.GpioFeatureBehaviors_begin(self) - - def end(self): - return _mscl.GpioFeatureBehaviors_end(self) - - def rbegin(self): - return _mscl.GpioFeatureBehaviors_rbegin(self) - - def rend(self): - return _mscl.GpioFeatureBehaviors_rend(self) - - def clear(self): - return _mscl.GpioFeatureBehaviors_clear(self) - - def get_allocator(self): - return _mscl.GpioFeatureBehaviors_get_allocator(self) - - def count(self, x): - return _mscl.GpioFeatureBehaviors_count(self, x) - - def erase(self, *args): - return _mscl.GpioFeatureBehaviors_erase(self, *args) - - def find(self, x): - return _mscl.GpioFeatureBehaviors_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioFeatureBehaviors_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioFeatureBehaviors_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioFeatureBehaviors - -# Register GpioFeatureBehaviors in _mscl: -_mscl.GpioFeatureBehaviors_swigregister(GpioFeatureBehaviors) - -class GpioPinOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioPinOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioPinOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioPinOptions_has_key(self, key) - - def keys(self): - return _mscl.GpioPinOptions_keys(self) - - def values(self): - return _mscl.GpioPinOptions_values(self) - - def items(self): - return _mscl.GpioPinOptions_items(self) - - def __contains__(self, key): - return _mscl.GpioPinOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioPinOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioPinOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioPinOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioPinOptions_asdict(self) - - def __init__(self, *args): - _mscl.GpioPinOptions_swiginit(self, _mscl.new_GpioPinOptions(*args)) - - def empty(self): - return _mscl.GpioPinOptions_empty(self) - - def size(self): - return _mscl.GpioPinOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinOptions_begin(self) - - def end(self): - return _mscl.GpioPinOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinOptions_rend(self) - - def clear(self): - return _mscl.GpioPinOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinOptions_get_allocator(self) - - def count(self, x): - return _mscl.GpioPinOptions_count(self, x) - - def erase(self, *args): - return _mscl.GpioPinOptions_erase(self, *args) - - def find(self, x): - return _mscl.GpioPinOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioPinOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioPinOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioPinOptions - -# Register GpioPinOptions in _mscl: -_mscl.GpioPinOptions_swigregister(GpioPinOptions) - -class EventInputTriggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventInputTriggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventInputTriggers___nonzero__(self) - - def __bool__(self): - return _mscl.EventInputTriggers___bool__(self) - - def __len__(self): - return _mscl.EventInputTriggers___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventInputTriggers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventInputTriggers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventInputTriggers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventInputTriggers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventInputTriggers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventInputTriggers___setitem__(self, *args) - - def __init__(self, *args): - _mscl.EventInputTriggers_swiginit(self, _mscl.new_EventInputTriggers(*args)) - - def empty(self): - return _mscl.EventInputTriggers_empty(self) - - def size(self): - return _mscl.EventInputTriggers_size(self) - - def swap(self, v): - return _mscl.EventInputTriggers_swap(self, v) - - def begin(self): - return _mscl.EventInputTriggers_begin(self) - - def end(self): - return _mscl.EventInputTriggers_end(self) - - def rbegin(self): - return _mscl.EventInputTriggers_rbegin(self) - - def rend(self): - return _mscl.EventInputTriggers_rend(self) - - def front(self): - return _mscl.EventInputTriggers_front(self) - - def back(self): - return _mscl.EventInputTriggers_back(self) - - def fill(self, u): - return _mscl.EventInputTriggers_fill(self, u) - __swig_destroy__ = _mscl.delete_EventInputTriggers - -# Register EventInputTriggers in _mscl: -_mscl.EventInputTriggers_swigregister(EventInputTriggers) - -class EventTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTypes___nonzero__(self) - - def __bool__(self): - return _mscl.EventTypes___bool__(self) - - def __len__(self): - return _mscl.EventTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTypes___setitem__(self, *args) - - def pop(self): - return _mscl.EventTypes_pop(self) - - def append(self, x): - return _mscl.EventTypes_append(self, x) - - def empty(self): - return _mscl.EventTypes_empty(self) - - def size(self): - return _mscl.EventTypes_size(self) - - def swap(self, v): - return _mscl.EventTypes_swap(self, v) - - def begin(self): - return _mscl.EventTypes_begin(self) - - def end(self): - return _mscl.EventTypes_end(self) - - def rbegin(self): - return _mscl.EventTypes_rbegin(self) - - def rend(self): - return _mscl.EventTypes_rend(self) - - def clear(self): - return _mscl.EventTypes_clear(self) - - def get_allocator(self): - return _mscl.EventTypes_get_allocator(self) - - def pop_back(self): - return _mscl.EventTypes_pop_back(self) - - def erase(self, *args): - return _mscl.EventTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTypes_swiginit(self, _mscl.new_EventTypes(*args)) - - def push_back(self, x): - return _mscl.EventTypes_push_back(self, x) - - def front(self): - return _mscl.EventTypes_front(self) - - def back(self): - return _mscl.EventTypes_back(self) - - def assign(self, n, x): - return _mscl.EventTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTypes_reserve(self, n) - - def capacity(self): - return _mscl.EventTypes_capacity(self) - __swig_destroy__ = _mscl.delete_EventTypes - -# Register EventTypes in _mscl: -_mscl.EventTypes_swigregister(EventTypes) - -class MeasurementReferenceFrames(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MeasurementReferenceFrames_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MeasurementReferenceFrames___nonzero__(self) - - def __bool__(self): - return _mscl.MeasurementReferenceFrames___bool__(self) - - def __len__(self): - return _mscl.MeasurementReferenceFrames___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.MeasurementReferenceFrames___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.MeasurementReferenceFrames___delitem__(self, key) - - def has_key(self, key): - return _mscl.MeasurementReferenceFrames_has_key(self, key) - - def keys(self): - return _mscl.MeasurementReferenceFrames_keys(self) - - def values(self): - return _mscl.MeasurementReferenceFrames_values(self) - - def items(self): - return _mscl.MeasurementReferenceFrames_items(self) - - def __contains__(self, key): - return _mscl.MeasurementReferenceFrames___contains__(self, key) - - def key_iterator(self): - return _mscl.MeasurementReferenceFrames_key_iterator(self) - - def value_iterator(self): - return _mscl.MeasurementReferenceFrames_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.MeasurementReferenceFrames___setitem__(self, *args) - - def asdict(self): - return _mscl.MeasurementReferenceFrames_asdict(self) - - def __init__(self, *args): - _mscl.MeasurementReferenceFrames_swiginit(self, _mscl.new_MeasurementReferenceFrames(*args)) - - def empty(self): - return _mscl.MeasurementReferenceFrames_empty(self) - - def size(self): - return _mscl.MeasurementReferenceFrames_size(self) - - def swap(self, v): - return _mscl.MeasurementReferenceFrames_swap(self, v) - - def begin(self): - return _mscl.MeasurementReferenceFrames_begin(self) - - def end(self): - return _mscl.MeasurementReferenceFrames_end(self) - - def rbegin(self): - return _mscl.MeasurementReferenceFrames_rbegin(self) - - def rend(self): - return _mscl.MeasurementReferenceFrames_rend(self) - - def clear(self): - return _mscl.MeasurementReferenceFrames_clear(self) - - def get_allocator(self): - return _mscl.MeasurementReferenceFrames_get_allocator(self) - - def count(self, x): - return _mscl.MeasurementReferenceFrames_count(self, x) - - def erase(self, *args): - return _mscl.MeasurementReferenceFrames_erase(self, *args) - - def find(self, x): - return _mscl.MeasurementReferenceFrames_find(self, x) - - def lower_bound(self, x): - return _mscl.MeasurementReferenceFrames_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.MeasurementReferenceFrames_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrames - -# Register MeasurementReferenceFrames in _mscl: -_mscl.MeasurementReferenceFrames_swigregister(MeasurementReferenceFrames) - -class Bins(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bins_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bins___nonzero__(self) - - def __bool__(self): - return _mscl.Bins___bool__(self) - - def __len__(self): - return _mscl.Bins___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bins___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bins___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bins___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bins___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bins___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bins___setitem__(self, *args) - - def pop(self): - return _mscl.Bins_pop(self) - - def append(self, x): - return _mscl.Bins_append(self, x) - - def empty(self): - return _mscl.Bins_empty(self) - - def size(self): - return _mscl.Bins_size(self) - - def swap(self, v): - return _mscl.Bins_swap(self, v) - - def begin(self): - return _mscl.Bins_begin(self) - - def end(self): - return _mscl.Bins_end(self) - - def rbegin(self): - return _mscl.Bins_rbegin(self) - - def rend(self): - return _mscl.Bins_rend(self) - - def clear(self): - return _mscl.Bins_clear(self) - - def get_allocator(self): - return _mscl.Bins_get_allocator(self) - - def pop_back(self): - return _mscl.Bins_pop_back(self) - - def erase(self, *args): - return _mscl.Bins_erase(self, *args) - - def __init__(self, *args): - _mscl.Bins_swiginit(self, _mscl.new_Bins(*args)) - - def push_back(self, x): - return _mscl.Bins_push_back(self, x) - - def front(self): - return _mscl.Bins_front(self) - - def back(self): - return _mscl.Bins_back(self) - - def assign(self, n, x): - return _mscl.Bins_assign(self, n, x) - - def insert(self, *args): - return _mscl.Bins_insert(self, *args) - - def reserve(self, n): - return _mscl.Bins_reserve(self, n) - - def capacity(self): - return _mscl.Bins_capacity(self) - __swig_destroy__ = _mscl.delete_Bins - -# Register Bins in _mscl: -_mscl.Bins_swigregister(Bins) - -class Error(Exception): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_swiginit(self, _mscl.new_Error(*args)) - __swig_destroy__ = _mscl.delete_Error - - def what(self): - return _mscl.Error_what(self) - - def __str__(self): - return _mscl.Error___str__(self) - -# Register Error in _mscl: -_mscl.Error_swigregister(Error) - -class Error_NotSupported(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NotSupported_swiginit(self, _mscl.new_Error_NotSupported(*args)) - __swig_destroy__ = _mscl.delete_Error_NotSupported - -# Register Error_NotSupported in _mscl: -_mscl.Error_NotSupported_swigregister(Error_NotSupported) - -class Error_NoData(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NoData_swiginit(self, _mscl.new_Error_NoData(*args)) - __swig_destroy__ = _mscl.delete_Error_NoData - -# Register Error_NoData in _mscl: -_mscl.Error_NoData_swigregister(Error_NoData) - -class Error_BadDataType(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Error_BadDataType_swiginit(self, _mscl.new_Error_BadDataType()) - __swig_destroy__ = _mscl.delete_Error_BadDataType - -# Register Error_BadDataType in _mscl: -_mscl.Error_BadDataType_swigregister(Error_BadDataType) - -class Error_UnknownSampleRate(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_UnknownSampleRate_swiginit(self, _mscl.new_Error_UnknownSampleRate(*args)) - __swig_destroy__ = _mscl.delete_Error_UnknownSampleRate - -# Register Error_UnknownSampleRate in _mscl: -_mscl.Error_UnknownSampleRate_swigregister(Error_UnknownSampleRate) - -class Error_Communication(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Communication_swiginit(self, _mscl.new_Error_Communication(*args)) - __swig_destroy__ = _mscl.delete_Error_Communication - -# Register Error_Communication in _mscl: -_mscl.Error_Communication_swigregister(Error_Communication) - -class Error_NodeCommunication(Error_Communication): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NodeCommunication_swiginit(self, _mscl.new_Error_NodeCommunication(*args)) - - def nodeAddress(self): - return _mscl.Error_NodeCommunication_nodeAddress(self) - __swig_destroy__ = _mscl.delete_Error_NodeCommunication - -# Register Error_NodeCommunication in _mscl: -_mscl.Error_NodeCommunication_swigregister(Error_NodeCommunication) - -class Error_Connection(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Connection_swiginit(self, _mscl.new_Error_Connection(*args)) - __swig_destroy__ = _mscl.delete_Error_Connection - - def code(self): - return _mscl.Error_Connection_code(self) - - def value(self): - return _mscl.Error_Connection_value(self) - -# Register Error_Connection in _mscl: -_mscl.Error_Connection_swigregister(Error_Connection) - -class Error_InvalidSerialPort(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code): - _mscl.Error_InvalidSerialPort_swiginit(self, _mscl.new_Error_InvalidSerialPort(code)) - __swig_destroy__ = _mscl.delete_Error_InvalidSerialPort - -# Register Error_InvalidSerialPort in _mscl: -_mscl.Error_InvalidSerialPort_swigregister(Error_InvalidSerialPort) - -class Error_InvalidTcpServer(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidTcpServer_swiginit(self, _mscl.new_Error_InvalidTcpServer(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidTcpServer - -# Register Error_InvalidTcpServer in _mscl: -_mscl.Error_InvalidTcpServer_swigregister(Error_InvalidTcpServer) - -class Error_InvalidUnixSocket(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidUnixSocket_swiginit(self, _mscl.new_Error_InvalidUnixSocket(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidUnixSocket - -# Register Error_InvalidUnixSocket in _mscl: -_mscl.Error_InvalidUnixSocket_swigregister(Error_InvalidUnixSocket) - -class Error_MipCmdFailed(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_MipCmdFailed_swiginit(self, _mscl.new_Error_MipCmdFailed(*args)) - __swig_destroy__ = _mscl.delete_Error_MipCmdFailed - - def code(self): - return _mscl.Error_MipCmdFailed_code(self) - - def value(self): - return _mscl.Error_MipCmdFailed_value(self) - -# Register Error_MipCmdFailed in _mscl: -_mscl.Error_MipCmdFailed_swigregister(Error_MipCmdFailed) - -class Error_InvalidConfig(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_InvalidConfig_swiginit(self, _mscl.new_Error_InvalidConfig(*args)) - __swig_destroy__ = _mscl.delete_Error_InvalidConfig - - def issues(self): - return _mscl.Error_InvalidConfig_issues(self) - -# Register Error_InvalidConfig in _mscl: -_mscl.Error_InvalidConfig_swigregister(Error_InvalidConfig) - -class Error_InvalidNodeConfig(Error_InvalidConfig): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, issues, nodeAddress): - _mscl.Error_InvalidNodeConfig_swiginit(self, _mscl.new_Error_InvalidNodeConfig(issues, nodeAddress)) - __swig_destroy__ = _mscl.delete_Error_InvalidNodeConfig - - def nodeAddress(self): - return _mscl.Error_InvalidNodeConfig_nodeAddress(self) - -# Register Error_InvalidNodeConfig in _mscl: -_mscl.Error_InvalidNodeConfig_swigregister(Error_InvalidNodeConfig) - - - diff --git a/mscl_release_assets/mscl-arm64-Python3.13-v67.0.0/_mscl.so b/mscl_release_assets/mscl-arm64-Python3.13-v67.0.0/_mscl.so deleted file mode 100644 index 9dcf705..0000000 Binary files a/mscl_release_assets/mscl-arm64-Python3.13-v67.0.0/_mscl.so and /dev/null differ diff --git a/mscl_release_assets/mscl-arm64-Python3.13-v67.0.0/mscl.py b/mscl_release_assets/mscl-arm64-Python3.13-v67.0.0/mscl.py deleted file mode 100644 index daa6217..0000000 --- a/mscl_release_assets/mscl-arm64-Python3.13-v67.0.0/mscl.py +++ /dev/null @@ -1,18376 +0,0 @@ -# This file was automatically generated by SWIG (http://www.swig.org). -# Version 4.0.1 -# -# Do not make changes to this file unless you know what you are doing--modify -# the SWIG interface file instead. - -from sys import version_info as _swig_python_version_info -if _swig_python_version_info < (2, 7, 0): - raise RuntimeError("Python 2.7 or later required") - -# Import the low-level C/C++ module -if __package__ or "." in __name__: - from . import _mscl -else: - import _mscl - -try: - import builtins as __builtin__ -except ImportError: - import __builtin__ - -def _swig_repr(self): - try: - strthis = "proxy of " + self.this.__repr__() - except __builtin__.Exception: - strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - - -def _swig_setattr_nondynamic_instance_variable(set): - def set_instance_attr(self, name, value): - if name == "thisown": - self.this.own(value) - elif name == "this": - set(self, name, value) - elif hasattr(self, name) and isinstance(getattr(type(self), name), property): - set(self, name, value) - else: - raise AttributeError("You cannot add instance attributes to %s" % self) - return set_instance_attr - - -def _swig_setattr_nondynamic_class_variable(set): - def set_class_attr(cls, name, value): - if hasattr(cls, name) and not isinstance(getattr(cls, name), property): - set(cls, name, value) - else: - raise AttributeError("You cannot add class attributes to %s" % cls) - return set_class_attr - - -def _swig_add_metaclass(metaclass): - """Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass""" - def wrapper(cls): - return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy()) - return wrapper - - -class _SwigNonDynamicMeta(type): - """Meta class to enforce nondynamic attributes (no new attributes) for a class""" - __setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__) - - -class SwigPyIterator(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_SwigPyIterator - - def value(self): - return _mscl.SwigPyIterator_value(self) - - def incr(self, n=1): - return _mscl.SwigPyIterator_incr(self, n) - - def decr(self, n=1): - return _mscl.SwigPyIterator_decr(self, n) - - def distance(self, x): - return _mscl.SwigPyIterator_distance(self, x) - - def equal(self, x): - return _mscl.SwigPyIterator_equal(self, x) - - def copy(self): - return _mscl.SwigPyIterator_copy(self) - - def next(self): - return _mscl.SwigPyIterator_next(self) - - def __next__(self): - return _mscl.SwigPyIterator___next__(self) - - def previous(self): - return _mscl.SwigPyIterator_previous(self) - - def advance(self, n): - return _mscl.SwigPyIterator_advance(self, n) - - def __eq__(self, x): - return _mscl.SwigPyIterator___eq__(self, x) - - def __ne__(self, x): - return _mscl.SwigPyIterator___ne__(self, x) - - def __iadd__(self, n): - return _mscl.SwigPyIterator___iadd__(self, n) - - def __isub__(self, n): - return _mscl.SwigPyIterator___isub__(self, n) - - def __add__(self, n): - return _mscl.SwigPyIterator___add__(self, n) - - def __sub__(self, *args): - return _mscl.SwigPyIterator___sub__(self, *args) - def __iter__(self): - return self - -# Register SwigPyIterator in _mscl: -_mscl.SwigPyIterator_swigregister(SwigPyIterator) - -SHARED_PTR_DISOWN = _mscl.SHARED_PTR_DISOWN -valueType_float = _mscl.valueType_float -valueType_double = _mscl.valueType_double -valueType_uint8 = _mscl.valueType_uint8 -valueType_uint16 = _mscl.valueType_uint16 -valueType_uint32 = _mscl.valueType_uint32 -valueType_int16 = _mscl.valueType_int16 -valueType_int32 = _mscl.valueType_int32 -valueType_bool = _mscl.valueType_bool -valueType_Vector = _mscl.valueType_Vector -valueType_Matrix = _mscl.valueType_Matrix -valueType_Timestamp = _mscl.valueType_Timestamp -valueType_string = _mscl.valueType_string -valueType_Bytes = _mscl.valueType_Bytes -valueType_StructuralHealth = _mscl.valueType_StructuralHealth -valueType_RfSweep = _mscl.valueType_RfSweep -valueType_ChannelMask = _mscl.valueType_ChannelMask -valueType_int8 = _mscl.valueType_int8 -valueType_uint64 = _mscl.valueType_uint64 -deviceState_idle = _mscl.deviceState_idle -deviceState_sleep = _mscl.deviceState_sleep -deviceState_sampling = _mscl.deviceState_sampling -deviceState_sampling_lostBeacon = _mscl.deviceState_sampling_lostBeacon -deviceState_sampling_inactive = _mscl.deviceState_sampling_inactive -deviceState_unknown = _mscl.deviceState_unknown -class BitMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BitMask_swiginit(self, _mscl.new_BitMask(*args)) - __swig_destroy__ = _mscl.delete_BitMask - - def __eq__(self, other): - return _mscl.BitMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.BitMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.BitMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.BitMask___gt__(self, other) - - def fromMask(self, val): - return _mscl.BitMask_fromMask(self, val) - - def toMask(self): - return _mscl.BitMask_toMask(self) - - def enabledCount(self): - return _mscl.BitMask_enabledCount(self) - - def enabled(self, bitIndex): - return _mscl.BitMask_enabled(self, bitIndex) - - def enable(self, bitIndex, enable=True): - return _mscl.BitMask_enable(self, bitIndex, enable) - - def lastBitEnabled(self): - return _mscl.BitMask_lastBitEnabled(self) - -# Register BitMask in _mscl: -_mscl.BitMask_swigregister(BitMask) - -class ChannelMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_CHANNELS = _mscl.ChannelMask_MAX_CHANNELS - - def __init__(self, *args): - _mscl.ChannelMask_swiginit(self, _mscl.new_ChannelMask(*args)) - __swig_destroy__ = _mscl.delete_ChannelMask - - def __eq__(self, other): - return _mscl.ChannelMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.ChannelMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.ChannelMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.ChannelMask___gt__(self, other) - - def fromMask(self, channelMask): - return _mscl.ChannelMask_fromMask(self, channelMask) - - def toMask(self): - return _mscl.ChannelMask_toMask(self) - - def count(self): - return _mscl.ChannelMask_count(self) - - def enabled(self, channel): - return _mscl.ChannelMask_enabled(self, channel) - - def enable(self, channel, enable=True): - return _mscl.ChannelMask_enable(self, channel, enable) - - def lastChEnabled(self): - return _mscl.ChannelMask_lastChEnabled(self) - -# Register ChannelMask in _mscl: -_mscl.ChannelMask_swigregister(ChannelMask) - -class Value(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_Value - - def storedAs(self): - return _mscl.Value_storedAs(self) - - def as_float(self): - return _mscl.Value_as_float(self) - - def as_double(self): - return _mscl.Value_as_double(self) - - def as_uint8(self): - return _mscl.Value_as_uint8(self) - - def as_uint16(self): - return _mscl.Value_as_uint16(self) - - def as_uint32(self): - return _mscl.Value_as_uint32(self) - - def as_uint64(self): - return _mscl.Value_as_uint64(self) - - def as_int8(self): - return _mscl.Value_as_int8(self) - - def as_int16(self): - return _mscl.Value_as_int16(self) - - def as_int32(self): - return _mscl.Value_as_int32(self) - - def as_bool(self): - return _mscl.Value_as_bool(self) - - def as_ChannelMask(self): - return _mscl.Value_as_ChannelMask(self) - - def as_string(self): - return _mscl.Value_as_string(self) - - def __init__(self): - _mscl.Value_swiginit(self, _mscl.new_Value()) - -# Register Value in _mscl: -_mscl.Value_swigregister(Value) - -class Bin(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, start, end, count): - _mscl.Bin_swiginit(self, _mscl.new_Bin(start, end, count)) - - def start(self): - return _mscl.Bin_start(self) - - def end(self): - return _mscl.Bin_end(self) - - def count(self): - return _mscl.Bin_count(self) - __swig_destroy__ = _mscl.delete_Bin - -# Register Bin in _mscl: -_mscl.Bin_swigregister(Bin) - -class Histogram(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, binsStart, binsSize): - _mscl.Histogram_swiginit(self, _mscl.new_Histogram(binsStart, binsSize)) - - def binsStart(self): - return _mscl.Histogram_binsStart(self) - - def binsSize(self): - return _mscl.Histogram_binsSize(self) - - def bins(self): - return _mscl.Histogram_bins(self) - - def addBin(self, bin): - return _mscl.Histogram_addBin(self, bin) - __swig_destroy__ = _mscl.delete_Histogram - -# Register Histogram in _mscl: -_mscl.Histogram_swigregister(Histogram) - -class Timestamp(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INTERNAL = _mscl.Timestamp_INTERNAL - EXTERNAL = _mscl.Timestamp_EXTERNAL - TIME_OF_ARRIVAL = _mscl.Timestamp_TIME_OF_ARRIVAL - GPS = _mscl.Timestamp_GPS - UNIX = _mscl.Timestamp_UNIX - UTC = _mscl.Timestamp_UTC - - def __init__(self, *args): - _mscl.Timestamp_swiginit(self, _mscl.new_Timestamp(*args)) - __swig_destroy__ = _mscl.delete_Timestamp - - def nanoseconds(self, *args): - return _mscl.Timestamp_nanoseconds(self, *args) - - def seconds(self, *args): - return _mscl.Timestamp_seconds(self, *args) - - def storedEpoch(self): - return _mscl.Timestamp_storedEpoch(self) - - def __str__(self): - return _mscl.Timestamp___str__(self) - - def setTime(self, *args): - return _mscl.Timestamp_setTime(self, *args) - - def setTimeNow(self): - return _mscl.Timestamp_setTimeNow(self) - - @staticmethod - def timeNow(): - return _mscl.Timestamp_timeNow() - - @staticmethod - def setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - - @staticmethod - def getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - - @staticmethod - def gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - - @staticmethod - def utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -# Register Timestamp in _mscl: -_mscl.Timestamp_swigregister(Timestamp) - -def Timestamp_timeNow(): - return _mscl.Timestamp_timeNow() - -def Timestamp_setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - -def Timestamp_getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - -def Timestamp_gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - -def Timestamp_utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -class TimeSpan(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - NANOSECONDS_PER_MICROSECOND = _mscl.TimeSpan_NANOSECONDS_PER_MICROSECOND - NANOSECONDS_PER_MILLISECOND = _mscl.TimeSpan_NANOSECONDS_PER_MILLISECOND - NANOSECONDS_PER_SECOND = _mscl.TimeSpan_NANOSECONDS_PER_SECOND - - def getNanoseconds(self): - return _mscl.TimeSpan_getNanoseconds(self) - - def getMicroseconds(self): - return _mscl.TimeSpan_getMicroseconds(self) - - def getMilliseconds(self): - return _mscl.TimeSpan_getMilliseconds(self) - - def getSeconds(self): - return _mscl.TimeSpan_getSeconds(self) - - @staticmethod - def NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - - @staticmethod - def MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - - @staticmethod - def MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - - @staticmethod - def Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - - @staticmethod - def Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - - @staticmethod - def Hours(hours): - return _mscl.TimeSpan_Hours(hours) - - @staticmethod - def Days(days): - return _mscl.TimeSpan_Days(days) - __swig_destroy__ = _mscl.delete_TimeSpan - -# Register TimeSpan in _mscl: -_mscl.TimeSpan_swigregister(TimeSpan) - -def TimeSpan_NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - -def TimeSpan_MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - -def TimeSpan_MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - -def TimeSpan_Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - -def TimeSpan_Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - -def TimeSpan_Hours(hours): - return _mscl.TimeSpan_Hours(hours) - -def TimeSpan_Days(days): - return _mscl.TimeSpan_Days(days) - -class Version(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Version_swiginit(self, _mscl.new_Version(*args)) - - def __eq__(self, cmp): - return _mscl.Version___eq__(self, cmp) - - def __ne__(self, cmp): - return _mscl.Version___ne__(self, cmp) - - def __lt__(self, cmp): - return _mscl.Version___lt__(self, cmp) - - def __le__(self, cmp): - return _mscl.Version___le__(self, cmp) - - def __gt__(self, cmp): - return _mscl.Version___gt__(self, cmp) - - def __ge__(self, cmp): - return _mscl.Version___ge__(self, cmp) - - def __str__(self): - return _mscl.Version___str__(self) - - def fromString(self, strVersion): - return _mscl.Version_fromString(self, strVersion) - - def majorPart(self): - return _mscl.Version_majorPart(self) - - def minorPart(self): - return _mscl.Version_minorPart(self) - - def patchPart(self): - return _mscl.Version_patchPart(self) - __swig_destroy__ = _mscl.delete_Version - -# Register Version in _mscl: -_mscl.Version_swigregister(Version) - -class DeviceInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.DeviceInfo_connectionType_serial - connectionType_tcp = _mscl.DeviceInfo_connectionType_tcp - - def __init__(self, *args): - _mscl.DeviceInfo_swiginit(self, _mscl.new_DeviceInfo(*args)) - - def description(self): - return _mscl.DeviceInfo_description(self) - - def serial(self): - return _mscl.DeviceInfo_serial(self) - - def baudRate(self): - return _mscl.DeviceInfo_baudRate(self) - - def connectionType(self): - return _mscl.DeviceInfo_connectionType(self) - __swig_destroy__ = _mscl.delete_DeviceInfo - -# Register DeviceInfo in _mscl: -_mscl.DeviceInfo_swigregister(DeviceInfo) -cvar = _mscl.cvar -MSCL_VERSION = cvar.MSCL_VERSION - -class Devices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def listBaseStations(): - return _mscl.Devices_listBaseStations() - - @staticmethod - def listInertialDevices(): - return _mscl.Devices_listInertialDevices() - - @staticmethod - def listPorts(): - return _mscl.Devices_listPorts() - __swig_destroy__ = _mscl.delete_Devices - -# Register Devices in _mscl: -_mscl.Devices_swigregister(Devices) - -def Devices_listBaseStations(): - return _mscl.Devices_listBaseStations() - -def Devices_listInertialDevices(): - return _mscl.Devices_listInertialDevices() - -def Devices_listPorts(): - return _mscl.Devices_listPorts() - -class ConnectionDebugData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ConnectionDebugData_swiginit(self, _mscl.new_ConnectionDebugData(*args)) - - def fromRead(self): - return _mscl.ConnectionDebugData_fromRead(self) - - def timestamp(self): - return _mscl.ConnectionDebugData_timestamp(self) - - def data(self): - return _mscl.ConnectionDebugData_data(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugData - -# Register ConnectionDebugData in _mscl: -_mscl.ConnectionDebugData_swigregister(ConnectionDebugData) - -class Connection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.Connection_connectionType_serial - connectionType_tcp = _mscl.Connection_connectionType_tcp - connectionType_webSocket = _mscl.Connection_connectionType_webSocket - connectionType_unixSocket = _mscl.Connection_connectionType_unixSocket - - def __init__(self): - _mscl.Connection_swiginit(self, _mscl.new_Connection()) - - @staticmethod - def Serial(*args): - return _mscl.Connection_Serial(*args) - - @staticmethod - def TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - - @staticmethod - def UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - - @staticmethod - def Mock(): - return _mscl.Connection_Mock() - - def description(self): - return _mscl.Connection_description(self) - - def port(self): - return _mscl.Connection_port(self) - - def type(self): - return _mscl.Connection_type(self) - - def disconnect(self): - return _mscl.Connection_disconnect(self) - - def reconnect(self): - return _mscl.Connection_reconnect(self) - - def write(self, bytes): - return _mscl.Connection_write(self, bytes) - - def writeStr(self, bytes): - return _mscl.Connection_writeStr(self, bytes) - - def clearBuffer(self): - return _mscl.Connection_clearBuffer(self) - - def byteReadPos(self): - return _mscl.Connection_byteReadPos(self) - - def byteAppendPos(self): - return _mscl.Connection_byteAppendPos(self) - - def rawByteMode(self, *args): - return _mscl.Connection_rawByteMode(self, *args) - - def getRawBytes(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytes(self, timeout, maxBytes, minBytes) - - def getRawBytesStr(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytesStr(self, timeout, maxBytes, minBytes) - - def getRawBytesWithPattern(self, pattern, timeout=0): - return _mscl.Connection_getRawBytesWithPattern(self, pattern, timeout) - - def debugMode(self, *args): - return _mscl.Connection_debugMode(self, *args) - - def getDebugData(self, timeout=0): - return _mscl.Connection_getDebugData(self, timeout) - - def updateBaudRate(self, baudRate): - return _mscl.Connection_updateBaudRate(self, baudRate) - __swig_destroy__ = _mscl.delete_Connection - -# Register Connection in _mscl: -_mscl.Connection_swigregister(Connection) - -def Connection_Serial(*args): - return _mscl.Connection_Serial(*args) - -def Connection_TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - -def Connection_UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - -def Connection_Mock(): - return _mscl.Connection_Mock() - -class WirelessTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - beacon_none = _mscl.WirelessTypes_beacon_none - beacon_internalTimer = _mscl.WirelessTypes_beacon_internalTimer - beacon_internalPPS = _mscl.WirelessTypes_beacon_internalPPS - beacon_externalPPS = _mscl.WirelessTypes_beacon_externalPPS - microcontroller_18F452 = _mscl.WirelessTypes_microcontroller_18F452 - microcontroller_18F4620 = _mscl.WirelessTypes_microcontroller_18F4620 - microcontroller_18F46K20 = _mscl.WirelessTypes_microcontroller_18F46K20 - microcontroller_18F67K90 = _mscl.WirelessTypes_microcontroller_18F67K90 - microcontroller_EFM32WG990F256 = _mscl.WirelessTypes_microcontroller_EFM32WG990F256 - microcontroller_EFR32FG1P132F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32FG1P132F256GM48 - microcontroller_EFR32MG1P232F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32MG1P232F256GM48 - collectionMethod_logOnly = _mscl.WirelessTypes_collectionMethod_logOnly - collectionMethod_transmitOnly = _mscl.WirelessTypes_collectionMethod_transmitOnly - collectionMethod_logAndTransmit = _mscl.WirelessTypes_collectionMethod_logAndTransmit - dataType_first = _mscl.WirelessTypes_dataType_first - dataType_uint16_shifted = _mscl.WirelessTypes_dataType_uint16_shifted - dataType_float32 = _mscl.WirelessTypes_dataType_float32 - dataType_uint16_12bitRes = _mscl.WirelessTypes_dataType_uint16_12bitRes - dataType_uint32 = _mscl.WirelessTypes_dataType_uint32 - dataType_uint16 = _mscl.WirelessTypes_dataType_uint16 - dataType_float32_noCals = _mscl.WirelessTypes_dataType_float32_noCals - dataType_uint24_18bitRes = _mscl.WirelessTypes_dataType_uint24_18bitRes - dataType_uint16_18bitTrunc = _mscl.WirelessTypes_dataType_uint16_18bitTrunc - dataType_int24_20bit = _mscl.WirelessTypes_dataType_int24_20bit - dataType_int16_20bitTrunc = _mscl.WirelessTypes_dataType_int16_20bitTrunc - dataType_uint24 = _mscl.WirelessTypes_dataType_uint24 - dataType_uint16_24bitTrunc = _mscl.WirelessTypes_dataType_uint16_24bitTrunc - dataType_int16_x10 = _mscl.WirelessTypes_dataType_int16_x10 - dataType_last = _mscl.WirelessTypes_dataType_last - dataFormat_raw_uint16 = _mscl.WirelessTypes_dataFormat_raw_uint16 - dataFormat_cal_float = _mscl.WirelessTypes_dataFormat_cal_float - dataFormat_raw_uint24 = _mscl.WirelessTypes_dataFormat_raw_uint24 - dataFormat_raw_int24 = _mscl.WirelessTypes_dataFormat_raw_int24 - dataFormat_raw_int16 = _mscl.WirelessTypes_dataFormat_raw_int16 - dataFormat_cal_int16_x10 = _mscl.WirelessTypes_dataFormat_cal_int16_x10 - syncMode_continuous = _mscl.WirelessTypes_syncMode_continuous - syncMode_burst = _mscl.WirelessTypes_syncMode_burst - samplingMode_sync = _mscl.WirelessTypes_samplingMode_sync - samplingMode_syncBurst = _mscl.WirelessTypes_samplingMode_syncBurst - samplingMode_nonSync = _mscl.WirelessTypes_samplingMode_nonSync - samplingMode_armedDatalog = _mscl.WirelessTypes_samplingMode_armedDatalog - samplingMode_syncEvent = _mscl.WirelessTypes_samplingMode_syncEvent - samplingMode_nonSyncEvent = _mscl.WirelessTypes_samplingMode_nonSyncEvent - defaultMode_idle = _mscl.WirelessTypes_defaultMode_idle - defaultMode_ldc = _mscl.WirelessTypes_defaultMode_ldc - defaultMode_datalog = _mscl.WirelessTypes_defaultMode_datalog - defaultMode_sleep = _mscl.WirelessTypes_defaultMode_sleep - defaultMode_sync = _mscl.WirelessTypes_defaultMode_sync - freq_unknown = _mscl.WirelessTypes_freq_unknown - freq_11 = _mscl.WirelessTypes_freq_11 - freq_12 = _mscl.WirelessTypes_freq_12 - freq_13 = _mscl.WirelessTypes_freq_13 - freq_14 = _mscl.WirelessTypes_freq_14 - freq_15 = _mscl.WirelessTypes_freq_15 - freq_16 = _mscl.WirelessTypes_freq_16 - freq_17 = _mscl.WirelessTypes_freq_17 - freq_18 = _mscl.WirelessTypes_freq_18 - freq_19 = _mscl.WirelessTypes_freq_19 - freq_20 = _mscl.WirelessTypes_freq_20 - freq_21 = _mscl.WirelessTypes_freq_21 - freq_22 = _mscl.WirelessTypes_freq_22 - freq_23 = _mscl.WirelessTypes_freq_23 - freq_24 = _mscl.WirelessTypes_freq_24 - freq_25 = _mscl.WirelessTypes_freq_25 - freq_26 = _mscl.WirelessTypes_freq_26 - power_20dBm = _mscl.WirelessTypes_power_20dBm - power_16dBm = _mscl.WirelessTypes_power_16dBm - power_15dBm = _mscl.WirelessTypes_power_15dBm - power_12dBm = _mscl.WirelessTypes_power_12dBm - power_11dBm = _mscl.WirelessTypes_power_11dBm - power_10dBm = _mscl.WirelessTypes_power_10dBm - power_5dBm = _mscl.WirelessTypes_power_5dBm - power_1dBm = _mscl.WirelessTypes_power_1dBm - power_0dBm = _mscl.WirelessTypes_power_0dBm - retransmission_off = _mscl.WirelessTypes_retransmission_off - retransmission_on = _mscl.WirelessTypes_retransmission_on - retransmission_disabled = _mscl.WirelessTypes_retransmission_disabled - trigger_userInit = _mscl.WirelessTypes_trigger_userInit - trigger_ceiling = _mscl.WirelessTypes_trigger_ceiling - trigger_floor = _mscl.WirelessTypes_trigger_floor - trigger_rampUp = _mscl.WirelessTypes_trigger_rampUp - trigger_rampDown = _mscl.WirelessTypes_trigger_rampDown - equation_none = _mscl.WirelessTypes_equation_none - equation_standard = _mscl.WirelessTypes_equation_standard - unit_none = _mscl.WirelessTypes_unit_none - unit_other_bits = _mscl.WirelessTypes_unit_other_bits - unit_strain_strain = _mscl.WirelessTypes_unit_strain_strain - unit_strain_microStrain = _mscl.WirelessTypes_unit_strain_microStrain - unit_accel_g = _mscl.WirelessTypes_unit_accel_g - unit_accel_mPerSec2 = _mscl.WirelessTypes_unit_accel_mPerSec2 - unit_volts_volts = _mscl.WirelessTypes_unit_volts_volts - unit_volts_millivolts = _mscl.WirelessTypes_unit_volts_millivolts - unit_volts_microvolts = _mscl.WirelessTypes_unit_volts_microvolts - unit_temp_celsius = _mscl.WirelessTypes_unit_temp_celsius - unit_temp_kelvin = _mscl.WirelessTypes_unit_temp_kelvin - unit_temp_fahrenheit = _mscl.WirelessTypes_unit_temp_fahrenheit - unit_displacement_meters = _mscl.WirelessTypes_unit_displacement_meters - unit_displacement_millimeters = _mscl.WirelessTypes_unit_displacement_millimeters - unit_displacement_micrometers = _mscl.WirelessTypes_unit_displacement_micrometers - unit_force_lbf = _mscl.WirelessTypes_unit_force_lbf - unit_force_newtons = _mscl.WirelessTypes_unit_force_newtons - unit_force_kiloNewtons = _mscl.WirelessTypes_unit_force_kiloNewtons - unit_mass_kilograms = _mscl.WirelessTypes_unit_mass_kilograms - unit_pressure_bar = _mscl.WirelessTypes_unit_pressure_bar - unit_pressure_psi = _mscl.WirelessTypes_unit_pressure_psi - unit_pressure_atm = _mscl.WirelessTypes_unit_pressure_atm - unit_pressure_mmHg = _mscl.WirelessTypes_unit_pressure_mmHg - unit_pressure_pascal = _mscl.WirelessTypes_unit_pressure_pascal - unit_pressure_megaPascal = _mscl.WirelessTypes_unit_pressure_megaPascal - unit_pressure_kiloPascal = _mscl.WirelessTypes_unit_pressure_kiloPascal - unit_angDisplacement_degrees = _mscl.WirelessTypes_unit_angDisplacement_degrees - unit_angVelocity_degreesPerSec = _mscl.WirelessTypes_unit_angVelocity_degreesPerSec - unit_angVelocity_radiansPerSec = _mscl.WirelessTypes_unit_angVelocity_radiansPerSec - unit_other_percent = _mscl.WirelessTypes_unit_other_percent - unit_freq_rpm = _mscl.WirelessTypes_unit_freq_rpm - unit_freq_hertz = _mscl.WirelessTypes_unit_freq_hertz - unit_rh_percentRh = _mscl.WirelessTypes_unit_rh_percentRh - unit_other_mVperV = _mscl.WirelessTypes_unit_other_mVperV - unit_accel_milliG = _mscl.WirelessTypes_unit_accel_milliG - unit_accel_ftPerSec2 = _mscl.WirelessTypes_unit_accel_ftPerSec2 - unit_other_percentLife = _mscl.WirelessTypes_unit_other_percentLife - unit_other_count = _mscl.WirelessTypes_unit_other_count - unit_displacement_feet = _mscl.WirelessTypes_unit_displacement_feet - unit_displacement_inches = _mscl.WirelessTypes_unit_displacement_inches - unit_displacement_yards = _mscl.WirelessTypes_unit_displacement_yards - unit_displacement_miles = _mscl.WirelessTypes_unit_displacement_miles - unit_displacement_nautMiles = _mscl.WirelessTypes_unit_displacement_nautMiles - unit_displacement_thouInch = _mscl.WirelessTypes_unit_displacement_thouInch - unit_displacement_hundInch = _mscl.WirelessTypes_unit_displacement_hundInch - unit_displacement_kilometers = _mscl.WirelessTypes_unit_displacement_kilometers - unit_displacement_centimeters = _mscl.WirelessTypes_unit_displacement_centimeters - unit_irradiance_wattsPerSqMeter = _mscl.WirelessTypes_unit_irradiance_wattsPerSqMeter - unit_par_microEinstein = _mscl.WirelessTypes_unit_par_microEinstein - unit_mass_pound = _mscl.WirelessTypes_unit_mass_pound - unit_power_watt = _mscl.WirelessTypes_unit_power_watt - unit_power_milliwatt = _mscl.WirelessTypes_unit_power_milliwatt - unit_power_horsepower = _mscl.WirelessTypes_unit_power_horsepower - unit_reactivePower_var = _mscl.WirelessTypes_unit_reactivePower_var - unit_energy_wattHour = _mscl.WirelessTypes_unit_energy_wattHour - unit_energy_kiloWattHour = _mscl.WirelessTypes_unit_energy_kiloWattHour - unit_reactiveEnergy_VARh = _mscl.WirelessTypes_unit_reactiveEnergy_VARh - unit_reactiveEnergy_kVARh = _mscl.WirelessTypes_unit_reactiveEnergy_kVARh - unit_current_ampere = _mscl.WirelessTypes_unit_current_ampere - unit_current_milliampere = _mscl.WirelessTypes_unit_current_milliampere - unit_current_microampere = _mscl.WirelessTypes_unit_current_microampere - unit_pressure_millibar = _mscl.WirelessTypes_unit_pressure_millibar - unit_pressure_inHg = _mscl.WirelessTypes_unit_pressure_inHg - unit_rssi_dBm = _mscl.WirelessTypes_unit_rssi_dBm - unit_freq_kiloHertz = _mscl.WirelessTypes_unit_freq_kiloHertz - unit_angDisplacement_radians = _mscl.WirelessTypes_unit_angDisplacement_radians - unit_velocity_metersPerSec = _mscl.WirelessTypes_unit_velocity_metersPerSec - unit_velocity_kilometersPerSec = _mscl.WirelessTypes_unit_velocity_kilometersPerSec - unit_velocity_kilometersPerHr = _mscl.WirelessTypes_unit_velocity_kilometersPerHr - unit_velocity_milesPerHr = _mscl.WirelessTypes_unit_velocity_milesPerHr - unit_velocity_knots = _mscl.WirelessTypes_unit_velocity_knots - unit_volume_cubicMeter = _mscl.WirelessTypes_unit_volume_cubicMeter - unit_volume_cubicFt = _mscl.WirelessTypes_unit_volume_cubicFt - unit_volume_liters = _mscl.WirelessTypes_unit_volume_liters - unit_volume_gallon = _mscl.WirelessTypes_unit_volume_gallon - unit_flowRate_cubicMetersPerSec = _mscl.WirelessTypes_unit_flowRate_cubicMetersPerSec - unit_flowRate_cubicFtPerSec = _mscl.WirelessTypes_unit_flowRate_cubicFtPerSec - unit_torque_newtonMeter = _mscl.WirelessTypes_unit_torque_newtonMeter - unit_torque_footPounds = _mscl.WirelessTypes_unit_torque_footPounds - unit_torque_inchPounds = _mscl.WirelessTypes_unit_torque_inchPounds - unit_time_secs = _mscl.WirelessTypes_unit_time_secs - unit_time_nanosecs = _mscl.WirelessTypes_unit_time_nanosecs - unit_time_microsecs = _mscl.WirelessTypes_unit_time_microsecs - unit_time_millisecs = _mscl.WirelessTypes_unit_time_millisecs - unit_time_minutes = _mscl.WirelessTypes_unit_time_minutes - unit_time_hours = _mscl.WirelessTypes_unit_time_hours - unit_time_days = _mscl.WirelessTypes_unit_time_days - unit_time_weeks = _mscl.WirelessTypes_unit_time_weeks - unit_other_value = _mscl.WirelessTypes_unit_other_value - unit_magneticFlux_gauss = _mscl.WirelessTypes_unit_magneticFlux_gauss - unit_other_gSec = _mscl.WirelessTypes_unit_other_gSec - unit_other_secsPerSec = _mscl.WirelessTypes_unit_other_secsPerSec - unit_rssi_dBHz = _mscl.WirelessTypes_unit_rssi_dBHz - unit_density_kgPerMeter3 = _mscl.WirelessTypes_unit_density_kgPerMeter3 - unit_other_unitless = _mscl.WirelessTypes_unit_other_unitless - unit_velocity_inchesPerSec = _mscl.WirelessTypes_unit_velocity_inchesPerSec - unit_force_kg = _mscl.WirelessTypes_unit_force_kg - unit_rawVoltage_volts = _mscl.WirelessTypes_unit_rawVoltage_volts - unit_rawVoltage_millivolts = _mscl.WirelessTypes_unit_rawVoltage_millivolts - unit_rawVoltage_microvolts = _mscl.WirelessTypes_unit_rawVoltage_microvolts - unit_resistance_ohm = _mscl.WirelessTypes_unit_resistance_ohm - unit_resistance_milliohm = _mscl.WirelessTypes_unit_resistance_milliohm - unit_resistance_kiloohm = _mscl.WirelessTypes_unit_resistance_kiloohm - unit_velocity_mmPerSec = _mscl.WirelessTypes_unit_velocity_mmPerSec - unit_mass_grams = _mscl.WirelessTypes_unit_mass_grams - unit_mass_ton = _mscl.WirelessTypes_unit_mass_ton - unit_mass_tonne = _mscl.WirelessTypes_unit_mass_tonne - chType_none = _mscl.WirelessTypes_chType_none - chType_fullDifferential = _mscl.WirelessTypes_chType_fullDifferential - chType_singleEnded = _mscl.WirelessTypes_chType_singleEnded - chType_battery = _mscl.WirelessTypes_chType_battery - chType_temperature = _mscl.WirelessTypes_chType_temperature - chType_rh = _mscl.WirelessTypes_chType_rh - chType_acceleration = _mscl.WirelessTypes_chType_acceleration - chType_displacement = _mscl.WirelessTypes_chType_displacement - chType_voltage = _mscl.WirelessTypes_chType_voltage - chType_diffTemperature = _mscl.WirelessTypes_chType_diffTemperature - chType_digital = _mscl.WirelessTypes_chType_digital - chType_tilt = _mscl.WirelessTypes_chType_tilt - voltageType_singleEnded = _mscl.WirelessTypes_voltageType_singleEnded - voltageType_differential = _mscl.WirelessTypes_voltageType_differential - settling_4ms = _mscl.WirelessTypes_settling_4ms - settling_8ms = _mscl.WirelessTypes_settling_8ms - settling_16ms = _mscl.WirelessTypes_settling_16ms - settling_32ms = _mscl.WirelessTypes_settling_32ms - settling_40ms = _mscl.WirelessTypes_settling_40ms - settling_48ms = _mscl.WirelessTypes_settling_48ms - settling_60ms = _mscl.WirelessTypes_settling_60ms - settling_101ms_90db = _mscl.WirelessTypes_settling_101ms_90db - settling_120ms_80db = _mscl.WirelessTypes_settling_120ms_80db - settling_120ms_65db = _mscl.WirelessTypes_settling_120ms_65db - settling_160ms_69db = _mscl.WirelessTypes_settling_160ms_69db - settling_200ms = _mscl.WirelessTypes_settling_200ms - transducer_thermocouple = _mscl.WirelessTypes_transducer_thermocouple - transducer_rtd = _mscl.WirelessTypes_transducer_rtd - transducer_thermistor = _mscl.WirelessTypes_transducer_thermistor - tc_uncompensated = _mscl.WirelessTypes_tc_uncompensated - tc_K = _mscl.WirelessTypes_tc_K - tc_J = _mscl.WirelessTypes_tc_J - tc_R = _mscl.WirelessTypes_tc_R - tc_S = _mscl.WirelessTypes_tc_S - tc_T = _mscl.WirelessTypes_tc_T - tc_E = _mscl.WirelessTypes_tc_E - tc_B = _mscl.WirelessTypes_tc_B - tc_N = _mscl.WirelessTypes_tc_N - tc_customPolynomial = _mscl.WirelessTypes_tc_customPolynomial - rtd_uncompensated = _mscl.WirelessTypes_rtd_uncompensated - rtd_pt10 = _mscl.WirelessTypes_rtd_pt10 - rtd_pt50 = _mscl.WirelessTypes_rtd_pt50 - rtd_pt100 = _mscl.WirelessTypes_rtd_pt100 - rtd_pt200 = _mscl.WirelessTypes_rtd_pt200 - rtd_pt500 = _mscl.WirelessTypes_rtd_pt500 - rtd_pt1000 = _mscl.WirelessTypes_rtd_pt1000 - rtd_2wire = _mscl.WirelessTypes_rtd_2wire - rtd_3wire = _mscl.WirelessTypes_rtd_3wire - rtd_4wire = _mscl.WirelessTypes_rtd_4wire - thermistor_uncompensated = _mscl.WirelessTypes_thermistor_uncompensated - thermistor_44004_44033 = _mscl.WirelessTypes_thermistor_44004_44033 - thermistor_44005_44030 = _mscl.WirelessTypes_thermistor_44005_44030 - thermistor_44007_44034 = _mscl.WirelessTypes_thermistor_44007_44034 - thermistor_44006_44031 = _mscl.WirelessTypes_thermistor_44006_44031 - thermistor_44008_44032 = _mscl.WirelessTypes_thermistor_44008_44032 - thermistor_ysi_400 = _mscl.WirelessTypes_thermistor_ysi_400 - sampleRate_104170Hz = _mscl.WirelessTypes_sampleRate_104170Hz - sampleRate_78125Hz = _mscl.WirelessTypes_sampleRate_78125Hz - sampleRate_62500Hz = _mscl.WirelessTypes_sampleRate_62500Hz - sampleRate_25000Hz = _mscl.WirelessTypes_sampleRate_25000Hz - sampleRate_12500Hz = _mscl.WirelessTypes_sampleRate_12500Hz - sampleRate_3200Hz = _mscl.WirelessTypes_sampleRate_3200Hz - sampleRate_1600Hz = _mscl.WirelessTypes_sampleRate_1600Hz - sampleRate_800Hz = _mscl.WirelessTypes_sampleRate_800Hz - sampleRate_300Hz = _mscl.WirelessTypes_sampleRate_300Hz - sampleRate_1kHz = _mscl.WirelessTypes_sampleRate_1kHz - sampleRate_2kHz = _mscl.WirelessTypes_sampleRate_2kHz - sampleRate_3kHz = _mscl.WirelessTypes_sampleRate_3kHz - sampleRate_4kHz = _mscl.WirelessTypes_sampleRate_4kHz - sampleRate_5kHz = _mscl.WirelessTypes_sampleRate_5kHz - sampleRate_6kHz = _mscl.WirelessTypes_sampleRate_6kHz - sampleRate_7kHz = _mscl.WirelessTypes_sampleRate_7kHz - sampleRate_8kHz = _mscl.WirelessTypes_sampleRate_8kHz - sampleRate_9kHz = _mscl.WirelessTypes_sampleRate_9kHz - sampleRate_10kHz = _mscl.WirelessTypes_sampleRate_10kHz - sampleRate_20kHz = _mscl.WirelessTypes_sampleRate_20kHz - sampleRate_30kHz = _mscl.WirelessTypes_sampleRate_30kHz - sampleRate_40kHz = _mscl.WirelessTypes_sampleRate_40kHz - sampleRate_50kHz = _mscl.WirelessTypes_sampleRate_50kHz - sampleRate_60kHz = _mscl.WirelessTypes_sampleRate_60kHz - sampleRate_70kHz = _mscl.WirelessTypes_sampleRate_70kHz - sampleRate_80kHz = _mscl.WirelessTypes_sampleRate_80kHz - sampleRate_90kHz = _mscl.WirelessTypes_sampleRate_90kHz - sampleRate_100kHz = _mscl.WirelessTypes_sampleRate_100kHz - sampleRate_887Hz = _mscl.WirelessTypes_sampleRate_887Hz - sampleRate_8192Hz = _mscl.WirelessTypes_sampleRate_8192Hz - sampleRate_4096Hz = _mscl.WirelessTypes_sampleRate_4096Hz - sampleRate_2048Hz = _mscl.WirelessTypes_sampleRate_2048Hz - sampleRate_1024Hz = _mscl.WirelessTypes_sampleRate_1024Hz - sampleRate_512Hz = _mscl.WirelessTypes_sampleRate_512Hz - sampleRate_256Hz = _mscl.WirelessTypes_sampleRate_256Hz - sampleRate_128Hz = _mscl.WirelessTypes_sampleRate_128Hz - sampleRate_64Hz = _mscl.WirelessTypes_sampleRate_64Hz - sampleRate_32Hz = _mscl.WirelessTypes_sampleRate_32Hz - sampleRate_16Hz = _mscl.WirelessTypes_sampleRate_16Hz - sampleRate_8Hz = _mscl.WirelessTypes_sampleRate_8Hz - sampleRate_4Hz = _mscl.WirelessTypes_sampleRate_4Hz - sampleRate_2Hz = _mscl.WirelessTypes_sampleRate_2Hz - sampleRate_1Hz = _mscl.WirelessTypes_sampleRate_1Hz - sampleRate_2Sec = _mscl.WirelessTypes_sampleRate_2Sec - sampleRate_5Sec = _mscl.WirelessTypes_sampleRate_5Sec - sampleRate_10Sec = _mscl.WirelessTypes_sampleRate_10Sec - sampleRate_30Sec = _mscl.WirelessTypes_sampleRate_30Sec - sampleRate_1Min = _mscl.WirelessTypes_sampleRate_1Min - sampleRate_2Min = _mscl.WirelessTypes_sampleRate_2Min - sampleRate_5Min = _mscl.WirelessTypes_sampleRate_5Min - sampleRate_10Min = _mscl.WirelessTypes_sampleRate_10Min - sampleRate_30Min = _mscl.WirelessTypes_sampleRate_30Min - sampleRate_60Min = _mscl.WirelessTypes_sampleRate_60Min - sampleRate_24Hours = _mscl.WirelessTypes_sampleRate_24Hours - region_usa = _mscl.WirelessTypes_region_usa - region_europeanUnion = _mscl.WirelessTypes_region_europeanUnion - region_japan = _mscl.WirelessTypes_region_japan - region_other = _mscl.WirelessTypes_region_other - region_brazil = _mscl.WirelessTypes_region_brazil - region_china = _mscl.WirelessTypes_region_china - region_australia_newzealand = _mscl.WirelessTypes_region_australia_newzealand - region_singapore = _mscl.WirelessTypes_region_singapore - region_canada = _mscl.WirelessTypes_region_canada - region_southAfrica = _mscl.WirelessTypes_region_southAfrica - region_indonesia = _mscl.WirelessTypes_region_indonesia - region_taiwan = _mscl.WirelessTypes_region_taiwan - chSetting_inputRange = _mscl.WirelessTypes_chSetting_inputRange - chSetting_filterSettlingTime = _mscl.WirelessTypes_chSetting_filterSettlingTime - chSetting_thermocoupleType = _mscl.WirelessTypes_chSetting_thermocoupleType - chSetting_linearEquation = _mscl.WirelessTypes_chSetting_linearEquation - chSetting_unit = _mscl.WirelessTypes_chSetting_unit - chSetting_equationType = _mscl.WirelessTypes_chSetting_equationType - chSetting_hardwareOffset = _mscl.WirelessTypes_chSetting_hardwareOffset - chSetting_autoBalance = _mscl.WirelessTypes_chSetting_autoBalance - chSetting_gaugeFactor = _mscl.WirelessTypes_chSetting_gaugeFactor - chSetting_antiAliasingFilter = _mscl.WirelessTypes_chSetting_antiAliasingFilter - chSetting_legacyShuntCal = _mscl.WirelessTypes_chSetting_legacyShuntCal - chSetting_autoShuntCal = _mscl.WirelessTypes_chSetting_autoShuntCal - chSetting_lowPassFilter = _mscl.WirelessTypes_chSetting_lowPassFilter - chSetting_highPassFilter = _mscl.WirelessTypes_chSetting_highPassFilter - chSetting_tempSensorOptions = _mscl.WirelessTypes_chSetting_tempSensorOptions - chSetting_debounceFilter = _mscl.WirelessTypes_chSetting_debounceFilter - chSetting_pullUpResistor = _mscl.WirelessTypes_chSetting_pullUpResistor - chSetting_factoryLinearEq = _mscl.WirelessTypes_chSetting_factoryLinearEq - chSetting_factoryUnit = _mscl.WirelessTypes_chSetting_factoryUnit - chSetting_factoryEqType = _mscl.WirelessTypes_chSetting_factoryEqType - autobalance_success = _mscl.WirelessTypes_autobalance_success - autobalance_maybeInvalid = _mscl.WirelessTypes_autobalance_maybeInvalid - autobalance_notSupportedByNode = _mscl.WirelessTypes_autobalance_notSupportedByNode - autobalance_notSupportedByCh = _mscl.WirelessTypes_autobalance_notSupportedByCh - autobalance_targetOutOfRange = _mscl.WirelessTypes_autobalance_targetOutOfRange - autobalance_failed = _mscl.WirelessTypes_autobalance_failed - autobalance_legacyNone = _mscl.WirelessTypes_autobalance_legacyNone - autobalance_notComplete = _mscl.WirelessTypes_autobalance_notComplete - autocal_success = _mscl.WirelessTypes_autocal_success - autocal_maybeInvalid_applied = _mscl.WirelessTypes_autocal_maybeInvalid_applied - autocal_maybeInvalid_notApplied = _mscl.WirelessTypes_autocal_maybeInvalid_notApplied - autocal_notComplete = _mscl.WirelessTypes_autocal_notComplete - autocalError_none = _mscl.WirelessTypes_autocalError_none - autocalError_sensorDetached = _mscl.WirelessTypes_autocalError_sensorDetached - autocalError_sensorShorted = _mscl.WirelessTypes_autocalError_sensorShorted - autocalError_unsupportedChannel = _mscl.WirelessTypes_autocalError_unsupportedChannel - autocalError_baseHighRail = _mscl.WirelessTypes_autocalError_baseHighRail - autocalError_baseLowRail = _mscl.WirelessTypes_autocalError_baseLowRail - autocalError_shuntHighRail = _mscl.WirelessTypes_autocalError_shuntHighRail - autocalError_shuntLowRail = _mscl.WirelessTypes_autocalError_shuntLowRail - autocalError_ramp = _mscl.WirelessTypes_autocalError_ramp - autocalError_noShunt = _mscl.WirelessTypes_autocalError_noShunt - autocalError_timeout = _mscl.WirelessTypes_autocalError_timeout - fatigueMode_angleStrain = _mscl.WirelessTypes_fatigueMode_angleStrain - fatigueMode_distributedAngle = _mscl.WirelessTypes_fatigueMode_distributedAngle - fatigueMode_rawGaugeStrain = _mscl.WirelessTypes_fatigueMode_rawGaugeStrain - eventTrigger_ceiling = _mscl.WirelessTypes_eventTrigger_ceiling - eventTrigger_floor = _mscl.WirelessTypes_eventTrigger_floor - filter_33000hz = _mscl.WirelessTypes_filter_33000hz - filter_20000hz = _mscl.WirelessTypes_filter_20000hz - filter_10000hz = _mscl.WirelessTypes_filter_10000hz - filter_5222hz = _mscl.WirelessTypes_filter_5222hz - filter_5000hz = _mscl.WirelessTypes_filter_5000hz - filter_4416hz = _mscl.WirelessTypes_filter_4416hz - filter_4096hz = _mscl.WirelessTypes_filter_4096hz - filter_4000hz = _mscl.WirelessTypes_filter_4000hz - filter_2208hz = _mscl.WirelessTypes_filter_2208hz - filter_2048hz = _mscl.WirelessTypes_filter_2048hz - filter_2000hz = _mscl.WirelessTypes_filter_2000hz - filter_1104hz = _mscl.WirelessTypes_filter_1104hz - filter_1024hz = _mscl.WirelessTypes_filter_1024hz - filter_1000hz = _mscl.WirelessTypes_filter_1000hz - filter_800hz = _mscl.WirelessTypes_filter_800hz - filter_552hz = _mscl.WirelessTypes_filter_552hz - filter_512hz = _mscl.WirelessTypes_filter_512hz - filter_500hz = _mscl.WirelessTypes_filter_500hz - filter_418hz = _mscl.WirelessTypes_filter_418hz - filter_294hz = _mscl.WirelessTypes_filter_294hz - filter_256hz = _mscl.WirelessTypes_filter_256hz - filter_250hz = _mscl.WirelessTypes_filter_250hz - filter_209hz = _mscl.WirelessTypes_filter_209hz - filter_200hz = _mscl.WirelessTypes_filter_200hz - filter_147hz = _mscl.WirelessTypes_filter_147hz - filter_128hz = _mscl.WirelessTypes_filter_128hz - filter_125hz = _mscl.WirelessTypes_filter_125hz - filter_104hz = _mscl.WirelessTypes_filter_104hz - filter_100hz = _mscl.WirelessTypes_filter_100hz - filter_62hz = _mscl.WirelessTypes_filter_62hz - filter_52hz = _mscl.WirelessTypes_filter_52hz - filter_50hz = _mscl.WirelessTypes_filter_50hz - filter_31hz = _mscl.WirelessTypes_filter_31hz - filter_26hz = _mscl.WirelessTypes_filter_26hz - filter_12_66hz = _mscl.WirelessTypes_filter_12_66hz - filter_2_6hz = _mscl.WirelessTypes_filter_2_6hz - highPass_off = _mscl.WirelessTypes_highPass_off - highPass_auto = _mscl.WirelessTypes_highPass_auto - cfc_10 = _mscl.WirelessTypes_cfc_10 - cfc_21 = _mscl.WirelessTypes_cfc_21 - cfc_60 = _mscl.WirelessTypes_cfc_60 - storageLimit_overwrite = _mscl.WirelessTypes_storageLimit_overwrite - storageLimit_stop = _mscl.WirelessTypes_storageLimit_stop - range_14_545mV = _mscl.WirelessTypes_range_14_545mV - range_10_236mV = _mscl.WirelessTypes_range_10_236mV - range_7_608mV = _mscl.WirelessTypes_range_7_608mV - range_4_046mV = _mscl.WirelessTypes_range_4_046mV - range_2_008mV = _mscl.WirelessTypes_range_2_008mV - range_1_511mV = _mscl.WirelessTypes_range_1_511mV - range_1_001mV = _mscl.WirelessTypes_range_1_001mV - range_0_812mV = _mscl.WirelessTypes_range_0_812mV - range_75mV = _mscl.WirelessTypes_range_75mV - range_37_5mV = _mscl.WirelessTypes_range_37_5mV - range_18_75mV = _mscl.WirelessTypes_range_18_75mV - range_9_38mV = _mscl.WirelessTypes_range_9_38mV - range_4_69mV = _mscl.WirelessTypes_range_4_69mV - range_2_34mV = _mscl.WirelessTypes_range_2_34mV - range_1_17mV = _mscl.WirelessTypes_range_1_17mV - range_0_586mV = _mscl.WirelessTypes_range_0_586mV - range_70mV = _mscl.WirelessTypes_range_70mV - range_35mV = _mscl.WirelessTypes_range_35mV - range_17_5mV = _mscl.WirelessTypes_range_17_5mV - range_8_75mV = _mscl.WirelessTypes_range_8_75mV - range_4_38mV = _mscl.WirelessTypes_range_4_38mV - range_2_19mV = _mscl.WirelessTypes_range_2_19mV - range_1_09mV = _mscl.WirelessTypes_range_1_09mV - range_0_547mV = _mscl.WirelessTypes_range_0_547mV - range_44mV = _mscl.WirelessTypes_range_44mV - range_30mV = _mscl.WirelessTypes_range_30mV - range_20mV = _mscl.WirelessTypes_range_20mV - range_15mV = _mscl.WirelessTypes_range_15mV - range_10mV = _mscl.WirelessTypes_range_10mV - range_5mV = _mscl.WirelessTypes_range_5mV - range_3mV = _mscl.WirelessTypes_range_3mV - range_2mV = _mscl.WirelessTypes_range_2mV - range_6mV = _mscl.WirelessTypes_range_6mV - range_1mV = _mscl.WirelessTypes_range_1mV - range_50mV = _mscl.WirelessTypes_range_50mV - range_2_5mV = _mscl.WirelessTypes_range_2_5mV - range_0_6mV = _mscl.WirelessTypes_range_0_6mV - range_0_35mV = _mscl.WirelessTypes_range_0_35mV - range_0_1mV = _mscl.WirelessTypes_range_0_1mV - range_156mV = _mscl.WirelessTypes_range_156mV - range_78_1mV = _mscl.WirelessTypes_range_78_1mV - range_39mV = _mscl.WirelessTypes_range_39mV - range_19_5mV = _mscl.WirelessTypes_range_19_5mV - range_9_76mV = _mscl.WirelessTypes_range_9_76mV - range_4_88mV = _mscl.WirelessTypes_range_4_88mV - range_2_44mV = _mscl.WirelessTypes_range_2_44mV - range_1_22mV = _mscl.WirelessTypes_range_1_22mV - range_10_24V = _mscl.WirelessTypes_range_10_24V - range_5_12V = _mscl.WirelessTypes_range_5_12V - range_2_56V = _mscl.WirelessTypes_range_2_56V - range_0to10_24V = _mscl.WirelessTypes_range_0to10_24V - range_0to5_12V = _mscl.WirelessTypes_range_0to5_12V - range_1_147V = _mscl.WirelessTypes_range_1_147V - range_585mV = _mscl.WirelessTypes_range_585mV - range_292_5mV = _mscl.WirelessTypes_range_292_5mV - range_146_25mV = _mscl.WirelessTypes_range_146_25mV - range_73_13mV = _mscl.WirelessTypes_range_73_13mV - range_36_56mV = _mscl.WirelessTypes_range_36_56mV - range_18_23mV = _mscl.WirelessTypes_range_18_23mV - range_9_14mV = _mscl.WirelessTypes_range_9_14mV - range_5_74V = _mscl.WirelessTypes_range_5_74V - range_2_93V = _mscl.WirelessTypes_range_2_93V - range_1_46V = _mscl.WirelessTypes_range_1_46V - range_731_3mV = _mscl.WirelessTypes_range_731_3mV - range_365_6mV = _mscl.WirelessTypes_range_365_6mV - range_182_8mV = _mscl.WirelessTypes_range_182_8mV - range_91_4mV = _mscl.WirelessTypes_range_91_4mV - range_45_7mV = _mscl.WirelessTypes_range_45_7mV - range_62_5mV = _mscl.WirelessTypes_range_62_5mV - range_31_25mV = _mscl.WirelessTypes_range_31_25mV - range_15_63mV = _mscl.WirelessTypes_range_15_63mV - range_7_81mV = _mscl.WirelessTypes_range_7_81mV - range_3_91mV = _mscl.WirelessTypes_range_3_91mV - range_1_95mV = _mscl.WirelessTypes_range_1_95mV - range_0_976mV = _mscl.WirelessTypes_range_0_976mV - range_0_488mV = _mscl.WirelessTypes_range_0_488mV - range_2G = _mscl.WirelessTypes_range_2G - range_4G = _mscl.WirelessTypes_range_4G - range_8G = _mscl.WirelessTypes_range_8G - range_10G = _mscl.WirelessTypes_range_10G - range_20G = _mscl.WirelessTypes_range_20G - range_40G = _mscl.WirelessTypes_range_40G - range_2_5V = _mscl.WirelessTypes_range_2_5V - range_1_25V = _mscl.WirelessTypes_range_1_25V - range_625mV = _mscl.WirelessTypes_range_625mV - range_312_5mV = _mscl.WirelessTypes_range_312_5mV - range_156_25mV = _mscl.WirelessTypes_range_156_25mV - range_78_125mV = _mscl.WirelessTypes_range_78_125mV - range_39_063mV = _mscl.WirelessTypes_range_39_063mV - range_19_532mV = _mscl.WirelessTypes_range_19_532mV - range_0to2_5V = _mscl.WirelessTypes_range_0to2_5V - range_0to1_25V = _mscl.WirelessTypes_range_0to1_25V - range_0to625mV = _mscl.WirelessTypes_range_0to625mV - range_0to312_5mV = _mscl.WirelessTypes_range_0to312_5mV - range_0to156_25mV = _mscl.WirelessTypes_range_0to156_25mV - range_0to78_125mV = _mscl.WirelessTypes_range_0to78_125mV - range_0to39_063mV = _mscl.WirelessTypes_range_0to39_063mV - range_0to19_532mV = _mscl.WirelessTypes_range_0to19_532mV - range_9_766mV = _mscl.WirelessTypes_range_9_766mV - range_1_35V_or_0to1000000ohm = _mscl.WirelessTypes_range_1_35V_or_0to1000000ohm - range_1_25V_or_0to10000ohm = _mscl.WirelessTypes_range_1_25V_or_0to10000ohm - range_625mV_or_0to3333_3ohm = _mscl.WirelessTypes_range_625mV_or_0to3333_3ohm - range_312_5mV_or_0to1428_6ohm = _mscl.WirelessTypes_range_312_5mV_or_0to1428_6ohm - range_156_25mV_or_0to666_67ohm = _mscl.WirelessTypes_range_156_25mV_or_0to666_67ohm - range_78_125mV_or_0to322_58ohm = _mscl.WirelessTypes_range_78_125mV_or_0to322_58ohm - range_39_0625mV_or_0to158_73ohm = _mscl.WirelessTypes_range_39_0625mV_or_0to158_73ohm - range_19_5313mV_or_0to78_74ohm = _mscl.WirelessTypes_range_19_5313mV_or_0to78_74ohm - range_750mV = _mscl.WirelessTypes_range_750mV - range_375mV = _mscl.WirelessTypes_range_375mV - range_187_5mV = _mscl.WirelessTypes_range_187_5mV - range_93_75mV = _mscl.WirelessTypes_range_93_75mV - range_46_875mV = _mscl.WirelessTypes_range_46_875mV - range_23_438mV = _mscl.WirelessTypes_range_23_438mV - range_11_719mV = _mscl.WirelessTypes_range_11_719mV - range_5_859mV = _mscl.WirelessTypes_range_5_859mV - range_0to1_5V = _mscl.WirelessTypes_range_0to1_5V - range_0to750mV = _mscl.WirelessTypes_range_0to750mV - range_0to375mV = _mscl.WirelessTypes_range_0to375mV - range_0to187_5mV = _mscl.WirelessTypes_range_0to187_5mV - range_0to93_75mV = _mscl.WirelessTypes_range_0to93_75mV - range_0to46_875mV = _mscl.WirelessTypes_range_0to46_875mV - range_0to23_438mV = _mscl.WirelessTypes_range_0to23_438mV - range_0to11_719mV = _mscl.WirelessTypes_range_0to11_719mV - range_1_5V = _mscl.WirelessTypes_range_1_5V - range_1_35V = _mscl.WirelessTypes_range_1_35V - range_0to1000000ohm = _mscl.WirelessTypes_range_0to1000000ohm - range_0to10000ohm = _mscl.WirelessTypes_range_0to10000ohm - range_0to3333_3ohm = _mscl.WirelessTypes_range_0to3333_3ohm - range_0to1428_6ohm = _mscl.WirelessTypes_range_0to1428_6ohm - range_0to666_67ohm = _mscl.WirelessTypes_range_0to666_67ohm - range_0to322_58ohm = _mscl.WirelessTypes_range_0to322_58ohm - range_0to158_73ohm = _mscl.WirelessTypes_range_0to158_73ohm - range_0to78_74ohm = _mscl.WirelessTypes_range_0to78_74ohm - range_39_0625mV = _mscl.WirelessTypes_range_39_0625mV - range_19_5313mV = _mscl.WirelessTypes_range_19_5313mV - range_125mV = _mscl.WirelessTypes_range_125mV - range_invalid = _mscl.WirelessTypes_range_invalid - dataMode_none = _mscl.WirelessTypes_dataMode_none - dataMode_raw = _mscl.WirelessTypes_dataMode_raw - dataMode_derived = _mscl.WirelessTypes_dataMode_derived - dataMode_raw_derived = _mscl.WirelessTypes_dataMode_raw_derived - derivedCategory_rms = _mscl.WirelessTypes_derivedCategory_rms - derivedCategory_peakToPeak = _mscl.WirelessTypes_derivedCategory_peakToPeak - derivedCategory_velocity = _mscl.WirelessTypes_derivedCategory_velocity - derivedCategory_crestFactor = _mscl.WirelessTypes_derivedCategory_crestFactor - derivedCategory_mean = _mscl.WirelessTypes_derivedCategory_mean - derivedAlgId_rms = _mscl.WirelessTypes_derivedAlgId_rms - derivedAlgId_peakToPeak = _mscl.WirelessTypes_derivedAlgId_peakToPeak - derivedAlgId_ips = _mscl.WirelessTypes_derivedAlgId_ips - derivedAlgId_crestFactor = _mscl.WirelessTypes_derivedAlgId_crestFactor - derivedAlgId_mean = _mscl.WirelessTypes_derivedAlgId_mean - derivedAlgId_mmps = _mscl.WirelessTypes_derivedAlgId_mmps - derivedVelocity_ips = _mscl.WirelessTypes_derivedVelocity_ips - derivedVelocity_mmps = _mscl.WirelessTypes_derivedVelocity_mmps - commProtocol_lxrs = _mscl.WirelessTypes_commProtocol_lxrs - commProtocol_lxrsPlus = _mscl.WirelessTypes_commProtocol_lxrsPlus - voltage_5120mV = _mscl.WirelessTypes_voltage_5120mV - voltage_5000mV = _mscl.WirelessTypes_voltage_5000mV - voltage_4096mV = _mscl.WirelessTypes_voltage_4096mV - voltage_3000mV = _mscl.WirelessTypes_voltage_3000mV - voltage_2800mV = _mscl.WirelessTypes_voltage_2800mV - voltage_2750mV = _mscl.WirelessTypes_voltage_2750mV - voltage_2700mV = _mscl.WirelessTypes_voltage_2700mV - voltage_2500mV = _mscl.WirelessTypes_voltage_2500mV - voltage_1500mV = _mscl.WirelessTypes_voltage_1500mV - sensorOutputMode_accel = _mscl.WirelessTypes_sensorOutputMode_accel - sensorOutputMode_tilt = _mscl.WirelessTypes_sensorOutputMode_tilt - batteryStatus_good = _mscl.WirelessTypes_batteryStatus_good - batteryStatus_low = _mscl.WirelessTypes_batteryStatus_low - batteryStatus_critical = _mscl.WirelessTypes_batteryStatus_critical - externalPower_notConnected = _mscl.WirelessTypes_externalPower_notConnected - externalPower_connected = _mscl.WirelessTypes_externalPower_connected - delayVersion_v1 = _mscl.WirelessTypes_delayVersion_v1 - delayVersion_v2 = _mscl.WirelessTypes_delayVersion_v2 - delayVersion_v3 = _mscl.WirelessTypes_delayVersion_v3 - delayVersion_v4 = _mscl.WirelessTypes_delayVersion_v4 - UNKNOWN_RSSI = _mscl.WirelessTypes_UNKNOWN_RSSI - - def __init__(self): - _mscl.WirelessTypes_swiginit(self, _mscl.new_WirelessTypes()) - __swig_destroy__ = _mscl.delete_WirelessTypes - -# Register WirelessTypes in _mscl: -_mscl.WirelessTypes_swigregister(WirelessTypes) - -class SampleRate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - rateType_seconds = _mscl.SampleRate_rateType_seconds - rateType_hertz = _mscl.SampleRate_rateType_hertz - rateType_event = _mscl.SampleRate_rateType_event - rateType_decimation = _mscl.SampleRate_rateType_decimation - - def __init__(self, *args): - _mscl.SampleRate_swiginit(self, _mscl.new_SampleRate(*args)) - - def __str__(self): - return _mscl.SampleRate___str__(self) - - def prettyStr(self): - return _mscl.SampleRate_prettyStr(self) - - def samplePeriod(self): - return _mscl.SampleRate_samplePeriod(self) - - def samplesPerSecond(self): - return _mscl.SampleRate_samplesPerSecond(self) - - def rateType(self): - return _mscl.SampleRate_rateType(self) - - def samples(self): - return _mscl.SampleRate_samples(self) - - def toWirelessSampleRate(self): - return _mscl.SampleRate_toWirelessSampleRate(self) - - def toDecimation(self, sampleRateBase): - return _mscl.SampleRate_toDecimation(self, sampleRateBase) - - @staticmethod - def Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - - @staticmethod - def KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - - @staticmethod - def Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - - @staticmethod - def Event(): - return _mscl.SampleRate_Event() - - @staticmethod - def Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - - @staticmethod - def FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - - @staticmethod - def FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - __swig_destroy__ = _mscl.delete_SampleRate - -# Register SampleRate in _mscl: -_mscl.SampleRate_swigregister(SampleRate) - -def SampleRate_Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - -def SampleRate_KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - -def SampleRate_Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - -def SampleRate_Event(): - return _mscl.SampleRate_Event() - -def SampleRate_Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - -def SampleRate_FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - -def SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - -class Matrix(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Matrix_swiginit(self, _mscl.new_Matrix()) - - def valuesType(self): - return _mscl.Matrix_valuesType(self) - - def rows(self): - return _mscl.Matrix_rows(self) - - def columns(self): - return _mscl.Matrix_columns(self) - - def as_doubleAt(self, row, column): - return _mscl.Matrix_as_doubleAt(self, row, column) - - def as_floatAt(self, row, column): - return _mscl.Matrix_as_floatAt(self, row, column) - - def as_uint16At(self, row, column): - return _mscl.Matrix_as_uint16At(self, row, column) - - def as_uint8At(self, row, column): - return _mscl.Matrix_as_uint8At(self, row, column) - - def __str__(self): - return _mscl.Matrix___str__(self) - __swig_destroy__ = _mscl.delete_Matrix - -# Register Matrix in _mscl: -_mscl.Matrix_swigregister(Matrix) - -class Vector(Matrix): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Vector_swiginit(self, _mscl.new_Vector()) - - def size(self): - return _mscl.Vector_size(self) - - def as_doubleAt(self, index): - return _mscl.Vector_as_doubleAt(self, index) - - def as_floatAt(self, index): - return _mscl.Vector_as_floatAt(self, index) - - def as_uint16At(self, index): - return _mscl.Vector_as_uint16At(self, index) - - def as_uint8At(self, index): - return _mscl.Vector_as_uint8At(self, index) - __swig_destroy__ = _mscl.delete_Vector - -# Register Vector in _mscl: -_mscl.Vector_swigregister(Vector) - -class Bitfield(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Bitfield_swiginit(self, _mscl.new_Bitfield(*args)) - __swig_destroy__ = _mscl.delete_Bitfield - - def value(self, *args): - return _mscl.Bitfield_value(self, *args) - - def get(self, mask, shiftToLsb=True): - return _mscl.Bitfield_get(self, mask, shiftToLsb) - - def set(self, mask, value, shiftRequired=True): - return _mscl.Bitfield_set(self, mask, value, shiftRequired) - - def checkBit(self, bitIndex, indexBase=0): - return _mscl.Bitfield_checkBit(self, bitIndex, indexBase) - - def setBit(self, bitIndex, value, indexBase=0): - return _mscl.Bitfield_setBit(self, bitIndex, value, indexBase) - -# Register Bitfield in _mscl: -_mscl.Bitfield_swigregister(Bitfield) - -class StructuralHealth(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, angle, uptime, damage, processingRate, histogram): - _mscl.StructuralHealth_swiginit(self, _mscl.new_StructuralHealth(angle, uptime, damage, processingRate, histogram)) - - def angle(self): - return _mscl.StructuralHealth_angle(self) - - def uptime(self): - return _mscl.StructuralHealth_uptime(self) - - def damage(self): - return _mscl.StructuralHealth_damage(self) - - def processingRate(self): - return _mscl.StructuralHealth_processingRate(self) - - def histogram(self): - return _mscl.StructuralHealth_histogram(self) - __swig_destroy__ = _mscl.delete_StructuralHealth - -# Register StructuralHealth in _mscl: -_mscl.StructuralHealth_swigregister(StructuralHealth) - -class DataPoint(Value): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - channelPropertyId_angle = _mscl.DataPoint_channelPropertyId_angle - channelPropertyId_derivedFrom = _mscl.DataPoint_channelPropertyId_derivedFrom - channelPropertyId_derivedAlgorithmId = _mscl.DataPoint_channelPropertyId_derivedAlgorithmId - __swig_destroy__ = _mscl.delete_DataPoint - - def channelProperty(self, id): - return _mscl.DataPoint_channelProperty(self, id) - - def as_Vector(self): - return _mscl.DataPoint_as_Vector(self) - - def as_Matrix(self): - return _mscl.DataPoint_as_Matrix(self) - - def as_Timestamp(self): - return _mscl.DataPoint_as_Timestamp(self) - - def as_Bytes(self): - return _mscl.DataPoint_as_Bytes(self) - - def as_StructuralHealth(self): - return _mscl.DataPoint_as_StructuralHealth(self) - - def as_RfSweep(self): - return _mscl.DataPoint_as_RfSweep(self) - - def as_string(self): - return _mscl.DataPoint_as_string(self) - -# Register DataPoint in _mscl: -_mscl.DataPoint_swigregister(DataPoint) - -class ConfigIssue(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONFIG_SAMPLING_MODE = _mscl.ConfigIssue_CONFIG_SAMPLING_MODE - CONFIG_ACTIVE_CHANNELS = _mscl.ConfigIssue_CONFIG_ACTIVE_CHANNELS - CONFIG_SAMPLE_RATE = _mscl.ConfigIssue_CONFIG_SAMPLE_RATE - CONFIG_SWEEPS = _mscl.ConfigIssue_CONFIG_SWEEPS - CONFIG_UNLIMITED_DURATION = _mscl.ConfigIssue_CONFIG_UNLIMITED_DURATION - CONFIG_DATA_FORMAT = _mscl.ConfigIssue_CONFIG_DATA_FORMAT - CONFIG_DATA_COLLECTION_METHOD = _mscl.ConfigIssue_CONFIG_DATA_COLLECTION_METHOD - CONFIG_TIME_BETWEEN_BURSTS = _mscl.ConfigIssue_CONFIG_TIME_BETWEEN_BURSTS - CONFIG_THERMOCOUPLE_TYPE = _mscl.ConfigIssue_CONFIG_THERMOCOUPLE_TYPE - CONFIG_FILTER_SETTLING_TIME = _mscl.ConfigIssue_CONFIG_FILTER_SETTLING_TIME - CONFIG_BUTTON = _mscl.ConfigIssue_CONFIG_BUTTON - CONFIG_ANALOG_PAIR = _mscl.ConfigIssue_CONFIG_ANALOG_PAIR - CONFIG_INPUT_RANGE = _mscl.ConfigIssue_CONFIG_INPUT_RANGE - CONFIG_INACTIVITY_TIMEOUT = _mscl.ConfigIssue_CONFIG_INACTIVITY_TIMEOUT - CONFIG_CHECK_RADIO_INTERVAL = _mscl.ConfigIssue_CONFIG_CHECK_RADIO_INTERVAL - CONFIG_LOST_BEACON_TIMEOUT = _mscl.ConfigIssue_CONFIG_LOST_BEACON_TIMEOUT - CONFIG_DEFAULT_MODE = _mscl.ConfigIssue_CONFIG_DEFAULT_MODE - CONFIG_TRANSMIT_POWER = _mscl.ConfigIssue_CONFIG_TRANSMIT_POWER - CONFIG_LINEAR_EQUATION = _mscl.ConfigIssue_CONFIG_LINEAR_EQUATION - CONFIG_FATIGUE = _mscl.ConfigIssue_CONFIG_FATIGUE - CONFIG_FATIGUE_MODE = _mscl.ConfigIssue_CONFIG_FATIGUE_MODE - CONFIG_FATIGUE_ANGLE_ID = _mscl.ConfigIssue_CONFIG_FATIGUE_ANGLE_ID - CONFIG_FATIGUE_SN_CURVE = _mscl.ConfigIssue_CONFIG_FATIGUE_SN_CURVE - CONFIG_FATIGUE_DIST_NUM_ANGLES = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_NUM_ANGLES - CONFIG_FATIGUE_DIST_ANGLE = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_ANGLE - CONFIG_HISTOGRAM = _mscl.ConfigIssue_CONFIG_HISTOGRAM - CONFIG_HISTOGRAM_TX_RATE = _mscl.ConfigIssue_CONFIG_HISTOGRAM_TX_RATE - CONFIG_HARDWARE_OFFSET = _mscl.ConfigIssue_CONFIG_HARDWARE_OFFSET - CONFIG_ACTIVITY_SENSE = _mscl.ConfigIssue_CONFIG_ACTIVITY_SENSE - CONFIG_GAUGE_FACTOR = _mscl.ConfigIssue_CONFIG_GAUGE_FACTOR - CONFIG_EVENT_TRIGGER = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER - CONFIG_EVENT_TRIGGER_DURATION = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_DURATION - CONFIG_EVENT_TRIGGER_MASK = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_MASK - CONFIG_DIAGNOSTIC_INTERVAL = _mscl.ConfigIssue_CONFIG_DIAGNOSTIC_INTERVAL - CONFIG_ANTI_ALIASING_FILTER = _mscl.ConfigIssue_CONFIG_ANTI_ALIASING_FILTER - CONFIG_STORAGE_LIMIT_MODE = _mscl.ConfigIssue_CONFIG_STORAGE_LIMIT_MODE - CONFIG_SENSOR_DELAY = _mscl.ConfigIssue_CONFIG_SENSOR_DELAY - CONFIG_LOW_PASS_FILTER = _mscl.ConfigIssue_CONFIG_LOW_PASS_FILTER - CONFIG_DATA_MODE = _mscl.ConfigIssue_CONFIG_DATA_MODE - CONFIG_DERIVED_DATA_RATE = _mscl.ConfigIssue_CONFIG_DERIVED_DATA_RATE - CONFIG_DERIVED_MASK_RMS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_RMS - CONFIG_DERIVED_MASK_P2P = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_P2P - CONFIG_DERIVED_MASK_IPS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_IPS - CONFIG_DERIVED_MASK_CREST_FACTOR = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_CREST_FACTOR - CONFIG_HIGH_PASS_FILTER = _mscl.ConfigIssue_CONFIG_HIGH_PASS_FILTER - CONFIG_DERIVED_MASK = _mscl.ConfigIssue_CONFIG_DERIVED_MASK - CONFIG_COMM_PROTOCOL = _mscl.ConfigIssue_CONFIG_COMM_PROTOCOL - CONFIG_DERIVED_MASK_MEAN = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_MEAN - CONFIG_GAUGE_RESISTANCE = _mscl.ConfigIssue_CONFIG_GAUGE_RESISTANCE - CONFIG_NUM_ACTIVE_GAUGES = _mscl.ConfigIssue_CONFIG_NUM_ACTIVE_GAUGES - CONFIG_TEMP_SENSOR_OPTS = _mscl.ConfigIssue_CONFIG_TEMP_SENSOR_OPTS - CONFIG_DEBOUNCE_FILTER = _mscl.ConfigIssue_CONFIG_DEBOUNCE_FILTER - CONFIG_PULLUP_RESISTOR = _mscl.ConfigIssue_CONFIG_PULLUP_RESISTOR - CONFIG_EXCITATION_VOLTAGE = _mscl.ConfigIssue_CONFIG_EXCITATION_VOLTAGE - CONFIG_DERIVED_UNIT = _mscl.ConfigIssue_CONFIG_DERIVED_UNIT - CONFIG_SENSOR_OUTPUT_MODE = _mscl.ConfigIssue_CONFIG_SENSOR_OUTPUT_MODE - CONFIG_LOW_BATTERY_THRESHOLD = _mscl.ConfigIssue_CONFIG_LOW_BATTERY_THRESHOLD - CONFIG_CFC_FILTER = _mscl.ConfigIssue_CONFIG_CFC_FILTER - - def __init__(self, *args): - _mscl.ConfigIssue_swiginit(self, _mscl.new_ConfigIssue(*args)) - - def id(self): - return _mscl.ConfigIssue_id(self) - - def description(self): - return _mscl.ConfigIssue_description(self) - - def isChannelGroupIssue(self): - return _mscl.ConfigIssue_isChannelGroupIssue(self) - - def channelMask(self): - return _mscl.ConfigIssue_channelMask(self) - __swig_destroy__ = _mscl.delete_ConfigIssue - -# Register ConfigIssue in _mscl: -_mscl.ConfigIssue_swigregister(ConfigIssue) - -class ActivitySense(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ActivitySense_swiginit(self, _mscl.new_ActivitySense()) - - def enabled(self, *args): - return _mscl.ActivitySense_enabled(self, *args) - - def activityThreshold(self, *args): - return _mscl.ActivitySense_activityThreshold(self, *args) - - def inactivityThreshold(self, *args): - return _mscl.ActivitySense_inactivityThreshold(self, *args) - - def activityTime(self, *args): - return _mscl.ActivitySense_activityTime(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.ActivitySense_inactivityTimeout(self, *args) - __swig_destroy__ = _mscl.delete_ActivitySense - -# Register ActivitySense in _mscl: -_mscl.ActivitySense_swigregister(ActivitySense) - -class Trigger(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Trigger_swiginit(self, _mscl.new_Trigger(*args)) - - def channelNumber(self, *args): - return _mscl.Trigger_channelNumber(self, *args) - - def triggerType(self, *args): - return _mscl.Trigger_triggerType(self, *args) - - def triggerValue(self, *args): - return _mscl.Trigger_triggerValue(self, *args) - __swig_destroy__ = _mscl.delete_Trigger - -# Register Trigger in _mscl: -_mscl.Trigger_swigregister(Trigger) - -class EventTriggerOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerOptions_swiginit(self, _mscl.new_EventTriggerOptions()) - - def triggerMask(self, *args): - return _mscl.EventTriggerOptions_triggerMask(self, *args) - - def anyTriggersEnabled(self): - return _mscl.EventTriggerOptions_anyTriggersEnabled(self) - - def triggerEnabled(self, triggerIndex): - return _mscl.EventTriggerOptions_triggerEnabled(self, triggerIndex) - - def enableTrigger(self, triggerIndex, enable=True): - return _mscl.EventTriggerOptions_enableTrigger(self, triggerIndex, enable) - - def preDuration(self, *args): - return _mscl.EventTriggerOptions_preDuration(self, *args) - - def postDuration(self, *args): - return _mscl.EventTriggerOptions_postDuration(self, *args) - - def trigger(self, *args): - return _mscl.EventTriggerOptions_trigger(self, *args) - - def triggers(self): - return _mscl.EventTriggerOptions_triggers(self) - __swig_destroy__ = _mscl.delete_EventTriggerOptions - -# Register EventTriggerOptions in _mscl: -_mscl.EventTriggerOptions_swigregister(EventTriggerOptions) - -class SnCurveSegment(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.SnCurveSegment_swiginit(self, _mscl.new_SnCurveSegment(*args)) - - def m(self, *args): - return _mscl.SnCurveSegment_m(self, *args) - - def logA(self, *args): - return _mscl.SnCurveSegment_logA(self, *args) - __swig_destroy__ = _mscl.delete_SnCurveSegment - -# Register SnCurveSegment in _mscl: -_mscl.SnCurveSegment_swigregister(SnCurveSegment) - -class FatigueOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FatigueOptions_swiginit(self, _mscl.new_FatigueOptions()) - - def youngsModulus(self, *args): - return _mscl.FatigueOptions_youngsModulus(self, *args) - - def poissonsRatio(self, *args): - return _mscl.FatigueOptions_poissonsRatio(self, *args) - - def peakValleyThreshold(self, *args): - return _mscl.FatigueOptions_peakValleyThreshold(self, *args) - - def debugMode(self, *args): - return _mscl.FatigueOptions_debugMode(self, *args) - - def damageAngles(self): - return _mscl.FatigueOptions_damageAngles(self) - - def damageAngle(self, *args): - return _mscl.FatigueOptions_damageAngle(self, *args) - - def snCurveSegments(self): - return _mscl.FatigueOptions_snCurveSegments(self) - - def snCurveSegment(self, *args): - return _mscl.FatigueOptions_snCurveSegment(self, *args) - - def fatigueMode(self, *args): - return _mscl.FatigueOptions_fatigueMode(self, *args) - - def distributedAngleMode_numAngles(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_numAngles(self, *args) - - def distributedAngleMode_lowerBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_lowerBound(self, *args) - - def distributedAngleMode_upperBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_upperBound(self, *args) - - def histogramEnable(self, *args): - return _mscl.FatigueOptions_histogramEnable(self, *args) - __swig_destroy__ = _mscl.delete_FatigueOptions - -# Register FatigueOptions in _mscl: -_mscl.FatigueOptions_swigregister(FatigueOptions) - -class HistogramOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HistogramOptions_swiginit(self, _mscl.new_HistogramOptions()) - - def transmitRate(self, *args): - return _mscl.HistogramOptions_transmitRate(self, *args) - - def binsStart(self, *args): - return _mscl.HistogramOptions_binsStart(self, *args) - - def binsSize(self, *args): - return _mscl.HistogramOptions_binsSize(self, *args) - __swig_destroy__ = _mscl.delete_HistogramOptions - -# Register HistogramOptions in _mscl: -_mscl.HistogramOptions_swigregister(HistogramOptions) - -class InputRangeEntry(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - inputRange = property(_mscl.InputRangeEntry_inputRange_get, _mscl.InputRangeEntry_inputRange_set) - hasGain = property(_mscl.InputRangeEntry_hasGain_get, _mscl.InputRangeEntry_hasGain_set) - gain = property(_mscl.InputRangeEntry_gain_get, _mscl.InputRangeEntry_gain_set) - - def __init__(self, *args): - _mscl.InputRangeEntry_swiginit(self, _mscl.new_InputRangeEntry(*args)) - __swig_destroy__ = _mscl.delete_InputRangeEntry - -# Register InputRangeEntry in _mscl: -_mscl.InputRangeEntry_swigregister(InputRangeEntry) - -class TempSensorOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - - @staticmethod - def RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - - @staticmethod - def Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - - def transducerType(self): - return _mscl.TempSensorOptions_transducerType(self) - - def thermocoupleType(self): - return _mscl.TempSensorOptions_thermocoupleType(self) - - def rtdType(self): - return _mscl.TempSensorOptions_rtdType(self) - - def rtdWireType(self): - return _mscl.TempSensorOptions_rtdWireType(self) - - def thermistorType(self): - return _mscl.TempSensorOptions_thermistorType(self) - __swig_destroy__ = _mscl.delete_TempSensorOptions - -# Register TempSensorOptions in _mscl: -_mscl.TempSensorOptions_swigregister(TempSensorOptions) - -def TempSensorOptions_Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - -def TempSensorOptions_RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - -def TempSensorOptions_Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - -class WirelessModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_vLink_legacy = _mscl.WirelessModels_node_vLink_legacy - node_cfBearingTempLink = _mscl.WirelessModels_node_cfBearingTempLink - node_envLink_pro = _mscl.WirelessModels_node_envLink_pro - node_gLink_2g = _mscl.WirelessModels_node_gLink_2g - node_gLink_10g = _mscl.WirelessModels_node_gLink_10g - node_gLinkII_cust_in = _mscl.WirelessModels_node_gLinkII_cust_in - node_gLinkII_2g_in = _mscl.WirelessModels_node_gLinkII_2g_in - node_gLinkII_10g_in = _mscl.WirelessModels_node_gLinkII_10g_in - node_gLinkII_cust_ex = _mscl.WirelessModels_node_gLinkII_cust_ex - node_gLinkII_2g_ex = _mscl.WirelessModels_node_gLinkII_2g_ex - node_gLinkII_10g_ex = _mscl.WirelessModels_node_gLinkII_10g_ex - node_gLink_rgd_10g = _mscl.WirelessModels_node_gLink_rgd_10g - node_gLink_200_8g = _mscl.WirelessModels_node_gLink_200_8g - node_gLink_200_40g = _mscl.WirelessModels_node_gLink_200_40g - node_gLink_200_8g_oem = _mscl.WirelessModels_node_gLink_200_8g_oem - node_gLink_200_40g_oem = _mscl.WirelessModels_node_gLink_200_40g_oem - node_gLink_200_8g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_8g_oem_mmcx - node_gLink_200_40g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_40g_oem_mmcx - node_gLink_200_8g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_8g_oem_u_fl - node_gLink_200_40g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_40g_oem_u_fl - node_gLink_200_r = _mscl.WirelessModels_node_gLink_200_r - node_sgLink_oem_S = _mscl.WirelessModels_node_sgLink_oem_S - node_sgLink = _mscl.WirelessModels_node_sgLink - node_sgLink200 = _mscl.WirelessModels_node_sgLink200 - node_sgLink200_hbridge_1K = _mscl.WirelessModels_node_sgLink200_hbridge_1K - node_sgLink200_hbridge_350 = _mscl.WirelessModels_node_sgLink200_hbridge_350 - node_sgLink200_hbridge_120 = _mscl.WirelessModels_node_sgLink200_hbridge_120 - node_sgLink200_qbridge_1K = _mscl.WirelessModels_node_sgLink200_qbridge_1K - node_sgLink200_qbridge_350 = _mscl.WirelessModels_node_sgLink200_qbridge_350 - node_sgLink200_qbridge_120 = _mscl.WirelessModels_node_sgLink200_qbridge_120 - node_sgLink_oem = _mscl.WirelessModels_node_sgLink_oem - node_sgLink_micro = _mscl.WirelessModels_node_sgLink_micro - node_sgLink200_oem = _mscl.WirelessModels_node_sgLink200_oem - node_sgLink200_oem_ufl = _mscl.WirelessModels_node_sgLink200_oem_ufl - node_sgLink200_oem_hbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K - node_sgLink200_oem_hbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K_ufl - node_sgLink200_oem_hbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120 - node_sgLink200_oem_hbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120_ufl - node_sgLink200_oem_hbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350 - node_sgLink200_oem_hbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350_ufl - node_sgLink200_oem_qbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K - node_sgLink200_oem_qbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K_ufl - node_sgLink200_oem_qbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120 - node_sgLink200_oem_qbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120_ufl - node_sgLink200_oem_qbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350 - node_sgLink200_oem_qbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350_ufl - node_sgLink_rgd = _mscl.WirelessModels_node_sgLink_rgd - node_shmLink = _mscl.WirelessModels_node_shmLink - node_tcLink_1ch = _mscl.WirelessModels_node_tcLink_1ch - node_tcLink_6ch = _mscl.WirelessModels_node_tcLink_6ch - node_tcLink_3ch = _mscl.WirelessModels_node_tcLink_3ch - node_tcLink_6ch_ip67 = _mscl.WirelessModels_node_tcLink_6ch_ip67 - node_tcLink200_oem = _mscl.WirelessModels_node_tcLink200_oem - node_tcLink200_oem_ufl = _mscl.WirelessModels_node_tcLink200_oem_ufl - node_tcLink200 = _mscl.WirelessModels_node_tcLink200 - node_rtdLink200 = _mscl.WirelessModels_node_rtdLink200 - node_tcLink_6ch_ip67_rht = _mscl.WirelessModels_node_tcLink_6ch_ip67_rht - node_vLink = _mscl.WirelessModels_node_vLink - node_vLink200 = _mscl.WirelessModels_node_vLink200 - node_vLink200_qbridge_1K = _mscl.WirelessModels_node_vLink200_qbridge_1K - node_vLink200_qbridge_120 = _mscl.WirelessModels_node_vLink200_qbridge_120 - node_vLink200_qbridge_350 = _mscl.WirelessModels_node_vLink200_qbridge_350 - node_vLink200_hbridge_1K = _mscl.WirelessModels_node_vLink200_hbridge_1K - node_vLink200_hbridge_120 = _mscl.WirelessModels_node_vLink200_hbridge_120 - node_vLink200_hbridge_350 = _mscl.WirelessModels_node_vLink200_hbridge_350 - node_iepeLink = _mscl.WirelessModels_node_iepeLink - node_dvrtLink = _mscl.WirelessModels_node_dvrtLink - node_envLink_mini = _mscl.WirelessModels_node_envLink_mini - node_wattLink = _mscl.WirelessModels_node_wattLink - node_wattLink_3Y208 = _mscl.WirelessModels_node_wattLink_3Y208 - node_wattLink_3D240 = _mscl.WirelessModels_node_wattLink_3D240 - node_wattLink_3Y400 = _mscl.WirelessModels_node_wattLink_3Y400 - node_wattLink_3D400 = _mscl.WirelessModels_node_wattLink_3D400 - node_wattLink_3Y480 = _mscl.WirelessModels_node_wattLink_3Y480 - node_wattLink_3D480 = _mscl.WirelessModels_node_wattLink_3D480 - node_wattLink_3Y600 = _mscl.WirelessModels_node_wattLink_3Y600 - node_ptLink200 = _mscl.WirelessModels_node_ptLink200 - node_rtdLink = _mscl.WirelessModels_node_rtdLink - node_shmLink2_cust1_oldNumber = _mscl.WirelessModels_node_shmLink2_cust1_oldNumber - node_shmLink2_cust1 = _mscl.WirelessModels_node_shmLink2_cust1 - node_shmLink200 = _mscl.WirelessModels_node_shmLink200 - node_shmLink201 = _mscl.WirelessModels_node_shmLink201 - node_shmLink201_qbridge_1K = _mscl.WirelessModels_node_shmLink201_qbridge_1K - node_shmLink201_qbridge_348 = _mscl.WirelessModels_node_shmLink201_qbridge_348 - node_shmLink201_hbridge_1K = _mscl.WirelessModels_node_shmLink201_hbridge_1K - node_shmLink201_hbridge_348 = _mscl.WirelessModels_node_shmLink201_hbridge_348 - node_shmLink201_fullbridge = _mscl.WirelessModels_node_shmLink201_fullbridge - node_shmLink210_fullbridge = _mscl.WirelessModels_node_shmLink210_fullbridge - node_shmLink210_qbridge_3K = _mscl.WirelessModels_node_shmLink210_qbridge_3K - node_torqueLink = _mscl.WirelessModels_node_torqueLink - node_torqueLink200_3ch = _mscl.WirelessModels_node_torqueLink200_3ch - node_torqueLink200 = _mscl.WirelessModels_node_torqueLink200 - node_torqueLink200_3ch_s = _mscl.WirelessModels_node_torqueLink200_3ch_s - node_sgLink_herm = _mscl.WirelessModels_node_sgLink_herm - node_sgLink_herm_2600 = _mscl.WirelessModels_node_sgLink_herm_2600 - node_sgLink_herm_2700 = _mscl.WirelessModels_node_sgLink_herm_2700 - node_sgLink_herm_2800 = _mscl.WirelessModels_node_sgLink_herm_2800 - node_sgLink_herm_2900 = _mscl.WirelessModels_node_sgLink_herm_2900 - node_wirelessImpactSensor = _mscl.WirelessModels_node_wirelessImpactSensor - node_gLink_200_40g_s = _mscl.WirelessModels_node_gLink_200_40g_s - base_wsda_1000 = _mscl.WirelessModels_base_wsda_1000 - base_wsda_1500 = _mscl.WirelessModels_base_wsda_1500 - base_wsda_2000 = _mscl.WirelessModels_base_wsda_2000 - base_wsdaBase_200_legacy = _mscl.WirelessModels_base_wsdaBase_200_legacy - base_wsdaBase_200 = _mscl.WirelessModels_base_wsdaBase_200 - base_wsdaBase_200_extAntenna = _mscl.WirelessModels_base_wsdaBase_200_extAntenna - base_wsdaBase_101_analog = _mscl.WirelessModels_base_wsdaBase_101_analog - base_wsdaBase_102_rs232 = _mscl.WirelessModels_base_wsdaBase_102_rs232 - base_wsdaBase_104_usb = _mscl.WirelessModels_base_wsdaBase_104_usb - base_wsi_104 = _mscl.WirelessModels_base_wsi_104 - base_wsdaBase_mini = _mscl.WirelessModels_base_wsdaBase_mini - - def __init__(self): - _mscl.WirelessModels_swiginit(self, _mscl.new_WirelessModels()) - __swig_destroy__ = _mscl.delete_WirelessModels - -# Register WirelessModels in _mscl: -_mscl.WirelessModels_swigregister(WirelessModels) - -class NodeDiscovery(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def nodeAddress(self): - return _mscl.NodeDiscovery_nodeAddress(self) - - def frequency(self): - return _mscl.NodeDiscovery_frequency(self) - - def panId(self): - return _mscl.NodeDiscovery_panId(self) - - def model(self): - return _mscl.NodeDiscovery_model(self) - - def serialNumber(self): - return _mscl.NodeDiscovery_serialNumber(self) - - def firmwareVersion(self): - return _mscl.NodeDiscovery_firmwareVersion(self) - - def defaultMode(self): - return _mscl.NodeDiscovery_defaultMode(self) - - def builtInTestResult(self): - return _mscl.NodeDiscovery_builtInTestResult(self) - - def communicationProtocol(self): - return _mscl.NodeDiscovery_communicationProtocol(self) - - def asppVersion_lxrs(self): - return _mscl.NodeDiscovery_asppVersion_lxrs(self) - - def asppVersion_lxrsPlus(self): - return _mscl.NodeDiscovery_asppVersion_lxrsPlus(self) - - def baseRssi(self): - return _mscl.NodeDiscovery_baseRssi(self) - - def timestamp(self): - return _mscl.NodeDiscovery_timestamp(self) - - def __init__(self): - _mscl.NodeDiscovery_swiginit(self, _mscl.new_NodeDiscovery()) - __swig_destroy__ = _mscl.delete_NodeDiscovery - -# Register NodeDiscovery in _mscl: -_mscl.NodeDiscovery_swigregister(NodeDiscovery) - -class LinearEquation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LinearEquation_swiginit(self, _mscl.new_LinearEquation(*args)) - - def slope(self, *args): - return _mscl.LinearEquation_slope(self, *args) - - def offset(self, *args): - return _mscl.LinearEquation_offset(self, *args) - __swig_destroy__ = _mscl.delete_LinearEquation - -# Register LinearEquation in _mscl: -_mscl.LinearEquation_swigregister(LinearEquation) - -class CalCoefficients(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CalCoefficients_swiginit(self, _mscl.new_CalCoefficients(*args)) - - def equationType(self): - return _mscl.CalCoefficients_equationType(self) - - def unit(self): - return _mscl.CalCoefficients_unit(self) - - def linearEquation(self): - return _mscl.CalCoefficients_linearEquation(self) - __swig_destroy__ = _mscl.delete_CalCoefficients - -# Register CalCoefficients in _mscl: -_mscl.CalCoefficients_swigregister(CalCoefficients) - -class ChannelGroup(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ChannelGroup_swiginit(self, _mscl.new_ChannelGroup()) - - def channels(self): - return _mscl.ChannelGroup_channels(self) - - def name(self): - return _mscl.ChannelGroup_name(self) - - def eepromLocation(self, setting): - return _mscl.ChannelGroup_eepromLocation(self, setting) - - def settings(self): - return _mscl.ChannelGroup_settings(self) - - def hasSetting(self, setting): - return _mscl.ChannelGroup_hasSetting(self, setting) - - def hasSettingAndChannel(self, setting, channelNumber): - return _mscl.ChannelGroup_hasSettingAndChannel(self, setting, channelNumber) - __swig_destroy__ = _mscl.delete_ChannelGroup - -# Register ChannelGroup in _mscl: -_mscl.ChannelGroup_swigregister(ChannelGroup) - -class WirelessChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - channel_unknown = _mscl.WirelessChannel_channel_unknown - channel_1 = _mscl.WirelessChannel_channel_1 - channel_2 = _mscl.WirelessChannel_channel_2 - channel_3 = _mscl.WirelessChannel_channel_3 - channel_4 = _mscl.WirelessChannel_channel_4 - channel_5 = _mscl.WirelessChannel_channel_5 - channel_6 = _mscl.WirelessChannel_channel_6 - channel_7 = _mscl.WirelessChannel_channel_7 - channel_8 = _mscl.WirelessChannel_channel_8 - channel_9 = _mscl.WirelessChannel_channel_9 - channel_10 = _mscl.WirelessChannel_channel_10 - channel_11 = _mscl.WirelessChannel_channel_11 - channel_12 = _mscl.WirelessChannel_channel_12 - channel_13 = _mscl.WirelessChannel_channel_13 - channel_14 = _mscl.WirelessChannel_channel_14 - channel_15 = _mscl.WirelessChannel_channel_15 - channel_16 = _mscl.WirelessChannel_channel_16 - channel_digital_1 = _mscl.WirelessChannel_channel_digital_1 - channel_digital_2 = _mscl.WirelessChannel_channel_digital_2 - channel_digital_3 = _mscl.WirelessChannel_channel_digital_3 - channel_digital_4 = _mscl.WirelessChannel_channel_digital_4 - channel_digital_5 = _mscl.WirelessChannel_channel_digital_5 - channel_digital_6 = _mscl.WirelessChannel_channel_digital_6 - channel_digital_7 = _mscl.WirelessChannel_channel_digital_7 - channel_digital_8 = _mscl.WirelessChannel_channel_digital_8 - channel_digital_9 = _mscl.WirelessChannel_channel_digital_9 - channel_digital_10 = _mscl.WirelessChannel_channel_digital_10 - channel_digital_11 = _mscl.WirelessChannel_channel_digital_11 - channel_digital_12 = _mscl.WirelessChannel_channel_digital_12 - channel_digital_13 = _mscl.WirelessChannel_channel_digital_13 - channel_digital_14 = _mscl.WirelessChannel_channel_digital_14 - channel_digital_15 = _mscl.WirelessChannel_channel_digital_15 - channel_digital_16 = _mscl.WirelessChannel_channel_digital_16 - channel_structuralHealth = _mscl.WirelessChannel_channel_structuralHealth - channel_hcl_rawBase_mag1_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_x - channel_hcl_rawBase_mag1_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_y - channel_hcl_rawBase_mag1_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_z - channel_hcl_rawBase_mag2_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_x - channel_hcl_rawBase_mag2_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_y - channel_hcl_rawBase_mag2_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_z - channel_hcl_rawBase_mag3_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_x - channel_hcl_rawBase_mag3_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_y - channel_hcl_rawBase_mag3_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_z - channel_hcl_rawBase_mag4_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_x - channel_hcl_rawBase_mag4_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_y - channel_hcl_rawBase_mag4_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_z - channel_hcl_rawBase_mag5_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_x - channel_hcl_rawBase_mag5_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_y - channel_hcl_rawBase_mag5_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_z - channel_hcl_rawBase_mag6_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_x - channel_hcl_rawBase_mag6_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_y - channel_hcl_rawBase_mag6_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_z - channel_hcl_rawBase_mag7_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_x - channel_hcl_rawBase_mag7_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_y - channel_hcl_rawBase_mag7_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_z - channel_hcl_rawBase_mag8_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_x - channel_hcl_rawBase_mag8_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_y - channel_hcl_rawBase_mag8_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_z - channel_hcl_rawBase_gyro_x = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_x - channel_hcl_rawBase_gyro_y = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_y - channel_hcl_rawBase_gyro_z = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_z - channel_error_code = _mscl.WirelessChannel_channel_error_code - channel_hcl_rawStrain_BL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL30 - channel_hcl_rawStrain_BL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL120 - channel_hcl_rawStrain_A60 = _mscl.WirelessChannel_channel_hcl_rawStrain_A60 - channel_hcl_rawStrain_A150 = _mscl.WirelessChannel_channel_hcl_rawStrain_A150 - channel_hcl_rawStrain_AL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL30 - channel_hcl_rawStrain_AL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL120 - channel_hcl_rawStrain_BR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR60 - channel_hcl_rawStrain_BR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR150 - channel_hcl_rawStrain_B30 = _mscl.WirelessChannel_channel_hcl_rawStrain_B30 - channel_hcl_rawStrain_T120 = _mscl.WirelessChannel_channel_hcl_rawStrain_T120 - channel_hcl_rawStrain_AR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR60 - channel_hcl_rawStrain_AR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR150 - channel_hcl_rawStrain_A30 = _mscl.WirelessChannel_channel_hcl_rawStrain_A30 - channel_hcl_rawStrain_A120 = _mscl.WirelessChannel_channel_hcl_rawStrain_A120 - channel_hcl_rawStrain_BL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL90 - channel_hcl_rawStrain_BL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL180 - channel_hcl_rawStrain_BR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR30 - channel_hcl_rawStrain_BR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR120 - channel_hcl_rawStrain_AL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL90 - channel_hcl_rawStrain_AL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL180 - channel_hcl_rawStrain_AR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR30 - channel_hcl_rawStrain_AR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR120 - channel_hcl_rawStrain_B90 = _mscl.WirelessChannel_channel_hcl_rawStrain_B90 - channel_hcl_rawStrain_T0 = _mscl.WirelessChannel_channel_hcl_rawStrain_T0 - channel_hcl_rawStrain_BL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL60 - channel_hcl_rawStrain_BL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL150 - channel_hcl_rawStrain_A90 = _mscl.WirelessChannel_channel_hcl_rawStrain_A90 - channel_hcl_rawStrain_A0 = _mscl.WirelessChannel_channel_hcl_rawStrain_A0 - channel_hcl_rawStrain_AL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL60 - channel_hcl_rawStrain_AL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL150 - channel_hcl_rawStrain_BR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR90 - channel_hcl_rawStrain_BR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR0 - channel_hcl_rawStrain_T60 = _mscl.WirelessChannel_channel_hcl_rawStrain_T60 - channel_hcl_rawStrain_B150 = _mscl.WirelessChannel_channel_hcl_rawStrain_B150 - channel_hcl_rawStrain_AR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR90 - channel_hcl_rawStrain_AR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR0 - channel_hcl_rawInertial_accel1 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel1 - channel_hcl_rawInertial_accel2 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel2 - channel_hcl_rawInertial_accel3 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel3 - channel_hcl_rawInertial_accel4 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel4 - channel_hcl_rawInertial_accel5 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel5 - channel_hcl_rawInertial_accel6 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel6 - channel_hcl_rawInertial_accel7 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel7 - channel_hcl_rawInertial_accel8 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel8 - channel_hcl_rawInertial_gyroX = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroX - channel_hcl_rawInertial_gyroY = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroY - channel_hcl_rawInertial_gyroZ = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroZ - channel_rawAngleStrain = _mscl.WirelessChannel_channel_rawAngleStrain - channel_beaconEcho = _mscl.WirelessChannel_channel_beaconEcho - channel_rfSweep = _mscl.WirelessChannel_channel_rfSweep - channel_diag_state = _mscl.WirelessChannel_channel_diag_state - channel_diag_runtime_idle = _mscl.WirelessChannel_channel_diag_runtime_idle - channel_diag_runtime_sleep = _mscl.WirelessChannel_channel_diag_runtime_sleep - channel_diag_runtime_activeRun = _mscl.WirelessChannel_channel_diag_runtime_activeRun - channel_diag_runtime_inactiveRun = _mscl.WirelessChannel_channel_diag_runtime_inactiveRun - channel_diag_resetCounter = _mscl.WirelessChannel_channel_diag_resetCounter - channel_diag_lowBatteryFlag = _mscl.WirelessChannel_channel_diag_lowBatteryFlag - channel_diag_sweepIndex = _mscl.WirelessChannel_channel_diag_sweepIndex - channel_diag_badSweepCount = _mscl.WirelessChannel_channel_diag_badSweepCount - channel_diag_totalTx = _mscl.WirelessChannel_channel_diag_totalTx - channel_diag_totalReTx = _mscl.WirelessChannel_channel_diag_totalReTx - channel_diag_totalDroppedPackets = _mscl.WirelessChannel_channel_diag_totalDroppedPackets - channel_diag_builtInTestResult = _mscl.WirelessChannel_channel_diag_builtInTestResult - channel_diag_eventIndex = _mscl.WirelessChannel_channel_diag_eventIndex - channel_hcl_axialLoadX = _mscl.WirelessChannel_channel_hcl_axialLoadX - channel_hcl_axialLoadY = _mscl.WirelessChannel_channel_hcl_axialLoadY - channel_hcl_axialLoadZ = _mscl.WirelessChannel_channel_hcl_axialLoadZ - channel_hcl_bendingMomentFlap = _mscl.WirelessChannel_channel_hcl_bendingMomentFlap - channel_hcl_bendingMomentLag = _mscl.WirelessChannel_channel_hcl_bendingMomentLag - channel_hcl_bendingMomentPitch = _mscl.WirelessChannel_channel_hcl_bendingMomentPitch - channel_hcl_motionFlap_mag = _mscl.WirelessChannel_channel_hcl_motionFlap_mag - channel_hcl_motionLag_mag = _mscl.WirelessChannel_channel_hcl_motionLag_mag - channel_hcl_motionPitch_mag = _mscl.WirelessChannel_channel_hcl_motionPitch_mag - channel_hcl_motionFlap_inertial = _mscl.WirelessChannel_channel_hcl_motionFlap_inertial - channel_hcl_motionLag_inertial = _mscl.WirelessChannel_channel_hcl_motionLag_inertial - channel_hcl_motionPitch_inertial = _mscl.WirelessChannel_channel_hcl_motionPitch_inertial - channel_hcl_cockingStiffness_mag = _mscl.WirelessChannel_channel_hcl_cockingStiffness_mag - channel_hcl_cockingStiffness_inertial = _mscl.WirelessChannel_channel_hcl_cockingStiffness_inertial - channel_hcl_temperature = _mscl.WirelessChannel_channel_hcl_temperature - channel_diag_externalPower = _mscl.WirelessChannel_channel_diag_externalPower - channel_diag_internalTemp = _mscl.WirelessChannel_channel_diag_internalTemp - channel_1_rms = _mscl.WirelessChannel_channel_1_rms - channel_2_rms = _mscl.WirelessChannel_channel_2_rms - channel_3_rms = _mscl.WirelessChannel_channel_3_rms - channel_4_rms = _mscl.WirelessChannel_channel_4_rms - channel_5_rms = _mscl.WirelessChannel_channel_5_rms - channel_6_rms = _mscl.WirelessChannel_channel_6_rms - channel_7_rms = _mscl.WirelessChannel_channel_7_rms - channel_8_rms = _mscl.WirelessChannel_channel_8_rms - channel_9_rms = _mscl.WirelessChannel_channel_9_rms - channel_10_rms = _mscl.WirelessChannel_channel_10_rms - channel_11_rms = _mscl.WirelessChannel_channel_11_rms - channel_12_rms = _mscl.WirelessChannel_channel_12_rms - channel_13_rms = _mscl.WirelessChannel_channel_13_rms - channel_14_rms = _mscl.WirelessChannel_channel_14_rms - channel_15_rms = _mscl.WirelessChannel_channel_15_rms - channel_16_rms = _mscl.WirelessChannel_channel_16_rms - channel_1_peakToPeak = _mscl.WirelessChannel_channel_1_peakToPeak - channel_2_peakToPeak = _mscl.WirelessChannel_channel_2_peakToPeak - channel_3_peakToPeak = _mscl.WirelessChannel_channel_3_peakToPeak - channel_4_peakToPeak = _mscl.WirelessChannel_channel_4_peakToPeak - channel_5_peakToPeak = _mscl.WirelessChannel_channel_5_peakToPeak - channel_6_peakToPeak = _mscl.WirelessChannel_channel_6_peakToPeak - channel_7_peakToPeak = _mscl.WirelessChannel_channel_7_peakToPeak - channel_8_peakToPeak = _mscl.WirelessChannel_channel_8_peakToPeak - channel_9_peakToPeak = _mscl.WirelessChannel_channel_9_peakToPeak - channel_10_peakToPeak = _mscl.WirelessChannel_channel_10_peakToPeak - channel_11_peakToPeak = _mscl.WirelessChannel_channel_11_peakToPeak - channel_12_peakToPeak = _mscl.WirelessChannel_channel_12_peakToPeak - channel_13_peakToPeak = _mscl.WirelessChannel_channel_13_peakToPeak - channel_14_peakToPeak = _mscl.WirelessChannel_channel_14_peakToPeak - channel_15_peakToPeak = _mscl.WirelessChannel_channel_15_peakToPeak - channel_16_peakToPeak = _mscl.WirelessChannel_channel_16_peakToPeak - channel_1_ips = _mscl.WirelessChannel_channel_1_ips - channel_2_ips = _mscl.WirelessChannel_channel_2_ips - channel_3_ips = _mscl.WirelessChannel_channel_3_ips - channel_4_ips = _mscl.WirelessChannel_channel_4_ips - channel_5_ips = _mscl.WirelessChannel_channel_5_ips - channel_6_ips = _mscl.WirelessChannel_channel_6_ips - channel_7_ips = _mscl.WirelessChannel_channel_7_ips - channel_8_ips = _mscl.WirelessChannel_channel_8_ips - channel_9_ips = _mscl.WirelessChannel_channel_9_ips - channel_10_ips = _mscl.WirelessChannel_channel_10_ips - channel_11_ips = _mscl.WirelessChannel_channel_11_ips - channel_12_ips = _mscl.WirelessChannel_channel_12_ips - channel_13_ips = _mscl.WirelessChannel_channel_13_ips - channel_14_ips = _mscl.WirelessChannel_channel_14_ips - channel_15_ips = _mscl.WirelessChannel_channel_15_ips - channel_16_ips = _mscl.WirelessChannel_channel_16_ips - channel_1_crestFactor = _mscl.WirelessChannel_channel_1_crestFactor - channel_2_crestFactor = _mscl.WirelessChannel_channel_2_crestFactor - channel_3_crestFactor = _mscl.WirelessChannel_channel_3_crestFactor - channel_4_crestFactor = _mscl.WirelessChannel_channel_4_crestFactor - channel_5_crestFactor = _mscl.WirelessChannel_channel_5_crestFactor - channel_6_crestFactor = _mscl.WirelessChannel_channel_6_crestFactor - channel_7_crestFactor = _mscl.WirelessChannel_channel_7_crestFactor - channel_8_crestFactor = _mscl.WirelessChannel_channel_8_crestFactor - channel_9_crestFactor = _mscl.WirelessChannel_channel_9_crestFactor - channel_10_crestFactor = _mscl.WirelessChannel_channel_10_crestFactor - channel_11_crestFactor = _mscl.WirelessChannel_channel_11_crestFactor - channel_12_crestFactor = _mscl.WirelessChannel_channel_12_crestFactor - channel_13_crestFactor = _mscl.WirelessChannel_channel_13_crestFactor - channel_14_crestFactor = _mscl.WirelessChannel_channel_14_crestFactor - channel_15_crestFactor = _mscl.WirelessChannel_channel_15_crestFactor - channel_16_crestFactor = _mscl.WirelessChannel_channel_16_crestFactor - channel_diag_syncAttempts = _mscl.WirelessChannel_channel_diag_syncAttempts - channel_diag_syncFailures = _mscl.WirelessChannel_channel_diag_syncFailures - channel_diag_secsSinceLastSync = _mscl.WirelessChannel_channel_diag_secsSinceLastSync - channel_beaconConflict = _mscl.WirelessChannel_channel_beaconConflict - channel_1_mean = _mscl.WirelessChannel_channel_1_mean - channel_2_mean = _mscl.WirelessChannel_channel_2_mean - channel_3_mean = _mscl.WirelessChannel_channel_3_mean - channel_4_mean = _mscl.WirelessChannel_channel_4_mean - channel_5_mean = _mscl.WirelessChannel_channel_5_mean - channel_6_mean = _mscl.WirelessChannel_channel_6_mean - channel_7_mean = _mscl.WirelessChannel_channel_7_mean - channel_8_mean = _mscl.WirelessChannel_channel_8_mean - channel_9_mean = _mscl.WirelessChannel_channel_9_mean - channel_10_mean = _mscl.WirelessChannel_channel_10_mean - channel_11_mean = _mscl.WirelessChannel_channel_11_mean - channel_12_mean = _mscl.WirelessChannel_channel_12_mean - channel_13_mean = _mscl.WirelessChannel_channel_13_mean - channel_14_mean = _mscl.WirelessChannel_channel_14_mean - channel_15_mean = _mscl.WirelessChannel_channel_15_mean - channel_16_mean = _mscl.WirelessChannel_channel_16_mean - channel_1_mmps = _mscl.WirelessChannel_channel_1_mmps - channel_2_mmps = _mscl.WirelessChannel_channel_2_mmps - channel_3_mmps = _mscl.WirelessChannel_channel_3_mmps - channel_4_mmps = _mscl.WirelessChannel_channel_4_mmps - channel_5_mmps = _mscl.WirelessChannel_channel_5_mmps - channel_6_mmps = _mscl.WirelessChannel_channel_6_mmps - channel_7_mmps = _mscl.WirelessChannel_channel_7_mmps - channel_8_mmps = _mscl.WirelessChannel_channel_8_mmps - channel_9_mmps = _mscl.WirelessChannel_channel_9_mmps - channel_10_mmps = _mscl.WirelessChannel_channel_10_mmps - channel_11_mmps = _mscl.WirelessChannel_channel_11_mmps - channel_12_mmps = _mscl.WirelessChannel_channel_12_mmps - channel_13_mmps = _mscl.WirelessChannel_channel_13_mmps - channel_14_mmps = _mscl.WirelessChannel_channel_14_mmps - channel_15_mmps = _mscl.WirelessChannel_channel_15_mmps - channel_16_mmps = _mscl.WirelessChannel_channel_16_mmps - channel_diag_memoryFull = _mscl.WirelessChannel_channel_diag_memoryFull - - def __init__(self, *args): - _mscl.WirelessChannel_swiginit(self, _mscl.new_WirelessChannel(*args)) - - def channelNumber(self): - return _mscl.WirelessChannel_channelNumber(self) - - def id(self): - return _mscl.WirelessChannel_id(self) - - def type(self): - return _mscl.WirelessChannel_type(self) - - def description(self): - return _mscl.WirelessChannel_description(self) - - def adcResolution(self): - return _mscl.WirelessChannel_adcResolution(self) - - def adcMaxValue(self): - return _mscl.WirelessChannel_adcMaxValue(self) - - def name(self): - return _mscl.WirelessChannel_name(self) - __swig_destroy__ = _mscl.delete_WirelessChannel - -# Register WirelessChannel in _mscl: -_mscl.WirelessChannel_swigregister(WirelessChannel) - -class WirelessDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessDataPoint_swiginit(self, _mscl.new_WirelessDataPoint()) - - def channelId(self): - return _mscl.WirelessDataPoint_channelId(self) - - def channelNumber(self): - return _mscl.WirelessDataPoint_channelNumber(self) - - def channelName(self): - return _mscl.WirelessDataPoint_channelName(self) - __swig_destroy__ = _mscl.delete_WirelessDataPoint - -# Register WirelessDataPoint in _mscl: -_mscl.WirelessDataPoint_swigregister(WirelessDataPoint) - -class DataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - samplingType_NonSync = _mscl.DataSweep_samplingType_NonSync - samplingType_NonSync_Buffered = _mscl.DataSweep_samplingType_NonSync_Buffered - samplingType_SyncSampling = _mscl.DataSweep_samplingType_SyncSampling - samplingType_SyncSampling_Burst = _mscl.DataSweep_samplingType_SyncSampling_Burst - samplingType_AsyncDigital = _mscl.DataSweep_samplingType_AsyncDigital - samplingType_AsyncDigitalAnalog = _mscl.DataSweep_samplingType_AsyncDigitalAnalog - samplingType_SHM = _mscl.DataSweep_samplingType_SHM - samplingType_BeaconEcho = _mscl.DataSweep_samplingType_BeaconEcho - samplingType_RfSweep = _mscl.DataSweep_samplingType_RfSweep - samplingType_Diagnostic = _mscl.DataSweep_samplingType_Diagnostic - - def __init__(self): - _mscl.DataSweep_swiginit(self, _mscl.new_DataSweep()) - - def timestamp(self): - return _mscl.DataSweep_timestamp(self) - - def tick(self): - return _mscl.DataSweep_tick(self) - - def sampleRate(self): - return _mscl.DataSweep_sampleRate(self) - - def nodeAddress(self): - return _mscl.DataSweep_nodeAddress(self) - - def data(self): - return _mscl.DataSweep_data(self) - - def samplingType(self): - return _mscl.DataSweep_samplingType(self) - - def nodeRssi(self): - return _mscl.DataSweep_nodeRssi(self) - - def baseRssi(self): - return _mscl.DataSweep_baseRssi(self) - - def frequency(self): - return _mscl.DataSweep_frequency(self) - - def calApplied(self): - return _mscl.DataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_DataSweep - -# Register DataSweep in _mscl: -_mscl.DataSweep_swigregister(DataSweep) - -class BaseStationAnalogPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationAnalogPair_swiginit(self, _mscl.new_BaseStationAnalogPair()) - - @staticmethod - def Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - - @staticmethod - def NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - - def nodeAddress(self, *args): - return _mscl.BaseStationAnalogPair_nodeAddress(self, *args) - - def nodeChannel(self, *args): - return _mscl.BaseStationAnalogPair_nodeChannel(self, *args) - - def expectFloatData(self, *args): - return _mscl.BaseStationAnalogPair_expectFloatData(self, *args) - - def outputVal_0V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_0V(self, *args) - - def outputVal_3V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_3V(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationAnalogPair - -# Register BaseStationAnalogPair in _mscl: -_mscl.BaseStationAnalogPair_swigregister(BaseStationAnalogPair) -BaseStationAnalogPair.CHANNEL_NOT_FLOAT = _mscl.cvar.BaseStationAnalogPair_CHANNEL_NOT_FLOAT - -def BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - -def BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - -class BaseStationButton(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - btn_nodeSleep = _mscl.BaseStationButton_btn_nodeSleep - btn_nodeStop = _mscl.BaseStationButton_btn_nodeStop - btn_enableBeacon = _mscl.BaseStationButton_btn_enableBeacon - btn_disableBeacon = _mscl.BaseStationButton_btn_disableBeacon - btn_nodeNonSyncSampling = _mscl.BaseStationButton_btn_nodeNonSyncSampling - btn_nodeSyncSampling = _mscl.BaseStationButton_btn_nodeSyncSampling - btn_nodeArmedDatalogging = _mscl.BaseStationButton_btn_nodeArmedDatalogging - btn_cyclePower = _mscl.BaseStationButton_btn_cyclePower - btn_disabled = _mscl.BaseStationButton_btn_disabled - - def __init__(self, *args): - _mscl.BaseStationButton_swiginit(self, _mscl.new_BaseStationButton(*args)) - - def command(self, *args): - return _mscl.BaseStationButton_command(self, *args) - - def nodeAddress(self, *args): - return _mscl.BaseStationButton_nodeAddress(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationButton - -# Register BaseStationButton in _mscl: -_mscl.BaseStationButton_swigregister(BaseStationButton) - -class BaseStationConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationConfig_swiginit(self, _mscl.new_BaseStationConfig()) - - def transmitPower(self, *args): - return _mscl.BaseStationConfig_transmitPower(self, *args) - - def communicationProtocol(self, *args): - return _mscl.BaseStationConfig_communicationProtocol(self, *args) - - def buttonLongPress(self, *args): - return _mscl.BaseStationConfig_buttonLongPress(self, *args) - - def buttonShortPress(self, *args): - return _mscl.BaseStationConfig_buttonShortPress(self, *args) - - def analogPairingEnable(self, *args): - return _mscl.BaseStationConfig_analogPairingEnable(self, *args) - - def analogTimeoutTime(self, *args): - return _mscl.BaseStationConfig_analogTimeoutTime(self, *args) - - def analogTimeoutVoltage(self, *args): - return _mscl.BaseStationConfig_analogTimeoutVoltage(self, *args) - - def analogExceedanceEnable(self, *args): - return _mscl.BaseStationConfig_analogExceedanceEnable(self, *args) - - def analogPairing(self, *args): - return _mscl.BaseStationConfig_analogPairing(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationConfig - -# Register BaseStationConfig in _mscl: -_mscl.BaseStationConfig_swigregister(BaseStationConfig) - -class BeaconStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BeaconStatus_swiginit(self, _mscl.new_BeaconStatus(*args)) - - def enabled(self): - return _mscl.BeaconStatus_enabled(self) - - def timestamp(self): - return _mscl.BeaconStatus_timestamp(self) - __swig_destroy__ = _mscl.delete_BeaconStatus - -# Register BeaconStatus in _mscl: -_mscl.BeaconStatus_swigregister(BeaconStatus) - -class BaseStationInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region, asppVer_lxrs, asppVer_lxrsPlus): - _mscl.BaseStationInfo_swiginit(self, _mscl.new_BaseStationInfo(fw, model, region, asppVer_lxrs, asppVer_lxrsPlus)) - __swig_destroy__ = _mscl.delete_BaseStationInfo - -# Register BaseStationInfo in _mscl: -_mscl.BaseStationInfo_swigregister(BaseStationInfo) - -class BaseStation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_BASE_COMMANDS_DEFAULT_TIMEOUT - ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT - BROADCAST_NODE_ADDRESS = _mscl.BaseStation_BROADCAST_NODE_ADDRESS - BROADCAST_NODE_ADDRESS_ASPP3 = _mscl.BaseStation_BROADCAST_NODE_ADDRESS_ASPP3 - - def __init__(self, *args): - _mscl.BaseStation_swiginit(self, _mscl.new_BaseStation(*args)) - __swig_destroy__ = _mscl.delete_BaseStation - - @staticmethod - def Mock(*args): - return _mscl.BaseStation_Mock(*args) - - @staticmethod - def deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - - def connection(self): - return _mscl.BaseStation_connection(self) - - def features(self): - return _mscl.BaseStation_features(self) - - def lastCommunicationTime(self): - return _mscl.BaseStation_lastCommunicationTime(self) - - def readWriteRetries(self, *args): - return _mscl.BaseStation_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.BaseStation_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.BaseStation_clearEepromCache(self) - - def frequency(self): - return _mscl.BaseStation_frequency(self) - - def communicationProtocol(self): - return _mscl.BaseStation_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.BaseStation_firmwareVersion(self) - - def model(self): - return _mscl.BaseStation_model(self) - - def serial(self): - return _mscl.BaseStation_serial(self) - - def name(self): - return _mscl.BaseStation_name(self) - - def microcontroller(self): - return _mscl.BaseStation_microcontroller(self) - - def regionCode(self): - return _mscl.BaseStation_regionCode(self) - - def getData(self, timeout=0, maxSweeps=0): - return _mscl.BaseStation_getData(self, timeout, maxSweeps) - - def totalData(self): - return _mscl.BaseStation_totalData(self) - - def getNodeDiscoveries(self): - return _mscl.BaseStation_getNodeDiscoveries(self) - - def timeout(self, *args): - return _mscl.BaseStation_timeout(self, *args) - - def ping(self): - return _mscl.BaseStation_ping(self) - - def readEeprom(self, eepromAddress): - return _mscl.BaseStation_readEeprom(self, eepromAddress) - - def writeEeprom(self, eepromAddress, value): - return _mscl.BaseStation_writeEeprom(self, eepromAddress, value) - - def enableBeacon(self, *args): - return _mscl.BaseStation_enableBeacon(self, *args) - - def disableBeacon(self): - return _mscl.BaseStation_disableBeacon(self) - - def beaconStatus(self): - return _mscl.BaseStation_beaconStatus(self) - - def startRfSweepMode(self, *args): - return _mscl.BaseStation_startRfSweepMode(self, *args) - - def cyclePower(self, checkComm=True): - return _mscl.BaseStation_cyclePower(self, checkComm) - - def resetRadio(self): - return _mscl.BaseStation_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.BaseStation_changeFrequency(self, frequency) - - def broadcastSetToIdle(self): - return _mscl.BaseStation_broadcastSetToIdle(self) - - def verifyConfig(self, config, outIssues): - return _mscl.BaseStation_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.BaseStation_applyConfig(self, config) - - def getTransmitPower(self): - return _mscl.BaseStation_getTransmitPower(self) - - def getButtonLongPress(self, buttonNumber): - return _mscl.BaseStation_getButtonLongPress(self, buttonNumber) - - def getButtonShortPress(self, buttonNumber): - return _mscl.BaseStation_getButtonShortPress(self, buttonNumber) - - def getAnalogPairingEnabled(self): - return _mscl.BaseStation_getAnalogPairingEnabled(self) - - def getAnalogTimeoutTime(self): - return _mscl.BaseStation_getAnalogTimeoutTime(self) - - def getAnalogTimeoutVoltage(self): - return _mscl.BaseStation_getAnalogTimeoutVoltage(self) - - def getAnalogExceedanceEnabled(self): - return _mscl.BaseStation_getAnalogExceedanceEnabled(self) - - def getAnalogPair(self, portNumber): - return _mscl.BaseStation_getAnalogPair(self, portNumber) - -# Register BaseStation in _mscl: -_mscl.BaseStation_swigregister(BaseStation) - -def BaseStation_Mock(*args): - return _mscl.BaseStation_Mock(*args) - -def BaseStation_deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - -class LoggedDataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LoggedDataSweep_swiginit(self, _mscl.new_LoggedDataSweep(*args)) - - def timestamp(self): - return _mscl.LoggedDataSweep_timestamp(self) - - def tick(self): - return _mscl.LoggedDataSweep_tick(self) - - def data(self): - return _mscl.LoggedDataSweep_data(self) - - def calApplied(self): - return _mscl.LoggedDataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweep - -# Register LoggedDataSweep in _mscl: -_mscl.LoggedDataSweep_swigregister(LoggedDataSweep) - -class RadioFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.RadioFeatures_swiginit(self, _mscl.new_RadioFeatures(*args)) - - def extendedRange(self): - return _mscl.RadioFeatures_extendedRange(self) - __swig_destroy__ = _mscl.delete_RadioFeatures - -# Register RadioFeatures in _mscl: -_mscl.RadioFeatures_swigregister(RadioFeatures) - -class WirelessNodeConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessNodeConfig_swiginit(self, _mscl.new_WirelessNodeConfig()) - SENSOR_DELAY_ALWAYS_ON = _mscl.WirelessNodeConfig_SENSOR_DELAY_ALWAYS_ON - - def defaultMode(self, *args): - return _mscl.WirelessNodeConfig_defaultMode(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.WirelessNodeConfig_inactivityTimeout(self, *args) - - def checkRadioInterval(self, *args): - return _mscl.WirelessNodeConfig_checkRadioInterval(self, *args) - - def transmitPower(self, *args): - return _mscl.WirelessNodeConfig_transmitPower(self, *args) - - def samplingMode(self, *args): - return _mscl.WirelessNodeConfig_samplingMode(self, *args) - - def sampleRate(self, *args): - return _mscl.WirelessNodeConfig_sampleRate(self, *args) - - def activeChannels(self, *args): - return _mscl.WirelessNodeConfig_activeChannels(self, *args) - - def numSweeps(self, *args): - return _mscl.WirelessNodeConfig_numSweeps(self, *args) - - def unlimitedDuration(self, *args): - return _mscl.WirelessNodeConfig_unlimitedDuration(self, *args) - - def dataFormat(self, *args): - return _mscl.WirelessNodeConfig_dataFormat(self, *args) - - def dataCollectionMethod(self, *args): - return _mscl.WirelessNodeConfig_dataCollectionMethod(self, *args) - - def timeBetweenBursts(self, *args): - return _mscl.WirelessNodeConfig_timeBetweenBursts(self, *args) - - def lostBeaconTimeout(self, *args): - return _mscl.WirelessNodeConfig_lostBeaconTimeout(self, *args) - - def pullUpResistor(self, *args): - return _mscl.WirelessNodeConfig_pullUpResistor(self, *args) - - def inputRange(self, *args): - return _mscl.WirelessNodeConfig_inputRange(self, *args) - - def hardwareOffset(self, *args): - return _mscl.WirelessNodeConfig_hardwareOffset(self, *args) - - def antiAliasingFilter(self, *args): - return _mscl.WirelessNodeConfig_antiAliasingFilter(self, *args) - - def cfcFilterConfig(self, *args): - return _mscl.WirelessNodeConfig_cfcFilterConfig(self, *args) - - def lowPassFilter(self, *args): - return _mscl.WirelessNodeConfig_lowPassFilter(self, *args) - - def highPassFilter(self, *args): - return _mscl.WirelessNodeConfig_highPassFilter(self, *args) - - def gaugeFactor(self, *args): - return _mscl.WirelessNodeConfig_gaugeFactor(self, *args) - - def gaugeResistance(self, *args): - return _mscl.WirelessNodeConfig_gaugeResistance(self, *args) - - def excitationVoltage(self, *args): - return _mscl.WirelessNodeConfig_excitationVoltage(self, *args) - - def numActiveGauges(self, *args): - return _mscl.WirelessNodeConfig_numActiveGauges(self, *args) - - def lowBatteryThreshold(self, *args): - return _mscl.WirelessNodeConfig_lowBatteryThreshold(self, *args) - - def linearEquation(self, *args): - return _mscl.WirelessNodeConfig_linearEquation(self, *args) - - def unit(self, *args): - return _mscl.WirelessNodeConfig_unit(self, *args) - - def equationType(self, *args): - return _mscl.WirelessNodeConfig_equationType(self, *args) - - def filterSettlingTime(self, *args): - return _mscl.WirelessNodeConfig_filterSettlingTime(self, *args) - - def thermocoupleType(self, *args): - return _mscl.WirelessNodeConfig_thermocoupleType(self, *args) - - def tempSensorOptions(self, *args): - return _mscl.WirelessNodeConfig_tempSensorOptions(self, *args) - - def debounceFilter(self, *args): - return _mscl.WirelessNodeConfig_debounceFilter(self, *args) - - def fatigueOptions(self, *args): - return _mscl.WirelessNodeConfig_fatigueOptions(self, *args) - - def histogramOptions(self, *args): - return _mscl.WirelessNodeConfig_histogramOptions(self, *args) - - def activitySense(self, *args): - return _mscl.WirelessNodeConfig_activitySense(self, *args) - - def eventTriggerOptions(self, *args): - return _mscl.WirelessNodeConfig_eventTriggerOptions(self, *args) - - def diagnosticInterval(self, *args): - return _mscl.WirelessNodeConfig_diagnosticInterval(self, *args) - - def storageLimitMode(self, *args): - return _mscl.WirelessNodeConfig_storageLimitMode(self, *args) - - def sensorDelay(self, *args): - return _mscl.WirelessNodeConfig_sensorDelay(self, *args) - - def dataMode(self, *args): - return _mscl.WirelessNodeConfig_dataMode(self, *args) - - def derivedDataRate(self, *args): - return _mscl.WirelessNodeConfig_derivedDataRate(self, *args) - - def derivedChannelMask(self, *args): - return _mscl.WirelessNodeConfig_derivedChannelMask(self, *args) - - def derivedVelocityUnit(self, *args): - return _mscl.WirelessNodeConfig_derivedVelocityUnit(self, *args) - - def communicationProtocol(self, *args): - return _mscl.WirelessNodeConfig_communicationProtocol(self, *args) - - def sensorOutputMode(self, *args): - return _mscl.WirelessNodeConfig_sensorOutputMode(self, *args) - - @staticmethod - def flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - - @staticmethod - def flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - __swig_destroy__ = _mscl.delete_WirelessNodeConfig - -# Register WirelessNodeConfig in _mscl: -_mscl.WirelessNodeConfig_swigregister(WirelessNodeConfig) - -def WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - -def WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - -class AutoBalanceResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoBalanceResult_swiginit(self, _mscl.new_AutoBalanceResult()) - - def errorCode(self): - return _mscl.AutoBalanceResult_errorCode(self) - - def percentAchieved(self): - return _mscl.AutoBalanceResult_percentAchieved(self) - - def hardwareOffset(self): - return _mscl.AutoBalanceResult_hardwareOffset(self) - __swig_destroy__ = _mscl.delete_AutoBalanceResult - -# Register AutoBalanceResult in _mscl: -_mscl.AutoBalanceResult_swigregister(AutoBalanceResult) - -class ShuntCalCmdInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - useInternalShunt = property(_mscl.ShuntCalCmdInfo_useInternalShunt_get, _mscl.ShuntCalCmdInfo_useInternalShunt_set) - numActiveGauges = property(_mscl.ShuntCalCmdInfo_numActiveGauges_get, _mscl.ShuntCalCmdInfo_numActiveGauges_set) - gaugeResistance = property(_mscl.ShuntCalCmdInfo_gaugeResistance_get, _mscl.ShuntCalCmdInfo_gaugeResistance_set) - shuntResistance = property(_mscl.ShuntCalCmdInfo_shuntResistance_get, _mscl.ShuntCalCmdInfo_shuntResistance_set) - gaugeFactor = property(_mscl.ShuntCalCmdInfo_gaugeFactor_get, _mscl.ShuntCalCmdInfo_gaugeFactor_set) - inputRange = property(_mscl.ShuntCalCmdInfo_inputRange_get, _mscl.ShuntCalCmdInfo_inputRange_set) - hardwareOffset = property(_mscl.ShuntCalCmdInfo_hardwareOffset_get, _mscl.ShuntCalCmdInfo_hardwareOffset_set) - excitationVoltage = property(_mscl.ShuntCalCmdInfo_excitationVoltage_get, _mscl.ShuntCalCmdInfo_excitationVoltage_set) - - def __init__(self): - _mscl.ShuntCalCmdInfo_swiginit(self, _mscl.new_ShuntCalCmdInfo()) - __swig_destroy__ = _mscl.delete_ShuntCalCmdInfo - -# Register ShuntCalCmdInfo in _mscl: -_mscl.ShuntCalCmdInfo_swigregister(ShuntCalCmdInfo) - -class AutoCalResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_AutoCalResult - - def completionFlag(self): - return _mscl.AutoCalResult_completionFlag(self) - -# Register AutoCalResult in _mscl: -_mscl.AutoCalResult_swigregister(AutoCalResult) - -class AutoCalResult_shmLink(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink_swiginit(self, _mscl.new_AutoCalResult_shmLink()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh3(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink_offsetCh1(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink_offsetCh2(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink_temperature(self) - -# Register AutoCalResult_shmLink in _mscl: -_mscl.AutoCalResult_shmLink_swigregister(AutoCalResult_shmLink) - -class AutoCalResult_shmLink201(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink201_swiginit(self, _mscl.new_AutoCalResult_shmLink201()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink201 - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh3(self) - - def slopeCh1(self): - return _mscl.AutoCalResult_shmLink201_slopeCh1(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink201_offsetCh1(self) - - def slopeCh2(self): - return _mscl.AutoCalResult_shmLink201_slopeCh2(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink201_offsetCh2(self) - - def slopeCh3(self): - return _mscl.AutoCalResult_shmLink201_slopeCh3(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink201_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink201_temperature(self) - -# Register AutoCalResult_shmLink201 in _mscl: -_mscl.AutoCalResult_shmLink201_swigregister(AutoCalResult_shmLink201) - -class AutoShuntCalResult(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoShuntCalResult_swiginit(self, _mscl.new_AutoShuntCalResult()) - __swig_destroy__ = _mscl.delete_AutoShuntCalResult - - def errorFlag(self): - return _mscl.AutoShuntCalResult_errorFlag(self) - - def slope(self): - return _mscl.AutoShuntCalResult_slope(self) - - def offset(self): - return _mscl.AutoShuntCalResult_offset(self) - - def baseMedian(self): - return _mscl.AutoShuntCalResult_baseMedian(self) - - def baseMin(self): - return _mscl.AutoShuntCalResult_baseMin(self) - - def baseMax(self): - return _mscl.AutoShuntCalResult_baseMax(self) - - def shuntMedian(self): - return _mscl.AutoShuntCalResult_shuntMedian(self) - - def shuntMin(self): - return _mscl.AutoShuntCalResult_shuntMin(self) - - def shuntMax(self): - return _mscl.AutoShuntCalResult_shuntMax(self) - -# Register AutoShuntCalResult in _mscl: -_mscl.AutoShuntCalResult_swigregister(AutoShuntCalResult) - -class PingResponse(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PingResponse_swiginit(self, _mscl.new_PingResponse()) - - def success(self): - return _mscl.PingResponse_success(self) - - def nodeRssi(self): - return _mscl.PingResponse_nodeRssi(self) - - def baseRssi(self): - return _mscl.PingResponse_baseRssi(self) - __swig_destroy__ = _mscl.delete_PingResponse - -# Register PingResponse in _mscl: -_mscl.PingResponse_swigregister(PingResponse) - -class SetToIdleStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - setToIdleResult_success = _mscl.SetToIdleStatus_setToIdleResult_success - setToIdleResult_canceled = _mscl.SetToIdleStatus_setToIdleResult_canceled - setToIdleResult_failed = _mscl.SetToIdleStatus_setToIdleResult_failed - setToIdleResult_notCompleted = _mscl.SetToIdleStatus_setToIdleResult_notCompleted - - def result(self): - return _mscl.SetToIdleStatus_result(self) - - def complete(self, timeout=10): - return _mscl.SetToIdleStatus_complete(self, timeout) - - def cancel(self): - return _mscl.SetToIdleStatus_cancel(self) - __swig_destroy__ = _mscl.delete_SetToIdleStatus - -# Register SetToIdleStatus in _mscl: -_mscl.SetToIdleStatus_swigregister(SetToIdleStatus) - -class NodeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region): - _mscl.NodeInfo_swiginit(self, _mscl.new_NodeInfo(fw, model, region)) - __swig_destroy__ = _mscl.delete_NodeInfo - -# Register NodeInfo in _mscl: -_mscl.NodeInfo_swigregister(NodeInfo) - -class WirelessNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, nodeAddress, basestation): - _mscl.WirelessNode_swiginit(self, _mscl.new_WirelessNode(nodeAddress, basestation)) - __swig_destroy__ = _mscl.delete_WirelessNode - - @staticmethod - def Mock(*args): - return _mscl.WirelessNode_Mock(*args) - - @staticmethod - def deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - - def features(self): - return _mscl.WirelessNode_features(self) - - def lastCommunicationTime(self): - return _mscl.WirelessNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.WirelessNode_lastDeviceState(self) - - def setBaseStation(self, basestation): - return _mscl.WirelessNode_setBaseStation(self, basestation) - - def getBaseStation(self): - return _mscl.WirelessNode_getBaseStation(self) - - def hasBaseStation(self, basestation): - return _mscl.WirelessNode_hasBaseStation(self, basestation) - - def useGroupRead(self, useGroup): - return _mscl.WirelessNode_useGroupRead(self, useGroup) - - def readWriteRetries(self, *args): - return _mscl.WirelessNode_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.WirelessNode_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.WirelessNode_clearEepromCache(self) - - def updateEepromCacheFromNodeDiscovery(self, nodeDisovery): - return _mscl.WirelessNode_updateEepromCacheFromNodeDiscovery(self, nodeDisovery) - - def getEepromCache(self): - return _mscl.WirelessNode_getEepromCache(self) - - def nodeAddress(self): - return _mscl.WirelessNode_nodeAddress(self) - - def frequency(self): - return _mscl.WirelessNode_frequency(self) - - def communicationProtocol(self): - return _mscl.WirelessNode_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.WirelessNode_firmwareVersion(self) - - def model(self): - return _mscl.WirelessNode_model(self) - - def serial(self): - return _mscl.WirelessNode_serial(self) - - def name(self): - return _mscl.WirelessNode_name(self) - - def microcontroller(self): - return _mscl.WirelessNode_microcontroller(self) - - def radioFeatures(self): - return _mscl.WirelessNode_radioFeatures(self) - - def dataStorageSize(self): - return _mscl.WirelessNode_dataStorageSize(self) - - def regionCode(self): - return _mscl.WirelessNode_regionCode(self) - - def ping(self): - return _mscl.WirelessNode_ping(self) - - def sleep(self): - return _mscl.WirelessNode_sleep(self) - - def cyclePower(self): - return _mscl.WirelessNode_cyclePower(self) - - def resetRadio(self): - return _mscl.WirelessNode_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.WirelessNode_changeFrequency(self, frequency) - - def setToIdle(self): - return _mscl.WirelessNode_setToIdle(self) - - def erase(self): - return _mscl.WirelessNode_erase(self) - - def startNonSyncSampling(self): - return _mscl.WirelessNode_startNonSyncSampling(self) - - def resendStartSyncSampling(self): - return _mscl.WirelessNode_resendStartSyncSampling(self) - - def clearHistogram(self): - return _mscl.WirelessNode_clearHistogram(self) - - def autoBalance(self, mask, targetPercent): - return _mscl.WirelessNode_autoBalance(self, mask, targetPercent) - - def autoCal_shmLink(self): - return _mscl.WirelessNode_autoCal_shmLink(self) - - def autoCal_shmLink201(self): - return _mscl.WirelessNode_autoCal_shmLink201(self) - - def autoShuntCal(self, mask, commandInfo): - return _mscl.WirelessNode_autoShuntCal(self, mask, commandInfo) - - def poll(self, mask): - return _mscl.WirelessNode_poll(self, mask) - - def readEeprom(self, location): - return _mscl.WirelessNode_readEeprom(self, location) - - def writeEeprom(self, location, value): - return _mscl.WirelessNode_writeEeprom(self, location, value) - - def getDiagnosticInfo(self): - return _mscl.WirelessNode_getDiagnosticInfo(self) - - def testCommunicationProtocol(self, protocol): - return _mscl.WirelessNode_testCommunicationProtocol(self, protocol) - - def verifyConfig(self, config, outIssues): - return _mscl.WirelessNode_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.WirelessNode_applyConfig(self, config) - - def getNumDatalogSessions(self): - return _mscl.WirelessNode_getNumDatalogSessions(self) - - def percentFull(self): - return _mscl.WirelessNode_percentFull(self) - - def getDefaultMode(self): - return _mscl.WirelessNode_getDefaultMode(self) - - def getInactivityTimeout(self): - return _mscl.WirelessNode_getInactivityTimeout(self) - - def getCheckRadioInterval(self): - return _mscl.WirelessNode_getCheckRadioInterval(self) - - def getTransmitPower(self): - return _mscl.WirelessNode_getTransmitPower(self) - - def getSamplingMode(self): - return _mscl.WirelessNode_getSamplingMode(self) - - def getActiveChannels(self): - return _mscl.WirelessNode_getActiveChannels(self) - - def getSampleRate(self): - return _mscl.WirelessNode_getSampleRate(self) - - def getNumSweeps(self): - return _mscl.WirelessNode_getNumSweeps(self) - - def getUnlimitedDuration(self): - return _mscl.WirelessNode_getUnlimitedDuration(self) - - def getDataFormat(self): - return _mscl.WirelessNode_getDataFormat(self) - - def getDataCollectionMethod(self): - return _mscl.WirelessNode_getDataCollectionMethod(self) - - def getTimeBetweenBursts(self): - return _mscl.WirelessNode_getTimeBetweenBursts(self) - - def getLostBeaconTimeout(self): - return _mscl.WirelessNode_getLostBeaconTimeout(self) - - def getInputRange(self, mask): - return _mscl.WirelessNode_getInputRange(self, mask) - - def getHardwareOffset(self, mask): - return _mscl.WirelessNode_getHardwareOffset(self, mask) - - def getAntiAliasingFilter(self, mask): - return _mscl.WirelessNode_getAntiAliasingFilter(self, mask) - - def getCfcFilterConfiguration(self): - return _mscl.WirelessNode_getCfcFilterConfiguration(self) - - def getLowPassFilter(self, mask): - return _mscl.WirelessNode_getLowPassFilter(self, mask) - - def getHighPassFilter(self, mask): - return _mscl.WirelessNode_getHighPassFilter(self, mask) - - def getDebounceFilter(self, mask): - return _mscl.WirelessNode_getDebounceFilter(self, mask) - - def getPullUpResistor(self, mask): - return _mscl.WirelessNode_getPullUpResistor(self, mask) - - def getSensorOutputMode(self): - return _mscl.WirelessNode_getSensorOutputMode(self) - - def getGaugeFactor(self, mask): - return _mscl.WirelessNode_getGaugeFactor(self, mask) - - def getExcitationVoltage(self): - return _mscl.WirelessNode_getExcitationVoltage(self) - - def getAdcVoltageRef(self): - return _mscl.WirelessNode_getAdcVoltageRef(self) - - def getGainAmplifierVoltageRef(self): - return _mscl.WirelessNode_getGainAmplifierVoltageRef(self) - - def getGaugeResistance(self): - return _mscl.WirelessNode_getGaugeResistance(self) - - def getNumActiveGauges(self): - return _mscl.WirelessNode_getNumActiveGauges(self) - - def getLowBatteryThreshold(self): - return _mscl.WirelessNode_getLowBatteryThreshold(self) - - def getLinearEquation(self, mask): - return _mscl.WirelessNode_getLinearEquation(self, mask) - - def getUnit(self, mask): - return _mscl.WirelessNode_getUnit(self, mask) - - def getEquationType(self, mask): - return _mscl.WirelessNode_getEquationType(self, mask) - - def getFactoryCalibrationLinearEq(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationLinearEq(self, mask) - - def getFactoryCalibrationUnit(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationUnit(self, mask) - - def getFactoryCalibrationEqType(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationEqType(self, mask) - - def getFilterSettlingTime(self, mask): - return _mscl.WirelessNode_getFilterSettlingTime(self, mask) - - def getThermocoupleType(self, mask): - return _mscl.WirelessNode_getThermocoupleType(self, mask) - - def getTempSensorOptions(self, mask): - return _mscl.WirelessNode_getTempSensorOptions(self, mask) - - def getFatigueOptions(self): - return _mscl.WirelessNode_getFatigueOptions(self) - - def getHistogramOptions(self): - return _mscl.WirelessNode_getHistogramOptions(self) - - def getActivitySense(self): - return _mscl.WirelessNode_getActivitySense(self) - - def getEventTriggerOptions(self): - return _mscl.WirelessNode_getEventTriggerOptions(self) - - def getDiagnosticInterval(self): - return _mscl.WirelessNode_getDiagnosticInterval(self) - - def getStorageLimitMode(self): - return _mscl.WirelessNode_getStorageLimitMode(self) - - def getSensorDelay(self): - return _mscl.WirelessNode_getSensorDelay(self) - - def getDataMode(self): - return _mscl.WirelessNode_getDataMode(self) - - def getDerivedDataRate(self): - return _mscl.WirelessNode_getDerivedDataRate(self) - - def getDerivedChannelMask(self, category): - return _mscl.WirelessNode_getDerivedChannelMask(self, category) - - def getDerivedVelocityUnit(self): - return _mscl.WirelessNode_getDerivedVelocityUnit(self) - -# Register WirelessNode in _mscl: -_mscl.WirelessNode_swigregister(WirelessNode) - -def WirelessNode_Mock(*args): - return _mscl.WirelessNode_Mock(*args) - -def WirelessNode_deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - -class DatalogDownloader(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.DatalogDownloader_swiginit(self, _mscl.new_DatalogDownloader(*args)) - __swig_destroy__ = _mscl.delete_DatalogDownloader - - def complete(self): - return _mscl.DatalogDownloader_complete(self) - - def percentComplete(self): - return _mscl.DatalogDownloader_percentComplete(self) - - def getNextData(self): - return _mscl.DatalogDownloader_getNextData(self) - - def metaDataUpdated(self): - return _mscl.DatalogDownloader_metaDataUpdated(self) - - def calCoefficientsUpdated(self): - return _mscl.DatalogDownloader_calCoefficientsUpdated(self) - - def startOfSession(self): - return _mscl.DatalogDownloader_startOfSession(self) - - def sessionIndex(self): - return _mscl.DatalogDownloader_sessionIndex(self) - - def sampleRate(self): - return _mscl.DatalogDownloader_sampleRate(self) - - def userString(self): - return _mscl.DatalogDownloader_userString(self) - - def calCoefficients(self): - return _mscl.DatalogDownloader_calCoefficients(self) - -# Register DatalogDownloader in _mscl: -_mscl.DatalogDownloader_swigregister(DatalogDownloader) - -class ArmedDataloggingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.ArmedDataloggingNetwork_swiginit(self, _mscl.new_ArmedDataloggingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.ArmedDataloggingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.ArmedDataloggingNetwork_removeNode(self, nodeAddress) - - def startSampling(self): - return _mscl.ArmedDataloggingNetwork_startSampling(self) - __swig_destroy__ = _mscl.delete_ArmedDataloggingNetwork - -# Register ArmedDataloggingNetwork in _mscl: -_mscl.ArmedDataloggingNetwork_swigregister(ArmedDataloggingNetwork) - -class SyncNetworkInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - status_OK = _mscl.SyncNetworkInfo_status_OK - status_PoorCommunication = _mscl.SyncNetworkInfo_status_PoorCommunication - status_DoesNotFit = _mscl.SyncNetworkInfo_status_DoesNotFit - status_Contention = _mscl.SyncNetworkInfo_status_Contention - - def __init__(self, node): - _mscl.SyncNetworkInfo_swiginit(self, _mscl.new_SyncNetworkInfo(node)) - - def status(self): - return _mscl.SyncNetworkInfo_status(self) - - def startedSampling(self): - return _mscl.SyncNetworkInfo_startedSampling(self) - - def configurationApplied(self): - return _mscl.SyncNetworkInfo_configurationApplied(self) - - def percentBandwidth(self): - return _mscl.SyncNetworkInfo_percentBandwidth(self) - - def tdmaAddress(self): - return _mscl.SyncNetworkInfo_tdmaAddress(self) - - def maxTdmaAddress(self): - return _mscl.SyncNetworkInfo_maxTdmaAddress(self) - - def transmissionPerGroup(self): - return _mscl.SyncNetworkInfo_transmissionPerGroup(self) - - def groupSize(self): - return _mscl.SyncNetworkInfo_groupSize(self) - __swig_destroy__ = _mscl.delete_SyncNetworkInfo - -# Register SyncNetworkInfo in _mscl: -_mscl.SyncNetworkInfo_swigregister(SyncNetworkInfo) - -class SyncSamplingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.SyncSamplingNetwork_swiginit(self, _mscl.new_SyncSamplingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.SyncSamplingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.SyncSamplingNetwork_removeNode(self, nodeAddress) - - def percentBandwidth(self): - return _mscl.SyncSamplingNetwork_percentBandwidth(self) - - def ok(self): - return _mscl.SyncSamplingNetwork_ok(self) - - def refresh(self): - return _mscl.SyncSamplingNetwork_refresh(self) - - def lossless(self, *args): - return _mscl.SyncSamplingNetwork_lossless(self, *args) - - def communicationProtocol(self, *args): - return _mscl.SyncSamplingNetwork_communicationProtocol(self, *args) - - def applyConfiguration(self): - return _mscl.SyncSamplingNetwork_applyConfiguration(self) - - def startSampling(self, *args): - return _mscl.SyncSamplingNetwork_startSampling(self, *args) - - def startSampling_noBeacon(self): - return _mscl.SyncSamplingNetwork_startSampling_noBeacon(self) - - def getNodeNetworkInfo(self, nodeAddress): - return _mscl.SyncSamplingNetwork_getNodeNetworkInfo(self, nodeAddress) - __swig_destroy__ = _mscl.delete_SyncSamplingNetwork - -# Register SyncSamplingNetwork in _mscl: -_mscl.SyncSamplingNetwork_swigregister(SyncSamplingNetwork) - -class NodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_NodeFeatures - - def normalizeNumSweeps(self, sweeps): - return _mscl.NodeFeatures_normalizeNumSweeps(self, sweeps) - - def normalizeTimeBetweenBursts(self, time): - return _mscl.NodeFeatures_normalizeTimeBetweenBursts(self, time) - - def channels(self): - return _mscl.NodeFeatures_channels(self) - - def channelGroups(self): - return _mscl.NodeFeatures_channelGroups(self) - - def channelType(self, channelNumber): - return _mscl.NodeFeatures_channelType(self, channelNumber) - - def supportsChannelSetting(self, setting, mask): - return _mscl.NodeFeatures_supportsChannelSetting(self, setting, mask) - - def supportsInputRangePerExcitationVoltage(self): - return _mscl.NodeFeatures_supportsInputRangePerExcitationVoltage(self) - - def supportsHardwareOffset(self): - return _mscl.NodeFeatures_supportsHardwareOffset(self) - - def supportsAntiAliasingFilter(self): - return _mscl.NodeFeatures_supportsAntiAliasingFilter(self) - - def supportsLowPassFilter(self): - return _mscl.NodeFeatures_supportsLowPassFilter(self) - - def supportsHighPassFilter(self): - return _mscl.NodeFeatures_supportsHighPassFilter(self) - - def supportsGaugeFactor(self): - return _mscl.NodeFeatures_supportsGaugeFactor(self) - - def supportsGaugeResistance(self): - return _mscl.NodeFeatures_supportsGaugeResistance(self) - - def supportsNumActiveGauges(self): - return _mscl.NodeFeatures_supportsNumActiveGauges(self) - - def supportsLostBeaconTimeout(self): - return _mscl.NodeFeatures_supportsLostBeaconTimeout(self) - - def supportsPullUpResistor(self): - return _mscl.NodeFeatures_supportsPullUpResistor(self) - - def supportsFilterSettlingTime(self): - return _mscl.NodeFeatures_supportsFilterSettlingTime(self) - - def supportsThermocoupleType(self): - return _mscl.NodeFeatures_supportsThermocoupleType(self) - - def supportsTempSensorOptions(self): - return _mscl.NodeFeatures_supportsTempSensorOptions(self) - - def supportsDebounceFilter(self): - return _mscl.NodeFeatures_supportsDebounceFilter(self) - - def supportsFatigueConfig(self): - return _mscl.NodeFeatures_supportsFatigueConfig(self) - - def supportsYoungsModConfig(self): - return _mscl.NodeFeatures_supportsYoungsModConfig(self) - - def supportsPoissonsRatioConfig(self): - return _mscl.NodeFeatures_supportsPoissonsRatioConfig(self) - - def supportsFatigueDebugModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueDebugModeConfig(self) - - def supportsFatigueModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueModeConfig(self) - - def supportsHistogramConfig(self): - return _mscl.NodeFeatures_supportsHistogramConfig(self) - - def supportsHistogramRateConfig(self): - return _mscl.NodeFeatures_supportsHistogramRateConfig(self) - - def supportsHistogramEnableConfig(self): - return _mscl.NodeFeatures_supportsHistogramEnableConfig(self) - - def supportsActivitySense(self): - return _mscl.NodeFeatures_supportsActivitySense(self) - - def supportsAutoBalance(self): - return _mscl.NodeFeatures_supportsAutoBalance(self) - - def supportsLegacyShuntCal(self): - return _mscl.NodeFeatures_supportsLegacyShuntCal(self) - - def supportsAutoCal_shm(self): - return _mscl.NodeFeatures_supportsAutoCal_shm(self) - - def supportsAutoCal_shm201(self): - return _mscl.NodeFeatures_supportsAutoCal_shm201(self) - - def supportsAutoShuntCal(self): - return _mscl.NodeFeatures_supportsAutoShuntCal(self) - - def supportsGetFactoryCal(self): - return _mscl.NodeFeatures_supportsGetFactoryCal(self) - - def supportsLimitedDuration(self): - return _mscl.NodeFeatures_supportsLimitedDuration(self) - - def supportsEventTrigger(self): - return _mscl.NodeFeatures_supportsEventTrigger(self) - - def supportsDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsDiagnosticInfo(self) - - def supportsLoggedData(self): - return _mscl.NodeFeatures_supportsLoggedData(self) - - def supportsPoll(self): - return _mscl.NodeFeatures_supportsPoll(self) - - def supportsSensorDelayConfig(self): - return _mscl.NodeFeatures_supportsSensorDelayConfig(self) - - def supportsSensorDelayAlwaysOn(self): - return _mscl.NodeFeatures_supportsSensorDelayAlwaysOn(self) - - def supportsSensorOutputMode(self): - return _mscl.NodeFeatures_supportsSensorOutputMode(self) - - def supportsCfcFilterConfiguration(self): - return _mscl.NodeFeatures_supportsCfcFilterConfiguration(self) - - def supportsChannel(self, channelNumber): - return _mscl.NodeFeatures_supportsChannel(self, channelNumber) - - def supportsSamplingMode(self, samplingMode): - return _mscl.NodeFeatures_supportsSamplingMode(self, samplingMode) - - def supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.NodeFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsDataFormat(self, dataFormat): - return _mscl.NodeFeatures_supportsDataFormat(self, dataFormat) - - def supportsDefaultMode(self, mode): - return _mscl.NodeFeatures_supportsDefaultMode(self, mode) - - def supportsDataCollectionMethod(self, collectionMethod): - return _mscl.NodeFeatures_supportsDataCollectionMethod(self, collectionMethod) - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.NodeFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsDataMode(self, dataMode): - return _mscl.NodeFeatures_supportsDataMode(self, dataMode) - - def supportsTransducerType(self, transducerType): - return _mscl.NodeFeatures_supportsTransducerType(self, transducerType) - - def supportsFatigueMode(self, mode): - return _mscl.NodeFeatures_supportsFatigueMode(self, mode) - - def supportsInputRange(self, *args): - return _mscl.NodeFeatures_supportsInputRange(self, *args) - - def supportsCentisecondEventDuration(self): - return _mscl.NodeFeatures_supportsCentisecondEventDuration(self) - - def supportsGetDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsGetDiagnosticInfo(self) - - def supportsNonSyncLogWithTimestamps(self): - return _mscl.NodeFeatures_supportsNonSyncLogWithTimestamps(self) - - def supportsDerivedCategory(self, category): - return _mscl.NodeFeatures_supportsDerivedCategory(self, category) - - def supportsRawDataMode(self): - return _mscl.NodeFeatures_supportsRawDataMode(self) - - def supportsDerivedDataMode(self): - return _mscl.NodeFeatures_supportsDerivedDataMode(self) - - def supportsDerivedVelocityUnitConfig(self): - return _mscl.NodeFeatures_supportsDerivedVelocityUnitConfig(self) - - def supportsExcitationVoltageConfig(self): - return _mscl.NodeFeatures_supportsExcitationVoltageConfig(self) - - def supportsLowBatteryThresholdConfig(self): - return _mscl.NodeFeatures_supportsLowBatteryThresholdConfig(self) - - def maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode) - - def maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode) - - def maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels): - return _mscl.NodeFeatures_maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels) - - def maxFilterSettlingTime(self, rate): - return _mscl.NodeFeatures_maxFilterSettlingTime(self, rate) - - def minInactivityTimeout(self): - return _mscl.NodeFeatures_minInactivityTimeout(self) - - def minLostBeaconTimeout(self): - return _mscl.NodeFeatures_minLostBeaconTimeout(self) - - def maxLostBeaconTimeout(self): - return _mscl.NodeFeatures_maxLostBeaconTimeout(self) - - def minCheckRadioInterval(self): - return _mscl.NodeFeatures_minCheckRadioInterval(self) - - def maxCheckRadioInterval(self): - return _mscl.NodeFeatures_maxCheckRadioInterval(self) - - def minSweeps(self): - return _mscl.NodeFeatures_minSweeps(self) - - def maxSweeps(self, samplingMode, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweeps(self, samplingMode, dataMode, dataFormat, channels) - - def maxSweepsPerBurst(self, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweepsPerBurst(self, dataMode, dataFormat, channels) - - def minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol): - return _mscl.NodeFeatures_minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol) - - def minSensorDelay(self): - return _mscl.NodeFeatures_minSensorDelay(self) - - def maxSensorDelay(self): - return _mscl.NodeFeatures_maxSensorDelay(self) - - def defaultSensorDelay(self): - return _mscl.NodeFeatures_defaultSensorDelay(self) - - def maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate): - return _mscl.NodeFeatures_maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate) - - def normalizeEventDuration(self, duration): - return _mscl.NodeFeatures_normalizeEventDuration(self, duration) - - def normalizeSensorDelay(self, delay): - return _mscl.NodeFeatures_normalizeSensorDelay(self, delay) - - def numDamageAngles(self): - return _mscl.NodeFeatures_numDamageAngles(self) - - def numSnCurveSegments(self): - return _mscl.NodeFeatures_numSnCurveSegments(self) - - def numEventTriggers(self): - return _mscl.NodeFeatures_numEventTriggers(self) - - def defaultModes(self): - return _mscl.NodeFeatures_defaultModes(self) - - def dataCollectionMethods(self): - return _mscl.NodeFeatures_dataCollectionMethods(self) - - def dataFormats(self): - return _mscl.NodeFeatures_dataFormats(self) - - def samplingModes(self): - return _mscl.NodeFeatures_samplingModes(self) - - def sampleRates(self, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_sampleRates(self, samplingMode, dataCollectionMethod, dataMode) - - def derivedDataRates(self): - return _mscl.NodeFeatures_derivedDataRates(self) - - def transmitPowers(self, *args): - return _mscl.NodeFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.NodeFeatures_commProtocols(self) - - def sensorOutputModes(self): - return _mscl.NodeFeatures_sensorOutputModes(self) - - def cfcFilters(self): - return _mscl.NodeFeatures_cfcFilters(self) - - def histogramTransmitRates(self): - return _mscl.NodeFeatures_histogramTransmitRates(self) - - def fatigueModes(self): - return _mscl.NodeFeatures_fatigueModes(self) - - def antiAliasingFilters(self): - return _mscl.NodeFeatures_antiAliasingFilters(self) - - def lowPassFilters(self): - return _mscl.NodeFeatures_lowPassFilters(self) - - def highPassFilters(self): - return _mscl.NodeFeatures_highPassFilters(self) - - def storageLimitModes(self): - return _mscl.NodeFeatures_storageLimitModes(self) - - def inputRanges(self, *args): - return _mscl.NodeFeatures_inputRanges(self, *args) - - def dataModes(self): - return _mscl.NodeFeatures_dataModes(self) - - def transducerTypes(self): - return _mscl.NodeFeatures_transducerTypes(self) - - def channelsPerDerivedCategory(self): - return _mscl.NodeFeatures_channelsPerDerivedCategory(self) - - def excitationVoltages(self): - return _mscl.NodeFeatures_excitationVoltages(self) - - def adcVoltageInputType(self): - return _mscl.NodeFeatures_adcVoltageInputType(self) - - def maxTransmitPower(self, *args): - return _mscl.NodeFeatures_maxTransmitPower(self, *args) - - def minTransmitPower(self, *args): - return _mscl.NodeFeatures_minTransmitPower(self, *args) - -# Register NodeFeatures in _mscl: -_mscl.NodeFeatures_swigregister(NodeFeatures) - -class BaseStationFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_BaseStationFeatures - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.BaseStationFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.BaseStationFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsButtons(self): - return _mscl.BaseStationFeatures_supportsButtons(self) - - def supportsAnalogPairing(self): - return _mscl.BaseStationFeatures_supportsAnalogPairing(self) - - def supportsBeaconStatus(self): - return _mscl.BaseStationFeatures_supportsBeaconStatus(self) - - def supportsRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsRfSweepMode(self) - - def supportsCustomRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsCustomRfSweepMode(self) - - def buttonCount(self): - return _mscl.BaseStationFeatures_buttonCount(self) - - def analogPortCount(self): - return _mscl.BaseStationFeatures_analogPortCount(self) - - def transmitPowers(self, *args): - return _mscl.BaseStationFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.BaseStationFeatures_commProtocols(self) - - def maxTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_maxTransmitPower(self, region, commProtocol) - - def minTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_minTransmitPower(self, region, commProtocol) - -# Register BaseStationFeatures in _mscl: -_mscl.BaseStationFeatures_swigregister(BaseStationFeatures) - -class EulerAngles(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EulerAngles_swiginit(self, _mscl.new_EulerAngles(*args)) - - def asMipFieldValues(self): - return _mscl.EulerAngles_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.EulerAngles_appendMipFieldValues(self, appendTo) - - def roll(self): - return _mscl.EulerAngles_roll(self) - - def pitch(self): - return _mscl.EulerAngles_pitch(self) - - def yaw(self): - return _mscl.EulerAngles_yaw(self) - - def heading(self): - return _mscl.EulerAngles_heading(self) - __swig_destroy__ = _mscl.delete_EulerAngles - -# Register EulerAngles in _mscl: -_mscl.EulerAngles_swigregister(EulerAngles) - -class Quaternion(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Quaternion_swiginit(self, _mscl.new_Quaternion(*args)) - - def asMipFieldValues(self): - return _mscl.Quaternion_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Quaternion_appendMipFieldValues(self, appendTo) - - def normalize(self): - return _mscl.Quaternion_normalize(self) - - def q0(self): - return _mscl.Quaternion_q0(self) - - def q1(self): - return _mscl.Quaternion_q1(self) - - def q2(self): - return _mscl.Quaternion_q2(self) - - def q3(self): - return _mscl.Quaternion_q3(self) - __swig_destroy__ = _mscl.delete_Quaternion - -# Register Quaternion in _mscl: -_mscl.Quaternion_swigregister(Quaternion) - -class Rotation(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EULER_ANGLES = _mscl.Rotation_EULER_ANGLES - QUATERNION = _mscl.Rotation_QUATERNION - - def __init__(self, *args): - _mscl.Rotation_swiginit(self, _mscl.new_Rotation(*args)) - - @staticmethod - def FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - - @staticmethod - def FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - - def asEulerAngles(self): - return _mscl.Rotation_asEulerAngles(self) - - def asQuaternion(self): - return _mscl.Rotation_asQuaternion(self) - - def asMipFieldValues(self, includeFormat=True): - return _mscl.Rotation_asMipFieldValues(self, includeFormat) - - def appendMipFieldValues(self, appendTo, includeFormat=True): - return _mscl.Rotation_appendMipFieldValues(self, appendTo, includeFormat) - - def format(self): - return _mscl.Rotation_format(self) - __swig_destroy__ = _mscl.delete_Rotation - -# Register Rotation in _mscl: -_mscl.Rotation_swigregister(Rotation) - -def Rotation_FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - -def Rotation_FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - -class Vec3f(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Vec3f_swiginit(self, _mscl.new_Vec3f(*args)) - __swig_destroy__ = _mscl.delete_Vec3f - - def fromMipFieldValues(self, data, offset=0): - return _mscl.Vec3f_fromMipFieldValues(self, data, offset) - - def asMipFieldValues(self): - return _mscl.Vec3f_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Vec3f_appendMipFieldValues(self, appendTo) - - def x(self, *args): - return _mscl.Vec3f_x(self, *args) - - def y(self, *args): - return _mscl.Vec3f_y(self, *args) - - def z(self, *args): - return _mscl.Vec3f_z(self, *args) - -# Register Vec3f in _mscl: -_mscl.Vec3f_swigregister(Vec3f) - -ECEF = _mscl.ECEF -LLH_NED = _mscl.LLH_NED -LOCAL = _mscl.LOCAL -VEHICLE = _mscl.VEHICLE -class GeometricVector(Vec3f): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - - @staticmethod - def VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - - def __init__(self, *args): - _mscl.GeometricVector_swiginit(self, _mscl.new_GeometricVector(*args)) - __swig_destroy__ = _mscl.delete_GeometricVector - - def fromMipFieldValues_includesFrame(self, data, offset=0): - return _mscl.GeometricVector_fromMipFieldValues_includesFrame(self, data, offset) - - def asMipFieldValues_includeFrame(self): - return _mscl.GeometricVector_asMipFieldValues_includeFrame(self) - - def appendMipFieldValues_includeFrame(self, appendTo): - return _mscl.GeometricVector_appendMipFieldValues_includeFrame(self, appendTo) - referenceFrame = property(_mscl.GeometricVector_referenceFrame_get, _mscl.GeometricVector_referenceFrame_set) - - def north(self, *args): - return _mscl.GeometricVector_north(self, *args) - - def east(self, *args): - return _mscl.GeometricVector_east(self, *args) - - def down(self, *args): - return _mscl.GeometricVector_down(self, *args) - -# Register GeometricVector in _mscl: -_mscl.GeometricVector_swigregister(GeometricVector) - -def GeometricVector_VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - -def GeometricVector_VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - -class PositionOffset(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.PositionOffset_swiginit(self, _mscl.new_PositionOffset(*args)) - __swig_destroy__ = _mscl.delete_PositionOffset - -# Register PositionOffset in _mscl: -_mscl.PositionOffset_swigregister(PositionOffset) - -class Velocity(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Velocity_swiginit(self, _mscl.new_Velocity(*args)) - __swig_destroy__ = _mscl.delete_Velocity - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - - @staticmethod - def NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - - @staticmethod - def Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -# Register Velocity in _mscl: -_mscl.Velocity_swigregister(Velocity) - -def Velocity_ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - -def Velocity_NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - -def Velocity_Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -class Position(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - - def __init__(self, *args): - _mscl.Position_swiginit(self, _mscl.new_Position(*args)) - __swig_destroy__ = _mscl.delete_Position - referenceFrame = property(_mscl.Position_referenceFrame_get, _mscl.Position_referenceFrame_set) - - def latitude(self, *args): - return _mscl.Position_latitude(self, *args) - - def longitude(self, *args): - return _mscl.Position_longitude(self, *args) - - def altitude(self, *args): - return _mscl.Position_altitude(self, *args) - - def height(self, *args): - return _mscl.Position_height(self, *args) - - def x(self, *args): - return _mscl.Position_x(self, *args) - - def y(self, *args): - return _mscl.Position_y(self, *args) - - def z(self, *args): - return _mscl.Position_z(self, *args) - -# Register Position in _mscl: -_mscl.Position_swigregister(Position) - -def Position_LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - -def Position_ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - -class GeometricUncertainty(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeometricUncertainty_swiginit(self, _mscl.new_GeometricUncertainty(*args)) - __swig_destroy__ = _mscl.delete_GeometricUncertainty - -# Register GeometricUncertainty in _mscl: -_mscl.GeometricUncertainty_swigregister(GeometricUncertainty) - -class MipModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_3dm_dh3 = _mscl.MipModels_node_3dm_dh3 - node_3dm_gx3_15 = _mscl.MipModels_node_3dm_gx3_15 - node_3dm_gx3_25 = _mscl.MipModels_node_3dm_gx3_25 - node_3dm_gx3_35 = _mscl.MipModels_node_3dm_gx3_35 - node_3dm_gx3_45 = _mscl.MipModels_node_3dm_gx3_45 - node_3dm_rq1_45_lt = _mscl.MipModels_node_3dm_rq1_45_lt - node_3dm_gx4_15 = _mscl.MipModels_node_3dm_gx4_15 - node_3dm_gx4_25 = _mscl.MipModels_node_3dm_gx4_25 - node_3dm_gx4_45 = _mscl.MipModels_node_3dm_gx4_45 - node_3dm_rq1_45_st = _mscl.MipModels_node_3dm_rq1_45_st - node_mv5_ar = _mscl.MipModels_node_mv5_ar - node_3dm_gx5_10 = _mscl.MipModels_node_3dm_gx5_10 - node_3dm_gx5_15 = _mscl.MipModels_node_3dm_gx5_15 - node_3dm_gx5_25 = _mscl.MipModels_node_3dm_gx5_25 - node_3dm_gx5_35 = _mscl.MipModels_node_3dm_gx5_35 - node_3dm_gx5_45 = _mscl.MipModels_node_3dm_gx5_45 - node_3dm_cv5_10 = _mscl.MipModels_node_3dm_cv5_10 - node_3dm_cv5_15 = _mscl.MipModels_node_3dm_cv5_15 - node_3dm_cv5_25 = _mscl.MipModels_node_3dm_cv5_25 - node_3dm_cv5_45 = _mscl.MipModels_node_3dm_cv5_45 - node_3dm_gq4_45 = _mscl.MipModels_node_3dm_gq4_45 - node_3dm_cx5_45 = _mscl.MipModels_node_3dm_cx5_45 - node_3dm_cx5_35 = _mscl.MipModels_node_3dm_cx5_35 - node_3dm_cx5_25 = _mscl.MipModels_node_3dm_cx5_25 - node_3dm_cx5_15 = _mscl.MipModels_node_3dm_cx5_15 - node_3dm_cx5_10 = _mscl.MipModels_node_3dm_cx5_10 - node_3dm_cl5_15 = _mscl.MipModels_node_3dm_cl5_15 - node_3dm_cl5_25 = _mscl.MipModels_node_3dm_cl5_25 - node_3dm_gq7 = _mscl.MipModels_node_3dm_gq7 - node_3dm_rtk = _mscl.MipModels_node_3dm_rtk - node_3dm_cv7_ahrs = _mscl.MipModels_node_3dm_cv7_ahrs - node_3dm_cv7_ar = _mscl.MipModels_node_3dm_cv7_ar - node_3dm_gv7_ahrs = _mscl.MipModels_node_3dm_gv7_ahrs - node_3dm_gv7_ar = _mscl.MipModels_node_3dm_gv7_ar - node_3dm_gv7_ins = _mscl.MipModels_node_3dm_gv7_ins - node_3dm_cv7_ins = _mscl.MipModels_node_3dm_cv7_ins - node_3dm_cv7_gnss_ins = _mscl.MipModels_node_3dm_cv7_gnss_ins - placeholder_matchAll = _mscl.MipModels_placeholder_matchAll - rtk_v1 = _mscl.MipModels_rtk_v1 - rtk_v2 = _mscl.MipModels_rtk_v2 - model_3dm_dh3 = _mscl.MipModels_model_3dm_dh3 - model_3dm_gx3_15 = _mscl.MipModels_model_3dm_gx3_15 - model_3dm_gx3_25 = _mscl.MipModels_model_3dm_gx3_25 - model_3dm_gx3_35 = _mscl.MipModels_model_3dm_gx3_35 - model_3dm_gx3_45 = _mscl.MipModels_model_3dm_gx3_45 - model_3dm_rq1_45_lt = _mscl.MipModels_model_3dm_rq1_45_lt - model_3dm_gx4_15 = _mscl.MipModels_model_3dm_gx4_15 - model_3dm_gx4_25 = _mscl.MipModels_model_3dm_gx4_25 - model_3dm_gx4_45 = _mscl.MipModels_model_3dm_gx4_45 - model_3dm_rq1_45_st = _mscl.MipModels_model_3dm_rq1_45_st - model_mv5_ar = _mscl.MipModels_model_mv5_ar - model_3dm_gx5_10 = _mscl.MipModels_model_3dm_gx5_10 - model_3dm_gx5_15 = _mscl.MipModels_model_3dm_gx5_15 - model_3dm_gx5_25 = _mscl.MipModels_model_3dm_gx5_25 - model_3dm_gx5_35 = _mscl.MipModels_model_3dm_gx5_35 - model_3dm_gx5_45 = _mscl.MipModels_model_3dm_gx5_45 - model_3dm_cv5_10 = _mscl.MipModels_model_3dm_cv5_10 - model_3dm_cv5_15 = _mscl.MipModels_model_3dm_cv5_15 - model_3dm_cv5_25 = _mscl.MipModels_model_3dm_cv5_25 - model_3dm_cv5_45 = _mscl.MipModels_model_3dm_cv5_45 - model_3dm_gq4_45 = _mscl.MipModels_model_3dm_gq4_45 - model_3dm_cx5_45 = _mscl.MipModels_model_3dm_cx5_45 - model_3dm_cx5_35 = _mscl.MipModels_model_3dm_cx5_35 - model_3dm_cx5_25 = _mscl.MipModels_model_3dm_cx5_25 - model_3dm_cx5_15 = _mscl.MipModels_model_3dm_cx5_15 - model_3dm_cx5_10 = _mscl.MipModels_model_3dm_cx5_10 - model_3dm_cl5_15 = _mscl.MipModels_model_3dm_cl5_15 - model_3dm_cl5_25 = _mscl.MipModels_model_3dm_cl5_25 - model_3dm_gq7 = _mscl.MipModels_model_3dm_gq7 - model_3dm_rtk_v1 = _mscl.MipModels_model_3dm_rtk_v1 - model_3dm_rtk = _mscl.MipModels_model_3dm_rtk - model_3dm_cv7_ahrs = _mscl.MipModels_model_3dm_cv7_ahrs - model_3dm_cv7_ar = _mscl.MipModels_model_3dm_cv7_ar - model_3dm_gv7_ahrs = _mscl.MipModels_model_3dm_gv7_ahrs - model_3dm_gv7_ar = _mscl.MipModels_model_3dm_gv7_ar - model_3dm_gv7_ins = _mscl.MipModels_model_3dm_gv7_ins - model_3dm_cv7_ins = _mscl.MipModels_model_3dm_cv7_ins - model_3dm_cv7_gnss_ins = _mscl.MipModels_model_3dm_cv7_gnss_ins - - @staticmethod - def modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - - @staticmethod - def modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - - @staticmethod - def modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - - @staticmethod - def nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - - @staticmethod - def modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - - @staticmethod - def nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - - @staticmethod - def modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - - @staticmethod - def stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - - def __init__(self): - _mscl.MipModels_swiginit(self, _mscl.new_MipModels()) - __swig_destroy__ = _mscl.delete_MipModels - -# Register MipModels in _mscl: -_mscl.MipModels_swigregister(MipModels) - -def MipModels_modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - -def MipModels_modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - -def MipModels_modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - -def MipModels_nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - -def MipModels_modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - -def MipModels_nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - -def MipModels_modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - -def MipModels_stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - -class MipModel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipModel_swiginit(self, _mscl.new_MipModel(*args)) - - def equals(self, compare): - return _mscl.MipModel_equals(self, compare) - - def __str__(self): - return _mscl.MipModel___str__(self) - - def nodeModel(self): - return _mscl.MipModel_nodeModel(self) - - def modifier(self): - return _mscl.MipModel_modifier(self) - - def modelNumber(self): - return _mscl.MipModel_modelNumber(self) - - def baseModel(self): - return _mscl.MipModel_baseModel(self) - __swig_destroy__ = _mscl.delete_MipModel - -# Register MipModel in _mscl: -_mscl.MipModel_swigregister(MipModel) -MipModel.mip_model_none = _mscl.cvar.MipModel_mip_model_none -MipModel.mip_model_3dm_dh3 = _mscl.cvar.MipModel_mip_model_3dm_dh3 -MipModel.mip_model_3dm_gx3_15 = _mscl.cvar.MipModel_mip_model_3dm_gx3_15 -MipModel.mip_model_3dm_gx3_25 = _mscl.cvar.MipModel_mip_model_3dm_gx3_25 -MipModel.mip_model_3dm_gx3_35 = _mscl.cvar.MipModel_mip_model_3dm_gx3_35 -MipModel.mip_model_3dm_gx3_45 = _mscl.cvar.MipModel_mip_model_3dm_gx3_45 -MipModel.mip_model_3dm_rq1_45_lt = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_lt -MipModel.mip_model_3dm_rq1_45_st = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_st -MipModel.mip_model_3dm_gx4_15 = _mscl.cvar.MipModel_mip_model_3dm_gx4_15 -MipModel.mip_model_3dm_gx4_25 = _mscl.cvar.MipModel_mip_model_3dm_gx4_25 -MipModel.mip_model_3dm_gx4_45 = _mscl.cvar.MipModel_mip_model_3dm_gx4_45 -MipModel.mip_model_mv5_ar = _mscl.cvar.MipModel_mip_model_mv5_ar -MipModel.mip_model_3dm_gx5_10 = _mscl.cvar.MipModel_mip_model_3dm_gx5_10 -MipModel.mip_model_3dm_gx5_15 = _mscl.cvar.MipModel_mip_model_3dm_gx5_15 -MipModel.mip_model_3dm_gx5_25 = _mscl.cvar.MipModel_mip_model_3dm_gx5_25 -MipModel.mip_model_3dm_gx5_35 = _mscl.cvar.MipModel_mip_model_3dm_gx5_35 -MipModel.mip_model_3dm_gx5_45 = _mscl.cvar.MipModel_mip_model_3dm_gx5_45 -MipModel.mip_model_3dm_cv5_10 = _mscl.cvar.MipModel_mip_model_3dm_cv5_10 -MipModel.mip_model_3dm_cv5_15 = _mscl.cvar.MipModel_mip_model_3dm_cv5_15 -MipModel.mip_model_3dm_cv5_25 = _mscl.cvar.MipModel_mip_model_3dm_cv5_25 -MipModel.mip_model_3dm_cv5_45 = _mscl.cvar.MipModel_mip_model_3dm_cv5_45 -MipModel.mip_model_3dm_gq4_45 = _mscl.cvar.MipModel_mip_model_3dm_gq4_45 -MipModel.mip_model_3dm_cx5_45 = _mscl.cvar.MipModel_mip_model_3dm_cx5_45 -MipModel.mip_model_3dm_cx5_35 = _mscl.cvar.MipModel_mip_model_3dm_cx5_35 -MipModel.mip_model_3dm_cx5_25 = _mscl.cvar.MipModel_mip_model_3dm_cx5_25 -MipModel.mip_model_3dm_cx5_15 = _mscl.cvar.MipModel_mip_model_3dm_cx5_15 -MipModel.mip_model_3dm_cx5_10 = _mscl.cvar.MipModel_mip_model_3dm_cx5_10 -MipModel.mip_model_3dm_cl5_15 = _mscl.cvar.MipModel_mip_model_3dm_cl5_15 -MipModel.mip_model_3dm_cl5_25 = _mscl.cvar.MipModel_mip_model_3dm_cl5_25 -MipModel.mip_model_3dm_gq7 = _mscl.cvar.MipModel_mip_model_3dm_gq7 -MipModel.mip_model_3dm_rtk_v1 = _mscl.cvar.MipModel_mip_model_3dm_rtk_v1 -MipModel.mip_model_3dm_rtk = _mscl.cvar.MipModel_mip_model_3dm_rtk -MipModel.mip_model_3dm_cv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_cv7_ahrs -MipModel.mip_model_3dm_cv7_ar = _mscl.cvar.MipModel_mip_model_3dm_cv7_ar -MipModel.mip_model_3dm_gv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_gv7_ahrs -MipModel.mip_model_3dm_gv7_ar = _mscl.cvar.MipModel_mip_model_3dm_gv7_ar -MipModel.mip_model_3dm_gv7_ins = _mscl.cvar.MipModel_mip_model_3dm_gv7_ins -MipModel.mip_model_3dm_cv7_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_ins -MipModel.mip_model_3dm_cv7_gnss_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_gnss_ins - -class DisplacementModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_digitalDemod = _mscl.DisplacementModels_node_digitalDemod - - def __init__(self): - _mscl.DisplacementModels_swiginit(self, _mscl.new_DisplacementModels()) - __swig_destroy__ = _mscl.delete_DisplacementModels - -# Register DisplacementModels in _mscl: -_mscl.DisplacementModels_swigregister(DisplacementModels) - -class MipTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CLASS_AHRS_IMU = _mscl.MipTypes_CLASS_AHRS_IMU - CLASS_GNSS = _mscl.MipTypes_CLASS_GNSS - CLASS_ESTFILTER = _mscl.MipTypes_CLASS_ESTFILTER - CLASS_DISPLACEMENT = _mscl.MipTypes_CLASS_DISPLACEMENT - CLASS_GNSS1 = _mscl.MipTypes_CLASS_GNSS1 - CLASS_GNSS2 = _mscl.MipTypes_CLASS_GNSS2 - CLASS_GNSS3 = _mscl.MipTypes_CLASS_GNSS3 - CLASS_RTK = _mscl.MipTypes_CLASS_RTK - CLASS_GNSS4 = _mscl.MipTypes_CLASS_GNSS4 - CLASS_GNSS5 = _mscl.MipTypes_CLASS_GNSS5 - CLASS_SYSTEM = _mscl.MipTypes_CLASS_SYSTEM - USE_NEW_SETTINGS = _mscl.MipTypes_USE_NEW_SETTINGS - READ_BACK_CURRENT_SETTINGS = _mscl.MipTypes_READ_BACK_CURRENT_SETTINGS - SAVE_CURRENT_SETTINGS = _mscl.MipTypes_SAVE_CURRENT_SETTINGS - LOAD_STARTUP_SETTINGS = _mscl.MipTypes_LOAD_STARTUP_SETTINGS - RESET_TO_DEFAULT = _mscl.MipTypes_RESET_TO_DEFAULT - USE_NEW_SETTINGS_NO_ACKNACK = _mscl.MipTypes_USE_NEW_SETTINGS_NO_ACKNACK - DISABLED = _mscl.MipTypes_DISABLED - ENABLED = _mscl.MipTypes_ENABLED - TIME_FRAME_WEEKS = _mscl.MipTypes_TIME_FRAME_WEEKS - TIME_FRAME_SECONDS = _mscl.MipTypes_TIME_FRAME_SECONDS - CMD_PING = _mscl.MipTypes_CMD_PING - CMD_SET_IDLE = _mscl.MipTypes_CMD_SET_IDLE - CMD_GET_DEVICE_INFO = _mscl.MipTypes_CMD_GET_DEVICE_INFO - CMD_GET_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_DESCRIPTOR_SETS - CMD_BUILT_IN_TEST = _mscl.MipTypes_CMD_BUILT_IN_TEST - CMD_RESUME = _mscl.MipTypes_CMD_RESUME - CMD_GET_EXT_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_EXT_DESCRIPTOR_SETS - CMD_COMM_PORT_SPEED = _mscl.MipTypes_CMD_COMM_PORT_SPEED - CMD_GPS_TIME_UPDATE = _mscl.MipTypes_CMD_GPS_TIME_UPDATE - CMD_RESET = _mscl.MipTypes_CMD_RESET - CMD_POLL_SENSOR_DATA = _mscl.MipTypes_CMD_POLL_SENSOR_DATA - CMD_POLL_GNSS_DATA = _mscl.MipTypes_CMD_POLL_GNSS_DATA - CMD_POLL_EF_DATA = _mscl.MipTypes_CMD_POLL_EF_DATA - CMD_GET_SENSOR_RATE_BASE = _mscl.MipTypes_CMD_GET_SENSOR_RATE_BASE - CMD_GET_GNSS_RATE_BASE = _mscl.MipTypes_CMD_GET_GNSS_RATE_BASE - CMD_GET_EF_RATE_BASE = _mscl.MipTypes_CMD_GET_EF_RATE_BASE - CMD_SENSOR_MESSAGE_FORMAT = _mscl.MipTypes_CMD_SENSOR_MESSAGE_FORMAT - CMD_GNSS_MESSAGE_FORMAT = _mscl.MipTypes_CMD_GNSS_MESSAGE_FORMAT - CMD_EF_MESSAGE_FORMAT = _mscl.MipTypes_CMD_EF_MESSAGE_FORMAT - CMD_NMEA_MESSAGE_FORMAT = _mscl.MipTypes_CMD_NMEA_MESSAGE_FORMAT - CMD_POLL = _mscl.MipTypes_CMD_POLL - CMD_GET_BASE_RATE = _mscl.MipTypes_CMD_GET_BASE_RATE - CMD_MESSAGE_FORMAT = _mscl.MipTypes_CMD_MESSAGE_FORMAT - CMD_FACTORY_STREAMING = _mscl.MipTypes_CMD_FACTORY_STREAMING - CMD_CONTINUOUS_DATA_STREAM = _mscl.MipTypes_CMD_CONTINUOUS_DATA_STREAM - CMD_RAW_RTCM_2_3_MESSAGE = _mscl.MipTypes_CMD_RAW_RTCM_2_3_MESSAGE - CMD_GNSS_CONSTELLATION_SETTINGS = _mscl.MipTypes_CMD_GNSS_CONSTELLATION_SETTINGS - CMD_GNSS_SBAS_SETTINGS = _mscl.MipTypes_CMD_GNSS_SBAS_SETTINGS - CMD_GNSS_ASSIST_FIX_CONTROL = _mscl.MipTypes_CMD_GNSS_ASSIST_FIX_CONTROL - CMD_GNSS_ASSIST_TIME_UPDATE = _mscl.MipTypes_CMD_GNSS_ASSIST_TIME_UPDATE - CMD_PPS_SOURCE = _mscl.MipTypes_CMD_PPS_SOURCE - CMD_EVENT_SUPPORT = _mscl.MipTypes_CMD_EVENT_SUPPORT - CMD_EVENT_CONTROL = _mscl.MipTypes_CMD_EVENT_CONTROL - CMD_EVENT_TRIGGER_STATUS = _mscl.MipTypes_CMD_EVENT_TRIGGER_STATUS - CMD_EVENT_ACTION_STATUS = _mscl.MipTypes_CMD_EVENT_ACTION_STATUS - CMD_EVENT_TRIGGER_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_TRIGGER_CONFIGURATION - CMD_EVENT_ACTION_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_ACTION_CONFIGURATION - CMD_SAVE_STARTUP_SETTINGS = _mscl.MipTypes_CMD_SAVE_STARTUP_SETTINGS - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM - CMD_GPS_DYNAMICS_MODE = _mscl.MipTypes_CMD_GPS_DYNAMICS_MODE - CMD_SENSOR_SIG_COND_SETTINGS = _mscl.MipTypes_CMD_SENSOR_SIG_COND_SETTINGS - CMD_SENSOR_TIMESTAMP = _mscl.MipTypes_CMD_SENSOR_TIMESTAMP - CMD_ACCEL_BIAS = _mscl.MipTypes_CMD_ACCEL_BIAS - CMD_GYRO_BIAS = _mscl.MipTypes_CMD_GYRO_BIAS - CMD_CAP_GYRO_BIAS = _mscl.MipTypes_CMD_CAP_GYRO_BIAS - CMD_MAG_HARD_IRON_OFFSET = _mscl.MipTypes_CMD_MAG_HARD_IRON_OFFSET - CMD_MAG_SOFT_IRON_MATRIX = _mscl.MipTypes_CMD_MAG_SOFT_IRON_MATRIX - CMD_CF_REALIGN_UP = _mscl.MipTypes_CMD_CF_REALIGN_UP - CMD_CF_REALIGN_NORTH = _mscl.MipTypes_CMD_CF_REALIGN_NORTH - CMD_CONING_SCULLING = _mscl.MipTypes_CMD_CONING_SCULLING - CMD_UART_BAUD_RATE = _mscl.MipTypes_CMD_UART_BAUD_RATE - CMD_GPIO_CONFIGURATION = _mscl.MipTypes_CMD_GPIO_CONFIGURATION - CMD_GPIO_STATE = _mscl.MipTypes_CMD_GPIO_STATE - CMD_ODOMETER_SETTINGS = _mscl.MipTypes_CMD_ODOMETER_SETTINGS - CMD_LOWPASS_FILTER_SETTINGS = _mscl.MipTypes_CMD_LOWPASS_FILTER_SETTINGS - CMD_COMPLEMENTARY_FILTER_SETTINGS = _mscl.MipTypes_CMD_COMPLEMENTARY_FILTER_SETTINGS - CMD_SENSOR_RANGE = _mscl.MipTypes_CMD_SENSOR_RANGE - CMD_SUPPORTED_SENSOR_RANGES = _mscl.MipTypes_CMD_SUPPORTED_SENSOR_RANGES - CMD_LOWPASS_ANTIALIASING_FILTER = _mscl.MipTypes_CMD_LOWPASS_ANTIALIASING_FILTER - CMD_DATA_STREAM_FORMAT = _mscl.MipTypes_CMD_DATA_STREAM_FORMAT - CMD_POWER_STATES = _mscl.MipTypes_CMD_POWER_STATES - CMD_GPS_STARTUP_SETTINGS = _mscl.MipTypes_CMD_GPS_STARTUP_SETTINGS - CMD_DEVICE_STATUS = _mscl.MipTypes_CMD_DEVICE_STATUS - CMD_EF_RESET_FILTER = _mscl.MipTypes_CMD_EF_RESET_FILTER - CMD_EF_INIT_ATTITUDE = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE - CMD_EF_INIT_HEADING = _mscl.MipTypes_CMD_EF_INIT_HEADING - CMD_EF_INIT_ATTITUDE_FROM_AHRS = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE_FROM_AHRS - CMD_EF_RUN_FILTER = _mscl.MipTypes_CMD_EF_RUN_FILTER - CMD_EF_VEHIC_DYNAMICS_MODE = _mscl.MipTypes_CMD_EF_VEHIC_DYNAMICS_MODE - CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER - CMD_EF_SENS_VEHIC_FRAME_OFFSET = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_OFFSET - CMD_EF_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_ANTENNA_OFFSET - CMD_EF_BIAS_EST_CTRL = _mscl.MipTypes_CMD_EF_BIAS_EST_CTRL - CMD_EF_GNSS_SRC_CTRL = _mscl.MipTypes_CMD_EF_GNSS_SRC_CTRL - CMD_EF_EXTERN_GNSS_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_GNSS_UPDATE - CMD_EF_EXTERN_HEADING_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_HEADING_UPDATE - CMD_EF_HEADING_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_HEADING_UPDATE_CTRL - CMD_EF_AUTO_INIT_CTRL = _mscl.MipTypes_CMD_EF_AUTO_INIT_CTRL - CMD_EF_ACCEL_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_ACCEL_WHT_NSE_STD_DEV - CMD_EF_GYRO_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_GYRO_WHT_NSE_STD_DEV - CMD_EF_ACCEL_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_ACCEL_BIAS_MODEL_PARAMS - CMD_EF_GYRO_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_GYRO_BIAS_MODEL_PARAMS - CMD_EF_ZERO_VEL_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_VEL_UPDATE_CTRL - CMD_EF_EXT_HEADING_UPDATE_TS = _mscl.MipTypes_CMD_EF_EXT_HEADING_UPDATE_TS - CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL - CMD_EF_TARE_ORIENT = _mscl.MipTypes_CMD_EF_TARE_ORIENT - CMD_EF_CMDED_ZERO_VEL_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_VEL_UPDATE - CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE - CMD_EF_SET_REF_POSITION = _mscl.MipTypes_CMD_EF_SET_REF_POSITION - CMD_EF_MAG_CAPTURE_AUTO_CAL = _mscl.MipTypes_CMD_EF_MAG_CAPTURE_AUTO_CAL - CMD_EF_GRAVITY_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_STD_DEV - CMD_EF_PRESS_ALT_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_PRESS_ALT_NOISE_STD_DEV - CMD_EF_GRAVITY_NOISE_MINIMUM = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_MINIMUM - CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE - CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE - CMD_EF_ENABLE_DISABLE_MEASUREMENTS = _mscl.MipTypes_CMD_EF_ENABLE_DISABLE_MEASUREMENTS - CMD_EF_MAG_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_MAG_NOISE_STD_DEV - CMD_EF_DECLINATION_SRC = _mscl.MipTypes_CMD_EF_DECLINATION_SRC - CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE - CMD_EF_ALTITUDE_AID_CTRL = _mscl.MipTypes_CMD_EF_ALTITUDE_AID_CTRL - CMD_EF_PITCH_ROLL_AID_CTRL = _mscl.MipTypes_CMD_EF_PITCH_ROLL_AID_CTRL - CMD_EF_INCLINATION_SRC = _mscl.MipTypes_CMD_EF_INCLINATION_SRC - CMD_EF_FIELD_MAGNITUDE_SRC = _mscl.MipTypes_CMD_EF_FIELD_MAGNITUDE_SRC - CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM - CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT - CMD_EF_AIDING_MEASUREMENT_ENABLE = _mscl.MipTypes_CMD_EF_AIDING_MEASUREMENT_ENABLE - CMD_EF_INITIALIZATION_CONFIG = _mscl.MipTypes_CMD_EF_INITIALIZATION_CONFIG - CMD_EF_ADAPTIVE_FILTER_OPTIONS = _mscl.MipTypes_CMD_EF_ADAPTIVE_FILTER_OPTIONS - CMD_EF_MULTI_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_MULTI_ANTENNA_OFFSET - CMD_EF_RELATIVE_POSITION_REF = _mscl.MipTypes_CMD_EF_RELATIVE_POSITION_REF - CMD_EF_LEVER_ARM_OFFSET_REF = _mscl.MipTypes_CMD_EF_LEVER_ARM_OFFSET_REF - CMD_EF_EXTERN_SPEED_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_SPEED_UPDATE - CMD_EF_SPEED_MEASUREMENT_OFFSET = _mscl.MipTypes_CMD_EF_SPEED_MEASUREMENT_OFFSET - CMD_EF_VERTICAL_GYRO_CONSTRAINT = _mscl.MipTypes_CMD_EF_VERTICAL_GYRO_CONSTRAINT - CMD_EF_WHEELED_VEHICLE_CONSTRAINT = _mscl.MipTypes_CMD_EF_WHEELED_VEHICLE_CONSTRAINT - CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL = _mscl.MipTypes_CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL - CMD_GNSS_RECEIVER_INFO = _mscl.MipTypes_CMD_GNSS_RECEIVER_INFO - CMD_GNSS_SIGNAL_CONFIG = _mscl.MipTypes_CMD_GNSS_SIGNAL_CONFIG - CMD_GNSS_SPARTN_CONFIG = _mscl.MipTypes_CMD_GNSS_SPARTN_CONFIG - CMD_GNSS_RTK_CONFIG = _mscl.MipTypes_CMD_GNSS_RTK_CONFIG - CMD_INTERFACE_CONTROL = _mscl.MipTypes_CMD_INTERFACE_CONTROL - CMD_COMMUNICATION_MODE = _mscl.MipTypes_CMD_COMMUNICATION_MODE - CMD_HARDWARE_CTRL = _mscl.MipTypes_CMD_HARDWARE_CTRL - CMD_GET_ANALOG_DISPLACEMENT_CALS = _mscl.MipTypes_CMD_GET_ANALOG_DISPLACEMENT_CALS - CMD_DISPLACEMENT_OUTPUT_RATE = _mscl.MipTypes_CMD_DISPLACEMENT_OUTPUT_RATE - CMD_DISPLACEMENT_DEVICE_TIME = _mscl.MipTypes_CMD_DISPLACEMENT_DEVICE_TIME - CMD_RTK_DEVICE_STATUS_FLAGS = _mscl.MipTypes_CMD_RTK_DEVICE_STATUS_FLAGS - CMD_RTK_ACTIVATION_CODE = _mscl.MipTypes_CMD_RTK_ACTIVATION_CODE - CMD_AIDING_FRAME_CONFIG = _mscl.MipTypes_CMD_AIDING_FRAME_CONFIG - CMD_AIDING_ECHO_CONTROL = _mscl.MipTypes_CMD_AIDING_ECHO_CONTROL - CMD_AIDING_POS_ECEF = _mscl.MipTypes_CMD_AIDING_POS_ECEF - CMD_AIDING_POS_LLH = _mscl.MipTypes_CMD_AIDING_POS_LLH - CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID - CMD_AIDING_VEL_ECEF = _mscl.MipTypes_CMD_AIDING_VEL_ECEF - CMD_AIDING_VEL_NED = _mscl.MipTypes_CMD_AIDING_VEL_NED - CMD_AIDING_VEL_BODY_FRAME = _mscl.MipTypes_CMD_AIDING_VEL_BODY_FRAME - CMD_AIDING_HEADING_TRUE = _mscl.MipTypes_CMD_AIDING_HEADING_TRUE - CMD_AIDING_MAGNETIC_FIELD = _mscl.MipTypes_CMD_AIDING_MAGNETIC_FIELD - CMD_AIDING_PRESSURE = _mscl.MipTypes_CMD_AIDING_PRESSURE - CH_FIELD_SENSOR_RAW_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_ACCEL_VEC - CH_FIELD_SENSOR_RAW_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_GYRO_VEC - CH_FIELD_SENSOR_RAW_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_MAG_VEC - CH_FIELD_SENSOR_SCALED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_ACCEL_VEC - CH_FIELD_SENSOR_SCALED_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_GYRO_VEC - CH_FIELD_SENSOR_SCALED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_MAG_VEC - CH_FIELD_SENSOR_DELTA_THETA_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_THETA_VEC - CH_FIELD_SENSOR_DELTA_VELOCITY_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_VELOCITY_VEC - CH_FIELD_SENSOR_ORIENTATION_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_MATRIX - CH_FIELD_SENSOR_ORIENTATION_QUATERNION = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_QUATERNION - CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX - CH_FIELD_SENSOR_EULER_ANGLES = _mscl.MipTypes_CH_FIELD_SENSOR_EULER_ANGLES - CH_FIELD_SENSOR_INTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_INTERNAL_TIMESTAMP - CH_FIELD_SENSOR_BEACONED_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_BEACONED_TIMESTAMP - CH_FIELD_SENSOR_STABILIZED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_MAG_VEC - CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC - CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP - CH_FIELD_SENSOR_TEMPERATURE_STATISTICS = _mscl.MipTypes_CH_FIELD_SENSOR_TEMPERATURE_STATISTICS - CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE - CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE - CH_FIELD_SENSOR_OVERRANGE_STATUS = _mscl.MipTypes_CH_FIELD_SENSOR_OVERRANGE_STATUS - CH_FIELD_SENSOR_ODOMETER_DATA = _mscl.MipTypes_CH_FIELD_SENSOR_ODOMETER_DATA - CH_FIELD_SENSOR_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EVENT_SOURCE - CH_FIELD_SENSOR_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_TICKS - CH_FIELD_SENSOR_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TICKS - CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP - CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_LLH_POSITION - CH_FIELD_GNSS_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_POSITION - CH_FIELD_GNSS_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_NED_VELOCITY - CH_FIELD_GNSS_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_VELOCITY - CH_FIELD_GNSS_DOP = _mscl.MipTypes_CH_FIELD_GNSS_DOP - CH_FIELD_GNSS_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_UTC_TIME - CH_FIELD_GNSS_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_GPS_TIME - CH_FIELD_GNSS_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO - CH_FIELD_GNSS_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_FIX_INFO - CH_FIELD_GNSS_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_HARDWARE_STATUS - CH_FIELD_GNSS_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_INFO - CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO_2 - CH_FIELD_GNSS_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_LEAP_SECONDS - CH_FIELD_GNSS_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_INFO - CH_FIELD_GNSS_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_CORRECTION - CH_FIELD_GNSS_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_RF_ERROR_DETECTION - CH_FIELD_GNSS_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_SATELLITE_STATUS - CH_FIELD_GNSS_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_RAW_OBSERVATION - CH_FIELD_GNSS_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_STATION_INFO - CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_EPHEMERIS - CH_FIELD_GNSS_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GLONASS_EPHEMERIS - CH_FIELD_GNSS_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_EPHEMERIS - CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_TICKS - CH_FIELD_GNSS_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TICKS - CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS - CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL - CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE - CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE - CH_FIELD_ESTFILTER_FILTER_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_FILTER_STATUS - CH_FIELD_ESTFILTER_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT - CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR - CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE - CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR - CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_MAG_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS - CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT - CH_FIELD_ESTFILTER_COMPENSATED_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_COMPENSATED_ACCEL - CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL - CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT - CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX - CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS_UNCERT - CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS - CH_FIELD_ESTFILTER_ECEF_VEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL - CH_FIELD_ESTFILTER_NED_RELATIVE_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_NED_RELATIVE_POS - CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS - CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS - CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY = _mscl.MipTypes_CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT - CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT - CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE - CH_FIELD_ESTFILTER_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_TICKS - CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS - CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_DISP_DISPLACEMENT_RAW = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_RAW - CH_FIELD_DISP_DISPLACEMENT_MM = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_MM - CH_FIELD_DISP_DISPLACEMENT_TS = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_TS - CH_FIELD_GNSS_1_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_LLH_POSITION - CH_FIELD_GNSS_1_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_POSITION - CH_FIELD_GNSS_1_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_NED_VELOCITY - CH_FIELD_GNSS_1_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_VELOCITY - CH_FIELD_GNSS_1_DOP = _mscl.MipTypes_CH_FIELD_GNSS_1_DOP - CH_FIELD_GNSS_1_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_UTC_TIME - CH_FIELD_GNSS_1_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_TIME - CH_FIELD_GNSS_1_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO - CH_FIELD_GNSS_1_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_FIX_INFO - CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_1_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_HARDWARE_STATUS - CH_FIELD_GNSS_1_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_INFO - CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_1_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO_2 - CH_FIELD_GNSS_1_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_LEAP_SECONDS - CH_FIELD_GNSS_1_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_INFO - CH_FIELD_GNSS_1_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_CORRECTION - CH_FIELD_GNSS_1_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_RF_ERROR_DETECTION - CH_FIELD_GNSS_1_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_SATELLITE_STATUS - CH_FIELD_GNSS_1_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_1_RAW_OBSERVATION - CH_FIELD_GNSS_1_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_STATION_INFO - CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_1_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_EPHEMERIS - CH_FIELD_GNSS_1_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GLONASS_EPHEMERIS - CH_FIELD_GNSS_1_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_EPHEMERIS - CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_1_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_TICKS - CH_FIELD_GNSS_1_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TICKS - CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_2_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_LLH_POSITION - CH_FIELD_GNSS_2_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_POSITION - CH_FIELD_GNSS_2_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_NED_VELOCITY - CH_FIELD_GNSS_2_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_VELOCITY - CH_FIELD_GNSS_2_DOP = _mscl.MipTypes_CH_FIELD_GNSS_2_DOP - CH_FIELD_GNSS_2_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_UTC_TIME - CH_FIELD_GNSS_2_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_TIME - CH_FIELD_GNSS_2_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO - CH_FIELD_GNSS_2_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_FIX_INFO - CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_2_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_HARDWARE_STATUS - CH_FIELD_GNSS_2_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_INFO - CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_2_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO_2 - CH_FIELD_GNSS_2_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_LEAP_SECONDS - CH_FIELD_GNSS_2_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_INFO - CH_FIELD_GNSS_2_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_CORRECTION - CH_FIELD_GNSS_2_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_RF_ERROR_DETECTION - CH_FIELD_GNSS_2_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_SATELLITE_STATUS - CH_FIELD_GNSS_2_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_2_RAW_OBSERVATION - CH_FIELD_GNSS_2_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_STATION_INFO - CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_2_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_EPHEMERIS - CH_FIELD_GNSS_2_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GLONASS_EPHEMERIS - CH_FIELD_GNSS_2_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_EPHEMERIS - CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_2_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_TICKS - CH_FIELD_GNSS_2_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TICKS - CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_3_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_LLH_POSITION - CH_FIELD_GNSS_3_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_POSITION - CH_FIELD_GNSS_3_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_NED_VELOCITY - CH_FIELD_GNSS_3_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_VELOCITY - CH_FIELD_GNSS_3_DOP = _mscl.MipTypes_CH_FIELD_GNSS_3_DOP - CH_FIELD_GNSS_3_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_UTC_TIME - CH_FIELD_GNSS_3_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_TIME - CH_FIELD_GNSS_3_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO - CH_FIELD_GNSS_3_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_FIX_INFO - CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_3_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_HARDWARE_STATUS - CH_FIELD_GNSS_3_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_INFO - CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_3_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO_2 - CH_FIELD_GNSS_3_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_LEAP_SECONDS - CH_FIELD_GNSS_3_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_INFO - CH_FIELD_GNSS_3_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_CORRECTION - CH_FIELD_GNSS_3_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_RF_ERROR_DETECTION - CH_FIELD_GNSS_3_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_SATELLITE_STATUS - CH_FIELD_GNSS_3_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_3_RAW_OBSERVATION - CH_FIELD_GNSS_3_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_STATION_INFO - CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_3_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_EPHEMERIS - CH_FIELD_GNSS_3_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GLONASS_EPHEMERIS - CH_FIELD_GNSS_3_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_EPHEMERIS - CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_3_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_TICKS - CH_FIELD_GNSS_3_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TICKS - CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_4_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_LLH_POSITION - CH_FIELD_GNSS_4_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_POSITION - CH_FIELD_GNSS_4_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_NED_VELOCITY - CH_FIELD_GNSS_4_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_VELOCITY - CH_FIELD_GNSS_4_DOP = _mscl.MipTypes_CH_FIELD_GNSS_4_DOP - CH_FIELD_GNSS_4_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_UTC_TIME - CH_FIELD_GNSS_4_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_TIME - CH_FIELD_GNSS_4_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO - CH_FIELD_GNSS_4_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_FIX_INFO - CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_4_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_HARDWARE_STATUS - CH_FIELD_GNSS_4_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_INFO - CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_4_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO_2 - CH_FIELD_GNSS_4_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_LEAP_SECONDS - CH_FIELD_GNSS_4_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_INFO - CH_FIELD_GNSS_4_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_CORRECTION - CH_FIELD_GNSS_4_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_RF_ERROR_DETECTION - CH_FIELD_GNSS_4_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_SATELLITE_STATUS - CH_FIELD_GNSS_4_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_4_RAW_OBSERVATION - CH_FIELD_GNSS_4_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_STATION_INFO - CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_4_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_EPHEMERIS - CH_FIELD_GNSS_4_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GLONASS_EPHEMERIS - CH_FIELD_GNSS_4_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_EPHEMERIS - CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_4_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_TICKS - CH_FIELD_GNSS_4_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TICKS - CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_5_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_LLH_POSITION - CH_FIELD_GNSS_5_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_POSITION - CH_FIELD_GNSS_5_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_NED_VELOCITY - CH_FIELD_GNSS_5_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_VELOCITY - CH_FIELD_GNSS_5_DOP = _mscl.MipTypes_CH_FIELD_GNSS_5_DOP - CH_FIELD_GNSS_5_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_UTC_TIME - CH_FIELD_GNSS_5_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_TIME - CH_FIELD_GNSS_5_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO - CH_FIELD_GNSS_5_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_FIX_INFO - CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_5_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_HARDWARE_STATUS - CH_FIELD_GNSS_5_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_INFO - CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_5_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO_2 - CH_FIELD_GNSS_5_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_LEAP_SECONDS - CH_FIELD_GNSS_5_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_INFO - CH_FIELD_GNSS_5_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_CORRECTION - CH_FIELD_GNSS_5_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_RF_ERROR_DETECTION - CH_FIELD_GNSS_5_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_SATELLITE_STATUS - CH_FIELD_GNSS_5_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_5_RAW_OBSERVATION - CH_FIELD_GNSS_5_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_STATION_INFO - CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_5_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_EPHEMERIS - CH_FIELD_GNSS_5_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GLONASS_EPHEMERIS - CH_FIELD_GNSS_5_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_EPHEMERIS - CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_5_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_TICKS - CH_FIELD_GNSS_5_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TICKS - CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_SYSTEM_BUILT_IN_TEST = _mscl.MipTypes_CH_FIELD_SYSTEM_BUILT_IN_TEST - CH_FIELD_SYSTEM_TIME_SYNC_STATUS = _mscl.MipTypes_CH_FIELD_SYSTEM_TIME_SYNC_STATUS - CH_FIELD_SYSTEM_GPIO_STATE = _mscl.MipTypes_CH_FIELD_SYSTEM_GPIO_STATE - CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE - CH_FIELD_SYSTEM_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_TICKS - CH_FIELD_SYSTEM_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TICKS - CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME - MIN_SHARED_FIELD_DESCRIPTOR = _mscl.MipTypes_MIN_SHARED_FIELD_DESCRIPTOR - CH_UNKNOWN = _mscl.MipTypes_CH_UNKNOWN - CH_X = _mscl.MipTypes_CH_X - CH_Y = _mscl.MipTypes_CH_Y - CH_Z = _mscl.MipTypes_CH_Z - CH_MATRIX = _mscl.MipTypes_CH_MATRIX - CH_QUATERNION = _mscl.MipTypes_CH_QUATERNION - CH_ROLL = _mscl.MipTypes_CH_ROLL - CH_PITCH = _mscl.MipTypes_CH_PITCH - CH_YAW = _mscl.MipTypes_CH_YAW - CH_TICK = _mscl.MipTypes_CH_TICK - CH_TIMESTAMP = _mscl.MipTypes_CH_TIMESTAMP - CH_STATUS = _mscl.MipTypes_CH_STATUS - CH_TIME_OF_WEEK = _mscl.MipTypes_CH_TIME_OF_WEEK - CH_WEEK_NUMBER = _mscl.MipTypes_CH_WEEK_NUMBER - CH_LATITUDE = _mscl.MipTypes_CH_LATITUDE - CH_LONGITUDE = _mscl.MipTypes_CH_LONGITUDE - CH_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CH_HEIGHT_ABOVE_ELLIPSOID - CH_HEIGHT_ABOVE_MSL = _mscl.MipTypes_CH_HEIGHT_ABOVE_MSL - CH_HORIZONTAL_ACCURACY = _mscl.MipTypes_CH_HORIZONTAL_ACCURACY - CH_VERTICAL_ACCURACY = _mscl.MipTypes_CH_VERTICAL_ACCURACY - CH_POSITION_ACCURACY = _mscl.MipTypes_CH_POSITION_ACCURACY - CH_NORTH = _mscl.MipTypes_CH_NORTH - CH_EAST = _mscl.MipTypes_CH_EAST - CH_DOWN = _mscl.MipTypes_CH_DOWN - CH_SPEED = _mscl.MipTypes_CH_SPEED - CH_GROUND_SPEED = _mscl.MipTypes_CH_GROUND_SPEED - CH_HEADING = _mscl.MipTypes_CH_HEADING - CH_SPEED_ACCURACY = _mscl.MipTypes_CH_SPEED_ACCURACY - CH_HEADING_ACCURACY = _mscl.MipTypes_CH_HEADING_ACCURACY - CH_VELOCITY_ACCURACY = _mscl.MipTypes_CH_VELOCITY_ACCURACY - CH_GEOMETRIC_DOP = _mscl.MipTypes_CH_GEOMETRIC_DOP - CH_POSITION_DOP = _mscl.MipTypes_CH_POSITION_DOP - CH_HORIZONTAL_DOP = _mscl.MipTypes_CH_HORIZONTAL_DOP - CH_VERTICAL_DOP = _mscl.MipTypes_CH_VERTICAL_DOP - CH_TIME_DOP = _mscl.MipTypes_CH_TIME_DOP - CH_NORTHING_DOP = _mscl.MipTypes_CH_NORTHING_DOP - CH_EASTING_DOP = _mscl.MipTypes_CH_EASTING_DOP - CH_FLAGS = _mscl.MipTypes_CH_FLAGS - CH_BIAS = _mscl.MipTypes_CH_BIAS - CH_DRIFT = _mscl.MipTypes_CH_DRIFT - CH_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_ACCURACY_ESTIMATE - CH_FIX_TYPE = _mscl.MipTypes_CH_FIX_TYPE - CH_SV_COUNT = _mscl.MipTypes_CH_SV_COUNT - CH_CHANNEL = _mscl.MipTypes_CH_CHANNEL - CH_ID = _mscl.MipTypes_CH_ID - CH_CARRIER_TO_NOISE_RATIO = _mscl.MipTypes_CH_CARRIER_TO_NOISE_RATIO - CH_AZIMUTH = _mscl.MipTypes_CH_AZIMUTH - CH_ELEVATION = _mscl.MipTypes_CH_ELEVATION - CH_SENSOR_STATE = _mscl.MipTypes_CH_SENSOR_STATE - CH_ANTENNA_STATE = _mscl.MipTypes_CH_ANTENNA_STATE - CH_ANTENNA_POWER = _mscl.MipTypes_CH_ANTENNA_POWER - CH_FILTER_STATE = _mscl.MipTypes_CH_FILTER_STATE - CH_DYNAMICS_MODE = _mscl.MipTypes_CH_DYNAMICS_MODE - CH_MAGNITUDE = _mscl.MipTypes_CH_MAGNITUDE - CH_HEADING_UNCERTAINTY = _mscl.MipTypes_CH_HEADING_UNCERTAINTY - CH_SOURCE = _mscl.MipTypes_CH_SOURCE - CH_INCLINATION = _mscl.MipTypes_CH_INCLINATION - CH_DECLINATION = _mscl.MipTypes_CH_DECLINATION - CH_PRESSURE = _mscl.MipTypes_CH_PRESSURE - CH_AGE = _mscl.MipTypes_CH_AGE - CH_NUM_CHANNELS = _mscl.MipTypes_CH_NUM_CHANNELS - CH_CORRECTION = _mscl.MipTypes_CH_CORRECTION - CH_RATE_CORRECTION = _mscl.MipTypes_CH_RATE_CORRECTION - CH_GEOMETRIC_ALTITUDE = _mscl.MipTypes_CH_GEOMETRIC_ALTITUDE - CH_GEOPOTENTIAL_ALTITUDE = _mscl.MipTypes_CH_GEOPOTENTIAL_ALTITUDE - CH_TEMPERATURE = _mscl.MipTypes_CH_TEMPERATURE - CH_DENSITY = _mscl.MipTypes_CH_DENSITY - CH_ALTITUDE = _mscl.MipTypes_CH_ALTITUDE - CH_DISPLACEMENT = _mscl.MipTypes_CH_DISPLACEMENT - CH_MAX_TEMP = _mscl.MipTypes_CH_MAX_TEMP - CH_MIN_TEMP = _mscl.MipTypes_CH_MIN_TEMP - CH_MEAN_TEMP = _mscl.MipTypes_CH_MEAN_TEMP - CH_BIAS_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_BIAS_ACCURACY_ESTIMATE - CH_DRIFT_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_DRIFT_ACCURACY_ESTIMATE - CH_SECONDS = _mscl.MipTypes_CH_SECONDS - CH_NUM_PACKETS = _mscl.MipTypes_CH_NUM_PACKETS - CH_GPS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GPS_CORRECTION_LATENCY - CH_GLONASS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GLONASS_CORRECTION_LATENCY - CH_GALILEO_CORRECTION_LATENCY = _mscl.MipTypes_CH_GALILEO_CORRECTION_LATENCY - CH_BEIDOU_CORRECTION_LATENCY = _mscl.MipTypes_CH_BEIDOU_CORRECTION_LATENCY - CH_HEIGHT = _mscl.MipTypes_CH_HEIGHT - CH_HEALTH = _mscl.MipTypes_CH_HEALTH - CH_INDEX = _mscl.MipTypes_CH_INDEX - CH_COUNT = _mscl.MipTypes_CH_COUNT - CH_SIGNAL_STRENGTH = _mscl.MipTypes_CH_SIGNAL_STRENGTH - CH_SIGNAL_QUALITY = _mscl.MipTypes_CH_SIGNAL_QUALITY - CH_RANGE = _mscl.MipTypes_CH_RANGE - CH_RANGE_UNC = _mscl.MipTypes_CH_RANGE_UNC - CH_ALPHA = _mscl.MipTypes_CH_ALPHA - CH_BETA = _mscl.MipTypes_CH_BETA - CH_DISTURBANCE_FLAGS = _mscl.MipTypes_CH_DISTURBANCE_FLAGS - CH_CARRIER_PHASE = _mscl.MipTypes_CH_CARRIER_PHASE - CH_CARRIER_PHASE_UNC = _mscl.MipTypes_CH_CARRIER_PHASE_UNC - CH_DOPPLER = _mscl.MipTypes_CH_DOPPLER - CH_DOPPLER_UNC = _mscl.MipTypes_CH_DOPPLER_UNC - CH_DELTA_TIME = _mscl.MipTypes_CH_DELTA_TIME - CH_DELTA_TICK = _mscl.MipTypes_CH_DELTA_TICK - CH_ERROR = _mscl.MipTypes_CH_ERROR - CH_ERROR_UNC = _mscl.MipTypes_CH_ERROR_UNC - CH_W = _mscl.MipTypes_CH_W - CH_M0 = _mscl.MipTypes_CH_M0 - CH_M1 = _mscl.MipTypes_CH_M1 - CH_M2 = _mscl.MipTypes_CH_M2 - CH_M3 = _mscl.MipTypes_CH_M3 - CH_M4 = _mscl.MipTypes_CH_M4 - CH_M5 = _mscl.MipTypes_CH_M5 - CH_M6 = _mscl.MipTypes_CH_M6 - CH_M7 = _mscl.MipTypes_CH_M7 - CH_M8 = _mscl.MipTypes_CH_M8 - CH_NANOSECONDS = _mscl.MipTypes_CH_NANOSECONDS - CH_VALID_FLAGS = _mscl.MipTypes_CH_VALID_FLAGS - CH_PPS_VALID = _mscl.MipTypes_CH_PPS_VALID - CH_LAST_PPS = _mscl.MipTypes_CH_LAST_PPS - CH_UDREI = _mscl.MipTypes_CH_UDREI - CH_PSEUDORANGE_CORRECTION = _mscl.MipTypes_CH_PSEUDORANGE_CORRECTION - CH_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_IONOSPHERIC_CORRECTION - CH_JAMMING_STATE = _mscl.MipTypes_CH_JAMMING_STATE - CH_SPOOFING_STATE = _mscl.MipTypes_CH_SPOOFING_STATE - CH_SYSTEM_ID = _mscl.MipTypes_CH_SYSTEM_ID - CH_SATELLITE_ID = _mscl.MipTypes_CH_SATELLITE_ID - CH_BIT_SYSTEM_GENERAL = _mscl.MipTypes_CH_BIT_SYSTEM_GENERAL - CH_BIT_SYSTEM_PROCESS = _mscl.MipTypes_CH_BIT_SYSTEM_PROCESS - CH_BIT_IMU_GENERAL = _mscl.MipTypes_CH_BIT_IMU_GENERAL - CH_BIT_IMU_SENSORS = _mscl.MipTypes_CH_BIT_IMU_SENSORS - CH_BIT_IMU_FACTORY_BITS = _mscl.MipTypes_CH_BIT_IMU_FACTORY_BITS - CH_BIT_FILTER_GENERAL = _mscl.MipTypes_CH_BIT_FILTER_GENERAL - CH_BIT_GNSS_GENERAL = _mscl.MipTypes_CH_BIT_GNSS_GENERAL - CH_BIT_GNSS_RECEIVERS = _mscl.MipTypes_CH_BIT_GNSS_RECEIVERS - - @staticmethod - def channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - - @staticmethod - def getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - - @staticmethod - def getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - - @staticmethod - def getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - - @staticmethod - def getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - - @staticmethod - def getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - - @staticmethod - def isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - - @staticmethod - def isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - - @staticmethod - def channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - - @staticmethod - def channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - - @staticmethod - def channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - - def __init__(self): - _mscl.MipTypes_swiginit(self, _mscl.new_MipTypes()) - __swig_destroy__ = _mscl.delete_MipTypes - -# Register MipTypes in _mscl: -_mscl.MipTypes_swigregister(MipTypes) - -def MipTypes_channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - -def MipTypes_getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - -def MipTypes_getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - -def MipTypes_getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - -def MipTypes_getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - -def MipTypes_getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - -def MipTypes_isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - -def MipTypes_isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - -def MipTypes_channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - -def MipTypes_channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - -def MipTypes_channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - -class MipChannelIdentifier(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - GNSS_RECEIVER_ID = _mscl.MipChannelIdentifier_GNSS_RECEIVER_ID - GNSS_BASE_STATION_ID = _mscl.MipChannelIdentifier_GNSS_BASE_STATION_ID - GNSS_CONSTELLATION = _mscl.MipChannelIdentifier_GNSS_CONSTELLATION - GNSS_SATELLITE_ID = _mscl.MipChannelIdentifier_GNSS_SATELLITE_ID - GNSS_SIGNAL_ID = _mscl.MipChannelIdentifier_GNSS_SIGNAL_ID - AIDING_MEASUREMENT_TYPE = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_TYPE - GNSS_RF_BAND = _mscl.MipChannelIdentifier_GNSS_RF_BAND - AIDING_MEASUREMENT_FRAME_ID = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_FRAME_ID - GNSS = _mscl.MipChannelIdentifier_GNSS - DUAL_ANTENNA = _mscl.MipChannelIdentifier_DUAL_ANTENNA - HEADING = _mscl.MipChannelIdentifier_HEADING - PRESSURE = _mscl.MipChannelIdentifier_PRESSURE - MAGNETOMETER = _mscl.MipChannelIdentifier_MAGNETOMETER - SPEED = _mscl.MipChannelIdentifier_SPEED - AIDING_POS_ECEF = _mscl.MipChannelIdentifier_AIDING_POS_ECEF - AIDING_POS_LLH = _mscl.MipChannelIdentifier_AIDING_POS_LLH - AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipChannelIdentifier_AIDING_HEIGHT_ABOVE_ELLIPSOID - AIDING_VEL_ECEF = _mscl.MipChannelIdentifier_AIDING_VEL_ECEF - AIDING_VEL_NED = _mscl.MipChannelIdentifier_AIDING_VEL_NED - AIDING_VEL_BODY_FRAME = _mscl.MipChannelIdentifier_AIDING_VEL_BODY_FRAME - AIDING_HEADING_TRUE = _mscl.MipChannelIdentifier_AIDING_HEADING_TRUE - AIDING_MAGNETIC_FIELD = _mscl.MipChannelIdentifier_AIDING_MAGNETIC_FIELD - AIDING_PRESSURE = _mscl.MipChannelIdentifier_AIDING_PRESSURE - UNKNOWN_CONSTELLATION = _mscl.MipChannelIdentifier_UNKNOWN_CONSTELLATION - GPS = _mscl.MipChannelIdentifier_GPS - GLONASS = _mscl.MipChannelIdentifier_GLONASS - GALILEO = _mscl.MipChannelIdentifier_GALILEO - BEIDOU = _mscl.MipChannelIdentifier_BEIDOU - UNKNOWN_SIGNAL = _mscl.MipChannelIdentifier_UNKNOWN_SIGNAL - GPS_L1CA = _mscl.MipChannelIdentifier_GPS_L1CA - GPS_L1P = _mscl.MipChannelIdentifier_GPS_L1P - GPS_L1Z = _mscl.MipChannelIdentifier_GPS_L1Z - GPS_L2CA = _mscl.MipChannelIdentifier_GPS_L2CA - GPS_L2P = _mscl.MipChannelIdentifier_GPS_L2P - GPS_L2Z = _mscl.MipChannelIdentifier_GPS_L2Z - GPS_L2CL = _mscl.MipChannelIdentifier_GPS_L2CL - GPS_L2CM = _mscl.MipChannelIdentifier_GPS_L2CM - GPS_L2CML = _mscl.MipChannelIdentifier_GPS_L2CML - GPS_L5I = _mscl.MipChannelIdentifier_GPS_L5I - GPS_L5Q = _mscl.MipChannelIdentifier_GPS_L5Q - GPS_L5IQ = _mscl.MipChannelIdentifier_GPS_L5IQ - GPS_L1CD = _mscl.MipChannelIdentifier_GPS_L1CD - GPS_L1CP = _mscl.MipChannelIdentifier_GPS_L1CP - GPS_L1CDP = _mscl.MipChannelIdentifier_GPS_L1CDP - GLONASS_G1CA = _mscl.MipChannelIdentifier_GLONASS_G1CA - GLONASS_G1P = _mscl.MipChannelIdentifier_GLONASS_G1P - GLONASS_G2C = _mscl.MipChannelIdentifier_GLONASS_G2C - GLONASS_G2P = _mscl.MipChannelIdentifier_GLONASS_G2P - GALILEO_E1C = _mscl.MipChannelIdentifier_GALILEO_E1C - GALILEO_E1A = _mscl.MipChannelIdentifier_GALILEO_E1A - GALILEO_E1B = _mscl.MipChannelIdentifier_GALILEO_E1B - GALILEO_E1BC = _mscl.MipChannelIdentifier_GALILEO_E1BC - GALILEO_E1ABC = _mscl.MipChannelIdentifier_GALILEO_E1ABC - GALILEO_E6C = _mscl.MipChannelIdentifier_GALILEO_E6C - GALILEO_E6A = _mscl.MipChannelIdentifier_GALILEO_E6A - GALILEO_E6B = _mscl.MipChannelIdentifier_GALILEO_E6B - GALILEO_E6BC = _mscl.MipChannelIdentifier_GALILEO_E6BC - GALILEO_E6ABC = _mscl.MipChannelIdentifier_GALILEO_E6ABC - GALILEO_E5BI = _mscl.MipChannelIdentifier_GALILEO_E5BI - GALILEO_E5BQ = _mscl.MipChannelIdentifier_GALILEO_E5BQ - GALILEO_E5BIQ = _mscl.MipChannelIdentifier_GALILEO_E5BIQ - GALILEO_E5ABI = _mscl.MipChannelIdentifier_GALILEO_E5ABI - GALILEO_E5ABQ = _mscl.MipChannelIdentifier_GALILEO_E5ABQ - GALILEO_E5ABIQ = _mscl.MipChannelIdentifier_GALILEO_E5ABIQ - GALILEO_E5AI = _mscl.MipChannelIdentifier_GALILEO_E5AI - GALILEO_E5AQ = _mscl.MipChannelIdentifier_GALILEO_E5AQ - GALILEO_E5AIQ = _mscl.MipChannelIdentifier_GALILEO_E5AIQ - SBAS_L1CA = _mscl.MipChannelIdentifier_SBAS_L1CA - SBAS_L5I = _mscl.MipChannelIdentifier_SBAS_L5I - SBAS_L5Q = _mscl.MipChannelIdentifier_SBAS_L5Q - SBAS_L5IQ = _mscl.MipChannelIdentifier_SBAS_L5IQ - QZSS_L1CA = _mscl.MipChannelIdentifier_QZSS_L1CA - QZSS_LEXS = _mscl.MipChannelIdentifier_QZSS_LEXS - QZSS_LEXL = _mscl.MipChannelIdentifier_QZSS_LEXL - QZSS_LEXSL = _mscl.MipChannelIdentifier_QZSS_LEXSL - QZSS_L2CM = _mscl.MipChannelIdentifier_QZSS_L2CM - QZSS_L2CL = _mscl.MipChannelIdentifier_QZSS_L2CL - QZSS_L2CML = _mscl.MipChannelIdentifier_QZSS_L2CML - QZSS_L5I = _mscl.MipChannelIdentifier_QZSS_L5I - QZSS_L5Q = _mscl.MipChannelIdentifier_QZSS_L5Q - QZSS_L5IQ = _mscl.MipChannelIdentifier_QZSS_L5IQ - QZSS_L1CD = _mscl.MipChannelIdentifier_QZSS_L1CD - QZSS_L1CP = _mscl.MipChannelIdentifier_QZSS_L1CP - QZSS_L1CDP = _mscl.MipChannelIdentifier_QZSS_L1CDP - BEIDOU_B1I = _mscl.MipChannelIdentifier_BEIDOU_B1I - BEIDOU_B1Q = _mscl.MipChannelIdentifier_BEIDOU_B1Q - BEIDOU_B1IQ = _mscl.MipChannelIdentifier_BEIDOU_B1IQ - BEIDOU_B3I = _mscl.MipChannelIdentifier_BEIDOU_B3I - BEIDOU_B3Q = _mscl.MipChannelIdentifier_BEIDOU_B3Q - BEIDOU_B3IQ = _mscl.MipChannelIdentifier_BEIDOU_B3IQ - BEIDOU_B2I = _mscl.MipChannelIdentifier_BEIDOU_B2I - BEIDOU_B2Q = _mscl.MipChannelIdentifier_BEIDOU_B2Q - BEIDOU_B2IQ = _mscl.MipChannelIdentifier_BEIDOU_B2IQ - UNKNOWN_RF_BAND = _mscl.MipChannelIdentifier_UNKNOWN_RF_BAND - RF_BAND_L1 = _mscl.MipChannelIdentifier_RF_BAND_L1 - RF_BAND_L2 = _mscl.MipChannelIdentifier_RF_BAND_L2 - RF_BAND_L5 = _mscl.MipChannelIdentifier_RF_BAND_L5 - - def __init__(self, *args): - _mscl.MipChannelIdentifier_swiginit(self, _mscl.new_MipChannelIdentifier(*args)) - __swig_destroy__ = _mscl.delete_MipChannelIdentifier - - def identifierType(self): - return _mscl.MipChannelIdentifier_identifierType(self) - - def id(self): - return _mscl.MipChannelIdentifier_id(self) - - def hasSpecifier(self): - return _mscl.MipChannelIdentifier_hasSpecifier(self) - - def specifier(self): - return _mscl.MipChannelIdentifier_specifier(self) - - def name(self, standardizedFormat=True): - return _mscl.MipChannelIdentifier_name(self, standardizedFormat) - -# Register MipChannelIdentifier in _mscl: -_mscl.MipChannelIdentifier_swigregister(MipChannelIdentifier) - -class MipCommandBytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - id = property(_mscl.MipCommandBytes_id_get, _mscl.MipCommandBytes_id_set) - commands = property(_mscl.MipCommandBytes_commands_get, _mscl.MipCommandBytes_commands_set) - buildCmdFailed = property(_mscl.MipCommandBytes_buildCmdFailed_get, _mscl.MipCommandBytes_buildCmdFailed_set) - sendCmdFailed = property(_mscl.MipCommandBytes_sendCmdFailed_get, _mscl.MipCommandBytes_sendCmdFailed_set) - - def __init__(self, *args): - _mscl.MipCommandBytes_swiginit(self, _mscl.new_MipCommandBytes(*args)) - - def add(self, cmd): - return _mscl.MipCommandBytes_add(self, cmd) - - def valid(self): - return _mscl.MipCommandBytes_valid(self) - __swig_destroy__ = _mscl.delete_MipCommandBytes - -# Register MipCommandBytes in _mscl: -_mscl.MipCommandBytes_swigregister(MipCommandBytes) - -class AidingMeasurementInput(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - ACK_NACK = _mscl.AidingMeasurementInput_ACK_NACK - ECHO_INPUT = _mscl.AidingMeasurementInput_ECHO_INPUT - - def toMipFieldValues(self): - return _mscl.AidingMeasurementInput_toMipFieldValues(self) - - def timestamp(self, *args): - return _mscl.AidingMeasurementInput_timestamp(self, *args) - - def timebase(self): - return _mscl.AidingMeasurementInput_timebase(self) - - def frameId(self, *args): - return _mscl.AidingMeasurementInput_frameId(self, *args) - - def validFlags(self, *args): - return _mscl.AidingMeasurementInput_validFlags(self, *args) - -# Register AidingMeasurementInput in _mscl: -_mscl.AidingMeasurementInput_swigregister(AidingMeasurementInput) - -class AidingMeasurementPosition(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementPosition_X - LATITUDE = _mscl.AidingMeasurementPosition_LATITUDE - Y = _mscl.AidingMeasurementPosition_Y - LONGITUDE = _mscl.AidingMeasurementPosition_LONGITUDE - Z = _mscl.AidingMeasurementPosition_Z - HEIGHT = _mscl.AidingMeasurementPosition_HEIGHT - ALTITUDE = _mscl.AidingMeasurementPosition_ALTITUDE - - def __init__(self, *args): - _mscl.AidingMeasurementPosition_swiginit(self, _mscl.new_AidingMeasurementPosition(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPosition - - def position(self, *args): - return _mscl.AidingMeasurementPosition_position(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPosition_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementPosition_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPosition_valid(self, *args) - -# Register AidingMeasurementPosition in _mscl: -_mscl.AidingMeasurementPosition_swigregister(AidingMeasurementPosition) - -class AidingMeasurementHeight(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeight_swiginit(self, _mscl.new_AidingMeasurementHeight(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeight - - def height(self, *args): - return _mscl.AidingMeasurementHeight_height(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeight_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeight_valid(self, *args) - -# Register AidingMeasurementHeight in _mscl: -_mscl.AidingMeasurementHeight_swigregister(AidingMeasurementHeight) - -class AidingMeasurementVelocity(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementVelocity_X - NORTH = _mscl.AidingMeasurementVelocity_NORTH - Y = _mscl.AidingMeasurementVelocity_Y - EAST = _mscl.AidingMeasurementVelocity_EAST - Z = _mscl.AidingMeasurementVelocity_Z - DOWN = _mscl.AidingMeasurementVelocity_DOWN - - def __init__(self, *args): - _mscl.AidingMeasurementVelocity_swiginit(self, _mscl.new_AidingMeasurementVelocity(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementVelocity - - def velocity(self, *args): - return _mscl.AidingMeasurementVelocity_velocity(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementVelocity_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementVelocity_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementVelocity_valid(self, *args) - -# Register AidingMeasurementVelocity in _mscl: -_mscl.AidingMeasurementVelocity_swigregister(AidingMeasurementVelocity) - -class AidingMeasurementHeading(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeading_swiginit(self, _mscl.new_AidingMeasurementHeading(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeading - - def heading(self, *args): - return _mscl.AidingMeasurementHeading_heading(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeading_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeading_valid(self, *args) - -# Register AidingMeasurementHeading in _mscl: -_mscl.AidingMeasurementHeading_swigregister(AidingMeasurementHeading) - -class AidingMeasurementMagneticField(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementMagneticField_X - Y = _mscl.AidingMeasurementMagneticField_Y - Z = _mscl.AidingMeasurementMagneticField_Z - - def __init__(self, *args): - _mscl.AidingMeasurementMagneticField_swiginit(self, _mscl.new_AidingMeasurementMagneticField(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementMagneticField - - def magneticField(self, *args): - return _mscl.AidingMeasurementMagneticField_magneticField(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementMagneticField_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementMagneticField_valid(self, *args) - -# Register AidingMeasurementMagneticField in _mscl: -_mscl.AidingMeasurementMagneticField_swigregister(AidingMeasurementMagneticField) - -class AidingMeasurementPressure(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementPressure_swiginit(self, _mscl.new_AidingMeasurementPressure(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPressure - - def pressure(self, *args): - return _mscl.AidingMeasurementPressure_pressure(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPressure_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPressure_valid(self, *args) - -# Register AidingMeasurementPressure in _mscl: -_mscl.AidingMeasurementPressure_swigregister(AidingMeasurementPressure) - -class GnssReceiverInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GnssReceiverInfo_swiginit(self, _mscl.new_GnssReceiverInfo(*args)) - id = property(_mscl.GnssReceiverInfo_id_get, _mscl.GnssReceiverInfo_id_set) - targetDataClass = property(_mscl.GnssReceiverInfo_targetDataClass_get, _mscl.GnssReceiverInfo_targetDataClass_set) - description = property(_mscl.GnssReceiverInfo_description_get, _mscl.GnssReceiverInfo_description_set) - module = property(_mscl.GnssReceiverInfo_module_get, _mscl.GnssReceiverInfo_module_set) - fwId = property(_mscl.GnssReceiverInfo_fwId_get, _mscl.GnssReceiverInfo_fwId_set) - fwVersion = property(_mscl.GnssReceiverInfo_fwVersion_get, _mscl.GnssReceiverInfo_fwVersion_set) - __swig_destroy__ = _mscl.delete_GnssReceiverInfo - -# Register GnssReceiverInfo in _mscl: -_mscl.GnssReceiverInfo_swigregister(GnssReceiverInfo) -GnssReceiverInfo.INFO_NOT_FOUND = _mscl.cvar.GnssReceiverInfo_INFO_NOT_FOUND - -class DeviceCommPort(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SPECIAL = _mscl.DeviceCommPort_SPECIAL - UART = _mscl.DeviceCommPort_UART - USB = _mscl.DeviceCommPort_USB - NONE = _mscl.DeviceCommPort_NONE - MIP_COMMANDS = _mscl.DeviceCommPort_MIP_COMMANDS - MIP_DATA = _mscl.DeviceCommPort_MIP_DATA - NMEA = _mscl.DeviceCommPort_NMEA - RTCM = _mscl.DeviceCommPort_RTCM - SPARTN = _mscl.DeviceCommPort_SPARTN - ALL = _mscl.DeviceCommPort_ALL - - def __init__(self, *args): - _mscl.DeviceCommPort_swiginit(self, _mscl.new_DeviceCommPort(*args)) - - def interfaceId(self): - return _mscl.DeviceCommPort_interfaceId(self) - type = property(_mscl.DeviceCommPort_type_get, _mscl.DeviceCommPort_type_set) - id = property(_mscl.DeviceCommPort_id_get, _mscl.DeviceCommPort_id_set) - inputProtocols = property(_mscl.DeviceCommPort_inputProtocols_get, _mscl.DeviceCommPort_inputProtocols_set) - outputProtocols = property(_mscl.DeviceCommPort_outputProtocols_get, _mscl.DeviceCommPort_outputProtocols_set) - __swig_destroy__ = _mscl.delete_DeviceCommPort - -# Register DeviceCommPort in _mscl: -_mscl.DeviceCommPort_swigregister(DeviceCommPort) - -class EventTypeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTypeInfo_swiginit(self, _mscl.new_EventTypeInfo(*args)) - type = property(_mscl.EventTypeInfo_type_get, _mscl.EventTypeInfo_type_set) - maxInstances = property(_mscl.EventTypeInfo_maxInstances_get, _mscl.EventTypeInfo_maxInstances_set) - __swig_destroy__ = _mscl.delete_EventTypeInfo - -# Register EventTypeInfo in _mscl: -_mscl.EventTypeInfo_swigregister(EventTypeInfo) - -class EventSupportInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - TRIGGERS = _mscl.EventSupportInfo_TRIGGERS - ACTIONS = _mscl.EventSupportInfo_ACTIONS - query = property(_mscl.EventSupportInfo_query_get, _mscl.EventSupportInfo_query_set) - maxInstances = property(_mscl.EventSupportInfo_maxInstances_get, _mscl.EventSupportInfo_maxInstances_set) - entries = property(_mscl.EventSupportInfo_entries_get, _mscl.EventSupportInfo_entries_set) - - def __init__(self): - _mscl.EventSupportInfo_swiginit(self, _mscl.new_EventSupportInfo()) - __swig_destroy__ = _mscl.delete_EventSupportInfo - -# Register EventSupportInfo in _mscl: -_mscl.EventSupportInfo_swigregister(EventSupportInfo) - -class SensorRange(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ALL = _mscl.SensorRange_ALL - ACCEL_G = _mscl.SensorRange_ACCEL_G - GYRO_DPS = _mscl.SensorRange_GYRO_DPS - MAG_GAUSS = _mscl.SensorRange_MAG_GAUSS - PRESSURE_HPA = _mscl.SensorRange_PRESSURE_HPA - - def __init__(self): - _mscl.SensorRange_swiginit(self, _mscl.new_SensorRange()) - - def type(self): - return _mscl.SensorRange_type(self) - - def range(self): - return _mscl.SensorRange_range(self) - - def id(self): - return _mscl.SensorRange_id(self) - __swig_destroy__ = _mscl.delete_SensorRange - -# Register SensorRange in _mscl: -_mscl.SensorRange_swigregister(SensorRange) - -class SupportedSensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.SupportedSensorRanges_swiginit(self, _mscl.new_SupportedSensorRanges()) - - def options(self): - return _mscl.SupportedSensorRanges_options(self) - - def lookupRecommended(self, type, range): - return _mscl.SupportedSensorRanges_lookupRecommended(self, type, range) - __swig_destroy__ = _mscl.delete_SupportedSensorRanges - -# Register SupportedSensorRanges in _mscl: -_mscl.SupportedSensorRanges_swigregister(SupportedSensorRanges) - -class InertialTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - PORTABLE_VEHICLE = _mscl.InertialTypes_PORTABLE_VEHICLE - AUTOMOTIVE_VEHICLE = _mscl.InertialTypes_AUTOMOTIVE_VEHICLE - AIRBORNE_VEHICLE = _mscl.InertialTypes_AIRBORNE_VEHICLE - AIRBORNE_HIGH_G_VEHICLE = _mscl.InertialTypes_AIRBORNE_HIGH_G_VEHICLE - GPS_PORTABLE = _mscl.InertialTypes_GPS_PORTABLE - GPS_STATIONARY = _mscl.InertialTypes_GPS_STATIONARY - GPS_PEDESTRIAN = _mscl.InertialTypes_GPS_PEDESTRIAN - GPS_AUTOMOTIVE = _mscl.InertialTypes_GPS_AUTOMOTIVE - GPS_SEA = _mscl.InertialTypes_GPS_SEA - GPS_AIRBORNE_1G = _mscl.InertialTypes_GPS_AIRBORNE_1G - GPS_AIRBORNE_2G = _mscl.InertialTypes_GPS_AIRBORNE_2G - GPS_AIRBORNE_4G = _mscl.InertialTypes_GPS_AIRBORNE_4G - RESET_ALL_AXIS = _mscl.InertialTypes_RESET_ALL_AXIS - TARE_ROLL_AXIS = _mscl.InertialTypes_TARE_ROLL_AXIS - TARE_PITCH_AXIS = _mscl.InertialTypes_TARE_PITCH_AXIS - TARE_YAW_AXIS = _mscl.InertialTypes_TARE_YAW_AXIS - INTERNAL_GNSS_ALL = _mscl.InertialTypes_INTERNAL_GNSS_ALL - EXTERNAL_GNSS = _mscl.InertialTypes_EXTERNAL_GNSS - INTERNAL_GNSS1 = _mscl.InertialTypes_INTERNAL_GNSS1 - INTERNAL_GNSS2 = _mscl.InertialTypes_INTERNAL_GNSS2 - FIX_SBAS_CORRECTIONS = _mscl.InertialTypes_FIX_SBAS_CORRECTIONS - FIX_DGNSS_CORRECTIONS = _mscl.InertialTypes_FIX_DGNSS_CORRECTIONS - FIXTYPE_3D = _mscl.InertialTypes_FIXTYPE_3D - FIXTYPE_2D = _mscl.InertialTypes_FIXTYPE_2D - FIXTYPE_TIMEONLY = _mscl.InertialTypes_FIXTYPE_TIMEONLY - FIXTYPE_NONE = _mscl.InertialTypes_FIXTYPE_NONE - FIXTYPE_INVALID = _mscl.InertialTypes_FIXTYPE_INVALID - FIXTYPE_RTK_FLOAT = _mscl.InertialTypes_FIXTYPE_RTK_FLOAT - FIXTYPE_RTK_FIXED = _mscl.InertialTypes_FIXTYPE_RTK_FIXED - FIXTYPE_DUAL_ANTENNA_NONE = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_NONE - FIXTYPE_DUAL_ANTENNA_FLOAT = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FLOAT - FIXTYPE_DUAL_ANTENNA_FIXED = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FIXED - DATA_VALID_REC_1 = _mscl.InertialTypes_DATA_VALID_REC_1 - DATA_VALID_REC_2 = _mscl.InertialTypes_DATA_VALID_REC_2 - ANTENNA_OFFSETS_VALID = _mscl.InertialTypes_ANTENNA_OFFSETS_VALID - SVFLAG_NAVIGATION = _mscl.InertialTypes_SVFLAG_NAVIGATION - SVFLAG_HEALTHY = _mscl.InertialTypes_SVFLAG_HEALTHY - DEVICE_AHRS = _mscl.InertialTypes_DEVICE_AHRS - DEVICE_GPS = _mscl.InertialTypes_DEVICE_GPS - ON_FULL_PERFORMANCE = _mscl.InertialTypes_ON_FULL_PERFORMANCE - ON_LOW_POWER = _mscl.InertialTypes_ON_LOW_POWER - SLEEP = _mscl.InertialTypes_SLEEP - OFF = _mscl.InertialTypes_OFF - STANDARD_MIP = _mscl.InertialTypes_STANDARD_MIP - WRAPPED_RAW = _mscl.InertialTypes_WRAPPED_RAW - SENSORSTATE_OFF = _mscl.InertialTypes_SENSORSTATE_OFF - SENSORSTATE_ON = _mscl.InertialTypes_SENSORSTATE_ON - SENSORSTATE_UNKNOWN = _mscl.InertialTypes_SENSORSTATE_UNKNOWN - ANTENNASTATE_INIT = _mscl.InertialTypes_ANTENNASTATE_INIT - ANTENNASTATE_SHORT = _mscl.InertialTypes_ANTENNASTATE_SHORT - ANTENNASTATE_OPEN = _mscl.InertialTypes_ANTENNASTATE_OPEN - ANTENNASTATE_GOOD = _mscl.InertialTypes_ANTENNASTATE_GOOD - ANTENNASTATE_UNKNOWN = _mscl.InertialTypes_ANTENNASTATE_UNKNOWN - ANTENNAPOWER_OFF = _mscl.InertialTypes_ANTENNAPOWER_OFF - ANTENNAPOWER_ON = _mscl.InertialTypes_ANTENNAPOWER_ON - ANTENNAPOWER_UNKNOWN = _mscl.InertialTypes_ANTENNAPOWER_UNKNOWN - FILTERSTATE_STARTUP = _mscl.InertialTypes_FILTERSTATE_STARTUP - FILTERSTATE_INIT = _mscl.InertialTypes_FILTERSTATE_INIT - FILTERSTATE_RUNNING_SLN_VALID = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_VALID - FILTERSTATE_RUNNING_SLN_ERROR = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_ERROR - FILTERSTATE_VERT_GYRO = _mscl.InertialTypes_FILTERSTATE_VERT_GYRO - FILTERSTATE_AHRS = _mscl.InertialTypes_FILTERSTATE_AHRS - FILTERSTATE_FULL_NAV = _mscl.InertialTypes_FILTERSTATE_FULL_NAV - FILTERSTATUS_IMU_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_IMU_UNAVAILABLE - FILTERSTATUS_GPS_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_GPS_UNAVAILABLE - FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC = _mscl.InertialTypes_FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC - FILTERSTATUS_POS_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_POS_COVARIANCE_HIGH_WARN - FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN - FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN - FILTERSTATUS_NAN_IN_SOLUTION = _mscl.InertialTypes_FILTERSTATUS_NAN_IN_SOLUTION - FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN - FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN - FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN - FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN - FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_CONDITION = _mscl.InertialTypes_FILTERSTATUS_CONDITION - FILTERSTATUS_ROLL_PITCH_WARNING = _mscl.InertialTypes_FILTERSTATUS_ROLL_PITCH_WARNING - FILTERSTATUS_HEADING_WARNING = _mscl.InertialTypes_FILTERSTATUS_HEADING_WARNING - FILTERSTATUS_POSITION_WARNING = _mscl.InertialTypes_FILTERSTATUS_POSITION_WARNING - FILTERSTATUS_VELOCITY_WARNING = _mscl.InertialTypes_FILTERSTATUS_VELOCITY_WARNING - FILTERSTATUS_IMU_BIAS_WARNING = _mscl.InertialTypes_FILTERSTATUS_IMU_BIAS_WARNING - FILTERSTATUS_GNSS_CLK_WARNING = _mscl.InertialTypes_FILTERSTATUS_GNSS_CLK_WARNING - FILTERSTATUS_ANT_LEVER_ARM_WARNING = _mscl.InertialTypes_FILTERSTATUS_ANT_LEVER_ARM_WARNING - FILTERSTATUS_MOUNTING_TRANSFORM_WARNING = _mscl.InertialTypes_FILTERSTATUS_MOUNTING_TRANSFORM_WARNING - FILTERSTATUS_ATT_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_ATT_NOT_INIT - FILTERSTATUS_POS_VEL_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_POS_VEL_NOT_INIT - STABLE = _mscl.InertialTypes_STABLE - CONVERGING = _mscl.InertialTypes_CONVERGING - UNSTABLE = _mscl.InertialTypes_UNSTABLE - DGNSSBASE_UDRE_SCALE_FACTOR_1_00 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_1_00 - DGNSSBASE_UDRE_SCALE_FACTOR_0_75 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_75 - DGNSSBASE_UDRE_SCALE_FACTOR_0_50 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_50 - DGNSSBASE_UDRE_SCALE_FACTOR_0_30 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_30 - DGNSSBASE_UDRE_SCALE_FACTOR_0_20 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_20 - DGNSSBASE_UDRE_SCALE_FACTOR_0_10 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_10 - DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED - DGNSSBASE_REFERENCE_STATION_NOT_WORKING = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_NOT_WORKING - HEADINGSOURCE_NONE = _mscl.InertialTypes_HEADINGSOURCE_NONE - HEADINGSOURCE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_MAGNETOMETER - HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR - HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD = _mscl.InertialTypes_HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD - HEADINGSOURCE_GNSS_DUAL_ANTENNA = _mscl.InertialTypes_HEADINGSOURCE_GNSS_DUAL_ANTENNA - ENABLE_NONE = _mscl.InertialTypes_ENABLE_NONE - ENABLE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_ENABLE_INTERNAL_MAGNETOMETER - ENABLE_INTERNAL_GNSS = _mscl.InertialTypes_ENABLE_INTERNAL_GNSS - ENABLE_EXTERNAL_MESSAGES = _mscl.InertialTypes_ENABLE_EXTERNAL_MESSAGES - ENABLE_MAGNETOMETER_AND_GNSS = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_GNSS - ENABLE_GNSS_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_GNSS_AND_EXTERNAL - ENABLE_MAGNETOMETER_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_EXTERNAL - ENABLE_ALL = _mscl.InertialTypes_ENABLE_ALL - ENABLE_GYRO_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_BIAS_ESTIMATION - ENABLE_ACCEL_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_BIAS_ESTIMATION - ENABLE_GYRO_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_SCALE_FACTOR_ESTIMATION - ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION - ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION = _mscl.InertialTypes_ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION - ENABLE_HARD_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_HARD_IRON_AUTO_CALIBRATION - ENABLE_SOFT_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_SOFT_IRON_AUTO_CALIBRATION - NONE = _mscl.InertialTypes_NONE - WORLD_MAGNETIC_MODEL = _mscl.InertialTypes_WORLD_MAGNETIC_MODEL - MANUAL = _mscl.InertialTypes_MANUAL - ADAPTIVE_MEASUREMENT_DISABLE = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_DISABLE - ADAPTIVE_MEASUREMENT_ENABLE_FIXED = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_FIXED - ADAPTIVE_MEASUREMENT_ENABLE_AUTO = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_AUTO - GNSS_POS_VEL_AIDING = _mscl.InertialTypes_GNSS_POS_VEL_AIDING - GNSS_HEADING_AIDING = _mscl.InertialTypes_GNSS_HEADING_AIDING - ALTIMETER_AIDING = _mscl.InertialTypes_ALTIMETER_AIDING - ODOMETER_AIDING = _mscl.InertialTypes_ODOMETER_AIDING - MAGNETOMETER_AIDING = _mscl.InertialTypes_MAGNETOMETER_AIDING - EXTERNAL_HEADING_AIDING = _mscl.InertialTypes_EXTERNAL_HEADING_AIDING - EXTERNAL_ALTIMETER_AIDING = _mscl.InertialTypes_EXTERNAL_ALTIMETER_AIDING - EXTERNAL_MAGNETOMETER_AIDING = _mscl.InertialTypes_EXTERNAL_MAGNETOMETER_AIDING - BODY_FRAME_VEL_AIDING = _mscl.InertialTypes_BODY_FRAME_VEL_AIDING - ALL_AIDING_MEASUREMENTS = _mscl.InertialTypes_ALL_AIDING_MEASUREMENTS - GPS = _mscl.InertialTypes_GPS - SBAS = _mscl.InertialTypes_SBAS - GALILEO = _mscl.InertialTypes_GALILEO - BEIDOU = _mscl.InertialTypes_BEIDOU - QZSS = _mscl.InertialTypes_QZSS - GLONASS = _mscl.InertialTypes_GLONASS - FILTERING_OFF = _mscl.InertialTypes_FILTERING_OFF - FILTERING_CONSERVATIVE = _mscl.InertialTypes_FILTERING_CONSERVATIVE - FILTERING_MODERATE = _mscl.InertialTypes_FILTERING_MODERATE - FILTERING_AGGRESSIVE = _mscl.InertialTypes_FILTERING_AGGRESSIVE - FACTORY_STREAMING_OVERWRITE = _mscl.InertialTypes_FACTORY_STREAMING_OVERWRITE - FACTORY_STREAMING_MERGE = _mscl.InertialTypes_FACTORY_STREAMING_MERGE - FACTORY_STREAMING_ADDITIVE = _mscl.InertialTypes_FACTORY_STREAMING_ADDITIVE - PPS_DISABLED = _mscl.InertialTypes_PPS_DISABLED - PPS_RECEIVER_1 = _mscl.InertialTypes_PPS_RECEIVER_1 - PPS_RECEIVER_2 = _mscl.InertialTypes_PPS_RECEIVER_2 - PPS_GPIO = _mscl.InertialTypes_PPS_GPIO - PPS_GENERATED = _mscl.InertialTypes_PPS_GENERATED - GNSS_AIDING_TIGHT_COUPLING = _mscl.InertialTypes_GNSS_AIDING_TIGHT_COUPLING - GNSS_AIDING_DIFFERENTIAL = _mscl.InertialTypes_GNSS_AIDING_DIFFERENTIAL - GNSS_AIDING_INTEGER_FIX = _mscl.InertialTypes_GNSS_AIDING_INTEGER_FIX - GNSS_AIDING_GPS = _mscl.InertialTypes_GNSS_AIDING_GPS - GNSS_AIDING_GLONASS = _mscl.InertialTypes_GNSS_AIDING_GLONASS - GNSS_AIDING_GALILEO = _mscl.InertialTypes_GNSS_AIDING_GALILEO - GNSS_AIDING_BEIDOU = _mscl.InertialTypes_GNSS_AIDING_BEIDOU - GNSS_AIDING_NO_FIX = _mscl.InertialTypes_GNSS_AIDING_NO_FIX - GNSS_AIDING_CONFIG_ERROR = _mscl.InertialTypes_GNSS_AIDING_CONFIG_ERROR - AIDING_MEASUREMENT_ENABLED = _mscl.InertialTypes_AIDING_MEASUREMENT_ENABLED - AIDING_MEASUREMENT_USED = _mscl.InertialTypes_AIDING_MEASUREMENT_USED - AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH - AIDING_MEASUREMENT_WARNING_SAMPLE_TIME = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_SAMPLE_TIME - AIDING_MEASUREMENT_CONFIG_ERROR = _mscl.InertialTypes_AIDING_MEASUREMENT_CONFIG_ERROR - AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED = _mscl.InertialTypes_AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED - RTK_CORRECTION_ANTENNA_POS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_POS_RECEIVED - RTK_CORRECTION_ANTENNA_DESC_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_DESC_RECEIVED - RTK_CORRECTION_GPS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GPS_RECEIVED - RTK_CORRECTION_GLONASS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GLONASS_RECEIVED - RTK_CORRECTION_GALILEO_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GALILEO_RECEIVED - RTK_CORRECTION_BEIDOU_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_BEIDOU_RECEIVED - RTK_CORRECTION_USING_GPS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GPS_MSM - RTK_CORRECTION_USING_GLONASS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GLONASS_MSM - SIGNAL_QUALITY_NONE = _mscl.InertialTypes_SIGNAL_QUALITY_NONE - SIGNAL_QUALITY_SEARCHING = _mscl.InertialTypes_SIGNAL_QUALITY_SEARCHING - SIGNAL_QUALITY_ACQUIRED = _mscl.InertialTypes_SIGNAL_QUALITY_ACQUIRED - SIGNAL_QUALITY_UNUSABLE = _mscl.InertialTypes_SIGNAL_QUALITY_UNUSABLE - SIGNAL_QUALITY_TIME_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_TIME_LOCKED - SIGNAL_QUALITY_FULLY_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_FULLY_LOCKED - OVERRANGE_ACCEL_X = _mscl.InertialTypes_OVERRANGE_ACCEL_X - OVERRANGE_ACCEL_Y = _mscl.InertialTypes_OVERRANGE_ACCEL_Y - OVERRANGE_ACCEL_Z = _mscl.InertialTypes_OVERRANGE_ACCEL_Z - OVERRANGE_GYRO_X = _mscl.InertialTypes_OVERRANGE_GYRO_X - OVERRANGE_GYRO_Y = _mscl.InertialTypes_OVERRANGE_GYRO_Y - OVERRANGE_GYRO_Z = _mscl.InertialTypes_OVERRANGE_GYRO_Z - OVERRANGE_MAG_X = _mscl.InertialTypes_OVERRANGE_MAG_X - OVERRANGE_MAG_Y = _mscl.InertialTypes_OVERRANGE_MAG_Y - OVERRANGE_MAG_Z = _mscl.InertialTypes_OVERRANGE_MAG_Z - OVERRANGE_PRESSURE = _mscl.InertialTypes_OVERRANGE_PRESSURE - UNKNOWN_SBAS_SYSTEM = _mscl.InertialTypes_UNKNOWN_SBAS_SYSTEM - WAAS = _mscl.InertialTypes_WAAS - EGNOS = _mscl.InertialTypes_EGNOS - MSAS = _mscl.InertialTypes_MSAS - GAGAN = _mscl.InertialTypes_GAGAN - SBAS_INFO_RANGE_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_RANGE_AVAILABLE - SBAS_INFO_CORRECTIONS_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_CORRECTIONS_AVAILABLE - SBAS_INFO_INTEGRITY_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_INTEGRITY_AVAILABLE - SBAS_INFO_TEST = _mscl.InertialTypes_SBAS_INFO_TEST - JAMMING_STATE_UNKNOWN = _mscl.InertialTypes_JAMMING_STATE_UNKNOWN - JAMMING_STATE_NONE = _mscl.InertialTypes_JAMMING_STATE_NONE - JAMMING_STATE_PARTIAL = _mscl.InertialTypes_JAMMING_STATE_PARTIAL - JAMMING_STATE_SIGNIFICANT = _mscl.InertialTypes_JAMMING_STATE_SIGNIFICANT - SPOOFING_STATE_UNKNOWN = _mscl.InertialTypes_SPOOFING_STATE_UNKNOWN - SPOOFING_STATE_NONE = _mscl.InertialTypes_SPOOFING_STATE_NONE - SPOOFING_STATE_PARTIAL = _mscl.InertialTypes_SPOOFING_STATE_PARTIAL - SPOOFING_STATE_SIGNIFICANT = _mscl.InertialTypes_SPOOFING_STATE_SIGNIFICANT - - def __init__(self): - _mscl.InertialTypes_swiginit(self, _mscl.new_InertialTypes()) - __swig_destroy__ = _mscl.delete_InertialTypes - -# Register InertialTypes in _mscl: -_mscl.InertialTypes_swigregister(InertialTypes) - -class NmeaMessageFormat(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_MESSAGES = _mscl.NmeaMessageFormat_MAX_MESSAGES - GGA = _mscl.NmeaMessageFormat_GGA - GLL = _mscl.NmeaMessageFormat_GLL - GSV = _mscl.NmeaMessageFormat_GSV - RMC = _mscl.NmeaMessageFormat_RMC - VTG = _mscl.NmeaMessageFormat_VTG - HDT = _mscl.NmeaMessageFormat_HDT - ZDA = _mscl.NmeaMessageFormat_ZDA - MSRA = _mscl.NmeaMessageFormat_MSRA - MSRR = _mscl.NmeaMessageFormat_MSRR - IGNORED = _mscl.NmeaMessageFormat_IGNORED - GNSS = _mscl.NmeaMessageFormat_GNSS - GPS = _mscl.NmeaMessageFormat_GPS - GALILEO = _mscl.NmeaMessageFormat_GALILEO - GLONASS = _mscl.NmeaMessageFormat_GLONASS - - def __init__(self): - _mscl.NmeaMessageFormat_swiginit(self, _mscl.new_NmeaMessageFormat()) - __swig_destroy__ = _mscl.delete_NmeaMessageFormat - - def sentenceType(self, *args): - return _mscl.NmeaMessageFormat_sentenceType(self, *args) - - def talkerId(self, *args): - return _mscl.NmeaMessageFormat_talkerId(self, *args) - - def sourceDataClass(self, *args): - return _mscl.NmeaMessageFormat_sourceDataClass(self, *args) - - def sampleRate(self, *args): - return _mscl.NmeaMessageFormat_sampleRate(self, *args) - - @staticmethod - def talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - - @staticmethod - def dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - - @staticmethod - def supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - - @staticmethod - def toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -# Register NmeaMessageFormat in _mscl: -_mscl.NmeaMessageFormat_swigregister(NmeaMessageFormat) -NmeaMessageFormat.MAX_FREQUENCY = _mscl.cvar.NmeaMessageFormat_MAX_FREQUENCY - -def NmeaMessageFormat_talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - -def NmeaMessageFormat_dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - -def NmeaMessageFormat_supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - -def NmeaMessageFormat_toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -class Matrix_3x3(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Matrix_3x3_swiginit(self, _mscl.new_Matrix_3x3(*args)) - __swig_destroy__ = _mscl.delete_Matrix_3x3 - - def set(self, row, col, value): - return _mscl.Matrix_3x3_set(self, row, col, value) - - def at(self, row, col): - return _mscl.Matrix_3x3_at(self, row, col) - - def __str__(self): - return _mscl.Matrix_3x3___str__(self) - - def asMipFieldValues(self): - return _mscl.Matrix_3x3_asMipFieldValues(self) - -# Register Matrix_3x3 in _mscl: -_mscl.Matrix_3x3_swigregister(Matrix_3x3) - -class TimeUpdate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, timeOfWeek, weekNumber, timeAccuracy=0): - _mscl.TimeUpdate_swiginit(self, _mscl.new_TimeUpdate(timeOfWeek, weekNumber, timeAccuracy)) - __swig_destroy__ = _mscl.delete_TimeUpdate - - def timeOfWeek(self): - return _mscl.TimeUpdate_timeOfWeek(self) - - def weekNumber(self): - return _mscl.TimeUpdate_weekNumber(self) - - def timeAccuracy(self): - return _mscl.TimeUpdate_timeAccuracy(self) - -# Register TimeUpdate in _mscl: -_mscl.TimeUpdate_swigregister(TimeUpdate) - -class ZUPTSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, enable, threshold): - _mscl.ZUPTSettingsData_swiginit(self, _mscl.new_ZUPTSettingsData(enable, threshold)) - enabled = property(_mscl.ZUPTSettingsData_enabled_get, _mscl.ZUPTSettingsData_enabled_set) - threshold = property(_mscl.ZUPTSettingsData_threshold_get, _mscl.ZUPTSettingsData_threshold_set) - __swig_destroy__ = _mscl.delete_ZUPTSettingsData - -# Register ZUPTSettingsData in _mscl: -_mscl.ZUPTSettingsData_swigregister(ZUPTSettingsData) - -class FixedReferencePositionData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.FixedReferencePositionData_swiginit(self, _mscl.new_FixedReferencePositionData(*args)) - enable = property(_mscl.FixedReferencePositionData_enable_get, _mscl.FixedReferencePositionData_enable_set) - referencePosition = property(_mscl.FixedReferencePositionData_referencePosition_get, _mscl.FixedReferencePositionData_referencePosition_set) - __swig_destroy__ = _mscl.delete_FixedReferencePositionData - -# Register FixedReferencePositionData in _mscl: -_mscl.FixedReferencePositionData_swigregister(FixedReferencePositionData) - -class SBASSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enableSBAS = property(_mscl.SBASSettingsData_enableSBAS_get, _mscl.SBASSettingsData_enableSBAS_set) - enableRanging = property(_mscl.SBASSettingsData_enableRanging_get, _mscl.SBASSettingsData_enableRanging_set) - enableCorrectionData = property(_mscl.SBASSettingsData_enableCorrectionData_get, _mscl.SBASSettingsData_enableCorrectionData_set) - applyIntegrityInfo = property(_mscl.SBASSettingsData_applyIntegrityInfo_get, _mscl.SBASSettingsData_applyIntegrityInfo_set) - satellitePRNs = property(_mscl.SBASSettingsData_satellitePRNs_get, _mscl.SBASSettingsData_satellitePRNs_set) - - def __init__(self): - _mscl.SBASSettingsData_swiginit(self, _mscl.new_SBASSettingsData()) - __swig_destroy__ = _mscl.delete_SBASSettingsData - -# Register SBASSettingsData in _mscl: -_mscl.SBASSettingsData_swigregister(SBASSettingsData) - -class Constellation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - constellationID = property(_mscl.Constellation_constellationID_get, _mscl.Constellation_constellationID_set) - enabled = property(_mscl.Constellation_enabled_get, _mscl.Constellation_enabled_set) - reservedChannelCount = property(_mscl.Constellation_reservedChannelCount_get, _mscl.Constellation_reservedChannelCount_set) - maxChannels = property(_mscl.Constellation_maxChannels_get, _mscl.Constellation_maxChannels_set) - enableL1SAIF = property(_mscl.Constellation_enableL1SAIF_get, _mscl.Constellation_enableL1SAIF_set) - - def __init__(self): - _mscl.Constellation_swiginit(self, _mscl.new_Constellation()) - __swig_destroy__ = _mscl.delete_Constellation - -# Register Constellation in _mscl: -_mscl.Constellation_swigregister(Constellation) - -class ConstellationSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - maxChannelsAvailable = property(_mscl.ConstellationSettingsData_maxChannelsAvailable_get, _mscl.ConstellationSettingsData_maxChannelsAvailable_set) - maxChannelsToUse = property(_mscl.ConstellationSettingsData_maxChannelsToUse_get, _mscl.ConstellationSettingsData_maxChannelsToUse_set) - constellations = property(_mscl.ConstellationSettingsData_constellations_get, _mscl.ConstellationSettingsData_constellations_set) - - def __init__(self): - _mscl.ConstellationSettingsData_swiginit(self, _mscl.new_ConstellationSettingsData()) - __swig_destroy__ = _mscl.delete_ConstellationSettingsData - -# Register ConstellationSettingsData in _mscl: -_mscl.ConstellationSettingsData_swigregister(ConstellationSettingsData) - -class LowPassFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SET_TO_HALF_REPORTING_RATE = _mscl.LowPassFilterData_SET_TO_HALF_REPORTING_RATE - USER_SPECIFIED_CUTOFF_FREQ = _mscl.LowPassFilterData_USER_SPECIFIED_CUTOFF_FREQ - - def __init__(self, *args): - _mscl.LowPassFilterData_swiginit(self, _mscl.new_LowPassFilterData(*args)) - dataDescriptor = property(_mscl.LowPassFilterData_dataDescriptor_get, _mscl.LowPassFilterData_dataDescriptor_set) - manualFilterBandwidthConfig = property(_mscl.LowPassFilterData_manualFilterBandwidthConfig_get, _mscl.LowPassFilterData_manualFilterBandwidthConfig_set) - applyLowPassFilter = property(_mscl.LowPassFilterData_applyLowPassFilter_get, _mscl.LowPassFilterData_applyLowPassFilter_set) - cutoffFrequency = property(_mscl.LowPassFilterData_cutoffFrequency_get, _mscl.LowPassFilterData_cutoffFrequency_set) - - @staticmethod - def getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - - @staticmethod - def getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - __swig_destroy__ = _mscl.delete_LowPassFilterData - -# Register LowPassFilterData in _mscl: -_mscl.LowPassFilterData_swigregister(LowPassFilterData) - -def LowPassFilterData_getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - -def LowPassFilterData_getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - -class ComplementaryFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ComplementaryFilterData_swiginit(self, _mscl.new_ComplementaryFilterData()) - upCompensationEnabled = property(_mscl.ComplementaryFilterData_upCompensationEnabled_get, _mscl.ComplementaryFilterData_upCompensationEnabled_set) - upCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_upCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_upCompensationTimeInSeconds_set) - northCompensationEnabled = property(_mscl.ComplementaryFilterData_northCompensationEnabled_get, _mscl.ComplementaryFilterData_northCompensationEnabled_set) - northCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_northCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_northCompensationTimeInSeconds_set) - __swig_destroy__ = _mscl.delete_ComplementaryFilterData - -# Register ComplementaryFilterData in _mscl: -_mscl.ComplementaryFilterData_swigregister(ComplementaryFilterData) - -class PpsPulseInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PpsPulseInfo_swiginit(self, _mscl.new_PpsPulseInfo()) - count = property(_mscl.PpsPulseInfo_count_get, _mscl.PpsPulseInfo_count_set) - lastTimeinMS = property(_mscl.PpsPulseInfo_lastTimeinMS_get, _mscl.PpsPulseInfo_lastTimeinMS_set) - __swig_destroy__ = _mscl.delete_PpsPulseInfo - -# Register PpsPulseInfo in _mscl: -_mscl.PpsPulseInfo_swigregister(PpsPulseInfo) - -class StreamInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.StreamInfo_swiginit(self, _mscl.new_StreamInfo()) - enabled = property(_mscl.StreamInfo_enabled_get, _mscl.StreamInfo_enabled_set) - outgoingPacketsDropped = property(_mscl.StreamInfo_outgoingPacketsDropped_get, _mscl.StreamInfo_outgoingPacketsDropped_set) - __swig_destroy__ = _mscl.delete_StreamInfo - -# Register StreamInfo in _mscl: -_mscl.StreamInfo_swigregister(StreamInfo) - -class DeviceMessageInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.DeviceMessageInfo_swiginit(self, _mscl.new_DeviceMessageInfo()) - messageParsingErrors = property(_mscl.DeviceMessageInfo_messageParsingErrors_get, _mscl.DeviceMessageInfo_messageParsingErrors_set) - messagesRead = property(_mscl.DeviceMessageInfo_messagesRead_get, _mscl.DeviceMessageInfo_messagesRead_set) - lastMessageReadinMS = property(_mscl.DeviceMessageInfo_lastMessageReadinMS_get, _mscl.DeviceMessageInfo_lastMessageReadinMS_set) - __swig_destroy__ = _mscl.delete_DeviceMessageInfo - -# Register DeviceMessageInfo in _mscl: -_mscl.DeviceMessageInfo_swigregister(DeviceMessageInfo) - -class PortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PortInfo_swiginit(self, _mscl.new_PortInfo()) - bytesWritten = property(_mscl.PortInfo_bytesWritten_get, _mscl.PortInfo_bytesWritten_set) - bytesRead = property(_mscl.PortInfo_bytesRead_get, _mscl.PortInfo_bytesRead_set) - overrunsOnWrite = property(_mscl.PortInfo_overrunsOnWrite_get, _mscl.PortInfo_overrunsOnWrite_set) - overrunsOnRead = property(_mscl.PortInfo_overrunsOnRead_get, _mscl.PortInfo_overrunsOnRead_set) - __swig_destroy__ = _mscl.delete_PortInfo - -# Register PortInfo in _mscl: -_mscl.PortInfo_swigregister(PortInfo) - -class TemperatureInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.TemperatureInfo_swiginit(self, _mscl.new_TemperatureInfo()) - onBoardTemp = property(_mscl.TemperatureInfo_onBoardTemp_get, _mscl.TemperatureInfo_onBoardTemp_set) - lastReadInMS = property(_mscl.TemperatureInfo_lastReadInMS_get, _mscl.TemperatureInfo_lastReadInMS_set) - error = property(_mscl.TemperatureInfo_error_get, _mscl.TemperatureInfo_error_set) - __swig_destroy__ = _mscl.delete_TemperatureInfo - -# Register TemperatureInfo in _mscl: -_mscl.TemperatureInfo_swigregister(TemperatureInfo) - -ModelNumber = _mscl.ModelNumber -StatusStructure_Value = _mscl.StatusStructure_Value -SystemState_Value = _mscl.SystemState_Value -gnss1PpsPulseInfo_Count = _mscl.gnss1PpsPulseInfo_Count -gnss1PpsPulseInfo_LastTimeinMS = _mscl.gnss1PpsPulseInfo_LastTimeinMS -GnssPowerStateOn = _mscl.GnssPowerStateOn -ImuStreamInfo_Enabled = _mscl.ImuStreamInfo_Enabled -ImuStreamInfo_PacketsDropped = _mscl.ImuStreamInfo_PacketsDropped -GnssStreamInfo_Enabled = _mscl.GnssStreamInfo_Enabled -GnssStreamInfo_PacketsDropped = _mscl.GnssStreamInfo_PacketsDropped -EstimationFilterStreamInfo_Enabled = _mscl.EstimationFilterStreamInfo_Enabled -EstimationFilterStreamInfo_PacketsDropped = _mscl.EstimationFilterStreamInfo_PacketsDropped -ComPortInfo_BytesRead = _mscl.ComPortInfo_BytesRead -ComPortInfo_BytesWritten = _mscl.ComPortInfo_BytesWritten -ComPortInfo_OverrunsOnRead = _mscl.ComPortInfo_OverrunsOnRead -ComPortInfo_OverrunsOnWrite = _mscl.ComPortInfo_OverrunsOnWrite -ImuMessageInfo_LastMessageReadinMS = _mscl.ImuMessageInfo_LastMessageReadinMS -ImuMessageInfo_MessageParsingErrors = _mscl.ImuMessageInfo_MessageParsingErrors -ImuMessageInfo_MessagesRead = _mscl.ImuMessageInfo_MessagesRead -GnssMessageInfo_LastMessageReadinMS = _mscl.GnssMessageInfo_LastMessageReadinMS -GnssMessageInfo_MessageParsingErrors = _mscl.GnssMessageInfo_MessageParsingErrors -GnssMessageInfo_MessagesRead = _mscl.GnssMessageInfo_MessagesRead -TemperatureInfo_Error = _mscl.TemperatureInfo_Error -TemperatureInfo_LastReadInMS = _mscl.TemperatureInfo_LastReadInMS -TemperatureInfo_OnBoardTemp = _mscl.TemperatureInfo_OnBoardTemp -PowerState = _mscl.PowerState -GyroRange = _mscl.GyroRange -AccelRange = _mscl.AccelRange -HasMagnetometer = _mscl.HasMagnetometer -HasPressure = _mscl.HasPressure -class DeviceStatusData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_BASIC_STATUS_STRUCTURE - DIAGNOSTIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_DIAGNOSTIC_STATUS_STRUCTURE - SYSTEM_INITIALIZATION = _mscl.DeviceStatusData_SYSTEM_INITIALIZATION - SYSTEM_STARTUP = _mscl.DeviceStatusData_SYSTEM_STARTUP - SYSTEM_RUNNING = _mscl.DeviceStatusData_SYSTEM_RUNNING - - def __init__(self): - _mscl.DeviceStatusData_swiginit(self, _mscl.new_DeviceStatusData()) - modelNumber = property(_mscl.DeviceStatusData_modelNumber_get, _mscl.DeviceStatusData_modelNumber_set) - statusStructure = property(_mscl.DeviceStatusData_statusStructure_get, _mscl.DeviceStatusData_statusStructure_set) - systemTimerInMS = property(_mscl.DeviceStatusData_systemTimerInMS_get, _mscl.DeviceStatusData_systemTimerInMS_set) - - def systemState(self, *args): - return _mscl.DeviceStatusData_systemState(self, *args) - - def gnssPowerStateOn(self, *args): - return _mscl.DeviceStatusData_gnssPowerStateOn(self, *args) - - def gnss1PpsPulseInfo(self, *args): - return _mscl.DeviceStatusData_gnss1PpsPulseInfo(self, *args) - - def imuStreamInfo(self, *args): - return _mscl.DeviceStatusData_imuStreamInfo(self, *args) - - def gnssStreamInfo(self, *args): - return _mscl.DeviceStatusData_gnssStreamInfo(self, *args) - - def estimationFilterStreamInfo(self, *args): - return _mscl.DeviceStatusData_estimationFilterStreamInfo(self, *args) - - def imuMessageInfo(self, *args): - return _mscl.DeviceStatusData_imuMessageInfo(self, *args) - - def gnssMessageInfo(self, *args): - return _mscl.DeviceStatusData_gnssMessageInfo(self, *args) - - def comPortInfo(self, *args): - return _mscl.DeviceStatusData_comPortInfo(self, *args) - - def usbPortInfo(self, *args): - return _mscl.DeviceStatusData_usbPortInfo(self, *args) - - def hasMagnetometer(self, *args): - return _mscl.DeviceStatusData_hasMagnetometer(self, *args) - - def magnetometerInitializationFailed(self, *args): - return _mscl.DeviceStatusData_magnetometerInitializationFailed(self, *args) - - def hasPressure(self, *args): - return _mscl.DeviceStatusData_hasPressure(self, *args) - - def pressureInitializationFailed(self, *args): - return _mscl.DeviceStatusData_pressureInitializationFailed(self, *args) - - def gnssReceiverInitializationFailed(self, *args): - return _mscl.DeviceStatusData_gnssReceiverInitializationFailed(self, *args) - - def coldStartOnPowerOn(self, *args): - return _mscl.DeviceStatusData_coldStartOnPowerOn(self, *args) - - def temperatureInfo(self, *args): - return _mscl.DeviceStatusData_temperatureInfo(self, *args) - - def powerState(self, *args): - return _mscl.DeviceStatusData_powerState(self, *args) - - def gyroRange(self, *args): - return _mscl.DeviceStatusData_gyroRange(self, *args) - - def accelRange(self, *args): - return _mscl.DeviceStatusData_accelRange(self, *args) - - def asMap(self): - return _mscl.DeviceStatusData_asMap(self) - - def asValueMap(self): - return _mscl.DeviceStatusData_asValueMap(self) - __swig_destroy__ = _mscl.delete_DeviceStatusData - -# Register DeviceStatusData in _mscl: -_mscl.DeviceStatusData_swigregister(DeviceStatusData) - -class ExternalGNSSUpdateData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - gpsTimeOfWeek = property(_mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_get, _mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_set) - gpsWeekNumber = property(_mscl.ExternalGNSSUpdateData_gpsWeekNumber_get, _mscl.ExternalGNSSUpdateData_gpsWeekNumber_set) - lattitude = property(_mscl.ExternalGNSSUpdateData_lattitude_get, _mscl.ExternalGNSSUpdateData_lattitude_set) - longitude = property(_mscl.ExternalGNSSUpdateData_longitude_get, _mscl.ExternalGNSSUpdateData_longitude_set) - altitudeAboveWGS84Ellipsoid = property(_mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_get, _mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_set) - northVelocity = property(_mscl.ExternalGNSSUpdateData_northVelocity_get, _mscl.ExternalGNSSUpdateData_northVelocity_set) - eastVelocity = property(_mscl.ExternalGNSSUpdateData_eastVelocity_get, _mscl.ExternalGNSSUpdateData_eastVelocity_set) - downVelocity = property(_mscl.ExternalGNSSUpdateData_downVelocity_get, _mscl.ExternalGNSSUpdateData_downVelocity_set) - northPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_northPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_northPositionUncertainty_set) - eastPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_eastPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_eastPositionUncertainty_set) - downPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_downPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_downPositionUncertainty_set) - northVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_northVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_northVelocityUncertainty_set) - eastVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_set) - downVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_downVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_downVelocityUncertainty_set) - - def __init__(self): - _mscl.ExternalGNSSUpdateData_swiginit(self, _mscl.new_ExternalGNSSUpdateData()) - __swig_destroy__ = _mscl.delete_ExternalGNSSUpdateData - -# Register ExternalGNSSUpdateData in _mscl: -_mscl.ExternalGNSSUpdateData_swigregister(ExternalGNSSUpdateData) - -class HeadingUpdateOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsOptionId(self): - return _mscl.HeadingUpdateOptions_AsOptionId(self) - - def __init__(self, *args): - _mscl.HeadingUpdateOptions_swiginit(self, _mscl.new_HeadingUpdateOptions(*args)) - useInternalMagnetometer = property(_mscl.HeadingUpdateOptions_useInternalMagnetometer_get, _mscl.HeadingUpdateOptions_useInternalMagnetometer_set) - useInternalGNSSVelocityVector = property(_mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_get, _mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_set) - useExternalHeadingMessages = property(_mscl.HeadingUpdateOptions_useExternalHeadingMessages_get, _mscl.HeadingUpdateOptions_useExternalHeadingMessages_set) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptions - -# Register HeadingUpdateOptions in _mscl: -_mscl.HeadingUpdateOptions_swigregister(HeadingUpdateOptions) - -Automatic = _mscl.Automatic -UserSpecified_Heading = _mscl.UserSpecified_Heading -UserSpecified_Attitude = _mscl.UserSpecified_Attitude -UserSpecified_All = _mscl.UserSpecified_All -GNSS_DualAntenna = _mscl.GNSS_DualAntenna -GNSS_Kinematic = _mscl.GNSS_Kinematic -Magnetometer = _mscl.Magnetometer -External = _mscl.External -class HeadingAlignmentMethod(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.HeadingAlignmentMethod_swiginit(self, _mscl.new_HeadingAlignmentMethod(*args)) - value = property(_mscl.HeadingAlignmentMethod_value_get, _mscl.HeadingAlignmentMethod_value_set) - - def select(self, option): - return _mscl.HeadingAlignmentMethod_select(self, option) - - def deselect(self, option): - return _mscl.HeadingAlignmentMethod_deselect(self, option) - - def selected(self, option): - return _mscl.HeadingAlignmentMethod_selected(self, option) - __swig_destroy__ = _mscl.delete_HeadingAlignmentMethod - -# Register HeadingAlignmentMethod in _mscl: -_mscl.HeadingAlignmentMethod_swigregister(HeadingAlignmentMethod) - -class FilterInitializationValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FilterInitializationValues_swiginit(self, _mscl.new_FilterInitializationValues()) - autoInitialize = property(_mscl.FilterInitializationValues_autoInitialize_get, _mscl.FilterInitializationValues_autoInitialize_set) - initialValuesSource = property(_mscl.FilterInitializationValues_initialValuesSource_get, _mscl.FilterInitializationValues_initialValuesSource_set) - autoHeadingAlignmentMethod = property(_mscl.FilterInitializationValues_autoHeadingAlignmentMethod_get, _mscl.FilterInitializationValues_autoHeadingAlignmentMethod_set) - initialAttitude = property(_mscl.FilterInitializationValues_initialAttitude_get, _mscl.FilterInitializationValues_initialAttitude_set) - initialPosition = property(_mscl.FilterInitializationValues_initialPosition_get, _mscl.FilterInitializationValues_initialPosition_set) - initialVelocity = property(_mscl.FilterInitializationValues_initialVelocity_get, _mscl.FilterInitializationValues_initialVelocity_set) - referenceFrame = property(_mscl.FilterInitializationValues_referenceFrame_get, _mscl.FilterInitializationValues_referenceFrame_set) - - def manualHeading(self): - return _mscl.FilterInitializationValues_manualHeading(self) - - def manualAttitude(self): - return _mscl.FilterInitializationValues_manualAttitude(self) - - def manualPositionVelocity(self): - return _mscl.FilterInitializationValues_manualPositionVelocity(self) - __swig_destroy__ = _mscl.delete_FilterInitializationValues - -# Register FilterInitializationValues in _mscl: -_mscl.FilterInitializationValues_swigregister(FilterInitializationValues) - -class TareAxisValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def asUint8(self): - return _mscl.TareAxisValues_asUint8(self) - - def __init__(self, tareRollAxis, tarePitchAxis, tareYawAxis): - _mscl.TareAxisValues_swiginit(self, _mscl.new_TareAxisValues(tareRollAxis, tarePitchAxis, tareYawAxis)) - tareRollAxis = property(_mscl.TareAxisValues_tareRollAxis_get, _mscl.TareAxisValues_tareRollAxis_set) - tarePitchAxis = property(_mscl.TareAxisValues_tarePitchAxis_get, _mscl.TareAxisValues_tarePitchAxis_set) - tareYawAxis = property(_mscl.TareAxisValues_tareYawAxis_get, _mscl.TareAxisValues_tareYawAxis_set) - __swig_destroy__ = _mscl.delete_TareAxisValues - -# Register TareAxisValues in _mscl: -_mscl.TareAxisValues_swigregister(TareAxisValues) - -class GeographicSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeographicSourceOptions_swiginit(self, _mscl.new_GeographicSourceOptions(*args)) - source = property(_mscl.GeographicSourceOptions_source_get, _mscl.GeographicSourceOptions_source_set) - manual = property(_mscl.GeographicSourceOptions_manual_get, _mscl.GeographicSourceOptions_manual_set) - __swig_destroy__ = _mscl.delete_GeographicSourceOptions - -# Register GeographicSourceOptions in _mscl: -_mscl.GeographicSourceOptions_swigregister(GeographicSourceOptions) - -class EstimationControlOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsUint16(self): - return _mscl.EstimationControlOptions_AsUint16(self) - - def __init__(self, *args): - _mscl.EstimationControlOptions_swiginit(self, _mscl.new_EstimationControlOptions(*args)) - enableGyroBiasEstimation = property(_mscl.EstimationControlOptions_enableGyroBiasEstimation_get, _mscl.EstimationControlOptions_enableGyroBiasEstimation_set) - enableAccelBiasEstimation = property(_mscl.EstimationControlOptions_enableAccelBiasEstimation_get, _mscl.EstimationControlOptions_enableAccelBiasEstimation_set) - enableGyroScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_set) - enableAccelScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_set) - enableGNSSAntennaOffsetEstimation = property(_mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_get, _mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_set) - enableHardIronAutoCalibration = property(_mscl.EstimationControlOptions_enableHardIronAutoCalibration_get, _mscl.EstimationControlOptions_enableHardIronAutoCalibration_set) - enableSoftIronAutoCalibration = property(_mscl.EstimationControlOptions_enableSoftIronAutoCalibration_get, _mscl.EstimationControlOptions_enableSoftIronAutoCalibration_set) - __swig_destroy__ = _mscl.delete_EstimationControlOptions - -# Register EstimationControlOptions in _mscl: -_mscl.EstimationControlOptions_swigregister(EstimationControlOptions) - -class HeadingData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HeadingData_swiginit(self, _mscl.new_HeadingData()) - TRUE_HEADING = _mscl.HeadingData_TRUE_HEADING - MAGNETIC_HEADING = _mscl.HeadingData_MAGNETIC_HEADING - heading = property(_mscl.HeadingData_heading_get, _mscl.HeadingData_heading_set) - headingAngle = property(_mscl.HeadingData_headingAngle_get, _mscl.HeadingData_headingAngle_set) - headingAngleUncertainty = property(_mscl.HeadingData_headingAngleUncertainty_get, _mscl.HeadingData_headingAngleUncertainty_set) - __swig_destroy__ = _mscl.delete_HeadingData - -# Register HeadingData in _mscl: -_mscl.HeadingData_swigregister(HeadingData) - -class AdaptiveMeasurementData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AdaptiveMeasurementData_swiginit(self, _mscl.new_AdaptiveMeasurementData()) - mode = property(_mscl.AdaptiveMeasurementData_mode_get, _mscl.AdaptiveMeasurementData_mode_set) - lowPassFilterCutoff = property(_mscl.AdaptiveMeasurementData_lowPassFilterCutoff_get, _mscl.AdaptiveMeasurementData_lowPassFilterCutoff_set) - lowLimit = property(_mscl.AdaptiveMeasurementData_lowLimit_get, _mscl.AdaptiveMeasurementData_lowLimit_set) - highLimit = property(_mscl.AdaptiveMeasurementData_highLimit_get, _mscl.AdaptiveMeasurementData_highLimit_set) - lowLimitUncertainty = property(_mscl.AdaptiveMeasurementData_lowLimitUncertainty_get, _mscl.AdaptiveMeasurementData_lowLimitUncertainty_set) - highLimitUncertainty = property(_mscl.AdaptiveMeasurementData_highLimitUncertainty_get, _mscl.AdaptiveMeasurementData_highLimitUncertainty_set) - minUncertainty = property(_mscl.AdaptiveMeasurementData_minUncertainty_get, _mscl.AdaptiveMeasurementData_minUncertainty_set) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementData - -# Register AdaptiveMeasurementData in _mscl: -_mscl.AdaptiveMeasurementData_swigregister(AdaptiveMeasurementData) - -class AutoAdaptiveFilterOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AutoAdaptiveFilterOptions_swiginit(self, _mscl.new_AutoAdaptiveFilterOptions(*args)) - level = property(_mscl.AutoAdaptiveFilterOptions_level_get, _mscl.AutoAdaptiveFilterOptions_level_set) - timeLimit = property(_mscl.AutoAdaptiveFilterOptions_timeLimit_get, _mscl.AutoAdaptiveFilterOptions_timeLimit_set) - __swig_destroy__ = _mscl.delete_AutoAdaptiveFilterOptions - -# Register AutoAdaptiveFilterOptions in _mscl: -_mscl.AutoAdaptiveFilterOptions_swigregister(AutoAdaptiveFilterOptions) - -class SignalConditioningValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ENABLE_ORIENTATION_CALC = _mscl.SignalConditioningValues_ENABLE_ORIENTATION_CALC - ENABLE_CONING_SCULLING = _mscl.SignalConditioningValues_ENABLE_CONING_SCULLING - ENABLE_FINITE_SIZE_CORRECTION = _mscl.SignalConditioningValues_ENABLE_FINITE_SIZE_CORRECTION - DISABLE_MAGNETOMETER = _mscl.SignalConditioningValues_DISABLE_MAGNETOMETER - DISABLE_NORTH_COMP = _mscl.SignalConditioningValues_DISABLE_NORTH_COMP - DISABLE_UP_COMP = _mscl.SignalConditioningValues_DISABLE_UP_COMP - ENABLE_QUATERNION_CALC = _mscl.SignalConditioningValues_ENABLE_QUATERNION_CALC - HIGH = _mscl.SignalConditioningValues_HIGH - LOW = _mscl.SignalConditioningValues_LOW - dataConditioningFlags = property(_mscl.SignalConditioningValues_dataConditioningFlags_get, _mscl.SignalConditioningValues_dataConditioningFlags_set) - orientationCalcDecimation = property(_mscl.SignalConditioningValues_orientationCalcDecimation_get, _mscl.SignalConditioningValues_orientationCalcDecimation_set) - accelGyroFilterWidth = property(_mscl.SignalConditioningValues_accelGyroFilterWidth_get, _mscl.SignalConditioningValues_accelGyroFilterWidth_set) - magFilterWidth = property(_mscl.SignalConditioningValues_magFilterWidth_get, _mscl.SignalConditioningValues_magFilterWidth_set) - upCompensation = property(_mscl.SignalConditioningValues_upCompensation_get, _mscl.SignalConditioningValues_upCompensation_set) - northCompensation = property(_mscl.SignalConditioningValues_northCompensation_get, _mscl.SignalConditioningValues_northCompensation_set) - magBandwidthPower = property(_mscl.SignalConditioningValues_magBandwidthPower_get, _mscl.SignalConditioningValues_magBandwidthPower_set) - - def __init__(self): - _mscl.SignalConditioningValues_swiginit(self, _mscl.new_SignalConditioningValues()) - - def conditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_conditioningOptionOn(self, *args) - - def setConditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOn(self, *args) - - def setConditioningOptionOff(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOff(self, *args) - __swig_destroy__ = _mscl.delete_SignalConditioningValues - -# Register SignalConditioningValues in _mscl: -_mscl.SignalConditioningValues_swigregister(SignalConditioningValues) - -class EnableDisableMeasurements(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ACCELEROMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_ACCELEROMETER_MEASUREMENTS - MAGNETOMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_MAGNETOMETER_MEASUREMENTS - - def __init__(self, *args): - _mscl.EnableDisableMeasurements_swiginit(self, _mscl.new_EnableDisableMeasurements(*args)) - measurementOptions = property(_mscl.EnableDisableMeasurements_measurementOptions_get, _mscl.EnableDisableMeasurements_measurementOptions_set) - - def optionEnabled(self, *args): - return _mscl.EnableDisableMeasurements_optionEnabled(self, *args) - - def enableOption(self, *args): - return _mscl.EnableDisableMeasurements_enableOption(self, *args) - - def disableOption(self, *args): - return _mscl.EnableDisableMeasurements_disableOption(self, *args) - __swig_destroy__ = _mscl.delete_EnableDisableMeasurements - -# Register EnableDisableMeasurements in _mscl: -_mscl.EnableDisableMeasurements_swigregister(EnableDisableMeasurements) - -class RTKDeviceStatusFlags(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MODEM_STATE = _mscl.RTKDeviceStatusFlags_MODEM_STATE - CONNECTION_TYPE = _mscl.RTKDeviceStatusFlags_CONNECTION_TYPE - RSSI = _mscl.RTKDeviceStatusFlags_RSSI - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_SIGNAL_QUALITY - TOWER_CHANGE_INDICATOR = _mscl.RTKDeviceStatusFlags_TOWER_CHANGE_INDICATOR - NMEA_TIMEOUT = _mscl.RTKDeviceStatusFlags_NMEA_TIMEOUT - SERVER_TIMEOUT = _mscl.RTKDeviceStatusFlags_SERVER_TIMEOUT - RTCM_TIMEOUT = _mscl.RTKDeviceStatusFlags_RTCM_TIMEOUT - DEVICE_OUT_OF_RANGE = _mscl.RTKDeviceStatusFlags_DEVICE_OUT_OF_RANGE - CORRECTIONS_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_CORRECTIONS_UNAVAILABLE - VERSION = _mscl.RTKDeviceStatusFlags_VERSION - OFF = _mscl.RTKDeviceStatusFlags_OFF - NO_NETWORK = _mscl.RTKDeviceStatusFlags_NO_NETWORK - NETWORK_CONNECTED = _mscl.RTKDeviceStatusFlags_NETWORK_CONNECTED - CONFIGURING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_CONFIGURING_DATA_CONTEXT - ACTIVATING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_ACTIVATING_DATA_CONTEXT - CONFIGURING_SOCKET = _mscl.RTKDeviceStatusFlags_CONFIGURING_SOCKET - WAITING_ON_SERVER_HANDSHAKE = _mscl.RTKDeviceStatusFlags_WAITING_ON_SERVER_HANDSHAKE - CONNECTED_AND_IDLE = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_IDLE - CONNECTED_AND_STREAMING = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_STREAMING - NO_CONNECTION = _mscl.RTKDeviceStatusFlags_NO_CONNECTION - CONNECTION_2G = _mscl.RTKDeviceStatusFlags_CONNECTION_2G - CONNECTION_3G = _mscl.RTKDeviceStatusFlags_CONNECTION_3G - CONNECTION_4G = _mscl.RTKDeviceStatusFlags_CONNECTION_4G - CONNECTION_5G = _mscl.RTKDeviceStatusFlags_CONNECTION_5G - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_swiginit(self, _mscl.new_RTKDeviceStatusFlags(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_version(self) - - def modemState(self, *args): - return _mscl.RTKDeviceStatusFlags_modemState(self, *args) - - def connectionType(self, *args): - return _mscl.RTKDeviceStatusFlags_connectionType(self, *args) - - def rssi(self, *args): - return _mscl.RTKDeviceStatusFlags_rssi(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_signalQuality(self, *args) - - def towerChangeIndicator(self, *args): - return _mscl.RTKDeviceStatusFlags_towerChangeIndicator(self, *args) - - def nmeaTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_nmeaTimeout(self, *args) - - def serverTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_serverTimeout(self, *args) - - def rtcmTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_rtcmTimeout(self, *args) - - def deviceOutOfRange(self, *args): - return _mscl.RTKDeviceStatusFlags_deviceOutOfRange(self, *args) - - def correctionsUnavailable(self, *args): - return _mscl.RTKDeviceStatusFlags_correctionsUnavailable(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags - -# Register RTKDeviceStatusFlags in _mscl: -_mscl.RTKDeviceStatusFlags_swigregister(RTKDeviceStatusFlags) - -class RTKDeviceStatusFlags_v1(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONTROLLER_STATE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATE - PLATFORM_STATE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATE - CONTROLLER_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATUS_CODE - PLATFORM_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATUS_CODE - RESET_REASON = _mscl.RTKDeviceStatusFlags_v1_RESET_REASON - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_v1_SIGNAL_QUALITY - VERSION = _mscl.RTKDeviceStatusFlags_v1_VERSION - IDLE = _mscl.RTKDeviceStatusFlags_v1_IDLE - ACTIVE = _mscl.RTKDeviceStatusFlags_v1_ACTIVE - MODEM_OFF = _mscl.RTKDeviceStatusFlags_v1_MODEM_OFF - MODEM_POWERING_ON = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_ON - MODEM_CONFIGURE = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONFIGURE - MODEM_POWERING_DOWN = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_DOWN - MODEM_READY = _mscl.RTKDeviceStatusFlags_v1_MODEM_READY - MODEM_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTING - MODEM_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_DISCONNECTING - MODEM_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTED - SERVICE_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTING - SERVICE_CONNECTION_FAILED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_FAILED - SERVICE_CONNECTION_CANCELED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_CANCELED - SERVICE_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_DISCONNECTING - SERVICE_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTED - PLATFORM_ERROR = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_ERROR - RESET_MODEM = _mscl.RTKDeviceStatusFlags_v1_RESET_MODEM - CONTROLLER_OK = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_OK - WAITING_NMEA = _mscl.RTKDeviceStatusFlags_v1_WAITING_NMEA - RTK_TIMEOUT = _mscl.RTKDeviceStatusFlags_v1_RTK_TIMEOUT - RTK_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_v1_RTK_UNAVAILABLE - CONFIG_INVALID = _mscl.RTKDeviceStatusFlags_v1_CONFIG_INVALID - PLATFORM_OK = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_OK - RTK_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_RTK_CONNECTION_DROPPED - CELL_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_CELL_CONNECTION_DROPPED - MODEM_ERROR = _mscl.RTKDeviceStatusFlags_v1_MODEM_ERROR - POWER_ON = _mscl.RTKDeviceStatusFlags_v1_POWER_ON - UNKNOWN = _mscl.RTKDeviceStatusFlags_v1_UNKNOWN - SOFT_RESET = _mscl.RTKDeviceStatusFlags_v1_SOFT_RESET - HARDWARE_ERROR_RESET = _mscl.RTKDeviceStatusFlags_v1_HARDWARE_ERROR_RESET - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_v1_swiginit(self, _mscl.new_RTKDeviceStatusFlags_v1(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_v1_version(self) - - def controllerState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerState(self, *args) - - def platformState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformState(self, *args) - - def controllerStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerStatusCode(self, *args) - - def platformStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformStatusCode(self, *args) - - def resetReason(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_resetReason(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_signalQuality(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags_v1 - -# Register RTKDeviceStatusFlags_v1 in _mscl: -_mscl.RTKDeviceStatusFlags_v1_swigregister(RTKDeviceStatusFlags_v1) - -class GnssSignalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - L1CA = _mscl.GnssSignalConfiguration_L1CA - L2C = _mscl.GnssSignalConfiguration_L2C - L1OF = _mscl.GnssSignalConfiguration_L1OF - L2OF = _mscl.GnssSignalConfiguration_L2OF - E1 = _mscl.GnssSignalConfiguration_E1 - E5B = _mscl.GnssSignalConfiguration_E5B - B1 = _mscl.GnssSignalConfiguration_B1 - B2 = _mscl.GnssSignalConfiguration_B2 - - def __init__(self): - _mscl.GnssSignalConfiguration_swiginit(self, _mscl.new_GnssSignalConfiguration()) - - def enableGpsSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGpsSignal(self, signal, enable) - - def gpsSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_gpsSignalEnabled(self, signal) - - def gpsSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_gpsSignalValue(self, *args) - - def enableGlonassSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGlonassSignal(self, signal, enable) - - def glonassSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_glonassSignalEnabled(self, signal) - - def glonassSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_glonassSignalValue(self, *args) - - def enableGalileoSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGalileoSignal(self, signal, enable) - - def galileoSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_galileoSignalEnabled(self, signal) - - def galileoSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_galileoSignalValue(self, *args) - - def enableBeiDouSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableBeiDouSignal(self, signal, enable) - - def beidouSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_beidouSignalEnabled(self, signal) - - def beidouSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_beidouSignalValue(self, *args) - __swig_destroy__ = _mscl.delete_GnssSignalConfiguration - -# Register GnssSignalConfiguration in _mscl: -_mscl.GnssSignalConfiguration_swigregister(GnssSignalConfiguration) - -class GnssSpartnConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - KEY_SIZE = _mscl.GnssSpartnConfiguration_KEY_SIZE - NONE = _mscl.GnssSpartnConfiguration_NONE - NETWORK = _mscl.GnssSpartnConfiguration_NETWORK - LBAND = _mscl.GnssSpartnConfiguration_LBAND - - def __init__(self): - _mscl.GnssSpartnConfiguration_swiginit(self, _mscl.new_GnssSpartnConfiguration()) - - def enable(self, enable): - return _mscl.GnssSpartnConfiguration_enable(self, enable) - - def enabled(self): - return _mscl.GnssSpartnConfiguration_enabled(self) - - def type(self, *args): - return _mscl.GnssSpartnConfiguration_type(self, *args) - - def currentKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyTow(self, *args) - - def currentKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyWeek(self, *args) - - def currentKey(self, *args): - return _mscl.GnssSpartnConfiguration_currentKey(self, *args) - - def nextKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyTow(self, *args) - - def nextKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyWeek(self, *args) - - def nextKey(self, *args): - return _mscl.GnssSpartnConfiguration_nextKey(self, *args) - __swig_destroy__ = _mscl.delete_GnssSpartnConfiguration - -# Register GnssSpartnConfiguration in _mscl: -_mscl.GnssSpartnConfiguration_swigregister(GnssSpartnConfiguration) - -class PositionReferenceConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - autoConfig = property(_mscl.PositionReferenceConfiguration_autoConfig_get, _mscl.PositionReferenceConfiguration_autoConfig_set) - position = property(_mscl.PositionReferenceConfiguration_position_get, _mscl.PositionReferenceConfiguration_position_set) - - def __init__(self): - _mscl.PositionReferenceConfiguration_swiginit(self, _mscl.new_PositionReferenceConfiguration()) - __swig_destroy__ = _mscl.delete_PositionReferenceConfiguration - -# Register PositionReferenceConfiguration in _mscl: -_mscl.PositionReferenceConfiguration_swigregister(PositionReferenceConfiguration) - -class AntennaLeverArmCalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enabled = property(_mscl.AntennaLeverArmCalConfiguration_enabled_get, _mscl.AntennaLeverArmCalConfiguration_enabled_set) - maxOffsetError = property(_mscl.AntennaLeverArmCalConfiguration_maxOffsetError_get, _mscl.AntennaLeverArmCalConfiguration_maxOffsetError_set) - - def __init__(self): - _mscl.AntennaLeverArmCalConfiguration_swiginit(self, _mscl.new_AntennaLeverArmCalConfiguration()) - __swig_destroy__ = _mscl.delete_AntennaLeverArmCalConfiguration - -# Register AntennaLeverArmCalConfiguration in _mscl: -_mscl.AntennaLeverArmCalConfiguration_swigregister(AntennaLeverArmCalConfiguration) - -class OdometerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.OdometerConfiguration_DISABLED - SINGLE = _mscl.OdometerConfiguration_SINGLE - QUADRATURE = _mscl.OdometerConfiguration_QUADRATURE - - def __init__(self): - _mscl.OdometerConfiguration_swiginit(self, _mscl.new_OdometerConfiguration()) - - def mode(self, *args): - return _mscl.OdometerConfiguration_mode(self, *args) - - def uncertainty(self, *args): - return _mscl.OdometerConfiguration_uncertainty(self, *args) - - def scaling(self, *args): - return _mscl.OdometerConfiguration_scaling(self, *args) - __swig_destroy__ = _mscl.delete_OdometerConfiguration - -# Register OdometerConfiguration in _mscl: -_mscl.OdometerConfiguration_swigregister(OdometerConfiguration) - -class GpioConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - UNUSED_FEATURE = _mscl.GpioConfiguration_UNUSED_FEATURE - GPIO_FEATURE = _mscl.GpioConfiguration_GPIO_FEATURE - PPS_FEATURE = _mscl.GpioConfiguration_PPS_FEATURE - ENCODER_FEATURE = _mscl.GpioConfiguration_ENCODER_FEATURE - EVENT_TIMESTAMP_FEATURE = _mscl.GpioConfiguration_EVENT_TIMESTAMP_FEATURE - UART_FEATURE = _mscl.GpioConfiguration_UART_FEATURE - GPIO_UNUSED = _mscl.GpioConfiguration_GPIO_UNUSED - GPIO_INPUT = _mscl.GpioConfiguration_GPIO_INPUT - GPIO_OUTPUT_LOW = _mscl.GpioConfiguration_GPIO_OUTPUT_LOW - GPIO_OUTPUT_HIGH = _mscl.GpioConfiguration_GPIO_OUTPUT_HIGH - PPS_UNUSED = _mscl.GpioConfiguration_PPS_UNUSED - PPS_INPUT = _mscl.GpioConfiguration_PPS_INPUT - PPS_OUTPUT = _mscl.GpioConfiguration_PPS_OUTPUT - ENCODER_UNUSED = _mscl.GpioConfiguration_ENCODER_UNUSED - ENCODER_A = _mscl.GpioConfiguration_ENCODER_A - ENCODER_B = _mscl.GpioConfiguration_ENCODER_B - TIMESTAMP_UNUSED = _mscl.GpioConfiguration_TIMESTAMP_UNUSED - TIMESTAMP_RISING = _mscl.GpioConfiguration_TIMESTAMP_RISING - TIMESTAMP_FALLING = _mscl.GpioConfiguration_TIMESTAMP_FALLING - TIMESTAMP_EITHER = _mscl.GpioConfiguration_TIMESTAMP_EITHER - UART_UNUSED = _mscl.GpioConfiguration_UART_UNUSED - UART_PORT2_TX = _mscl.GpioConfiguration_UART_PORT2_TX - UART_PORT2_RX = _mscl.GpioConfiguration_UART_PORT2_RX - UART_PORT3_TX = _mscl.GpioConfiguration_UART_PORT3_TX - UART_PORT3_RX = _mscl.GpioConfiguration_UART_PORT3_RX - NONE = _mscl.GpioConfiguration_NONE - OPEN_DRAIN = _mscl.GpioConfiguration_OPEN_DRAIN - PULLDOWN = _mscl.GpioConfiguration_PULLDOWN - PULLUP = _mscl.GpioConfiguration_PULLUP - pinMode = property(_mscl.GpioConfiguration_pinMode_get, _mscl.GpioConfiguration_pinMode_set) - pin = property(_mscl.GpioConfiguration_pin_get, _mscl.GpioConfiguration_pin_set) - feature = property(_mscl.GpioConfiguration_feature_get, _mscl.GpioConfiguration_feature_set) - behavior = property(_mscl.GpioConfiguration_behavior_get, _mscl.GpioConfiguration_behavior_set) - - def pinModeValue(self, *args): - return _mscl.GpioConfiguration_pinModeValue(self, *args) - - def __init__(self): - _mscl.GpioConfiguration_swiginit(self, _mscl.new_GpioConfiguration()) - __swig_destroy__ = _mscl.delete_GpioConfiguration - -# Register GpioConfiguration in _mscl: -_mscl.GpioConfiguration_swigregister(GpioConfiguration) - -DISABLED = _mscl.DISABLED -ENABLED = _mscl.ENABLED -TEST = _mscl.TEST -TEST_PULSE = _mscl.TEST_PULSE -class EventTriggerGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventTriggerGpioParameter_DISABLED - WHILE_HIGH = _mscl.EventTriggerGpioParameter_WHILE_HIGH - WHILE_LOW = _mscl.EventTriggerGpioParameter_WHILE_LOW - EDGE = _mscl.EventTriggerGpioParameter_EDGE - pin = property(_mscl.EventTriggerGpioParameter_pin_get, _mscl.EventTriggerGpioParameter_pin_set) - mode = property(_mscl.EventTriggerGpioParameter_mode_get, _mscl.EventTriggerGpioParameter_mode_set) - - def __init__(self): - _mscl.EventTriggerGpioParameter_swiginit(self, _mscl.new_EventTriggerGpioParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerGpioParameter - -# Register EventTriggerGpioParameter in _mscl: -_mscl.EventTriggerGpioParameter_swigregister(EventTriggerGpioParameter) - -class EventTriggerThresholdParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - WINDOW_TYPE = _mscl.EventTriggerThresholdParameter_WINDOW_TYPE - INTERVAL_TYPE = _mscl.EventTriggerThresholdParameter_INTERVAL_TYPE - type = property(_mscl.EventTriggerThresholdParameter_type_get, _mscl.EventTriggerThresholdParameter_type_set) - lowThreshold = property(_mscl.EventTriggerThresholdParameter_lowThreshold_get, _mscl.EventTriggerThresholdParameter_lowThreshold_set) - highThreshold = property(_mscl.EventTriggerThresholdParameter_highThreshold_get, _mscl.EventTriggerThresholdParameter_highThreshold_set) - - def channel(self, *args): - return _mscl.EventTriggerThresholdParameter_channel(self, *args) - - def channelField(self): - return _mscl.EventTriggerThresholdParameter_channelField(self) - - def channelQualifier(self): - return _mscl.EventTriggerThresholdParameter_channelQualifier(self) - - def channelIndex(self): - return _mscl.EventTriggerThresholdParameter_channelIndex(self) - - def __init__(self): - _mscl.EventTriggerThresholdParameter_swiginit(self, _mscl.new_EventTriggerThresholdParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerThresholdParameter - -# Register EventTriggerThresholdParameter in _mscl: -_mscl.EventTriggerThresholdParameter_swigregister(EventTriggerThresholdParameter) - -class EventTriggerCombinationParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_INPUT_TRIGGERS = _mscl.EventTriggerCombinationParameter_MAX_INPUT_TRIGGERS - LOGIC_NEVER = _mscl.EventTriggerCombinationParameter_LOGIC_NEVER - LOGIC_ALWAYS = _mscl.EventTriggerCombinationParameter_LOGIC_ALWAYS - LOGIC_NONE = _mscl.EventTriggerCombinationParameter_LOGIC_NONE - LOGIC_OR = _mscl.EventTriggerCombinationParameter_LOGIC_OR - LOGIC_NAND = _mscl.EventTriggerCombinationParameter_LOGIC_NAND - LOGIC_XOR_ONE = _mscl.EventTriggerCombinationParameter_LOGIC_XOR_ONE - LOGIC_ONLY_A = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_A - LOGIC_ONLY_B = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_B - LOGIC_ONLY_C = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_C - LOGIC_ONLY_D = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_D - LOGIC_AND_AB = _mscl.EventTriggerCombinationParameter_LOGIC_AND_AB - LOGIC_AB_OR_C = _mscl.EventTriggerCombinationParameter_LOGIC_AB_OR_C - LOGIC_AND = _mscl.EventTriggerCombinationParameter_LOGIC_AND - logicTable = property(_mscl.EventTriggerCombinationParameter_logicTable_get, _mscl.EventTriggerCombinationParameter_logicTable_set) - inputTriggers = property(_mscl.EventTriggerCombinationParameter_inputTriggers_get, _mscl.EventTriggerCombinationParameter_inputTriggers_set) - - def __init__(self): - _mscl.EventTriggerCombinationParameter_swiginit(self, _mscl.new_EventTriggerCombinationParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerCombinationParameter - -# Register EventTriggerCombinationParameter in _mscl: -_mscl.EventTriggerCombinationParameter_swigregister(EventTriggerCombinationParameter) - -class EventTriggerParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerParameters_swiginit(self, _mscl.new_EventTriggerParameters()) - gpio = property(_mscl.EventTriggerParameters_gpio_get, _mscl.EventTriggerParameters_gpio_set) - threshold = property(_mscl.EventTriggerParameters_threshold_get, _mscl.EventTriggerParameters_threshold_set) - combination = property(_mscl.EventTriggerParameters_combination_get, _mscl.EventTriggerParameters_combination_set) - __swig_destroy__ = _mscl.delete_EventTriggerParameters - -# Register EventTriggerParameters in _mscl: -_mscl.EventTriggerParameters_swigregister(EventTriggerParameters) - -class EventTriggerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventTriggerConfiguration_NONE - GPIO_TRIGGER = _mscl.EventTriggerConfiguration_GPIO_TRIGGER - THRESHOLD_TRIGGER = _mscl.EventTriggerConfiguration_THRESHOLD_TRIGGER - COMBINATION_TRIGGER = _mscl.EventTriggerConfiguration_COMBINATION_TRIGGER - instance = property(_mscl.EventTriggerConfiguration_instance_get, _mscl.EventTriggerConfiguration_instance_set) - trigger = property(_mscl.EventTriggerConfiguration_trigger_get, _mscl.EventTriggerConfiguration_trigger_set) - parameters = property(_mscl.EventTriggerConfiguration_parameters_get, _mscl.EventTriggerConfiguration_parameters_set) - - def __init__(self): - _mscl.EventTriggerConfiguration_swiginit(self, _mscl.new_EventTriggerConfiguration()) - __swig_destroy__ = _mscl.delete_EventTriggerConfiguration - -# Register EventTriggerConfiguration in _mscl: -_mscl.EventTriggerConfiguration_swigregister(EventTriggerConfiguration) - -class EventActionGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventActionGpioParameter_DISABLED - ACTIVE_HIGH = _mscl.EventActionGpioParameter_ACTIVE_HIGH - ACTIVE_LOW = _mscl.EventActionGpioParameter_ACTIVE_LOW - ONESHOT_HIGH = _mscl.EventActionGpioParameter_ONESHOT_HIGH - ONESHOT_LOW = _mscl.EventActionGpioParameter_ONESHOT_LOW - TOGGLE = _mscl.EventActionGpioParameter_TOGGLE - pin = property(_mscl.EventActionGpioParameter_pin_get, _mscl.EventActionGpioParameter_pin_set) - mode = property(_mscl.EventActionGpioParameter_mode_get, _mscl.EventActionGpioParameter_mode_set) - - def __init__(self): - _mscl.EventActionGpioParameter_swiginit(self, _mscl.new_EventActionGpioParameter()) - __swig_destroy__ = _mscl.delete_EventActionGpioParameter - -# Register EventActionGpioParameter in _mscl: -_mscl.EventActionGpioParameter_swigregister(EventActionGpioParameter) - -class EventActionMessageParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_DESCRIPTORS = _mscl.EventActionMessageParameter_MAX_DESCRIPTORS - sampleRate = property(_mscl.EventActionMessageParameter_sampleRate_get, _mscl.EventActionMessageParameter_sampleRate_set) - - def dataClass(self): - return _mscl.EventActionMessageParameter_dataClass(self) - - def setChannelFields(self, dataClass, fields): - return _mscl.EventActionMessageParameter_setChannelFields(self, dataClass, fields) - - def getChannelFields(self): - return _mscl.EventActionMessageParameter_getChannelFields(self) - - def __init__(self): - _mscl.EventActionMessageParameter_swiginit(self, _mscl.new_EventActionMessageParameter()) - __swig_destroy__ = _mscl.delete_EventActionMessageParameter - -# Register EventActionMessageParameter in _mscl: -_mscl.EventActionMessageParameter_swigregister(EventActionMessageParameter) - -class EventActionParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventActionParameters_swiginit(self, _mscl.new_EventActionParameters()) - gpio = property(_mscl.EventActionParameters_gpio_get, _mscl.EventActionParameters_gpio_set) - message = property(_mscl.EventActionParameters_message_get, _mscl.EventActionParameters_message_set) - __swig_destroy__ = _mscl.delete_EventActionParameters - -# Register EventActionParameters in _mscl: -_mscl.EventActionParameters_swigregister(EventActionParameters) - -class EventActionConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventActionConfiguration_NONE - GPIO = _mscl.EventActionConfiguration_GPIO - MESSAGE = _mscl.EventActionConfiguration_MESSAGE - instance = property(_mscl.EventActionConfiguration_instance_get, _mscl.EventActionConfiguration_instance_set) - trigger = property(_mscl.EventActionConfiguration_trigger_get, _mscl.EventActionConfiguration_trigger_set) - type = property(_mscl.EventActionConfiguration_type_get, _mscl.EventActionConfiguration_type_set) - parameters = property(_mscl.EventActionConfiguration_parameters_get, _mscl.EventActionConfiguration_parameters_set) - - def __init__(self): - _mscl.EventActionConfiguration_swiginit(self, _mscl.new_EventActionConfiguration()) - __swig_destroy__ = _mscl.delete_EventActionConfiguration - -# Register EventActionConfiguration in _mscl: -_mscl.EventActionConfiguration_swigregister(EventActionConfiguration) - -class EventTriggerInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTriggerInfo_swiginit(self, _mscl.new_EventTriggerInfo(*args)) - ACTIVE = _mscl.EventTriggerInfo_ACTIVE - ENABLED = _mscl.EventTriggerInfo_ENABLED - TEST = _mscl.EventTriggerInfo_TEST - type = property(_mscl.EventTriggerInfo_type_get, _mscl.EventTriggerInfo_type_set) - instanceId = property(_mscl.EventTriggerInfo_instanceId_get, _mscl.EventTriggerInfo_instanceId_set) - - def isActive(self): - return _mscl.EventTriggerInfo_isActive(self) - - def isEnabled(self): - return _mscl.EventTriggerInfo_isEnabled(self) - - def isTestMode(self): - return _mscl.EventTriggerInfo_isTestMode(self) - - def setStatus(self, value): - return _mscl.EventTriggerInfo_setStatus(self, value) - __swig_destroy__ = _mscl.delete_EventTriggerInfo - -# Register EventTriggerInfo in _mscl: -_mscl.EventTriggerInfo_swigregister(EventTriggerInfo) - -class EventActionInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventActionInfo_swiginit(self, _mscl.new_EventActionInfo(*args)) - type = property(_mscl.EventActionInfo_type_get, _mscl.EventActionInfo_type_set) - triggerId = property(_mscl.EventActionInfo_triggerId_get, _mscl.EventActionInfo_triggerId_set) - instanceId = property(_mscl.EventActionInfo_instanceId_get, _mscl.EventActionInfo_instanceId_set) - __swig_destroy__ = _mscl.delete_EventActionInfo - -# Register EventActionInfo in _mscl: -_mscl.EventActionInfo_swigregister(EventActionInfo) - -class MeasurementReferenceFrame(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MeasurementReferenceFrame_swiginit(self, _mscl.new_MeasurementReferenceFrame(*args)) - - def asMipFieldValues(self): - return _mscl.MeasurementReferenceFrame_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.MeasurementReferenceFrame_appendMipFieldValues(self, appendTo) - - def translation(self, *args): - return _mscl.MeasurementReferenceFrame_translation(self, *args) - - def rotation(self, *args): - return _mscl.MeasurementReferenceFrame_rotation(self, *args) - - def errorTrackingEnabled(self): - return _mscl.MeasurementReferenceFrame_errorTrackingEnabled(self) - - def enableErrorTracking(self, enable=True): - return _mscl.MeasurementReferenceFrame_enableErrorTracking(self, enable) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrame - -# Register MeasurementReferenceFrame in _mscl: -_mscl.MeasurementReferenceFrame_swigregister(MeasurementReferenceFrame) - -class MipChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipChannel_swiginit(self, _mscl.new_MipChannel(*args)) - - def channelField(self): - return _mscl.MipChannel_channelField(self) - - def sampleRate(self): - return _mscl.MipChannel_sampleRate(self) - - def rateDecimation(self, sampleRateBase): - return _mscl.MipChannel_rateDecimation(self, sampleRateBase) - __swig_destroy__ = _mscl.delete_MipChannel - -# Register MipChannel in _mscl: -_mscl.MipChannel_swigregister(MipChannel) - -class MipPacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MIP_ACK_NACK_ERROR_NONE = _mscl.MipPacket_MIP_ACK_NACK_ERROR_NONE - MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND - MIP_ACK_NACK_ERROR_CHECKSUM_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_CHECKSUM_INVALID - MIP_ACK_NACK_ERROR_PARAMETER_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_PARAMETER_INVALID - MIP_ACK_NACK_ERROR_COMMAND_FAILED = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_FAILED - MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT - MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET - - def __init__(self): - _mscl.MipPacket_swiginit(self, _mscl.new_MipPacket()) - - @staticmethod - def isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - - def descriptorSet(self): - return _mscl.MipPacket_descriptorSet(self) - - def payload(self): - return _mscl.MipPacket_payload(self) - __swig_destroy__ = _mscl.delete_MipPacket - -# Register MipPacket in _mscl: -_mscl.MipPacket_swigregister(MipPacket) - -def MipPacket_isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - -class MipDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def field(self): - return _mscl.MipDataPoint_field(self) - - def qualifier(self): - return _mscl.MipDataPoint_qualifier(self) - - def hasAddlIdentifiers(self): - return _mscl.MipDataPoint_hasAddlIdentifiers(self) - - def addlIdentifiers(self): - return _mscl.MipDataPoint_addlIdentifiers(self) - - def hasValidFlag(self): - return _mscl.MipDataPoint_hasValidFlag(self) - - def valid(self): - return _mscl.MipDataPoint_valid(self) - - def channelName(self, includeAddlIds=True, consolidatedFormat=False): - return _mscl.MipDataPoint_channelName(self, includeAddlIds, consolidatedFormat) - __swig_destroy__ = _mscl.delete_MipDataPoint - -# Register MipDataPoint in _mscl: -_mscl.MipDataPoint_swigregister(MipDataPoint) - -class ContinuousBIT(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def as_MipDataPoints(self): - return _mscl.ContinuousBIT_as_MipDataPoints(self) - - @staticmethod - def getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - - def data(self): - return _mscl.ContinuousBIT_data(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_bufferOverrun(self) - - def imuClockFault(self): - return _mscl.ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_pressureSelfTestFail(self) - - def filterTimingOverrun(self): - return _mscl.ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.ContinuousBIT_filterTimingUnderrun(self) - -# Register ContinuousBIT in _mscl: -_mscl.ContinuousBIT_swigregister(ContinuousBIT) - -def ContinuousBIT_getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - -class ContinuousBIT_System_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - SYSTEM_CLOCK_FAILURE = _mscl.ContinuousBIT_System_General_SYSTEM_CLOCK_FAILURE - POWER_FAULT = _mscl.ContinuousBIT_System_General_POWER_FAULT - FIRMWARE_FAULT = _mscl.ContinuousBIT_System_General_FIRMWARE_FAULT - TIMING_OVERLOAD = _mscl.ContinuousBIT_System_General_TIMING_OVERLOAD - BUFFER_OVERRUN = _mscl.ContinuousBIT_System_General_BUFFER_OVERRUN - - def flags(self): - return _mscl.ContinuousBIT_System_General_flags(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_System_General_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_System_General_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_System_General_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_System_General_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_System_General_bufferOverrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_General - -# Register ContinuousBIT_System_General in _mscl: -_mscl.ContinuousBIT_System_General_swigregister(ContinuousBIT_System_General) - -class ContinuousBIT_System_Process(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def flags(self): - return _mscl.ContinuousBIT_System_Process_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_Process - -# Register ContinuousBIT_System_Process in _mscl: -_mscl.ContinuousBIT_System_Process_swigregister(ContinuousBIT_System_Process) - -class ContinuousBIT_System(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_System_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_System_GENERAL_FLAGS - PROCESS_FLAGS = _mscl.ContinuousBIT_System_PROCESS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_System_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System - -# Register ContinuousBIT_System in _mscl: -_mscl.ContinuousBIT_System_swigregister(ContinuousBIT_System) - -class ContinuousBIT_IMU_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - CLOCK_FAULT = _mscl.ContinuousBIT_IMU_General_CLOCK_FAULT - COMMUNICATION_FAULT = _mscl.ContinuousBIT_IMU_General_COMMUNICATION_FAULT - TIMING_OVERRUN = _mscl.ContinuousBIT_IMU_General_TIMING_OVERRUN - CALIBRATION_ERROR_ACCEL = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_ACCEL - CALIBRATION_ERROR_GYRO = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_GYRO - CALIBRATION_ERROR_MAG = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_MAG - - def flags(self): - return _mscl.ContinuousBIT_IMU_General_flags(self) - - def clockFault(self): - return _mscl.ContinuousBIT_IMU_General_clockFault(self) - - def communicationFault(self): - return _mscl.ContinuousBIT_IMU_General_communicationFault(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_IMU_General_timingOverrun(self) - - def calibrationErrorAccel(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorAccel(self) - - def calibrationErrorGyro(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorGyro(self) - - def calibrationErrorMag(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorMag(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_General - -# Register ContinuousBIT_IMU_General in _mscl: -_mscl.ContinuousBIT_IMU_General_swigregister(ContinuousBIT_IMU_General) - -class ContinuousBIT_IMU_Sensors(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - ACCEL_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_GENERAL_FAULT - ACCEL_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_OVERRANGE - ACCEL_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_SELF_TEST_FAIL - GYRO_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_GYRO_GENERAL_FAULT - GYRO_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_GYRO_OVERRANGE - GYRO_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_GYRO_SELF_TEST_FAIL - MAG_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_MAG_GENERAL_FAULT - MAG_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_MAG_OVERRANGE - MAG_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_MAG_SELF_TEST_FAIL - PRESSURE_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_GENERAL_FAULT - PRESSURE_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_OVERRANGE - PRESSURE_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_SELF_TEST_FAIL - - def flags(self): - return _mscl.ContinuousBIT_IMU_Sensors_flags(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureSelfTestFail(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_Sensors - -# Register ContinuousBIT_IMU_Sensors in _mscl: -_mscl.ContinuousBIT_IMU_Sensors_swigregister(ContinuousBIT_IMU_Sensors) - -class ContinuousBIT_IMU(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_IMU_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_IMU_GENERAL_FLAGS - SENSORS_FLAGS = _mscl.ContinuousBIT_IMU_SENSORS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_IMU_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU - -# Register ContinuousBIT_IMU in _mscl: -_mscl.ContinuousBIT_IMU_swigregister(ContinuousBIT_IMU) - -class ContinuousBIT_Filter_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - TIMING_OVERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_OVERRUN - TIMING_UNDERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_UNDERRUN - - def flags(self): - return _mscl.ContinuousBIT_Filter_General_flags(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_Filter_General_timingOverrun(self) - - def timingUnderrun(self): - return _mscl.ContinuousBIT_Filter_General_timingUnderrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter_General - -# Register ContinuousBIT_Filter_General in _mscl: -_mscl.ContinuousBIT_Filter_General_swigregister(ContinuousBIT_Filter_General) - -class ContinuousBIT_Filter(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_Filter_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_Filter_GENERAL_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_Filter_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter - -# Register ContinuousBIT_Filter in _mscl: -_mscl.ContinuousBIT_Filter_swigregister(ContinuousBIT_Filter) - -class CV7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_General_swiginit(self, _mscl.new_CV7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_General - -# Register CV7ContinuousBIT_System_General in _mscl: -_mscl.CV7ContinuousBIT_System_General_swigregister(CV7ContinuousBIT_System_General) - -class CV7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_Process_swiginit(self, _mscl.new_CV7ContinuousBIT_System_Process(*args)) - IMU_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_IMU_PROCESS_FAULT - IMU_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_IMU_RATE_MISMATCH - IMU_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_IMU_DROPPED_DATA - IMU_STUCK = _mscl.CV7ContinuousBIT_System_Process_IMU_STUCK - FILTER_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_FILTER_PROCESS_FAULT - FILTER_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_FILTER_DROPPED_DATA - FILTER_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_FILTER_RATE_MISMATCH - FILTER_STUCK = _mscl.CV7ContinuousBIT_System_Process_FILTER_STUCK - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_filterStuck(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_Process - -# Register CV7ContinuousBIT_System_Process in _mscl: -_mscl.CV7ContinuousBIT_System_Process_swigregister(CV7ContinuousBIT_System_Process) - -class CV7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_swiginit(self, _mscl.new_CV7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.CV7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System - -# Register CV7ContinuousBIT_System in _mscl: -_mscl.CV7ContinuousBIT_System_swigregister(CV7ContinuousBIT_System) - -class CV7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_General - -# Register CV7ContinuousBIT_IMU_General in _mscl: -_mscl.CV7ContinuousBIT_IMU_General_swigregister(CV7ContinuousBIT_IMU_General) - -class CV7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_Sensors - -# Register CV7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.CV7ContinuousBIT_IMU_Sensors_swigregister(CV7ContinuousBIT_IMU_Sensors) - -class CV7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU(*args)) - FACTORY_BITS_INVALID = _mscl.CV7ContinuousBIT_IMU_FACTORY_BITS_INVALID - - def general(self): - return _mscl.CV7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.CV7ContinuousBIT_IMU_sensors(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_IMU_factoryBitsInvalid(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU - -# Register CV7ContinuousBIT_IMU in _mscl: -_mscl.CV7ContinuousBIT_IMU_swigregister(CV7ContinuousBIT_IMU) - -class CV7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter_General(*args)) - FAULT = _mscl.CV7ContinuousBIT_Filter_General_FAULT - - def fault(self): - return _mscl.CV7ContinuousBIT_Filter_General_fault(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter_General - -# Register CV7ContinuousBIT_Filter_General in _mscl: -_mscl.CV7ContinuousBIT_Filter_General_swigregister(CV7ContinuousBIT_Filter_General) - -class CV7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter - -# Register CV7ContinuousBIT_Filter in _mscl: -_mscl.CV7ContinuousBIT_Filter_swigregister(CV7ContinuousBIT_Filter) - -class CV7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.CV7ContinuousBIT_swiginit(self, _mscl.new_CV7ContinuousBIT(bytes)) - - def system(self): - return _mscl.CV7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.CV7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.CV7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.CV7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.CV7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.CV7ContinuousBIT_bufferOverrun(self) - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_filterStuck(self) - - def imu(self): - return _mscl.CV7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.CV7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.CV7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.CV7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.CV7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.CV7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.CV7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.CV7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.CV7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.CV7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.CV7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.CV7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.CV7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.CV7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.CV7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.CV7ContinuousBIT_pressureSelfTestFail(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_factoryBitsInvalid(self) - - def filter(self): - return _mscl.CV7ContinuousBIT_filter(self) - - def filterFault(self): - return _mscl.CV7ContinuousBIT_filterFault(self) - - def filterTimingOverrun(self): - return _mscl.CV7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.CV7ContinuousBIT_filterTimingUnderrun(self) - - def as_MipDataPoints(self): - return _mscl.CV7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT - -# Register CV7ContinuousBIT in _mscl: -_mscl.CV7ContinuousBIT_swigregister(CV7ContinuousBIT) - -class GQ7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_General - -# Register GQ7ContinuousBIT_System_General in _mscl: -_mscl.GQ7ContinuousBIT_System_General_swigregister(GQ7ContinuousBIT_System_General) - -class GQ7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_Process_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_Process(*args)) - IMU_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_CONTROL_LINE_FAULT - IMU_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_COMMAND_RESPONSE_FAULT - IMU_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_SPI_TRANSFER_FAULT - IMU_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_DATA_FRAME_FAULT - FILTER_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_CONTROL_LINE_FAULT - FILTER_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_COMMAND_RESPONSE_FAULT - FILTER_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_SPI_TRANSFER_FAULT - FILTER_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_DATA_FRAME_FAULT - GNSS_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_CONTROL_LINE_FAULT - GNSS_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_COMMAND_RESPONSE_FAULT - GNSS_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_SPI_TRANSFER_FAULT - GNSS_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_DATA_FRAME_FAULT - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssDataFrameFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_Process - -# Register GQ7ContinuousBIT_System_Process in _mscl: -_mscl.GQ7ContinuousBIT_System_Process_swigregister(GQ7ContinuousBIT_System_Process) - -class GQ7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_swiginit(self, _mscl.new_GQ7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.GQ7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System - -# Register GQ7ContinuousBIT_System in _mscl: -_mscl.GQ7ContinuousBIT_System_swigregister(GQ7ContinuousBIT_System) - -class GQ7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_General - -# Register GQ7ContinuousBIT_IMU_General in _mscl: -_mscl.GQ7ContinuousBIT_IMU_General_swigregister(GQ7ContinuousBIT_IMU_General) - -class GQ7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_Sensors - -# Register GQ7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.GQ7ContinuousBIT_IMU_Sensors_swigregister(GQ7ContinuousBIT_IMU_Sensors) - -class GQ7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.GQ7ContinuousBIT_IMU_sensors(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU - -# Register GQ7ContinuousBIT_IMU in _mscl: -_mscl.GQ7ContinuousBIT_IMU_swigregister(GQ7ContinuousBIT_IMU) - -class GQ7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_HARDWARE_FAULT - COMMUNICATION_ERROR_IMU_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_IMU_SPI - COMMUNICATION_ERROR_GNSS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_GNSS_SPI - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_COMMS_UART = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_UART - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationError(self) - - def communicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorImuSpi(self) - - def communicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorGnssSpi(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsSpi(self) - - def communicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsUart(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter_General - -# Register GQ7ContinuousBIT_Filter_General in _mscl: -_mscl.GQ7ContinuousBIT_Filter_General_swigregister(GQ7ContinuousBIT_Filter_General) - -class GQ7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter - -# Register GQ7ContinuousBIT_Filter in _mscl: -_mscl.GQ7ContinuousBIT_Filter_swigregister(GQ7ContinuousBIT_Filter) - -class GQ7ContinuousBIT_GNSS_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_HARDWARE_FAULT - COMMUNICATION_ERROR_COMMS_SERIAL = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SERIAL - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_NAV_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_NAV_SPI - GPS_TIME_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_GPS_TIME_FAULT - TIMING_OVERRUN = _mscl.GQ7ContinuousBIT_GNSS_General_TIMING_OVERRUN - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_flags(self) - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationError(self) - - def communicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSerial(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSpi(self) - - def communicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_gpsTimeFault(self) - - def timingOverrun(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_timingOverrun(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_General - -# Register GQ7ContinuousBIT_GNSS_General in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_General_swigregister(GQ7ContinuousBIT_GNSS_General) - -class GQ7ContinuousBIT_GNSS_Receivers(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_Receivers_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_Receivers(*args)) - POWER_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_1 - FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_1 - SHORTED_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_1 - OPEN_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_1 - SOLUTION_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_1 - POWER_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_2 - FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_2 - SHORTED_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_2 - OPEN_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_2 - SOLUTION_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_2 - RTCM_COMMUNICATION_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTCM_COMMUNICATION_FAULT - RTK_DONGLE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTK_DONGLE_FAULT - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_flags(self) - - def powerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver1(self) - - def faultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver1(self) - - def shortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna1(self) - - def openAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna1(self) - - def solutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver1(self) - - def powerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver2(self) - - def faultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver2(self) - - def shortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna2(self) - - def openAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna2(self) - - def solutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtkDongleFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_Receivers - -# Register GQ7ContinuousBIT_GNSS_Receivers in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_Receivers_swigregister(GQ7ContinuousBIT_GNSS_Receivers) - -class GQ7ContinuousBIT_GNSS(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS(*args)) - RESPONSE_OFFSET = _mscl.GQ7ContinuousBIT_GNSS_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_GENERAL_FLAGS - RECEIVERS_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_RECEIVERS_FLAGS - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_flags(self) - - def general(self): - return _mscl.GQ7ContinuousBIT_GNSS_general(self) - - def receivers(self): - return _mscl.GQ7ContinuousBIT_GNSS_receivers(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS - -# Register GQ7ContinuousBIT_GNSS in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_swigregister(GQ7ContinuousBIT_GNSS) - -class GQ7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.GQ7ContinuousBIT_swiginit(self, _mscl.new_GQ7ContinuousBIT(bytes)) - - def system(self): - return _mscl.GQ7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.GQ7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.GQ7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.GQ7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.GQ7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.GQ7ContinuousBIT_bufferOverrun(self) - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_gnssDataFrameFault(self) - - def imu(self): - return _mscl.GQ7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.GQ7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.GQ7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.GQ7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.GQ7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.GQ7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.GQ7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.GQ7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.GQ7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.GQ7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_pressureSelfTestFail(self) - - def filter(self): - return _mscl.GQ7ContinuousBIT_filter(self) - - def filterClockFault(self): - return _mscl.GQ7ContinuousBIT_filterClockFault(self) - - def filterHardwareFault(self): - return _mscl.GQ7ContinuousBIT_filterHardwareFault(self) - - def filterTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingUnderrun(self) - - def filterCommunicationError(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationError(self) - - def filterCommunicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorImuSpi(self) - - def filterCommunicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorGnssSpi(self) - - def filterCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsSpi(self) - - def filterCommunicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsUart(self) - - def gnss(self): - return _mscl.GQ7ContinuousBIT_gnss(self) - - def gnssClockFault(self): - return _mscl.GQ7ContinuousBIT_gnssClockFault(self) - - def gnssHardwareFault(self): - return _mscl.GQ7ContinuousBIT_gnssHardwareFault(self) - - def gnssCommunicationError(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationError(self) - - def gnssCommunicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSerial(self) - - def gnssCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSpi(self) - - def gnssCommunicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_gpsTimeFault(self) - - def gnssTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_gnssTimingOverrun(self) - - def gnssPowerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver1(self) - - def gnssFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver1(self) - - def gnssShortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna1(self) - - def gnssOpenAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna1(self) - - def gnssSolutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver1(self) - - def gnssPowerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver2(self) - - def gnssFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver2(self) - - def gnssShortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna2(self) - - def gnssOpenAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna2(self) - - def gnssSolutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_rtkDongleFault(self) - - def as_MipDataPoints(self): - return _mscl.GQ7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT - -# Register GQ7ContinuousBIT in _mscl: -_mscl.GQ7ContinuousBIT_swigregister(GQ7ContinuousBIT) - -class MipSharedDataFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EVENT_SOURCE_NONE = _mscl.MipSharedDataFields_EVENT_SOURCE_NONE - EVENT_SOURCE_UNKNOWN = _mscl.MipSharedDataFields_EVENT_SOURCE_UNKNOWN - - def __init__(self): - _mscl.MipSharedDataFields_swiginit(self, _mscl.new_MipSharedDataFields()) - - def hasEventSource(self): - return _mscl.MipSharedDataFields_hasEventSource(self) - - def eventSource(self): - return _mscl.MipSharedDataFields_eventSource(self) - - def hasTicks(self): - return _mscl.MipSharedDataFields_hasTicks(self) - - def ticks(self): - return _mscl.MipSharedDataFields_ticks(self) - - def hasDeltaTicks(self): - return _mscl.MipSharedDataFields_hasDeltaTicks(self) - - def deltaTicks(self): - return _mscl.MipSharedDataFields_deltaTicks(self) - - def hasGpsTimestamp(self): - return _mscl.MipSharedDataFields_hasGpsTimestamp(self) - - def gpsTimestamp(self): - return _mscl.MipSharedDataFields_gpsTimestamp(self) - - def gpsTimestampValid(self): - return _mscl.MipSharedDataFields_gpsTimestampValid(self) - - def hasDeltaTime(self): - return _mscl.MipSharedDataFields_hasDeltaTime(self) - - def deltaTime(self): - return _mscl.MipSharedDataFields_deltaTime(self) - - def hasReferenceTime(self): - return _mscl.MipSharedDataFields_hasReferenceTime(self) - - def referenceTime(self): - return _mscl.MipSharedDataFields_referenceTime(self) - - def hasDeltaReferenceTime(self): - return _mscl.MipSharedDataFields_hasDeltaReferenceTime(self) - - def deltaReferenceTime(self): - return _mscl.MipSharedDataFields_deltaReferenceTime(self) - - def hasExternalTimestamp(self): - return _mscl.MipSharedDataFields_hasExternalTimestamp(self) - - def externalTimestamp(self): - return _mscl.MipSharedDataFields_externalTimestamp(self) - - def externalTimestampValid(self): - return _mscl.MipSharedDataFields_externalTimestampValid(self) - - def hasDeltaExternalTime(self): - return _mscl.MipSharedDataFields_hasDeltaExternalTime(self) - - def deltaExternalTime(self): - return _mscl.MipSharedDataFields_deltaExternalTime(self) - - def deltaExternalTimeValid(self): - return _mscl.MipSharedDataFields_deltaExternalTimeValid(self) - - def get(self, *args): - return _mscl.MipSharedDataFields_get(self, *args) - __swig_destroy__ = _mscl.delete_MipSharedDataFields - -# Register MipSharedDataFields in _mscl: -_mscl.MipSharedDataFields_swigregister(MipSharedDataFields) - -class MipDataPacket(MipPacket): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipDataPacket_swiginit(self, _mscl.new_MipDataPacket(*args)) - - def data(self): - return _mscl.MipDataPacket_data(self) - - def shared(self): - return _mscl.MipDataPacket_shared(self) - - def collectedTimestamp(self): - return _mscl.MipDataPacket_collectedTimestamp(self) - - def deviceTimestamp(self): - return _mscl.MipDataPacket_deviceTimestamp(self) - - def hasDeviceTime(self): - return _mscl.MipDataPacket_hasDeviceTime(self) - - def deviceTimeValid(self): - return _mscl.MipDataPacket_deviceTimeValid(self) - - def deviceTimeFlags(self): - return _mscl.MipDataPacket_deviceTimeFlags(self) - __swig_destroy__ = _mscl.delete_MipDataPacket - -# Register MipDataPacket in _mscl: -_mscl.MipDataPacket_swigregister(MipDataPacket) - -class RawBytePacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INVALID_PACKET = _mscl.RawBytePacket_INVALID_PACKET - DATA_PACKET = _mscl.RawBytePacket_DATA_PACKET - COMMAND_PACKET = _mscl.RawBytePacket_COMMAND_PACKET - NO_PACKET_FOUND = _mscl.RawBytePacket_NO_PACKET_FOUND - FROM_READ = _mscl.RawBytePacket_FROM_READ - FROM_SEND = _mscl.RawBytePacket_FROM_SEND - - def __init__(self): - _mscl.RawBytePacket_swiginit(self, _mscl.new_RawBytePacket()) - - def type(self, *args): - return _mscl.RawBytePacket_type(self, *args) - - def source(self, *args): - return _mscl.RawBytePacket_source(self, *args) - - def payload(self, *args): - return _mscl.RawBytePacket_payload(self, *args) - __swig_destroy__ = _mscl.delete_RawBytePacket - -# Register RawBytePacket in _mscl: -_mscl.RawBytePacket_swigregister(RawBytePacket) - -class MipNodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_MipNodeFeatures - - @staticmethod - def isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - - def supportsCategory(self, dataClass): - return _mscl.MipNodeFeatures_supportsCategory(self, dataClass) - - def supportsCommand(self, commandId): - return _mscl.MipNodeFeatures_supportsCommand(self, commandId) - - def supportedCommands(self): - return _mscl.MipNodeFeatures_supportedCommands(self) - - def supportsChannelField(self, fieldId): - return _mscl.MipNodeFeatures_supportsChannelField(self, fieldId) - - def filterSupportedChannelFields(self, fields): - return _mscl.MipNodeFeatures_filterSupportedChannelFields(self, fields) - - def supportedChannelFields(self, *args): - return _mscl.MipNodeFeatures_supportedChannelFields(self, *args) - - def supportedSampleRates(self, dataClass): - return _mscl.MipNodeFeatures_supportedSampleRates(self, dataClass) - - def baseDataRate(self, dataClass): - return _mscl.MipNodeFeatures_baseDataRate(self, dataClass) - - def gnssReceiverInfo(self): - return _mscl.MipNodeFeatures_gnssReceiverInfo(self) - - def supportedGnssSources(self): - return _mscl.MipNodeFeatures_supportedGnssSources(self) - - def supportedSensorRanges(self, *args): - return _mscl.MipNodeFeatures_supportedSensorRanges(self, *args) - - def getCommPortInfo(self): - return _mscl.MipNodeFeatures_getCommPortInfo(self) - - def useLegacyIdsForEnableDataStream(self): - return _mscl.MipNodeFeatures_useLegacyIdsForEnableDataStream(self) - - def supportedHeadingUpdateOptions(self): - return _mscl.MipNodeFeatures_supportedHeadingUpdateOptions(self) - - def supportedHeadingAlignmentMethods(self): - return _mscl.MipNodeFeatures_supportedHeadingAlignmentMethods(self) - - def supportedStatusSelectors(self): - return _mscl.MipNodeFeatures_supportedStatusSelectors(self) - - def supportedEstimationControlOptions(self): - return _mscl.MipNodeFeatures_supportedEstimationControlOptions(self) - - def supportedVehicleModeTypes(self): - return _mscl.MipNodeFeatures_supportedVehicleModeTypes(self) - - def supportedAdaptiveMeasurementModes(self): - return _mscl.MipNodeFeatures_supportedAdaptiveMeasurementModes(self) - - def supportedAdaptiveFilterLevels(self): - return _mscl.MipNodeFeatures_supportedAdaptiveFilterLevels(self) - - def supportedAidingMeasurementOptions(self): - return _mscl.MipNodeFeatures_supportedAidingMeasurementOptions(self) - - def supportedPpsSourceOptions(self): - return _mscl.MipNodeFeatures_supportedPpsSourceOptions(self) - - def supportedGpioPins(self): - return _mscl.MipNodeFeatures_supportedGpioPins(self) - - def supportedGpioPinModes(self, feature, behavior): - return _mscl.MipNodeFeatures_supportedGpioPinModes(self, feature, behavior) - - def supportedGpioBehaviors(self, feature, pin): - return _mscl.MipNodeFeatures_supportedGpioBehaviors(self, feature, pin) - - def supportedGpioFeatures(self, pin): - return _mscl.MipNodeFeatures_supportedGpioFeatures(self, pin) - - def supportedGpioConfigurations(self): - return _mscl.MipNodeFeatures_supportedGpioConfigurations(self) - - def supportedGnssSignalConfigurations(self): - return _mscl.MipNodeFeatures_supportedGnssSignalConfigurations(self) - - def supportedDeclinationSources(self): - return _mscl.MipNodeFeatures_supportedDeclinationSources(self) - - def supportedInclinationSources(self): - return _mscl.MipNodeFeatures_supportedInclinationSources(self) - - def supportedMagneticMagnitudeSources(self): - return _mscl.MipNodeFeatures_supportedMagneticMagnitudeSources(self) - - def supportedEventThresholdChannels(self): - return _mscl.MipNodeFeatures_supportedEventThresholdChannels(self) - - def supportedEventActionInfo(self): - return _mscl.MipNodeFeatures_supportedEventActionInfo(self) - - def supportedEventTriggerInfo(self): - return _mscl.MipNodeFeatures_supportedEventTriggerInfo(self) - - def supportsNorthCompensation(self): - return _mscl.MipNodeFeatures_supportsNorthCompensation(self) - - def supportedLowPassFilterChannelFields(self): - return _mscl.MipNodeFeatures_supportedLowPassFilterChannelFields(self) - - def maxMeasurementReferenceFrameId(self): - return _mscl.MipNodeFeatures_maxMeasurementReferenceFrameId(self) - -# Register MipNodeFeatures in _mscl: -_mscl.MipNodeFeatures_swigregister(MipNodeFeatures) - -def MipNodeFeatures_isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - -class MipNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.MipNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - def getConfigCommandBytes(self): - return _mscl.MipNode_getConfigCommandBytes(self) - - def sendCommandBytes(self, *args): - return _mscl.MipNode_sendCommandBytes(self, *args) - - @staticmethod - def deviceName(serial): - return _mscl.MipNode_deviceName(serial) - - def connection(self): - return _mscl.MipNode_connection(self) - - def features(self): - return _mscl.MipNode_features(self) - - def clearDeviceInfo(self): - return _mscl.MipNode_clearDeviceInfo(self) - - def lastCommunicationTime(self): - return _mscl.MipNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.MipNode_lastDeviceState(self) - - def setLastDeviceState(self, state): - return _mscl.MipNode_setLastDeviceState(self, state) - - def firmwareVersion(self): - return _mscl.MipNode_firmwareVersion(self) - - def model(self): - return _mscl.MipNode_model(self) - - def modelName(self): - return _mscl.MipNode_modelName(self) - - def modelNumber(self): - return _mscl.MipNode_modelNumber(self) - - def serialNumber(self): - return _mscl.MipNode_serialNumber(self) - - def lotNumber(self): - return _mscl.MipNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.MipNode_deviceOptions(self) - - def timeout(self, *args): - return _mscl.MipNode_timeout(self, *args) - - def name(self): - return _mscl.MipNode_name(self) - - def ping(self): - return _mscl.MipNode_ping(self) - - def setToIdle(self): - return _mscl.MipNode_setToIdle(self) - - def cyclePower(self): - return _mscl.MipNode_cyclePower(self) - - def resume(self): - return _mscl.MipNode_resume(self) - - def getCommunicationMode(self): - return _mscl.MipNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.MipNode_setCommunicationMode(self, communicationMode) - - def saveSettingsAsStartup(self, *args): - return _mscl.MipNode_saveSettingsAsStartup(self, *args) - - def loadStartupSettings(self, *args): - return _mscl.MipNode_loadStartupSettings(self, *args) - - def loadFactoryDefaultSettings(self, *args): - return _mscl.MipNode_loadFactoryDefaultSettings(self, *args) - - def setUARTBaudRate(self, *args): - return _mscl.MipNode_setUARTBaudRate(self, *args) - - def getUARTBaudRate(self, portId=1): - return _mscl.MipNode_getUARTBaudRate(self, portId) - - def getRawBytePackets(self, timeout=0, maxPackets=0): - return _mscl.MipNode_getRawBytePackets(self, timeout, maxPackets) - -# Register MipNode in _mscl: -_mscl.MipNode_swigregister(MipNode) - -def MipNode_deviceName(serial): - return _mscl.MipNode_deviceName(serial) - -class InertialNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.InertialNode_swiginit(self, _mscl.new_InertialNode(connection)) - __swig_destroy__ = _mscl.delete_InertialNode - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.InertialNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.InertialNode_totalPackets(self) - - def pollData(self, *args): - return _mscl.InertialNode_pollData(self, *args) - - def getDataRateBase(self, dataClass): - return _mscl.InertialNode_getDataRateBase(self, dataClass) - - def getActiveChannelFields(self, dataClass): - return _mscl.InertialNode_getActiveChannelFields(self, dataClass) - - def setActiveChannelFields(self, dataClass, channels): - return _mscl.InertialNode_setActiveChannelFields(self, dataClass, channels) - - def saveActiveChannelFields(self, dataClass): - return _mscl.InertialNode_saveActiveChannelFields(self, dataClass) - - def setFactoryStreamingChannels(self, option): - return _mscl.InertialNode_setFactoryStreamingChannels(self, option) - - def getInterfaceControl(self, interfaceId): - return _mscl.InertialNode_getInterfaceControl(self, interfaceId) - - def setInterfaceControl(self, *args): - return _mscl.InertialNode_setInterfaceControl(self, *args) - - def getCommunicationMode(self): - return _mscl.InertialNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.InertialNode_setCommunicationMode(self, communicationMode) - - def isDataStreamEnabled(self, dataClass): - return _mscl.InertialNode_isDataStreamEnabled(self, dataClass) - - def enableDataStream(self, dataClass, enable=True, resumeStreaming=True): - return _mscl.InertialNode_enableDataStream(self, dataClass, enable, resumeStreaming) - - def resetFilter(self): - return _mscl.InertialNode_resetFilter(self) - - def runFilter(self): - return _mscl.InertialNode_runFilter(self) - - def getAutoInitialization(self): - return _mscl.InertialNode_getAutoInitialization(self) - - def setAutoInitialization(self, enable): - return _mscl.InertialNode_setAutoInitialization(self, enable) - - def getAltitudeAid(self): - return _mscl.InertialNode_getAltitudeAid(self) - - def setAltitudeAid(self, enable): - return _mscl.InertialNode_setAltitudeAid(self, enable) - - def getPitchRollAid(self): - return _mscl.InertialNode_getPitchRollAid(self) - - def setPitchRollAid(self, enable): - return _mscl.InertialNode_setPitchRollAid(self, enable) - - def enableVerticalGyroConstraint(self, enable): - return _mscl.InertialNode_enableVerticalGyroConstraint(self, enable) - - def verticalGyroConstraintEnabled(self): - return _mscl.InertialNode_verticalGyroConstraintEnabled(self) - - def enableWheeledVehicleConstraint(self, enable): - return _mscl.InertialNode_enableWheeledVehicleConstraint(self, enable) - - def wheeledVehicleConstraintEnabled(self): - return _mscl.InertialNode_wheeledVehicleConstraintEnabled(self) - - def setVelocityZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setVelocityZUPT(self, ZUPTSettings) - - def getVelocityZUPT(self): - return _mscl.InertialNode_getVelocityZUPT(self) - - def setAngularRateZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setAngularRateZUPT(self, ZUPTSettings) - - def getAngularRateZUPT(self): - return _mscl.InertialNode_getAngularRateZUPT(self) - - def cmdedVelZUPT(self): - return _mscl.InertialNode_cmdedVelZUPT(self) - - def cmdedAngRateZUPT(self): - return _mscl.InertialNode_cmdedAngRateZUPT(self) - - def setInitialAttitude(self, attitude): - return _mscl.InertialNode_setInitialAttitude(self, attitude) - - def setInitialHeading(self, heading): - return _mscl.InertialNode_setInitialHeading(self, heading) - - def getInitialFilterConfiguration(self): - return _mscl.InertialNode_getInitialFilterConfiguration(self) - - def setInitialFilterConfiguration(self, filterConfig): - return _mscl.InertialNode_setInitialFilterConfiguration(self, filterConfig) - - def getSensorToVehicleRotation_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleRotation_eulerAngles(self) - - def setSensorToVehicleRotation_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleRotation_eulerAngles(self, angles) - - def getSensorToVehicleRotation_matrix(self): - return _mscl.InertialNode_getSensorToVehicleRotation_matrix(self) - - def setSensorToVehicleRotation_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleRotation_matrix(self, dcm) - - def getSensorToVehicleRotation_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleRotation_quaternion(self) - - def setSensorToVehicleRotation_quaternion(self, rotation): - return _mscl.InertialNode_setSensorToVehicleRotation_quaternion(self, rotation) - - def getSensorToVehicleTransform_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleTransform_eulerAngles(self) - - def setSensorToVehicleTransform_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleTransform_eulerAngles(self, angles) - - def getSensorToVehicleTransform_matrix(self): - return _mscl.InertialNode_getSensorToVehicleTransform_matrix(self) - - def setSensorToVehicleTransform_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleTransform_matrix(self, dcm) - - def getSensorToVehicleTransform_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleTransform_quaternion(self) - - def setSensorToVehicleTransform_quaternion(self, transformation): - return _mscl.InertialNode_setSensorToVehicleTransform_quaternion(self, transformation) - - def getSensorToVehicleOffset(self): - return _mscl.InertialNode_getSensorToVehicleOffset(self) - - def setSensorToVehicleOffset(self, offset): - return _mscl.InertialNode_setSensorToVehicleOffset(self, offset) - - def getAntennaOffset(self): - return _mscl.InertialNode_getAntennaOffset(self) - - def setAntennaOffset(self, offset): - return _mscl.InertialNode_setAntennaOffset(self, offset) - - def getGNSSAssistedFixControl(self): - return _mscl.InertialNode_getGNSSAssistedFixControl(self) - - def setGNSSAssistedFixControl(self, enableAssistedFix): - return _mscl.InertialNode_setGNSSAssistedFixControl(self, enableAssistedFix) - - def getGNSSAssistTimeUpdate(self): - return _mscl.InertialNode_getGNSSAssistTimeUpdate(self) - - def setGNSSAssistTimeUpdate(self, timeUpdate): - return _mscl.InertialNode_setGNSSAssistTimeUpdate(self, timeUpdate) - - def getGPSTimeUpdate(self, timeFrame): - return _mscl.InertialNode_getGPSTimeUpdate(self, timeFrame) - - def setGPSTimeUpdate(self, arg2, timeData): - return _mscl.InertialNode_setGPSTimeUpdate(self, arg2, timeData) - - def setConstellationSettings(self, dataToUse): - return _mscl.InertialNode_setConstellationSettings(self, dataToUse) - - def getConstellationSettings(self): - return _mscl.InertialNode_getConstellationSettings(self) - - def setSBASSettings(self, dataToUse): - return _mscl.InertialNode_setSBASSettings(self, dataToUse) - - def getSBASSettings(self): - return _mscl.InertialNode_getSBASSettings(self) - - def setAccelerometerBias(self, biasVector): - return _mscl.InertialNode_setAccelerometerBias(self, biasVector) - - def getAccelerometerBias(self): - return _mscl.InertialNode_getAccelerometerBias(self) - - def setGyroBias(self, biasVector): - return _mscl.InertialNode_setGyroBias(self, biasVector) - - def getGyroBias(self): - return _mscl.InertialNode_getGyroBias(self) - - def captureGyroBias(self, samplingTime): - return _mscl.InertialNode_captureGyroBias(self, samplingTime) - - def findMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_findMagnetometerCaptureAutoCalibration(self) - - def saveMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_saveMagnetometerCaptureAutoCalibration(self) - - def setMagnetometerSoftIronMatrix(self, matrix): - return _mscl.InertialNode_setMagnetometerSoftIronMatrix(self, matrix) - - def getMagnetometerSoftIronMatrix(self): - return _mscl.InertialNode_getMagnetometerSoftIronMatrix(self) - - def setMagnetometerHardIronOffset(self, offsetVector): - return _mscl.InertialNode_setMagnetometerHardIronOffset(self, offsetVector) - - def getMagnetometerHardIronOffset(self): - return _mscl.InertialNode_getMagnetometerHardIronOffset(self) - - def setConingAndScullingEnable(self, enable): - return _mscl.InertialNode_setConingAndScullingEnable(self, enable) - - def getConingAndScullingEnable(self): - return _mscl.InertialNode_getConingAndScullingEnable(self) - - def setLowPassFilterSettings(self, data): - return _mscl.InertialNode_setLowPassFilterSettings(self, data) - - def getLowPassFilterSettings(self, dataDescriptors): - return _mscl.InertialNode_getLowPassFilterSettings(self, dataDescriptors) - - def setComplementaryFilterSettings(self, data): - return _mscl.InertialNode_setComplementaryFilterSettings(self, data) - - def getComplementaryFilterSettings(self): - return _mscl.InertialNode_getComplementaryFilterSettings(self) - - def getBasicDeviceStatus(self): - return _mscl.InertialNode_getBasicDeviceStatus(self) - - def getDiagnosticDeviceStatus(self): - return _mscl.InertialNode_getDiagnosticDeviceStatus(self) - - def sendRawRTCM_2_3Message(self, theMessage): - return _mscl.InertialNode_sendRawRTCM_2_3Message(self, theMessage) - - def setVehicleDynamicsMode(self, mode): - return _mscl.InertialNode_setVehicleDynamicsMode(self, mode) - - def getVehicleDynamicsMode(self): - return _mscl.InertialNode_getVehicleDynamicsMode(self) - - def setEstimationControlFlags(self, flags): - return _mscl.InertialNode_setEstimationControlFlags(self, flags) - - def getEstimationControlFlags(self): - return _mscl.InertialNode_getEstimationControlFlags(self) - - def setInclinationSource(self, options): - return _mscl.InertialNode_setInclinationSource(self, options) - - def getInclinationSource(self): - return _mscl.InertialNode_getInclinationSource(self) - - def setDeclinationSource(self, options): - return _mscl.InertialNode_setDeclinationSource(self, options) - - def getDeclinationSource(self): - return _mscl.InertialNode_getDeclinationSource(self) - - def setMagneticFieldMagnitudeSource(self, options): - return _mscl.InertialNode_setMagneticFieldMagnitudeSource(self, options) - - def getMagneticFieldMagnitudeSource(self): - return _mscl.InertialNode_getMagneticFieldMagnitudeSource(self) - - def setGNSS_SourceControl(self, gnssSource): - return _mscl.InertialNode_setGNSS_SourceControl(self, gnssSource) - - def getGNSS_SourceControl(self): - return _mscl.InertialNode_getGNSS_SourceControl(self) - - def sendExternalGNSSUpdate(self, gnssUpdateData): - return _mscl.InertialNode_sendExternalGNSSUpdate(self, gnssUpdateData) - - def setHeadingUpdateControl(self, headingUpdateOptions): - return _mscl.InertialNode_setHeadingUpdateControl(self, headingUpdateOptions) - - def tareOrientation(self, axisValue): - return _mscl.InertialNode_tareOrientation(self, axisValue) - - def getHeadingUpdateControl(self): - return _mscl.InertialNode_getHeadingUpdateControl(self) - - def setGravityErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setGravityErrorAdaptiveMeasurement(self, data) - - def getGravityErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getGravityErrorAdaptiveMeasurement(self) - - def setMagnetometerErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagnetometerErrorAdaptiveMeasurement(self, data) - - def getMagnetometerErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagnetometerErrorAdaptiveMeasurement(self) - - def setMagDipAngleErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagDipAngleErrorAdaptiveMeasurement(self, data) - - def getMagDipAngleErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagDipAngleErrorAdaptiveMeasurement(self) - - def setMagNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setMagNoiseStandardDeviation(self, data) - - def getMagNoiseStandardDeviation(self): - return _mscl.InertialNode_getMagNoiseStandardDeviation(self) - - def setGravNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGravNoiseStandardDeviation(self, data) - - def getGravNoiseStandardDeviation(self): - return _mscl.InertialNode_getGravNoiseStandardDeviation(self) - - def setAccelNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setAccelNoiseStandardDeviation(self, data) - - def getAccelNoiseStandardDeviation(self): - return _mscl.InertialNode_getAccelNoiseStandardDeviation(self) - - def setGyroNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGyroNoiseStandardDeviation(self, data) - - def getGyroNoiseStandardDeviation(self): - return _mscl.InertialNode_getGyroNoiseStandardDeviation(self) - - def setPressureAltNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setPressureAltNoiseStandardDeviation(self, data) - - def getPressureAltNoiseStandardDeviation(self): - return _mscl.InertialNode_getPressureAltNoiseStandardDeviation(self) - - def setHardIronOffsetProcessNoise(self, data): - return _mscl.InertialNode_setHardIronOffsetProcessNoise(self, data) - - def getHardIronOffsetProcessNoise(self): - return _mscl.InertialNode_getHardIronOffsetProcessNoise(self) - - def setAccelBiasModelParams(self, data): - return _mscl.InertialNode_setAccelBiasModelParams(self, data) - - def getAccelBiasModelParams(self): - return _mscl.InertialNode_getAccelBiasModelParams(self) - - def setGyroBiasModelParams(self, data): - return _mscl.InertialNode_setGyroBiasModelParams(self, data) - - def getGyroBiasModelParams(self): - return _mscl.InertialNode_getGyroBiasModelParams(self) - - def setSoftIronMatrixProcessNoise(self, data): - return _mscl.InertialNode_setSoftIronMatrixProcessNoise(self, data) - - def getSoftIronMatrixProcessNoise(self): - return _mscl.InertialNode_getSoftIronMatrixProcessNoise(self) - - def setFixedReferencePosition(self, data): - return _mscl.InertialNode_setFixedReferencePosition(self, data) - - def getFixedReferencePosition(self): - return _mscl.InertialNode_getFixedReferencePosition(self) - - def setGPSDynamicsMode(self, data): - return _mscl.InertialNode_setGPSDynamicsMode(self, data) - - def getGPSDynamicsMode(self): - return _mscl.InertialNode_getGPSDynamicsMode(self) - - def setDevicePowerState(self, device, data): - return _mscl.InertialNode_setDevicePowerState(self, device, data) - - def getDevicePowerState(self, device): - return _mscl.InertialNode_getDevicePowerState(self, device) - - def setDeviceStreamFormat(self, device, data): - return _mscl.InertialNode_setDeviceStreamFormat(self, device, data) - - def getDeviceStreamFormat(self, device): - return _mscl.InertialNode_getDeviceStreamFormat(self, device) - - def setSignalConditioningSettings(self, data): - return _mscl.InertialNode_setSignalConditioningSettings(self, data) - - def getSignalConditioningSettings(self): - return _mscl.InertialNode_getSignalConditioningSettings(self) - - def setEnableDisableMeasurements(self, data): - return _mscl.InertialNode_setEnableDisableMeasurements(self, data) - - def getEnableDisableMeasurements(self): - return _mscl.InertialNode_getEnableDisableMeasurements(self) - - def setGravityNoiseMinimum(self, data): - return _mscl.InertialNode_setGravityNoiseMinimum(self, data) - - def getGravityNoiseMinimum(self): - return _mscl.InertialNode_getGravityNoiseMinimum(self) - - def sendExternalHeadingUpdate(self, *args): - return _mscl.InertialNode_sendExternalHeadingUpdate(self, *args) - - def aidingMeasurementEnabled(self, aidingSource): - return _mscl.InertialNode_aidingMeasurementEnabled(self, aidingSource) - - def enableDisableAidingMeasurement(self, aidingSource, enable): - return _mscl.InertialNode_enableDisableAidingMeasurement(self, aidingSource, enable) - - def getAdaptiveFilterOptions(self): - return _mscl.InertialNode_getAdaptiveFilterOptions(self) - - def setAdaptiveFilterOptions(self, options): - return _mscl.InertialNode_setAdaptiveFilterOptions(self, options) - - def getMultiAntennaOffset(self, receiverId): - return _mscl.InertialNode_getMultiAntennaOffset(self, receiverId) - - def setMultiAntennaOffset(self, receiverId, offset): - return _mscl.InertialNode_setMultiAntennaOffset(self, receiverId, offset) - - def getPpsSource(self): - return _mscl.InertialNode_getPpsSource(self) - - def setPpsSource(self, ppsSource): - return _mscl.InertialNode_setPpsSource(self, ppsSource) - - def getOdometerConfig(self): - return _mscl.InertialNode_getOdometerConfig(self) - - def setOdometerConfig(self, config): - return _mscl.InertialNode_setOdometerConfig(self, config) - - def getSensorRange(self, sensorRangeType): - return _mscl.InertialNode_getSensorRange(self, sensorRangeType) - - def setSensorRange(self, *args): - return _mscl.InertialNode_setSensorRange(self, *args) - - def getGpioConfig(self, pin): - return _mscl.InertialNode_getGpioConfig(self, pin) - - def setGpioConfig(self, config): - return _mscl.InertialNode_setGpioConfig(self, config) - - def getGpioState(self, pin): - return _mscl.InertialNode_getGpioState(self, pin) - - def setGpioState(self, pin, state): - return _mscl.InertialNode_setGpioState(self, pin, state) - - def getEventTriggerMode(self, instance): - return _mscl.InertialNode_getEventTriggerMode(self, instance) - - def setEventTriggerMode(self, instance, mode): - return _mscl.InertialNode_setEventTriggerMode(self, instance, mode) - - def getEventTriggerConfig(self, instance): - return _mscl.InertialNode_getEventTriggerConfig(self, instance) - - def setEventTriggerConfig(self, config): - return _mscl.InertialNode_setEventTriggerConfig(self, config) - - def getEventActionConfig(self, instance): - return _mscl.InertialNode_getEventActionConfig(self, instance) - - def setEventActionConfig(self, config, validateSupported=True): - return _mscl.InertialNode_setEventActionConfig(self, config, validateSupported) - - def getAntennaLeverArmCal(self): - return _mscl.InertialNode_getAntennaLeverArmCal(self) - - def setAntennaLeverArmCal(self, config): - return _mscl.InertialNode_setAntennaLeverArmCal(self, config) - - def getRelativePositionReference(self): - return _mscl.InertialNode_getRelativePositionReference(self) - - def setRelativePositionReference(self, ref): - return _mscl.InertialNode_setRelativePositionReference(self, ref) - - def getLeverArmReferenceOffset(self): - return _mscl.InertialNode_getLeverArmReferenceOffset(self) - - def setLeverArmReferenceOffset(self, offset): - return _mscl.InertialNode_setLeverArmReferenceOffset(self, offset) - - def sendExternalSpeedMeasurementUpdate(self, tow, speed, unc): - return _mscl.InertialNode_sendExternalSpeedMeasurementUpdate(self, tow, speed, unc) - - def getSpeedMeasurementOffset(self): - return _mscl.InertialNode_getSpeedMeasurementOffset(self) - - def setSpeedMeasurementOffset(self, offset): - return _mscl.InertialNode_setSpeedMeasurementOffset(self, offset) - - def getGnssSignalConfig(self): - return _mscl.InertialNode_getGnssSignalConfig(self) - - def setGnssSignalConfig(self, config): - return _mscl.InertialNode_setGnssSignalConfig(self, config) - - def getGnssSpartnConfig(self): - return _mscl.InertialNode_getGnssSpartnConfig(self) - - def setGnssSpartnConfig(self, config): - return _mscl.InertialNode_setGnssSpartnConfig(self, config) - - def rtkEnabled(self): - return _mscl.InertialNode_rtkEnabled(self) - - def enableRtk(self, enable): - return _mscl.InertialNode_enableRtk(self, enable) - - def getEventTriggerStatus(self, *args): - return _mscl.InertialNode_getEventTriggerStatus(self, *args) - - def getEventActionStatus(self, *args): - return _mscl.InertialNode_getEventActionStatus(self, *args) - - def getNmeaMessageFormat(self): - return _mscl.InertialNode_getNmeaMessageFormat(self) - - def setNmeaMessageFormat(self, nmeaFormats): - return _mscl.InertialNode_setNmeaMessageFormat(self, nmeaFormats) - - def getAidingMeasurementReferenceFrames(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrames(self, *args) - - def setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds=False): - return _mscl.InertialNode_setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds) - - def getAidingMeasurementReferenceFrame(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrame(self, *args) - - def setAidingMeasurementReferenceFrame(self, id, frame): - return _mscl.InertialNode_setAidingMeasurementReferenceFrame(self, id, frame) - - def setAidingMeasurementResponseMode(self, mode): - return _mscl.InertialNode_setAidingMeasurementResponseMode(self, mode) - - def getAidingMeasurementResponseMode(self): - return _mscl.InertialNode_getAidingMeasurementResponseMode(self) - - def sendAidingMeasurement(self, *args): - return _mscl.InertialNode_sendAidingMeasurement(self, *args) - - def sendAidingMeasurement_readEcho(self, *args): - return _mscl.InertialNode_sendAidingMeasurement_readEcho(self, *args) - -# Register InertialNode in _mscl: -_mscl.InertialNode_swigregister(InertialNode) - -class DisplacementNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.DisplacementNode_swiginit(self, _mscl.new_DisplacementNode(connection)) - __swig_destroy__ = _mscl.delete_DisplacementNode - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.DisplacementNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - @staticmethod - def deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - - def connection(self): - return _mscl.DisplacementNode_connection(self) - - def features(self): - return _mscl.DisplacementNode_features(self) - - def lastCommunicationTime(self): - return _mscl.DisplacementNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.DisplacementNode_lastDeviceState(self) - - def firmwareVersion(self): - return _mscl.DisplacementNode_firmwareVersion(self) - - def model(self): - return _mscl.DisplacementNode_model(self) - - def modelName(self): - return _mscl.DisplacementNode_modelName(self) - - def modelNumber(self): - return _mscl.DisplacementNode_modelNumber(self) - - def serialNumber(self): - return _mscl.DisplacementNode_serialNumber(self) - - def lotNumber(self): - return _mscl.DisplacementNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.DisplacementNode_deviceOptions(self) - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.DisplacementNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.DisplacementNode_totalPackets(self) - - def timeout(self, *args): - return _mscl.DisplacementNode_timeout(self, *args) - - def name(self): - return _mscl.DisplacementNode_name(self) - - def ping(self): - return _mscl.DisplacementNode_ping(self) - - def setToIdle(self): - return _mscl.DisplacementNode_setToIdle(self) - - def cyclePower(self): - return _mscl.DisplacementNode_cyclePower(self) - - def resume(self): - return _mscl.DisplacementNode_resume(self) - - def getDisplacementOutputDataRate(self): - return _mscl.DisplacementNode_getDisplacementOutputDataRate(self) - - def getAnalogToDisplacementCal(self): - return _mscl.DisplacementNode_getAnalogToDisplacementCal(self) - - def setDeviceTime(self, *args): - return _mscl.DisplacementNode_setDeviceTime(self, *args) - -# Register DisplacementNode in _mscl: -_mscl.DisplacementNode_swigregister(DisplacementNode) - -def DisplacementNode_deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - -class RTKNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.RTKNode_swiginit(self, _mscl.new_RTKNode(connection)) - __swig_destroy__ = _mscl.delete_RTKNode - - def getCommunicationMode(self): - return _mscl.RTKNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.RTKNode_setCommunicationMode(self, communicationMode) - - def getDeviceStatusFlags(self): - return _mscl.RTKNode_getDeviceStatusFlags(self) - - def getActivationCode(self): - return _mscl.RTKNode_getActivationCode(self) - - def getStatusBitfieldVersion(self): - return _mscl.RTKNode_getStatusBitfieldVersion(self) - -# Register RTKNode in _mscl: -_mscl.RTKNode_swigregister(RTKNode) - -class ChannelData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelData___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelData___bool__(self) - - def __len__(self): - return _mscl.ChannelData___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelData___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelData___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelData___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelData___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelData___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelData___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelData_pop(self) - - def append(self, x): - return _mscl.ChannelData_append(self, x) - - def empty(self): - return _mscl.ChannelData_empty(self) - - def size(self): - return _mscl.ChannelData_size(self) - - def swap(self, v): - return _mscl.ChannelData_swap(self, v) - - def begin(self): - return _mscl.ChannelData_begin(self) - - def end(self): - return _mscl.ChannelData_end(self) - - def rbegin(self): - return _mscl.ChannelData_rbegin(self) - - def rend(self): - return _mscl.ChannelData_rend(self) - - def clear(self): - return _mscl.ChannelData_clear(self) - - def get_allocator(self): - return _mscl.ChannelData_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelData_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelData_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelData_swiginit(self, _mscl.new_ChannelData(*args)) - - def push_back(self, x): - return _mscl.ChannelData_push_back(self, x) - - def front(self): - return _mscl.ChannelData_front(self) - - def back(self): - return _mscl.ChannelData_back(self) - - def assign(self, n, x): - return _mscl.ChannelData_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelData_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelData_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelData_reserve(self, n) - - def capacity(self): - return _mscl.ChannelData_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelData - -# Register ChannelData in _mscl: -_mscl.ChannelData_swigregister(ChannelData) - -class MipDataPoints(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPoints_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPoints___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPoints___bool__(self) - - def __len__(self): - return _mscl.MipDataPoints___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPoints___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPoints___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPoints___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPoints___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPoints___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPoints___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPoints_pop(self) - - def append(self, x): - return _mscl.MipDataPoints_append(self, x) - - def empty(self): - return _mscl.MipDataPoints_empty(self) - - def size(self): - return _mscl.MipDataPoints_size(self) - - def swap(self, v): - return _mscl.MipDataPoints_swap(self, v) - - def begin(self): - return _mscl.MipDataPoints_begin(self) - - def end(self): - return _mscl.MipDataPoints_end(self) - - def rbegin(self): - return _mscl.MipDataPoints_rbegin(self) - - def rend(self): - return _mscl.MipDataPoints_rend(self) - - def clear(self): - return _mscl.MipDataPoints_clear(self) - - def get_allocator(self): - return _mscl.MipDataPoints_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPoints_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPoints_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPoints_swiginit(self, _mscl.new_MipDataPoints(*args)) - - def push_back(self, x): - return _mscl.MipDataPoints_push_back(self, x) - - def front(self): - return _mscl.MipDataPoints_front(self) - - def back(self): - return _mscl.MipDataPoints_back(self) - - def assign(self, n, x): - return _mscl.MipDataPoints_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPoints_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPoints_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPoints_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPoints_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPoints - -# Register MipDataPoints in _mscl: -_mscl.MipDataPoints_swigregister(MipDataPoints) - -class Bytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bytes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bytes___nonzero__(self) - - def __bool__(self): - return _mscl.Bytes___bool__(self) - - def __len__(self): - return _mscl.Bytes___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bytes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bytes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bytes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bytes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bytes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bytes___setitem__(self, *args) - - def pop(self): - return _mscl.Bytes_pop(self) - - def append(self, x): - return _mscl.Bytes_append(self, x) - - def empty(self): - return _mscl.Bytes_empty(self) - - def size(self): - return _mscl.Bytes_size(self) - - def swap(self, v): - return _mscl.Bytes_swap(self, v) - - def begin(self): - return _mscl.Bytes_begin(self) - - def end(self): - return _mscl.Bytes_end(self) - - def rbegin(self): - return _mscl.Bytes_rbegin(self) - - def rend(self): - return _mscl.Bytes_rend(self) - - def clear(self): - return _mscl.Bytes_clear(self) - - def get_allocator(self): - return _mscl.Bytes_get_allocator(self) - - def pop_back(self): - return _mscl.Bytes_pop_back(self) - - def erase(self, *args): - return _mscl.Bytes_erase(self, *args) - - def __init__(self, *args): - _mscl.Bytes_swiginit(self, _mscl.new_Bytes(*args)) - - def push_back(self, x): - return _mscl.Bytes_push_back(self, x) - - def front(self): - return _mscl.Bytes_front(self) - - def back(self): - return _mscl.Bytes_back(self) - - def assign(self, n, x): - return _mscl.Bytes_assign(self, n, x) - - def resize(self, *args): - return _mscl.Bytes_resize(self, *args) - - def insert(self, *args): - return _mscl.Bytes_insert(self, *args) - - def reserve(self, n): - return _mscl.Bytes_reserve(self, n) - - def capacity(self): - return _mscl.Bytes_capacity(self) - __swig_destroy__ = _mscl.delete_Bytes - -# Register Bytes in _mscl: -_mscl.Bytes_swigregister(Bytes) - -class BytesCollection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.BytesCollection_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.BytesCollection___nonzero__(self) - - def __bool__(self): - return _mscl.BytesCollection___bool__(self) - - def __len__(self): - return _mscl.BytesCollection___len__(self) - - def __getslice__(self, i, j): - return _mscl.BytesCollection___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.BytesCollection___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.BytesCollection___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.BytesCollection___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.BytesCollection___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.BytesCollection___setitem__(self, *args) - - def pop(self): - return _mscl.BytesCollection_pop(self) - - def append(self, x): - return _mscl.BytesCollection_append(self, x) - - def empty(self): - return _mscl.BytesCollection_empty(self) - - def size(self): - return _mscl.BytesCollection_size(self) - - def swap(self, v): - return _mscl.BytesCollection_swap(self, v) - - def begin(self): - return _mscl.BytesCollection_begin(self) - - def end(self): - return _mscl.BytesCollection_end(self) - - def rbegin(self): - return _mscl.BytesCollection_rbegin(self) - - def rend(self): - return _mscl.BytesCollection_rend(self) - - def clear(self): - return _mscl.BytesCollection_clear(self) - - def get_allocator(self): - return _mscl.BytesCollection_get_allocator(self) - - def pop_back(self): - return _mscl.BytesCollection_pop_back(self) - - def erase(self, *args): - return _mscl.BytesCollection_erase(self, *args) - - def __init__(self, *args): - _mscl.BytesCollection_swiginit(self, _mscl.new_BytesCollection(*args)) - - def push_back(self, x): - return _mscl.BytesCollection_push_back(self, x) - - def front(self): - return _mscl.BytesCollection_front(self) - - def back(self): - return _mscl.BytesCollection_back(self) - - def assign(self, n, x): - return _mscl.BytesCollection_assign(self, n, x) - - def resize(self, *args): - return _mscl.BytesCollection_resize(self, *args) - - def insert(self, *args): - return _mscl.BytesCollection_insert(self, *args) - - def reserve(self, n): - return _mscl.BytesCollection_reserve(self, n) - - def capacity(self): - return _mscl.BytesCollection_capacity(self) - __swig_destroy__ = _mscl.delete_BytesCollection - -# Register BytesCollection in _mscl: -_mscl.BytesCollection_swigregister(BytesCollection) - -class DeviceList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceList___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceList___bool__(self) - - def __len__(self): - return _mscl.DeviceList___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceList___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceList___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceList_has_key(self, key) - - def keys(self): - return _mscl.DeviceList_keys(self) - - def values(self): - return _mscl.DeviceList_values(self) - - def items(self): - return _mscl.DeviceList_items(self) - - def __contains__(self, key): - return _mscl.DeviceList___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceList_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceList_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceList___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceList_asdict(self) - - def __init__(self, *args): - _mscl.DeviceList_swiginit(self, _mscl.new_DeviceList(*args)) - - def empty(self): - return _mscl.DeviceList_empty(self) - - def size(self): - return _mscl.DeviceList_size(self) - - def swap(self, v): - return _mscl.DeviceList_swap(self, v) - - def begin(self): - return _mscl.DeviceList_begin(self) - - def end(self): - return _mscl.DeviceList_end(self) - - def rbegin(self): - return _mscl.DeviceList_rbegin(self) - - def rend(self): - return _mscl.DeviceList_rend(self) - - def clear(self): - return _mscl.DeviceList_clear(self) - - def get_allocator(self): - return _mscl.DeviceList_get_allocator(self) - - def count(self, x): - return _mscl.DeviceList_count(self, x) - - def erase(self, *args): - return _mscl.DeviceList_erase(self, *args) - - def find(self, x): - return _mscl.DeviceList_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceList_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceList_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceList - -# Register DeviceList in _mscl: -_mscl.DeviceList_swigregister(DeviceList) - -class NodeDiscoveries(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NodeDiscoveries_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NodeDiscoveries___nonzero__(self) - - def __bool__(self): - return _mscl.NodeDiscoveries___bool__(self) - - def __len__(self): - return _mscl.NodeDiscoveries___len__(self) - - def __getslice__(self, i, j): - return _mscl.NodeDiscoveries___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NodeDiscoveries___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NodeDiscoveries___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NodeDiscoveries___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NodeDiscoveries___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NodeDiscoveries___setitem__(self, *args) - - def pop(self): - return _mscl.NodeDiscoveries_pop(self) - - def append(self, x): - return _mscl.NodeDiscoveries_append(self, x) - - def empty(self): - return _mscl.NodeDiscoveries_empty(self) - - def size(self): - return _mscl.NodeDiscoveries_size(self) - - def swap(self, v): - return _mscl.NodeDiscoveries_swap(self, v) - - def begin(self): - return _mscl.NodeDiscoveries_begin(self) - - def end(self): - return _mscl.NodeDiscoveries_end(self) - - def rbegin(self): - return _mscl.NodeDiscoveries_rbegin(self) - - def rend(self): - return _mscl.NodeDiscoveries_rend(self) - - def clear(self): - return _mscl.NodeDiscoveries_clear(self) - - def get_allocator(self): - return _mscl.NodeDiscoveries_get_allocator(self) - - def pop_back(self): - return _mscl.NodeDiscoveries_pop_back(self) - - def erase(self, *args): - return _mscl.NodeDiscoveries_erase(self, *args) - - def __init__(self, *args): - _mscl.NodeDiscoveries_swiginit(self, _mscl.new_NodeDiscoveries(*args)) - - def push_back(self, x): - return _mscl.NodeDiscoveries_push_back(self, x) - - def front(self): - return _mscl.NodeDiscoveries_front(self) - - def back(self): - return _mscl.NodeDiscoveries_back(self) - - def assign(self, n, x): - return _mscl.NodeDiscoveries_assign(self, n, x) - - def resize(self, *args): - return _mscl.NodeDiscoveries_resize(self, *args) - - def insert(self, *args): - return _mscl.NodeDiscoveries_insert(self, *args) - - def reserve(self, n): - return _mscl.NodeDiscoveries_reserve(self, n) - - def capacity(self): - return _mscl.NodeDiscoveries_capacity(self) - __swig_destroy__ = _mscl.delete_NodeDiscoveries - -# Register NodeDiscoveries in _mscl: -_mscl.NodeDiscoveries_swigregister(NodeDiscoveries) - -class DataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.DataSweeps___bool__(self) - - def __len__(self): - return _mscl.DataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.DataSweeps_pop(self) - - def append(self, x): - return _mscl.DataSweeps_append(self, x) - - def empty(self): - return _mscl.DataSweeps_empty(self) - - def size(self): - return _mscl.DataSweeps_size(self) - - def swap(self, v): - return _mscl.DataSweeps_swap(self, v) - - def begin(self): - return _mscl.DataSweeps_begin(self) - - def end(self): - return _mscl.DataSweeps_end(self) - - def rbegin(self): - return _mscl.DataSweeps_rbegin(self) - - def rend(self): - return _mscl.DataSweeps_rend(self) - - def clear(self): - return _mscl.DataSweeps_clear(self) - - def get_allocator(self): - return _mscl.DataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.DataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.DataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.DataSweeps_swiginit(self, _mscl.new_DataSweeps(*args)) - - def push_back(self, x): - return _mscl.DataSweeps_push_back(self, x) - - def front(self): - return _mscl.DataSweeps_front(self) - - def back(self): - return _mscl.DataSweeps_back(self) - - def assign(self, n, x): - return _mscl.DataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.DataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.DataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.DataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_DataSweeps - -# Register DataSweeps in _mscl: -_mscl.DataSweeps_swigregister(DataSweeps) - -class LoggedDataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LoggedDataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LoggedDataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.LoggedDataSweeps___bool__(self) - - def __len__(self): - return _mscl.LoggedDataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.LoggedDataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LoggedDataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LoggedDataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LoggedDataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LoggedDataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LoggedDataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.LoggedDataSweeps_pop(self) - - def append(self, x): - return _mscl.LoggedDataSweeps_append(self, x) - - def empty(self): - return _mscl.LoggedDataSweeps_empty(self) - - def size(self): - return _mscl.LoggedDataSweeps_size(self) - - def swap(self, v): - return _mscl.LoggedDataSweeps_swap(self, v) - - def begin(self): - return _mscl.LoggedDataSweeps_begin(self) - - def end(self): - return _mscl.LoggedDataSweeps_end(self) - - def rbegin(self): - return _mscl.LoggedDataSweeps_rbegin(self) - - def rend(self): - return _mscl.LoggedDataSweeps_rend(self) - - def clear(self): - return _mscl.LoggedDataSweeps_clear(self) - - def get_allocator(self): - return _mscl.LoggedDataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.LoggedDataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.LoggedDataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.LoggedDataSweeps_swiginit(self, _mscl.new_LoggedDataSweeps(*args)) - - def push_back(self, x): - return _mscl.LoggedDataSweeps_push_back(self, x) - - def front(self): - return _mscl.LoggedDataSweeps_front(self) - - def back(self): - return _mscl.LoggedDataSweeps_back(self) - - def assign(self, n, x): - return _mscl.LoggedDataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.LoggedDataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.LoggedDataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.LoggedDataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.LoggedDataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweeps - -# Register LoggedDataSweeps in _mscl: -_mscl.LoggedDataSweeps_swigregister(LoggedDataSweeps) - -class MipDataPackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPackets___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPackets___bool__(self) - - def __len__(self): - return _mscl.MipDataPackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPackets___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPackets_pop(self) - - def append(self, x): - return _mscl.MipDataPackets_append(self, x) - - def empty(self): - return _mscl.MipDataPackets_empty(self) - - def size(self): - return _mscl.MipDataPackets_size(self) - - def swap(self, v): - return _mscl.MipDataPackets_swap(self, v) - - def begin(self): - return _mscl.MipDataPackets_begin(self) - - def end(self): - return _mscl.MipDataPackets_end(self) - - def rbegin(self): - return _mscl.MipDataPackets_rbegin(self) - - def rend(self): - return _mscl.MipDataPackets_rend(self) - - def clear(self): - return _mscl.MipDataPackets_clear(self) - - def get_allocator(self): - return _mscl.MipDataPackets_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPackets_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPackets_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPackets_swiginit(self, _mscl.new_MipDataPackets(*args)) - - def push_back(self, x): - return _mscl.MipDataPackets_push_back(self, x) - - def front(self): - return _mscl.MipDataPackets_front(self) - - def back(self): - return _mscl.MipDataPackets_back(self) - - def assign(self, n, x): - return _mscl.MipDataPackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPackets_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPackets_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPackets_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPackets_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPackets - -# Register MipDataPackets in _mscl: -_mscl.MipDataPackets_swigregister(MipDataPackets) - -class RawBytePackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RawBytePackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RawBytePackets___nonzero__(self) - - def __bool__(self): - return _mscl.RawBytePackets___bool__(self) - - def __len__(self): - return _mscl.RawBytePackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.RawBytePackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.RawBytePackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.RawBytePackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.RawBytePackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.RawBytePackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.RawBytePackets___setitem__(self, *args) - - def pop(self): - return _mscl.RawBytePackets_pop(self) - - def append(self, x): - return _mscl.RawBytePackets_append(self, x) - - def empty(self): - return _mscl.RawBytePackets_empty(self) - - def size(self): - return _mscl.RawBytePackets_size(self) - - def swap(self, v): - return _mscl.RawBytePackets_swap(self, v) - - def begin(self): - return _mscl.RawBytePackets_begin(self) - - def end(self): - return _mscl.RawBytePackets_end(self) - - def rbegin(self): - return _mscl.RawBytePackets_rbegin(self) - - def rend(self): - return _mscl.RawBytePackets_rend(self) - - def clear(self): - return _mscl.RawBytePackets_clear(self) - - def get_allocator(self): - return _mscl.RawBytePackets_get_allocator(self) - - def pop_back(self): - return _mscl.RawBytePackets_pop_back(self) - - def erase(self, *args): - return _mscl.RawBytePackets_erase(self, *args) - - def __init__(self, *args): - _mscl.RawBytePackets_swiginit(self, _mscl.new_RawBytePackets(*args)) - - def push_back(self, x): - return _mscl.RawBytePackets_push_back(self, x) - - def front(self): - return _mscl.RawBytePackets_front(self) - - def back(self): - return _mscl.RawBytePackets_back(self) - - def assign(self, n, x): - return _mscl.RawBytePackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.RawBytePackets_resize(self, *args) - - def insert(self, *args): - return _mscl.RawBytePackets_insert(self, *args) - - def reserve(self, n): - return _mscl.RawBytePackets_reserve(self, n) - - def capacity(self): - return _mscl.RawBytePackets_capacity(self) - __swig_destroy__ = _mscl.delete_RawBytePackets - -# Register RawBytePackets in _mscl: -_mscl.RawBytePackets_swigregister(RawBytePackets) - -class MipChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannels___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannels___bool__(self) - - def __len__(self): - return _mscl.MipChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannels___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannels_pop(self) - - def append(self, x): - return _mscl.MipChannels_append(self, x) - - def empty(self): - return _mscl.MipChannels_empty(self) - - def size(self): - return _mscl.MipChannels_size(self) - - def swap(self, v): - return _mscl.MipChannels_swap(self, v) - - def begin(self): - return _mscl.MipChannels_begin(self) - - def end(self): - return _mscl.MipChannels_end(self) - - def rbegin(self): - return _mscl.MipChannels_rbegin(self) - - def rend(self): - return _mscl.MipChannels_rend(self) - - def clear(self): - return _mscl.MipChannels_clear(self) - - def get_allocator(self): - return _mscl.MipChannels_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannels_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannels_swiginit(self, _mscl.new_MipChannels(*args)) - - def push_back(self, x): - return _mscl.MipChannels_push_back(self, x) - - def front(self): - return _mscl.MipChannels_front(self) - - def back(self): - return _mscl.MipChannels_back(self) - - def assign(self, n, x): - return _mscl.MipChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannels_reserve(self, n) - - def capacity(self): - return _mscl.MipChannels_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannels - -# Register MipChannels in _mscl: -_mscl.MipChannels_swigregister(MipChannels) - -class DataCollectionMethods(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataCollectionMethods_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataCollectionMethods___nonzero__(self) - - def __bool__(self): - return _mscl.DataCollectionMethods___bool__(self) - - def __len__(self): - return _mscl.DataCollectionMethods___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataCollectionMethods___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataCollectionMethods___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataCollectionMethods___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataCollectionMethods___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataCollectionMethods___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataCollectionMethods___setitem__(self, *args) - - def pop(self): - return _mscl.DataCollectionMethods_pop(self) - - def append(self, x): - return _mscl.DataCollectionMethods_append(self, x) - - def empty(self): - return _mscl.DataCollectionMethods_empty(self) - - def size(self): - return _mscl.DataCollectionMethods_size(self) - - def swap(self, v): - return _mscl.DataCollectionMethods_swap(self, v) - - def begin(self): - return _mscl.DataCollectionMethods_begin(self) - - def end(self): - return _mscl.DataCollectionMethods_end(self) - - def rbegin(self): - return _mscl.DataCollectionMethods_rbegin(self) - - def rend(self): - return _mscl.DataCollectionMethods_rend(self) - - def clear(self): - return _mscl.DataCollectionMethods_clear(self) - - def get_allocator(self): - return _mscl.DataCollectionMethods_get_allocator(self) - - def pop_back(self): - return _mscl.DataCollectionMethods_pop_back(self) - - def erase(self, *args): - return _mscl.DataCollectionMethods_erase(self, *args) - - def __init__(self, *args): - _mscl.DataCollectionMethods_swiginit(self, _mscl.new_DataCollectionMethods(*args)) - - def push_back(self, x): - return _mscl.DataCollectionMethods_push_back(self, x) - - def front(self): - return _mscl.DataCollectionMethods_front(self) - - def back(self): - return _mscl.DataCollectionMethods_back(self) - - def assign(self, n, x): - return _mscl.DataCollectionMethods_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataCollectionMethods_resize(self, *args) - - def insert(self, *args): - return _mscl.DataCollectionMethods_insert(self, *args) - - def reserve(self, n): - return _mscl.DataCollectionMethods_reserve(self, n) - - def capacity(self): - return _mscl.DataCollectionMethods_capacity(self) - __swig_destroy__ = _mscl.delete_DataCollectionMethods - -# Register DataCollectionMethods in _mscl: -_mscl.DataCollectionMethods_swigregister(DataCollectionMethods) - -class DataFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataFormats___nonzero__(self) - - def __bool__(self): - return _mscl.DataFormats___bool__(self) - - def __len__(self): - return _mscl.DataFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataFormats___setitem__(self, *args) - - def pop(self): - return _mscl.DataFormats_pop(self) - - def append(self, x): - return _mscl.DataFormats_append(self, x) - - def empty(self): - return _mscl.DataFormats_empty(self) - - def size(self): - return _mscl.DataFormats_size(self) - - def swap(self, v): - return _mscl.DataFormats_swap(self, v) - - def begin(self): - return _mscl.DataFormats_begin(self) - - def end(self): - return _mscl.DataFormats_end(self) - - def rbegin(self): - return _mscl.DataFormats_rbegin(self) - - def rend(self): - return _mscl.DataFormats_rend(self) - - def clear(self): - return _mscl.DataFormats_clear(self) - - def get_allocator(self): - return _mscl.DataFormats_get_allocator(self) - - def pop_back(self): - return _mscl.DataFormats_pop_back(self) - - def erase(self, *args): - return _mscl.DataFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.DataFormats_swiginit(self, _mscl.new_DataFormats(*args)) - - def push_back(self, x): - return _mscl.DataFormats_push_back(self, x) - - def front(self): - return _mscl.DataFormats_front(self) - - def back(self): - return _mscl.DataFormats_back(self) - - def assign(self, n, x): - return _mscl.DataFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.DataFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.DataFormats_reserve(self, n) - - def capacity(self): - return _mscl.DataFormats_capacity(self) - __swig_destroy__ = _mscl.delete_DataFormats - -# Register DataFormats in _mscl: -_mscl.DataFormats_swigregister(DataFormats) - -class WirelessSampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessSampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessSampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessSampleRates___bool__(self) - - def __len__(self): - return _mscl.WirelessSampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessSampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessSampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessSampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessSampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessSampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessSampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessSampleRates_pop(self) - - def append(self, x): - return _mscl.WirelessSampleRates_append(self, x) - - def empty(self): - return _mscl.WirelessSampleRates_empty(self) - - def size(self): - return _mscl.WirelessSampleRates_size(self) - - def swap(self, v): - return _mscl.WirelessSampleRates_swap(self, v) - - def begin(self): - return _mscl.WirelessSampleRates_begin(self) - - def end(self): - return _mscl.WirelessSampleRates_end(self) - - def rbegin(self): - return _mscl.WirelessSampleRates_rbegin(self) - - def rend(self): - return _mscl.WirelessSampleRates_rend(self) - - def clear(self): - return _mscl.WirelessSampleRates_clear(self) - - def get_allocator(self): - return _mscl.WirelessSampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessSampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessSampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessSampleRates_swiginit(self, _mscl.new_WirelessSampleRates(*args)) - - def push_back(self, x): - return _mscl.WirelessSampleRates_push_back(self, x) - - def front(self): - return _mscl.WirelessSampleRates_front(self) - - def back(self): - return _mscl.WirelessSampleRates_back(self) - - def assign(self, n, x): - return _mscl.WirelessSampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessSampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessSampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessSampleRates_reserve(self, n) - - def capacity(self): - return _mscl.WirelessSampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessSampleRates - -# Register WirelessSampleRates in _mscl: -_mscl.WirelessSampleRates_swigregister(WirelessSampleRates) - -class SamplingModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SamplingModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SamplingModes___nonzero__(self) - - def __bool__(self): - return _mscl.SamplingModes___bool__(self) - - def __len__(self): - return _mscl.SamplingModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SamplingModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SamplingModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SamplingModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SamplingModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SamplingModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SamplingModes___setitem__(self, *args) - - def pop(self): - return _mscl.SamplingModes_pop(self) - - def append(self, x): - return _mscl.SamplingModes_append(self, x) - - def empty(self): - return _mscl.SamplingModes_empty(self) - - def size(self): - return _mscl.SamplingModes_size(self) - - def swap(self, v): - return _mscl.SamplingModes_swap(self, v) - - def begin(self): - return _mscl.SamplingModes_begin(self) - - def end(self): - return _mscl.SamplingModes_end(self) - - def rbegin(self): - return _mscl.SamplingModes_rbegin(self) - - def rend(self): - return _mscl.SamplingModes_rend(self) - - def clear(self): - return _mscl.SamplingModes_clear(self) - - def get_allocator(self): - return _mscl.SamplingModes_get_allocator(self) - - def pop_back(self): - return _mscl.SamplingModes_pop_back(self) - - def erase(self, *args): - return _mscl.SamplingModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SamplingModes_swiginit(self, _mscl.new_SamplingModes(*args)) - - def push_back(self, x): - return _mscl.SamplingModes_push_back(self, x) - - def front(self): - return _mscl.SamplingModes_front(self) - - def back(self): - return _mscl.SamplingModes_back(self) - - def assign(self, n, x): - return _mscl.SamplingModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SamplingModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SamplingModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SamplingModes_reserve(self, n) - - def capacity(self): - return _mscl.SamplingModes_capacity(self) - __swig_destroy__ = _mscl.delete_SamplingModes - -# Register SamplingModes in _mscl: -_mscl.SamplingModes_swigregister(SamplingModes) - -class DefaultModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DefaultModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DefaultModes___nonzero__(self) - - def __bool__(self): - return _mscl.DefaultModes___bool__(self) - - def __len__(self): - return _mscl.DefaultModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DefaultModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DefaultModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DefaultModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DefaultModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DefaultModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DefaultModes___setitem__(self, *args) - - def pop(self): - return _mscl.DefaultModes_pop(self) - - def append(self, x): - return _mscl.DefaultModes_append(self, x) - - def empty(self): - return _mscl.DefaultModes_empty(self) - - def size(self): - return _mscl.DefaultModes_size(self) - - def swap(self, v): - return _mscl.DefaultModes_swap(self, v) - - def begin(self): - return _mscl.DefaultModes_begin(self) - - def end(self): - return _mscl.DefaultModes_end(self) - - def rbegin(self): - return _mscl.DefaultModes_rbegin(self) - - def rend(self): - return _mscl.DefaultModes_rend(self) - - def clear(self): - return _mscl.DefaultModes_clear(self) - - def get_allocator(self): - return _mscl.DefaultModes_get_allocator(self) - - def pop_back(self): - return _mscl.DefaultModes_pop_back(self) - - def erase(self, *args): - return _mscl.DefaultModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DefaultModes_swiginit(self, _mscl.new_DefaultModes(*args)) - - def push_back(self, x): - return _mscl.DefaultModes_push_back(self, x) - - def front(self): - return _mscl.DefaultModes_front(self) - - def back(self): - return _mscl.DefaultModes_back(self) - - def assign(self, n, x): - return _mscl.DefaultModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DefaultModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DefaultModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DefaultModes_reserve(self, n) - - def capacity(self): - return _mscl.DefaultModes_capacity(self) - __swig_destroy__ = _mscl.delete_DefaultModes - -# Register DefaultModes in _mscl: -_mscl.DefaultModes_swigregister(DefaultModes) - -class TransmitPowers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransmitPowers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransmitPowers___nonzero__(self) - - def __bool__(self): - return _mscl.TransmitPowers___bool__(self) - - def __len__(self): - return _mscl.TransmitPowers___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransmitPowers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransmitPowers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransmitPowers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransmitPowers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransmitPowers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransmitPowers___setitem__(self, *args) - - def pop(self): - return _mscl.TransmitPowers_pop(self) - - def append(self, x): - return _mscl.TransmitPowers_append(self, x) - - def empty(self): - return _mscl.TransmitPowers_empty(self) - - def size(self): - return _mscl.TransmitPowers_size(self) - - def swap(self, v): - return _mscl.TransmitPowers_swap(self, v) - - def begin(self): - return _mscl.TransmitPowers_begin(self) - - def end(self): - return _mscl.TransmitPowers_end(self) - - def rbegin(self): - return _mscl.TransmitPowers_rbegin(self) - - def rend(self): - return _mscl.TransmitPowers_rend(self) - - def clear(self): - return _mscl.TransmitPowers_clear(self) - - def get_allocator(self): - return _mscl.TransmitPowers_get_allocator(self) - - def pop_back(self): - return _mscl.TransmitPowers_pop_back(self) - - def erase(self, *args): - return _mscl.TransmitPowers_erase(self, *args) - - def __init__(self, *args): - _mscl.TransmitPowers_swiginit(self, _mscl.new_TransmitPowers(*args)) - - def push_back(self, x): - return _mscl.TransmitPowers_push_back(self, x) - - def front(self): - return _mscl.TransmitPowers_front(self) - - def back(self): - return _mscl.TransmitPowers_back(self) - - def assign(self, n, x): - return _mscl.TransmitPowers_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransmitPowers_resize(self, *args) - - def insert(self, *args): - return _mscl.TransmitPowers_insert(self, *args) - - def reserve(self, n): - return _mscl.TransmitPowers_reserve(self, n) - - def capacity(self): - return _mscl.TransmitPowers_capacity(self) - __swig_destroy__ = _mscl.delete_TransmitPowers - -# Register TransmitPowers in _mscl: -_mscl.TransmitPowers_swigregister(TransmitPowers) - -class ChannelGroupSettings(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroupSettings_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroupSettings___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroupSettings___bool__(self) - - def __len__(self): - return _mscl.ChannelGroupSettings___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroupSettings___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroupSettings___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroupSettings___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroupSettings___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroupSettings___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroupSettings___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroupSettings_pop(self) - - def append(self, x): - return _mscl.ChannelGroupSettings_append(self, x) - - def empty(self): - return _mscl.ChannelGroupSettings_empty(self) - - def size(self): - return _mscl.ChannelGroupSettings_size(self) - - def swap(self, v): - return _mscl.ChannelGroupSettings_swap(self, v) - - def begin(self): - return _mscl.ChannelGroupSettings_begin(self) - - def end(self): - return _mscl.ChannelGroupSettings_end(self) - - def rbegin(self): - return _mscl.ChannelGroupSettings_rbegin(self) - - def rend(self): - return _mscl.ChannelGroupSettings_rend(self) - - def clear(self): - return _mscl.ChannelGroupSettings_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroupSettings_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroupSettings_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroupSettings_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroupSettings_swiginit(self, _mscl.new_ChannelGroupSettings(*args)) - - def push_back(self, x): - return _mscl.ChannelGroupSettings_push_back(self, x) - - def front(self): - return _mscl.ChannelGroupSettings_front(self) - - def back(self): - return _mscl.ChannelGroupSettings_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroupSettings_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroupSettings_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroupSettings_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroupSettings_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroupSettings_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroupSettings - -# Register ChannelGroupSettings in _mscl: -_mscl.ChannelGroupSettings_swigregister(ChannelGroupSettings) - -class FatigueModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.FatigueModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.FatigueModes___nonzero__(self) - - def __bool__(self): - return _mscl.FatigueModes___bool__(self) - - def __len__(self): - return _mscl.FatigueModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.FatigueModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.FatigueModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.FatigueModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.FatigueModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.FatigueModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.FatigueModes___setitem__(self, *args) - - def pop(self): - return _mscl.FatigueModes_pop(self) - - def append(self, x): - return _mscl.FatigueModes_append(self, x) - - def empty(self): - return _mscl.FatigueModes_empty(self) - - def size(self): - return _mscl.FatigueModes_size(self) - - def swap(self, v): - return _mscl.FatigueModes_swap(self, v) - - def begin(self): - return _mscl.FatigueModes_begin(self) - - def end(self): - return _mscl.FatigueModes_end(self) - - def rbegin(self): - return _mscl.FatigueModes_rbegin(self) - - def rend(self): - return _mscl.FatigueModes_rend(self) - - def clear(self): - return _mscl.FatigueModes_clear(self) - - def get_allocator(self): - return _mscl.FatigueModes_get_allocator(self) - - def pop_back(self): - return _mscl.FatigueModes_pop_back(self) - - def erase(self, *args): - return _mscl.FatigueModes_erase(self, *args) - - def __init__(self, *args): - _mscl.FatigueModes_swiginit(self, _mscl.new_FatigueModes(*args)) - - def push_back(self, x): - return _mscl.FatigueModes_push_back(self, x) - - def front(self): - return _mscl.FatigueModes_front(self) - - def back(self): - return _mscl.FatigueModes_back(self) - - def assign(self, n, x): - return _mscl.FatigueModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.FatigueModes_resize(self, *args) - - def insert(self, *args): - return _mscl.FatigueModes_insert(self, *args) - - def reserve(self, n): - return _mscl.FatigueModes_reserve(self, n) - - def capacity(self): - return _mscl.FatigueModes_capacity(self) - __swig_destroy__ = _mscl.delete_FatigueModes - -# Register FatigueModes in _mscl: -_mscl.FatigueModes_swigregister(FatigueModes) - -class Filters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Filters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Filters___nonzero__(self) - - def __bool__(self): - return _mscl.Filters___bool__(self) - - def __len__(self): - return _mscl.Filters___len__(self) - - def __getslice__(self, i, j): - return _mscl.Filters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Filters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Filters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Filters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Filters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Filters___setitem__(self, *args) - - def pop(self): - return _mscl.Filters_pop(self) - - def append(self, x): - return _mscl.Filters_append(self, x) - - def empty(self): - return _mscl.Filters_empty(self) - - def size(self): - return _mscl.Filters_size(self) - - def swap(self, v): - return _mscl.Filters_swap(self, v) - - def begin(self): - return _mscl.Filters_begin(self) - - def end(self): - return _mscl.Filters_end(self) - - def rbegin(self): - return _mscl.Filters_rbegin(self) - - def rend(self): - return _mscl.Filters_rend(self) - - def clear(self): - return _mscl.Filters_clear(self) - - def get_allocator(self): - return _mscl.Filters_get_allocator(self) - - def pop_back(self): - return _mscl.Filters_pop_back(self) - - def erase(self, *args): - return _mscl.Filters_erase(self, *args) - - def __init__(self, *args): - _mscl.Filters_swiginit(self, _mscl.new_Filters(*args)) - - def push_back(self, x): - return _mscl.Filters_push_back(self, x) - - def front(self): - return _mscl.Filters_front(self) - - def back(self): - return _mscl.Filters_back(self) - - def assign(self, n, x): - return _mscl.Filters_assign(self, n, x) - - def resize(self, *args): - return _mscl.Filters_resize(self, *args) - - def insert(self, *args): - return _mscl.Filters_insert(self, *args) - - def reserve(self, n): - return _mscl.Filters_reserve(self, n) - - def capacity(self): - return _mscl.Filters_capacity(self) - __swig_destroy__ = _mscl.delete_Filters - -# Register Filters in _mscl: -_mscl.Filters_swigregister(Filters) - -class HighPassFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HighPassFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HighPassFilters___nonzero__(self) - - def __bool__(self): - return _mscl.HighPassFilters___bool__(self) - - def __len__(self): - return _mscl.HighPassFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.HighPassFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HighPassFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HighPassFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HighPassFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HighPassFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HighPassFilters___setitem__(self, *args) - - def pop(self): - return _mscl.HighPassFilters_pop(self) - - def append(self, x): - return _mscl.HighPassFilters_append(self, x) - - def empty(self): - return _mscl.HighPassFilters_empty(self) - - def size(self): - return _mscl.HighPassFilters_size(self) - - def swap(self, v): - return _mscl.HighPassFilters_swap(self, v) - - def begin(self): - return _mscl.HighPassFilters_begin(self) - - def end(self): - return _mscl.HighPassFilters_end(self) - - def rbegin(self): - return _mscl.HighPassFilters_rbegin(self) - - def rend(self): - return _mscl.HighPassFilters_rend(self) - - def clear(self): - return _mscl.HighPassFilters_clear(self) - - def get_allocator(self): - return _mscl.HighPassFilters_get_allocator(self) - - def pop_back(self): - return _mscl.HighPassFilters_pop_back(self) - - def erase(self, *args): - return _mscl.HighPassFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.HighPassFilters_swiginit(self, _mscl.new_HighPassFilters(*args)) - - def push_back(self, x): - return _mscl.HighPassFilters_push_back(self, x) - - def front(self): - return _mscl.HighPassFilters_front(self) - - def back(self): - return _mscl.HighPassFilters_back(self) - - def assign(self, n, x): - return _mscl.HighPassFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.HighPassFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.HighPassFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.HighPassFilters_reserve(self, n) - - def capacity(self): - return _mscl.HighPassFilters_capacity(self) - __swig_destroy__ = _mscl.delete_HighPassFilters - -# Register HighPassFilters in _mscl: -_mscl.HighPassFilters_swigregister(HighPassFilters) - -class StorageLimitModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StorageLimitModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StorageLimitModes___nonzero__(self) - - def __bool__(self): - return _mscl.StorageLimitModes___bool__(self) - - def __len__(self): - return _mscl.StorageLimitModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.StorageLimitModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StorageLimitModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StorageLimitModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StorageLimitModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StorageLimitModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StorageLimitModes___setitem__(self, *args) - - def pop(self): - return _mscl.StorageLimitModes_pop(self) - - def append(self, x): - return _mscl.StorageLimitModes_append(self, x) - - def empty(self): - return _mscl.StorageLimitModes_empty(self) - - def size(self): - return _mscl.StorageLimitModes_size(self) - - def swap(self, v): - return _mscl.StorageLimitModes_swap(self, v) - - def begin(self): - return _mscl.StorageLimitModes_begin(self) - - def end(self): - return _mscl.StorageLimitModes_end(self) - - def rbegin(self): - return _mscl.StorageLimitModes_rbegin(self) - - def rend(self): - return _mscl.StorageLimitModes_rend(self) - - def clear(self): - return _mscl.StorageLimitModes_clear(self) - - def get_allocator(self): - return _mscl.StorageLimitModes_get_allocator(self) - - def pop_back(self): - return _mscl.StorageLimitModes_pop_back(self) - - def erase(self, *args): - return _mscl.StorageLimitModes_erase(self, *args) - - def __init__(self, *args): - _mscl.StorageLimitModes_swiginit(self, _mscl.new_StorageLimitModes(*args)) - - def push_back(self, x): - return _mscl.StorageLimitModes_push_back(self, x) - - def front(self): - return _mscl.StorageLimitModes_front(self) - - def back(self): - return _mscl.StorageLimitModes_back(self) - - def assign(self, n, x): - return _mscl.StorageLimitModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.StorageLimitModes_resize(self, *args) - - def insert(self, *args): - return _mscl.StorageLimitModes_insert(self, *args) - - def reserve(self, n): - return _mscl.StorageLimitModes_reserve(self, n) - - def capacity(self): - return _mscl.StorageLimitModes_capacity(self) - __swig_destroy__ = _mscl.delete_StorageLimitModes - -# Register StorageLimitModes in _mscl: -_mscl.StorageLimitModes_swigregister(StorageLimitModes) - -class InputRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.InputRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.InputRanges___nonzero__(self) - - def __bool__(self): - return _mscl.InputRanges___bool__(self) - - def __len__(self): - return _mscl.InputRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.InputRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.InputRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.InputRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.InputRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.InputRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.InputRanges___setitem__(self, *args) - - def pop(self): - return _mscl.InputRanges_pop(self) - - def append(self, x): - return _mscl.InputRanges_append(self, x) - - def empty(self): - return _mscl.InputRanges_empty(self) - - def size(self): - return _mscl.InputRanges_size(self) - - def swap(self, v): - return _mscl.InputRanges_swap(self, v) - - def begin(self): - return _mscl.InputRanges_begin(self) - - def end(self): - return _mscl.InputRanges_end(self) - - def rbegin(self): - return _mscl.InputRanges_rbegin(self) - - def rend(self): - return _mscl.InputRanges_rend(self) - - def clear(self): - return _mscl.InputRanges_clear(self) - - def get_allocator(self): - return _mscl.InputRanges_get_allocator(self) - - def pop_back(self): - return _mscl.InputRanges_pop_back(self) - - def erase(self, *args): - return _mscl.InputRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.InputRanges_swiginit(self, _mscl.new_InputRanges(*args)) - - def push_back(self, x): - return _mscl.InputRanges_push_back(self, x) - - def front(self): - return _mscl.InputRanges_front(self) - - def back(self): - return _mscl.InputRanges_back(self) - - def assign(self, n, x): - return _mscl.InputRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.InputRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.InputRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.InputRanges_reserve(self, n) - - def capacity(self): - return _mscl.InputRanges_capacity(self) - __swig_destroy__ = _mscl.delete_InputRanges - -# Register InputRanges in _mscl: -_mscl.InputRanges_swigregister(InputRanges) - -class DataModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataModes___nonzero__(self) - - def __bool__(self): - return _mscl.DataModes___bool__(self) - - def __len__(self): - return _mscl.DataModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataModes___setitem__(self, *args) - - def pop(self): - return _mscl.DataModes_pop(self) - - def append(self, x): - return _mscl.DataModes_append(self, x) - - def empty(self): - return _mscl.DataModes_empty(self) - - def size(self): - return _mscl.DataModes_size(self) - - def swap(self, v): - return _mscl.DataModes_swap(self, v) - - def begin(self): - return _mscl.DataModes_begin(self) - - def end(self): - return _mscl.DataModes_end(self) - - def rbegin(self): - return _mscl.DataModes_rbegin(self) - - def rend(self): - return _mscl.DataModes_rend(self) - - def clear(self): - return _mscl.DataModes_clear(self) - - def get_allocator(self): - return _mscl.DataModes_get_allocator(self) - - def pop_back(self): - return _mscl.DataModes_pop_back(self) - - def erase(self, *args): - return _mscl.DataModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DataModes_swiginit(self, _mscl.new_DataModes(*args)) - - def push_back(self, x): - return _mscl.DataModes_push_back(self, x) - - def front(self): - return _mscl.DataModes_front(self) - - def back(self): - return _mscl.DataModes_back(self) - - def assign(self, n, x): - return _mscl.DataModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DataModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DataModes_reserve(self, n) - - def capacity(self): - return _mscl.DataModes_capacity(self) - __swig_destroy__ = _mscl.delete_DataModes - -# Register DataModes in _mscl: -_mscl.DataModes_swigregister(DataModes) - -class CommProtocols(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommProtocols_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommProtocols___nonzero__(self) - - def __bool__(self): - return _mscl.CommProtocols___bool__(self) - - def __len__(self): - return _mscl.CommProtocols___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommProtocols___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommProtocols___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommProtocols___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommProtocols___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommProtocols___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommProtocols___setitem__(self, *args) - - def pop(self): - return _mscl.CommProtocols_pop(self) - - def append(self, x): - return _mscl.CommProtocols_append(self, x) - - def empty(self): - return _mscl.CommProtocols_empty(self) - - def size(self): - return _mscl.CommProtocols_size(self) - - def swap(self, v): - return _mscl.CommProtocols_swap(self, v) - - def begin(self): - return _mscl.CommProtocols_begin(self) - - def end(self): - return _mscl.CommProtocols_end(self) - - def rbegin(self): - return _mscl.CommProtocols_rbegin(self) - - def rend(self): - return _mscl.CommProtocols_rend(self) - - def clear(self): - return _mscl.CommProtocols_clear(self) - - def get_allocator(self): - return _mscl.CommProtocols_get_allocator(self) - - def pop_back(self): - return _mscl.CommProtocols_pop_back(self) - - def erase(self, *args): - return _mscl.CommProtocols_erase(self, *args) - - def __init__(self, *args): - _mscl.CommProtocols_swiginit(self, _mscl.new_CommProtocols(*args)) - - def push_back(self, x): - return _mscl.CommProtocols_push_back(self, x) - - def front(self): - return _mscl.CommProtocols_front(self) - - def back(self): - return _mscl.CommProtocols_back(self) - - def assign(self, n, x): - return _mscl.CommProtocols_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommProtocols_resize(self, *args) - - def insert(self, *args): - return _mscl.CommProtocols_insert(self, *args) - - def reserve(self, n): - return _mscl.CommProtocols_reserve(self, n) - - def capacity(self): - return _mscl.CommProtocols_capacity(self) - __swig_destroy__ = _mscl.delete_CommProtocols - -# Register CommProtocols in _mscl: -_mscl.CommProtocols_swigregister(CommProtocols) - -class Voltages(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Voltages_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Voltages___nonzero__(self) - - def __bool__(self): - return _mscl.Voltages___bool__(self) - - def __len__(self): - return _mscl.Voltages___len__(self) - - def __getslice__(self, i, j): - return _mscl.Voltages___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Voltages___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Voltages___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Voltages___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Voltages___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Voltages___setitem__(self, *args) - - def pop(self): - return _mscl.Voltages_pop(self) - - def append(self, x): - return _mscl.Voltages_append(self, x) - - def empty(self): - return _mscl.Voltages_empty(self) - - def size(self): - return _mscl.Voltages_size(self) - - def swap(self, v): - return _mscl.Voltages_swap(self, v) - - def begin(self): - return _mscl.Voltages_begin(self) - - def end(self): - return _mscl.Voltages_end(self) - - def rbegin(self): - return _mscl.Voltages_rbegin(self) - - def rend(self): - return _mscl.Voltages_rend(self) - - def clear(self): - return _mscl.Voltages_clear(self) - - def get_allocator(self): - return _mscl.Voltages_get_allocator(self) - - def pop_back(self): - return _mscl.Voltages_pop_back(self) - - def erase(self, *args): - return _mscl.Voltages_erase(self, *args) - - def __init__(self, *args): - _mscl.Voltages_swiginit(self, _mscl.new_Voltages(*args)) - - def push_back(self, x): - return _mscl.Voltages_push_back(self, x) - - def front(self): - return _mscl.Voltages_front(self) - - def back(self): - return _mscl.Voltages_back(self) - - def assign(self, n, x): - return _mscl.Voltages_assign(self, n, x) - - def resize(self, *args): - return _mscl.Voltages_resize(self, *args) - - def insert(self, *args): - return _mscl.Voltages_insert(self, *args) - - def reserve(self, n): - return _mscl.Voltages_reserve(self, n) - - def capacity(self): - return _mscl.Voltages_capacity(self) - __swig_destroy__ = _mscl.delete_Voltages - -# Register Voltages in _mscl: -_mscl.Voltages_swigregister(Voltages) - -class SensorOutputModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorOutputModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorOutputModes___nonzero__(self) - - def __bool__(self): - return _mscl.SensorOutputModes___bool__(self) - - def __len__(self): - return _mscl.SensorOutputModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorOutputModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorOutputModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorOutputModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorOutputModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorOutputModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorOutputModes___setitem__(self, *args) - - def pop(self): - return _mscl.SensorOutputModes_pop(self) - - def append(self, x): - return _mscl.SensorOutputModes_append(self, x) - - def empty(self): - return _mscl.SensorOutputModes_empty(self) - - def size(self): - return _mscl.SensorOutputModes_size(self) - - def swap(self, v): - return _mscl.SensorOutputModes_swap(self, v) - - def begin(self): - return _mscl.SensorOutputModes_begin(self) - - def end(self): - return _mscl.SensorOutputModes_end(self) - - def rbegin(self): - return _mscl.SensorOutputModes_rbegin(self) - - def rend(self): - return _mscl.SensorOutputModes_rend(self) - - def clear(self): - return _mscl.SensorOutputModes_clear(self) - - def get_allocator(self): - return _mscl.SensorOutputModes_get_allocator(self) - - def pop_back(self): - return _mscl.SensorOutputModes_pop_back(self) - - def erase(self, *args): - return _mscl.SensorOutputModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorOutputModes_swiginit(self, _mscl.new_SensorOutputModes(*args)) - - def push_back(self, x): - return _mscl.SensorOutputModes_push_back(self, x) - - def front(self): - return _mscl.SensorOutputModes_front(self) - - def back(self): - return _mscl.SensorOutputModes_back(self) - - def assign(self, n, x): - return _mscl.SensorOutputModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorOutputModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorOutputModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorOutputModes_reserve(self, n) - - def capacity(self): - return _mscl.SensorOutputModes_capacity(self) - __swig_destroy__ = _mscl.delete_SensorOutputModes - -# Register SensorOutputModes in _mscl: -_mscl.SensorOutputModes_swigregister(SensorOutputModes) - -class CfcFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CfcFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CfcFilters___nonzero__(self) - - def __bool__(self): - return _mscl.CfcFilters___bool__(self) - - def __len__(self): - return _mscl.CfcFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.CfcFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CfcFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CfcFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CfcFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CfcFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CfcFilters___setitem__(self, *args) - - def pop(self): - return _mscl.CfcFilters_pop(self) - - def append(self, x): - return _mscl.CfcFilters_append(self, x) - - def empty(self): - return _mscl.CfcFilters_empty(self) - - def size(self): - return _mscl.CfcFilters_size(self) - - def swap(self, v): - return _mscl.CfcFilters_swap(self, v) - - def begin(self): - return _mscl.CfcFilters_begin(self) - - def end(self): - return _mscl.CfcFilters_end(self) - - def rbegin(self): - return _mscl.CfcFilters_rbegin(self) - - def rend(self): - return _mscl.CfcFilters_rend(self) - - def clear(self): - return _mscl.CfcFilters_clear(self) - - def get_allocator(self): - return _mscl.CfcFilters_get_allocator(self) - - def pop_back(self): - return _mscl.CfcFilters_pop_back(self) - - def erase(self, *args): - return _mscl.CfcFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.CfcFilters_swiginit(self, _mscl.new_CfcFilters(*args)) - - def push_back(self, x): - return _mscl.CfcFilters_push_back(self, x) - - def front(self): - return _mscl.CfcFilters_front(self) - - def back(self): - return _mscl.CfcFilters_back(self) - - def assign(self, n, x): - return _mscl.CfcFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.CfcFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.CfcFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.CfcFilters_reserve(self, n) - - def capacity(self): - return _mscl.CfcFilters_capacity(self) - __swig_destroy__ = _mscl.delete_CfcFilters - -# Register CfcFilters in _mscl: -_mscl.CfcFilters_swigregister(CfcFilters) - -class TransducerTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransducerTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransducerTypes___nonzero__(self) - - def __bool__(self): - return _mscl.TransducerTypes___bool__(self) - - def __len__(self): - return _mscl.TransducerTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransducerTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransducerTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransducerTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransducerTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransducerTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransducerTypes___setitem__(self, *args) - - def pop(self): - return _mscl.TransducerTypes_pop(self) - - def append(self, x): - return _mscl.TransducerTypes_append(self, x) - - def empty(self): - return _mscl.TransducerTypes_empty(self) - - def size(self): - return _mscl.TransducerTypes_size(self) - - def swap(self, v): - return _mscl.TransducerTypes_swap(self, v) - - def begin(self): - return _mscl.TransducerTypes_begin(self) - - def end(self): - return _mscl.TransducerTypes_end(self) - - def rbegin(self): - return _mscl.TransducerTypes_rbegin(self) - - def rend(self): - return _mscl.TransducerTypes_rend(self) - - def clear(self): - return _mscl.TransducerTypes_clear(self) - - def get_allocator(self): - return _mscl.TransducerTypes_get_allocator(self) - - def pop_back(self): - return _mscl.TransducerTypes_pop_back(self) - - def erase(self, *args): - return _mscl.TransducerTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.TransducerTypes_swiginit(self, _mscl.new_TransducerTypes(*args)) - - def push_back(self, x): - return _mscl.TransducerTypes_push_back(self, x) - - def front(self): - return _mscl.TransducerTypes_front(self) - - def back(self): - return _mscl.TransducerTypes_back(self) - - def assign(self, n, x): - return _mscl.TransducerTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransducerTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.TransducerTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.TransducerTypes_reserve(self, n) - - def capacity(self): - return _mscl.TransducerTypes_capacity(self) - __swig_destroy__ = _mscl.delete_TransducerTypes - -# Register TransducerTypes in _mscl: -_mscl.TransducerTypes_swigregister(TransducerTypes) - -class EepromMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EepromMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EepromMap___nonzero__(self) - - def __bool__(self): - return _mscl.EepromMap___bool__(self) - - def __len__(self): - return _mscl.EepromMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.EepromMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.EepromMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.EepromMap_has_key(self, key) - - def keys(self): - return _mscl.EepromMap_keys(self) - - def values(self): - return _mscl.EepromMap_values(self) - - def items(self): - return _mscl.EepromMap_items(self) - - def __contains__(self, key): - return _mscl.EepromMap___contains__(self, key) - - def key_iterator(self): - return _mscl.EepromMap_key_iterator(self) - - def value_iterator(self): - return _mscl.EepromMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.EepromMap___setitem__(self, *args) - - def asdict(self): - return _mscl.EepromMap_asdict(self) - - def __init__(self, *args): - _mscl.EepromMap_swiginit(self, _mscl.new_EepromMap(*args)) - - def empty(self): - return _mscl.EepromMap_empty(self) - - def size(self): - return _mscl.EepromMap_size(self) - - def swap(self, v): - return _mscl.EepromMap_swap(self, v) - - def begin(self): - return _mscl.EepromMap_begin(self) - - def end(self): - return _mscl.EepromMap_end(self) - - def rbegin(self): - return _mscl.EepromMap_rbegin(self) - - def rend(self): - return _mscl.EepromMap_rend(self) - - def clear(self): - return _mscl.EepromMap_clear(self) - - def get_allocator(self): - return _mscl.EepromMap_get_allocator(self) - - def count(self, x): - return _mscl.EepromMap_count(self, x) - - def erase(self, *args): - return _mscl.EepromMap_erase(self, *args) - - def find(self, x): - return _mscl.EepromMap_find(self, x) - - def lower_bound(self, x): - return _mscl.EepromMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.EepromMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_EepromMap - -# Register EepromMap in _mscl: -_mscl.EepromMap_swigregister(EepromMap) - -class DerivedChannelMasks(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DerivedChannelMasks_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DerivedChannelMasks___nonzero__(self) - - def __bool__(self): - return _mscl.DerivedChannelMasks___bool__(self) - - def __len__(self): - return _mscl.DerivedChannelMasks___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DerivedChannelMasks___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DerivedChannelMasks___delitem__(self, key) - - def has_key(self, key): - return _mscl.DerivedChannelMasks_has_key(self, key) - - def keys(self): - return _mscl.DerivedChannelMasks_keys(self) - - def values(self): - return _mscl.DerivedChannelMasks_values(self) - - def items(self): - return _mscl.DerivedChannelMasks_items(self) - - def __contains__(self, key): - return _mscl.DerivedChannelMasks___contains__(self, key) - - def key_iterator(self): - return _mscl.DerivedChannelMasks_key_iterator(self) - - def value_iterator(self): - return _mscl.DerivedChannelMasks_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DerivedChannelMasks___setitem__(self, *args) - - def asdict(self): - return _mscl.DerivedChannelMasks_asdict(self) - - def __init__(self, *args): - _mscl.DerivedChannelMasks_swiginit(self, _mscl.new_DerivedChannelMasks(*args)) - - def empty(self): - return _mscl.DerivedChannelMasks_empty(self) - - def size(self): - return _mscl.DerivedChannelMasks_size(self) - - def swap(self, v): - return _mscl.DerivedChannelMasks_swap(self, v) - - def begin(self): - return _mscl.DerivedChannelMasks_begin(self) - - def end(self): - return _mscl.DerivedChannelMasks_end(self) - - def rbegin(self): - return _mscl.DerivedChannelMasks_rbegin(self) - - def rend(self): - return _mscl.DerivedChannelMasks_rend(self) - - def clear(self): - return _mscl.DerivedChannelMasks_clear(self) - - def get_allocator(self): - return _mscl.DerivedChannelMasks_get_allocator(self) - - def count(self, x): - return _mscl.DerivedChannelMasks_count(self, x) - - def erase(self, *args): - return _mscl.DerivedChannelMasks_erase(self, *args) - - def find(self, x): - return _mscl.DerivedChannelMasks_find(self, x) - - def lower_bound(self, x): - return _mscl.DerivedChannelMasks_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DerivedChannelMasks_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DerivedChannelMasks - -# Register DerivedChannelMasks in _mscl: -_mscl.DerivedChannelMasks_swigregister(DerivedChannelMasks) - -class DeviceStatusMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusMap_keys(self) - - def values(self): - return _mscl.DeviceStatusMap_values(self) - - def items(self): - return _mscl.DeviceStatusMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusMap_swiginit(self, _mscl.new_DeviceStatusMap(*args)) - - def empty(self): - return _mscl.DeviceStatusMap_empty(self) - - def size(self): - return _mscl.DeviceStatusMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusMap_begin(self) - - def end(self): - return _mscl.DeviceStatusMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusMap - -# Register DeviceStatusMap in _mscl: -_mscl.DeviceStatusMap_swigregister(DeviceStatusMap) - -class DeviceStatusValueMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusValueMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusValueMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusValueMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusValueMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusValueMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusValueMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusValueMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusValueMap_keys(self) - - def values(self): - return _mscl.DeviceStatusValueMap_values(self) - - def items(self): - return _mscl.DeviceStatusValueMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusValueMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusValueMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusValueMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusValueMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusValueMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusValueMap_swiginit(self, _mscl.new_DeviceStatusValueMap(*args)) - - def empty(self): - return _mscl.DeviceStatusValueMap_empty(self) - - def size(self): - return _mscl.DeviceStatusValueMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusValueMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusValueMap_begin(self) - - def end(self): - return _mscl.DeviceStatusValueMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusValueMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusValueMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusValueMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusValueMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusValueMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusValueMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusValueMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusValueMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusValueMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusValueMap - -# Register DeviceStatusValueMap in _mscl: -_mscl.DeviceStatusValueMap_swigregister(DeviceStatusValueMap) - -class SampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.SampleRates___bool__(self) - - def __len__(self): - return _mscl.SampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.SampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.SampleRates_pop(self) - - def append(self, x): - return _mscl.SampleRates_append(self, x) - - def empty(self): - return _mscl.SampleRates_empty(self) - - def size(self): - return _mscl.SampleRates_size(self) - - def swap(self, v): - return _mscl.SampleRates_swap(self, v) - - def begin(self): - return _mscl.SampleRates_begin(self) - - def end(self): - return _mscl.SampleRates_end(self) - - def rbegin(self): - return _mscl.SampleRates_rbegin(self) - - def rend(self): - return _mscl.SampleRates_rend(self) - - def clear(self): - return _mscl.SampleRates_clear(self) - - def get_allocator(self): - return _mscl.SampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.SampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.SampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.SampleRates_swiginit(self, _mscl.new_SampleRates(*args)) - - def push_back(self, x): - return _mscl.SampleRates_push_back(self, x) - - def front(self): - return _mscl.SampleRates_front(self) - - def back(self): - return _mscl.SampleRates_back(self) - - def assign(self, n, x): - return _mscl.SampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.SampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.SampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.SampleRates_reserve(self, n) - - def capacity(self): - return _mscl.SampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_SampleRates - -# Register SampleRates in _mscl: -_mscl.SampleRates_swigregister(SampleRates) - -class ConfigIssues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConfigIssues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConfigIssues___nonzero__(self) - - def __bool__(self): - return _mscl.ConfigIssues___bool__(self) - - def __len__(self): - return _mscl.ConfigIssues___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConfigIssues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConfigIssues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConfigIssues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConfigIssues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConfigIssues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConfigIssues___setitem__(self, *args) - - def pop(self): - return _mscl.ConfigIssues_pop(self) - - def append(self, x): - return _mscl.ConfigIssues_append(self, x) - - def empty(self): - return _mscl.ConfigIssues_empty(self) - - def size(self): - return _mscl.ConfigIssues_size(self) - - def swap(self, v): - return _mscl.ConfigIssues_swap(self, v) - - def begin(self): - return _mscl.ConfigIssues_begin(self) - - def end(self): - return _mscl.ConfigIssues_end(self) - - def rbegin(self): - return _mscl.ConfigIssues_rbegin(self) - - def rend(self): - return _mscl.ConfigIssues_rend(self) - - def clear(self): - return _mscl.ConfigIssues_clear(self) - - def get_allocator(self): - return _mscl.ConfigIssues_get_allocator(self) - - def pop_back(self): - return _mscl.ConfigIssues_pop_back(self) - - def erase(self, *args): - return _mscl.ConfigIssues_erase(self, *args) - - def __init__(self, *args): - _mscl.ConfigIssues_swiginit(self, _mscl.new_ConfigIssues(*args)) - - def push_back(self, x): - return _mscl.ConfigIssues_push_back(self, x) - - def front(self): - return _mscl.ConfigIssues_front(self) - - def back(self): - return _mscl.ConfigIssues_back(self) - - def assign(self, n, x): - return _mscl.ConfigIssues_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConfigIssues_resize(self, *args) - - def insert(self, *args): - return _mscl.ConfigIssues_insert(self, *args) - - def reserve(self, n): - return _mscl.ConfigIssues_reserve(self, n) - - def capacity(self): - return _mscl.ConfigIssues_capacity(self) - __swig_destroy__ = _mscl.delete_ConfigIssues - -# Register ConfigIssues in _mscl: -_mscl.ConfigIssues_swigregister(ConfigIssues) - -class MipChannelFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelFields_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelFields___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelFields___bool__(self) - - def __len__(self): - return _mscl.MipChannelFields___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelFields___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelFields___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelFields___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelFields___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelFields___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelFields___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelFields_pop(self) - - def append(self, x): - return _mscl.MipChannelFields_append(self, x) - - def empty(self): - return _mscl.MipChannelFields_empty(self) - - def size(self): - return _mscl.MipChannelFields_size(self) - - def swap(self, v): - return _mscl.MipChannelFields_swap(self, v) - - def begin(self): - return _mscl.MipChannelFields_begin(self) - - def end(self): - return _mscl.MipChannelFields_end(self) - - def rbegin(self): - return _mscl.MipChannelFields_rbegin(self) - - def rend(self): - return _mscl.MipChannelFields_rend(self) - - def clear(self): - return _mscl.MipChannelFields_clear(self) - - def get_allocator(self): - return _mscl.MipChannelFields_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelFields_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelFields_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelFields_swiginit(self, _mscl.new_MipChannelFields(*args)) - - def push_back(self, x): - return _mscl.MipChannelFields_push_back(self, x) - - def front(self): - return _mscl.MipChannelFields_front(self) - - def back(self): - return _mscl.MipChannelFields_back(self) - - def assign(self, n, x): - return _mscl.MipChannelFields_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelFields_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelFields_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelFields_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelFields_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelFields - -# Register MipChannelFields in _mscl: -_mscl.MipChannelFields_swigregister(MipChannelFields) - -class MipCommands(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommands_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommands___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommands___bool__(self) - - def __len__(self): - return _mscl.MipCommands___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommands___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommands___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommands___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommands___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommands___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommands___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommands_pop(self) - - def append(self, x): - return _mscl.MipCommands_append(self, x) - - def empty(self): - return _mscl.MipCommands_empty(self) - - def size(self): - return _mscl.MipCommands_size(self) - - def swap(self, v): - return _mscl.MipCommands_swap(self, v) - - def begin(self): - return _mscl.MipCommands_begin(self) - - def end(self): - return _mscl.MipCommands_end(self) - - def rbegin(self): - return _mscl.MipCommands_rbegin(self) - - def rend(self): - return _mscl.MipCommands_rend(self) - - def clear(self): - return _mscl.MipCommands_clear(self) - - def get_allocator(self): - return _mscl.MipCommands_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommands_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommands_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommands_swiginit(self, _mscl.new_MipCommands(*args)) - - def push_back(self, x): - return _mscl.MipCommands_push_back(self, x) - - def front(self): - return _mscl.MipCommands_front(self) - - def back(self): - return _mscl.MipCommands_back(self) - - def assign(self, n, x): - return _mscl.MipCommands_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommands_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommands_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommands_reserve(self, n) - - def capacity(self): - return _mscl.MipCommands_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommands - -# Register MipCommands in _mscl: -_mscl.MipCommands_swigregister(MipCommands) - -class MipDataClasses(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataClasses_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataClasses___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataClasses___bool__(self) - - def __len__(self): - return _mscl.MipDataClasses___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataClasses___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataClasses___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataClasses___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataClasses___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataClasses___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataClasses___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataClasses_pop(self) - - def append(self, x): - return _mscl.MipDataClasses_append(self, x) - - def empty(self): - return _mscl.MipDataClasses_empty(self) - - def size(self): - return _mscl.MipDataClasses_size(self) - - def swap(self, v): - return _mscl.MipDataClasses_swap(self, v) - - def begin(self): - return _mscl.MipDataClasses_begin(self) - - def end(self): - return _mscl.MipDataClasses_end(self) - - def rbegin(self): - return _mscl.MipDataClasses_rbegin(self) - - def rend(self): - return _mscl.MipDataClasses_rend(self) - - def clear(self): - return _mscl.MipDataClasses_clear(self) - - def get_allocator(self): - return _mscl.MipDataClasses_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataClasses_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataClasses_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataClasses_swiginit(self, _mscl.new_MipDataClasses(*args)) - - def push_back(self, x): - return _mscl.MipDataClasses_push_back(self, x) - - def front(self): - return _mscl.MipDataClasses_front(self) - - def back(self): - return _mscl.MipDataClasses_back(self) - - def assign(self, n, x): - return _mscl.MipDataClasses_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataClasses_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataClasses_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataClasses_reserve(self, n) - - def capacity(self): - return _mscl.MipDataClasses_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataClasses - -# Register MipDataClasses in _mscl: -_mscl.MipDataClasses_swigregister(MipDataClasses) - -class MipChannelIdentifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelIdentifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelIdentifiers___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelIdentifiers___bool__(self) - - def __len__(self): - return _mscl.MipChannelIdentifiers___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelIdentifiers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelIdentifiers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelIdentifiers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelIdentifiers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelIdentifiers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelIdentifiers___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelIdentifiers_pop(self) - - def append(self, x): - return _mscl.MipChannelIdentifiers_append(self, x) - - def empty(self): - return _mscl.MipChannelIdentifiers_empty(self) - - def size(self): - return _mscl.MipChannelIdentifiers_size(self) - - def swap(self, v): - return _mscl.MipChannelIdentifiers_swap(self, v) - - def begin(self): - return _mscl.MipChannelIdentifiers_begin(self) - - def end(self): - return _mscl.MipChannelIdentifiers_end(self) - - def rbegin(self): - return _mscl.MipChannelIdentifiers_rbegin(self) - - def rend(self): - return _mscl.MipChannelIdentifiers_rend(self) - - def clear(self): - return _mscl.MipChannelIdentifiers_clear(self) - - def get_allocator(self): - return _mscl.MipChannelIdentifiers_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelIdentifiers_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelIdentifiers_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelIdentifiers_swiginit(self, _mscl.new_MipChannelIdentifiers(*args)) - - def push_back(self, x): - return _mscl.MipChannelIdentifiers_push_back(self, x) - - def front(self): - return _mscl.MipChannelIdentifiers_front(self) - - def back(self): - return _mscl.MipChannelIdentifiers_back(self) - - def assign(self, n, x): - return _mscl.MipChannelIdentifiers_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelIdentifiers_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelIdentifiers_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelIdentifiers_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelIdentifiers_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelIdentifiers - -# Register MipChannelIdentifiers in _mscl: -_mscl.MipChannelIdentifiers_swigregister(MipChannelIdentifiers) - -class MipCommandSet(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandSet_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandSet___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandSet___bool__(self) - - def __len__(self): - return _mscl.MipCommandSet___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandSet___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandSet___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandSet___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandSet___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandSet___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandSet___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandSet_pop(self) - - def append(self, x): - return _mscl.MipCommandSet_append(self, x) - - def empty(self): - return _mscl.MipCommandSet_empty(self) - - def size(self): - return _mscl.MipCommandSet_size(self) - - def swap(self, v): - return _mscl.MipCommandSet_swap(self, v) - - def begin(self): - return _mscl.MipCommandSet_begin(self) - - def end(self): - return _mscl.MipCommandSet_end(self) - - def rbegin(self): - return _mscl.MipCommandSet_rbegin(self) - - def rend(self): - return _mscl.MipCommandSet_rend(self) - - def clear(self): - return _mscl.MipCommandSet_clear(self) - - def get_allocator(self): - return _mscl.MipCommandSet_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandSet_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandSet_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandSet_swiginit(self, _mscl.new_MipCommandSet(*args)) - - def push_back(self, x): - return _mscl.MipCommandSet_push_back(self, x) - - def front(self): - return _mscl.MipCommandSet_front(self) - - def back(self): - return _mscl.MipCommandSet_back(self) - - def assign(self, n, x): - return _mscl.MipCommandSet_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandSet_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandSet_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandSet_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandSet_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandSet - -# Register MipCommandSet in _mscl: -_mscl.MipCommandSet_swigregister(MipCommandSet) - -class MipFieldValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipFieldValues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipFieldValues___nonzero__(self) - - def __bool__(self): - return _mscl.MipFieldValues___bool__(self) - - def __len__(self): - return _mscl.MipFieldValues___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipFieldValues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipFieldValues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipFieldValues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipFieldValues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipFieldValues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipFieldValues___setitem__(self, *args) - - def pop(self): - return _mscl.MipFieldValues_pop(self) - - def append(self, x): - return _mscl.MipFieldValues_append(self, x) - - def empty(self): - return _mscl.MipFieldValues_empty(self) - - def size(self): - return _mscl.MipFieldValues_size(self) - - def swap(self, v): - return _mscl.MipFieldValues_swap(self, v) - - def begin(self): - return _mscl.MipFieldValues_begin(self) - - def end(self): - return _mscl.MipFieldValues_end(self) - - def rbegin(self): - return _mscl.MipFieldValues_rbegin(self) - - def rend(self): - return _mscl.MipFieldValues_rend(self) - - def clear(self): - return _mscl.MipFieldValues_clear(self) - - def get_allocator(self): - return _mscl.MipFieldValues_get_allocator(self) - - def pop_back(self): - return _mscl.MipFieldValues_pop_back(self) - - def erase(self, *args): - return _mscl.MipFieldValues_erase(self, *args) - - def __init__(self, *args): - _mscl.MipFieldValues_swiginit(self, _mscl.new_MipFieldValues(*args)) - - def push_back(self, x): - return _mscl.MipFieldValues_push_back(self, x) - - def front(self): - return _mscl.MipFieldValues_front(self) - - def back(self): - return _mscl.MipFieldValues_back(self) - - def assign(self, n, x): - return _mscl.MipFieldValues_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipFieldValues_resize(self, *args) - - def insert(self, *args): - return _mscl.MipFieldValues_insert(self, *args) - - def reserve(self, n): - return _mscl.MipFieldValues_reserve(self, n) - - def capacity(self): - return _mscl.MipFieldValues_capacity(self) - __swig_destroy__ = _mscl.delete_MipFieldValues - -# Register MipFieldValues in _mscl: -_mscl.MipFieldValues_swigregister(MipFieldValues) - -class MipCommandParamPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipCommandParamPair_swiginit(self, _mscl.new_MipCommandParamPair(*args)) - first = property(_mscl.MipCommandParamPair_first_get, _mscl.MipCommandParamPair_first_set) - second = property(_mscl.MipCommandParamPair_second_get, _mscl.MipCommandParamPair_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_MipCommandParamPair - -# Register MipCommandParamPair in _mscl: -_mscl.MipCommandParamPair_swigregister(MipCommandParamPair) - -class MipCommandParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandParameters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandParameters___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandParameters___bool__(self) - - def __len__(self): - return _mscl.MipCommandParameters___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandParameters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandParameters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandParameters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandParameters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandParameters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandParameters___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandParameters_pop(self) - - def append(self, x): - return _mscl.MipCommandParameters_append(self, x) - - def empty(self): - return _mscl.MipCommandParameters_empty(self) - - def size(self): - return _mscl.MipCommandParameters_size(self) - - def swap(self, v): - return _mscl.MipCommandParameters_swap(self, v) - - def begin(self): - return _mscl.MipCommandParameters_begin(self) - - def end(self): - return _mscl.MipCommandParameters_end(self) - - def rbegin(self): - return _mscl.MipCommandParameters_rbegin(self) - - def rend(self): - return _mscl.MipCommandParameters_rend(self) - - def clear(self): - return _mscl.MipCommandParameters_clear(self) - - def get_allocator(self): - return _mscl.MipCommandParameters_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandParameters_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandParameters_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandParameters_swiginit(self, _mscl.new_MipCommandParameters(*args)) - - def push_back(self, x): - return _mscl.MipCommandParameters_push_back(self, x) - - def front(self): - return _mscl.MipCommandParameters_front(self) - - def back(self): - return _mscl.MipCommandParameters_back(self) - - def assign(self, n, x): - return _mscl.MipCommandParameters_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandParameters_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandParameters_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandParameters_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandParameters_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandParameters - -# Register MipCommandParameters in _mscl: -_mscl.MipCommandParameters_swigregister(MipCommandParameters) - -class ChannelIndex(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ChannelIndex_swiginit(self, _mscl.new_ChannelIndex(*args)) - first = property(_mscl.ChannelIndex_first_get, _mscl.ChannelIndex_first_set) - second = property(_mscl.ChannelIndex_second_get, _mscl.ChannelIndex_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_ChannelIndex - -# Register ChannelIndex in _mscl: -_mscl.ChannelIndex_swigregister(ChannelIndex) - -class ChannelIndices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelIndices_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelIndices___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelIndices___bool__(self) - - def __len__(self): - return _mscl.ChannelIndices___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelIndices___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelIndices___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelIndices___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelIndices___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelIndices___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelIndices___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelIndices_pop(self) - - def append(self, x): - return _mscl.ChannelIndices_append(self, x) - - def empty(self): - return _mscl.ChannelIndices_empty(self) - - def size(self): - return _mscl.ChannelIndices_size(self) - - def swap(self, v): - return _mscl.ChannelIndices_swap(self, v) - - def begin(self): - return _mscl.ChannelIndices_begin(self) - - def end(self): - return _mscl.ChannelIndices_end(self) - - def rbegin(self): - return _mscl.ChannelIndices_rbegin(self) - - def rend(self): - return _mscl.ChannelIndices_rend(self) - - def clear(self): - return _mscl.ChannelIndices_clear(self) - - def get_allocator(self): - return _mscl.ChannelIndices_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelIndices_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelIndices_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelIndices_swiginit(self, _mscl.new_ChannelIndices(*args)) - - def push_back(self, x): - return _mscl.ChannelIndices_push_back(self, x) - - def front(self): - return _mscl.ChannelIndices_front(self) - - def back(self): - return _mscl.ChannelIndices_back(self) - - def assign(self, n, x): - return _mscl.ChannelIndices_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelIndices_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelIndices_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelIndices_reserve(self, n) - - def capacity(self): - return _mscl.ChannelIndices_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelIndices - -# Register ChannelIndices in _mscl: -_mscl.ChannelIndices_swigregister(ChannelIndices) - -class ChannelFieldQualifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelFieldQualifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelFieldQualifiers___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelFieldQualifiers___bool__(self) - - def __len__(self): - return _mscl.ChannelFieldQualifiers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelFieldQualifiers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelFieldQualifiers___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelFieldQualifiers_has_key(self, key) - - def keys(self): - return _mscl.ChannelFieldQualifiers_keys(self) - - def values(self): - return _mscl.ChannelFieldQualifiers_values(self) - - def items(self): - return _mscl.ChannelFieldQualifiers_items(self) - - def __contains__(self, key): - return _mscl.ChannelFieldQualifiers___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelFieldQualifiers_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelFieldQualifiers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelFieldQualifiers___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelFieldQualifiers_asdict(self) - - def __init__(self, *args): - _mscl.ChannelFieldQualifiers_swiginit(self, _mscl.new_ChannelFieldQualifiers(*args)) - - def empty(self): - return _mscl.ChannelFieldQualifiers_empty(self) - - def size(self): - return _mscl.ChannelFieldQualifiers_size(self) - - def swap(self, v): - return _mscl.ChannelFieldQualifiers_swap(self, v) - - def begin(self): - return _mscl.ChannelFieldQualifiers_begin(self) - - def end(self): - return _mscl.ChannelFieldQualifiers_end(self) - - def rbegin(self): - return _mscl.ChannelFieldQualifiers_rbegin(self) - - def rend(self): - return _mscl.ChannelFieldQualifiers_rend(self) - - def clear(self): - return _mscl.ChannelFieldQualifiers_clear(self) - - def get_allocator(self): - return _mscl.ChannelFieldQualifiers_get_allocator(self) - - def count(self, x): - return _mscl.ChannelFieldQualifiers_count(self, x) - - def erase(self, *args): - return _mscl.ChannelFieldQualifiers_erase(self, *args) - - def find(self, x): - return _mscl.ChannelFieldQualifiers_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelFieldQualifiers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelFieldQualifiers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelFieldQualifiers - -# Register ChannelFieldQualifiers in _mscl: -_mscl.ChannelFieldQualifiers_swigregister(ChannelFieldQualifiers) - -class GnssReceivers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssReceivers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssReceivers___nonzero__(self) - - def __bool__(self): - return _mscl.GnssReceivers___bool__(self) - - def __len__(self): - return _mscl.GnssReceivers___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssReceivers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssReceivers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssReceivers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssReceivers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssReceivers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssReceivers___setitem__(self, *args) - - def pop(self): - return _mscl.GnssReceivers_pop(self) - - def append(self, x): - return _mscl.GnssReceivers_append(self, x) - - def empty(self): - return _mscl.GnssReceivers_empty(self) - - def size(self): - return _mscl.GnssReceivers_size(self) - - def swap(self, v): - return _mscl.GnssReceivers_swap(self, v) - - def begin(self): - return _mscl.GnssReceivers_begin(self) - - def end(self): - return _mscl.GnssReceivers_end(self) - - def rbegin(self): - return _mscl.GnssReceivers_rbegin(self) - - def rend(self): - return _mscl.GnssReceivers_rend(self) - - def clear(self): - return _mscl.GnssReceivers_clear(self) - - def get_allocator(self): - return _mscl.GnssReceivers_get_allocator(self) - - def pop_back(self): - return _mscl.GnssReceivers_pop_back(self) - - def erase(self, *args): - return _mscl.GnssReceivers_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssReceivers_swiginit(self, _mscl.new_GnssReceivers(*args)) - - def push_back(self, x): - return _mscl.GnssReceivers_push_back(self, x) - - def front(self): - return _mscl.GnssReceivers_front(self) - - def back(self): - return _mscl.GnssReceivers_back(self) - - def assign(self, n, x): - return _mscl.GnssReceivers_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssReceivers_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssReceivers_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssReceivers_reserve(self, n) - - def capacity(self): - return _mscl.GnssReceivers_capacity(self) - __swig_destroy__ = _mscl.delete_GnssReceivers - -# Register GnssReceivers in _mscl: -_mscl.GnssReceivers_swigregister(GnssReceivers) - -class SensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRanges___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRanges___bool__(self) - - def __len__(self): - return _mscl.SensorRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorRanges___setitem__(self, *args) - - def pop(self): - return _mscl.SensorRanges_pop(self) - - def append(self, x): - return _mscl.SensorRanges_append(self, x) - - def empty(self): - return _mscl.SensorRanges_empty(self) - - def size(self): - return _mscl.SensorRanges_size(self) - - def swap(self, v): - return _mscl.SensorRanges_swap(self, v) - - def begin(self): - return _mscl.SensorRanges_begin(self) - - def end(self): - return _mscl.SensorRanges_end(self) - - def rbegin(self): - return _mscl.SensorRanges_rbegin(self) - - def rend(self): - return _mscl.SensorRanges_rend(self) - - def clear(self): - return _mscl.SensorRanges_clear(self) - - def get_allocator(self): - return _mscl.SensorRanges_get_allocator(self) - - def pop_back(self): - return _mscl.SensorRanges_pop_back(self) - - def erase(self, *args): - return _mscl.SensorRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorRanges_swiginit(self, _mscl.new_SensorRanges(*args)) - - def push_back(self, x): - return _mscl.SensorRanges_push_back(self, x) - - def front(self): - return _mscl.SensorRanges_front(self) - - def back(self): - return _mscl.SensorRanges_back(self) - - def assign(self, n, x): - return _mscl.SensorRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorRanges_reserve(self, n) - - def capacity(self): - return _mscl.SensorRanges_capacity(self) - __swig_destroy__ = _mscl.delete_SensorRanges - -# Register SensorRanges in _mscl: -_mscl.SensorRanges_swigregister(SensorRanges) - -class SensorRangeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRangeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRangeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRangeOptions___bool__(self) - - def __len__(self): - return _mscl.SensorRangeOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SensorRangeOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SensorRangeOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.SensorRangeOptions_has_key(self, key) - - def keys(self): - return _mscl.SensorRangeOptions_keys(self) - - def values(self): - return _mscl.SensorRangeOptions_values(self) - - def items(self): - return _mscl.SensorRangeOptions_items(self) - - def __contains__(self, key): - return _mscl.SensorRangeOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.SensorRangeOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.SensorRangeOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SensorRangeOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.SensorRangeOptions_asdict(self) - - def __init__(self, *args): - _mscl.SensorRangeOptions_swiginit(self, _mscl.new_SensorRangeOptions(*args)) - - def empty(self): - return _mscl.SensorRangeOptions_empty(self) - - def size(self): - return _mscl.SensorRangeOptions_size(self) - - def swap(self, v): - return _mscl.SensorRangeOptions_swap(self, v) - - def begin(self): - return _mscl.SensorRangeOptions_begin(self) - - def end(self): - return _mscl.SensorRangeOptions_end(self) - - def rbegin(self): - return _mscl.SensorRangeOptions_rbegin(self) - - def rend(self): - return _mscl.SensorRangeOptions_rend(self) - - def clear(self): - return _mscl.SensorRangeOptions_clear(self) - - def get_allocator(self): - return _mscl.SensorRangeOptions_get_allocator(self) - - def count(self, x): - return _mscl.SensorRangeOptions_count(self, x) - - def erase(self, *args): - return _mscl.SensorRangeOptions_erase(self, *args) - - def find(self, x): - return _mscl.SensorRangeOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.SensorRangeOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SensorRangeOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SensorRangeOptions - -# Register SensorRangeOptions in _mscl: -_mscl.SensorRangeOptions_swigregister(SensorRangeOptions) - -class CommPortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommPortInfo_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommPortInfo___nonzero__(self) - - def __bool__(self): - return _mscl.CommPortInfo___bool__(self) - - def __len__(self): - return _mscl.CommPortInfo___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommPortInfo___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommPortInfo___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommPortInfo___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommPortInfo___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommPortInfo___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommPortInfo___setitem__(self, *args) - - def pop(self): - return _mscl.CommPortInfo_pop(self) - - def append(self, x): - return _mscl.CommPortInfo_append(self, x) - - def empty(self): - return _mscl.CommPortInfo_empty(self) - - def size(self): - return _mscl.CommPortInfo_size(self) - - def swap(self, v): - return _mscl.CommPortInfo_swap(self, v) - - def begin(self): - return _mscl.CommPortInfo_begin(self) - - def end(self): - return _mscl.CommPortInfo_end(self) - - def rbegin(self): - return _mscl.CommPortInfo_rbegin(self) - - def rend(self): - return _mscl.CommPortInfo_rend(self) - - def clear(self): - return _mscl.CommPortInfo_clear(self) - - def get_allocator(self): - return _mscl.CommPortInfo_get_allocator(self) - - def pop_back(self): - return _mscl.CommPortInfo_pop_back(self) - - def erase(self, *args): - return _mscl.CommPortInfo_erase(self, *args) - - def __init__(self, *args): - _mscl.CommPortInfo_swiginit(self, _mscl.new_CommPortInfo(*args)) - - def push_back(self, x): - return _mscl.CommPortInfo_push_back(self, x) - - def front(self): - return _mscl.CommPortInfo_front(self) - - def back(self): - return _mscl.CommPortInfo_back(self) - - def assign(self, n, x): - return _mscl.CommPortInfo_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommPortInfo_resize(self, *args) - - def insert(self, *args): - return _mscl.CommPortInfo_insert(self, *args) - - def reserve(self, n): - return _mscl.CommPortInfo_reserve(self, n) - - def capacity(self): - return _mscl.CommPortInfo_capacity(self) - __swig_destroy__ = _mscl.delete_CommPortInfo - -# Register CommPortInfo in _mscl: -_mscl.CommPortInfo_swigregister(CommPortInfo) - -class EventTriggerStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTriggerStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTriggerStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventTriggerStatus___bool__(self) - - def __len__(self): - return _mscl.EventTriggerStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTriggerStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTriggerStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTriggerStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTriggerStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTriggerStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTriggerStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventTriggerStatus_pop(self) - - def append(self, x): - return _mscl.EventTriggerStatus_append(self, x) - - def empty(self): - return _mscl.EventTriggerStatus_empty(self) - - def size(self): - return _mscl.EventTriggerStatus_size(self) - - def swap(self, v): - return _mscl.EventTriggerStatus_swap(self, v) - - def begin(self): - return _mscl.EventTriggerStatus_begin(self) - - def end(self): - return _mscl.EventTriggerStatus_end(self) - - def rbegin(self): - return _mscl.EventTriggerStatus_rbegin(self) - - def rend(self): - return _mscl.EventTriggerStatus_rend(self) - - def clear(self): - return _mscl.EventTriggerStatus_clear(self) - - def get_allocator(self): - return _mscl.EventTriggerStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventTriggerStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventTriggerStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTriggerStatus_swiginit(self, _mscl.new_EventTriggerStatus(*args)) - - def push_back(self, x): - return _mscl.EventTriggerStatus_push_back(self, x) - - def front(self): - return _mscl.EventTriggerStatus_front(self) - - def back(self): - return _mscl.EventTriggerStatus_back(self) - - def assign(self, n, x): - return _mscl.EventTriggerStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTriggerStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTriggerStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTriggerStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventTriggerStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventTriggerStatus - -# Register EventTriggerStatus in _mscl: -_mscl.EventTriggerStatus_swigregister(EventTriggerStatus) - -class EventActionStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventActionStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventActionStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventActionStatus___bool__(self) - - def __len__(self): - return _mscl.EventActionStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventActionStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventActionStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventActionStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventActionStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventActionStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventActionStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventActionStatus_pop(self) - - def append(self, x): - return _mscl.EventActionStatus_append(self, x) - - def empty(self): - return _mscl.EventActionStatus_empty(self) - - def size(self): - return _mscl.EventActionStatus_size(self) - - def swap(self, v): - return _mscl.EventActionStatus_swap(self, v) - - def begin(self): - return _mscl.EventActionStatus_begin(self) - - def end(self): - return _mscl.EventActionStatus_end(self) - - def rbegin(self): - return _mscl.EventActionStatus_rbegin(self) - - def rend(self): - return _mscl.EventActionStatus_rend(self) - - def clear(self): - return _mscl.EventActionStatus_clear(self) - - def get_allocator(self): - return _mscl.EventActionStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventActionStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventActionStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventActionStatus_swiginit(self, _mscl.new_EventActionStatus(*args)) - - def push_back(self, x): - return _mscl.EventActionStatus_push_back(self, x) - - def front(self): - return _mscl.EventActionStatus_front(self) - - def back(self): - return _mscl.EventActionStatus_back(self) - - def assign(self, n, x): - return _mscl.EventActionStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventActionStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventActionStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventActionStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventActionStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventActionStatus - -# Register EventActionStatus in _mscl: -_mscl.EventActionStatus_swigregister(EventActionStatus) - -class ChannelGroups(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroups_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroups___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroups___bool__(self) - - def __len__(self): - return _mscl.ChannelGroups___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroups___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroups___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroups___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroups___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroups___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroups___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroups_pop(self) - - def append(self, x): - return _mscl.ChannelGroups_append(self, x) - - def empty(self): - return _mscl.ChannelGroups_empty(self) - - def size(self): - return _mscl.ChannelGroups_size(self) - - def swap(self, v): - return _mscl.ChannelGroups_swap(self, v) - - def begin(self): - return _mscl.ChannelGroups_begin(self) - - def end(self): - return _mscl.ChannelGroups_end(self) - - def rbegin(self): - return _mscl.ChannelGroups_rbegin(self) - - def rend(self): - return _mscl.ChannelGroups_rend(self) - - def clear(self): - return _mscl.ChannelGroups_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroups_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroups_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroups_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroups_swiginit(self, _mscl.new_ChannelGroups(*args)) - - def push_back(self, x): - return _mscl.ChannelGroups_push_back(self, x) - - def front(self): - return _mscl.ChannelGroups_front(self) - - def back(self): - return _mscl.ChannelGroups_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroups_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroups_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroups_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroups_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroups_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroups - -# Register ChannelGroups in _mscl: -_mscl.ChannelGroups_swigregister(ChannelGroups) - -class WirelessChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessChannels___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessChannels___bool__(self) - - def __len__(self): - return _mscl.WirelessChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessChannels___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessChannels_pop(self) - - def append(self, x): - return _mscl.WirelessChannels_append(self, x) - - def empty(self): - return _mscl.WirelessChannels_empty(self) - - def size(self): - return _mscl.WirelessChannels_size(self) - - def swap(self, v): - return _mscl.WirelessChannels_swap(self, v) - - def begin(self): - return _mscl.WirelessChannels_begin(self) - - def end(self): - return _mscl.WirelessChannels_end(self) - - def rbegin(self): - return _mscl.WirelessChannels_rbegin(self) - - def rend(self): - return _mscl.WirelessChannels_rend(self) - - def clear(self): - return _mscl.WirelessChannels_clear(self) - - def get_allocator(self): - return _mscl.WirelessChannels_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessChannels_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessChannels_swiginit(self, _mscl.new_WirelessChannels(*args)) - - def push_back(self, x): - return _mscl.WirelessChannels_push_back(self, x) - - def front(self): - return _mscl.WirelessChannels_front(self) - - def back(self): - return _mscl.WirelessChannels_back(self) - - def assign(self, n, x): - return _mscl.WirelessChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessChannels_reserve(self, n) - - def capacity(self): - return _mscl.WirelessChannels_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessChannels - -# Register WirelessChannels in _mscl: -_mscl.WirelessChannels_swigregister(WirelessChannels) - -class DamageAngles(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DamageAngles_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DamageAngles___nonzero__(self) - - def __bool__(self): - return _mscl.DamageAngles___bool__(self) - - def __len__(self): - return _mscl.DamageAngles___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DamageAngles___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DamageAngles___delitem__(self, key) - - def has_key(self, key): - return _mscl.DamageAngles_has_key(self, key) - - def keys(self): - return _mscl.DamageAngles_keys(self) - - def values(self): - return _mscl.DamageAngles_values(self) - - def items(self): - return _mscl.DamageAngles_items(self) - - def __contains__(self, key): - return _mscl.DamageAngles___contains__(self, key) - - def key_iterator(self): - return _mscl.DamageAngles_key_iterator(self) - - def value_iterator(self): - return _mscl.DamageAngles_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DamageAngles___setitem__(self, *args) - - def asdict(self): - return _mscl.DamageAngles_asdict(self) - - def __init__(self, *args): - _mscl.DamageAngles_swiginit(self, _mscl.new_DamageAngles(*args)) - - def empty(self): - return _mscl.DamageAngles_empty(self) - - def size(self): - return _mscl.DamageAngles_size(self) - - def swap(self, v): - return _mscl.DamageAngles_swap(self, v) - - def begin(self): - return _mscl.DamageAngles_begin(self) - - def end(self): - return _mscl.DamageAngles_end(self) - - def rbegin(self): - return _mscl.DamageAngles_rbegin(self) - - def rend(self): - return _mscl.DamageAngles_rend(self) - - def clear(self): - return _mscl.DamageAngles_clear(self) - - def get_allocator(self): - return _mscl.DamageAngles_get_allocator(self) - - def count(self, x): - return _mscl.DamageAngles_count(self, x) - - def erase(self, *args): - return _mscl.DamageAngles_erase(self, *args) - - def find(self, x): - return _mscl.DamageAngles_find(self, x) - - def lower_bound(self, x): - return _mscl.DamageAngles_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DamageAngles_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DamageAngles - -# Register DamageAngles in _mscl: -_mscl.DamageAngles_swigregister(DamageAngles) - -class SnCurveSegments(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SnCurveSegments_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SnCurveSegments___nonzero__(self) - - def __bool__(self): - return _mscl.SnCurveSegments___bool__(self) - - def __len__(self): - return _mscl.SnCurveSegments___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SnCurveSegments___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SnCurveSegments___delitem__(self, key) - - def has_key(self, key): - return _mscl.SnCurveSegments_has_key(self, key) - - def keys(self): - return _mscl.SnCurveSegments_keys(self) - - def values(self): - return _mscl.SnCurveSegments_values(self) - - def items(self): - return _mscl.SnCurveSegments_items(self) - - def __contains__(self, key): - return _mscl.SnCurveSegments___contains__(self, key) - - def key_iterator(self): - return _mscl.SnCurveSegments_key_iterator(self) - - def value_iterator(self): - return _mscl.SnCurveSegments_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SnCurveSegments___setitem__(self, *args) - - def asdict(self): - return _mscl.SnCurveSegments_asdict(self) - - def __init__(self, *args): - _mscl.SnCurveSegments_swiginit(self, _mscl.new_SnCurveSegments(*args)) - - def empty(self): - return _mscl.SnCurveSegments_empty(self) - - def size(self): - return _mscl.SnCurveSegments_size(self) - - def swap(self, v): - return _mscl.SnCurveSegments_swap(self, v) - - def begin(self): - return _mscl.SnCurveSegments_begin(self) - - def end(self): - return _mscl.SnCurveSegments_end(self) - - def rbegin(self): - return _mscl.SnCurveSegments_rbegin(self) - - def rend(self): - return _mscl.SnCurveSegments_rend(self) - - def clear(self): - return _mscl.SnCurveSegments_clear(self) - - def get_allocator(self): - return _mscl.SnCurveSegments_get_allocator(self) - - def count(self, x): - return _mscl.SnCurveSegments_count(self, x) - - def erase(self, *args): - return _mscl.SnCurveSegments_erase(self, *args) - - def find(self, x): - return _mscl.SnCurveSegments_find(self, x) - - def lower_bound(self, x): - return _mscl.SnCurveSegments_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SnCurveSegments_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SnCurveSegments - -# Register SnCurveSegments in _mscl: -_mscl.SnCurveSegments_swigregister(SnCurveSegments) - -class RfSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RfSweep_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RfSweep___nonzero__(self) - - def __bool__(self): - return _mscl.RfSweep___bool__(self) - - def __len__(self): - return _mscl.RfSweep___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.RfSweep___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.RfSweep___delitem__(self, key) - - def has_key(self, key): - return _mscl.RfSweep_has_key(self, key) - - def keys(self): - return _mscl.RfSweep_keys(self) - - def values(self): - return _mscl.RfSweep_values(self) - - def items(self): - return _mscl.RfSweep_items(self) - - def __contains__(self, key): - return _mscl.RfSweep___contains__(self, key) - - def key_iterator(self): - return _mscl.RfSweep_key_iterator(self) - - def value_iterator(self): - return _mscl.RfSweep_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.RfSweep___setitem__(self, *args) - - def asdict(self): - return _mscl.RfSweep_asdict(self) - - def __init__(self, *args): - _mscl.RfSweep_swiginit(self, _mscl.new_RfSweep(*args)) - - def empty(self): - return _mscl.RfSweep_empty(self) - - def size(self): - return _mscl.RfSweep_size(self) - - def swap(self, v): - return _mscl.RfSweep_swap(self, v) - - def begin(self): - return _mscl.RfSweep_begin(self) - - def end(self): - return _mscl.RfSweep_end(self) - - def rbegin(self): - return _mscl.RfSweep_rbegin(self) - - def rend(self): - return _mscl.RfSweep_rend(self) - - def clear(self): - return _mscl.RfSweep_clear(self) - - def get_allocator(self): - return _mscl.RfSweep_get_allocator(self) - - def count(self, x): - return _mscl.RfSweep_count(self, x) - - def erase(self, *args): - return _mscl.RfSweep_erase(self, *args) - - def find(self, x): - return _mscl.RfSweep_find(self, x) - - def lower_bound(self, x): - return _mscl.RfSweep_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.RfSweep_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_RfSweep - -# Register RfSweep in _mscl: -_mscl.RfSweep_swigregister(RfSweep) - -class Triggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Triggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Triggers___nonzero__(self) - - def __bool__(self): - return _mscl.Triggers___bool__(self) - - def __len__(self): - return _mscl.Triggers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.Triggers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.Triggers___delitem__(self, key) - - def has_key(self, key): - return _mscl.Triggers_has_key(self, key) - - def keys(self): - return _mscl.Triggers_keys(self) - - def values(self): - return _mscl.Triggers_values(self) - - def items(self): - return _mscl.Triggers_items(self) - - def __contains__(self, key): - return _mscl.Triggers___contains__(self, key) - - def key_iterator(self): - return _mscl.Triggers_key_iterator(self) - - def value_iterator(self): - return _mscl.Triggers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.Triggers___setitem__(self, *args) - - def asdict(self): - return _mscl.Triggers_asdict(self) - - def __init__(self, *args): - _mscl.Triggers_swiginit(self, _mscl.new_Triggers(*args)) - - def empty(self): - return _mscl.Triggers_empty(self) - - def size(self): - return _mscl.Triggers_size(self) - - def swap(self, v): - return _mscl.Triggers_swap(self, v) - - def begin(self): - return _mscl.Triggers_begin(self) - - def end(self): - return _mscl.Triggers_end(self) - - def rbegin(self): - return _mscl.Triggers_rbegin(self) - - def rend(self): - return _mscl.Triggers_rend(self) - - def clear(self): - return _mscl.Triggers_clear(self) - - def get_allocator(self): - return _mscl.Triggers_get_allocator(self) - - def count(self, x): - return _mscl.Triggers_count(self, x) - - def erase(self, *args): - return _mscl.Triggers_erase(self, *args) - - def find(self, x): - return _mscl.Triggers_find(self, x) - - def lower_bound(self, x): - return _mscl.Triggers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.Triggers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_Triggers - -# Register Triggers in _mscl: -_mscl.Triggers_swigregister(Triggers) - -class ChannelCalMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelCalMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelCalMap___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelCalMap___bool__(self) - - def __len__(self): - return _mscl.ChannelCalMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelCalMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelCalMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelCalMap_has_key(self, key) - - def keys(self): - return _mscl.ChannelCalMap_keys(self) - - def values(self): - return _mscl.ChannelCalMap_values(self) - - def items(self): - return _mscl.ChannelCalMap_items(self) - - def __contains__(self, key): - return _mscl.ChannelCalMap___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelCalMap_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelCalMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelCalMap___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelCalMap_asdict(self) - - def __init__(self, *args): - _mscl.ChannelCalMap_swiginit(self, _mscl.new_ChannelCalMap(*args)) - - def empty(self): - return _mscl.ChannelCalMap_empty(self) - - def size(self): - return _mscl.ChannelCalMap_size(self) - - def swap(self, v): - return _mscl.ChannelCalMap_swap(self, v) - - def begin(self): - return _mscl.ChannelCalMap_begin(self) - - def end(self): - return _mscl.ChannelCalMap_end(self) - - def rbegin(self): - return _mscl.ChannelCalMap_rbegin(self) - - def rend(self): - return _mscl.ChannelCalMap_rend(self) - - def clear(self): - return _mscl.ChannelCalMap_clear(self) - - def get_allocator(self): - return _mscl.ChannelCalMap_get_allocator(self) - - def count(self, x): - return _mscl.ChannelCalMap_count(self, x) - - def erase(self, *args): - return _mscl.ChannelCalMap_erase(self, *args) - - def find(self, x): - return _mscl.ChannelCalMap_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelCalMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelCalMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelCalMap - -# Register ChannelCalMap in _mscl: -_mscl.ChannelCalMap_swigregister(ChannelCalMap) - -class WirelessPollData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessPollData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessPollData___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessPollData___bool__(self) - - def __len__(self): - return _mscl.WirelessPollData___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.WirelessPollData___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.WirelessPollData___delitem__(self, key) - - def has_key(self, key): - return _mscl.WirelessPollData_has_key(self, key) - - def keys(self): - return _mscl.WirelessPollData_keys(self) - - def values(self): - return _mscl.WirelessPollData_values(self) - - def items(self): - return _mscl.WirelessPollData_items(self) - - def __contains__(self, key): - return _mscl.WirelessPollData___contains__(self, key) - - def key_iterator(self): - return _mscl.WirelessPollData_key_iterator(self) - - def value_iterator(self): - return _mscl.WirelessPollData_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.WirelessPollData___setitem__(self, *args) - - def asdict(self): - return _mscl.WirelessPollData_asdict(self) - - def __init__(self, *args): - _mscl.WirelessPollData_swiginit(self, _mscl.new_WirelessPollData(*args)) - - def empty(self): - return _mscl.WirelessPollData_empty(self) - - def size(self): - return _mscl.WirelessPollData_size(self) - - def swap(self, v): - return _mscl.WirelessPollData_swap(self, v) - - def begin(self): - return _mscl.WirelessPollData_begin(self) - - def end(self): - return _mscl.WirelessPollData_end(self) - - def rbegin(self): - return _mscl.WirelessPollData_rbegin(self) - - def rend(self): - return _mscl.WirelessPollData_rend(self) - - def clear(self): - return _mscl.WirelessPollData_clear(self) - - def get_allocator(self): - return _mscl.WirelessPollData_get_allocator(self) - - def count(self, x): - return _mscl.WirelessPollData_count(self, x) - - def erase(self, *args): - return _mscl.WirelessPollData_erase(self, *args) - - def find(self, x): - return _mscl.WirelessPollData_find(self, x) - - def lower_bound(self, x): - return _mscl.WirelessPollData_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.WirelessPollData_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_WirelessPollData - -# Register WirelessPollData in _mscl: -_mscl.WirelessPollData_swigregister(WirelessPollData) - -class ConnectionDebugDataVec(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConnectionDebugDataVec_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConnectionDebugDataVec___nonzero__(self) - - def __bool__(self): - return _mscl.ConnectionDebugDataVec___bool__(self) - - def __len__(self): - return _mscl.ConnectionDebugDataVec___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConnectionDebugDataVec___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConnectionDebugDataVec___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConnectionDebugDataVec___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConnectionDebugDataVec___setitem__(self, *args) - - def pop(self): - return _mscl.ConnectionDebugDataVec_pop(self) - - def append(self, x): - return _mscl.ConnectionDebugDataVec_append(self, x) - - def empty(self): - return _mscl.ConnectionDebugDataVec_empty(self) - - def size(self): - return _mscl.ConnectionDebugDataVec_size(self) - - def swap(self, v): - return _mscl.ConnectionDebugDataVec_swap(self, v) - - def begin(self): - return _mscl.ConnectionDebugDataVec_begin(self) - - def end(self): - return _mscl.ConnectionDebugDataVec_end(self) - - def rbegin(self): - return _mscl.ConnectionDebugDataVec_rbegin(self) - - def rend(self): - return _mscl.ConnectionDebugDataVec_rend(self) - - def clear(self): - return _mscl.ConnectionDebugDataVec_clear(self) - - def get_allocator(self): - return _mscl.ConnectionDebugDataVec_get_allocator(self) - - def pop_back(self): - return _mscl.ConnectionDebugDataVec_pop_back(self) - - def erase(self, *args): - return _mscl.ConnectionDebugDataVec_erase(self, *args) - - def __init__(self, *args): - _mscl.ConnectionDebugDataVec_swiginit(self, _mscl.new_ConnectionDebugDataVec(*args)) - - def push_back(self, x): - return _mscl.ConnectionDebugDataVec_push_back(self, x) - - def front(self): - return _mscl.ConnectionDebugDataVec_front(self) - - def back(self): - return _mscl.ConnectionDebugDataVec_back(self) - - def assign(self, n, x): - return _mscl.ConnectionDebugDataVec_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConnectionDebugDataVec_resize(self, *args) - - def insert(self, *args): - return _mscl.ConnectionDebugDataVec_insert(self, *args) - - def reserve(self, n): - return _mscl.ConnectionDebugDataVec_reserve(self, n) - - def capacity(self): - return _mscl.ConnectionDebugDataVec_capacity(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugDataVec - -# Register ConnectionDebugDataVec in _mscl: -_mscl.ConnectionDebugDataVec_swigregister(ConnectionDebugDataVec) - -class SatellitePRNs(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SatellitePRNs_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SatellitePRNs___nonzero__(self) - - def __bool__(self): - return _mscl.SatellitePRNs___bool__(self) - - def __len__(self): - return _mscl.SatellitePRNs___len__(self) - - def __getslice__(self, i, j): - return _mscl.SatellitePRNs___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SatellitePRNs___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SatellitePRNs___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SatellitePRNs___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SatellitePRNs___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SatellitePRNs___setitem__(self, *args) - - def pop(self): - return _mscl.SatellitePRNs_pop(self) - - def append(self, x): - return _mscl.SatellitePRNs_append(self, x) - - def empty(self): - return _mscl.SatellitePRNs_empty(self) - - def size(self): - return _mscl.SatellitePRNs_size(self) - - def swap(self, v): - return _mscl.SatellitePRNs_swap(self, v) - - def begin(self): - return _mscl.SatellitePRNs_begin(self) - - def end(self): - return _mscl.SatellitePRNs_end(self) - - def rbegin(self): - return _mscl.SatellitePRNs_rbegin(self) - - def rend(self): - return _mscl.SatellitePRNs_rend(self) - - def clear(self): - return _mscl.SatellitePRNs_clear(self) - - def get_allocator(self): - return _mscl.SatellitePRNs_get_allocator(self) - - def pop_back(self): - return _mscl.SatellitePRNs_pop_back(self) - - def erase(self, *args): - return _mscl.SatellitePRNs_erase(self, *args) - - def __init__(self, *args): - _mscl.SatellitePRNs_swiginit(self, _mscl.new_SatellitePRNs(*args)) - - def push_back(self, x): - return _mscl.SatellitePRNs_push_back(self, x) - - def front(self): - return _mscl.SatellitePRNs_front(self) - - def back(self): - return _mscl.SatellitePRNs_back(self) - - def assign(self, n, x): - return _mscl.SatellitePRNs_assign(self, n, x) - - def resize(self, *args): - return _mscl.SatellitePRNs_resize(self, *args) - - def insert(self, *args): - return _mscl.SatellitePRNs_insert(self, *args) - - def reserve(self, n): - return _mscl.SatellitePRNs_reserve(self, n) - - def capacity(self): - return _mscl.SatellitePRNs_capacity(self) - __swig_destroy__ = _mscl.delete_SatellitePRNs - -# Register SatellitePRNs in _mscl: -_mscl.SatellitePRNs_swigregister(SatellitePRNs) - -class Constellations(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Constellations_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Constellations___nonzero__(self) - - def __bool__(self): - return _mscl.Constellations___bool__(self) - - def __len__(self): - return _mscl.Constellations___len__(self) - - def __getslice__(self, i, j): - return _mscl.Constellations___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Constellations___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Constellations___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Constellations___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Constellations___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Constellations___setitem__(self, *args) - - def pop(self): - return _mscl.Constellations_pop(self) - - def append(self, x): - return _mscl.Constellations_append(self, x) - - def empty(self): - return _mscl.Constellations_empty(self) - - def size(self): - return _mscl.Constellations_size(self) - - def swap(self, v): - return _mscl.Constellations_swap(self, v) - - def begin(self): - return _mscl.Constellations_begin(self) - - def end(self): - return _mscl.Constellations_end(self) - - def rbegin(self): - return _mscl.Constellations_rbegin(self) - - def rend(self): - return _mscl.Constellations_rend(self) - - def clear(self): - return _mscl.Constellations_clear(self) - - def get_allocator(self): - return _mscl.Constellations_get_allocator(self) - - def pop_back(self): - return _mscl.Constellations_pop_back(self) - - def erase(self, *args): - return _mscl.Constellations_erase(self, *args) - - def __init__(self, *args): - _mscl.Constellations_swiginit(self, _mscl.new_Constellations(*args)) - - def push_back(self, x): - return _mscl.Constellations_push_back(self, x) - - def front(self): - return _mscl.Constellations_front(self) - - def back(self): - return _mscl.Constellations_back(self) - - def assign(self, n, x): - return _mscl.Constellations_assign(self, n, x) - - def resize(self, *args): - return _mscl.Constellations_resize(self, *args) - - def insert(self, *args): - return _mscl.Constellations_insert(self, *args) - - def reserve(self, n): - return _mscl.Constellations_reserve(self, n) - - def capacity(self): - return _mscl.Constellations_capacity(self) - __swig_destroy__ = _mscl.delete_Constellations - -# Register Constellations in _mscl: -_mscl.Constellations_swigregister(Constellations) - -class HeadingUpdateOptionsList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HeadingUpdateOptionsList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HeadingUpdateOptionsList___nonzero__(self) - - def __bool__(self): - return _mscl.HeadingUpdateOptionsList___bool__(self) - - def __len__(self): - return _mscl.HeadingUpdateOptionsList___len__(self) - - def __getslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HeadingUpdateOptionsList___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___setitem__(self, *args) - - def pop(self): - return _mscl.HeadingUpdateOptionsList_pop(self) - - def append(self, x): - return _mscl.HeadingUpdateOptionsList_append(self, x) - - def empty(self): - return _mscl.HeadingUpdateOptionsList_empty(self) - - def size(self): - return _mscl.HeadingUpdateOptionsList_size(self) - - def swap(self, v): - return _mscl.HeadingUpdateOptionsList_swap(self, v) - - def begin(self): - return _mscl.HeadingUpdateOptionsList_begin(self) - - def end(self): - return _mscl.HeadingUpdateOptionsList_end(self) - - def rbegin(self): - return _mscl.HeadingUpdateOptionsList_rbegin(self) - - def rend(self): - return _mscl.HeadingUpdateOptionsList_rend(self) - - def clear(self): - return _mscl.HeadingUpdateOptionsList_clear(self) - - def get_allocator(self): - return _mscl.HeadingUpdateOptionsList_get_allocator(self) - - def pop_back(self): - return _mscl.HeadingUpdateOptionsList_pop_back(self) - - def erase(self, *args): - return _mscl.HeadingUpdateOptionsList_erase(self, *args) - - def __init__(self, *args): - _mscl.HeadingUpdateOptionsList_swiginit(self, _mscl.new_HeadingUpdateOptionsList(*args)) - - def push_back(self, x): - return _mscl.HeadingUpdateOptionsList_push_back(self, x) - - def front(self): - return _mscl.HeadingUpdateOptionsList_front(self) - - def back(self): - return _mscl.HeadingUpdateOptionsList_back(self) - - def assign(self, n, x): - return _mscl.HeadingUpdateOptionsList_assign(self, n, x) - - def resize(self, *args): - return _mscl.HeadingUpdateOptionsList_resize(self, *args) - - def insert(self, *args): - return _mscl.HeadingUpdateOptionsList_insert(self, *args) - - def reserve(self, n): - return _mscl.HeadingUpdateOptionsList_reserve(self, n) - - def capacity(self): - return _mscl.HeadingUpdateOptionsList_capacity(self) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptionsList - -# Register HeadingUpdateOptionsList in _mscl: -_mscl.HeadingUpdateOptionsList_swigregister(HeadingUpdateOptionsList) - -class AdaptiveMeasurementModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveMeasurementModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveMeasurementModes___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveMeasurementModes___bool__(self) - - def __len__(self): - return _mscl.AdaptiveMeasurementModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveMeasurementModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveMeasurementModes_pop(self) - - def append(self, x): - return _mscl.AdaptiveMeasurementModes_append(self, x) - - def empty(self): - return _mscl.AdaptiveMeasurementModes_empty(self) - - def size(self): - return _mscl.AdaptiveMeasurementModes_size(self) - - def swap(self, v): - return _mscl.AdaptiveMeasurementModes_swap(self, v) - - def begin(self): - return _mscl.AdaptiveMeasurementModes_begin(self) - - def end(self): - return _mscl.AdaptiveMeasurementModes_end(self) - - def rbegin(self): - return _mscl.AdaptiveMeasurementModes_rbegin(self) - - def rend(self): - return _mscl.AdaptiveMeasurementModes_rend(self) - - def clear(self): - return _mscl.AdaptiveMeasurementModes_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveMeasurementModes_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveMeasurementModes_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveMeasurementModes_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveMeasurementModes_swiginit(self, _mscl.new_AdaptiveMeasurementModes(*args)) - - def push_back(self, x): - return _mscl.AdaptiveMeasurementModes_push_back(self, x) - - def front(self): - return _mscl.AdaptiveMeasurementModes_front(self) - - def back(self): - return _mscl.AdaptiveMeasurementModes_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveMeasurementModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveMeasurementModes_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveMeasurementModes_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveMeasurementModes_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveMeasurementModes_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementModes - -# Register AdaptiveMeasurementModes in _mscl: -_mscl.AdaptiveMeasurementModes_swigregister(AdaptiveMeasurementModes) - -class GeometricVectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeometricVectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeometricVectors___nonzero__(self) - - def __bool__(self): - return _mscl.GeometricVectors___bool__(self) - - def __len__(self): - return _mscl.GeometricVectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeometricVectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeometricVectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeometricVectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeometricVectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeometricVectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeometricVectors___setitem__(self, *args) - - def pop(self): - return _mscl.GeometricVectors_pop(self) - - def append(self, x): - return _mscl.GeometricVectors_append(self, x) - - def empty(self): - return _mscl.GeometricVectors_empty(self) - - def size(self): - return _mscl.GeometricVectors_size(self) - - def swap(self, v): - return _mscl.GeometricVectors_swap(self, v) - - def begin(self): - return _mscl.GeometricVectors_begin(self) - - def end(self): - return _mscl.GeometricVectors_end(self) - - def rbegin(self): - return _mscl.GeometricVectors_rbegin(self) - - def rend(self): - return _mscl.GeometricVectors_rend(self) - - def clear(self): - return _mscl.GeometricVectors_clear(self) - - def get_allocator(self): - return _mscl.GeometricVectors_get_allocator(self) - - def pop_back(self): - return _mscl.GeometricVectors_pop_back(self) - - def erase(self, *args): - return _mscl.GeometricVectors_erase(self, *args) - - def __init__(self, *args): - _mscl.GeometricVectors_swiginit(self, _mscl.new_GeometricVectors(*args)) - - def push_back(self, x): - return _mscl.GeometricVectors_push_back(self, x) - - def front(self): - return _mscl.GeometricVectors_front(self) - - def back(self): - return _mscl.GeometricVectors_back(self) - - def assign(self, n, x): - return _mscl.GeometricVectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeometricVectors_resize(self, *args) - - def insert(self, *args): - return _mscl.GeometricVectors_insert(self, *args) - - def reserve(self, n): - return _mscl.GeometricVectors_reserve(self, n) - - def capacity(self): - return _mscl.GeometricVectors_capacity(self) - __swig_destroy__ = _mscl.delete_GeometricVectors - -# Register GeometricVectors in _mscl: -_mscl.GeometricVectors_swigregister(GeometricVectors) - -class Matrix_3x3s(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Matrix_3x3s_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Matrix_3x3s___nonzero__(self) - - def __bool__(self): - return _mscl.Matrix_3x3s___bool__(self) - - def __len__(self): - return _mscl.Matrix_3x3s___len__(self) - - def __getslice__(self, i, j): - return _mscl.Matrix_3x3s___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Matrix_3x3s___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Matrix_3x3s___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Matrix_3x3s___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Matrix_3x3s___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Matrix_3x3s___setitem__(self, *args) - - def pop(self): - return _mscl.Matrix_3x3s_pop(self) - - def append(self, x): - return _mscl.Matrix_3x3s_append(self, x) - - def empty(self): - return _mscl.Matrix_3x3s_empty(self) - - def size(self): - return _mscl.Matrix_3x3s_size(self) - - def swap(self, v): - return _mscl.Matrix_3x3s_swap(self, v) - - def begin(self): - return _mscl.Matrix_3x3s_begin(self) - - def end(self): - return _mscl.Matrix_3x3s_end(self) - - def rbegin(self): - return _mscl.Matrix_3x3s_rbegin(self) - - def rend(self): - return _mscl.Matrix_3x3s_rend(self) - - def clear(self): - return _mscl.Matrix_3x3s_clear(self) - - def get_allocator(self): - return _mscl.Matrix_3x3s_get_allocator(self) - - def pop_back(self): - return _mscl.Matrix_3x3s_pop_back(self) - - def erase(self, *args): - return _mscl.Matrix_3x3s_erase(self, *args) - - def __init__(self, *args): - _mscl.Matrix_3x3s_swiginit(self, _mscl.new_Matrix_3x3s(*args)) - - def push_back(self, x): - return _mscl.Matrix_3x3s_push_back(self, x) - - def front(self): - return _mscl.Matrix_3x3s_front(self) - - def back(self): - return _mscl.Matrix_3x3s_back(self) - - def assign(self, n, x): - return _mscl.Matrix_3x3s_assign(self, n, x) - - def resize(self, *args): - return _mscl.Matrix_3x3s_resize(self, *args) - - def insert(self, *args): - return _mscl.Matrix_3x3s_insert(self, *args) - - def reserve(self, n): - return _mscl.Matrix_3x3s_reserve(self, n) - - def capacity(self): - return _mscl.Matrix_3x3s_capacity(self) - __swig_destroy__ = _mscl.delete_Matrix_3x3s - -# Register Matrix_3x3s in _mscl: -_mscl.Matrix_3x3s_swigregister(Matrix_3x3s) - -class StatusSelectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StatusSelectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StatusSelectors___nonzero__(self) - - def __bool__(self): - return _mscl.StatusSelectors___bool__(self) - - def __len__(self): - return _mscl.StatusSelectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.StatusSelectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StatusSelectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StatusSelectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StatusSelectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StatusSelectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StatusSelectors___setitem__(self, *args) - - def pop(self): - return _mscl.StatusSelectors_pop(self) - - def append(self, x): - return _mscl.StatusSelectors_append(self, x) - - def empty(self): - return _mscl.StatusSelectors_empty(self) - - def size(self): - return _mscl.StatusSelectors_size(self) - - def swap(self, v): - return _mscl.StatusSelectors_swap(self, v) - - def begin(self): - return _mscl.StatusSelectors_begin(self) - - def end(self): - return _mscl.StatusSelectors_end(self) - - def rbegin(self): - return _mscl.StatusSelectors_rbegin(self) - - def rend(self): - return _mscl.StatusSelectors_rend(self) - - def clear(self): - return _mscl.StatusSelectors_clear(self) - - def get_allocator(self): - return _mscl.StatusSelectors_get_allocator(self) - - def pop_back(self): - return _mscl.StatusSelectors_pop_back(self) - - def erase(self, *args): - return _mscl.StatusSelectors_erase(self, *args) - - def __init__(self, *args): - _mscl.StatusSelectors_swiginit(self, _mscl.new_StatusSelectors(*args)) - - def push_back(self, x): - return _mscl.StatusSelectors_push_back(self, x) - - def front(self): - return _mscl.StatusSelectors_front(self) - - def back(self): - return _mscl.StatusSelectors_back(self) - - def assign(self, n, x): - return _mscl.StatusSelectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.StatusSelectors_resize(self, *args) - - def insert(self, *args): - return _mscl.StatusSelectors_insert(self, *args) - - def reserve(self, n): - return _mscl.StatusSelectors_reserve(self, n) - - def capacity(self): - return _mscl.StatusSelectors_capacity(self) - __swig_destroy__ = _mscl.delete_StatusSelectors - -# Register StatusSelectors in _mscl: -_mscl.StatusSelectors_swigregister(StatusSelectors) - -class VehicleModeTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.VehicleModeTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.VehicleModeTypes___nonzero__(self) - - def __bool__(self): - return _mscl.VehicleModeTypes___bool__(self) - - def __len__(self): - return _mscl.VehicleModeTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.VehicleModeTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.VehicleModeTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.VehicleModeTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.VehicleModeTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.VehicleModeTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.VehicleModeTypes___setitem__(self, *args) - - def pop(self): - return _mscl.VehicleModeTypes_pop(self) - - def append(self, x): - return _mscl.VehicleModeTypes_append(self, x) - - def empty(self): - return _mscl.VehicleModeTypes_empty(self) - - def size(self): - return _mscl.VehicleModeTypes_size(self) - - def swap(self, v): - return _mscl.VehicleModeTypes_swap(self, v) - - def begin(self): - return _mscl.VehicleModeTypes_begin(self) - - def end(self): - return _mscl.VehicleModeTypes_end(self) - - def rbegin(self): - return _mscl.VehicleModeTypes_rbegin(self) - - def rend(self): - return _mscl.VehicleModeTypes_rend(self) - - def clear(self): - return _mscl.VehicleModeTypes_clear(self) - - def get_allocator(self): - return _mscl.VehicleModeTypes_get_allocator(self) - - def pop_back(self): - return _mscl.VehicleModeTypes_pop_back(self) - - def erase(self, *args): - return _mscl.VehicleModeTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.VehicleModeTypes_swiginit(self, _mscl.new_VehicleModeTypes(*args)) - - def push_back(self, x): - return _mscl.VehicleModeTypes_push_back(self, x) - - def front(self): - return _mscl.VehicleModeTypes_front(self) - - def back(self): - return _mscl.VehicleModeTypes_back(self) - - def assign(self, n, x): - return _mscl.VehicleModeTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.VehicleModeTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.VehicleModeTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.VehicleModeTypes_reserve(self, n) - - def capacity(self): - return _mscl.VehicleModeTypes_capacity(self) - __swig_destroy__ = _mscl.delete_VehicleModeTypes - -# Register VehicleModeTypes in _mscl: -_mscl.VehicleModeTypes_swigregister(VehicleModeTypes) - -class AdaptiveFilterLevels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveFilterLevels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveFilterLevels___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveFilterLevels___bool__(self) - - def __len__(self): - return _mscl.AdaptiveFilterLevels___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveFilterLevels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveFilterLevels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveFilterLevels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveFilterLevels___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveFilterLevels_pop(self) - - def append(self, x): - return _mscl.AdaptiveFilterLevels_append(self, x) - - def empty(self): - return _mscl.AdaptiveFilterLevels_empty(self) - - def size(self): - return _mscl.AdaptiveFilterLevels_size(self) - - def swap(self, v): - return _mscl.AdaptiveFilterLevels_swap(self, v) - - def begin(self): - return _mscl.AdaptiveFilterLevels_begin(self) - - def end(self): - return _mscl.AdaptiveFilterLevels_end(self) - - def rbegin(self): - return _mscl.AdaptiveFilterLevels_rbegin(self) - - def rend(self): - return _mscl.AdaptiveFilterLevels_rend(self) - - def clear(self): - return _mscl.AdaptiveFilterLevels_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveFilterLevels_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveFilterLevels_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveFilterLevels_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveFilterLevels_swiginit(self, _mscl.new_AdaptiveFilterLevels(*args)) - - def push_back(self, x): - return _mscl.AdaptiveFilterLevels_push_back(self, x) - - def front(self): - return _mscl.AdaptiveFilterLevels_front(self) - - def back(self): - return _mscl.AdaptiveFilterLevels_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveFilterLevels_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveFilterLevels_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveFilterLevels_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveFilterLevels_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveFilterLevels_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveFilterLevels - -# Register AdaptiveFilterLevels in _mscl: -_mscl.AdaptiveFilterLevels_swigregister(AdaptiveFilterLevels) - -class LowPassFilterConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LowPassFilterConfig_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LowPassFilterConfig___nonzero__(self) - - def __bool__(self): - return _mscl.LowPassFilterConfig___bool__(self) - - def __len__(self): - return _mscl.LowPassFilterConfig___len__(self) - - def __getslice__(self, i, j): - return _mscl.LowPassFilterConfig___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LowPassFilterConfig___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LowPassFilterConfig___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LowPassFilterConfig___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LowPassFilterConfig___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LowPassFilterConfig___setitem__(self, *args) - - def pop(self): - return _mscl.LowPassFilterConfig_pop(self) - - def append(self, x): - return _mscl.LowPassFilterConfig_append(self, x) - - def empty(self): - return _mscl.LowPassFilterConfig_empty(self) - - def size(self): - return _mscl.LowPassFilterConfig_size(self) - - def swap(self, v): - return _mscl.LowPassFilterConfig_swap(self, v) - - def begin(self): - return _mscl.LowPassFilterConfig_begin(self) - - def end(self): - return _mscl.LowPassFilterConfig_end(self) - - def rbegin(self): - return _mscl.LowPassFilterConfig_rbegin(self) - - def rend(self): - return _mscl.LowPassFilterConfig_rend(self) - - def clear(self): - return _mscl.LowPassFilterConfig_clear(self) - - def get_allocator(self): - return _mscl.LowPassFilterConfig_get_allocator(self) - - def pop_back(self): - return _mscl.LowPassFilterConfig_pop_back(self) - - def erase(self, *args): - return _mscl.LowPassFilterConfig_erase(self, *args) - - def __init__(self, *args): - _mscl.LowPassFilterConfig_swiginit(self, _mscl.new_LowPassFilterConfig(*args)) - - def push_back(self, x): - return _mscl.LowPassFilterConfig_push_back(self, x) - - def front(self): - return _mscl.LowPassFilterConfig_front(self) - - def back(self): - return _mscl.LowPassFilterConfig_back(self) - - def assign(self, n, x): - return _mscl.LowPassFilterConfig_assign(self, n, x) - - def resize(self, *args): - return _mscl.LowPassFilterConfig_resize(self, *args) - - def insert(self, *args): - return _mscl.LowPassFilterConfig_insert(self, *args) - - def reserve(self, n): - return _mscl.LowPassFilterConfig_reserve(self, n) - - def capacity(self): - return _mscl.LowPassFilterConfig_capacity(self) - __swig_destroy__ = _mscl.delete_LowPassFilterConfig - -# Register LowPassFilterConfig in _mscl: -_mscl.LowPassFilterConfig_swigregister(LowPassFilterConfig) - -class AidingMeasurementSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AidingMeasurementSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AidingMeasurementSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.AidingMeasurementSourceOptions___bool__(self) - - def __len__(self): - return _mscl.AidingMeasurementSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.AidingMeasurementSourceOptions_pop(self) - - def append(self, x): - return _mscl.AidingMeasurementSourceOptions_append(self, x) - - def empty(self): - return _mscl.AidingMeasurementSourceOptions_empty(self) - - def size(self): - return _mscl.AidingMeasurementSourceOptions_size(self) - - def swap(self, v): - return _mscl.AidingMeasurementSourceOptions_swap(self, v) - - def begin(self): - return _mscl.AidingMeasurementSourceOptions_begin(self) - - def end(self): - return _mscl.AidingMeasurementSourceOptions_end(self) - - def rbegin(self): - return _mscl.AidingMeasurementSourceOptions_rbegin(self) - - def rend(self): - return _mscl.AidingMeasurementSourceOptions_rend(self) - - def clear(self): - return _mscl.AidingMeasurementSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.AidingMeasurementSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.AidingMeasurementSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.AidingMeasurementSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.AidingMeasurementSourceOptions_swiginit(self, _mscl.new_AidingMeasurementSourceOptions(*args)) - - def push_back(self, x): - return _mscl.AidingMeasurementSourceOptions_push_back(self, x) - - def front(self): - return _mscl.AidingMeasurementSourceOptions_front(self) - - def back(self): - return _mscl.AidingMeasurementSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.AidingMeasurementSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.AidingMeasurementSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.AidingMeasurementSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.AidingMeasurementSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.AidingMeasurementSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_AidingMeasurementSourceOptions - -# Register AidingMeasurementSourceOptions in _mscl: -_mscl.AidingMeasurementSourceOptions_swigregister(AidingMeasurementSourceOptions) - -class PpsSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.PpsSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.PpsSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.PpsSourceOptions___bool__(self) - - def __len__(self): - return _mscl.PpsSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.PpsSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.PpsSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.PpsSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.PpsSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.PpsSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.PpsSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.PpsSourceOptions_pop(self) - - def append(self, x): - return _mscl.PpsSourceOptions_append(self, x) - - def empty(self): - return _mscl.PpsSourceOptions_empty(self) - - def size(self): - return _mscl.PpsSourceOptions_size(self) - - def swap(self, v): - return _mscl.PpsSourceOptions_swap(self, v) - - def begin(self): - return _mscl.PpsSourceOptions_begin(self) - - def end(self): - return _mscl.PpsSourceOptions_end(self) - - def rbegin(self): - return _mscl.PpsSourceOptions_rbegin(self) - - def rend(self): - return _mscl.PpsSourceOptions_rend(self) - - def clear(self): - return _mscl.PpsSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.PpsSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.PpsSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.PpsSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.PpsSourceOptions_swiginit(self, _mscl.new_PpsSourceOptions(*args)) - - def push_back(self, x): - return _mscl.PpsSourceOptions_push_back(self, x) - - def front(self): - return _mscl.PpsSourceOptions_front(self) - - def back(self): - return _mscl.PpsSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.PpsSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.PpsSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.PpsSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.PpsSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.PpsSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_PpsSourceOptions - -# Register PpsSourceOptions in _mscl: -_mscl.PpsSourceOptions_swigregister(PpsSourceOptions) - -class GeographicSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeographicSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeographicSources___nonzero__(self) - - def __bool__(self): - return _mscl.GeographicSources___bool__(self) - - def __len__(self): - return _mscl.GeographicSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeographicSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeographicSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeographicSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeographicSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeographicSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeographicSources___setitem__(self, *args) - - def pop(self): - return _mscl.GeographicSources_pop(self) - - def append(self, x): - return _mscl.GeographicSources_append(self, x) - - def empty(self): - return _mscl.GeographicSources_empty(self) - - def size(self): - return _mscl.GeographicSources_size(self) - - def swap(self, v): - return _mscl.GeographicSources_swap(self, v) - - def begin(self): - return _mscl.GeographicSources_begin(self) - - def end(self): - return _mscl.GeographicSources_end(self) - - def rbegin(self): - return _mscl.GeographicSources_rbegin(self) - - def rend(self): - return _mscl.GeographicSources_rend(self) - - def clear(self): - return _mscl.GeographicSources_clear(self) - - def get_allocator(self): - return _mscl.GeographicSources_get_allocator(self) - - def pop_back(self): - return _mscl.GeographicSources_pop_back(self) - - def erase(self, *args): - return _mscl.GeographicSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GeographicSources_swiginit(self, _mscl.new_GeographicSources(*args)) - - def push_back(self, x): - return _mscl.GeographicSources_push_back(self, x) - - def front(self): - return _mscl.GeographicSources_front(self) - - def back(self): - return _mscl.GeographicSources_back(self) - - def assign(self, n, x): - return _mscl.GeographicSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeographicSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GeographicSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GeographicSources_reserve(self, n) - - def capacity(self): - return _mscl.GeographicSources_capacity(self) - __swig_destroy__ = _mscl.delete_GeographicSources - -# Register GeographicSources in _mscl: -_mscl.GeographicSources_swigregister(GeographicSources) - -class GnssSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSources___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSources___bool__(self) - - def __len__(self): - return _mscl.GnssSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssSources___setitem__(self, *args) - - def pop(self): - return _mscl.GnssSources_pop(self) - - def append(self, x): - return _mscl.GnssSources_append(self, x) - - def empty(self): - return _mscl.GnssSources_empty(self) - - def size(self): - return _mscl.GnssSources_size(self) - - def swap(self, v): - return _mscl.GnssSources_swap(self, v) - - def begin(self): - return _mscl.GnssSources_begin(self) - - def end(self): - return _mscl.GnssSources_end(self) - - def rbegin(self): - return _mscl.GnssSources_rbegin(self) - - def rend(self): - return _mscl.GnssSources_rend(self) - - def clear(self): - return _mscl.GnssSources_clear(self) - - def get_allocator(self): - return _mscl.GnssSources_get_allocator(self) - - def pop_back(self): - return _mscl.GnssSources_pop_back(self) - - def erase(self, *args): - return _mscl.GnssSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssSources_swiginit(self, _mscl.new_GnssSources(*args)) - - def push_back(self, x): - return _mscl.GnssSources_push_back(self, x) - - def front(self): - return _mscl.GnssSources_front(self) - - def back(self): - return _mscl.GnssSources_back(self) - - def assign(self, n, x): - return _mscl.GnssSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssSources_reserve(self, n) - - def capacity(self): - return _mscl.GnssSources_capacity(self) - __swig_destroy__ = _mscl.delete_GnssSources - -# Register GnssSources in _mscl: -_mscl.GnssSources_swigregister(GnssSources) - -class GnssSignalConfigOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSignalConfigOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSignalConfigOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSignalConfigOptions___bool__(self) - - def __len__(self): - return _mscl.GnssSignalConfigOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GnssSignalConfigOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GnssSignalConfigOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GnssSignalConfigOptions_has_key(self, key) - - def keys(self): - return _mscl.GnssSignalConfigOptions_keys(self) - - def values(self): - return _mscl.GnssSignalConfigOptions_values(self) - - def items(self): - return _mscl.GnssSignalConfigOptions_items(self) - - def __contains__(self, key): - return _mscl.GnssSignalConfigOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GnssSignalConfigOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GnssSignalConfigOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GnssSignalConfigOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GnssSignalConfigOptions_asdict(self) - - def __init__(self, *args): - _mscl.GnssSignalConfigOptions_swiginit(self, _mscl.new_GnssSignalConfigOptions(*args)) - - def empty(self): - return _mscl.GnssSignalConfigOptions_empty(self) - - def size(self): - return _mscl.GnssSignalConfigOptions_size(self) - - def swap(self, v): - return _mscl.GnssSignalConfigOptions_swap(self, v) - - def begin(self): - return _mscl.GnssSignalConfigOptions_begin(self) - - def end(self): - return _mscl.GnssSignalConfigOptions_end(self) - - def rbegin(self): - return _mscl.GnssSignalConfigOptions_rbegin(self) - - def rend(self): - return _mscl.GnssSignalConfigOptions_rend(self) - - def clear(self): - return _mscl.GnssSignalConfigOptions_clear(self) - - def get_allocator(self): - return _mscl.GnssSignalConfigOptions_get_allocator(self) - - def count(self, x): - return _mscl.GnssSignalConfigOptions_count(self, x) - - def erase(self, *args): - return _mscl.GnssSignalConfigOptions_erase(self, *args) - - def find(self, x): - return _mscl.GnssSignalConfigOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GnssSignalConfigOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GnssSignalConfigOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GnssSignalConfigOptions - -# Register GnssSignalConfigOptions in _mscl: -_mscl.GnssSignalConfigOptions_swigregister(GnssSignalConfigOptions) - -class NmeaMessageFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NmeaMessageFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NmeaMessageFormats___nonzero__(self) - - def __bool__(self): - return _mscl.NmeaMessageFormats___bool__(self) - - def __len__(self): - return _mscl.NmeaMessageFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.NmeaMessageFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NmeaMessageFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NmeaMessageFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NmeaMessageFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NmeaMessageFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NmeaMessageFormats___setitem__(self, *args) - - def pop(self): - return _mscl.NmeaMessageFormats_pop(self) - - def append(self, x): - return _mscl.NmeaMessageFormats_append(self, x) - - def empty(self): - return _mscl.NmeaMessageFormats_empty(self) - - def size(self): - return _mscl.NmeaMessageFormats_size(self) - - def swap(self, v): - return _mscl.NmeaMessageFormats_swap(self, v) - - def begin(self): - return _mscl.NmeaMessageFormats_begin(self) - - def end(self): - return _mscl.NmeaMessageFormats_end(self) - - def rbegin(self): - return _mscl.NmeaMessageFormats_rbegin(self) - - def rend(self): - return _mscl.NmeaMessageFormats_rend(self) - - def clear(self): - return _mscl.NmeaMessageFormats_clear(self) - - def get_allocator(self): - return _mscl.NmeaMessageFormats_get_allocator(self) - - def pop_back(self): - return _mscl.NmeaMessageFormats_pop_back(self) - - def erase(self, *args): - return _mscl.NmeaMessageFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.NmeaMessageFormats_swiginit(self, _mscl.new_NmeaMessageFormats(*args)) - - def push_back(self, x): - return _mscl.NmeaMessageFormats_push_back(self, x) - - def front(self): - return _mscl.NmeaMessageFormats_front(self) - - def back(self): - return _mscl.NmeaMessageFormats_back(self) - - def assign(self, n, x): - return _mscl.NmeaMessageFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.NmeaMessageFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.NmeaMessageFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.NmeaMessageFormats_reserve(self, n) - - def capacity(self): - return _mscl.NmeaMessageFormats_capacity(self) - __swig_destroy__ = _mscl.delete_NmeaMessageFormats - -# Register NmeaMessageFormats in _mscl: -_mscl.NmeaMessageFormats_swigregister(NmeaMessageFormats) - -class GpioPinModeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinModeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinModeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinModeOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinModeOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.GpioPinModeOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GpioPinModeOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GpioPinModeOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GpioPinModeOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GpioPinModeOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GpioPinModeOptions___setitem__(self, *args) - - def pop(self): - return _mscl.GpioPinModeOptions_pop(self) - - def append(self, x): - return _mscl.GpioPinModeOptions_append(self, x) - - def empty(self): - return _mscl.GpioPinModeOptions_empty(self) - - def size(self): - return _mscl.GpioPinModeOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinModeOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinModeOptions_begin(self) - - def end(self): - return _mscl.GpioPinModeOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinModeOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinModeOptions_rend(self) - - def clear(self): - return _mscl.GpioPinModeOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinModeOptions_get_allocator(self) - - def pop_back(self): - return _mscl.GpioPinModeOptions_pop_back(self) - - def erase(self, *args): - return _mscl.GpioPinModeOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.GpioPinModeOptions_swiginit(self, _mscl.new_GpioPinModeOptions(*args)) - - def push_back(self, x): - return _mscl.GpioPinModeOptions_push_back(self, x) - - def front(self): - return _mscl.GpioPinModeOptions_front(self) - - def back(self): - return _mscl.GpioPinModeOptions_back(self) - - def assign(self, n, x): - return _mscl.GpioPinModeOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.GpioPinModeOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.GpioPinModeOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.GpioPinModeOptions_reserve(self, n) - - def capacity(self): - return _mscl.GpioPinModeOptions_capacity(self) - __swig_destroy__ = _mscl.delete_GpioPinModeOptions - -# Register GpioPinModeOptions in _mscl: -_mscl.GpioPinModeOptions_swigregister(GpioPinModeOptions) - -class GpioBehaviorModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioBehaviorModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioBehaviorModes___nonzero__(self) - - def __bool__(self): - return _mscl.GpioBehaviorModes___bool__(self) - - def __len__(self): - return _mscl.GpioBehaviorModes___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioBehaviorModes___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioBehaviorModes___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioBehaviorModes_has_key(self, key) - - def keys(self): - return _mscl.GpioBehaviorModes_keys(self) - - def values(self): - return _mscl.GpioBehaviorModes_values(self) - - def items(self): - return _mscl.GpioBehaviorModes_items(self) - - def __contains__(self, key): - return _mscl.GpioBehaviorModes___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioBehaviorModes_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioBehaviorModes_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioBehaviorModes___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioBehaviorModes_asdict(self) - - def __init__(self, *args): - _mscl.GpioBehaviorModes_swiginit(self, _mscl.new_GpioBehaviorModes(*args)) - - def empty(self): - return _mscl.GpioBehaviorModes_empty(self) - - def size(self): - return _mscl.GpioBehaviorModes_size(self) - - def swap(self, v): - return _mscl.GpioBehaviorModes_swap(self, v) - - def begin(self): - return _mscl.GpioBehaviorModes_begin(self) - - def end(self): - return _mscl.GpioBehaviorModes_end(self) - - def rbegin(self): - return _mscl.GpioBehaviorModes_rbegin(self) - - def rend(self): - return _mscl.GpioBehaviorModes_rend(self) - - def clear(self): - return _mscl.GpioBehaviorModes_clear(self) - - def get_allocator(self): - return _mscl.GpioBehaviorModes_get_allocator(self) - - def count(self, x): - return _mscl.GpioBehaviorModes_count(self, x) - - def erase(self, *args): - return _mscl.GpioBehaviorModes_erase(self, *args) - - def find(self, x): - return _mscl.GpioBehaviorModes_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioBehaviorModes_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioBehaviorModes_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioBehaviorModes - -# Register GpioBehaviorModes in _mscl: -_mscl.GpioBehaviorModes_swigregister(GpioBehaviorModes) - -class GpioFeatureBehaviors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioFeatureBehaviors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioFeatureBehaviors___nonzero__(self) - - def __bool__(self): - return _mscl.GpioFeatureBehaviors___bool__(self) - - def __len__(self): - return _mscl.GpioFeatureBehaviors___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioFeatureBehaviors___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioFeatureBehaviors___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioFeatureBehaviors_has_key(self, key) - - def keys(self): - return _mscl.GpioFeatureBehaviors_keys(self) - - def values(self): - return _mscl.GpioFeatureBehaviors_values(self) - - def items(self): - return _mscl.GpioFeatureBehaviors_items(self) - - def __contains__(self, key): - return _mscl.GpioFeatureBehaviors___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioFeatureBehaviors_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioFeatureBehaviors_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioFeatureBehaviors___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioFeatureBehaviors_asdict(self) - - def __init__(self, *args): - _mscl.GpioFeatureBehaviors_swiginit(self, _mscl.new_GpioFeatureBehaviors(*args)) - - def empty(self): - return _mscl.GpioFeatureBehaviors_empty(self) - - def size(self): - return _mscl.GpioFeatureBehaviors_size(self) - - def swap(self, v): - return _mscl.GpioFeatureBehaviors_swap(self, v) - - def begin(self): - return _mscl.GpioFeatureBehaviors_begin(self) - - def end(self): - return _mscl.GpioFeatureBehaviors_end(self) - - def rbegin(self): - return _mscl.GpioFeatureBehaviors_rbegin(self) - - def rend(self): - return _mscl.GpioFeatureBehaviors_rend(self) - - def clear(self): - return _mscl.GpioFeatureBehaviors_clear(self) - - def get_allocator(self): - return _mscl.GpioFeatureBehaviors_get_allocator(self) - - def count(self, x): - return _mscl.GpioFeatureBehaviors_count(self, x) - - def erase(self, *args): - return _mscl.GpioFeatureBehaviors_erase(self, *args) - - def find(self, x): - return _mscl.GpioFeatureBehaviors_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioFeatureBehaviors_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioFeatureBehaviors_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioFeatureBehaviors - -# Register GpioFeatureBehaviors in _mscl: -_mscl.GpioFeatureBehaviors_swigregister(GpioFeatureBehaviors) - -class GpioPinOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioPinOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioPinOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioPinOptions_has_key(self, key) - - def keys(self): - return _mscl.GpioPinOptions_keys(self) - - def values(self): - return _mscl.GpioPinOptions_values(self) - - def items(self): - return _mscl.GpioPinOptions_items(self) - - def __contains__(self, key): - return _mscl.GpioPinOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioPinOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioPinOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioPinOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioPinOptions_asdict(self) - - def __init__(self, *args): - _mscl.GpioPinOptions_swiginit(self, _mscl.new_GpioPinOptions(*args)) - - def empty(self): - return _mscl.GpioPinOptions_empty(self) - - def size(self): - return _mscl.GpioPinOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinOptions_begin(self) - - def end(self): - return _mscl.GpioPinOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinOptions_rend(self) - - def clear(self): - return _mscl.GpioPinOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinOptions_get_allocator(self) - - def count(self, x): - return _mscl.GpioPinOptions_count(self, x) - - def erase(self, *args): - return _mscl.GpioPinOptions_erase(self, *args) - - def find(self, x): - return _mscl.GpioPinOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioPinOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioPinOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioPinOptions - -# Register GpioPinOptions in _mscl: -_mscl.GpioPinOptions_swigregister(GpioPinOptions) - -class EventInputTriggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventInputTriggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventInputTriggers___nonzero__(self) - - def __bool__(self): - return _mscl.EventInputTriggers___bool__(self) - - def __len__(self): - return _mscl.EventInputTriggers___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventInputTriggers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventInputTriggers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventInputTriggers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventInputTriggers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventInputTriggers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventInputTriggers___setitem__(self, *args) - - def __init__(self, *args): - _mscl.EventInputTriggers_swiginit(self, _mscl.new_EventInputTriggers(*args)) - - def empty(self): - return _mscl.EventInputTriggers_empty(self) - - def size(self): - return _mscl.EventInputTriggers_size(self) - - def swap(self, v): - return _mscl.EventInputTriggers_swap(self, v) - - def begin(self): - return _mscl.EventInputTriggers_begin(self) - - def end(self): - return _mscl.EventInputTriggers_end(self) - - def rbegin(self): - return _mscl.EventInputTriggers_rbegin(self) - - def rend(self): - return _mscl.EventInputTriggers_rend(self) - - def front(self): - return _mscl.EventInputTriggers_front(self) - - def back(self): - return _mscl.EventInputTriggers_back(self) - - def fill(self, u): - return _mscl.EventInputTriggers_fill(self, u) - __swig_destroy__ = _mscl.delete_EventInputTriggers - -# Register EventInputTriggers in _mscl: -_mscl.EventInputTriggers_swigregister(EventInputTriggers) - -class EventTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTypes___nonzero__(self) - - def __bool__(self): - return _mscl.EventTypes___bool__(self) - - def __len__(self): - return _mscl.EventTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTypes___setitem__(self, *args) - - def pop(self): - return _mscl.EventTypes_pop(self) - - def append(self, x): - return _mscl.EventTypes_append(self, x) - - def empty(self): - return _mscl.EventTypes_empty(self) - - def size(self): - return _mscl.EventTypes_size(self) - - def swap(self, v): - return _mscl.EventTypes_swap(self, v) - - def begin(self): - return _mscl.EventTypes_begin(self) - - def end(self): - return _mscl.EventTypes_end(self) - - def rbegin(self): - return _mscl.EventTypes_rbegin(self) - - def rend(self): - return _mscl.EventTypes_rend(self) - - def clear(self): - return _mscl.EventTypes_clear(self) - - def get_allocator(self): - return _mscl.EventTypes_get_allocator(self) - - def pop_back(self): - return _mscl.EventTypes_pop_back(self) - - def erase(self, *args): - return _mscl.EventTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTypes_swiginit(self, _mscl.new_EventTypes(*args)) - - def push_back(self, x): - return _mscl.EventTypes_push_back(self, x) - - def front(self): - return _mscl.EventTypes_front(self) - - def back(self): - return _mscl.EventTypes_back(self) - - def assign(self, n, x): - return _mscl.EventTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTypes_reserve(self, n) - - def capacity(self): - return _mscl.EventTypes_capacity(self) - __swig_destroy__ = _mscl.delete_EventTypes - -# Register EventTypes in _mscl: -_mscl.EventTypes_swigregister(EventTypes) - -class MeasurementReferenceFrames(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MeasurementReferenceFrames_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MeasurementReferenceFrames___nonzero__(self) - - def __bool__(self): - return _mscl.MeasurementReferenceFrames___bool__(self) - - def __len__(self): - return _mscl.MeasurementReferenceFrames___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.MeasurementReferenceFrames___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.MeasurementReferenceFrames___delitem__(self, key) - - def has_key(self, key): - return _mscl.MeasurementReferenceFrames_has_key(self, key) - - def keys(self): - return _mscl.MeasurementReferenceFrames_keys(self) - - def values(self): - return _mscl.MeasurementReferenceFrames_values(self) - - def items(self): - return _mscl.MeasurementReferenceFrames_items(self) - - def __contains__(self, key): - return _mscl.MeasurementReferenceFrames___contains__(self, key) - - def key_iterator(self): - return _mscl.MeasurementReferenceFrames_key_iterator(self) - - def value_iterator(self): - return _mscl.MeasurementReferenceFrames_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.MeasurementReferenceFrames___setitem__(self, *args) - - def asdict(self): - return _mscl.MeasurementReferenceFrames_asdict(self) - - def __init__(self, *args): - _mscl.MeasurementReferenceFrames_swiginit(self, _mscl.new_MeasurementReferenceFrames(*args)) - - def empty(self): - return _mscl.MeasurementReferenceFrames_empty(self) - - def size(self): - return _mscl.MeasurementReferenceFrames_size(self) - - def swap(self, v): - return _mscl.MeasurementReferenceFrames_swap(self, v) - - def begin(self): - return _mscl.MeasurementReferenceFrames_begin(self) - - def end(self): - return _mscl.MeasurementReferenceFrames_end(self) - - def rbegin(self): - return _mscl.MeasurementReferenceFrames_rbegin(self) - - def rend(self): - return _mscl.MeasurementReferenceFrames_rend(self) - - def clear(self): - return _mscl.MeasurementReferenceFrames_clear(self) - - def get_allocator(self): - return _mscl.MeasurementReferenceFrames_get_allocator(self) - - def count(self, x): - return _mscl.MeasurementReferenceFrames_count(self, x) - - def erase(self, *args): - return _mscl.MeasurementReferenceFrames_erase(self, *args) - - def find(self, x): - return _mscl.MeasurementReferenceFrames_find(self, x) - - def lower_bound(self, x): - return _mscl.MeasurementReferenceFrames_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.MeasurementReferenceFrames_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrames - -# Register MeasurementReferenceFrames in _mscl: -_mscl.MeasurementReferenceFrames_swigregister(MeasurementReferenceFrames) - -class Bins(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bins_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bins___nonzero__(self) - - def __bool__(self): - return _mscl.Bins___bool__(self) - - def __len__(self): - return _mscl.Bins___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bins___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bins___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bins___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bins___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bins___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bins___setitem__(self, *args) - - def pop(self): - return _mscl.Bins_pop(self) - - def append(self, x): - return _mscl.Bins_append(self, x) - - def empty(self): - return _mscl.Bins_empty(self) - - def size(self): - return _mscl.Bins_size(self) - - def swap(self, v): - return _mscl.Bins_swap(self, v) - - def begin(self): - return _mscl.Bins_begin(self) - - def end(self): - return _mscl.Bins_end(self) - - def rbegin(self): - return _mscl.Bins_rbegin(self) - - def rend(self): - return _mscl.Bins_rend(self) - - def clear(self): - return _mscl.Bins_clear(self) - - def get_allocator(self): - return _mscl.Bins_get_allocator(self) - - def pop_back(self): - return _mscl.Bins_pop_back(self) - - def erase(self, *args): - return _mscl.Bins_erase(self, *args) - - def __init__(self, *args): - _mscl.Bins_swiginit(self, _mscl.new_Bins(*args)) - - def push_back(self, x): - return _mscl.Bins_push_back(self, x) - - def front(self): - return _mscl.Bins_front(self) - - def back(self): - return _mscl.Bins_back(self) - - def assign(self, n, x): - return _mscl.Bins_assign(self, n, x) - - def insert(self, *args): - return _mscl.Bins_insert(self, *args) - - def reserve(self, n): - return _mscl.Bins_reserve(self, n) - - def capacity(self): - return _mscl.Bins_capacity(self) - __swig_destroy__ = _mscl.delete_Bins - -# Register Bins in _mscl: -_mscl.Bins_swigregister(Bins) - -class Error(Exception): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_swiginit(self, _mscl.new_Error(*args)) - __swig_destroy__ = _mscl.delete_Error - - def what(self): - return _mscl.Error_what(self) - - def __str__(self): - return _mscl.Error___str__(self) - -# Register Error in _mscl: -_mscl.Error_swigregister(Error) - -class Error_NotSupported(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NotSupported_swiginit(self, _mscl.new_Error_NotSupported(*args)) - __swig_destroy__ = _mscl.delete_Error_NotSupported - -# Register Error_NotSupported in _mscl: -_mscl.Error_NotSupported_swigregister(Error_NotSupported) - -class Error_NoData(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NoData_swiginit(self, _mscl.new_Error_NoData(*args)) - __swig_destroy__ = _mscl.delete_Error_NoData - -# Register Error_NoData in _mscl: -_mscl.Error_NoData_swigregister(Error_NoData) - -class Error_BadDataType(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Error_BadDataType_swiginit(self, _mscl.new_Error_BadDataType()) - __swig_destroy__ = _mscl.delete_Error_BadDataType - -# Register Error_BadDataType in _mscl: -_mscl.Error_BadDataType_swigregister(Error_BadDataType) - -class Error_UnknownSampleRate(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_UnknownSampleRate_swiginit(self, _mscl.new_Error_UnknownSampleRate(*args)) - __swig_destroy__ = _mscl.delete_Error_UnknownSampleRate - -# Register Error_UnknownSampleRate in _mscl: -_mscl.Error_UnknownSampleRate_swigregister(Error_UnknownSampleRate) - -class Error_Communication(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Communication_swiginit(self, _mscl.new_Error_Communication(*args)) - __swig_destroy__ = _mscl.delete_Error_Communication - -# Register Error_Communication in _mscl: -_mscl.Error_Communication_swigregister(Error_Communication) - -class Error_NodeCommunication(Error_Communication): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NodeCommunication_swiginit(self, _mscl.new_Error_NodeCommunication(*args)) - - def nodeAddress(self): - return _mscl.Error_NodeCommunication_nodeAddress(self) - __swig_destroy__ = _mscl.delete_Error_NodeCommunication - -# Register Error_NodeCommunication in _mscl: -_mscl.Error_NodeCommunication_swigregister(Error_NodeCommunication) - -class Error_Connection(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Connection_swiginit(self, _mscl.new_Error_Connection(*args)) - __swig_destroy__ = _mscl.delete_Error_Connection - - def code(self): - return _mscl.Error_Connection_code(self) - - def value(self): - return _mscl.Error_Connection_value(self) - -# Register Error_Connection in _mscl: -_mscl.Error_Connection_swigregister(Error_Connection) - -class Error_InvalidSerialPort(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code): - _mscl.Error_InvalidSerialPort_swiginit(self, _mscl.new_Error_InvalidSerialPort(code)) - __swig_destroy__ = _mscl.delete_Error_InvalidSerialPort - -# Register Error_InvalidSerialPort in _mscl: -_mscl.Error_InvalidSerialPort_swigregister(Error_InvalidSerialPort) - -class Error_InvalidTcpServer(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidTcpServer_swiginit(self, _mscl.new_Error_InvalidTcpServer(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidTcpServer - -# Register Error_InvalidTcpServer in _mscl: -_mscl.Error_InvalidTcpServer_swigregister(Error_InvalidTcpServer) - -class Error_InvalidUnixSocket(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidUnixSocket_swiginit(self, _mscl.new_Error_InvalidUnixSocket(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidUnixSocket - -# Register Error_InvalidUnixSocket in _mscl: -_mscl.Error_InvalidUnixSocket_swigregister(Error_InvalidUnixSocket) - -class Error_MipCmdFailed(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_MipCmdFailed_swiginit(self, _mscl.new_Error_MipCmdFailed(*args)) - __swig_destroy__ = _mscl.delete_Error_MipCmdFailed - - def code(self): - return _mscl.Error_MipCmdFailed_code(self) - - def value(self): - return _mscl.Error_MipCmdFailed_value(self) - -# Register Error_MipCmdFailed in _mscl: -_mscl.Error_MipCmdFailed_swigregister(Error_MipCmdFailed) - -class Error_InvalidConfig(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_InvalidConfig_swiginit(self, _mscl.new_Error_InvalidConfig(*args)) - __swig_destroy__ = _mscl.delete_Error_InvalidConfig - - def issues(self): - return _mscl.Error_InvalidConfig_issues(self) - -# Register Error_InvalidConfig in _mscl: -_mscl.Error_InvalidConfig_swigregister(Error_InvalidConfig) - -class Error_InvalidNodeConfig(Error_InvalidConfig): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, issues, nodeAddress): - _mscl.Error_InvalidNodeConfig_swiginit(self, _mscl.new_Error_InvalidNodeConfig(issues, nodeAddress)) - __swig_destroy__ = _mscl.delete_Error_InvalidNodeConfig - - def nodeAddress(self): - return _mscl.Error_InvalidNodeConfig_nodeAddress(self) - -# Register Error_InvalidNodeConfig in _mscl: -_mscl.Error_InvalidNodeConfig_swigregister(Error_InvalidNodeConfig) - - - diff --git a/mscl_release_assets/mscl-arm64-Python3.9-v67.0.0/_mscl.so b/mscl_release_assets/mscl-arm64-Python3.9-v67.0.0/_mscl.so deleted file mode 100644 index 669bdf9..0000000 Binary files a/mscl_release_assets/mscl-arm64-Python3.9-v67.0.0/_mscl.so and /dev/null differ diff --git a/mscl_release_assets/mscl-arm64-Python3.9-v67.0.0/mscl.py b/mscl_release_assets/mscl-arm64-Python3.9-v67.0.0/mscl.py deleted file mode 100644 index daa6217..0000000 --- a/mscl_release_assets/mscl-arm64-Python3.9-v67.0.0/mscl.py +++ /dev/null @@ -1,18376 +0,0 @@ -# This file was automatically generated by SWIG (http://www.swig.org). -# Version 4.0.1 -# -# Do not make changes to this file unless you know what you are doing--modify -# the SWIG interface file instead. - -from sys import version_info as _swig_python_version_info -if _swig_python_version_info < (2, 7, 0): - raise RuntimeError("Python 2.7 or later required") - -# Import the low-level C/C++ module -if __package__ or "." in __name__: - from . import _mscl -else: - import _mscl - -try: - import builtins as __builtin__ -except ImportError: - import __builtin__ - -def _swig_repr(self): - try: - strthis = "proxy of " + self.this.__repr__() - except __builtin__.Exception: - strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - - -def _swig_setattr_nondynamic_instance_variable(set): - def set_instance_attr(self, name, value): - if name == "thisown": - self.this.own(value) - elif name == "this": - set(self, name, value) - elif hasattr(self, name) and isinstance(getattr(type(self), name), property): - set(self, name, value) - else: - raise AttributeError("You cannot add instance attributes to %s" % self) - return set_instance_attr - - -def _swig_setattr_nondynamic_class_variable(set): - def set_class_attr(cls, name, value): - if hasattr(cls, name) and not isinstance(getattr(cls, name), property): - set(cls, name, value) - else: - raise AttributeError("You cannot add class attributes to %s" % cls) - return set_class_attr - - -def _swig_add_metaclass(metaclass): - """Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass""" - def wrapper(cls): - return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy()) - return wrapper - - -class _SwigNonDynamicMeta(type): - """Meta class to enforce nondynamic attributes (no new attributes) for a class""" - __setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__) - - -class SwigPyIterator(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_SwigPyIterator - - def value(self): - return _mscl.SwigPyIterator_value(self) - - def incr(self, n=1): - return _mscl.SwigPyIterator_incr(self, n) - - def decr(self, n=1): - return _mscl.SwigPyIterator_decr(self, n) - - def distance(self, x): - return _mscl.SwigPyIterator_distance(self, x) - - def equal(self, x): - return _mscl.SwigPyIterator_equal(self, x) - - def copy(self): - return _mscl.SwigPyIterator_copy(self) - - def next(self): - return _mscl.SwigPyIterator_next(self) - - def __next__(self): - return _mscl.SwigPyIterator___next__(self) - - def previous(self): - return _mscl.SwigPyIterator_previous(self) - - def advance(self, n): - return _mscl.SwigPyIterator_advance(self, n) - - def __eq__(self, x): - return _mscl.SwigPyIterator___eq__(self, x) - - def __ne__(self, x): - return _mscl.SwigPyIterator___ne__(self, x) - - def __iadd__(self, n): - return _mscl.SwigPyIterator___iadd__(self, n) - - def __isub__(self, n): - return _mscl.SwigPyIterator___isub__(self, n) - - def __add__(self, n): - return _mscl.SwigPyIterator___add__(self, n) - - def __sub__(self, *args): - return _mscl.SwigPyIterator___sub__(self, *args) - def __iter__(self): - return self - -# Register SwigPyIterator in _mscl: -_mscl.SwigPyIterator_swigregister(SwigPyIterator) - -SHARED_PTR_DISOWN = _mscl.SHARED_PTR_DISOWN -valueType_float = _mscl.valueType_float -valueType_double = _mscl.valueType_double -valueType_uint8 = _mscl.valueType_uint8 -valueType_uint16 = _mscl.valueType_uint16 -valueType_uint32 = _mscl.valueType_uint32 -valueType_int16 = _mscl.valueType_int16 -valueType_int32 = _mscl.valueType_int32 -valueType_bool = _mscl.valueType_bool -valueType_Vector = _mscl.valueType_Vector -valueType_Matrix = _mscl.valueType_Matrix -valueType_Timestamp = _mscl.valueType_Timestamp -valueType_string = _mscl.valueType_string -valueType_Bytes = _mscl.valueType_Bytes -valueType_StructuralHealth = _mscl.valueType_StructuralHealth -valueType_RfSweep = _mscl.valueType_RfSweep -valueType_ChannelMask = _mscl.valueType_ChannelMask -valueType_int8 = _mscl.valueType_int8 -valueType_uint64 = _mscl.valueType_uint64 -deviceState_idle = _mscl.deviceState_idle -deviceState_sleep = _mscl.deviceState_sleep -deviceState_sampling = _mscl.deviceState_sampling -deviceState_sampling_lostBeacon = _mscl.deviceState_sampling_lostBeacon -deviceState_sampling_inactive = _mscl.deviceState_sampling_inactive -deviceState_unknown = _mscl.deviceState_unknown -class BitMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BitMask_swiginit(self, _mscl.new_BitMask(*args)) - __swig_destroy__ = _mscl.delete_BitMask - - def __eq__(self, other): - return _mscl.BitMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.BitMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.BitMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.BitMask___gt__(self, other) - - def fromMask(self, val): - return _mscl.BitMask_fromMask(self, val) - - def toMask(self): - return _mscl.BitMask_toMask(self) - - def enabledCount(self): - return _mscl.BitMask_enabledCount(self) - - def enabled(self, bitIndex): - return _mscl.BitMask_enabled(self, bitIndex) - - def enable(self, bitIndex, enable=True): - return _mscl.BitMask_enable(self, bitIndex, enable) - - def lastBitEnabled(self): - return _mscl.BitMask_lastBitEnabled(self) - -# Register BitMask in _mscl: -_mscl.BitMask_swigregister(BitMask) - -class ChannelMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_CHANNELS = _mscl.ChannelMask_MAX_CHANNELS - - def __init__(self, *args): - _mscl.ChannelMask_swiginit(self, _mscl.new_ChannelMask(*args)) - __swig_destroy__ = _mscl.delete_ChannelMask - - def __eq__(self, other): - return _mscl.ChannelMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.ChannelMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.ChannelMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.ChannelMask___gt__(self, other) - - def fromMask(self, channelMask): - return _mscl.ChannelMask_fromMask(self, channelMask) - - def toMask(self): - return _mscl.ChannelMask_toMask(self) - - def count(self): - return _mscl.ChannelMask_count(self) - - def enabled(self, channel): - return _mscl.ChannelMask_enabled(self, channel) - - def enable(self, channel, enable=True): - return _mscl.ChannelMask_enable(self, channel, enable) - - def lastChEnabled(self): - return _mscl.ChannelMask_lastChEnabled(self) - -# Register ChannelMask in _mscl: -_mscl.ChannelMask_swigregister(ChannelMask) - -class Value(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_Value - - def storedAs(self): - return _mscl.Value_storedAs(self) - - def as_float(self): - return _mscl.Value_as_float(self) - - def as_double(self): - return _mscl.Value_as_double(self) - - def as_uint8(self): - return _mscl.Value_as_uint8(self) - - def as_uint16(self): - return _mscl.Value_as_uint16(self) - - def as_uint32(self): - return _mscl.Value_as_uint32(self) - - def as_uint64(self): - return _mscl.Value_as_uint64(self) - - def as_int8(self): - return _mscl.Value_as_int8(self) - - def as_int16(self): - return _mscl.Value_as_int16(self) - - def as_int32(self): - return _mscl.Value_as_int32(self) - - def as_bool(self): - return _mscl.Value_as_bool(self) - - def as_ChannelMask(self): - return _mscl.Value_as_ChannelMask(self) - - def as_string(self): - return _mscl.Value_as_string(self) - - def __init__(self): - _mscl.Value_swiginit(self, _mscl.new_Value()) - -# Register Value in _mscl: -_mscl.Value_swigregister(Value) - -class Bin(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, start, end, count): - _mscl.Bin_swiginit(self, _mscl.new_Bin(start, end, count)) - - def start(self): - return _mscl.Bin_start(self) - - def end(self): - return _mscl.Bin_end(self) - - def count(self): - return _mscl.Bin_count(self) - __swig_destroy__ = _mscl.delete_Bin - -# Register Bin in _mscl: -_mscl.Bin_swigregister(Bin) - -class Histogram(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, binsStart, binsSize): - _mscl.Histogram_swiginit(self, _mscl.new_Histogram(binsStart, binsSize)) - - def binsStart(self): - return _mscl.Histogram_binsStart(self) - - def binsSize(self): - return _mscl.Histogram_binsSize(self) - - def bins(self): - return _mscl.Histogram_bins(self) - - def addBin(self, bin): - return _mscl.Histogram_addBin(self, bin) - __swig_destroy__ = _mscl.delete_Histogram - -# Register Histogram in _mscl: -_mscl.Histogram_swigregister(Histogram) - -class Timestamp(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INTERNAL = _mscl.Timestamp_INTERNAL - EXTERNAL = _mscl.Timestamp_EXTERNAL - TIME_OF_ARRIVAL = _mscl.Timestamp_TIME_OF_ARRIVAL - GPS = _mscl.Timestamp_GPS - UNIX = _mscl.Timestamp_UNIX - UTC = _mscl.Timestamp_UTC - - def __init__(self, *args): - _mscl.Timestamp_swiginit(self, _mscl.new_Timestamp(*args)) - __swig_destroy__ = _mscl.delete_Timestamp - - def nanoseconds(self, *args): - return _mscl.Timestamp_nanoseconds(self, *args) - - def seconds(self, *args): - return _mscl.Timestamp_seconds(self, *args) - - def storedEpoch(self): - return _mscl.Timestamp_storedEpoch(self) - - def __str__(self): - return _mscl.Timestamp___str__(self) - - def setTime(self, *args): - return _mscl.Timestamp_setTime(self, *args) - - def setTimeNow(self): - return _mscl.Timestamp_setTimeNow(self) - - @staticmethod - def timeNow(): - return _mscl.Timestamp_timeNow() - - @staticmethod - def setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - - @staticmethod - def getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - - @staticmethod - def gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - - @staticmethod - def utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -# Register Timestamp in _mscl: -_mscl.Timestamp_swigregister(Timestamp) - -def Timestamp_timeNow(): - return _mscl.Timestamp_timeNow() - -def Timestamp_setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - -def Timestamp_getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - -def Timestamp_gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - -def Timestamp_utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -class TimeSpan(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - NANOSECONDS_PER_MICROSECOND = _mscl.TimeSpan_NANOSECONDS_PER_MICROSECOND - NANOSECONDS_PER_MILLISECOND = _mscl.TimeSpan_NANOSECONDS_PER_MILLISECOND - NANOSECONDS_PER_SECOND = _mscl.TimeSpan_NANOSECONDS_PER_SECOND - - def getNanoseconds(self): - return _mscl.TimeSpan_getNanoseconds(self) - - def getMicroseconds(self): - return _mscl.TimeSpan_getMicroseconds(self) - - def getMilliseconds(self): - return _mscl.TimeSpan_getMilliseconds(self) - - def getSeconds(self): - return _mscl.TimeSpan_getSeconds(self) - - @staticmethod - def NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - - @staticmethod - def MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - - @staticmethod - def MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - - @staticmethod - def Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - - @staticmethod - def Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - - @staticmethod - def Hours(hours): - return _mscl.TimeSpan_Hours(hours) - - @staticmethod - def Days(days): - return _mscl.TimeSpan_Days(days) - __swig_destroy__ = _mscl.delete_TimeSpan - -# Register TimeSpan in _mscl: -_mscl.TimeSpan_swigregister(TimeSpan) - -def TimeSpan_NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - -def TimeSpan_MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - -def TimeSpan_MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - -def TimeSpan_Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - -def TimeSpan_Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - -def TimeSpan_Hours(hours): - return _mscl.TimeSpan_Hours(hours) - -def TimeSpan_Days(days): - return _mscl.TimeSpan_Days(days) - -class Version(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Version_swiginit(self, _mscl.new_Version(*args)) - - def __eq__(self, cmp): - return _mscl.Version___eq__(self, cmp) - - def __ne__(self, cmp): - return _mscl.Version___ne__(self, cmp) - - def __lt__(self, cmp): - return _mscl.Version___lt__(self, cmp) - - def __le__(self, cmp): - return _mscl.Version___le__(self, cmp) - - def __gt__(self, cmp): - return _mscl.Version___gt__(self, cmp) - - def __ge__(self, cmp): - return _mscl.Version___ge__(self, cmp) - - def __str__(self): - return _mscl.Version___str__(self) - - def fromString(self, strVersion): - return _mscl.Version_fromString(self, strVersion) - - def majorPart(self): - return _mscl.Version_majorPart(self) - - def minorPart(self): - return _mscl.Version_minorPart(self) - - def patchPart(self): - return _mscl.Version_patchPart(self) - __swig_destroy__ = _mscl.delete_Version - -# Register Version in _mscl: -_mscl.Version_swigregister(Version) - -class DeviceInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.DeviceInfo_connectionType_serial - connectionType_tcp = _mscl.DeviceInfo_connectionType_tcp - - def __init__(self, *args): - _mscl.DeviceInfo_swiginit(self, _mscl.new_DeviceInfo(*args)) - - def description(self): - return _mscl.DeviceInfo_description(self) - - def serial(self): - return _mscl.DeviceInfo_serial(self) - - def baudRate(self): - return _mscl.DeviceInfo_baudRate(self) - - def connectionType(self): - return _mscl.DeviceInfo_connectionType(self) - __swig_destroy__ = _mscl.delete_DeviceInfo - -# Register DeviceInfo in _mscl: -_mscl.DeviceInfo_swigregister(DeviceInfo) -cvar = _mscl.cvar -MSCL_VERSION = cvar.MSCL_VERSION - -class Devices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def listBaseStations(): - return _mscl.Devices_listBaseStations() - - @staticmethod - def listInertialDevices(): - return _mscl.Devices_listInertialDevices() - - @staticmethod - def listPorts(): - return _mscl.Devices_listPorts() - __swig_destroy__ = _mscl.delete_Devices - -# Register Devices in _mscl: -_mscl.Devices_swigregister(Devices) - -def Devices_listBaseStations(): - return _mscl.Devices_listBaseStations() - -def Devices_listInertialDevices(): - return _mscl.Devices_listInertialDevices() - -def Devices_listPorts(): - return _mscl.Devices_listPorts() - -class ConnectionDebugData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ConnectionDebugData_swiginit(self, _mscl.new_ConnectionDebugData(*args)) - - def fromRead(self): - return _mscl.ConnectionDebugData_fromRead(self) - - def timestamp(self): - return _mscl.ConnectionDebugData_timestamp(self) - - def data(self): - return _mscl.ConnectionDebugData_data(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugData - -# Register ConnectionDebugData in _mscl: -_mscl.ConnectionDebugData_swigregister(ConnectionDebugData) - -class Connection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.Connection_connectionType_serial - connectionType_tcp = _mscl.Connection_connectionType_tcp - connectionType_webSocket = _mscl.Connection_connectionType_webSocket - connectionType_unixSocket = _mscl.Connection_connectionType_unixSocket - - def __init__(self): - _mscl.Connection_swiginit(self, _mscl.new_Connection()) - - @staticmethod - def Serial(*args): - return _mscl.Connection_Serial(*args) - - @staticmethod - def TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - - @staticmethod - def UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - - @staticmethod - def Mock(): - return _mscl.Connection_Mock() - - def description(self): - return _mscl.Connection_description(self) - - def port(self): - return _mscl.Connection_port(self) - - def type(self): - return _mscl.Connection_type(self) - - def disconnect(self): - return _mscl.Connection_disconnect(self) - - def reconnect(self): - return _mscl.Connection_reconnect(self) - - def write(self, bytes): - return _mscl.Connection_write(self, bytes) - - def writeStr(self, bytes): - return _mscl.Connection_writeStr(self, bytes) - - def clearBuffer(self): - return _mscl.Connection_clearBuffer(self) - - def byteReadPos(self): - return _mscl.Connection_byteReadPos(self) - - def byteAppendPos(self): - return _mscl.Connection_byteAppendPos(self) - - def rawByteMode(self, *args): - return _mscl.Connection_rawByteMode(self, *args) - - def getRawBytes(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytes(self, timeout, maxBytes, minBytes) - - def getRawBytesStr(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytesStr(self, timeout, maxBytes, minBytes) - - def getRawBytesWithPattern(self, pattern, timeout=0): - return _mscl.Connection_getRawBytesWithPattern(self, pattern, timeout) - - def debugMode(self, *args): - return _mscl.Connection_debugMode(self, *args) - - def getDebugData(self, timeout=0): - return _mscl.Connection_getDebugData(self, timeout) - - def updateBaudRate(self, baudRate): - return _mscl.Connection_updateBaudRate(self, baudRate) - __swig_destroy__ = _mscl.delete_Connection - -# Register Connection in _mscl: -_mscl.Connection_swigregister(Connection) - -def Connection_Serial(*args): - return _mscl.Connection_Serial(*args) - -def Connection_TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - -def Connection_UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - -def Connection_Mock(): - return _mscl.Connection_Mock() - -class WirelessTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - beacon_none = _mscl.WirelessTypes_beacon_none - beacon_internalTimer = _mscl.WirelessTypes_beacon_internalTimer - beacon_internalPPS = _mscl.WirelessTypes_beacon_internalPPS - beacon_externalPPS = _mscl.WirelessTypes_beacon_externalPPS - microcontroller_18F452 = _mscl.WirelessTypes_microcontroller_18F452 - microcontroller_18F4620 = _mscl.WirelessTypes_microcontroller_18F4620 - microcontroller_18F46K20 = _mscl.WirelessTypes_microcontroller_18F46K20 - microcontroller_18F67K90 = _mscl.WirelessTypes_microcontroller_18F67K90 - microcontroller_EFM32WG990F256 = _mscl.WirelessTypes_microcontroller_EFM32WG990F256 - microcontroller_EFR32FG1P132F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32FG1P132F256GM48 - microcontroller_EFR32MG1P232F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32MG1P232F256GM48 - collectionMethod_logOnly = _mscl.WirelessTypes_collectionMethod_logOnly - collectionMethod_transmitOnly = _mscl.WirelessTypes_collectionMethod_transmitOnly - collectionMethod_logAndTransmit = _mscl.WirelessTypes_collectionMethod_logAndTransmit - dataType_first = _mscl.WirelessTypes_dataType_first - dataType_uint16_shifted = _mscl.WirelessTypes_dataType_uint16_shifted - dataType_float32 = _mscl.WirelessTypes_dataType_float32 - dataType_uint16_12bitRes = _mscl.WirelessTypes_dataType_uint16_12bitRes - dataType_uint32 = _mscl.WirelessTypes_dataType_uint32 - dataType_uint16 = _mscl.WirelessTypes_dataType_uint16 - dataType_float32_noCals = _mscl.WirelessTypes_dataType_float32_noCals - dataType_uint24_18bitRes = _mscl.WirelessTypes_dataType_uint24_18bitRes - dataType_uint16_18bitTrunc = _mscl.WirelessTypes_dataType_uint16_18bitTrunc - dataType_int24_20bit = _mscl.WirelessTypes_dataType_int24_20bit - dataType_int16_20bitTrunc = _mscl.WirelessTypes_dataType_int16_20bitTrunc - dataType_uint24 = _mscl.WirelessTypes_dataType_uint24 - dataType_uint16_24bitTrunc = _mscl.WirelessTypes_dataType_uint16_24bitTrunc - dataType_int16_x10 = _mscl.WirelessTypes_dataType_int16_x10 - dataType_last = _mscl.WirelessTypes_dataType_last - dataFormat_raw_uint16 = _mscl.WirelessTypes_dataFormat_raw_uint16 - dataFormat_cal_float = _mscl.WirelessTypes_dataFormat_cal_float - dataFormat_raw_uint24 = _mscl.WirelessTypes_dataFormat_raw_uint24 - dataFormat_raw_int24 = _mscl.WirelessTypes_dataFormat_raw_int24 - dataFormat_raw_int16 = _mscl.WirelessTypes_dataFormat_raw_int16 - dataFormat_cal_int16_x10 = _mscl.WirelessTypes_dataFormat_cal_int16_x10 - syncMode_continuous = _mscl.WirelessTypes_syncMode_continuous - syncMode_burst = _mscl.WirelessTypes_syncMode_burst - samplingMode_sync = _mscl.WirelessTypes_samplingMode_sync - samplingMode_syncBurst = _mscl.WirelessTypes_samplingMode_syncBurst - samplingMode_nonSync = _mscl.WirelessTypes_samplingMode_nonSync - samplingMode_armedDatalog = _mscl.WirelessTypes_samplingMode_armedDatalog - samplingMode_syncEvent = _mscl.WirelessTypes_samplingMode_syncEvent - samplingMode_nonSyncEvent = _mscl.WirelessTypes_samplingMode_nonSyncEvent - defaultMode_idle = _mscl.WirelessTypes_defaultMode_idle - defaultMode_ldc = _mscl.WirelessTypes_defaultMode_ldc - defaultMode_datalog = _mscl.WirelessTypes_defaultMode_datalog - defaultMode_sleep = _mscl.WirelessTypes_defaultMode_sleep - defaultMode_sync = _mscl.WirelessTypes_defaultMode_sync - freq_unknown = _mscl.WirelessTypes_freq_unknown - freq_11 = _mscl.WirelessTypes_freq_11 - freq_12 = _mscl.WirelessTypes_freq_12 - freq_13 = _mscl.WirelessTypes_freq_13 - freq_14 = _mscl.WirelessTypes_freq_14 - freq_15 = _mscl.WirelessTypes_freq_15 - freq_16 = _mscl.WirelessTypes_freq_16 - freq_17 = _mscl.WirelessTypes_freq_17 - freq_18 = _mscl.WirelessTypes_freq_18 - freq_19 = _mscl.WirelessTypes_freq_19 - freq_20 = _mscl.WirelessTypes_freq_20 - freq_21 = _mscl.WirelessTypes_freq_21 - freq_22 = _mscl.WirelessTypes_freq_22 - freq_23 = _mscl.WirelessTypes_freq_23 - freq_24 = _mscl.WirelessTypes_freq_24 - freq_25 = _mscl.WirelessTypes_freq_25 - freq_26 = _mscl.WirelessTypes_freq_26 - power_20dBm = _mscl.WirelessTypes_power_20dBm - power_16dBm = _mscl.WirelessTypes_power_16dBm - power_15dBm = _mscl.WirelessTypes_power_15dBm - power_12dBm = _mscl.WirelessTypes_power_12dBm - power_11dBm = _mscl.WirelessTypes_power_11dBm - power_10dBm = _mscl.WirelessTypes_power_10dBm - power_5dBm = _mscl.WirelessTypes_power_5dBm - power_1dBm = _mscl.WirelessTypes_power_1dBm - power_0dBm = _mscl.WirelessTypes_power_0dBm - retransmission_off = _mscl.WirelessTypes_retransmission_off - retransmission_on = _mscl.WirelessTypes_retransmission_on - retransmission_disabled = _mscl.WirelessTypes_retransmission_disabled - trigger_userInit = _mscl.WirelessTypes_trigger_userInit - trigger_ceiling = _mscl.WirelessTypes_trigger_ceiling - trigger_floor = _mscl.WirelessTypes_trigger_floor - trigger_rampUp = _mscl.WirelessTypes_trigger_rampUp - trigger_rampDown = _mscl.WirelessTypes_trigger_rampDown - equation_none = _mscl.WirelessTypes_equation_none - equation_standard = _mscl.WirelessTypes_equation_standard - unit_none = _mscl.WirelessTypes_unit_none - unit_other_bits = _mscl.WirelessTypes_unit_other_bits - unit_strain_strain = _mscl.WirelessTypes_unit_strain_strain - unit_strain_microStrain = _mscl.WirelessTypes_unit_strain_microStrain - unit_accel_g = _mscl.WirelessTypes_unit_accel_g - unit_accel_mPerSec2 = _mscl.WirelessTypes_unit_accel_mPerSec2 - unit_volts_volts = _mscl.WirelessTypes_unit_volts_volts - unit_volts_millivolts = _mscl.WirelessTypes_unit_volts_millivolts - unit_volts_microvolts = _mscl.WirelessTypes_unit_volts_microvolts - unit_temp_celsius = _mscl.WirelessTypes_unit_temp_celsius - unit_temp_kelvin = _mscl.WirelessTypes_unit_temp_kelvin - unit_temp_fahrenheit = _mscl.WirelessTypes_unit_temp_fahrenheit - unit_displacement_meters = _mscl.WirelessTypes_unit_displacement_meters - unit_displacement_millimeters = _mscl.WirelessTypes_unit_displacement_millimeters - unit_displacement_micrometers = _mscl.WirelessTypes_unit_displacement_micrometers - unit_force_lbf = _mscl.WirelessTypes_unit_force_lbf - unit_force_newtons = _mscl.WirelessTypes_unit_force_newtons - unit_force_kiloNewtons = _mscl.WirelessTypes_unit_force_kiloNewtons - unit_mass_kilograms = _mscl.WirelessTypes_unit_mass_kilograms - unit_pressure_bar = _mscl.WirelessTypes_unit_pressure_bar - unit_pressure_psi = _mscl.WirelessTypes_unit_pressure_psi - unit_pressure_atm = _mscl.WirelessTypes_unit_pressure_atm - unit_pressure_mmHg = _mscl.WirelessTypes_unit_pressure_mmHg - unit_pressure_pascal = _mscl.WirelessTypes_unit_pressure_pascal - unit_pressure_megaPascal = _mscl.WirelessTypes_unit_pressure_megaPascal - unit_pressure_kiloPascal = _mscl.WirelessTypes_unit_pressure_kiloPascal - unit_angDisplacement_degrees = _mscl.WirelessTypes_unit_angDisplacement_degrees - unit_angVelocity_degreesPerSec = _mscl.WirelessTypes_unit_angVelocity_degreesPerSec - unit_angVelocity_radiansPerSec = _mscl.WirelessTypes_unit_angVelocity_radiansPerSec - unit_other_percent = _mscl.WirelessTypes_unit_other_percent - unit_freq_rpm = _mscl.WirelessTypes_unit_freq_rpm - unit_freq_hertz = _mscl.WirelessTypes_unit_freq_hertz - unit_rh_percentRh = _mscl.WirelessTypes_unit_rh_percentRh - unit_other_mVperV = _mscl.WirelessTypes_unit_other_mVperV - unit_accel_milliG = _mscl.WirelessTypes_unit_accel_milliG - unit_accel_ftPerSec2 = _mscl.WirelessTypes_unit_accel_ftPerSec2 - unit_other_percentLife = _mscl.WirelessTypes_unit_other_percentLife - unit_other_count = _mscl.WirelessTypes_unit_other_count - unit_displacement_feet = _mscl.WirelessTypes_unit_displacement_feet - unit_displacement_inches = _mscl.WirelessTypes_unit_displacement_inches - unit_displacement_yards = _mscl.WirelessTypes_unit_displacement_yards - unit_displacement_miles = _mscl.WirelessTypes_unit_displacement_miles - unit_displacement_nautMiles = _mscl.WirelessTypes_unit_displacement_nautMiles - unit_displacement_thouInch = _mscl.WirelessTypes_unit_displacement_thouInch - unit_displacement_hundInch = _mscl.WirelessTypes_unit_displacement_hundInch - unit_displacement_kilometers = _mscl.WirelessTypes_unit_displacement_kilometers - unit_displacement_centimeters = _mscl.WirelessTypes_unit_displacement_centimeters - unit_irradiance_wattsPerSqMeter = _mscl.WirelessTypes_unit_irradiance_wattsPerSqMeter - unit_par_microEinstein = _mscl.WirelessTypes_unit_par_microEinstein - unit_mass_pound = _mscl.WirelessTypes_unit_mass_pound - unit_power_watt = _mscl.WirelessTypes_unit_power_watt - unit_power_milliwatt = _mscl.WirelessTypes_unit_power_milliwatt - unit_power_horsepower = _mscl.WirelessTypes_unit_power_horsepower - unit_reactivePower_var = _mscl.WirelessTypes_unit_reactivePower_var - unit_energy_wattHour = _mscl.WirelessTypes_unit_energy_wattHour - unit_energy_kiloWattHour = _mscl.WirelessTypes_unit_energy_kiloWattHour - unit_reactiveEnergy_VARh = _mscl.WirelessTypes_unit_reactiveEnergy_VARh - unit_reactiveEnergy_kVARh = _mscl.WirelessTypes_unit_reactiveEnergy_kVARh - unit_current_ampere = _mscl.WirelessTypes_unit_current_ampere - unit_current_milliampere = _mscl.WirelessTypes_unit_current_milliampere - unit_current_microampere = _mscl.WirelessTypes_unit_current_microampere - unit_pressure_millibar = _mscl.WirelessTypes_unit_pressure_millibar - unit_pressure_inHg = _mscl.WirelessTypes_unit_pressure_inHg - unit_rssi_dBm = _mscl.WirelessTypes_unit_rssi_dBm - unit_freq_kiloHertz = _mscl.WirelessTypes_unit_freq_kiloHertz - unit_angDisplacement_radians = _mscl.WirelessTypes_unit_angDisplacement_radians - unit_velocity_metersPerSec = _mscl.WirelessTypes_unit_velocity_metersPerSec - unit_velocity_kilometersPerSec = _mscl.WirelessTypes_unit_velocity_kilometersPerSec - unit_velocity_kilometersPerHr = _mscl.WirelessTypes_unit_velocity_kilometersPerHr - unit_velocity_milesPerHr = _mscl.WirelessTypes_unit_velocity_milesPerHr - unit_velocity_knots = _mscl.WirelessTypes_unit_velocity_knots - unit_volume_cubicMeter = _mscl.WirelessTypes_unit_volume_cubicMeter - unit_volume_cubicFt = _mscl.WirelessTypes_unit_volume_cubicFt - unit_volume_liters = _mscl.WirelessTypes_unit_volume_liters - unit_volume_gallon = _mscl.WirelessTypes_unit_volume_gallon - unit_flowRate_cubicMetersPerSec = _mscl.WirelessTypes_unit_flowRate_cubicMetersPerSec - unit_flowRate_cubicFtPerSec = _mscl.WirelessTypes_unit_flowRate_cubicFtPerSec - unit_torque_newtonMeter = _mscl.WirelessTypes_unit_torque_newtonMeter - unit_torque_footPounds = _mscl.WirelessTypes_unit_torque_footPounds - unit_torque_inchPounds = _mscl.WirelessTypes_unit_torque_inchPounds - unit_time_secs = _mscl.WirelessTypes_unit_time_secs - unit_time_nanosecs = _mscl.WirelessTypes_unit_time_nanosecs - unit_time_microsecs = _mscl.WirelessTypes_unit_time_microsecs - unit_time_millisecs = _mscl.WirelessTypes_unit_time_millisecs - unit_time_minutes = _mscl.WirelessTypes_unit_time_minutes - unit_time_hours = _mscl.WirelessTypes_unit_time_hours - unit_time_days = _mscl.WirelessTypes_unit_time_days - unit_time_weeks = _mscl.WirelessTypes_unit_time_weeks - unit_other_value = _mscl.WirelessTypes_unit_other_value - unit_magneticFlux_gauss = _mscl.WirelessTypes_unit_magneticFlux_gauss - unit_other_gSec = _mscl.WirelessTypes_unit_other_gSec - unit_other_secsPerSec = _mscl.WirelessTypes_unit_other_secsPerSec - unit_rssi_dBHz = _mscl.WirelessTypes_unit_rssi_dBHz - unit_density_kgPerMeter3 = _mscl.WirelessTypes_unit_density_kgPerMeter3 - unit_other_unitless = _mscl.WirelessTypes_unit_other_unitless - unit_velocity_inchesPerSec = _mscl.WirelessTypes_unit_velocity_inchesPerSec - unit_force_kg = _mscl.WirelessTypes_unit_force_kg - unit_rawVoltage_volts = _mscl.WirelessTypes_unit_rawVoltage_volts - unit_rawVoltage_millivolts = _mscl.WirelessTypes_unit_rawVoltage_millivolts - unit_rawVoltage_microvolts = _mscl.WirelessTypes_unit_rawVoltage_microvolts - unit_resistance_ohm = _mscl.WirelessTypes_unit_resistance_ohm - unit_resistance_milliohm = _mscl.WirelessTypes_unit_resistance_milliohm - unit_resistance_kiloohm = _mscl.WirelessTypes_unit_resistance_kiloohm - unit_velocity_mmPerSec = _mscl.WirelessTypes_unit_velocity_mmPerSec - unit_mass_grams = _mscl.WirelessTypes_unit_mass_grams - unit_mass_ton = _mscl.WirelessTypes_unit_mass_ton - unit_mass_tonne = _mscl.WirelessTypes_unit_mass_tonne - chType_none = _mscl.WirelessTypes_chType_none - chType_fullDifferential = _mscl.WirelessTypes_chType_fullDifferential - chType_singleEnded = _mscl.WirelessTypes_chType_singleEnded - chType_battery = _mscl.WirelessTypes_chType_battery - chType_temperature = _mscl.WirelessTypes_chType_temperature - chType_rh = _mscl.WirelessTypes_chType_rh - chType_acceleration = _mscl.WirelessTypes_chType_acceleration - chType_displacement = _mscl.WirelessTypes_chType_displacement - chType_voltage = _mscl.WirelessTypes_chType_voltage - chType_diffTemperature = _mscl.WirelessTypes_chType_diffTemperature - chType_digital = _mscl.WirelessTypes_chType_digital - chType_tilt = _mscl.WirelessTypes_chType_tilt - voltageType_singleEnded = _mscl.WirelessTypes_voltageType_singleEnded - voltageType_differential = _mscl.WirelessTypes_voltageType_differential - settling_4ms = _mscl.WirelessTypes_settling_4ms - settling_8ms = _mscl.WirelessTypes_settling_8ms - settling_16ms = _mscl.WirelessTypes_settling_16ms - settling_32ms = _mscl.WirelessTypes_settling_32ms - settling_40ms = _mscl.WirelessTypes_settling_40ms - settling_48ms = _mscl.WirelessTypes_settling_48ms - settling_60ms = _mscl.WirelessTypes_settling_60ms - settling_101ms_90db = _mscl.WirelessTypes_settling_101ms_90db - settling_120ms_80db = _mscl.WirelessTypes_settling_120ms_80db - settling_120ms_65db = _mscl.WirelessTypes_settling_120ms_65db - settling_160ms_69db = _mscl.WirelessTypes_settling_160ms_69db - settling_200ms = _mscl.WirelessTypes_settling_200ms - transducer_thermocouple = _mscl.WirelessTypes_transducer_thermocouple - transducer_rtd = _mscl.WirelessTypes_transducer_rtd - transducer_thermistor = _mscl.WirelessTypes_transducer_thermistor - tc_uncompensated = _mscl.WirelessTypes_tc_uncompensated - tc_K = _mscl.WirelessTypes_tc_K - tc_J = _mscl.WirelessTypes_tc_J - tc_R = _mscl.WirelessTypes_tc_R - tc_S = _mscl.WirelessTypes_tc_S - tc_T = _mscl.WirelessTypes_tc_T - tc_E = _mscl.WirelessTypes_tc_E - tc_B = _mscl.WirelessTypes_tc_B - tc_N = _mscl.WirelessTypes_tc_N - tc_customPolynomial = _mscl.WirelessTypes_tc_customPolynomial - rtd_uncompensated = _mscl.WirelessTypes_rtd_uncompensated - rtd_pt10 = _mscl.WirelessTypes_rtd_pt10 - rtd_pt50 = _mscl.WirelessTypes_rtd_pt50 - rtd_pt100 = _mscl.WirelessTypes_rtd_pt100 - rtd_pt200 = _mscl.WirelessTypes_rtd_pt200 - rtd_pt500 = _mscl.WirelessTypes_rtd_pt500 - rtd_pt1000 = _mscl.WirelessTypes_rtd_pt1000 - rtd_2wire = _mscl.WirelessTypes_rtd_2wire - rtd_3wire = _mscl.WirelessTypes_rtd_3wire - rtd_4wire = _mscl.WirelessTypes_rtd_4wire - thermistor_uncompensated = _mscl.WirelessTypes_thermistor_uncompensated - thermistor_44004_44033 = _mscl.WirelessTypes_thermistor_44004_44033 - thermistor_44005_44030 = _mscl.WirelessTypes_thermistor_44005_44030 - thermistor_44007_44034 = _mscl.WirelessTypes_thermistor_44007_44034 - thermistor_44006_44031 = _mscl.WirelessTypes_thermistor_44006_44031 - thermistor_44008_44032 = _mscl.WirelessTypes_thermistor_44008_44032 - thermistor_ysi_400 = _mscl.WirelessTypes_thermistor_ysi_400 - sampleRate_104170Hz = _mscl.WirelessTypes_sampleRate_104170Hz - sampleRate_78125Hz = _mscl.WirelessTypes_sampleRate_78125Hz - sampleRate_62500Hz = _mscl.WirelessTypes_sampleRate_62500Hz - sampleRate_25000Hz = _mscl.WirelessTypes_sampleRate_25000Hz - sampleRate_12500Hz = _mscl.WirelessTypes_sampleRate_12500Hz - sampleRate_3200Hz = _mscl.WirelessTypes_sampleRate_3200Hz - sampleRate_1600Hz = _mscl.WirelessTypes_sampleRate_1600Hz - sampleRate_800Hz = _mscl.WirelessTypes_sampleRate_800Hz - sampleRate_300Hz = _mscl.WirelessTypes_sampleRate_300Hz - sampleRate_1kHz = _mscl.WirelessTypes_sampleRate_1kHz - sampleRate_2kHz = _mscl.WirelessTypes_sampleRate_2kHz - sampleRate_3kHz = _mscl.WirelessTypes_sampleRate_3kHz - sampleRate_4kHz = _mscl.WirelessTypes_sampleRate_4kHz - sampleRate_5kHz = _mscl.WirelessTypes_sampleRate_5kHz - sampleRate_6kHz = _mscl.WirelessTypes_sampleRate_6kHz - sampleRate_7kHz = _mscl.WirelessTypes_sampleRate_7kHz - sampleRate_8kHz = _mscl.WirelessTypes_sampleRate_8kHz - sampleRate_9kHz = _mscl.WirelessTypes_sampleRate_9kHz - sampleRate_10kHz = _mscl.WirelessTypes_sampleRate_10kHz - sampleRate_20kHz = _mscl.WirelessTypes_sampleRate_20kHz - sampleRate_30kHz = _mscl.WirelessTypes_sampleRate_30kHz - sampleRate_40kHz = _mscl.WirelessTypes_sampleRate_40kHz - sampleRate_50kHz = _mscl.WirelessTypes_sampleRate_50kHz - sampleRate_60kHz = _mscl.WirelessTypes_sampleRate_60kHz - sampleRate_70kHz = _mscl.WirelessTypes_sampleRate_70kHz - sampleRate_80kHz = _mscl.WirelessTypes_sampleRate_80kHz - sampleRate_90kHz = _mscl.WirelessTypes_sampleRate_90kHz - sampleRate_100kHz = _mscl.WirelessTypes_sampleRate_100kHz - sampleRate_887Hz = _mscl.WirelessTypes_sampleRate_887Hz - sampleRate_8192Hz = _mscl.WirelessTypes_sampleRate_8192Hz - sampleRate_4096Hz = _mscl.WirelessTypes_sampleRate_4096Hz - sampleRate_2048Hz = _mscl.WirelessTypes_sampleRate_2048Hz - sampleRate_1024Hz = _mscl.WirelessTypes_sampleRate_1024Hz - sampleRate_512Hz = _mscl.WirelessTypes_sampleRate_512Hz - sampleRate_256Hz = _mscl.WirelessTypes_sampleRate_256Hz - sampleRate_128Hz = _mscl.WirelessTypes_sampleRate_128Hz - sampleRate_64Hz = _mscl.WirelessTypes_sampleRate_64Hz - sampleRate_32Hz = _mscl.WirelessTypes_sampleRate_32Hz - sampleRate_16Hz = _mscl.WirelessTypes_sampleRate_16Hz - sampleRate_8Hz = _mscl.WirelessTypes_sampleRate_8Hz - sampleRate_4Hz = _mscl.WirelessTypes_sampleRate_4Hz - sampleRate_2Hz = _mscl.WirelessTypes_sampleRate_2Hz - sampleRate_1Hz = _mscl.WirelessTypes_sampleRate_1Hz - sampleRate_2Sec = _mscl.WirelessTypes_sampleRate_2Sec - sampleRate_5Sec = _mscl.WirelessTypes_sampleRate_5Sec - sampleRate_10Sec = _mscl.WirelessTypes_sampleRate_10Sec - sampleRate_30Sec = _mscl.WirelessTypes_sampleRate_30Sec - sampleRate_1Min = _mscl.WirelessTypes_sampleRate_1Min - sampleRate_2Min = _mscl.WirelessTypes_sampleRate_2Min - sampleRate_5Min = _mscl.WirelessTypes_sampleRate_5Min - sampleRate_10Min = _mscl.WirelessTypes_sampleRate_10Min - sampleRate_30Min = _mscl.WirelessTypes_sampleRate_30Min - sampleRate_60Min = _mscl.WirelessTypes_sampleRate_60Min - sampleRate_24Hours = _mscl.WirelessTypes_sampleRate_24Hours - region_usa = _mscl.WirelessTypes_region_usa - region_europeanUnion = _mscl.WirelessTypes_region_europeanUnion - region_japan = _mscl.WirelessTypes_region_japan - region_other = _mscl.WirelessTypes_region_other - region_brazil = _mscl.WirelessTypes_region_brazil - region_china = _mscl.WirelessTypes_region_china - region_australia_newzealand = _mscl.WirelessTypes_region_australia_newzealand - region_singapore = _mscl.WirelessTypes_region_singapore - region_canada = _mscl.WirelessTypes_region_canada - region_southAfrica = _mscl.WirelessTypes_region_southAfrica - region_indonesia = _mscl.WirelessTypes_region_indonesia - region_taiwan = _mscl.WirelessTypes_region_taiwan - chSetting_inputRange = _mscl.WirelessTypes_chSetting_inputRange - chSetting_filterSettlingTime = _mscl.WirelessTypes_chSetting_filterSettlingTime - chSetting_thermocoupleType = _mscl.WirelessTypes_chSetting_thermocoupleType - chSetting_linearEquation = _mscl.WirelessTypes_chSetting_linearEquation - chSetting_unit = _mscl.WirelessTypes_chSetting_unit - chSetting_equationType = _mscl.WirelessTypes_chSetting_equationType - chSetting_hardwareOffset = _mscl.WirelessTypes_chSetting_hardwareOffset - chSetting_autoBalance = _mscl.WirelessTypes_chSetting_autoBalance - chSetting_gaugeFactor = _mscl.WirelessTypes_chSetting_gaugeFactor - chSetting_antiAliasingFilter = _mscl.WirelessTypes_chSetting_antiAliasingFilter - chSetting_legacyShuntCal = _mscl.WirelessTypes_chSetting_legacyShuntCal - chSetting_autoShuntCal = _mscl.WirelessTypes_chSetting_autoShuntCal - chSetting_lowPassFilter = _mscl.WirelessTypes_chSetting_lowPassFilter - chSetting_highPassFilter = _mscl.WirelessTypes_chSetting_highPassFilter - chSetting_tempSensorOptions = _mscl.WirelessTypes_chSetting_tempSensorOptions - chSetting_debounceFilter = _mscl.WirelessTypes_chSetting_debounceFilter - chSetting_pullUpResistor = _mscl.WirelessTypes_chSetting_pullUpResistor - chSetting_factoryLinearEq = _mscl.WirelessTypes_chSetting_factoryLinearEq - chSetting_factoryUnit = _mscl.WirelessTypes_chSetting_factoryUnit - chSetting_factoryEqType = _mscl.WirelessTypes_chSetting_factoryEqType - autobalance_success = _mscl.WirelessTypes_autobalance_success - autobalance_maybeInvalid = _mscl.WirelessTypes_autobalance_maybeInvalid - autobalance_notSupportedByNode = _mscl.WirelessTypes_autobalance_notSupportedByNode - autobalance_notSupportedByCh = _mscl.WirelessTypes_autobalance_notSupportedByCh - autobalance_targetOutOfRange = _mscl.WirelessTypes_autobalance_targetOutOfRange - autobalance_failed = _mscl.WirelessTypes_autobalance_failed - autobalance_legacyNone = _mscl.WirelessTypes_autobalance_legacyNone - autobalance_notComplete = _mscl.WirelessTypes_autobalance_notComplete - autocal_success = _mscl.WirelessTypes_autocal_success - autocal_maybeInvalid_applied = _mscl.WirelessTypes_autocal_maybeInvalid_applied - autocal_maybeInvalid_notApplied = _mscl.WirelessTypes_autocal_maybeInvalid_notApplied - autocal_notComplete = _mscl.WirelessTypes_autocal_notComplete - autocalError_none = _mscl.WirelessTypes_autocalError_none - autocalError_sensorDetached = _mscl.WirelessTypes_autocalError_sensorDetached - autocalError_sensorShorted = _mscl.WirelessTypes_autocalError_sensorShorted - autocalError_unsupportedChannel = _mscl.WirelessTypes_autocalError_unsupportedChannel - autocalError_baseHighRail = _mscl.WirelessTypes_autocalError_baseHighRail - autocalError_baseLowRail = _mscl.WirelessTypes_autocalError_baseLowRail - autocalError_shuntHighRail = _mscl.WirelessTypes_autocalError_shuntHighRail - autocalError_shuntLowRail = _mscl.WirelessTypes_autocalError_shuntLowRail - autocalError_ramp = _mscl.WirelessTypes_autocalError_ramp - autocalError_noShunt = _mscl.WirelessTypes_autocalError_noShunt - autocalError_timeout = _mscl.WirelessTypes_autocalError_timeout - fatigueMode_angleStrain = _mscl.WirelessTypes_fatigueMode_angleStrain - fatigueMode_distributedAngle = _mscl.WirelessTypes_fatigueMode_distributedAngle - fatigueMode_rawGaugeStrain = _mscl.WirelessTypes_fatigueMode_rawGaugeStrain - eventTrigger_ceiling = _mscl.WirelessTypes_eventTrigger_ceiling - eventTrigger_floor = _mscl.WirelessTypes_eventTrigger_floor - filter_33000hz = _mscl.WirelessTypes_filter_33000hz - filter_20000hz = _mscl.WirelessTypes_filter_20000hz - filter_10000hz = _mscl.WirelessTypes_filter_10000hz - filter_5222hz = _mscl.WirelessTypes_filter_5222hz - filter_5000hz = _mscl.WirelessTypes_filter_5000hz - filter_4416hz = _mscl.WirelessTypes_filter_4416hz - filter_4096hz = _mscl.WirelessTypes_filter_4096hz - filter_4000hz = _mscl.WirelessTypes_filter_4000hz - filter_2208hz = _mscl.WirelessTypes_filter_2208hz - filter_2048hz = _mscl.WirelessTypes_filter_2048hz - filter_2000hz = _mscl.WirelessTypes_filter_2000hz - filter_1104hz = _mscl.WirelessTypes_filter_1104hz - filter_1024hz = _mscl.WirelessTypes_filter_1024hz - filter_1000hz = _mscl.WirelessTypes_filter_1000hz - filter_800hz = _mscl.WirelessTypes_filter_800hz - filter_552hz = _mscl.WirelessTypes_filter_552hz - filter_512hz = _mscl.WirelessTypes_filter_512hz - filter_500hz = _mscl.WirelessTypes_filter_500hz - filter_418hz = _mscl.WirelessTypes_filter_418hz - filter_294hz = _mscl.WirelessTypes_filter_294hz - filter_256hz = _mscl.WirelessTypes_filter_256hz - filter_250hz = _mscl.WirelessTypes_filter_250hz - filter_209hz = _mscl.WirelessTypes_filter_209hz - filter_200hz = _mscl.WirelessTypes_filter_200hz - filter_147hz = _mscl.WirelessTypes_filter_147hz - filter_128hz = _mscl.WirelessTypes_filter_128hz - filter_125hz = _mscl.WirelessTypes_filter_125hz - filter_104hz = _mscl.WirelessTypes_filter_104hz - filter_100hz = _mscl.WirelessTypes_filter_100hz - filter_62hz = _mscl.WirelessTypes_filter_62hz - filter_52hz = _mscl.WirelessTypes_filter_52hz - filter_50hz = _mscl.WirelessTypes_filter_50hz - filter_31hz = _mscl.WirelessTypes_filter_31hz - filter_26hz = _mscl.WirelessTypes_filter_26hz - filter_12_66hz = _mscl.WirelessTypes_filter_12_66hz - filter_2_6hz = _mscl.WirelessTypes_filter_2_6hz - highPass_off = _mscl.WirelessTypes_highPass_off - highPass_auto = _mscl.WirelessTypes_highPass_auto - cfc_10 = _mscl.WirelessTypes_cfc_10 - cfc_21 = _mscl.WirelessTypes_cfc_21 - cfc_60 = _mscl.WirelessTypes_cfc_60 - storageLimit_overwrite = _mscl.WirelessTypes_storageLimit_overwrite - storageLimit_stop = _mscl.WirelessTypes_storageLimit_stop - range_14_545mV = _mscl.WirelessTypes_range_14_545mV - range_10_236mV = _mscl.WirelessTypes_range_10_236mV - range_7_608mV = _mscl.WirelessTypes_range_7_608mV - range_4_046mV = _mscl.WirelessTypes_range_4_046mV - range_2_008mV = _mscl.WirelessTypes_range_2_008mV - range_1_511mV = _mscl.WirelessTypes_range_1_511mV - range_1_001mV = _mscl.WirelessTypes_range_1_001mV - range_0_812mV = _mscl.WirelessTypes_range_0_812mV - range_75mV = _mscl.WirelessTypes_range_75mV - range_37_5mV = _mscl.WirelessTypes_range_37_5mV - range_18_75mV = _mscl.WirelessTypes_range_18_75mV - range_9_38mV = _mscl.WirelessTypes_range_9_38mV - range_4_69mV = _mscl.WirelessTypes_range_4_69mV - range_2_34mV = _mscl.WirelessTypes_range_2_34mV - range_1_17mV = _mscl.WirelessTypes_range_1_17mV - range_0_586mV = _mscl.WirelessTypes_range_0_586mV - range_70mV = _mscl.WirelessTypes_range_70mV - range_35mV = _mscl.WirelessTypes_range_35mV - range_17_5mV = _mscl.WirelessTypes_range_17_5mV - range_8_75mV = _mscl.WirelessTypes_range_8_75mV - range_4_38mV = _mscl.WirelessTypes_range_4_38mV - range_2_19mV = _mscl.WirelessTypes_range_2_19mV - range_1_09mV = _mscl.WirelessTypes_range_1_09mV - range_0_547mV = _mscl.WirelessTypes_range_0_547mV - range_44mV = _mscl.WirelessTypes_range_44mV - range_30mV = _mscl.WirelessTypes_range_30mV - range_20mV = _mscl.WirelessTypes_range_20mV - range_15mV = _mscl.WirelessTypes_range_15mV - range_10mV = _mscl.WirelessTypes_range_10mV - range_5mV = _mscl.WirelessTypes_range_5mV - range_3mV = _mscl.WirelessTypes_range_3mV - range_2mV = _mscl.WirelessTypes_range_2mV - range_6mV = _mscl.WirelessTypes_range_6mV - range_1mV = _mscl.WirelessTypes_range_1mV - range_50mV = _mscl.WirelessTypes_range_50mV - range_2_5mV = _mscl.WirelessTypes_range_2_5mV - range_0_6mV = _mscl.WirelessTypes_range_0_6mV - range_0_35mV = _mscl.WirelessTypes_range_0_35mV - range_0_1mV = _mscl.WirelessTypes_range_0_1mV - range_156mV = _mscl.WirelessTypes_range_156mV - range_78_1mV = _mscl.WirelessTypes_range_78_1mV - range_39mV = _mscl.WirelessTypes_range_39mV - range_19_5mV = _mscl.WirelessTypes_range_19_5mV - range_9_76mV = _mscl.WirelessTypes_range_9_76mV - range_4_88mV = _mscl.WirelessTypes_range_4_88mV - range_2_44mV = _mscl.WirelessTypes_range_2_44mV - range_1_22mV = _mscl.WirelessTypes_range_1_22mV - range_10_24V = _mscl.WirelessTypes_range_10_24V - range_5_12V = _mscl.WirelessTypes_range_5_12V - range_2_56V = _mscl.WirelessTypes_range_2_56V - range_0to10_24V = _mscl.WirelessTypes_range_0to10_24V - range_0to5_12V = _mscl.WirelessTypes_range_0to5_12V - range_1_147V = _mscl.WirelessTypes_range_1_147V - range_585mV = _mscl.WirelessTypes_range_585mV - range_292_5mV = _mscl.WirelessTypes_range_292_5mV - range_146_25mV = _mscl.WirelessTypes_range_146_25mV - range_73_13mV = _mscl.WirelessTypes_range_73_13mV - range_36_56mV = _mscl.WirelessTypes_range_36_56mV - range_18_23mV = _mscl.WirelessTypes_range_18_23mV - range_9_14mV = _mscl.WirelessTypes_range_9_14mV - range_5_74V = _mscl.WirelessTypes_range_5_74V - range_2_93V = _mscl.WirelessTypes_range_2_93V - range_1_46V = _mscl.WirelessTypes_range_1_46V - range_731_3mV = _mscl.WirelessTypes_range_731_3mV - range_365_6mV = _mscl.WirelessTypes_range_365_6mV - range_182_8mV = _mscl.WirelessTypes_range_182_8mV - range_91_4mV = _mscl.WirelessTypes_range_91_4mV - range_45_7mV = _mscl.WirelessTypes_range_45_7mV - range_62_5mV = _mscl.WirelessTypes_range_62_5mV - range_31_25mV = _mscl.WirelessTypes_range_31_25mV - range_15_63mV = _mscl.WirelessTypes_range_15_63mV - range_7_81mV = _mscl.WirelessTypes_range_7_81mV - range_3_91mV = _mscl.WirelessTypes_range_3_91mV - range_1_95mV = _mscl.WirelessTypes_range_1_95mV - range_0_976mV = _mscl.WirelessTypes_range_0_976mV - range_0_488mV = _mscl.WirelessTypes_range_0_488mV - range_2G = _mscl.WirelessTypes_range_2G - range_4G = _mscl.WirelessTypes_range_4G - range_8G = _mscl.WirelessTypes_range_8G - range_10G = _mscl.WirelessTypes_range_10G - range_20G = _mscl.WirelessTypes_range_20G - range_40G = _mscl.WirelessTypes_range_40G - range_2_5V = _mscl.WirelessTypes_range_2_5V - range_1_25V = _mscl.WirelessTypes_range_1_25V - range_625mV = _mscl.WirelessTypes_range_625mV - range_312_5mV = _mscl.WirelessTypes_range_312_5mV - range_156_25mV = _mscl.WirelessTypes_range_156_25mV - range_78_125mV = _mscl.WirelessTypes_range_78_125mV - range_39_063mV = _mscl.WirelessTypes_range_39_063mV - range_19_532mV = _mscl.WirelessTypes_range_19_532mV - range_0to2_5V = _mscl.WirelessTypes_range_0to2_5V - range_0to1_25V = _mscl.WirelessTypes_range_0to1_25V - range_0to625mV = _mscl.WirelessTypes_range_0to625mV - range_0to312_5mV = _mscl.WirelessTypes_range_0to312_5mV - range_0to156_25mV = _mscl.WirelessTypes_range_0to156_25mV - range_0to78_125mV = _mscl.WirelessTypes_range_0to78_125mV - range_0to39_063mV = _mscl.WirelessTypes_range_0to39_063mV - range_0to19_532mV = _mscl.WirelessTypes_range_0to19_532mV - range_9_766mV = _mscl.WirelessTypes_range_9_766mV - range_1_35V_or_0to1000000ohm = _mscl.WirelessTypes_range_1_35V_or_0to1000000ohm - range_1_25V_or_0to10000ohm = _mscl.WirelessTypes_range_1_25V_or_0to10000ohm - range_625mV_or_0to3333_3ohm = _mscl.WirelessTypes_range_625mV_or_0to3333_3ohm - range_312_5mV_or_0to1428_6ohm = _mscl.WirelessTypes_range_312_5mV_or_0to1428_6ohm - range_156_25mV_or_0to666_67ohm = _mscl.WirelessTypes_range_156_25mV_or_0to666_67ohm - range_78_125mV_or_0to322_58ohm = _mscl.WirelessTypes_range_78_125mV_or_0to322_58ohm - range_39_0625mV_or_0to158_73ohm = _mscl.WirelessTypes_range_39_0625mV_or_0to158_73ohm - range_19_5313mV_or_0to78_74ohm = _mscl.WirelessTypes_range_19_5313mV_or_0to78_74ohm - range_750mV = _mscl.WirelessTypes_range_750mV - range_375mV = _mscl.WirelessTypes_range_375mV - range_187_5mV = _mscl.WirelessTypes_range_187_5mV - range_93_75mV = _mscl.WirelessTypes_range_93_75mV - range_46_875mV = _mscl.WirelessTypes_range_46_875mV - range_23_438mV = _mscl.WirelessTypes_range_23_438mV - range_11_719mV = _mscl.WirelessTypes_range_11_719mV - range_5_859mV = _mscl.WirelessTypes_range_5_859mV - range_0to1_5V = _mscl.WirelessTypes_range_0to1_5V - range_0to750mV = _mscl.WirelessTypes_range_0to750mV - range_0to375mV = _mscl.WirelessTypes_range_0to375mV - range_0to187_5mV = _mscl.WirelessTypes_range_0to187_5mV - range_0to93_75mV = _mscl.WirelessTypes_range_0to93_75mV - range_0to46_875mV = _mscl.WirelessTypes_range_0to46_875mV - range_0to23_438mV = _mscl.WirelessTypes_range_0to23_438mV - range_0to11_719mV = _mscl.WirelessTypes_range_0to11_719mV - range_1_5V = _mscl.WirelessTypes_range_1_5V - range_1_35V = _mscl.WirelessTypes_range_1_35V - range_0to1000000ohm = _mscl.WirelessTypes_range_0to1000000ohm - range_0to10000ohm = _mscl.WirelessTypes_range_0to10000ohm - range_0to3333_3ohm = _mscl.WirelessTypes_range_0to3333_3ohm - range_0to1428_6ohm = _mscl.WirelessTypes_range_0to1428_6ohm - range_0to666_67ohm = _mscl.WirelessTypes_range_0to666_67ohm - range_0to322_58ohm = _mscl.WirelessTypes_range_0to322_58ohm - range_0to158_73ohm = _mscl.WirelessTypes_range_0to158_73ohm - range_0to78_74ohm = _mscl.WirelessTypes_range_0to78_74ohm - range_39_0625mV = _mscl.WirelessTypes_range_39_0625mV - range_19_5313mV = _mscl.WirelessTypes_range_19_5313mV - range_125mV = _mscl.WirelessTypes_range_125mV - range_invalid = _mscl.WirelessTypes_range_invalid - dataMode_none = _mscl.WirelessTypes_dataMode_none - dataMode_raw = _mscl.WirelessTypes_dataMode_raw - dataMode_derived = _mscl.WirelessTypes_dataMode_derived - dataMode_raw_derived = _mscl.WirelessTypes_dataMode_raw_derived - derivedCategory_rms = _mscl.WirelessTypes_derivedCategory_rms - derivedCategory_peakToPeak = _mscl.WirelessTypes_derivedCategory_peakToPeak - derivedCategory_velocity = _mscl.WirelessTypes_derivedCategory_velocity - derivedCategory_crestFactor = _mscl.WirelessTypes_derivedCategory_crestFactor - derivedCategory_mean = _mscl.WirelessTypes_derivedCategory_mean - derivedAlgId_rms = _mscl.WirelessTypes_derivedAlgId_rms - derivedAlgId_peakToPeak = _mscl.WirelessTypes_derivedAlgId_peakToPeak - derivedAlgId_ips = _mscl.WirelessTypes_derivedAlgId_ips - derivedAlgId_crestFactor = _mscl.WirelessTypes_derivedAlgId_crestFactor - derivedAlgId_mean = _mscl.WirelessTypes_derivedAlgId_mean - derivedAlgId_mmps = _mscl.WirelessTypes_derivedAlgId_mmps - derivedVelocity_ips = _mscl.WirelessTypes_derivedVelocity_ips - derivedVelocity_mmps = _mscl.WirelessTypes_derivedVelocity_mmps - commProtocol_lxrs = _mscl.WirelessTypes_commProtocol_lxrs - commProtocol_lxrsPlus = _mscl.WirelessTypes_commProtocol_lxrsPlus - voltage_5120mV = _mscl.WirelessTypes_voltage_5120mV - voltage_5000mV = _mscl.WirelessTypes_voltage_5000mV - voltage_4096mV = _mscl.WirelessTypes_voltage_4096mV - voltage_3000mV = _mscl.WirelessTypes_voltage_3000mV - voltage_2800mV = _mscl.WirelessTypes_voltage_2800mV - voltage_2750mV = _mscl.WirelessTypes_voltage_2750mV - voltage_2700mV = _mscl.WirelessTypes_voltage_2700mV - voltage_2500mV = _mscl.WirelessTypes_voltage_2500mV - voltage_1500mV = _mscl.WirelessTypes_voltage_1500mV - sensorOutputMode_accel = _mscl.WirelessTypes_sensorOutputMode_accel - sensorOutputMode_tilt = _mscl.WirelessTypes_sensorOutputMode_tilt - batteryStatus_good = _mscl.WirelessTypes_batteryStatus_good - batteryStatus_low = _mscl.WirelessTypes_batteryStatus_low - batteryStatus_critical = _mscl.WirelessTypes_batteryStatus_critical - externalPower_notConnected = _mscl.WirelessTypes_externalPower_notConnected - externalPower_connected = _mscl.WirelessTypes_externalPower_connected - delayVersion_v1 = _mscl.WirelessTypes_delayVersion_v1 - delayVersion_v2 = _mscl.WirelessTypes_delayVersion_v2 - delayVersion_v3 = _mscl.WirelessTypes_delayVersion_v3 - delayVersion_v4 = _mscl.WirelessTypes_delayVersion_v4 - UNKNOWN_RSSI = _mscl.WirelessTypes_UNKNOWN_RSSI - - def __init__(self): - _mscl.WirelessTypes_swiginit(self, _mscl.new_WirelessTypes()) - __swig_destroy__ = _mscl.delete_WirelessTypes - -# Register WirelessTypes in _mscl: -_mscl.WirelessTypes_swigregister(WirelessTypes) - -class SampleRate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - rateType_seconds = _mscl.SampleRate_rateType_seconds - rateType_hertz = _mscl.SampleRate_rateType_hertz - rateType_event = _mscl.SampleRate_rateType_event - rateType_decimation = _mscl.SampleRate_rateType_decimation - - def __init__(self, *args): - _mscl.SampleRate_swiginit(self, _mscl.new_SampleRate(*args)) - - def __str__(self): - return _mscl.SampleRate___str__(self) - - def prettyStr(self): - return _mscl.SampleRate_prettyStr(self) - - def samplePeriod(self): - return _mscl.SampleRate_samplePeriod(self) - - def samplesPerSecond(self): - return _mscl.SampleRate_samplesPerSecond(self) - - def rateType(self): - return _mscl.SampleRate_rateType(self) - - def samples(self): - return _mscl.SampleRate_samples(self) - - def toWirelessSampleRate(self): - return _mscl.SampleRate_toWirelessSampleRate(self) - - def toDecimation(self, sampleRateBase): - return _mscl.SampleRate_toDecimation(self, sampleRateBase) - - @staticmethod - def Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - - @staticmethod - def KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - - @staticmethod - def Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - - @staticmethod - def Event(): - return _mscl.SampleRate_Event() - - @staticmethod - def Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - - @staticmethod - def FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - - @staticmethod - def FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - __swig_destroy__ = _mscl.delete_SampleRate - -# Register SampleRate in _mscl: -_mscl.SampleRate_swigregister(SampleRate) - -def SampleRate_Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - -def SampleRate_KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - -def SampleRate_Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - -def SampleRate_Event(): - return _mscl.SampleRate_Event() - -def SampleRate_Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - -def SampleRate_FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - -def SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - -class Matrix(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Matrix_swiginit(self, _mscl.new_Matrix()) - - def valuesType(self): - return _mscl.Matrix_valuesType(self) - - def rows(self): - return _mscl.Matrix_rows(self) - - def columns(self): - return _mscl.Matrix_columns(self) - - def as_doubleAt(self, row, column): - return _mscl.Matrix_as_doubleAt(self, row, column) - - def as_floatAt(self, row, column): - return _mscl.Matrix_as_floatAt(self, row, column) - - def as_uint16At(self, row, column): - return _mscl.Matrix_as_uint16At(self, row, column) - - def as_uint8At(self, row, column): - return _mscl.Matrix_as_uint8At(self, row, column) - - def __str__(self): - return _mscl.Matrix___str__(self) - __swig_destroy__ = _mscl.delete_Matrix - -# Register Matrix in _mscl: -_mscl.Matrix_swigregister(Matrix) - -class Vector(Matrix): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Vector_swiginit(self, _mscl.new_Vector()) - - def size(self): - return _mscl.Vector_size(self) - - def as_doubleAt(self, index): - return _mscl.Vector_as_doubleAt(self, index) - - def as_floatAt(self, index): - return _mscl.Vector_as_floatAt(self, index) - - def as_uint16At(self, index): - return _mscl.Vector_as_uint16At(self, index) - - def as_uint8At(self, index): - return _mscl.Vector_as_uint8At(self, index) - __swig_destroy__ = _mscl.delete_Vector - -# Register Vector in _mscl: -_mscl.Vector_swigregister(Vector) - -class Bitfield(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Bitfield_swiginit(self, _mscl.new_Bitfield(*args)) - __swig_destroy__ = _mscl.delete_Bitfield - - def value(self, *args): - return _mscl.Bitfield_value(self, *args) - - def get(self, mask, shiftToLsb=True): - return _mscl.Bitfield_get(self, mask, shiftToLsb) - - def set(self, mask, value, shiftRequired=True): - return _mscl.Bitfield_set(self, mask, value, shiftRequired) - - def checkBit(self, bitIndex, indexBase=0): - return _mscl.Bitfield_checkBit(self, bitIndex, indexBase) - - def setBit(self, bitIndex, value, indexBase=0): - return _mscl.Bitfield_setBit(self, bitIndex, value, indexBase) - -# Register Bitfield in _mscl: -_mscl.Bitfield_swigregister(Bitfield) - -class StructuralHealth(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, angle, uptime, damage, processingRate, histogram): - _mscl.StructuralHealth_swiginit(self, _mscl.new_StructuralHealth(angle, uptime, damage, processingRate, histogram)) - - def angle(self): - return _mscl.StructuralHealth_angle(self) - - def uptime(self): - return _mscl.StructuralHealth_uptime(self) - - def damage(self): - return _mscl.StructuralHealth_damage(self) - - def processingRate(self): - return _mscl.StructuralHealth_processingRate(self) - - def histogram(self): - return _mscl.StructuralHealth_histogram(self) - __swig_destroy__ = _mscl.delete_StructuralHealth - -# Register StructuralHealth in _mscl: -_mscl.StructuralHealth_swigregister(StructuralHealth) - -class DataPoint(Value): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - channelPropertyId_angle = _mscl.DataPoint_channelPropertyId_angle - channelPropertyId_derivedFrom = _mscl.DataPoint_channelPropertyId_derivedFrom - channelPropertyId_derivedAlgorithmId = _mscl.DataPoint_channelPropertyId_derivedAlgorithmId - __swig_destroy__ = _mscl.delete_DataPoint - - def channelProperty(self, id): - return _mscl.DataPoint_channelProperty(self, id) - - def as_Vector(self): - return _mscl.DataPoint_as_Vector(self) - - def as_Matrix(self): - return _mscl.DataPoint_as_Matrix(self) - - def as_Timestamp(self): - return _mscl.DataPoint_as_Timestamp(self) - - def as_Bytes(self): - return _mscl.DataPoint_as_Bytes(self) - - def as_StructuralHealth(self): - return _mscl.DataPoint_as_StructuralHealth(self) - - def as_RfSweep(self): - return _mscl.DataPoint_as_RfSweep(self) - - def as_string(self): - return _mscl.DataPoint_as_string(self) - -# Register DataPoint in _mscl: -_mscl.DataPoint_swigregister(DataPoint) - -class ConfigIssue(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONFIG_SAMPLING_MODE = _mscl.ConfigIssue_CONFIG_SAMPLING_MODE - CONFIG_ACTIVE_CHANNELS = _mscl.ConfigIssue_CONFIG_ACTIVE_CHANNELS - CONFIG_SAMPLE_RATE = _mscl.ConfigIssue_CONFIG_SAMPLE_RATE - CONFIG_SWEEPS = _mscl.ConfigIssue_CONFIG_SWEEPS - CONFIG_UNLIMITED_DURATION = _mscl.ConfigIssue_CONFIG_UNLIMITED_DURATION - CONFIG_DATA_FORMAT = _mscl.ConfigIssue_CONFIG_DATA_FORMAT - CONFIG_DATA_COLLECTION_METHOD = _mscl.ConfigIssue_CONFIG_DATA_COLLECTION_METHOD - CONFIG_TIME_BETWEEN_BURSTS = _mscl.ConfigIssue_CONFIG_TIME_BETWEEN_BURSTS - CONFIG_THERMOCOUPLE_TYPE = _mscl.ConfigIssue_CONFIG_THERMOCOUPLE_TYPE - CONFIG_FILTER_SETTLING_TIME = _mscl.ConfigIssue_CONFIG_FILTER_SETTLING_TIME - CONFIG_BUTTON = _mscl.ConfigIssue_CONFIG_BUTTON - CONFIG_ANALOG_PAIR = _mscl.ConfigIssue_CONFIG_ANALOG_PAIR - CONFIG_INPUT_RANGE = _mscl.ConfigIssue_CONFIG_INPUT_RANGE - CONFIG_INACTIVITY_TIMEOUT = _mscl.ConfigIssue_CONFIG_INACTIVITY_TIMEOUT - CONFIG_CHECK_RADIO_INTERVAL = _mscl.ConfigIssue_CONFIG_CHECK_RADIO_INTERVAL - CONFIG_LOST_BEACON_TIMEOUT = _mscl.ConfigIssue_CONFIG_LOST_BEACON_TIMEOUT - CONFIG_DEFAULT_MODE = _mscl.ConfigIssue_CONFIG_DEFAULT_MODE - CONFIG_TRANSMIT_POWER = _mscl.ConfigIssue_CONFIG_TRANSMIT_POWER - CONFIG_LINEAR_EQUATION = _mscl.ConfigIssue_CONFIG_LINEAR_EQUATION - CONFIG_FATIGUE = _mscl.ConfigIssue_CONFIG_FATIGUE - CONFIG_FATIGUE_MODE = _mscl.ConfigIssue_CONFIG_FATIGUE_MODE - CONFIG_FATIGUE_ANGLE_ID = _mscl.ConfigIssue_CONFIG_FATIGUE_ANGLE_ID - CONFIG_FATIGUE_SN_CURVE = _mscl.ConfigIssue_CONFIG_FATIGUE_SN_CURVE - CONFIG_FATIGUE_DIST_NUM_ANGLES = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_NUM_ANGLES - CONFIG_FATIGUE_DIST_ANGLE = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_ANGLE - CONFIG_HISTOGRAM = _mscl.ConfigIssue_CONFIG_HISTOGRAM - CONFIG_HISTOGRAM_TX_RATE = _mscl.ConfigIssue_CONFIG_HISTOGRAM_TX_RATE - CONFIG_HARDWARE_OFFSET = _mscl.ConfigIssue_CONFIG_HARDWARE_OFFSET - CONFIG_ACTIVITY_SENSE = _mscl.ConfigIssue_CONFIG_ACTIVITY_SENSE - CONFIG_GAUGE_FACTOR = _mscl.ConfigIssue_CONFIG_GAUGE_FACTOR - CONFIG_EVENT_TRIGGER = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER - CONFIG_EVENT_TRIGGER_DURATION = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_DURATION - CONFIG_EVENT_TRIGGER_MASK = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_MASK - CONFIG_DIAGNOSTIC_INTERVAL = _mscl.ConfigIssue_CONFIG_DIAGNOSTIC_INTERVAL - CONFIG_ANTI_ALIASING_FILTER = _mscl.ConfigIssue_CONFIG_ANTI_ALIASING_FILTER - CONFIG_STORAGE_LIMIT_MODE = _mscl.ConfigIssue_CONFIG_STORAGE_LIMIT_MODE - CONFIG_SENSOR_DELAY = _mscl.ConfigIssue_CONFIG_SENSOR_DELAY - CONFIG_LOW_PASS_FILTER = _mscl.ConfigIssue_CONFIG_LOW_PASS_FILTER - CONFIG_DATA_MODE = _mscl.ConfigIssue_CONFIG_DATA_MODE - CONFIG_DERIVED_DATA_RATE = _mscl.ConfigIssue_CONFIG_DERIVED_DATA_RATE - CONFIG_DERIVED_MASK_RMS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_RMS - CONFIG_DERIVED_MASK_P2P = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_P2P - CONFIG_DERIVED_MASK_IPS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_IPS - CONFIG_DERIVED_MASK_CREST_FACTOR = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_CREST_FACTOR - CONFIG_HIGH_PASS_FILTER = _mscl.ConfigIssue_CONFIG_HIGH_PASS_FILTER - CONFIG_DERIVED_MASK = _mscl.ConfigIssue_CONFIG_DERIVED_MASK - CONFIG_COMM_PROTOCOL = _mscl.ConfigIssue_CONFIG_COMM_PROTOCOL - CONFIG_DERIVED_MASK_MEAN = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_MEAN - CONFIG_GAUGE_RESISTANCE = _mscl.ConfigIssue_CONFIG_GAUGE_RESISTANCE - CONFIG_NUM_ACTIVE_GAUGES = _mscl.ConfigIssue_CONFIG_NUM_ACTIVE_GAUGES - CONFIG_TEMP_SENSOR_OPTS = _mscl.ConfigIssue_CONFIG_TEMP_SENSOR_OPTS - CONFIG_DEBOUNCE_FILTER = _mscl.ConfigIssue_CONFIG_DEBOUNCE_FILTER - CONFIG_PULLUP_RESISTOR = _mscl.ConfigIssue_CONFIG_PULLUP_RESISTOR - CONFIG_EXCITATION_VOLTAGE = _mscl.ConfigIssue_CONFIG_EXCITATION_VOLTAGE - CONFIG_DERIVED_UNIT = _mscl.ConfigIssue_CONFIG_DERIVED_UNIT - CONFIG_SENSOR_OUTPUT_MODE = _mscl.ConfigIssue_CONFIG_SENSOR_OUTPUT_MODE - CONFIG_LOW_BATTERY_THRESHOLD = _mscl.ConfigIssue_CONFIG_LOW_BATTERY_THRESHOLD - CONFIG_CFC_FILTER = _mscl.ConfigIssue_CONFIG_CFC_FILTER - - def __init__(self, *args): - _mscl.ConfigIssue_swiginit(self, _mscl.new_ConfigIssue(*args)) - - def id(self): - return _mscl.ConfigIssue_id(self) - - def description(self): - return _mscl.ConfigIssue_description(self) - - def isChannelGroupIssue(self): - return _mscl.ConfigIssue_isChannelGroupIssue(self) - - def channelMask(self): - return _mscl.ConfigIssue_channelMask(self) - __swig_destroy__ = _mscl.delete_ConfigIssue - -# Register ConfigIssue in _mscl: -_mscl.ConfigIssue_swigregister(ConfigIssue) - -class ActivitySense(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ActivitySense_swiginit(self, _mscl.new_ActivitySense()) - - def enabled(self, *args): - return _mscl.ActivitySense_enabled(self, *args) - - def activityThreshold(self, *args): - return _mscl.ActivitySense_activityThreshold(self, *args) - - def inactivityThreshold(self, *args): - return _mscl.ActivitySense_inactivityThreshold(self, *args) - - def activityTime(self, *args): - return _mscl.ActivitySense_activityTime(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.ActivitySense_inactivityTimeout(self, *args) - __swig_destroy__ = _mscl.delete_ActivitySense - -# Register ActivitySense in _mscl: -_mscl.ActivitySense_swigregister(ActivitySense) - -class Trigger(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Trigger_swiginit(self, _mscl.new_Trigger(*args)) - - def channelNumber(self, *args): - return _mscl.Trigger_channelNumber(self, *args) - - def triggerType(self, *args): - return _mscl.Trigger_triggerType(self, *args) - - def triggerValue(self, *args): - return _mscl.Trigger_triggerValue(self, *args) - __swig_destroy__ = _mscl.delete_Trigger - -# Register Trigger in _mscl: -_mscl.Trigger_swigregister(Trigger) - -class EventTriggerOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerOptions_swiginit(self, _mscl.new_EventTriggerOptions()) - - def triggerMask(self, *args): - return _mscl.EventTriggerOptions_triggerMask(self, *args) - - def anyTriggersEnabled(self): - return _mscl.EventTriggerOptions_anyTriggersEnabled(self) - - def triggerEnabled(self, triggerIndex): - return _mscl.EventTriggerOptions_triggerEnabled(self, triggerIndex) - - def enableTrigger(self, triggerIndex, enable=True): - return _mscl.EventTriggerOptions_enableTrigger(self, triggerIndex, enable) - - def preDuration(self, *args): - return _mscl.EventTriggerOptions_preDuration(self, *args) - - def postDuration(self, *args): - return _mscl.EventTriggerOptions_postDuration(self, *args) - - def trigger(self, *args): - return _mscl.EventTriggerOptions_trigger(self, *args) - - def triggers(self): - return _mscl.EventTriggerOptions_triggers(self) - __swig_destroy__ = _mscl.delete_EventTriggerOptions - -# Register EventTriggerOptions in _mscl: -_mscl.EventTriggerOptions_swigregister(EventTriggerOptions) - -class SnCurveSegment(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.SnCurveSegment_swiginit(self, _mscl.new_SnCurveSegment(*args)) - - def m(self, *args): - return _mscl.SnCurveSegment_m(self, *args) - - def logA(self, *args): - return _mscl.SnCurveSegment_logA(self, *args) - __swig_destroy__ = _mscl.delete_SnCurveSegment - -# Register SnCurveSegment in _mscl: -_mscl.SnCurveSegment_swigregister(SnCurveSegment) - -class FatigueOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FatigueOptions_swiginit(self, _mscl.new_FatigueOptions()) - - def youngsModulus(self, *args): - return _mscl.FatigueOptions_youngsModulus(self, *args) - - def poissonsRatio(self, *args): - return _mscl.FatigueOptions_poissonsRatio(self, *args) - - def peakValleyThreshold(self, *args): - return _mscl.FatigueOptions_peakValleyThreshold(self, *args) - - def debugMode(self, *args): - return _mscl.FatigueOptions_debugMode(self, *args) - - def damageAngles(self): - return _mscl.FatigueOptions_damageAngles(self) - - def damageAngle(self, *args): - return _mscl.FatigueOptions_damageAngle(self, *args) - - def snCurveSegments(self): - return _mscl.FatigueOptions_snCurveSegments(self) - - def snCurveSegment(self, *args): - return _mscl.FatigueOptions_snCurveSegment(self, *args) - - def fatigueMode(self, *args): - return _mscl.FatigueOptions_fatigueMode(self, *args) - - def distributedAngleMode_numAngles(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_numAngles(self, *args) - - def distributedAngleMode_lowerBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_lowerBound(self, *args) - - def distributedAngleMode_upperBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_upperBound(self, *args) - - def histogramEnable(self, *args): - return _mscl.FatigueOptions_histogramEnable(self, *args) - __swig_destroy__ = _mscl.delete_FatigueOptions - -# Register FatigueOptions in _mscl: -_mscl.FatigueOptions_swigregister(FatigueOptions) - -class HistogramOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HistogramOptions_swiginit(self, _mscl.new_HistogramOptions()) - - def transmitRate(self, *args): - return _mscl.HistogramOptions_transmitRate(self, *args) - - def binsStart(self, *args): - return _mscl.HistogramOptions_binsStart(self, *args) - - def binsSize(self, *args): - return _mscl.HistogramOptions_binsSize(self, *args) - __swig_destroy__ = _mscl.delete_HistogramOptions - -# Register HistogramOptions in _mscl: -_mscl.HistogramOptions_swigregister(HistogramOptions) - -class InputRangeEntry(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - inputRange = property(_mscl.InputRangeEntry_inputRange_get, _mscl.InputRangeEntry_inputRange_set) - hasGain = property(_mscl.InputRangeEntry_hasGain_get, _mscl.InputRangeEntry_hasGain_set) - gain = property(_mscl.InputRangeEntry_gain_get, _mscl.InputRangeEntry_gain_set) - - def __init__(self, *args): - _mscl.InputRangeEntry_swiginit(self, _mscl.new_InputRangeEntry(*args)) - __swig_destroy__ = _mscl.delete_InputRangeEntry - -# Register InputRangeEntry in _mscl: -_mscl.InputRangeEntry_swigregister(InputRangeEntry) - -class TempSensorOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - - @staticmethod - def RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - - @staticmethod - def Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - - def transducerType(self): - return _mscl.TempSensorOptions_transducerType(self) - - def thermocoupleType(self): - return _mscl.TempSensorOptions_thermocoupleType(self) - - def rtdType(self): - return _mscl.TempSensorOptions_rtdType(self) - - def rtdWireType(self): - return _mscl.TempSensorOptions_rtdWireType(self) - - def thermistorType(self): - return _mscl.TempSensorOptions_thermistorType(self) - __swig_destroy__ = _mscl.delete_TempSensorOptions - -# Register TempSensorOptions in _mscl: -_mscl.TempSensorOptions_swigregister(TempSensorOptions) - -def TempSensorOptions_Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - -def TempSensorOptions_RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - -def TempSensorOptions_Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - -class WirelessModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_vLink_legacy = _mscl.WirelessModels_node_vLink_legacy - node_cfBearingTempLink = _mscl.WirelessModels_node_cfBearingTempLink - node_envLink_pro = _mscl.WirelessModels_node_envLink_pro - node_gLink_2g = _mscl.WirelessModels_node_gLink_2g - node_gLink_10g = _mscl.WirelessModels_node_gLink_10g - node_gLinkII_cust_in = _mscl.WirelessModels_node_gLinkII_cust_in - node_gLinkII_2g_in = _mscl.WirelessModels_node_gLinkII_2g_in - node_gLinkII_10g_in = _mscl.WirelessModels_node_gLinkII_10g_in - node_gLinkII_cust_ex = _mscl.WirelessModels_node_gLinkII_cust_ex - node_gLinkII_2g_ex = _mscl.WirelessModels_node_gLinkII_2g_ex - node_gLinkII_10g_ex = _mscl.WirelessModels_node_gLinkII_10g_ex - node_gLink_rgd_10g = _mscl.WirelessModels_node_gLink_rgd_10g - node_gLink_200_8g = _mscl.WirelessModels_node_gLink_200_8g - node_gLink_200_40g = _mscl.WirelessModels_node_gLink_200_40g - node_gLink_200_8g_oem = _mscl.WirelessModels_node_gLink_200_8g_oem - node_gLink_200_40g_oem = _mscl.WirelessModels_node_gLink_200_40g_oem - node_gLink_200_8g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_8g_oem_mmcx - node_gLink_200_40g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_40g_oem_mmcx - node_gLink_200_8g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_8g_oem_u_fl - node_gLink_200_40g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_40g_oem_u_fl - node_gLink_200_r = _mscl.WirelessModels_node_gLink_200_r - node_sgLink_oem_S = _mscl.WirelessModels_node_sgLink_oem_S - node_sgLink = _mscl.WirelessModels_node_sgLink - node_sgLink200 = _mscl.WirelessModels_node_sgLink200 - node_sgLink200_hbridge_1K = _mscl.WirelessModels_node_sgLink200_hbridge_1K - node_sgLink200_hbridge_350 = _mscl.WirelessModels_node_sgLink200_hbridge_350 - node_sgLink200_hbridge_120 = _mscl.WirelessModels_node_sgLink200_hbridge_120 - node_sgLink200_qbridge_1K = _mscl.WirelessModels_node_sgLink200_qbridge_1K - node_sgLink200_qbridge_350 = _mscl.WirelessModels_node_sgLink200_qbridge_350 - node_sgLink200_qbridge_120 = _mscl.WirelessModels_node_sgLink200_qbridge_120 - node_sgLink_oem = _mscl.WirelessModels_node_sgLink_oem - node_sgLink_micro = _mscl.WirelessModels_node_sgLink_micro - node_sgLink200_oem = _mscl.WirelessModels_node_sgLink200_oem - node_sgLink200_oem_ufl = _mscl.WirelessModels_node_sgLink200_oem_ufl - node_sgLink200_oem_hbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K - node_sgLink200_oem_hbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K_ufl - node_sgLink200_oem_hbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120 - node_sgLink200_oem_hbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120_ufl - node_sgLink200_oem_hbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350 - node_sgLink200_oem_hbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350_ufl - node_sgLink200_oem_qbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K - node_sgLink200_oem_qbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K_ufl - node_sgLink200_oem_qbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120 - node_sgLink200_oem_qbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120_ufl - node_sgLink200_oem_qbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350 - node_sgLink200_oem_qbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350_ufl - node_sgLink_rgd = _mscl.WirelessModels_node_sgLink_rgd - node_shmLink = _mscl.WirelessModels_node_shmLink - node_tcLink_1ch = _mscl.WirelessModels_node_tcLink_1ch - node_tcLink_6ch = _mscl.WirelessModels_node_tcLink_6ch - node_tcLink_3ch = _mscl.WirelessModels_node_tcLink_3ch - node_tcLink_6ch_ip67 = _mscl.WirelessModels_node_tcLink_6ch_ip67 - node_tcLink200_oem = _mscl.WirelessModels_node_tcLink200_oem - node_tcLink200_oem_ufl = _mscl.WirelessModels_node_tcLink200_oem_ufl - node_tcLink200 = _mscl.WirelessModels_node_tcLink200 - node_rtdLink200 = _mscl.WirelessModels_node_rtdLink200 - node_tcLink_6ch_ip67_rht = _mscl.WirelessModels_node_tcLink_6ch_ip67_rht - node_vLink = _mscl.WirelessModels_node_vLink - node_vLink200 = _mscl.WirelessModels_node_vLink200 - node_vLink200_qbridge_1K = _mscl.WirelessModels_node_vLink200_qbridge_1K - node_vLink200_qbridge_120 = _mscl.WirelessModels_node_vLink200_qbridge_120 - node_vLink200_qbridge_350 = _mscl.WirelessModels_node_vLink200_qbridge_350 - node_vLink200_hbridge_1K = _mscl.WirelessModels_node_vLink200_hbridge_1K - node_vLink200_hbridge_120 = _mscl.WirelessModels_node_vLink200_hbridge_120 - node_vLink200_hbridge_350 = _mscl.WirelessModels_node_vLink200_hbridge_350 - node_iepeLink = _mscl.WirelessModels_node_iepeLink - node_dvrtLink = _mscl.WirelessModels_node_dvrtLink - node_envLink_mini = _mscl.WirelessModels_node_envLink_mini - node_wattLink = _mscl.WirelessModels_node_wattLink - node_wattLink_3Y208 = _mscl.WirelessModels_node_wattLink_3Y208 - node_wattLink_3D240 = _mscl.WirelessModels_node_wattLink_3D240 - node_wattLink_3Y400 = _mscl.WirelessModels_node_wattLink_3Y400 - node_wattLink_3D400 = _mscl.WirelessModels_node_wattLink_3D400 - node_wattLink_3Y480 = _mscl.WirelessModels_node_wattLink_3Y480 - node_wattLink_3D480 = _mscl.WirelessModels_node_wattLink_3D480 - node_wattLink_3Y600 = _mscl.WirelessModels_node_wattLink_3Y600 - node_ptLink200 = _mscl.WirelessModels_node_ptLink200 - node_rtdLink = _mscl.WirelessModels_node_rtdLink - node_shmLink2_cust1_oldNumber = _mscl.WirelessModels_node_shmLink2_cust1_oldNumber - node_shmLink2_cust1 = _mscl.WirelessModels_node_shmLink2_cust1 - node_shmLink200 = _mscl.WirelessModels_node_shmLink200 - node_shmLink201 = _mscl.WirelessModels_node_shmLink201 - node_shmLink201_qbridge_1K = _mscl.WirelessModels_node_shmLink201_qbridge_1K - node_shmLink201_qbridge_348 = _mscl.WirelessModels_node_shmLink201_qbridge_348 - node_shmLink201_hbridge_1K = _mscl.WirelessModels_node_shmLink201_hbridge_1K - node_shmLink201_hbridge_348 = _mscl.WirelessModels_node_shmLink201_hbridge_348 - node_shmLink201_fullbridge = _mscl.WirelessModels_node_shmLink201_fullbridge - node_shmLink210_fullbridge = _mscl.WirelessModels_node_shmLink210_fullbridge - node_shmLink210_qbridge_3K = _mscl.WirelessModels_node_shmLink210_qbridge_3K - node_torqueLink = _mscl.WirelessModels_node_torqueLink - node_torqueLink200_3ch = _mscl.WirelessModels_node_torqueLink200_3ch - node_torqueLink200 = _mscl.WirelessModels_node_torqueLink200 - node_torqueLink200_3ch_s = _mscl.WirelessModels_node_torqueLink200_3ch_s - node_sgLink_herm = _mscl.WirelessModels_node_sgLink_herm - node_sgLink_herm_2600 = _mscl.WirelessModels_node_sgLink_herm_2600 - node_sgLink_herm_2700 = _mscl.WirelessModels_node_sgLink_herm_2700 - node_sgLink_herm_2800 = _mscl.WirelessModels_node_sgLink_herm_2800 - node_sgLink_herm_2900 = _mscl.WirelessModels_node_sgLink_herm_2900 - node_wirelessImpactSensor = _mscl.WirelessModels_node_wirelessImpactSensor - node_gLink_200_40g_s = _mscl.WirelessModels_node_gLink_200_40g_s - base_wsda_1000 = _mscl.WirelessModels_base_wsda_1000 - base_wsda_1500 = _mscl.WirelessModels_base_wsda_1500 - base_wsda_2000 = _mscl.WirelessModels_base_wsda_2000 - base_wsdaBase_200_legacy = _mscl.WirelessModels_base_wsdaBase_200_legacy - base_wsdaBase_200 = _mscl.WirelessModels_base_wsdaBase_200 - base_wsdaBase_200_extAntenna = _mscl.WirelessModels_base_wsdaBase_200_extAntenna - base_wsdaBase_101_analog = _mscl.WirelessModels_base_wsdaBase_101_analog - base_wsdaBase_102_rs232 = _mscl.WirelessModels_base_wsdaBase_102_rs232 - base_wsdaBase_104_usb = _mscl.WirelessModels_base_wsdaBase_104_usb - base_wsi_104 = _mscl.WirelessModels_base_wsi_104 - base_wsdaBase_mini = _mscl.WirelessModels_base_wsdaBase_mini - - def __init__(self): - _mscl.WirelessModels_swiginit(self, _mscl.new_WirelessModels()) - __swig_destroy__ = _mscl.delete_WirelessModels - -# Register WirelessModels in _mscl: -_mscl.WirelessModels_swigregister(WirelessModels) - -class NodeDiscovery(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def nodeAddress(self): - return _mscl.NodeDiscovery_nodeAddress(self) - - def frequency(self): - return _mscl.NodeDiscovery_frequency(self) - - def panId(self): - return _mscl.NodeDiscovery_panId(self) - - def model(self): - return _mscl.NodeDiscovery_model(self) - - def serialNumber(self): - return _mscl.NodeDiscovery_serialNumber(self) - - def firmwareVersion(self): - return _mscl.NodeDiscovery_firmwareVersion(self) - - def defaultMode(self): - return _mscl.NodeDiscovery_defaultMode(self) - - def builtInTestResult(self): - return _mscl.NodeDiscovery_builtInTestResult(self) - - def communicationProtocol(self): - return _mscl.NodeDiscovery_communicationProtocol(self) - - def asppVersion_lxrs(self): - return _mscl.NodeDiscovery_asppVersion_lxrs(self) - - def asppVersion_lxrsPlus(self): - return _mscl.NodeDiscovery_asppVersion_lxrsPlus(self) - - def baseRssi(self): - return _mscl.NodeDiscovery_baseRssi(self) - - def timestamp(self): - return _mscl.NodeDiscovery_timestamp(self) - - def __init__(self): - _mscl.NodeDiscovery_swiginit(self, _mscl.new_NodeDiscovery()) - __swig_destroy__ = _mscl.delete_NodeDiscovery - -# Register NodeDiscovery in _mscl: -_mscl.NodeDiscovery_swigregister(NodeDiscovery) - -class LinearEquation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LinearEquation_swiginit(self, _mscl.new_LinearEquation(*args)) - - def slope(self, *args): - return _mscl.LinearEquation_slope(self, *args) - - def offset(self, *args): - return _mscl.LinearEquation_offset(self, *args) - __swig_destroy__ = _mscl.delete_LinearEquation - -# Register LinearEquation in _mscl: -_mscl.LinearEquation_swigregister(LinearEquation) - -class CalCoefficients(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CalCoefficients_swiginit(self, _mscl.new_CalCoefficients(*args)) - - def equationType(self): - return _mscl.CalCoefficients_equationType(self) - - def unit(self): - return _mscl.CalCoefficients_unit(self) - - def linearEquation(self): - return _mscl.CalCoefficients_linearEquation(self) - __swig_destroy__ = _mscl.delete_CalCoefficients - -# Register CalCoefficients in _mscl: -_mscl.CalCoefficients_swigregister(CalCoefficients) - -class ChannelGroup(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ChannelGroup_swiginit(self, _mscl.new_ChannelGroup()) - - def channels(self): - return _mscl.ChannelGroup_channels(self) - - def name(self): - return _mscl.ChannelGroup_name(self) - - def eepromLocation(self, setting): - return _mscl.ChannelGroup_eepromLocation(self, setting) - - def settings(self): - return _mscl.ChannelGroup_settings(self) - - def hasSetting(self, setting): - return _mscl.ChannelGroup_hasSetting(self, setting) - - def hasSettingAndChannel(self, setting, channelNumber): - return _mscl.ChannelGroup_hasSettingAndChannel(self, setting, channelNumber) - __swig_destroy__ = _mscl.delete_ChannelGroup - -# Register ChannelGroup in _mscl: -_mscl.ChannelGroup_swigregister(ChannelGroup) - -class WirelessChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - channel_unknown = _mscl.WirelessChannel_channel_unknown - channel_1 = _mscl.WirelessChannel_channel_1 - channel_2 = _mscl.WirelessChannel_channel_2 - channel_3 = _mscl.WirelessChannel_channel_3 - channel_4 = _mscl.WirelessChannel_channel_4 - channel_5 = _mscl.WirelessChannel_channel_5 - channel_6 = _mscl.WirelessChannel_channel_6 - channel_7 = _mscl.WirelessChannel_channel_7 - channel_8 = _mscl.WirelessChannel_channel_8 - channel_9 = _mscl.WirelessChannel_channel_9 - channel_10 = _mscl.WirelessChannel_channel_10 - channel_11 = _mscl.WirelessChannel_channel_11 - channel_12 = _mscl.WirelessChannel_channel_12 - channel_13 = _mscl.WirelessChannel_channel_13 - channel_14 = _mscl.WirelessChannel_channel_14 - channel_15 = _mscl.WirelessChannel_channel_15 - channel_16 = _mscl.WirelessChannel_channel_16 - channel_digital_1 = _mscl.WirelessChannel_channel_digital_1 - channel_digital_2 = _mscl.WirelessChannel_channel_digital_2 - channel_digital_3 = _mscl.WirelessChannel_channel_digital_3 - channel_digital_4 = _mscl.WirelessChannel_channel_digital_4 - channel_digital_5 = _mscl.WirelessChannel_channel_digital_5 - channel_digital_6 = _mscl.WirelessChannel_channel_digital_6 - channel_digital_7 = _mscl.WirelessChannel_channel_digital_7 - channel_digital_8 = _mscl.WirelessChannel_channel_digital_8 - channel_digital_9 = _mscl.WirelessChannel_channel_digital_9 - channel_digital_10 = _mscl.WirelessChannel_channel_digital_10 - channel_digital_11 = _mscl.WirelessChannel_channel_digital_11 - channel_digital_12 = _mscl.WirelessChannel_channel_digital_12 - channel_digital_13 = _mscl.WirelessChannel_channel_digital_13 - channel_digital_14 = _mscl.WirelessChannel_channel_digital_14 - channel_digital_15 = _mscl.WirelessChannel_channel_digital_15 - channel_digital_16 = _mscl.WirelessChannel_channel_digital_16 - channel_structuralHealth = _mscl.WirelessChannel_channel_structuralHealth - channel_hcl_rawBase_mag1_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_x - channel_hcl_rawBase_mag1_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_y - channel_hcl_rawBase_mag1_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_z - channel_hcl_rawBase_mag2_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_x - channel_hcl_rawBase_mag2_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_y - channel_hcl_rawBase_mag2_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_z - channel_hcl_rawBase_mag3_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_x - channel_hcl_rawBase_mag3_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_y - channel_hcl_rawBase_mag3_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_z - channel_hcl_rawBase_mag4_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_x - channel_hcl_rawBase_mag4_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_y - channel_hcl_rawBase_mag4_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_z - channel_hcl_rawBase_mag5_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_x - channel_hcl_rawBase_mag5_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_y - channel_hcl_rawBase_mag5_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_z - channel_hcl_rawBase_mag6_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_x - channel_hcl_rawBase_mag6_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_y - channel_hcl_rawBase_mag6_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_z - channel_hcl_rawBase_mag7_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_x - channel_hcl_rawBase_mag7_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_y - channel_hcl_rawBase_mag7_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_z - channel_hcl_rawBase_mag8_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_x - channel_hcl_rawBase_mag8_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_y - channel_hcl_rawBase_mag8_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_z - channel_hcl_rawBase_gyro_x = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_x - channel_hcl_rawBase_gyro_y = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_y - channel_hcl_rawBase_gyro_z = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_z - channel_error_code = _mscl.WirelessChannel_channel_error_code - channel_hcl_rawStrain_BL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL30 - channel_hcl_rawStrain_BL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL120 - channel_hcl_rawStrain_A60 = _mscl.WirelessChannel_channel_hcl_rawStrain_A60 - channel_hcl_rawStrain_A150 = _mscl.WirelessChannel_channel_hcl_rawStrain_A150 - channel_hcl_rawStrain_AL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL30 - channel_hcl_rawStrain_AL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL120 - channel_hcl_rawStrain_BR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR60 - channel_hcl_rawStrain_BR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR150 - channel_hcl_rawStrain_B30 = _mscl.WirelessChannel_channel_hcl_rawStrain_B30 - channel_hcl_rawStrain_T120 = _mscl.WirelessChannel_channel_hcl_rawStrain_T120 - channel_hcl_rawStrain_AR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR60 - channel_hcl_rawStrain_AR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR150 - channel_hcl_rawStrain_A30 = _mscl.WirelessChannel_channel_hcl_rawStrain_A30 - channel_hcl_rawStrain_A120 = _mscl.WirelessChannel_channel_hcl_rawStrain_A120 - channel_hcl_rawStrain_BL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL90 - channel_hcl_rawStrain_BL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL180 - channel_hcl_rawStrain_BR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR30 - channel_hcl_rawStrain_BR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR120 - channel_hcl_rawStrain_AL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL90 - channel_hcl_rawStrain_AL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL180 - channel_hcl_rawStrain_AR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR30 - channel_hcl_rawStrain_AR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR120 - channel_hcl_rawStrain_B90 = _mscl.WirelessChannel_channel_hcl_rawStrain_B90 - channel_hcl_rawStrain_T0 = _mscl.WirelessChannel_channel_hcl_rawStrain_T0 - channel_hcl_rawStrain_BL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL60 - channel_hcl_rawStrain_BL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL150 - channel_hcl_rawStrain_A90 = _mscl.WirelessChannel_channel_hcl_rawStrain_A90 - channel_hcl_rawStrain_A0 = _mscl.WirelessChannel_channel_hcl_rawStrain_A0 - channel_hcl_rawStrain_AL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL60 - channel_hcl_rawStrain_AL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL150 - channel_hcl_rawStrain_BR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR90 - channel_hcl_rawStrain_BR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR0 - channel_hcl_rawStrain_T60 = _mscl.WirelessChannel_channel_hcl_rawStrain_T60 - channel_hcl_rawStrain_B150 = _mscl.WirelessChannel_channel_hcl_rawStrain_B150 - channel_hcl_rawStrain_AR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR90 - channel_hcl_rawStrain_AR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR0 - channel_hcl_rawInertial_accel1 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel1 - channel_hcl_rawInertial_accel2 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel2 - channel_hcl_rawInertial_accel3 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel3 - channel_hcl_rawInertial_accel4 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel4 - channel_hcl_rawInertial_accel5 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel5 - channel_hcl_rawInertial_accel6 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel6 - channel_hcl_rawInertial_accel7 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel7 - channel_hcl_rawInertial_accel8 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel8 - channel_hcl_rawInertial_gyroX = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroX - channel_hcl_rawInertial_gyroY = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroY - channel_hcl_rawInertial_gyroZ = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroZ - channel_rawAngleStrain = _mscl.WirelessChannel_channel_rawAngleStrain - channel_beaconEcho = _mscl.WirelessChannel_channel_beaconEcho - channel_rfSweep = _mscl.WirelessChannel_channel_rfSweep - channel_diag_state = _mscl.WirelessChannel_channel_diag_state - channel_diag_runtime_idle = _mscl.WirelessChannel_channel_diag_runtime_idle - channel_diag_runtime_sleep = _mscl.WirelessChannel_channel_diag_runtime_sleep - channel_diag_runtime_activeRun = _mscl.WirelessChannel_channel_diag_runtime_activeRun - channel_diag_runtime_inactiveRun = _mscl.WirelessChannel_channel_diag_runtime_inactiveRun - channel_diag_resetCounter = _mscl.WirelessChannel_channel_diag_resetCounter - channel_diag_lowBatteryFlag = _mscl.WirelessChannel_channel_diag_lowBatteryFlag - channel_diag_sweepIndex = _mscl.WirelessChannel_channel_diag_sweepIndex - channel_diag_badSweepCount = _mscl.WirelessChannel_channel_diag_badSweepCount - channel_diag_totalTx = _mscl.WirelessChannel_channel_diag_totalTx - channel_diag_totalReTx = _mscl.WirelessChannel_channel_diag_totalReTx - channel_diag_totalDroppedPackets = _mscl.WirelessChannel_channel_diag_totalDroppedPackets - channel_diag_builtInTestResult = _mscl.WirelessChannel_channel_diag_builtInTestResult - channel_diag_eventIndex = _mscl.WirelessChannel_channel_diag_eventIndex - channel_hcl_axialLoadX = _mscl.WirelessChannel_channel_hcl_axialLoadX - channel_hcl_axialLoadY = _mscl.WirelessChannel_channel_hcl_axialLoadY - channel_hcl_axialLoadZ = _mscl.WirelessChannel_channel_hcl_axialLoadZ - channel_hcl_bendingMomentFlap = _mscl.WirelessChannel_channel_hcl_bendingMomentFlap - channel_hcl_bendingMomentLag = _mscl.WirelessChannel_channel_hcl_bendingMomentLag - channel_hcl_bendingMomentPitch = _mscl.WirelessChannel_channel_hcl_bendingMomentPitch - channel_hcl_motionFlap_mag = _mscl.WirelessChannel_channel_hcl_motionFlap_mag - channel_hcl_motionLag_mag = _mscl.WirelessChannel_channel_hcl_motionLag_mag - channel_hcl_motionPitch_mag = _mscl.WirelessChannel_channel_hcl_motionPitch_mag - channel_hcl_motionFlap_inertial = _mscl.WirelessChannel_channel_hcl_motionFlap_inertial - channel_hcl_motionLag_inertial = _mscl.WirelessChannel_channel_hcl_motionLag_inertial - channel_hcl_motionPitch_inertial = _mscl.WirelessChannel_channel_hcl_motionPitch_inertial - channel_hcl_cockingStiffness_mag = _mscl.WirelessChannel_channel_hcl_cockingStiffness_mag - channel_hcl_cockingStiffness_inertial = _mscl.WirelessChannel_channel_hcl_cockingStiffness_inertial - channel_hcl_temperature = _mscl.WirelessChannel_channel_hcl_temperature - channel_diag_externalPower = _mscl.WirelessChannel_channel_diag_externalPower - channel_diag_internalTemp = _mscl.WirelessChannel_channel_diag_internalTemp - channel_1_rms = _mscl.WirelessChannel_channel_1_rms - channel_2_rms = _mscl.WirelessChannel_channel_2_rms - channel_3_rms = _mscl.WirelessChannel_channel_3_rms - channel_4_rms = _mscl.WirelessChannel_channel_4_rms - channel_5_rms = _mscl.WirelessChannel_channel_5_rms - channel_6_rms = _mscl.WirelessChannel_channel_6_rms - channel_7_rms = _mscl.WirelessChannel_channel_7_rms - channel_8_rms = _mscl.WirelessChannel_channel_8_rms - channel_9_rms = _mscl.WirelessChannel_channel_9_rms - channel_10_rms = _mscl.WirelessChannel_channel_10_rms - channel_11_rms = _mscl.WirelessChannel_channel_11_rms - channel_12_rms = _mscl.WirelessChannel_channel_12_rms - channel_13_rms = _mscl.WirelessChannel_channel_13_rms - channel_14_rms = _mscl.WirelessChannel_channel_14_rms - channel_15_rms = _mscl.WirelessChannel_channel_15_rms - channel_16_rms = _mscl.WirelessChannel_channel_16_rms - channel_1_peakToPeak = _mscl.WirelessChannel_channel_1_peakToPeak - channel_2_peakToPeak = _mscl.WirelessChannel_channel_2_peakToPeak - channel_3_peakToPeak = _mscl.WirelessChannel_channel_3_peakToPeak - channel_4_peakToPeak = _mscl.WirelessChannel_channel_4_peakToPeak - channel_5_peakToPeak = _mscl.WirelessChannel_channel_5_peakToPeak - channel_6_peakToPeak = _mscl.WirelessChannel_channel_6_peakToPeak - channel_7_peakToPeak = _mscl.WirelessChannel_channel_7_peakToPeak - channel_8_peakToPeak = _mscl.WirelessChannel_channel_8_peakToPeak - channel_9_peakToPeak = _mscl.WirelessChannel_channel_9_peakToPeak - channel_10_peakToPeak = _mscl.WirelessChannel_channel_10_peakToPeak - channel_11_peakToPeak = _mscl.WirelessChannel_channel_11_peakToPeak - channel_12_peakToPeak = _mscl.WirelessChannel_channel_12_peakToPeak - channel_13_peakToPeak = _mscl.WirelessChannel_channel_13_peakToPeak - channel_14_peakToPeak = _mscl.WirelessChannel_channel_14_peakToPeak - channel_15_peakToPeak = _mscl.WirelessChannel_channel_15_peakToPeak - channel_16_peakToPeak = _mscl.WirelessChannel_channel_16_peakToPeak - channel_1_ips = _mscl.WirelessChannel_channel_1_ips - channel_2_ips = _mscl.WirelessChannel_channel_2_ips - channel_3_ips = _mscl.WirelessChannel_channel_3_ips - channel_4_ips = _mscl.WirelessChannel_channel_4_ips - channel_5_ips = _mscl.WirelessChannel_channel_5_ips - channel_6_ips = _mscl.WirelessChannel_channel_6_ips - channel_7_ips = _mscl.WirelessChannel_channel_7_ips - channel_8_ips = _mscl.WirelessChannel_channel_8_ips - channel_9_ips = _mscl.WirelessChannel_channel_9_ips - channel_10_ips = _mscl.WirelessChannel_channel_10_ips - channel_11_ips = _mscl.WirelessChannel_channel_11_ips - channel_12_ips = _mscl.WirelessChannel_channel_12_ips - channel_13_ips = _mscl.WirelessChannel_channel_13_ips - channel_14_ips = _mscl.WirelessChannel_channel_14_ips - channel_15_ips = _mscl.WirelessChannel_channel_15_ips - channel_16_ips = _mscl.WirelessChannel_channel_16_ips - channel_1_crestFactor = _mscl.WirelessChannel_channel_1_crestFactor - channel_2_crestFactor = _mscl.WirelessChannel_channel_2_crestFactor - channel_3_crestFactor = _mscl.WirelessChannel_channel_3_crestFactor - channel_4_crestFactor = _mscl.WirelessChannel_channel_4_crestFactor - channel_5_crestFactor = _mscl.WirelessChannel_channel_5_crestFactor - channel_6_crestFactor = _mscl.WirelessChannel_channel_6_crestFactor - channel_7_crestFactor = _mscl.WirelessChannel_channel_7_crestFactor - channel_8_crestFactor = _mscl.WirelessChannel_channel_8_crestFactor - channel_9_crestFactor = _mscl.WirelessChannel_channel_9_crestFactor - channel_10_crestFactor = _mscl.WirelessChannel_channel_10_crestFactor - channel_11_crestFactor = _mscl.WirelessChannel_channel_11_crestFactor - channel_12_crestFactor = _mscl.WirelessChannel_channel_12_crestFactor - channel_13_crestFactor = _mscl.WirelessChannel_channel_13_crestFactor - channel_14_crestFactor = _mscl.WirelessChannel_channel_14_crestFactor - channel_15_crestFactor = _mscl.WirelessChannel_channel_15_crestFactor - channel_16_crestFactor = _mscl.WirelessChannel_channel_16_crestFactor - channel_diag_syncAttempts = _mscl.WirelessChannel_channel_diag_syncAttempts - channel_diag_syncFailures = _mscl.WirelessChannel_channel_diag_syncFailures - channel_diag_secsSinceLastSync = _mscl.WirelessChannel_channel_diag_secsSinceLastSync - channel_beaconConflict = _mscl.WirelessChannel_channel_beaconConflict - channel_1_mean = _mscl.WirelessChannel_channel_1_mean - channel_2_mean = _mscl.WirelessChannel_channel_2_mean - channel_3_mean = _mscl.WirelessChannel_channel_3_mean - channel_4_mean = _mscl.WirelessChannel_channel_4_mean - channel_5_mean = _mscl.WirelessChannel_channel_5_mean - channel_6_mean = _mscl.WirelessChannel_channel_6_mean - channel_7_mean = _mscl.WirelessChannel_channel_7_mean - channel_8_mean = _mscl.WirelessChannel_channel_8_mean - channel_9_mean = _mscl.WirelessChannel_channel_9_mean - channel_10_mean = _mscl.WirelessChannel_channel_10_mean - channel_11_mean = _mscl.WirelessChannel_channel_11_mean - channel_12_mean = _mscl.WirelessChannel_channel_12_mean - channel_13_mean = _mscl.WirelessChannel_channel_13_mean - channel_14_mean = _mscl.WirelessChannel_channel_14_mean - channel_15_mean = _mscl.WirelessChannel_channel_15_mean - channel_16_mean = _mscl.WirelessChannel_channel_16_mean - channel_1_mmps = _mscl.WirelessChannel_channel_1_mmps - channel_2_mmps = _mscl.WirelessChannel_channel_2_mmps - channel_3_mmps = _mscl.WirelessChannel_channel_3_mmps - channel_4_mmps = _mscl.WirelessChannel_channel_4_mmps - channel_5_mmps = _mscl.WirelessChannel_channel_5_mmps - channel_6_mmps = _mscl.WirelessChannel_channel_6_mmps - channel_7_mmps = _mscl.WirelessChannel_channel_7_mmps - channel_8_mmps = _mscl.WirelessChannel_channel_8_mmps - channel_9_mmps = _mscl.WirelessChannel_channel_9_mmps - channel_10_mmps = _mscl.WirelessChannel_channel_10_mmps - channel_11_mmps = _mscl.WirelessChannel_channel_11_mmps - channel_12_mmps = _mscl.WirelessChannel_channel_12_mmps - channel_13_mmps = _mscl.WirelessChannel_channel_13_mmps - channel_14_mmps = _mscl.WirelessChannel_channel_14_mmps - channel_15_mmps = _mscl.WirelessChannel_channel_15_mmps - channel_16_mmps = _mscl.WirelessChannel_channel_16_mmps - channel_diag_memoryFull = _mscl.WirelessChannel_channel_diag_memoryFull - - def __init__(self, *args): - _mscl.WirelessChannel_swiginit(self, _mscl.new_WirelessChannel(*args)) - - def channelNumber(self): - return _mscl.WirelessChannel_channelNumber(self) - - def id(self): - return _mscl.WirelessChannel_id(self) - - def type(self): - return _mscl.WirelessChannel_type(self) - - def description(self): - return _mscl.WirelessChannel_description(self) - - def adcResolution(self): - return _mscl.WirelessChannel_adcResolution(self) - - def adcMaxValue(self): - return _mscl.WirelessChannel_adcMaxValue(self) - - def name(self): - return _mscl.WirelessChannel_name(self) - __swig_destroy__ = _mscl.delete_WirelessChannel - -# Register WirelessChannel in _mscl: -_mscl.WirelessChannel_swigregister(WirelessChannel) - -class WirelessDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessDataPoint_swiginit(self, _mscl.new_WirelessDataPoint()) - - def channelId(self): - return _mscl.WirelessDataPoint_channelId(self) - - def channelNumber(self): - return _mscl.WirelessDataPoint_channelNumber(self) - - def channelName(self): - return _mscl.WirelessDataPoint_channelName(self) - __swig_destroy__ = _mscl.delete_WirelessDataPoint - -# Register WirelessDataPoint in _mscl: -_mscl.WirelessDataPoint_swigregister(WirelessDataPoint) - -class DataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - samplingType_NonSync = _mscl.DataSweep_samplingType_NonSync - samplingType_NonSync_Buffered = _mscl.DataSweep_samplingType_NonSync_Buffered - samplingType_SyncSampling = _mscl.DataSweep_samplingType_SyncSampling - samplingType_SyncSampling_Burst = _mscl.DataSweep_samplingType_SyncSampling_Burst - samplingType_AsyncDigital = _mscl.DataSweep_samplingType_AsyncDigital - samplingType_AsyncDigitalAnalog = _mscl.DataSweep_samplingType_AsyncDigitalAnalog - samplingType_SHM = _mscl.DataSweep_samplingType_SHM - samplingType_BeaconEcho = _mscl.DataSweep_samplingType_BeaconEcho - samplingType_RfSweep = _mscl.DataSweep_samplingType_RfSweep - samplingType_Diagnostic = _mscl.DataSweep_samplingType_Diagnostic - - def __init__(self): - _mscl.DataSweep_swiginit(self, _mscl.new_DataSweep()) - - def timestamp(self): - return _mscl.DataSweep_timestamp(self) - - def tick(self): - return _mscl.DataSweep_tick(self) - - def sampleRate(self): - return _mscl.DataSweep_sampleRate(self) - - def nodeAddress(self): - return _mscl.DataSweep_nodeAddress(self) - - def data(self): - return _mscl.DataSweep_data(self) - - def samplingType(self): - return _mscl.DataSweep_samplingType(self) - - def nodeRssi(self): - return _mscl.DataSweep_nodeRssi(self) - - def baseRssi(self): - return _mscl.DataSweep_baseRssi(self) - - def frequency(self): - return _mscl.DataSweep_frequency(self) - - def calApplied(self): - return _mscl.DataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_DataSweep - -# Register DataSweep in _mscl: -_mscl.DataSweep_swigregister(DataSweep) - -class BaseStationAnalogPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationAnalogPair_swiginit(self, _mscl.new_BaseStationAnalogPair()) - - @staticmethod - def Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - - @staticmethod - def NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - - def nodeAddress(self, *args): - return _mscl.BaseStationAnalogPair_nodeAddress(self, *args) - - def nodeChannel(self, *args): - return _mscl.BaseStationAnalogPair_nodeChannel(self, *args) - - def expectFloatData(self, *args): - return _mscl.BaseStationAnalogPair_expectFloatData(self, *args) - - def outputVal_0V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_0V(self, *args) - - def outputVal_3V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_3V(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationAnalogPair - -# Register BaseStationAnalogPair in _mscl: -_mscl.BaseStationAnalogPair_swigregister(BaseStationAnalogPair) -BaseStationAnalogPair.CHANNEL_NOT_FLOAT = _mscl.cvar.BaseStationAnalogPair_CHANNEL_NOT_FLOAT - -def BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - -def BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - -class BaseStationButton(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - btn_nodeSleep = _mscl.BaseStationButton_btn_nodeSleep - btn_nodeStop = _mscl.BaseStationButton_btn_nodeStop - btn_enableBeacon = _mscl.BaseStationButton_btn_enableBeacon - btn_disableBeacon = _mscl.BaseStationButton_btn_disableBeacon - btn_nodeNonSyncSampling = _mscl.BaseStationButton_btn_nodeNonSyncSampling - btn_nodeSyncSampling = _mscl.BaseStationButton_btn_nodeSyncSampling - btn_nodeArmedDatalogging = _mscl.BaseStationButton_btn_nodeArmedDatalogging - btn_cyclePower = _mscl.BaseStationButton_btn_cyclePower - btn_disabled = _mscl.BaseStationButton_btn_disabled - - def __init__(self, *args): - _mscl.BaseStationButton_swiginit(self, _mscl.new_BaseStationButton(*args)) - - def command(self, *args): - return _mscl.BaseStationButton_command(self, *args) - - def nodeAddress(self, *args): - return _mscl.BaseStationButton_nodeAddress(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationButton - -# Register BaseStationButton in _mscl: -_mscl.BaseStationButton_swigregister(BaseStationButton) - -class BaseStationConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationConfig_swiginit(self, _mscl.new_BaseStationConfig()) - - def transmitPower(self, *args): - return _mscl.BaseStationConfig_transmitPower(self, *args) - - def communicationProtocol(self, *args): - return _mscl.BaseStationConfig_communicationProtocol(self, *args) - - def buttonLongPress(self, *args): - return _mscl.BaseStationConfig_buttonLongPress(self, *args) - - def buttonShortPress(self, *args): - return _mscl.BaseStationConfig_buttonShortPress(self, *args) - - def analogPairingEnable(self, *args): - return _mscl.BaseStationConfig_analogPairingEnable(self, *args) - - def analogTimeoutTime(self, *args): - return _mscl.BaseStationConfig_analogTimeoutTime(self, *args) - - def analogTimeoutVoltage(self, *args): - return _mscl.BaseStationConfig_analogTimeoutVoltage(self, *args) - - def analogExceedanceEnable(self, *args): - return _mscl.BaseStationConfig_analogExceedanceEnable(self, *args) - - def analogPairing(self, *args): - return _mscl.BaseStationConfig_analogPairing(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationConfig - -# Register BaseStationConfig in _mscl: -_mscl.BaseStationConfig_swigregister(BaseStationConfig) - -class BeaconStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BeaconStatus_swiginit(self, _mscl.new_BeaconStatus(*args)) - - def enabled(self): - return _mscl.BeaconStatus_enabled(self) - - def timestamp(self): - return _mscl.BeaconStatus_timestamp(self) - __swig_destroy__ = _mscl.delete_BeaconStatus - -# Register BeaconStatus in _mscl: -_mscl.BeaconStatus_swigregister(BeaconStatus) - -class BaseStationInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region, asppVer_lxrs, asppVer_lxrsPlus): - _mscl.BaseStationInfo_swiginit(self, _mscl.new_BaseStationInfo(fw, model, region, asppVer_lxrs, asppVer_lxrsPlus)) - __swig_destroy__ = _mscl.delete_BaseStationInfo - -# Register BaseStationInfo in _mscl: -_mscl.BaseStationInfo_swigregister(BaseStationInfo) - -class BaseStation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_BASE_COMMANDS_DEFAULT_TIMEOUT - ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT - BROADCAST_NODE_ADDRESS = _mscl.BaseStation_BROADCAST_NODE_ADDRESS - BROADCAST_NODE_ADDRESS_ASPP3 = _mscl.BaseStation_BROADCAST_NODE_ADDRESS_ASPP3 - - def __init__(self, *args): - _mscl.BaseStation_swiginit(self, _mscl.new_BaseStation(*args)) - __swig_destroy__ = _mscl.delete_BaseStation - - @staticmethod - def Mock(*args): - return _mscl.BaseStation_Mock(*args) - - @staticmethod - def deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - - def connection(self): - return _mscl.BaseStation_connection(self) - - def features(self): - return _mscl.BaseStation_features(self) - - def lastCommunicationTime(self): - return _mscl.BaseStation_lastCommunicationTime(self) - - def readWriteRetries(self, *args): - return _mscl.BaseStation_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.BaseStation_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.BaseStation_clearEepromCache(self) - - def frequency(self): - return _mscl.BaseStation_frequency(self) - - def communicationProtocol(self): - return _mscl.BaseStation_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.BaseStation_firmwareVersion(self) - - def model(self): - return _mscl.BaseStation_model(self) - - def serial(self): - return _mscl.BaseStation_serial(self) - - def name(self): - return _mscl.BaseStation_name(self) - - def microcontroller(self): - return _mscl.BaseStation_microcontroller(self) - - def regionCode(self): - return _mscl.BaseStation_regionCode(self) - - def getData(self, timeout=0, maxSweeps=0): - return _mscl.BaseStation_getData(self, timeout, maxSweeps) - - def totalData(self): - return _mscl.BaseStation_totalData(self) - - def getNodeDiscoveries(self): - return _mscl.BaseStation_getNodeDiscoveries(self) - - def timeout(self, *args): - return _mscl.BaseStation_timeout(self, *args) - - def ping(self): - return _mscl.BaseStation_ping(self) - - def readEeprom(self, eepromAddress): - return _mscl.BaseStation_readEeprom(self, eepromAddress) - - def writeEeprom(self, eepromAddress, value): - return _mscl.BaseStation_writeEeprom(self, eepromAddress, value) - - def enableBeacon(self, *args): - return _mscl.BaseStation_enableBeacon(self, *args) - - def disableBeacon(self): - return _mscl.BaseStation_disableBeacon(self) - - def beaconStatus(self): - return _mscl.BaseStation_beaconStatus(self) - - def startRfSweepMode(self, *args): - return _mscl.BaseStation_startRfSweepMode(self, *args) - - def cyclePower(self, checkComm=True): - return _mscl.BaseStation_cyclePower(self, checkComm) - - def resetRadio(self): - return _mscl.BaseStation_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.BaseStation_changeFrequency(self, frequency) - - def broadcastSetToIdle(self): - return _mscl.BaseStation_broadcastSetToIdle(self) - - def verifyConfig(self, config, outIssues): - return _mscl.BaseStation_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.BaseStation_applyConfig(self, config) - - def getTransmitPower(self): - return _mscl.BaseStation_getTransmitPower(self) - - def getButtonLongPress(self, buttonNumber): - return _mscl.BaseStation_getButtonLongPress(self, buttonNumber) - - def getButtonShortPress(self, buttonNumber): - return _mscl.BaseStation_getButtonShortPress(self, buttonNumber) - - def getAnalogPairingEnabled(self): - return _mscl.BaseStation_getAnalogPairingEnabled(self) - - def getAnalogTimeoutTime(self): - return _mscl.BaseStation_getAnalogTimeoutTime(self) - - def getAnalogTimeoutVoltage(self): - return _mscl.BaseStation_getAnalogTimeoutVoltage(self) - - def getAnalogExceedanceEnabled(self): - return _mscl.BaseStation_getAnalogExceedanceEnabled(self) - - def getAnalogPair(self, portNumber): - return _mscl.BaseStation_getAnalogPair(self, portNumber) - -# Register BaseStation in _mscl: -_mscl.BaseStation_swigregister(BaseStation) - -def BaseStation_Mock(*args): - return _mscl.BaseStation_Mock(*args) - -def BaseStation_deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - -class LoggedDataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LoggedDataSweep_swiginit(self, _mscl.new_LoggedDataSweep(*args)) - - def timestamp(self): - return _mscl.LoggedDataSweep_timestamp(self) - - def tick(self): - return _mscl.LoggedDataSweep_tick(self) - - def data(self): - return _mscl.LoggedDataSweep_data(self) - - def calApplied(self): - return _mscl.LoggedDataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweep - -# Register LoggedDataSweep in _mscl: -_mscl.LoggedDataSweep_swigregister(LoggedDataSweep) - -class RadioFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.RadioFeatures_swiginit(self, _mscl.new_RadioFeatures(*args)) - - def extendedRange(self): - return _mscl.RadioFeatures_extendedRange(self) - __swig_destroy__ = _mscl.delete_RadioFeatures - -# Register RadioFeatures in _mscl: -_mscl.RadioFeatures_swigregister(RadioFeatures) - -class WirelessNodeConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessNodeConfig_swiginit(self, _mscl.new_WirelessNodeConfig()) - SENSOR_DELAY_ALWAYS_ON = _mscl.WirelessNodeConfig_SENSOR_DELAY_ALWAYS_ON - - def defaultMode(self, *args): - return _mscl.WirelessNodeConfig_defaultMode(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.WirelessNodeConfig_inactivityTimeout(self, *args) - - def checkRadioInterval(self, *args): - return _mscl.WirelessNodeConfig_checkRadioInterval(self, *args) - - def transmitPower(self, *args): - return _mscl.WirelessNodeConfig_transmitPower(self, *args) - - def samplingMode(self, *args): - return _mscl.WirelessNodeConfig_samplingMode(self, *args) - - def sampleRate(self, *args): - return _mscl.WirelessNodeConfig_sampleRate(self, *args) - - def activeChannels(self, *args): - return _mscl.WirelessNodeConfig_activeChannels(self, *args) - - def numSweeps(self, *args): - return _mscl.WirelessNodeConfig_numSweeps(self, *args) - - def unlimitedDuration(self, *args): - return _mscl.WirelessNodeConfig_unlimitedDuration(self, *args) - - def dataFormat(self, *args): - return _mscl.WirelessNodeConfig_dataFormat(self, *args) - - def dataCollectionMethod(self, *args): - return _mscl.WirelessNodeConfig_dataCollectionMethod(self, *args) - - def timeBetweenBursts(self, *args): - return _mscl.WirelessNodeConfig_timeBetweenBursts(self, *args) - - def lostBeaconTimeout(self, *args): - return _mscl.WirelessNodeConfig_lostBeaconTimeout(self, *args) - - def pullUpResistor(self, *args): - return _mscl.WirelessNodeConfig_pullUpResistor(self, *args) - - def inputRange(self, *args): - return _mscl.WirelessNodeConfig_inputRange(self, *args) - - def hardwareOffset(self, *args): - return _mscl.WirelessNodeConfig_hardwareOffset(self, *args) - - def antiAliasingFilter(self, *args): - return _mscl.WirelessNodeConfig_antiAliasingFilter(self, *args) - - def cfcFilterConfig(self, *args): - return _mscl.WirelessNodeConfig_cfcFilterConfig(self, *args) - - def lowPassFilter(self, *args): - return _mscl.WirelessNodeConfig_lowPassFilter(self, *args) - - def highPassFilter(self, *args): - return _mscl.WirelessNodeConfig_highPassFilter(self, *args) - - def gaugeFactor(self, *args): - return _mscl.WirelessNodeConfig_gaugeFactor(self, *args) - - def gaugeResistance(self, *args): - return _mscl.WirelessNodeConfig_gaugeResistance(self, *args) - - def excitationVoltage(self, *args): - return _mscl.WirelessNodeConfig_excitationVoltage(self, *args) - - def numActiveGauges(self, *args): - return _mscl.WirelessNodeConfig_numActiveGauges(self, *args) - - def lowBatteryThreshold(self, *args): - return _mscl.WirelessNodeConfig_lowBatteryThreshold(self, *args) - - def linearEquation(self, *args): - return _mscl.WirelessNodeConfig_linearEquation(self, *args) - - def unit(self, *args): - return _mscl.WirelessNodeConfig_unit(self, *args) - - def equationType(self, *args): - return _mscl.WirelessNodeConfig_equationType(self, *args) - - def filterSettlingTime(self, *args): - return _mscl.WirelessNodeConfig_filterSettlingTime(self, *args) - - def thermocoupleType(self, *args): - return _mscl.WirelessNodeConfig_thermocoupleType(self, *args) - - def tempSensorOptions(self, *args): - return _mscl.WirelessNodeConfig_tempSensorOptions(self, *args) - - def debounceFilter(self, *args): - return _mscl.WirelessNodeConfig_debounceFilter(self, *args) - - def fatigueOptions(self, *args): - return _mscl.WirelessNodeConfig_fatigueOptions(self, *args) - - def histogramOptions(self, *args): - return _mscl.WirelessNodeConfig_histogramOptions(self, *args) - - def activitySense(self, *args): - return _mscl.WirelessNodeConfig_activitySense(self, *args) - - def eventTriggerOptions(self, *args): - return _mscl.WirelessNodeConfig_eventTriggerOptions(self, *args) - - def diagnosticInterval(self, *args): - return _mscl.WirelessNodeConfig_diagnosticInterval(self, *args) - - def storageLimitMode(self, *args): - return _mscl.WirelessNodeConfig_storageLimitMode(self, *args) - - def sensorDelay(self, *args): - return _mscl.WirelessNodeConfig_sensorDelay(self, *args) - - def dataMode(self, *args): - return _mscl.WirelessNodeConfig_dataMode(self, *args) - - def derivedDataRate(self, *args): - return _mscl.WirelessNodeConfig_derivedDataRate(self, *args) - - def derivedChannelMask(self, *args): - return _mscl.WirelessNodeConfig_derivedChannelMask(self, *args) - - def derivedVelocityUnit(self, *args): - return _mscl.WirelessNodeConfig_derivedVelocityUnit(self, *args) - - def communicationProtocol(self, *args): - return _mscl.WirelessNodeConfig_communicationProtocol(self, *args) - - def sensorOutputMode(self, *args): - return _mscl.WirelessNodeConfig_sensorOutputMode(self, *args) - - @staticmethod - def flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - - @staticmethod - def flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - __swig_destroy__ = _mscl.delete_WirelessNodeConfig - -# Register WirelessNodeConfig in _mscl: -_mscl.WirelessNodeConfig_swigregister(WirelessNodeConfig) - -def WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - -def WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - -class AutoBalanceResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoBalanceResult_swiginit(self, _mscl.new_AutoBalanceResult()) - - def errorCode(self): - return _mscl.AutoBalanceResult_errorCode(self) - - def percentAchieved(self): - return _mscl.AutoBalanceResult_percentAchieved(self) - - def hardwareOffset(self): - return _mscl.AutoBalanceResult_hardwareOffset(self) - __swig_destroy__ = _mscl.delete_AutoBalanceResult - -# Register AutoBalanceResult in _mscl: -_mscl.AutoBalanceResult_swigregister(AutoBalanceResult) - -class ShuntCalCmdInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - useInternalShunt = property(_mscl.ShuntCalCmdInfo_useInternalShunt_get, _mscl.ShuntCalCmdInfo_useInternalShunt_set) - numActiveGauges = property(_mscl.ShuntCalCmdInfo_numActiveGauges_get, _mscl.ShuntCalCmdInfo_numActiveGauges_set) - gaugeResistance = property(_mscl.ShuntCalCmdInfo_gaugeResistance_get, _mscl.ShuntCalCmdInfo_gaugeResistance_set) - shuntResistance = property(_mscl.ShuntCalCmdInfo_shuntResistance_get, _mscl.ShuntCalCmdInfo_shuntResistance_set) - gaugeFactor = property(_mscl.ShuntCalCmdInfo_gaugeFactor_get, _mscl.ShuntCalCmdInfo_gaugeFactor_set) - inputRange = property(_mscl.ShuntCalCmdInfo_inputRange_get, _mscl.ShuntCalCmdInfo_inputRange_set) - hardwareOffset = property(_mscl.ShuntCalCmdInfo_hardwareOffset_get, _mscl.ShuntCalCmdInfo_hardwareOffset_set) - excitationVoltage = property(_mscl.ShuntCalCmdInfo_excitationVoltage_get, _mscl.ShuntCalCmdInfo_excitationVoltage_set) - - def __init__(self): - _mscl.ShuntCalCmdInfo_swiginit(self, _mscl.new_ShuntCalCmdInfo()) - __swig_destroy__ = _mscl.delete_ShuntCalCmdInfo - -# Register ShuntCalCmdInfo in _mscl: -_mscl.ShuntCalCmdInfo_swigregister(ShuntCalCmdInfo) - -class AutoCalResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_AutoCalResult - - def completionFlag(self): - return _mscl.AutoCalResult_completionFlag(self) - -# Register AutoCalResult in _mscl: -_mscl.AutoCalResult_swigregister(AutoCalResult) - -class AutoCalResult_shmLink(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink_swiginit(self, _mscl.new_AutoCalResult_shmLink()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh3(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink_offsetCh1(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink_offsetCh2(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink_temperature(self) - -# Register AutoCalResult_shmLink in _mscl: -_mscl.AutoCalResult_shmLink_swigregister(AutoCalResult_shmLink) - -class AutoCalResult_shmLink201(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink201_swiginit(self, _mscl.new_AutoCalResult_shmLink201()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink201 - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh3(self) - - def slopeCh1(self): - return _mscl.AutoCalResult_shmLink201_slopeCh1(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink201_offsetCh1(self) - - def slopeCh2(self): - return _mscl.AutoCalResult_shmLink201_slopeCh2(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink201_offsetCh2(self) - - def slopeCh3(self): - return _mscl.AutoCalResult_shmLink201_slopeCh3(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink201_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink201_temperature(self) - -# Register AutoCalResult_shmLink201 in _mscl: -_mscl.AutoCalResult_shmLink201_swigregister(AutoCalResult_shmLink201) - -class AutoShuntCalResult(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoShuntCalResult_swiginit(self, _mscl.new_AutoShuntCalResult()) - __swig_destroy__ = _mscl.delete_AutoShuntCalResult - - def errorFlag(self): - return _mscl.AutoShuntCalResult_errorFlag(self) - - def slope(self): - return _mscl.AutoShuntCalResult_slope(self) - - def offset(self): - return _mscl.AutoShuntCalResult_offset(self) - - def baseMedian(self): - return _mscl.AutoShuntCalResult_baseMedian(self) - - def baseMin(self): - return _mscl.AutoShuntCalResult_baseMin(self) - - def baseMax(self): - return _mscl.AutoShuntCalResult_baseMax(self) - - def shuntMedian(self): - return _mscl.AutoShuntCalResult_shuntMedian(self) - - def shuntMin(self): - return _mscl.AutoShuntCalResult_shuntMin(self) - - def shuntMax(self): - return _mscl.AutoShuntCalResult_shuntMax(self) - -# Register AutoShuntCalResult in _mscl: -_mscl.AutoShuntCalResult_swigregister(AutoShuntCalResult) - -class PingResponse(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PingResponse_swiginit(self, _mscl.new_PingResponse()) - - def success(self): - return _mscl.PingResponse_success(self) - - def nodeRssi(self): - return _mscl.PingResponse_nodeRssi(self) - - def baseRssi(self): - return _mscl.PingResponse_baseRssi(self) - __swig_destroy__ = _mscl.delete_PingResponse - -# Register PingResponse in _mscl: -_mscl.PingResponse_swigregister(PingResponse) - -class SetToIdleStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - setToIdleResult_success = _mscl.SetToIdleStatus_setToIdleResult_success - setToIdleResult_canceled = _mscl.SetToIdleStatus_setToIdleResult_canceled - setToIdleResult_failed = _mscl.SetToIdleStatus_setToIdleResult_failed - setToIdleResult_notCompleted = _mscl.SetToIdleStatus_setToIdleResult_notCompleted - - def result(self): - return _mscl.SetToIdleStatus_result(self) - - def complete(self, timeout=10): - return _mscl.SetToIdleStatus_complete(self, timeout) - - def cancel(self): - return _mscl.SetToIdleStatus_cancel(self) - __swig_destroy__ = _mscl.delete_SetToIdleStatus - -# Register SetToIdleStatus in _mscl: -_mscl.SetToIdleStatus_swigregister(SetToIdleStatus) - -class NodeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region): - _mscl.NodeInfo_swiginit(self, _mscl.new_NodeInfo(fw, model, region)) - __swig_destroy__ = _mscl.delete_NodeInfo - -# Register NodeInfo in _mscl: -_mscl.NodeInfo_swigregister(NodeInfo) - -class WirelessNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, nodeAddress, basestation): - _mscl.WirelessNode_swiginit(self, _mscl.new_WirelessNode(nodeAddress, basestation)) - __swig_destroy__ = _mscl.delete_WirelessNode - - @staticmethod - def Mock(*args): - return _mscl.WirelessNode_Mock(*args) - - @staticmethod - def deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - - def features(self): - return _mscl.WirelessNode_features(self) - - def lastCommunicationTime(self): - return _mscl.WirelessNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.WirelessNode_lastDeviceState(self) - - def setBaseStation(self, basestation): - return _mscl.WirelessNode_setBaseStation(self, basestation) - - def getBaseStation(self): - return _mscl.WirelessNode_getBaseStation(self) - - def hasBaseStation(self, basestation): - return _mscl.WirelessNode_hasBaseStation(self, basestation) - - def useGroupRead(self, useGroup): - return _mscl.WirelessNode_useGroupRead(self, useGroup) - - def readWriteRetries(self, *args): - return _mscl.WirelessNode_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.WirelessNode_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.WirelessNode_clearEepromCache(self) - - def updateEepromCacheFromNodeDiscovery(self, nodeDisovery): - return _mscl.WirelessNode_updateEepromCacheFromNodeDiscovery(self, nodeDisovery) - - def getEepromCache(self): - return _mscl.WirelessNode_getEepromCache(self) - - def nodeAddress(self): - return _mscl.WirelessNode_nodeAddress(self) - - def frequency(self): - return _mscl.WirelessNode_frequency(self) - - def communicationProtocol(self): - return _mscl.WirelessNode_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.WirelessNode_firmwareVersion(self) - - def model(self): - return _mscl.WirelessNode_model(self) - - def serial(self): - return _mscl.WirelessNode_serial(self) - - def name(self): - return _mscl.WirelessNode_name(self) - - def microcontroller(self): - return _mscl.WirelessNode_microcontroller(self) - - def radioFeatures(self): - return _mscl.WirelessNode_radioFeatures(self) - - def dataStorageSize(self): - return _mscl.WirelessNode_dataStorageSize(self) - - def regionCode(self): - return _mscl.WirelessNode_regionCode(self) - - def ping(self): - return _mscl.WirelessNode_ping(self) - - def sleep(self): - return _mscl.WirelessNode_sleep(self) - - def cyclePower(self): - return _mscl.WirelessNode_cyclePower(self) - - def resetRadio(self): - return _mscl.WirelessNode_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.WirelessNode_changeFrequency(self, frequency) - - def setToIdle(self): - return _mscl.WirelessNode_setToIdle(self) - - def erase(self): - return _mscl.WirelessNode_erase(self) - - def startNonSyncSampling(self): - return _mscl.WirelessNode_startNonSyncSampling(self) - - def resendStartSyncSampling(self): - return _mscl.WirelessNode_resendStartSyncSampling(self) - - def clearHistogram(self): - return _mscl.WirelessNode_clearHistogram(self) - - def autoBalance(self, mask, targetPercent): - return _mscl.WirelessNode_autoBalance(self, mask, targetPercent) - - def autoCal_shmLink(self): - return _mscl.WirelessNode_autoCal_shmLink(self) - - def autoCal_shmLink201(self): - return _mscl.WirelessNode_autoCal_shmLink201(self) - - def autoShuntCal(self, mask, commandInfo): - return _mscl.WirelessNode_autoShuntCal(self, mask, commandInfo) - - def poll(self, mask): - return _mscl.WirelessNode_poll(self, mask) - - def readEeprom(self, location): - return _mscl.WirelessNode_readEeprom(self, location) - - def writeEeprom(self, location, value): - return _mscl.WirelessNode_writeEeprom(self, location, value) - - def getDiagnosticInfo(self): - return _mscl.WirelessNode_getDiagnosticInfo(self) - - def testCommunicationProtocol(self, protocol): - return _mscl.WirelessNode_testCommunicationProtocol(self, protocol) - - def verifyConfig(self, config, outIssues): - return _mscl.WirelessNode_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.WirelessNode_applyConfig(self, config) - - def getNumDatalogSessions(self): - return _mscl.WirelessNode_getNumDatalogSessions(self) - - def percentFull(self): - return _mscl.WirelessNode_percentFull(self) - - def getDefaultMode(self): - return _mscl.WirelessNode_getDefaultMode(self) - - def getInactivityTimeout(self): - return _mscl.WirelessNode_getInactivityTimeout(self) - - def getCheckRadioInterval(self): - return _mscl.WirelessNode_getCheckRadioInterval(self) - - def getTransmitPower(self): - return _mscl.WirelessNode_getTransmitPower(self) - - def getSamplingMode(self): - return _mscl.WirelessNode_getSamplingMode(self) - - def getActiveChannels(self): - return _mscl.WirelessNode_getActiveChannels(self) - - def getSampleRate(self): - return _mscl.WirelessNode_getSampleRate(self) - - def getNumSweeps(self): - return _mscl.WirelessNode_getNumSweeps(self) - - def getUnlimitedDuration(self): - return _mscl.WirelessNode_getUnlimitedDuration(self) - - def getDataFormat(self): - return _mscl.WirelessNode_getDataFormat(self) - - def getDataCollectionMethod(self): - return _mscl.WirelessNode_getDataCollectionMethod(self) - - def getTimeBetweenBursts(self): - return _mscl.WirelessNode_getTimeBetweenBursts(self) - - def getLostBeaconTimeout(self): - return _mscl.WirelessNode_getLostBeaconTimeout(self) - - def getInputRange(self, mask): - return _mscl.WirelessNode_getInputRange(self, mask) - - def getHardwareOffset(self, mask): - return _mscl.WirelessNode_getHardwareOffset(self, mask) - - def getAntiAliasingFilter(self, mask): - return _mscl.WirelessNode_getAntiAliasingFilter(self, mask) - - def getCfcFilterConfiguration(self): - return _mscl.WirelessNode_getCfcFilterConfiguration(self) - - def getLowPassFilter(self, mask): - return _mscl.WirelessNode_getLowPassFilter(self, mask) - - def getHighPassFilter(self, mask): - return _mscl.WirelessNode_getHighPassFilter(self, mask) - - def getDebounceFilter(self, mask): - return _mscl.WirelessNode_getDebounceFilter(self, mask) - - def getPullUpResistor(self, mask): - return _mscl.WirelessNode_getPullUpResistor(self, mask) - - def getSensorOutputMode(self): - return _mscl.WirelessNode_getSensorOutputMode(self) - - def getGaugeFactor(self, mask): - return _mscl.WirelessNode_getGaugeFactor(self, mask) - - def getExcitationVoltage(self): - return _mscl.WirelessNode_getExcitationVoltage(self) - - def getAdcVoltageRef(self): - return _mscl.WirelessNode_getAdcVoltageRef(self) - - def getGainAmplifierVoltageRef(self): - return _mscl.WirelessNode_getGainAmplifierVoltageRef(self) - - def getGaugeResistance(self): - return _mscl.WirelessNode_getGaugeResistance(self) - - def getNumActiveGauges(self): - return _mscl.WirelessNode_getNumActiveGauges(self) - - def getLowBatteryThreshold(self): - return _mscl.WirelessNode_getLowBatteryThreshold(self) - - def getLinearEquation(self, mask): - return _mscl.WirelessNode_getLinearEquation(self, mask) - - def getUnit(self, mask): - return _mscl.WirelessNode_getUnit(self, mask) - - def getEquationType(self, mask): - return _mscl.WirelessNode_getEquationType(self, mask) - - def getFactoryCalibrationLinearEq(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationLinearEq(self, mask) - - def getFactoryCalibrationUnit(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationUnit(self, mask) - - def getFactoryCalibrationEqType(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationEqType(self, mask) - - def getFilterSettlingTime(self, mask): - return _mscl.WirelessNode_getFilterSettlingTime(self, mask) - - def getThermocoupleType(self, mask): - return _mscl.WirelessNode_getThermocoupleType(self, mask) - - def getTempSensorOptions(self, mask): - return _mscl.WirelessNode_getTempSensorOptions(self, mask) - - def getFatigueOptions(self): - return _mscl.WirelessNode_getFatigueOptions(self) - - def getHistogramOptions(self): - return _mscl.WirelessNode_getHistogramOptions(self) - - def getActivitySense(self): - return _mscl.WirelessNode_getActivitySense(self) - - def getEventTriggerOptions(self): - return _mscl.WirelessNode_getEventTriggerOptions(self) - - def getDiagnosticInterval(self): - return _mscl.WirelessNode_getDiagnosticInterval(self) - - def getStorageLimitMode(self): - return _mscl.WirelessNode_getStorageLimitMode(self) - - def getSensorDelay(self): - return _mscl.WirelessNode_getSensorDelay(self) - - def getDataMode(self): - return _mscl.WirelessNode_getDataMode(self) - - def getDerivedDataRate(self): - return _mscl.WirelessNode_getDerivedDataRate(self) - - def getDerivedChannelMask(self, category): - return _mscl.WirelessNode_getDerivedChannelMask(self, category) - - def getDerivedVelocityUnit(self): - return _mscl.WirelessNode_getDerivedVelocityUnit(self) - -# Register WirelessNode in _mscl: -_mscl.WirelessNode_swigregister(WirelessNode) - -def WirelessNode_Mock(*args): - return _mscl.WirelessNode_Mock(*args) - -def WirelessNode_deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - -class DatalogDownloader(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.DatalogDownloader_swiginit(self, _mscl.new_DatalogDownloader(*args)) - __swig_destroy__ = _mscl.delete_DatalogDownloader - - def complete(self): - return _mscl.DatalogDownloader_complete(self) - - def percentComplete(self): - return _mscl.DatalogDownloader_percentComplete(self) - - def getNextData(self): - return _mscl.DatalogDownloader_getNextData(self) - - def metaDataUpdated(self): - return _mscl.DatalogDownloader_metaDataUpdated(self) - - def calCoefficientsUpdated(self): - return _mscl.DatalogDownloader_calCoefficientsUpdated(self) - - def startOfSession(self): - return _mscl.DatalogDownloader_startOfSession(self) - - def sessionIndex(self): - return _mscl.DatalogDownloader_sessionIndex(self) - - def sampleRate(self): - return _mscl.DatalogDownloader_sampleRate(self) - - def userString(self): - return _mscl.DatalogDownloader_userString(self) - - def calCoefficients(self): - return _mscl.DatalogDownloader_calCoefficients(self) - -# Register DatalogDownloader in _mscl: -_mscl.DatalogDownloader_swigregister(DatalogDownloader) - -class ArmedDataloggingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.ArmedDataloggingNetwork_swiginit(self, _mscl.new_ArmedDataloggingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.ArmedDataloggingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.ArmedDataloggingNetwork_removeNode(self, nodeAddress) - - def startSampling(self): - return _mscl.ArmedDataloggingNetwork_startSampling(self) - __swig_destroy__ = _mscl.delete_ArmedDataloggingNetwork - -# Register ArmedDataloggingNetwork in _mscl: -_mscl.ArmedDataloggingNetwork_swigregister(ArmedDataloggingNetwork) - -class SyncNetworkInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - status_OK = _mscl.SyncNetworkInfo_status_OK - status_PoorCommunication = _mscl.SyncNetworkInfo_status_PoorCommunication - status_DoesNotFit = _mscl.SyncNetworkInfo_status_DoesNotFit - status_Contention = _mscl.SyncNetworkInfo_status_Contention - - def __init__(self, node): - _mscl.SyncNetworkInfo_swiginit(self, _mscl.new_SyncNetworkInfo(node)) - - def status(self): - return _mscl.SyncNetworkInfo_status(self) - - def startedSampling(self): - return _mscl.SyncNetworkInfo_startedSampling(self) - - def configurationApplied(self): - return _mscl.SyncNetworkInfo_configurationApplied(self) - - def percentBandwidth(self): - return _mscl.SyncNetworkInfo_percentBandwidth(self) - - def tdmaAddress(self): - return _mscl.SyncNetworkInfo_tdmaAddress(self) - - def maxTdmaAddress(self): - return _mscl.SyncNetworkInfo_maxTdmaAddress(self) - - def transmissionPerGroup(self): - return _mscl.SyncNetworkInfo_transmissionPerGroup(self) - - def groupSize(self): - return _mscl.SyncNetworkInfo_groupSize(self) - __swig_destroy__ = _mscl.delete_SyncNetworkInfo - -# Register SyncNetworkInfo in _mscl: -_mscl.SyncNetworkInfo_swigregister(SyncNetworkInfo) - -class SyncSamplingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.SyncSamplingNetwork_swiginit(self, _mscl.new_SyncSamplingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.SyncSamplingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.SyncSamplingNetwork_removeNode(self, nodeAddress) - - def percentBandwidth(self): - return _mscl.SyncSamplingNetwork_percentBandwidth(self) - - def ok(self): - return _mscl.SyncSamplingNetwork_ok(self) - - def refresh(self): - return _mscl.SyncSamplingNetwork_refresh(self) - - def lossless(self, *args): - return _mscl.SyncSamplingNetwork_lossless(self, *args) - - def communicationProtocol(self, *args): - return _mscl.SyncSamplingNetwork_communicationProtocol(self, *args) - - def applyConfiguration(self): - return _mscl.SyncSamplingNetwork_applyConfiguration(self) - - def startSampling(self, *args): - return _mscl.SyncSamplingNetwork_startSampling(self, *args) - - def startSampling_noBeacon(self): - return _mscl.SyncSamplingNetwork_startSampling_noBeacon(self) - - def getNodeNetworkInfo(self, nodeAddress): - return _mscl.SyncSamplingNetwork_getNodeNetworkInfo(self, nodeAddress) - __swig_destroy__ = _mscl.delete_SyncSamplingNetwork - -# Register SyncSamplingNetwork in _mscl: -_mscl.SyncSamplingNetwork_swigregister(SyncSamplingNetwork) - -class NodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_NodeFeatures - - def normalizeNumSweeps(self, sweeps): - return _mscl.NodeFeatures_normalizeNumSweeps(self, sweeps) - - def normalizeTimeBetweenBursts(self, time): - return _mscl.NodeFeatures_normalizeTimeBetweenBursts(self, time) - - def channels(self): - return _mscl.NodeFeatures_channels(self) - - def channelGroups(self): - return _mscl.NodeFeatures_channelGroups(self) - - def channelType(self, channelNumber): - return _mscl.NodeFeatures_channelType(self, channelNumber) - - def supportsChannelSetting(self, setting, mask): - return _mscl.NodeFeatures_supportsChannelSetting(self, setting, mask) - - def supportsInputRangePerExcitationVoltage(self): - return _mscl.NodeFeatures_supportsInputRangePerExcitationVoltage(self) - - def supportsHardwareOffset(self): - return _mscl.NodeFeatures_supportsHardwareOffset(self) - - def supportsAntiAliasingFilter(self): - return _mscl.NodeFeatures_supportsAntiAliasingFilter(self) - - def supportsLowPassFilter(self): - return _mscl.NodeFeatures_supportsLowPassFilter(self) - - def supportsHighPassFilter(self): - return _mscl.NodeFeatures_supportsHighPassFilter(self) - - def supportsGaugeFactor(self): - return _mscl.NodeFeatures_supportsGaugeFactor(self) - - def supportsGaugeResistance(self): - return _mscl.NodeFeatures_supportsGaugeResistance(self) - - def supportsNumActiveGauges(self): - return _mscl.NodeFeatures_supportsNumActiveGauges(self) - - def supportsLostBeaconTimeout(self): - return _mscl.NodeFeatures_supportsLostBeaconTimeout(self) - - def supportsPullUpResistor(self): - return _mscl.NodeFeatures_supportsPullUpResistor(self) - - def supportsFilterSettlingTime(self): - return _mscl.NodeFeatures_supportsFilterSettlingTime(self) - - def supportsThermocoupleType(self): - return _mscl.NodeFeatures_supportsThermocoupleType(self) - - def supportsTempSensorOptions(self): - return _mscl.NodeFeatures_supportsTempSensorOptions(self) - - def supportsDebounceFilter(self): - return _mscl.NodeFeatures_supportsDebounceFilter(self) - - def supportsFatigueConfig(self): - return _mscl.NodeFeatures_supportsFatigueConfig(self) - - def supportsYoungsModConfig(self): - return _mscl.NodeFeatures_supportsYoungsModConfig(self) - - def supportsPoissonsRatioConfig(self): - return _mscl.NodeFeatures_supportsPoissonsRatioConfig(self) - - def supportsFatigueDebugModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueDebugModeConfig(self) - - def supportsFatigueModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueModeConfig(self) - - def supportsHistogramConfig(self): - return _mscl.NodeFeatures_supportsHistogramConfig(self) - - def supportsHistogramRateConfig(self): - return _mscl.NodeFeatures_supportsHistogramRateConfig(self) - - def supportsHistogramEnableConfig(self): - return _mscl.NodeFeatures_supportsHistogramEnableConfig(self) - - def supportsActivitySense(self): - return _mscl.NodeFeatures_supportsActivitySense(self) - - def supportsAutoBalance(self): - return _mscl.NodeFeatures_supportsAutoBalance(self) - - def supportsLegacyShuntCal(self): - return _mscl.NodeFeatures_supportsLegacyShuntCal(self) - - def supportsAutoCal_shm(self): - return _mscl.NodeFeatures_supportsAutoCal_shm(self) - - def supportsAutoCal_shm201(self): - return _mscl.NodeFeatures_supportsAutoCal_shm201(self) - - def supportsAutoShuntCal(self): - return _mscl.NodeFeatures_supportsAutoShuntCal(self) - - def supportsGetFactoryCal(self): - return _mscl.NodeFeatures_supportsGetFactoryCal(self) - - def supportsLimitedDuration(self): - return _mscl.NodeFeatures_supportsLimitedDuration(self) - - def supportsEventTrigger(self): - return _mscl.NodeFeatures_supportsEventTrigger(self) - - def supportsDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsDiagnosticInfo(self) - - def supportsLoggedData(self): - return _mscl.NodeFeatures_supportsLoggedData(self) - - def supportsPoll(self): - return _mscl.NodeFeatures_supportsPoll(self) - - def supportsSensorDelayConfig(self): - return _mscl.NodeFeatures_supportsSensorDelayConfig(self) - - def supportsSensorDelayAlwaysOn(self): - return _mscl.NodeFeatures_supportsSensorDelayAlwaysOn(self) - - def supportsSensorOutputMode(self): - return _mscl.NodeFeatures_supportsSensorOutputMode(self) - - def supportsCfcFilterConfiguration(self): - return _mscl.NodeFeatures_supportsCfcFilterConfiguration(self) - - def supportsChannel(self, channelNumber): - return _mscl.NodeFeatures_supportsChannel(self, channelNumber) - - def supportsSamplingMode(self, samplingMode): - return _mscl.NodeFeatures_supportsSamplingMode(self, samplingMode) - - def supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.NodeFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsDataFormat(self, dataFormat): - return _mscl.NodeFeatures_supportsDataFormat(self, dataFormat) - - def supportsDefaultMode(self, mode): - return _mscl.NodeFeatures_supportsDefaultMode(self, mode) - - def supportsDataCollectionMethod(self, collectionMethod): - return _mscl.NodeFeatures_supportsDataCollectionMethod(self, collectionMethod) - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.NodeFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsDataMode(self, dataMode): - return _mscl.NodeFeatures_supportsDataMode(self, dataMode) - - def supportsTransducerType(self, transducerType): - return _mscl.NodeFeatures_supportsTransducerType(self, transducerType) - - def supportsFatigueMode(self, mode): - return _mscl.NodeFeatures_supportsFatigueMode(self, mode) - - def supportsInputRange(self, *args): - return _mscl.NodeFeatures_supportsInputRange(self, *args) - - def supportsCentisecondEventDuration(self): - return _mscl.NodeFeatures_supportsCentisecondEventDuration(self) - - def supportsGetDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsGetDiagnosticInfo(self) - - def supportsNonSyncLogWithTimestamps(self): - return _mscl.NodeFeatures_supportsNonSyncLogWithTimestamps(self) - - def supportsDerivedCategory(self, category): - return _mscl.NodeFeatures_supportsDerivedCategory(self, category) - - def supportsRawDataMode(self): - return _mscl.NodeFeatures_supportsRawDataMode(self) - - def supportsDerivedDataMode(self): - return _mscl.NodeFeatures_supportsDerivedDataMode(self) - - def supportsDerivedVelocityUnitConfig(self): - return _mscl.NodeFeatures_supportsDerivedVelocityUnitConfig(self) - - def supportsExcitationVoltageConfig(self): - return _mscl.NodeFeatures_supportsExcitationVoltageConfig(self) - - def supportsLowBatteryThresholdConfig(self): - return _mscl.NodeFeatures_supportsLowBatteryThresholdConfig(self) - - def maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode) - - def maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode) - - def maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels): - return _mscl.NodeFeatures_maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels) - - def maxFilterSettlingTime(self, rate): - return _mscl.NodeFeatures_maxFilterSettlingTime(self, rate) - - def minInactivityTimeout(self): - return _mscl.NodeFeatures_minInactivityTimeout(self) - - def minLostBeaconTimeout(self): - return _mscl.NodeFeatures_minLostBeaconTimeout(self) - - def maxLostBeaconTimeout(self): - return _mscl.NodeFeatures_maxLostBeaconTimeout(self) - - def minCheckRadioInterval(self): - return _mscl.NodeFeatures_minCheckRadioInterval(self) - - def maxCheckRadioInterval(self): - return _mscl.NodeFeatures_maxCheckRadioInterval(self) - - def minSweeps(self): - return _mscl.NodeFeatures_minSweeps(self) - - def maxSweeps(self, samplingMode, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweeps(self, samplingMode, dataMode, dataFormat, channels) - - def maxSweepsPerBurst(self, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweepsPerBurst(self, dataMode, dataFormat, channels) - - def minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol): - return _mscl.NodeFeatures_minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol) - - def minSensorDelay(self): - return _mscl.NodeFeatures_minSensorDelay(self) - - def maxSensorDelay(self): - return _mscl.NodeFeatures_maxSensorDelay(self) - - def defaultSensorDelay(self): - return _mscl.NodeFeatures_defaultSensorDelay(self) - - def maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate): - return _mscl.NodeFeatures_maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate) - - def normalizeEventDuration(self, duration): - return _mscl.NodeFeatures_normalizeEventDuration(self, duration) - - def normalizeSensorDelay(self, delay): - return _mscl.NodeFeatures_normalizeSensorDelay(self, delay) - - def numDamageAngles(self): - return _mscl.NodeFeatures_numDamageAngles(self) - - def numSnCurveSegments(self): - return _mscl.NodeFeatures_numSnCurveSegments(self) - - def numEventTriggers(self): - return _mscl.NodeFeatures_numEventTriggers(self) - - def defaultModes(self): - return _mscl.NodeFeatures_defaultModes(self) - - def dataCollectionMethods(self): - return _mscl.NodeFeatures_dataCollectionMethods(self) - - def dataFormats(self): - return _mscl.NodeFeatures_dataFormats(self) - - def samplingModes(self): - return _mscl.NodeFeatures_samplingModes(self) - - def sampleRates(self, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_sampleRates(self, samplingMode, dataCollectionMethod, dataMode) - - def derivedDataRates(self): - return _mscl.NodeFeatures_derivedDataRates(self) - - def transmitPowers(self, *args): - return _mscl.NodeFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.NodeFeatures_commProtocols(self) - - def sensorOutputModes(self): - return _mscl.NodeFeatures_sensorOutputModes(self) - - def cfcFilters(self): - return _mscl.NodeFeatures_cfcFilters(self) - - def histogramTransmitRates(self): - return _mscl.NodeFeatures_histogramTransmitRates(self) - - def fatigueModes(self): - return _mscl.NodeFeatures_fatigueModes(self) - - def antiAliasingFilters(self): - return _mscl.NodeFeatures_antiAliasingFilters(self) - - def lowPassFilters(self): - return _mscl.NodeFeatures_lowPassFilters(self) - - def highPassFilters(self): - return _mscl.NodeFeatures_highPassFilters(self) - - def storageLimitModes(self): - return _mscl.NodeFeatures_storageLimitModes(self) - - def inputRanges(self, *args): - return _mscl.NodeFeatures_inputRanges(self, *args) - - def dataModes(self): - return _mscl.NodeFeatures_dataModes(self) - - def transducerTypes(self): - return _mscl.NodeFeatures_transducerTypes(self) - - def channelsPerDerivedCategory(self): - return _mscl.NodeFeatures_channelsPerDerivedCategory(self) - - def excitationVoltages(self): - return _mscl.NodeFeatures_excitationVoltages(self) - - def adcVoltageInputType(self): - return _mscl.NodeFeatures_adcVoltageInputType(self) - - def maxTransmitPower(self, *args): - return _mscl.NodeFeatures_maxTransmitPower(self, *args) - - def minTransmitPower(self, *args): - return _mscl.NodeFeatures_minTransmitPower(self, *args) - -# Register NodeFeatures in _mscl: -_mscl.NodeFeatures_swigregister(NodeFeatures) - -class BaseStationFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_BaseStationFeatures - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.BaseStationFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.BaseStationFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsButtons(self): - return _mscl.BaseStationFeatures_supportsButtons(self) - - def supportsAnalogPairing(self): - return _mscl.BaseStationFeatures_supportsAnalogPairing(self) - - def supportsBeaconStatus(self): - return _mscl.BaseStationFeatures_supportsBeaconStatus(self) - - def supportsRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsRfSweepMode(self) - - def supportsCustomRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsCustomRfSweepMode(self) - - def buttonCount(self): - return _mscl.BaseStationFeatures_buttonCount(self) - - def analogPortCount(self): - return _mscl.BaseStationFeatures_analogPortCount(self) - - def transmitPowers(self, *args): - return _mscl.BaseStationFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.BaseStationFeatures_commProtocols(self) - - def maxTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_maxTransmitPower(self, region, commProtocol) - - def minTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_minTransmitPower(self, region, commProtocol) - -# Register BaseStationFeatures in _mscl: -_mscl.BaseStationFeatures_swigregister(BaseStationFeatures) - -class EulerAngles(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EulerAngles_swiginit(self, _mscl.new_EulerAngles(*args)) - - def asMipFieldValues(self): - return _mscl.EulerAngles_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.EulerAngles_appendMipFieldValues(self, appendTo) - - def roll(self): - return _mscl.EulerAngles_roll(self) - - def pitch(self): - return _mscl.EulerAngles_pitch(self) - - def yaw(self): - return _mscl.EulerAngles_yaw(self) - - def heading(self): - return _mscl.EulerAngles_heading(self) - __swig_destroy__ = _mscl.delete_EulerAngles - -# Register EulerAngles in _mscl: -_mscl.EulerAngles_swigregister(EulerAngles) - -class Quaternion(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Quaternion_swiginit(self, _mscl.new_Quaternion(*args)) - - def asMipFieldValues(self): - return _mscl.Quaternion_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Quaternion_appendMipFieldValues(self, appendTo) - - def normalize(self): - return _mscl.Quaternion_normalize(self) - - def q0(self): - return _mscl.Quaternion_q0(self) - - def q1(self): - return _mscl.Quaternion_q1(self) - - def q2(self): - return _mscl.Quaternion_q2(self) - - def q3(self): - return _mscl.Quaternion_q3(self) - __swig_destroy__ = _mscl.delete_Quaternion - -# Register Quaternion in _mscl: -_mscl.Quaternion_swigregister(Quaternion) - -class Rotation(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EULER_ANGLES = _mscl.Rotation_EULER_ANGLES - QUATERNION = _mscl.Rotation_QUATERNION - - def __init__(self, *args): - _mscl.Rotation_swiginit(self, _mscl.new_Rotation(*args)) - - @staticmethod - def FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - - @staticmethod - def FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - - def asEulerAngles(self): - return _mscl.Rotation_asEulerAngles(self) - - def asQuaternion(self): - return _mscl.Rotation_asQuaternion(self) - - def asMipFieldValues(self, includeFormat=True): - return _mscl.Rotation_asMipFieldValues(self, includeFormat) - - def appendMipFieldValues(self, appendTo, includeFormat=True): - return _mscl.Rotation_appendMipFieldValues(self, appendTo, includeFormat) - - def format(self): - return _mscl.Rotation_format(self) - __swig_destroy__ = _mscl.delete_Rotation - -# Register Rotation in _mscl: -_mscl.Rotation_swigregister(Rotation) - -def Rotation_FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - -def Rotation_FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - -class Vec3f(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Vec3f_swiginit(self, _mscl.new_Vec3f(*args)) - __swig_destroy__ = _mscl.delete_Vec3f - - def fromMipFieldValues(self, data, offset=0): - return _mscl.Vec3f_fromMipFieldValues(self, data, offset) - - def asMipFieldValues(self): - return _mscl.Vec3f_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Vec3f_appendMipFieldValues(self, appendTo) - - def x(self, *args): - return _mscl.Vec3f_x(self, *args) - - def y(self, *args): - return _mscl.Vec3f_y(self, *args) - - def z(self, *args): - return _mscl.Vec3f_z(self, *args) - -# Register Vec3f in _mscl: -_mscl.Vec3f_swigregister(Vec3f) - -ECEF = _mscl.ECEF -LLH_NED = _mscl.LLH_NED -LOCAL = _mscl.LOCAL -VEHICLE = _mscl.VEHICLE -class GeometricVector(Vec3f): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - - @staticmethod - def VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - - def __init__(self, *args): - _mscl.GeometricVector_swiginit(self, _mscl.new_GeometricVector(*args)) - __swig_destroy__ = _mscl.delete_GeometricVector - - def fromMipFieldValues_includesFrame(self, data, offset=0): - return _mscl.GeometricVector_fromMipFieldValues_includesFrame(self, data, offset) - - def asMipFieldValues_includeFrame(self): - return _mscl.GeometricVector_asMipFieldValues_includeFrame(self) - - def appendMipFieldValues_includeFrame(self, appendTo): - return _mscl.GeometricVector_appendMipFieldValues_includeFrame(self, appendTo) - referenceFrame = property(_mscl.GeometricVector_referenceFrame_get, _mscl.GeometricVector_referenceFrame_set) - - def north(self, *args): - return _mscl.GeometricVector_north(self, *args) - - def east(self, *args): - return _mscl.GeometricVector_east(self, *args) - - def down(self, *args): - return _mscl.GeometricVector_down(self, *args) - -# Register GeometricVector in _mscl: -_mscl.GeometricVector_swigregister(GeometricVector) - -def GeometricVector_VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - -def GeometricVector_VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - -class PositionOffset(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.PositionOffset_swiginit(self, _mscl.new_PositionOffset(*args)) - __swig_destroy__ = _mscl.delete_PositionOffset - -# Register PositionOffset in _mscl: -_mscl.PositionOffset_swigregister(PositionOffset) - -class Velocity(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Velocity_swiginit(self, _mscl.new_Velocity(*args)) - __swig_destroy__ = _mscl.delete_Velocity - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - - @staticmethod - def NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - - @staticmethod - def Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -# Register Velocity in _mscl: -_mscl.Velocity_swigregister(Velocity) - -def Velocity_ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - -def Velocity_NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - -def Velocity_Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -class Position(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - - def __init__(self, *args): - _mscl.Position_swiginit(self, _mscl.new_Position(*args)) - __swig_destroy__ = _mscl.delete_Position - referenceFrame = property(_mscl.Position_referenceFrame_get, _mscl.Position_referenceFrame_set) - - def latitude(self, *args): - return _mscl.Position_latitude(self, *args) - - def longitude(self, *args): - return _mscl.Position_longitude(self, *args) - - def altitude(self, *args): - return _mscl.Position_altitude(self, *args) - - def height(self, *args): - return _mscl.Position_height(self, *args) - - def x(self, *args): - return _mscl.Position_x(self, *args) - - def y(self, *args): - return _mscl.Position_y(self, *args) - - def z(self, *args): - return _mscl.Position_z(self, *args) - -# Register Position in _mscl: -_mscl.Position_swigregister(Position) - -def Position_LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - -def Position_ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - -class GeometricUncertainty(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeometricUncertainty_swiginit(self, _mscl.new_GeometricUncertainty(*args)) - __swig_destroy__ = _mscl.delete_GeometricUncertainty - -# Register GeometricUncertainty in _mscl: -_mscl.GeometricUncertainty_swigregister(GeometricUncertainty) - -class MipModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_3dm_dh3 = _mscl.MipModels_node_3dm_dh3 - node_3dm_gx3_15 = _mscl.MipModels_node_3dm_gx3_15 - node_3dm_gx3_25 = _mscl.MipModels_node_3dm_gx3_25 - node_3dm_gx3_35 = _mscl.MipModels_node_3dm_gx3_35 - node_3dm_gx3_45 = _mscl.MipModels_node_3dm_gx3_45 - node_3dm_rq1_45_lt = _mscl.MipModels_node_3dm_rq1_45_lt - node_3dm_gx4_15 = _mscl.MipModels_node_3dm_gx4_15 - node_3dm_gx4_25 = _mscl.MipModels_node_3dm_gx4_25 - node_3dm_gx4_45 = _mscl.MipModels_node_3dm_gx4_45 - node_3dm_rq1_45_st = _mscl.MipModels_node_3dm_rq1_45_st - node_mv5_ar = _mscl.MipModels_node_mv5_ar - node_3dm_gx5_10 = _mscl.MipModels_node_3dm_gx5_10 - node_3dm_gx5_15 = _mscl.MipModels_node_3dm_gx5_15 - node_3dm_gx5_25 = _mscl.MipModels_node_3dm_gx5_25 - node_3dm_gx5_35 = _mscl.MipModels_node_3dm_gx5_35 - node_3dm_gx5_45 = _mscl.MipModels_node_3dm_gx5_45 - node_3dm_cv5_10 = _mscl.MipModels_node_3dm_cv5_10 - node_3dm_cv5_15 = _mscl.MipModels_node_3dm_cv5_15 - node_3dm_cv5_25 = _mscl.MipModels_node_3dm_cv5_25 - node_3dm_cv5_45 = _mscl.MipModels_node_3dm_cv5_45 - node_3dm_gq4_45 = _mscl.MipModels_node_3dm_gq4_45 - node_3dm_cx5_45 = _mscl.MipModels_node_3dm_cx5_45 - node_3dm_cx5_35 = _mscl.MipModels_node_3dm_cx5_35 - node_3dm_cx5_25 = _mscl.MipModels_node_3dm_cx5_25 - node_3dm_cx5_15 = _mscl.MipModels_node_3dm_cx5_15 - node_3dm_cx5_10 = _mscl.MipModels_node_3dm_cx5_10 - node_3dm_cl5_15 = _mscl.MipModels_node_3dm_cl5_15 - node_3dm_cl5_25 = _mscl.MipModels_node_3dm_cl5_25 - node_3dm_gq7 = _mscl.MipModels_node_3dm_gq7 - node_3dm_rtk = _mscl.MipModels_node_3dm_rtk - node_3dm_cv7_ahrs = _mscl.MipModels_node_3dm_cv7_ahrs - node_3dm_cv7_ar = _mscl.MipModels_node_3dm_cv7_ar - node_3dm_gv7_ahrs = _mscl.MipModels_node_3dm_gv7_ahrs - node_3dm_gv7_ar = _mscl.MipModels_node_3dm_gv7_ar - node_3dm_gv7_ins = _mscl.MipModels_node_3dm_gv7_ins - node_3dm_cv7_ins = _mscl.MipModels_node_3dm_cv7_ins - node_3dm_cv7_gnss_ins = _mscl.MipModels_node_3dm_cv7_gnss_ins - placeholder_matchAll = _mscl.MipModels_placeholder_matchAll - rtk_v1 = _mscl.MipModels_rtk_v1 - rtk_v2 = _mscl.MipModels_rtk_v2 - model_3dm_dh3 = _mscl.MipModels_model_3dm_dh3 - model_3dm_gx3_15 = _mscl.MipModels_model_3dm_gx3_15 - model_3dm_gx3_25 = _mscl.MipModels_model_3dm_gx3_25 - model_3dm_gx3_35 = _mscl.MipModels_model_3dm_gx3_35 - model_3dm_gx3_45 = _mscl.MipModels_model_3dm_gx3_45 - model_3dm_rq1_45_lt = _mscl.MipModels_model_3dm_rq1_45_lt - model_3dm_gx4_15 = _mscl.MipModels_model_3dm_gx4_15 - model_3dm_gx4_25 = _mscl.MipModels_model_3dm_gx4_25 - model_3dm_gx4_45 = _mscl.MipModels_model_3dm_gx4_45 - model_3dm_rq1_45_st = _mscl.MipModels_model_3dm_rq1_45_st - model_mv5_ar = _mscl.MipModels_model_mv5_ar - model_3dm_gx5_10 = _mscl.MipModels_model_3dm_gx5_10 - model_3dm_gx5_15 = _mscl.MipModels_model_3dm_gx5_15 - model_3dm_gx5_25 = _mscl.MipModels_model_3dm_gx5_25 - model_3dm_gx5_35 = _mscl.MipModels_model_3dm_gx5_35 - model_3dm_gx5_45 = _mscl.MipModels_model_3dm_gx5_45 - model_3dm_cv5_10 = _mscl.MipModels_model_3dm_cv5_10 - model_3dm_cv5_15 = _mscl.MipModels_model_3dm_cv5_15 - model_3dm_cv5_25 = _mscl.MipModels_model_3dm_cv5_25 - model_3dm_cv5_45 = _mscl.MipModels_model_3dm_cv5_45 - model_3dm_gq4_45 = _mscl.MipModels_model_3dm_gq4_45 - model_3dm_cx5_45 = _mscl.MipModels_model_3dm_cx5_45 - model_3dm_cx5_35 = _mscl.MipModels_model_3dm_cx5_35 - model_3dm_cx5_25 = _mscl.MipModels_model_3dm_cx5_25 - model_3dm_cx5_15 = _mscl.MipModels_model_3dm_cx5_15 - model_3dm_cx5_10 = _mscl.MipModels_model_3dm_cx5_10 - model_3dm_cl5_15 = _mscl.MipModels_model_3dm_cl5_15 - model_3dm_cl5_25 = _mscl.MipModels_model_3dm_cl5_25 - model_3dm_gq7 = _mscl.MipModels_model_3dm_gq7 - model_3dm_rtk_v1 = _mscl.MipModels_model_3dm_rtk_v1 - model_3dm_rtk = _mscl.MipModels_model_3dm_rtk - model_3dm_cv7_ahrs = _mscl.MipModels_model_3dm_cv7_ahrs - model_3dm_cv7_ar = _mscl.MipModels_model_3dm_cv7_ar - model_3dm_gv7_ahrs = _mscl.MipModels_model_3dm_gv7_ahrs - model_3dm_gv7_ar = _mscl.MipModels_model_3dm_gv7_ar - model_3dm_gv7_ins = _mscl.MipModels_model_3dm_gv7_ins - model_3dm_cv7_ins = _mscl.MipModels_model_3dm_cv7_ins - model_3dm_cv7_gnss_ins = _mscl.MipModels_model_3dm_cv7_gnss_ins - - @staticmethod - def modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - - @staticmethod - def modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - - @staticmethod - def modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - - @staticmethod - def nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - - @staticmethod - def modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - - @staticmethod - def nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - - @staticmethod - def modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - - @staticmethod - def stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - - def __init__(self): - _mscl.MipModels_swiginit(self, _mscl.new_MipModels()) - __swig_destroy__ = _mscl.delete_MipModels - -# Register MipModels in _mscl: -_mscl.MipModels_swigregister(MipModels) - -def MipModels_modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - -def MipModels_modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - -def MipModels_modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - -def MipModels_nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - -def MipModels_modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - -def MipModels_nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - -def MipModels_modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - -def MipModels_stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - -class MipModel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipModel_swiginit(self, _mscl.new_MipModel(*args)) - - def equals(self, compare): - return _mscl.MipModel_equals(self, compare) - - def __str__(self): - return _mscl.MipModel___str__(self) - - def nodeModel(self): - return _mscl.MipModel_nodeModel(self) - - def modifier(self): - return _mscl.MipModel_modifier(self) - - def modelNumber(self): - return _mscl.MipModel_modelNumber(self) - - def baseModel(self): - return _mscl.MipModel_baseModel(self) - __swig_destroy__ = _mscl.delete_MipModel - -# Register MipModel in _mscl: -_mscl.MipModel_swigregister(MipModel) -MipModel.mip_model_none = _mscl.cvar.MipModel_mip_model_none -MipModel.mip_model_3dm_dh3 = _mscl.cvar.MipModel_mip_model_3dm_dh3 -MipModel.mip_model_3dm_gx3_15 = _mscl.cvar.MipModel_mip_model_3dm_gx3_15 -MipModel.mip_model_3dm_gx3_25 = _mscl.cvar.MipModel_mip_model_3dm_gx3_25 -MipModel.mip_model_3dm_gx3_35 = _mscl.cvar.MipModel_mip_model_3dm_gx3_35 -MipModel.mip_model_3dm_gx3_45 = _mscl.cvar.MipModel_mip_model_3dm_gx3_45 -MipModel.mip_model_3dm_rq1_45_lt = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_lt -MipModel.mip_model_3dm_rq1_45_st = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_st -MipModel.mip_model_3dm_gx4_15 = _mscl.cvar.MipModel_mip_model_3dm_gx4_15 -MipModel.mip_model_3dm_gx4_25 = _mscl.cvar.MipModel_mip_model_3dm_gx4_25 -MipModel.mip_model_3dm_gx4_45 = _mscl.cvar.MipModel_mip_model_3dm_gx4_45 -MipModel.mip_model_mv5_ar = _mscl.cvar.MipModel_mip_model_mv5_ar -MipModel.mip_model_3dm_gx5_10 = _mscl.cvar.MipModel_mip_model_3dm_gx5_10 -MipModel.mip_model_3dm_gx5_15 = _mscl.cvar.MipModel_mip_model_3dm_gx5_15 -MipModel.mip_model_3dm_gx5_25 = _mscl.cvar.MipModel_mip_model_3dm_gx5_25 -MipModel.mip_model_3dm_gx5_35 = _mscl.cvar.MipModel_mip_model_3dm_gx5_35 -MipModel.mip_model_3dm_gx5_45 = _mscl.cvar.MipModel_mip_model_3dm_gx5_45 -MipModel.mip_model_3dm_cv5_10 = _mscl.cvar.MipModel_mip_model_3dm_cv5_10 -MipModel.mip_model_3dm_cv5_15 = _mscl.cvar.MipModel_mip_model_3dm_cv5_15 -MipModel.mip_model_3dm_cv5_25 = _mscl.cvar.MipModel_mip_model_3dm_cv5_25 -MipModel.mip_model_3dm_cv5_45 = _mscl.cvar.MipModel_mip_model_3dm_cv5_45 -MipModel.mip_model_3dm_gq4_45 = _mscl.cvar.MipModel_mip_model_3dm_gq4_45 -MipModel.mip_model_3dm_cx5_45 = _mscl.cvar.MipModel_mip_model_3dm_cx5_45 -MipModel.mip_model_3dm_cx5_35 = _mscl.cvar.MipModel_mip_model_3dm_cx5_35 -MipModel.mip_model_3dm_cx5_25 = _mscl.cvar.MipModel_mip_model_3dm_cx5_25 -MipModel.mip_model_3dm_cx5_15 = _mscl.cvar.MipModel_mip_model_3dm_cx5_15 -MipModel.mip_model_3dm_cx5_10 = _mscl.cvar.MipModel_mip_model_3dm_cx5_10 -MipModel.mip_model_3dm_cl5_15 = _mscl.cvar.MipModel_mip_model_3dm_cl5_15 -MipModel.mip_model_3dm_cl5_25 = _mscl.cvar.MipModel_mip_model_3dm_cl5_25 -MipModel.mip_model_3dm_gq7 = _mscl.cvar.MipModel_mip_model_3dm_gq7 -MipModel.mip_model_3dm_rtk_v1 = _mscl.cvar.MipModel_mip_model_3dm_rtk_v1 -MipModel.mip_model_3dm_rtk = _mscl.cvar.MipModel_mip_model_3dm_rtk -MipModel.mip_model_3dm_cv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_cv7_ahrs -MipModel.mip_model_3dm_cv7_ar = _mscl.cvar.MipModel_mip_model_3dm_cv7_ar -MipModel.mip_model_3dm_gv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_gv7_ahrs -MipModel.mip_model_3dm_gv7_ar = _mscl.cvar.MipModel_mip_model_3dm_gv7_ar -MipModel.mip_model_3dm_gv7_ins = _mscl.cvar.MipModel_mip_model_3dm_gv7_ins -MipModel.mip_model_3dm_cv7_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_ins -MipModel.mip_model_3dm_cv7_gnss_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_gnss_ins - -class DisplacementModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_digitalDemod = _mscl.DisplacementModels_node_digitalDemod - - def __init__(self): - _mscl.DisplacementModels_swiginit(self, _mscl.new_DisplacementModels()) - __swig_destroy__ = _mscl.delete_DisplacementModels - -# Register DisplacementModels in _mscl: -_mscl.DisplacementModels_swigregister(DisplacementModels) - -class MipTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CLASS_AHRS_IMU = _mscl.MipTypes_CLASS_AHRS_IMU - CLASS_GNSS = _mscl.MipTypes_CLASS_GNSS - CLASS_ESTFILTER = _mscl.MipTypes_CLASS_ESTFILTER - CLASS_DISPLACEMENT = _mscl.MipTypes_CLASS_DISPLACEMENT - CLASS_GNSS1 = _mscl.MipTypes_CLASS_GNSS1 - CLASS_GNSS2 = _mscl.MipTypes_CLASS_GNSS2 - CLASS_GNSS3 = _mscl.MipTypes_CLASS_GNSS3 - CLASS_RTK = _mscl.MipTypes_CLASS_RTK - CLASS_GNSS4 = _mscl.MipTypes_CLASS_GNSS4 - CLASS_GNSS5 = _mscl.MipTypes_CLASS_GNSS5 - CLASS_SYSTEM = _mscl.MipTypes_CLASS_SYSTEM - USE_NEW_SETTINGS = _mscl.MipTypes_USE_NEW_SETTINGS - READ_BACK_CURRENT_SETTINGS = _mscl.MipTypes_READ_BACK_CURRENT_SETTINGS - SAVE_CURRENT_SETTINGS = _mscl.MipTypes_SAVE_CURRENT_SETTINGS - LOAD_STARTUP_SETTINGS = _mscl.MipTypes_LOAD_STARTUP_SETTINGS - RESET_TO_DEFAULT = _mscl.MipTypes_RESET_TO_DEFAULT - USE_NEW_SETTINGS_NO_ACKNACK = _mscl.MipTypes_USE_NEW_SETTINGS_NO_ACKNACK - DISABLED = _mscl.MipTypes_DISABLED - ENABLED = _mscl.MipTypes_ENABLED - TIME_FRAME_WEEKS = _mscl.MipTypes_TIME_FRAME_WEEKS - TIME_FRAME_SECONDS = _mscl.MipTypes_TIME_FRAME_SECONDS - CMD_PING = _mscl.MipTypes_CMD_PING - CMD_SET_IDLE = _mscl.MipTypes_CMD_SET_IDLE - CMD_GET_DEVICE_INFO = _mscl.MipTypes_CMD_GET_DEVICE_INFO - CMD_GET_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_DESCRIPTOR_SETS - CMD_BUILT_IN_TEST = _mscl.MipTypes_CMD_BUILT_IN_TEST - CMD_RESUME = _mscl.MipTypes_CMD_RESUME - CMD_GET_EXT_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_EXT_DESCRIPTOR_SETS - CMD_COMM_PORT_SPEED = _mscl.MipTypes_CMD_COMM_PORT_SPEED - CMD_GPS_TIME_UPDATE = _mscl.MipTypes_CMD_GPS_TIME_UPDATE - CMD_RESET = _mscl.MipTypes_CMD_RESET - CMD_POLL_SENSOR_DATA = _mscl.MipTypes_CMD_POLL_SENSOR_DATA - CMD_POLL_GNSS_DATA = _mscl.MipTypes_CMD_POLL_GNSS_DATA - CMD_POLL_EF_DATA = _mscl.MipTypes_CMD_POLL_EF_DATA - CMD_GET_SENSOR_RATE_BASE = _mscl.MipTypes_CMD_GET_SENSOR_RATE_BASE - CMD_GET_GNSS_RATE_BASE = _mscl.MipTypes_CMD_GET_GNSS_RATE_BASE - CMD_GET_EF_RATE_BASE = _mscl.MipTypes_CMD_GET_EF_RATE_BASE - CMD_SENSOR_MESSAGE_FORMAT = _mscl.MipTypes_CMD_SENSOR_MESSAGE_FORMAT - CMD_GNSS_MESSAGE_FORMAT = _mscl.MipTypes_CMD_GNSS_MESSAGE_FORMAT - CMD_EF_MESSAGE_FORMAT = _mscl.MipTypes_CMD_EF_MESSAGE_FORMAT - CMD_NMEA_MESSAGE_FORMAT = _mscl.MipTypes_CMD_NMEA_MESSAGE_FORMAT - CMD_POLL = _mscl.MipTypes_CMD_POLL - CMD_GET_BASE_RATE = _mscl.MipTypes_CMD_GET_BASE_RATE - CMD_MESSAGE_FORMAT = _mscl.MipTypes_CMD_MESSAGE_FORMAT - CMD_FACTORY_STREAMING = _mscl.MipTypes_CMD_FACTORY_STREAMING - CMD_CONTINUOUS_DATA_STREAM = _mscl.MipTypes_CMD_CONTINUOUS_DATA_STREAM - CMD_RAW_RTCM_2_3_MESSAGE = _mscl.MipTypes_CMD_RAW_RTCM_2_3_MESSAGE - CMD_GNSS_CONSTELLATION_SETTINGS = _mscl.MipTypes_CMD_GNSS_CONSTELLATION_SETTINGS - CMD_GNSS_SBAS_SETTINGS = _mscl.MipTypes_CMD_GNSS_SBAS_SETTINGS - CMD_GNSS_ASSIST_FIX_CONTROL = _mscl.MipTypes_CMD_GNSS_ASSIST_FIX_CONTROL - CMD_GNSS_ASSIST_TIME_UPDATE = _mscl.MipTypes_CMD_GNSS_ASSIST_TIME_UPDATE - CMD_PPS_SOURCE = _mscl.MipTypes_CMD_PPS_SOURCE - CMD_EVENT_SUPPORT = _mscl.MipTypes_CMD_EVENT_SUPPORT - CMD_EVENT_CONTROL = _mscl.MipTypes_CMD_EVENT_CONTROL - CMD_EVENT_TRIGGER_STATUS = _mscl.MipTypes_CMD_EVENT_TRIGGER_STATUS - CMD_EVENT_ACTION_STATUS = _mscl.MipTypes_CMD_EVENT_ACTION_STATUS - CMD_EVENT_TRIGGER_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_TRIGGER_CONFIGURATION - CMD_EVENT_ACTION_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_ACTION_CONFIGURATION - CMD_SAVE_STARTUP_SETTINGS = _mscl.MipTypes_CMD_SAVE_STARTUP_SETTINGS - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM - CMD_GPS_DYNAMICS_MODE = _mscl.MipTypes_CMD_GPS_DYNAMICS_MODE - CMD_SENSOR_SIG_COND_SETTINGS = _mscl.MipTypes_CMD_SENSOR_SIG_COND_SETTINGS - CMD_SENSOR_TIMESTAMP = _mscl.MipTypes_CMD_SENSOR_TIMESTAMP - CMD_ACCEL_BIAS = _mscl.MipTypes_CMD_ACCEL_BIAS - CMD_GYRO_BIAS = _mscl.MipTypes_CMD_GYRO_BIAS - CMD_CAP_GYRO_BIAS = _mscl.MipTypes_CMD_CAP_GYRO_BIAS - CMD_MAG_HARD_IRON_OFFSET = _mscl.MipTypes_CMD_MAG_HARD_IRON_OFFSET - CMD_MAG_SOFT_IRON_MATRIX = _mscl.MipTypes_CMD_MAG_SOFT_IRON_MATRIX - CMD_CF_REALIGN_UP = _mscl.MipTypes_CMD_CF_REALIGN_UP - CMD_CF_REALIGN_NORTH = _mscl.MipTypes_CMD_CF_REALIGN_NORTH - CMD_CONING_SCULLING = _mscl.MipTypes_CMD_CONING_SCULLING - CMD_UART_BAUD_RATE = _mscl.MipTypes_CMD_UART_BAUD_RATE - CMD_GPIO_CONFIGURATION = _mscl.MipTypes_CMD_GPIO_CONFIGURATION - CMD_GPIO_STATE = _mscl.MipTypes_CMD_GPIO_STATE - CMD_ODOMETER_SETTINGS = _mscl.MipTypes_CMD_ODOMETER_SETTINGS - CMD_LOWPASS_FILTER_SETTINGS = _mscl.MipTypes_CMD_LOWPASS_FILTER_SETTINGS - CMD_COMPLEMENTARY_FILTER_SETTINGS = _mscl.MipTypes_CMD_COMPLEMENTARY_FILTER_SETTINGS - CMD_SENSOR_RANGE = _mscl.MipTypes_CMD_SENSOR_RANGE - CMD_SUPPORTED_SENSOR_RANGES = _mscl.MipTypes_CMD_SUPPORTED_SENSOR_RANGES - CMD_LOWPASS_ANTIALIASING_FILTER = _mscl.MipTypes_CMD_LOWPASS_ANTIALIASING_FILTER - CMD_DATA_STREAM_FORMAT = _mscl.MipTypes_CMD_DATA_STREAM_FORMAT - CMD_POWER_STATES = _mscl.MipTypes_CMD_POWER_STATES - CMD_GPS_STARTUP_SETTINGS = _mscl.MipTypes_CMD_GPS_STARTUP_SETTINGS - CMD_DEVICE_STATUS = _mscl.MipTypes_CMD_DEVICE_STATUS - CMD_EF_RESET_FILTER = _mscl.MipTypes_CMD_EF_RESET_FILTER - CMD_EF_INIT_ATTITUDE = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE - CMD_EF_INIT_HEADING = _mscl.MipTypes_CMD_EF_INIT_HEADING - CMD_EF_INIT_ATTITUDE_FROM_AHRS = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE_FROM_AHRS - CMD_EF_RUN_FILTER = _mscl.MipTypes_CMD_EF_RUN_FILTER - CMD_EF_VEHIC_DYNAMICS_MODE = _mscl.MipTypes_CMD_EF_VEHIC_DYNAMICS_MODE - CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER - CMD_EF_SENS_VEHIC_FRAME_OFFSET = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_OFFSET - CMD_EF_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_ANTENNA_OFFSET - CMD_EF_BIAS_EST_CTRL = _mscl.MipTypes_CMD_EF_BIAS_EST_CTRL - CMD_EF_GNSS_SRC_CTRL = _mscl.MipTypes_CMD_EF_GNSS_SRC_CTRL - CMD_EF_EXTERN_GNSS_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_GNSS_UPDATE - CMD_EF_EXTERN_HEADING_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_HEADING_UPDATE - CMD_EF_HEADING_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_HEADING_UPDATE_CTRL - CMD_EF_AUTO_INIT_CTRL = _mscl.MipTypes_CMD_EF_AUTO_INIT_CTRL - CMD_EF_ACCEL_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_ACCEL_WHT_NSE_STD_DEV - CMD_EF_GYRO_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_GYRO_WHT_NSE_STD_DEV - CMD_EF_ACCEL_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_ACCEL_BIAS_MODEL_PARAMS - CMD_EF_GYRO_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_GYRO_BIAS_MODEL_PARAMS - CMD_EF_ZERO_VEL_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_VEL_UPDATE_CTRL - CMD_EF_EXT_HEADING_UPDATE_TS = _mscl.MipTypes_CMD_EF_EXT_HEADING_UPDATE_TS - CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL - CMD_EF_TARE_ORIENT = _mscl.MipTypes_CMD_EF_TARE_ORIENT - CMD_EF_CMDED_ZERO_VEL_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_VEL_UPDATE - CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE - CMD_EF_SET_REF_POSITION = _mscl.MipTypes_CMD_EF_SET_REF_POSITION - CMD_EF_MAG_CAPTURE_AUTO_CAL = _mscl.MipTypes_CMD_EF_MAG_CAPTURE_AUTO_CAL - CMD_EF_GRAVITY_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_STD_DEV - CMD_EF_PRESS_ALT_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_PRESS_ALT_NOISE_STD_DEV - CMD_EF_GRAVITY_NOISE_MINIMUM = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_MINIMUM - CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE - CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE - CMD_EF_ENABLE_DISABLE_MEASUREMENTS = _mscl.MipTypes_CMD_EF_ENABLE_DISABLE_MEASUREMENTS - CMD_EF_MAG_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_MAG_NOISE_STD_DEV - CMD_EF_DECLINATION_SRC = _mscl.MipTypes_CMD_EF_DECLINATION_SRC - CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE - CMD_EF_ALTITUDE_AID_CTRL = _mscl.MipTypes_CMD_EF_ALTITUDE_AID_CTRL - CMD_EF_PITCH_ROLL_AID_CTRL = _mscl.MipTypes_CMD_EF_PITCH_ROLL_AID_CTRL - CMD_EF_INCLINATION_SRC = _mscl.MipTypes_CMD_EF_INCLINATION_SRC - CMD_EF_FIELD_MAGNITUDE_SRC = _mscl.MipTypes_CMD_EF_FIELD_MAGNITUDE_SRC - CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM - CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT - CMD_EF_AIDING_MEASUREMENT_ENABLE = _mscl.MipTypes_CMD_EF_AIDING_MEASUREMENT_ENABLE - CMD_EF_INITIALIZATION_CONFIG = _mscl.MipTypes_CMD_EF_INITIALIZATION_CONFIG - CMD_EF_ADAPTIVE_FILTER_OPTIONS = _mscl.MipTypes_CMD_EF_ADAPTIVE_FILTER_OPTIONS - CMD_EF_MULTI_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_MULTI_ANTENNA_OFFSET - CMD_EF_RELATIVE_POSITION_REF = _mscl.MipTypes_CMD_EF_RELATIVE_POSITION_REF - CMD_EF_LEVER_ARM_OFFSET_REF = _mscl.MipTypes_CMD_EF_LEVER_ARM_OFFSET_REF - CMD_EF_EXTERN_SPEED_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_SPEED_UPDATE - CMD_EF_SPEED_MEASUREMENT_OFFSET = _mscl.MipTypes_CMD_EF_SPEED_MEASUREMENT_OFFSET - CMD_EF_VERTICAL_GYRO_CONSTRAINT = _mscl.MipTypes_CMD_EF_VERTICAL_GYRO_CONSTRAINT - CMD_EF_WHEELED_VEHICLE_CONSTRAINT = _mscl.MipTypes_CMD_EF_WHEELED_VEHICLE_CONSTRAINT - CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL = _mscl.MipTypes_CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL - CMD_GNSS_RECEIVER_INFO = _mscl.MipTypes_CMD_GNSS_RECEIVER_INFO - CMD_GNSS_SIGNAL_CONFIG = _mscl.MipTypes_CMD_GNSS_SIGNAL_CONFIG - CMD_GNSS_SPARTN_CONFIG = _mscl.MipTypes_CMD_GNSS_SPARTN_CONFIG - CMD_GNSS_RTK_CONFIG = _mscl.MipTypes_CMD_GNSS_RTK_CONFIG - CMD_INTERFACE_CONTROL = _mscl.MipTypes_CMD_INTERFACE_CONTROL - CMD_COMMUNICATION_MODE = _mscl.MipTypes_CMD_COMMUNICATION_MODE - CMD_HARDWARE_CTRL = _mscl.MipTypes_CMD_HARDWARE_CTRL - CMD_GET_ANALOG_DISPLACEMENT_CALS = _mscl.MipTypes_CMD_GET_ANALOG_DISPLACEMENT_CALS - CMD_DISPLACEMENT_OUTPUT_RATE = _mscl.MipTypes_CMD_DISPLACEMENT_OUTPUT_RATE - CMD_DISPLACEMENT_DEVICE_TIME = _mscl.MipTypes_CMD_DISPLACEMENT_DEVICE_TIME - CMD_RTK_DEVICE_STATUS_FLAGS = _mscl.MipTypes_CMD_RTK_DEVICE_STATUS_FLAGS - CMD_RTK_ACTIVATION_CODE = _mscl.MipTypes_CMD_RTK_ACTIVATION_CODE - CMD_AIDING_FRAME_CONFIG = _mscl.MipTypes_CMD_AIDING_FRAME_CONFIG - CMD_AIDING_ECHO_CONTROL = _mscl.MipTypes_CMD_AIDING_ECHO_CONTROL - CMD_AIDING_POS_ECEF = _mscl.MipTypes_CMD_AIDING_POS_ECEF - CMD_AIDING_POS_LLH = _mscl.MipTypes_CMD_AIDING_POS_LLH - CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID - CMD_AIDING_VEL_ECEF = _mscl.MipTypes_CMD_AIDING_VEL_ECEF - CMD_AIDING_VEL_NED = _mscl.MipTypes_CMD_AIDING_VEL_NED - CMD_AIDING_VEL_BODY_FRAME = _mscl.MipTypes_CMD_AIDING_VEL_BODY_FRAME - CMD_AIDING_HEADING_TRUE = _mscl.MipTypes_CMD_AIDING_HEADING_TRUE - CMD_AIDING_MAGNETIC_FIELD = _mscl.MipTypes_CMD_AIDING_MAGNETIC_FIELD - CMD_AIDING_PRESSURE = _mscl.MipTypes_CMD_AIDING_PRESSURE - CH_FIELD_SENSOR_RAW_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_ACCEL_VEC - CH_FIELD_SENSOR_RAW_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_GYRO_VEC - CH_FIELD_SENSOR_RAW_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_MAG_VEC - CH_FIELD_SENSOR_SCALED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_ACCEL_VEC - CH_FIELD_SENSOR_SCALED_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_GYRO_VEC - CH_FIELD_SENSOR_SCALED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_MAG_VEC - CH_FIELD_SENSOR_DELTA_THETA_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_THETA_VEC - CH_FIELD_SENSOR_DELTA_VELOCITY_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_VELOCITY_VEC - CH_FIELD_SENSOR_ORIENTATION_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_MATRIX - CH_FIELD_SENSOR_ORIENTATION_QUATERNION = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_QUATERNION - CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX - CH_FIELD_SENSOR_EULER_ANGLES = _mscl.MipTypes_CH_FIELD_SENSOR_EULER_ANGLES - CH_FIELD_SENSOR_INTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_INTERNAL_TIMESTAMP - CH_FIELD_SENSOR_BEACONED_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_BEACONED_TIMESTAMP - CH_FIELD_SENSOR_STABILIZED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_MAG_VEC - CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC - CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP - CH_FIELD_SENSOR_TEMPERATURE_STATISTICS = _mscl.MipTypes_CH_FIELD_SENSOR_TEMPERATURE_STATISTICS - CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE - CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE - CH_FIELD_SENSOR_OVERRANGE_STATUS = _mscl.MipTypes_CH_FIELD_SENSOR_OVERRANGE_STATUS - CH_FIELD_SENSOR_ODOMETER_DATA = _mscl.MipTypes_CH_FIELD_SENSOR_ODOMETER_DATA - CH_FIELD_SENSOR_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EVENT_SOURCE - CH_FIELD_SENSOR_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_TICKS - CH_FIELD_SENSOR_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TICKS - CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP - CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_LLH_POSITION - CH_FIELD_GNSS_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_POSITION - CH_FIELD_GNSS_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_NED_VELOCITY - CH_FIELD_GNSS_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_VELOCITY - CH_FIELD_GNSS_DOP = _mscl.MipTypes_CH_FIELD_GNSS_DOP - CH_FIELD_GNSS_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_UTC_TIME - CH_FIELD_GNSS_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_GPS_TIME - CH_FIELD_GNSS_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO - CH_FIELD_GNSS_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_FIX_INFO - CH_FIELD_GNSS_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_HARDWARE_STATUS - CH_FIELD_GNSS_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_INFO - CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO_2 - CH_FIELD_GNSS_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_LEAP_SECONDS - CH_FIELD_GNSS_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_INFO - CH_FIELD_GNSS_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_CORRECTION - CH_FIELD_GNSS_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_RF_ERROR_DETECTION - CH_FIELD_GNSS_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_SATELLITE_STATUS - CH_FIELD_GNSS_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_RAW_OBSERVATION - CH_FIELD_GNSS_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_STATION_INFO - CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_EPHEMERIS - CH_FIELD_GNSS_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GLONASS_EPHEMERIS - CH_FIELD_GNSS_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_EPHEMERIS - CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_TICKS - CH_FIELD_GNSS_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TICKS - CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS - CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL - CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE - CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE - CH_FIELD_ESTFILTER_FILTER_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_FILTER_STATUS - CH_FIELD_ESTFILTER_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT - CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR - CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE - CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR - CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_MAG_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS - CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT - CH_FIELD_ESTFILTER_COMPENSATED_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_COMPENSATED_ACCEL - CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL - CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT - CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX - CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS_UNCERT - CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS - CH_FIELD_ESTFILTER_ECEF_VEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL - CH_FIELD_ESTFILTER_NED_RELATIVE_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_NED_RELATIVE_POS - CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS - CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS - CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY = _mscl.MipTypes_CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT - CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT - CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE - CH_FIELD_ESTFILTER_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_TICKS - CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS - CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_DISP_DISPLACEMENT_RAW = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_RAW - CH_FIELD_DISP_DISPLACEMENT_MM = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_MM - CH_FIELD_DISP_DISPLACEMENT_TS = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_TS - CH_FIELD_GNSS_1_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_LLH_POSITION - CH_FIELD_GNSS_1_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_POSITION - CH_FIELD_GNSS_1_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_NED_VELOCITY - CH_FIELD_GNSS_1_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_VELOCITY - CH_FIELD_GNSS_1_DOP = _mscl.MipTypes_CH_FIELD_GNSS_1_DOP - CH_FIELD_GNSS_1_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_UTC_TIME - CH_FIELD_GNSS_1_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_TIME - CH_FIELD_GNSS_1_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO - CH_FIELD_GNSS_1_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_FIX_INFO - CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_1_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_HARDWARE_STATUS - CH_FIELD_GNSS_1_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_INFO - CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_1_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO_2 - CH_FIELD_GNSS_1_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_LEAP_SECONDS - CH_FIELD_GNSS_1_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_INFO - CH_FIELD_GNSS_1_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_CORRECTION - CH_FIELD_GNSS_1_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_RF_ERROR_DETECTION - CH_FIELD_GNSS_1_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_SATELLITE_STATUS - CH_FIELD_GNSS_1_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_1_RAW_OBSERVATION - CH_FIELD_GNSS_1_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_STATION_INFO - CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_1_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_EPHEMERIS - CH_FIELD_GNSS_1_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GLONASS_EPHEMERIS - CH_FIELD_GNSS_1_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_EPHEMERIS - CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_1_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_TICKS - CH_FIELD_GNSS_1_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TICKS - CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_2_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_LLH_POSITION - CH_FIELD_GNSS_2_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_POSITION - CH_FIELD_GNSS_2_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_NED_VELOCITY - CH_FIELD_GNSS_2_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_VELOCITY - CH_FIELD_GNSS_2_DOP = _mscl.MipTypes_CH_FIELD_GNSS_2_DOP - CH_FIELD_GNSS_2_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_UTC_TIME - CH_FIELD_GNSS_2_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_TIME - CH_FIELD_GNSS_2_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO - CH_FIELD_GNSS_2_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_FIX_INFO - CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_2_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_HARDWARE_STATUS - CH_FIELD_GNSS_2_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_INFO - CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_2_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO_2 - CH_FIELD_GNSS_2_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_LEAP_SECONDS - CH_FIELD_GNSS_2_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_INFO - CH_FIELD_GNSS_2_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_CORRECTION - CH_FIELD_GNSS_2_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_RF_ERROR_DETECTION - CH_FIELD_GNSS_2_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_SATELLITE_STATUS - CH_FIELD_GNSS_2_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_2_RAW_OBSERVATION - CH_FIELD_GNSS_2_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_STATION_INFO - CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_2_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_EPHEMERIS - CH_FIELD_GNSS_2_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GLONASS_EPHEMERIS - CH_FIELD_GNSS_2_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_EPHEMERIS - CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_2_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_TICKS - CH_FIELD_GNSS_2_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TICKS - CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_3_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_LLH_POSITION - CH_FIELD_GNSS_3_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_POSITION - CH_FIELD_GNSS_3_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_NED_VELOCITY - CH_FIELD_GNSS_3_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_VELOCITY - CH_FIELD_GNSS_3_DOP = _mscl.MipTypes_CH_FIELD_GNSS_3_DOP - CH_FIELD_GNSS_3_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_UTC_TIME - CH_FIELD_GNSS_3_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_TIME - CH_FIELD_GNSS_3_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO - CH_FIELD_GNSS_3_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_FIX_INFO - CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_3_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_HARDWARE_STATUS - CH_FIELD_GNSS_3_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_INFO - CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_3_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO_2 - CH_FIELD_GNSS_3_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_LEAP_SECONDS - CH_FIELD_GNSS_3_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_INFO - CH_FIELD_GNSS_3_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_CORRECTION - CH_FIELD_GNSS_3_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_RF_ERROR_DETECTION - CH_FIELD_GNSS_3_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_SATELLITE_STATUS - CH_FIELD_GNSS_3_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_3_RAW_OBSERVATION - CH_FIELD_GNSS_3_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_STATION_INFO - CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_3_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_EPHEMERIS - CH_FIELD_GNSS_3_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GLONASS_EPHEMERIS - CH_FIELD_GNSS_3_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_EPHEMERIS - CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_3_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_TICKS - CH_FIELD_GNSS_3_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TICKS - CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_4_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_LLH_POSITION - CH_FIELD_GNSS_4_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_POSITION - CH_FIELD_GNSS_4_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_NED_VELOCITY - CH_FIELD_GNSS_4_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_VELOCITY - CH_FIELD_GNSS_4_DOP = _mscl.MipTypes_CH_FIELD_GNSS_4_DOP - CH_FIELD_GNSS_4_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_UTC_TIME - CH_FIELD_GNSS_4_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_TIME - CH_FIELD_GNSS_4_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO - CH_FIELD_GNSS_4_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_FIX_INFO - CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_4_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_HARDWARE_STATUS - CH_FIELD_GNSS_4_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_INFO - CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_4_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO_2 - CH_FIELD_GNSS_4_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_LEAP_SECONDS - CH_FIELD_GNSS_4_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_INFO - CH_FIELD_GNSS_4_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_CORRECTION - CH_FIELD_GNSS_4_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_RF_ERROR_DETECTION - CH_FIELD_GNSS_4_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_SATELLITE_STATUS - CH_FIELD_GNSS_4_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_4_RAW_OBSERVATION - CH_FIELD_GNSS_4_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_STATION_INFO - CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_4_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_EPHEMERIS - CH_FIELD_GNSS_4_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GLONASS_EPHEMERIS - CH_FIELD_GNSS_4_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_EPHEMERIS - CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_4_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_TICKS - CH_FIELD_GNSS_4_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TICKS - CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_5_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_LLH_POSITION - CH_FIELD_GNSS_5_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_POSITION - CH_FIELD_GNSS_5_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_NED_VELOCITY - CH_FIELD_GNSS_5_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_VELOCITY - CH_FIELD_GNSS_5_DOP = _mscl.MipTypes_CH_FIELD_GNSS_5_DOP - CH_FIELD_GNSS_5_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_UTC_TIME - CH_FIELD_GNSS_5_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_TIME - CH_FIELD_GNSS_5_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO - CH_FIELD_GNSS_5_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_FIX_INFO - CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_5_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_HARDWARE_STATUS - CH_FIELD_GNSS_5_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_INFO - CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_5_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO_2 - CH_FIELD_GNSS_5_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_LEAP_SECONDS - CH_FIELD_GNSS_5_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_INFO - CH_FIELD_GNSS_5_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_CORRECTION - CH_FIELD_GNSS_5_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_RF_ERROR_DETECTION - CH_FIELD_GNSS_5_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_SATELLITE_STATUS - CH_FIELD_GNSS_5_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_5_RAW_OBSERVATION - CH_FIELD_GNSS_5_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_STATION_INFO - CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_5_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_EPHEMERIS - CH_FIELD_GNSS_5_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GLONASS_EPHEMERIS - CH_FIELD_GNSS_5_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_EPHEMERIS - CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_5_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_TICKS - CH_FIELD_GNSS_5_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TICKS - CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_SYSTEM_BUILT_IN_TEST = _mscl.MipTypes_CH_FIELD_SYSTEM_BUILT_IN_TEST - CH_FIELD_SYSTEM_TIME_SYNC_STATUS = _mscl.MipTypes_CH_FIELD_SYSTEM_TIME_SYNC_STATUS - CH_FIELD_SYSTEM_GPIO_STATE = _mscl.MipTypes_CH_FIELD_SYSTEM_GPIO_STATE - CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE - CH_FIELD_SYSTEM_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_TICKS - CH_FIELD_SYSTEM_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TICKS - CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME - MIN_SHARED_FIELD_DESCRIPTOR = _mscl.MipTypes_MIN_SHARED_FIELD_DESCRIPTOR - CH_UNKNOWN = _mscl.MipTypes_CH_UNKNOWN - CH_X = _mscl.MipTypes_CH_X - CH_Y = _mscl.MipTypes_CH_Y - CH_Z = _mscl.MipTypes_CH_Z - CH_MATRIX = _mscl.MipTypes_CH_MATRIX - CH_QUATERNION = _mscl.MipTypes_CH_QUATERNION - CH_ROLL = _mscl.MipTypes_CH_ROLL - CH_PITCH = _mscl.MipTypes_CH_PITCH - CH_YAW = _mscl.MipTypes_CH_YAW - CH_TICK = _mscl.MipTypes_CH_TICK - CH_TIMESTAMP = _mscl.MipTypes_CH_TIMESTAMP - CH_STATUS = _mscl.MipTypes_CH_STATUS - CH_TIME_OF_WEEK = _mscl.MipTypes_CH_TIME_OF_WEEK - CH_WEEK_NUMBER = _mscl.MipTypes_CH_WEEK_NUMBER - CH_LATITUDE = _mscl.MipTypes_CH_LATITUDE - CH_LONGITUDE = _mscl.MipTypes_CH_LONGITUDE - CH_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CH_HEIGHT_ABOVE_ELLIPSOID - CH_HEIGHT_ABOVE_MSL = _mscl.MipTypes_CH_HEIGHT_ABOVE_MSL - CH_HORIZONTAL_ACCURACY = _mscl.MipTypes_CH_HORIZONTAL_ACCURACY - CH_VERTICAL_ACCURACY = _mscl.MipTypes_CH_VERTICAL_ACCURACY - CH_POSITION_ACCURACY = _mscl.MipTypes_CH_POSITION_ACCURACY - CH_NORTH = _mscl.MipTypes_CH_NORTH - CH_EAST = _mscl.MipTypes_CH_EAST - CH_DOWN = _mscl.MipTypes_CH_DOWN - CH_SPEED = _mscl.MipTypes_CH_SPEED - CH_GROUND_SPEED = _mscl.MipTypes_CH_GROUND_SPEED - CH_HEADING = _mscl.MipTypes_CH_HEADING - CH_SPEED_ACCURACY = _mscl.MipTypes_CH_SPEED_ACCURACY - CH_HEADING_ACCURACY = _mscl.MipTypes_CH_HEADING_ACCURACY - CH_VELOCITY_ACCURACY = _mscl.MipTypes_CH_VELOCITY_ACCURACY - CH_GEOMETRIC_DOP = _mscl.MipTypes_CH_GEOMETRIC_DOP - CH_POSITION_DOP = _mscl.MipTypes_CH_POSITION_DOP - CH_HORIZONTAL_DOP = _mscl.MipTypes_CH_HORIZONTAL_DOP - CH_VERTICAL_DOP = _mscl.MipTypes_CH_VERTICAL_DOP - CH_TIME_DOP = _mscl.MipTypes_CH_TIME_DOP - CH_NORTHING_DOP = _mscl.MipTypes_CH_NORTHING_DOP - CH_EASTING_DOP = _mscl.MipTypes_CH_EASTING_DOP - CH_FLAGS = _mscl.MipTypes_CH_FLAGS - CH_BIAS = _mscl.MipTypes_CH_BIAS - CH_DRIFT = _mscl.MipTypes_CH_DRIFT - CH_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_ACCURACY_ESTIMATE - CH_FIX_TYPE = _mscl.MipTypes_CH_FIX_TYPE - CH_SV_COUNT = _mscl.MipTypes_CH_SV_COUNT - CH_CHANNEL = _mscl.MipTypes_CH_CHANNEL - CH_ID = _mscl.MipTypes_CH_ID - CH_CARRIER_TO_NOISE_RATIO = _mscl.MipTypes_CH_CARRIER_TO_NOISE_RATIO - CH_AZIMUTH = _mscl.MipTypes_CH_AZIMUTH - CH_ELEVATION = _mscl.MipTypes_CH_ELEVATION - CH_SENSOR_STATE = _mscl.MipTypes_CH_SENSOR_STATE - CH_ANTENNA_STATE = _mscl.MipTypes_CH_ANTENNA_STATE - CH_ANTENNA_POWER = _mscl.MipTypes_CH_ANTENNA_POWER - CH_FILTER_STATE = _mscl.MipTypes_CH_FILTER_STATE - CH_DYNAMICS_MODE = _mscl.MipTypes_CH_DYNAMICS_MODE - CH_MAGNITUDE = _mscl.MipTypes_CH_MAGNITUDE - CH_HEADING_UNCERTAINTY = _mscl.MipTypes_CH_HEADING_UNCERTAINTY - CH_SOURCE = _mscl.MipTypes_CH_SOURCE - CH_INCLINATION = _mscl.MipTypes_CH_INCLINATION - CH_DECLINATION = _mscl.MipTypes_CH_DECLINATION - CH_PRESSURE = _mscl.MipTypes_CH_PRESSURE - CH_AGE = _mscl.MipTypes_CH_AGE - CH_NUM_CHANNELS = _mscl.MipTypes_CH_NUM_CHANNELS - CH_CORRECTION = _mscl.MipTypes_CH_CORRECTION - CH_RATE_CORRECTION = _mscl.MipTypes_CH_RATE_CORRECTION - CH_GEOMETRIC_ALTITUDE = _mscl.MipTypes_CH_GEOMETRIC_ALTITUDE - CH_GEOPOTENTIAL_ALTITUDE = _mscl.MipTypes_CH_GEOPOTENTIAL_ALTITUDE - CH_TEMPERATURE = _mscl.MipTypes_CH_TEMPERATURE - CH_DENSITY = _mscl.MipTypes_CH_DENSITY - CH_ALTITUDE = _mscl.MipTypes_CH_ALTITUDE - CH_DISPLACEMENT = _mscl.MipTypes_CH_DISPLACEMENT - CH_MAX_TEMP = _mscl.MipTypes_CH_MAX_TEMP - CH_MIN_TEMP = _mscl.MipTypes_CH_MIN_TEMP - CH_MEAN_TEMP = _mscl.MipTypes_CH_MEAN_TEMP - CH_BIAS_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_BIAS_ACCURACY_ESTIMATE - CH_DRIFT_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_DRIFT_ACCURACY_ESTIMATE - CH_SECONDS = _mscl.MipTypes_CH_SECONDS - CH_NUM_PACKETS = _mscl.MipTypes_CH_NUM_PACKETS - CH_GPS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GPS_CORRECTION_LATENCY - CH_GLONASS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GLONASS_CORRECTION_LATENCY - CH_GALILEO_CORRECTION_LATENCY = _mscl.MipTypes_CH_GALILEO_CORRECTION_LATENCY - CH_BEIDOU_CORRECTION_LATENCY = _mscl.MipTypes_CH_BEIDOU_CORRECTION_LATENCY - CH_HEIGHT = _mscl.MipTypes_CH_HEIGHT - CH_HEALTH = _mscl.MipTypes_CH_HEALTH - CH_INDEX = _mscl.MipTypes_CH_INDEX - CH_COUNT = _mscl.MipTypes_CH_COUNT - CH_SIGNAL_STRENGTH = _mscl.MipTypes_CH_SIGNAL_STRENGTH - CH_SIGNAL_QUALITY = _mscl.MipTypes_CH_SIGNAL_QUALITY - CH_RANGE = _mscl.MipTypes_CH_RANGE - CH_RANGE_UNC = _mscl.MipTypes_CH_RANGE_UNC - CH_ALPHA = _mscl.MipTypes_CH_ALPHA - CH_BETA = _mscl.MipTypes_CH_BETA - CH_DISTURBANCE_FLAGS = _mscl.MipTypes_CH_DISTURBANCE_FLAGS - CH_CARRIER_PHASE = _mscl.MipTypes_CH_CARRIER_PHASE - CH_CARRIER_PHASE_UNC = _mscl.MipTypes_CH_CARRIER_PHASE_UNC - CH_DOPPLER = _mscl.MipTypes_CH_DOPPLER - CH_DOPPLER_UNC = _mscl.MipTypes_CH_DOPPLER_UNC - CH_DELTA_TIME = _mscl.MipTypes_CH_DELTA_TIME - CH_DELTA_TICK = _mscl.MipTypes_CH_DELTA_TICK - CH_ERROR = _mscl.MipTypes_CH_ERROR - CH_ERROR_UNC = _mscl.MipTypes_CH_ERROR_UNC - CH_W = _mscl.MipTypes_CH_W - CH_M0 = _mscl.MipTypes_CH_M0 - CH_M1 = _mscl.MipTypes_CH_M1 - CH_M2 = _mscl.MipTypes_CH_M2 - CH_M3 = _mscl.MipTypes_CH_M3 - CH_M4 = _mscl.MipTypes_CH_M4 - CH_M5 = _mscl.MipTypes_CH_M5 - CH_M6 = _mscl.MipTypes_CH_M6 - CH_M7 = _mscl.MipTypes_CH_M7 - CH_M8 = _mscl.MipTypes_CH_M8 - CH_NANOSECONDS = _mscl.MipTypes_CH_NANOSECONDS - CH_VALID_FLAGS = _mscl.MipTypes_CH_VALID_FLAGS - CH_PPS_VALID = _mscl.MipTypes_CH_PPS_VALID - CH_LAST_PPS = _mscl.MipTypes_CH_LAST_PPS - CH_UDREI = _mscl.MipTypes_CH_UDREI - CH_PSEUDORANGE_CORRECTION = _mscl.MipTypes_CH_PSEUDORANGE_CORRECTION - CH_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_IONOSPHERIC_CORRECTION - CH_JAMMING_STATE = _mscl.MipTypes_CH_JAMMING_STATE - CH_SPOOFING_STATE = _mscl.MipTypes_CH_SPOOFING_STATE - CH_SYSTEM_ID = _mscl.MipTypes_CH_SYSTEM_ID - CH_SATELLITE_ID = _mscl.MipTypes_CH_SATELLITE_ID - CH_BIT_SYSTEM_GENERAL = _mscl.MipTypes_CH_BIT_SYSTEM_GENERAL - CH_BIT_SYSTEM_PROCESS = _mscl.MipTypes_CH_BIT_SYSTEM_PROCESS - CH_BIT_IMU_GENERAL = _mscl.MipTypes_CH_BIT_IMU_GENERAL - CH_BIT_IMU_SENSORS = _mscl.MipTypes_CH_BIT_IMU_SENSORS - CH_BIT_IMU_FACTORY_BITS = _mscl.MipTypes_CH_BIT_IMU_FACTORY_BITS - CH_BIT_FILTER_GENERAL = _mscl.MipTypes_CH_BIT_FILTER_GENERAL - CH_BIT_GNSS_GENERAL = _mscl.MipTypes_CH_BIT_GNSS_GENERAL - CH_BIT_GNSS_RECEIVERS = _mscl.MipTypes_CH_BIT_GNSS_RECEIVERS - - @staticmethod - def channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - - @staticmethod - def getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - - @staticmethod - def getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - - @staticmethod - def getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - - @staticmethod - def getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - - @staticmethod - def getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - - @staticmethod - def isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - - @staticmethod - def isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - - @staticmethod - def channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - - @staticmethod - def channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - - @staticmethod - def channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - - def __init__(self): - _mscl.MipTypes_swiginit(self, _mscl.new_MipTypes()) - __swig_destroy__ = _mscl.delete_MipTypes - -# Register MipTypes in _mscl: -_mscl.MipTypes_swigregister(MipTypes) - -def MipTypes_channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - -def MipTypes_getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - -def MipTypes_getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - -def MipTypes_getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - -def MipTypes_getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - -def MipTypes_getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - -def MipTypes_isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - -def MipTypes_isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - -def MipTypes_channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - -def MipTypes_channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - -def MipTypes_channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - -class MipChannelIdentifier(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - GNSS_RECEIVER_ID = _mscl.MipChannelIdentifier_GNSS_RECEIVER_ID - GNSS_BASE_STATION_ID = _mscl.MipChannelIdentifier_GNSS_BASE_STATION_ID - GNSS_CONSTELLATION = _mscl.MipChannelIdentifier_GNSS_CONSTELLATION - GNSS_SATELLITE_ID = _mscl.MipChannelIdentifier_GNSS_SATELLITE_ID - GNSS_SIGNAL_ID = _mscl.MipChannelIdentifier_GNSS_SIGNAL_ID - AIDING_MEASUREMENT_TYPE = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_TYPE - GNSS_RF_BAND = _mscl.MipChannelIdentifier_GNSS_RF_BAND - AIDING_MEASUREMENT_FRAME_ID = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_FRAME_ID - GNSS = _mscl.MipChannelIdentifier_GNSS - DUAL_ANTENNA = _mscl.MipChannelIdentifier_DUAL_ANTENNA - HEADING = _mscl.MipChannelIdentifier_HEADING - PRESSURE = _mscl.MipChannelIdentifier_PRESSURE - MAGNETOMETER = _mscl.MipChannelIdentifier_MAGNETOMETER - SPEED = _mscl.MipChannelIdentifier_SPEED - AIDING_POS_ECEF = _mscl.MipChannelIdentifier_AIDING_POS_ECEF - AIDING_POS_LLH = _mscl.MipChannelIdentifier_AIDING_POS_LLH - AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipChannelIdentifier_AIDING_HEIGHT_ABOVE_ELLIPSOID - AIDING_VEL_ECEF = _mscl.MipChannelIdentifier_AIDING_VEL_ECEF - AIDING_VEL_NED = _mscl.MipChannelIdentifier_AIDING_VEL_NED - AIDING_VEL_BODY_FRAME = _mscl.MipChannelIdentifier_AIDING_VEL_BODY_FRAME - AIDING_HEADING_TRUE = _mscl.MipChannelIdentifier_AIDING_HEADING_TRUE - AIDING_MAGNETIC_FIELD = _mscl.MipChannelIdentifier_AIDING_MAGNETIC_FIELD - AIDING_PRESSURE = _mscl.MipChannelIdentifier_AIDING_PRESSURE - UNKNOWN_CONSTELLATION = _mscl.MipChannelIdentifier_UNKNOWN_CONSTELLATION - GPS = _mscl.MipChannelIdentifier_GPS - GLONASS = _mscl.MipChannelIdentifier_GLONASS - GALILEO = _mscl.MipChannelIdentifier_GALILEO - BEIDOU = _mscl.MipChannelIdentifier_BEIDOU - UNKNOWN_SIGNAL = _mscl.MipChannelIdentifier_UNKNOWN_SIGNAL - GPS_L1CA = _mscl.MipChannelIdentifier_GPS_L1CA - GPS_L1P = _mscl.MipChannelIdentifier_GPS_L1P - GPS_L1Z = _mscl.MipChannelIdentifier_GPS_L1Z - GPS_L2CA = _mscl.MipChannelIdentifier_GPS_L2CA - GPS_L2P = _mscl.MipChannelIdentifier_GPS_L2P - GPS_L2Z = _mscl.MipChannelIdentifier_GPS_L2Z - GPS_L2CL = _mscl.MipChannelIdentifier_GPS_L2CL - GPS_L2CM = _mscl.MipChannelIdentifier_GPS_L2CM - GPS_L2CML = _mscl.MipChannelIdentifier_GPS_L2CML - GPS_L5I = _mscl.MipChannelIdentifier_GPS_L5I - GPS_L5Q = _mscl.MipChannelIdentifier_GPS_L5Q - GPS_L5IQ = _mscl.MipChannelIdentifier_GPS_L5IQ - GPS_L1CD = _mscl.MipChannelIdentifier_GPS_L1CD - GPS_L1CP = _mscl.MipChannelIdentifier_GPS_L1CP - GPS_L1CDP = _mscl.MipChannelIdentifier_GPS_L1CDP - GLONASS_G1CA = _mscl.MipChannelIdentifier_GLONASS_G1CA - GLONASS_G1P = _mscl.MipChannelIdentifier_GLONASS_G1P - GLONASS_G2C = _mscl.MipChannelIdentifier_GLONASS_G2C - GLONASS_G2P = _mscl.MipChannelIdentifier_GLONASS_G2P - GALILEO_E1C = _mscl.MipChannelIdentifier_GALILEO_E1C - GALILEO_E1A = _mscl.MipChannelIdentifier_GALILEO_E1A - GALILEO_E1B = _mscl.MipChannelIdentifier_GALILEO_E1B - GALILEO_E1BC = _mscl.MipChannelIdentifier_GALILEO_E1BC - GALILEO_E1ABC = _mscl.MipChannelIdentifier_GALILEO_E1ABC - GALILEO_E6C = _mscl.MipChannelIdentifier_GALILEO_E6C - GALILEO_E6A = _mscl.MipChannelIdentifier_GALILEO_E6A - GALILEO_E6B = _mscl.MipChannelIdentifier_GALILEO_E6B - GALILEO_E6BC = _mscl.MipChannelIdentifier_GALILEO_E6BC - GALILEO_E6ABC = _mscl.MipChannelIdentifier_GALILEO_E6ABC - GALILEO_E5BI = _mscl.MipChannelIdentifier_GALILEO_E5BI - GALILEO_E5BQ = _mscl.MipChannelIdentifier_GALILEO_E5BQ - GALILEO_E5BIQ = _mscl.MipChannelIdentifier_GALILEO_E5BIQ - GALILEO_E5ABI = _mscl.MipChannelIdentifier_GALILEO_E5ABI - GALILEO_E5ABQ = _mscl.MipChannelIdentifier_GALILEO_E5ABQ - GALILEO_E5ABIQ = _mscl.MipChannelIdentifier_GALILEO_E5ABIQ - GALILEO_E5AI = _mscl.MipChannelIdentifier_GALILEO_E5AI - GALILEO_E5AQ = _mscl.MipChannelIdentifier_GALILEO_E5AQ - GALILEO_E5AIQ = _mscl.MipChannelIdentifier_GALILEO_E5AIQ - SBAS_L1CA = _mscl.MipChannelIdentifier_SBAS_L1CA - SBAS_L5I = _mscl.MipChannelIdentifier_SBAS_L5I - SBAS_L5Q = _mscl.MipChannelIdentifier_SBAS_L5Q - SBAS_L5IQ = _mscl.MipChannelIdentifier_SBAS_L5IQ - QZSS_L1CA = _mscl.MipChannelIdentifier_QZSS_L1CA - QZSS_LEXS = _mscl.MipChannelIdentifier_QZSS_LEXS - QZSS_LEXL = _mscl.MipChannelIdentifier_QZSS_LEXL - QZSS_LEXSL = _mscl.MipChannelIdentifier_QZSS_LEXSL - QZSS_L2CM = _mscl.MipChannelIdentifier_QZSS_L2CM - QZSS_L2CL = _mscl.MipChannelIdentifier_QZSS_L2CL - QZSS_L2CML = _mscl.MipChannelIdentifier_QZSS_L2CML - QZSS_L5I = _mscl.MipChannelIdentifier_QZSS_L5I - QZSS_L5Q = _mscl.MipChannelIdentifier_QZSS_L5Q - QZSS_L5IQ = _mscl.MipChannelIdentifier_QZSS_L5IQ - QZSS_L1CD = _mscl.MipChannelIdentifier_QZSS_L1CD - QZSS_L1CP = _mscl.MipChannelIdentifier_QZSS_L1CP - QZSS_L1CDP = _mscl.MipChannelIdentifier_QZSS_L1CDP - BEIDOU_B1I = _mscl.MipChannelIdentifier_BEIDOU_B1I - BEIDOU_B1Q = _mscl.MipChannelIdentifier_BEIDOU_B1Q - BEIDOU_B1IQ = _mscl.MipChannelIdentifier_BEIDOU_B1IQ - BEIDOU_B3I = _mscl.MipChannelIdentifier_BEIDOU_B3I - BEIDOU_B3Q = _mscl.MipChannelIdentifier_BEIDOU_B3Q - BEIDOU_B3IQ = _mscl.MipChannelIdentifier_BEIDOU_B3IQ - BEIDOU_B2I = _mscl.MipChannelIdentifier_BEIDOU_B2I - BEIDOU_B2Q = _mscl.MipChannelIdentifier_BEIDOU_B2Q - BEIDOU_B2IQ = _mscl.MipChannelIdentifier_BEIDOU_B2IQ - UNKNOWN_RF_BAND = _mscl.MipChannelIdentifier_UNKNOWN_RF_BAND - RF_BAND_L1 = _mscl.MipChannelIdentifier_RF_BAND_L1 - RF_BAND_L2 = _mscl.MipChannelIdentifier_RF_BAND_L2 - RF_BAND_L5 = _mscl.MipChannelIdentifier_RF_BAND_L5 - - def __init__(self, *args): - _mscl.MipChannelIdentifier_swiginit(self, _mscl.new_MipChannelIdentifier(*args)) - __swig_destroy__ = _mscl.delete_MipChannelIdentifier - - def identifierType(self): - return _mscl.MipChannelIdentifier_identifierType(self) - - def id(self): - return _mscl.MipChannelIdentifier_id(self) - - def hasSpecifier(self): - return _mscl.MipChannelIdentifier_hasSpecifier(self) - - def specifier(self): - return _mscl.MipChannelIdentifier_specifier(self) - - def name(self, standardizedFormat=True): - return _mscl.MipChannelIdentifier_name(self, standardizedFormat) - -# Register MipChannelIdentifier in _mscl: -_mscl.MipChannelIdentifier_swigregister(MipChannelIdentifier) - -class MipCommandBytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - id = property(_mscl.MipCommandBytes_id_get, _mscl.MipCommandBytes_id_set) - commands = property(_mscl.MipCommandBytes_commands_get, _mscl.MipCommandBytes_commands_set) - buildCmdFailed = property(_mscl.MipCommandBytes_buildCmdFailed_get, _mscl.MipCommandBytes_buildCmdFailed_set) - sendCmdFailed = property(_mscl.MipCommandBytes_sendCmdFailed_get, _mscl.MipCommandBytes_sendCmdFailed_set) - - def __init__(self, *args): - _mscl.MipCommandBytes_swiginit(self, _mscl.new_MipCommandBytes(*args)) - - def add(self, cmd): - return _mscl.MipCommandBytes_add(self, cmd) - - def valid(self): - return _mscl.MipCommandBytes_valid(self) - __swig_destroy__ = _mscl.delete_MipCommandBytes - -# Register MipCommandBytes in _mscl: -_mscl.MipCommandBytes_swigregister(MipCommandBytes) - -class AidingMeasurementInput(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - ACK_NACK = _mscl.AidingMeasurementInput_ACK_NACK - ECHO_INPUT = _mscl.AidingMeasurementInput_ECHO_INPUT - - def toMipFieldValues(self): - return _mscl.AidingMeasurementInput_toMipFieldValues(self) - - def timestamp(self, *args): - return _mscl.AidingMeasurementInput_timestamp(self, *args) - - def timebase(self): - return _mscl.AidingMeasurementInput_timebase(self) - - def frameId(self, *args): - return _mscl.AidingMeasurementInput_frameId(self, *args) - - def validFlags(self, *args): - return _mscl.AidingMeasurementInput_validFlags(self, *args) - -# Register AidingMeasurementInput in _mscl: -_mscl.AidingMeasurementInput_swigregister(AidingMeasurementInput) - -class AidingMeasurementPosition(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementPosition_X - LATITUDE = _mscl.AidingMeasurementPosition_LATITUDE - Y = _mscl.AidingMeasurementPosition_Y - LONGITUDE = _mscl.AidingMeasurementPosition_LONGITUDE - Z = _mscl.AidingMeasurementPosition_Z - HEIGHT = _mscl.AidingMeasurementPosition_HEIGHT - ALTITUDE = _mscl.AidingMeasurementPosition_ALTITUDE - - def __init__(self, *args): - _mscl.AidingMeasurementPosition_swiginit(self, _mscl.new_AidingMeasurementPosition(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPosition - - def position(self, *args): - return _mscl.AidingMeasurementPosition_position(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPosition_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementPosition_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPosition_valid(self, *args) - -# Register AidingMeasurementPosition in _mscl: -_mscl.AidingMeasurementPosition_swigregister(AidingMeasurementPosition) - -class AidingMeasurementHeight(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeight_swiginit(self, _mscl.new_AidingMeasurementHeight(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeight - - def height(self, *args): - return _mscl.AidingMeasurementHeight_height(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeight_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeight_valid(self, *args) - -# Register AidingMeasurementHeight in _mscl: -_mscl.AidingMeasurementHeight_swigregister(AidingMeasurementHeight) - -class AidingMeasurementVelocity(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementVelocity_X - NORTH = _mscl.AidingMeasurementVelocity_NORTH - Y = _mscl.AidingMeasurementVelocity_Y - EAST = _mscl.AidingMeasurementVelocity_EAST - Z = _mscl.AidingMeasurementVelocity_Z - DOWN = _mscl.AidingMeasurementVelocity_DOWN - - def __init__(self, *args): - _mscl.AidingMeasurementVelocity_swiginit(self, _mscl.new_AidingMeasurementVelocity(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementVelocity - - def velocity(self, *args): - return _mscl.AidingMeasurementVelocity_velocity(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementVelocity_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementVelocity_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementVelocity_valid(self, *args) - -# Register AidingMeasurementVelocity in _mscl: -_mscl.AidingMeasurementVelocity_swigregister(AidingMeasurementVelocity) - -class AidingMeasurementHeading(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeading_swiginit(self, _mscl.new_AidingMeasurementHeading(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeading - - def heading(self, *args): - return _mscl.AidingMeasurementHeading_heading(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeading_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeading_valid(self, *args) - -# Register AidingMeasurementHeading in _mscl: -_mscl.AidingMeasurementHeading_swigregister(AidingMeasurementHeading) - -class AidingMeasurementMagneticField(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementMagneticField_X - Y = _mscl.AidingMeasurementMagneticField_Y - Z = _mscl.AidingMeasurementMagneticField_Z - - def __init__(self, *args): - _mscl.AidingMeasurementMagneticField_swiginit(self, _mscl.new_AidingMeasurementMagneticField(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementMagneticField - - def magneticField(self, *args): - return _mscl.AidingMeasurementMagneticField_magneticField(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementMagneticField_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementMagneticField_valid(self, *args) - -# Register AidingMeasurementMagneticField in _mscl: -_mscl.AidingMeasurementMagneticField_swigregister(AidingMeasurementMagneticField) - -class AidingMeasurementPressure(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementPressure_swiginit(self, _mscl.new_AidingMeasurementPressure(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPressure - - def pressure(self, *args): - return _mscl.AidingMeasurementPressure_pressure(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPressure_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPressure_valid(self, *args) - -# Register AidingMeasurementPressure in _mscl: -_mscl.AidingMeasurementPressure_swigregister(AidingMeasurementPressure) - -class GnssReceiverInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GnssReceiverInfo_swiginit(self, _mscl.new_GnssReceiverInfo(*args)) - id = property(_mscl.GnssReceiverInfo_id_get, _mscl.GnssReceiverInfo_id_set) - targetDataClass = property(_mscl.GnssReceiverInfo_targetDataClass_get, _mscl.GnssReceiverInfo_targetDataClass_set) - description = property(_mscl.GnssReceiverInfo_description_get, _mscl.GnssReceiverInfo_description_set) - module = property(_mscl.GnssReceiverInfo_module_get, _mscl.GnssReceiverInfo_module_set) - fwId = property(_mscl.GnssReceiverInfo_fwId_get, _mscl.GnssReceiverInfo_fwId_set) - fwVersion = property(_mscl.GnssReceiverInfo_fwVersion_get, _mscl.GnssReceiverInfo_fwVersion_set) - __swig_destroy__ = _mscl.delete_GnssReceiverInfo - -# Register GnssReceiverInfo in _mscl: -_mscl.GnssReceiverInfo_swigregister(GnssReceiverInfo) -GnssReceiverInfo.INFO_NOT_FOUND = _mscl.cvar.GnssReceiverInfo_INFO_NOT_FOUND - -class DeviceCommPort(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SPECIAL = _mscl.DeviceCommPort_SPECIAL - UART = _mscl.DeviceCommPort_UART - USB = _mscl.DeviceCommPort_USB - NONE = _mscl.DeviceCommPort_NONE - MIP_COMMANDS = _mscl.DeviceCommPort_MIP_COMMANDS - MIP_DATA = _mscl.DeviceCommPort_MIP_DATA - NMEA = _mscl.DeviceCommPort_NMEA - RTCM = _mscl.DeviceCommPort_RTCM - SPARTN = _mscl.DeviceCommPort_SPARTN - ALL = _mscl.DeviceCommPort_ALL - - def __init__(self, *args): - _mscl.DeviceCommPort_swiginit(self, _mscl.new_DeviceCommPort(*args)) - - def interfaceId(self): - return _mscl.DeviceCommPort_interfaceId(self) - type = property(_mscl.DeviceCommPort_type_get, _mscl.DeviceCommPort_type_set) - id = property(_mscl.DeviceCommPort_id_get, _mscl.DeviceCommPort_id_set) - inputProtocols = property(_mscl.DeviceCommPort_inputProtocols_get, _mscl.DeviceCommPort_inputProtocols_set) - outputProtocols = property(_mscl.DeviceCommPort_outputProtocols_get, _mscl.DeviceCommPort_outputProtocols_set) - __swig_destroy__ = _mscl.delete_DeviceCommPort - -# Register DeviceCommPort in _mscl: -_mscl.DeviceCommPort_swigregister(DeviceCommPort) - -class EventTypeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTypeInfo_swiginit(self, _mscl.new_EventTypeInfo(*args)) - type = property(_mscl.EventTypeInfo_type_get, _mscl.EventTypeInfo_type_set) - maxInstances = property(_mscl.EventTypeInfo_maxInstances_get, _mscl.EventTypeInfo_maxInstances_set) - __swig_destroy__ = _mscl.delete_EventTypeInfo - -# Register EventTypeInfo in _mscl: -_mscl.EventTypeInfo_swigregister(EventTypeInfo) - -class EventSupportInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - TRIGGERS = _mscl.EventSupportInfo_TRIGGERS - ACTIONS = _mscl.EventSupportInfo_ACTIONS - query = property(_mscl.EventSupportInfo_query_get, _mscl.EventSupportInfo_query_set) - maxInstances = property(_mscl.EventSupportInfo_maxInstances_get, _mscl.EventSupportInfo_maxInstances_set) - entries = property(_mscl.EventSupportInfo_entries_get, _mscl.EventSupportInfo_entries_set) - - def __init__(self): - _mscl.EventSupportInfo_swiginit(self, _mscl.new_EventSupportInfo()) - __swig_destroy__ = _mscl.delete_EventSupportInfo - -# Register EventSupportInfo in _mscl: -_mscl.EventSupportInfo_swigregister(EventSupportInfo) - -class SensorRange(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ALL = _mscl.SensorRange_ALL - ACCEL_G = _mscl.SensorRange_ACCEL_G - GYRO_DPS = _mscl.SensorRange_GYRO_DPS - MAG_GAUSS = _mscl.SensorRange_MAG_GAUSS - PRESSURE_HPA = _mscl.SensorRange_PRESSURE_HPA - - def __init__(self): - _mscl.SensorRange_swiginit(self, _mscl.new_SensorRange()) - - def type(self): - return _mscl.SensorRange_type(self) - - def range(self): - return _mscl.SensorRange_range(self) - - def id(self): - return _mscl.SensorRange_id(self) - __swig_destroy__ = _mscl.delete_SensorRange - -# Register SensorRange in _mscl: -_mscl.SensorRange_swigregister(SensorRange) - -class SupportedSensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.SupportedSensorRanges_swiginit(self, _mscl.new_SupportedSensorRanges()) - - def options(self): - return _mscl.SupportedSensorRanges_options(self) - - def lookupRecommended(self, type, range): - return _mscl.SupportedSensorRanges_lookupRecommended(self, type, range) - __swig_destroy__ = _mscl.delete_SupportedSensorRanges - -# Register SupportedSensorRanges in _mscl: -_mscl.SupportedSensorRanges_swigregister(SupportedSensorRanges) - -class InertialTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - PORTABLE_VEHICLE = _mscl.InertialTypes_PORTABLE_VEHICLE - AUTOMOTIVE_VEHICLE = _mscl.InertialTypes_AUTOMOTIVE_VEHICLE - AIRBORNE_VEHICLE = _mscl.InertialTypes_AIRBORNE_VEHICLE - AIRBORNE_HIGH_G_VEHICLE = _mscl.InertialTypes_AIRBORNE_HIGH_G_VEHICLE - GPS_PORTABLE = _mscl.InertialTypes_GPS_PORTABLE - GPS_STATIONARY = _mscl.InertialTypes_GPS_STATIONARY - GPS_PEDESTRIAN = _mscl.InertialTypes_GPS_PEDESTRIAN - GPS_AUTOMOTIVE = _mscl.InertialTypes_GPS_AUTOMOTIVE - GPS_SEA = _mscl.InertialTypes_GPS_SEA - GPS_AIRBORNE_1G = _mscl.InertialTypes_GPS_AIRBORNE_1G - GPS_AIRBORNE_2G = _mscl.InertialTypes_GPS_AIRBORNE_2G - GPS_AIRBORNE_4G = _mscl.InertialTypes_GPS_AIRBORNE_4G - RESET_ALL_AXIS = _mscl.InertialTypes_RESET_ALL_AXIS - TARE_ROLL_AXIS = _mscl.InertialTypes_TARE_ROLL_AXIS - TARE_PITCH_AXIS = _mscl.InertialTypes_TARE_PITCH_AXIS - TARE_YAW_AXIS = _mscl.InertialTypes_TARE_YAW_AXIS - INTERNAL_GNSS_ALL = _mscl.InertialTypes_INTERNAL_GNSS_ALL - EXTERNAL_GNSS = _mscl.InertialTypes_EXTERNAL_GNSS - INTERNAL_GNSS1 = _mscl.InertialTypes_INTERNAL_GNSS1 - INTERNAL_GNSS2 = _mscl.InertialTypes_INTERNAL_GNSS2 - FIX_SBAS_CORRECTIONS = _mscl.InertialTypes_FIX_SBAS_CORRECTIONS - FIX_DGNSS_CORRECTIONS = _mscl.InertialTypes_FIX_DGNSS_CORRECTIONS - FIXTYPE_3D = _mscl.InertialTypes_FIXTYPE_3D - FIXTYPE_2D = _mscl.InertialTypes_FIXTYPE_2D - FIXTYPE_TIMEONLY = _mscl.InertialTypes_FIXTYPE_TIMEONLY - FIXTYPE_NONE = _mscl.InertialTypes_FIXTYPE_NONE - FIXTYPE_INVALID = _mscl.InertialTypes_FIXTYPE_INVALID - FIXTYPE_RTK_FLOAT = _mscl.InertialTypes_FIXTYPE_RTK_FLOAT - FIXTYPE_RTK_FIXED = _mscl.InertialTypes_FIXTYPE_RTK_FIXED - FIXTYPE_DUAL_ANTENNA_NONE = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_NONE - FIXTYPE_DUAL_ANTENNA_FLOAT = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FLOAT - FIXTYPE_DUAL_ANTENNA_FIXED = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FIXED - DATA_VALID_REC_1 = _mscl.InertialTypes_DATA_VALID_REC_1 - DATA_VALID_REC_2 = _mscl.InertialTypes_DATA_VALID_REC_2 - ANTENNA_OFFSETS_VALID = _mscl.InertialTypes_ANTENNA_OFFSETS_VALID - SVFLAG_NAVIGATION = _mscl.InertialTypes_SVFLAG_NAVIGATION - SVFLAG_HEALTHY = _mscl.InertialTypes_SVFLAG_HEALTHY - DEVICE_AHRS = _mscl.InertialTypes_DEVICE_AHRS - DEVICE_GPS = _mscl.InertialTypes_DEVICE_GPS - ON_FULL_PERFORMANCE = _mscl.InertialTypes_ON_FULL_PERFORMANCE - ON_LOW_POWER = _mscl.InertialTypes_ON_LOW_POWER - SLEEP = _mscl.InertialTypes_SLEEP - OFF = _mscl.InertialTypes_OFF - STANDARD_MIP = _mscl.InertialTypes_STANDARD_MIP - WRAPPED_RAW = _mscl.InertialTypes_WRAPPED_RAW - SENSORSTATE_OFF = _mscl.InertialTypes_SENSORSTATE_OFF - SENSORSTATE_ON = _mscl.InertialTypes_SENSORSTATE_ON - SENSORSTATE_UNKNOWN = _mscl.InertialTypes_SENSORSTATE_UNKNOWN - ANTENNASTATE_INIT = _mscl.InertialTypes_ANTENNASTATE_INIT - ANTENNASTATE_SHORT = _mscl.InertialTypes_ANTENNASTATE_SHORT - ANTENNASTATE_OPEN = _mscl.InertialTypes_ANTENNASTATE_OPEN - ANTENNASTATE_GOOD = _mscl.InertialTypes_ANTENNASTATE_GOOD - ANTENNASTATE_UNKNOWN = _mscl.InertialTypes_ANTENNASTATE_UNKNOWN - ANTENNAPOWER_OFF = _mscl.InertialTypes_ANTENNAPOWER_OFF - ANTENNAPOWER_ON = _mscl.InertialTypes_ANTENNAPOWER_ON - ANTENNAPOWER_UNKNOWN = _mscl.InertialTypes_ANTENNAPOWER_UNKNOWN - FILTERSTATE_STARTUP = _mscl.InertialTypes_FILTERSTATE_STARTUP - FILTERSTATE_INIT = _mscl.InertialTypes_FILTERSTATE_INIT - FILTERSTATE_RUNNING_SLN_VALID = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_VALID - FILTERSTATE_RUNNING_SLN_ERROR = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_ERROR - FILTERSTATE_VERT_GYRO = _mscl.InertialTypes_FILTERSTATE_VERT_GYRO - FILTERSTATE_AHRS = _mscl.InertialTypes_FILTERSTATE_AHRS - FILTERSTATE_FULL_NAV = _mscl.InertialTypes_FILTERSTATE_FULL_NAV - FILTERSTATUS_IMU_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_IMU_UNAVAILABLE - FILTERSTATUS_GPS_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_GPS_UNAVAILABLE - FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC = _mscl.InertialTypes_FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC - FILTERSTATUS_POS_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_POS_COVARIANCE_HIGH_WARN - FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN - FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN - FILTERSTATUS_NAN_IN_SOLUTION = _mscl.InertialTypes_FILTERSTATUS_NAN_IN_SOLUTION - FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN - FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN - FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN - FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN - FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_CONDITION = _mscl.InertialTypes_FILTERSTATUS_CONDITION - FILTERSTATUS_ROLL_PITCH_WARNING = _mscl.InertialTypes_FILTERSTATUS_ROLL_PITCH_WARNING - FILTERSTATUS_HEADING_WARNING = _mscl.InertialTypes_FILTERSTATUS_HEADING_WARNING - FILTERSTATUS_POSITION_WARNING = _mscl.InertialTypes_FILTERSTATUS_POSITION_WARNING - FILTERSTATUS_VELOCITY_WARNING = _mscl.InertialTypes_FILTERSTATUS_VELOCITY_WARNING - FILTERSTATUS_IMU_BIAS_WARNING = _mscl.InertialTypes_FILTERSTATUS_IMU_BIAS_WARNING - FILTERSTATUS_GNSS_CLK_WARNING = _mscl.InertialTypes_FILTERSTATUS_GNSS_CLK_WARNING - FILTERSTATUS_ANT_LEVER_ARM_WARNING = _mscl.InertialTypes_FILTERSTATUS_ANT_LEVER_ARM_WARNING - FILTERSTATUS_MOUNTING_TRANSFORM_WARNING = _mscl.InertialTypes_FILTERSTATUS_MOUNTING_TRANSFORM_WARNING - FILTERSTATUS_ATT_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_ATT_NOT_INIT - FILTERSTATUS_POS_VEL_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_POS_VEL_NOT_INIT - STABLE = _mscl.InertialTypes_STABLE - CONVERGING = _mscl.InertialTypes_CONVERGING - UNSTABLE = _mscl.InertialTypes_UNSTABLE - DGNSSBASE_UDRE_SCALE_FACTOR_1_00 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_1_00 - DGNSSBASE_UDRE_SCALE_FACTOR_0_75 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_75 - DGNSSBASE_UDRE_SCALE_FACTOR_0_50 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_50 - DGNSSBASE_UDRE_SCALE_FACTOR_0_30 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_30 - DGNSSBASE_UDRE_SCALE_FACTOR_0_20 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_20 - DGNSSBASE_UDRE_SCALE_FACTOR_0_10 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_10 - DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED - DGNSSBASE_REFERENCE_STATION_NOT_WORKING = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_NOT_WORKING - HEADINGSOURCE_NONE = _mscl.InertialTypes_HEADINGSOURCE_NONE - HEADINGSOURCE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_MAGNETOMETER - HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR - HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD = _mscl.InertialTypes_HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD - HEADINGSOURCE_GNSS_DUAL_ANTENNA = _mscl.InertialTypes_HEADINGSOURCE_GNSS_DUAL_ANTENNA - ENABLE_NONE = _mscl.InertialTypes_ENABLE_NONE - ENABLE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_ENABLE_INTERNAL_MAGNETOMETER - ENABLE_INTERNAL_GNSS = _mscl.InertialTypes_ENABLE_INTERNAL_GNSS - ENABLE_EXTERNAL_MESSAGES = _mscl.InertialTypes_ENABLE_EXTERNAL_MESSAGES - ENABLE_MAGNETOMETER_AND_GNSS = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_GNSS - ENABLE_GNSS_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_GNSS_AND_EXTERNAL - ENABLE_MAGNETOMETER_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_EXTERNAL - ENABLE_ALL = _mscl.InertialTypes_ENABLE_ALL - ENABLE_GYRO_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_BIAS_ESTIMATION - ENABLE_ACCEL_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_BIAS_ESTIMATION - ENABLE_GYRO_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_SCALE_FACTOR_ESTIMATION - ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION - ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION = _mscl.InertialTypes_ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION - ENABLE_HARD_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_HARD_IRON_AUTO_CALIBRATION - ENABLE_SOFT_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_SOFT_IRON_AUTO_CALIBRATION - NONE = _mscl.InertialTypes_NONE - WORLD_MAGNETIC_MODEL = _mscl.InertialTypes_WORLD_MAGNETIC_MODEL - MANUAL = _mscl.InertialTypes_MANUAL - ADAPTIVE_MEASUREMENT_DISABLE = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_DISABLE - ADAPTIVE_MEASUREMENT_ENABLE_FIXED = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_FIXED - ADAPTIVE_MEASUREMENT_ENABLE_AUTO = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_AUTO - GNSS_POS_VEL_AIDING = _mscl.InertialTypes_GNSS_POS_VEL_AIDING - GNSS_HEADING_AIDING = _mscl.InertialTypes_GNSS_HEADING_AIDING - ALTIMETER_AIDING = _mscl.InertialTypes_ALTIMETER_AIDING - ODOMETER_AIDING = _mscl.InertialTypes_ODOMETER_AIDING - MAGNETOMETER_AIDING = _mscl.InertialTypes_MAGNETOMETER_AIDING - EXTERNAL_HEADING_AIDING = _mscl.InertialTypes_EXTERNAL_HEADING_AIDING - EXTERNAL_ALTIMETER_AIDING = _mscl.InertialTypes_EXTERNAL_ALTIMETER_AIDING - EXTERNAL_MAGNETOMETER_AIDING = _mscl.InertialTypes_EXTERNAL_MAGNETOMETER_AIDING - BODY_FRAME_VEL_AIDING = _mscl.InertialTypes_BODY_FRAME_VEL_AIDING - ALL_AIDING_MEASUREMENTS = _mscl.InertialTypes_ALL_AIDING_MEASUREMENTS - GPS = _mscl.InertialTypes_GPS - SBAS = _mscl.InertialTypes_SBAS - GALILEO = _mscl.InertialTypes_GALILEO - BEIDOU = _mscl.InertialTypes_BEIDOU - QZSS = _mscl.InertialTypes_QZSS - GLONASS = _mscl.InertialTypes_GLONASS - FILTERING_OFF = _mscl.InertialTypes_FILTERING_OFF - FILTERING_CONSERVATIVE = _mscl.InertialTypes_FILTERING_CONSERVATIVE - FILTERING_MODERATE = _mscl.InertialTypes_FILTERING_MODERATE - FILTERING_AGGRESSIVE = _mscl.InertialTypes_FILTERING_AGGRESSIVE - FACTORY_STREAMING_OVERWRITE = _mscl.InertialTypes_FACTORY_STREAMING_OVERWRITE - FACTORY_STREAMING_MERGE = _mscl.InertialTypes_FACTORY_STREAMING_MERGE - FACTORY_STREAMING_ADDITIVE = _mscl.InertialTypes_FACTORY_STREAMING_ADDITIVE - PPS_DISABLED = _mscl.InertialTypes_PPS_DISABLED - PPS_RECEIVER_1 = _mscl.InertialTypes_PPS_RECEIVER_1 - PPS_RECEIVER_2 = _mscl.InertialTypes_PPS_RECEIVER_2 - PPS_GPIO = _mscl.InertialTypes_PPS_GPIO - PPS_GENERATED = _mscl.InertialTypes_PPS_GENERATED - GNSS_AIDING_TIGHT_COUPLING = _mscl.InertialTypes_GNSS_AIDING_TIGHT_COUPLING - GNSS_AIDING_DIFFERENTIAL = _mscl.InertialTypes_GNSS_AIDING_DIFFERENTIAL - GNSS_AIDING_INTEGER_FIX = _mscl.InertialTypes_GNSS_AIDING_INTEGER_FIX - GNSS_AIDING_GPS = _mscl.InertialTypes_GNSS_AIDING_GPS - GNSS_AIDING_GLONASS = _mscl.InertialTypes_GNSS_AIDING_GLONASS - GNSS_AIDING_GALILEO = _mscl.InertialTypes_GNSS_AIDING_GALILEO - GNSS_AIDING_BEIDOU = _mscl.InertialTypes_GNSS_AIDING_BEIDOU - GNSS_AIDING_NO_FIX = _mscl.InertialTypes_GNSS_AIDING_NO_FIX - GNSS_AIDING_CONFIG_ERROR = _mscl.InertialTypes_GNSS_AIDING_CONFIG_ERROR - AIDING_MEASUREMENT_ENABLED = _mscl.InertialTypes_AIDING_MEASUREMENT_ENABLED - AIDING_MEASUREMENT_USED = _mscl.InertialTypes_AIDING_MEASUREMENT_USED - AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH - AIDING_MEASUREMENT_WARNING_SAMPLE_TIME = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_SAMPLE_TIME - AIDING_MEASUREMENT_CONFIG_ERROR = _mscl.InertialTypes_AIDING_MEASUREMENT_CONFIG_ERROR - AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED = _mscl.InertialTypes_AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED - RTK_CORRECTION_ANTENNA_POS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_POS_RECEIVED - RTK_CORRECTION_ANTENNA_DESC_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_DESC_RECEIVED - RTK_CORRECTION_GPS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GPS_RECEIVED - RTK_CORRECTION_GLONASS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GLONASS_RECEIVED - RTK_CORRECTION_GALILEO_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GALILEO_RECEIVED - RTK_CORRECTION_BEIDOU_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_BEIDOU_RECEIVED - RTK_CORRECTION_USING_GPS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GPS_MSM - RTK_CORRECTION_USING_GLONASS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GLONASS_MSM - SIGNAL_QUALITY_NONE = _mscl.InertialTypes_SIGNAL_QUALITY_NONE - SIGNAL_QUALITY_SEARCHING = _mscl.InertialTypes_SIGNAL_QUALITY_SEARCHING - SIGNAL_QUALITY_ACQUIRED = _mscl.InertialTypes_SIGNAL_QUALITY_ACQUIRED - SIGNAL_QUALITY_UNUSABLE = _mscl.InertialTypes_SIGNAL_QUALITY_UNUSABLE - SIGNAL_QUALITY_TIME_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_TIME_LOCKED - SIGNAL_QUALITY_FULLY_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_FULLY_LOCKED - OVERRANGE_ACCEL_X = _mscl.InertialTypes_OVERRANGE_ACCEL_X - OVERRANGE_ACCEL_Y = _mscl.InertialTypes_OVERRANGE_ACCEL_Y - OVERRANGE_ACCEL_Z = _mscl.InertialTypes_OVERRANGE_ACCEL_Z - OVERRANGE_GYRO_X = _mscl.InertialTypes_OVERRANGE_GYRO_X - OVERRANGE_GYRO_Y = _mscl.InertialTypes_OVERRANGE_GYRO_Y - OVERRANGE_GYRO_Z = _mscl.InertialTypes_OVERRANGE_GYRO_Z - OVERRANGE_MAG_X = _mscl.InertialTypes_OVERRANGE_MAG_X - OVERRANGE_MAG_Y = _mscl.InertialTypes_OVERRANGE_MAG_Y - OVERRANGE_MAG_Z = _mscl.InertialTypes_OVERRANGE_MAG_Z - OVERRANGE_PRESSURE = _mscl.InertialTypes_OVERRANGE_PRESSURE - UNKNOWN_SBAS_SYSTEM = _mscl.InertialTypes_UNKNOWN_SBAS_SYSTEM - WAAS = _mscl.InertialTypes_WAAS - EGNOS = _mscl.InertialTypes_EGNOS - MSAS = _mscl.InertialTypes_MSAS - GAGAN = _mscl.InertialTypes_GAGAN - SBAS_INFO_RANGE_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_RANGE_AVAILABLE - SBAS_INFO_CORRECTIONS_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_CORRECTIONS_AVAILABLE - SBAS_INFO_INTEGRITY_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_INTEGRITY_AVAILABLE - SBAS_INFO_TEST = _mscl.InertialTypes_SBAS_INFO_TEST - JAMMING_STATE_UNKNOWN = _mscl.InertialTypes_JAMMING_STATE_UNKNOWN - JAMMING_STATE_NONE = _mscl.InertialTypes_JAMMING_STATE_NONE - JAMMING_STATE_PARTIAL = _mscl.InertialTypes_JAMMING_STATE_PARTIAL - JAMMING_STATE_SIGNIFICANT = _mscl.InertialTypes_JAMMING_STATE_SIGNIFICANT - SPOOFING_STATE_UNKNOWN = _mscl.InertialTypes_SPOOFING_STATE_UNKNOWN - SPOOFING_STATE_NONE = _mscl.InertialTypes_SPOOFING_STATE_NONE - SPOOFING_STATE_PARTIAL = _mscl.InertialTypes_SPOOFING_STATE_PARTIAL - SPOOFING_STATE_SIGNIFICANT = _mscl.InertialTypes_SPOOFING_STATE_SIGNIFICANT - - def __init__(self): - _mscl.InertialTypes_swiginit(self, _mscl.new_InertialTypes()) - __swig_destroy__ = _mscl.delete_InertialTypes - -# Register InertialTypes in _mscl: -_mscl.InertialTypes_swigregister(InertialTypes) - -class NmeaMessageFormat(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_MESSAGES = _mscl.NmeaMessageFormat_MAX_MESSAGES - GGA = _mscl.NmeaMessageFormat_GGA - GLL = _mscl.NmeaMessageFormat_GLL - GSV = _mscl.NmeaMessageFormat_GSV - RMC = _mscl.NmeaMessageFormat_RMC - VTG = _mscl.NmeaMessageFormat_VTG - HDT = _mscl.NmeaMessageFormat_HDT - ZDA = _mscl.NmeaMessageFormat_ZDA - MSRA = _mscl.NmeaMessageFormat_MSRA - MSRR = _mscl.NmeaMessageFormat_MSRR - IGNORED = _mscl.NmeaMessageFormat_IGNORED - GNSS = _mscl.NmeaMessageFormat_GNSS - GPS = _mscl.NmeaMessageFormat_GPS - GALILEO = _mscl.NmeaMessageFormat_GALILEO - GLONASS = _mscl.NmeaMessageFormat_GLONASS - - def __init__(self): - _mscl.NmeaMessageFormat_swiginit(self, _mscl.new_NmeaMessageFormat()) - __swig_destroy__ = _mscl.delete_NmeaMessageFormat - - def sentenceType(self, *args): - return _mscl.NmeaMessageFormat_sentenceType(self, *args) - - def talkerId(self, *args): - return _mscl.NmeaMessageFormat_talkerId(self, *args) - - def sourceDataClass(self, *args): - return _mscl.NmeaMessageFormat_sourceDataClass(self, *args) - - def sampleRate(self, *args): - return _mscl.NmeaMessageFormat_sampleRate(self, *args) - - @staticmethod - def talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - - @staticmethod - def dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - - @staticmethod - def supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - - @staticmethod - def toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -# Register NmeaMessageFormat in _mscl: -_mscl.NmeaMessageFormat_swigregister(NmeaMessageFormat) -NmeaMessageFormat.MAX_FREQUENCY = _mscl.cvar.NmeaMessageFormat_MAX_FREQUENCY - -def NmeaMessageFormat_talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - -def NmeaMessageFormat_dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - -def NmeaMessageFormat_supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - -def NmeaMessageFormat_toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -class Matrix_3x3(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Matrix_3x3_swiginit(self, _mscl.new_Matrix_3x3(*args)) - __swig_destroy__ = _mscl.delete_Matrix_3x3 - - def set(self, row, col, value): - return _mscl.Matrix_3x3_set(self, row, col, value) - - def at(self, row, col): - return _mscl.Matrix_3x3_at(self, row, col) - - def __str__(self): - return _mscl.Matrix_3x3___str__(self) - - def asMipFieldValues(self): - return _mscl.Matrix_3x3_asMipFieldValues(self) - -# Register Matrix_3x3 in _mscl: -_mscl.Matrix_3x3_swigregister(Matrix_3x3) - -class TimeUpdate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, timeOfWeek, weekNumber, timeAccuracy=0): - _mscl.TimeUpdate_swiginit(self, _mscl.new_TimeUpdate(timeOfWeek, weekNumber, timeAccuracy)) - __swig_destroy__ = _mscl.delete_TimeUpdate - - def timeOfWeek(self): - return _mscl.TimeUpdate_timeOfWeek(self) - - def weekNumber(self): - return _mscl.TimeUpdate_weekNumber(self) - - def timeAccuracy(self): - return _mscl.TimeUpdate_timeAccuracy(self) - -# Register TimeUpdate in _mscl: -_mscl.TimeUpdate_swigregister(TimeUpdate) - -class ZUPTSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, enable, threshold): - _mscl.ZUPTSettingsData_swiginit(self, _mscl.new_ZUPTSettingsData(enable, threshold)) - enabled = property(_mscl.ZUPTSettingsData_enabled_get, _mscl.ZUPTSettingsData_enabled_set) - threshold = property(_mscl.ZUPTSettingsData_threshold_get, _mscl.ZUPTSettingsData_threshold_set) - __swig_destroy__ = _mscl.delete_ZUPTSettingsData - -# Register ZUPTSettingsData in _mscl: -_mscl.ZUPTSettingsData_swigregister(ZUPTSettingsData) - -class FixedReferencePositionData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.FixedReferencePositionData_swiginit(self, _mscl.new_FixedReferencePositionData(*args)) - enable = property(_mscl.FixedReferencePositionData_enable_get, _mscl.FixedReferencePositionData_enable_set) - referencePosition = property(_mscl.FixedReferencePositionData_referencePosition_get, _mscl.FixedReferencePositionData_referencePosition_set) - __swig_destroy__ = _mscl.delete_FixedReferencePositionData - -# Register FixedReferencePositionData in _mscl: -_mscl.FixedReferencePositionData_swigregister(FixedReferencePositionData) - -class SBASSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enableSBAS = property(_mscl.SBASSettingsData_enableSBAS_get, _mscl.SBASSettingsData_enableSBAS_set) - enableRanging = property(_mscl.SBASSettingsData_enableRanging_get, _mscl.SBASSettingsData_enableRanging_set) - enableCorrectionData = property(_mscl.SBASSettingsData_enableCorrectionData_get, _mscl.SBASSettingsData_enableCorrectionData_set) - applyIntegrityInfo = property(_mscl.SBASSettingsData_applyIntegrityInfo_get, _mscl.SBASSettingsData_applyIntegrityInfo_set) - satellitePRNs = property(_mscl.SBASSettingsData_satellitePRNs_get, _mscl.SBASSettingsData_satellitePRNs_set) - - def __init__(self): - _mscl.SBASSettingsData_swiginit(self, _mscl.new_SBASSettingsData()) - __swig_destroy__ = _mscl.delete_SBASSettingsData - -# Register SBASSettingsData in _mscl: -_mscl.SBASSettingsData_swigregister(SBASSettingsData) - -class Constellation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - constellationID = property(_mscl.Constellation_constellationID_get, _mscl.Constellation_constellationID_set) - enabled = property(_mscl.Constellation_enabled_get, _mscl.Constellation_enabled_set) - reservedChannelCount = property(_mscl.Constellation_reservedChannelCount_get, _mscl.Constellation_reservedChannelCount_set) - maxChannels = property(_mscl.Constellation_maxChannels_get, _mscl.Constellation_maxChannels_set) - enableL1SAIF = property(_mscl.Constellation_enableL1SAIF_get, _mscl.Constellation_enableL1SAIF_set) - - def __init__(self): - _mscl.Constellation_swiginit(self, _mscl.new_Constellation()) - __swig_destroy__ = _mscl.delete_Constellation - -# Register Constellation in _mscl: -_mscl.Constellation_swigregister(Constellation) - -class ConstellationSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - maxChannelsAvailable = property(_mscl.ConstellationSettingsData_maxChannelsAvailable_get, _mscl.ConstellationSettingsData_maxChannelsAvailable_set) - maxChannelsToUse = property(_mscl.ConstellationSettingsData_maxChannelsToUse_get, _mscl.ConstellationSettingsData_maxChannelsToUse_set) - constellations = property(_mscl.ConstellationSettingsData_constellations_get, _mscl.ConstellationSettingsData_constellations_set) - - def __init__(self): - _mscl.ConstellationSettingsData_swiginit(self, _mscl.new_ConstellationSettingsData()) - __swig_destroy__ = _mscl.delete_ConstellationSettingsData - -# Register ConstellationSettingsData in _mscl: -_mscl.ConstellationSettingsData_swigregister(ConstellationSettingsData) - -class LowPassFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SET_TO_HALF_REPORTING_RATE = _mscl.LowPassFilterData_SET_TO_HALF_REPORTING_RATE - USER_SPECIFIED_CUTOFF_FREQ = _mscl.LowPassFilterData_USER_SPECIFIED_CUTOFF_FREQ - - def __init__(self, *args): - _mscl.LowPassFilterData_swiginit(self, _mscl.new_LowPassFilterData(*args)) - dataDescriptor = property(_mscl.LowPassFilterData_dataDescriptor_get, _mscl.LowPassFilterData_dataDescriptor_set) - manualFilterBandwidthConfig = property(_mscl.LowPassFilterData_manualFilterBandwidthConfig_get, _mscl.LowPassFilterData_manualFilterBandwidthConfig_set) - applyLowPassFilter = property(_mscl.LowPassFilterData_applyLowPassFilter_get, _mscl.LowPassFilterData_applyLowPassFilter_set) - cutoffFrequency = property(_mscl.LowPassFilterData_cutoffFrequency_get, _mscl.LowPassFilterData_cutoffFrequency_set) - - @staticmethod - def getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - - @staticmethod - def getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - __swig_destroy__ = _mscl.delete_LowPassFilterData - -# Register LowPassFilterData in _mscl: -_mscl.LowPassFilterData_swigregister(LowPassFilterData) - -def LowPassFilterData_getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - -def LowPassFilterData_getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - -class ComplementaryFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ComplementaryFilterData_swiginit(self, _mscl.new_ComplementaryFilterData()) - upCompensationEnabled = property(_mscl.ComplementaryFilterData_upCompensationEnabled_get, _mscl.ComplementaryFilterData_upCompensationEnabled_set) - upCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_upCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_upCompensationTimeInSeconds_set) - northCompensationEnabled = property(_mscl.ComplementaryFilterData_northCompensationEnabled_get, _mscl.ComplementaryFilterData_northCompensationEnabled_set) - northCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_northCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_northCompensationTimeInSeconds_set) - __swig_destroy__ = _mscl.delete_ComplementaryFilterData - -# Register ComplementaryFilterData in _mscl: -_mscl.ComplementaryFilterData_swigregister(ComplementaryFilterData) - -class PpsPulseInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PpsPulseInfo_swiginit(self, _mscl.new_PpsPulseInfo()) - count = property(_mscl.PpsPulseInfo_count_get, _mscl.PpsPulseInfo_count_set) - lastTimeinMS = property(_mscl.PpsPulseInfo_lastTimeinMS_get, _mscl.PpsPulseInfo_lastTimeinMS_set) - __swig_destroy__ = _mscl.delete_PpsPulseInfo - -# Register PpsPulseInfo in _mscl: -_mscl.PpsPulseInfo_swigregister(PpsPulseInfo) - -class StreamInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.StreamInfo_swiginit(self, _mscl.new_StreamInfo()) - enabled = property(_mscl.StreamInfo_enabled_get, _mscl.StreamInfo_enabled_set) - outgoingPacketsDropped = property(_mscl.StreamInfo_outgoingPacketsDropped_get, _mscl.StreamInfo_outgoingPacketsDropped_set) - __swig_destroy__ = _mscl.delete_StreamInfo - -# Register StreamInfo in _mscl: -_mscl.StreamInfo_swigregister(StreamInfo) - -class DeviceMessageInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.DeviceMessageInfo_swiginit(self, _mscl.new_DeviceMessageInfo()) - messageParsingErrors = property(_mscl.DeviceMessageInfo_messageParsingErrors_get, _mscl.DeviceMessageInfo_messageParsingErrors_set) - messagesRead = property(_mscl.DeviceMessageInfo_messagesRead_get, _mscl.DeviceMessageInfo_messagesRead_set) - lastMessageReadinMS = property(_mscl.DeviceMessageInfo_lastMessageReadinMS_get, _mscl.DeviceMessageInfo_lastMessageReadinMS_set) - __swig_destroy__ = _mscl.delete_DeviceMessageInfo - -# Register DeviceMessageInfo in _mscl: -_mscl.DeviceMessageInfo_swigregister(DeviceMessageInfo) - -class PortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PortInfo_swiginit(self, _mscl.new_PortInfo()) - bytesWritten = property(_mscl.PortInfo_bytesWritten_get, _mscl.PortInfo_bytesWritten_set) - bytesRead = property(_mscl.PortInfo_bytesRead_get, _mscl.PortInfo_bytesRead_set) - overrunsOnWrite = property(_mscl.PortInfo_overrunsOnWrite_get, _mscl.PortInfo_overrunsOnWrite_set) - overrunsOnRead = property(_mscl.PortInfo_overrunsOnRead_get, _mscl.PortInfo_overrunsOnRead_set) - __swig_destroy__ = _mscl.delete_PortInfo - -# Register PortInfo in _mscl: -_mscl.PortInfo_swigregister(PortInfo) - -class TemperatureInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.TemperatureInfo_swiginit(self, _mscl.new_TemperatureInfo()) - onBoardTemp = property(_mscl.TemperatureInfo_onBoardTemp_get, _mscl.TemperatureInfo_onBoardTemp_set) - lastReadInMS = property(_mscl.TemperatureInfo_lastReadInMS_get, _mscl.TemperatureInfo_lastReadInMS_set) - error = property(_mscl.TemperatureInfo_error_get, _mscl.TemperatureInfo_error_set) - __swig_destroy__ = _mscl.delete_TemperatureInfo - -# Register TemperatureInfo in _mscl: -_mscl.TemperatureInfo_swigregister(TemperatureInfo) - -ModelNumber = _mscl.ModelNumber -StatusStructure_Value = _mscl.StatusStructure_Value -SystemState_Value = _mscl.SystemState_Value -gnss1PpsPulseInfo_Count = _mscl.gnss1PpsPulseInfo_Count -gnss1PpsPulseInfo_LastTimeinMS = _mscl.gnss1PpsPulseInfo_LastTimeinMS -GnssPowerStateOn = _mscl.GnssPowerStateOn -ImuStreamInfo_Enabled = _mscl.ImuStreamInfo_Enabled -ImuStreamInfo_PacketsDropped = _mscl.ImuStreamInfo_PacketsDropped -GnssStreamInfo_Enabled = _mscl.GnssStreamInfo_Enabled -GnssStreamInfo_PacketsDropped = _mscl.GnssStreamInfo_PacketsDropped -EstimationFilterStreamInfo_Enabled = _mscl.EstimationFilterStreamInfo_Enabled -EstimationFilterStreamInfo_PacketsDropped = _mscl.EstimationFilterStreamInfo_PacketsDropped -ComPortInfo_BytesRead = _mscl.ComPortInfo_BytesRead -ComPortInfo_BytesWritten = _mscl.ComPortInfo_BytesWritten -ComPortInfo_OverrunsOnRead = _mscl.ComPortInfo_OverrunsOnRead -ComPortInfo_OverrunsOnWrite = _mscl.ComPortInfo_OverrunsOnWrite -ImuMessageInfo_LastMessageReadinMS = _mscl.ImuMessageInfo_LastMessageReadinMS -ImuMessageInfo_MessageParsingErrors = _mscl.ImuMessageInfo_MessageParsingErrors -ImuMessageInfo_MessagesRead = _mscl.ImuMessageInfo_MessagesRead -GnssMessageInfo_LastMessageReadinMS = _mscl.GnssMessageInfo_LastMessageReadinMS -GnssMessageInfo_MessageParsingErrors = _mscl.GnssMessageInfo_MessageParsingErrors -GnssMessageInfo_MessagesRead = _mscl.GnssMessageInfo_MessagesRead -TemperatureInfo_Error = _mscl.TemperatureInfo_Error -TemperatureInfo_LastReadInMS = _mscl.TemperatureInfo_LastReadInMS -TemperatureInfo_OnBoardTemp = _mscl.TemperatureInfo_OnBoardTemp -PowerState = _mscl.PowerState -GyroRange = _mscl.GyroRange -AccelRange = _mscl.AccelRange -HasMagnetometer = _mscl.HasMagnetometer -HasPressure = _mscl.HasPressure -class DeviceStatusData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_BASIC_STATUS_STRUCTURE - DIAGNOSTIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_DIAGNOSTIC_STATUS_STRUCTURE - SYSTEM_INITIALIZATION = _mscl.DeviceStatusData_SYSTEM_INITIALIZATION - SYSTEM_STARTUP = _mscl.DeviceStatusData_SYSTEM_STARTUP - SYSTEM_RUNNING = _mscl.DeviceStatusData_SYSTEM_RUNNING - - def __init__(self): - _mscl.DeviceStatusData_swiginit(self, _mscl.new_DeviceStatusData()) - modelNumber = property(_mscl.DeviceStatusData_modelNumber_get, _mscl.DeviceStatusData_modelNumber_set) - statusStructure = property(_mscl.DeviceStatusData_statusStructure_get, _mscl.DeviceStatusData_statusStructure_set) - systemTimerInMS = property(_mscl.DeviceStatusData_systemTimerInMS_get, _mscl.DeviceStatusData_systemTimerInMS_set) - - def systemState(self, *args): - return _mscl.DeviceStatusData_systemState(self, *args) - - def gnssPowerStateOn(self, *args): - return _mscl.DeviceStatusData_gnssPowerStateOn(self, *args) - - def gnss1PpsPulseInfo(self, *args): - return _mscl.DeviceStatusData_gnss1PpsPulseInfo(self, *args) - - def imuStreamInfo(self, *args): - return _mscl.DeviceStatusData_imuStreamInfo(self, *args) - - def gnssStreamInfo(self, *args): - return _mscl.DeviceStatusData_gnssStreamInfo(self, *args) - - def estimationFilterStreamInfo(self, *args): - return _mscl.DeviceStatusData_estimationFilterStreamInfo(self, *args) - - def imuMessageInfo(self, *args): - return _mscl.DeviceStatusData_imuMessageInfo(self, *args) - - def gnssMessageInfo(self, *args): - return _mscl.DeviceStatusData_gnssMessageInfo(self, *args) - - def comPortInfo(self, *args): - return _mscl.DeviceStatusData_comPortInfo(self, *args) - - def usbPortInfo(self, *args): - return _mscl.DeviceStatusData_usbPortInfo(self, *args) - - def hasMagnetometer(self, *args): - return _mscl.DeviceStatusData_hasMagnetometer(self, *args) - - def magnetometerInitializationFailed(self, *args): - return _mscl.DeviceStatusData_magnetometerInitializationFailed(self, *args) - - def hasPressure(self, *args): - return _mscl.DeviceStatusData_hasPressure(self, *args) - - def pressureInitializationFailed(self, *args): - return _mscl.DeviceStatusData_pressureInitializationFailed(self, *args) - - def gnssReceiverInitializationFailed(self, *args): - return _mscl.DeviceStatusData_gnssReceiverInitializationFailed(self, *args) - - def coldStartOnPowerOn(self, *args): - return _mscl.DeviceStatusData_coldStartOnPowerOn(self, *args) - - def temperatureInfo(self, *args): - return _mscl.DeviceStatusData_temperatureInfo(self, *args) - - def powerState(self, *args): - return _mscl.DeviceStatusData_powerState(self, *args) - - def gyroRange(self, *args): - return _mscl.DeviceStatusData_gyroRange(self, *args) - - def accelRange(self, *args): - return _mscl.DeviceStatusData_accelRange(self, *args) - - def asMap(self): - return _mscl.DeviceStatusData_asMap(self) - - def asValueMap(self): - return _mscl.DeviceStatusData_asValueMap(self) - __swig_destroy__ = _mscl.delete_DeviceStatusData - -# Register DeviceStatusData in _mscl: -_mscl.DeviceStatusData_swigregister(DeviceStatusData) - -class ExternalGNSSUpdateData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - gpsTimeOfWeek = property(_mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_get, _mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_set) - gpsWeekNumber = property(_mscl.ExternalGNSSUpdateData_gpsWeekNumber_get, _mscl.ExternalGNSSUpdateData_gpsWeekNumber_set) - lattitude = property(_mscl.ExternalGNSSUpdateData_lattitude_get, _mscl.ExternalGNSSUpdateData_lattitude_set) - longitude = property(_mscl.ExternalGNSSUpdateData_longitude_get, _mscl.ExternalGNSSUpdateData_longitude_set) - altitudeAboveWGS84Ellipsoid = property(_mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_get, _mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_set) - northVelocity = property(_mscl.ExternalGNSSUpdateData_northVelocity_get, _mscl.ExternalGNSSUpdateData_northVelocity_set) - eastVelocity = property(_mscl.ExternalGNSSUpdateData_eastVelocity_get, _mscl.ExternalGNSSUpdateData_eastVelocity_set) - downVelocity = property(_mscl.ExternalGNSSUpdateData_downVelocity_get, _mscl.ExternalGNSSUpdateData_downVelocity_set) - northPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_northPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_northPositionUncertainty_set) - eastPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_eastPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_eastPositionUncertainty_set) - downPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_downPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_downPositionUncertainty_set) - northVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_northVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_northVelocityUncertainty_set) - eastVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_set) - downVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_downVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_downVelocityUncertainty_set) - - def __init__(self): - _mscl.ExternalGNSSUpdateData_swiginit(self, _mscl.new_ExternalGNSSUpdateData()) - __swig_destroy__ = _mscl.delete_ExternalGNSSUpdateData - -# Register ExternalGNSSUpdateData in _mscl: -_mscl.ExternalGNSSUpdateData_swigregister(ExternalGNSSUpdateData) - -class HeadingUpdateOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsOptionId(self): - return _mscl.HeadingUpdateOptions_AsOptionId(self) - - def __init__(self, *args): - _mscl.HeadingUpdateOptions_swiginit(self, _mscl.new_HeadingUpdateOptions(*args)) - useInternalMagnetometer = property(_mscl.HeadingUpdateOptions_useInternalMagnetometer_get, _mscl.HeadingUpdateOptions_useInternalMagnetometer_set) - useInternalGNSSVelocityVector = property(_mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_get, _mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_set) - useExternalHeadingMessages = property(_mscl.HeadingUpdateOptions_useExternalHeadingMessages_get, _mscl.HeadingUpdateOptions_useExternalHeadingMessages_set) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptions - -# Register HeadingUpdateOptions in _mscl: -_mscl.HeadingUpdateOptions_swigregister(HeadingUpdateOptions) - -Automatic = _mscl.Automatic -UserSpecified_Heading = _mscl.UserSpecified_Heading -UserSpecified_Attitude = _mscl.UserSpecified_Attitude -UserSpecified_All = _mscl.UserSpecified_All -GNSS_DualAntenna = _mscl.GNSS_DualAntenna -GNSS_Kinematic = _mscl.GNSS_Kinematic -Magnetometer = _mscl.Magnetometer -External = _mscl.External -class HeadingAlignmentMethod(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.HeadingAlignmentMethod_swiginit(self, _mscl.new_HeadingAlignmentMethod(*args)) - value = property(_mscl.HeadingAlignmentMethod_value_get, _mscl.HeadingAlignmentMethod_value_set) - - def select(self, option): - return _mscl.HeadingAlignmentMethod_select(self, option) - - def deselect(self, option): - return _mscl.HeadingAlignmentMethod_deselect(self, option) - - def selected(self, option): - return _mscl.HeadingAlignmentMethod_selected(self, option) - __swig_destroy__ = _mscl.delete_HeadingAlignmentMethod - -# Register HeadingAlignmentMethod in _mscl: -_mscl.HeadingAlignmentMethod_swigregister(HeadingAlignmentMethod) - -class FilterInitializationValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FilterInitializationValues_swiginit(self, _mscl.new_FilterInitializationValues()) - autoInitialize = property(_mscl.FilterInitializationValues_autoInitialize_get, _mscl.FilterInitializationValues_autoInitialize_set) - initialValuesSource = property(_mscl.FilterInitializationValues_initialValuesSource_get, _mscl.FilterInitializationValues_initialValuesSource_set) - autoHeadingAlignmentMethod = property(_mscl.FilterInitializationValues_autoHeadingAlignmentMethod_get, _mscl.FilterInitializationValues_autoHeadingAlignmentMethod_set) - initialAttitude = property(_mscl.FilterInitializationValues_initialAttitude_get, _mscl.FilterInitializationValues_initialAttitude_set) - initialPosition = property(_mscl.FilterInitializationValues_initialPosition_get, _mscl.FilterInitializationValues_initialPosition_set) - initialVelocity = property(_mscl.FilterInitializationValues_initialVelocity_get, _mscl.FilterInitializationValues_initialVelocity_set) - referenceFrame = property(_mscl.FilterInitializationValues_referenceFrame_get, _mscl.FilterInitializationValues_referenceFrame_set) - - def manualHeading(self): - return _mscl.FilterInitializationValues_manualHeading(self) - - def manualAttitude(self): - return _mscl.FilterInitializationValues_manualAttitude(self) - - def manualPositionVelocity(self): - return _mscl.FilterInitializationValues_manualPositionVelocity(self) - __swig_destroy__ = _mscl.delete_FilterInitializationValues - -# Register FilterInitializationValues in _mscl: -_mscl.FilterInitializationValues_swigregister(FilterInitializationValues) - -class TareAxisValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def asUint8(self): - return _mscl.TareAxisValues_asUint8(self) - - def __init__(self, tareRollAxis, tarePitchAxis, tareYawAxis): - _mscl.TareAxisValues_swiginit(self, _mscl.new_TareAxisValues(tareRollAxis, tarePitchAxis, tareYawAxis)) - tareRollAxis = property(_mscl.TareAxisValues_tareRollAxis_get, _mscl.TareAxisValues_tareRollAxis_set) - tarePitchAxis = property(_mscl.TareAxisValues_tarePitchAxis_get, _mscl.TareAxisValues_tarePitchAxis_set) - tareYawAxis = property(_mscl.TareAxisValues_tareYawAxis_get, _mscl.TareAxisValues_tareYawAxis_set) - __swig_destroy__ = _mscl.delete_TareAxisValues - -# Register TareAxisValues in _mscl: -_mscl.TareAxisValues_swigregister(TareAxisValues) - -class GeographicSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeographicSourceOptions_swiginit(self, _mscl.new_GeographicSourceOptions(*args)) - source = property(_mscl.GeographicSourceOptions_source_get, _mscl.GeographicSourceOptions_source_set) - manual = property(_mscl.GeographicSourceOptions_manual_get, _mscl.GeographicSourceOptions_manual_set) - __swig_destroy__ = _mscl.delete_GeographicSourceOptions - -# Register GeographicSourceOptions in _mscl: -_mscl.GeographicSourceOptions_swigregister(GeographicSourceOptions) - -class EstimationControlOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsUint16(self): - return _mscl.EstimationControlOptions_AsUint16(self) - - def __init__(self, *args): - _mscl.EstimationControlOptions_swiginit(self, _mscl.new_EstimationControlOptions(*args)) - enableGyroBiasEstimation = property(_mscl.EstimationControlOptions_enableGyroBiasEstimation_get, _mscl.EstimationControlOptions_enableGyroBiasEstimation_set) - enableAccelBiasEstimation = property(_mscl.EstimationControlOptions_enableAccelBiasEstimation_get, _mscl.EstimationControlOptions_enableAccelBiasEstimation_set) - enableGyroScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_set) - enableAccelScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_set) - enableGNSSAntennaOffsetEstimation = property(_mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_get, _mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_set) - enableHardIronAutoCalibration = property(_mscl.EstimationControlOptions_enableHardIronAutoCalibration_get, _mscl.EstimationControlOptions_enableHardIronAutoCalibration_set) - enableSoftIronAutoCalibration = property(_mscl.EstimationControlOptions_enableSoftIronAutoCalibration_get, _mscl.EstimationControlOptions_enableSoftIronAutoCalibration_set) - __swig_destroy__ = _mscl.delete_EstimationControlOptions - -# Register EstimationControlOptions in _mscl: -_mscl.EstimationControlOptions_swigregister(EstimationControlOptions) - -class HeadingData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HeadingData_swiginit(self, _mscl.new_HeadingData()) - TRUE_HEADING = _mscl.HeadingData_TRUE_HEADING - MAGNETIC_HEADING = _mscl.HeadingData_MAGNETIC_HEADING - heading = property(_mscl.HeadingData_heading_get, _mscl.HeadingData_heading_set) - headingAngle = property(_mscl.HeadingData_headingAngle_get, _mscl.HeadingData_headingAngle_set) - headingAngleUncertainty = property(_mscl.HeadingData_headingAngleUncertainty_get, _mscl.HeadingData_headingAngleUncertainty_set) - __swig_destroy__ = _mscl.delete_HeadingData - -# Register HeadingData in _mscl: -_mscl.HeadingData_swigregister(HeadingData) - -class AdaptiveMeasurementData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AdaptiveMeasurementData_swiginit(self, _mscl.new_AdaptiveMeasurementData()) - mode = property(_mscl.AdaptiveMeasurementData_mode_get, _mscl.AdaptiveMeasurementData_mode_set) - lowPassFilterCutoff = property(_mscl.AdaptiveMeasurementData_lowPassFilterCutoff_get, _mscl.AdaptiveMeasurementData_lowPassFilterCutoff_set) - lowLimit = property(_mscl.AdaptiveMeasurementData_lowLimit_get, _mscl.AdaptiveMeasurementData_lowLimit_set) - highLimit = property(_mscl.AdaptiveMeasurementData_highLimit_get, _mscl.AdaptiveMeasurementData_highLimit_set) - lowLimitUncertainty = property(_mscl.AdaptiveMeasurementData_lowLimitUncertainty_get, _mscl.AdaptiveMeasurementData_lowLimitUncertainty_set) - highLimitUncertainty = property(_mscl.AdaptiveMeasurementData_highLimitUncertainty_get, _mscl.AdaptiveMeasurementData_highLimitUncertainty_set) - minUncertainty = property(_mscl.AdaptiveMeasurementData_minUncertainty_get, _mscl.AdaptiveMeasurementData_minUncertainty_set) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementData - -# Register AdaptiveMeasurementData in _mscl: -_mscl.AdaptiveMeasurementData_swigregister(AdaptiveMeasurementData) - -class AutoAdaptiveFilterOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AutoAdaptiveFilterOptions_swiginit(self, _mscl.new_AutoAdaptiveFilterOptions(*args)) - level = property(_mscl.AutoAdaptiveFilterOptions_level_get, _mscl.AutoAdaptiveFilterOptions_level_set) - timeLimit = property(_mscl.AutoAdaptiveFilterOptions_timeLimit_get, _mscl.AutoAdaptiveFilterOptions_timeLimit_set) - __swig_destroy__ = _mscl.delete_AutoAdaptiveFilterOptions - -# Register AutoAdaptiveFilterOptions in _mscl: -_mscl.AutoAdaptiveFilterOptions_swigregister(AutoAdaptiveFilterOptions) - -class SignalConditioningValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ENABLE_ORIENTATION_CALC = _mscl.SignalConditioningValues_ENABLE_ORIENTATION_CALC - ENABLE_CONING_SCULLING = _mscl.SignalConditioningValues_ENABLE_CONING_SCULLING - ENABLE_FINITE_SIZE_CORRECTION = _mscl.SignalConditioningValues_ENABLE_FINITE_SIZE_CORRECTION - DISABLE_MAGNETOMETER = _mscl.SignalConditioningValues_DISABLE_MAGNETOMETER - DISABLE_NORTH_COMP = _mscl.SignalConditioningValues_DISABLE_NORTH_COMP - DISABLE_UP_COMP = _mscl.SignalConditioningValues_DISABLE_UP_COMP - ENABLE_QUATERNION_CALC = _mscl.SignalConditioningValues_ENABLE_QUATERNION_CALC - HIGH = _mscl.SignalConditioningValues_HIGH - LOW = _mscl.SignalConditioningValues_LOW - dataConditioningFlags = property(_mscl.SignalConditioningValues_dataConditioningFlags_get, _mscl.SignalConditioningValues_dataConditioningFlags_set) - orientationCalcDecimation = property(_mscl.SignalConditioningValues_orientationCalcDecimation_get, _mscl.SignalConditioningValues_orientationCalcDecimation_set) - accelGyroFilterWidth = property(_mscl.SignalConditioningValues_accelGyroFilterWidth_get, _mscl.SignalConditioningValues_accelGyroFilterWidth_set) - magFilterWidth = property(_mscl.SignalConditioningValues_magFilterWidth_get, _mscl.SignalConditioningValues_magFilterWidth_set) - upCompensation = property(_mscl.SignalConditioningValues_upCompensation_get, _mscl.SignalConditioningValues_upCompensation_set) - northCompensation = property(_mscl.SignalConditioningValues_northCompensation_get, _mscl.SignalConditioningValues_northCompensation_set) - magBandwidthPower = property(_mscl.SignalConditioningValues_magBandwidthPower_get, _mscl.SignalConditioningValues_magBandwidthPower_set) - - def __init__(self): - _mscl.SignalConditioningValues_swiginit(self, _mscl.new_SignalConditioningValues()) - - def conditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_conditioningOptionOn(self, *args) - - def setConditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOn(self, *args) - - def setConditioningOptionOff(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOff(self, *args) - __swig_destroy__ = _mscl.delete_SignalConditioningValues - -# Register SignalConditioningValues in _mscl: -_mscl.SignalConditioningValues_swigregister(SignalConditioningValues) - -class EnableDisableMeasurements(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ACCELEROMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_ACCELEROMETER_MEASUREMENTS - MAGNETOMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_MAGNETOMETER_MEASUREMENTS - - def __init__(self, *args): - _mscl.EnableDisableMeasurements_swiginit(self, _mscl.new_EnableDisableMeasurements(*args)) - measurementOptions = property(_mscl.EnableDisableMeasurements_measurementOptions_get, _mscl.EnableDisableMeasurements_measurementOptions_set) - - def optionEnabled(self, *args): - return _mscl.EnableDisableMeasurements_optionEnabled(self, *args) - - def enableOption(self, *args): - return _mscl.EnableDisableMeasurements_enableOption(self, *args) - - def disableOption(self, *args): - return _mscl.EnableDisableMeasurements_disableOption(self, *args) - __swig_destroy__ = _mscl.delete_EnableDisableMeasurements - -# Register EnableDisableMeasurements in _mscl: -_mscl.EnableDisableMeasurements_swigregister(EnableDisableMeasurements) - -class RTKDeviceStatusFlags(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MODEM_STATE = _mscl.RTKDeviceStatusFlags_MODEM_STATE - CONNECTION_TYPE = _mscl.RTKDeviceStatusFlags_CONNECTION_TYPE - RSSI = _mscl.RTKDeviceStatusFlags_RSSI - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_SIGNAL_QUALITY - TOWER_CHANGE_INDICATOR = _mscl.RTKDeviceStatusFlags_TOWER_CHANGE_INDICATOR - NMEA_TIMEOUT = _mscl.RTKDeviceStatusFlags_NMEA_TIMEOUT - SERVER_TIMEOUT = _mscl.RTKDeviceStatusFlags_SERVER_TIMEOUT - RTCM_TIMEOUT = _mscl.RTKDeviceStatusFlags_RTCM_TIMEOUT - DEVICE_OUT_OF_RANGE = _mscl.RTKDeviceStatusFlags_DEVICE_OUT_OF_RANGE - CORRECTIONS_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_CORRECTIONS_UNAVAILABLE - VERSION = _mscl.RTKDeviceStatusFlags_VERSION - OFF = _mscl.RTKDeviceStatusFlags_OFF - NO_NETWORK = _mscl.RTKDeviceStatusFlags_NO_NETWORK - NETWORK_CONNECTED = _mscl.RTKDeviceStatusFlags_NETWORK_CONNECTED - CONFIGURING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_CONFIGURING_DATA_CONTEXT - ACTIVATING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_ACTIVATING_DATA_CONTEXT - CONFIGURING_SOCKET = _mscl.RTKDeviceStatusFlags_CONFIGURING_SOCKET - WAITING_ON_SERVER_HANDSHAKE = _mscl.RTKDeviceStatusFlags_WAITING_ON_SERVER_HANDSHAKE - CONNECTED_AND_IDLE = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_IDLE - CONNECTED_AND_STREAMING = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_STREAMING - NO_CONNECTION = _mscl.RTKDeviceStatusFlags_NO_CONNECTION - CONNECTION_2G = _mscl.RTKDeviceStatusFlags_CONNECTION_2G - CONNECTION_3G = _mscl.RTKDeviceStatusFlags_CONNECTION_3G - CONNECTION_4G = _mscl.RTKDeviceStatusFlags_CONNECTION_4G - CONNECTION_5G = _mscl.RTKDeviceStatusFlags_CONNECTION_5G - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_swiginit(self, _mscl.new_RTKDeviceStatusFlags(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_version(self) - - def modemState(self, *args): - return _mscl.RTKDeviceStatusFlags_modemState(self, *args) - - def connectionType(self, *args): - return _mscl.RTKDeviceStatusFlags_connectionType(self, *args) - - def rssi(self, *args): - return _mscl.RTKDeviceStatusFlags_rssi(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_signalQuality(self, *args) - - def towerChangeIndicator(self, *args): - return _mscl.RTKDeviceStatusFlags_towerChangeIndicator(self, *args) - - def nmeaTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_nmeaTimeout(self, *args) - - def serverTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_serverTimeout(self, *args) - - def rtcmTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_rtcmTimeout(self, *args) - - def deviceOutOfRange(self, *args): - return _mscl.RTKDeviceStatusFlags_deviceOutOfRange(self, *args) - - def correctionsUnavailable(self, *args): - return _mscl.RTKDeviceStatusFlags_correctionsUnavailable(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags - -# Register RTKDeviceStatusFlags in _mscl: -_mscl.RTKDeviceStatusFlags_swigregister(RTKDeviceStatusFlags) - -class RTKDeviceStatusFlags_v1(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONTROLLER_STATE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATE - PLATFORM_STATE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATE - CONTROLLER_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATUS_CODE - PLATFORM_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATUS_CODE - RESET_REASON = _mscl.RTKDeviceStatusFlags_v1_RESET_REASON - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_v1_SIGNAL_QUALITY - VERSION = _mscl.RTKDeviceStatusFlags_v1_VERSION - IDLE = _mscl.RTKDeviceStatusFlags_v1_IDLE - ACTIVE = _mscl.RTKDeviceStatusFlags_v1_ACTIVE - MODEM_OFF = _mscl.RTKDeviceStatusFlags_v1_MODEM_OFF - MODEM_POWERING_ON = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_ON - MODEM_CONFIGURE = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONFIGURE - MODEM_POWERING_DOWN = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_DOWN - MODEM_READY = _mscl.RTKDeviceStatusFlags_v1_MODEM_READY - MODEM_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTING - MODEM_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_DISCONNECTING - MODEM_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTED - SERVICE_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTING - SERVICE_CONNECTION_FAILED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_FAILED - SERVICE_CONNECTION_CANCELED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_CANCELED - SERVICE_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_DISCONNECTING - SERVICE_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTED - PLATFORM_ERROR = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_ERROR - RESET_MODEM = _mscl.RTKDeviceStatusFlags_v1_RESET_MODEM - CONTROLLER_OK = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_OK - WAITING_NMEA = _mscl.RTKDeviceStatusFlags_v1_WAITING_NMEA - RTK_TIMEOUT = _mscl.RTKDeviceStatusFlags_v1_RTK_TIMEOUT - RTK_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_v1_RTK_UNAVAILABLE - CONFIG_INVALID = _mscl.RTKDeviceStatusFlags_v1_CONFIG_INVALID - PLATFORM_OK = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_OK - RTK_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_RTK_CONNECTION_DROPPED - CELL_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_CELL_CONNECTION_DROPPED - MODEM_ERROR = _mscl.RTKDeviceStatusFlags_v1_MODEM_ERROR - POWER_ON = _mscl.RTKDeviceStatusFlags_v1_POWER_ON - UNKNOWN = _mscl.RTKDeviceStatusFlags_v1_UNKNOWN - SOFT_RESET = _mscl.RTKDeviceStatusFlags_v1_SOFT_RESET - HARDWARE_ERROR_RESET = _mscl.RTKDeviceStatusFlags_v1_HARDWARE_ERROR_RESET - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_v1_swiginit(self, _mscl.new_RTKDeviceStatusFlags_v1(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_v1_version(self) - - def controllerState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerState(self, *args) - - def platformState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformState(self, *args) - - def controllerStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerStatusCode(self, *args) - - def platformStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformStatusCode(self, *args) - - def resetReason(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_resetReason(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_signalQuality(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags_v1 - -# Register RTKDeviceStatusFlags_v1 in _mscl: -_mscl.RTKDeviceStatusFlags_v1_swigregister(RTKDeviceStatusFlags_v1) - -class GnssSignalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - L1CA = _mscl.GnssSignalConfiguration_L1CA - L2C = _mscl.GnssSignalConfiguration_L2C - L1OF = _mscl.GnssSignalConfiguration_L1OF - L2OF = _mscl.GnssSignalConfiguration_L2OF - E1 = _mscl.GnssSignalConfiguration_E1 - E5B = _mscl.GnssSignalConfiguration_E5B - B1 = _mscl.GnssSignalConfiguration_B1 - B2 = _mscl.GnssSignalConfiguration_B2 - - def __init__(self): - _mscl.GnssSignalConfiguration_swiginit(self, _mscl.new_GnssSignalConfiguration()) - - def enableGpsSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGpsSignal(self, signal, enable) - - def gpsSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_gpsSignalEnabled(self, signal) - - def gpsSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_gpsSignalValue(self, *args) - - def enableGlonassSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGlonassSignal(self, signal, enable) - - def glonassSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_glonassSignalEnabled(self, signal) - - def glonassSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_glonassSignalValue(self, *args) - - def enableGalileoSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGalileoSignal(self, signal, enable) - - def galileoSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_galileoSignalEnabled(self, signal) - - def galileoSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_galileoSignalValue(self, *args) - - def enableBeiDouSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableBeiDouSignal(self, signal, enable) - - def beidouSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_beidouSignalEnabled(self, signal) - - def beidouSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_beidouSignalValue(self, *args) - __swig_destroy__ = _mscl.delete_GnssSignalConfiguration - -# Register GnssSignalConfiguration in _mscl: -_mscl.GnssSignalConfiguration_swigregister(GnssSignalConfiguration) - -class GnssSpartnConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - KEY_SIZE = _mscl.GnssSpartnConfiguration_KEY_SIZE - NONE = _mscl.GnssSpartnConfiguration_NONE - NETWORK = _mscl.GnssSpartnConfiguration_NETWORK - LBAND = _mscl.GnssSpartnConfiguration_LBAND - - def __init__(self): - _mscl.GnssSpartnConfiguration_swiginit(self, _mscl.new_GnssSpartnConfiguration()) - - def enable(self, enable): - return _mscl.GnssSpartnConfiguration_enable(self, enable) - - def enabled(self): - return _mscl.GnssSpartnConfiguration_enabled(self) - - def type(self, *args): - return _mscl.GnssSpartnConfiguration_type(self, *args) - - def currentKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyTow(self, *args) - - def currentKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyWeek(self, *args) - - def currentKey(self, *args): - return _mscl.GnssSpartnConfiguration_currentKey(self, *args) - - def nextKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyTow(self, *args) - - def nextKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyWeek(self, *args) - - def nextKey(self, *args): - return _mscl.GnssSpartnConfiguration_nextKey(self, *args) - __swig_destroy__ = _mscl.delete_GnssSpartnConfiguration - -# Register GnssSpartnConfiguration in _mscl: -_mscl.GnssSpartnConfiguration_swigregister(GnssSpartnConfiguration) - -class PositionReferenceConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - autoConfig = property(_mscl.PositionReferenceConfiguration_autoConfig_get, _mscl.PositionReferenceConfiguration_autoConfig_set) - position = property(_mscl.PositionReferenceConfiguration_position_get, _mscl.PositionReferenceConfiguration_position_set) - - def __init__(self): - _mscl.PositionReferenceConfiguration_swiginit(self, _mscl.new_PositionReferenceConfiguration()) - __swig_destroy__ = _mscl.delete_PositionReferenceConfiguration - -# Register PositionReferenceConfiguration in _mscl: -_mscl.PositionReferenceConfiguration_swigregister(PositionReferenceConfiguration) - -class AntennaLeverArmCalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enabled = property(_mscl.AntennaLeverArmCalConfiguration_enabled_get, _mscl.AntennaLeverArmCalConfiguration_enabled_set) - maxOffsetError = property(_mscl.AntennaLeverArmCalConfiguration_maxOffsetError_get, _mscl.AntennaLeverArmCalConfiguration_maxOffsetError_set) - - def __init__(self): - _mscl.AntennaLeverArmCalConfiguration_swiginit(self, _mscl.new_AntennaLeverArmCalConfiguration()) - __swig_destroy__ = _mscl.delete_AntennaLeverArmCalConfiguration - -# Register AntennaLeverArmCalConfiguration in _mscl: -_mscl.AntennaLeverArmCalConfiguration_swigregister(AntennaLeverArmCalConfiguration) - -class OdometerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.OdometerConfiguration_DISABLED - SINGLE = _mscl.OdometerConfiguration_SINGLE - QUADRATURE = _mscl.OdometerConfiguration_QUADRATURE - - def __init__(self): - _mscl.OdometerConfiguration_swiginit(self, _mscl.new_OdometerConfiguration()) - - def mode(self, *args): - return _mscl.OdometerConfiguration_mode(self, *args) - - def uncertainty(self, *args): - return _mscl.OdometerConfiguration_uncertainty(self, *args) - - def scaling(self, *args): - return _mscl.OdometerConfiguration_scaling(self, *args) - __swig_destroy__ = _mscl.delete_OdometerConfiguration - -# Register OdometerConfiguration in _mscl: -_mscl.OdometerConfiguration_swigregister(OdometerConfiguration) - -class GpioConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - UNUSED_FEATURE = _mscl.GpioConfiguration_UNUSED_FEATURE - GPIO_FEATURE = _mscl.GpioConfiguration_GPIO_FEATURE - PPS_FEATURE = _mscl.GpioConfiguration_PPS_FEATURE - ENCODER_FEATURE = _mscl.GpioConfiguration_ENCODER_FEATURE - EVENT_TIMESTAMP_FEATURE = _mscl.GpioConfiguration_EVENT_TIMESTAMP_FEATURE - UART_FEATURE = _mscl.GpioConfiguration_UART_FEATURE - GPIO_UNUSED = _mscl.GpioConfiguration_GPIO_UNUSED - GPIO_INPUT = _mscl.GpioConfiguration_GPIO_INPUT - GPIO_OUTPUT_LOW = _mscl.GpioConfiguration_GPIO_OUTPUT_LOW - GPIO_OUTPUT_HIGH = _mscl.GpioConfiguration_GPIO_OUTPUT_HIGH - PPS_UNUSED = _mscl.GpioConfiguration_PPS_UNUSED - PPS_INPUT = _mscl.GpioConfiguration_PPS_INPUT - PPS_OUTPUT = _mscl.GpioConfiguration_PPS_OUTPUT - ENCODER_UNUSED = _mscl.GpioConfiguration_ENCODER_UNUSED - ENCODER_A = _mscl.GpioConfiguration_ENCODER_A - ENCODER_B = _mscl.GpioConfiguration_ENCODER_B - TIMESTAMP_UNUSED = _mscl.GpioConfiguration_TIMESTAMP_UNUSED - TIMESTAMP_RISING = _mscl.GpioConfiguration_TIMESTAMP_RISING - TIMESTAMP_FALLING = _mscl.GpioConfiguration_TIMESTAMP_FALLING - TIMESTAMP_EITHER = _mscl.GpioConfiguration_TIMESTAMP_EITHER - UART_UNUSED = _mscl.GpioConfiguration_UART_UNUSED - UART_PORT2_TX = _mscl.GpioConfiguration_UART_PORT2_TX - UART_PORT2_RX = _mscl.GpioConfiguration_UART_PORT2_RX - UART_PORT3_TX = _mscl.GpioConfiguration_UART_PORT3_TX - UART_PORT3_RX = _mscl.GpioConfiguration_UART_PORT3_RX - NONE = _mscl.GpioConfiguration_NONE - OPEN_DRAIN = _mscl.GpioConfiguration_OPEN_DRAIN - PULLDOWN = _mscl.GpioConfiguration_PULLDOWN - PULLUP = _mscl.GpioConfiguration_PULLUP - pinMode = property(_mscl.GpioConfiguration_pinMode_get, _mscl.GpioConfiguration_pinMode_set) - pin = property(_mscl.GpioConfiguration_pin_get, _mscl.GpioConfiguration_pin_set) - feature = property(_mscl.GpioConfiguration_feature_get, _mscl.GpioConfiguration_feature_set) - behavior = property(_mscl.GpioConfiguration_behavior_get, _mscl.GpioConfiguration_behavior_set) - - def pinModeValue(self, *args): - return _mscl.GpioConfiguration_pinModeValue(self, *args) - - def __init__(self): - _mscl.GpioConfiguration_swiginit(self, _mscl.new_GpioConfiguration()) - __swig_destroy__ = _mscl.delete_GpioConfiguration - -# Register GpioConfiguration in _mscl: -_mscl.GpioConfiguration_swigregister(GpioConfiguration) - -DISABLED = _mscl.DISABLED -ENABLED = _mscl.ENABLED -TEST = _mscl.TEST -TEST_PULSE = _mscl.TEST_PULSE -class EventTriggerGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventTriggerGpioParameter_DISABLED - WHILE_HIGH = _mscl.EventTriggerGpioParameter_WHILE_HIGH - WHILE_LOW = _mscl.EventTriggerGpioParameter_WHILE_LOW - EDGE = _mscl.EventTriggerGpioParameter_EDGE - pin = property(_mscl.EventTriggerGpioParameter_pin_get, _mscl.EventTriggerGpioParameter_pin_set) - mode = property(_mscl.EventTriggerGpioParameter_mode_get, _mscl.EventTriggerGpioParameter_mode_set) - - def __init__(self): - _mscl.EventTriggerGpioParameter_swiginit(self, _mscl.new_EventTriggerGpioParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerGpioParameter - -# Register EventTriggerGpioParameter in _mscl: -_mscl.EventTriggerGpioParameter_swigregister(EventTriggerGpioParameter) - -class EventTriggerThresholdParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - WINDOW_TYPE = _mscl.EventTriggerThresholdParameter_WINDOW_TYPE - INTERVAL_TYPE = _mscl.EventTriggerThresholdParameter_INTERVAL_TYPE - type = property(_mscl.EventTriggerThresholdParameter_type_get, _mscl.EventTriggerThresholdParameter_type_set) - lowThreshold = property(_mscl.EventTriggerThresholdParameter_lowThreshold_get, _mscl.EventTriggerThresholdParameter_lowThreshold_set) - highThreshold = property(_mscl.EventTriggerThresholdParameter_highThreshold_get, _mscl.EventTriggerThresholdParameter_highThreshold_set) - - def channel(self, *args): - return _mscl.EventTriggerThresholdParameter_channel(self, *args) - - def channelField(self): - return _mscl.EventTriggerThresholdParameter_channelField(self) - - def channelQualifier(self): - return _mscl.EventTriggerThresholdParameter_channelQualifier(self) - - def channelIndex(self): - return _mscl.EventTriggerThresholdParameter_channelIndex(self) - - def __init__(self): - _mscl.EventTriggerThresholdParameter_swiginit(self, _mscl.new_EventTriggerThresholdParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerThresholdParameter - -# Register EventTriggerThresholdParameter in _mscl: -_mscl.EventTriggerThresholdParameter_swigregister(EventTriggerThresholdParameter) - -class EventTriggerCombinationParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_INPUT_TRIGGERS = _mscl.EventTriggerCombinationParameter_MAX_INPUT_TRIGGERS - LOGIC_NEVER = _mscl.EventTriggerCombinationParameter_LOGIC_NEVER - LOGIC_ALWAYS = _mscl.EventTriggerCombinationParameter_LOGIC_ALWAYS - LOGIC_NONE = _mscl.EventTriggerCombinationParameter_LOGIC_NONE - LOGIC_OR = _mscl.EventTriggerCombinationParameter_LOGIC_OR - LOGIC_NAND = _mscl.EventTriggerCombinationParameter_LOGIC_NAND - LOGIC_XOR_ONE = _mscl.EventTriggerCombinationParameter_LOGIC_XOR_ONE - LOGIC_ONLY_A = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_A - LOGIC_ONLY_B = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_B - LOGIC_ONLY_C = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_C - LOGIC_ONLY_D = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_D - LOGIC_AND_AB = _mscl.EventTriggerCombinationParameter_LOGIC_AND_AB - LOGIC_AB_OR_C = _mscl.EventTriggerCombinationParameter_LOGIC_AB_OR_C - LOGIC_AND = _mscl.EventTriggerCombinationParameter_LOGIC_AND - logicTable = property(_mscl.EventTriggerCombinationParameter_logicTable_get, _mscl.EventTriggerCombinationParameter_logicTable_set) - inputTriggers = property(_mscl.EventTriggerCombinationParameter_inputTriggers_get, _mscl.EventTriggerCombinationParameter_inputTriggers_set) - - def __init__(self): - _mscl.EventTriggerCombinationParameter_swiginit(self, _mscl.new_EventTriggerCombinationParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerCombinationParameter - -# Register EventTriggerCombinationParameter in _mscl: -_mscl.EventTriggerCombinationParameter_swigregister(EventTriggerCombinationParameter) - -class EventTriggerParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerParameters_swiginit(self, _mscl.new_EventTriggerParameters()) - gpio = property(_mscl.EventTriggerParameters_gpio_get, _mscl.EventTriggerParameters_gpio_set) - threshold = property(_mscl.EventTriggerParameters_threshold_get, _mscl.EventTriggerParameters_threshold_set) - combination = property(_mscl.EventTriggerParameters_combination_get, _mscl.EventTriggerParameters_combination_set) - __swig_destroy__ = _mscl.delete_EventTriggerParameters - -# Register EventTriggerParameters in _mscl: -_mscl.EventTriggerParameters_swigregister(EventTriggerParameters) - -class EventTriggerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventTriggerConfiguration_NONE - GPIO_TRIGGER = _mscl.EventTriggerConfiguration_GPIO_TRIGGER - THRESHOLD_TRIGGER = _mscl.EventTriggerConfiguration_THRESHOLD_TRIGGER - COMBINATION_TRIGGER = _mscl.EventTriggerConfiguration_COMBINATION_TRIGGER - instance = property(_mscl.EventTriggerConfiguration_instance_get, _mscl.EventTriggerConfiguration_instance_set) - trigger = property(_mscl.EventTriggerConfiguration_trigger_get, _mscl.EventTriggerConfiguration_trigger_set) - parameters = property(_mscl.EventTriggerConfiguration_parameters_get, _mscl.EventTriggerConfiguration_parameters_set) - - def __init__(self): - _mscl.EventTriggerConfiguration_swiginit(self, _mscl.new_EventTriggerConfiguration()) - __swig_destroy__ = _mscl.delete_EventTriggerConfiguration - -# Register EventTriggerConfiguration in _mscl: -_mscl.EventTriggerConfiguration_swigregister(EventTriggerConfiguration) - -class EventActionGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventActionGpioParameter_DISABLED - ACTIVE_HIGH = _mscl.EventActionGpioParameter_ACTIVE_HIGH - ACTIVE_LOW = _mscl.EventActionGpioParameter_ACTIVE_LOW - ONESHOT_HIGH = _mscl.EventActionGpioParameter_ONESHOT_HIGH - ONESHOT_LOW = _mscl.EventActionGpioParameter_ONESHOT_LOW - TOGGLE = _mscl.EventActionGpioParameter_TOGGLE - pin = property(_mscl.EventActionGpioParameter_pin_get, _mscl.EventActionGpioParameter_pin_set) - mode = property(_mscl.EventActionGpioParameter_mode_get, _mscl.EventActionGpioParameter_mode_set) - - def __init__(self): - _mscl.EventActionGpioParameter_swiginit(self, _mscl.new_EventActionGpioParameter()) - __swig_destroy__ = _mscl.delete_EventActionGpioParameter - -# Register EventActionGpioParameter in _mscl: -_mscl.EventActionGpioParameter_swigregister(EventActionGpioParameter) - -class EventActionMessageParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_DESCRIPTORS = _mscl.EventActionMessageParameter_MAX_DESCRIPTORS - sampleRate = property(_mscl.EventActionMessageParameter_sampleRate_get, _mscl.EventActionMessageParameter_sampleRate_set) - - def dataClass(self): - return _mscl.EventActionMessageParameter_dataClass(self) - - def setChannelFields(self, dataClass, fields): - return _mscl.EventActionMessageParameter_setChannelFields(self, dataClass, fields) - - def getChannelFields(self): - return _mscl.EventActionMessageParameter_getChannelFields(self) - - def __init__(self): - _mscl.EventActionMessageParameter_swiginit(self, _mscl.new_EventActionMessageParameter()) - __swig_destroy__ = _mscl.delete_EventActionMessageParameter - -# Register EventActionMessageParameter in _mscl: -_mscl.EventActionMessageParameter_swigregister(EventActionMessageParameter) - -class EventActionParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventActionParameters_swiginit(self, _mscl.new_EventActionParameters()) - gpio = property(_mscl.EventActionParameters_gpio_get, _mscl.EventActionParameters_gpio_set) - message = property(_mscl.EventActionParameters_message_get, _mscl.EventActionParameters_message_set) - __swig_destroy__ = _mscl.delete_EventActionParameters - -# Register EventActionParameters in _mscl: -_mscl.EventActionParameters_swigregister(EventActionParameters) - -class EventActionConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventActionConfiguration_NONE - GPIO = _mscl.EventActionConfiguration_GPIO - MESSAGE = _mscl.EventActionConfiguration_MESSAGE - instance = property(_mscl.EventActionConfiguration_instance_get, _mscl.EventActionConfiguration_instance_set) - trigger = property(_mscl.EventActionConfiguration_trigger_get, _mscl.EventActionConfiguration_trigger_set) - type = property(_mscl.EventActionConfiguration_type_get, _mscl.EventActionConfiguration_type_set) - parameters = property(_mscl.EventActionConfiguration_parameters_get, _mscl.EventActionConfiguration_parameters_set) - - def __init__(self): - _mscl.EventActionConfiguration_swiginit(self, _mscl.new_EventActionConfiguration()) - __swig_destroy__ = _mscl.delete_EventActionConfiguration - -# Register EventActionConfiguration in _mscl: -_mscl.EventActionConfiguration_swigregister(EventActionConfiguration) - -class EventTriggerInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTriggerInfo_swiginit(self, _mscl.new_EventTriggerInfo(*args)) - ACTIVE = _mscl.EventTriggerInfo_ACTIVE - ENABLED = _mscl.EventTriggerInfo_ENABLED - TEST = _mscl.EventTriggerInfo_TEST - type = property(_mscl.EventTriggerInfo_type_get, _mscl.EventTriggerInfo_type_set) - instanceId = property(_mscl.EventTriggerInfo_instanceId_get, _mscl.EventTriggerInfo_instanceId_set) - - def isActive(self): - return _mscl.EventTriggerInfo_isActive(self) - - def isEnabled(self): - return _mscl.EventTriggerInfo_isEnabled(self) - - def isTestMode(self): - return _mscl.EventTriggerInfo_isTestMode(self) - - def setStatus(self, value): - return _mscl.EventTriggerInfo_setStatus(self, value) - __swig_destroy__ = _mscl.delete_EventTriggerInfo - -# Register EventTriggerInfo in _mscl: -_mscl.EventTriggerInfo_swigregister(EventTriggerInfo) - -class EventActionInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventActionInfo_swiginit(self, _mscl.new_EventActionInfo(*args)) - type = property(_mscl.EventActionInfo_type_get, _mscl.EventActionInfo_type_set) - triggerId = property(_mscl.EventActionInfo_triggerId_get, _mscl.EventActionInfo_triggerId_set) - instanceId = property(_mscl.EventActionInfo_instanceId_get, _mscl.EventActionInfo_instanceId_set) - __swig_destroy__ = _mscl.delete_EventActionInfo - -# Register EventActionInfo in _mscl: -_mscl.EventActionInfo_swigregister(EventActionInfo) - -class MeasurementReferenceFrame(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MeasurementReferenceFrame_swiginit(self, _mscl.new_MeasurementReferenceFrame(*args)) - - def asMipFieldValues(self): - return _mscl.MeasurementReferenceFrame_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.MeasurementReferenceFrame_appendMipFieldValues(self, appendTo) - - def translation(self, *args): - return _mscl.MeasurementReferenceFrame_translation(self, *args) - - def rotation(self, *args): - return _mscl.MeasurementReferenceFrame_rotation(self, *args) - - def errorTrackingEnabled(self): - return _mscl.MeasurementReferenceFrame_errorTrackingEnabled(self) - - def enableErrorTracking(self, enable=True): - return _mscl.MeasurementReferenceFrame_enableErrorTracking(self, enable) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrame - -# Register MeasurementReferenceFrame in _mscl: -_mscl.MeasurementReferenceFrame_swigregister(MeasurementReferenceFrame) - -class MipChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipChannel_swiginit(self, _mscl.new_MipChannel(*args)) - - def channelField(self): - return _mscl.MipChannel_channelField(self) - - def sampleRate(self): - return _mscl.MipChannel_sampleRate(self) - - def rateDecimation(self, sampleRateBase): - return _mscl.MipChannel_rateDecimation(self, sampleRateBase) - __swig_destroy__ = _mscl.delete_MipChannel - -# Register MipChannel in _mscl: -_mscl.MipChannel_swigregister(MipChannel) - -class MipPacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MIP_ACK_NACK_ERROR_NONE = _mscl.MipPacket_MIP_ACK_NACK_ERROR_NONE - MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND - MIP_ACK_NACK_ERROR_CHECKSUM_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_CHECKSUM_INVALID - MIP_ACK_NACK_ERROR_PARAMETER_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_PARAMETER_INVALID - MIP_ACK_NACK_ERROR_COMMAND_FAILED = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_FAILED - MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT - MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET - - def __init__(self): - _mscl.MipPacket_swiginit(self, _mscl.new_MipPacket()) - - @staticmethod - def isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - - def descriptorSet(self): - return _mscl.MipPacket_descriptorSet(self) - - def payload(self): - return _mscl.MipPacket_payload(self) - __swig_destroy__ = _mscl.delete_MipPacket - -# Register MipPacket in _mscl: -_mscl.MipPacket_swigregister(MipPacket) - -def MipPacket_isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - -class MipDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def field(self): - return _mscl.MipDataPoint_field(self) - - def qualifier(self): - return _mscl.MipDataPoint_qualifier(self) - - def hasAddlIdentifiers(self): - return _mscl.MipDataPoint_hasAddlIdentifiers(self) - - def addlIdentifiers(self): - return _mscl.MipDataPoint_addlIdentifiers(self) - - def hasValidFlag(self): - return _mscl.MipDataPoint_hasValidFlag(self) - - def valid(self): - return _mscl.MipDataPoint_valid(self) - - def channelName(self, includeAddlIds=True, consolidatedFormat=False): - return _mscl.MipDataPoint_channelName(self, includeAddlIds, consolidatedFormat) - __swig_destroy__ = _mscl.delete_MipDataPoint - -# Register MipDataPoint in _mscl: -_mscl.MipDataPoint_swigregister(MipDataPoint) - -class ContinuousBIT(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def as_MipDataPoints(self): - return _mscl.ContinuousBIT_as_MipDataPoints(self) - - @staticmethod - def getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - - def data(self): - return _mscl.ContinuousBIT_data(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_bufferOverrun(self) - - def imuClockFault(self): - return _mscl.ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_pressureSelfTestFail(self) - - def filterTimingOverrun(self): - return _mscl.ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.ContinuousBIT_filterTimingUnderrun(self) - -# Register ContinuousBIT in _mscl: -_mscl.ContinuousBIT_swigregister(ContinuousBIT) - -def ContinuousBIT_getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - -class ContinuousBIT_System_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - SYSTEM_CLOCK_FAILURE = _mscl.ContinuousBIT_System_General_SYSTEM_CLOCK_FAILURE - POWER_FAULT = _mscl.ContinuousBIT_System_General_POWER_FAULT - FIRMWARE_FAULT = _mscl.ContinuousBIT_System_General_FIRMWARE_FAULT - TIMING_OVERLOAD = _mscl.ContinuousBIT_System_General_TIMING_OVERLOAD - BUFFER_OVERRUN = _mscl.ContinuousBIT_System_General_BUFFER_OVERRUN - - def flags(self): - return _mscl.ContinuousBIT_System_General_flags(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_System_General_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_System_General_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_System_General_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_System_General_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_System_General_bufferOverrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_General - -# Register ContinuousBIT_System_General in _mscl: -_mscl.ContinuousBIT_System_General_swigregister(ContinuousBIT_System_General) - -class ContinuousBIT_System_Process(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def flags(self): - return _mscl.ContinuousBIT_System_Process_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_Process - -# Register ContinuousBIT_System_Process in _mscl: -_mscl.ContinuousBIT_System_Process_swigregister(ContinuousBIT_System_Process) - -class ContinuousBIT_System(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_System_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_System_GENERAL_FLAGS - PROCESS_FLAGS = _mscl.ContinuousBIT_System_PROCESS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_System_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System - -# Register ContinuousBIT_System in _mscl: -_mscl.ContinuousBIT_System_swigregister(ContinuousBIT_System) - -class ContinuousBIT_IMU_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - CLOCK_FAULT = _mscl.ContinuousBIT_IMU_General_CLOCK_FAULT - COMMUNICATION_FAULT = _mscl.ContinuousBIT_IMU_General_COMMUNICATION_FAULT - TIMING_OVERRUN = _mscl.ContinuousBIT_IMU_General_TIMING_OVERRUN - CALIBRATION_ERROR_ACCEL = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_ACCEL - CALIBRATION_ERROR_GYRO = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_GYRO - CALIBRATION_ERROR_MAG = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_MAG - - def flags(self): - return _mscl.ContinuousBIT_IMU_General_flags(self) - - def clockFault(self): - return _mscl.ContinuousBIT_IMU_General_clockFault(self) - - def communicationFault(self): - return _mscl.ContinuousBIT_IMU_General_communicationFault(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_IMU_General_timingOverrun(self) - - def calibrationErrorAccel(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorAccel(self) - - def calibrationErrorGyro(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorGyro(self) - - def calibrationErrorMag(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorMag(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_General - -# Register ContinuousBIT_IMU_General in _mscl: -_mscl.ContinuousBIT_IMU_General_swigregister(ContinuousBIT_IMU_General) - -class ContinuousBIT_IMU_Sensors(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - ACCEL_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_GENERAL_FAULT - ACCEL_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_OVERRANGE - ACCEL_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_SELF_TEST_FAIL - GYRO_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_GYRO_GENERAL_FAULT - GYRO_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_GYRO_OVERRANGE - GYRO_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_GYRO_SELF_TEST_FAIL - MAG_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_MAG_GENERAL_FAULT - MAG_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_MAG_OVERRANGE - MAG_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_MAG_SELF_TEST_FAIL - PRESSURE_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_GENERAL_FAULT - PRESSURE_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_OVERRANGE - PRESSURE_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_SELF_TEST_FAIL - - def flags(self): - return _mscl.ContinuousBIT_IMU_Sensors_flags(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureSelfTestFail(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_Sensors - -# Register ContinuousBIT_IMU_Sensors in _mscl: -_mscl.ContinuousBIT_IMU_Sensors_swigregister(ContinuousBIT_IMU_Sensors) - -class ContinuousBIT_IMU(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_IMU_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_IMU_GENERAL_FLAGS - SENSORS_FLAGS = _mscl.ContinuousBIT_IMU_SENSORS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_IMU_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU - -# Register ContinuousBIT_IMU in _mscl: -_mscl.ContinuousBIT_IMU_swigregister(ContinuousBIT_IMU) - -class ContinuousBIT_Filter_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - TIMING_OVERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_OVERRUN - TIMING_UNDERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_UNDERRUN - - def flags(self): - return _mscl.ContinuousBIT_Filter_General_flags(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_Filter_General_timingOverrun(self) - - def timingUnderrun(self): - return _mscl.ContinuousBIT_Filter_General_timingUnderrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter_General - -# Register ContinuousBIT_Filter_General in _mscl: -_mscl.ContinuousBIT_Filter_General_swigregister(ContinuousBIT_Filter_General) - -class ContinuousBIT_Filter(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_Filter_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_Filter_GENERAL_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_Filter_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter - -# Register ContinuousBIT_Filter in _mscl: -_mscl.ContinuousBIT_Filter_swigregister(ContinuousBIT_Filter) - -class CV7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_General_swiginit(self, _mscl.new_CV7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_General - -# Register CV7ContinuousBIT_System_General in _mscl: -_mscl.CV7ContinuousBIT_System_General_swigregister(CV7ContinuousBIT_System_General) - -class CV7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_Process_swiginit(self, _mscl.new_CV7ContinuousBIT_System_Process(*args)) - IMU_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_IMU_PROCESS_FAULT - IMU_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_IMU_RATE_MISMATCH - IMU_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_IMU_DROPPED_DATA - IMU_STUCK = _mscl.CV7ContinuousBIT_System_Process_IMU_STUCK - FILTER_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_FILTER_PROCESS_FAULT - FILTER_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_FILTER_DROPPED_DATA - FILTER_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_FILTER_RATE_MISMATCH - FILTER_STUCK = _mscl.CV7ContinuousBIT_System_Process_FILTER_STUCK - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_filterStuck(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_Process - -# Register CV7ContinuousBIT_System_Process in _mscl: -_mscl.CV7ContinuousBIT_System_Process_swigregister(CV7ContinuousBIT_System_Process) - -class CV7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_swiginit(self, _mscl.new_CV7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.CV7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System - -# Register CV7ContinuousBIT_System in _mscl: -_mscl.CV7ContinuousBIT_System_swigregister(CV7ContinuousBIT_System) - -class CV7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_General - -# Register CV7ContinuousBIT_IMU_General in _mscl: -_mscl.CV7ContinuousBIT_IMU_General_swigregister(CV7ContinuousBIT_IMU_General) - -class CV7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_Sensors - -# Register CV7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.CV7ContinuousBIT_IMU_Sensors_swigregister(CV7ContinuousBIT_IMU_Sensors) - -class CV7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU(*args)) - FACTORY_BITS_INVALID = _mscl.CV7ContinuousBIT_IMU_FACTORY_BITS_INVALID - - def general(self): - return _mscl.CV7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.CV7ContinuousBIT_IMU_sensors(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_IMU_factoryBitsInvalid(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU - -# Register CV7ContinuousBIT_IMU in _mscl: -_mscl.CV7ContinuousBIT_IMU_swigregister(CV7ContinuousBIT_IMU) - -class CV7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter_General(*args)) - FAULT = _mscl.CV7ContinuousBIT_Filter_General_FAULT - - def fault(self): - return _mscl.CV7ContinuousBIT_Filter_General_fault(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter_General - -# Register CV7ContinuousBIT_Filter_General in _mscl: -_mscl.CV7ContinuousBIT_Filter_General_swigregister(CV7ContinuousBIT_Filter_General) - -class CV7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter - -# Register CV7ContinuousBIT_Filter in _mscl: -_mscl.CV7ContinuousBIT_Filter_swigregister(CV7ContinuousBIT_Filter) - -class CV7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.CV7ContinuousBIT_swiginit(self, _mscl.new_CV7ContinuousBIT(bytes)) - - def system(self): - return _mscl.CV7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.CV7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.CV7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.CV7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.CV7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.CV7ContinuousBIT_bufferOverrun(self) - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_filterStuck(self) - - def imu(self): - return _mscl.CV7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.CV7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.CV7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.CV7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.CV7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.CV7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.CV7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.CV7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.CV7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.CV7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.CV7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.CV7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.CV7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.CV7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.CV7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.CV7ContinuousBIT_pressureSelfTestFail(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_factoryBitsInvalid(self) - - def filter(self): - return _mscl.CV7ContinuousBIT_filter(self) - - def filterFault(self): - return _mscl.CV7ContinuousBIT_filterFault(self) - - def filterTimingOverrun(self): - return _mscl.CV7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.CV7ContinuousBIT_filterTimingUnderrun(self) - - def as_MipDataPoints(self): - return _mscl.CV7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT - -# Register CV7ContinuousBIT in _mscl: -_mscl.CV7ContinuousBIT_swigregister(CV7ContinuousBIT) - -class GQ7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_General - -# Register GQ7ContinuousBIT_System_General in _mscl: -_mscl.GQ7ContinuousBIT_System_General_swigregister(GQ7ContinuousBIT_System_General) - -class GQ7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_Process_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_Process(*args)) - IMU_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_CONTROL_LINE_FAULT - IMU_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_COMMAND_RESPONSE_FAULT - IMU_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_SPI_TRANSFER_FAULT - IMU_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_DATA_FRAME_FAULT - FILTER_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_CONTROL_LINE_FAULT - FILTER_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_COMMAND_RESPONSE_FAULT - FILTER_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_SPI_TRANSFER_FAULT - FILTER_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_DATA_FRAME_FAULT - GNSS_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_CONTROL_LINE_FAULT - GNSS_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_COMMAND_RESPONSE_FAULT - GNSS_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_SPI_TRANSFER_FAULT - GNSS_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_DATA_FRAME_FAULT - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssDataFrameFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_Process - -# Register GQ7ContinuousBIT_System_Process in _mscl: -_mscl.GQ7ContinuousBIT_System_Process_swigregister(GQ7ContinuousBIT_System_Process) - -class GQ7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_swiginit(self, _mscl.new_GQ7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.GQ7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System - -# Register GQ7ContinuousBIT_System in _mscl: -_mscl.GQ7ContinuousBIT_System_swigregister(GQ7ContinuousBIT_System) - -class GQ7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_General - -# Register GQ7ContinuousBIT_IMU_General in _mscl: -_mscl.GQ7ContinuousBIT_IMU_General_swigregister(GQ7ContinuousBIT_IMU_General) - -class GQ7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_Sensors - -# Register GQ7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.GQ7ContinuousBIT_IMU_Sensors_swigregister(GQ7ContinuousBIT_IMU_Sensors) - -class GQ7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.GQ7ContinuousBIT_IMU_sensors(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU - -# Register GQ7ContinuousBIT_IMU in _mscl: -_mscl.GQ7ContinuousBIT_IMU_swigregister(GQ7ContinuousBIT_IMU) - -class GQ7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_HARDWARE_FAULT - COMMUNICATION_ERROR_IMU_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_IMU_SPI - COMMUNICATION_ERROR_GNSS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_GNSS_SPI - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_COMMS_UART = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_UART - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationError(self) - - def communicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorImuSpi(self) - - def communicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorGnssSpi(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsSpi(self) - - def communicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsUart(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter_General - -# Register GQ7ContinuousBIT_Filter_General in _mscl: -_mscl.GQ7ContinuousBIT_Filter_General_swigregister(GQ7ContinuousBIT_Filter_General) - -class GQ7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter - -# Register GQ7ContinuousBIT_Filter in _mscl: -_mscl.GQ7ContinuousBIT_Filter_swigregister(GQ7ContinuousBIT_Filter) - -class GQ7ContinuousBIT_GNSS_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_HARDWARE_FAULT - COMMUNICATION_ERROR_COMMS_SERIAL = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SERIAL - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_NAV_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_NAV_SPI - GPS_TIME_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_GPS_TIME_FAULT - TIMING_OVERRUN = _mscl.GQ7ContinuousBIT_GNSS_General_TIMING_OVERRUN - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_flags(self) - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationError(self) - - def communicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSerial(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSpi(self) - - def communicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_gpsTimeFault(self) - - def timingOverrun(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_timingOverrun(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_General - -# Register GQ7ContinuousBIT_GNSS_General in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_General_swigregister(GQ7ContinuousBIT_GNSS_General) - -class GQ7ContinuousBIT_GNSS_Receivers(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_Receivers_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_Receivers(*args)) - POWER_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_1 - FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_1 - SHORTED_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_1 - OPEN_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_1 - SOLUTION_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_1 - POWER_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_2 - FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_2 - SHORTED_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_2 - OPEN_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_2 - SOLUTION_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_2 - RTCM_COMMUNICATION_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTCM_COMMUNICATION_FAULT - RTK_DONGLE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTK_DONGLE_FAULT - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_flags(self) - - def powerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver1(self) - - def faultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver1(self) - - def shortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna1(self) - - def openAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna1(self) - - def solutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver1(self) - - def powerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver2(self) - - def faultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver2(self) - - def shortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna2(self) - - def openAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna2(self) - - def solutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtkDongleFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_Receivers - -# Register GQ7ContinuousBIT_GNSS_Receivers in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_Receivers_swigregister(GQ7ContinuousBIT_GNSS_Receivers) - -class GQ7ContinuousBIT_GNSS(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS(*args)) - RESPONSE_OFFSET = _mscl.GQ7ContinuousBIT_GNSS_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_GENERAL_FLAGS - RECEIVERS_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_RECEIVERS_FLAGS - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_flags(self) - - def general(self): - return _mscl.GQ7ContinuousBIT_GNSS_general(self) - - def receivers(self): - return _mscl.GQ7ContinuousBIT_GNSS_receivers(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS - -# Register GQ7ContinuousBIT_GNSS in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_swigregister(GQ7ContinuousBIT_GNSS) - -class GQ7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.GQ7ContinuousBIT_swiginit(self, _mscl.new_GQ7ContinuousBIT(bytes)) - - def system(self): - return _mscl.GQ7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.GQ7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.GQ7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.GQ7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.GQ7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.GQ7ContinuousBIT_bufferOverrun(self) - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_gnssDataFrameFault(self) - - def imu(self): - return _mscl.GQ7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.GQ7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.GQ7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.GQ7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.GQ7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.GQ7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.GQ7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.GQ7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.GQ7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.GQ7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_pressureSelfTestFail(self) - - def filter(self): - return _mscl.GQ7ContinuousBIT_filter(self) - - def filterClockFault(self): - return _mscl.GQ7ContinuousBIT_filterClockFault(self) - - def filterHardwareFault(self): - return _mscl.GQ7ContinuousBIT_filterHardwareFault(self) - - def filterTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingUnderrun(self) - - def filterCommunicationError(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationError(self) - - def filterCommunicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorImuSpi(self) - - def filterCommunicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorGnssSpi(self) - - def filterCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsSpi(self) - - def filterCommunicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsUart(self) - - def gnss(self): - return _mscl.GQ7ContinuousBIT_gnss(self) - - def gnssClockFault(self): - return _mscl.GQ7ContinuousBIT_gnssClockFault(self) - - def gnssHardwareFault(self): - return _mscl.GQ7ContinuousBIT_gnssHardwareFault(self) - - def gnssCommunicationError(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationError(self) - - def gnssCommunicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSerial(self) - - def gnssCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSpi(self) - - def gnssCommunicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_gpsTimeFault(self) - - def gnssTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_gnssTimingOverrun(self) - - def gnssPowerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver1(self) - - def gnssFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver1(self) - - def gnssShortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna1(self) - - def gnssOpenAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna1(self) - - def gnssSolutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver1(self) - - def gnssPowerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver2(self) - - def gnssFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver2(self) - - def gnssShortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna2(self) - - def gnssOpenAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna2(self) - - def gnssSolutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_rtkDongleFault(self) - - def as_MipDataPoints(self): - return _mscl.GQ7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT - -# Register GQ7ContinuousBIT in _mscl: -_mscl.GQ7ContinuousBIT_swigregister(GQ7ContinuousBIT) - -class MipSharedDataFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EVENT_SOURCE_NONE = _mscl.MipSharedDataFields_EVENT_SOURCE_NONE - EVENT_SOURCE_UNKNOWN = _mscl.MipSharedDataFields_EVENT_SOURCE_UNKNOWN - - def __init__(self): - _mscl.MipSharedDataFields_swiginit(self, _mscl.new_MipSharedDataFields()) - - def hasEventSource(self): - return _mscl.MipSharedDataFields_hasEventSource(self) - - def eventSource(self): - return _mscl.MipSharedDataFields_eventSource(self) - - def hasTicks(self): - return _mscl.MipSharedDataFields_hasTicks(self) - - def ticks(self): - return _mscl.MipSharedDataFields_ticks(self) - - def hasDeltaTicks(self): - return _mscl.MipSharedDataFields_hasDeltaTicks(self) - - def deltaTicks(self): - return _mscl.MipSharedDataFields_deltaTicks(self) - - def hasGpsTimestamp(self): - return _mscl.MipSharedDataFields_hasGpsTimestamp(self) - - def gpsTimestamp(self): - return _mscl.MipSharedDataFields_gpsTimestamp(self) - - def gpsTimestampValid(self): - return _mscl.MipSharedDataFields_gpsTimestampValid(self) - - def hasDeltaTime(self): - return _mscl.MipSharedDataFields_hasDeltaTime(self) - - def deltaTime(self): - return _mscl.MipSharedDataFields_deltaTime(self) - - def hasReferenceTime(self): - return _mscl.MipSharedDataFields_hasReferenceTime(self) - - def referenceTime(self): - return _mscl.MipSharedDataFields_referenceTime(self) - - def hasDeltaReferenceTime(self): - return _mscl.MipSharedDataFields_hasDeltaReferenceTime(self) - - def deltaReferenceTime(self): - return _mscl.MipSharedDataFields_deltaReferenceTime(self) - - def hasExternalTimestamp(self): - return _mscl.MipSharedDataFields_hasExternalTimestamp(self) - - def externalTimestamp(self): - return _mscl.MipSharedDataFields_externalTimestamp(self) - - def externalTimestampValid(self): - return _mscl.MipSharedDataFields_externalTimestampValid(self) - - def hasDeltaExternalTime(self): - return _mscl.MipSharedDataFields_hasDeltaExternalTime(self) - - def deltaExternalTime(self): - return _mscl.MipSharedDataFields_deltaExternalTime(self) - - def deltaExternalTimeValid(self): - return _mscl.MipSharedDataFields_deltaExternalTimeValid(self) - - def get(self, *args): - return _mscl.MipSharedDataFields_get(self, *args) - __swig_destroy__ = _mscl.delete_MipSharedDataFields - -# Register MipSharedDataFields in _mscl: -_mscl.MipSharedDataFields_swigregister(MipSharedDataFields) - -class MipDataPacket(MipPacket): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipDataPacket_swiginit(self, _mscl.new_MipDataPacket(*args)) - - def data(self): - return _mscl.MipDataPacket_data(self) - - def shared(self): - return _mscl.MipDataPacket_shared(self) - - def collectedTimestamp(self): - return _mscl.MipDataPacket_collectedTimestamp(self) - - def deviceTimestamp(self): - return _mscl.MipDataPacket_deviceTimestamp(self) - - def hasDeviceTime(self): - return _mscl.MipDataPacket_hasDeviceTime(self) - - def deviceTimeValid(self): - return _mscl.MipDataPacket_deviceTimeValid(self) - - def deviceTimeFlags(self): - return _mscl.MipDataPacket_deviceTimeFlags(self) - __swig_destroy__ = _mscl.delete_MipDataPacket - -# Register MipDataPacket in _mscl: -_mscl.MipDataPacket_swigregister(MipDataPacket) - -class RawBytePacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INVALID_PACKET = _mscl.RawBytePacket_INVALID_PACKET - DATA_PACKET = _mscl.RawBytePacket_DATA_PACKET - COMMAND_PACKET = _mscl.RawBytePacket_COMMAND_PACKET - NO_PACKET_FOUND = _mscl.RawBytePacket_NO_PACKET_FOUND - FROM_READ = _mscl.RawBytePacket_FROM_READ - FROM_SEND = _mscl.RawBytePacket_FROM_SEND - - def __init__(self): - _mscl.RawBytePacket_swiginit(self, _mscl.new_RawBytePacket()) - - def type(self, *args): - return _mscl.RawBytePacket_type(self, *args) - - def source(self, *args): - return _mscl.RawBytePacket_source(self, *args) - - def payload(self, *args): - return _mscl.RawBytePacket_payload(self, *args) - __swig_destroy__ = _mscl.delete_RawBytePacket - -# Register RawBytePacket in _mscl: -_mscl.RawBytePacket_swigregister(RawBytePacket) - -class MipNodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_MipNodeFeatures - - @staticmethod - def isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - - def supportsCategory(self, dataClass): - return _mscl.MipNodeFeatures_supportsCategory(self, dataClass) - - def supportsCommand(self, commandId): - return _mscl.MipNodeFeatures_supportsCommand(self, commandId) - - def supportedCommands(self): - return _mscl.MipNodeFeatures_supportedCommands(self) - - def supportsChannelField(self, fieldId): - return _mscl.MipNodeFeatures_supportsChannelField(self, fieldId) - - def filterSupportedChannelFields(self, fields): - return _mscl.MipNodeFeatures_filterSupportedChannelFields(self, fields) - - def supportedChannelFields(self, *args): - return _mscl.MipNodeFeatures_supportedChannelFields(self, *args) - - def supportedSampleRates(self, dataClass): - return _mscl.MipNodeFeatures_supportedSampleRates(self, dataClass) - - def baseDataRate(self, dataClass): - return _mscl.MipNodeFeatures_baseDataRate(self, dataClass) - - def gnssReceiverInfo(self): - return _mscl.MipNodeFeatures_gnssReceiverInfo(self) - - def supportedGnssSources(self): - return _mscl.MipNodeFeatures_supportedGnssSources(self) - - def supportedSensorRanges(self, *args): - return _mscl.MipNodeFeatures_supportedSensorRanges(self, *args) - - def getCommPortInfo(self): - return _mscl.MipNodeFeatures_getCommPortInfo(self) - - def useLegacyIdsForEnableDataStream(self): - return _mscl.MipNodeFeatures_useLegacyIdsForEnableDataStream(self) - - def supportedHeadingUpdateOptions(self): - return _mscl.MipNodeFeatures_supportedHeadingUpdateOptions(self) - - def supportedHeadingAlignmentMethods(self): - return _mscl.MipNodeFeatures_supportedHeadingAlignmentMethods(self) - - def supportedStatusSelectors(self): - return _mscl.MipNodeFeatures_supportedStatusSelectors(self) - - def supportedEstimationControlOptions(self): - return _mscl.MipNodeFeatures_supportedEstimationControlOptions(self) - - def supportedVehicleModeTypes(self): - return _mscl.MipNodeFeatures_supportedVehicleModeTypes(self) - - def supportedAdaptiveMeasurementModes(self): - return _mscl.MipNodeFeatures_supportedAdaptiveMeasurementModes(self) - - def supportedAdaptiveFilterLevels(self): - return _mscl.MipNodeFeatures_supportedAdaptiveFilterLevels(self) - - def supportedAidingMeasurementOptions(self): - return _mscl.MipNodeFeatures_supportedAidingMeasurementOptions(self) - - def supportedPpsSourceOptions(self): - return _mscl.MipNodeFeatures_supportedPpsSourceOptions(self) - - def supportedGpioPins(self): - return _mscl.MipNodeFeatures_supportedGpioPins(self) - - def supportedGpioPinModes(self, feature, behavior): - return _mscl.MipNodeFeatures_supportedGpioPinModes(self, feature, behavior) - - def supportedGpioBehaviors(self, feature, pin): - return _mscl.MipNodeFeatures_supportedGpioBehaviors(self, feature, pin) - - def supportedGpioFeatures(self, pin): - return _mscl.MipNodeFeatures_supportedGpioFeatures(self, pin) - - def supportedGpioConfigurations(self): - return _mscl.MipNodeFeatures_supportedGpioConfigurations(self) - - def supportedGnssSignalConfigurations(self): - return _mscl.MipNodeFeatures_supportedGnssSignalConfigurations(self) - - def supportedDeclinationSources(self): - return _mscl.MipNodeFeatures_supportedDeclinationSources(self) - - def supportedInclinationSources(self): - return _mscl.MipNodeFeatures_supportedInclinationSources(self) - - def supportedMagneticMagnitudeSources(self): - return _mscl.MipNodeFeatures_supportedMagneticMagnitudeSources(self) - - def supportedEventThresholdChannels(self): - return _mscl.MipNodeFeatures_supportedEventThresholdChannels(self) - - def supportedEventActionInfo(self): - return _mscl.MipNodeFeatures_supportedEventActionInfo(self) - - def supportedEventTriggerInfo(self): - return _mscl.MipNodeFeatures_supportedEventTriggerInfo(self) - - def supportsNorthCompensation(self): - return _mscl.MipNodeFeatures_supportsNorthCompensation(self) - - def supportedLowPassFilterChannelFields(self): - return _mscl.MipNodeFeatures_supportedLowPassFilterChannelFields(self) - - def maxMeasurementReferenceFrameId(self): - return _mscl.MipNodeFeatures_maxMeasurementReferenceFrameId(self) - -# Register MipNodeFeatures in _mscl: -_mscl.MipNodeFeatures_swigregister(MipNodeFeatures) - -def MipNodeFeatures_isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - -class MipNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.MipNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - def getConfigCommandBytes(self): - return _mscl.MipNode_getConfigCommandBytes(self) - - def sendCommandBytes(self, *args): - return _mscl.MipNode_sendCommandBytes(self, *args) - - @staticmethod - def deviceName(serial): - return _mscl.MipNode_deviceName(serial) - - def connection(self): - return _mscl.MipNode_connection(self) - - def features(self): - return _mscl.MipNode_features(self) - - def clearDeviceInfo(self): - return _mscl.MipNode_clearDeviceInfo(self) - - def lastCommunicationTime(self): - return _mscl.MipNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.MipNode_lastDeviceState(self) - - def setLastDeviceState(self, state): - return _mscl.MipNode_setLastDeviceState(self, state) - - def firmwareVersion(self): - return _mscl.MipNode_firmwareVersion(self) - - def model(self): - return _mscl.MipNode_model(self) - - def modelName(self): - return _mscl.MipNode_modelName(self) - - def modelNumber(self): - return _mscl.MipNode_modelNumber(self) - - def serialNumber(self): - return _mscl.MipNode_serialNumber(self) - - def lotNumber(self): - return _mscl.MipNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.MipNode_deviceOptions(self) - - def timeout(self, *args): - return _mscl.MipNode_timeout(self, *args) - - def name(self): - return _mscl.MipNode_name(self) - - def ping(self): - return _mscl.MipNode_ping(self) - - def setToIdle(self): - return _mscl.MipNode_setToIdle(self) - - def cyclePower(self): - return _mscl.MipNode_cyclePower(self) - - def resume(self): - return _mscl.MipNode_resume(self) - - def getCommunicationMode(self): - return _mscl.MipNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.MipNode_setCommunicationMode(self, communicationMode) - - def saveSettingsAsStartup(self, *args): - return _mscl.MipNode_saveSettingsAsStartup(self, *args) - - def loadStartupSettings(self, *args): - return _mscl.MipNode_loadStartupSettings(self, *args) - - def loadFactoryDefaultSettings(self, *args): - return _mscl.MipNode_loadFactoryDefaultSettings(self, *args) - - def setUARTBaudRate(self, *args): - return _mscl.MipNode_setUARTBaudRate(self, *args) - - def getUARTBaudRate(self, portId=1): - return _mscl.MipNode_getUARTBaudRate(self, portId) - - def getRawBytePackets(self, timeout=0, maxPackets=0): - return _mscl.MipNode_getRawBytePackets(self, timeout, maxPackets) - -# Register MipNode in _mscl: -_mscl.MipNode_swigregister(MipNode) - -def MipNode_deviceName(serial): - return _mscl.MipNode_deviceName(serial) - -class InertialNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.InertialNode_swiginit(self, _mscl.new_InertialNode(connection)) - __swig_destroy__ = _mscl.delete_InertialNode - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.InertialNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.InertialNode_totalPackets(self) - - def pollData(self, *args): - return _mscl.InertialNode_pollData(self, *args) - - def getDataRateBase(self, dataClass): - return _mscl.InertialNode_getDataRateBase(self, dataClass) - - def getActiveChannelFields(self, dataClass): - return _mscl.InertialNode_getActiveChannelFields(self, dataClass) - - def setActiveChannelFields(self, dataClass, channels): - return _mscl.InertialNode_setActiveChannelFields(self, dataClass, channels) - - def saveActiveChannelFields(self, dataClass): - return _mscl.InertialNode_saveActiveChannelFields(self, dataClass) - - def setFactoryStreamingChannels(self, option): - return _mscl.InertialNode_setFactoryStreamingChannels(self, option) - - def getInterfaceControl(self, interfaceId): - return _mscl.InertialNode_getInterfaceControl(self, interfaceId) - - def setInterfaceControl(self, *args): - return _mscl.InertialNode_setInterfaceControl(self, *args) - - def getCommunicationMode(self): - return _mscl.InertialNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.InertialNode_setCommunicationMode(self, communicationMode) - - def isDataStreamEnabled(self, dataClass): - return _mscl.InertialNode_isDataStreamEnabled(self, dataClass) - - def enableDataStream(self, dataClass, enable=True, resumeStreaming=True): - return _mscl.InertialNode_enableDataStream(self, dataClass, enable, resumeStreaming) - - def resetFilter(self): - return _mscl.InertialNode_resetFilter(self) - - def runFilter(self): - return _mscl.InertialNode_runFilter(self) - - def getAutoInitialization(self): - return _mscl.InertialNode_getAutoInitialization(self) - - def setAutoInitialization(self, enable): - return _mscl.InertialNode_setAutoInitialization(self, enable) - - def getAltitudeAid(self): - return _mscl.InertialNode_getAltitudeAid(self) - - def setAltitudeAid(self, enable): - return _mscl.InertialNode_setAltitudeAid(self, enable) - - def getPitchRollAid(self): - return _mscl.InertialNode_getPitchRollAid(self) - - def setPitchRollAid(self, enable): - return _mscl.InertialNode_setPitchRollAid(self, enable) - - def enableVerticalGyroConstraint(self, enable): - return _mscl.InertialNode_enableVerticalGyroConstraint(self, enable) - - def verticalGyroConstraintEnabled(self): - return _mscl.InertialNode_verticalGyroConstraintEnabled(self) - - def enableWheeledVehicleConstraint(self, enable): - return _mscl.InertialNode_enableWheeledVehicleConstraint(self, enable) - - def wheeledVehicleConstraintEnabled(self): - return _mscl.InertialNode_wheeledVehicleConstraintEnabled(self) - - def setVelocityZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setVelocityZUPT(self, ZUPTSettings) - - def getVelocityZUPT(self): - return _mscl.InertialNode_getVelocityZUPT(self) - - def setAngularRateZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setAngularRateZUPT(self, ZUPTSettings) - - def getAngularRateZUPT(self): - return _mscl.InertialNode_getAngularRateZUPT(self) - - def cmdedVelZUPT(self): - return _mscl.InertialNode_cmdedVelZUPT(self) - - def cmdedAngRateZUPT(self): - return _mscl.InertialNode_cmdedAngRateZUPT(self) - - def setInitialAttitude(self, attitude): - return _mscl.InertialNode_setInitialAttitude(self, attitude) - - def setInitialHeading(self, heading): - return _mscl.InertialNode_setInitialHeading(self, heading) - - def getInitialFilterConfiguration(self): - return _mscl.InertialNode_getInitialFilterConfiguration(self) - - def setInitialFilterConfiguration(self, filterConfig): - return _mscl.InertialNode_setInitialFilterConfiguration(self, filterConfig) - - def getSensorToVehicleRotation_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleRotation_eulerAngles(self) - - def setSensorToVehicleRotation_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleRotation_eulerAngles(self, angles) - - def getSensorToVehicleRotation_matrix(self): - return _mscl.InertialNode_getSensorToVehicleRotation_matrix(self) - - def setSensorToVehicleRotation_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleRotation_matrix(self, dcm) - - def getSensorToVehicleRotation_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleRotation_quaternion(self) - - def setSensorToVehicleRotation_quaternion(self, rotation): - return _mscl.InertialNode_setSensorToVehicleRotation_quaternion(self, rotation) - - def getSensorToVehicleTransform_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleTransform_eulerAngles(self) - - def setSensorToVehicleTransform_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleTransform_eulerAngles(self, angles) - - def getSensorToVehicleTransform_matrix(self): - return _mscl.InertialNode_getSensorToVehicleTransform_matrix(self) - - def setSensorToVehicleTransform_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleTransform_matrix(self, dcm) - - def getSensorToVehicleTransform_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleTransform_quaternion(self) - - def setSensorToVehicleTransform_quaternion(self, transformation): - return _mscl.InertialNode_setSensorToVehicleTransform_quaternion(self, transformation) - - def getSensorToVehicleOffset(self): - return _mscl.InertialNode_getSensorToVehicleOffset(self) - - def setSensorToVehicleOffset(self, offset): - return _mscl.InertialNode_setSensorToVehicleOffset(self, offset) - - def getAntennaOffset(self): - return _mscl.InertialNode_getAntennaOffset(self) - - def setAntennaOffset(self, offset): - return _mscl.InertialNode_setAntennaOffset(self, offset) - - def getGNSSAssistedFixControl(self): - return _mscl.InertialNode_getGNSSAssistedFixControl(self) - - def setGNSSAssistedFixControl(self, enableAssistedFix): - return _mscl.InertialNode_setGNSSAssistedFixControl(self, enableAssistedFix) - - def getGNSSAssistTimeUpdate(self): - return _mscl.InertialNode_getGNSSAssistTimeUpdate(self) - - def setGNSSAssistTimeUpdate(self, timeUpdate): - return _mscl.InertialNode_setGNSSAssistTimeUpdate(self, timeUpdate) - - def getGPSTimeUpdate(self, timeFrame): - return _mscl.InertialNode_getGPSTimeUpdate(self, timeFrame) - - def setGPSTimeUpdate(self, arg2, timeData): - return _mscl.InertialNode_setGPSTimeUpdate(self, arg2, timeData) - - def setConstellationSettings(self, dataToUse): - return _mscl.InertialNode_setConstellationSettings(self, dataToUse) - - def getConstellationSettings(self): - return _mscl.InertialNode_getConstellationSettings(self) - - def setSBASSettings(self, dataToUse): - return _mscl.InertialNode_setSBASSettings(self, dataToUse) - - def getSBASSettings(self): - return _mscl.InertialNode_getSBASSettings(self) - - def setAccelerometerBias(self, biasVector): - return _mscl.InertialNode_setAccelerometerBias(self, biasVector) - - def getAccelerometerBias(self): - return _mscl.InertialNode_getAccelerometerBias(self) - - def setGyroBias(self, biasVector): - return _mscl.InertialNode_setGyroBias(self, biasVector) - - def getGyroBias(self): - return _mscl.InertialNode_getGyroBias(self) - - def captureGyroBias(self, samplingTime): - return _mscl.InertialNode_captureGyroBias(self, samplingTime) - - def findMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_findMagnetometerCaptureAutoCalibration(self) - - def saveMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_saveMagnetometerCaptureAutoCalibration(self) - - def setMagnetometerSoftIronMatrix(self, matrix): - return _mscl.InertialNode_setMagnetometerSoftIronMatrix(self, matrix) - - def getMagnetometerSoftIronMatrix(self): - return _mscl.InertialNode_getMagnetometerSoftIronMatrix(self) - - def setMagnetometerHardIronOffset(self, offsetVector): - return _mscl.InertialNode_setMagnetometerHardIronOffset(self, offsetVector) - - def getMagnetometerHardIronOffset(self): - return _mscl.InertialNode_getMagnetometerHardIronOffset(self) - - def setConingAndScullingEnable(self, enable): - return _mscl.InertialNode_setConingAndScullingEnable(self, enable) - - def getConingAndScullingEnable(self): - return _mscl.InertialNode_getConingAndScullingEnable(self) - - def setLowPassFilterSettings(self, data): - return _mscl.InertialNode_setLowPassFilterSettings(self, data) - - def getLowPassFilterSettings(self, dataDescriptors): - return _mscl.InertialNode_getLowPassFilterSettings(self, dataDescriptors) - - def setComplementaryFilterSettings(self, data): - return _mscl.InertialNode_setComplementaryFilterSettings(self, data) - - def getComplementaryFilterSettings(self): - return _mscl.InertialNode_getComplementaryFilterSettings(self) - - def getBasicDeviceStatus(self): - return _mscl.InertialNode_getBasicDeviceStatus(self) - - def getDiagnosticDeviceStatus(self): - return _mscl.InertialNode_getDiagnosticDeviceStatus(self) - - def sendRawRTCM_2_3Message(self, theMessage): - return _mscl.InertialNode_sendRawRTCM_2_3Message(self, theMessage) - - def setVehicleDynamicsMode(self, mode): - return _mscl.InertialNode_setVehicleDynamicsMode(self, mode) - - def getVehicleDynamicsMode(self): - return _mscl.InertialNode_getVehicleDynamicsMode(self) - - def setEstimationControlFlags(self, flags): - return _mscl.InertialNode_setEstimationControlFlags(self, flags) - - def getEstimationControlFlags(self): - return _mscl.InertialNode_getEstimationControlFlags(self) - - def setInclinationSource(self, options): - return _mscl.InertialNode_setInclinationSource(self, options) - - def getInclinationSource(self): - return _mscl.InertialNode_getInclinationSource(self) - - def setDeclinationSource(self, options): - return _mscl.InertialNode_setDeclinationSource(self, options) - - def getDeclinationSource(self): - return _mscl.InertialNode_getDeclinationSource(self) - - def setMagneticFieldMagnitudeSource(self, options): - return _mscl.InertialNode_setMagneticFieldMagnitudeSource(self, options) - - def getMagneticFieldMagnitudeSource(self): - return _mscl.InertialNode_getMagneticFieldMagnitudeSource(self) - - def setGNSS_SourceControl(self, gnssSource): - return _mscl.InertialNode_setGNSS_SourceControl(self, gnssSource) - - def getGNSS_SourceControl(self): - return _mscl.InertialNode_getGNSS_SourceControl(self) - - def sendExternalGNSSUpdate(self, gnssUpdateData): - return _mscl.InertialNode_sendExternalGNSSUpdate(self, gnssUpdateData) - - def setHeadingUpdateControl(self, headingUpdateOptions): - return _mscl.InertialNode_setHeadingUpdateControl(self, headingUpdateOptions) - - def tareOrientation(self, axisValue): - return _mscl.InertialNode_tareOrientation(self, axisValue) - - def getHeadingUpdateControl(self): - return _mscl.InertialNode_getHeadingUpdateControl(self) - - def setGravityErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setGravityErrorAdaptiveMeasurement(self, data) - - def getGravityErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getGravityErrorAdaptiveMeasurement(self) - - def setMagnetometerErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagnetometerErrorAdaptiveMeasurement(self, data) - - def getMagnetometerErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagnetometerErrorAdaptiveMeasurement(self) - - def setMagDipAngleErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagDipAngleErrorAdaptiveMeasurement(self, data) - - def getMagDipAngleErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagDipAngleErrorAdaptiveMeasurement(self) - - def setMagNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setMagNoiseStandardDeviation(self, data) - - def getMagNoiseStandardDeviation(self): - return _mscl.InertialNode_getMagNoiseStandardDeviation(self) - - def setGravNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGravNoiseStandardDeviation(self, data) - - def getGravNoiseStandardDeviation(self): - return _mscl.InertialNode_getGravNoiseStandardDeviation(self) - - def setAccelNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setAccelNoiseStandardDeviation(self, data) - - def getAccelNoiseStandardDeviation(self): - return _mscl.InertialNode_getAccelNoiseStandardDeviation(self) - - def setGyroNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGyroNoiseStandardDeviation(self, data) - - def getGyroNoiseStandardDeviation(self): - return _mscl.InertialNode_getGyroNoiseStandardDeviation(self) - - def setPressureAltNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setPressureAltNoiseStandardDeviation(self, data) - - def getPressureAltNoiseStandardDeviation(self): - return _mscl.InertialNode_getPressureAltNoiseStandardDeviation(self) - - def setHardIronOffsetProcessNoise(self, data): - return _mscl.InertialNode_setHardIronOffsetProcessNoise(self, data) - - def getHardIronOffsetProcessNoise(self): - return _mscl.InertialNode_getHardIronOffsetProcessNoise(self) - - def setAccelBiasModelParams(self, data): - return _mscl.InertialNode_setAccelBiasModelParams(self, data) - - def getAccelBiasModelParams(self): - return _mscl.InertialNode_getAccelBiasModelParams(self) - - def setGyroBiasModelParams(self, data): - return _mscl.InertialNode_setGyroBiasModelParams(self, data) - - def getGyroBiasModelParams(self): - return _mscl.InertialNode_getGyroBiasModelParams(self) - - def setSoftIronMatrixProcessNoise(self, data): - return _mscl.InertialNode_setSoftIronMatrixProcessNoise(self, data) - - def getSoftIronMatrixProcessNoise(self): - return _mscl.InertialNode_getSoftIronMatrixProcessNoise(self) - - def setFixedReferencePosition(self, data): - return _mscl.InertialNode_setFixedReferencePosition(self, data) - - def getFixedReferencePosition(self): - return _mscl.InertialNode_getFixedReferencePosition(self) - - def setGPSDynamicsMode(self, data): - return _mscl.InertialNode_setGPSDynamicsMode(self, data) - - def getGPSDynamicsMode(self): - return _mscl.InertialNode_getGPSDynamicsMode(self) - - def setDevicePowerState(self, device, data): - return _mscl.InertialNode_setDevicePowerState(self, device, data) - - def getDevicePowerState(self, device): - return _mscl.InertialNode_getDevicePowerState(self, device) - - def setDeviceStreamFormat(self, device, data): - return _mscl.InertialNode_setDeviceStreamFormat(self, device, data) - - def getDeviceStreamFormat(self, device): - return _mscl.InertialNode_getDeviceStreamFormat(self, device) - - def setSignalConditioningSettings(self, data): - return _mscl.InertialNode_setSignalConditioningSettings(self, data) - - def getSignalConditioningSettings(self): - return _mscl.InertialNode_getSignalConditioningSettings(self) - - def setEnableDisableMeasurements(self, data): - return _mscl.InertialNode_setEnableDisableMeasurements(self, data) - - def getEnableDisableMeasurements(self): - return _mscl.InertialNode_getEnableDisableMeasurements(self) - - def setGravityNoiseMinimum(self, data): - return _mscl.InertialNode_setGravityNoiseMinimum(self, data) - - def getGravityNoiseMinimum(self): - return _mscl.InertialNode_getGravityNoiseMinimum(self) - - def sendExternalHeadingUpdate(self, *args): - return _mscl.InertialNode_sendExternalHeadingUpdate(self, *args) - - def aidingMeasurementEnabled(self, aidingSource): - return _mscl.InertialNode_aidingMeasurementEnabled(self, aidingSource) - - def enableDisableAidingMeasurement(self, aidingSource, enable): - return _mscl.InertialNode_enableDisableAidingMeasurement(self, aidingSource, enable) - - def getAdaptiveFilterOptions(self): - return _mscl.InertialNode_getAdaptiveFilterOptions(self) - - def setAdaptiveFilterOptions(self, options): - return _mscl.InertialNode_setAdaptiveFilterOptions(self, options) - - def getMultiAntennaOffset(self, receiverId): - return _mscl.InertialNode_getMultiAntennaOffset(self, receiverId) - - def setMultiAntennaOffset(self, receiverId, offset): - return _mscl.InertialNode_setMultiAntennaOffset(self, receiverId, offset) - - def getPpsSource(self): - return _mscl.InertialNode_getPpsSource(self) - - def setPpsSource(self, ppsSource): - return _mscl.InertialNode_setPpsSource(self, ppsSource) - - def getOdometerConfig(self): - return _mscl.InertialNode_getOdometerConfig(self) - - def setOdometerConfig(self, config): - return _mscl.InertialNode_setOdometerConfig(self, config) - - def getSensorRange(self, sensorRangeType): - return _mscl.InertialNode_getSensorRange(self, sensorRangeType) - - def setSensorRange(self, *args): - return _mscl.InertialNode_setSensorRange(self, *args) - - def getGpioConfig(self, pin): - return _mscl.InertialNode_getGpioConfig(self, pin) - - def setGpioConfig(self, config): - return _mscl.InertialNode_setGpioConfig(self, config) - - def getGpioState(self, pin): - return _mscl.InertialNode_getGpioState(self, pin) - - def setGpioState(self, pin, state): - return _mscl.InertialNode_setGpioState(self, pin, state) - - def getEventTriggerMode(self, instance): - return _mscl.InertialNode_getEventTriggerMode(self, instance) - - def setEventTriggerMode(self, instance, mode): - return _mscl.InertialNode_setEventTriggerMode(self, instance, mode) - - def getEventTriggerConfig(self, instance): - return _mscl.InertialNode_getEventTriggerConfig(self, instance) - - def setEventTriggerConfig(self, config): - return _mscl.InertialNode_setEventTriggerConfig(self, config) - - def getEventActionConfig(self, instance): - return _mscl.InertialNode_getEventActionConfig(self, instance) - - def setEventActionConfig(self, config, validateSupported=True): - return _mscl.InertialNode_setEventActionConfig(self, config, validateSupported) - - def getAntennaLeverArmCal(self): - return _mscl.InertialNode_getAntennaLeverArmCal(self) - - def setAntennaLeverArmCal(self, config): - return _mscl.InertialNode_setAntennaLeverArmCal(self, config) - - def getRelativePositionReference(self): - return _mscl.InertialNode_getRelativePositionReference(self) - - def setRelativePositionReference(self, ref): - return _mscl.InertialNode_setRelativePositionReference(self, ref) - - def getLeverArmReferenceOffset(self): - return _mscl.InertialNode_getLeverArmReferenceOffset(self) - - def setLeverArmReferenceOffset(self, offset): - return _mscl.InertialNode_setLeverArmReferenceOffset(self, offset) - - def sendExternalSpeedMeasurementUpdate(self, tow, speed, unc): - return _mscl.InertialNode_sendExternalSpeedMeasurementUpdate(self, tow, speed, unc) - - def getSpeedMeasurementOffset(self): - return _mscl.InertialNode_getSpeedMeasurementOffset(self) - - def setSpeedMeasurementOffset(self, offset): - return _mscl.InertialNode_setSpeedMeasurementOffset(self, offset) - - def getGnssSignalConfig(self): - return _mscl.InertialNode_getGnssSignalConfig(self) - - def setGnssSignalConfig(self, config): - return _mscl.InertialNode_setGnssSignalConfig(self, config) - - def getGnssSpartnConfig(self): - return _mscl.InertialNode_getGnssSpartnConfig(self) - - def setGnssSpartnConfig(self, config): - return _mscl.InertialNode_setGnssSpartnConfig(self, config) - - def rtkEnabled(self): - return _mscl.InertialNode_rtkEnabled(self) - - def enableRtk(self, enable): - return _mscl.InertialNode_enableRtk(self, enable) - - def getEventTriggerStatus(self, *args): - return _mscl.InertialNode_getEventTriggerStatus(self, *args) - - def getEventActionStatus(self, *args): - return _mscl.InertialNode_getEventActionStatus(self, *args) - - def getNmeaMessageFormat(self): - return _mscl.InertialNode_getNmeaMessageFormat(self) - - def setNmeaMessageFormat(self, nmeaFormats): - return _mscl.InertialNode_setNmeaMessageFormat(self, nmeaFormats) - - def getAidingMeasurementReferenceFrames(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrames(self, *args) - - def setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds=False): - return _mscl.InertialNode_setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds) - - def getAidingMeasurementReferenceFrame(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrame(self, *args) - - def setAidingMeasurementReferenceFrame(self, id, frame): - return _mscl.InertialNode_setAidingMeasurementReferenceFrame(self, id, frame) - - def setAidingMeasurementResponseMode(self, mode): - return _mscl.InertialNode_setAidingMeasurementResponseMode(self, mode) - - def getAidingMeasurementResponseMode(self): - return _mscl.InertialNode_getAidingMeasurementResponseMode(self) - - def sendAidingMeasurement(self, *args): - return _mscl.InertialNode_sendAidingMeasurement(self, *args) - - def sendAidingMeasurement_readEcho(self, *args): - return _mscl.InertialNode_sendAidingMeasurement_readEcho(self, *args) - -# Register InertialNode in _mscl: -_mscl.InertialNode_swigregister(InertialNode) - -class DisplacementNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.DisplacementNode_swiginit(self, _mscl.new_DisplacementNode(connection)) - __swig_destroy__ = _mscl.delete_DisplacementNode - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.DisplacementNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - @staticmethod - def deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - - def connection(self): - return _mscl.DisplacementNode_connection(self) - - def features(self): - return _mscl.DisplacementNode_features(self) - - def lastCommunicationTime(self): - return _mscl.DisplacementNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.DisplacementNode_lastDeviceState(self) - - def firmwareVersion(self): - return _mscl.DisplacementNode_firmwareVersion(self) - - def model(self): - return _mscl.DisplacementNode_model(self) - - def modelName(self): - return _mscl.DisplacementNode_modelName(self) - - def modelNumber(self): - return _mscl.DisplacementNode_modelNumber(self) - - def serialNumber(self): - return _mscl.DisplacementNode_serialNumber(self) - - def lotNumber(self): - return _mscl.DisplacementNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.DisplacementNode_deviceOptions(self) - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.DisplacementNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.DisplacementNode_totalPackets(self) - - def timeout(self, *args): - return _mscl.DisplacementNode_timeout(self, *args) - - def name(self): - return _mscl.DisplacementNode_name(self) - - def ping(self): - return _mscl.DisplacementNode_ping(self) - - def setToIdle(self): - return _mscl.DisplacementNode_setToIdle(self) - - def cyclePower(self): - return _mscl.DisplacementNode_cyclePower(self) - - def resume(self): - return _mscl.DisplacementNode_resume(self) - - def getDisplacementOutputDataRate(self): - return _mscl.DisplacementNode_getDisplacementOutputDataRate(self) - - def getAnalogToDisplacementCal(self): - return _mscl.DisplacementNode_getAnalogToDisplacementCal(self) - - def setDeviceTime(self, *args): - return _mscl.DisplacementNode_setDeviceTime(self, *args) - -# Register DisplacementNode in _mscl: -_mscl.DisplacementNode_swigregister(DisplacementNode) - -def DisplacementNode_deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - -class RTKNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.RTKNode_swiginit(self, _mscl.new_RTKNode(connection)) - __swig_destroy__ = _mscl.delete_RTKNode - - def getCommunicationMode(self): - return _mscl.RTKNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.RTKNode_setCommunicationMode(self, communicationMode) - - def getDeviceStatusFlags(self): - return _mscl.RTKNode_getDeviceStatusFlags(self) - - def getActivationCode(self): - return _mscl.RTKNode_getActivationCode(self) - - def getStatusBitfieldVersion(self): - return _mscl.RTKNode_getStatusBitfieldVersion(self) - -# Register RTKNode in _mscl: -_mscl.RTKNode_swigregister(RTKNode) - -class ChannelData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelData___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelData___bool__(self) - - def __len__(self): - return _mscl.ChannelData___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelData___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelData___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelData___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelData___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelData___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelData___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelData_pop(self) - - def append(self, x): - return _mscl.ChannelData_append(self, x) - - def empty(self): - return _mscl.ChannelData_empty(self) - - def size(self): - return _mscl.ChannelData_size(self) - - def swap(self, v): - return _mscl.ChannelData_swap(self, v) - - def begin(self): - return _mscl.ChannelData_begin(self) - - def end(self): - return _mscl.ChannelData_end(self) - - def rbegin(self): - return _mscl.ChannelData_rbegin(self) - - def rend(self): - return _mscl.ChannelData_rend(self) - - def clear(self): - return _mscl.ChannelData_clear(self) - - def get_allocator(self): - return _mscl.ChannelData_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelData_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelData_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelData_swiginit(self, _mscl.new_ChannelData(*args)) - - def push_back(self, x): - return _mscl.ChannelData_push_back(self, x) - - def front(self): - return _mscl.ChannelData_front(self) - - def back(self): - return _mscl.ChannelData_back(self) - - def assign(self, n, x): - return _mscl.ChannelData_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelData_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelData_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelData_reserve(self, n) - - def capacity(self): - return _mscl.ChannelData_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelData - -# Register ChannelData in _mscl: -_mscl.ChannelData_swigregister(ChannelData) - -class MipDataPoints(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPoints_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPoints___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPoints___bool__(self) - - def __len__(self): - return _mscl.MipDataPoints___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPoints___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPoints___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPoints___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPoints___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPoints___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPoints___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPoints_pop(self) - - def append(self, x): - return _mscl.MipDataPoints_append(self, x) - - def empty(self): - return _mscl.MipDataPoints_empty(self) - - def size(self): - return _mscl.MipDataPoints_size(self) - - def swap(self, v): - return _mscl.MipDataPoints_swap(self, v) - - def begin(self): - return _mscl.MipDataPoints_begin(self) - - def end(self): - return _mscl.MipDataPoints_end(self) - - def rbegin(self): - return _mscl.MipDataPoints_rbegin(self) - - def rend(self): - return _mscl.MipDataPoints_rend(self) - - def clear(self): - return _mscl.MipDataPoints_clear(self) - - def get_allocator(self): - return _mscl.MipDataPoints_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPoints_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPoints_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPoints_swiginit(self, _mscl.new_MipDataPoints(*args)) - - def push_back(self, x): - return _mscl.MipDataPoints_push_back(self, x) - - def front(self): - return _mscl.MipDataPoints_front(self) - - def back(self): - return _mscl.MipDataPoints_back(self) - - def assign(self, n, x): - return _mscl.MipDataPoints_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPoints_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPoints_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPoints_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPoints_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPoints - -# Register MipDataPoints in _mscl: -_mscl.MipDataPoints_swigregister(MipDataPoints) - -class Bytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bytes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bytes___nonzero__(self) - - def __bool__(self): - return _mscl.Bytes___bool__(self) - - def __len__(self): - return _mscl.Bytes___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bytes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bytes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bytes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bytes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bytes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bytes___setitem__(self, *args) - - def pop(self): - return _mscl.Bytes_pop(self) - - def append(self, x): - return _mscl.Bytes_append(self, x) - - def empty(self): - return _mscl.Bytes_empty(self) - - def size(self): - return _mscl.Bytes_size(self) - - def swap(self, v): - return _mscl.Bytes_swap(self, v) - - def begin(self): - return _mscl.Bytes_begin(self) - - def end(self): - return _mscl.Bytes_end(self) - - def rbegin(self): - return _mscl.Bytes_rbegin(self) - - def rend(self): - return _mscl.Bytes_rend(self) - - def clear(self): - return _mscl.Bytes_clear(self) - - def get_allocator(self): - return _mscl.Bytes_get_allocator(self) - - def pop_back(self): - return _mscl.Bytes_pop_back(self) - - def erase(self, *args): - return _mscl.Bytes_erase(self, *args) - - def __init__(self, *args): - _mscl.Bytes_swiginit(self, _mscl.new_Bytes(*args)) - - def push_back(self, x): - return _mscl.Bytes_push_back(self, x) - - def front(self): - return _mscl.Bytes_front(self) - - def back(self): - return _mscl.Bytes_back(self) - - def assign(self, n, x): - return _mscl.Bytes_assign(self, n, x) - - def resize(self, *args): - return _mscl.Bytes_resize(self, *args) - - def insert(self, *args): - return _mscl.Bytes_insert(self, *args) - - def reserve(self, n): - return _mscl.Bytes_reserve(self, n) - - def capacity(self): - return _mscl.Bytes_capacity(self) - __swig_destroy__ = _mscl.delete_Bytes - -# Register Bytes in _mscl: -_mscl.Bytes_swigregister(Bytes) - -class BytesCollection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.BytesCollection_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.BytesCollection___nonzero__(self) - - def __bool__(self): - return _mscl.BytesCollection___bool__(self) - - def __len__(self): - return _mscl.BytesCollection___len__(self) - - def __getslice__(self, i, j): - return _mscl.BytesCollection___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.BytesCollection___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.BytesCollection___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.BytesCollection___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.BytesCollection___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.BytesCollection___setitem__(self, *args) - - def pop(self): - return _mscl.BytesCollection_pop(self) - - def append(self, x): - return _mscl.BytesCollection_append(self, x) - - def empty(self): - return _mscl.BytesCollection_empty(self) - - def size(self): - return _mscl.BytesCollection_size(self) - - def swap(self, v): - return _mscl.BytesCollection_swap(self, v) - - def begin(self): - return _mscl.BytesCollection_begin(self) - - def end(self): - return _mscl.BytesCollection_end(self) - - def rbegin(self): - return _mscl.BytesCollection_rbegin(self) - - def rend(self): - return _mscl.BytesCollection_rend(self) - - def clear(self): - return _mscl.BytesCollection_clear(self) - - def get_allocator(self): - return _mscl.BytesCollection_get_allocator(self) - - def pop_back(self): - return _mscl.BytesCollection_pop_back(self) - - def erase(self, *args): - return _mscl.BytesCollection_erase(self, *args) - - def __init__(self, *args): - _mscl.BytesCollection_swiginit(self, _mscl.new_BytesCollection(*args)) - - def push_back(self, x): - return _mscl.BytesCollection_push_back(self, x) - - def front(self): - return _mscl.BytesCollection_front(self) - - def back(self): - return _mscl.BytesCollection_back(self) - - def assign(self, n, x): - return _mscl.BytesCollection_assign(self, n, x) - - def resize(self, *args): - return _mscl.BytesCollection_resize(self, *args) - - def insert(self, *args): - return _mscl.BytesCollection_insert(self, *args) - - def reserve(self, n): - return _mscl.BytesCollection_reserve(self, n) - - def capacity(self): - return _mscl.BytesCollection_capacity(self) - __swig_destroy__ = _mscl.delete_BytesCollection - -# Register BytesCollection in _mscl: -_mscl.BytesCollection_swigregister(BytesCollection) - -class DeviceList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceList___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceList___bool__(self) - - def __len__(self): - return _mscl.DeviceList___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceList___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceList___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceList_has_key(self, key) - - def keys(self): - return _mscl.DeviceList_keys(self) - - def values(self): - return _mscl.DeviceList_values(self) - - def items(self): - return _mscl.DeviceList_items(self) - - def __contains__(self, key): - return _mscl.DeviceList___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceList_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceList_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceList___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceList_asdict(self) - - def __init__(self, *args): - _mscl.DeviceList_swiginit(self, _mscl.new_DeviceList(*args)) - - def empty(self): - return _mscl.DeviceList_empty(self) - - def size(self): - return _mscl.DeviceList_size(self) - - def swap(self, v): - return _mscl.DeviceList_swap(self, v) - - def begin(self): - return _mscl.DeviceList_begin(self) - - def end(self): - return _mscl.DeviceList_end(self) - - def rbegin(self): - return _mscl.DeviceList_rbegin(self) - - def rend(self): - return _mscl.DeviceList_rend(self) - - def clear(self): - return _mscl.DeviceList_clear(self) - - def get_allocator(self): - return _mscl.DeviceList_get_allocator(self) - - def count(self, x): - return _mscl.DeviceList_count(self, x) - - def erase(self, *args): - return _mscl.DeviceList_erase(self, *args) - - def find(self, x): - return _mscl.DeviceList_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceList_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceList_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceList - -# Register DeviceList in _mscl: -_mscl.DeviceList_swigregister(DeviceList) - -class NodeDiscoveries(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NodeDiscoveries_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NodeDiscoveries___nonzero__(self) - - def __bool__(self): - return _mscl.NodeDiscoveries___bool__(self) - - def __len__(self): - return _mscl.NodeDiscoveries___len__(self) - - def __getslice__(self, i, j): - return _mscl.NodeDiscoveries___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NodeDiscoveries___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NodeDiscoveries___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NodeDiscoveries___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NodeDiscoveries___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NodeDiscoveries___setitem__(self, *args) - - def pop(self): - return _mscl.NodeDiscoveries_pop(self) - - def append(self, x): - return _mscl.NodeDiscoveries_append(self, x) - - def empty(self): - return _mscl.NodeDiscoveries_empty(self) - - def size(self): - return _mscl.NodeDiscoveries_size(self) - - def swap(self, v): - return _mscl.NodeDiscoveries_swap(self, v) - - def begin(self): - return _mscl.NodeDiscoveries_begin(self) - - def end(self): - return _mscl.NodeDiscoveries_end(self) - - def rbegin(self): - return _mscl.NodeDiscoveries_rbegin(self) - - def rend(self): - return _mscl.NodeDiscoveries_rend(self) - - def clear(self): - return _mscl.NodeDiscoveries_clear(self) - - def get_allocator(self): - return _mscl.NodeDiscoveries_get_allocator(self) - - def pop_back(self): - return _mscl.NodeDiscoveries_pop_back(self) - - def erase(self, *args): - return _mscl.NodeDiscoveries_erase(self, *args) - - def __init__(self, *args): - _mscl.NodeDiscoveries_swiginit(self, _mscl.new_NodeDiscoveries(*args)) - - def push_back(self, x): - return _mscl.NodeDiscoveries_push_back(self, x) - - def front(self): - return _mscl.NodeDiscoveries_front(self) - - def back(self): - return _mscl.NodeDiscoveries_back(self) - - def assign(self, n, x): - return _mscl.NodeDiscoveries_assign(self, n, x) - - def resize(self, *args): - return _mscl.NodeDiscoveries_resize(self, *args) - - def insert(self, *args): - return _mscl.NodeDiscoveries_insert(self, *args) - - def reserve(self, n): - return _mscl.NodeDiscoveries_reserve(self, n) - - def capacity(self): - return _mscl.NodeDiscoveries_capacity(self) - __swig_destroy__ = _mscl.delete_NodeDiscoveries - -# Register NodeDiscoveries in _mscl: -_mscl.NodeDiscoveries_swigregister(NodeDiscoveries) - -class DataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.DataSweeps___bool__(self) - - def __len__(self): - return _mscl.DataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.DataSweeps_pop(self) - - def append(self, x): - return _mscl.DataSweeps_append(self, x) - - def empty(self): - return _mscl.DataSweeps_empty(self) - - def size(self): - return _mscl.DataSweeps_size(self) - - def swap(self, v): - return _mscl.DataSweeps_swap(self, v) - - def begin(self): - return _mscl.DataSweeps_begin(self) - - def end(self): - return _mscl.DataSweeps_end(self) - - def rbegin(self): - return _mscl.DataSweeps_rbegin(self) - - def rend(self): - return _mscl.DataSweeps_rend(self) - - def clear(self): - return _mscl.DataSweeps_clear(self) - - def get_allocator(self): - return _mscl.DataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.DataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.DataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.DataSweeps_swiginit(self, _mscl.new_DataSweeps(*args)) - - def push_back(self, x): - return _mscl.DataSweeps_push_back(self, x) - - def front(self): - return _mscl.DataSweeps_front(self) - - def back(self): - return _mscl.DataSweeps_back(self) - - def assign(self, n, x): - return _mscl.DataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.DataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.DataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.DataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_DataSweeps - -# Register DataSweeps in _mscl: -_mscl.DataSweeps_swigregister(DataSweeps) - -class LoggedDataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LoggedDataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LoggedDataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.LoggedDataSweeps___bool__(self) - - def __len__(self): - return _mscl.LoggedDataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.LoggedDataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LoggedDataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LoggedDataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LoggedDataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LoggedDataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LoggedDataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.LoggedDataSweeps_pop(self) - - def append(self, x): - return _mscl.LoggedDataSweeps_append(self, x) - - def empty(self): - return _mscl.LoggedDataSweeps_empty(self) - - def size(self): - return _mscl.LoggedDataSweeps_size(self) - - def swap(self, v): - return _mscl.LoggedDataSweeps_swap(self, v) - - def begin(self): - return _mscl.LoggedDataSweeps_begin(self) - - def end(self): - return _mscl.LoggedDataSweeps_end(self) - - def rbegin(self): - return _mscl.LoggedDataSweeps_rbegin(self) - - def rend(self): - return _mscl.LoggedDataSweeps_rend(self) - - def clear(self): - return _mscl.LoggedDataSweeps_clear(self) - - def get_allocator(self): - return _mscl.LoggedDataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.LoggedDataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.LoggedDataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.LoggedDataSweeps_swiginit(self, _mscl.new_LoggedDataSweeps(*args)) - - def push_back(self, x): - return _mscl.LoggedDataSweeps_push_back(self, x) - - def front(self): - return _mscl.LoggedDataSweeps_front(self) - - def back(self): - return _mscl.LoggedDataSweeps_back(self) - - def assign(self, n, x): - return _mscl.LoggedDataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.LoggedDataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.LoggedDataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.LoggedDataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.LoggedDataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweeps - -# Register LoggedDataSweeps in _mscl: -_mscl.LoggedDataSweeps_swigregister(LoggedDataSweeps) - -class MipDataPackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPackets___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPackets___bool__(self) - - def __len__(self): - return _mscl.MipDataPackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPackets___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPackets_pop(self) - - def append(self, x): - return _mscl.MipDataPackets_append(self, x) - - def empty(self): - return _mscl.MipDataPackets_empty(self) - - def size(self): - return _mscl.MipDataPackets_size(self) - - def swap(self, v): - return _mscl.MipDataPackets_swap(self, v) - - def begin(self): - return _mscl.MipDataPackets_begin(self) - - def end(self): - return _mscl.MipDataPackets_end(self) - - def rbegin(self): - return _mscl.MipDataPackets_rbegin(self) - - def rend(self): - return _mscl.MipDataPackets_rend(self) - - def clear(self): - return _mscl.MipDataPackets_clear(self) - - def get_allocator(self): - return _mscl.MipDataPackets_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPackets_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPackets_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPackets_swiginit(self, _mscl.new_MipDataPackets(*args)) - - def push_back(self, x): - return _mscl.MipDataPackets_push_back(self, x) - - def front(self): - return _mscl.MipDataPackets_front(self) - - def back(self): - return _mscl.MipDataPackets_back(self) - - def assign(self, n, x): - return _mscl.MipDataPackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPackets_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPackets_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPackets_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPackets_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPackets - -# Register MipDataPackets in _mscl: -_mscl.MipDataPackets_swigregister(MipDataPackets) - -class RawBytePackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RawBytePackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RawBytePackets___nonzero__(self) - - def __bool__(self): - return _mscl.RawBytePackets___bool__(self) - - def __len__(self): - return _mscl.RawBytePackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.RawBytePackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.RawBytePackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.RawBytePackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.RawBytePackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.RawBytePackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.RawBytePackets___setitem__(self, *args) - - def pop(self): - return _mscl.RawBytePackets_pop(self) - - def append(self, x): - return _mscl.RawBytePackets_append(self, x) - - def empty(self): - return _mscl.RawBytePackets_empty(self) - - def size(self): - return _mscl.RawBytePackets_size(self) - - def swap(self, v): - return _mscl.RawBytePackets_swap(self, v) - - def begin(self): - return _mscl.RawBytePackets_begin(self) - - def end(self): - return _mscl.RawBytePackets_end(self) - - def rbegin(self): - return _mscl.RawBytePackets_rbegin(self) - - def rend(self): - return _mscl.RawBytePackets_rend(self) - - def clear(self): - return _mscl.RawBytePackets_clear(self) - - def get_allocator(self): - return _mscl.RawBytePackets_get_allocator(self) - - def pop_back(self): - return _mscl.RawBytePackets_pop_back(self) - - def erase(self, *args): - return _mscl.RawBytePackets_erase(self, *args) - - def __init__(self, *args): - _mscl.RawBytePackets_swiginit(self, _mscl.new_RawBytePackets(*args)) - - def push_back(self, x): - return _mscl.RawBytePackets_push_back(self, x) - - def front(self): - return _mscl.RawBytePackets_front(self) - - def back(self): - return _mscl.RawBytePackets_back(self) - - def assign(self, n, x): - return _mscl.RawBytePackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.RawBytePackets_resize(self, *args) - - def insert(self, *args): - return _mscl.RawBytePackets_insert(self, *args) - - def reserve(self, n): - return _mscl.RawBytePackets_reserve(self, n) - - def capacity(self): - return _mscl.RawBytePackets_capacity(self) - __swig_destroy__ = _mscl.delete_RawBytePackets - -# Register RawBytePackets in _mscl: -_mscl.RawBytePackets_swigregister(RawBytePackets) - -class MipChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannels___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannels___bool__(self) - - def __len__(self): - return _mscl.MipChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannels___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannels_pop(self) - - def append(self, x): - return _mscl.MipChannels_append(self, x) - - def empty(self): - return _mscl.MipChannels_empty(self) - - def size(self): - return _mscl.MipChannels_size(self) - - def swap(self, v): - return _mscl.MipChannels_swap(self, v) - - def begin(self): - return _mscl.MipChannels_begin(self) - - def end(self): - return _mscl.MipChannels_end(self) - - def rbegin(self): - return _mscl.MipChannels_rbegin(self) - - def rend(self): - return _mscl.MipChannels_rend(self) - - def clear(self): - return _mscl.MipChannels_clear(self) - - def get_allocator(self): - return _mscl.MipChannels_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannels_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannels_swiginit(self, _mscl.new_MipChannels(*args)) - - def push_back(self, x): - return _mscl.MipChannels_push_back(self, x) - - def front(self): - return _mscl.MipChannels_front(self) - - def back(self): - return _mscl.MipChannels_back(self) - - def assign(self, n, x): - return _mscl.MipChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannels_reserve(self, n) - - def capacity(self): - return _mscl.MipChannels_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannels - -# Register MipChannels in _mscl: -_mscl.MipChannels_swigregister(MipChannels) - -class DataCollectionMethods(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataCollectionMethods_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataCollectionMethods___nonzero__(self) - - def __bool__(self): - return _mscl.DataCollectionMethods___bool__(self) - - def __len__(self): - return _mscl.DataCollectionMethods___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataCollectionMethods___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataCollectionMethods___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataCollectionMethods___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataCollectionMethods___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataCollectionMethods___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataCollectionMethods___setitem__(self, *args) - - def pop(self): - return _mscl.DataCollectionMethods_pop(self) - - def append(self, x): - return _mscl.DataCollectionMethods_append(self, x) - - def empty(self): - return _mscl.DataCollectionMethods_empty(self) - - def size(self): - return _mscl.DataCollectionMethods_size(self) - - def swap(self, v): - return _mscl.DataCollectionMethods_swap(self, v) - - def begin(self): - return _mscl.DataCollectionMethods_begin(self) - - def end(self): - return _mscl.DataCollectionMethods_end(self) - - def rbegin(self): - return _mscl.DataCollectionMethods_rbegin(self) - - def rend(self): - return _mscl.DataCollectionMethods_rend(self) - - def clear(self): - return _mscl.DataCollectionMethods_clear(self) - - def get_allocator(self): - return _mscl.DataCollectionMethods_get_allocator(self) - - def pop_back(self): - return _mscl.DataCollectionMethods_pop_back(self) - - def erase(self, *args): - return _mscl.DataCollectionMethods_erase(self, *args) - - def __init__(self, *args): - _mscl.DataCollectionMethods_swiginit(self, _mscl.new_DataCollectionMethods(*args)) - - def push_back(self, x): - return _mscl.DataCollectionMethods_push_back(self, x) - - def front(self): - return _mscl.DataCollectionMethods_front(self) - - def back(self): - return _mscl.DataCollectionMethods_back(self) - - def assign(self, n, x): - return _mscl.DataCollectionMethods_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataCollectionMethods_resize(self, *args) - - def insert(self, *args): - return _mscl.DataCollectionMethods_insert(self, *args) - - def reserve(self, n): - return _mscl.DataCollectionMethods_reserve(self, n) - - def capacity(self): - return _mscl.DataCollectionMethods_capacity(self) - __swig_destroy__ = _mscl.delete_DataCollectionMethods - -# Register DataCollectionMethods in _mscl: -_mscl.DataCollectionMethods_swigregister(DataCollectionMethods) - -class DataFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataFormats___nonzero__(self) - - def __bool__(self): - return _mscl.DataFormats___bool__(self) - - def __len__(self): - return _mscl.DataFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataFormats___setitem__(self, *args) - - def pop(self): - return _mscl.DataFormats_pop(self) - - def append(self, x): - return _mscl.DataFormats_append(self, x) - - def empty(self): - return _mscl.DataFormats_empty(self) - - def size(self): - return _mscl.DataFormats_size(self) - - def swap(self, v): - return _mscl.DataFormats_swap(self, v) - - def begin(self): - return _mscl.DataFormats_begin(self) - - def end(self): - return _mscl.DataFormats_end(self) - - def rbegin(self): - return _mscl.DataFormats_rbegin(self) - - def rend(self): - return _mscl.DataFormats_rend(self) - - def clear(self): - return _mscl.DataFormats_clear(self) - - def get_allocator(self): - return _mscl.DataFormats_get_allocator(self) - - def pop_back(self): - return _mscl.DataFormats_pop_back(self) - - def erase(self, *args): - return _mscl.DataFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.DataFormats_swiginit(self, _mscl.new_DataFormats(*args)) - - def push_back(self, x): - return _mscl.DataFormats_push_back(self, x) - - def front(self): - return _mscl.DataFormats_front(self) - - def back(self): - return _mscl.DataFormats_back(self) - - def assign(self, n, x): - return _mscl.DataFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.DataFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.DataFormats_reserve(self, n) - - def capacity(self): - return _mscl.DataFormats_capacity(self) - __swig_destroy__ = _mscl.delete_DataFormats - -# Register DataFormats in _mscl: -_mscl.DataFormats_swigregister(DataFormats) - -class WirelessSampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessSampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessSampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessSampleRates___bool__(self) - - def __len__(self): - return _mscl.WirelessSampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessSampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessSampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessSampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessSampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessSampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessSampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessSampleRates_pop(self) - - def append(self, x): - return _mscl.WirelessSampleRates_append(self, x) - - def empty(self): - return _mscl.WirelessSampleRates_empty(self) - - def size(self): - return _mscl.WirelessSampleRates_size(self) - - def swap(self, v): - return _mscl.WirelessSampleRates_swap(self, v) - - def begin(self): - return _mscl.WirelessSampleRates_begin(self) - - def end(self): - return _mscl.WirelessSampleRates_end(self) - - def rbegin(self): - return _mscl.WirelessSampleRates_rbegin(self) - - def rend(self): - return _mscl.WirelessSampleRates_rend(self) - - def clear(self): - return _mscl.WirelessSampleRates_clear(self) - - def get_allocator(self): - return _mscl.WirelessSampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessSampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessSampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessSampleRates_swiginit(self, _mscl.new_WirelessSampleRates(*args)) - - def push_back(self, x): - return _mscl.WirelessSampleRates_push_back(self, x) - - def front(self): - return _mscl.WirelessSampleRates_front(self) - - def back(self): - return _mscl.WirelessSampleRates_back(self) - - def assign(self, n, x): - return _mscl.WirelessSampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessSampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessSampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessSampleRates_reserve(self, n) - - def capacity(self): - return _mscl.WirelessSampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessSampleRates - -# Register WirelessSampleRates in _mscl: -_mscl.WirelessSampleRates_swigregister(WirelessSampleRates) - -class SamplingModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SamplingModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SamplingModes___nonzero__(self) - - def __bool__(self): - return _mscl.SamplingModes___bool__(self) - - def __len__(self): - return _mscl.SamplingModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SamplingModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SamplingModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SamplingModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SamplingModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SamplingModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SamplingModes___setitem__(self, *args) - - def pop(self): - return _mscl.SamplingModes_pop(self) - - def append(self, x): - return _mscl.SamplingModes_append(self, x) - - def empty(self): - return _mscl.SamplingModes_empty(self) - - def size(self): - return _mscl.SamplingModes_size(self) - - def swap(self, v): - return _mscl.SamplingModes_swap(self, v) - - def begin(self): - return _mscl.SamplingModes_begin(self) - - def end(self): - return _mscl.SamplingModes_end(self) - - def rbegin(self): - return _mscl.SamplingModes_rbegin(self) - - def rend(self): - return _mscl.SamplingModes_rend(self) - - def clear(self): - return _mscl.SamplingModes_clear(self) - - def get_allocator(self): - return _mscl.SamplingModes_get_allocator(self) - - def pop_back(self): - return _mscl.SamplingModes_pop_back(self) - - def erase(self, *args): - return _mscl.SamplingModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SamplingModes_swiginit(self, _mscl.new_SamplingModes(*args)) - - def push_back(self, x): - return _mscl.SamplingModes_push_back(self, x) - - def front(self): - return _mscl.SamplingModes_front(self) - - def back(self): - return _mscl.SamplingModes_back(self) - - def assign(self, n, x): - return _mscl.SamplingModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SamplingModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SamplingModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SamplingModes_reserve(self, n) - - def capacity(self): - return _mscl.SamplingModes_capacity(self) - __swig_destroy__ = _mscl.delete_SamplingModes - -# Register SamplingModes in _mscl: -_mscl.SamplingModes_swigregister(SamplingModes) - -class DefaultModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DefaultModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DefaultModes___nonzero__(self) - - def __bool__(self): - return _mscl.DefaultModes___bool__(self) - - def __len__(self): - return _mscl.DefaultModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DefaultModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DefaultModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DefaultModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DefaultModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DefaultModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DefaultModes___setitem__(self, *args) - - def pop(self): - return _mscl.DefaultModes_pop(self) - - def append(self, x): - return _mscl.DefaultModes_append(self, x) - - def empty(self): - return _mscl.DefaultModes_empty(self) - - def size(self): - return _mscl.DefaultModes_size(self) - - def swap(self, v): - return _mscl.DefaultModes_swap(self, v) - - def begin(self): - return _mscl.DefaultModes_begin(self) - - def end(self): - return _mscl.DefaultModes_end(self) - - def rbegin(self): - return _mscl.DefaultModes_rbegin(self) - - def rend(self): - return _mscl.DefaultModes_rend(self) - - def clear(self): - return _mscl.DefaultModes_clear(self) - - def get_allocator(self): - return _mscl.DefaultModes_get_allocator(self) - - def pop_back(self): - return _mscl.DefaultModes_pop_back(self) - - def erase(self, *args): - return _mscl.DefaultModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DefaultModes_swiginit(self, _mscl.new_DefaultModes(*args)) - - def push_back(self, x): - return _mscl.DefaultModes_push_back(self, x) - - def front(self): - return _mscl.DefaultModes_front(self) - - def back(self): - return _mscl.DefaultModes_back(self) - - def assign(self, n, x): - return _mscl.DefaultModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DefaultModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DefaultModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DefaultModes_reserve(self, n) - - def capacity(self): - return _mscl.DefaultModes_capacity(self) - __swig_destroy__ = _mscl.delete_DefaultModes - -# Register DefaultModes in _mscl: -_mscl.DefaultModes_swigregister(DefaultModes) - -class TransmitPowers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransmitPowers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransmitPowers___nonzero__(self) - - def __bool__(self): - return _mscl.TransmitPowers___bool__(self) - - def __len__(self): - return _mscl.TransmitPowers___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransmitPowers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransmitPowers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransmitPowers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransmitPowers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransmitPowers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransmitPowers___setitem__(self, *args) - - def pop(self): - return _mscl.TransmitPowers_pop(self) - - def append(self, x): - return _mscl.TransmitPowers_append(self, x) - - def empty(self): - return _mscl.TransmitPowers_empty(self) - - def size(self): - return _mscl.TransmitPowers_size(self) - - def swap(self, v): - return _mscl.TransmitPowers_swap(self, v) - - def begin(self): - return _mscl.TransmitPowers_begin(self) - - def end(self): - return _mscl.TransmitPowers_end(self) - - def rbegin(self): - return _mscl.TransmitPowers_rbegin(self) - - def rend(self): - return _mscl.TransmitPowers_rend(self) - - def clear(self): - return _mscl.TransmitPowers_clear(self) - - def get_allocator(self): - return _mscl.TransmitPowers_get_allocator(self) - - def pop_back(self): - return _mscl.TransmitPowers_pop_back(self) - - def erase(self, *args): - return _mscl.TransmitPowers_erase(self, *args) - - def __init__(self, *args): - _mscl.TransmitPowers_swiginit(self, _mscl.new_TransmitPowers(*args)) - - def push_back(self, x): - return _mscl.TransmitPowers_push_back(self, x) - - def front(self): - return _mscl.TransmitPowers_front(self) - - def back(self): - return _mscl.TransmitPowers_back(self) - - def assign(self, n, x): - return _mscl.TransmitPowers_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransmitPowers_resize(self, *args) - - def insert(self, *args): - return _mscl.TransmitPowers_insert(self, *args) - - def reserve(self, n): - return _mscl.TransmitPowers_reserve(self, n) - - def capacity(self): - return _mscl.TransmitPowers_capacity(self) - __swig_destroy__ = _mscl.delete_TransmitPowers - -# Register TransmitPowers in _mscl: -_mscl.TransmitPowers_swigregister(TransmitPowers) - -class ChannelGroupSettings(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroupSettings_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroupSettings___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroupSettings___bool__(self) - - def __len__(self): - return _mscl.ChannelGroupSettings___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroupSettings___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroupSettings___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroupSettings___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroupSettings___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroupSettings___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroupSettings___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroupSettings_pop(self) - - def append(self, x): - return _mscl.ChannelGroupSettings_append(self, x) - - def empty(self): - return _mscl.ChannelGroupSettings_empty(self) - - def size(self): - return _mscl.ChannelGroupSettings_size(self) - - def swap(self, v): - return _mscl.ChannelGroupSettings_swap(self, v) - - def begin(self): - return _mscl.ChannelGroupSettings_begin(self) - - def end(self): - return _mscl.ChannelGroupSettings_end(self) - - def rbegin(self): - return _mscl.ChannelGroupSettings_rbegin(self) - - def rend(self): - return _mscl.ChannelGroupSettings_rend(self) - - def clear(self): - return _mscl.ChannelGroupSettings_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroupSettings_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroupSettings_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroupSettings_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroupSettings_swiginit(self, _mscl.new_ChannelGroupSettings(*args)) - - def push_back(self, x): - return _mscl.ChannelGroupSettings_push_back(self, x) - - def front(self): - return _mscl.ChannelGroupSettings_front(self) - - def back(self): - return _mscl.ChannelGroupSettings_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroupSettings_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroupSettings_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroupSettings_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroupSettings_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroupSettings_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroupSettings - -# Register ChannelGroupSettings in _mscl: -_mscl.ChannelGroupSettings_swigregister(ChannelGroupSettings) - -class FatigueModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.FatigueModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.FatigueModes___nonzero__(self) - - def __bool__(self): - return _mscl.FatigueModes___bool__(self) - - def __len__(self): - return _mscl.FatigueModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.FatigueModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.FatigueModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.FatigueModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.FatigueModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.FatigueModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.FatigueModes___setitem__(self, *args) - - def pop(self): - return _mscl.FatigueModes_pop(self) - - def append(self, x): - return _mscl.FatigueModes_append(self, x) - - def empty(self): - return _mscl.FatigueModes_empty(self) - - def size(self): - return _mscl.FatigueModes_size(self) - - def swap(self, v): - return _mscl.FatigueModes_swap(self, v) - - def begin(self): - return _mscl.FatigueModes_begin(self) - - def end(self): - return _mscl.FatigueModes_end(self) - - def rbegin(self): - return _mscl.FatigueModes_rbegin(self) - - def rend(self): - return _mscl.FatigueModes_rend(self) - - def clear(self): - return _mscl.FatigueModes_clear(self) - - def get_allocator(self): - return _mscl.FatigueModes_get_allocator(self) - - def pop_back(self): - return _mscl.FatigueModes_pop_back(self) - - def erase(self, *args): - return _mscl.FatigueModes_erase(self, *args) - - def __init__(self, *args): - _mscl.FatigueModes_swiginit(self, _mscl.new_FatigueModes(*args)) - - def push_back(self, x): - return _mscl.FatigueModes_push_back(self, x) - - def front(self): - return _mscl.FatigueModes_front(self) - - def back(self): - return _mscl.FatigueModes_back(self) - - def assign(self, n, x): - return _mscl.FatigueModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.FatigueModes_resize(self, *args) - - def insert(self, *args): - return _mscl.FatigueModes_insert(self, *args) - - def reserve(self, n): - return _mscl.FatigueModes_reserve(self, n) - - def capacity(self): - return _mscl.FatigueModes_capacity(self) - __swig_destroy__ = _mscl.delete_FatigueModes - -# Register FatigueModes in _mscl: -_mscl.FatigueModes_swigregister(FatigueModes) - -class Filters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Filters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Filters___nonzero__(self) - - def __bool__(self): - return _mscl.Filters___bool__(self) - - def __len__(self): - return _mscl.Filters___len__(self) - - def __getslice__(self, i, j): - return _mscl.Filters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Filters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Filters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Filters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Filters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Filters___setitem__(self, *args) - - def pop(self): - return _mscl.Filters_pop(self) - - def append(self, x): - return _mscl.Filters_append(self, x) - - def empty(self): - return _mscl.Filters_empty(self) - - def size(self): - return _mscl.Filters_size(self) - - def swap(self, v): - return _mscl.Filters_swap(self, v) - - def begin(self): - return _mscl.Filters_begin(self) - - def end(self): - return _mscl.Filters_end(self) - - def rbegin(self): - return _mscl.Filters_rbegin(self) - - def rend(self): - return _mscl.Filters_rend(self) - - def clear(self): - return _mscl.Filters_clear(self) - - def get_allocator(self): - return _mscl.Filters_get_allocator(self) - - def pop_back(self): - return _mscl.Filters_pop_back(self) - - def erase(self, *args): - return _mscl.Filters_erase(self, *args) - - def __init__(self, *args): - _mscl.Filters_swiginit(self, _mscl.new_Filters(*args)) - - def push_back(self, x): - return _mscl.Filters_push_back(self, x) - - def front(self): - return _mscl.Filters_front(self) - - def back(self): - return _mscl.Filters_back(self) - - def assign(self, n, x): - return _mscl.Filters_assign(self, n, x) - - def resize(self, *args): - return _mscl.Filters_resize(self, *args) - - def insert(self, *args): - return _mscl.Filters_insert(self, *args) - - def reserve(self, n): - return _mscl.Filters_reserve(self, n) - - def capacity(self): - return _mscl.Filters_capacity(self) - __swig_destroy__ = _mscl.delete_Filters - -# Register Filters in _mscl: -_mscl.Filters_swigregister(Filters) - -class HighPassFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HighPassFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HighPassFilters___nonzero__(self) - - def __bool__(self): - return _mscl.HighPassFilters___bool__(self) - - def __len__(self): - return _mscl.HighPassFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.HighPassFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HighPassFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HighPassFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HighPassFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HighPassFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HighPassFilters___setitem__(self, *args) - - def pop(self): - return _mscl.HighPassFilters_pop(self) - - def append(self, x): - return _mscl.HighPassFilters_append(self, x) - - def empty(self): - return _mscl.HighPassFilters_empty(self) - - def size(self): - return _mscl.HighPassFilters_size(self) - - def swap(self, v): - return _mscl.HighPassFilters_swap(self, v) - - def begin(self): - return _mscl.HighPassFilters_begin(self) - - def end(self): - return _mscl.HighPassFilters_end(self) - - def rbegin(self): - return _mscl.HighPassFilters_rbegin(self) - - def rend(self): - return _mscl.HighPassFilters_rend(self) - - def clear(self): - return _mscl.HighPassFilters_clear(self) - - def get_allocator(self): - return _mscl.HighPassFilters_get_allocator(self) - - def pop_back(self): - return _mscl.HighPassFilters_pop_back(self) - - def erase(self, *args): - return _mscl.HighPassFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.HighPassFilters_swiginit(self, _mscl.new_HighPassFilters(*args)) - - def push_back(self, x): - return _mscl.HighPassFilters_push_back(self, x) - - def front(self): - return _mscl.HighPassFilters_front(self) - - def back(self): - return _mscl.HighPassFilters_back(self) - - def assign(self, n, x): - return _mscl.HighPassFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.HighPassFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.HighPassFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.HighPassFilters_reserve(self, n) - - def capacity(self): - return _mscl.HighPassFilters_capacity(self) - __swig_destroy__ = _mscl.delete_HighPassFilters - -# Register HighPassFilters in _mscl: -_mscl.HighPassFilters_swigregister(HighPassFilters) - -class StorageLimitModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StorageLimitModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StorageLimitModes___nonzero__(self) - - def __bool__(self): - return _mscl.StorageLimitModes___bool__(self) - - def __len__(self): - return _mscl.StorageLimitModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.StorageLimitModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StorageLimitModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StorageLimitModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StorageLimitModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StorageLimitModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StorageLimitModes___setitem__(self, *args) - - def pop(self): - return _mscl.StorageLimitModes_pop(self) - - def append(self, x): - return _mscl.StorageLimitModes_append(self, x) - - def empty(self): - return _mscl.StorageLimitModes_empty(self) - - def size(self): - return _mscl.StorageLimitModes_size(self) - - def swap(self, v): - return _mscl.StorageLimitModes_swap(self, v) - - def begin(self): - return _mscl.StorageLimitModes_begin(self) - - def end(self): - return _mscl.StorageLimitModes_end(self) - - def rbegin(self): - return _mscl.StorageLimitModes_rbegin(self) - - def rend(self): - return _mscl.StorageLimitModes_rend(self) - - def clear(self): - return _mscl.StorageLimitModes_clear(self) - - def get_allocator(self): - return _mscl.StorageLimitModes_get_allocator(self) - - def pop_back(self): - return _mscl.StorageLimitModes_pop_back(self) - - def erase(self, *args): - return _mscl.StorageLimitModes_erase(self, *args) - - def __init__(self, *args): - _mscl.StorageLimitModes_swiginit(self, _mscl.new_StorageLimitModes(*args)) - - def push_back(self, x): - return _mscl.StorageLimitModes_push_back(self, x) - - def front(self): - return _mscl.StorageLimitModes_front(self) - - def back(self): - return _mscl.StorageLimitModes_back(self) - - def assign(self, n, x): - return _mscl.StorageLimitModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.StorageLimitModes_resize(self, *args) - - def insert(self, *args): - return _mscl.StorageLimitModes_insert(self, *args) - - def reserve(self, n): - return _mscl.StorageLimitModes_reserve(self, n) - - def capacity(self): - return _mscl.StorageLimitModes_capacity(self) - __swig_destroy__ = _mscl.delete_StorageLimitModes - -# Register StorageLimitModes in _mscl: -_mscl.StorageLimitModes_swigregister(StorageLimitModes) - -class InputRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.InputRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.InputRanges___nonzero__(self) - - def __bool__(self): - return _mscl.InputRanges___bool__(self) - - def __len__(self): - return _mscl.InputRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.InputRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.InputRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.InputRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.InputRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.InputRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.InputRanges___setitem__(self, *args) - - def pop(self): - return _mscl.InputRanges_pop(self) - - def append(self, x): - return _mscl.InputRanges_append(self, x) - - def empty(self): - return _mscl.InputRanges_empty(self) - - def size(self): - return _mscl.InputRanges_size(self) - - def swap(self, v): - return _mscl.InputRanges_swap(self, v) - - def begin(self): - return _mscl.InputRanges_begin(self) - - def end(self): - return _mscl.InputRanges_end(self) - - def rbegin(self): - return _mscl.InputRanges_rbegin(self) - - def rend(self): - return _mscl.InputRanges_rend(self) - - def clear(self): - return _mscl.InputRanges_clear(self) - - def get_allocator(self): - return _mscl.InputRanges_get_allocator(self) - - def pop_back(self): - return _mscl.InputRanges_pop_back(self) - - def erase(self, *args): - return _mscl.InputRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.InputRanges_swiginit(self, _mscl.new_InputRanges(*args)) - - def push_back(self, x): - return _mscl.InputRanges_push_back(self, x) - - def front(self): - return _mscl.InputRanges_front(self) - - def back(self): - return _mscl.InputRanges_back(self) - - def assign(self, n, x): - return _mscl.InputRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.InputRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.InputRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.InputRanges_reserve(self, n) - - def capacity(self): - return _mscl.InputRanges_capacity(self) - __swig_destroy__ = _mscl.delete_InputRanges - -# Register InputRanges in _mscl: -_mscl.InputRanges_swigregister(InputRanges) - -class DataModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataModes___nonzero__(self) - - def __bool__(self): - return _mscl.DataModes___bool__(self) - - def __len__(self): - return _mscl.DataModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataModes___setitem__(self, *args) - - def pop(self): - return _mscl.DataModes_pop(self) - - def append(self, x): - return _mscl.DataModes_append(self, x) - - def empty(self): - return _mscl.DataModes_empty(self) - - def size(self): - return _mscl.DataModes_size(self) - - def swap(self, v): - return _mscl.DataModes_swap(self, v) - - def begin(self): - return _mscl.DataModes_begin(self) - - def end(self): - return _mscl.DataModes_end(self) - - def rbegin(self): - return _mscl.DataModes_rbegin(self) - - def rend(self): - return _mscl.DataModes_rend(self) - - def clear(self): - return _mscl.DataModes_clear(self) - - def get_allocator(self): - return _mscl.DataModes_get_allocator(self) - - def pop_back(self): - return _mscl.DataModes_pop_back(self) - - def erase(self, *args): - return _mscl.DataModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DataModes_swiginit(self, _mscl.new_DataModes(*args)) - - def push_back(self, x): - return _mscl.DataModes_push_back(self, x) - - def front(self): - return _mscl.DataModes_front(self) - - def back(self): - return _mscl.DataModes_back(self) - - def assign(self, n, x): - return _mscl.DataModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DataModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DataModes_reserve(self, n) - - def capacity(self): - return _mscl.DataModes_capacity(self) - __swig_destroy__ = _mscl.delete_DataModes - -# Register DataModes in _mscl: -_mscl.DataModes_swigregister(DataModes) - -class CommProtocols(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommProtocols_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommProtocols___nonzero__(self) - - def __bool__(self): - return _mscl.CommProtocols___bool__(self) - - def __len__(self): - return _mscl.CommProtocols___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommProtocols___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommProtocols___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommProtocols___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommProtocols___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommProtocols___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommProtocols___setitem__(self, *args) - - def pop(self): - return _mscl.CommProtocols_pop(self) - - def append(self, x): - return _mscl.CommProtocols_append(self, x) - - def empty(self): - return _mscl.CommProtocols_empty(self) - - def size(self): - return _mscl.CommProtocols_size(self) - - def swap(self, v): - return _mscl.CommProtocols_swap(self, v) - - def begin(self): - return _mscl.CommProtocols_begin(self) - - def end(self): - return _mscl.CommProtocols_end(self) - - def rbegin(self): - return _mscl.CommProtocols_rbegin(self) - - def rend(self): - return _mscl.CommProtocols_rend(self) - - def clear(self): - return _mscl.CommProtocols_clear(self) - - def get_allocator(self): - return _mscl.CommProtocols_get_allocator(self) - - def pop_back(self): - return _mscl.CommProtocols_pop_back(self) - - def erase(self, *args): - return _mscl.CommProtocols_erase(self, *args) - - def __init__(self, *args): - _mscl.CommProtocols_swiginit(self, _mscl.new_CommProtocols(*args)) - - def push_back(self, x): - return _mscl.CommProtocols_push_back(self, x) - - def front(self): - return _mscl.CommProtocols_front(self) - - def back(self): - return _mscl.CommProtocols_back(self) - - def assign(self, n, x): - return _mscl.CommProtocols_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommProtocols_resize(self, *args) - - def insert(self, *args): - return _mscl.CommProtocols_insert(self, *args) - - def reserve(self, n): - return _mscl.CommProtocols_reserve(self, n) - - def capacity(self): - return _mscl.CommProtocols_capacity(self) - __swig_destroy__ = _mscl.delete_CommProtocols - -# Register CommProtocols in _mscl: -_mscl.CommProtocols_swigregister(CommProtocols) - -class Voltages(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Voltages_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Voltages___nonzero__(self) - - def __bool__(self): - return _mscl.Voltages___bool__(self) - - def __len__(self): - return _mscl.Voltages___len__(self) - - def __getslice__(self, i, j): - return _mscl.Voltages___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Voltages___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Voltages___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Voltages___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Voltages___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Voltages___setitem__(self, *args) - - def pop(self): - return _mscl.Voltages_pop(self) - - def append(self, x): - return _mscl.Voltages_append(self, x) - - def empty(self): - return _mscl.Voltages_empty(self) - - def size(self): - return _mscl.Voltages_size(self) - - def swap(self, v): - return _mscl.Voltages_swap(self, v) - - def begin(self): - return _mscl.Voltages_begin(self) - - def end(self): - return _mscl.Voltages_end(self) - - def rbegin(self): - return _mscl.Voltages_rbegin(self) - - def rend(self): - return _mscl.Voltages_rend(self) - - def clear(self): - return _mscl.Voltages_clear(self) - - def get_allocator(self): - return _mscl.Voltages_get_allocator(self) - - def pop_back(self): - return _mscl.Voltages_pop_back(self) - - def erase(self, *args): - return _mscl.Voltages_erase(self, *args) - - def __init__(self, *args): - _mscl.Voltages_swiginit(self, _mscl.new_Voltages(*args)) - - def push_back(self, x): - return _mscl.Voltages_push_back(self, x) - - def front(self): - return _mscl.Voltages_front(self) - - def back(self): - return _mscl.Voltages_back(self) - - def assign(self, n, x): - return _mscl.Voltages_assign(self, n, x) - - def resize(self, *args): - return _mscl.Voltages_resize(self, *args) - - def insert(self, *args): - return _mscl.Voltages_insert(self, *args) - - def reserve(self, n): - return _mscl.Voltages_reserve(self, n) - - def capacity(self): - return _mscl.Voltages_capacity(self) - __swig_destroy__ = _mscl.delete_Voltages - -# Register Voltages in _mscl: -_mscl.Voltages_swigregister(Voltages) - -class SensorOutputModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorOutputModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorOutputModes___nonzero__(self) - - def __bool__(self): - return _mscl.SensorOutputModes___bool__(self) - - def __len__(self): - return _mscl.SensorOutputModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorOutputModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorOutputModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorOutputModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorOutputModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorOutputModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorOutputModes___setitem__(self, *args) - - def pop(self): - return _mscl.SensorOutputModes_pop(self) - - def append(self, x): - return _mscl.SensorOutputModes_append(self, x) - - def empty(self): - return _mscl.SensorOutputModes_empty(self) - - def size(self): - return _mscl.SensorOutputModes_size(self) - - def swap(self, v): - return _mscl.SensorOutputModes_swap(self, v) - - def begin(self): - return _mscl.SensorOutputModes_begin(self) - - def end(self): - return _mscl.SensorOutputModes_end(self) - - def rbegin(self): - return _mscl.SensorOutputModes_rbegin(self) - - def rend(self): - return _mscl.SensorOutputModes_rend(self) - - def clear(self): - return _mscl.SensorOutputModes_clear(self) - - def get_allocator(self): - return _mscl.SensorOutputModes_get_allocator(self) - - def pop_back(self): - return _mscl.SensorOutputModes_pop_back(self) - - def erase(self, *args): - return _mscl.SensorOutputModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorOutputModes_swiginit(self, _mscl.new_SensorOutputModes(*args)) - - def push_back(self, x): - return _mscl.SensorOutputModes_push_back(self, x) - - def front(self): - return _mscl.SensorOutputModes_front(self) - - def back(self): - return _mscl.SensorOutputModes_back(self) - - def assign(self, n, x): - return _mscl.SensorOutputModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorOutputModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorOutputModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorOutputModes_reserve(self, n) - - def capacity(self): - return _mscl.SensorOutputModes_capacity(self) - __swig_destroy__ = _mscl.delete_SensorOutputModes - -# Register SensorOutputModes in _mscl: -_mscl.SensorOutputModes_swigregister(SensorOutputModes) - -class CfcFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CfcFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CfcFilters___nonzero__(self) - - def __bool__(self): - return _mscl.CfcFilters___bool__(self) - - def __len__(self): - return _mscl.CfcFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.CfcFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CfcFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CfcFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CfcFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CfcFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CfcFilters___setitem__(self, *args) - - def pop(self): - return _mscl.CfcFilters_pop(self) - - def append(self, x): - return _mscl.CfcFilters_append(self, x) - - def empty(self): - return _mscl.CfcFilters_empty(self) - - def size(self): - return _mscl.CfcFilters_size(self) - - def swap(self, v): - return _mscl.CfcFilters_swap(self, v) - - def begin(self): - return _mscl.CfcFilters_begin(self) - - def end(self): - return _mscl.CfcFilters_end(self) - - def rbegin(self): - return _mscl.CfcFilters_rbegin(self) - - def rend(self): - return _mscl.CfcFilters_rend(self) - - def clear(self): - return _mscl.CfcFilters_clear(self) - - def get_allocator(self): - return _mscl.CfcFilters_get_allocator(self) - - def pop_back(self): - return _mscl.CfcFilters_pop_back(self) - - def erase(self, *args): - return _mscl.CfcFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.CfcFilters_swiginit(self, _mscl.new_CfcFilters(*args)) - - def push_back(self, x): - return _mscl.CfcFilters_push_back(self, x) - - def front(self): - return _mscl.CfcFilters_front(self) - - def back(self): - return _mscl.CfcFilters_back(self) - - def assign(self, n, x): - return _mscl.CfcFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.CfcFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.CfcFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.CfcFilters_reserve(self, n) - - def capacity(self): - return _mscl.CfcFilters_capacity(self) - __swig_destroy__ = _mscl.delete_CfcFilters - -# Register CfcFilters in _mscl: -_mscl.CfcFilters_swigregister(CfcFilters) - -class TransducerTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransducerTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransducerTypes___nonzero__(self) - - def __bool__(self): - return _mscl.TransducerTypes___bool__(self) - - def __len__(self): - return _mscl.TransducerTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransducerTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransducerTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransducerTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransducerTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransducerTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransducerTypes___setitem__(self, *args) - - def pop(self): - return _mscl.TransducerTypes_pop(self) - - def append(self, x): - return _mscl.TransducerTypes_append(self, x) - - def empty(self): - return _mscl.TransducerTypes_empty(self) - - def size(self): - return _mscl.TransducerTypes_size(self) - - def swap(self, v): - return _mscl.TransducerTypes_swap(self, v) - - def begin(self): - return _mscl.TransducerTypes_begin(self) - - def end(self): - return _mscl.TransducerTypes_end(self) - - def rbegin(self): - return _mscl.TransducerTypes_rbegin(self) - - def rend(self): - return _mscl.TransducerTypes_rend(self) - - def clear(self): - return _mscl.TransducerTypes_clear(self) - - def get_allocator(self): - return _mscl.TransducerTypes_get_allocator(self) - - def pop_back(self): - return _mscl.TransducerTypes_pop_back(self) - - def erase(self, *args): - return _mscl.TransducerTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.TransducerTypes_swiginit(self, _mscl.new_TransducerTypes(*args)) - - def push_back(self, x): - return _mscl.TransducerTypes_push_back(self, x) - - def front(self): - return _mscl.TransducerTypes_front(self) - - def back(self): - return _mscl.TransducerTypes_back(self) - - def assign(self, n, x): - return _mscl.TransducerTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransducerTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.TransducerTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.TransducerTypes_reserve(self, n) - - def capacity(self): - return _mscl.TransducerTypes_capacity(self) - __swig_destroy__ = _mscl.delete_TransducerTypes - -# Register TransducerTypes in _mscl: -_mscl.TransducerTypes_swigregister(TransducerTypes) - -class EepromMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EepromMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EepromMap___nonzero__(self) - - def __bool__(self): - return _mscl.EepromMap___bool__(self) - - def __len__(self): - return _mscl.EepromMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.EepromMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.EepromMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.EepromMap_has_key(self, key) - - def keys(self): - return _mscl.EepromMap_keys(self) - - def values(self): - return _mscl.EepromMap_values(self) - - def items(self): - return _mscl.EepromMap_items(self) - - def __contains__(self, key): - return _mscl.EepromMap___contains__(self, key) - - def key_iterator(self): - return _mscl.EepromMap_key_iterator(self) - - def value_iterator(self): - return _mscl.EepromMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.EepromMap___setitem__(self, *args) - - def asdict(self): - return _mscl.EepromMap_asdict(self) - - def __init__(self, *args): - _mscl.EepromMap_swiginit(self, _mscl.new_EepromMap(*args)) - - def empty(self): - return _mscl.EepromMap_empty(self) - - def size(self): - return _mscl.EepromMap_size(self) - - def swap(self, v): - return _mscl.EepromMap_swap(self, v) - - def begin(self): - return _mscl.EepromMap_begin(self) - - def end(self): - return _mscl.EepromMap_end(self) - - def rbegin(self): - return _mscl.EepromMap_rbegin(self) - - def rend(self): - return _mscl.EepromMap_rend(self) - - def clear(self): - return _mscl.EepromMap_clear(self) - - def get_allocator(self): - return _mscl.EepromMap_get_allocator(self) - - def count(self, x): - return _mscl.EepromMap_count(self, x) - - def erase(self, *args): - return _mscl.EepromMap_erase(self, *args) - - def find(self, x): - return _mscl.EepromMap_find(self, x) - - def lower_bound(self, x): - return _mscl.EepromMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.EepromMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_EepromMap - -# Register EepromMap in _mscl: -_mscl.EepromMap_swigregister(EepromMap) - -class DerivedChannelMasks(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DerivedChannelMasks_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DerivedChannelMasks___nonzero__(self) - - def __bool__(self): - return _mscl.DerivedChannelMasks___bool__(self) - - def __len__(self): - return _mscl.DerivedChannelMasks___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DerivedChannelMasks___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DerivedChannelMasks___delitem__(self, key) - - def has_key(self, key): - return _mscl.DerivedChannelMasks_has_key(self, key) - - def keys(self): - return _mscl.DerivedChannelMasks_keys(self) - - def values(self): - return _mscl.DerivedChannelMasks_values(self) - - def items(self): - return _mscl.DerivedChannelMasks_items(self) - - def __contains__(self, key): - return _mscl.DerivedChannelMasks___contains__(self, key) - - def key_iterator(self): - return _mscl.DerivedChannelMasks_key_iterator(self) - - def value_iterator(self): - return _mscl.DerivedChannelMasks_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DerivedChannelMasks___setitem__(self, *args) - - def asdict(self): - return _mscl.DerivedChannelMasks_asdict(self) - - def __init__(self, *args): - _mscl.DerivedChannelMasks_swiginit(self, _mscl.new_DerivedChannelMasks(*args)) - - def empty(self): - return _mscl.DerivedChannelMasks_empty(self) - - def size(self): - return _mscl.DerivedChannelMasks_size(self) - - def swap(self, v): - return _mscl.DerivedChannelMasks_swap(self, v) - - def begin(self): - return _mscl.DerivedChannelMasks_begin(self) - - def end(self): - return _mscl.DerivedChannelMasks_end(self) - - def rbegin(self): - return _mscl.DerivedChannelMasks_rbegin(self) - - def rend(self): - return _mscl.DerivedChannelMasks_rend(self) - - def clear(self): - return _mscl.DerivedChannelMasks_clear(self) - - def get_allocator(self): - return _mscl.DerivedChannelMasks_get_allocator(self) - - def count(self, x): - return _mscl.DerivedChannelMasks_count(self, x) - - def erase(self, *args): - return _mscl.DerivedChannelMasks_erase(self, *args) - - def find(self, x): - return _mscl.DerivedChannelMasks_find(self, x) - - def lower_bound(self, x): - return _mscl.DerivedChannelMasks_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DerivedChannelMasks_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DerivedChannelMasks - -# Register DerivedChannelMasks in _mscl: -_mscl.DerivedChannelMasks_swigregister(DerivedChannelMasks) - -class DeviceStatusMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusMap_keys(self) - - def values(self): - return _mscl.DeviceStatusMap_values(self) - - def items(self): - return _mscl.DeviceStatusMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusMap_swiginit(self, _mscl.new_DeviceStatusMap(*args)) - - def empty(self): - return _mscl.DeviceStatusMap_empty(self) - - def size(self): - return _mscl.DeviceStatusMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusMap_begin(self) - - def end(self): - return _mscl.DeviceStatusMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusMap - -# Register DeviceStatusMap in _mscl: -_mscl.DeviceStatusMap_swigregister(DeviceStatusMap) - -class DeviceStatusValueMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusValueMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusValueMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusValueMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusValueMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusValueMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusValueMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusValueMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusValueMap_keys(self) - - def values(self): - return _mscl.DeviceStatusValueMap_values(self) - - def items(self): - return _mscl.DeviceStatusValueMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusValueMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusValueMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusValueMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusValueMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusValueMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusValueMap_swiginit(self, _mscl.new_DeviceStatusValueMap(*args)) - - def empty(self): - return _mscl.DeviceStatusValueMap_empty(self) - - def size(self): - return _mscl.DeviceStatusValueMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusValueMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusValueMap_begin(self) - - def end(self): - return _mscl.DeviceStatusValueMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusValueMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusValueMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusValueMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusValueMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusValueMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusValueMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusValueMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusValueMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusValueMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusValueMap - -# Register DeviceStatusValueMap in _mscl: -_mscl.DeviceStatusValueMap_swigregister(DeviceStatusValueMap) - -class SampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.SampleRates___bool__(self) - - def __len__(self): - return _mscl.SampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.SampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.SampleRates_pop(self) - - def append(self, x): - return _mscl.SampleRates_append(self, x) - - def empty(self): - return _mscl.SampleRates_empty(self) - - def size(self): - return _mscl.SampleRates_size(self) - - def swap(self, v): - return _mscl.SampleRates_swap(self, v) - - def begin(self): - return _mscl.SampleRates_begin(self) - - def end(self): - return _mscl.SampleRates_end(self) - - def rbegin(self): - return _mscl.SampleRates_rbegin(self) - - def rend(self): - return _mscl.SampleRates_rend(self) - - def clear(self): - return _mscl.SampleRates_clear(self) - - def get_allocator(self): - return _mscl.SampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.SampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.SampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.SampleRates_swiginit(self, _mscl.new_SampleRates(*args)) - - def push_back(self, x): - return _mscl.SampleRates_push_back(self, x) - - def front(self): - return _mscl.SampleRates_front(self) - - def back(self): - return _mscl.SampleRates_back(self) - - def assign(self, n, x): - return _mscl.SampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.SampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.SampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.SampleRates_reserve(self, n) - - def capacity(self): - return _mscl.SampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_SampleRates - -# Register SampleRates in _mscl: -_mscl.SampleRates_swigregister(SampleRates) - -class ConfigIssues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConfigIssues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConfigIssues___nonzero__(self) - - def __bool__(self): - return _mscl.ConfigIssues___bool__(self) - - def __len__(self): - return _mscl.ConfigIssues___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConfigIssues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConfigIssues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConfigIssues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConfigIssues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConfigIssues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConfigIssues___setitem__(self, *args) - - def pop(self): - return _mscl.ConfigIssues_pop(self) - - def append(self, x): - return _mscl.ConfigIssues_append(self, x) - - def empty(self): - return _mscl.ConfigIssues_empty(self) - - def size(self): - return _mscl.ConfigIssues_size(self) - - def swap(self, v): - return _mscl.ConfigIssues_swap(self, v) - - def begin(self): - return _mscl.ConfigIssues_begin(self) - - def end(self): - return _mscl.ConfigIssues_end(self) - - def rbegin(self): - return _mscl.ConfigIssues_rbegin(self) - - def rend(self): - return _mscl.ConfigIssues_rend(self) - - def clear(self): - return _mscl.ConfigIssues_clear(self) - - def get_allocator(self): - return _mscl.ConfigIssues_get_allocator(self) - - def pop_back(self): - return _mscl.ConfigIssues_pop_back(self) - - def erase(self, *args): - return _mscl.ConfigIssues_erase(self, *args) - - def __init__(self, *args): - _mscl.ConfigIssues_swiginit(self, _mscl.new_ConfigIssues(*args)) - - def push_back(self, x): - return _mscl.ConfigIssues_push_back(self, x) - - def front(self): - return _mscl.ConfigIssues_front(self) - - def back(self): - return _mscl.ConfigIssues_back(self) - - def assign(self, n, x): - return _mscl.ConfigIssues_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConfigIssues_resize(self, *args) - - def insert(self, *args): - return _mscl.ConfigIssues_insert(self, *args) - - def reserve(self, n): - return _mscl.ConfigIssues_reserve(self, n) - - def capacity(self): - return _mscl.ConfigIssues_capacity(self) - __swig_destroy__ = _mscl.delete_ConfigIssues - -# Register ConfigIssues in _mscl: -_mscl.ConfigIssues_swigregister(ConfigIssues) - -class MipChannelFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelFields_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelFields___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelFields___bool__(self) - - def __len__(self): - return _mscl.MipChannelFields___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelFields___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelFields___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelFields___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelFields___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelFields___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelFields___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelFields_pop(self) - - def append(self, x): - return _mscl.MipChannelFields_append(self, x) - - def empty(self): - return _mscl.MipChannelFields_empty(self) - - def size(self): - return _mscl.MipChannelFields_size(self) - - def swap(self, v): - return _mscl.MipChannelFields_swap(self, v) - - def begin(self): - return _mscl.MipChannelFields_begin(self) - - def end(self): - return _mscl.MipChannelFields_end(self) - - def rbegin(self): - return _mscl.MipChannelFields_rbegin(self) - - def rend(self): - return _mscl.MipChannelFields_rend(self) - - def clear(self): - return _mscl.MipChannelFields_clear(self) - - def get_allocator(self): - return _mscl.MipChannelFields_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelFields_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelFields_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelFields_swiginit(self, _mscl.new_MipChannelFields(*args)) - - def push_back(self, x): - return _mscl.MipChannelFields_push_back(self, x) - - def front(self): - return _mscl.MipChannelFields_front(self) - - def back(self): - return _mscl.MipChannelFields_back(self) - - def assign(self, n, x): - return _mscl.MipChannelFields_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelFields_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelFields_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelFields_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelFields_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelFields - -# Register MipChannelFields in _mscl: -_mscl.MipChannelFields_swigregister(MipChannelFields) - -class MipCommands(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommands_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommands___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommands___bool__(self) - - def __len__(self): - return _mscl.MipCommands___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommands___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommands___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommands___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommands___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommands___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommands___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommands_pop(self) - - def append(self, x): - return _mscl.MipCommands_append(self, x) - - def empty(self): - return _mscl.MipCommands_empty(self) - - def size(self): - return _mscl.MipCommands_size(self) - - def swap(self, v): - return _mscl.MipCommands_swap(self, v) - - def begin(self): - return _mscl.MipCommands_begin(self) - - def end(self): - return _mscl.MipCommands_end(self) - - def rbegin(self): - return _mscl.MipCommands_rbegin(self) - - def rend(self): - return _mscl.MipCommands_rend(self) - - def clear(self): - return _mscl.MipCommands_clear(self) - - def get_allocator(self): - return _mscl.MipCommands_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommands_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommands_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommands_swiginit(self, _mscl.new_MipCommands(*args)) - - def push_back(self, x): - return _mscl.MipCommands_push_back(self, x) - - def front(self): - return _mscl.MipCommands_front(self) - - def back(self): - return _mscl.MipCommands_back(self) - - def assign(self, n, x): - return _mscl.MipCommands_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommands_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommands_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommands_reserve(self, n) - - def capacity(self): - return _mscl.MipCommands_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommands - -# Register MipCommands in _mscl: -_mscl.MipCommands_swigregister(MipCommands) - -class MipDataClasses(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataClasses_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataClasses___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataClasses___bool__(self) - - def __len__(self): - return _mscl.MipDataClasses___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataClasses___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataClasses___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataClasses___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataClasses___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataClasses___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataClasses___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataClasses_pop(self) - - def append(self, x): - return _mscl.MipDataClasses_append(self, x) - - def empty(self): - return _mscl.MipDataClasses_empty(self) - - def size(self): - return _mscl.MipDataClasses_size(self) - - def swap(self, v): - return _mscl.MipDataClasses_swap(self, v) - - def begin(self): - return _mscl.MipDataClasses_begin(self) - - def end(self): - return _mscl.MipDataClasses_end(self) - - def rbegin(self): - return _mscl.MipDataClasses_rbegin(self) - - def rend(self): - return _mscl.MipDataClasses_rend(self) - - def clear(self): - return _mscl.MipDataClasses_clear(self) - - def get_allocator(self): - return _mscl.MipDataClasses_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataClasses_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataClasses_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataClasses_swiginit(self, _mscl.new_MipDataClasses(*args)) - - def push_back(self, x): - return _mscl.MipDataClasses_push_back(self, x) - - def front(self): - return _mscl.MipDataClasses_front(self) - - def back(self): - return _mscl.MipDataClasses_back(self) - - def assign(self, n, x): - return _mscl.MipDataClasses_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataClasses_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataClasses_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataClasses_reserve(self, n) - - def capacity(self): - return _mscl.MipDataClasses_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataClasses - -# Register MipDataClasses in _mscl: -_mscl.MipDataClasses_swigregister(MipDataClasses) - -class MipChannelIdentifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelIdentifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelIdentifiers___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelIdentifiers___bool__(self) - - def __len__(self): - return _mscl.MipChannelIdentifiers___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelIdentifiers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelIdentifiers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelIdentifiers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelIdentifiers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelIdentifiers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelIdentifiers___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelIdentifiers_pop(self) - - def append(self, x): - return _mscl.MipChannelIdentifiers_append(self, x) - - def empty(self): - return _mscl.MipChannelIdentifiers_empty(self) - - def size(self): - return _mscl.MipChannelIdentifiers_size(self) - - def swap(self, v): - return _mscl.MipChannelIdentifiers_swap(self, v) - - def begin(self): - return _mscl.MipChannelIdentifiers_begin(self) - - def end(self): - return _mscl.MipChannelIdentifiers_end(self) - - def rbegin(self): - return _mscl.MipChannelIdentifiers_rbegin(self) - - def rend(self): - return _mscl.MipChannelIdentifiers_rend(self) - - def clear(self): - return _mscl.MipChannelIdentifiers_clear(self) - - def get_allocator(self): - return _mscl.MipChannelIdentifiers_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelIdentifiers_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelIdentifiers_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelIdentifiers_swiginit(self, _mscl.new_MipChannelIdentifiers(*args)) - - def push_back(self, x): - return _mscl.MipChannelIdentifiers_push_back(self, x) - - def front(self): - return _mscl.MipChannelIdentifiers_front(self) - - def back(self): - return _mscl.MipChannelIdentifiers_back(self) - - def assign(self, n, x): - return _mscl.MipChannelIdentifiers_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelIdentifiers_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelIdentifiers_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelIdentifiers_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelIdentifiers_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelIdentifiers - -# Register MipChannelIdentifiers in _mscl: -_mscl.MipChannelIdentifiers_swigregister(MipChannelIdentifiers) - -class MipCommandSet(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandSet_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandSet___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandSet___bool__(self) - - def __len__(self): - return _mscl.MipCommandSet___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandSet___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandSet___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandSet___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandSet___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandSet___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandSet___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandSet_pop(self) - - def append(self, x): - return _mscl.MipCommandSet_append(self, x) - - def empty(self): - return _mscl.MipCommandSet_empty(self) - - def size(self): - return _mscl.MipCommandSet_size(self) - - def swap(self, v): - return _mscl.MipCommandSet_swap(self, v) - - def begin(self): - return _mscl.MipCommandSet_begin(self) - - def end(self): - return _mscl.MipCommandSet_end(self) - - def rbegin(self): - return _mscl.MipCommandSet_rbegin(self) - - def rend(self): - return _mscl.MipCommandSet_rend(self) - - def clear(self): - return _mscl.MipCommandSet_clear(self) - - def get_allocator(self): - return _mscl.MipCommandSet_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandSet_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandSet_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandSet_swiginit(self, _mscl.new_MipCommandSet(*args)) - - def push_back(self, x): - return _mscl.MipCommandSet_push_back(self, x) - - def front(self): - return _mscl.MipCommandSet_front(self) - - def back(self): - return _mscl.MipCommandSet_back(self) - - def assign(self, n, x): - return _mscl.MipCommandSet_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandSet_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandSet_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandSet_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandSet_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandSet - -# Register MipCommandSet in _mscl: -_mscl.MipCommandSet_swigregister(MipCommandSet) - -class MipFieldValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipFieldValues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipFieldValues___nonzero__(self) - - def __bool__(self): - return _mscl.MipFieldValues___bool__(self) - - def __len__(self): - return _mscl.MipFieldValues___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipFieldValues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipFieldValues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipFieldValues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipFieldValues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipFieldValues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipFieldValues___setitem__(self, *args) - - def pop(self): - return _mscl.MipFieldValues_pop(self) - - def append(self, x): - return _mscl.MipFieldValues_append(self, x) - - def empty(self): - return _mscl.MipFieldValues_empty(self) - - def size(self): - return _mscl.MipFieldValues_size(self) - - def swap(self, v): - return _mscl.MipFieldValues_swap(self, v) - - def begin(self): - return _mscl.MipFieldValues_begin(self) - - def end(self): - return _mscl.MipFieldValues_end(self) - - def rbegin(self): - return _mscl.MipFieldValues_rbegin(self) - - def rend(self): - return _mscl.MipFieldValues_rend(self) - - def clear(self): - return _mscl.MipFieldValues_clear(self) - - def get_allocator(self): - return _mscl.MipFieldValues_get_allocator(self) - - def pop_back(self): - return _mscl.MipFieldValues_pop_back(self) - - def erase(self, *args): - return _mscl.MipFieldValues_erase(self, *args) - - def __init__(self, *args): - _mscl.MipFieldValues_swiginit(self, _mscl.new_MipFieldValues(*args)) - - def push_back(self, x): - return _mscl.MipFieldValues_push_back(self, x) - - def front(self): - return _mscl.MipFieldValues_front(self) - - def back(self): - return _mscl.MipFieldValues_back(self) - - def assign(self, n, x): - return _mscl.MipFieldValues_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipFieldValues_resize(self, *args) - - def insert(self, *args): - return _mscl.MipFieldValues_insert(self, *args) - - def reserve(self, n): - return _mscl.MipFieldValues_reserve(self, n) - - def capacity(self): - return _mscl.MipFieldValues_capacity(self) - __swig_destroy__ = _mscl.delete_MipFieldValues - -# Register MipFieldValues in _mscl: -_mscl.MipFieldValues_swigregister(MipFieldValues) - -class MipCommandParamPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipCommandParamPair_swiginit(self, _mscl.new_MipCommandParamPair(*args)) - first = property(_mscl.MipCommandParamPair_first_get, _mscl.MipCommandParamPair_first_set) - second = property(_mscl.MipCommandParamPair_second_get, _mscl.MipCommandParamPair_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_MipCommandParamPair - -# Register MipCommandParamPair in _mscl: -_mscl.MipCommandParamPair_swigregister(MipCommandParamPair) - -class MipCommandParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandParameters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandParameters___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandParameters___bool__(self) - - def __len__(self): - return _mscl.MipCommandParameters___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandParameters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandParameters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandParameters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandParameters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandParameters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandParameters___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandParameters_pop(self) - - def append(self, x): - return _mscl.MipCommandParameters_append(self, x) - - def empty(self): - return _mscl.MipCommandParameters_empty(self) - - def size(self): - return _mscl.MipCommandParameters_size(self) - - def swap(self, v): - return _mscl.MipCommandParameters_swap(self, v) - - def begin(self): - return _mscl.MipCommandParameters_begin(self) - - def end(self): - return _mscl.MipCommandParameters_end(self) - - def rbegin(self): - return _mscl.MipCommandParameters_rbegin(self) - - def rend(self): - return _mscl.MipCommandParameters_rend(self) - - def clear(self): - return _mscl.MipCommandParameters_clear(self) - - def get_allocator(self): - return _mscl.MipCommandParameters_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandParameters_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandParameters_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandParameters_swiginit(self, _mscl.new_MipCommandParameters(*args)) - - def push_back(self, x): - return _mscl.MipCommandParameters_push_back(self, x) - - def front(self): - return _mscl.MipCommandParameters_front(self) - - def back(self): - return _mscl.MipCommandParameters_back(self) - - def assign(self, n, x): - return _mscl.MipCommandParameters_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandParameters_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandParameters_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandParameters_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandParameters_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandParameters - -# Register MipCommandParameters in _mscl: -_mscl.MipCommandParameters_swigregister(MipCommandParameters) - -class ChannelIndex(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ChannelIndex_swiginit(self, _mscl.new_ChannelIndex(*args)) - first = property(_mscl.ChannelIndex_first_get, _mscl.ChannelIndex_first_set) - second = property(_mscl.ChannelIndex_second_get, _mscl.ChannelIndex_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_ChannelIndex - -# Register ChannelIndex in _mscl: -_mscl.ChannelIndex_swigregister(ChannelIndex) - -class ChannelIndices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelIndices_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelIndices___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelIndices___bool__(self) - - def __len__(self): - return _mscl.ChannelIndices___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelIndices___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelIndices___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelIndices___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelIndices___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelIndices___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelIndices___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelIndices_pop(self) - - def append(self, x): - return _mscl.ChannelIndices_append(self, x) - - def empty(self): - return _mscl.ChannelIndices_empty(self) - - def size(self): - return _mscl.ChannelIndices_size(self) - - def swap(self, v): - return _mscl.ChannelIndices_swap(self, v) - - def begin(self): - return _mscl.ChannelIndices_begin(self) - - def end(self): - return _mscl.ChannelIndices_end(self) - - def rbegin(self): - return _mscl.ChannelIndices_rbegin(self) - - def rend(self): - return _mscl.ChannelIndices_rend(self) - - def clear(self): - return _mscl.ChannelIndices_clear(self) - - def get_allocator(self): - return _mscl.ChannelIndices_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelIndices_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelIndices_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelIndices_swiginit(self, _mscl.new_ChannelIndices(*args)) - - def push_back(self, x): - return _mscl.ChannelIndices_push_back(self, x) - - def front(self): - return _mscl.ChannelIndices_front(self) - - def back(self): - return _mscl.ChannelIndices_back(self) - - def assign(self, n, x): - return _mscl.ChannelIndices_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelIndices_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelIndices_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelIndices_reserve(self, n) - - def capacity(self): - return _mscl.ChannelIndices_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelIndices - -# Register ChannelIndices in _mscl: -_mscl.ChannelIndices_swigregister(ChannelIndices) - -class ChannelFieldQualifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelFieldQualifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelFieldQualifiers___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelFieldQualifiers___bool__(self) - - def __len__(self): - return _mscl.ChannelFieldQualifiers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelFieldQualifiers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelFieldQualifiers___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelFieldQualifiers_has_key(self, key) - - def keys(self): - return _mscl.ChannelFieldQualifiers_keys(self) - - def values(self): - return _mscl.ChannelFieldQualifiers_values(self) - - def items(self): - return _mscl.ChannelFieldQualifiers_items(self) - - def __contains__(self, key): - return _mscl.ChannelFieldQualifiers___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelFieldQualifiers_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelFieldQualifiers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelFieldQualifiers___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelFieldQualifiers_asdict(self) - - def __init__(self, *args): - _mscl.ChannelFieldQualifiers_swiginit(self, _mscl.new_ChannelFieldQualifiers(*args)) - - def empty(self): - return _mscl.ChannelFieldQualifiers_empty(self) - - def size(self): - return _mscl.ChannelFieldQualifiers_size(self) - - def swap(self, v): - return _mscl.ChannelFieldQualifiers_swap(self, v) - - def begin(self): - return _mscl.ChannelFieldQualifiers_begin(self) - - def end(self): - return _mscl.ChannelFieldQualifiers_end(self) - - def rbegin(self): - return _mscl.ChannelFieldQualifiers_rbegin(self) - - def rend(self): - return _mscl.ChannelFieldQualifiers_rend(self) - - def clear(self): - return _mscl.ChannelFieldQualifiers_clear(self) - - def get_allocator(self): - return _mscl.ChannelFieldQualifiers_get_allocator(self) - - def count(self, x): - return _mscl.ChannelFieldQualifiers_count(self, x) - - def erase(self, *args): - return _mscl.ChannelFieldQualifiers_erase(self, *args) - - def find(self, x): - return _mscl.ChannelFieldQualifiers_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelFieldQualifiers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelFieldQualifiers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelFieldQualifiers - -# Register ChannelFieldQualifiers in _mscl: -_mscl.ChannelFieldQualifiers_swigregister(ChannelFieldQualifiers) - -class GnssReceivers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssReceivers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssReceivers___nonzero__(self) - - def __bool__(self): - return _mscl.GnssReceivers___bool__(self) - - def __len__(self): - return _mscl.GnssReceivers___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssReceivers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssReceivers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssReceivers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssReceivers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssReceivers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssReceivers___setitem__(self, *args) - - def pop(self): - return _mscl.GnssReceivers_pop(self) - - def append(self, x): - return _mscl.GnssReceivers_append(self, x) - - def empty(self): - return _mscl.GnssReceivers_empty(self) - - def size(self): - return _mscl.GnssReceivers_size(self) - - def swap(self, v): - return _mscl.GnssReceivers_swap(self, v) - - def begin(self): - return _mscl.GnssReceivers_begin(self) - - def end(self): - return _mscl.GnssReceivers_end(self) - - def rbegin(self): - return _mscl.GnssReceivers_rbegin(self) - - def rend(self): - return _mscl.GnssReceivers_rend(self) - - def clear(self): - return _mscl.GnssReceivers_clear(self) - - def get_allocator(self): - return _mscl.GnssReceivers_get_allocator(self) - - def pop_back(self): - return _mscl.GnssReceivers_pop_back(self) - - def erase(self, *args): - return _mscl.GnssReceivers_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssReceivers_swiginit(self, _mscl.new_GnssReceivers(*args)) - - def push_back(self, x): - return _mscl.GnssReceivers_push_back(self, x) - - def front(self): - return _mscl.GnssReceivers_front(self) - - def back(self): - return _mscl.GnssReceivers_back(self) - - def assign(self, n, x): - return _mscl.GnssReceivers_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssReceivers_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssReceivers_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssReceivers_reserve(self, n) - - def capacity(self): - return _mscl.GnssReceivers_capacity(self) - __swig_destroy__ = _mscl.delete_GnssReceivers - -# Register GnssReceivers in _mscl: -_mscl.GnssReceivers_swigregister(GnssReceivers) - -class SensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRanges___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRanges___bool__(self) - - def __len__(self): - return _mscl.SensorRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorRanges___setitem__(self, *args) - - def pop(self): - return _mscl.SensorRanges_pop(self) - - def append(self, x): - return _mscl.SensorRanges_append(self, x) - - def empty(self): - return _mscl.SensorRanges_empty(self) - - def size(self): - return _mscl.SensorRanges_size(self) - - def swap(self, v): - return _mscl.SensorRanges_swap(self, v) - - def begin(self): - return _mscl.SensorRanges_begin(self) - - def end(self): - return _mscl.SensorRanges_end(self) - - def rbegin(self): - return _mscl.SensorRanges_rbegin(self) - - def rend(self): - return _mscl.SensorRanges_rend(self) - - def clear(self): - return _mscl.SensorRanges_clear(self) - - def get_allocator(self): - return _mscl.SensorRanges_get_allocator(self) - - def pop_back(self): - return _mscl.SensorRanges_pop_back(self) - - def erase(self, *args): - return _mscl.SensorRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorRanges_swiginit(self, _mscl.new_SensorRanges(*args)) - - def push_back(self, x): - return _mscl.SensorRanges_push_back(self, x) - - def front(self): - return _mscl.SensorRanges_front(self) - - def back(self): - return _mscl.SensorRanges_back(self) - - def assign(self, n, x): - return _mscl.SensorRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorRanges_reserve(self, n) - - def capacity(self): - return _mscl.SensorRanges_capacity(self) - __swig_destroy__ = _mscl.delete_SensorRanges - -# Register SensorRanges in _mscl: -_mscl.SensorRanges_swigregister(SensorRanges) - -class SensorRangeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRangeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRangeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRangeOptions___bool__(self) - - def __len__(self): - return _mscl.SensorRangeOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SensorRangeOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SensorRangeOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.SensorRangeOptions_has_key(self, key) - - def keys(self): - return _mscl.SensorRangeOptions_keys(self) - - def values(self): - return _mscl.SensorRangeOptions_values(self) - - def items(self): - return _mscl.SensorRangeOptions_items(self) - - def __contains__(self, key): - return _mscl.SensorRangeOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.SensorRangeOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.SensorRangeOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SensorRangeOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.SensorRangeOptions_asdict(self) - - def __init__(self, *args): - _mscl.SensorRangeOptions_swiginit(self, _mscl.new_SensorRangeOptions(*args)) - - def empty(self): - return _mscl.SensorRangeOptions_empty(self) - - def size(self): - return _mscl.SensorRangeOptions_size(self) - - def swap(self, v): - return _mscl.SensorRangeOptions_swap(self, v) - - def begin(self): - return _mscl.SensorRangeOptions_begin(self) - - def end(self): - return _mscl.SensorRangeOptions_end(self) - - def rbegin(self): - return _mscl.SensorRangeOptions_rbegin(self) - - def rend(self): - return _mscl.SensorRangeOptions_rend(self) - - def clear(self): - return _mscl.SensorRangeOptions_clear(self) - - def get_allocator(self): - return _mscl.SensorRangeOptions_get_allocator(self) - - def count(self, x): - return _mscl.SensorRangeOptions_count(self, x) - - def erase(self, *args): - return _mscl.SensorRangeOptions_erase(self, *args) - - def find(self, x): - return _mscl.SensorRangeOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.SensorRangeOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SensorRangeOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SensorRangeOptions - -# Register SensorRangeOptions in _mscl: -_mscl.SensorRangeOptions_swigregister(SensorRangeOptions) - -class CommPortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommPortInfo_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommPortInfo___nonzero__(self) - - def __bool__(self): - return _mscl.CommPortInfo___bool__(self) - - def __len__(self): - return _mscl.CommPortInfo___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommPortInfo___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommPortInfo___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommPortInfo___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommPortInfo___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommPortInfo___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommPortInfo___setitem__(self, *args) - - def pop(self): - return _mscl.CommPortInfo_pop(self) - - def append(self, x): - return _mscl.CommPortInfo_append(self, x) - - def empty(self): - return _mscl.CommPortInfo_empty(self) - - def size(self): - return _mscl.CommPortInfo_size(self) - - def swap(self, v): - return _mscl.CommPortInfo_swap(self, v) - - def begin(self): - return _mscl.CommPortInfo_begin(self) - - def end(self): - return _mscl.CommPortInfo_end(self) - - def rbegin(self): - return _mscl.CommPortInfo_rbegin(self) - - def rend(self): - return _mscl.CommPortInfo_rend(self) - - def clear(self): - return _mscl.CommPortInfo_clear(self) - - def get_allocator(self): - return _mscl.CommPortInfo_get_allocator(self) - - def pop_back(self): - return _mscl.CommPortInfo_pop_back(self) - - def erase(self, *args): - return _mscl.CommPortInfo_erase(self, *args) - - def __init__(self, *args): - _mscl.CommPortInfo_swiginit(self, _mscl.new_CommPortInfo(*args)) - - def push_back(self, x): - return _mscl.CommPortInfo_push_back(self, x) - - def front(self): - return _mscl.CommPortInfo_front(self) - - def back(self): - return _mscl.CommPortInfo_back(self) - - def assign(self, n, x): - return _mscl.CommPortInfo_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommPortInfo_resize(self, *args) - - def insert(self, *args): - return _mscl.CommPortInfo_insert(self, *args) - - def reserve(self, n): - return _mscl.CommPortInfo_reserve(self, n) - - def capacity(self): - return _mscl.CommPortInfo_capacity(self) - __swig_destroy__ = _mscl.delete_CommPortInfo - -# Register CommPortInfo in _mscl: -_mscl.CommPortInfo_swigregister(CommPortInfo) - -class EventTriggerStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTriggerStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTriggerStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventTriggerStatus___bool__(self) - - def __len__(self): - return _mscl.EventTriggerStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTriggerStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTriggerStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTriggerStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTriggerStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTriggerStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTriggerStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventTriggerStatus_pop(self) - - def append(self, x): - return _mscl.EventTriggerStatus_append(self, x) - - def empty(self): - return _mscl.EventTriggerStatus_empty(self) - - def size(self): - return _mscl.EventTriggerStatus_size(self) - - def swap(self, v): - return _mscl.EventTriggerStatus_swap(self, v) - - def begin(self): - return _mscl.EventTriggerStatus_begin(self) - - def end(self): - return _mscl.EventTriggerStatus_end(self) - - def rbegin(self): - return _mscl.EventTriggerStatus_rbegin(self) - - def rend(self): - return _mscl.EventTriggerStatus_rend(self) - - def clear(self): - return _mscl.EventTriggerStatus_clear(self) - - def get_allocator(self): - return _mscl.EventTriggerStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventTriggerStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventTriggerStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTriggerStatus_swiginit(self, _mscl.new_EventTriggerStatus(*args)) - - def push_back(self, x): - return _mscl.EventTriggerStatus_push_back(self, x) - - def front(self): - return _mscl.EventTriggerStatus_front(self) - - def back(self): - return _mscl.EventTriggerStatus_back(self) - - def assign(self, n, x): - return _mscl.EventTriggerStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTriggerStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTriggerStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTriggerStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventTriggerStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventTriggerStatus - -# Register EventTriggerStatus in _mscl: -_mscl.EventTriggerStatus_swigregister(EventTriggerStatus) - -class EventActionStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventActionStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventActionStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventActionStatus___bool__(self) - - def __len__(self): - return _mscl.EventActionStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventActionStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventActionStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventActionStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventActionStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventActionStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventActionStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventActionStatus_pop(self) - - def append(self, x): - return _mscl.EventActionStatus_append(self, x) - - def empty(self): - return _mscl.EventActionStatus_empty(self) - - def size(self): - return _mscl.EventActionStatus_size(self) - - def swap(self, v): - return _mscl.EventActionStatus_swap(self, v) - - def begin(self): - return _mscl.EventActionStatus_begin(self) - - def end(self): - return _mscl.EventActionStatus_end(self) - - def rbegin(self): - return _mscl.EventActionStatus_rbegin(self) - - def rend(self): - return _mscl.EventActionStatus_rend(self) - - def clear(self): - return _mscl.EventActionStatus_clear(self) - - def get_allocator(self): - return _mscl.EventActionStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventActionStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventActionStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventActionStatus_swiginit(self, _mscl.new_EventActionStatus(*args)) - - def push_back(self, x): - return _mscl.EventActionStatus_push_back(self, x) - - def front(self): - return _mscl.EventActionStatus_front(self) - - def back(self): - return _mscl.EventActionStatus_back(self) - - def assign(self, n, x): - return _mscl.EventActionStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventActionStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventActionStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventActionStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventActionStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventActionStatus - -# Register EventActionStatus in _mscl: -_mscl.EventActionStatus_swigregister(EventActionStatus) - -class ChannelGroups(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroups_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroups___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroups___bool__(self) - - def __len__(self): - return _mscl.ChannelGroups___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroups___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroups___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroups___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroups___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroups___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroups___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroups_pop(self) - - def append(self, x): - return _mscl.ChannelGroups_append(self, x) - - def empty(self): - return _mscl.ChannelGroups_empty(self) - - def size(self): - return _mscl.ChannelGroups_size(self) - - def swap(self, v): - return _mscl.ChannelGroups_swap(self, v) - - def begin(self): - return _mscl.ChannelGroups_begin(self) - - def end(self): - return _mscl.ChannelGroups_end(self) - - def rbegin(self): - return _mscl.ChannelGroups_rbegin(self) - - def rend(self): - return _mscl.ChannelGroups_rend(self) - - def clear(self): - return _mscl.ChannelGroups_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroups_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroups_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroups_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroups_swiginit(self, _mscl.new_ChannelGroups(*args)) - - def push_back(self, x): - return _mscl.ChannelGroups_push_back(self, x) - - def front(self): - return _mscl.ChannelGroups_front(self) - - def back(self): - return _mscl.ChannelGroups_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroups_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroups_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroups_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroups_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroups_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroups - -# Register ChannelGroups in _mscl: -_mscl.ChannelGroups_swigregister(ChannelGroups) - -class WirelessChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessChannels___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessChannels___bool__(self) - - def __len__(self): - return _mscl.WirelessChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessChannels___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessChannels_pop(self) - - def append(self, x): - return _mscl.WirelessChannels_append(self, x) - - def empty(self): - return _mscl.WirelessChannels_empty(self) - - def size(self): - return _mscl.WirelessChannels_size(self) - - def swap(self, v): - return _mscl.WirelessChannels_swap(self, v) - - def begin(self): - return _mscl.WirelessChannels_begin(self) - - def end(self): - return _mscl.WirelessChannels_end(self) - - def rbegin(self): - return _mscl.WirelessChannels_rbegin(self) - - def rend(self): - return _mscl.WirelessChannels_rend(self) - - def clear(self): - return _mscl.WirelessChannels_clear(self) - - def get_allocator(self): - return _mscl.WirelessChannels_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessChannels_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessChannels_swiginit(self, _mscl.new_WirelessChannels(*args)) - - def push_back(self, x): - return _mscl.WirelessChannels_push_back(self, x) - - def front(self): - return _mscl.WirelessChannels_front(self) - - def back(self): - return _mscl.WirelessChannels_back(self) - - def assign(self, n, x): - return _mscl.WirelessChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessChannels_reserve(self, n) - - def capacity(self): - return _mscl.WirelessChannels_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessChannels - -# Register WirelessChannels in _mscl: -_mscl.WirelessChannels_swigregister(WirelessChannels) - -class DamageAngles(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DamageAngles_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DamageAngles___nonzero__(self) - - def __bool__(self): - return _mscl.DamageAngles___bool__(self) - - def __len__(self): - return _mscl.DamageAngles___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DamageAngles___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DamageAngles___delitem__(self, key) - - def has_key(self, key): - return _mscl.DamageAngles_has_key(self, key) - - def keys(self): - return _mscl.DamageAngles_keys(self) - - def values(self): - return _mscl.DamageAngles_values(self) - - def items(self): - return _mscl.DamageAngles_items(self) - - def __contains__(self, key): - return _mscl.DamageAngles___contains__(self, key) - - def key_iterator(self): - return _mscl.DamageAngles_key_iterator(self) - - def value_iterator(self): - return _mscl.DamageAngles_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DamageAngles___setitem__(self, *args) - - def asdict(self): - return _mscl.DamageAngles_asdict(self) - - def __init__(self, *args): - _mscl.DamageAngles_swiginit(self, _mscl.new_DamageAngles(*args)) - - def empty(self): - return _mscl.DamageAngles_empty(self) - - def size(self): - return _mscl.DamageAngles_size(self) - - def swap(self, v): - return _mscl.DamageAngles_swap(self, v) - - def begin(self): - return _mscl.DamageAngles_begin(self) - - def end(self): - return _mscl.DamageAngles_end(self) - - def rbegin(self): - return _mscl.DamageAngles_rbegin(self) - - def rend(self): - return _mscl.DamageAngles_rend(self) - - def clear(self): - return _mscl.DamageAngles_clear(self) - - def get_allocator(self): - return _mscl.DamageAngles_get_allocator(self) - - def count(self, x): - return _mscl.DamageAngles_count(self, x) - - def erase(self, *args): - return _mscl.DamageAngles_erase(self, *args) - - def find(self, x): - return _mscl.DamageAngles_find(self, x) - - def lower_bound(self, x): - return _mscl.DamageAngles_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DamageAngles_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DamageAngles - -# Register DamageAngles in _mscl: -_mscl.DamageAngles_swigregister(DamageAngles) - -class SnCurveSegments(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SnCurveSegments_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SnCurveSegments___nonzero__(self) - - def __bool__(self): - return _mscl.SnCurveSegments___bool__(self) - - def __len__(self): - return _mscl.SnCurveSegments___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SnCurveSegments___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SnCurveSegments___delitem__(self, key) - - def has_key(self, key): - return _mscl.SnCurveSegments_has_key(self, key) - - def keys(self): - return _mscl.SnCurveSegments_keys(self) - - def values(self): - return _mscl.SnCurveSegments_values(self) - - def items(self): - return _mscl.SnCurveSegments_items(self) - - def __contains__(self, key): - return _mscl.SnCurveSegments___contains__(self, key) - - def key_iterator(self): - return _mscl.SnCurveSegments_key_iterator(self) - - def value_iterator(self): - return _mscl.SnCurveSegments_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SnCurveSegments___setitem__(self, *args) - - def asdict(self): - return _mscl.SnCurveSegments_asdict(self) - - def __init__(self, *args): - _mscl.SnCurveSegments_swiginit(self, _mscl.new_SnCurveSegments(*args)) - - def empty(self): - return _mscl.SnCurveSegments_empty(self) - - def size(self): - return _mscl.SnCurveSegments_size(self) - - def swap(self, v): - return _mscl.SnCurveSegments_swap(self, v) - - def begin(self): - return _mscl.SnCurveSegments_begin(self) - - def end(self): - return _mscl.SnCurveSegments_end(self) - - def rbegin(self): - return _mscl.SnCurveSegments_rbegin(self) - - def rend(self): - return _mscl.SnCurveSegments_rend(self) - - def clear(self): - return _mscl.SnCurveSegments_clear(self) - - def get_allocator(self): - return _mscl.SnCurveSegments_get_allocator(self) - - def count(self, x): - return _mscl.SnCurveSegments_count(self, x) - - def erase(self, *args): - return _mscl.SnCurveSegments_erase(self, *args) - - def find(self, x): - return _mscl.SnCurveSegments_find(self, x) - - def lower_bound(self, x): - return _mscl.SnCurveSegments_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SnCurveSegments_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SnCurveSegments - -# Register SnCurveSegments in _mscl: -_mscl.SnCurveSegments_swigregister(SnCurveSegments) - -class RfSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RfSweep_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RfSweep___nonzero__(self) - - def __bool__(self): - return _mscl.RfSweep___bool__(self) - - def __len__(self): - return _mscl.RfSweep___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.RfSweep___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.RfSweep___delitem__(self, key) - - def has_key(self, key): - return _mscl.RfSweep_has_key(self, key) - - def keys(self): - return _mscl.RfSweep_keys(self) - - def values(self): - return _mscl.RfSweep_values(self) - - def items(self): - return _mscl.RfSweep_items(self) - - def __contains__(self, key): - return _mscl.RfSweep___contains__(self, key) - - def key_iterator(self): - return _mscl.RfSweep_key_iterator(self) - - def value_iterator(self): - return _mscl.RfSweep_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.RfSweep___setitem__(self, *args) - - def asdict(self): - return _mscl.RfSweep_asdict(self) - - def __init__(self, *args): - _mscl.RfSweep_swiginit(self, _mscl.new_RfSweep(*args)) - - def empty(self): - return _mscl.RfSweep_empty(self) - - def size(self): - return _mscl.RfSweep_size(self) - - def swap(self, v): - return _mscl.RfSweep_swap(self, v) - - def begin(self): - return _mscl.RfSweep_begin(self) - - def end(self): - return _mscl.RfSweep_end(self) - - def rbegin(self): - return _mscl.RfSweep_rbegin(self) - - def rend(self): - return _mscl.RfSweep_rend(self) - - def clear(self): - return _mscl.RfSweep_clear(self) - - def get_allocator(self): - return _mscl.RfSweep_get_allocator(self) - - def count(self, x): - return _mscl.RfSweep_count(self, x) - - def erase(self, *args): - return _mscl.RfSweep_erase(self, *args) - - def find(self, x): - return _mscl.RfSweep_find(self, x) - - def lower_bound(self, x): - return _mscl.RfSweep_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.RfSweep_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_RfSweep - -# Register RfSweep in _mscl: -_mscl.RfSweep_swigregister(RfSweep) - -class Triggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Triggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Triggers___nonzero__(self) - - def __bool__(self): - return _mscl.Triggers___bool__(self) - - def __len__(self): - return _mscl.Triggers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.Triggers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.Triggers___delitem__(self, key) - - def has_key(self, key): - return _mscl.Triggers_has_key(self, key) - - def keys(self): - return _mscl.Triggers_keys(self) - - def values(self): - return _mscl.Triggers_values(self) - - def items(self): - return _mscl.Triggers_items(self) - - def __contains__(self, key): - return _mscl.Triggers___contains__(self, key) - - def key_iterator(self): - return _mscl.Triggers_key_iterator(self) - - def value_iterator(self): - return _mscl.Triggers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.Triggers___setitem__(self, *args) - - def asdict(self): - return _mscl.Triggers_asdict(self) - - def __init__(self, *args): - _mscl.Triggers_swiginit(self, _mscl.new_Triggers(*args)) - - def empty(self): - return _mscl.Triggers_empty(self) - - def size(self): - return _mscl.Triggers_size(self) - - def swap(self, v): - return _mscl.Triggers_swap(self, v) - - def begin(self): - return _mscl.Triggers_begin(self) - - def end(self): - return _mscl.Triggers_end(self) - - def rbegin(self): - return _mscl.Triggers_rbegin(self) - - def rend(self): - return _mscl.Triggers_rend(self) - - def clear(self): - return _mscl.Triggers_clear(self) - - def get_allocator(self): - return _mscl.Triggers_get_allocator(self) - - def count(self, x): - return _mscl.Triggers_count(self, x) - - def erase(self, *args): - return _mscl.Triggers_erase(self, *args) - - def find(self, x): - return _mscl.Triggers_find(self, x) - - def lower_bound(self, x): - return _mscl.Triggers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.Triggers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_Triggers - -# Register Triggers in _mscl: -_mscl.Triggers_swigregister(Triggers) - -class ChannelCalMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelCalMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelCalMap___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelCalMap___bool__(self) - - def __len__(self): - return _mscl.ChannelCalMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelCalMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelCalMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelCalMap_has_key(self, key) - - def keys(self): - return _mscl.ChannelCalMap_keys(self) - - def values(self): - return _mscl.ChannelCalMap_values(self) - - def items(self): - return _mscl.ChannelCalMap_items(self) - - def __contains__(self, key): - return _mscl.ChannelCalMap___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelCalMap_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelCalMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelCalMap___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelCalMap_asdict(self) - - def __init__(self, *args): - _mscl.ChannelCalMap_swiginit(self, _mscl.new_ChannelCalMap(*args)) - - def empty(self): - return _mscl.ChannelCalMap_empty(self) - - def size(self): - return _mscl.ChannelCalMap_size(self) - - def swap(self, v): - return _mscl.ChannelCalMap_swap(self, v) - - def begin(self): - return _mscl.ChannelCalMap_begin(self) - - def end(self): - return _mscl.ChannelCalMap_end(self) - - def rbegin(self): - return _mscl.ChannelCalMap_rbegin(self) - - def rend(self): - return _mscl.ChannelCalMap_rend(self) - - def clear(self): - return _mscl.ChannelCalMap_clear(self) - - def get_allocator(self): - return _mscl.ChannelCalMap_get_allocator(self) - - def count(self, x): - return _mscl.ChannelCalMap_count(self, x) - - def erase(self, *args): - return _mscl.ChannelCalMap_erase(self, *args) - - def find(self, x): - return _mscl.ChannelCalMap_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelCalMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelCalMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelCalMap - -# Register ChannelCalMap in _mscl: -_mscl.ChannelCalMap_swigregister(ChannelCalMap) - -class WirelessPollData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessPollData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessPollData___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessPollData___bool__(self) - - def __len__(self): - return _mscl.WirelessPollData___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.WirelessPollData___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.WirelessPollData___delitem__(self, key) - - def has_key(self, key): - return _mscl.WirelessPollData_has_key(self, key) - - def keys(self): - return _mscl.WirelessPollData_keys(self) - - def values(self): - return _mscl.WirelessPollData_values(self) - - def items(self): - return _mscl.WirelessPollData_items(self) - - def __contains__(self, key): - return _mscl.WirelessPollData___contains__(self, key) - - def key_iterator(self): - return _mscl.WirelessPollData_key_iterator(self) - - def value_iterator(self): - return _mscl.WirelessPollData_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.WirelessPollData___setitem__(self, *args) - - def asdict(self): - return _mscl.WirelessPollData_asdict(self) - - def __init__(self, *args): - _mscl.WirelessPollData_swiginit(self, _mscl.new_WirelessPollData(*args)) - - def empty(self): - return _mscl.WirelessPollData_empty(self) - - def size(self): - return _mscl.WirelessPollData_size(self) - - def swap(self, v): - return _mscl.WirelessPollData_swap(self, v) - - def begin(self): - return _mscl.WirelessPollData_begin(self) - - def end(self): - return _mscl.WirelessPollData_end(self) - - def rbegin(self): - return _mscl.WirelessPollData_rbegin(self) - - def rend(self): - return _mscl.WirelessPollData_rend(self) - - def clear(self): - return _mscl.WirelessPollData_clear(self) - - def get_allocator(self): - return _mscl.WirelessPollData_get_allocator(self) - - def count(self, x): - return _mscl.WirelessPollData_count(self, x) - - def erase(self, *args): - return _mscl.WirelessPollData_erase(self, *args) - - def find(self, x): - return _mscl.WirelessPollData_find(self, x) - - def lower_bound(self, x): - return _mscl.WirelessPollData_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.WirelessPollData_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_WirelessPollData - -# Register WirelessPollData in _mscl: -_mscl.WirelessPollData_swigregister(WirelessPollData) - -class ConnectionDebugDataVec(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConnectionDebugDataVec_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConnectionDebugDataVec___nonzero__(self) - - def __bool__(self): - return _mscl.ConnectionDebugDataVec___bool__(self) - - def __len__(self): - return _mscl.ConnectionDebugDataVec___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConnectionDebugDataVec___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConnectionDebugDataVec___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConnectionDebugDataVec___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConnectionDebugDataVec___setitem__(self, *args) - - def pop(self): - return _mscl.ConnectionDebugDataVec_pop(self) - - def append(self, x): - return _mscl.ConnectionDebugDataVec_append(self, x) - - def empty(self): - return _mscl.ConnectionDebugDataVec_empty(self) - - def size(self): - return _mscl.ConnectionDebugDataVec_size(self) - - def swap(self, v): - return _mscl.ConnectionDebugDataVec_swap(self, v) - - def begin(self): - return _mscl.ConnectionDebugDataVec_begin(self) - - def end(self): - return _mscl.ConnectionDebugDataVec_end(self) - - def rbegin(self): - return _mscl.ConnectionDebugDataVec_rbegin(self) - - def rend(self): - return _mscl.ConnectionDebugDataVec_rend(self) - - def clear(self): - return _mscl.ConnectionDebugDataVec_clear(self) - - def get_allocator(self): - return _mscl.ConnectionDebugDataVec_get_allocator(self) - - def pop_back(self): - return _mscl.ConnectionDebugDataVec_pop_back(self) - - def erase(self, *args): - return _mscl.ConnectionDebugDataVec_erase(self, *args) - - def __init__(self, *args): - _mscl.ConnectionDebugDataVec_swiginit(self, _mscl.new_ConnectionDebugDataVec(*args)) - - def push_back(self, x): - return _mscl.ConnectionDebugDataVec_push_back(self, x) - - def front(self): - return _mscl.ConnectionDebugDataVec_front(self) - - def back(self): - return _mscl.ConnectionDebugDataVec_back(self) - - def assign(self, n, x): - return _mscl.ConnectionDebugDataVec_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConnectionDebugDataVec_resize(self, *args) - - def insert(self, *args): - return _mscl.ConnectionDebugDataVec_insert(self, *args) - - def reserve(self, n): - return _mscl.ConnectionDebugDataVec_reserve(self, n) - - def capacity(self): - return _mscl.ConnectionDebugDataVec_capacity(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugDataVec - -# Register ConnectionDebugDataVec in _mscl: -_mscl.ConnectionDebugDataVec_swigregister(ConnectionDebugDataVec) - -class SatellitePRNs(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SatellitePRNs_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SatellitePRNs___nonzero__(self) - - def __bool__(self): - return _mscl.SatellitePRNs___bool__(self) - - def __len__(self): - return _mscl.SatellitePRNs___len__(self) - - def __getslice__(self, i, j): - return _mscl.SatellitePRNs___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SatellitePRNs___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SatellitePRNs___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SatellitePRNs___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SatellitePRNs___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SatellitePRNs___setitem__(self, *args) - - def pop(self): - return _mscl.SatellitePRNs_pop(self) - - def append(self, x): - return _mscl.SatellitePRNs_append(self, x) - - def empty(self): - return _mscl.SatellitePRNs_empty(self) - - def size(self): - return _mscl.SatellitePRNs_size(self) - - def swap(self, v): - return _mscl.SatellitePRNs_swap(self, v) - - def begin(self): - return _mscl.SatellitePRNs_begin(self) - - def end(self): - return _mscl.SatellitePRNs_end(self) - - def rbegin(self): - return _mscl.SatellitePRNs_rbegin(self) - - def rend(self): - return _mscl.SatellitePRNs_rend(self) - - def clear(self): - return _mscl.SatellitePRNs_clear(self) - - def get_allocator(self): - return _mscl.SatellitePRNs_get_allocator(self) - - def pop_back(self): - return _mscl.SatellitePRNs_pop_back(self) - - def erase(self, *args): - return _mscl.SatellitePRNs_erase(self, *args) - - def __init__(self, *args): - _mscl.SatellitePRNs_swiginit(self, _mscl.new_SatellitePRNs(*args)) - - def push_back(self, x): - return _mscl.SatellitePRNs_push_back(self, x) - - def front(self): - return _mscl.SatellitePRNs_front(self) - - def back(self): - return _mscl.SatellitePRNs_back(self) - - def assign(self, n, x): - return _mscl.SatellitePRNs_assign(self, n, x) - - def resize(self, *args): - return _mscl.SatellitePRNs_resize(self, *args) - - def insert(self, *args): - return _mscl.SatellitePRNs_insert(self, *args) - - def reserve(self, n): - return _mscl.SatellitePRNs_reserve(self, n) - - def capacity(self): - return _mscl.SatellitePRNs_capacity(self) - __swig_destroy__ = _mscl.delete_SatellitePRNs - -# Register SatellitePRNs in _mscl: -_mscl.SatellitePRNs_swigregister(SatellitePRNs) - -class Constellations(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Constellations_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Constellations___nonzero__(self) - - def __bool__(self): - return _mscl.Constellations___bool__(self) - - def __len__(self): - return _mscl.Constellations___len__(self) - - def __getslice__(self, i, j): - return _mscl.Constellations___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Constellations___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Constellations___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Constellations___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Constellations___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Constellations___setitem__(self, *args) - - def pop(self): - return _mscl.Constellations_pop(self) - - def append(self, x): - return _mscl.Constellations_append(self, x) - - def empty(self): - return _mscl.Constellations_empty(self) - - def size(self): - return _mscl.Constellations_size(self) - - def swap(self, v): - return _mscl.Constellations_swap(self, v) - - def begin(self): - return _mscl.Constellations_begin(self) - - def end(self): - return _mscl.Constellations_end(self) - - def rbegin(self): - return _mscl.Constellations_rbegin(self) - - def rend(self): - return _mscl.Constellations_rend(self) - - def clear(self): - return _mscl.Constellations_clear(self) - - def get_allocator(self): - return _mscl.Constellations_get_allocator(self) - - def pop_back(self): - return _mscl.Constellations_pop_back(self) - - def erase(self, *args): - return _mscl.Constellations_erase(self, *args) - - def __init__(self, *args): - _mscl.Constellations_swiginit(self, _mscl.new_Constellations(*args)) - - def push_back(self, x): - return _mscl.Constellations_push_back(self, x) - - def front(self): - return _mscl.Constellations_front(self) - - def back(self): - return _mscl.Constellations_back(self) - - def assign(self, n, x): - return _mscl.Constellations_assign(self, n, x) - - def resize(self, *args): - return _mscl.Constellations_resize(self, *args) - - def insert(self, *args): - return _mscl.Constellations_insert(self, *args) - - def reserve(self, n): - return _mscl.Constellations_reserve(self, n) - - def capacity(self): - return _mscl.Constellations_capacity(self) - __swig_destroy__ = _mscl.delete_Constellations - -# Register Constellations in _mscl: -_mscl.Constellations_swigregister(Constellations) - -class HeadingUpdateOptionsList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HeadingUpdateOptionsList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HeadingUpdateOptionsList___nonzero__(self) - - def __bool__(self): - return _mscl.HeadingUpdateOptionsList___bool__(self) - - def __len__(self): - return _mscl.HeadingUpdateOptionsList___len__(self) - - def __getslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HeadingUpdateOptionsList___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___setitem__(self, *args) - - def pop(self): - return _mscl.HeadingUpdateOptionsList_pop(self) - - def append(self, x): - return _mscl.HeadingUpdateOptionsList_append(self, x) - - def empty(self): - return _mscl.HeadingUpdateOptionsList_empty(self) - - def size(self): - return _mscl.HeadingUpdateOptionsList_size(self) - - def swap(self, v): - return _mscl.HeadingUpdateOptionsList_swap(self, v) - - def begin(self): - return _mscl.HeadingUpdateOptionsList_begin(self) - - def end(self): - return _mscl.HeadingUpdateOptionsList_end(self) - - def rbegin(self): - return _mscl.HeadingUpdateOptionsList_rbegin(self) - - def rend(self): - return _mscl.HeadingUpdateOptionsList_rend(self) - - def clear(self): - return _mscl.HeadingUpdateOptionsList_clear(self) - - def get_allocator(self): - return _mscl.HeadingUpdateOptionsList_get_allocator(self) - - def pop_back(self): - return _mscl.HeadingUpdateOptionsList_pop_back(self) - - def erase(self, *args): - return _mscl.HeadingUpdateOptionsList_erase(self, *args) - - def __init__(self, *args): - _mscl.HeadingUpdateOptionsList_swiginit(self, _mscl.new_HeadingUpdateOptionsList(*args)) - - def push_back(self, x): - return _mscl.HeadingUpdateOptionsList_push_back(self, x) - - def front(self): - return _mscl.HeadingUpdateOptionsList_front(self) - - def back(self): - return _mscl.HeadingUpdateOptionsList_back(self) - - def assign(self, n, x): - return _mscl.HeadingUpdateOptionsList_assign(self, n, x) - - def resize(self, *args): - return _mscl.HeadingUpdateOptionsList_resize(self, *args) - - def insert(self, *args): - return _mscl.HeadingUpdateOptionsList_insert(self, *args) - - def reserve(self, n): - return _mscl.HeadingUpdateOptionsList_reserve(self, n) - - def capacity(self): - return _mscl.HeadingUpdateOptionsList_capacity(self) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptionsList - -# Register HeadingUpdateOptionsList in _mscl: -_mscl.HeadingUpdateOptionsList_swigregister(HeadingUpdateOptionsList) - -class AdaptiveMeasurementModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveMeasurementModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveMeasurementModes___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveMeasurementModes___bool__(self) - - def __len__(self): - return _mscl.AdaptiveMeasurementModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveMeasurementModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveMeasurementModes_pop(self) - - def append(self, x): - return _mscl.AdaptiveMeasurementModes_append(self, x) - - def empty(self): - return _mscl.AdaptiveMeasurementModes_empty(self) - - def size(self): - return _mscl.AdaptiveMeasurementModes_size(self) - - def swap(self, v): - return _mscl.AdaptiveMeasurementModes_swap(self, v) - - def begin(self): - return _mscl.AdaptiveMeasurementModes_begin(self) - - def end(self): - return _mscl.AdaptiveMeasurementModes_end(self) - - def rbegin(self): - return _mscl.AdaptiveMeasurementModes_rbegin(self) - - def rend(self): - return _mscl.AdaptiveMeasurementModes_rend(self) - - def clear(self): - return _mscl.AdaptiveMeasurementModes_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveMeasurementModes_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveMeasurementModes_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveMeasurementModes_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveMeasurementModes_swiginit(self, _mscl.new_AdaptiveMeasurementModes(*args)) - - def push_back(self, x): - return _mscl.AdaptiveMeasurementModes_push_back(self, x) - - def front(self): - return _mscl.AdaptiveMeasurementModes_front(self) - - def back(self): - return _mscl.AdaptiveMeasurementModes_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveMeasurementModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveMeasurementModes_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveMeasurementModes_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveMeasurementModes_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveMeasurementModes_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementModes - -# Register AdaptiveMeasurementModes in _mscl: -_mscl.AdaptiveMeasurementModes_swigregister(AdaptiveMeasurementModes) - -class GeometricVectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeometricVectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeometricVectors___nonzero__(self) - - def __bool__(self): - return _mscl.GeometricVectors___bool__(self) - - def __len__(self): - return _mscl.GeometricVectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeometricVectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeometricVectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeometricVectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeometricVectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeometricVectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeometricVectors___setitem__(self, *args) - - def pop(self): - return _mscl.GeometricVectors_pop(self) - - def append(self, x): - return _mscl.GeometricVectors_append(self, x) - - def empty(self): - return _mscl.GeometricVectors_empty(self) - - def size(self): - return _mscl.GeometricVectors_size(self) - - def swap(self, v): - return _mscl.GeometricVectors_swap(self, v) - - def begin(self): - return _mscl.GeometricVectors_begin(self) - - def end(self): - return _mscl.GeometricVectors_end(self) - - def rbegin(self): - return _mscl.GeometricVectors_rbegin(self) - - def rend(self): - return _mscl.GeometricVectors_rend(self) - - def clear(self): - return _mscl.GeometricVectors_clear(self) - - def get_allocator(self): - return _mscl.GeometricVectors_get_allocator(self) - - def pop_back(self): - return _mscl.GeometricVectors_pop_back(self) - - def erase(self, *args): - return _mscl.GeometricVectors_erase(self, *args) - - def __init__(self, *args): - _mscl.GeometricVectors_swiginit(self, _mscl.new_GeometricVectors(*args)) - - def push_back(self, x): - return _mscl.GeometricVectors_push_back(self, x) - - def front(self): - return _mscl.GeometricVectors_front(self) - - def back(self): - return _mscl.GeometricVectors_back(self) - - def assign(self, n, x): - return _mscl.GeometricVectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeometricVectors_resize(self, *args) - - def insert(self, *args): - return _mscl.GeometricVectors_insert(self, *args) - - def reserve(self, n): - return _mscl.GeometricVectors_reserve(self, n) - - def capacity(self): - return _mscl.GeometricVectors_capacity(self) - __swig_destroy__ = _mscl.delete_GeometricVectors - -# Register GeometricVectors in _mscl: -_mscl.GeometricVectors_swigregister(GeometricVectors) - -class Matrix_3x3s(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Matrix_3x3s_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Matrix_3x3s___nonzero__(self) - - def __bool__(self): - return _mscl.Matrix_3x3s___bool__(self) - - def __len__(self): - return _mscl.Matrix_3x3s___len__(self) - - def __getslice__(self, i, j): - return _mscl.Matrix_3x3s___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Matrix_3x3s___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Matrix_3x3s___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Matrix_3x3s___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Matrix_3x3s___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Matrix_3x3s___setitem__(self, *args) - - def pop(self): - return _mscl.Matrix_3x3s_pop(self) - - def append(self, x): - return _mscl.Matrix_3x3s_append(self, x) - - def empty(self): - return _mscl.Matrix_3x3s_empty(self) - - def size(self): - return _mscl.Matrix_3x3s_size(self) - - def swap(self, v): - return _mscl.Matrix_3x3s_swap(self, v) - - def begin(self): - return _mscl.Matrix_3x3s_begin(self) - - def end(self): - return _mscl.Matrix_3x3s_end(self) - - def rbegin(self): - return _mscl.Matrix_3x3s_rbegin(self) - - def rend(self): - return _mscl.Matrix_3x3s_rend(self) - - def clear(self): - return _mscl.Matrix_3x3s_clear(self) - - def get_allocator(self): - return _mscl.Matrix_3x3s_get_allocator(self) - - def pop_back(self): - return _mscl.Matrix_3x3s_pop_back(self) - - def erase(self, *args): - return _mscl.Matrix_3x3s_erase(self, *args) - - def __init__(self, *args): - _mscl.Matrix_3x3s_swiginit(self, _mscl.new_Matrix_3x3s(*args)) - - def push_back(self, x): - return _mscl.Matrix_3x3s_push_back(self, x) - - def front(self): - return _mscl.Matrix_3x3s_front(self) - - def back(self): - return _mscl.Matrix_3x3s_back(self) - - def assign(self, n, x): - return _mscl.Matrix_3x3s_assign(self, n, x) - - def resize(self, *args): - return _mscl.Matrix_3x3s_resize(self, *args) - - def insert(self, *args): - return _mscl.Matrix_3x3s_insert(self, *args) - - def reserve(self, n): - return _mscl.Matrix_3x3s_reserve(self, n) - - def capacity(self): - return _mscl.Matrix_3x3s_capacity(self) - __swig_destroy__ = _mscl.delete_Matrix_3x3s - -# Register Matrix_3x3s in _mscl: -_mscl.Matrix_3x3s_swigregister(Matrix_3x3s) - -class StatusSelectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StatusSelectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StatusSelectors___nonzero__(self) - - def __bool__(self): - return _mscl.StatusSelectors___bool__(self) - - def __len__(self): - return _mscl.StatusSelectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.StatusSelectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StatusSelectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StatusSelectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StatusSelectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StatusSelectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StatusSelectors___setitem__(self, *args) - - def pop(self): - return _mscl.StatusSelectors_pop(self) - - def append(self, x): - return _mscl.StatusSelectors_append(self, x) - - def empty(self): - return _mscl.StatusSelectors_empty(self) - - def size(self): - return _mscl.StatusSelectors_size(self) - - def swap(self, v): - return _mscl.StatusSelectors_swap(self, v) - - def begin(self): - return _mscl.StatusSelectors_begin(self) - - def end(self): - return _mscl.StatusSelectors_end(self) - - def rbegin(self): - return _mscl.StatusSelectors_rbegin(self) - - def rend(self): - return _mscl.StatusSelectors_rend(self) - - def clear(self): - return _mscl.StatusSelectors_clear(self) - - def get_allocator(self): - return _mscl.StatusSelectors_get_allocator(self) - - def pop_back(self): - return _mscl.StatusSelectors_pop_back(self) - - def erase(self, *args): - return _mscl.StatusSelectors_erase(self, *args) - - def __init__(self, *args): - _mscl.StatusSelectors_swiginit(self, _mscl.new_StatusSelectors(*args)) - - def push_back(self, x): - return _mscl.StatusSelectors_push_back(self, x) - - def front(self): - return _mscl.StatusSelectors_front(self) - - def back(self): - return _mscl.StatusSelectors_back(self) - - def assign(self, n, x): - return _mscl.StatusSelectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.StatusSelectors_resize(self, *args) - - def insert(self, *args): - return _mscl.StatusSelectors_insert(self, *args) - - def reserve(self, n): - return _mscl.StatusSelectors_reserve(self, n) - - def capacity(self): - return _mscl.StatusSelectors_capacity(self) - __swig_destroy__ = _mscl.delete_StatusSelectors - -# Register StatusSelectors in _mscl: -_mscl.StatusSelectors_swigregister(StatusSelectors) - -class VehicleModeTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.VehicleModeTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.VehicleModeTypes___nonzero__(self) - - def __bool__(self): - return _mscl.VehicleModeTypes___bool__(self) - - def __len__(self): - return _mscl.VehicleModeTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.VehicleModeTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.VehicleModeTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.VehicleModeTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.VehicleModeTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.VehicleModeTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.VehicleModeTypes___setitem__(self, *args) - - def pop(self): - return _mscl.VehicleModeTypes_pop(self) - - def append(self, x): - return _mscl.VehicleModeTypes_append(self, x) - - def empty(self): - return _mscl.VehicleModeTypes_empty(self) - - def size(self): - return _mscl.VehicleModeTypes_size(self) - - def swap(self, v): - return _mscl.VehicleModeTypes_swap(self, v) - - def begin(self): - return _mscl.VehicleModeTypes_begin(self) - - def end(self): - return _mscl.VehicleModeTypes_end(self) - - def rbegin(self): - return _mscl.VehicleModeTypes_rbegin(self) - - def rend(self): - return _mscl.VehicleModeTypes_rend(self) - - def clear(self): - return _mscl.VehicleModeTypes_clear(self) - - def get_allocator(self): - return _mscl.VehicleModeTypes_get_allocator(self) - - def pop_back(self): - return _mscl.VehicleModeTypes_pop_back(self) - - def erase(self, *args): - return _mscl.VehicleModeTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.VehicleModeTypes_swiginit(self, _mscl.new_VehicleModeTypes(*args)) - - def push_back(self, x): - return _mscl.VehicleModeTypes_push_back(self, x) - - def front(self): - return _mscl.VehicleModeTypes_front(self) - - def back(self): - return _mscl.VehicleModeTypes_back(self) - - def assign(self, n, x): - return _mscl.VehicleModeTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.VehicleModeTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.VehicleModeTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.VehicleModeTypes_reserve(self, n) - - def capacity(self): - return _mscl.VehicleModeTypes_capacity(self) - __swig_destroy__ = _mscl.delete_VehicleModeTypes - -# Register VehicleModeTypes in _mscl: -_mscl.VehicleModeTypes_swigregister(VehicleModeTypes) - -class AdaptiveFilterLevels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveFilterLevels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveFilterLevels___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveFilterLevels___bool__(self) - - def __len__(self): - return _mscl.AdaptiveFilterLevels___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveFilterLevels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveFilterLevels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveFilterLevels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveFilterLevels___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveFilterLevels_pop(self) - - def append(self, x): - return _mscl.AdaptiveFilterLevels_append(self, x) - - def empty(self): - return _mscl.AdaptiveFilterLevels_empty(self) - - def size(self): - return _mscl.AdaptiveFilterLevels_size(self) - - def swap(self, v): - return _mscl.AdaptiveFilterLevels_swap(self, v) - - def begin(self): - return _mscl.AdaptiveFilterLevels_begin(self) - - def end(self): - return _mscl.AdaptiveFilterLevels_end(self) - - def rbegin(self): - return _mscl.AdaptiveFilterLevels_rbegin(self) - - def rend(self): - return _mscl.AdaptiveFilterLevels_rend(self) - - def clear(self): - return _mscl.AdaptiveFilterLevels_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveFilterLevels_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveFilterLevels_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveFilterLevels_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveFilterLevels_swiginit(self, _mscl.new_AdaptiveFilterLevels(*args)) - - def push_back(self, x): - return _mscl.AdaptiveFilterLevels_push_back(self, x) - - def front(self): - return _mscl.AdaptiveFilterLevels_front(self) - - def back(self): - return _mscl.AdaptiveFilterLevels_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveFilterLevels_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveFilterLevels_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveFilterLevels_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveFilterLevels_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveFilterLevels_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveFilterLevels - -# Register AdaptiveFilterLevels in _mscl: -_mscl.AdaptiveFilterLevels_swigregister(AdaptiveFilterLevels) - -class LowPassFilterConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LowPassFilterConfig_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LowPassFilterConfig___nonzero__(self) - - def __bool__(self): - return _mscl.LowPassFilterConfig___bool__(self) - - def __len__(self): - return _mscl.LowPassFilterConfig___len__(self) - - def __getslice__(self, i, j): - return _mscl.LowPassFilterConfig___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LowPassFilterConfig___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LowPassFilterConfig___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LowPassFilterConfig___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LowPassFilterConfig___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LowPassFilterConfig___setitem__(self, *args) - - def pop(self): - return _mscl.LowPassFilterConfig_pop(self) - - def append(self, x): - return _mscl.LowPassFilterConfig_append(self, x) - - def empty(self): - return _mscl.LowPassFilterConfig_empty(self) - - def size(self): - return _mscl.LowPassFilterConfig_size(self) - - def swap(self, v): - return _mscl.LowPassFilterConfig_swap(self, v) - - def begin(self): - return _mscl.LowPassFilterConfig_begin(self) - - def end(self): - return _mscl.LowPassFilterConfig_end(self) - - def rbegin(self): - return _mscl.LowPassFilterConfig_rbegin(self) - - def rend(self): - return _mscl.LowPassFilterConfig_rend(self) - - def clear(self): - return _mscl.LowPassFilterConfig_clear(self) - - def get_allocator(self): - return _mscl.LowPassFilterConfig_get_allocator(self) - - def pop_back(self): - return _mscl.LowPassFilterConfig_pop_back(self) - - def erase(self, *args): - return _mscl.LowPassFilterConfig_erase(self, *args) - - def __init__(self, *args): - _mscl.LowPassFilterConfig_swiginit(self, _mscl.new_LowPassFilterConfig(*args)) - - def push_back(self, x): - return _mscl.LowPassFilterConfig_push_back(self, x) - - def front(self): - return _mscl.LowPassFilterConfig_front(self) - - def back(self): - return _mscl.LowPassFilterConfig_back(self) - - def assign(self, n, x): - return _mscl.LowPassFilterConfig_assign(self, n, x) - - def resize(self, *args): - return _mscl.LowPassFilterConfig_resize(self, *args) - - def insert(self, *args): - return _mscl.LowPassFilterConfig_insert(self, *args) - - def reserve(self, n): - return _mscl.LowPassFilterConfig_reserve(self, n) - - def capacity(self): - return _mscl.LowPassFilterConfig_capacity(self) - __swig_destroy__ = _mscl.delete_LowPassFilterConfig - -# Register LowPassFilterConfig in _mscl: -_mscl.LowPassFilterConfig_swigregister(LowPassFilterConfig) - -class AidingMeasurementSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AidingMeasurementSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AidingMeasurementSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.AidingMeasurementSourceOptions___bool__(self) - - def __len__(self): - return _mscl.AidingMeasurementSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.AidingMeasurementSourceOptions_pop(self) - - def append(self, x): - return _mscl.AidingMeasurementSourceOptions_append(self, x) - - def empty(self): - return _mscl.AidingMeasurementSourceOptions_empty(self) - - def size(self): - return _mscl.AidingMeasurementSourceOptions_size(self) - - def swap(self, v): - return _mscl.AidingMeasurementSourceOptions_swap(self, v) - - def begin(self): - return _mscl.AidingMeasurementSourceOptions_begin(self) - - def end(self): - return _mscl.AidingMeasurementSourceOptions_end(self) - - def rbegin(self): - return _mscl.AidingMeasurementSourceOptions_rbegin(self) - - def rend(self): - return _mscl.AidingMeasurementSourceOptions_rend(self) - - def clear(self): - return _mscl.AidingMeasurementSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.AidingMeasurementSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.AidingMeasurementSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.AidingMeasurementSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.AidingMeasurementSourceOptions_swiginit(self, _mscl.new_AidingMeasurementSourceOptions(*args)) - - def push_back(self, x): - return _mscl.AidingMeasurementSourceOptions_push_back(self, x) - - def front(self): - return _mscl.AidingMeasurementSourceOptions_front(self) - - def back(self): - return _mscl.AidingMeasurementSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.AidingMeasurementSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.AidingMeasurementSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.AidingMeasurementSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.AidingMeasurementSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.AidingMeasurementSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_AidingMeasurementSourceOptions - -# Register AidingMeasurementSourceOptions in _mscl: -_mscl.AidingMeasurementSourceOptions_swigregister(AidingMeasurementSourceOptions) - -class PpsSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.PpsSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.PpsSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.PpsSourceOptions___bool__(self) - - def __len__(self): - return _mscl.PpsSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.PpsSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.PpsSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.PpsSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.PpsSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.PpsSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.PpsSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.PpsSourceOptions_pop(self) - - def append(self, x): - return _mscl.PpsSourceOptions_append(self, x) - - def empty(self): - return _mscl.PpsSourceOptions_empty(self) - - def size(self): - return _mscl.PpsSourceOptions_size(self) - - def swap(self, v): - return _mscl.PpsSourceOptions_swap(self, v) - - def begin(self): - return _mscl.PpsSourceOptions_begin(self) - - def end(self): - return _mscl.PpsSourceOptions_end(self) - - def rbegin(self): - return _mscl.PpsSourceOptions_rbegin(self) - - def rend(self): - return _mscl.PpsSourceOptions_rend(self) - - def clear(self): - return _mscl.PpsSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.PpsSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.PpsSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.PpsSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.PpsSourceOptions_swiginit(self, _mscl.new_PpsSourceOptions(*args)) - - def push_back(self, x): - return _mscl.PpsSourceOptions_push_back(self, x) - - def front(self): - return _mscl.PpsSourceOptions_front(self) - - def back(self): - return _mscl.PpsSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.PpsSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.PpsSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.PpsSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.PpsSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.PpsSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_PpsSourceOptions - -# Register PpsSourceOptions in _mscl: -_mscl.PpsSourceOptions_swigregister(PpsSourceOptions) - -class GeographicSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeographicSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeographicSources___nonzero__(self) - - def __bool__(self): - return _mscl.GeographicSources___bool__(self) - - def __len__(self): - return _mscl.GeographicSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeographicSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeographicSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeographicSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeographicSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeographicSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeographicSources___setitem__(self, *args) - - def pop(self): - return _mscl.GeographicSources_pop(self) - - def append(self, x): - return _mscl.GeographicSources_append(self, x) - - def empty(self): - return _mscl.GeographicSources_empty(self) - - def size(self): - return _mscl.GeographicSources_size(self) - - def swap(self, v): - return _mscl.GeographicSources_swap(self, v) - - def begin(self): - return _mscl.GeographicSources_begin(self) - - def end(self): - return _mscl.GeographicSources_end(self) - - def rbegin(self): - return _mscl.GeographicSources_rbegin(self) - - def rend(self): - return _mscl.GeographicSources_rend(self) - - def clear(self): - return _mscl.GeographicSources_clear(self) - - def get_allocator(self): - return _mscl.GeographicSources_get_allocator(self) - - def pop_back(self): - return _mscl.GeographicSources_pop_back(self) - - def erase(self, *args): - return _mscl.GeographicSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GeographicSources_swiginit(self, _mscl.new_GeographicSources(*args)) - - def push_back(self, x): - return _mscl.GeographicSources_push_back(self, x) - - def front(self): - return _mscl.GeographicSources_front(self) - - def back(self): - return _mscl.GeographicSources_back(self) - - def assign(self, n, x): - return _mscl.GeographicSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeographicSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GeographicSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GeographicSources_reserve(self, n) - - def capacity(self): - return _mscl.GeographicSources_capacity(self) - __swig_destroy__ = _mscl.delete_GeographicSources - -# Register GeographicSources in _mscl: -_mscl.GeographicSources_swigregister(GeographicSources) - -class GnssSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSources___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSources___bool__(self) - - def __len__(self): - return _mscl.GnssSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssSources___setitem__(self, *args) - - def pop(self): - return _mscl.GnssSources_pop(self) - - def append(self, x): - return _mscl.GnssSources_append(self, x) - - def empty(self): - return _mscl.GnssSources_empty(self) - - def size(self): - return _mscl.GnssSources_size(self) - - def swap(self, v): - return _mscl.GnssSources_swap(self, v) - - def begin(self): - return _mscl.GnssSources_begin(self) - - def end(self): - return _mscl.GnssSources_end(self) - - def rbegin(self): - return _mscl.GnssSources_rbegin(self) - - def rend(self): - return _mscl.GnssSources_rend(self) - - def clear(self): - return _mscl.GnssSources_clear(self) - - def get_allocator(self): - return _mscl.GnssSources_get_allocator(self) - - def pop_back(self): - return _mscl.GnssSources_pop_back(self) - - def erase(self, *args): - return _mscl.GnssSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssSources_swiginit(self, _mscl.new_GnssSources(*args)) - - def push_back(self, x): - return _mscl.GnssSources_push_back(self, x) - - def front(self): - return _mscl.GnssSources_front(self) - - def back(self): - return _mscl.GnssSources_back(self) - - def assign(self, n, x): - return _mscl.GnssSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssSources_reserve(self, n) - - def capacity(self): - return _mscl.GnssSources_capacity(self) - __swig_destroy__ = _mscl.delete_GnssSources - -# Register GnssSources in _mscl: -_mscl.GnssSources_swigregister(GnssSources) - -class GnssSignalConfigOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSignalConfigOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSignalConfigOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSignalConfigOptions___bool__(self) - - def __len__(self): - return _mscl.GnssSignalConfigOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GnssSignalConfigOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GnssSignalConfigOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GnssSignalConfigOptions_has_key(self, key) - - def keys(self): - return _mscl.GnssSignalConfigOptions_keys(self) - - def values(self): - return _mscl.GnssSignalConfigOptions_values(self) - - def items(self): - return _mscl.GnssSignalConfigOptions_items(self) - - def __contains__(self, key): - return _mscl.GnssSignalConfigOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GnssSignalConfigOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GnssSignalConfigOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GnssSignalConfigOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GnssSignalConfigOptions_asdict(self) - - def __init__(self, *args): - _mscl.GnssSignalConfigOptions_swiginit(self, _mscl.new_GnssSignalConfigOptions(*args)) - - def empty(self): - return _mscl.GnssSignalConfigOptions_empty(self) - - def size(self): - return _mscl.GnssSignalConfigOptions_size(self) - - def swap(self, v): - return _mscl.GnssSignalConfigOptions_swap(self, v) - - def begin(self): - return _mscl.GnssSignalConfigOptions_begin(self) - - def end(self): - return _mscl.GnssSignalConfigOptions_end(self) - - def rbegin(self): - return _mscl.GnssSignalConfigOptions_rbegin(self) - - def rend(self): - return _mscl.GnssSignalConfigOptions_rend(self) - - def clear(self): - return _mscl.GnssSignalConfigOptions_clear(self) - - def get_allocator(self): - return _mscl.GnssSignalConfigOptions_get_allocator(self) - - def count(self, x): - return _mscl.GnssSignalConfigOptions_count(self, x) - - def erase(self, *args): - return _mscl.GnssSignalConfigOptions_erase(self, *args) - - def find(self, x): - return _mscl.GnssSignalConfigOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GnssSignalConfigOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GnssSignalConfigOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GnssSignalConfigOptions - -# Register GnssSignalConfigOptions in _mscl: -_mscl.GnssSignalConfigOptions_swigregister(GnssSignalConfigOptions) - -class NmeaMessageFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NmeaMessageFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NmeaMessageFormats___nonzero__(self) - - def __bool__(self): - return _mscl.NmeaMessageFormats___bool__(self) - - def __len__(self): - return _mscl.NmeaMessageFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.NmeaMessageFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NmeaMessageFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NmeaMessageFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NmeaMessageFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NmeaMessageFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NmeaMessageFormats___setitem__(self, *args) - - def pop(self): - return _mscl.NmeaMessageFormats_pop(self) - - def append(self, x): - return _mscl.NmeaMessageFormats_append(self, x) - - def empty(self): - return _mscl.NmeaMessageFormats_empty(self) - - def size(self): - return _mscl.NmeaMessageFormats_size(self) - - def swap(self, v): - return _mscl.NmeaMessageFormats_swap(self, v) - - def begin(self): - return _mscl.NmeaMessageFormats_begin(self) - - def end(self): - return _mscl.NmeaMessageFormats_end(self) - - def rbegin(self): - return _mscl.NmeaMessageFormats_rbegin(self) - - def rend(self): - return _mscl.NmeaMessageFormats_rend(self) - - def clear(self): - return _mscl.NmeaMessageFormats_clear(self) - - def get_allocator(self): - return _mscl.NmeaMessageFormats_get_allocator(self) - - def pop_back(self): - return _mscl.NmeaMessageFormats_pop_back(self) - - def erase(self, *args): - return _mscl.NmeaMessageFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.NmeaMessageFormats_swiginit(self, _mscl.new_NmeaMessageFormats(*args)) - - def push_back(self, x): - return _mscl.NmeaMessageFormats_push_back(self, x) - - def front(self): - return _mscl.NmeaMessageFormats_front(self) - - def back(self): - return _mscl.NmeaMessageFormats_back(self) - - def assign(self, n, x): - return _mscl.NmeaMessageFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.NmeaMessageFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.NmeaMessageFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.NmeaMessageFormats_reserve(self, n) - - def capacity(self): - return _mscl.NmeaMessageFormats_capacity(self) - __swig_destroy__ = _mscl.delete_NmeaMessageFormats - -# Register NmeaMessageFormats in _mscl: -_mscl.NmeaMessageFormats_swigregister(NmeaMessageFormats) - -class GpioPinModeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinModeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinModeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinModeOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinModeOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.GpioPinModeOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GpioPinModeOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GpioPinModeOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GpioPinModeOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GpioPinModeOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GpioPinModeOptions___setitem__(self, *args) - - def pop(self): - return _mscl.GpioPinModeOptions_pop(self) - - def append(self, x): - return _mscl.GpioPinModeOptions_append(self, x) - - def empty(self): - return _mscl.GpioPinModeOptions_empty(self) - - def size(self): - return _mscl.GpioPinModeOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinModeOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinModeOptions_begin(self) - - def end(self): - return _mscl.GpioPinModeOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinModeOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinModeOptions_rend(self) - - def clear(self): - return _mscl.GpioPinModeOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinModeOptions_get_allocator(self) - - def pop_back(self): - return _mscl.GpioPinModeOptions_pop_back(self) - - def erase(self, *args): - return _mscl.GpioPinModeOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.GpioPinModeOptions_swiginit(self, _mscl.new_GpioPinModeOptions(*args)) - - def push_back(self, x): - return _mscl.GpioPinModeOptions_push_back(self, x) - - def front(self): - return _mscl.GpioPinModeOptions_front(self) - - def back(self): - return _mscl.GpioPinModeOptions_back(self) - - def assign(self, n, x): - return _mscl.GpioPinModeOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.GpioPinModeOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.GpioPinModeOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.GpioPinModeOptions_reserve(self, n) - - def capacity(self): - return _mscl.GpioPinModeOptions_capacity(self) - __swig_destroy__ = _mscl.delete_GpioPinModeOptions - -# Register GpioPinModeOptions in _mscl: -_mscl.GpioPinModeOptions_swigregister(GpioPinModeOptions) - -class GpioBehaviorModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioBehaviorModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioBehaviorModes___nonzero__(self) - - def __bool__(self): - return _mscl.GpioBehaviorModes___bool__(self) - - def __len__(self): - return _mscl.GpioBehaviorModes___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioBehaviorModes___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioBehaviorModes___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioBehaviorModes_has_key(self, key) - - def keys(self): - return _mscl.GpioBehaviorModes_keys(self) - - def values(self): - return _mscl.GpioBehaviorModes_values(self) - - def items(self): - return _mscl.GpioBehaviorModes_items(self) - - def __contains__(self, key): - return _mscl.GpioBehaviorModes___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioBehaviorModes_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioBehaviorModes_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioBehaviorModes___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioBehaviorModes_asdict(self) - - def __init__(self, *args): - _mscl.GpioBehaviorModes_swiginit(self, _mscl.new_GpioBehaviorModes(*args)) - - def empty(self): - return _mscl.GpioBehaviorModes_empty(self) - - def size(self): - return _mscl.GpioBehaviorModes_size(self) - - def swap(self, v): - return _mscl.GpioBehaviorModes_swap(self, v) - - def begin(self): - return _mscl.GpioBehaviorModes_begin(self) - - def end(self): - return _mscl.GpioBehaviorModes_end(self) - - def rbegin(self): - return _mscl.GpioBehaviorModes_rbegin(self) - - def rend(self): - return _mscl.GpioBehaviorModes_rend(self) - - def clear(self): - return _mscl.GpioBehaviorModes_clear(self) - - def get_allocator(self): - return _mscl.GpioBehaviorModes_get_allocator(self) - - def count(self, x): - return _mscl.GpioBehaviorModes_count(self, x) - - def erase(self, *args): - return _mscl.GpioBehaviorModes_erase(self, *args) - - def find(self, x): - return _mscl.GpioBehaviorModes_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioBehaviorModes_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioBehaviorModes_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioBehaviorModes - -# Register GpioBehaviorModes in _mscl: -_mscl.GpioBehaviorModes_swigregister(GpioBehaviorModes) - -class GpioFeatureBehaviors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioFeatureBehaviors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioFeatureBehaviors___nonzero__(self) - - def __bool__(self): - return _mscl.GpioFeatureBehaviors___bool__(self) - - def __len__(self): - return _mscl.GpioFeatureBehaviors___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioFeatureBehaviors___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioFeatureBehaviors___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioFeatureBehaviors_has_key(self, key) - - def keys(self): - return _mscl.GpioFeatureBehaviors_keys(self) - - def values(self): - return _mscl.GpioFeatureBehaviors_values(self) - - def items(self): - return _mscl.GpioFeatureBehaviors_items(self) - - def __contains__(self, key): - return _mscl.GpioFeatureBehaviors___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioFeatureBehaviors_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioFeatureBehaviors_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioFeatureBehaviors___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioFeatureBehaviors_asdict(self) - - def __init__(self, *args): - _mscl.GpioFeatureBehaviors_swiginit(self, _mscl.new_GpioFeatureBehaviors(*args)) - - def empty(self): - return _mscl.GpioFeatureBehaviors_empty(self) - - def size(self): - return _mscl.GpioFeatureBehaviors_size(self) - - def swap(self, v): - return _mscl.GpioFeatureBehaviors_swap(self, v) - - def begin(self): - return _mscl.GpioFeatureBehaviors_begin(self) - - def end(self): - return _mscl.GpioFeatureBehaviors_end(self) - - def rbegin(self): - return _mscl.GpioFeatureBehaviors_rbegin(self) - - def rend(self): - return _mscl.GpioFeatureBehaviors_rend(self) - - def clear(self): - return _mscl.GpioFeatureBehaviors_clear(self) - - def get_allocator(self): - return _mscl.GpioFeatureBehaviors_get_allocator(self) - - def count(self, x): - return _mscl.GpioFeatureBehaviors_count(self, x) - - def erase(self, *args): - return _mscl.GpioFeatureBehaviors_erase(self, *args) - - def find(self, x): - return _mscl.GpioFeatureBehaviors_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioFeatureBehaviors_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioFeatureBehaviors_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioFeatureBehaviors - -# Register GpioFeatureBehaviors in _mscl: -_mscl.GpioFeatureBehaviors_swigregister(GpioFeatureBehaviors) - -class GpioPinOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioPinOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioPinOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioPinOptions_has_key(self, key) - - def keys(self): - return _mscl.GpioPinOptions_keys(self) - - def values(self): - return _mscl.GpioPinOptions_values(self) - - def items(self): - return _mscl.GpioPinOptions_items(self) - - def __contains__(self, key): - return _mscl.GpioPinOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioPinOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioPinOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioPinOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioPinOptions_asdict(self) - - def __init__(self, *args): - _mscl.GpioPinOptions_swiginit(self, _mscl.new_GpioPinOptions(*args)) - - def empty(self): - return _mscl.GpioPinOptions_empty(self) - - def size(self): - return _mscl.GpioPinOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinOptions_begin(self) - - def end(self): - return _mscl.GpioPinOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinOptions_rend(self) - - def clear(self): - return _mscl.GpioPinOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinOptions_get_allocator(self) - - def count(self, x): - return _mscl.GpioPinOptions_count(self, x) - - def erase(self, *args): - return _mscl.GpioPinOptions_erase(self, *args) - - def find(self, x): - return _mscl.GpioPinOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioPinOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioPinOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioPinOptions - -# Register GpioPinOptions in _mscl: -_mscl.GpioPinOptions_swigregister(GpioPinOptions) - -class EventInputTriggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventInputTriggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventInputTriggers___nonzero__(self) - - def __bool__(self): - return _mscl.EventInputTriggers___bool__(self) - - def __len__(self): - return _mscl.EventInputTriggers___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventInputTriggers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventInputTriggers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventInputTriggers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventInputTriggers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventInputTriggers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventInputTriggers___setitem__(self, *args) - - def __init__(self, *args): - _mscl.EventInputTriggers_swiginit(self, _mscl.new_EventInputTriggers(*args)) - - def empty(self): - return _mscl.EventInputTriggers_empty(self) - - def size(self): - return _mscl.EventInputTriggers_size(self) - - def swap(self, v): - return _mscl.EventInputTriggers_swap(self, v) - - def begin(self): - return _mscl.EventInputTriggers_begin(self) - - def end(self): - return _mscl.EventInputTriggers_end(self) - - def rbegin(self): - return _mscl.EventInputTriggers_rbegin(self) - - def rend(self): - return _mscl.EventInputTriggers_rend(self) - - def front(self): - return _mscl.EventInputTriggers_front(self) - - def back(self): - return _mscl.EventInputTriggers_back(self) - - def fill(self, u): - return _mscl.EventInputTriggers_fill(self, u) - __swig_destroy__ = _mscl.delete_EventInputTriggers - -# Register EventInputTriggers in _mscl: -_mscl.EventInputTriggers_swigregister(EventInputTriggers) - -class EventTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTypes___nonzero__(self) - - def __bool__(self): - return _mscl.EventTypes___bool__(self) - - def __len__(self): - return _mscl.EventTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTypes___setitem__(self, *args) - - def pop(self): - return _mscl.EventTypes_pop(self) - - def append(self, x): - return _mscl.EventTypes_append(self, x) - - def empty(self): - return _mscl.EventTypes_empty(self) - - def size(self): - return _mscl.EventTypes_size(self) - - def swap(self, v): - return _mscl.EventTypes_swap(self, v) - - def begin(self): - return _mscl.EventTypes_begin(self) - - def end(self): - return _mscl.EventTypes_end(self) - - def rbegin(self): - return _mscl.EventTypes_rbegin(self) - - def rend(self): - return _mscl.EventTypes_rend(self) - - def clear(self): - return _mscl.EventTypes_clear(self) - - def get_allocator(self): - return _mscl.EventTypes_get_allocator(self) - - def pop_back(self): - return _mscl.EventTypes_pop_back(self) - - def erase(self, *args): - return _mscl.EventTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTypes_swiginit(self, _mscl.new_EventTypes(*args)) - - def push_back(self, x): - return _mscl.EventTypes_push_back(self, x) - - def front(self): - return _mscl.EventTypes_front(self) - - def back(self): - return _mscl.EventTypes_back(self) - - def assign(self, n, x): - return _mscl.EventTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTypes_reserve(self, n) - - def capacity(self): - return _mscl.EventTypes_capacity(self) - __swig_destroy__ = _mscl.delete_EventTypes - -# Register EventTypes in _mscl: -_mscl.EventTypes_swigregister(EventTypes) - -class MeasurementReferenceFrames(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MeasurementReferenceFrames_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MeasurementReferenceFrames___nonzero__(self) - - def __bool__(self): - return _mscl.MeasurementReferenceFrames___bool__(self) - - def __len__(self): - return _mscl.MeasurementReferenceFrames___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.MeasurementReferenceFrames___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.MeasurementReferenceFrames___delitem__(self, key) - - def has_key(self, key): - return _mscl.MeasurementReferenceFrames_has_key(self, key) - - def keys(self): - return _mscl.MeasurementReferenceFrames_keys(self) - - def values(self): - return _mscl.MeasurementReferenceFrames_values(self) - - def items(self): - return _mscl.MeasurementReferenceFrames_items(self) - - def __contains__(self, key): - return _mscl.MeasurementReferenceFrames___contains__(self, key) - - def key_iterator(self): - return _mscl.MeasurementReferenceFrames_key_iterator(self) - - def value_iterator(self): - return _mscl.MeasurementReferenceFrames_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.MeasurementReferenceFrames___setitem__(self, *args) - - def asdict(self): - return _mscl.MeasurementReferenceFrames_asdict(self) - - def __init__(self, *args): - _mscl.MeasurementReferenceFrames_swiginit(self, _mscl.new_MeasurementReferenceFrames(*args)) - - def empty(self): - return _mscl.MeasurementReferenceFrames_empty(self) - - def size(self): - return _mscl.MeasurementReferenceFrames_size(self) - - def swap(self, v): - return _mscl.MeasurementReferenceFrames_swap(self, v) - - def begin(self): - return _mscl.MeasurementReferenceFrames_begin(self) - - def end(self): - return _mscl.MeasurementReferenceFrames_end(self) - - def rbegin(self): - return _mscl.MeasurementReferenceFrames_rbegin(self) - - def rend(self): - return _mscl.MeasurementReferenceFrames_rend(self) - - def clear(self): - return _mscl.MeasurementReferenceFrames_clear(self) - - def get_allocator(self): - return _mscl.MeasurementReferenceFrames_get_allocator(self) - - def count(self, x): - return _mscl.MeasurementReferenceFrames_count(self, x) - - def erase(self, *args): - return _mscl.MeasurementReferenceFrames_erase(self, *args) - - def find(self, x): - return _mscl.MeasurementReferenceFrames_find(self, x) - - def lower_bound(self, x): - return _mscl.MeasurementReferenceFrames_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.MeasurementReferenceFrames_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrames - -# Register MeasurementReferenceFrames in _mscl: -_mscl.MeasurementReferenceFrames_swigregister(MeasurementReferenceFrames) - -class Bins(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bins_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bins___nonzero__(self) - - def __bool__(self): - return _mscl.Bins___bool__(self) - - def __len__(self): - return _mscl.Bins___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bins___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bins___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bins___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bins___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bins___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bins___setitem__(self, *args) - - def pop(self): - return _mscl.Bins_pop(self) - - def append(self, x): - return _mscl.Bins_append(self, x) - - def empty(self): - return _mscl.Bins_empty(self) - - def size(self): - return _mscl.Bins_size(self) - - def swap(self, v): - return _mscl.Bins_swap(self, v) - - def begin(self): - return _mscl.Bins_begin(self) - - def end(self): - return _mscl.Bins_end(self) - - def rbegin(self): - return _mscl.Bins_rbegin(self) - - def rend(self): - return _mscl.Bins_rend(self) - - def clear(self): - return _mscl.Bins_clear(self) - - def get_allocator(self): - return _mscl.Bins_get_allocator(self) - - def pop_back(self): - return _mscl.Bins_pop_back(self) - - def erase(self, *args): - return _mscl.Bins_erase(self, *args) - - def __init__(self, *args): - _mscl.Bins_swiginit(self, _mscl.new_Bins(*args)) - - def push_back(self, x): - return _mscl.Bins_push_back(self, x) - - def front(self): - return _mscl.Bins_front(self) - - def back(self): - return _mscl.Bins_back(self) - - def assign(self, n, x): - return _mscl.Bins_assign(self, n, x) - - def insert(self, *args): - return _mscl.Bins_insert(self, *args) - - def reserve(self, n): - return _mscl.Bins_reserve(self, n) - - def capacity(self): - return _mscl.Bins_capacity(self) - __swig_destroy__ = _mscl.delete_Bins - -# Register Bins in _mscl: -_mscl.Bins_swigregister(Bins) - -class Error(Exception): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_swiginit(self, _mscl.new_Error(*args)) - __swig_destroy__ = _mscl.delete_Error - - def what(self): - return _mscl.Error_what(self) - - def __str__(self): - return _mscl.Error___str__(self) - -# Register Error in _mscl: -_mscl.Error_swigregister(Error) - -class Error_NotSupported(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NotSupported_swiginit(self, _mscl.new_Error_NotSupported(*args)) - __swig_destroy__ = _mscl.delete_Error_NotSupported - -# Register Error_NotSupported in _mscl: -_mscl.Error_NotSupported_swigregister(Error_NotSupported) - -class Error_NoData(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NoData_swiginit(self, _mscl.new_Error_NoData(*args)) - __swig_destroy__ = _mscl.delete_Error_NoData - -# Register Error_NoData in _mscl: -_mscl.Error_NoData_swigregister(Error_NoData) - -class Error_BadDataType(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Error_BadDataType_swiginit(self, _mscl.new_Error_BadDataType()) - __swig_destroy__ = _mscl.delete_Error_BadDataType - -# Register Error_BadDataType in _mscl: -_mscl.Error_BadDataType_swigregister(Error_BadDataType) - -class Error_UnknownSampleRate(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_UnknownSampleRate_swiginit(self, _mscl.new_Error_UnknownSampleRate(*args)) - __swig_destroy__ = _mscl.delete_Error_UnknownSampleRate - -# Register Error_UnknownSampleRate in _mscl: -_mscl.Error_UnknownSampleRate_swigregister(Error_UnknownSampleRate) - -class Error_Communication(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Communication_swiginit(self, _mscl.new_Error_Communication(*args)) - __swig_destroy__ = _mscl.delete_Error_Communication - -# Register Error_Communication in _mscl: -_mscl.Error_Communication_swigregister(Error_Communication) - -class Error_NodeCommunication(Error_Communication): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NodeCommunication_swiginit(self, _mscl.new_Error_NodeCommunication(*args)) - - def nodeAddress(self): - return _mscl.Error_NodeCommunication_nodeAddress(self) - __swig_destroy__ = _mscl.delete_Error_NodeCommunication - -# Register Error_NodeCommunication in _mscl: -_mscl.Error_NodeCommunication_swigregister(Error_NodeCommunication) - -class Error_Connection(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Connection_swiginit(self, _mscl.new_Error_Connection(*args)) - __swig_destroy__ = _mscl.delete_Error_Connection - - def code(self): - return _mscl.Error_Connection_code(self) - - def value(self): - return _mscl.Error_Connection_value(self) - -# Register Error_Connection in _mscl: -_mscl.Error_Connection_swigregister(Error_Connection) - -class Error_InvalidSerialPort(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code): - _mscl.Error_InvalidSerialPort_swiginit(self, _mscl.new_Error_InvalidSerialPort(code)) - __swig_destroy__ = _mscl.delete_Error_InvalidSerialPort - -# Register Error_InvalidSerialPort in _mscl: -_mscl.Error_InvalidSerialPort_swigregister(Error_InvalidSerialPort) - -class Error_InvalidTcpServer(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidTcpServer_swiginit(self, _mscl.new_Error_InvalidTcpServer(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidTcpServer - -# Register Error_InvalidTcpServer in _mscl: -_mscl.Error_InvalidTcpServer_swigregister(Error_InvalidTcpServer) - -class Error_InvalidUnixSocket(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidUnixSocket_swiginit(self, _mscl.new_Error_InvalidUnixSocket(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidUnixSocket - -# Register Error_InvalidUnixSocket in _mscl: -_mscl.Error_InvalidUnixSocket_swigregister(Error_InvalidUnixSocket) - -class Error_MipCmdFailed(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_MipCmdFailed_swiginit(self, _mscl.new_Error_MipCmdFailed(*args)) - __swig_destroy__ = _mscl.delete_Error_MipCmdFailed - - def code(self): - return _mscl.Error_MipCmdFailed_code(self) - - def value(self): - return _mscl.Error_MipCmdFailed_value(self) - -# Register Error_MipCmdFailed in _mscl: -_mscl.Error_MipCmdFailed_swigregister(Error_MipCmdFailed) - -class Error_InvalidConfig(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_InvalidConfig_swiginit(self, _mscl.new_Error_InvalidConfig(*args)) - __swig_destroy__ = _mscl.delete_Error_InvalidConfig - - def issues(self): - return _mscl.Error_InvalidConfig_issues(self) - -# Register Error_InvalidConfig in _mscl: -_mscl.Error_InvalidConfig_swigregister(Error_InvalidConfig) - -class Error_InvalidNodeConfig(Error_InvalidConfig): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, issues, nodeAddress): - _mscl.Error_InvalidNodeConfig_swiginit(self, _mscl.new_Error_InvalidNodeConfig(issues, nodeAddress)) - __swig_destroy__ = _mscl.delete_Error_InvalidNodeConfig - - def nodeAddress(self): - return _mscl.Error_InvalidNodeConfig_nodeAddress(self) - -# Register Error_InvalidNodeConfig in _mscl: -_mscl.Error_InvalidNodeConfig_swigregister(Error_InvalidNodeConfig) - - - diff --git a/mscl_release_assets/mscl-armhf-Python3.10-v67.0.0/_mscl.so b/mscl_release_assets/mscl-armhf-Python3.10-v67.0.0/_mscl.so deleted file mode 100644 index 0d0692a..0000000 Binary files a/mscl_release_assets/mscl-armhf-Python3.10-v67.0.0/_mscl.so and /dev/null differ diff --git a/mscl_release_assets/mscl-armhf-Python3.10-v67.0.0/mscl.py b/mscl_release_assets/mscl-armhf-Python3.10-v67.0.0/mscl.py deleted file mode 100644 index daa6217..0000000 --- a/mscl_release_assets/mscl-armhf-Python3.10-v67.0.0/mscl.py +++ /dev/null @@ -1,18376 +0,0 @@ -# This file was automatically generated by SWIG (http://www.swig.org). -# Version 4.0.1 -# -# Do not make changes to this file unless you know what you are doing--modify -# the SWIG interface file instead. - -from sys import version_info as _swig_python_version_info -if _swig_python_version_info < (2, 7, 0): - raise RuntimeError("Python 2.7 or later required") - -# Import the low-level C/C++ module -if __package__ or "." in __name__: - from . import _mscl -else: - import _mscl - -try: - import builtins as __builtin__ -except ImportError: - import __builtin__ - -def _swig_repr(self): - try: - strthis = "proxy of " + self.this.__repr__() - except __builtin__.Exception: - strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - - -def _swig_setattr_nondynamic_instance_variable(set): - def set_instance_attr(self, name, value): - if name == "thisown": - self.this.own(value) - elif name == "this": - set(self, name, value) - elif hasattr(self, name) and isinstance(getattr(type(self), name), property): - set(self, name, value) - else: - raise AttributeError("You cannot add instance attributes to %s" % self) - return set_instance_attr - - -def _swig_setattr_nondynamic_class_variable(set): - def set_class_attr(cls, name, value): - if hasattr(cls, name) and not isinstance(getattr(cls, name), property): - set(cls, name, value) - else: - raise AttributeError("You cannot add class attributes to %s" % cls) - return set_class_attr - - -def _swig_add_metaclass(metaclass): - """Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass""" - def wrapper(cls): - return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy()) - return wrapper - - -class _SwigNonDynamicMeta(type): - """Meta class to enforce nondynamic attributes (no new attributes) for a class""" - __setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__) - - -class SwigPyIterator(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_SwigPyIterator - - def value(self): - return _mscl.SwigPyIterator_value(self) - - def incr(self, n=1): - return _mscl.SwigPyIterator_incr(self, n) - - def decr(self, n=1): - return _mscl.SwigPyIterator_decr(self, n) - - def distance(self, x): - return _mscl.SwigPyIterator_distance(self, x) - - def equal(self, x): - return _mscl.SwigPyIterator_equal(self, x) - - def copy(self): - return _mscl.SwigPyIterator_copy(self) - - def next(self): - return _mscl.SwigPyIterator_next(self) - - def __next__(self): - return _mscl.SwigPyIterator___next__(self) - - def previous(self): - return _mscl.SwigPyIterator_previous(self) - - def advance(self, n): - return _mscl.SwigPyIterator_advance(self, n) - - def __eq__(self, x): - return _mscl.SwigPyIterator___eq__(self, x) - - def __ne__(self, x): - return _mscl.SwigPyIterator___ne__(self, x) - - def __iadd__(self, n): - return _mscl.SwigPyIterator___iadd__(self, n) - - def __isub__(self, n): - return _mscl.SwigPyIterator___isub__(self, n) - - def __add__(self, n): - return _mscl.SwigPyIterator___add__(self, n) - - def __sub__(self, *args): - return _mscl.SwigPyIterator___sub__(self, *args) - def __iter__(self): - return self - -# Register SwigPyIterator in _mscl: -_mscl.SwigPyIterator_swigregister(SwigPyIterator) - -SHARED_PTR_DISOWN = _mscl.SHARED_PTR_DISOWN -valueType_float = _mscl.valueType_float -valueType_double = _mscl.valueType_double -valueType_uint8 = _mscl.valueType_uint8 -valueType_uint16 = _mscl.valueType_uint16 -valueType_uint32 = _mscl.valueType_uint32 -valueType_int16 = _mscl.valueType_int16 -valueType_int32 = _mscl.valueType_int32 -valueType_bool = _mscl.valueType_bool -valueType_Vector = _mscl.valueType_Vector -valueType_Matrix = _mscl.valueType_Matrix -valueType_Timestamp = _mscl.valueType_Timestamp -valueType_string = _mscl.valueType_string -valueType_Bytes = _mscl.valueType_Bytes -valueType_StructuralHealth = _mscl.valueType_StructuralHealth -valueType_RfSweep = _mscl.valueType_RfSweep -valueType_ChannelMask = _mscl.valueType_ChannelMask -valueType_int8 = _mscl.valueType_int8 -valueType_uint64 = _mscl.valueType_uint64 -deviceState_idle = _mscl.deviceState_idle -deviceState_sleep = _mscl.deviceState_sleep -deviceState_sampling = _mscl.deviceState_sampling -deviceState_sampling_lostBeacon = _mscl.deviceState_sampling_lostBeacon -deviceState_sampling_inactive = _mscl.deviceState_sampling_inactive -deviceState_unknown = _mscl.deviceState_unknown -class BitMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BitMask_swiginit(self, _mscl.new_BitMask(*args)) - __swig_destroy__ = _mscl.delete_BitMask - - def __eq__(self, other): - return _mscl.BitMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.BitMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.BitMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.BitMask___gt__(self, other) - - def fromMask(self, val): - return _mscl.BitMask_fromMask(self, val) - - def toMask(self): - return _mscl.BitMask_toMask(self) - - def enabledCount(self): - return _mscl.BitMask_enabledCount(self) - - def enabled(self, bitIndex): - return _mscl.BitMask_enabled(self, bitIndex) - - def enable(self, bitIndex, enable=True): - return _mscl.BitMask_enable(self, bitIndex, enable) - - def lastBitEnabled(self): - return _mscl.BitMask_lastBitEnabled(self) - -# Register BitMask in _mscl: -_mscl.BitMask_swigregister(BitMask) - -class ChannelMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_CHANNELS = _mscl.ChannelMask_MAX_CHANNELS - - def __init__(self, *args): - _mscl.ChannelMask_swiginit(self, _mscl.new_ChannelMask(*args)) - __swig_destroy__ = _mscl.delete_ChannelMask - - def __eq__(self, other): - return _mscl.ChannelMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.ChannelMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.ChannelMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.ChannelMask___gt__(self, other) - - def fromMask(self, channelMask): - return _mscl.ChannelMask_fromMask(self, channelMask) - - def toMask(self): - return _mscl.ChannelMask_toMask(self) - - def count(self): - return _mscl.ChannelMask_count(self) - - def enabled(self, channel): - return _mscl.ChannelMask_enabled(self, channel) - - def enable(self, channel, enable=True): - return _mscl.ChannelMask_enable(self, channel, enable) - - def lastChEnabled(self): - return _mscl.ChannelMask_lastChEnabled(self) - -# Register ChannelMask in _mscl: -_mscl.ChannelMask_swigregister(ChannelMask) - -class Value(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_Value - - def storedAs(self): - return _mscl.Value_storedAs(self) - - def as_float(self): - return _mscl.Value_as_float(self) - - def as_double(self): - return _mscl.Value_as_double(self) - - def as_uint8(self): - return _mscl.Value_as_uint8(self) - - def as_uint16(self): - return _mscl.Value_as_uint16(self) - - def as_uint32(self): - return _mscl.Value_as_uint32(self) - - def as_uint64(self): - return _mscl.Value_as_uint64(self) - - def as_int8(self): - return _mscl.Value_as_int8(self) - - def as_int16(self): - return _mscl.Value_as_int16(self) - - def as_int32(self): - return _mscl.Value_as_int32(self) - - def as_bool(self): - return _mscl.Value_as_bool(self) - - def as_ChannelMask(self): - return _mscl.Value_as_ChannelMask(self) - - def as_string(self): - return _mscl.Value_as_string(self) - - def __init__(self): - _mscl.Value_swiginit(self, _mscl.new_Value()) - -# Register Value in _mscl: -_mscl.Value_swigregister(Value) - -class Bin(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, start, end, count): - _mscl.Bin_swiginit(self, _mscl.new_Bin(start, end, count)) - - def start(self): - return _mscl.Bin_start(self) - - def end(self): - return _mscl.Bin_end(self) - - def count(self): - return _mscl.Bin_count(self) - __swig_destroy__ = _mscl.delete_Bin - -# Register Bin in _mscl: -_mscl.Bin_swigregister(Bin) - -class Histogram(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, binsStart, binsSize): - _mscl.Histogram_swiginit(self, _mscl.new_Histogram(binsStart, binsSize)) - - def binsStart(self): - return _mscl.Histogram_binsStart(self) - - def binsSize(self): - return _mscl.Histogram_binsSize(self) - - def bins(self): - return _mscl.Histogram_bins(self) - - def addBin(self, bin): - return _mscl.Histogram_addBin(self, bin) - __swig_destroy__ = _mscl.delete_Histogram - -# Register Histogram in _mscl: -_mscl.Histogram_swigregister(Histogram) - -class Timestamp(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INTERNAL = _mscl.Timestamp_INTERNAL - EXTERNAL = _mscl.Timestamp_EXTERNAL - TIME_OF_ARRIVAL = _mscl.Timestamp_TIME_OF_ARRIVAL - GPS = _mscl.Timestamp_GPS - UNIX = _mscl.Timestamp_UNIX - UTC = _mscl.Timestamp_UTC - - def __init__(self, *args): - _mscl.Timestamp_swiginit(self, _mscl.new_Timestamp(*args)) - __swig_destroy__ = _mscl.delete_Timestamp - - def nanoseconds(self, *args): - return _mscl.Timestamp_nanoseconds(self, *args) - - def seconds(self, *args): - return _mscl.Timestamp_seconds(self, *args) - - def storedEpoch(self): - return _mscl.Timestamp_storedEpoch(self) - - def __str__(self): - return _mscl.Timestamp___str__(self) - - def setTime(self, *args): - return _mscl.Timestamp_setTime(self, *args) - - def setTimeNow(self): - return _mscl.Timestamp_setTimeNow(self) - - @staticmethod - def timeNow(): - return _mscl.Timestamp_timeNow() - - @staticmethod - def setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - - @staticmethod - def getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - - @staticmethod - def gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - - @staticmethod - def utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -# Register Timestamp in _mscl: -_mscl.Timestamp_swigregister(Timestamp) - -def Timestamp_timeNow(): - return _mscl.Timestamp_timeNow() - -def Timestamp_setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - -def Timestamp_getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - -def Timestamp_gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - -def Timestamp_utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -class TimeSpan(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - NANOSECONDS_PER_MICROSECOND = _mscl.TimeSpan_NANOSECONDS_PER_MICROSECOND - NANOSECONDS_PER_MILLISECOND = _mscl.TimeSpan_NANOSECONDS_PER_MILLISECOND - NANOSECONDS_PER_SECOND = _mscl.TimeSpan_NANOSECONDS_PER_SECOND - - def getNanoseconds(self): - return _mscl.TimeSpan_getNanoseconds(self) - - def getMicroseconds(self): - return _mscl.TimeSpan_getMicroseconds(self) - - def getMilliseconds(self): - return _mscl.TimeSpan_getMilliseconds(self) - - def getSeconds(self): - return _mscl.TimeSpan_getSeconds(self) - - @staticmethod - def NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - - @staticmethod - def MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - - @staticmethod - def MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - - @staticmethod - def Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - - @staticmethod - def Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - - @staticmethod - def Hours(hours): - return _mscl.TimeSpan_Hours(hours) - - @staticmethod - def Days(days): - return _mscl.TimeSpan_Days(days) - __swig_destroy__ = _mscl.delete_TimeSpan - -# Register TimeSpan in _mscl: -_mscl.TimeSpan_swigregister(TimeSpan) - -def TimeSpan_NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - -def TimeSpan_MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - -def TimeSpan_MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - -def TimeSpan_Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - -def TimeSpan_Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - -def TimeSpan_Hours(hours): - return _mscl.TimeSpan_Hours(hours) - -def TimeSpan_Days(days): - return _mscl.TimeSpan_Days(days) - -class Version(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Version_swiginit(self, _mscl.new_Version(*args)) - - def __eq__(self, cmp): - return _mscl.Version___eq__(self, cmp) - - def __ne__(self, cmp): - return _mscl.Version___ne__(self, cmp) - - def __lt__(self, cmp): - return _mscl.Version___lt__(self, cmp) - - def __le__(self, cmp): - return _mscl.Version___le__(self, cmp) - - def __gt__(self, cmp): - return _mscl.Version___gt__(self, cmp) - - def __ge__(self, cmp): - return _mscl.Version___ge__(self, cmp) - - def __str__(self): - return _mscl.Version___str__(self) - - def fromString(self, strVersion): - return _mscl.Version_fromString(self, strVersion) - - def majorPart(self): - return _mscl.Version_majorPart(self) - - def minorPart(self): - return _mscl.Version_minorPart(self) - - def patchPart(self): - return _mscl.Version_patchPart(self) - __swig_destroy__ = _mscl.delete_Version - -# Register Version in _mscl: -_mscl.Version_swigregister(Version) - -class DeviceInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.DeviceInfo_connectionType_serial - connectionType_tcp = _mscl.DeviceInfo_connectionType_tcp - - def __init__(self, *args): - _mscl.DeviceInfo_swiginit(self, _mscl.new_DeviceInfo(*args)) - - def description(self): - return _mscl.DeviceInfo_description(self) - - def serial(self): - return _mscl.DeviceInfo_serial(self) - - def baudRate(self): - return _mscl.DeviceInfo_baudRate(self) - - def connectionType(self): - return _mscl.DeviceInfo_connectionType(self) - __swig_destroy__ = _mscl.delete_DeviceInfo - -# Register DeviceInfo in _mscl: -_mscl.DeviceInfo_swigregister(DeviceInfo) -cvar = _mscl.cvar -MSCL_VERSION = cvar.MSCL_VERSION - -class Devices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def listBaseStations(): - return _mscl.Devices_listBaseStations() - - @staticmethod - def listInertialDevices(): - return _mscl.Devices_listInertialDevices() - - @staticmethod - def listPorts(): - return _mscl.Devices_listPorts() - __swig_destroy__ = _mscl.delete_Devices - -# Register Devices in _mscl: -_mscl.Devices_swigregister(Devices) - -def Devices_listBaseStations(): - return _mscl.Devices_listBaseStations() - -def Devices_listInertialDevices(): - return _mscl.Devices_listInertialDevices() - -def Devices_listPorts(): - return _mscl.Devices_listPorts() - -class ConnectionDebugData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ConnectionDebugData_swiginit(self, _mscl.new_ConnectionDebugData(*args)) - - def fromRead(self): - return _mscl.ConnectionDebugData_fromRead(self) - - def timestamp(self): - return _mscl.ConnectionDebugData_timestamp(self) - - def data(self): - return _mscl.ConnectionDebugData_data(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugData - -# Register ConnectionDebugData in _mscl: -_mscl.ConnectionDebugData_swigregister(ConnectionDebugData) - -class Connection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.Connection_connectionType_serial - connectionType_tcp = _mscl.Connection_connectionType_tcp - connectionType_webSocket = _mscl.Connection_connectionType_webSocket - connectionType_unixSocket = _mscl.Connection_connectionType_unixSocket - - def __init__(self): - _mscl.Connection_swiginit(self, _mscl.new_Connection()) - - @staticmethod - def Serial(*args): - return _mscl.Connection_Serial(*args) - - @staticmethod - def TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - - @staticmethod - def UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - - @staticmethod - def Mock(): - return _mscl.Connection_Mock() - - def description(self): - return _mscl.Connection_description(self) - - def port(self): - return _mscl.Connection_port(self) - - def type(self): - return _mscl.Connection_type(self) - - def disconnect(self): - return _mscl.Connection_disconnect(self) - - def reconnect(self): - return _mscl.Connection_reconnect(self) - - def write(self, bytes): - return _mscl.Connection_write(self, bytes) - - def writeStr(self, bytes): - return _mscl.Connection_writeStr(self, bytes) - - def clearBuffer(self): - return _mscl.Connection_clearBuffer(self) - - def byteReadPos(self): - return _mscl.Connection_byteReadPos(self) - - def byteAppendPos(self): - return _mscl.Connection_byteAppendPos(self) - - def rawByteMode(self, *args): - return _mscl.Connection_rawByteMode(self, *args) - - def getRawBytes(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytes(self, timeout, maxBytes, minBytes) - - def getRawBytesStr(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytesStr(self, timeout, maxBytes, minBytes) - - def getRawBytesWithPattern(self, pattern, timeout=0): - return _mscl.Connection_getRawBytesWithPattern(self, pattern, timeout) - - def debugMode(self, *args): - return _mscl.Connection_debugMode(self, *args) - - def getDebugData(self, timeout=0): - return _mscl.Connection_getDebugData(self, timeout) - - def updateBaudRate(self, baudRate): - return _mscl.Connection_updateBaudRate(self, baudRate) - __swig_destroy__ = _mscl.delete_Connection - -# Register Connection in _mscl: -_mscl.Connection_swigregister(Connection) - -def Connection_Serial(*args): - return _mscl.Connection_Serial(*args) - -def Connection_TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - -def Connection_UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - -def Connection_Mock(): - return _mscl.Connection_Mock() - -class WirelessTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - beacon_none = _mscl.WirelessTypes_beacon_none - beacon_internalTimer = _mscl.WirelessTypes_beacon_internalTimer - beacon_internalPPS = _mscl.WirelessTypes_beacon_internalPPS - beacon_externalPPS = _mscl.WirelessTypes_beacon_externalPPS - microcontroller_18F452 = _mscl.WirelessTypes_microcontroller_18F452 - microcontroller_18F4620 = _mscl.WirelessTypes_microcontroller_18F4620 - microcontroller_18F46K20 = _mscl.WirelessTypes_microcontroller_18F46K20 - microcontroller_18F67K90 = _mscl.WirelessTypes_microcontroller_18F67K90 - microcontroller_EFM32WG990F256 = _mscl.WirelessTypes_microcontroller_EFM32WG990F256 - microcontroller_EFR32FG1P132F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32FG1P132F256GM48 - microcontroller_EFR32MG1P232F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32MG1P232F256GM48 - collectionMethod_logOnly = _mscl.WirelessTypes_collectionMethod_logOnly - collectionMethod_transmitOnly = _mscl.WirelessTypes_collectionMethod_transmitOnly - collectionMethod_logAndTransmit = _mscl.WirelessTypes_collectionMethod_logAndTransmit - dataType_first = _mscl.WirelessTypes_dataType_first - dataType_uint16_shifted = _mscl.WirelessTypes_dataType_uint16_shifted - dataType_float32 = _mscl.WirelessTypes_dataType_float32 - dataType_uint16_12bitRes = _mscl.WirelessTypes_dataType_uint16_12bitRes - dataType_uint32 = _mscl.WirelessTypes_dataType_uint32 - dataType_uint16 = _mscl.WirelessTypes_dataType_uint16 - dataType_float32_noCals = _mscl.WirelessTypes_dataType_float32_noCals - dataType_uint24_18bitRes = _mscl.WirelessTypes_dataType_uint24_18bitRes - dataType_uint16_18bitTrunc = _mscl.WirelessTypes_dataType_uint16_18bitTrunc - dataType_int24_20bit = _mscl.WirelessTypes_dataType_int24_20bit - dataType_int16_20bitTrunc = _mscl.WirelessTypes_dataType_int16_20bitTrunc - dataType_uint24 = _mscl.WirelessTypes_dataType_uint24 - dataType_uint16_24bitTrunc = _mscl.WirelessTypes_dataType_uint16_24bitTrunc - dataType_int16_x10 = _mscl.WirelessTypes_dataType_int16_x10 - dataType_last = _mscl.WirelessTypes_dataType_last - dataFormat_raw_uint16 = _mscl.WirelessTypes_dataFormat_raw_uint16 - dataFormat_cal_float = _mscl.WirelessTypes_dataFormat_cal_float - dataFormat_raw_uint24 = _mscl.WirelessTypes_dataFormat_raw_uint24 - dataFormat_raw_int24 = _mscl.WirelessTypes_dataFormat_raw_int24 - dataFormat_raw_int16 = _mscl.WirelessTypes_dataFormat_raw_int16 - dataFormat_cal_int16_x10 = _mscl.WirelessTypes_dataFormat_cal_int16_x10 - syncMode_continuous = _mscl.WirelessTypes_syncMode_continuous - syncMode_burst = _mscl.WirelessTypes_syncMode_burst - samplingMode_sync = _mscl.WirelessTypes_samplingMode_sync - samplingMode_syncBurst = _mscl.WirelessTypes_samplingMode_syncBurst - samplingMode_nonSync = _mscl.WirelessTypes_samplingMode_nonSync - samplingMode_armedDatalog = _mscl.WirelessTypes_samplingMode_armedDatalog - samplingMode_syncEvent = _mscl.WirelessTypes_samplingMode_syncEvent - samplingMode_nonSyncEvent = _mscl.WirelessTypes_samplingMode_nonSyncEvent - defaultMode_idle = _mscl.WirelessTypes_defaultMode_idle - defaultMode_ldc = _mscl.WirelessTypes_defaultMode_ldc - defaultMode_datalog = _mscl.WirelessTypes_defaultMode_datalog - defaultMode_sleep = _mscl.WirelessTypes_defaultMode_sleep - defaultMode_sync = _mscl.WirelessTypes_defaultMode_sync - freq_unknown = _mscl.WirelessTypes_freq_unknown - freq_11 = _mscl.WirelessTypes_freq_11 - freq_12 = _mscl.WirelessTypes_freq_12 - freq_13 = _mscl.WirelessTypes_freq_13 - freq_14 = _mscl.WirelessTypes_freq_14 - freq_15 = _mscl.WirelessTypes_freq_15 - freq_16 = _mscl.WirelessTypes_freq_16 - freq_17 = _mscl.WirelessTypes_freq_17 - freq_18 = _mscl.WirelessTypes_freq_18 - freq_19 = _mscl.WirelessTypes_freq_19 - freq_20 = _mscl.WirelessTypes_freq_20 - freq_21 = _mscl.WirelessTypes_freq_21 - freq_22 = _mscl.WirelessTypes_freq_22 - freq_23 = _mscl.WirelessTypes_freq_23 - freq_24 = _mscl.WirelessTypes_freq_24 - freq_25 = _mscl.WirelessTypes_freq_25 - freq_26 = _mscl.WirelessTypes_freq_26 - power_20dBm = _mscl.WirelessTypes_power_20dBm - power_16dBm = _mscl.WirelessTypes_power_16dBm - power_15dBm = _mscl.WirelessTypes_power_15dBm - power_12dBm = _mscl.WirelessTypes_power_12dBm - power_11dBm = _mscl.WirelessTypes_power_11dBm - power_10dBm = _mscl.WirelessTypes_power_10dBm - power_5dBm = _mscl.WirelessTypes_power_5dBm - power_1dBm = _mscl.WirelessTypes_power_1dBm - power_0dBm = _mscl.WirelessTypes_power_0dBm - retransmission_off = _mscl.WirelessTypes_retransmission_off - retransmission_on = _mscl.WirelessTypes_retransmission_on - retransmission_disabled = _mscl.WirelessTypes_retransmission_disabled - trigger_userInit = _mscl.WirelessTypes_trigger_userInit - trigger_ceiling = _mscl.WirelessTypes_trigger_ceiling - trigger_floor = _mscl.WirelessTypes_trigger_floor - trigger_rampUp = _mscl.WirelessTypes_trigger_rampUp - trigger_rampDown = _mscl.WirelessTypes_trigger_rampDown - equation_none = _mscl.WirelessTypes_equation_none - equation_standard = _mscl.WirelessTypes_equation_standard - unit_none = _mscl.WirelessTypes_unit_none - unit_other_bits = _mscl.WirelessTypes_unit_other_bits - unit_strain_strain = _mscl.WirelessTypes_unit_strain_strain - unit_strain_microStrain = _mscl.WirelessTypes_unit_strain_microStrain - unit_accel_g = _mscl.WirelessTypes_unit_accel_g - unit_accel_mPerSec2 = _mscl.WirelessTypes_unit_accel_mPerSec2 - unit_volts_volts = _mscl.WirelessTypes_unit_volts_volts - unit_volts_millivolts = _mscl.WirelessTypes_unit_volts_millivolts - unit_volts_microvolts = _mscl.WirelessTypes_unit_volts_microvolts - unit_temp_celsius = _mscl.WirelessTypes_unit_temp_celsius - unit_temp_kelvin = _mscl.WirelessTypes_unit_temp_kelvin - unit_temp_fahrenheit = _mscl.WirelessTypes_unit_temp_fahrenheit - unit_displacement_meters = _mscl.WirelessTypes_unit_displacement_meters - unit_displacement_millimeters = _mscl.WirelessTypes_unit_displacement_millimeters - unit_displacement_micrometers = _mscl.WirelessTypes_unit_displacement_micrometers - unit_force_lbf = _mscl.WirelessTypes_unit_force_lbf - unit_force_newtons = _mscl.WirelessTypes_unit_force_newtons - unit_force_kiloNewtons = _mscl.WirelessTypes_unit_force_kiloNewtons - unit_mass_kilograms = _mscl.WirelessTypes_unit_mass_kilograms - unit_pressure_bar = _mscl.WirelessTypes_unit_pressure_bar - unit_pressure_psi = _mscl.WirelessTypes_unit_pressure_psi - unit_pressure_atm = _mscl.WirelessTypes_unit_pressure_atm - unit_pressure_mmHg = _mscl.WirelessTypes_unit_pressure_mmHg - unit_pressure_pascal = _mscl.WirelessTypes_unit_pressure_pascal - unit_pressure_megaPascal = _mscl.WirelessTypes_unit_pressure_megaPascal - unit_pressure_kiloPascal = _mscl.WirelessTypes_unit_pressure_kiloPascal - unit_angDisplacement_degrees = _mscl.WirelessTypes_unit_angDisplacement_degrees - unit_angVelocity_degreesPerSec = _mscl.WirelessTypes_unit_angVelocity_degreesPerSec - unit_angVelocity_radiansPerSec = _mscl.WirelessTypes_unit_angVelocity_radiansPerSec - unit_other_percent = _mscl.WirelessTypes_unit_other_percent - unit_freq_rpm = _mscl.WirelessTypes_unit_freq_rpm - unit_freq_hertz = _mscl.WirelessTypes_unit_freq_hertz - unit_rh_percentRh = _mscl.WirelessTypes_unit_rh_percentRh - unit_other_mVperV = _mscl.WirelessTypes_unit_other_mVperV - unit_accel_milliG = _mscl.WirelessTypes_unit_accel_milliG - unit_accel_ftPerSec2 = _mscl.WirelessTypes_unit_accel_ftPerSec2 - unit_other_percentLife = _mscl.WirelessTypes_unit_other_percentLife - unit_other_count = _mscl.WirelessTypes_unit_other_count - unit_displacement_feet = _mscl.WirelessTypes_unit_displacement_feet - unit_displacement_inches = _mscl.WirelessTypes_unit_displacement_inches - unit_displacement_yards = _mscl.WirelessTypes_unit_displacement_yards - unit_displacement_miles = _mscl.WirelessTypes_unit_displacement_miles - unit_displacement_nautMiles = _mscl.WirelessTypes_unit_displacement_nautMiles - unit_displacement_thouInch = _mscl.WirelessTypes_unit_displacement_thouInch - unit_displacement_hundInch = _mscl.WirelessTypes_unit_displacement_hundInch - unit_displacement_kilometers = _mscl.WirelessTypes_unit_displacement_kilometers - unit_displacement_centimeters = _mscl.WirelessTypes_unit_displacement_centimeters - unit_irradiance_wattsPerSqMeter = _mscl.WirelessTypes_unit_irradiance_wattsPerSqMeter - unit_par_microEinstein = _mscl.WirelessTypes_unit_par_microEinstein - unit_mass_pound = _mscl.WirelessTypes_unit_mass_pound - unit_power_watt = _mscl.WirelessTypes_unit_power_watt - unit_power_milliwatt = _mscl.WirelessTypes_unit_power_milliwatt - unit_power_horsepower = _mscl.WirelessTypes_unit_power_horsepower - unit_reactivePower_var = _mscl.WirelessTypes_unit_reactivePower_var - unit_energy_wattHour = _mscl.WirelessTypes_unit_energy_wattHour - unit_energy_kiloWattHour = _mscl.WirelessTypes_unit_energy_kiloWattHour - unit_reactiveEnergy_VARh = _mscl.WirelessTypes_unit_reactiveEnergy_VARh - unit_reactiveEnergy_kVARh = _mscl.WirelessTypes_unit_reactiveEnergy_kVARh - unit_current_ampere = _mscl.WirelessTypes_unit_current_ampere - unit_current_milliampere = _mscl.WirelessTypes_unit_current_milliampere - unit_current_microampere = _mscl.WirelessTypes_unit_current_microampere - unit_pressure_millibar = _mscl.WirelessTypes_unit_pressure_millibar - unit_pressure_inHg = _mscl.WirelessTypes_unit_pressure_inHg - unit_rssi_dBm = _mscl.WirelessTypes_unit_rssi_dBm - unit_freq_kiloHertz = _mscl.WirelessTypes_unit_freq_kiloHertz - unit_angDisplacement_radians = _mscl.WirelessTypes_unit_angDisplacement_radians - unit_velocity_metersPerSec = _mscl.WirelessTypes_unit_velocity_metersPerSec - unit_velocity_kilometersPerSec = _mscl.WirelessTypes_unit_velocity_kilometersPerSec - unit_velocity_kilometersPerHr = _mscl.WirelessTypes_unit_velocity_kilometersPerHr - unit_velocity_milesPerHr = _mscl.WirelessTypes_unit_velocity_milesPerHr - unit_velocity_knots = _mscl.WirelessTypes_unit_velocity_knots - unit_volume_cubicMeter = _mscl.WirelessTypes_unit_volume_cubicMeter - unit_volume_cubicFt = _mscl.WirelessTypes_unit_volume_cubicFt - unit_volume_liters = _mscl.WirelessTypes_unit_volume_liters - unit_volume_gallon = _mscl.WirelessTypes_unit_volume_gallon - unit_flowRate_cubicMetersPerSec = _mscl.WirelessTypes_unit_flowRate_cubicMetersPerSec - unit_flowRate_cubicFtPerSec = _mscl.WirelessTypes_unit_flowRate_cubicFtPerSec - unit_torque_newtonMeter = _mscl.WirelessTypes_unit_torque_newtonMeter - unit_torque_footPounds = _mscl.WirelessTypes_unit_torque_footPounds - unit_torque_inchPounds = _mscl.WirelessTypes_unit_torque_inchPounds - unit_time_secs = _mscl.WirelessTypes_unit_time_secs - unit_time_nanosecs = _mscl.WirelessTypes_unit_time_nanosecs - unit_time_microsecs = _mscl.WirelessTypes_unit_time_microsecs - unit_time_millisecs = _mscl.WirelessTypes_unit_time_millisecs - unit_time_minutes = _mscl.WirelessTypes_unit_time_minutes - unit_time_hours = _mscl.WirelessTypes_unit_time_hours - unit_time_days = _mscl.WirelessTypes_unit_time_days - unit_time_weeks = _mscl.WirelessTypes_unit_time_weeks - unit_other_value = _mscl.WirelessTypes_unit_other_value - unit_magneticFlux_gauss = _mscl.WirelessTypes_unit_magneticFlux_gauss - unit_other_gSec = _mscl.WirelessTypes_unit_other_gSec - unit_other_secsPerSec = _mscl.WirelessTypes_unit_other_secsPerSec - unit_rssi_dBHz = _mscl.WirelessTypes_unit_rssi_dBHz - unit_density_kgPerMeter3 = _mscl.WirelessTypes_unit_density_kgPerMeter3 - unit_other_unitless = _mscl.WirelessTypes_unit_other_unitless - unit_velocity_inchesPerSec = _mscl.WirelessTypes_unit_velocity_inchesPerSec - unit_force_kg = _mscl.WirelessTypes_unit_force_kg - unit_rawVoltage_volts = _mscl.WirelessTypes_unit_rawVoltage_volts - unit_rawVoltage_millivolts = _mscl.WirelessTypes_unit_rawVoltage_millivolts - unit_rawVoltage_microvolts = _mscl.WirelessTypes_unit_rawVoltage_microvolts - unit_resistance_ohm = _mscl.WirelessTypes_unit_resistance_ohm - unit_resistance_milliohm = _mscl.WirelessTypes_unit_resistance_milliohm - unit_resistance_kiloohm = _mscl.WirelessTypes_unit_resistance_kiloohm - unit_velocity_mmPerSec = _mscl.WirelessTypes_unit_velocity_mmPerSec - unit_mass_grams = _mscl.WirelessTypes_unit_mass_grams - unit_mass_ton = _mscl.WirelessTypes_unit_mass_ton - unit_mass_tonne = _mscl.WirelessTypes_unit_mass_tonne - chType_none = _mscl.WirelessTypes_chType_none - chType_fullDifferential = _mscl.WirelessTypes_chType_fullDifferential - chType_singleEnded = _mscl.WirelessTypes_chType_singleEnded - chType_battery = _mscl.WirelessTypes_chType_battery - chType_temperature = _mscl.WirelessTypes_chType_temperature - chType_rh = _mscl.WirelessTypes_chType_rh - chType_acceleration = _mscl.WirelessTypes_chType_acceleration - chType_displacement = _mscl.WirelessTypes_chType_displacement - chType_voltage = _mscl.WirelessTypes_chType_voltage - chType_diffTemperature = _mscl.WirelessTypes_chType_diffTemperature - chType_digital = _mscl.WirelessTypes_chType_digital - chType_tilt = _mscl.WirelessTypes_chType_tilt - voltageType_singleEnded = _mscl.WirelessTypes_voltageType_singleEnded - voltageType_differential = _mscl.WirelessTypes_voltageType_differential - settling_4ms = _mscl.WirelessTypes_settling_4ms - settling_8ms = _mscl.WirelessTypes_settling_8ms - settling_16ms = _mscl.WirelessTypes_settling_16ms - settling_32ms = _mscl.WirelessTypes_settling_32ms - settling_40ms = _mscl.WirelessTypes_settling_40ms - settling_48ms = _mscl.WirelessTypes_settling_48ms - settling_60ms = _mscl.WirelessTypes_settling_60ms - settling_101ms_90db = _mscl.WirelessTypes_settling_101ms_90db - settling_120ms_80db = _mscl.WirelessTypes_settling_120ms_80db - settling_120ms_65db = _mscl.WirelessTypes_settling_120ms_65db - settling_160ms_69db = _mscl.WirelessTypes_settling_160ms_69db - settling_200ms = _mscl.WirelessTypes_settling_200ms - transducer_thermocouple = _mscl.WirelessTypes_transducer_thermocouple - transducer_rtd = _mscl.WirelessTypes_transducer_rtd - transducer_thermistor = _mscl.WirelessTypes_transducer_thermistor - tc_uncompensated = _mscl.WirelessTypes_tc_uncompensated - tc_K = _mscl.WirelessTypes_tc_K - tc_J = _mscl.WirelessTypes_tc_J - tc_R = _mscl.WirelessTypes_tc_R - tc_S = _mscl.WirelessTypes_tc_S - tc_T = _mscl.WirelessTypes_tc_T - tc_E = _mscl.WirelessTypes_tc_E - tc_B = _mscl.WirelessTypes_tc_B - tc_N = _mscl.WirelessTypes_tc_N - tc_customPolynomial = _mscl.WirelessTypes_tc_customPolynomial - rtd_uncompensated = _mscl.WirelessTypes_rtd_uncompensated - rtd_pt10 = _mscl.WirelessTypes_rtd_pt10 - rtd_pt50 = _mscl.WirelessTypes_rtd_pt50 - rtd_pt100 = _mscl.WirelessTypes_rtd_pt100 - rtd_pt200 = _mscl.WirelessTypes_rtd_pt200 - rtd_pt500 = _mscl.WirelessTypes_rtd_pt500 - rtd_pt1000 = _mscl.WirelessTypes_rtd_pt1000 - rtd_2wire = _mscl.WirelessTypes_rtd_2wire - rtd_3wire = _mscl.WirelessTypes_rtd_3wire - rtd_4wire = _mscl.WirelessTypes_rtd_4wire - thermistor_uncompensated = _mscl.WirelessTypes_thermistor_uncompensated - thermistor_44004_44033 = _mscl.WirelessTypes_thermistor_44004_44033 - thermistor_44005_44030 = _mscl.WirelessTypes_thermistor_44005_44030 - thermistor_44007_44034 = _mscl.WirelessTypes_thermistor_44007_44034 - thermistor_44006_44031 = _mscl.WirelessTypes_thermistor_44006_44031 - thermistor_44008_44032 = _mscl.WirelessTypes_thermistor_44008_44032 - thermistor_ysi_400 = _mscl.WirelessTypes_thermistor_ysi_400 - sampleRate_104170Hz = _mscl.WirelessTypes_sampleRate_104170Hz - sampleRate_78125Hz = _mscl.WirelessTypes_sampleRate_78125Hz - sampleRate_62500Hz = _mscl.WirelessTypes_sampleRate_62500Hz - sampleRate_25000Hz = _mscl.WirelessTypes_sampleRate_25000Hz - sampleRate_12500Hz = _mscl.WirelessTypes_sampleRate_12500Hz - sampleRate_3200Hz = _mscl.WirelessTypes_sampleRate_3200Hz - sampleRate_1600Hz = _mscl.WirelessTypes_sampleRate_1600Hz - sampleRate_800Hz = _mscl.WirelessTypes_sampleRate_800Hz - sampleRate_300Hz = _mscl.WirelessTypes_sampleRate_300Hz - sampleRate_1kHz = _mscl.WirelessTypes_sampleRate_1kHz - sampleRate_2kHz = _mscl.WirelessTypes_sampleRate_2kHz - sampleRate_3kHz = _mscl.WirelessTypes_sampleRate_3kHz - sampleRate_4kHz = _mscl.WirelessTypes_sampleRate_4kHz - sampleRate_5kHz = _mscl.WirelessTypes_sampleRate_5kHz - sampleRate_6kHz = _mscl.WirelessTypes_sampleRate_6kHz - sampleRate_7kHz = _mscl.WirelessTypes_sampleRate_7kHz - sampleRate_8kHz = _mscl.WirelessTypes_sampleRate_8kHz - sampleRate_9kHz = _mscl.WirelessTypes_sampleRate_9kHz - sampleRate_10kHz = _mscl.WirelessTypes_sampleRate_10kHz - sampleRate_20kHz = _mscl.WirelessTypes_sampleRate_20kHz - sampleRate_30kHz = _mscl.WirelessTypes_sampleRate_30kHz - sampleRate_40kHz = _mscl.WirelessTypes_sampleRate_40kHz - sampleRate_50kHz = _mscl.WirelessTypes_sampleRate_50kHz - sampleRate_60kHz = _mscl.WirelessTypes_sampleRate_60kHz - sampleRate_70kHz = _mscl.WirelessTypes_sampleRate_70kHz - sampleRate_80kHz = _mscl.WirelessTypes_sampleRate_80kHz - sampleRate_90kHz = _mscl.WirelessTypes_sampleRate_90kHz - sampleRate_100kHz = _mscl.WirelessTypes_sampleRate_100kHz - sampleRate_887Hz = _mscl.WirelessTypes_sampleRate_887Hz - sampleRate_8192Hz = _mscl.WirelessTypes_sampleRate_8192Hz - sampleRate_4096Hz = _mscl.WirelessTypes_sampleRate_4096Hz - sampleRate_2048Hz = _mscl.WirelessTypes_sampleRate_2048Hz - sampleRate_1024Hz = _mscl.WirelessTypes_sampleRate_1024Hz - sampleRate_512Hz = _mscl.WirelessTypes_sampleRate_512Hz - sampleRate_256Hz = _mscl.WirelessTypes_sampleRate_256Hz - sampleRate_128Hz = _mscl.WirelessTypes_sampleRate_128Hz - sampleRate_64Hz = _mscl.WirelessTypes_sampleRate_64Hz - sampleRate_32Hz = _mscl.WirelessTypes_sampleRate_32Hz - sampleRate_16Hz = _mscl.WirelessTypes_sampleRate_16Hz - sampleRate_8Hz = _mscl.WirelessTypes_sampleRate_8Hz - sampleRate_4Hz = _mscl.WirelessTypes_sampleRate_4Hz - sampleRate_2Hz = _mscl.WirelessTypes_sampleRate_2Hz - sampleRate_1Hz = _mscl.WirelessTypes_sampleRate_1Hz - sampleRate_2Sec = _mscl.WirelessTypes_sampleRate_2Sec - sampleRate_5Sec = _mscl.WirelessTypes_sampleRate_5Sec - sampleRate_10Sec = _mscl.WirelessTypes_sampleRate_10Sec - sampleRate_30Sec = _mscl.WirelessTypes_sampleRate_30Sec - sampleRate_1Min = _mscl.WirelessTypes_sampleRate_1Min - sampleRate_2Min = _mscl.WirelessTypes_sampleRate_2Min - sampleRate_5Min = _mscl.WirelessTypes_sampleRate_5Min - sampleRate_10Min = _mscl.WirelessTypes_sampleRate_10Min - sampleRate_30Min = _mscl.WirelessTypes_sampleRate_30Min - sampleRate_60Min = _mscl.WirelessTypes_sampleRate_60Min - sampleRate_24Hours = _mscl.WirelessTypes_sampleRate_24Hours - region_usa = _mscl.WirelessTypes_region_usa - region_europeanUnion = _mscl.WirelessTypes_region_europeanUnion - region_japan = _mscl.WirelessTypes_region_japan - region_other = _mscl.WirelessTypes_region_other - region_brazil = _mscl.WirelessTypes_region_brazil - region_china = _mscl.WirelessTypes_region_china - region_australia_newzealand = _mscl.WirelessTypes_region_australia_newzealand - region_singapore = _mscl.WirelessTypes_region_singapore - region_canada = _mscl.WirelessTypes_region_canada - region_southAfrica = _mscl.WirelessTypes_region_southAfrica - region_indonesia = _mscl.WirelessTypes_region_indonesia - region_taiwan = _mscl.WirelessTypes_region_taiwan - chSetting_inputRange = _mscl.WirelessTypes_chSetting_inputRange - chSetting_filterSettlingTime = _mscl.WirelessTypes_chSetting_filterSettlingTime - chSetting_thermocoupleType = _mscl.WirelessTypes_chSetting_thermocoupleType - chSetting_linearEquation = _mscl.WirelessTypes_chSetting_linearEquation - chSetting_unit = _mscl.WirelessTypes_chSetting_unit - chSetting_equationType = _mscl.WirelessTypes_chSetting_equationType - chSetting_hardwareOffset = _mscl.WirelessTypes_chSetting_hardwareOffset - chSetting_autoBalance = _mscl.WirelessTypes_chSetting_autoBalance - chSetting_gaugeFactor = _mscl.WirelessTypes_chSetting_gaugeFactor - chSetting_antiAliasingFilter = _mscl.WirelessTypes_chSetting_antiAliasingFilter - chSetting_legacyShuntCal = _mscl.WirelessTypes_chSetting_legacyShuntCal - chSetting_autoShuntCal = _mscl.WirelessTypes_chSetting_autoShuntCal - chSetting_lowPassFilter = _mscl.WirelessTypes_chSetting_lowPassFilter - chSetting_highPassFilter = _mscl.WirelessTypes_chSetting_highPassFilter - chSetting_tempSensorOptions = _mscl.WirelessTypes_chSetting_tempSensorOptions - chSetting_debounceFilter = _mscl.WirelessTypes_chSetting_debounceFilter - chSetting_pullUpResistor = _mscl.WirelessTypes_chSetting_pullUpResistor - chSetting_factoryLinearEq = _mscl.WirelessTypes_chSetting_factoryLinearEq - chSetting_factoryUnit = _mscl.WirelessTypes_chSetting_factoryUnit - chSetting_factoryEqType = _mscl.WirelessTypes_chSetting_factoryEqType - autobalance_success = _mscl.WirelessTypes_autobalance_success - autobalance_maybeInvalid = _mscl.WirelessTypes_autobalance_maybeInvalid - autobalance_notSupportedByNode = _mscl.WirelessTypes_autobalance_notSupportedByNode - autobalance_notSupportedByCh = _mscl.WirelessTypes_autobalance_notSupportedByCh - autobalance_targetOutOfRange = _mscl.WirelessTypes_autobalance_targetOutOfRange - autobalance_failed = _mscl.WirelessTypes_autobalance_failed - autobalance_legacyNone = _mscl.WirelessTypes_autobalance_legacyNone - autobalance_notComplete = _mscl.WirelessTypes_autobalance_notComplete - autocal_success = _mscl.WirelessTypes_autocal_success - autocal_maybeInvalid_applied = _mscl.WirelessTypes_autocal_maybeInvalid_applied - autocal_maybeInvalid_notApplied = _mscl.WirelessTypes_autocal_maybeInvalid_notApplied - autocal_notComplete = _mscl.WirelessTypes_autocal_notComplete - autocalError_none = _mscl.WirelessTypes_autocalError_none - autocalError_sensorDetached = _mscl.WirelessTypes_autocalError_sensorDetached - autocalError_sensorShorted = _mscl.WirelessTypes_autocalError_sensorShorted - autocalError_unsupportedChannel = _mscl.WirelessTypes_autocalError_unsupportedChannel - autocalError_baseHighRail = _mscl.WirelessTypes_autocalError_baseHighRail - autocalError_baseLowRail = _mscl.WirelessTypes_autocalError_baseLowRail - autocalError_shuntHighRail = _mscl.WirelessTypes_autocalError_shuntHighRail - autocalError_shuntLowRail = _mscl.WirelessTypes_autocalError_shuntLowRail - autocalError_ramp = _mscl.WirelessTypes_autocalError_ramp - autocalError_noShunt = _mscl.WirelessTypes_autocalError_noShunt - autocalError_timeout = _mscl.WirelessTypes_autocalError_timeout - fatigueMode_angleStrain = _mscl.WirelessTypes_fatigueMode_angleStrain - fatigueMode_distributedAngle = _mscl.WirelessTypes_fatigueMode_distributedAngle - fatigueMode_rawGaugeStrain = _mscl.WirelessTypes_fatigueMode_rawGaugeStrain - eventTrigger_ceiling = _mscl.WirelessTypes_eventTrigger_ceiling - eventTrigger_floor = _mscl.WirelessTypes_eventTrigger_floor - filter_33000hz = _mscl.WirelessTypes_filter_33000hz - filter_20000hz = _mscl.WirelessTypes_filter_20000hz - filter_10000hz = _mscl.WirelessTypes_filter_10000hz - filter_5222hz = _mscl.WirelessTypes_filter_5222hz - filter_5000hz = _mscl.WirelessTypes_filter_5000hz - filter_4416hz = _mscl.WirelessTypes_filter_4416hz - filter_4096hz = _mscl.WirelessTypes_filter_4096hz - filter_4000hz = _mscl.WirelessTypes_filter_4000hz - filter_2208hz = _mscl.WirelessTypes_filter_2208hz - filter_2048hz = _mscl.WirelessTypes_filter_2048hz - filter_2000hz = _mscl.WirelessTypes_filter_2000hz - filter_1104hz = _mscl.WirelessTypes_filter_1104hz - filter_1024hz = _mscl.WirelessTypes_filter_1024hz - filter_1000hz = _mscl.WirelessTypes_filter_1000hz - filter_800hz = _mscl.WirelessTypes_filter_800hz - filter_552hz = _mscl.WirelessTypes_filter_552hz - filter_512hz = _mscl.WirelessTypes_filter_512hz - filter_500hz = _mscl.WirelessTypes_filter_500hz - filter_418hz = _mscl.WirelessTypes_filter_418hz - filter_294hz = _mscl.WirelessTypes_filter_294hz - filter_256hz = _mscl.WirelessTypes_filter_256hz - filter_250hz = _mscl.WirelessTypes_filter_250hz - filter_209hz = _mscl.WirelessTypes_filter_209hz - filter_200hz = _mscl.WirelessTypes_filter_200hz - filter_147hz = _mscl.WirelessTypes_filter_147hz - filter_128hz = _mscl.WirelessTypes_filter_128hz - filter_125hz = _mscl.WirelessTypes_filter_125hz - filter_104hz = _mscl.WirelessTypes_filter_104hz - filter_100hz = _mscl.WirelessTypes_filter_100hz - filter_62hz = _mscl.WirelessTypes_filter_62hz - filter_52hz = _mscl.WirelessTypes_filter_52hz - filter_50hz = _mscl.WirelessTypes_filter_50hz - filter_31hz = _mscl.WirelessTypes_filter_31hz - filter_26hz = _mscl.WirelessTypes_filter_26hz - filter_12_66hz = _mscl.WirelessTypes_filter_12_66hz - filter_2_6hz = _mscl.WirelessTypes_filter_2_6hz - highPass_off = _mscl.WirelessTypes_highPass_off - highPass_auto = _mscl.WirelessTypes_highPass_auto - cfc_10 = _mscl.WirelessTypes_cfc_10 - cfc_21 = _mscl.WirelessTypes_cfc_21 - cfc_60 = _mscl.WirelessTypes_cfc_60 - storageLimit_overwrite = _mscl.WirelessTypes_storageLimit_overwrite - storageLimit_stop = _mscl.WirelessTypes_storageLimit_stop - range_14_545mV = _mscl.WirelessTypes_range_14_545mV - range_10_236mV = _mscl.WirelessTypes_range_10_236mV - range_7_608mV = _mscl.WirelessTypes_range_7_608mV - range_4_046mV = _mscl.WirelessTypes_range_4_046mV - range_2_008mV = _mscl.WirelessTypes_range_2_008mV - range_1_511mV = _mscl.WirelessTypes_range_1_511mV - range_1_001mV = _mscl.WirelessTypes_range_1_001mV - range_0_812mV = _mscl.WirelessTypes_range_0_812mV - range_75mV = _mscl.WirelessTypes_range_75mV - range_37_5mV = _mscl.WirelessTypes_range_37_5mV - range_18_75mV = _mscl.WirelessTypes_range_18_75mV - range_9_38mV = _mscl.WirelessTypes_range_9_38mV - range_4_69mV = _mscl.WirelessTypes_range_4_69mV - range_2_34mV = _mscl.WirelessTypes_range_2_34mV - range_1_17mV = _mscl.WirelessTypes_range_1_17mV - range_0_586mV = _mscl.WirelessTypes_range_0_586mV - range_70mV = _mscl.WirelessTypes_range_70mV - range_35mV = _mscl.WirelessTypes_range_35mV - range_17_5mV = _mscl.WirelessTypes_range_17_5mV - range_8_75mV = _mscl.WirelessTypes_range_8_75mV - range_4_38mV = _mscl.WirelessTypes_range_4_38mV - range_2_19mV = _mscl.WirelessTypes_range_2_19mV - range_1_09mV = _mscl.WirelessTypes_range_1_09mV - range_0_547mV = _mscl.WirelessTypes_range_0_547mV - range_44mV = _mscl.WirelessTypes_range_44mV - range_30mV = _mscl.WirelessTypes_range_30mV - range_20mV = _mscl.WirelessTypes_range_20mV - range_15mV = _mscl.WirelessTypes_range_15mV - range_10mV = _mscl.WirelessTypes_range_10mV - range_5mV = _mscl.WirelessTypes_range_5mV - range_3mV = _mscl.WirelessTypes_range_3mV - range_2mV = _mscl.WirelessTypes_range_2mV - range_6mV = _mscl.WirelessTypes_range_6mV - range_1mV = _mscl.WirelessTypes_range_1mV - range_50mV = _mscl.WirelessTypes_range_50mV - range_2_5mV = _mscl.WirelessTypes_range_2_5mV - range_0_6mV = _mscl.WirelessTypes_range_0_6mV - range_0_35mV = _mscl.WirelessTypes_range_0_35mV - range_0_1mV = _mscl.WirelessTypes_range_0_1mV - range_156mV = _mscl.WirelessTypes_range_156mV - range_78_1mV = _mscl.WirelessTypes_range_78_1mV - range_39mV = _mscl.WirelessTypes_range_39mV - range_19_5mV = _mscl.WirelessTypes_range_19_5mV - range_9_76mV = _mscl.WirelessTypes_range_9_76mV - range_4_88mV = _mscl.WirelessTypes_range_4_88mV - range_2_44mV = _mscl.WirelessTypes_range_2_44mV - range_1_22mV = _mscl.WirelessTypes_range_1_22mV - range_10_24V = _mscl.WirelessTypes_range_10_24V - range_5_12V = _mscl.WirelessTypes_range_5_12V - range_2_56V = _mscl.WirelessTypes_range_2_56V - range_0to10_24V = _mscl.WirelessTypes_range_0to10_24V - range_0to5_12V = _mscl.WirelessTypes_range_0to5_12V - range_1_147V = _mscl.WirelessTypes_range_1_147V - range_585mV = _mscl.WirelessTypes_range_585mV - range_292_5mV = _mscl.WirelessTypes_range_292_5mV - range_146_25mV = _mscl.WirelessTypes_range_146_25mV - range_73_13mV = _mscl.WirelessTypes_range_73_13mV - range_36_56mV = _mscl.WirelessTypes_range_36_56mV - range_18_23mV = _mscl.WirelessTypes_range_18_23mV - range_9_14mV = _mscl.WirelessTypes_range_9_14mV - range_5_74V = _mscl.WirelessTypes_range_5_74V - range_2_93V = _mscl.WirelessTypes_range_2_93V - range_1_46V = _mscl.WirelessTypes_range_1_46V - range_731_3mV = _mscl.WirelessTypes_range_731_3mV - range_365_6mV = _mscl.WirelessTypes_range_365_6mV - range_182_8mV = _mscl.WirelessTypes_range_182_8mV - range_91_4mV = _mscl.WirelessTypes_range_91_4mV - range_45_7mV = _mscl.WirelessTypes_range_45_7mV - range_62_5mV = _mscl.WirelessTypes_range_62_5mV - range_31_25mV = _mscl.WirelessTypes_range_31_25mV - range_15_63mV = _mscl.WirelessTypes_range_15_63mV - range_7_81mV = _mscl.WirelessTypes_range_7_81mV - range_3_91mV = _mscl.WirelessTypes_range_3_91mV - range_1_95mV = _mscl.WirelessTypes_range_1_95mV - range_0_976mV = _mscl.WirelessTypes_range_0_976mV - range_0_488mV = _mscl.WirelessTypes_range_0_488mV - range_2G = _mscl.WirelessTypes_range_2G - range_4G = _mscl.WirelessTypes_range_4G - range_8G = _mscl.WirelessTypes_range_8G - range_10G = _mscl.WirelessTypes_range_10G - range_20G = _mscl.WirelessTypes_range_20G - range_40G = _mscl.WirelessTypes_range_40G - range_2_5V = _mscl.WirelessTypes_range_2_5V - range_1_25V = _mscl.WirelessTypes_range_1_25V - range_625mV = _mscl.WirelessTypes_range_625mV - range_312_5mV = _mscl.WirelessTypes_range_312_5mV - range_156_25mV = _mscl.WirelessTypes_range_156_25mV - range_78_125mV = _mscl.WirelessTypes_range_78_125mV - range_39_063mV = _mscl.WirelessTypes_range_39_063mV - range_19_532mV = _mscl.WirelessTypes_range_19_532mV - range_0to2_5V = _mscl.WirelessTypes_range_0to2_5V - range_0to1_25V = _mscl.WirelessTypes_range_0to1_25V - range_0to625mV = _mscl.WirelessTypes_range_0to625mV - range_0to312_5mV = _mscl.WirelessTypes_range_0to312_5mV - range_0to156_25mV = _mscl.WirelessTypes_range_0to156_25mV - range_0to78_125mV = _mscl.WirelessTypes_range_0to78_125mV - range_0to39_063mV = _mscl.WirelessTypes_range_0to39_063mV - range_0to19_532mV = _mscl.WirelessTypes_range_0to19_532mV - range_9_766mV = _mscl.WirelessTypes_range_9_766mV - range_1_35V_or_0to1000000ohm = _mscl.WirelessTypes_range_1_35V_or_0to1000000ohm - range_1_25V_or_0to10000ohm = _mscl.WirelessTypes_range_1_25V_or_0to10000ohm - range_625mV_or_0to3333_3ohm = _mscl.WirelessTypes_range_625mV_or_0to3333_3ohm - range_312_5mV_or_0to1428_6ohm = _mscl.WirelessTypes_range_312_5mV_or_0to1428_6ohm - range_156_25mV_or_0to666_67ohm = _mscl.WirelessTypes_range_156_25mV_or_0to666_67ohm - range_78_125mV_or_0to322_58ohm = _mscl.WirelessTypes_range_78_125mV_or_0to322_58ohm - range_39_0625mV_or_0to158_73ohm = _mscl.WirelessTypes_range_39_0625mV_or_0to158_73ohm - range_19_5313mV_or_0to78_74ohm = _mscl.WirelessTypes_range_19_5313mV_or_0to78_74ohm - range_750mV = _mscl.WirelessTypes_range_750mV - range_375mV = _mscl.WirelessTypes_range_375mV - range_187_5mV = _mscl.WirelessTypes_range_187_5mV - range_93_75mV = _mscl.WirelessTypes_range_93_75mV - range_46_875mV = _mscl.WirelessTypes_range_46_875mV - range_23_438mV = _mscl.WirelessTypes_range_23_438mV - range_11_719mV = _mscl.WirelessTypes_range_11_719mV - range_5_859mV = _mscl.WirelessTypes_range_5_859mV - range_0to1_5V = _mscl.WirelessTypes_range_0to1_5V - range_0to750mV = _mscl.WirelessTypes_range_0to750mV - range_0to375mV = _mscl.WirelessTypes_range_0to375mV - range_0to187_5mV = _mscl.WirelessTypes_range_0to187_5mV - range_0to93_75mV = _mscl.WirelessTypes_range_0to93_75mV - range_0to46_875mV = _mscl.WirelessTypes_range_0to46_875mV - range_0to23_438mV = _mscl.WirelessTypes_range_0to23_438mV - range_0to11_719mV = _mscl.WirelessTypes_range_0to11_719mV - range_1_5V = _mscl.WirelessTypes_range_1_5V - range_1_35V = _mscl.WirelessTypes_range_1_35V - range_0to1000000ohm = _mscl.WirelessTypes_range_0to1000000ohm - range_0to10000ohm = _mscl.WirelessTypes_range_0to10000ohm - range_0to3333_3ohm = _mscl.WirelessTypes_range_0to3333_3ohm - range_0to1428_6ohm = _mscl.WirelessTypes_range_0to1428_6ohm - range_0to666_67ohm = _mscl.WirelessTypes_range_0to666_67ohm - range_0to322_58ohm = _mscl.WirelessTypes_range_0to322_58ohm - range_0to158_73ohm = _mscl.WirelessTypes_range_0to158_73ohm - range_0to78_74ohm = _mscl.WirelessTypes_range_0to78_74ohm - range_39_0625mV = _mscl.WirelessTypes_range_39_0625mV - range_19_5313mV = _mscl.WirelessTypes_range_19_5313mV - range_125mV = _mscl.WirelessTypes_range_125mV - range_invalid = _mscl.WirelessTypes_range_invalid - dataMode_none = _mscl.WirelessTypes_dataMode_none - dataMode_raw = _mscl.WirelessTypes_dataMode_raw - dataMode_derived = _mscl.WirelessTypes_dataMode_derived - dataMode_raw_derived = _mscl.WirelessTypes_dataMode_raw_derived - derivedCategory_rms = _mscl.WirelessTypes_derivedCategory_rms - derivedCategory_peakToPeak = _mscl.WirelessTypes_derivedCategory_peakToPeak - derivedCategory_velocity = _mscl.WirelessTypes_derivedCategory_velocity - derivedCategory_crestFactor = _mscl.WirelessTypes_derivedCategory_crestFactor - derivedCategory_mean = _mscl.WirelessTypes_derivedCategory_mean - derivedAlgId_rms = _mscl.WirelessTypes_derivedAlgId_rms - derivedAlgId_peakToPeak = _mscl.WirelessTypes_derivedAlgId_peakToPeak - derivedAlgId_ips = _mscl.WirelessTypes_derivedAlgId_ips - derivedAlgId_crestFactor = _mscl.WirelessTypes_derivedAlgId_crestFactor - derivedAlgId_mean = _mscl.WirelessTypes_derivedAlgId_mean - derivedAlgId_mmps = _mscl.WirelessTypes_derivedAlgId_mmps - derivedVelocity_ips = _mscl.WirelessTypes_derivedVelocity_ips - derivedVelocity_mmps = _mscl.WirelessTypes_derivedVelocity_mmps - commProtocol_lxrs = _mscl.WirelessTypes_commProtocol_lxrs - commProtocol_lxrsPlus = _mscl.WirelessTypes_commProtocol_lxrsPlus - voltage_5120mV = _mscl.WirelessTypes_voltage_5120mV - voltage_5000mV = _mscl.WirelessTypes_voltage_5000mV - voltage_4096mV = _mscl.WirelessTypes_voltage_4096mV - voltage_3000mV = _mscl.WirelessTypes_voltage_3000mV - voltage_2800mV = _mscl.WirelessTypes_voltage_2800mV - voltage_2750mV = _mscl.WirelessTypes_voltage_2750mV - voltage_2700mV = _mscl.WirelessTypes_voltage_2700mV - voltage_2500mV = _mscl.WirelessTypes_voltage_2500mV - voltage_1500mV = _mscl.WirelessTypes_voltage_1500mV - sensorOutputMode_accel = _mscl.WirelessTypes_sensorOutputMode_accel - sensorOutputMode_tilt = _mscl.WirelessTypes_sensorOutputMode_tilt - batteryStatus_good = _mscl.WirelessTypes_batteryStatus_good - batteryStatus_low = _mscl.WirelessTypes_batteryStatus_low - batteryStatus_critical = _mscl.WirelessTypes_batteryStatus_critical - externalPower_notConnected = _mscl.WirelessTypes_externalPower_notConnected - externalPower_connected = _mscl.WirelessTypes_externalPower_connected - delayVersion_v1 = _mscl.WirelessTypes_delayVersion_v1 - delayVersion_v2 = _mscl.WirelessTypes_delayVersion_v2 - delayVersion_v3 = _mscl.WirelessTypes_delayVersion_v3 - delayVersion_v4 = _mscl.WirelessTypes_delayVersion_v4 - UNKNOWN_RSSI = _mscl.WirelessTypes_UNKNOWN_RSSI - - def __init__(self): - _mscl.WirelessTypes_swiginit(self, _mscl.new_WirelessTypes()) - __swig_destroy__ = _mscl.delete_WirelessTypes - -# Register WirelessTypes in _mscl: -_mscl.WirelessTypes_swigregister(WirelessTypes) - -class SampleRate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - rateType_seconds = _mscl.SampleRate_rateType_seconds - rateType_hertz = _mscl.SampleRate_rateType_hertz - rateType_event = _mscl.SampleRate_rateType_event - rateType_decimation = _mscl.SampleRate_rateType_decimation - - def __init__(self, *args): - _mscl.SampleRate_swiginit(self, _mscl.new_SampleRate(*args)) - - def __str__(self): - return _mscl.SampleRate___str__(self) - - def prettyStr(self): - return _mscl.SampleRate_prettyStr(self) - - def samplePeriod(self): - return _mscl.SampleRate_samplePeriod(self) - - def samplesPerSecond(self): - return _mscl.SampleRate_samplesPerSecond(self) - - def rateType(self): - return _mscl.SampleRate_rateType(self) - - def samples(self): - return _mscl.SampleRate_samples(self) - - def toWirelessSampleRate(self): - return _mscl.SampleRate_toWirelessSampleRate(self) - - def toDecimation(self, sampleRateBase): - return _mscl.SampleRate_toDecimation(self, sampleRateBase) - - @staticmethod - def Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - - @staticmethod - def KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - - @staticmethod - def Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - - @staticmethod - def Event(): - return _mscl.SampleRate_Event() - - @staticmethod - def Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - - @staticmethod - def FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - - @staticmethod - def FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - __swig_destroy__ = _mscl.delete_SampleRate - -# Register SampleRate in _mscl: -_mscl.SampleRate_swigregister(SampleRate) - -def SampleRate_Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - -def SampleRate_KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - -def SampleRate_Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - -def SampleRate_Event(): - return _mscl.SampleRate_Event() - -def SampleRate_Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - -def SampleRate_FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - -def SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - -class Matrix(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Matrix_swiginit(self, _mscl.new_Matrix()) - - def valuesType(self): - return _mscl.Matrix_valuesType(self) - - def rows(self): - return _mscl.Matrix_rows(self) - - def columns(self): - return _mscl.Matrix_columns(self) - - def as_doubleAt(self, row, column): - return _mscl.Matrix_as_doubleAt(self, row, column) - - def as_floatAt(self, row, column): - return _mscl.Matrix_as_floatAt(self, row, column) - - def as_uint16At(self, row, column): - return _mscl.Matrix_as_uint16At(self, row, column) - - def as_uint8At(self, row, column): - return _mscl.Matrix_as_uint8At(self, row, column) - - def __str__(self): - return _mscl.Matrix___str__(self) - __swig_destroy__ = _mscl.delete_Matrix - -# Register Matrix in _mscl: -_mscl.Matrix_swigregister(Matrix) - -class Vector(Matrix): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Vector_swiginit(self, _mscl.new_Vector()) - - def size(self): - return _mscl.Vector_size(self) - - def as_doubleAt(self, index): - return _mscl.Vector_as_doubleAt(self, index) - - def as_floatAt(self, index): - return _mscl.Vector_as_floatAt(self, index) - - def as_uint16At(self, index): - return _mscl.Vector_as_uint16At(self, index) - - def as_uint8At(self, index): - return _mscl.Vector_as_uint8At(self, index) - __swig_destroy__ = _mscl.delete_Vector - -# Register Vector in _mscl: -_mscl.Vector_swigregister(Vector) - -class Bitfield(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Bitfield_swiginit(self, _mscl.new_Bitfield(*args)) - __swig_destroy__ = _mscl.delete_Bitfield - - def value(self, *args): - return _mscl.Bitfield_value(self, *args) - - def get(self, mask, shiftToLsb=True): - return _mscl.Bitfield_get(self, mask, shiftToLsb) - - def set(self, mask, value, shiftRequired=True): - return _mscl.Bitfield_set(self, mask, value, shiftRequired) - - def checkBit(self, bitIndex, indexBase=0): - return _mscl.Bitfield_checkBit(self, bitIndex, indexBase) - - def setBit(self, bitIndex, value, indexBase=0): - return _mscl.Bitfield_setBit(self, bitIndex, value, indexBase) - -# Register Bitfield in _mscl: -_mscl.Bitfield_swigregister(Bitfield) - -class StructuralHealth(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, angle, uptime, damage, processingRate, histogram): - _mscl.StructuralHealth_swiginit(self, _mscl.new_StructuralHealth(angle, uptime, damage, processingRate, histogram)) - - def angle(self): - return _mscl.StructuralHealth_angle(self) - - def uptime(self): - return _mscl.StructuralHealth_uptime(self) - - def damage(self): - return _mscl.StructuralHealth_damage(self) - - def processingRate(self): - return _mscl.StructuralHealth_processingRate(self) - - def histogram(self): - return _mscl.StructuralHealth_histogram(self) - __swig_destroy__ = _mscl.delete_StructuralHealth - -# Register StructuralHealth in _mscl: -_mscl.StructuralHealth_swigregister(StructuralHealth) - -class DataPoint(Value): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - channelPropertyId_angle = _mscl.DataPoint_channelPropertyId_angle - channelPropertyId_derivedFrom = _mscl.DataPoint_channelPropertyId_derivedFrom - channelPropertyId_derivedAlgorithmId = _mscl.DataPoint_channelPropertyId_derivedAlgorithmId - __swig_destroy__ = _mscl.delete_DataPoint - - def channelProperty(self, id): - return _mscl.DataPoint_channelProperty(self, id) - - def as_Vector(self): - return _mscl.DataPoint_as_Vector(self) - - def as_Matrix(self): - return _mscl.DataPoint_as_Matrix(self) - - def as_Timestamp(self): - return _mscl.DataPoint_as_Timestamp(self) - - def as_Bytes(self): - return _mscl.DataPoint_as_Bytes(self) - - def as_StructuralHealth(self): - return _mscl.DataPoint_as_StructuralHealth(self) - - def as_RfSweep(self): - return _mscl.DataPoint_as_RfSweep(self) - - def as_string(self): - return _mscl.DataPoint_as_string(self) - -# Register DataPoint in _mscl: -_mscl.DataPoint_swigregister(DataPoint) - -class ConfigIssue(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONFIG_SAMPLING_MODE = _mscl.ConfigIssue_CONFIG_SAMPLING_MODE - CONFIG_ACTIVE_CHANNELS = _mscl.ConfigIssue_CONFIG_ACTIVE_CHANNELS - CONFIG_SAMPLE_RATE = _mscl.ConfigIssue_CONFIG_SAMPLE_RATE - CONFIG_SWEEPS = _mscl.ConfigIssue_CONFIG_SWEEPS - CONFIG_UNLIMITED_DURATION = _mscl.ConfigIssue_CONFIG_UNLIMITED_DURATION - CONFIG_DATA_FORMAT = _mscl.ConfigIssue_CONFIG_DATA_FORMAT - CONFIG_DATA_COLLECTION_METHOD = _mscl.ConfigIssue_CONFIG_DATA_COLLECTION_METHOD - CONFIG_TIME_BETWEEN_BURSTS = _mscl.ConfigIssue_CONFIG_TIME_BETWEEN_BURSTS - CONFIG_THERMOCOUPLE_TYPE = _mscl.ConfigIssue_CONFIG_THERMOCOUPLE_TYPE - CONFIG_FILTER_SETTLING_TIME = _mscl.ConfigIssue_CONFIG_FILTER_SETTLING_TIME - CONFIG_BUTTON = _mscl.ConfigIssue_CONFIG_BUTTON - CONFIG_ANALOG_PAIR = _mscl.ConfigIssue_CONFIG_ANALOG_PAIR - CONFIG_INPUT_RANGE = _mscl.ConfigIssue_CONFIG_INPUT_RANGE - CONFIG_INACTIVITY_TIMEOUT = _mscl.ConfigIssue_CONFIG_INACTIVITY_TIMEOUT - CONFIG_CHECK_RADIO_INTERVAL = _mscl.ConfigIssue_CONFIG_CHECK_RADIO_INTERVAL - CONFIG_LOST_BEACON_TIMEOUT = _mscl.ConfigIssue_CONFIG_LOST_BEACON_TIMEOUT - CONFIG_DEFAULT_MODE = _mscl.ConfigIssue_CONFIG_DEFAULT_MODE - CONFIG_TRANSMIT_POWER = _mscl.ConfigIssue_CONFIG_TRANSMIT_POWER - CONFIG_LINEAR_EQUATION = _mscl.ConfigIssue_CONFIG_LINEAR_EQUATION - CONFIG_FATIGUE = _mscl.ConfigIssue_CONFIG_FATIGUE - CONFIG_FATIGUE_MODE = _mscl.ConfigIssue_CONFIG_FATIGUE_MODE - CONFIG_FATIGUE_ANGLE_ID = _mscl.ConfigIssue_CONFIG_FATIGUE_ANGLE_ID - CONFIG_FATIGUE_SN_CURVE = _mscl.ConfigIssue_CONFIG_FATIGUE_SN_CURVE - CONFIG_FATIGUE_DIST_NUM_ANGLES = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_NUM_ANGLES - CONFIG_FATIGUE_DIST_ANGLE = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_ANGLE - CONFIG_HISTOGRAM = _mscl.ConfigIssue_CONFIG_HISTOGRAM - CONFIG_HISTOGRAM_TX_RATE = _mscl.ConfigIssue_CONFIG_HISTOGRAM_TX_RATE - CONFIG_HARDWARE_OFFSET = _mscl.ConfigIssue_CONFIG_HARDWARE_OFFSET - CONFIG_ACTIVITY_SENSE = _mscl.ConfigIssue_CONFIG_ACTIVITY_SENSE - CONFIG_GAUGE_FACTOR = _mscl.ConfigIssue_CONFIG_GAUGE_FACTOR - CONFIG_EVENT_TRIGGER = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER - CONFIG_EVENT_TRIGGER_DURATION = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_DURATION - CONFIG_EVENT_TRIGGER_MASK = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_MASK - CONFIG_DIAGNOSTIC_INTERVAL = _mscl.ConfigIssue_CONFIG_DIAGNOSTIC_INTERVAL - CONFIG_ANTI_ALIASING_FILTER = _mscl.ConfigIssue_CONFIG_ANTI_ALIASING_FILTER - CONFIG_STORAGE_LIMIT_MODE = _mscl.ConfigIssue_CONFIG_STORAGE_LIMIT_MODE - CONFIG_SENSOR_DELAY = _mscl.ConfigIssue_CONFIG_SENSOR_DELAY - CONFIG_LOW_PASS_FILTER = _mscl.ConfigIssue_CONFIG_LOW_PASS_FILTER - CONFIG_DATA_MODE = _mscl.ConfigIssue_CONFIG_DATA_MODE - CONFIG_DERIVED_DATA_RATE = _mscl.ConfigIssue_CONFIG_DERIVED_DATA_RATE - CONFIG_DERIVED_MASK_RMS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_RMS - CONFIG_DERIVED_MASK_P2P = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_P2P - CONFIG_DERIVED_MASK_IPS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_IPS - CONFIG_DERIVED_MASK_CREST_FACTOR = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_CREST_FACTOR - CONFIG_HIGH_PASS_FILTER = _mscl.ConfigIssue_CONFIG_HIGH_PASS_FILTER - CONFIG_DERIVED_MASK = _mscl.ConfigIssue_CONFIG_DERIVED_MASK - CONFIG_COMM_PROTOCOL = _mscl.ConfigIssue_CONFIG_COMM_PROTOCOL - CONFIG_DERIVED_MASK_MEAN = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_MEAN - CONFIG_GAUGE_RESISTANCE = _mscl.ConfigIssue_CONFIG_GAUGE_RESISTANCE - CONFIG_NUM_ACTIVE_GAUGES = _mscl.ConfigIssue_CONFIG_NUM_ACTIVE_GAUGES - CONFIG_TEMP_SENSOR_OPTS = _mscl.ConfigIssue_CONFIG_TEMP_SENSOR_OPTS - CONFIG_DEBOUNCE_FILTER = _mscl.ConfigIssue_CONFIG_DEBOUNCE_FILTER - CONFIG_PULLUP_RESISTOR = _mscl.ConfigIssue_CONFIG_PULLUP_RESISTOR - CONFIG_EXCITATION_VOLTAGE = _mscl.ConfigIssue_CONFIG_EXCITATION_VOLTAGE - CONFIG_DERIVED_UNIT = _mscl.ConfigIssue_CONFIG_DERIVED_UNIT - CONFIG_SENSOR_OUTPUT_MODE = _mscl.ConfigIssue_CONFIG_SENSOR_OUTPUT_MODE - CONFIG_LOW_BATTERY_THRESHOLD = _mscl.ConfigIssue_CONFIG_LOW_BATTERY_THRESHOLD - CONFIG_CFC_FILTER = _mscl.ConfigIssue_CONFIG_CFC_FILTER - - def __init__(self, *args): - _mscl.ConfigIssue_swiginit(self, _mscl.new_ConfigIssue(*args)) - - def id(self): - return _mscl.ConfigIssue_id(self) - - def description(self): - return _mscl.ConfigIssue_description(self) - - def isChannelGroupIssue(self): - return _mscl.ConfigIssue_isChannelGroupIssue(self) - - def channelMask(self): - return _mscl.ConfigIssue_channelMask(self) - __swig_destroy__ = _mscl.delete_ConfigIssue - -# Register ConfigIssue in _mscl: -_mscl.ConfigIssue_swigregister(ConfigIssue) - -class ActivitySense(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ActivitySense_swiginit(self, _mscl.new_ActivitySense()) - - def enabled(self, *args): - return _mscl.ActivitySense_enabled(self, *args) - - def activityThreshold(self, *args): - return _mscl.ActivitySense_activityThreshold(self, *args) - - def inactivityThreshold(self, *args): - return _mscl.ActivitySense_inactivityThreshold(self, *args) - - def activityTime(self, *args): - return _mscl.ActivitySense_activityTime(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.ActivitySense_inactivityTimeout(self, *args) - __swig_destroy__ = _mscl.delete_ActivitySense - -# Register ActivitySense in _mscl: -_mscl.ActivitySense_swigregister(ActivitySense) - -class Trigger(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Trigger_swiginit(self, _mscl.new_Trigger(*args)) - - def channelNumber(self, *args): - return _mscl.Trigger_channelNumber(self, *args) - - def triggerType(self, *args): - return _mscl.Trigger_triggerType(self, *args) - - def triggerValue(self, *args): - return _mscl.Trigger_triggerValue(self, *args) - __swig_destroy__ = _mscl.delete_Trigger - -# Register Trigger in _mscl: -_mscl.Trigger_swigregister(Trigger) - -class EventTriggerOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerOptions_swiginit(self, _mscl.new_EventTriggerOptions()) - - def triggerMask(self, *args): - return _mscl.EventTriggerOptions_triggerMask(self, *args) - - def anyTriggersEnabled(self): - return _mscl.EventTriggerOptions_anyTriggersEnabled(self) - - def triggerEnabled(self, triggerIndex): - return _mscl.EventTriggerOptions_triggerEnabled(self, triggerIndex) - - def enableTrigger(self, triggerIndex, enable=True): - return _mscl.EventTriggerOptions_enableTrigger(self, triggerIndex, enable) - - def preDuration(self, *args): - return _mscl.EventTriggerOptions_preDuration(self, *args) - - def postDuration(self, *args): - return _mscl.EventTriggerOptions_postDuration(self, *args) - - def trigger(self, *args): - return _mscl.EventTriggerOptions_trigger(self, *args) - - def triggers(self): - return _mscl.EventTriggerOptions_triggers(self) - __swig_destroy__ = _mscl.delete_EventTriggerOptions - -# Register EventTriggerOptions in _mscl: -_mscl.EventTriggerOptions_swigregister(EventTriggerOptions) - -class SnCurveSegment(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.SnCurveSegment_swiginit(self, _mscl.new_SnCurveSegment(*args)) - - def m(self, *args): - return _mscl.SnCurveSegment_m(self, *args) - - def logA(self, *args): - return _mscl.SnCurveSegment_logA(self, *args) - __swig_destroy__ = _mscl.delete_SnCurveSegment - -# Register SnCurveSegment in _mscl: -_mscl.SnCurveSegment_swigregister(SnCurveSegment) - -class FatigueOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FatigueOptions_swiginit(self, _mscl.new_FatigueOptions()) - - def youngsModulus(self, *args): - return _mscl.FatigueOptions_youngsModulus(self, *args) - - def poissonsRatio(self, *args): - return _mscl.FatigueOptions_poissonsRatio(self, *args) - - def peakValleyThreshold(self, *args): - return _mscl.FatigueOptions_peakValleyThreshold(self, *args) - - def debugMode(self, *args): - return _mscl.FatigueOptions_debugMode(self, *args) - - def damageAngles(self): - return _mscl.FatigueOptions_damageAngles(self) - - def damageAngle(self, *args): - return _mscl.FatigueOptions_damageAngle(self, *args) - - def snCurveSegments(self): - return _mscl.FatigueOptions_snCurveSegments(self) - - def snCurveSegment(self, *args): - return _mscl.FatigueOptions_snCurveSegment(self, *args) - - def fatigueMode(self, *args): - return _mscl.FatigueOptions_fatigueMode(self, *args) - - def distributedAngleMode_numAngles(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_numAngles(self, *args) - - def distributedAngleMode_lowerBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_lowerBound(self, *args) - - def distributedAngleMode_upperBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_upperBound(self, *args) - - def histogramEnable(self, *args): - return _mscl.FatigueOptions_histogramEnable(self, *args) - __swig_destroy__ = _mscl.delete_FatigueOptions - -# Register FatigueOptions in _mscl: -_mscl.FatigueOptions_swigregister(FatigueOptions) - -class HistogramOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HistogramOptions_swiginit(self, _mscl.new_HistogramOptions()) - - def transmitRate(self, *args): - return _mscl.HistogramOptions_transmitRate(self, *args) - - def binsStart(self, *args): - return _mscl.HistogramOptions_binsStart(self, *args) - - def binsSize(self, *args): - return _mscl.HistogramOptions_binsSize(self, *args) - __swig_destroy__ = _mscl.delete_HistogramOptions - -# Register HistogramOptions in _mscl: -_mscl.HistogramOptions_swigregister(HistogramOptions) - -class InputRangeEntry(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - inputRange = property(_mscl.InputRangeEntry_inputRange_get, _mscl.InputRangeEntry_inputRange_set) - hasGain = property(_mscl.InputRangeEntry_hasGain_get, _mscl.InputRangeEntry_hasGain_set) - gain = property(_mscl.InputRangeEntry_gain_get, _mscl.InputRangeEntry_gain_set) - - def __init__(self, *args): - _mscl.InputRangeEntry_swiginit(self, _mscl.new_InputRangeEntry(*args)) - __swig_destroy__ = _mscl.delete_InputRangeEntry - -# Register InputRangeEntry in _mscl: -_mscl.InputRangeEntry_swigregister(InputRangeEntry) - -class TempSensorOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - - @staticmethod - def RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - - @staticmethod - def Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - - def transducerType(self): - return _mscl.TempSensorOptions_transducerType(self) - - def thermocoupleType(self): - return _mscl.TempSensorOptions_thermocoupleType(self) - - def rtdType(self): - return _mscl.TempSensorOptions_rtdType(self) - - def rtdWireType(self): - return _mscl.TempSensorOptions_rtdWireType(self) - - def thermistorType(self): - return _mscl.TempSensorOptions_thermistorType(self) - __swig_destroy__ = _mscl.delete_TempSensorOptions - -# Register TempSensorOptions in _mscl: -_mscl.TempSensorOptions_swigregister(TempSensorOptions) - -def TempSensorOptions_Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - -def TempSensorOptions_RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - -def TempSensorOptions_Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - -class WirelessModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_vLink_legacy = _mscl.WirelessModels_node_vLink_legacy - node_cfBearingTempLink = _mscl.WirelessModels_node_cfBearingTempLink - node_envLink_pro = _mscl.WirelessModels_node_envLink_pro - node_gLink_2g = _mscl.WirelessModels_node_gLink_2g - node_gLink_10g = _mscl.WirelessModels_node_gLink_10g - node_gLinkII_cust_in = _mscl.WirelessModels_node_gLinkII_cust_in - node_gLinkII_2g_in = _mscl.WirelessModels_node_gLinkII_2g_in - node_gLinkII_10g_in = _mscl.WirelessModels_node_gLinkII_10g_in - node_gLinkII_cust_ex = _mscl.WirelessModels_node_gLinkII_cust_ex - node_gLinkII_2g_ex = _mscl.WirelessModels_node_gLinkII_2g_ex - node_gLinkII_10g_ex = _mscl.WirelessModels_node_gLinkII_10g_ex - node_gLink_rgd_10g = _mscl.WirelessModels_node_gLink_rgd_10g - node_gLink_200_8g = _mscl.WirelessModels_node_gLink_200_8g - node_gLink_200_40g = _mscl.WirelessModels_node_gLink_200_40g - node_gLink_200_8g_oem = _mscl.WirelessModels_node_gLink_200_8g_oem - node_gLink_200_40g_oem = _mscl.WirelessModels_node_gLink_200_40g_oem - node_gLink_200_8g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_8g_oem_mmcx - node_gLink_200_40g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_40g_oem_mmcx - node_gLink_200_8g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_8g_oem_u_fl - node_gLink_200_40g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_40g_oem_u_fl - node_gLink_200_r = _mscl.WirelessModels_node_gLink_200_r - node_sgLink_oem_S = _mscl.WirelessModels_node_sgLink_oem_S - node_sgLink = _mscl.WirelessModels_node_sgLink - node_sgLink200 = _mscl.WirelessModels_node_sgLink200 - node_sgLink200_hbridge_1K = _mscl.WirelessModels_node_sgLink200_hbridge_1K - node_sgLink200_hbridge_350 = _mscl.WirelessModels_node_sgLink200_hbridge_350 - node_sgLink200_hbridge_120 = _mscl.WirelessModels_node_sgLink200_hbridge_120 - node_sgLink200_qbridge_1K = _mscl.WirelessModels_node_sgLink200_qbridge_1K - node_sgLink200_qbridge_350 = _mscl.WirelessModels_node_sgLink200_qbridge_350 - node_sgLink200_qbridge_120 = _mscl.WirelessModels_node_sgLink200_qbridge_120 - node_sgLink_oem = _mscl.WirelessModels_node_sgLink_oem - node_sgLink_micro = _mscl.WirelessModels_node_sgLink_micro - node_sgLink200_oem = _mscl.WirelessModels_node_sgLink200_oem - node_sgLink200_oem_ufl = _mscl.WirelessModels_node_sgLink200_oem_ufl - node_sgLink200_oem_hbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K - node_sgLink200_oem_hbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K_ufl - node_sgLink200_oem_hbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120 - node_sgLink200_oem_hbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120_ufl - node_sgLink200_oem_hbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350 - node_sgLink200_oem_hbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350_ufl - node_sgLink200_oem_qbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K - node_sgLink200_oem_qbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K_ufl - node_sgLink200_oem_qbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120 - node_sgLink200_oem_qbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120_ufl - node_sgLink200_oem_qbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350 - node_sgLink200_oem_qbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350_ufl - node_sgLink_rgd = _mscl.WirelessModels_node_sgLink_rgd - node_shmLink = _mscl.WirelessModels_node_shmLink - node_tcLink_1ch = _mscl.WirelessModels_node_tcLink_1ch - node_tcLink_6ch = _mscl.WirelessModels_node_tcLink_6ch - node_tcLink_3ch = _mscl.WirelessModels_node_tcLink_3ch - node_tcLink_6ch_ip67 = _mscl.WirelessModels_node_tcLink_6ch_ip67 - node_tcLink200_oem = _mscl.WirelessModels_node_tcLink200_oem - node_tcLink200_oem_ufl = _mscl.WirelessModels_node_tcLink200_oem_ufl - node_tcLink200 = _mscl.WirelessModels_node_tcLink200 - node_rtdLink200 = _mscl.WirelessModels_node_rtdLink200 - node_tcLink_6ch_ip67_rht = _mscl.WirelessModels_node_tcLink_6ch_ip67_rht - node_vLink = _mscl.WirelessModels_node_vLink - node_vLink200 = _mscl.WirelessModels_node_vLink200 - node_vLink200_qbridge_1K = _mscl.WirelessModels_node_vLink200_qbridge_1K - node_vLink200_qbridge_120 = _mscl.WirelessModels_node_vLink200_qbridge_120 - node_vLink200_qbridge_350 = _mscl.WirelessModels_node_vLink200_qbridge_350 - node_vLink200_hbridge_1K = _mscl.WirelessModels_node_vLink200_hbridge_1K - node_vLink200_hbridge_120 = _mscl.WirelessModels_node_vLink200_hbridge_120 - node_vLink200_hbridge_350 = _mscl.WirelessModels_node_vLink200_hbridge_350 - node_iepeLink = _mscl.WirelessModels_node_iepeLink - node_dvrtLink = _mscl.WirelessModels_node_dvrtLink - node_envLink_mini = _mscl.WirelessModels_node_envLink_mini - node_wattLink = _mscl.WirelessModels_node_wattLink - node_wattLink_3Y208 = _mscl.WirelessModels_node_wattLink_3Y208 - node_wattLink_3D240 = _mscl.WirelessModels_node_wattLink_3D240 - node_wattLink_3Y400 = _mscl.WirelessModels_node_wattLink_3Y400 - node_wattLink_3D400 = _mscl.WirelessModels_node_wattLink_3D400 - node_wattLink_3Y480 = _mscl.WirelessModels_node_wattLink_3Y480 - node_wattLink_3D480 = _mscl.WirelessModels_node_wattLink_3D480 - node_wattLink_3Y600 = _mscl.WirelessModels_node_wattLink_3Y600 - node_ptLink200 = _mscl.WirelessModels_node_ptLink200 - node_rtdLink = _mscl.WirelessModels_node_rtdLink - node_shmLink2_cust1_oldNumber = _mscl.WirelessModels_node_shmLink2_cust1_oldNumber - node_shmLink2_cust1 = _mscl.WirelessModels_node_shmLink2_cust1 - node_shmLink200 = _mscl.WirelessModels_node_shmLink200 - node_shmLink201 = _mscl.WirelessModels_node_shmLink201 - node_shmLink201_qbridge_1K = _mscl.WirelessModels_node_shmLink201_qbridge_1K - node_shmLink201_qbridge_348 = _mscl.WirelessModels_node_shmLink201_qbridge_348 - node_shmLink201_hbridge_1K = _mscl.WirelessModels_node_shmLink201_hbridge_1K - node_shmLink201_hbridge_348 = _mscl.WirelessModels_node_shmLink201_hbridge_348 - node_shmLink201_fullbridge = _mscl.WirelessModels_node_shmLink201_fullbridge - node_shmLink210_fullbridge = _mscl.WirelessModels_node_shmLink210_fullbridge - node_shmLink210_qbridge_3K = _mscl.WirelessModels_node_shmLink210_qbridge_3K - node_torqueLink = _mscl.WirelessModels_node_torqueLink - node_torqueLink200_3ch = _mscl.WirelessModels_node_torqueLink200_3ch - node_torqueLink200 = _mscl.WirelessModels_node_torqueLink200 - node_torqueLink200_3ch_s = _mscl.WirelessModels_node_torqueLink200_3ch_s - node_sgLink_herm = _mscl.WirelessModels_node_sgLink_herm - node_sgLink_herm_2600 = _mscl.WirelessModels_node_sgLink_herm_2600 - node_sgLink_herm_2700 = _mscl.WirelessModels_node_sgLink_herm_2700 - node_sgLink_herm_2800 = _mscl.WirelessModels_node_sgLink_herm_2800 - node_sgLink_herm_2900 = _mscl.WirelessModels_node_sgLink_herm_2900 - node_wirelessImpactSensor = _mscl.WirelessModels_node_wirelessImpactSensor - node_gLink_200_40g_s = _mscl.WirelessModels_node_gLink_200_40g_s - base_wsda_1000 = _mscl.WirelessModels_base_wsda_1000 - base_wsda_1500 = _mscl.WirelessModels_base_wsda_1500 - base_wsda_2000 = _mscl.WirelessModels_base_wsda_2000 - base_wsdaBase_200_legacy = _mscl.WirelessModels_base_wsdaBase_200_legacy - base_wsdaBase_200 = _mscl.WirelessModels_base_wsdaBase_200 - base_wsdaBase_200_extAntenna = _mscl.WirelessModels_base_wsdaBase_200_extAntenna - base_wsdaBase_101_analog = _mscl.WirelessModels_base_wsdaBase_101_analog - base_wsdaBase_102_rs232 = _mscl.WirelessModels_base_wsdaBase_102_rs232 - base_wsdaBase_104_usb = _mscl.WirelessModels_base_wsdaBase_104_usb - base_wsi_104 = _mscl.WirelessModels_base_wsi_104 - base_wsdaBase_mini = _mscl.WirelessModels_base_wsdaBase_mini - - def __init__(self): - _mscl.WirelessModels_swiginit(self, _mscl.new_WirelessModels()) - __swig_destroy__ = _mscl.delete_WirelessModels - -# Register WirelessModels in _mscl: -_mscl.WirelessModels_swigregister(WirelessModels) - -class NodeDiscovery(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def nodeAddress(self): - return _mscl.NodeDiscovery_nodeAddress(self) - - def frequency(self): - return _mscl.NodeDiscovery_frequency(self) - - def panId(self): - return _mscl.NodeDiscovery_panId(self) - - def model(self): - return _mscl.NodeDiscovery_model(self) - - def serialNumber(self): - return _mscl.NodeDiscovery_serialNumber(self) - - def firmwareVersion(self): - return _mscl.NodeDiscovery_firmwareVersion(self) - - def defaultMode(self): - return _mscl.NodeDiscovery_defaultMode(self) - - def builtInTestResult(self): - return _mscl.NodeDiscovery_builtInTestResult(self) - - def communicationProtocol(self): - return _mscl.NodeDiscovery_communicationProtocol(self) - - def asppVersion_lxrs(self): - return _mscl.NodeDiscovery_asppVersion_lxrs(self) - - def asppVersion_lxrsPlus(self): - return _mscl.NodeDiscovery_asppVersion_lxrsPlus(self) - - def baseRssi(self): - return _mscl.NodeDiscovery_baseRssi(self) - - def timestamp(self): - return _mscl.NodeDiscovery_timestamp(self) - - def __init__(self): - _mscl.NodeDiscovery_swiginit(self, _mscl.new_NodeDiscovery()) - __swig_destroy__ = _mscl.delete_NodeDiscovery - -# Register NodeDiscovery in _mscl: -_mscl.NodeDiscovery_swigregister(NodeDiscovery) - -class LinearEquation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LinearEquation_swiginit(self, _mscl.new_LinearEquation(*args)) - - def slope(self, *args): - return _mscl.LinearEquation_slope(self, *args) - - def offset(self, *args): - return _mscl.LinearEquation_offset(self, *args) - __swig_destroy__ = _mscl.delete_LinearEquation - -# Register LinearEquation in _mscl: -_mscl.LinearEquation_swigregister(LinearEquation) - -class CalCoefficients(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CalCoefficients_swiginit(self, _mscl.new_CalCoefficients(*args)) - - def equationType(self): - return _mscl.CalCoefficients_equationType(self) - - def unit(self): - return _mscl.CalCoefficients_unit(self) - - def linearEquation(self): - return _mscl.CalCoefficients_linearEquation(self) - __swig_destroy__ = _mscl.delete_CalCoefficients - -# Register CalCoefficients in _mscl: -_mscl.CalCoefficients_swigregister(CalCoefficients) - -class ChannelGroup(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ChannelGroup_swiginit(self, _mscl.new_ChannelGroup()) - - def channels(self): - return _mscl.ChannelGroup_channels(self) - - def name(self): - return _mscl.ChannelGroup_name(self) - - def eepromLocation(self, setting): - return _mscl.ChannelGroup_eepromLocation(self, setting) - - def settings(self): - return _mscl.ChannelGroup_settings(self) - - def hasSetting(self, setting): - return _mscl.ChannelGroup_hasSetting(self, setting) - - def hasSettingAndChannel(self, setting, channelNumber): - return _mscl.ChannelGroup_hasSettingAndChannel(self, setting, channelNumber) - __swig_destroy__ = _mscl.delete_ChannelGroup - -# Register ChannelGroup in _mscl: -_mscl.ChannelGroup_swigregister(ChannelGroup) - -class WirelessChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - channel_unknown = _mscl.WirelessChannel_channel_unknown - channel_1 = _mscl.WirelessChannel_channel_1 - channel_2 = _mscl.WirelessChannel_channel_2 - channel_3 = _mscl.WirelessChannel_channel_3 - channel_4 = _mscl.WirelessChannel_channel_4 - channel_5 = _mscl.WirelessChannel_channel_5 - channel_6 = _mscl.WirelessChannel_channel_6 - channel_7 = _mscl.WirelessChannel_channel_7 - channel_8 = _mscl.WirelessChannel_channel_8 - channel_9 = _mscl.WirelessChannel_channel_9 - channel_10 = _mscl.WirelessChannel_channel_10 - channel_11 = _mscl.WirelessChannel_channel_11 - channel_12 = _mscl.WirelessChannel_channel_12 - channel_13 = _mscl.WirelessChannel_channel_13 - channel_14 = _mscl.WirelessChannel_channel_14 - channel_15 = _mscl.WirelessChannel_channel_15 - channel_16 = _mscl.WirelessChannel_channel_16 - channel_digital_1 = _mscl.WirelessChannel_channel_digital_1 - channel_digital_2 = _mscl.WirelessChannel_channel_digital_2 - channel_digital_3 = _mscl.WirelessChannel_channel_digital_3 - channel_digital_4 = _mscl.WirelessChannel_channel_digital_4 - channel_digital_5 = _mscl.WirelessChannel_channel_digital_5 - channel_digital_6 = _mscl.WirelessChannel_channel_digital_6 - channel_digital_7 = _mscl.WirelessChannel_channel_digital_7 - channel_digital_8 = _mscl.WirelessChannel_channel_digital_8 - channel_digital_9 = _mscl.WirelessChannel_channel_digital_9 - channel_digital_10 = _mscl.WirelessChannel_channel_digital_10 - channel_digital_11 = _mscl.WirelessChannel_channel_digital_11 - channel_digital_12 = _mscl.WirelessChannel_channel_digital_12 - channel_digital_13 = _mscl.WirelessChannel_channel_digital_13 - channel_digital_14 = _mscl.WirelessChannel_channel_digital_14 - channel_digital_15 = _mscl.WirelessChannel_channel_digital_15 - channel_digital_16 = _mscl.WirelessChannel_channel_digital_16 - channel_structuralHealth = _mscl.WirelessChannel_channel_structuralHealth - channel_hcl_rawBase_mag1_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_x - channel_hcl_rawBase_mag1_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_y - channel_hcl_rawBase_mag1_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_z - channel_hcl_rawBase_mag2_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_x - channel_hcl_rawBase_mag2_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_y - channel_hcl_rawBase_mag2_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_z - channel_hcl_rawBase_mag3_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_x - channel_hcl_rawBase_mag3_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_y - channel_hcl_rawBase_mag3_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_z - channel_hcl_rawBase_mag4_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_x - channel_hcl_rawBase_mag4_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_y - channel_hcl_rawBase_mag4_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_z - channel_hcl_rawBase_mag5_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_x - channel_hcl_rawBase_mag5_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_y - channel_hcl_rawBase_mag5_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_z - channel_hcl_rawBase_mag6_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_x - channel_hcl_rawBase_mag6_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_y - channel_hcl_rawBase_mag6_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_z - channel_hcl_rawBase_mag7_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_x - channel_hcl_rawBase_mag7_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_y - channel_hcl_rawBase_mag7_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_z - channel_hcl_rawBase_mag8_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_x - channel_hcl_rawBase_mag8_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_y - channel_hcl_rawBase_mag8_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_z - channel_hcl_rawBase_gyro_x = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_x - channel_hcl_rawBase_gyro_y = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_y - channel_hcl_rawBase_gyro_z = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_z - channel_error_code = _mscl.WirelessChannel_channel_error_code - channel_hcl_rawStrain_BL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL30 - channel_hcl_rawStrain_BL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL120 - channel_hcl_rawStrain_A60 = _mscl.WirelessChannel_channel_hcl_rawStrain_A60 - channel_hcl_rawStrain_A150 = _mscl.WirelessChannel_channel_hcl_rawStrain_A150 - channel_hcl_rawStrain_AL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL30 - channel_hcl_rawStrain_AL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL120 - channel_hcl_rawStrain_BR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR60 - channel_hcl_rawStrain_BR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR150 - channel_hcl_rawStrain_B30 = _mscl.WirelessChannel_channel_hcl_rawStrain_B30 - channel_hcl_rawStrain_T120 = _mscl.WirelessChannel_channel_hcl_rawStrain_T120 - channel_hcl_rawStrain_AR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR60 - channel_hcl_rawStrain_AR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR150 - channel_hcl_rawStrain_A30 = _mscl.WirelessChannel_channel_hcl_rawStrain_A30 - channel_hcl_rawStrain_A120 = _mscl.WirelessChannel_channel_hcl_rawStrain_A120 - channel_hcl_rawStrain_BL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL90 - channel_hcl_rawStrain_BL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL180 - channel_hcl_rawStrain_BR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR30 - channel_hcl_rawStrain_BR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR120 - channel_hcl_rawStrain_AL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL90 - channel_hcl_rawStrain_AL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL180 - channel_hcl_rawStrain_AR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR30 - channel_hcl_rawStrain_AR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR120 - channel_hcl_rawStrain_B90 = _mscl.WirelessChannel_channel_hcl_rawStrain_B90 - channel_hcl_rawStrain_T0 = _mscl.WirelessChannel_channel_hcl_rawStrain_T0 - channel_hcl_rawStrain_BL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL60 - channel_hcl_rawStrain_BL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL150 - channel_hcl_rawStrain_A90 = _mscl.WirelessChannel_channel_hcl_rawStrain_A90 - channel_hcl_rawStrain_A0 = _mscl.WirelessChannel_channel_hcl_rawStrain_A0 - channel_hcl_rawStrain_AL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL60 - channel_hcl_rawStrain_AL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL150 - channel_hcl_rawStrain_BR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR90 - channel_hcl_rawStrain_BR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR0 - channel_hcl_rawStrain_T60 = _mscl.WirelessChannel_channel_hcl_rawStrain_T60 - channel_hcl_rawStrain_B150 = _mscl.WirelessChannel_channel_hcl_rawStrain_B150 - channel_hcl_rawStrain_AR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR90 - channel_hcl_rawStrain_AR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR0 - channel_hcl_rawInertial_accel1 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel1 - channel_hcl_rawInertial_accel2 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel2 - channel_hcl_rawInertial_accel3 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel3 - channel_hcl_rawInertial_accel4 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel4 - channel_hcl_rawInertial_accel5 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel5 - channel_hcl_rawInertial_accel6 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel6 - channel_hcl_rawInertial_accel7 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel7 - channel_hcl_rawInertial_accel8 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel8 - channel_hcl_rawInertial_gyroX = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroX - channel_hcl_rawInertial_gyroY = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroY - channel_hcl_rawInertial_gyroZ = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroZ - channel_rawAngleStrain = _mscl.WirelessChannel_channel_rawAngleStrain - channel_beaconEcho = _mscl.WirelessChannel_channel_beaconEcho - channel_rfSweep = _mscl.WirelessChannel_channel_rfSweep - channel_diag_state = _mscl.WirelessChannel_channel_diag_state - channel_diag_runtime_idle = _mscl.WirelessChannel_channel_diag_runtime_idle - channel_diag_runtime_sleep = _mscl.WirelessChannel_channel_diag_runtime_sleep - channel_diag_runtime_activeRun = _mscl.WirelessChannel_channel_diag_runtime_activeRun - channel_diag_runtime_inactiveRun = _mscl.WirelessChannel_channel_diag_runtime_inactiveRun - channel_diag_resetCounter = _mscl.WirelessChannel_channel_diag_resetCounter - channel_diag_lowBatteryFlag = _mscl.WirelessChannel_channel_diag_lowBatteryFlag - channel_diag_sweepIndex = _mscl.WirelessChannel_channel_diag_sweepIndex - channel_diag_badSweepCount = _mscl.WirelessChannel_channel_diag_badSweepCount - channel_diag_totalTx = _mscl.WirelessChannel_channel_diag_totalTx - channel_diag_totalReTx = _mscl.WirelessChannel_channel_diag_totalReTx - channel_diag_totalDroppedPackets = _mscl.WirelessChannel_channel_diag_totalDroppedPackets - channel_diag_builtInTestResult = _mscl.WirelessChannel_channel_diag_builtInTestResult - channel_diag_eventIndex = _mscl.WirelessChannel_channel_diag_eventIndex - channel_hcl_axialLoadX = _mscl.WirelessChannel_channel_hcl_axialLoadX - channel_hcl_axialLoadY = _mscl.WirelessChannel_channel_hcl_axialLoadY - channel_hcl_axialLoadZ = _mscl.WirelessChannel_channel_hcl_axialLoadZ - channel_hcl_bendingMomentFlap = _mscl.WirelessChannel_channel_hcl_bendingMomentFlap - channel_hcl_bendingMomentLag = _mscl.WirelessChannel_channel_hcl_bendingMomentLag - channel_hcl_bendingMomentPitch = _mscl.WirelessChannel_channel_hcl_bendingMomentPitch - channel_hcl_motionFlap_mag = _mscl.WirelessChannel_channel_hcl_motionFlap_mag - channel_hcl_motionLag_mag = _mscl.WirelessChannel_channel_hcl_motionLag_mag - channel_hcl_motionPitch_mag = _mscl.WirelessChannel_channel_hcl_motionPitch_mag - channel_hcl_motionFlap_inertial = _mscl.WirelessChannel_channel_hcl_motionFlap_inertial - channel_hcl_motionLag_inertial = _mscl.WirelessChannel_channel_hcl_motionLag_inertial - channel_hcl_motionPitch_inertial = _mscl.WirelessChannel_channel_hcl_motionPitch_inertial - channel_hcl_cockingStiffness_mag = _mscl.WirelessChannel_channel_hcl_cockingStiffness_mag - channel_hcl_cockingStiffness_inertial = _mscl.WirelessChannel_channel_hcl_cockingStiffness_inertial - channel_hcl_temperature = _mscl.WirelessChannel_channel_hcl_temperature - channel_diag_externalPower = _mscl.WirelessChannel_channel_diag_externalPower - channel_diag_internalTemp = _mscl.WirelessChannel_channel_diag_internalTemp - channel_1_rms = _mscl.WirelessChannel_channel_1_rms - channel_2_rms = _mscl.WirelessChannel_channel_2_rms - channel_3_rms = _mscl.WirelessChannel_channel_3_rms - channel_4_rms = _mscl.WirelessChannel_channel_4_rms - channel_5_rms = _mscl.WirelessChannel_channel_5_rms - channel_6_rms = _mscl.WirelessChannel_channel_6_rms - channel_7_rms = _mscl.WirelessChannel_channel_7_rms - channel_8_rms = _mscl.WirelessChannel_channel_8_rms - channel_9_rms = _mscl.WirelessChannel_channel_9_rms - channel_10_rms = _mscl.WirelessChannel_channel_10_rms - channel_11_rms = _mscl.WirelessChannel_channel_11_rms - channel_12_rms = _mscl.WirelessChannel_channel_12_rms - channel_13_rms = _mscl.WirelessChannel_channel_13_rms - channel_14_rms = _mscl.WirelessChannel_channel_14_rms - channel_15_rms = _mscl.WirelessChannel_channel_15_rms - channel_16_rms = _mscl.WirelessChannel_channel_16_rms - channel_1_peakToPeak = _mscl.WirelessChannel_channel_1_peakToPeak - channel_2_peakToPeak = _mscl.WirelessChannel_channel_2_peakToPeak - channel_3_peakToPeak = _mscl.WirelessChannel_channel_3_peakToPeak - channel_4_peakToPeak = _mscl.WirelessChannel_channel_4_peakToPeak - channel_5_peakToPeak = _mscl.WirelessChannel_channel_5_peakToPeak - channel_6_peakToPeak = _mscl.WirelessChannel_channel_6_peakToPeak - channel_7_peakToPeak = _mscl.WirelessChannel_channel_7_peakToPeak - channel_8_peakToPeak = _mscl.WirelessChannel_channel_8_peakToPeak - channel_9_peakToPeak = _mscl.WirelessChannel_channel_9_peakToPeak - channel_10_peakToPeak = _mscl.WirelessChannel_channel_10_peakToPeak - channel_11_peakToPeak = _mscl.WirelessChannel_channel_11_peakToPeak - channel_12_peakToPeak = _mscl.WirelessChannel_channel_12_peakToPeak - channel_13_peakToPeak = _mscl.WirelessChannel_channel_13_peakToPeak - channel_14_peakToPeak = _mscl.WirelessChannel_channel_14_peakToPeak - channel_15_peakToPeak = _mscl.WirelessChannel_channel_15_peakToPeak - channel_16_peakToPeak = _mscl.WirelessChannel_channel_16_peakToPeak - channel_1_ips = _mscl.WirelessChannel_channel_1_ips - channel_2_ips = _mscl.WirelessChannel_channel_2_ips - channel_3_ips = _mscl.WirelessChannel_channel_3_ips - channel_4_ips = _mscl.WirelessChannel_channel_4_ips - channel_5_ips = _mscl.WirelessChannel_channel_5_ips - channel_6_ips = _mscl.WirelessChannel_channel_6_ips - channel_7_ips = _mscl.WirelessChannel_channel_7_ips - channel_8_ips = _mscl.WirelessChannel_channel_8_ips - channel_9_ips = _mscl.WirelessChannel_channel_9_ips - channel_10_ips = _mscl.WirelessChannel_channel_10_ips - channel_11_ips = _mscl.WirelessChannel_channel_11_ips - channel_12_ips = _mscl.WirelessChannel_channel_12_ips - channel_13_ips = _mscl.WirelessChannel_channel_13_ips - channel_14_ips = _mscl.WirelessChannel_channel_14_ips - channel_15_ips = _mscl.WirelessChannel_channel_15_ips - channel_16_ips = _mscl.WirelessChannel_channel_16_ips - channel_1_crestFactor = _mscl.WirelessChannel_channel_1_crestFactor - channel_2_crestFactor = _mscl.WirelessChannel_channel_2_crestFactor - channel_3_crestFactor = _mscl.WirelessChannel_channel_3_crestFactor - channel_4_crestFactor = _mscl.WirelessChannel_channel_4_crestFactor - channel_5_crestFactor = _mscl.WirelessChannel_channel_5_crestFactor - channel_6_crestFactor = _mscl.WirelessChannel_channel_6_crestFactor - channel_7_crestFactor = _mscl.WirelessChannel_channel_7_crestFactor - channel_8_crestFactor = _mscl.WirelessChannel_channel_8_crestFactor - channel_9_crestFactor = _mscl.WirelessChannel_channel_9_crestFactor - channel_10_crestFactor = _mscl.WirelessChannel_channel_10_crestFactor - channel_11_crestFactor = _mscl.WirelessChannel_channel_11_crestFactor - channel_12_crestFactor = _mscl.WirelessChannel_channel_12_crestFactor - channel_13_crestFactor = _mscl.WirelessChannel_channel_13_crestFactor - channel_14_crestFactor = _mscl.WirelessChannel_channel_14_crestFactor - channel_15_crestFactor = _mscl.WirelessChannel_channel_15_crestFactor - channel_16_crestFactor = _mscl.WirelessChannel_channel_16_crestFactor - channel_diag_syncAttempts = _mscl.WirelessChannel_channel_diag_syncAttempts - channel_diag_syncFailures = _mscl.WirelessChannel_channel_diag_syncFailures - channel_diag_secsSinceLastSync = _mscl.WirelessChannel_channel_diag_secsSinceLastSync - channel_beaconConflict = _mscl.WirelessChannel_channel_beaconConflict - channel_1_mean = _mscl.WirelessChannel_channel_1_mean - channel_2_mean = _mscl.WirelessChannel_channel_2_mean - channel_3_mean = _mscl.WirelessChannel_channel_3_mean - channel_4_mean = _mscl.WirelessChannel_channel_4_mean - channel_5_mean = _mscl.WirelessChannel_channel_5_mean - channel_6_mean = _mscl.WirelessChannel_channel_6_mean - channel_7_mean = _mscl.WirelessChannel_channel_7_mean - channel_8_mean = _mscl.WirelessChannel_channel_8_mean - channel_9_mean = _mscl.WirelessChannel_channel_9_mean - channel_10_mean = _mscl.WirelessChannel_channel_10_mean - channel_11_mean = _mscl.WirelessChannel_channel_11_mean - channel_12_mean = _mscl.WirelessChannel_channel_12_mean - channel_13_mean = _mscl.WirelessChannel_channel_13_mean - channel_14_mean = _mscl.WirelessChannel_channel_14_mean - channel_15_mean = _mscl.WirelessChannel_channel_15_mean - channel_16_mean = _mscl.WirelessChannel_channel_16_mean - channel_1_mmps = _mscl.WirelessChannel_channel_1_mmps - channel_2_mmps = _mscl.WirelessChannel_channel_2_mmps - channel_3_mmps = _mscl.WirelessChannel_channel_3_mmps - channel_4_mmps = _mscl.WirelessChannel_channel_4_mmps - channel_5_mmps = _mscl.WirelessChannel_channel_5_mmps - channel_6_mmps = _mscl.WirelessChannel_channel_6_mmps - channel_7_mmps = _mscl.WirelessChannel_channel_7_mmps - channel_8_mmps = _mscl.WirelessChannel_channel_8_mmps - channel_9_mmps = _mscl.WirelessChannel_channel_9_mmps - channel_10_mmps = _mscl.WirelessChannel_channel_10_mmps - channel_11_mmps = _mscl.WirelessChannel_channel_11_mmps - channel_12_mmps = _mscl.WirelessChannel_channel_12_mmps - channel_13_mmps = _mscl.WirelessChannel_channel_13_mmps - channel_14_mmps = _mscl.WirelessChannel_channel_14_mmps - channel_15_mmps = _mscl.WirelessChannel_channel_15_mmps - channel_16_mmps = _mscl.WirelessChannel_channel_16_mmps - channel_diag_memoryFull = _mscl.WirelessChannel_channel_diag_memoryFull - - def __init__(self, *args): - _mscl.WirelessChannel_swiginit(self, _mscl.new_WirelessChannel(*args)) - - def channelNumber(self): - return _mscl.WirelessChannel_channelNumber(self) - - def id(self): - return _mscl.WirelessChannel_id(self) - - def type(self): - return _mscl.WirelessChannel_type(self) - - def description(self): - return _mscl.WirelessChannel_description(self) - - def adcResolution(self): - return _mscl.WirelessChannel_adcResolution(self) - - def adcMaxValue(self): - return _mscl.WirelessChannel_adcMaxValue(self) - - def name(self): - return _mscl.WirelessChannel_name(self) - __swig_destroy__ = _mscl.delete_WirelessChannel - -# Register WirelessChannel in _mscl: -_mscl.WirelessChannel_swigregister(WirelessChannel) - -class WirelessDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessDataPoint_swiginit(self, _mscl.new_WirelessDataPoint()) - - def channelId(self): - return _mscl.WirelessDataPoint_channelId(self) - - def channelNumber(self): - return _mscl.WirelessDataPoint_channelNumber(self) - - def channelName(self): - return _mscl.WirelessDataPoint_channelName(self) - __swig_destroy__ = _mscl.delete_WirelessDataPoint - -# Register WirelessDataPoint in _mscl: -_mscl.WirelessDataPoint_swigregister(WirelessDataPoint) - -class DataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - samplingType_NonSync = _mscl.DataSweep_samplingType_NonSync - samplingType_NonSync_Buffered = _mscl.DataSweep_samplingType_NonSync_Buffered - samplingType_SyncSampling = _mscl.DataSweep_samplingType_SyncSampling - samplingType_SyncSampling_Burst = _mscl.DataSweep_samplingType_SyncSampling_Burst - samplingType_AsyncDigital = _mscl.DataSweep_samplingType_AsyncDigital - samplingType_AsyncDigitalAnalog = _mscl.DataSweep_samplingType_AsyncDigitalAnalog - samplingType_SHM = _mscl.DataSweep_samplingType_SHM - samplingType_BeaconEcho = _mscl.DataSweep_samplingType_BeaconEcho - samplingType_RfSweep = _mscl.DataSweep_samplingType_RfSweep - samplingType_Diagnostic = _mscl.DataSweep_samplingType_Diagnostic - - def __init__(self): - _mscl.DataSweep_swiginit(self, _mscl.new_DataSweep()) - - def timestamp(self): - return _mscl.DataSweep_timestamp(self) - - def tick(self): - return _mscl.DataSweep_tick(self) - - def sampleRate(self): - return _mscl.DataSweep_sampleRate(self) - - def nodeAddress(self): - return _mscl.DataSweep_nodeAddress(self) - - def data(self): - return _mscl.DataSweep_data(self) - - def samplingType(self): - return _mscl.DataSweep_samplingType(self) - - def nodeRssi(self): - return _mscl.DataSweep_nodeRssi(self) - - def baseRssi(self): - return _mscl.DataSweep_baseRssi(self) - - def frequency(self): - return _mscl.DataSweep_frequency(self) - - def calApplied(self): - return _mscl.DataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_DataSweep - -# Register DataSweep in _mscl: -_mscl.DataSweep_swigregister(DataSweep) - -class BaseStationAnalogPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationAnalogPair_swiginit(self, _mscl.new_BaseStationAnalogPair()) - - @staticmethod - def Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - - @staticmethod - def NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - - def nodeAddress(self, *args): - return _mscl.BaseStationAnalogPair_nodeAddress(self, *args) - - def nodeChannel(self, *args): - return _mscl.BaseStationAnalogPair_nodeChannel(self, *args) - - def expectFloatData(self, *args): - return _mscl.BaseStationAnalogPair_expectFloatData(self, *args) - - def outputVal_0V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_0V(self, *args) - - def outputVal_3V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_3V(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationAnalogPair - -# Register BaseStationAnalogPair in _mscl: -_mscl.BaseStationAnalogPair_swigregister(BaseStationAnalogPair) -BaseStationAnalogPair.CHANNEL_NOT_FLOAT = _mscl.cvar.BaseStationAnalogPair_CHANNEL_NOT_FLOAT - -def BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - -def BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - -class BaseStationButton(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - btn_nodeSleep = _mscl.BaseStationButton_btn_nodeSleep - btn_nodeStop = _mscl.BaseStationButton_btn_nodeStop - btn_enableBeacon = _mscl.BaseStationButton_btn_enableBeacon - btn_disableBeacon = _mscl.BaseStationButton_btn_disableBeacon - btn_nodeNonSyncSampling = _mscl.BaseStationButton_btn_nodeNonSyncSampling - btn_nodeSyncSampling = _mscl.BaseStationButton_btn_nodeSyncSampling - btn_nodeArmedDatalogging = _mscl.BaseStationButton_btn_nodeArmedDatalogging - btn_cyclePower = _mscl.BaseStationButton_btn_cyclePower - btn_disabled = _mscl.BaseStationButton_btn_disabled - - def __init__(self, *args): - _mscl.BaseStationButton_swiginit(self, _mscl.new_BaseStationButton(*args)) - - def command(self, *args): - return _mscl.BaseStationButton_command(self, *args) - - def nodeAddress(self, *args): - return _mscl.BaseStationButton_nodeAddress(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationButton - -# Register BaseStationButton in _mscl: -_mscl.BaseStationButton_swigregister(BaseStationButton) - -class BaseStationConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationConfig_swiginit(self, _mscl.new_BaseStationConfig()) - - def transmitPower(self, *args): - return _mscl.BaseStationConfig_transmitPower(self, *args) - - def communicationProtocol(self, *args): - return _mscl.BaseStationConfig_communicationProtocol(self, *args) - - def buttonLongPress(self, *args): - return _mscl.BaseStationConfig_buttonLongPress(self, *args) - - def buttonShortPress(self, *args): - return _mscl.BaseStationConfig_buttonShortPress(self, *args) - - def analogPairingEnable(self, *args): - return _mscl.BaseStationConfig_analogPairingEnable(self, *args) - - def analogTimeoutTime(self, *args): - return _mscl.BaseStationConfig_analogTimeoutTime(self, *args) - - def analogTimeoutVoltage(self, *args): - return _mscl.BaseStationConfig_analogTimeoutVoltage(self, *args) - - def analogExceedanceEnable(self, *args): - return _mscl.BaseStationConfig_analogExceedanceEnable(self, *args) - - def analogPairing(self, *args): - return _mscl.BaseStationConfig_analogPairing(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationConfig - -# Register BaseStationConfig in _mscl: -_mscl.BaseStationConfig_swigregister(BaseStationConfig) - -class BeaconStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BeaconStatus_swiginit(self, _mscl.new_BeaconStatus(*args)) - - def enabled(self): - return _mscl.BeaconStatus_enabled(self) - - def timestamp(self): - return _mscl.BeaconStatus_timestamp(self) - __swig_destroy__ = _mscl.delete_BeaconStatus - -# Register BeaconStatus in _mscl: -_mscl.BeaconStatus_swigregister(BeaconStatus) - -class BaseStationInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region, asppVer_lxrs, asppVer_lxrsPlus): - _mscl.BaseStationInfo_swiginit(self, _mscl.new_BaseStationInfo(fw, model, region, asppVer_lxrs, asppVer_lxrsPlus)) - __swig_destroy__ = _mscl.delete_BaseStationInfo - -# Register BaseStationInfo in _mscl: -_mscl.BaseStationInfo_swigregister(BaseStationInfo) - -class BaseStation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_BASE_COMMANDS_DEFAULT_TIMEOUT - ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT - BROADCAST_NODE_ADDRESS = _mscl.BaseStation_BROADCAST_NODE_ADDRESS - BROADCAST_NODE_ADDRESS_ASPP3 = _mscl.BaseStation_BROADCAST_NODE_ADDRESS_ASPP3 - - def __init__(self, *args): - _mscl.BaseStation_swiginit(self, _mscl.new_BaseStation(*args)) - __swig_destroy__ = _mscl.delete_BaseStation - - @staticmethod - def Mock(*args): - return _mscl.BaseStation_Mock(*args) - - @staticmethod - def deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - - def connection(self): - return _mscl.BaseStation_connection(self) - - def features(self): - return _mscl.BaseStation_features(self) - - def lastCommunicationTime(self): - return _mscl.BaseStation_lastCommunicationTime(self) - - def readWriteRetries(self, *args): - return _mscl.BaseStation_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.BaseStation_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.BaseStation_clearEepromCache(self) - - def frequency(self): - return _mscl.BaseStation_frequency(self) - - def communicationProtocol(self): - return _mscl.BaseStation_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.BaseStation_firmwareVersion(self) - - def model(self): - return _mscl.BaseStation_model(self) - - def serial(self): - return _mscl.BaseStation_serial(self) - - def name(self): - return _mscl.BaseStation_name(self) - - def microcontroller(self): - return _mscl.BaseStation_microcontroller(self) - - def regionCode(self): - return _mscl.BaseStation_regionCode(self) - - def getData(self, timeout=0, maxSweeps=0): - return _mscl.BaseStation_getData(self, timeout, maxSweeps) - - def totalData(self): - return _mscl.BaseStation_totalData(self) - - def getNodeDiscoveries(self): - return _mscl.BaseStation_getNodeDiscoveries(self) - - def timeout(self, *args): - return _mscl.BaseStation_timeout(self, *args) - - def ping(self): - return _mscl.BaseStation_ping(self) - - def readEeprom(self, eepromAddress): - return _mscl.BaseStation_readEeprom(self, eepromAddress) - - def writeEeprom(self, eepromAddress, value): - return _mscl.BaseStation_writeEeprom(self, eepromAddress, value) - - def enableBeacon(self, *args): - return _mscl.BaseStation_enableBeacon(self, *args) - - def disableBeacon(self): - return _mscl.BaseStation_disableBeacon(self) - - def beaconStatus(self): - return _mscl.BaseStation_beaconStatus(self) - - def startRfSweepMode(self, *args): - return _mscl.BaseStation_startRfSweepMode(self, *args) - - def cyclePower(self, checkComm=True): - return _mscl.BaseStation_cyclePower(self, checkComm) - - def resetRadio(self): - return _mscl.BaseStation_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.BaseStation_changeFrequency(self, frequency) - - def broadcastSetToIdle(self): - return _mscl.BaseStation_broadcastSetToIdle(self) - - def verifyConfig(self, config, outIssues): - return _mscl.BaseStation_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.BaseStation_applyConfig(self, config) - - def getTransmitPower(self): - return _mscl.BaseStation_getTransmitPower(self) - - def getButtonLongPress(self, buttonNumber): - return _mscl.BaseStation_getButtonLongPress(self, buttonNumber) - - def getButtonShortPress(self, buttonNumber): - return _mscl.BaseStation_getButtonShortPress(self, buttonNumber) - - def getAnalogPairingEnabled(self): - return _mscl.BaseStation_getAnalogPairingEnabled(self) - - def getAnalogTimeoutTime(self): - return _mscl.BaseStation_getAnalogTimeoutTime(self) - - def getAnalogTimeoutVoltage(self): - return _mscl.BaseStation_getAnalogTimeoutVoltage(self) - - def getAnalogExceedanceEnabled(self): - return _mscl.BaseStation_getAnalogExceedanceEnabled(self) - - def getAnalogPair(self, portNumber): - return _mscl.BaseStation_getAnalogPair(self, portNumber) - -# Register BaseStation in _mscl: -_mscl.BaseStation_swigregister(BaseStation) - -def BaseStation_Mock(*args): - return _mscl.BaseStation_Mock(*args) - -def BaseStation_deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - -class LoggedDataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LoggedDataSweep_swiginit(self, _mscl.new_LoggedDataSweep(*args)) - - def timestamp(self): - return _mscl.LoggedDataSweep_timestamp(self) - - def tick(self): - return _mscl.LoggedDataSweep_tick(self) - - def data(self): - return _mscl.LoggedDataSweep_data(self) - - def calApplied(self): - return _mscl.LoggedDataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweep - -# Register LoggedDataSweep in _mscl: -_mscl.LoggedDataSweep_swigregister(LoggedDataSweep) - -class RadioFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.RadioFeatures_swiginit(self, _mscl.new_RadioFeatures(*args)) - - def extendedRange(self): - return _mscl.RadioFeatures_extendedRange(self) - __swig_destroy__ = _mscl.delete_RadioFeatures - -# Register RadioFeatures in _mscl: -_mscl.RadioFeatures_swigregister(RadioFeatures) - -class WirelessNodeConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessNodeConfig_swiginit(self, _mscl.new_WirelessNodeConfig()) - SENSOR_DELAY_ALWAYS_ON = _mscl.WirelessNodeConfig_SENSOR_DELAY_ALWAYS_ON - - def defaultMode(self, *args): - return _mscl.WirelessNodeConfig_defaultMode(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.WirelessNodeConfig_inactivityTimeout(self, *args) - - def checkRadioInterval(self, *args): - return _mscl.WirelessNodeConfig_checkRadioInterval(self, *args) - - def transmitPower(self, *args): - return _mscl.WirelessNodeConfig_transmitPower(self, *args) - - def samplingMode(self, *args): - return _mscl.WirelessNodeConfig_samplingMode(self, *args) - - def sampleRate(self, *args): - return _mscl.WirelessNodeConfig_sampleRate(self, *args) - - def activeChannels(self, *args): - return _mscl.WirelessNodeConfig_activeChannels(self, *args) - - def numSweeps(self, *args): - return _mscl.WirelessNodeConfig_numSweeps(self, *args) - - def unlimitedDuration(self, *args): - return _mscl.WirelessNodeConfig_unlimitedDuration(self, *args) - - def dataFormat(self, *args): - return _mscl.WirelessNodeConfig_dataFormat(self, *args) - - def dataCollectionMethod(self, *args): - return _mscl.WirelessNodeConfig_dataCollectionMethod(self, *args) - - def timeBetweenBursts(self, *args): - return _mscl.WirelessNodeConfig_timeBetweenBursts(self, *args) - - def lostBeaconTimeout(self, *args): - return _mscl.WirelessNodeConfig_lostBeaconTimeout(self, *args) - - def pullUpResistor(self, *args): - return _mscl.WirelessNodeConfig_pullUpResistor(self, *args) - - def inputRange(self, *args): - return _mscl.WirelessNodeConfig_inputRange(self, *args) - - def hardwareOffset(self, *args): - return _mscl.WirelessNodeConfig_hardwareOffset(self, *args) - - def antiAliasingFilter(self, *args): - return _mscl.WirelessNodeConfig_antiAliasingFilter(self, *args) - - def cfcFilterConfig(self, *args): - return _mscl.WirelessNodeConfig_cfcFilterConfig(self, *args) - - def lowPassFilter(self, *args): - return _mscl.WirelessNodeConfig_lowPassFilter(self, *args) - - def highPassFilter(self, *args): - return _mscl.WirelessNodeConfig_highPassFilter(self, *args) - - def gaugeFactor(self, *args): - return _mscl.WirelessNodeConfig_gaugeFactor(self, *args) - - def gaugeResistance(self, *args): - return _mscl.WirelessNodeConfig_gaugeResistance(self, *args) - - def excitationVoltage(self, *args): - return _mscl.WirelessNodeConfig_excitationVoltage(self, *args) - - def numActiveGauges(self, *args): - return _mscl.WirelessNodeConfig_numActiveGauges(self, *args) - - def lowBatteryThreshold(self, *args): - return _mscl.WirelessNodeConfig_lowBatteryThreshold(self, *args) - - def linearEquation(self, *args): - return _mscl.WirelessNodeConfig_linearEquation(self, *args) - - def unit(self, *args): - return _mscl.WirelessNodeConfig_unit(self, *args) - - def equationType(self, *args): - return _mscl.WirelessNodeConfig_equationType(self, *args) - - def filterSettlingTime(self, *args): - return _mscl.WirelessNodeConfig_filterSettlingTime(self, *args) - - def thermocoupleType(self, *args): - return _mscl.WirelessNodeConfig_thermocoupleType(self, *args) - - def tempSensorOptions(self, *args): - return _mscl.WirelessNodeConfig_tempSensorOptions(self, *args) - - def debounceFilter(self, *args): - return _mscl.WirelessNodeConfig_debounceFilter(self, *args) - - def fatigueOptions(self, *args): - return _mscl.WirelessNodeConfig_fatigueOptions(self, *args) - - def histogramOptions(self, *args): - return _mscl.WirelessNodeConfig_histogramOptions(self, *args) - - def activitySense(self, *args): - return _mscl.WirelessNodeConfig_activitySense(self, *args) - - def eventTriggerOptions(self, *args): - return _mscl.WirelessNodeConfig_eventTriggerOptions(self, *args) - - def diagnosticInterval(self, *args): - return _mscl.WirelessNodeConfig_diagnosticInterval(self, *args) - - def storageLimitMode(self, *args): - return _mscl.WirelessNodeConfig_storageLimitMode(self, *args) - - def sensorDelay(self, *args): - return _mscl.WirelessNodeConfig_sensorDelay(self, *args) - - def dataMode(self, *args): - return _mscl.WirelessNodeConfig_dataMode(self, *args) - - def derivedDataRate(self, *args): - return _mscl.WirelessNodeConfig_derivedDataRate(self, *args) - - def derivedChannelMask(self, *args): - return _mscl.WirelessNodeConfig_derivedChannelMask(self, *args) - - def derivedVelocityUnit(self, *args): - return _mscl.WirelessNodeConfig_derivedVelocityUnit(self, *args) - - def communicationProtocol(self, *args): - return _mscl.WirelessNodeConfig_communicationProtocol(self, *args) - - def sensorOutputMode(self, *args): - return _mscl.WirelessNodeConfig_sensorOutputMode(self, *args) - - @staticmethod - def flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - - @staticmethod - def flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - __swig_destroy__ = _mscl.delete_WirelessNodeConfig - -# Register WirelessNodeConfig in _mscl: -_mscl.WirelessNodeConfig_swigregister(WirelessNodeConfig) - -def WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - -def WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - -class AutoBalanceResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoBalanceResult_swiginit(self, _mscl.new_AutoBalanceResult()) - - def errorCode(self): - return _mscl.AutoBalanceResult_errorCode(self) - - def percentAchieved(self): - return _mscl.AutoBalanceResult_percentAchieved(self) - - def hardwareOffset(self): - return _mscl.AutoBalanceResult_hardwareOffset(self) - __swig_destroy__ = _mscl.delete_AutoBalanceResult - -# Register AutoBalanceResult in _mscl: -_mscl.AutoBalanceResult_swigregister(AutoBalanceResult) - -class ShuntCalCmdInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - useInternalShunt = property(_mscl.ShuntCalCmdInfo_useInternalShunt_get, _mscl.ShuntCalCmdInfo_useInternalShunt_set) - numActiveGauges = property(_mscl.ShuntCalCmdInfo_numActiveGauges_get, _mscl.ShuntCalCmdInfo_numActiveGauges_set) - gaugeResistance = property(_mscl.ShuntCalCmdInfo_gaugeResistance_get, _mscl.ShuntCalCmdInfo_gaugeResistance_set) - shuntResistance = property(_mscl.ShuntCalCmdInfo_shuntResistance_get, _mscl.ShuntCalCmdInfo_shuntResistance_set) - gaugeFactor = property(_mscl.ShuntCalCmdInfo_gaugeFactor_get, _mscl.ShuntCalCmdInfo_gaugeFactor_set) - inputRange = property(_mscl.ShuntCalCmdInfo_inputRange_get, _mscl.ShuntCalCmdInfo_inputRange_set) - hardwareOffset = property(_mscl.ShuntCalCmdInfo_hardwareOffset_get, _mscl.ShuntCalCmdInfo_hardwareOffset_set) - excitationVoltage = property(_mscl.ShuntCalCmdInfo_excitationVoltage_get, _mscl.ShuntCalCmdInfo_excitationVoltage_set) - - def __init__(self): - _mscl.ShuntCalCmdInfo_swiginit(self, _mscl.new_ShuntCalCmdInfo()) - __swig_destroy__ = _mscl.delete_ShuntCalCmdInfo - -# Register ShuntCalCmdInfo in _mscl: -_mscl.ShuntCalCmdInfo_swigregister(ShuntCalCmdInfo) - -class AutoCalResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_AutoCalResult - - def completionFlag(self): - return _mscl.AutoCalResult_completionFlag(self) - -# Register AutoCalResult in _mscl: -_mscl.AutoCalResult_swigregister(AutoCalResult) - -class AutoCalResult_shmLink(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink_swiginit(self, _mscl.new_AutoCalResult_shmLink()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh3(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink_offsetCh1(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink_offsetCh2(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink_temperature(self) - -# Register AutoCalResult_shmLink in _mscl: -_mscl.AutoCalResult_shmLink_swigregister(AutoCalResult_shmLink) - -class AutoCalResult_shmLink201(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink201_swiginit(self, _mscl.new_AutoCalResult_shmLink201()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink201 - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh3(self) - - def slopeCh1(self): - return _mscl.AutoCalResult_shmLink201_slopeCh1(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink201_offsetCh1(self) - - def slopeCh2(self): - return _mscl.AutoCalResult_shmLink201_slopeCh2(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink201_offsetCh2(self) - - def slopeCh3(self): - return _mscl.AutoCalResult_shmLink201_slopeCh3(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink201_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink201_temperature(self) - -# Register AutoCalResult_shmLink201 in _mscl: -_mscl.AutoCalResult_shmLink201_swigregister(AutoCalResult_shmLink201) - -class AutoShuntCalResult(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoShuntCalResult_swiginit(self, _mscl.new_AutoShuntCalResult()) - __swig_destroy__ = _mscl.delete_AutoShuntCalResult - - def errorFlag(self): - return _mscl.AutoShuntCalResult_errorFlag(self) - - def slope(self): - return _mscl.AutoShuntCalResult_slope(self) - - def offset(self): - return _mscl.AutoShuntCalResult_offset(self) - - def baseMedian(self): - return _mscl.AutoShuntCalResult_baseMedian(self) - - def baseMin(self): - return _mscl.AutoShuntCalResult_baseMin(self) - - def baseMax(self): - return _mscl.AutoShuntCalResult_baseMax(self) - - def shuntMedian(self): - return _mscl.AutoShuntCalResult_shuntMedian(self) - - def shuntMin(self): - return _mscl.AutoShuntCalResult_shuntMin(self) - - def shuntMax(self): - return _mscl.AutoShuntCalResult_shuntMax(self) - -# Register AutoShuntCalResult in _mscl: -_mscl.AutoShuntCalResult_swigregister(AutoShuntCalResult) - -class PingResponse(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PingResponse_swiginit(self, _mscl.new_PingResponse()) - - def success(self): - return _mscl.PingResponse_success(self) - - def nodeRssi(self): - return _mscl.PingResponse_nodeRssi(self) - - def baseRssi(self): - return _mscl.PingResponse_baseRssi(self) - __swig_destroy__ = _mscl.delete_PingResponse - -# Register PingResponse in _mscl: -_mscl.PingResponse_swigregister(PingResponse) - -class SetToIdleStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - setToIdleResult_success = _mscl.SetToIdleStatus_setToIdleResult_success - setToIdleResult_canceled = _mscl.SetToIdleStatus_setToIdleResult_canceled - setToIdleResult_failed = _mscl.SetToIdleStatus_setToIdleResult_failed - setToIdleResult_notCompleted = _mscl.SetToIdleStatus_setToIdleResult_notCompleted - - def result(self): - return _mscl.SetToIdleStatus_result(self) - - def complete(self, timeout=10): - return _mscl.SetToIdleStatus_complete(self, timeout) - - def cancel(self): - return _mscl.SetToIdleStatus_cancel(self) - __swig_destroy__ = _mscl.delete_SetToIdleStatus - -# Register SetToIdleStatus in _mscl: -_mscl.SetToIdleStatus_swigregister(SetToIdleStatus) - -class NodeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region): - _mscl.NodeInfo_swiginit(self, _mscl.new_NodeInfo(fw, model, region)) - __swig_destroy__ = _mscl.delete_NodeInfo - -# Register NodeInfo in _mscl: -_mscl.NodeInfo_swigregister(NodeInfo) - -class WirelessNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, nodeAddress, basestation): - _mscl.WirelessNode_swiginit(self, _mscl.new_WirelessNode(nodeAddress, basestation)) - __swig_destroy__ = _mscl.delete_WirelessNode - - @staticmethod - def Mock(*args): - return _mscl.WirelessNode_Mock(*args) - - @staticmethod - def deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - - def features(self): - return _mscl.WirelessNode_features(self) - - def lastCommunicationTime(self): - return _mscl.WirelessNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.WirelessNode_lastDeviceState(self) - - def setBaseStation(self, basestation): - return _mscl.WirelessNode_setBaseStation(self, basestation) - - def getBaseStation(self): - return _mscl.WirelessNode_getBaseStation(self) - - def hasBaseStation(self, basestation): - return _mscl.WirelessNode_hasBaseStation(self, basestation) - - def useGroupRead(self, useGroup): - return _mscl.WirelessNode_useGroupRead(self, useGroup) - - def readWriteRetries(self, *args): - return _mscl.WirelessNode_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.WirelessNode_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.WirelessNode_clearEepromCache(self) - - def updateEepromCacheFromNodeDiscovery(self, nodeDisovery): - return _mscl.WirelessNode_updateEepromCacheFromNodeDiscovery(self, nodeDisovery) - - def getEepromCache(self): - return _mscl.WirelessNode_getEepromCache(self) - - def nodeAddress(self): - return _mscl.WirelessNode_nodeAddress(self) - - def frequency(self): - return _mscl.WirelessNode_frequency(self) - - def communicationProtocol(self): - return _mscl.WirelessNode_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.WirelessNode_firmwareVersion(self) - - def model(self): - return _mscl.WirelessNode_model(self) - - def serial(self): - return _mscl.WirelessNode_serial(self) - - def name(self): - return _mscl.WirelessNode_name(self) - - def microcontroller(self): - return _mscl.WirelessNode_microcontroller(self) - - def radioFeatures(self): - return _mscl.WirelessNode_radioFeatures(self) - - def dataStorageSize(self): - return _mscl.WirelessNode_dataStorageSize(self) - - def regionCode(self): - return _mscl.WirelessNode_regionCode(self) - - def ping(self): - return _mscl.WirelessNode_ping(self) - - def sleep(self): - return _mscl.WirelessNode_sleep(self) - - def cyclePower(self): - return _mscl.WirelessNode_cyclePower(self) - - def resetRadio(self): - return _mscl.WirelessNode_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.WirelessNode_changeFrequency(self, frequency) - - def setToIdle(self): - return _mscl.WirelessNode_setToIdle(self) - - def erase(self): - return _mscl.WirelessNode_erase(self) - - def startNonSyncSampling(self): - return _mscl.WirelessNode_startNonSyncSampling(self) - - def resendStartSyncSampling(self): - return _mscl.WirelessNode_resendStartSyncSampling(self) - - def clearHistogram(self): - return _mscl.WirelessNode_clearHistogram(self) - - def autoBalance(self, mask, targetPercent): - return _mscl.WirelessNode_autoBalance(self, mask, targetPercent) - - def autoCal_shmLink(self): - return _mscl.WirelessNode_autoCal_shmLink(self) - - def autoCal_shmLink201(self): - return _mscl.WirelessNode_autoCal_shmLink201(self) - - def autoShuntCal(self, mask, commandInfo): - return _mscl.WirelessNode_autoShuntCal(self, mask, commandInfo) - - def poll(self, mask): - return _mscl.WirelessNode_poll(self, mask) - - def readEeprom(self, location): - return _mscl.WirelessNode_readEeprom(self, location) - - def writeEeprom(self, location, value): - return _mscl.WirelessNode_writeEeprom(self, location, value) - - def getDiagnosticInfo(self): - return _mscl.WirelessNode_getDiagnosticInfo(self) - - def testCommunicationProtocol(self, protocol): - return _mscl.WirelessNode_testCommunicationProtocol(self, protocol) - - def verifyConfig(self, config, outIssues): - return _mscl.WirelessNode_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.WirelessNode_applyConfig(self, config) - - def getNumDatalogSessions(self): - return _mscl.WirelessNode_getNumDatalogSessions(self) - - def percentFull(self): - return _mscl.WirelessNode_percentFull(self) - - def getDefaultMode(self): - return _mscl.WirelessNode_getDefaultMode(self) - - def getInactivityTimeout(self): - return _mscl.WirelessNode_getInactivityTimeout(self) - - def getCheckRadioInterval(self): - return _mscl.WirelessNode_getCheckRadioInterval(self) - - def getTransmitPower(self): - return _mscl.WirelessNode_getTransmitPower(self) - - def getSamplingMode(self): - return _mscl.WirelessNode_getSamplingMode(self) - - def getActiveChannels(self): - return _mscl.WirelessNode_getActiveChannels(self) - - def getSampleRate(self): - return _mscl.WirelessNode_getSampleRate(self) - - def getNumSweeps(self): - return _mscl.WirelessNode_getNumSweeps(self) - - def getUnlimitedDuration(self): - return _mscl.WirelessNode_getUnlimitedDuration(self) - - def getDataFormat(self): - return _mscl.WirelessNode_getDataFormat(self) - - def getDataCollectionMethod(self): - return _mscl.WirelessNode_getDataCollectionMethod(self) - - def getTimeBetweenBursts(self): - return _mscl.WirelessNode_getTimeBetweenBursts(self) - - def getLostBeaconTimeout(self): - return _mscl.WirelessNode_getLostBeaconTimeout(self) - - def getInputRange(self, mask): - return _mscl.WirelessNode_getInputRange(self, mask) - - def getHardwareOffset(self, mask): - return _mscl.WirelessNode_getHardwareOffset(self, mask) - - def getAntiAliasingFilter(self, mask): - return _mscl.WirelessNode_getAntiAliasingFilter(self, mask) - - def getCfcFilterConfiguration(self): - return _mscl.WirelessNode_getCfcFilterConfiguration(self) - - def getLowPassFilter(self, mask): - return _mscl.WirelessNode_getLowPassFilter(self, mask) - - def getHighPassFilter(self, mask): - return _mscl.WirelessNode_getHighPassFilter(self, mask) - - def getDebounceFilter(self, mask): - return _mscl.WirelessNode_getDebounceFilter(self, mask) - - def getPullUpResistor(self, mask): - return _mscl.WirelessNode_getPullUpResistor(self, mask) - - def getSensorOutputMode(self): - return _mscl.WirelessNode_getSensorOutputMode(self) - - def getGaugeFactor(self, mask): - return _mscl.WirelessNode_getGaugeFactor(self, mask) - - def getExcitationVoltage(self): - return _mscl.WirelessNode_getExcitationVoltage(self) - - def getAdcVoltageRef(self): - return _mscl.WirelessNode_getAdcVoltageRef(self) - - def getGainAmplifierVoltageRef(self): - return _mscl.WirelessNode_getGainAmplifierVoltageRef(self) - - def getGaugeResistance(self): - return _mscl.WirelessNode_getGaugeResistance(self) - - def getNumActiveGauges(self): - return _mscl.WirelessNode_getNumActiveGauges(self) - - def getLowBatteryThreshold(self): - return _mscl.WirelessNode_getLowBatteryThreshold(self) - - def getLinearEquation(self, mask): - return _mscl.WirelessNode_getLinearEquation(self, mask) - - def getUnit(self, mask): - return _mscl.WirelessNode_getUnit(self, mask) - - def getEquationType(self, mask): - return _mscl.WirelessNode_getEquationType(self, mask) - - def getFactoryCalibrationLinearEq(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationLinearEq(self, mask) - - def getFactoryCalibrationUnit(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationUnit(self, mask) - - def getFactoryCalibrationEqType(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationEqType(self, mask) - - def getFilterSettlingTime(self, mask): - return _mscl.WirelessNode_getFilterSettlingTime(self, mask) - - def getThermocoupleType(self, mask): - return _mscl.WirelessNode_getThermocoupleType(self, mask) - - def getTempSensorOptions(self, mask): - return _mscl.WirelessNode_getTempSensorOptions(self, mask) - - def getFatigueOptions(self): - return _mscl.WirelessNode_getFatigueOptions(self) - - def getHistogramOptions(self): - return _mscl.WirelessNode_getHistogramOptions(self) - - def getActivitySense(self): - return _mscl.WirelessNode_getActivitySense(self) - - def getEventTriggerOptions(self): - return _mscl.WirelessNode_getEventTriggerOptions(self) - - def getDiagnosticInterval(self): - return _mscl.WirelessNode_getDiagnosticInterval(self) - - def getStorageLimitMode(self): - return _mscl.WirelessNode_getStorageLimitMode(self) - - def getSensorDelay(self): - return _mscl.WirelessNode_getSensorDelay(self) - - def getDataMode(self): - return _mscl.WirelessNode_getDataMode(self) - - def getDerivedDataRate(self): - return _mscl.WirelessNode_getDerivedDataRate(self) - - def getDerivedChannelMask(self, category): - return _mscl.WirelessNode_getDerivedChannelMask(self, category) - - def getDerivedVelocityUnit(self): - return _mscl.WirelessNode_getDerivedVelocityUnit(self) - -# Register WirelessNode in _mscl: -_mscl.WirelessNode_swigregister(WirelessNode) - -def WirelessNode_Mock(*args): - return _mscl.WirelessNode_Mock(*args) - -def WirelessNode_deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - -class DatalogDownloader(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.DatalogDownloader_swiginit(self, _mscl.new_DatalogDownloader(*args)) - __swig_destroy__ = _mscl.delete_DatalogDownloader - - def complete(self): - return _mscl.DatalogDownloader_complete(self) - - def percentComplete(self): - return _mscl.DatalogDownloader_percentComplete(self) - - def getNextData(self): - return _mscl.DatalogDownloader_getNextData(self) - - def metaDataUpdated(self): - return _mscl.DatalogDownloader_metaDataUpdated(self) - - def calCoefficientsUpdated(self): - return _mscl.DatalogDownloader_calCoefficientsUpdated(self) - - def startOfSession(self): - return _mscl.DatalogDownloader_startOfSession(self) - - def sessionIndex(self): - return _mscl.DatalogDownloader_sessionIndex(self) - - def sampleRate(self): - return _mscl.DatalogDownloader_sampleRate(self) - - def userString(self): - return _mscl.DatalogDownloader_userString(self) - - def calCoefficients(self): - return _mscl.DatalogDownloader_calCoefficients(self) - -# Register DatalogDownloader in _mscl: -_mscl.DatalogDownloader_swigregister(DatalogDownloader) - -class ArmedDataloggingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.ArmedDataloggingNetwork_swiginit(self, _mscl.new_ArmedDataloggingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.ArmedDataloggingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.ArmedDataloggingNetwork_removeNode(self, nodeAddress) - - def startSampling(self): - return _mscl.ArmedDataloggingNetwork_startSampling(self) - __swig_destroy__ = _mscl.delete_ArmedDataloggingNetwork - -# Register ArmedDataloggingNetwork in _mscl: -_mscl.ArmedDataloggingNetwork_swigregister(ArmedDataloggingNetwork) - -class SyncNetworkInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - status_OK = _mscl.SyncNetworkInfo_status_OK - status_PoorCommunication = _mscl.SyncNetworkInfo_status_PoorCommunication - status_DoesNotFit = _mscl.SyncNetworkInfo_status_DoesNotFit - status_Contention = _mscl.SyncNetworkInfo_status_Contention - - def __init__(self, node): - _mscl.SyncNetworkInfo_swiginit(self, _mscl.new_SyncNetworkInfo(node)) - - def status(self): - return _mscl.SyncNetworkInfo_status(self) - - def startedSampling(self): - return _mscl.SyncNetworkInfo_startedSampling(self) - - def configurationApplied(self): - return _mscl.SyncNetworkInfo_configurationApplied(self) - - def percentBandwidth(self): - return _mscl.SyncNetworkInfo_percentBandwidth(self) - - def tdmaAddress(self): - return _mscl.SyncNetworkInfo_tdmaAddress(self) - - def maxTdmaAddress(self): - return _mscl.SyncNetworkInfo_maxTdmaAddress(self) - - def transmissionPerGroup(self): - return _mscl.SyncNetworkInfo_transmissionPerGroup(self) - - def groupSize(self): - return _mscl.SyncNetworkInfo_groupSize(self) - __swig_destroy__ = _mscl.delete_SyncNetworkInfo - -# Register SyncNetworkInfo in _mscl: -_mscl.SyncNetworkInfo_swigregister(SyncNetworkInfo) - -class SyncSamplingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.SyncSamplingNetwork_swiginit(self, _mscl.new_SyncSamplingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.SyncSamplingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.SyncSamplingNetwork_removeNode(self, nodeAddress) - - def percentBandwidth(self): - return _mscl.SyncSamplingNetwork_percentBandwidth(self) - - def ok(self): - return _mscl.SyncSamplingNetwork_ok(self) - - def refresh(self): - return _mscl.SyncSamplingNetwork_refresh(self) - - def lossless(self, *args): - return _mscl.SyncSamplingNetwork_lossless(self, *args) - - def communicationProtocol(self, *args): - return _mscl.SyncSamplingNetwork_communicationProtocol(self, *args) - - def applyConfiguration(self): - return _mscl.SyncSamplingNetwork_applyConfiguration(self) - - def startSampling(self, *args): - return _mscl.SyncSamplingNetwork_startSampling(self, *args) - - def startSampling_noBeacon(self): - return _mscl.SyncSamplingNetwork_startSampling_noBeacon(self) - - def getNodeNetworkInfo(self, nodeAddress): - return _mscl.SyncSamplingNetwork_getNodeNetworkInfo(self, nodeAddress) - __swig_destroy__ = _mscl.delete_SyncSamplingNetwork - -# Register SyncSamplingNetwork in _mscl: -_mscl.SyncSamplingNetwork_swigregister(SyncSamplingNetwork) - -class NodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_NodeFeatures - - def normalizeNumSweeps(self, sweeps): - return _mscl.NodeFeatures_normalizeNumSweeps(self, sweeps) - - def normalizeTimeBetweenBursts(self, time): - return _mscl.NodeFeatures_normalizeTimeBetweenBursts(self, time) - - def channels(self): - return _mscl.NodeFeatures_channels(self) - - def channelGroups(self): - return _mscl.NodeFeatures_channelGroups(self) - - def channelType(self, channelNumber): - return _mscl.NodeFeatures_channelType(self, channelNumber) - - def supportsChannelSetting(self, setting, mask): - return _mscl.NodeFeatures_supportsChannelSetting(self, setting, mask) - - def supportsInputRangePerExcitationVoltage(self): - return _mscl.NodeFeatures_supportsInputRangePerExcitationVoltage(self) - - def supportsHardwareOffset(self): - return _mscl.NodeFeatures_supportsHardwareOffset(self) - - def supportsAntiAliasingFilter(self): - return _mscl.NodeFeatures_supportsAntiAliasingFilter(self) - - def supportsLowPassFilter(self): - return _mscl.NodeFeatures_supportsLowPassFilter(self) - - def supportsHighPassFilter(self): - return _mscl.NodeFeatures_supportsHighPassFilter(self) - - def supportsGaugeFactor(self): - return _mscl.NodeFeatures_supportsGaugeFactor(self) - - def supportsGaugeResistance(self): - return _mscl.NodeFeatures_supportsGaugeResistance(self) - - def supportsNumActiveGauges(self): - return _mscl.NodeFeatures_supportsNumActiveGauges(self) - - def supportsLostBeaconTimeout(self): - return _mscl.NodeFeatures_supportsLostBeaconTimeout(self) - - def supportsPullUpResistor(self): - return _mscl.NodeFeatures_supportsPullUpResistor(self) - - def supportsFilterSettlingTime(self): - return _mscl.NodeFeatures_supportsFilterSettlingTime(self) - - def supportsThermocoupleType(self): - return _mscl.NodeFeatures_supportsThermocoupleType(self) - - def supportsTempSensorOptions(self): - return _mscl.NodeFeatures_supportsTempSensorOptions(self) - - def supportsDebounceFilter(self): - return _mscl.NodeFeatures_supportsDebounceFilter(self) - - def supportsFatigueConfig(self): - return _mscl.NodeFeatures_supportsFatigueConfig(self) - - def supportsYoungsModConfig(self): - return _mscl.NodeFeatures_supportsYoungsModConfig(self) - - def supportsPoissonsRatioConfig(self): - return _mscl.NodeFeatures_supportsPoissonsRatioConfig(self) - - def supportsFatigueDebugModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueDebugModeConfig(self) - - def supportsFatigueModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueModeConfig(self) - - def supportsHistogramConfig(self): - return _mscl.NodeFeatures_supportsHistogramConfig(self) - - def supportsHistogramRateConfig(self): - return _mscl.NodeFeatures_supportsHistogramRateConfig(self) - - def supportsHistogramEnableConfig(self): - return _mscl.NodeFeatures_supportsHistogramEnableConfig(self) - - def supportsActivitySense(self): - return _mscl.NodeFeatures_supportsActivitySense(self) - - def supportsAutoBalance(self): - return _mscl.NodeFeatures_supportsAutoBalance(self) - - def supportsLegacyShuntCal(self): - return _mscl.NodeFeatures_supportsLegacyShuntCal(self) - - def supportsAutoCal_shm(self): - return _mscl.NodeFeatures_supportsAutoCal_shm(self) - - def supportsAutoCal_shm201(self): - return _mscl.NodeFeatures_supportsAutoCal_shm201(self) - - def supportsAutoShuntCal(self): - return _mscl.NodeFeatures_supportsAutoShuntCal(self) - - def supportsGetFactoryCal(self): - return _mscl.NodeFeatures_supportsGetFactoryCal(self) - - def supportsLimitedDuration(self): - return _mscl.NodeFeatures_supportsLimitedDuration(self) - - def supportsEventTrigger(self): - return _mscl.NodeFeatures_supportsEventTrigger(self) - - def supportsDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsDiagnosticInfo(self) - - def supportsLoggedData(self): - return _mscl.NodeFeatures_supportsLoggedData(self) - - def supportsPoll(self): - return _mscl.NodeFeatures_supportsPoll(self) - - def supportsSensorDelayConfig(self): - return _mscl.NodeFeatures_supportsSensorDelayConfig(self) - - def supportsSensorDelayAlwaysOn(self): - return _mscl.NodeFeatures_supportsSensorDelayAlwaysOn(self) - - def supportsSensorOutputMode(self): - return _mscl.NodeFeatures_supportsSensorOutputMode(self) - - def supportsCfcFilterConfiguration(self): - return _mscl.NodeFeatures_supportsCfcFilterConfiguration(self) - - def supportsChannel(self, channelNumber): - return _mscl.NodeFeatures_supportsChannel(self, channelNumber) - - def supportsSamplingMode(self, samplingMode): - return _mscl.NodeFeatures_supportsSamplingMode(self, samplingMode) - - def supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.NodeFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsDataFormat(self, dataFormat): - return _mscl.NodeFeatures_supportsDataFormat(self, dataFormat) - - def supportsDefaultMode(self, mode): - return _mscl.NodeFeatures_supportsDefaultMode(self, mode) - - def supportsDataCollectionMethod(self, collectionMethod): - return _mscl.NodeFeatures_supportsDataCollectionMethod(self, collectionMethod) - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.NodeFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsDataMode(self, dataMode): - return _mscl.NodeFeatures_supportsDataMode(self, dataMode) - - def supportsTransducerType(self, transducerType): - return _mscl.NodeFeatures_supportsTransducerType(self, transducerType) - - def supportsFatigueMode(self, mode): - return _mscl.NodeFeatures_supportsFatigueMode(self, mode) - - def supportsInputRange(self, *args): - return _mscl.NodeFeatures_supportsInputRange(self, *args) - - def supportsCentisecondEventDuration(self): - return _mscl.NodeFeatures_supportsCentisecondEventDuration(self) - - def supportsGetDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsGetDiagnosticInfo(self) - - def supportsNonSyncLogWithTimestamps(self): - return _mscl.NodeFeatures_supportsNonSyncLogWithTimestamps(self) - - def supportsDerivedCategory(self, category): - return _mscl.NodeFeatures_supportsDerivedCategory(self, category) - - def supportsRawDataMode(self): - return _mscl.NodeFeatures_supportsRawDataMode(self) - - def supportsDerivedDataMode(self): - return _mscl.NodeFeatures_supportsDerivedDataMode(self) - - def supportsDerivedVelocityUnitConfig(self): - return _mscl.NodeFeatures_supportsDerivedVelocityUnitConfig(self) - - def supportsExcitationVoltageConfig(self): - return _mscl.NodeFeatures_supportsExcitationVoltageConfig(self) - - def supportsLowBatteryThresholdConfig(self): - return _mscl.NodeFeatures_supportsLowBatteryThresholdConfig(self) - - def maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode) - - def maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode) - - def maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels): - return _mscl.NodeFeatures_maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels) - - def maxFilterSettlingTime(self, rate): - return _mscl.NodeFeatures_maxFilterSettlingTime(self, rate) - - def minInactivityTimeout(self): - return _mscl.NodeFeatures_minInactivityTimeout(self) - - def minLostBeaconTimeout(self): - return _mscl.NodeFeatures_minLostBeaconTimeout(self) - - def maxLostBeaconTimeout(self): - return _mscl.NodeFeatures_maxLostBeaconTimeout(self) - - def minCheckRadioInterval(self): - return _mscl.NodeFeatures_minCheckRadioInterval(self) - - def maxCheckRadioInterval(self): - return _mscl.NodeFeatures_maxCheckRadioInterval(self) - - def minSweeps(self): - return _mscl.NodeFeatures_minSweeps(self) - - def maxSweeps(self, samplingMode, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweeps(self, samplingMode, dataMode, dataFormat, channels) - - def maxSweepsPerBurst(self, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweepsPerBurst(self, dataMode, dataFormat, channels) - - def minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol): - return _mscl.NodeFeatures_minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol) - - def minSensorDelay(self): - return _mscl.NodeFeatures_minSensorDelay(self) - - def maxSensorDelay(self): - return _mscl.NodeFeatures_maxSensorDelay(self) - - def defaultSensorDelay(self): - return _mscl.NodeFeatures_defaultSensorDelay(self) - - def maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate): - return _mscl.NodeFeatures_maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate) - - def normalizeEventDuration(self, duration): - return _mscl.NodeFeatures_normalizeEventDuration(self, duration) - - def normalizeSensorDelay(self, delay): - return _mscl.NodeFeatures_normalizeSensorDelay(self, delay) - - def numDamageAngles(self): - return _mscl.NodeFeatures_numDamageAngles(self) - - def numSnCurveSegments(self): - return _mscl.NodeFeatures_numSnCurveSegments(self) - - def numEventTriggers(self): - return _mscl.NodeFeatures_numEventTriggers(self) - - def defaultModes(self): - return _mscl.NodeFeatures_defaultModes(self) - - def dataCollectionMethods(self): - return _mscl.NodeFeatures_dataCollectionMethods(self) - - def dataFormats(self): - return _mscl.NodeFeatures_dataFormats(self) - - def samplingModes(self): - return _mscl.NodeFeatures_samplingModes(self) - - def sampleRates(self, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_sampleRates(self, samplingMode, dataCollectionMethod, dataMode) - - def derivedDataRates(self): - return _mscl.NodeFeatures_derivedDataRates(self) - - def transmitPowers(self, *args): - return _mscl.NodeFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.NodeFeatures_commProtocols(self) - - def sensorOutputModes(self): - return _mscl.NodeFeatures_sensorOutputModes(self) - - def cfcFilters(self): - return _mscl.NodeFeatures_cfcFilters(self) - - def histogramTransmitRates(self): - return _mscl.NodeFeatures_histogramTransmitRates(self) - - def fatigueModes(self): - return _mscl.NodeFeatures_fatigueModes(self) - - def antiAliasingFilters(self): - return _mscl.NodeFeatures_antiAliasingFilters(self) - - def lowPassFilters(self): - return _mscl.NodeFeatures_lowPassFilters(self) - - def highPassFilters(self): - return _mscl.NodeFeatures_highPassFilters(self) - - def storageLimitModes(self): - return _mscl.NodeFeatures_storageLimitModes(self) - - def inputRanges(self, *args): - return _mscl.NodeFeatures_inputRanges(self, *args) - - def dataModes(self): - return _mscl.NodeFeatures_dataModes(self) - - def transducerTypes(self): - return _mscl.NodeFeatures_transducerTypes(self) - - def channelsPerDerivedCategory(self): - return _mscl.NodeFeatures_channelsPerDerivedCategory(self) - - def excitationVoltages(self): - return _mscl.NodeFeatures_excitationVoltages(self) - - def adcVoltageInputType(self): - return _mscl.NodeFeatures_adcVoltageInputType(self) - - def maxTransmitPower(self, *args): - return _mscl.NodeFeatures_maxTransmitPower(self, *args) - - def minTransmitPower(self, *args): - return _mscl.NodeFeatures_minTransmitPower(self, *args) - -# Register NodeFeatures in _mscl: -_mscl.NodeFeatures_swigregister(NodeFeatures) - -class BaseStationFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_BaseStationFeatures - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.BaseStationFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.BaseStationFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsButtons(self): - return _mscl.BaseStationFeatures_supportsButtons(self) - - def supportsAnalogPairing(self): - return _mscl.BaseStationFeatures_supportsAnalogPairing(self) - - def supportsBeaconStatus(self): - return _mscl.BaseStationFeatures_supportsBeaconStatus(self) - - def supportsRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsRfSweepMode(self) - - def supportsCustomRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsCustomRfSweepMode(self) - - def buttonCount(self): - return _mscl.BaseStationFeatures_buttonCount(self) - - def analogPortCount(self): - return _mscl.BaseStationFeatures_analogPortCount(self) - - def transmitPowers(self, *args): - return _mscl.BaseStationFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.BaseStationFeatures_commProtocols(self) - - def maxTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_maxTransmitPower(self, region, commProtocol) - - def minTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_minTransmitPower(self, region, commProtocol) - -# Register BaseStationFeatures in _mscl: -_mscl.BaseStationFeatures_swigregister(BaseStationFeatures) - -class EulerAngles(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EulerAngles_swiginit(self, _mscl.new_EulerAngles(*args)) - - def asMipFieldValues(self): - return _mscl.EulerAngles_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.EulerAngles_appendMipFieldValues(self, appendTo) - - def roll(self): - return _mscl.EulerAngles_roll(self) - - def pitch(self): - return _mscl.EulerAngles_pitch(self) - - def yaw(self): - return _mscl.EulerAngles_yaw(self) - - def heading(self): - return _mscl.EulerAngles_heading(self) - __swig_destroy__ = _mscl.delete_EulerAngles - -# Register EulerAngles in _mscl: -_mscl.EulerAngles_swigregister(EulerAngles) - -class Quaternion(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Quaternion_swiginit(self, _mscl.new_Quaternion(*args)) - - def asMipFieldValues(self): - return _mscl.Quaternion_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Quaternion_appendMipFieldValues(self, appendTo) - - def normalize(self): - return _mscl.Quaternion_normalize(self) - - def q0(self): - return _mscl.Quaternion_q0(self) - - def q1(self): - return _mscl.Quaternion_q1(self) - - def q2(self): - return _mscl.Quaternion_q2(self) - - def q3(self): - return _mscl.Quaternion_q3(self) - __swig_destroy__ = _mscl.delete_Quaternion - -# Register Quaternion in _mscl: -_mscl.Quaternion_swigregister(Quaternion) - -class Rotation(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EULER_ANGLES = _mscl.Rotation_EULER_ANGLES - QUATERNION = _mscl.Rotation_QUATERNION - - def __init__(self, *args): - _mscl.Rotation_swiginit(self, _mscl.new_Rotation(*args)) - - @staticmethod - def FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - - @staticmethod - def FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - - def asEulerAngles(self): - return _mscl.Rotation_asEulerAngles(self) - - def asQuaternion(self): - return _mscl.Rotation_asQuaternion(self) - - def asMipFieldValues(self, includeFormat=True): - return _mscl.Rotation_asMipFieldValues(self, includeFormat) - - def appendMipFieldValues(self, appendTo, includeFormat=True): - return _mscl.Rotation_appendMipFieldValues(self, appendTo, includeFormat) - - def format(self): - return _mscl.Rotation_format(self) - __swig_destroy__ = _mscl.delete_Rotation - -# Register Rotation in _mscl: -_mscl.Rotation_swigregister(Rotation) - -def Rotation_FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - -def Rotation_FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - -class Vec3f(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Vec3f_swiginit(self, _mscl.new_Vec3f(*args)) - __swig_destroy__ = _mscl.delete_Vec3f - - def fromMipFieldValues(self, data, offset=0): - return _mscl.Vec3f_fromMipFieldValues(self, data, offset) - - def asMipFieldValues(self): - return _mscl.Vec3f_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Vec3f_appendMipFieldValues(self, appendTo) - - def x(self, *args): - return _mscl.Vec3f_x(self, *args) - - def y(self, *args): - return _mscl.Vec3f_y(self, *args) - - def z(self, *args): - return _mscl.Vec3f_z(self, *args) - -# Register Vec3f in _mscl: -_mscl.Vec3f_swigregister(Vec3f) - -ECEF = _mscl.ECEF -LLH_NED = _mscl.LLH_NED -LOCAL = _mscl.LOCAL -VEHICLE = _mscl.VEHICLE -class GeometricVector(Vec3f): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - - @staticmethod - def VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - - def __init__(self, *args): - _mscl.GeometricVector_swiginit(self, _mscl.new_GeometricVector(*args)) - __swig_destroy__ = _mscl.delete_GeometricVector - - def fromMipFieldValues_includesFrame(self, data, offset=0): - return _mscl.GeometricVector_fromMipFieldValues_includesFrame(self, data, offset) - - def asMipFieldValues_includeFrame(self): - return _mscl.GeometricVector_asMipFieldValues_includeFrame(self) - - def appendMipFieldValues_includeFrame(self, appendTo): - return _mscl.GeometricVector_appendMipFieldValues_includeFrame(self, appendTo) - referenceFrame = property(_mscl.GeometricVector_referenceFrame_get, _mscl.GeometricVector_referenceFrame_set) - - def north(self, *args): - return _mscl.GeometricVector_north(self, *args) - - def east(self, *args): - return _mscl.GeometricVector_east(self, *args) - - def down(self, *args): - return _mscl.GeometricVector_down(self, *args) - -# Register GeometricVector in _mscl: -_mscl.GeometricVector_swigregister(GeometricVector) - -def GeometricVector_VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - -def GeometricVector_VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - -class PositionOffset(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.PositionOffset_swiginit(self, _mscl.new_PositionOffset(*args)) - __swig_destroy__ = _mscl.delete_PositionOffset - -# Register PositionOffset in _mscl: -_mscl.PositionOffset_swigregister(PositionOffset) - -class Velocity(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Velocity_swiginit(self, _mscl.new_Velocity(*args)) - __swig_destroy__ = _mscl.delete_Velocity - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - - @staticmethod - def NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - - @staticmethod - def Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -# Register Velocity in _mscl: -_mscl.Velocity_swigregister(Velocity) - -def Velocity_ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - -def Velocity_NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - -def Velocity_Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -class Position(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - - def __init__(self, *args): - _mscl.Position_swiginit(self, _mscl.new_Position(*args)) - __swig_destroy__ = _mscl.delete_Position - referenceFrame = property(_mscl.Position_referenceFrame_get, _mscl.Position_referenceFrame_set) - - def latitude(self, *args): - return _mscl.Position_latitude(self, *args) - - def longitude(self, *args): - return _mscl.Position_longitude(self, *args) - - def altitude(self, *args): - return _mscl.Position_altitude(self, *args) - - def height(self, *args): - return _mscl.Position_height(self, *args) - - def x(self, *args): - return _mscl.Position_x(self, *args) - - def y(self, *args): - return _mscl.Position_y(self, *args) - - def z(self, *args): - return _mscl.Position_z(self, *args) - -# Register Position in _mscl: -_mscl.Position_swigregister(Position) - -def Position_LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - -def Position_ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - -class GeometricUncertainty(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeometricUncertainty_swiginit(self, _mscl.new_GeometricUncertainty(*args)) - __swig_destroy__ = _mscl.delete_GeometricUncertainty - -# Register GeometricUncertainty in _mscl: -_mscl.GeometricUncertainty_swigregister(GeometricUncertainty) - -class MipModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_3dm_dh3 = _mscl.MipModels_node_3dm_dh3 - node_3dm_gx3_15 = _mscl.MipModels_node_3dm_gx3_15 - node_3dm_gx3_25 = _mscl.MipModels_node_3dm_gx3_25 - node_3dm_gx3_35 = _mscl.MipModels_node_3dm_gx3_35 - node_3dm_gx3_45 = _mscl.MipModels_node_3dm_gx3_45 - node_3dm_rq1_45_lt = _mscl.MipModels_node_3dm_rq1_45_lt - node_3dm_gx4_15 = _mscl.MipModels_node_3dm_gx4_15 - node_3dm_gx4_25 = _mscl.MipModels_node_3dm_gx4_25 - node_3dm_gx4_45 = _mscl.MipModels_node_3dm_gx4_45 - node_3dm_rq1_45_st = _mscl.MipModels_node_3dm_rq1_45_st - node_mv5_ar = _mscl.MipModels_node_mv5_ar - node_3dm_gx5_10 = _mscl.MipModels_node_3dm_gx5_10 - node_3dm_gx5_15 = _mscl.MipModels_node_3dm_gx5_15 - node_3dm_gx5_25 = _mscl.MipModels_node_3dm_gx5_25 - node_3dm_gx5_35 = _mscl.MipModels_node_3dm_gx5_35 - node_3dm_gx5_45 = _mscl.MipModels_node_3dm_gx5_45 - node_3dm_cv5_10 = _mscl.MipModels_node_3dm_cv5_10 - node_3dm_cv5_15 = _mscl.MipModels_node_3dm_cv5_15 - node_3dm_cv5_25 = _mscl.MipModels_node_3dm_cv5_25 - node_3dm_cv5_45 = _mscl.MipModels_node_3dm_cv5_45 - node_3dm_gq4_45 = _mscl.MipModels_node_3dm_gq4_45 - node_3dm_cx5_45 = _mscl.MipModels_node_3dm_cx5_45 - node_3dm_cx5_35 = _mscl.MipModels_node_3dm_cx5_35 - node_3dm_cx5_25 = _mscl.MipModels_node_3dm_cx5_25 - node_3dm_cx5_15 = _mscl.MipModels_node_3dm_cx5_15 - node_3dm_cx5_10 = _mscl.MipModels_node_3dm_cx5_10 - node_3dm_cl5_15 = _mscl.MipModels_node_3dm_cl5_15 - node_3dm_cl5_25 = _mscl.MipModels_node_3dm_cl5_25 - node_3dm_gq7 = _mscl.MipModels_node_3dm_gq7 - node_3dm_rtk = _mscl.MipModels_node_3dm_rtk - node_3dm_cv7_ahrs = _mscl.MipModels_node_3dm_cv7_ahrs - node_3dm_cv7_ar = _mscl.MipModels_node_3dm_cv7_ar - node_3dm_gv7_ahrs = _mscl.MipModels_node_3dm_gv7_ahrs - node_3dm_gv7_ar = _mscl.MipModels_node_3dm_gv7_ar - node_3dm_gv7_ins = _mscl.MipModels_node_3dm_gv7_ins - node_3dm_cv7_ins = _mscl.MipModels_node_3dm_cv7_ins - node_3dm_cv7_gnss_ins = _mscl.MipModels_node_3dm_cv7_gnss_ins - placeholder_matchAll = _mscl.MipModels_placeholder_matchAll - rtk_v1 = _mscl.MipModels_rtk_v1 - rtk_v2 = _mscl.MipModels_rtk_v2 - model_3dm_dh3 = _mscl.MipModels_model_3dm_dh3 - model_3dm_gx3_15 = _mscl.MipModels_model_3dm_gx3_15 - model_3dm_gx3_25 = _mscl.MipModels_model_3dm_gx3_25 - model_3dm_gx3_35 = _mscl.MipModels_model_3dm_gx3_35 - model_3dm_gx3_45 = _mscl.MipModels_model_3dm_gx3_45 - model_3dm_rq1_45_lt = _mscl.MipModels_model_3dm_rq1_45_lt - model_3dm_gx4_15 = _mscl.MipModels_model_3dm_gx4_15 - model_3dm_gx4_25 = _mscl.MipModels_model_3dm_gx4_25 - model_3dm_gx4_45 = _mscl.MipModels_model_3dm_gx4_45 - model_3dm_rq1_45_st = _mscl.MipModels_model_3dm_rq1_45_st - model_mv5_ar = _mscl.MipModels_model_mv5_ar - model_3dm_gx5_10 = _mscl.MipModels_model_3dm_gx5_10 - model_3dm_gx5_15 = _mscl.MipModels_model_3dm_gx5_15 - model_3dm_gx5_25 = _mscl.MipModels_model_3dm_gx5_25 - model_3dm_gx5_35 = _mscl.MipModels_model_3dm_gx5_35 - model_3dm_gx5_45 = _mscl.MipModels_model_3dm_gx5_45 - model_3dm_cv5_10 = _mscl.MipModels_model_3dm_cv5_10 - model_3dm_cv5_15 = _mscl.MipModels_model_3dm_cv5_15 - model_3dm_cv5_25 = _mscl.MipModels_model_3dm_cv5_25 - model_3dm_cv5_45 = _mscl.MipModels_model_3dm_cv5_45 - model_3dm_gq4_45 = _mscl.MipModels_model_3dm_gq4_45 - model_3dm_cx5_45 = _mscl.MipModels_model_3dm_cx5_45 - model_3dm_cx5_35 = _mscl.MipModels_model_3dm_cx5_35 - model_3dm_cx5_25 = _mscl.MipModels_model_3dm_cx5_25 - model_3dm_cx5_15 = _mscl.MipModels_model_3dm_cx5_15 - model_3dm_cx5_10 = _mscl.MipModels_model_3dm_cx5_10 - model_3dm_cl5_15 = _mscl.MipModels_model_3dm_cl5_15 - model_3dm_cl5_25 = _mscl.MipModels_model_3dm_cl5_25 - model_3dm_gq7 = _mscl.MipModels_model_3dm_gq7 - model_3dm_rtk_v1 = _mscl.MipModels_model_3dm_rtk_v1 - model_3dm_rtk = _mscl.MipModels_model_3dm_rtk - model_3dm_cv7_ahrs = _mscl.MipModels_model_3dm_cv7_ahrs - model_3dm_cv7_ar = _mscl.MipModels_model_3dm_cv7_ar - model_3dm_gv7_ahrs = _mscl.MipModels_model_3dm_gv7_ahrs - model_3dm_gv7_ar = _mscl.MipModels_model_3dm_gv7_ar - model_3dm_gv7_ins = _mscl.MipModels_model_3dm_gv7_ins - model_3dm_cv7_ins = _mscl.MipModels_model_3dm_cv7_ins - model_3dm_cv7_gnss_ins = _mscl.MipModels_model_3dm_cv7_gnss_ins - - @staticmethod - def modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - - @staticmethod - def modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - - @staticmethod - def modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - - @staticmethod - def nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - - @staticmethod - def modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - - @staticmethod - def nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - - @staticmethod - def modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - - @staticmethod - def stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - - def __init__(self): - _mscl.MipModels_swiginit(self, _mscl.new_MipModels()) - __swig_destroy__ = _mscl.delete_MipModels - -# Register MipModels in _mscl: -_mscl.MipModels_swigregister(MipModels) - -def MipModels_modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - -def MipModels_modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - -def MipModels_modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - -def MipModels_nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - -def MipModels_modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - -def MipModels_nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - -def MipModels_modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - -def MipModels_stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - -class MipModel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipModel_swiginit(self, _mscl.new_MipModel(*args)) - - def equals(self, compare): - return _mscl.MipModel_equals(self, compare) - - def __str__(self): - return _mscl.MipModel___str__(self) - - def nodeModel(self): - return _mscl.MipModel_nodeModel(self) - - def modifier(self): - return _mscl.MipModel_modifier(self) - - def modelNumber(self): - return _mscl.MipModel_modelNumber(self) - - def baseModel(self): - return _mscl.MipModel_baseModel(self) - __swig_destroy__ = _mscl.delete_MipModel - -# Register MipModel in _mscl: -_mscl.MipModel_swigregister(MipModel) -MipModel.mip_model_none = _mscl.cvar.MipModel_mip_model_none -MipModel.mip_model_3dm_dh3 = _mscl.cvar.MipModel_mip_model_3dm_dh3 -MipModel.mip_model_3dm_gx3_15 = _mscl.cvar.MipModel_mip_model_3dm_gx3_15 -MipModel.mip_model_3dm_gx3_25 = _mscl.cvar.MipModel_mip_model_3dm_gx3_25 -MipModel.mip_model_3dm_gx3_35 = _mscl.cvar.MipModel_mip_model_3dm_gx3_35 -MipModel.mip_model_3dm_gx3_45 = _mscl.cvar.MipModel_mip_model_3dm_gx3_45 -MipModel.mip_model_3dm_rq1_45_lt = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_lt -MipModel.mip_model_3dm_rq1_45_st = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_st -MipModel.mip_model_3dm_gx4_15 = _mscl.cvar.MipModel_mip_model_3dm_gx4_15 -MipModel.mip_model_3dm_gx4_25 = _mscl.cvar.MipModel_mip_model_3dm_gx4_25 -MipModel.mip_model_3dm_gx4_45 = _mscl.cvar.MipModel_mip_model_3dm_gx4_45 -MipModel.mip_model_mv5_ar = _mscl.cvar.MipModel_mip_model_mv5_ar -MipModel.mip_model_3dm_gx5_10 = _mscl.cvar.MipModel_mip_model_3dm_gx5_10 -MipModel.mip_model_3dm_gx5_15 = _mscl.cvar.MipModel_mip_model_3dm_gx5_15 -MipModel.mip_model_3dm_gx5_25 = _mscl.cvar.MipModel_mip_model_3dm_gx5_25 -MipModel.mip_model_3dm_gx5_35 = _mscl.cvar.MipModel_mip_model_3dm_gx5_35 -MipModel.mip_model_3dm_gx5_45 = _mscl.cvar.MipModel_mip_model_3dm_gx5_45 -MipModel.mip_model_3dm_cv5_10 = _mscl.cvar.MipModel_mip_model_3dm_cv5_10 -MipModel.mip_model_3dm_cv5_15 = _mscl.cvar.MipModel_mip_model_3dm_cv5_15 -MipModel.mip_model_3dm_cv5_25 = _mscl.cvar.MipModel_mip_model_3dm_cv5_25 -MipModel.mip_model_3dm_cv5_45 = _mscl.cvar.MipModel_mip_model_3dm_cv5_45 -MipModel.mip_model_3dm_gq4_45 = _mscl.cvar.MipModel_mip_model_3dm_gq4_45 -MipModel.mip_model_3dm_cx5_45 = _mscl.cvar.MipModel_mip_model_3dm_cx5_45 -MipModel.mip_model_3dm_cx5_35 = _mscl.cvar.MipModel_mip_model_3dm_cx5_35 -MipModel.mip_model_3dm_cx5_25 = _mscl.cvar.MipModel_mip_model_3dm_cx5_25 -MipModel.mip_model_3dm_cx5_15 = _mscl.cvar.MipModel_mip_model_3dm_cx5_15 -MipModel.mip_model_3dm_cx5_10 = _mscl.cvar.MipModel_mip_model_3dm_cx5_10 -MipModel.mip_model_3dm_cl5_15 = _mscl.cvar.MipModel_mip_model_3dm_cl5_15 -MipModel.mip_model_3dm_cl5_25 = _mscl.cvar.MipModel_mip_model_3dm_cl5_25 -MipModel.mip_model_3dm_gq7 = _mscl.cvar.MipModel_mip_model_3dm_gq7 -MipModel.mip_model_3dm_rtk_v1 = _mscl.cvar.MipModel_mip_model_3dm_rtk_v1 -MipModel.mip_model_3dm_rtk = _mscl.cvar.MipModel_mip_model_3dm_rtk -MipModel.mip_model_3dm_cv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_cv7_ahrs -MipModel.mip_model_3dm_cv7_ar = _mscl.cvar.MipModel_mip_model_3dm_cv7_ar -MipModel.mip_model_3dm_gv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_gv7_ahrs -MipModel.mip_model_3dm_gv7_ar = _mscl.cvar.MipModel_mip_model_3dm_gv7_ar -MipModel.mip_model_3dm_gv7_ins = _mscl.cvar.MipModel_mip_model_3dm_gv7_ins -MipModel.mip_model_3dm_cv7_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_ins -MipModel.mip_model_3dm_cv7_gnss_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_gnss_ins - -class DisplacementModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_digitalDemod = _mscl.DisplacementModels_node_digitalDemod - - def __init__(self): - _mscl.DisplacementModels_swiginit(self, _mscl.new_DisplacementModels()) - __swig_destroy__ = _mscl.delete_DisplacementModels - -# Register DisplacementModels in _mscl: -_mscl.DisplacementModels_swigregister(DisplacementModels) - -class MipTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CLASS_AHRS_IMU = _mscl.MipTypes_CLASS_AHRS_IMU - CLASS_GNSS = _mscl.MipTypes_CLASS_GNSS - CLASS_ESTFILTER = _mscl.MipTypes_CLASS_ESTFILTER - CLASS_DISPLACEMENT = _mscl.MipTypes_CLASS_DISPLACEMENT - CLASS_GNSS1 = _mscl.MipTypes_CLASS_GNSS1 - CLASS_GNSS2 = _mscl.MipTypes_CLASS_GNSS2 - CLASS_GNSS3 = _mscl.MipTypes_CLASS_GNSS3 - CLASS_RTK = _mscl.MipTypes_CLASS_RTK - CLASS_GNSS4 = _mscl.MipTypes_CLASS_GNSS4 - CLASS_GNSS5 = _mscl.MipTypes_CLASS_GNSS5 - CLASS_SYSTEM = _mscl.MipTypes_CLASS_SYSTEM - USE_NEW_SETTINGS = _mscl.MipTypes_USE_NEW_SETTINGS - READ_BACK_CURRENT_SETTINGS = _mscl.MipTypes_READ_BACK_CURRENT_SETTINGS - SAVE_CURRENT_SETTINGS = _mscl.MipTypes_SAVE_CURRENT_SETTINGS - LOAD_STARTUP_SETTINGS = _mscl.MipTypes_LOAD_STARTUP_SETTINGS - RESET_TO_DEFAULT = _mscl.MipTypes_RESET_TO_DEFAULT - USE_NEW_SETTINGS_NO_ACKNACK = _mscl.MipTypes_USE_NEW_SETTINGS_NO_ACKNACK - DISABLED = _mscl.MipTypes_DISABLED - ENABLED = _mscl.MipTypes_ENABLED - TIME_FRAME_WEEKS = _mscl.MipTypes_TIME_FRAME_WEEKS - TIME_FRAME_SECONDS = _mscl.MipTypes_TIME_FRAME_SECONDS - CMD_PING = _mscl.MipTypes_CMD_PING - CMD_SET_IDLE = _mscl.MipTypes_CMD_SET_IDLE - CMD_GET_DEVICE_INFO = _mscl.MipTypes_CMD_GET_DEVICE_INFO - CMD_GET_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_DESCRIPTOR_SETS - CMD_BUILT_IN_TEST = _mscl.MipTypes_CMD_BUILT_IN_TEST - CMD_RESUME = _mscl.MipTypes_CMD_RESUME - CMD_GET_EXT_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_EXT_DESCRIPTOR_SETS - CMD_COMM_PORT_SPEED = _mscl.MipTypes_CMD_COMM_PORT_SPEED - CMD_GPS_TIME_UPDATE = _mscl.MipTypes_CMD_GPS_TIME_UPDATE - CMD_RESET = _mscl.MipTypes_CMD_RESET - CMD_POLL_SENSOR_DATA = _mscl.MipTypes_CMD_POLL_SENSOR_DATA - CMD_POLL_GNSS_DATA = _mscl.MipTypes_CMD_POLL_GNSS_DATA - CMD_POLL_EF_DATA = _mscl.MipTypes_CMD_POLL_EF_DATA - CMD_GET_SENSOR_RATE_BASE = _mscl.MipTypes_CMD_GET_SENSOR_RATE_BASE - CMD_GET_GNSS_RATE_BASE = _mscl.MipTypes_CMD_GET_GNSS_RATE_BASE - CMD_GET_EF_RATE_BASE = _mscl.MipTypes_CMD_GET_EF_RATE_BASE - CMD_SENSOR_MESSAGE_FORMAT = _mscl.MipTypes_CMD_SENSOR_MESSAGE_FORMAT - CMD_GNSS_MESSAGE_FORMAT = _mscl.MipTypes_CMD_GNSS_MESSAGE_FORMAT - CMD_EF_MESSAGE_FORMAT = _mscl.MipTypes_CMD_EF_MESSAGE_FORMAT - CMD_NMEA_MESSAGE_FORMAT = _mscl.MipTypes_CMD_NMEA_MESSAGE_FORMAT - CMD_POLL = _mscl.MipTypes_CMD_POLL - CMD_GET_BASE_RATE = _mscl.MipTypes_CMD_GET_BASE_RATE - CMD_MESSAGE_FORMAT = _mscl.MipTypes_CMD_MESSAGE_FORMAT - CMD_FACTORY_STREAMING = _mscl.MipTypes_CMD_FACTORY_STREAMING - CMD_CONTINUOUS_DATA_STREAM = _mscl.MipTypes_CMD_CONTINUOUS_DATA_STREAM - CMD_RAW_RTCM_2_3_MESSAGE = _mscl.MipTypes_CMD_RAW_RTCM_2_3_MESSAGE - CMD_GNSS_CONSTELLATION_SETTINGS = _mscl.MipTypes_CMD_GNSS_CONSTELLATION_SETTINGS - CMD_GNSS_SBAS_SETTINGS = _mscl.MipTypes_CMD_GNSS_SBAS_SETTINGS - CMD_GNSS_ASSIST_FIX_CONTROL = _mscl.MipTypes_CMD_GNSS_ASSIST_FIX_CONTROL - CMD_GNSS_ASSIST_TIME_UPDATE = _mscl.MipTypes_CMD_GNSS_ASSIST_TIME_UPDATE - CMD_PPS_SOURCE = _mscl.MipTypes_CMD_PPS_SOURCE - CMD_EVENT_SUPPORT = _mscl.MipTypes_CMD_EVENT_SUPPORT - CMD_EVENT_CONTROL = _mscl.MipTypes_CMD_EVENT_CONTROL - CMD_EVENT_TRIGGER_STATUS = _mscl.MipTypes_CMD_EVENT_TRIGGER_STATUS - CMD_EVENT_ACTION_STATUS = _mscl.MipTypes_CMD_EVENT_ACTION_STATUS - CMD_EVENT_TRIGGER_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_TRIGGER_CONFIGURATION - CMD_EVENT_ACTION_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_ACTION_CONFIGURATION - CMD_SAVE_STARTUP_SETTINGS = _mscl.MipTypes_CMD_SAVE_STARTUP_SETTINGS - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM - CMD_GPS_DYNAMICS_MODE = _mscl.MipTypes_CMD_GPS_DYNAMICS_MODE - CMD_SENSOR_SIG_COND_SETTINGS = _mscl.MipTypes_CMD_SENSOR_SIG_COND_SETTINGS - CMD_SENSOR_TIMESTAMP = _mscl.MipTypes_CMD_SENSOR_TIMESTAMP - CMD_ACCEL_BIAS = _mscl.MipTypes_CMD_ACCEL_BIAS - CMD_GYRO_BIAS = _mscl.MipTypes_CMD_GYRO_BIAS - CMD_CAP_GYRO_BIAS = _mscl.MipTypes_CMD_CAP_GYRO_BIAS - CMD_MAG_HARD_IRON_OFFSET = _mscl.MipTypes_CMD_MAG_HARD_IRON_OFFSET - CMD_MAG_SOFT_IRON_MATRIX = _mscl.MipTypes_CMD_MAG_SOFT_IRON_MATRIX - CMD_CF_REALIGN_UP = _mscl.MipTypes_CMD_CF_REALIGN_UP - CMD_CF_REALIGN_NORTH = _mscl.MipTypes_CMD_CF_REALIGN_NORTH - CMD_CONING_SCULLING = _mscl.MipTypes_CMD_CONING_SCULLING - CMD_UART_BAUD_RATE = _mscl.MipTypes_CMD_UART_BAUD_RATE - CMD_GPIO_CONFIGURATION = _mscl.MipTypes_CMD_GPIO_CONFIGURATION - CMD_GPIO_STATE = _mscl.MipTypes_CMD_GPIO_STATE - CMD_ODOMETER_SETTINGS = _mscl.MipTypes_CMD_ODOMETER_SETTINGS - CMD_LOWPASS_FILTER_SETTINGS = _mscl.MipTypes_CMD_LOWPASS_FILTER_SETTINGS - CMD_COMPLEMENTARY_FILTER_SETTINGS = _mscl.MipTypes_CMD_COMPLEMENTARY_FILTER_SETTINGS - CMD_SENSOR_RANGE = _mscl.MipTypes_CMD_SENSOR_RANGE - CMD_SUPPORTED_SENSOR_RANGES = _mscl.MipTypes_CMD_SUPPORTED_SENSOR_RANGES - CMD_LOWPASS_ANTIALIASING_FILTER = _mscl.MipTypes_CMD_LOWPASS_ANTIALIASING_FILTER - CMD_DATA_STREAM_FORMAT = _mscl.MipTypes_CMD_DATA_STREAM_FORMAT - CMD_POWER_STATES = _mscl.MipTypes_CMD_POWER_STATES - CMD_GPS_STARTUP_SETTINGS = _mscl.MipTypes_CMD_GPS_STARTUP_SETTINGS - CMD_DEVICE_STATUS = _mscl.MipTypes_CMD_DEVICE_STATUS - CMD_EF_RESET_FILTER = _mscl.MipTypes_CMD_EF_RESET_FILTER - CMD_EF_INIT_ATTITUDE = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE - CMD_EF_INIT_HEADING = _mscl.MipTypes_CMD_EF_INIT_HEADING - CMD_EF_INIT_ATTITUDE_FROM_AHRS = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE_FROM_AHRS - CMD_EF_RUN_FILTER = _mscl.MipTypes_CMD_EF_RUN_FILTER - CMD_EF_VEHIC_DYNAMICS_MODE = _mscl.MipTypes_CMD_EF_VEHIC_DYNAMICS_MODE - CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER - CMD_EF_SENS_VEHIC_FRAME_OFFSET = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_OFFSET - CMD_EF_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_ANTENNA_OFFSET - CMD_EF_BIAS_EST_CTRL = _mscl.MipTypes_CMD_EF_BIAS_EST_CTRL - CMD_EF_GNSS_SRC_CTRL = _mscl.MipTypes_CMD_EF_GNSS_SRC_CTRL - CMD_EF_EXTERN_GNSS_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_GNSS_UPDATE - CMD_EF_EXTERN_HEADING_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_HEADING_UPDATE - CMD_EF_HEADING_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_HEADING_UPDATE_CTRL - CMD_EF_AUTO_INIT_CTRL = _mscl.MipTypes_CMD_EF_AUTO_INIT_CTRL - CMD_EF_ACCEL_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_ACCEL_WHT_NSE_STD_DEV - CMD_EF_GYRO_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_GYRO_WHT_NSE_STD_DEV - CMD_EF_ACCEL_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_ACCEL_BIAS_MODEL_PARAMS - CMD_EF_GYRO_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_GYRO_BIAS_MODEL_PARAMS - CMD_EF_ZERO_VEL_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_VEL_UPDATE_CTRL - CMD_EF_EXT_HEADING_UPDATE_TS = _mscl.MipTypes_CMD_EF_EXT_HEADING_UPDATE_TS - CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL - CMD_EF_TARE_ORIENT = _mscl.MipTypes_CMD_EF_TARE_ORIENT - CMD_EF_CMDED_ZERO_VEL_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_VEL_UPDATE - CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE - CMD_EF_SET_REF_POSITION = _mscl.MipTypes_CMD_EF_SET_REF_POSITION - CMD_EF_MAG_CAPTURE_AUTO_CAL = _mscl.MipTypes_CMD_EF_MAG_CAPTURE_AUTO_CAL - CMD_EF_GRAVITY_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_STD_DEV - CMD_EF_PRESS_ALT_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_PRESS_ALT_NOISE_STD_DEV - CMD_EF_GRAVITY_NOISE_MINIMUM = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_MINIMUM - CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE - CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE - CMD_EF_ENABLE_DISABLE_MEASUREMENTS = _mscl.MipTypes_CMD_EF_ENABLE_DISABLE_MEASUREMENTS - CMD_EF_MAG_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_MAG_NOISE_STD_DEV - CMD_EF_DECLINATION_SRC = _mscl.MipTypes_CMD_EF_DECLINATION_SRC - CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE - CMD_EF_ALTITUDE_AID_CTRL = _mscl.MipTypes_CMD_EF_ALTITUDE_AID_CTRL - CMD_EF_PITCH_ROLL_AID_CTRL = _mscl.MipTypes_CMD_EF_PITCH_ROLL_AID_CTRL - CMD_EF_INCLINATION_SRC = _mscl.MipTypes_CMD_EF_INCLINATION_SRC - CMD_EF_FIELD_MAGNITUDE_SRC = _mscl.MipTypes_CMD_EF_FIELD_MAGNITUDE_SRC - CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM - CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT - CMD_EF_AIDING_MEASUREMENT_ENABLE = _mscl.MipTypes_CMD_EF_AIDING_MEASUREMENT_ENABLE - CMD_EF_INITIALIZATION_CONFIG = _mscl.MipTypes_CMD_EF_INITIALIZATION_CONFIG - CMD_EF_ADAPTIVE_FILTER_OPTIONS = _mscl.MipTypes_CMD_EF_ADAPTIVE_FILTER_OPTIONS - CMD_EF_MULTI_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_MULTI_ANTENNA_OFFSET - CMD_EF_RELATIVE_POSITION_REF = _mscl.MipTypes_CMD_EF_RELATIVE_POSITION_REF - CMD_EF_LEVER_ARM_OFFSET_REF = _mscl.MipTypes_CMD_EF_LEVER_ARM_OFFSET_REF - CMD_EF_EXTERN_SPEED_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_SPEED_UPDATE - CMD_EF_SPEED_MEASUREMENT_OFFSET = _mscl.MipTypes_CMD_EF_SPEED_MEASUREMENT_OFFSET - CMD_EF_VERTICAL_GYRO_CONSTRAINT = _mscl.MipTypes_CMD_EF_VERTICAL_GYRO_CONSTRAINT - CMD_EF_WHEELED_VEHICLE_CONSTRAINT = _mscl.MipTypes_CMD_EF_WHEELED_VEHICLE_CONSTRAINT - CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL = _mscl.MipTypes_CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL - CMD_GNSS_RECEIVER_INFO = _mscl.MipTypes_CMD_GNSS_RECEIVER_INFO - CMD_GNSS_SIGNAL_CONFIG = _mscl.MipTypes_CMD_GNSS_SIGNAL_CONFIG - CMD_GNSS_SPARTN_CONFIG = _mscl.MipTypes_CMD_GNSS_SPARTN_CONFIG - CMD_GNSS_RTK_CONFIG = _mscl.MipTypes_CMD_GNSS_RTK_CONFIG - CMD_INTERFACE_CONTROL = _mscl.MipTypes_CMD_INTERFACE_CONTROL - CMD_COMMUNICATION_MODE = _mscl.MipTypes_CMD_COMMUNICATION_MODE - CMD_HARDWARE_CTRL = _mscl.MipTypes_CMD_HARDWARE_CTRL - CMD_GET_ANALOG_DISPLACEMENT_CALS = _mscl.MipTypes_CMD_GET_ANALOG_DISPLACEMENT_CALS - CMD_DISPLACEMENT_OUTPUT_RATE = _mscl.MipTypes_CMD_DISPLACEMENT_OUTPUT_RATE - CMD_DISPLACEMENT_DEVICE_TIME = _mscl.MipTypes_CMD_DISPLACEMENT_DEVICE_TIME - CMD_RTK_DEVICE_STATUS_FLAGS = _mscl.MipTypes_CMD_RTK_DEVICE_STATUS_FLAGS - CMD_RTK_ACTIVATION_CODE = _mscl.MipTypes_CMD_RTK_ACTIVATION_CODE - CMD_AIDING_FRAME_CONFIG = _mscl.MipTypes_CMD_AIDING_FRAME_CONFIG - CMD_AIDING_ECHO_CONTROL = _mscl.MipTypes_CMD_AIDING_ECHO_CONTROL - CMD_AIDING_POS_ECEF = _mscl.MipTypes_CMD_AIDING_POS_ECEF - CMD_AIDING_POS_LLH = _mscl.MipTypes_CMD_AIDING_POS_LLH - CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID - CMD_AIDING_VEL_ECEF = _mscl.MipTypes_CMD_AIDING_VEL_ECEF - CMD_AIDING_VEL_NED = _mscl.MipTypes_CMD_AIDING_VEL_NED - CMD_AIDING_VEL_BODY_FRAME = _mscl.MipTypes_CMD_AIDING_VEL_BODY_FRAME - CMD_AIDING_HEADING_TRUE = _mscl.MipTypes_CMD_AIDING_HEADING_TRUE - CMD_AIDING_MAGNETIC_FIELD = _mscl.MipTypes_CMD_AIDING_MAGNETIC_FIELD - CMD_AIDING_PRESSURE = _mscl.MipTypes_CMD_AIDING_PRESSURE - CH_FIELD_SENSOR_RAW_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_ACCEL_VEC - CH_FIELD_SENSOR_RAW_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_GYRO_VEC - CH_FIELD_SENSOR_RAW_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_MAG_VEC - CH_FIELD_SENSOR_SCALED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_ACCEL_VEC - CH_FIELD_SENSOR_SCALED_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_GYRO_VEC - CH_FIELD_SENSOR_SCALED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_MAG_VEC - CH_FIELD_SENSOR_DELTA_THETA_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_THETA_VEC - CH_FIELD_SENSOR_DELTA_VELOCITY_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_VELOCITY_VEC - CH_FIELD_SENSOR_ORIENTATION_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_MATRIX - CH_FIELD_SENSOR_ORIENTATION_QUATERNION = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_QUATERNION - CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX - CH_FIELD_SENSOR_EULER_ANGLES = _mscl.MipTypes_CH_FIELD_SENSOR_EULER_ANGLES - CH_FIELD_SENSOR_INTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_INTERNAL_TIMESTAMP - CH_FIELD_SENSOR_BEACONED_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_BEACONED_TIMESTAMP - CH_FIELD_SENSOR_STABILIZED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_MAG_VEC - CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC - CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP - CH_FIELD_SENSOR_TEMPERATURE_STATISTICS = _mscl.MipTypes_CH_FIELD_SENSOR_TEMPERATURE_STATISTICS - CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE - CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE - CH_FIELD_SENSOR_OVERRANGE_STATUS = _mscl.MipTypes_CH_FIELD_SENSOR_OVERRANGE_STATUS - CH_FIELD_SENSOR_ODOMETER_DATA = _mscl.MipTypes_CH_FIELD_SENSOR_ODOMETER_DATA - CH_FIELD_SENSOR_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EVENT_SOURCE - CH_FIELD_SENSOR_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_TICKS - CH_FIELD_SENSOR_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TICKS - CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP - CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_LLH_POSITION - CH_FIELD_GNSS_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_POSITION - CH_FIELD_GNSS_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_NED_VELOCITY - CH_FIELD_GNSS_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_VELOCITY - CH_FIELD_GNSS_DOP = _mscl.MipTypes_CH_FIELD_GNSS_DOP - CH_FIELD_GNSS_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_UTC_TIME - CH_FIELD_GNSS_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_GPS_TIME - CH_FIELD_GNSS_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO - CH_FIELD_GNSS_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_FIX_INFO - CH_FIELD_GNSS_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_HARDWARE_STATUS - CH_FIELD_GNSS_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_INFO - CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO_2 - CH_FIELD_GNSS_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_LEAP_SECONDS - CH_FIELD_GNSS_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_INFO - CH_FIELD_GNSS_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_CORRECTION - CH_FIELD_GNSS_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_RF_ERROR_DETECTION - CH_FIELD_GNSS_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_SATELLITE_STATUS - CH_FIELD_GNSS_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_RAW_OBSERVATION - CH_FIELD_GNSS_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_STATION_INFO - CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_EPHEMERIS - CH_FIELD_GNSS_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GLONASS_EPHEMERIS - CH_FIELD_GNSS_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_EPHEMERIS - CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_TICKS - CH_FIELD_GNSS_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TICKS - CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS - CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL - CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE - CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE - CH_FIELD_ESTFILTER_FILTER_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_FILTER_STATUS - CH_FIELD_ESTFILTER_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT - CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR - CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE - CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR - CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_MAG_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS - CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT - CH_FIELD_ESTFILTER_COMPENSATED_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_COMPENSATED_ACCEL - CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL - CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT - CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX - CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS_UNCERT - CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS - CH_FIELD_ESTFILTER_ECEF_VEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL - CH_FIELD_ESTFILTER_NED_RELATIVE_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_NED_RELATIVE_POS - CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS - CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS - CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY = _mscl.MipTypes_CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT - CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT - CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE - CH_FIELD_ESTFILTER_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_TICKS - CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS - CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_DISP_DISPLACEMENT_RAW = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_RAW - CH_FIELD_DISP_DISPLACEMENT_MM = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_MM - CH_FIELD_DISP_DISPLACEMENT_TS = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_TS - CH_FIELD_GNSS_1_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_LLH_POSITION - CH_FIELD_GNSS_1_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_POSITION - CH_FIELD_GNSS_1_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_NED_VELOCITY - CH_FIELD_GNSS_1_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_VELOCITY - CH_FIELD_GNSS_1_DOP = _mscl.MipTypes_CH_FIELD_GNSS_1_DOP - CH_FIELD_GNSS_1_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_UTC_TIME - CH_FIELD_GNSS_1_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_TIME - CH_FIELD_GNSS_1_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO - CH_FIELD_GNSS_1_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_FIX_INFO - CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_1_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_HARDWARE_STATUS - CH_FIELD_GNSS_1_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_INFO - CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_1_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO_2 - CH_FIELD_GNSS_1_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_LEAP_SECONDS - CH_FIELD_GNSS_1_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_INFO - CH_FIELD_GNSS_1_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_CORRECTION - CH_FIELD_GNSS_1_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_RF_ERROR_DETECTION - CH_FIELD_GNSS_1_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_SATELLITE_STATUS - CH_FIELD_GNSS_1_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_1_RAW_OBSERVATION - CH_FIELD_GNSS_1_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_STATION_INFO - CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_1_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_EPHEMERIS - CH_FIELD_GNSS_1_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GLONASS_EPHEMERIS - CH_FIELD_GNSS_1_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_EPHEMERIS - CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_1_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_TICKS - CH_FIELD_GNSS_1_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TICKS - CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_2_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_LLH_POSITION - CH_FIELD_GNSS_2_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_POSITION - CH_FIELD_GNSS_2_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_NED_VELOCITY - CH_FIELD_GNSS_2_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_VELOCITY - CH_FIELD_GNSS_2_DOP = _mscl.MipTypes_CH_FIELD_GNSS_2_DOP - CH_FIELD_GNSS_2_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_UTC_TIME - CH_FIELD_GNSS_2_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_TIME - CH_FIELD_GNSS_2_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO - CH_FIELD_GNSS_2_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_FIX_INFO - CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_2_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_HARDWARE_STATUS - CH_FIELD_GNSS_2_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_INFO - CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_2_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO_2 - CH_FIELD_GNSS_2_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_LEAP_SECONDS - CH_FIELD_GNSS_2_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_INFO - CH_FIELD_GNSS_2_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_CORRECTION - CH_FIELD_GNSS_2_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_RF_ERROR_DETECTION - CH_FIELD_GNSS_2_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_SATELLITE_STATUS - CH_FIELD_GNSS_2_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_2_RAW_OBSERVATION - CH_FIELD_GNSS_2_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_STATION_INFO - CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_2_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_EPHEMERIS - CH_FIELD_GNSS_2_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GLONASS_EPHEMERIS - CH_FIELD_GNSS_2_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_EPHEMERIS - CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_2_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_TICKS - CH_FIELD_GNSS_2_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TICKS - CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_3_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_LLH_POSITION - CH_FIELD_GNSS_3_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_POSITION - CH_FIELD_GNSS_3_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_NED_VELOCITY - CH_FIELD_GNSS_3_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_VELOCITY - CH_FIELD_GNSS_3_DOP = _mscl.MipTypes_CH_FIELD_GNSS_3_DOP - CH_FIELD_GNSS_3_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_UTC_TIME - CH_FIELD_GNSS_3_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_TIME - CH_FIELD_GNSS_3_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO - CH_FIELD_GNSS_3_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_FIX_INFO - CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_3_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_HARDWARE_STATUS - CH_FIELD_GNSS_3_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_INFO - CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_3_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO_2 - CH_FIELD_GNSS_3_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_LEAP_SECONDS - CH_FIELD_GNSS_3_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_INFO - CH_FIELD_GNSS_3_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_CORRECTION - CH_FIELD_GNSS_3_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_RF_ERROR_DETECTION - CH_FIELD_GNSS_3_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_SATELLITE_STATUS - CH_FIELD_GNSS_3_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_3_RAW_OBSERVATION - CH_FIELD_GNSS_3_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_STATION_INFO - CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_3_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_EPHEMERIS - CH_FIELD_GNSS_3_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GLONASS_EPHEMERIS - CH_FIELD_GNSS_3_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_EPHEMERIS - CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_3_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_TICKS - CH_FIELD_GNSS_3_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TICKS - CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_4_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_LLH_POSITION - CH_FIELD_GNSS_4_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_POSITION - CH_FIELD_GNSS_4_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_NED_VELOCITY - CH_FIELD_GNSS_4_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_VELOCITY - CH_FIELD_GNSS_4_DOP = _mscl.MipTypes_CH_FIELD_GNSS_4_DOP - CH_FIELD_GNSS_4_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_UTC_TIME - CH_FIELD_GNSS_4_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_TIME - CH_FIELD_GNSS_4_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO - CH_FIELD_GNSS_4_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_FIX_INFO - CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_4_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_HARDWARE_STATUS - CH_FIELD_GNSS_4_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_INFO - CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_4_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO_2 - CH_FIELD_GNSS_4_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_LEAP_SECONDS - CH_FIELD_GNSS_4_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_INFO - CH_FIELD_GNSS_4_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_CORRECTION - CH_FIELD_GNSS_4_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_RF_ERROR_DETECTION - CH_FIELD_GNSS_4_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_SATELLITE_STATUS - CH_FIELD_GNSS_4_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_4_RAW_OBSERVATION - CH_FIELD_GNSS_4_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_STATION_INFO - CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_4_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_EPHEMERIS - CH_FIELD_GNSS_4_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GLONASS_EPHEMERIS - CH_FIELD_GNSS_4_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_EPHEMERIS - CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_4_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_TICKS - CH_FIELD_GNSS_4_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TICKS - CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_5_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_LLH_POSITION - CH_FIELD_GNSS_5_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_POSITION - CH_FIELD_GNSS_5_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_NED_VELOCITY - CH_FIELD_GNSS_5_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_VELOCITY - CH_FIELD_GNSS_5_DOP = _mscl.MipTypes_CH_FIELD_GNSS_5_DOP - CH_FIELD_GNSS_5_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_UTC_TIME - CH_FIELD_GNSS_5_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_TIME - CH_FIELD_GNSS_5_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO - CH_FIELD_GNSS_5_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_FIX_INFO - CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_5_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_HARDWARE_STATUS - CH_FIELD_GNSS_5_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_INFO - CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_5_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO_2 - CH_FIELD_GNSS_5_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_LEAP_SECONDS - CH_FIELD_GNSS_5_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_INFO - CH_FIELD_GNSS_5_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_CORRECTION - CH_FIELD_GNSS_5_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_RF_ERROR_DETECTION - CH_FIELD_GNSS_5_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_SATELLITE_STATUS - CH_FIELD_GNSS_5_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_5_RAW_OBSERVATION - CH_FIELD_GNSS_5_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_STATION_INFO - CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_5_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_EPHEMERIS - CH_FIELD_GNSS_5_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GLONASS_EPHEMERIS - CH_FIELD_GNSS_5_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_EPHEMERIS - CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_5_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_TICKS - CH_FIELD_GNSS_5_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TICKS - CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_SYSTEM_BUILT_IN_TEST = _mscl.MipTypes_CH_FIELD_SYSTEM_BUILT_IN_TEST - CH_FIELD_SYSTEM_TIME_SYNC_STATUS = _mscl.MipTypes_CH_FIELD_SYSTEM_TIME_SYNC_STATUS - CH_FIELD_SYSTEM_GPIO_STATE = _mscl.MipTypes_CH_FIELD_SYSTEM_GPIO_STATE - CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE - CH_FIELD_SYSTEM_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_TICKS - CH_FIELD_SYSTEM_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TICKS - CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME - MIN_SHARED_FIELD_DESCRIPTOR = _mscl.MipTypes_MIN_SHARED_FIELD_DESCRIPTOR - CH_UNKNOWN = _mscl.MipTypes_CH_UNKNOWN - CH_X = _mscl.MipTypes_CH_X - CH_Y = _mscl.MipTypes_CH_Y - CH_Z = _mscl.MipTypes_CH_Z - CH_MATRIX = _mscl.MipTypes_CH_MATRIX - CH_QUATERNION = _mscl.MipTypes_CH_QUATERNION - CH_ROLL = _mscl.MipTypes_CH_ROLL - CH_PITCH = _mscl.MipTypes_CH_PITCH - CH_YAW = _mscl.MipTypes_CH_YAW - CH_TICK = _mscl.MipTypes_CH_TICK - CH_TIMESTAMP = _mscl.MipTypes_CH_TIMESTAMP - CH_STATUS = _mscl.MipTypes_CH_STATUS - CH_TIME_OF_WEEK = _mscl.MipTypes_CH_TIME_OF_WEEK - CH_WEEK_NUMBER = _mscl.MipTypes_CH_WEEK_NUMBER - CH_LATITUDE = _mscl.MipTypes_CH_LATITUDE - CH_LONGITUDE = _mscl.MipTypes_CH_LONGITUDE - CH_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CH_HEIGHT_ABOVE_ELLIPSOID - CH_HEIGHT_ABOVE_MSL = _mscl.MipTypes_CH_HEIGHT_ABOVE_MSL - CH_HORIZONTAL_ACCURACY = _mscl.MipTypes_CH_HORIZONTAL_ACCURACY - CH_VERTICAL_ACCURACY = _mscl.MipTypes_CH_VERTICAL_ACCURACY - CH_POSITION_ACCURACY = _mscl.MipTypes_CH_POSITION_ACCURACY - CH_NORTH = _mscl.MipTypes_CH_NORTH - CH_EAST = _mscl.MipTypes_CH_EAST - CH_DOWN = _mscl.MipTypes_CH_DOWN - CH_SPEED = _mscl.MipTypes_CH_SPEED - CH_GROUND_SPEED = _mscl.MipTypes_CH_GROUND_SPEED - CH_HEADING = _mscl.MipTypes_CH_HEADING - CH_SPEED_ACCURACY = _mscl.MipTypes_CH_SPEED_ACCURACY - CH_HEADING_ACCURACY = _mscl.MipTypes_CH_HEADING_ACCURACY - CH_VELOCITY_ACCURACY = _mscl.MipTypes_CH_VELOCITY_ACCURACY - CH_GEOMETRIC_DOP = _mscl.MipTypes_CH_GEOMETRIC_DOP - CH_POSITION_DOP = _mscl.MipTypes_CH_POSITION_DOP - CH_HORIZONTAL_DOP = _mscl.MipTypes_CH_HORIZONTAL_DOP - CH_VERTICAL_DOP = _mscl.MipTypes_CH_VERTICAL_DOP - CH_TIME_DOP = _mscl.MipTypes_CH_TIME_DOP - CH_NORTHING_DOP = _mscl.MipTypes_CH_NORTHING_DOP - CH_EASTING_DOP = _mscl.MipTypes_CH_EASTING_DOP - CH_FLAGS = _mscl.MipTypes_CH_FLAGS - CH_BIAS = _mscl.MipTypes_CH_BIAS - CH_DRIFT = _mscl.MipTypes_CH_DRIFT - CH_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_ACCURACY_ESTIMATE - CH_FIX_TYPE = _mscl.MipTypes_CH_FIX_TYPE - CH_SV_COUNT = _mscl.MipTypes_CH_SV_COUNT - CH_CHANNEL = _mscl.MipTypes_CH_CHANNEL - CH_ID = _mscl.MipTypes_CH_ID - CH_CARRIER_TO_NOISE_RATIO = _mscl.MipTypes_CH_CARRIER_TO_NOISE_RATIO - CH_AZIMUTH = _mscl.MipTypes_CH_AZIMUTH - CH_ELEVATION = _mscl.MipTypes_CH_ELEVATION - CH_SENSOR_STATE = _mscl.MipTypes_CH_SENSOR_STATE - CH_ANTENNA_STATE = _mscl.MipTypes_CH_ANTENNA_STATE - CH_ANTENNA_POWER = _mscl.MipTypes_CH_ANTENNA_POWER - CH_FILTER_STATE = _mscl.MipTypes_CH_FILTER_STATE - CH_DYNAMICS_MODE = _mscl.MipTypes_CH_DYNAMICS_MODE - CH_MAGNITUDE = _mscl.MipTypes_CH_MAGNITUDE - CH_HEADING_UNCERTAINTY = _mscl.MipTypes_CH_HEADING_UNCERTAINTY - CH_SOURCE = _mscl.MipTypes_CH_SOURCE - CH_INCLINATION = _mscl.MipTypes_CH_INCLINATION - CH_DECLINATION = _mscl.MipTypes_CH_DECLINATION - CH_PRESSURE = _mscl.MipTypes_CH_PRESSURE - CH_AGE = _mscl.MipTypes_CH_AGE - CH_NUM_CHANNELS = _mscl.MipTypes_CH_NUM_CHANNELS - CH_CORRECTION = _mscl.MipTypes_CH_CORRECTION - CH_RATE_CORRECTION = _mscl.MipTypes_CH_RATE_CORRECTION - CH_GEOMETRIC_ALTITUDE = _mscl.MipTypes_CH_GEOMETRIC_ALTITUDE - CH_GEOPOTENTIAL_ALTITUDE = _mscl.MipTypes_CH_GEOPOTENTIAL_ALTITUDE - CH_TEMPERATURE = _mscl.MipTypes_CH_TEMPERATURE - CH_DENSITY = _mscl.MipTypes_CH_DENSITY - CH_ALTITUDE = _mscl.MipTypes_CH_ALTITUDE - CH_DISPLACEMENT = _mscl.MipTypes_CH_DISPLACEMENT - CH_MAX_TEMP = _mscl.MipTypes_CH_MAX_TEMP - CH_MIN_TEMP = _mscl.MipTypes_CH_MIN_TEMP - CH_MEAN_TEMP = _mscl.MipTypes_CH_MEAN_TEMP - CH_BIAS_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_BIAS_ACCURACY_ESTIMATE - CH_DRIFT_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_DRIFT_ACCURACY_ESTIMATE - CH_SECONDS = _mscl.MipTypes_CH_SECONDS - CH_NUM_PACKETS = _mscl.MipTypes_CH_NUM_PACKETS - CH_GPS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GPS_CORRECTION_LATENCY - CH_GLONASS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GLONASS_CORRECTION_LATENCY - CH_GALILEO_CORRECTION_LATENCY = _mscl.MipTypes_CH_GALILEO_CORRECTION_LATENCY - CH_BEIDOU_CORRECTION_LATENCY = _mscl.MipTypes_CH_BEIDOU_CORRECTION_LATENCY - CH_HEIGHT = _mscl.MipTypes_CH_HEIGHT - CH_HEALTH = _mscl.MipTypes_CH_HEALTH - CH_INDEX = _mscl.MipTypes_CH_INDEX - CH_COUNT = _mscl.MipTypes_CH_COUNT - CH_SIGNAL_STRENGTH = _mscl.MipTypes_CH_SIGNAL_STRENGTH - CH_SIGNAL_QUALITY = _mscl.MipTypes_CH_SIGNAL_QUALITY - CH_RANGE = _mscl.MipTypes_CH_RANGE - CH_RANGE_UNC = _mscl.MipTypes_CH_RANGE_UNC - CH_ALPHA = _mscl.MipTypes_CH_ALPHA - CH_BETA = _mscl.MipTypes_CH_BETA - CH_DISTURBANCE_FLAGS = _mscl.MipTypes_CH_DISTURBANCE_FLAGS - CH_CARRIER_PHASE = _mscl.MipTypes_CH_CARRIER_PHASE - CH_CARRIER_PHASE_UNC = _mscl.MipTypes_CH_CARRIER_PHASE_UNC - CH_DOPPLER = _mscl.MipTypes_CH_DOPPLER - CH_DOPPLER_UNC = _mscl.MipTypes_CH_DOPPLER_UNC - CH_DELTA_TIME = _mscl.MipTypes_CH_DELTA_TIME - CH_DELTA_TICK = _mscl.MipTypes_CH_DELTA_TICK - CH_ERROR = _mscl.MipTypes_CH_ERROR - CH_ERROR_UNC = _mscl.MipTypes_CH_ERROR_UNC - CH_W = _mscl.MipTypes_CH_W - CH_M0 = _mscl.MipTypes_CH_M0 - CH_M1 = _mscl.MipTypes_CH_M1 - CH_M2 = _mscl.MipTypes_CH_M2 - CH_M3 = _mscl.MipTypes_CH_M3 - CH_M4 = _mscl.MipTypes_CH_M4 - CH_M5 = _mscl.MipTypes_CH_M5 - CH_M6 = _mscl.MipTypes_CH_M6 - CH_M7 = _mscl.MipTypes_CH_M7 - CH_M8 = _mscl.MipTypes_CH_M8 - CH_NANOSECONDS = _mscl.MipTypes_CH_NANOSECONDS - CH_VALID_FLAGS = _mscl.MipTypes_CH_VALID_FLAGS - CH_PPS_VALID = _mscl.MipTypes_CH_PPS_VALID - CH_LAST_PPS = _mscl.MipTypes_CH_LAST_PPS - CH_UDREI = _mscl.MipTypes_CH_UDREI - CH_PSEUDORANGE_CORRECTION = _mscl.MipTypes_CH_PSEUDORANGE_CORRECTION - CH_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_IONOSPHERIC_CORRECTION - CH_JAMMING_STATE = _mscl.MipTypes_CH_JAMMING_STATE - CH_SPOOFING_STATE = _mscl.MipTypes_CH_SPOOFING_STATE - CH_SYSTEM_ID = _mscl.MipTypes_CH_SYSTEM_ID - CH_SATELLITE_ID = _mscl.MipTypes_CH_SATELLITE_ID - CH_BIT_SYSTEM_GENERAL = _mscl.MipTypes_CH_BIT_SYSTEM_GENERAL - CH_BIT_SYSTEM_PROCESS = _mscl.MipTypes_CH_BIT_SYSTEM_PROCESS - CH_BIT_IMU_GENERAL = _mscl.MipTypes_CH_BIT_IMU_GENERAL - CH_BIT_IMU_SENSORS = _mscl.MipTypes_CH_BIT_IMU_SENSORS - CH_BIT_IMU_FACTORY_BITS = _mscl.MipTypes_CH_BIT_IMU_FACTORY_BITS - CH_BIT_FILTER_GENERAL = _mscl.MipTypes_CH_BIT_FILTER_GENERAL - CH_BIT_GNSS_GENERAL = _mscl.MipTypes_CH_BIT_GNSS_GENERAL - CH_BIT_GNSS_RECEIVERS = _mscl.MipTypes_CH_BIT_GNSS_RECEIVERS - - @staticmethod - def channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - - @staticmethod - def getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - - @staticmethod - def getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - - @staticmethod - def getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - - @staticmethod - def getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - - @staticmethod - def getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - - @staticmethod - def isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - - @staticmethod - def isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - - @staticmethod - def channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - - @staticmethod - def channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - - @staticmethod - def channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - - def __init__(self): - _mscl.MipTypes_swiginit(self, _mscl.new_MipTypes()) - __swig_destroy__ = _mscl.delete_MipTypes - -# Register MipTypes in _mscl: -_mscl.MipTypes_swigregister(MipTypes) - -def MipTypes_channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - -def MipTypes_getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - -def MipTypes_getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - -def MipTypes_getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - -def MipTypes_getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - -def MipTypes_getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - -def MipTypes_isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - -def MipTypes_isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - -def MipTypes_channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - -def MipTypes_channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - -def MipTypes_channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - -class MipChannelIdentifier(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - GNSS_RECEIVER_ID = _mscl.MipChannelIdentifier_GNSS_RECEIVER_ID - GNSS_BASE_STATION_ID = _mscl.MipChannelIdentifier_GNSS_BASE_STATION_ID - GNSS_CONSTELLATION = _mscl.MipChannelIdentifier_GNSS_CONSTELLATION - GNSS_SATELLITE_ID = _mscl.MipChannelIdentifier_GNSS_SATELLITE_ID - GNSS_SIGNAL_ID = _mscl.MipChannelIdentifier_GNSS_SIGNAL_ID - AIDING_MEASUREMENT_TYPE = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_TYPE - GNSS_RF_BAND = _mscl.MipChannelIdentifier_GNSS_RF_BAND - AIDING_MEASUREMENT_FRAME_ID = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_FRAME_ID - GNSS = _mscl.MipChannelIdentifier_GNSS - DUAL_ANTENNA = _mscl.MipChannelIdentifier_DUAL_ANTENNA - HEADING = _mscl.MipChannelIdentifier_HEADING - PRESSURE = _mscl.MipChannelIdentifier_PRESSURE - MAGNETOMETER = _mscl.MipChannelIdentifier_MAGNETOMETER - SPEED = _mscl.MipChannelIdentifier_SPEED - AIDING_POS_ECEF = _mscl.MipChannelIdentifier_AIDING_POS_ECEF - AIDING_POS_LLH = _mscl.MipChannelIdentifier_AIDING_POS_LLH - AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipChannelIdentifier_AIDING_HEIGHT_ABOVE_ELLIPSOID - AIDING_VEL_ECEF = _mscl.MipChannelIdentifier_AIDING_VEL_ECEF - AIDING_VEL_NED = _mscl.MipChannelIdentifier_AIDING_VEL_NED - AIDING_VEL_BODY_FRAME = _mscl.MipChannelIdentifier_AIDING_VEL_BODY_FRAME - AIDING_HEADING_TRUE = _mscl.MipChannelIdentifier_AIDING_HEADING_TRUE - AIDING_MAGNETIC_FIELD = _mscl.MipChannelIdentifier_AIDING_MAGNETIC_FIELD - AIDING_PRESSURE = _mscl.MipChannelIdentifier_AIDING_PRESSURE - UNKNOWN_CONSTELLATION = _mscl.MipChannelIdentifier_UNKNOWN_CONSTELLATION - GPS = _mscl.MipChannelIdentifier_GPS - GLONASS = _mscl.MipChannelIdentifier_GLONASS - GALILEO = _mscl.MipChannelIdentifier_GALILEO - BEIDOU = _mscl.MipChannelIdentifier_BEIDOU - UNKNOWN_SIGNAL = _mscl.MipChannelIdentifier_UNKNOWN_SIGNAL - GPS_L1CA = _mscl.MipChannelIdentifier_GPS_L1CA - GPS_L1P = _mscl.MipChannelIdentifier_GPS_L1P - GPS_L1Z = _mscl.MipChannelIdentifier_GPS_L1Z - GPS_L2CA = _mscl.MipChannelIdentifier_GPS_L2CA - GPS_L2P = _mscl.MipChannelIdentifier_GPS_L2P - GPS_L2Z = _mscl.MipChannelIdentifier_GPS_L2Z - GPS_L2CL = _mscl.MipChannelIdentifier_GPS_L2CL - GPS_L2CM = _mscl.MipChannelIdentifier_GPS_L2CM - GPS_L2CML = _mscl.MipChannelIdentifier_GPS_L2CML - GPS_L5I = _mscl.MipChannelIdentifier_GPS_L5I - GPS_L5Q = _mscl.MipChannelIdentifier_GPS_L5Q - GPS_L5IQ = _mscl.MipChannelIdentifier_GPS_L5IQ - GPS_L1CD = _mscl.MipChannelIdentifier_GPS_L1CD - GPS_L1CP = _mscl.MipChannelIdentifier_GPS_L1CP - GPS_L1CDP = _mscl.MipChannelIdentifier_GPS_L1CDP - GLONASS_G1CA = _mscl.MipChannelIdentifier_GLONASS_G1CA - GLONASS_G1P = _mscl.MipChannelIdentifier_GLONASS_G1P - GLONASS_G2C = _mscl.MipChannelIdentifier_GLONASS_G2C - GLONASS_G2P = _mscl.MipChannelIdentifier_GLONASS_G2P - GALILEO_E1C = _mscl.MipChannelIdentifier_GALILEO_E1C - GALILEO_E1A = _mscl.MipChannelIdentifier_GALILEO_E1A - GALILEO_E1B = _mscl.MipChannelIdentifier_GALILEO_E1B - GALILEO_E1BC = _mscl.MipChannelIdentifier_GALILEO_E1BC - GALILEO_E1ABC = _mscl.MipChannelIdentifier_GALILEO_E1ABC - GALILEO_E6C = _mscl.MipChannelIdentifier_GALILEO_E6C - GALILEO_E6A = _mscl.MipChannelIdentifier_GALILEO_E6A - GALILEO_E6B = _mscl.MipChannelIdentifier_GALILEO_E6B - GALILEO_E6BC = _mscl.MipChannelIdentifier_GALILEO_E6BC - GALILEO_E6ABC = _mscl.MipChannelIdentifier_GALILEO_E6ABC - GALILEO_E5BI = _mscl.MipChannelIdentifier_GALILEO_E5BI - GALILEO_E5BQ = _mscl.MipChannelIdentifier_GALILEO_E5BQ - GALILEO_E5BIQ = _mscl.MipChannelIdentifier_GALILEO_E5BIQ - GALILEO_E5ABI = _mscl.MipChannelIdentifier_GALILEO_E5ABI - GALILEO_E5ABQ = _mscl.MipChannelIdentifier_GALILEO_E5ABQ - GALILEO_E5ABIQ = _mscl.MipChannelIdentifier_GALILEO_E5ABIQ - GALILEO_E5AI = _mscl.MipChannelIdentifier_GALILEO_E5AI - GALILEO_E5AQ = _mscl.MipChannelIdentifier_GALILEO_E5AQ - GALILEO_E5AIQ = _mscl.MipChannelIdentifier_GALILEO_E5AIQ - SBAS_L1CA = _mscl.MipChannelIdentifier_SBAS_L1CA - SBAS_L5I = _mscl.MipChannelIdentifier_SBAS_L5I - SBAS_L5Q = _mscl.MipChannelIdentifier_SBAS_L5Q - SBAS_L5IQ = _mscl.MipChannelIdentifier_SBAS_L5IQ - QZSS_L1CA = _mscl.MipChannelIdentifier_QZSS_L1CA - QZSS_LEXS = _mscl.MipChannelIdentifier_QZSS_LEXS - QZSS_LEXL = _mscl.MipChannelIdentifier_QZSS_LEXL - QZSS_LEXSL = _mscl.MipChannelIdentifier_QZSS_LEXSL - QZSS_L2CM = _mscl.MipChannelIdentifier_QZSS_L2CM - QZSS_L2CL = _mscl.MipChannelIdentifier_QZSS_L2CL - QZSS_L2CML = _mscl.MipChannelIdentifier_QZSS_L2CML - QZSS_L5I = _mscl.MipChannelIdentifier_QZSS_L5I - QZSS_L5Q = _mscl.MipChannelIdentifier_QZSS_L5Q - QZSS_L5IQ = _mscl.MipChannelIdentifier_QZSS_L5IQ - QZSS_L1CD = _mscl.MipChannelIdentifier_QZSS_L1CD - QZSS_L1CP = _mscl.MipChannelIdentifier_QZSS_L1CP - QZSS_L1CDP = _mscl.MipChannelIdentifier_QZSS_L1CDP - BEIDOU_B1I = _mscl.MipChannelIdentifier_BEIDOU_B1I - BEIDOU_B1Q = _mscl.MipChannelIdentifier_BEIDOU_B1Q - BEIDOU_B1IQ = _mscl.MipChannelIdentifier_BEIDOU_B1IQ - BEIDOU_B3I = _mscl.MipChannelIdentifier_BEIDOU_B3I - BEIDOU_B3Q = _mscl.MipChannelIdentifier_BEIDOU_B3Q - BEIDOU_B3IQ = _mscl.MipChannelIdentifier_BEIDOU_B3IQ - BEIDOU_B2I = _mscl.MipChannelIdentifier_BEIDOU_B2I - BEIDOU_B2Q = _mscl.MipChannelIdentifier_BEIDOU_B2Q - BEIDOU_B2IQ = _mscl.MipChannelIdentifier_BEIDOU_B2IQ - UNKNOWN_RF_BAND = _mscl.MipChannelIdentifier_UNKNOWN_RF_BAND - RF_BAND_L1 = _mscl.MipChannelIdentifier_RF_BAND_L1 - RF_BAND_L2 = _mscl.MipChannelIdentifier_RF_BAND_L2 - RF_BAND_L5 = _mscl.MipChannelIdentifier_RF_BAND_L5 - - def __init__(self, *args): - _mscl.MipChannelIdentifier_swiginit(self, _mscl.new_MipChannelIdentifier(*args)) - __swig_destroy__ = _mscl.delete_MipChannelIdentifier - - def identifierType(self): - return _mscl.MipChannelIdentifier_identifierType(self) - - def id(self): - return _mscl.MipChannelIdentifier_id(self) - - def hasSpecifier(self): - return _mscl.MipChannelIdentifier_hasSpecifier(self) - - def specifier(self): - return _mscl.MipChannelIdentifier_specifier(self) - - def name(self, standardizedFormat=True): - return _mscl.MipChannelIdentifier_name(self, standardizedFormat) - -# Register MipChannelIdentifier in _mscl: -_mscl.MipChannelIdentifier_swigregister(MipChannelIdentifier) - -class MipCommandBytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - id = property(_mscl.MipCommandBytes_id_get, _mscl.MipCommandBytes_id_set) - commands = property(_mscl.MipCommandBytes_commands_get, _mscl.MipCommandBytes_commands_set) - buildCmdFailed = property(_mscl.MipCommandBytes_buildCmdFailed_get, _mscl.MipCommandBytes_buildCmdFailed_set) - sendCmdFailed = property(_mscl.MipCommandBytes_sendCmdFailed_get, _mscl.MipCommandBytes_sendCmdFailed_set) - - def __init__(self, *args): - _mscl.MipCommandBytes_swiginit(self, _mscl.new_MipCommandBytes(*args)) - - def add(self, cmd): - return _mscl.MipCommandBytes_add(self, cmd) - - def valid(self): - return _mscl.MipCommandBytes_valid(self) - __swig_destroy__ = _mscl.delete_MipCommandBytes - -# Register MipCommandBytes in _mscl: -_mscl.MipCommandBytes_swigregister(MipCommandBytes) - -class AidingMeasurementInput(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - ACK_NACK = _mscl.AidingMeasurementInput_ACK_NACK - ECHO_INPUT = _mscl.AidingMeasurementInput_ECHO_INPUT - - def toMipFieldValues(self): - return _mscl.AidingMeasurementInput_toMipFieldValues(self) - - def timestamp(self, *args): - return _mscl.AidingMeasurementInput_timestamp(self, *args) - - def timebase(self): - return _mscl.AidingMeasurementInput_timebase(self) - - def frameId(self, *args): - return _mscl.AidingMeasurementInput_frameId(self, *args) - - def validFlags(self, *args): - return _mscl.AidingMeasurementInput_validFlags(self, *args) - -# Register AidingMeasurementInput in _mscl: -_mscl.AidingMeasurementInput_swigregister(AidingMeasurementInput) - -class AidingMeasurementPosition(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementPosition_X - LATITUDE = _mscl.AidingMeasurementPosition_LATITUDE - Y = _mscl.AidingMeasurementPosition_Y - LONGITUDE = _mscl.AidingMeasurementPosition_LONGITUDE - Z = _mscl.AidingMeasurementPosition_Z - HEIGHT = _mscl.AidingMeasurementPosition_HEIGHT - ALTITUDE = _mscl.AidingMeasurementPosition_ALTITUDE - - def __init__(self, *args): - _mscl.AidingMeasurementPosition_swiginit(self, _mscl.new_AidingMeasurementPosition(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPosition - - def position(self, *args): - return _mscl.AidingMeasurementPosition_position(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPosition_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementPosition_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPosition_valid(self, *args) - -# Register AidingMeasurementPosition in _mscl: -_mscl.AidingMeasurementPosition_swigregister(AidingMeasurementPosition) - -class AidingMeasurementHeight(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeight_swiginit(self, _mscl.new_AidingMeasurementHeight(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeight - - def height(self, *args): - return _mscl.AidingMeasurementHeight_height(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeight_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeight_valid(self, *args) - -# Register AidingMeasurementHeight in _mscl: -_mscl.AidingMeasurementHeight_swigregister(AidingMeasurementHeight) - -class AidingMeasurementVelocity(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementVelocity_X - NORTH = _mscl.AidingMeasurementVelocity_NORTH - Y = _mscl.AidingMeasurementVelocity_Y - EAST = _mscl.AidingMeasurementVelocity_EAST - Z = _mscl.AidingMeasurementVelocity_Z - DOWN = _mscl.AidingMeasurementVelocity_DOWN - - def __init__(self, *args): - _mscl.AidingMeasurementVelocity_swiginit(self, _mscl.new_AidingMeasurementVelocity(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementVelocity - - def velocity(self, *args): - return _mscl.AidingMeasurementVelocity_velocity(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementVelocity_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementVelocity_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementVelocity_valid(self, *args) - -# Register AidingMeasurementVelocity in _mscl: -_mscl.AidingMeasurementVelocity_swigregister(AidingMeasurementVelocity) - -class AidingMeasurementHeading(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeading_swiginit(self, _mscl.new_AidingMeasurementHeading(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeading - - def heading(self, *args): - return _mscl.AidingMeasurementHeading_heading(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeading_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeading_valid(self, *args) - -# Register AidingMeasurementHeading in _mscl: -_mscl.AidingMeasurementHeading_swigregister(AidingMeasurementHeading) - -class AidingMeasurementMagneticField(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementMagneticField_X - Y = _mscl.AidingMeasurementMagneticField_Y - Z = _mscl.AidingMeasurementMagneticField_Z - - def __init__(self, *args): - _mscl.AidingMeasurementMagneticField_swiginit(self, _mscl.new_AidingMeasurementMagneticField(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementMagneticField - - def magneticField(self, *args): - return _mscl.AidingMeasurementMagneticField_magneticField(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementMagneticField_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementMagneticField_valid(self, *args) - -# Register AidingMeasurementMagneticField in _mscl: -_mscl.AidingMeasurementMagneticField_swigregister(AidingMeasurementMagneticField) - -class AidingMeasurementPressure(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementPressure_swiginit(self, _mscl.new_AidingMeasurementPressure(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPressure - - def pressure(self, *args): - return _mscl.AidingMeasurementPressure_pressure(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPressure_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPressure_valid(self, *args) - -# Register AidingMeasurementPressure in _mscl: -_mscl.AidingMeasurementPressure_swigregister(AidingMeasurementPressure) - -class GnssReceiverInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GnssReceiverInfo_swiginit(self, _mscl.new_GnssReceiverInfo(*args)) - id = property(_mscl.GnssReceiverInfo_id_get, _mscl.GnssReceiverInfo_id_set) - targetDataClass = property(_mscl.GnssReceiverInfo_targetDataClass_get, _mscl.GnssReceiverInfo_targetDataClass_set) - description = property(_mscl.GnssReceiverInfo_description_get, _mscl.GnssReceiverInfo_description_set) - module = property(_mscl.GnssReceiverInfo_module_get, _mscl.GnssReceiverInfo_module_set) - fwId = property(_mscl.GnssReceiverInfo_fwId_get, _mscl.GnssReceiverInfo_fwId_set) - fwVersion = property(_mscl.GnssReceiverInfo_fwVersion_get, _mscl.GnssReceiverInfo_fwVersion_set) - __swig_destroy__ = _mscl.delete_GnssReceiverInfo - -# Register GnssReceiverInfo in _mscl: -_mscl.GnssReceiverInfo_swigregister(GnssReceiverInfo) -GnssReceiverInfo.INFO_NOT_FOUND = _mscl.cvar.GnssReceiverInfo_INFO_NOT_FOUND - -class DeviceCommPort(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SPECIAL = _mscl.DeviceCommPort_SPECIAL - UART = _mscl.DeviceCommPort_UART - USB = _mscl.DeviceCommPort_USB - NONE = _mscl.DeviceCommPort_NONE - MIP_COMMANDS = _mscl.DeviceCommPort_MIP_COMMANDS - MIP_DATA = _mscl.DeviceCommPort_MIP_DATA - NMEA = _mscl.DeviceCommPort_NMEA - RTCM = _mscl.DeviceCommPort_RTCM - SPARTN = _mscl.DeviceCommPort_SPARTN - ALL = _mscl.DeviceCommPort_ALL - - def __init__(self, *args): - _mscl.DeviceCommPort_swiginit(self, _mscl.new_DeviceCommPort(*args)) - - def interfaceId(self): - return _mscl.DeviceCommPort_interfaceId(self) - type = property(_mscl.DeviceCommPort_type_get, _mscl.DeviceCommPort_type_set) - id = property(_mscl.DeviceCommPort_id_get, _mscl.DeviceCommPort_id_set) - inputProtocols = property(_mscl.DeviceCommPort_inputProtocols_get, _mscl.DeviceCommPort_inputProtocols_set) - outputProtocols = property(_mscl.DeviceCommPort_outputProtocols_get, _mscl.DeviceCommPort_outputProtocols_set) - __swig_destroy__ = _mscl.delete_DeviceCommPort - -# Register DeviceCommPort in _mscl: -_mscl.DeviceCommPort_swigregister(DeviceCommPort) - -class EventTypeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTypeInfo_swiginit(self, _mscl.new_EventTypeInfo(*args)) - type = property(_mscl.EventTypeInfo_type_get, _mscl.EventTypeInfo_type_set) - maxInstances = property(_mscl.EventTypeInfo_maxInstances_get, _mscl.EventTypeInfo_maxInstances_set) - __swig_destroy__ = _mscl.delete_EventTypeInfo - -# Register EventTypeInfo in _mscl: -_mscl.EventTypeInfo_swigregister(EventTypeInfo) - -class EventSupportInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - TRIGGERS = _mscl.EventSupportInfo_TRIGGERS - ACTIONS = _mscl.EventSupportInfo_ACTIONS - query = property(_mscl.EventSupportInfo_query_get, _mscl.EventSupportInfo_query_set) - maxInstances = property(_mscl.EventSupportInfo_maxInstances_get, _mscl.EventSupportInfo_maxInstances_set) - entries = property(_mscl.EventSupportInfo_entries_get, _mscl.EventSupportInfo_entries_set) - - def __init__(self): - _mscl.EventSupportInfo_swiginit(self, _mscl.new_EventSupportInfo()) - __swig_destroy__ = _mscl.delete_EventSupportInfo - -# Register EventSupportInfo in _mscl: -_mscl.EventSupportInfo_swigregister(EventSupportInfo) - -class SensorRange(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ALL = _mscl.SensorRange_ALL - ACCEL_G = _mscl.SensorRange_ACCEL_G - GYRO_DPS = _mscl.SensorRange_GYRO_DPS - MAG_GAUSS = _mscl.SensorRange_MAG_GAUSS - PRESSURE_HPA = _mscl.SensorRange_PRESSURE_HPA - - def __init__(self): - _mscl.SensorRange_swiginit(self, _mscl.new_SensorRange()) - - def type(self): - return _mscl.SensorRange_type(self) - - def range(self): - return _mscl.SensorRange_range(self) - - def id(self): - return _mscl.SensorRange_id(self) - __swig_destroy__ = _mscl.delete_SensorRange - -# Register SensorRange in _mscl: -_mscl.SensorRange_swigregister(SensorRange) - -class SupportedSensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.SupportedSensorRanges_swiginit(self, _mscl.new_SupportedSensorRanges()) - - def options(self): - return _mscl.SupportedSensorRanges_options(self) - - def lookupRecommended(self, type, range): - return _mscl.SupportedSensorRanges_lookupRecommended(self, type, range) - __swig_destroy__ = _mscl.delete_SupportedSensorRanges - -# Register SupportedSensorRanges in _mscl: -_mscl.SupportedSensorRanges_swigregister(SupportedSensorRanges) - -class InertialTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - PORTABLE_VEHICLE = _mscl.InertialTypes_PORTABLE_VEHICLE - AUTOMOTIVE_VEHICLE = _mscl.InertialTypes_AUTOMOTIVE_VEHICLE - AIRBORNE_VEHICLE = _mscl.InertialTypes_AIRBORNE_VEHICLE - AIRBORNE_HIGH_G_VEHICLE = _mscl.InertialTypes_AIRBORNE_HIGH_G_VEHICLE - GPS_PORTABLE = _mscl.InertialTypes_GPS_PORTABLE - GPS_STATIONARY = _mscl.InertialTypes_GPS_STATIONARY - GPS_PEDESTRIAN = _mscl.InertialTypes_GPS_PEDESTRIAN - GPS_AUTOMOTIVE = _mscl.InertialTypes_GPS_AUTOMOTIVE - GPS_SEA = _mscl.InertialTypes_GPS_SEA - GPS_AIRBORNE_1G = _mscl.InertialTypes_GPS_AIRBORNE_1G - GPS_AIRBORNE_2G = _mscl.InertialTypes_GPS_AIRBORNE_2G - GPS_AIRBORNE_4G = _mscl.InertialTypes_GPS_AIRBORNE_4G - RESET_ALL_AXIS = _mscl.InertialTypes_RESET_ALL_AXIS - TARE_ROLL_AXIS = _mscl.InertialTypes_TARE_ROLL_AXIS - TARE_PITCH_AXIS = _mscl.InertialTypes_TARE_PITCH_AXIS - TARE_YAW_AXIS = _mscl.InertialTypes_TARE_YAW_AXIS - INTERNAL_GNSS_ALL = _mscl.InertialTypes_INTERNAL_GNSS_ALL - EXTERNAL_GNSS = _mscl.InertialTypes_EXTERNAL_GNSS - INTERNAL_GNSS1 = _mscl.InertialTypes_INTERNAL_GNSS1 - INTERNAL_GNSS2 = _mscl.InertialTypes_INTERNAL_GNSS2 - FIX_SBAS_CORRECTIONS = _mscl.InertialTypes_FIX_SBAS_CORRECTIONS - FIX_DGNSS_CORRECTIONS = _mscl.InertialTypes_FIX_DGNSS_CORRECTIONS - FIXTYPE_3D = _mscl.InertialTypes_FIXTYPE_3D - FIXTYPE_2D = _mscl.InertialTypes_FIXTYPE_2D - FIXTYPE_TIMEONLY = _mscl.InertialTypes_FIXTYPE_TIMEONLY - FIXTYPE_NONE = _mscl.InertialTypes_FIXTYPE_NONE - FIXTYPE_INVALID = _mscl.InertialTypes_FIXTYPE_INVALID - FIXTYPE_RTK_FLOAT = _mscl.InertialTypes_FIXTYPE_RTK_FLOAT - FIXTYPE_RTK_FIXED = _mscl.InertialTypes_FIXTYPE_RTK_FIXED - FIXTYPE_DUAL_ANTENNA_NONE = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_NONE - FIXTYPE_DUAL_ANTENNA_FLOAT = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FLOAT - FIXTYPE_DUAL_ANTENNA_FIXED = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FIXED - DATA_VALID_REC_1 = _mscl.InertialTypes_DATA_VALID_REC_1 - DATA_VALID_REC_2 = _mscl.InertialTypes_DATA_VALID_REC_2 - ANTENNA_OFFSETS_VALID = _mscl.InertialTypes_ANTENNA_OFFSETS_VALID - SVFLAG_NAVIGATION = _mscl.InertialTypes_SVFLAG_NAVIGATION - SVFLAG_HEALTHY = _mscl.InertialTypes_SVFLAG_HEALTHY - DEVICE_AHRS = _mscl.InertialTypes_DEVICE_AHRS - DEVICE_GPS = _mscl.InertialTypes_DEVICE_GPS - ON_FULL_PERFORMANCE = _mscl.InertialTypes_ON_FULL_PERFORMANCE - ON_LOW_POWER = _mscl.InertialTypes_ON_LOW_POWER - SLEEP = _mscl.InertialTypes_SLEEP - OFF = _mscl.InertialTypes_OFF - STANDARD_MIP = _mscl.InertialTypes_STANDARD_MIP - WRAPPED_RAW = _mscl.InertialTypes_WRAPPED_RAW - SENSORSTATE_OFF = _mscl.InertialTypes_SENSORSTATE_OFF - SENSORSTATE_ON = _mscl.InertialTypes_SENSORSTATE_ON - SENSORSTATE_UNKNOWN = _mscl.InertialTypes_SENSORSTATE_UNKNOWN - ANTENNASTATE_INIT = _mscl.InertialTypes_ANTENNASTATE_INIT - ANTENNASTATE_SHORT = _mscl.InertialTypes_ANTENNASTATE_SHORT - ANTENNASTATE_OPEN = _mscl.InertialTypes_ANTENNASTATE_OPEN - ANTENNASTATE_GOOD = _mscl.InertialTypes_ANTENNASTATE_GOOD - ANTENNASTATE_UNKNOWN = _mscl.InertialTypes_ANTENNASTATE_UNKNOWN - ANTENNAPOWER_OFF = _mscl.InertialTypes_ANTENNAPOWER_OFF - ANTENNAPOWER_ON = _mscl.InertialTypes_ANTENNAPOWER_ON - ANTENNAPOWER_UNKNOWN = _mscl.InertialTypes_ANTENNAPOWER_UNKNOWN - FILTERSTATE_STARTUP = _mscl.InertialTypes_FILTERSTATE_STARTUP - FILTERSTATE_INIT = _mscl.InertialTypes_FILTERSTATE_INIT - FILTERSTATE_RUNNING_SLN_VALID = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_VALID - FILTERSTATE_RUNNING_SLN_ERROR = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_ERROR - FILTERSTATE_VERT_GYRO = _mscl.InertialTypes_FILTERSTATE_VERT_GYRO - FILTERSTATE_AHRS = _mscl.InertialTypes_FILTERSTATE_AHRS - FILTERSTATE_FULL_NAV = _mscl.InertialTypes_FILTERSTATE_FULL_NAV - FILTERSTATUS_IMU_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_IMU_UNAVAILABLE - FILTERSTATUS_GPS_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_GPS_UNAVAILABLE - FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC = _mscl.InertialTypes_FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC - FILTERSTATUS_POS_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_POS_COVARIANCE_HIGH_WARN - FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN - FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN - FILTERSTATUS_NAN_IN_SOLUTION = _mscl.InertialTypes_FILTERSTATUS_NAN_IN_SOLUTION - FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN - FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN - FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN - FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN - FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_CONDITION = _mscl.InertialTypes_FILTERSTATUS_CONDITION - FILTERSTATUS_ROLL_PITCH_WARNING = _mscl.InertialTypes_FILTERSTATUS_ROLL_PITCH_WARNING - FILTERSTATUS_HEADING_WARNING = _mscl.InertialTypes_FILTERSTATUS_HEADING_WARNING - FILTERSTATUS_POSITION_WARNING = _mscl.InertialTypes_FILTERSTATUS_POSITION_WARNING - FILTERSTATUS_VELOCITY_WARNING = _mscl.InertialTypes_FILTERSTATUS_VELOCITY_WARNING - FILTERSTATUS_IMU_BIAS_WARNING = _mscl.InertialTypes_FILTERSTATUS_IMU_BIAS_WARNING - FILTERSTATUS_GNSS_CLK_WARNING = _mscl.InertialTypes_FILTERSTATUS_GNSS_CLK_WARNING - FILTERSTATUS_ANT_LEVER_ARM_WARNING = _mscl.InertialTypes_FILTERSTATUS_ANT_LEVER_ARM_WARNING - FILTERSTATUS_MOUNTING_TRANSFORM_WARNING = _mscl.InertialTypes_FILTERSTATUS_MOUNTING_TRANSFORM_WARNING - FILTERSTATUS_ATT_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_ATT_NOT_INIT - FILTERSTATUS_POS_VEL_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_POS_VEL_NOT_INIT - STABLE = _mscl.InertialTypes_STABLE - CONVERGING = _mscl.InertialTypes_CONVERGING - UNSTABLE = _mscl.InertialTypes_UNSTABLE - DGNSSBASE_UDRE_SCALE_FACTOR_1_00 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_1_00 - DGNSSBASE_UDRE_SCALE_FACTOR_0_75 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_75 - DGNSSBASE_UDRE_SCALE_FACTOR_0_50 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_50 - DGNSSBASE_UDRE_SCALE_FACTOR_0_30 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_30 - DGNSSBASE_UDRE_SCALE_FACTOR_0_20 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_20 - DGNSSBASE_UDRE_SCALE_FACTOR_0_10 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_10 - DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED - DGNSSBASE_REFERENCE_STATION_NOT_WORKING = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_NOT_WORKING - HEADINGSOURCE_NONE = _mscl.InertialTypes_HEADINGSOURCE_NONE - HEADINGSOURCE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_MAGNETOMETER - HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR - HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD = _mscl.InertialTypes_HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD - HEADINGSOURCE_GNSS_DUAL_ANTENNA = _mscl.InertialTypes_HEADINGSOURCE_GNSS_DUAL_ANTENNA - ENABLE_NONE = _mscl.InertialTypes_ENABLE_NONE - ENABLE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_ENABLE_INTERNAL_MAGNETOMETER - ENABLE_INTERNAL_GNSS = _mscl.InertialTypes_ENABLE_INTERNAL_GNSS - ENABLE_EXTERNAL_MESSAGES = _mscl.InertialTypes_ENABLE_EXTERNAL_MESSAGES - ENABLE_MAGNETOMETER_AND_GNSS = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_GNSS - ENABLE_GNSS_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_GNSS_AND_EXTERNAL - ENABLE_MAGNETOMETER_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_EXTERNAL - ENABLE_ALL = _mscl.InertialTypes_ENABLE_ALL - ENABLE_GYRO_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_BIAS_ESTIMATION - ENABLE_ACCEL_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_BIAS_ESTIMATION - ENABLE_GYRO_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_SCALE_FACTOR_ESTIMATION - ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION - ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION = _mscl.InertialTypes_ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION - ENABLE_HARD_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_HARD_IRON_AUTO_CALIBRATION - ENABLE_SOFT_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_SOFT_IRON_AUTO_CALIBRATION - NONE = _mscl.InertialTypes_NONE - WORLD_MAGNETIC_MODEL = _mscl.InertialTypes_WORLD_MAGNETIC_MODEL - MANUAL = _mscl.InertialTypes_MANUAL - ADAPTIVE_MEASUREMENT_DISABLE = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_DISABLE - ADAPTIVE_MEASUREMENT_ENABLE_FIXED = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_FIXED - ADAPTIVE_MEASUREMENT_ENABLE_AUTO = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_AUTO - GNSS_POS_VEL_AIDING = _mscl.InertialTypes_GNSS_POS_VEL_AIDING - GNSS_HEADING_AIDING = _mscl.InertialTypes_GNSS_HEADING_AIDING - ALTIMETER_AIDING = _mscl.InertialTypes_ALTIMETER_AIDING - ODOMETER_AIDING = _mscl.InertialTypes_ODOMETER_AIDING - MAGNETOMETER_AIDING = _mscl.InertialTypes_MAGNETOMETER_AIDING - EXTERNAL_HEADING_AIDING = _mscl.InertialTypes_EXTERNAL_HEADING_AIDING - EXTERNAL_ALTIMETER_AIDING = _mscl.InertialTypes_EXTERNAL_ALTIMETER_AIDING - EXTERNAL_MAGNETOMETER_AIDING = _mscl.InertialTypes_EXTERNAL_MAGNETOMETER_AIDING - BODY_FRAME_VEL_AIDING = _mscl.InertialTypes_BODY_FRAME_VEL_AIDING - ALL_AIDING_MEASUREMENTS = _mscl.InertialTypes_ALL_AIDING_MEASUREMENTS - GPS = _mscl.InertialTypes_GPS - SBAS = _mscl.InertialTypes_SBAS - GALILEO = _mscl.InertialTypes_GALILEO - BEIDOU = _mscl.InertialTypes_BEIDOU - QZSS = _mscl.InertialTypes_QZSS - GLONASS = _mscl.InertialTypes_GLONASS - FILTERING_OFF = _mscl.InertialTypes_FILTERING_OFF - FILTERING_CONSERVATIVE = _mscl.InertialTypes_FILTERING_CONSERVATIVE - FILTERING_MODERATE = _mscl.InertialTypes_FILTERING_MODERATE - FILTERING_AGGRESSIVE = _mscl.InertialTypes_FILTERING_AGGRESSIVE - FACTORY_STREAMING_OVERWRITE = _mscl.InertialTypes_FACTORY_STREAMING_OVERWRITE - FACTORY_STREAMING_MERGE = _mscl.InertialTypes_FACTORY_STREAMING_MERGE - FACTORY_STREAMING_ADDITIVE = _mscl.InertialTypes_FACTORY_STREAMING_ADDITIVE - PPS_DISABLED = _mscl.InertialTypes_PPS_DISABLED - PPS_RECEIVER_1 = _mscl.InertialTypes_PPS_RECEIVER_1 - PPS_RECEIVER_2 = _mscl.InertialTypes_PPS_RECEIVER_2 - PPS_GPIO = _mscl.InertialTypes_PPS_GPIO - PPS_GENERATED = _mscl.InertialTypes_PPS_GENERATED - GNSS_AIDING_TIGHT_COUPLING = _mscl.InertialTypes_GNSS_AIDING_TIGHT_COUPLING - GNSS_AIDING_DIFFERENTIAL = _mscl.InertialTypes_GNSS_AIDING_DIFFERENTIAL - GNSS_AIDING_INTEGER_FIX = _mscl.InertialTypes_GNSS_AIDING_INTEGER_FIX - GNSS_AIDING_GPS = _mscl.InertialTypes_GNSS_AIDING_GPS - GNSS_AIDING_GLONASS = _mscl.InertialTypes_GNSS_AIDING_GLONASS - GNSS_AIDING_GALILEO = _mscl.InertialTypes_GNSS_AIDING_GALILEO - GNSS_AIDING_BEIDOU = _mscl.InertialTypes_GNSS_AIDING_BEIDOU - GNSS_AIDING_NO_FIX = _mscl.InertialTypes_GNSS_AIDING_NO_FIX - GNSS_AIDING_CONFIG_ERROR = _mscl.InertialTypes_GNSS_AIDING_CONFIG_ERROR - AIDING_MEASUREMENT_ENABLED = _mscl.InertialTypes_AIDING_MEASUREMENT_ENABLED - AIDING_MEASUREMENT_USED = _mscl.InertialTypes_AIDING_MEASUREMENT_USED - AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH - AIDING_MEASUREMENT_WARNING_SAMPLE_TIME = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_SAMPLE_TIME - AIDING_MEASUREMENT_CONFIG_ERROR = _mscl.InertialTypes_AIDING_MEASUREMENT_CONFIG_ERROR - AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED = _mscl.InertialTypes_AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED - RTK_CORRECTION_ANTENNA_POS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_POS_RECEIVED - RTK_CORRECTION_ANTENNA_DESC_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_DESC_RECEIVED - RTK_CORRECTION_GPS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GPS_RECEIVED - RTK_CORRECTION_GLONASS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GLONASS_RECEIVED - RTK_CORRECTION_GALILEO_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GALILEO_RECEIVED - RTK_CORRECTION_BEIDOU_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_BEIDOU_RECEIVED - RTK_CORRECTION_USING_GPS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GPS_MSM - RTK_CORRECTION_USING_GLONASS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GLONASS_MSM - SIGNAL_QUALITY_NONE = _mscl.InertialTypes_SIGNAL_QUALITY_NONE - SIGNAL_QUALITY_SEARCHING = _mscl.InertialTypes_SIGNAL_QUALITY_SEARCHING - SIGNAL_QUALITY_ACQUIRED = _mscl.InertialTypes_SIGNAL_QUALITY_ACQUIRED - SIGNAL_QUALITY_UNUSABLE = _mscl.InertialTypes_SIGNAL_QUALITY_UNUSABLE - SIGNAL_QUALITY_TIME_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_TIME_LOCKED - SIGNAL_QUALITY_FULLY_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_FULLY_LOCKED - OVERRANGE_ACCEL_X = _mscl.InertialTypes_OVERRANGE_ACCEL_X - OVERRANGE_ACCEL_Y = _mscl.InertialTypes_OVERRANGE_ACCEL_Y - OVERRANGE_ACCEL_Z = _mscl.InertialTypes_OVERRANGE_ACCEL_Z - OVERRANGE_GYRO_X = _mscl.InertialTypes_OVERRANGE_GYRO_X - OVERRANGE_GYRO_Y = _mscl.InertialTypes_OVERRANGE_GYRO_Y - OVERRANGE_GYRO_Z = _mscl.InertialTypes_OVERRANGE_GYRO_Z - OVERRANGE_MAG_X = _mscl.InertialTypes_OVERRANGE_MAG_X - OVERRANGE_MAG_Y = _mscl.InertialTypes_OVERRANGE_MAG_Y - OVERRANGE_MAG_Z = _mscl.InertialTypes_OVERRANGE_MAG_Z - OVERRANGE_PRESSURE = _mscl.InertialTypes_OVERRANGE_PRESSURE - UNKNOWN_SBAS_SYSTEM = _mscl.InertialTypes_UNKNOWN_SBAS_SYSTEM - WAAS = _mscl.InertialTypes_WAAS - EGNOS = _mscl.InertialTypes_EGNOS - MSAS = _mscl.InertialTypes_MSAS - GAGAN = _mscl.InertialTypes_GAGAN - SBAS_INFO_RANGE_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_RANGE_AVAILABLE - SBAS_INFO_CORRECTIONS_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_CORRECTIONS_AVAILABLE - SBAS_INFO_INTEGRITY_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_INTEGRITY_AVAILABLE - SBAS_INFO_TEST = _mscl.InertialTypes_SBAS_INFO_TEST - JAMMING_STATE_UNKNOWN = _mscl.InertialTypes_JAMMING_STATE_UNKNOWN - JAMMING_STATE_NONE = _mscl.InertialTypes_JAMMING_STATE_NONE - JAMMING_STATE_PARTIAL = _mscl.InertialTypes_JAMMING_STATE_PARTIAL - JAMMING_STATE_SIGNIFICANT = _mscl.InertialTypes_JAMMING_STATE_SIGNIFICANT - SPOOFING_STATE_UNKNOWN = _mscl.InertialTypes_SPOOFING_STATE_UNKNOWN - SPOOFING_STATE_NONE = _mscl.InertialTypes_SPOOFING_STATE_NONE - SPOOFING_STATE_PARTIAL = _mscl.InertialTypes_SPOOFING_STATE_PARTIAL - SPOOFING_STATE_SIGNIFICANT = _mscl.InertialTypes_SPOOFING_STATE_SIGNIFICANT - - def __init__(self): - _mscl.InertialTypes_swiginit(self, _mscl.new_InertialTypes()) - __swig_destroy__ = _mscl.delete_InertialTypes - -# Register InertialTypes in _mscl: -_mscl.InertialTypes_swigregister(InertialTypes) - -class NmeaMessageFormat(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_MESSAGES = _mscl.NmeaMessageFormat_MAX_MESSAGES - GGA = _mscl.NmeaMessageFormat_GGA - GLL = _mscl.NmeaMessageFormat_GLL - GSV = _mscl.NmeaMessageFormat_GSV - RMC = _mscl.NmeaMessageFormat_RMC - VTG = _mscl.NmeaMessageFormat_VTG - HDT = _mscl.NmeaMessageFormat_HDT - ZDA = _mscl.NmeaMessageFormat_ZDA - MSRA = _mscl.NmeaMessageFormat_MSRA - MSRR = _mscl.NmeaMessageFormat_MSRR - IGNORED = _mscl.NmeaMessageFormat_IGNORED - GNSS = _mscl.NmeaMessageFormat_GNSS - GPS = _mscl.NmeaMessageFormat_GPS - GALILEO = _mscl.NmeaMessageFormat_GALILEO - GLONASS = _mscl.NmeaMessageFormat_GLONASS - - def __init__(self): - _mscl.NmeaMessageFormat_swiginit(self, _mscl.new_NmeaMessageFormat()) - __swig_destroy__ = _mscl.delete_NmeaMessageFormat - - def sentenceType(self, *args): - return _mscl.NmeaMessageFormat_sentenceType(self, *args) - - def talkerId(self, *args): - return _mscl.NmeaMessageFormat_talkerId(self, *args) - - def sourceDataClass(self, *args): - return _mscl.NmeaMessageFormat_sourceDataClass(self, *args) - - def sampleRate(self, *args): - return _mscl.NmeaMessageFormat_sampleRate(self, *args) - - @staticmethod - def talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - - @staticmethod - def dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - - @staticmethod - def supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - - @staticmethod - def toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -# Register NmeaMessageFormat in _mscl: -_mscl.NmeaMessageFormat_swigregister(NmeaMessageFormat) -NmeaMessageFormat.MAX_FREQUENCY = _mscl.cvar.NmeaMessageFormat_MAX_FREQUENCY - -def NmeaMessageFormat_talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - -def NmeaMessageFormat_dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - -def NmeaMessageFormat_supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - -def NmeaMessageFormat_toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -class Matrix_3x3(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Matrix_3x3_swiginit(self, _mscl.new_Matrix_3x3(*args)) - __swig_destroy__ = _mscl.delete_Matrix_3x3 - - def set(self, row, col, value): - return _mscl.Matrix_3x3_set(self, row, col, value) - - def at(self, row, col): - return _mscl.Matrix_3x3_at(self, row, col) - - def __str__(self): - return _mscl.Matrix_3x3___str__(self) - - def asMipFieldValues(self): - return _mscl.Matrix_3x3_asMipFieldValues(self) - -# Register Matrix_3x3 in _mscl: -_mscl.Matrix_3x3_swigregister(Matrix_3x3) - -class TimeUpdate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, timeOfWeek, weekNumber, timeAccuracy=0): - _mscl.TimeUpdate_swiginit(self, _mscl.new_TimeUpdate(timeOfWeek, weekNumber, timeAccuracy)) - __swig_destroy__ = _mscl.delete_TimeUpdate - - def timeOfWeek(self): - return _mscl.TimeUpdate_timeOfWeek(self) - - def weekNumber(self): - return _mscl.TimeUpdate_weekNumber(self) - - def timeAccuracy(self): - return _mscl.TimeUpdate_timeAccuracy(self) - -# Register TimeUpdate in _mscl: -_mscl.TimeUpdate_swigregister(TimeUpdate) - -class ZUPTSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, enable, threshold): - _mscl.ZUPTSettingsData_swiginit(self, _mscl.new_ZUPTSettingsData(enable, threshold)) - enabled = property(_mscl.ZUPTSettingsData_enabled_get, _mscl.ZUPTSettingsData_enabled_set) - threshold = property(_mscl.ZUPTSettingsData_threshold_get, _mscl.ZUPTSettingsData_threshold_set) - __swig_destroy__ = _mscl.delete_ZUPTSettingsData - -# Register ZUPTSettingsData in _mscl: -_mscl.ZUPTSettingsData_swigregister(ZUPTSettingsData) - -class FixedReferencePositionData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.FixedReferencePositionData_swiginit(self, _mscl.new_FixedReferencePositionData(*args)) - enable = property(_mscl.FixedReferencePositionData_enable_get, _mscl.FixedReferencePositionData_enable_set) - referencePosition = property(_mscl.FixedReferencePositionData_referencePosition_get, _mscl.FixedReferencePositionData_referencePosition_set) - __swig_destroy__ = _mscl.delete_FixedReferencePositionData - -# Register FixedReferencePositionData in _mscl: -_mscl.FixedReferencePositionData_swigregister(FixedReferencePositionData) - -class SBASSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enableSBAS = property(_mscl.SBASSettingsData_enableSBAS_get, _mscl.SBASSettingsData_enableSBAS_set) - enableRanging = property(_mscl.SBASSettingsData_enableRanging_get, _mscl.SBASSettingsData_enableRanging_set) - enableCorrectionData = property(_mscl.SBASSettingsData_enableCorrectionData_get, _mscl.SBASSettingsData_enableCorrectionData_set) - applyIntegrityInfo = property(_mscl.SBASSettingsData_applyIntegrityInfo_get, _mscl.SBASSettingsData_applyIntegrityInfo_set) - satellitePRNs = property(_mscl.SBASSettingsData_satellitePRNs_get, _mscl.SBASSettingsData_satellitePRNs_set) - - def __init__(self): - _mscl.SBASSettingsData_swiginit(self, _mscl.new_SBASSettingsData()) - __swig_destroy__ = _mscl.delete_SBASSettingsData - -# Register SBASSettingsData in _mscl: -_mscl.SBASSettingsData_swigregister(SBASSettingsData) - -class Constellation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - constellationID = property(_mscl.Constellation_constellationID_get, _mscl.Constellation_constellationID_set) - enabled = property(_mscl.Constellation_enabled_get, _mscl.Constellation_enabled_set) - reservedChannelCount = property(_mscl.Constellation_reservedChannelCount_get, _mscl.Constellation_reservedChannelCount_set) - maxChannels = property(_mscl.Constellation_maxChannels_get, _mscl.Constellation_maxChannels_set) - enableL1SAIF = property(_mscl.Constellation_enableL1SAIF_get, _mscl.Constellation_enableL1SAIF_set) - - def __init__(self): - _mscl.Constellation_swiginit(self, _mscl.new_Constellation()) - __swig_destroy__ = _mscl.delete_Constellation - -# Register Constellation in _mscl: -_mscl.Constellation_swigregister(Constellation) - -class ConstellationSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - maxChannelsAvailable = property(_mscl.ConstellationSettingsData_maxChannelsAvailable_get, _mscl.ConstellationSettingsData_maxChannelsAvailable_set) - maxChannelsToUse = property(_mscl.ConstellationSettingsData_maxChannelsToUse_get, _mscl.ConstellationSettingsData_maxChannelsToUse_set) - constellations = property(_mscl.ConstellationSettingsData_constellations_get, _mscl.ConstellationSettingsData_constellations_set) - - def __init__(self): - _mscl.ConstellationSettingsData_swiginit(self, _mscl.new_ConstellationSettingsData()) - __swig_destroy__ = _mscl.delete_ConstellationSettingsData - -# Register ConstellationSettingsData in _mscl: -_mscl.ConstellationSettingsData_swigregister(ConstellationSettingsData) - -class LowPassFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SET_TO_HALF_REPORTING_RATE = _mscl.LowPassFilterData_SET_TO_HALF_REPORTING_RATE - USER_SPECIFIED_CUTOFF_FREQ = _mscl.LowPassFilterData_USER_SPECIFIED_CUTOFF_FREQ - - def __init__(self, *args): - _mscl.LowPassFilterData_swiginit(self, _mscl.new_LowPassFilterData(*args)) - dataDescriptor = property(_mscl.LowPassFilterData_dataDescriptor_get, _mscl.LowPassFilterData_dataDescriptor_set) - manualFilterBandwidthConfig = property(_mscl.LowPassFilterData_manualFilterBandwidthConfig_get, _mscl.LowPassFilterData_manualFilterBandwidthConfig_set) - applyLowPassFilter = property(_mscl.LowPassFilterData_applyLowPassFilter_get, _mscl.LowPassFilterData_applyLowPassFilter_set) - cutoffFrequency = property(_mscl.LowPassFilterData_cutoffFrequency_get, _mscl.LowPassFilterData_cutoffFrequency_set) - - @staticmethod - def getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - - @staticmethod - def getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - __swig_destroy__ = _mscl.delete_LowPassFilterData - -# Register LowPassFilterData in _mscl: -_mscl.LowPassFilterData_swigregister(LowPassFilterData) - -def LowPassFilterData_getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - -def LowPassFilterData_getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - -class ComplementaryFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ComplementaryFilterData_swiginit(self, _mscl.new_ComplementaryFilterData()) - upCompensationEnabled = property(_mscl.ComplementaryFilterData_upCompensationEnabled_get, _mscl.ComplementaryFilterData_upCompensationEnabled_set) - upCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_upCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_upCompensationTimeInSeconds_set) - northCompensationEnabled = property(_mscl.ComplementaryFilterData_northCompensationEnabled_get, _mscl.ComplementaryFilterData_northCompensationEnabled_set) - northCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_northCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_northCompensationTimeInSeconds_set) - __swig_destroy__ = _mscl.delete_ComplementaryFilterData - -# Register ComplementaryFilterData in _mscl: -_mscl.ComplementaryFilterData_swigregister(ComplementaryFilterData) - -class PpsPulseInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PpsPulseInfo_swiginit(self, _mscl.new_PpsPulseInfo()) - count = property(_mscl.PpsPulseInfo_count_get, _mscl.PpsPulseInfo_count_set) - lastTimeinMS = property(_mscl.PpsPulseInfo_lastTimeinMS_get, _mscl.PpsPulseInfo_lastTimeinMS_set) - __swig_destroy__ = _mscl.delete_PpsPulseInfo - -# Register PpsPulseInfo in _mscl: -_mscl.PpsPulseInfo_swigregister(PpsPulseInfo) - -class StreamInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.StreamInfo_swiginit(self, _mscl.new_StreamInfo()) - enabled = property(_mscl.StreamInfo_enabled_get, _mscl.StreamInfo_enabled_set) - outgoingPacketsDropped = property(_mscl.StreamInfo_outgoingPacketsDropped_get, _mscl.StreamInfo_outgoingPacketsDropped_set) - __swig_destroy__ = _mscl.delete_StreamInfo - -# Register StreamInfo in _mscl: -_mscl.StreamInfo_swigregister(StreamInfo) - -class DeviceMessageInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.DeviceMessageInfo_swiginit(self, _mscl.new_DeviceMessageInfo()) - messageParsingErrors = property(_mscl.DeviceMessageInfo_messageParsingErrors_get, _mscl.DeviceMessageInfo_messageParsingErrors_set) - messagesRead = property(_mscl.DeviceMessageInfo_messagesRead_get, _mscl.DeviceMessageInfo_messagesRead_set) - lastMessageReadinMS = property(_mscl.DeviceMessageInfo_lastMessageReadinMS_get, _mscl.DeviceMessageInfo_lastMessageReadinMS_set) - __swig_destroy__ = _mscl.delete_DeviceMessageInfo - -# Register DeviceMessageInfo in _mscl: -_mscl.DeviceMessageInfo_swigregister(DeviceMessageInfo) - -class PortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PortInfo_swiginit(self, _mscl.new_PortInfo()) - bytesWritten = property(_mscl.PortInfo_bytesWritten_get, _mscl.PortInfo_bytesWritten_set) - bytesRead = property(_mscl.PortInfo_bytesRead_get, _mscl.PortInfo_bytesRead_set) - overrunsOnWrite = property(_mscl.PortInfo_overrunsOnWrite_get, _mscl.PortInfo_overrunsOnWrite_set) - overrunsOnRead = property(_mscl.PortInfo_overrunsOnRead_get, _mscl.PortInfo_overrunsOnRead_set) - __swig_destroy__ = _mscl.delete_PortInfo - -# Register PortInfo in _mscl: -_mscl.PortInfo_swigregister(PortInfo) - -class TemperatureInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.TemperatureInfo_swiginit(self, _mscl.new_TemperatureInfo()) - onBoardTemp = property(_mscl.TemperatureInfo_onBoardTemp_get, _mscl.TemperatureInfo_onBoardTemp_set) - lastReadInMS = property(_mscl.TemperatureInfo_lastReadInMS_get, _mscl.TemperatureInfo_lastReadInMS_set) - error = property(_mscl.TemperatureInfo_error_get, _mscl.TemperatureInfo_error_set) - __swig_destroy__ = _mscl.delete_TemperatureInfo - -# Register TemperatureInfo in _mscl: -_mscl.TemperatureInfo_swigregister(TemperatureInfo) - -ModelNumber = _mscl.ModelNumber -StatusStructure_Value = _mscl.StatusStructure_Value -SystemState_Value = _mscl.SystemState_Value -gnss1PpsPulseInfo_Count = _mscl.gnss1PpsPulseInfo_Count -gnss1PpsPulseInfo_LastTimeinMS = _mscl.gnss1PpsPulseInfo_LastTimeinMS -GnssPowerStateOn = _mscl.GnssPowerStateOn -ImuStreamInfo_Enabled = _mscl.ImuStreamInfo_Enabled -ImuStreamInfo_PacketsDropped = _mscl.ImuStreamInfo_PacketsDropped -GnssStreamInfo_Enabled = _mscl.GnssStreamInfo_Enabled -GnssStreamInfo_PacketsDropped = _mscl.GnssStreamInfo_PacketsDropped -EstimationFilterStreamInfo_Enabled = _mscl.EstimationFilterStreamInfo_Enabled -EstimationFilterStreamInfo_PacketsDropped = _mscl.EstimationFilterStreamInfo_PacketsDropped -ComPortInfo_BytesRead = _mscl.ComPortInfo_BytesRead -ComPortInfo_BytesWritten = _mscl.ComPortInfo_BytesWritten -ComPortInfo_OverrunsOnRead = _mscl.ComPortInfo_OverrunsOnRead -ComPortInfo_OverrunsOnWrite = _mscl.ComPortInfo_OverrunsOnWrite -ImuMessageInfo_LastMessageReadinMS = _mscl.ImuMessageInfo_LastMessageReadinMS -ImuMessageInfo_MessageParsingErrors = _mscl.ImuMessageInfo_MessageParsingErrors -ImuMessageInfo_MessagesRead = _mscl.ImuMessageInfo_MessagesRead -GnssMessageInfo_LastMessageReadinMS = _mscl.GnssMessageInfo_LastMessageReadinMS -GnssMessageInfo_MessageParsingErrors = _mscl.GnssMessageInfo_MessageParsingErrors -GnssMessageInfo_MessagesRead = _mscl.GnssMessageInfo_MessagesRead -TemperatureInfo_Error = _mscl.TemperatureInfo_Error -TemperatureInfo_LastReadInMS = _mscl.TemperatureInfo_LastReadInMS -TemperatureInfo_OnBoardTemp = _mscl.TemperatureInfo_OnBoardTemp -PowerState = _mscl.PowerState -GyroRange = _mscl.GyroRange -AccelRange = _mscl.AccelRange -HasMagnetometer = _mscl.HasMagnetometer -HasPressure = _mscl.HasPressure -class DeviceStatusData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_BASIC_STATUS_STRUCTURE - DIAGNOSTIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_DIAGNOSTIC_STATUS_STRUCTURE - SYSTEM_INITIALIZATION = _mscl.DeviceStatusData_SYSTEM_INITIALIZATION - SYSTEM_STARTUP = _mscl.DeviceStatusData_SYSTEM_STARTUP - SYSTEM_RUNNING = _mscl.DeviceStatusData_SYSTEM_RUNNING - - def __init__(self): - _mscl.DeviceStatusData_swiginit(self, _mscl.new_DeviceStatusData()) - modelNumber = property(_mscl.DeviceStatusData_modelNumber_get, _mscl.DeviceStatusData_modelNumber_set) - statusStructure = property(_mscl.DeviceStatusData_statusStructure_get, _mscl.DeviceStatusData_statusStructure_set) - systemTimerInMS = property(_mscl.DeviceStatusData_systemTimerInMS_get, _mscl.DeviceStatusData_systemTimerInMS_set) - - def systemState(self, *args): - return _mscl.DeviceStatusData_systemState(self, *args) - - def gnssPowerStateOn(self, *args): - return _mscl.DeviceStatusData_gnssPowerStateOn(self, *args) - - def gnss1PpsPulseInfo(self, *args): - return _mscl.DeviceStatusData_gnss1PpsPulseInfo(self, *args) - - def imuStreamInfo(self, *args): - return _mscl.DeviceStatusData_imuStreamInfo(self, *args) - - def gnssStreamInfo(self, *args): - return _mscl.DeviceStatusData_gnssStreamInfo(self, *args) - - def estimationFilterStreamInfo(self, *args): - return _mscl.DeviceStatusData_estimationFilterStreamInfo(self, *args) - - def imuMessageInfo(self, *args): - return _mscl.DeviceStatusData_imuMessageInfo(self, *args) - - def gnssMessageInfo(self, *args): - return _mscl.DeviceStatusData_gnssMessageInfo(self, *args) - - def comPortInfo(self, *args): - return _mscl.DeviceStatusData_comPortInfo(self, *args) - - def usbPortInfo(self, *args): - return _mscl.DeviceStatusData_usbPortInfo(self, *args) - - def hasMagnetometer(self, *args): - return _mscl.DeviceStatusData_hasMagnetometer(self, *args) - - def magnetometerInitializationFailed(self, *args): - return _mscl.DeviceStatusData_magnetometerInitializationFailed(self, *args) - - def hasPressure(self, *args): - return _mscl.DeviceStatusData_hasPressure(self, *args) - - def pressureInitializationFailed(self, *args): - return _mscl.DeviceStatusData_pressureInitializationFailed(self, *args) - - def gnssReceiverInitializationFailed(self, *args): - return _mscl.DeviceStatusData_gnssReceiverInitializationFailed(self, *args) - - def coldStartOnPowerOn(self, *args): - return _mscl.DeviceStatusData_coldStartOnPowerOn(self, *args) - - def temperatureInfo(self, *args): - return _mscl.DeviceStatusData_temperatureInfo(self, *args) - - def powerState(self, *args): - return _mscl.DeviceStatusData_powerState(self, *args) - - def gyroRange(self, *args): - return _mscl.DeviceStatusData_gyroRange(self, *args) - - def accelRange(self, *args): - return _mscl.DeviceStatusData_accelRange(self, *args) - - def asMap(self): - return _mscl.DeviceStatusData_asMap(self) - - def asValueMap(self): - return _mscl.DeviceStatusData_asValueMap(self) - __swig_destroy__ = _mscl.delete_DeviceStatusData - -# Register DeviceStatusData in _mscl: -_mscl.DeviceStatusData_swigregister(DeviceStatusData) - -class ExternalGNSSUpdateData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - gpsTimeOfWeek = property(_mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_get, _mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_set) - gpsWeekNumber = property(_mscl.ExternalGNSSUpdateData_gpsWeekNumber_get, _mscl.ExternalGNSSUpdateData_gpsWeekNumber_set) - lattitude = property(_mscl.ExternalGNSSUpdateData_lattitude_get, _mscl.ExternalGNSSUpdateData_lattitude_set) - longitude = property(_mscl.ExternalGNSSUpdateData_longitude_get, _mscl.ExternalGNSSUpdateData_longitude_set) - altitudeAboveWGS84Ellipsoid = property(_mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_get, _mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_set) - northVelocity = property(_mscl.ExternalGNSSUpdateData_northVelocity_get, _mscl.ExternalGNSSUpdateData_northVelocity_set) - eastVelocity = property(_mscl.ExternalGNSSUpdateData_eastVelocity_get, _mscl.ExternalGNSSUpdateData_eastVelocity_set) - downVelocity = property(_mscl.ExternalGNSSUpdateData_downVelocity_get, _mscl.ExternalGNSSUpdateData_downVelocity_set) - northPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_northPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_northPositionUncertainty_set) - eastPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_eastPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_eastPositionUncertainty_set) - downPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_downPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_downPositionUncertainty_set) - northVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_northVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_northVelocityUncertainty_set) - eastVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_set) - downVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_downVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_downVelocityUncertainty_set) - - def __init__(self): - _mscl.ExternalGNSSUpdateData_swiginit(self, _mscl.new_ExternalGNSSUpdateData()) - __swig_destroy__ = _mscl.delete_ExternalGNSSUpdateData - -# Register ExternalGNSSUpdateData in _mscl: -_mscl.ExternalGNSSUpdateData_swigregister(ExternalGNSSUpdateData) - -class HeadingUpdateOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsOptionId(self): - return _mscl.HeadingUpdateOptions_AsOptionId(self) - - def __init__(self, *args): - _mscl.HeadingUpdateOptions_swiginit(self, _mscl.new_HeadingUpdateOptions(*args)) - useInternalMagnetometer = property(_mscl.HeadingUpdateOptions_useInternalMagnetometer_get, _mscl.HeadingUpdateOptions_useInternalMagnetometer_set) - useInternalGNSSVelocityVector = property(_mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_get, _mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_set) - useExternalHeadingMessages = property(_mscl.HeadingUpdateOptions_useExternalHeadingMessages_get, _mscl.HeadingUpdateOptions_useExternalHeadingMessages_set) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptions - -# Register HeadingUpdateOptions in _mscl: -_mscl.HeadingUpdateOptions_swigregister(HeadingUpdateOptions) - -Automatic = _mscl.Automatic -UserSpecified_Heading = _mscl.UserSpecified_Heading -UserSpecified_Attitude = _mscl.UserSpecified_Attitude -UserSpecified_All = _mscl.UserSpecified_All -GNSS_DualAntenna = _mscl.GNSS_DualAntenna -GNSS_Kinematic = _mscl.GNSS_Kinematic -Magnetometer = _mscl.Magnetometer -External = _mscl.External -class HeadingAlignmentMethod(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.HeadingAlignmentMethod_swiginit(self, _mscl.new_HeadingAlignmentMethod(*args)) - value = property(_mscl.HeadingAlignmentMethod_value_get, _mscl.HeadingAlignmentMethod_value_set) - - def select(self, option): - return _mscl.HeadingAlignmentMethod_select(self, option) - - def deselect(self, option): - return _mscl.HeadingAlignmentMethod_deselect(self, option) - - def selected(self, option): - return _mscl.HeadingAlignmentMethod_selected(self, option) - __swig_destroy__ = _mscl.delete_HeadingAlignmentMethod - -# Register HeadingAlignmentMethod in _mscl: -_mscl.HeadingAlignmentMethod_swigregister(HeadingAlignmentMethod) - -class FilterInitializationValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FilterInitializationValues_swiginit(self, _mscl.new_FilterInitializationValues()) - autoInitialize = property(_mscl.FilterInitializationValues_autoInitialize_get, _mscl.FilterInitializationValues_autoInitialize_set) - initialValuesSource = property(_mscl.FilterInitializationValues_initialValuesSource_get, _mscl.FilterInitializationValues_initialValuesSource_set) - autoHeadingAlignmentMethod = property(_mscl.FilterInitializationValues_autoHeadingAlignmentMethod_get, _mscl.FilterInitializationValues_autoHeadingAlignmentMethod_set) - initialAttitude = property(_mscl.FilterInitializationValues_initialAttitude_get, _mscl.FilterInitializationValues_initialAttitude_set) - initialPosition = property(_mscl.FilterInitializationValues_initialPosition_get, _mscl.FilterInitializationValues_initialPosition_set) - initialVelocity = property(_mscl.FilterInitializationValues_initialVelocity_get, _mscl.FilterInitializationValues_initialVelocity_set) - referenceFrame = property(_mscl.FilterInitializationValues_referenceFrame_get, _mscl.FilterInitializationValues_referenceFrame_set) - - def manualHeading(self): - return _mscl.FilterInitializationValues_manualHeading(self) - - def manualAttitude(self): - return _mscl.FilterInitializationValues_manualAttitude(self) - - def manualPositionVelocity(self): - return _mscl.FilterInitializationValues_manualPositionVelocity(self) - __swig_destroy__ = _mscl.delete_FilterInitializationValues - -# Register FilterInitializationValues in _mscl: -_mscl.FilterInitializationValues_swigregister(FilterInitializationValues) - -class TareAxisValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def asUint8(self): - return _mscl.TareAxisValues_asUint8(self) - - def __init__(self, tareRollAxis, tarePitchAxis, tareYawAxis): - _mscl.TareAxisValues_swiginit(self, _mscl.new_TareAxisValues(tareRollAxis, tarePitchAxis, tareYawAxis)) - tareRollAxis = property(_mscl.TareAxisValues_tareRollAxis_get, _mscl.TareAxisValues_tareRollAxis_set) - tarePitchAxis = property(_mscl.TareAxisValues_tarePitchAxis_get, _mscl.TareAxisValues_tarePitchAxis_set) - tareYawAxis = property(_mscl.TareAxisValues_tareYawAxis_get, _mscl.TareAxisValues_tareYawAxis_set) - __swig_destroy__ = _mscl.delete_TareAxisValues - -# Register TareAxisValues in _mscl: -_mscl.TareAxisValues_swigregister(TareAxisValues) - -class GeographicSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeographicSourceOptions_swiginit(self, _mscl.new_GeographicSourceOptions(*args)) - source = property(_mscl.GeographicSourceOptions_source_get, _mscl.GeographicSourceOptions_source_set) - manual = property(_mscl.GeographicSourceOptions_manual_get, _mscl.GeographicSourceOptions_manual_set) - __swig_destroy__ = _mscl.delete_GeographicSourceOptions - -# Register GeographicSourceOptions in _mscl: -_mscl.GeographicSourceOptions_swigregister(GeographicSourceOptions) - -class EstimationControlOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsUint16(self): - return _mscl.EstimationControlOptions_AsUint16(self) - - def __init__(self, *args): - _mscl.EstimationControlOptions_swiginit(self, _mscl.new_EstimationControlOptions(*args)) - enableGyroBiasEstimation = property(_mscl.EstimationControlOptions_enableGyroBiasEstimation_get, _mscl.EstimationControlOptions_enableGyroBiasEstimation_set) - enableAccelBiasEstimation = property(_mscl.EstimationControlOptions_enableAccelBiasEstimation_get, _mscl.EstimationControlOptions_enableAccelBiasEstimation_set) - enableGyroScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_set) - enableAccelScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_set) - enableGNSSAntennaOffsetEstimation = property(_mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_get, _mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_set) - enableHardIronAutoCalibration = property(_mscl.EstimationControlOptions_enableHardIronAutoCalibration_get, _mscl.EstimationControlOptions_enableHardIronAutoCalibration_set) - enableSoftIronAutoCalibration = property(_mscl.EstimationControlOptions_enableSoftIronAutoCalibration_get, _mscl.EstimationControlOptions_enableSoftIronAutoCalibration_set) - __swig_destroy__ = _mscl.delete_EstimationControlOptions - -# Register EstimationControlOptions in _mscl: -_mscl.EstimationControlOptions_swigregister(EstimationControlOptions) - -class HeadingData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HeadingData_swiginit(self, _mscl.new_HeadingData()) - TRUE_HEADING = _mscl.HeadingData_TRUE_HEADING - MAGNETIC_HEADING = _mscl.HeadingData_MAGNETIC_HEADING - heading = property(_mscl.HeadingData_heading_get, _mscl.HeadingData_heading_set) - headingAngle = property(_mscl.HeadingData_headingAngle_get, _mscl.HeadingData_headingAngle_set) - headingAngleUncertainty = property(_mscl.HeadingData_headingAngleUncertainty_get, _mscl.HeadingData_headingAngleUncertainty_set) - __swig_destroy__ = _mscl.delete_HeadingData - -# Register HeadingData in _mscl: -_mscl.HeadingData_swigregister(HeadingData) - -class AdaptiveMeasurementData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AdaptiveMeasurementData_swiginit(self, _mscl.new_AdaptiveMeasurementData()) - mode = property(_mscl.AdaptiveMeasurementData_mode_get, _mscl.AdaptiveMeasurementData_mode_set) - lowPassFilterCutoff = property(_mscl.AdaptiveMeasurementData_lowPassFilterCutoff_get, _mscl.AdaptiveMeasurementData_lowPassFilterCutoff_set) - lowLimit = property(_mscl.AdaptiveMeasurementData_lowLimit_get, _mscl.AdaptiveMeasurementData_lowLimit_set) - highLimit = property(_mscl.AdaptiveMeasurementData_highLimit_get, _mscl.AdaptiveMeasurementData_highLimit_set) - lowLimitUncertainty = property(_mscl.AdaptiveMeasurementData_lowLimitUncertainty_get, _mscl.AdaptiveMeasurementData_lowLimitUncertainty_set) - highLimitUncertainty = property(_mscl.AdaptiveMeasurementData_highLimitUncertainty_get, _mscl.AdaptiveMeasurementData_highLimitUncertainty_set) - minUncertainty = property(_mscl.AdaptiveMeasurementData_minUncertainty_get, _mscl.AdaptiveMeasurementData_minUncertainty_set) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementData - -# Register AdaptiveMeasurementData in _mscl: -_mscl.AdaptiveMeasurementData_swigregister(AdaptiveMeasurementData) - -class AutoAdaptiveFilterOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AutoAdaptiveFilterOptions_swiginit(self, _mscl.new_AutoAdaptiveFilterOptions(*args)) - level = property(_mscl.AutoAdaptiveFilterOptions_level_get, _mscl.AutoAdaptiveFilterOptions_level_set) - timeLimit = property(_mscl.AutoAdaptiveFilterOptions_timeLimit_get, _mscl.AutoAdaptiveFilterOptions_timeLimit_set) - __swig_destroy__ = _mscl.delete_AutoAdaptiveFilterOptions - -# Register AutoAdaptiveFilterOptions in _mscl: -_mscl.AutoAdaptiveFilterOptions_swigregister(AutoAdaptiveFilterOptions) - -class SignalConditioningValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ENABLE_ORIENTATION_CALC = _mscl.SignalConditioningValues_ENABLE_ORIENTATION_CALC - ENABLE_CONING_SCULLING = _mscl.SignalConditioningValues_ENABLE_CONING_SCULLING - ENABLE_FINITE_SIZE_CORRECTION = _mscl.SignalConditioningValues_ENABLE_FINITE_SIZE_CORRECTION - DISABLE_MAGNETOMETER = _mscl.SignalConditioningValues_DISABLE_MAGNETOMETER - DISABLE_NORTH_COMP = _mscl.SignalConditioningValues_DISABLE_NORTH_COMP - DISABLE_UP_COMP = _mscl.SignalConditioningValues_DISABLE_UP_COMP - ENABLE_QUATERNION_CALC = _mscl.SignalConditioningValues_ENABLE_QUATERNION_CALC - HIGH = _mscl.SignalConditioningValues_HIGH - LOW = _mscl.SignalConditioningValues_LOW - dataConditioningFlags = property(_mscl.SignalConditioningValues_dataConditioningFlags_get, _mscl.SignalConditioningValues_dataConditioningFlags_set) - orientationCalcDecimation = property(_mscl.SignalConditioningValues_orientationCalcDecimation_get, _mscl.SignalConditioningValues_orientationCalcDecimation_set) - accelGyroFilterWidth = property(_mscl.SignalConditioningValues_accelGyroFilterWidth_get, _mscl.SignalConditioningValues_accelGyroFilterWidth_set) - magFilterWidth = property(_mscl.SignalConditioningValues_magFilterWidth_get, _mscl.SignalConditioningValues_magFilterWidth_set) - upCompensation = property(_mscl.SignalConditioningValues_upCompensation_get, _mscl.SignalConditioningValues_upCompensation_set) - northCompensation = property(_mscl.SignalConditioningValues_northCompensation_get, _mscl.SignalConditioningValues_northCompensation_set) - magBandwidthPower = property(_mscl.SignalConditioningValues_magBandwidthPower_get, _mscl.SignalConditioningValues_magBandwidthPower_set) - - def __init__(self): - _mscl.SignalConditioningValues_swiginit(self, _mscl.new_SignalConditioningValues()) - - def conditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_conditioningOptionOn(self, *args) - - def setConditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOn(self, *args) - - def setConditioningOptionOff(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOff(self, *args) - __swig_destroy__ = _mscl.delete_SignalConditioningValues - -# Register SignalConditioningValues in _mscl: -_mscl.SignalConditioningValues_swigregister(SignalConditioningValues) - -class EnableDisableMeasurements(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ACCELEROMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_ACCELEROMETER_MEASUREMENTS - MAGNETOMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_MAGNETOMETER_MEASUREMENTS - - def __init__(self, *args): - _mscl.EnableDisableMeasurements_swiginit(self, _mscl.new_EnableDisableMeasurements(*args)) - measurementOptions = property(_mscl.EnableDisableMeasurements_measurementOptions_get, _mscl.EnableDisableMeasurements_measurementOptions_set) - - def optionEnabled(self, *args): - return _mscl.EnableDisableMeasurements_optionEnabled(self, *args) - - def enableOption(self, *args): - return _mscl.EnableDisableMeasurements_enableOption(self, *args) - - def disableOption(self, *args): - return _mscl.EnableDisableMeasurements_disableOption(self, *args) - __swig_destroy__ = _mscl.delete_EnableDisableMeasurements - -# Register EnableDisableMeasurements in _mscl: -_mscl.EnableDisableMeasurements_swigregister(EnableDisableMeasurements) - -class RTKDeviceStatusFlags(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MODEM_STATE = _mscl.RTKDeviceStatusFlags_MODEM_STATE - CONNECTION_TYPE = _mscl.RTKDeviceStatusFlags_CONNECTION_TYPE - RSSI = _mscl.RTKDeviceStatusFlags_RSSI - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_SIGNAL_QUALITY - TOWER_CHANGE_INDICATOR = _mscl.RTKDeviceStatusFlags_TOWER_CHANGE_INDICATOR - NMEA_TIMEOUT = _mscl.RTKDeviceStatusFlags_NMEA_TIMEOUT - SERVER_TIMEOUT = _mscl.RTKDeviceStatusFlags_SERVER_TIMEOUT - RTCM_TIMEOUT = _mscl.RTKDeviceStatusFlags_RTCM_TIMEOUT - DEVICE_OUT_OF_RANGE = _mscl.RTKDeviceStatusFlags_DEVICE_OUT_OF_RANGE - CORRECTIONS_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_CORRECTIONS_UNAVAILABLE - VERSION = _mscl.RTKDeviceStatusFlags_VERSION - OFF = _mscl.RTKDeviceStatusFlags_OFF - NO_NETWORK = _mscl.RTKDeviceStatusFlags_NO_NETWORK - NETWORK_CONNECTED = _mscl.RTKDeviceStatusFlags_NETWORK_CONNECTED - CONFIGURING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_CONFIGURING_DATA_CONTEXT - ACTIVATING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_ACTIVATING_DATA_CONTEXT - CONFIGURING_SOCKET = _mscl.RTKDeviceStatusFlags_CONFIGURING_SOCKET - WAITING_ON_SERVER_HANDSHAKE = _mscl.RTKDeviceStatusFlags_WAITING_ON_SERVER_HANDSHAKE - CONNECTED_AND_IDLE = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_IDLE - CONNECTED_AND_STREAMING = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_STREAMING - NO_CONNECTION = _mscl.RTKDeviceStatusFlags_NO_CONNECTION - CONNECTION_2G = _mscl.RTKDeviceStatusFlags_CONNECTION_2G - CONNECTION_3G = _mscl.RTKDeviceStatusFlags_CONNECTION_3G - CONNECTION_4G = _mscl.RTKDeviceStatusFlags_CONNECTION_4G - CONNECTION_5G = _mscl.RTKDeviceStatusFlags_CONNECTION_5G - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_swiginit(self, _mscl.new_RTKDeviceStatusFlags(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_version(self) - - def modemState(self, *args): - return _mscl.RTKDeviceStatusFlags_modemState(self, *args) - - def connectionType(self, *args): - return _mscl.RTKDeviceStatusFlags_connectionType(self, *args) - - def rssi(self, *args): - return _mscl.RTKDeviceStatusFlags_rssi(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_signalQuality(self, *args) - - def towerChangeIndicator(self, *args): - return _mscl.RTKDeviceStatusFlags_towerChangeIndicator(self, *args) - - def nmeaTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_nmeaTimeout(self, *args) - - def serverTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_serverTimeout(self, *args) - - def rtcmTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_rtcmTimeout(self, *args) - - def deviceOutOfRange(self, *args): - return _mscl.RTKDeviceStatusFlags_deviceOutOfRange(self, *args) - - def correctionsUnavailable(self, *args): - return _mscl.RTKDeviceStatusFlags_correctionsUnavailable(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags - -# Register RTKDeviceStatusFlags in _mscl: -_mscl.RTKDeviceStatusFlags_swigregister(RTKDeviceStatusFlags) - -class RTKDeviceStatusFlags_v1(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONTROLLER_STATE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATE - PLATFORM_STATE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATE - CONTROLLER_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATUS_CODE - PLATFORM_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATUS_CODE - RESET_REASON = _mscl.RTKDeviceStatusFlags_v1_RESET_REASON - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_v1_SIGNAL_QUALITY - VERSION = _mscl.RTKDeviceStatusFlags_v1_VERSION - IDLE = _mscl.RTKDeviceStatusFlags_v1_IDLE - ACTIVE = _mscl.RTKDeviceStatusFlags_v1_ACTIVE - MODEM_OFF = _mscl.RTKDeviceStatusFlags_v1_MODEM_OFF - MODEM_POWERING_ON = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_ON - MODEM_CONFIGURE = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONFIGURE - MODEM_POWERING_DOWN = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_DOWN - MODEM_READY = _mscl.RTKDeviceStatusFlags_v1_MODEM_READY - MODEM_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTING - MODEM_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_DISCONNECTING - MODEM_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTED - SERVICE_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTING - SERVICE_CONNECTION_FAILED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_FAILED - SERVICE_CONNECTION_CANCELED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_CANCELED - SERVICE_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_DISCONNECTING - SERVICE_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTED - PLATFORM_ERROR = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_ERROR - RESET_MODEM = _mscl.RTKDeviceStatusFlags_v1_RESET_MODEM - CONTROLLER_OK = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_OK - WAITING_NMEA = _mscl.RTKDeviceStatusFlags_v1_WAITING_NMEA - RTK_TIMEOUT = _mscl.RTKDeviceStatusFlags_v1_RTK_TIMEOUT - RTK_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_v1_RTK_UNAVAILABLE - CONFIG_INVALID = _mscl.RTKDeviceStatusFlags_v1_CONFIG_INVALID - PLATFORM_OK = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_OK - RTK_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_RTK_CONNECTION_DROPPED - CELL_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_CELL_CONNECTION_DROPPED - MODEM_ERROR = _mscl.RTKDeviceStatusFlags_v1_MODEM_ERROR - POWER_ON = _mscl.RTKDeviceStatusFlags_v1_POWER_ON - UNKNOWN = _mscl.RTKDeviceStatusFlags_v1_UNKNOWN - SOFT_RESET = _mscl.RTKDeviceStatusFlags_v1_SOFT_RESET - HARDWARE_ERROR_RESET = _mscl.RTKDeviceStatusFlags_v1_HARDWARE_ERROR_RESET - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_v1_swiginit(self, _mscl.new_RTKDeviceStatusFlags_v1(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_v1_version(self) - - def controllerState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerState(self, *args) - - def platformState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformState(self, *args) - - def controllerStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerStatusCode(self, *args) - - def platformStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformStatusCode(self, *args) - - def resetReason(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_resetReason(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_signalQuality(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags_v1 - -# Register RTKDeviceStatusFlags_v1 in _mscl: -_mscl.RTKDeviceStatusFlags_v1_swigregister(RTKDeviceStatusFlags_v1) - -class GnssSignalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - L1CA = _mscl.GnssSignalConfiguration_L1CA - L2C = _mscl.GnssSignalConfiguration_L2C - L1OF = _mscl.GnssSignalConfiguration_L1OF - L2OF = _mscl.GnssSignalConfiguration_L2OF - E1 = _mscl.GnssSignalConfiguration_E1 - E5B = _mscl.GnssSignalConfiguration_E5B - B1 = _mscl.GnssSignalConfiguration_B1 - B2 = _mscl.GnssSignalConfiguration_B2 - - def __init__(self): - _mscl.GnssSignalConfiguration_swiginit(self, _mscl.new_GnssSignalConfiguration()) - - def enableGpsSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGpsSignal(self, signal, enable) - - def gpsSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_gpsSignalEnabled(self, signal) - - def gpsSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_gpsSignalValue(self, *args) - - def enableGlonassSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGlonassSignal(self, signal, enable) - - def glonassSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_glonassSignalEnabled(self, signal) - - def glonassSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_glonassSignalValue(self, *args) - - def enableGalileoSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGalileoSignal(self, signal, enable) - - def galileoSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_galileoSignalEnabled(self, signal) - - def galileoSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_galileoSignalValue(self, *args) - - def enableBeiDouSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableBeiDouSignal(self, signal, enable) - - def beidouSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_beidouSignalEnabled(self, signal) - - def beidouSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_beidouSignalValue(self, *args) - __swig_destroy__ = _mscl.delete_GnssSignalConfiguration - -# Register GnssSignalConfiguration in _mscl: -_mscl.GnssSignalConfiguration_swigregister(GnssSignalConfiguration) - -class GnssSpartnConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - KEY_SIZE = _mscl.GnssSpartnConfiguration_KEY_SIZE - NONE = _mscl.GnssSpartnConfiguration_NONE - NETWORK = _mscl.GnssSpartnConfiguration_NETWORK - LBAND = _mscl.GnssSpartnConfiguration_LBAND - - def __init__(self): - _mscl.GnssSpartnConfiguration_swiginit(self, _mscl.new_GnssSpartnConfiguration()) - - def enable(self, enable): - return _mscl.GnssSpartnConfiguration_enable(self, enable) - - def enabled(self): - return _mscl.GnssSpartnConfiguration_enabled(self) - - def type(self, *args): - return _mscl.GnssSpartnConfiguration_type(self, *args) - - def currentKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyTow(self, *args) - - def currentKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyWeek(self, *args) - - def currentKey(self, *args): - return _mscl.GnssSpartnConfiguration_currentKey(self, *args) - - def nextKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyTow(self, *args) - - def nextKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyWeek(self, *args) - - def nextKey(self, *args): - return _mscl.GnssSpartnConfiguration_nextKey(self, *args) - __swig_destroy__ = _mscl.delete_GnssSpartnConfiguration - -# Register GnssSpartnConfiguration in _mscl: -_mscl.GnssSpartnConfiguration_swigregister(GnssSpartnConfiguration) - -class PositionReferenceConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - autoConfig = property(_mscl.PositionReferenceConfiguration_autoConfig_get, _mscl.PositionReferenceConfiguration_autoConfig_set) - position = property(_mscl.PositionReferenceConfiguration_position_get, _mscl.PositionReferenceConfiguration_position_set) - - def __init__(self): - _mscl.PositionReferenceConfiguration_swiginit(self, _mscl.new_PositionReferenceConfiguration()) - __swig_destroy__ = _mscl.delete_PositionReferenceConfiguration - -# Register PositionReferenceConfiguration in _mscl: -_mscl.PositionReferenceConfiguration_swigregister(PositionReferenceConfiguration) - -class AntennaLeverArmCalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enabled = property(_mscl.AntennaLeverArmCalConfiguration_enabled_get, _mscl.AntennaLeverArmCalConfiguration_enabled_set) - maxOffsetError = property(_mscl.AntennaLeverArmCalConfiguration_maxOffsetError_get, _mscl.AntennaLeverArmCalConfiguration_maxOffsetError_set) - - def __init__(self): - _mscl.AntennaLeverArmCalConfiguration_swiginit(self, _mscl.new_AntennaLeverArmCalConfiguration()) - __swig_destroy__ = _mscl.delete_AntennaLeverArmCalConfiguration - -# Register AntennaLeverArmCalConfiguration in _mscl: -_mscl.AntennaLeverArmCalConfiguration_swigregister(AntennaLeverArmCalConfiguration) - -class OdometerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.OdometerConfiguration_DISABLED - SINGLE = _mscl.OdometerConfiguration_SINGLE - QUADRATURE = _mscl.OdometerConfiguration_QUADRATURE - - def __init__(self): - _mscl.OdometerConfiguration_swiginit(self, _mscl.new_OdometerConfiguration()) - - def mode(self, *args): - return _mscl.OdometerConfiguration_mode(self, *args) - - def uncertainty(self, *args): - return _mscl.OdometerConfiguration_uncertainty(self, *args) - - def scaling(self, *args): - return _mscl.OdometerConfiguration_scaling(self, *args) - __swig_destroy__ = _mscl.delete_OdometerConfiguration - -# Register OdometerConfiguration in _mscl: -_mscl.OdometerConfiguration_swigregister(OdometerConfiguration) - -class GpioConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - UNUSED_FEATURE = _mscl.GpioConfiguration_UNUSED_FEATURE - GPIO_FEATURE = _mscl.GpioConfiguration_GPIO_FEATURE - PPS_FEATURE = _mscl.GpioConfiguration_PPS_FEATURE - ENCODER_FEATURE = _mscl.GpioConfiguration_ENCODER_FEATURE - EVENT_TIMESTAMP_FEATURE = _mscl.GpioConfiguration_EVENT_TIMESTAMP_FEATURE - UART_FEATURE = _mscl.GpioConfiguration_UART_FEATURE - GPIO_UNUSED = _mscl.GpioConfiguration_GPIO_UNUSED - GPIO_INPUT = _mscl.GpioConfiguration_GPIO_INPUT - GPIO_OUTPUT_LOW = _mscl.GpioConfiguration_GPIO_OUTPUT_LOW - GPIO_OUTPUT_HIGH = _mscl.GpioConfiguration_GPIO_OUTPUT_HIGH - PPS_UNUSED = _mscl.GpioConfiguration_PPS_UNUSED - PPS_INPUT = _mscl.GpioConfiguration_PPS_INPUT - PPS_OUTPUT = _mscl.GpioConfiguration_PPS_OUTPUT - ENCODER_UNUSED = _mscl.GpioConfiguration_ENCODER_UNUSED - ENCODER_A = _mscl.GpioConfiguration_ENCODER_A - ENCODER_B = _mscl.GpioConfiguration_ENCODER_B - TIMESTAMP_UNUSED = _mscl.GpioConfiguration_TIMESTAMP_UNUSED - TIMESTAMP_RISING = _mscl.GpioConfiguration_TIMESTAMP_RISING - TIMESTAMP_FALLING = _mscl.GpioConfiguration_TIMESTAMP_FALLING - TIMESTAMP_EITHER = _mscl.GpioConfiguration_TIMESTAMP_EITHER - UART_UNUSED = _mscl.GpioConfiguration_UART_UNUSED - UART_PORT2_TX = _mscl.GpioConfiguration_UART_PORT2_TX - UART_PORT2_RX = _mscl.GpioConfiguration_UART_PORT2_RX - UART_PORT3_TX = _mscl.GpioConfiguration_UART_PORT3_TX - UART_PORT3_RX = _mscl.GpioConfiguration_UART_PORT3_RX - NONE = _mscl.GpioConfiguration_NONE - OPEN_DRAIN = _mscl.GpioConfiguration_OPEN_DRAIN - PULLDOWN = _mscl.GpioConfiguration_PULLDOWN - PULLUP = _mscl.GpioConfiguration_PULLUP - pinMode = property(_mscl.GpioConfiguration_pinMode_get, _mscl.GpioConfiguration_pinMode_set) - pin = property(_mscl.GpioConfiguration_pin_get, _mscl.GpioConfiguration_pin_set) - feature = property(_mscl.GpioConfiguration_feature_get, _mscl.GpioConfiguration_feature_set) - behavior = property(_mscl.GpioConfiguration_behavior_get, _mscl.GpioConfiguration_behavior_set) - - def pinModeValue(self, *args): - return _mscl.GpioConfiguration_pinModeValue(self, *args) - - def __init__(self): - _mscl.GpioConfiguration_swiginit(self, _mscl.new_GpioConfiguration()) - __swig_destroy__ = _mscl.delete_GpioConfiguration - -# Register GpioConfiguration in _mscl: -_mscl.GpioConfiguration_swigregister(GpioConfiguration) - -DISABLED = _mscl.DISABLED -ENABLED = _mscl.ENABLED -TEST = _mscl.TEST -TEST_PULSE = _mscl.TEST_PULSE -class EventTriggerGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventTriggerGpioParameter_DISABLED - WHILE_HIGH = _mscl.EventTriggerGpioParameter_WHILE_HIGH - WHILE_LOW = _mscl.EventTriggerGpioParameter_WHILE_LOW - EDGE = _mscl.EventTriggerGpioParameter_EDGE - pin = property(_mscl.EventTriggerGpioParameter_pin_get, _mscl.EventTriggerGpioParameter_pin_set) - mode = property(_mscl.EventTriggerGpioParameter_mode_get, _mscl.EventTriggerGpioParameter_mode_set) - - def __init__(self): - _mscl.EventTriggerGpioParameter_swiginit(self, _mscl.new_EventTriggerGpioParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerGpioParameter - -# Register EventTriggerGpioParameter in _mscl: -_mscl.EventTriggerGpioParameter_swigregister(EventTriggerGpioParameter) - -class EventTriggerThresholdParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - WINDOW_TYPE = _mscl.EventTriggerThresholdParameter_WINDOW_TYPE - INTERVAL_TYPE = _mscl.EventTriggerThresholdParameter_INTERVAL_TYPE - type = property(_mscl.EventTriggerThresholdParameter_type_get, _mscl.EventTriggerThresholdParameter_type_set) - lowThreshold = property(_mscl.EventTriggerThresholdParameter_lowThreshold_get, _mscl.EventTriggerThresholdParameter_lowThreshold_set) - highThreshold = property(_mscl.EventTriggerThresholdParameter_highThreshold_get, _mscl.EventTriggerThresholdParameter_highThreshold_set) - - def channel(self, *args): - return _mscl.EventTriggerThresholdParameter_channel(self, *args) - - def channelField(self): - return _mscl.EventTriggerThresholdParameter_channelField(self) - - def channelQualifier(self): - return _mscl.EventTriggerThresholdParameter_channelQualifier(self) - - def channelIndex(self): - return _mscl.EventTriggerThresholdParameter_channelIndex(self) - - def __init__(self): - _mscl.EventTriggerThresholdParameter_swiginit(self, _mscl.new_EventTriggerThresholdParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerThresholdParameter - -# Register EventTriggerThresholdParameter in _mscl: -_mscl.EventTriggerThresholdParameter_swigregister(EventTriggerThresholdParameter) - -class EventTriggerCombinationParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_INPUT_TRIGGERS = _mscl.EventTriggerCombinationParameter_MAX_INPUT_TRIGGERS - LOGIC_NEVER = _mscl.EventTriggerCombinationParameter_LOGIC_NEVER - LOGIC_ALWAYS = _mscl.EventTriggerCombinationParameter_LOGIC_ALWAYS - LOGIC_NONE = _mscl.EventTriggerCombinationParameter_LOGIC_NONE - LOGIC_OR = _mscl.EventTriggerCombinationParameter_LOGIC_OR - LOGIC_NAND = _mscl.EventTriggerCombinationParameter_LOGIC_NAND - LOGIC_XOR_ONE = _mscl.EventTriggerCombinationParameter_LOGIC_XOR_ONE - LOGIC_ONLY_A = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_A - LOGIC_ONLY_B = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_B - LOGIC_ONLY_C = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_C - LOGIC_ONLY_D = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_D - LOGIC_AND_AB = _mscl.EventTriggerCombinationParameter_LOGIC_AND_AB - LOGIC_AB_OR_C = _mscl.EventTriggerCombinationParameter_LOGIC_AB_OR_C - LOGIC_AND = _mscl.EventTriggerCombinationParameter_LOGIC_AND - logicTable = property(_mscl.EventTriggerCombinationParameter_logicTable_get, _mscl.EventTriggerCombinationParameter_logicTable_set) - inputTriggers = property(_mscl.EventTriggerCombinationParameter_inputTriggers_get, _mscl.EventTriggerCombinationParameter_inputTriggers_set) - - def __init__(self): - _mscl.EventTriggerCombinationParameter_swiginit(self, _mscl.new_EventTriggerCombinationParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerCombinationParameter - -# Register EventTriggerCombinationParameter in _mscl: -_mscl.EventTriggerCombinationParameter_swigregister(EventTriggerCombinationParameter) - -class EventTriggerParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerParameters_swiginit(self, _mscl.new_EventTriggerParameters()) - gpio = property(_mscl.EventTriggerParameters_gpio_get, _mscl.EventTriggerParameters_gpio_set) - threshold = property(_mscl.EventTriggerParameters_threshold_get, _mscl.EventTriggerParameters_threshold_set) - combination = property(_mscl.EventTriggerParameters_combination_get, _mscl.EventTriggerParameters_combination_set) - __swig_destroy__ = _mscl.delete_EventTriggerParameters - -# Register EventTriggerParameters in _mscl: -_mscl.EventTriggerParameters_swigregister(EventTriggerParameters) - -class EventTriggerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventTriggerConfiguration_NONE - GPIO_TRIGGER = _mscl.EventTriggerConfiguration_GPIO_TRIGGER - THRESHOLD_TRIGGER = _mscl.EventTriggerConfiguration_THRESHOLD_TRIGGER - COMBINATION_TRIGGER = _mscl.EventTriggerConfiguration_COMBINATION_TRIGGER - instance = property(_mscl.EventTriggerConfiguration_instance_get, _mscl.EventTriggerConfiguration_instance_set) - trigger = property(_mscl.EventTriggerConfiguration_trigger_get, _mscl.EventTriggerConfiguration_trigger_set) - parameters = property(_mscl.EventTriggerConfiguration_parameters_get, _mscl.EventTriggerConfiguration_parameters_set) - - def __init__(self): - _mscl.EventTriggerConfiguration_swiginit(self, _mscl.new_EventTriggerConfiguration()) - __swig_destroy__ = _mscl.delete_EventTriggerConfiguration - -# Register EventTriggerConfiguration in _mscl: -_mscl.EventTriggerConfiguration_swigregister(EventTriggerConfiguration) - -class EventActionGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventActionGpioParameter_DISABLED - ACTIVE_HIGH = _mscl.EventActionGpioParameter_ACTIVE_HIGH - ACTIVE_LOW = _mscl.EventActionGpioParameter_ACTIVE_LOW - ONESHOT_HIGH = _mscl.EventActionGpioParameter_ONESHOT_HIGH - ONESHOT_LOW = _mscl.EventActionGpioParameter_ONESHOT_LOW - TOGGLE = _mscl.EventActionGpioParameter_TOGGLE - pin = property(_mscl.EventActionGpioParameter_pin_get, _mscl.EventActionGpioParameter_pin_set) - mode = property(_mscl.EventActionGpioParameter_mode_get, _mscl.EventActionGpioParameter_mode_set) - - def __init__(self): - _mscl.EventActionGpioParameter_swiginit(self, _mscl.new_EventActionGpioParameter()) - __swig_destroy__ = _mscl.delete_EventActionGpioParameter - -# Register EventActionGpioParameter in _mscl: -_mscl.EventActionGpioParameter_swigregister(EventActionGpioParameter) - -class EventActionMessageParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_DESCRIPTORS = _mscl.EventActionMessageParameter_MAX_DESCRIPTORS - sampleRate = property(_mscl.EventActionMessageParameter_sampleRate_get, _mscl.EventActionMessageParameter_sampleRate_set) - - def dataClass(self): - return _mscl.EventActionMessageParameter_dataClass(self) - - def setChannelFields(self, dataClass, fields): - return _mscl.EventActionMessageParameter_setChannelFields(self, dataClass, fields) - - def getChannelFields(self): - return _mscl.EventActionMessageParameter_getChannelFields(self) - - def __init__(self): - _mscl.EventActionMessageParameter_swiginit(self, _mscl.new_EventActionMessageParameter()) - __swig_destroy__ = _mscl.delete_EventActionMessageParameter - -# Register EventActionMessageParameter in _mscl: -_mscl.EventActionMessageParameter_swigregister(EventActionMessageParameter) - -class EventActionParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventActionParameters_swiginit(self, _mscl.new_EventActionParameters()) - gpio = property(_mscl.EventActionParameters_gpio_get, _mscl.EventActionParameters_gpio_set) - message = property(_mscl.EventActionParameters_message_get, _mscl.EventActionParameters_message_set) - __swig_destroy__ = _mscl.delete_EventActionParameters - -# Register EventActionParameters in _mscl: -_mscl.EventActionParameters_swigregister(EventActionParameters) - -class EventActionConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventActionConfiguration_NONE - GPIO = _mscl.EventActionConfiguration_GPIO - MESSAGE = _mscl.EventActionConfiguration_MESSAGE - instance = property(_mscl.EventActionConfiguration_instance_get, _mscl.EventActionConfiguration_instance_set) - trigger = property(_mscl.EventActionConfiguration_trigger_get, _mscl.EventActionConfiguration_trigger_set) - type = property(_mscl.EventActionConfiguration_type_get, _mscl.EventActionConfiguration_type_set) - parameters = property(_mscl.EventActionConfiguration_parameters_get, _mscl.EventActionConfiguration_parameters_set) - - def __init__(self): - _mscl.EventActionConfiguration_swiginit(self, _mscl.new_EventActionConfiguration()) - __swig_destroy__ = _mscl.delete_EventActionConfiguration - -# Register EventActionConfiguration in _mscl: -_mscl.EventActionConfiguration_swigregister(EventActionConfiguration) - -class EventTriggerInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTriggerInfo_swiginit(self, _mscl.new_EventTriggerInfo(*args)) - ACTIVE = _mscl.EventTriggerInfo_ACTIVE - ENABLED = _mscl.EventTriggerInfo_ENABLED - TEST = _mscl.EventTriggerInfo_TEST - type = property(_mscl.EventTriggerInfo_type_get, _mscl.EventTriggerInfo_type_set) - instanceId = property(_mscl.EventTriggerInfo_instanceId_get, _mscl.EventTriggerInfo_instanceId_set) - - def isActive(self): - return _mscl.EventTriggerInfo_isActive(self) - - def isEnabled(self): - return _mscl.EventTriggerInfo_isEnabled(self) - - def isTestMode(self): - return _mscl.EventTriggerInfo_isTestMode(self) - - def setStatus(self, value): - return _mscl.EventTriggerInfo_setStatus(self, value) - __swig_destroy__ = _mscl.delete_EventTriggerInfo - -# Register EventTriggerInfo in _mscl: -_mscl.EventTriggerInfo_swigregister(EventTriggerInfo) - -class EventActionInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventActionInfo_swiginit(self, _mscl.new_EventActionInfo(*args)) - type = property(_mscl.EventActionInfo_type_get, _mscl.EventActionInfo_type_set) - triggerId = property(_mscl.EventActionInfo_triggerId_get, _mscl.EventActionInfo_triggerId_set) - instanceId = property(_mscl.EventActionInfo_instanceId_get, _mscl.EventActionInfo_instanceId_set) - __swig_destroy__ = _mscl.delete_EventActionInfo - -# Register EventActionInfo in _mscl: -_mscl.EventActionInfo_swigregister(EventActionInfo) - -class MeasurementReferenceFrame(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MeasurementReferenceFrame_swiginit(self, _mscl.new_MeasurementReferenceFrame(*args)) - - def asMipFieldValues(self): - return _mscl.MeasurementReferenceFrame_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.MeasurementReferenceFrame_appendMipFieldValues(self, appendTo) - - def translation(self, *args): - return _mscl.MeasurementReferenceFrame_translation(self, *args) - - def rotation(self, *args): - return _mscl.MeasurementReferenceFrame_rotation(self, *args) - - def errorTrackingEnabled(self): - return _mscl.MeasurementReferenceFrame_errorTrackingEnabled(self) - - def enableErrorTracking(self, enable=True): - return _mscl.MeasurementReferenceFrame_enableErrorTracking(self, enable) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrame - -# Register MeasurementReferenceFrame in _mscl: -_mscl.MeasurementReferenceFrame_swigregister(MeasurementReferenceFrame) - -class MipChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipChannel_swiginit(self, _mscl.new_MipChannel(*args)) - - def channelField(self): - return _mscl.MipChannel_channelField(self) - - def sampleRate(self): - return _mscl.MipChannel_sampleRate(self) - - def rateDecimation(self, sampleRateBase): - return _mscl.MipChannel_rateDecimation(self, sampleRateBase) - __swig_destroy__ = _mscl.delete_MipChannel - -# Register MipChannel in _mscl: -_mscl.MipChannel_swigregister(MipChannel) - -class MipPacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MIP_ACK_NACK_ERROR_NONE = _mscl.MipPacket_MIP_ACK_NACK_ERROR_NONE - MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND - MIP_ACK_NACK_ERROR_CHECKSUM_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_CHECKSUM_INVALID - MIP_ACK_NACK_ERROR_PARAMETER_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_PARAMETER_INVALID - MIP_ACK_NACK_ERROR_COMMAND_FAILED = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_FAILED - MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT - MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET - - def __init__(self): - _mscl.MipPacket_swiginit(self, _mscl.new_MipPacket()) - - @staticmethod - def isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - - def descriptorSet(self): - return _mscl.MipPacket_descriptorSet(self) - - def payload(self): - return _mscl.MipPacket_payload(self) - __swig_destroy__ = _mscl.delete_MipPacket - -# Register MipPacket in _mscl: -_mscl.MipPacket_swigregister(MipPacket) - -def MipPacket_isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - -class MipDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def field(self): - return _mscl.MipDataPoint_field(self) - - def qualifier(self): - return _mscl.MipDataPoint_qualifier(self) - - def hasAddlIdentifiers(self): - return _mscl.MipDataPoint_hasAddlIdentifiers(self) - - def addlIdentifiers(self): - return _mscl.MipDataPoint_addlIdentifiers(self) - - def hasValidFlag(self): - return _mscl.MipDataPoint_hasValidFlag(self) - - def valid(self): - return _mscl.MipDataPoint_valid(self) - - def channelName(self, includeAddlIds=True, consolidatedFormat=False): - return _mscl.MipDataPoint_channelName(self, includeAddlIds, consolidatedFormat) - __swig_destroy__ = _mscl.delete_MipDataPoint - -# Register MipDataPoint in _mscl: -_mscl.MipDataPoint_swigregister(MipDataPoint) - -class ContinuousBIT(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def as_MipDataPoints(self): - return _mscl.ContinuousBIT_as_MipDataPoints(self) - - @staticmethod - def getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - - def data(self): - return _mscl.ContinuousBIT_data(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_bufferOverrun(self) - - def imuClockFault(self): - return _mscl.ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_pressureSelfTestFail(self) - - def filterTimingOverrun(self): - return _mscl.ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.ContinuousBIT_filterTimingUnderrun(self) - -# Register ContinuousBIT in _mscl: -_mscl.ContinuousBIT_swigregister(ContinuousBIT) - -def ContinuousBIT_getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - -class ContinuousBIT_System_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - SYSTEM_CLOCK_FAILURE = _mscl.ContinuousBIT_System_General_SYSTEM_CLOCK_FAILURE - POWER_FAULT = _mscl.ContinuousBIT_System_General_POWER_FAULT - FIRMWARE_FAULT = _mscl.ContinuousBIT_System_General_FIRMWARE_FAULT - TIMING_OVERLOAD = _mscl.ContinuousBIT_System_General_TIMING_OVERLOAD - BUFFER_OVERRUN = _mscl.ContinuousBIT_System_General_BUFFER_OVERRUN - - def flags(self): - return _mscl.ContinuousBIT_System_General_flags(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_System_General_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_System_General_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_System_General_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_System_General_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_System_General_bufferOverrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_General - -# Register ContinuousBIT_System_General in _mscl: -_mscl.ContinuousBIT_System_General_swigregister(ContinuousBIT_System_General) - -class ContinuousBIT_System_Process(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def flags(self): - return _mscl.ContinuousBIT_System_Process_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_Process - -# Register ContinuousBIT_System_Process in _mscl: -_mscl.ContinuousBIT_System_Process_swigregister(ContinuousBIT_System_Process) - -class ContinuousBIT_System(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_System_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_System_GENERAL_FLAGS - PROCESS_FLAGS = _mscl.ContinuousBIT_System_PROCESS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_System_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System - -# Register ContinuousBIT_System in _mscl: -_mscl.ContinuousBIT_System_swigregister(ContinuousBIT_System) - -class ContinuousBIT_IMU_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - CLOCK_FAULT = _mscl.ContinuousBIT_IMU_General_CLOCK_FAULT - COMMUNICATION_FAULT = _mscl.ContinuousBIT_IMU_General_COMMUNICATION_FAULT - TIMING_OVERRUN = _mscl.ContinuousBIT_IMU_General_TIMING_OVERRUN - CALIBRATION_ERROR_ACCEL = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_ACCEL - CALIBRATION_ERROR_GYRO = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_GYRO - CALIBRATION_ERROR_MAG = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_MAG - - def flags(self): - return _mscl.ContinuousBIT_IMU_General_flags(self) - - def clockFault(self): - return _mscl.ContinuousBIT_IMU_General_clockFault(self) - - def communicationFault(self): - return _mscl.ContinuousBIT_IMU_General_communicationFault(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_IMU_General_timingOverrun(self) - - def calibrationErrorAccel(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorAccel(self) - - def calibrationErrorGyro(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorGyro(self) - - def calibrationErrorMag(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorMag(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_General - -# Register ContinuousBIT_IMU_General in _mscl: -_mscl.ContinuousBIT_IMU_General_swigregister(ContinuousBIT_IMU_General) - -class ContinuousBIT_IMU_Sensors(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - ACCEL_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_GENERAL_FAULT - ACCEL_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_OVERRANGE - ACCEL_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_SELF_TEST_FAIL - GYRO_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_GYRO_GENERAL_FAULT - GYRO_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_GYRO_OVERRANGE - GYRO_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_GYRO_SELF_TEST_FAIL - MAG_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_MAG_GENERAL_FAULT - MAG_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_MAG_OVERRANGE - MAG_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_MAG_SELF_TEST_FAIL - PRESSURE_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_GENERAL_FAULT - PRESSURE_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_OVERRANGE - PRESSURE_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_SELF_TEST_FAIL - - def flags(self): - return _mscl.ContinuousBIT_IMU_Sensors_flags(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureSelfTestFail(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_Sensors - -# Register ContinuousBIT_IMU_Sensors in _mscl: -_mscl.ContinuousBIT_IMU_Sensors_swigregister(ContinuousBIT_IMU_Sensors) - -class ContinuousBIT_IMU(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_IMU_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_IMU_GENERAL_FLAGS - SENSORS_FLAGS = _mscl.ContinuousBIT_IMU_SENSORS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_IMU_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU - -# Register ContinuousBIT_IMU in _mscl: -_mscl.ContinuousBIT_IMU_swigregister(ContinuousBIT_IMU) - -class ContinuousBIT_Filter_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - TIMING_OVERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_OVERRUN - TIMING_UNDERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_UNDERRUN - - def flags(self): - return _mscl.ContinuousBIT_Filter_General_flags(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_Filter_General_timingOverrun(self) - - def timingUnderrun(self): - return _mscl.ContinuousBIT_Filter_General_timingUnderrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter_General - -# Register ContinuousBIT_Filter_General in _mscl: -_mscl.ContinuousBIT_Filter_General_swigregister(ContinuousBIT_Filter_General) - -class ContinuousBIT_Filter(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_Filter_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_Filter_GENERAL_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_Filter_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter - -# Register ContinuousBIT_Filter in _mscl: -_mscl.ContinuousBIT_Filter_swigregister(ContinuousBIT_Filter) - -class CV7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_General_swiginit(self, _mscl.new_CV7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_General - -# Register CV7ContinuousBIT_System_General in _mscl: -_mscl.CV7ContinuousBIT_System_General_swigregister(CV7ContinuousBIT_System_General) - -class CV7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_Process_swiginit(self, _mscl.new_CV7ContinuousBIT_System_Process(*args)) - IMU_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_IMU_PROCESS_FAULT - IMU_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_IMU_RATE_MISMATCH - IMU_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_IMU_DROPPED_DATA - IMU_STUCK = _mscl.CV7ContinuousBIT_System_Process_IMU_STUCK - FILTER_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_FILTER_PROCESS_FAULT - FILTER_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_FILTER_DROPPED_DATA - FILTER_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_FILTER_RATE_MISMATCH - FILTER_STUCK = _mscl.CV7ContinuousBIT_System_Process_FILTER_STUCK - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_filterStuck(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_Process - -# Register CV7ContinuousBIT_System_Process in _mscl: -_mscl.CV7ContinuousBIT_System_Process_swigregister(CV7ContinuousBIT_System_Process) - -class CV7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_swiginit(self, _mscl.new_CV7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.CV7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System - -# Register CV7ContinuousBIT_System in _mscl: -_mscl.CV7ContinuousBIT_System_swigregister(CV7ContinuousBIT_System) - -class CV7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_General - -# Register CV7ContinuousBIT_IMU_General in _mscl: -_mscl.CV7ContinuousBIT_IMU_General_swigregister(CV7ContinuousBIT_IMU_General) - -class CV7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_Sensors - -# Register CV7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.CV7ContinuousBIT_IMU_Sensors_swigregister(CV7ContinuousBIT_IMU_Sensors) - -class CV7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU(*args)) - FACTORY_BITS_INVALID = _mscl.CV7ContinuousBIT_IMU_FACTORY_BITS_INVALID - - def general(self): - return _mscl.CV7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.CV7ContinuousBIT_IMU_sensors(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_IMU_factoryBitsInvalid(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU - -# Register CV7ContinuousBIT_IMU in _mscl: -_mscl.CV7ContinuousBIT_IMU_swigregister(CV7ContinuousBIT_IMU) - -class CV7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter_General(*args)) - FAULT = _mscl.CV7ContinuousBIT_Filter_General_FAULT - - def fault(self): - return _mscl.CV7ContinuousBIT_Filter_General_fault(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter_General - -# Register CV7ContinuousBIT_Filter_General in _mscl: -_mscl.CV7ContinuousBIT_Filter_General_swigregister(CV7ContinuousBIT_Filter_General) - -class CV7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter - -# Register CV7ContinuousBIT_Filter in _mscl: -_mscl.CV7ContinuousBIT_Filter_swigregister(CV7ContinuousBIT_Filter) - -class CV7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.CV7ContinuousBIT_swiginit(self, _mscl.new_CV7ContinuousBIT(bytes)) - - def system(self): - return _mscl.CV7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.CV7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.CV7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.CV7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.CV7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.CV7ContinuousBIT_bufferOverrun(self) - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_filterStuck(self) - - def imu(self): - return _mscl.CV7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.CV7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.CV7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.CV7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.CV7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.CV7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.CV7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.CV7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.CV7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.CV7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.CV7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.CV7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.CV7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.CV7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.CV7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.CV7ContinuousBIT_pressureSelfTestFail(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_factoryBitsInvalid(self) - - def filter(self): - return _mscl.CV7ContinuousBIT_filter(self) - - def filterFault(self): - return _mscl.CV7ContinuousBIT_filterFault(self) - - def filterTimingOverrun(self): - return _mscl.CV7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.CV7ContinuousBIT_filterTimingUnderrun(self) - - def as_MipDataPoints(self): - return _mscl.CV7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT - -# Register CV7ContinuousBIT in _mscl: -_mscl.CV7ContinuousBIT_swigregister(CV7ContinuousBIT) - -class GQ7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_General - -# Register GQ7ContinuousBIT_System_General in _mscl: -_mscl.GQ7ContinuousBIT_System_General_swigregister(GQ7ContinuousBIT_System_General) - -class GQ7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_Process_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_Process(*args)) - IMU_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_CONTROL_LINE_FAULT - IMU_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_COMMAND_RESPONSE_FAULT - IMU_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_SPI_TRANSFER_FAULT - IMU_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_DATA_FRAME_FAULT - FILTER_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_CONTROL_LINE_FAULT - FILTER_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_COMMAND_RESPONSE_FAULT - FILTER_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_SPI_TRANSFER_FAULT - FILTER_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_DATA_FRAME_FAULT - GNSS_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_CONTROL_LINE_FAULT - GNSS_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_COMMAND_RESPONSE_FAULT - GNSS_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_SPI_TRANSFER_FAULT - GNSS_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_DATA_FRAME_FAULT - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssDataFrameFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_Process - -# Register GQ7ContinuousBIT_System_Process in _mscl: -_mscl.GQ7ContinuousBIT_System_Process_swigregister(GQ7ContinuousBIT_System_Process) - -class GQ7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_swiginit(self, _mscl.new_GQ7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.GQ7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System - -# Register GQ7ContinuousBIT_System in _mscl: -_mscl.GQ7ContinuousBIT_System_swigregister(GQ7ContinuousBIT_System) - -class GQ7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_General - -# Register GQ7ContinuousBIT_IMU_General in _mscl: -_mscl.GQ7ContinuousBIT_IMU_General_swigregister(GQ7ContinuousBIT_IMU_General) - -class GQ7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_Sensors - -# Register GQ7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.GQ7ContinuousBIT_IMU_Sensors_swigregister(GQ7ContinuousBIT_IMU_Sensors) - -class GQ7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.GQ7ContinuousBIT_IMU_sensors(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU - -# Register GQ7ContinuousBIT_IMU in _mscl: -_mscl.GQ7ContinuousBIT_IMU_swigregister(GQ7ContinuousBIT_IMU) - -class GQ7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_HARDWARE_FAULT - COMMUNICATION_ERROR_IMU_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_IMU_SPI - COMMUNICATION_ERROR_GNSS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_GNSS_SPI - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_COMMS_UART = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_UART - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationError(self) - - def communicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorImuSpi(self) - - def communicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorGnssSpi(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsSpi(self) - - def communicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsUart(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter_General - -# Register GQ7ContinuousBIT_Filter_General in _mscl: -_mscl.GQ7ContinuousBIT_Filter_General_swigregister(GQ7ContinuousBIT_Filter_General) - -class GQ7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter - -# Register GQ7ContinuousBIT_Filter in _mscl: -_mscl.GQ7ContinuousBIT_Filter_swigregister(GQ7ContinuousBIT_Filter) - -class GQ7ContinuousBIT_GNSS_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_HARDWARE_FAULT - COMMUNICATION_ERROR_COMMS_SERIAL = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SERIAL - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_NAV_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_NAV_SPI - GPS_TIME_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_GPS_TIME_FAULT - TIMING_OVERRUN = _mscl.GQ7ContinuousBIT_GNSS_General_TIMING_OVERRUN - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_flags(self) - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationError(self) - - def communicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSerial(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSpi(self) - - def communicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_gpsTimeFault(self) - - def timingOverrun(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_timingOverrun(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_General - -# Register GQ7ContinuousBIT_GNSS_General in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_General_swigregister(GQ7ContinuousBIT_GNSS_General) - -class GQ7ContinuousBIT_GNSS_Receivers(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_Receivers_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_Receivers(*args)) - POWER_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_1 - FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_1 - SHORTED_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_1 - OPEN_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_1 - SOLUTION_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_1 - POWER_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_2 - FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_2 - SHORTED_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_2 - OPEN_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_2 - SOLUTION_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_2 - RTCM_COMMUNICATION_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTCM_COMMUNICATION_FAULT - RTK_DONGLE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTK_DONGLE_FAULT - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_flags(self) - - def powerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver1(self) - - def faultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver1(self) - - def shortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna1(self) - - def openAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna1(self) - - def solutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver1(self) - - def powerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver2(self) - - def faultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver2(self) - - def shortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna2(self) - - def openAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna2(self) - - def solutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtkDongleFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_Receivers - -# Register GQ7ContinuousBIT_GNSS_Receivers in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_Receivers_swigregister(GQ7ContinuousBIT_GNSS_Receivers) - -class GQ7ContinuousBIT_GNSS(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS(*args)) - RESPONSE_OFFSET = _mscl.GQ7ContinuousBIT_GNSS_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_GENERAL_FLAGS - RECEIVERS_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_RECEIVERS_FLAGS - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_flags(self) - - def general(self): - return _mscl.GQ7ContinuousBIT_GNSS_general(self) - - def receivers(self): - return _mscl.GQ7ContinuousBIT_GNSS_receivers(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS - -# Register GQ7ContinuousBIT_GNSS in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_swigregister(GQ7ContinuousBIT_GNSS) - -class GQ7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.GQ7ContinuousBIT_swiginit(self, _mscl.new_GQ7ContinuousBIT(bytes)) - - def system(self): - return _mscl.GQ7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.GQ7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.GQ7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.GQ7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.GQ7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.GQ7ContinuousBIT_bufferOverrun(self) - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_gnssDataFrameFault(self) - - def imu(self): - return _mscl.GQ7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.GQ7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.GQ7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.GQ7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.GQ7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.GQ7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.GQ7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.GQ7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.GQ7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.GQ7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_pressureSelfTestFail(self) - - def filter(self): - return _mscl.GQ7ContinuousBIT_filter(self) - - def filterClockFault(self): - return _mscl.GQ7ContinuousBIT_filterClockFault(self) - - def filterHardwareFault(self): - return _mscl.GQ7ContinuousBIT_filterHardwareFault(self) - - def filterTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingUnderrun(self) - - def filterCommunicationError(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationError(self) - - def filterCommunicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorImuSpi(self) - - def filterCommunicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorGnssSpi(self) - - def filterCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsSpi(self) - - def filterCommunicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsUart(self) - - def gnss(self): - return _mscl.GQ7ContinuousBIT_gnss(self) - - def gnssClockFault(self): - return _mscl.GQ7ContinuousBIT_gnssClockFault(self) - - def gnssHardwareFault(self): - return _mscl.GQ7ContinuousBIT_gnssHardwareFault(self) - - def gnssCommunicationError(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationError(self) - - def gnssCommunicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSerial(self) - - def gnssCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSpi(self) - - def gnssCommunicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_gpsTimeFault(self) - - def gnssTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_gnssTimingOverrun(self) - - def gnssPowerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver1(self) - - def gnssFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver1(self) - - def gnssShortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna1(self) - - def gnssOpenAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna1(self) - - def gnssSolutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver1(self) - - def gnssPowerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver2(self) - - def gnssFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver2(self) - - def gnssShortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna2(self) - - def gnssOpenAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna2(self) - - def gnssSolutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_rtkDongleFault(self) - - def as_MipDataPoints(self): - return _mscl.GQ7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT - -# Register GQ7ContinuousBIT in _mscl: -_mscl.GQ7ContinuousBIT_swigregister(GQ7ContinuousBIT) - -class MipSharedDataFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EVENT_SOURCE_NONE = _mscl.MipSharedDataFields_EVENT_SOURCE_NONE - EVENT_SOURCE_UNKNOWN = _mscl.MipSharedDataFields_EVENT_SOURCE_UNKNOWN - - def __init__(self): - _mscl.MipSharedDataFields_swiginit(self, _mscl.new_MipSharedDataFields()) - - def hasEventSource(self): - return _mscl.MipSharedDataFields_hasEventSource(self) - - def eventSource(self): - return _mscl.MipSharedDataFields_eventSource(self) - - def hasTicks(self): - return _mscl.MipSharedDataFields_hasTicks(self) - - def ticks(self): - return _mscl.MipSharedDataFields_ticks(self) - - def hasDeltaTicks(self): - return _mscl.MipSharedDataFields_hasDeltaTicks(self) - - def deltaTicks(self): - return _mscl.MipSharedDataFields_deltaTicks(self) - - def hasGpsTimestamp(self): - return _mscl.MipSharedDataFields_hasGpsTimestamp(self) - - def gpsTimestamp(self): - return _mscl.MipSharedDataFields_gpsTimestamp(self) - - def gpsTimestampValid(self): - return _mscl.MipSharedDataFields_gpsTimestampValid(self) - - def hasDeltaTime(self): - return _mscl.MipSharedDataFields_hasDeltaTime(self) - - def deltaTime(self): - return _mscl.MipSharedDataFields_deltaTime(self) - - def hasReferenceTime(self): - return _mscl.MipSharedDataFields_hasReferenceTime(self) - - def referenceTime(self): - return _mscl.MipSharedDataFields_referenceTime(self) - - def hasDeltaReferenceTime(self): - return _mscl.MipSharedDataFields_hasDeltaReferenceTime(self) - - def deltaReferenceTime(self): - return _mscl.MipSharedDataFields_deltaReferenceTime(self) - - def hasExternalTimestamp(self): - return _mscl.MipSharedDataFields_hasExternalTimestamp(self) - - def externalTimestamp(self): - return _mscl.MipSharedDataFields_externalTimestamp(self) - - def externalTimestampValid(self): - return _mscl.MipSharedDataFields_externalTimestampValid(self) - - def hasDeltaExternalTime(self): - return _mscl.MipSharedDataFields_hasDeltaExternalTime(self) - - def deltaExternalTime(self): - return _mscl.MipSharedDataFields_deltaExternalTime(self) - - def deltaExternalTimeValid(self): - return _mscl.MipSharedDataFields_deltaExternalTimeValid(self) - - def get(self, *args): - return _mscl.MipSharedDataFields_get(self, *args) - __swig_destroy__ = _mscl.delete_MipSharedDataFields - -# Register MipSharedDataFields in _mscl: -_mscl.MipSharedDataFields_swigregister(MipSharedDataFields) - -class MipDataPacket(MipPacket): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipDataPacket_swiginit(self, _mscl.new_MipDataPacket(*args)) - - def data(self): - return _mscl.MipDataPacket_data(self) - - def shared(self): - return _mscl.MipDataPacket_shared(self) - - def collectedTimestamp(self): - return _mscl.MipDataPacket_collectedTimestamp(self) - - def deviceTimestamp(self): - return _mscl.MipDataPacket_deviceTimestamp(self) - - def hasDeviceTime(self): - return _mscl.MipDataPacket_hasDeviceTime(self) - - def deviceTimeValid(self): - return _mscl.MipDataPacket_deviceTimeValid(self) - - def deviceTimeFlags(self): - return _mscl.MipDataPacket_deviceTimeFlags(self) - __swig_destroy__ = _mscl.delete_MipDataPacket - -# Register MipDataPacket in _mscl: -_mscl.MipDataPacket_swigregister(MipDataPacket) - -class RawBytePacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INVALID_PACKET = _mscl.RawBytePacket_INVALID_PACKET - DATA_PACKET = _mscl.RawBytePacket_DATA_PACKET - COMMAND_PACKET = _mscl.RawBytePacket_COMMAND_PACKET - NO_PACKET_FOUND = _mscl.RawBytePacket_NO_PACKET_FOUND - FROM_READ = _mscl.RawBytePacket_FROM_READ - FROM_SEND = _mscl.RawBytePacket_FROM_SEND - - def __init__(self): - _mscl.RawBytePacket_swiginit(self, _mscl.new_RawBytePacket()) - - def type(self, *args): - return _mscl.RawBytePacket_type(self, *args) - - def source(self, *args): - return _mscl.RawBytePacket_source(self, *args) - - def payload(self, *args): - return _mscl.RawBytePacket_payload(self, *args) - __swig_destroy__ = _mscl.delete_RawBytePacket - -# Register RawBytePacket in _mscl: -_mscl.RawBytePacket_swigregister(RawBytePacket) - -class MipNodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_MipNodeFeatures - - @staticmethod - def isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - - def supportsCategory(self, dataClass): - return _mscl.MipNodeFeatures_supportsCategory(self, dataClass) - - def supportsCommand(self, commandId): - return _mscl.MipNodeFeatures_supportsCommand(self, commandId) - - def supportedCommands(self): - return _mscl.MipNodeFeatures_supportedCommands(self) - - def supportsChannelField(self, fieldId): - return _mscl.MipNodeFeatures_supportsChannelField(self, fieldId) - - def filterSupportedChannelFields(self, fields): - return _mscl.MipNodeFeatures_filterSupportedChannelFields(self, fields) - - def supportedChannelFields(self, *args): - return _mscl.MipNodeFeatures_supportedChannelFields(self, *args) - - def supportedSampleRates(self, dataClass): - return _mscl.MipNodeFeatures_supportedSampleRates(self, dataClass) - - def baseDataRate(self, dataClass): - return _mscl.MipNodeFeatures_baseDataRate(self, dataClass) - - def gnssReceiverInfo(self): - return _mscl.MipNodeFeatures_gnssReceiverInfo(self) - - def supportedGnssSources(self): - return _mscl.MipNodeFeatures_supportedGnssSources(self) - - def supportedSensorRanges(self, *args): - return _mscl.MipNodeFeatures_supportedSensorRanges(self, *args) - - def getCommPortInfo(self): - return _mscl.MipNodeFeatures_getCommPortInfo(self) - - def useLegacyIdsForEnableDataStream(self): - return _mscl.MipNodeFeatures_useLegacyIdsForEnableDataStream(self) - - def supportedHeadingUpdateOptions(self): - return _mscl.MipNodeFeatures_supportedHeadingUpdateOptions(self) - - def supportedHeadingAlignmentMethods(self): - return _mscl.MipNodeFeatures_supportedHeadingAlignmentMethods(self) - - def supportedStatusSelectors(self): - return _mscl.MipNodeFeatures_supportedStatusSelectors(self) - - def supportedEstimationControlOptions(self): - return _mscl.MipNodeFeatures_supportedEstimationControlOptions(self) - - def supportedVehicleModeTypes(self): - return _mscl.MipNodeFeatures_supportedVehicleModeTypes(self) - - def supportedAdaptiveMeasurementModes(self): - return _mscl.MipNodeFeatures_supportedAdaptiveMeasurementModes(self) - - def supportedAdaptiveFilterLevels(self): - return _mscl.MipNodeFeatures_supportedAdaptiveFilterLevels(self) - - def supportedAidingMeasurementOptions(self): - return _mscl.MipNodeFeatures_supportedAidingMeasurementOptions(self) - - def supportedPpsSourceOptions(self): - return _mscl.MipNodeFeatures_supportedPpsSourceOptions(self) - - def supportedGpioPins(self): - return _mscl.MipNodeFeatures_supportedGpioPins(self) - - def supportedGpioPinModes(self, feature, behavior): - return _mscl.MipNodeFeatures_supportedGpioPinModes(self, feature, behavior) - - def supportedGpioBehaviors(self, feature, pin): - return _mscl.MipNodeFeatures_supportedGpioBehaviors(self, feature, pin) - - def supportedGpioFeatures(self, pin): - return _mscl.MipNodeFeatures_supportedGpioFeatures(self, pin) - - def supportedGpioConfigurations(self): - return _mscl.MipNodeFeatures_supportedGpioConfigurations(self) - - def supportedGnssSignalConfigurations(self): - return _mscl.MipNodeFeatures_supportedGnssSignalConfigurations(self) - - def supportedDeclinationSources(self): - return _mscl.MipNodeFeatures_supportedDeclinationSources(self) - - def supportedInclinationSources(self): - return _mscl.MipNodeFeatures_supportedInclinationSources(self) - - def supportedMagneticMagnitudeSources(self): - return _mscl.MipNodeFeatures_supportedMagneticMagnitudeSources(self) - - def supportedEventThresholdChannels(self): - return _mscl.MipNodeFeatures_supportedEventThresholdChannels(self) - - def supportedEventActionInfo(self): - return _mscl.MipNodeFeatures_supportedEventActionInfo(self) - - def supportedEventTriggerInfo(self): - return _mscl.MipNodeFeatures_supportedEventTriggerInfo(self) - - def supportsNorthCompensation(self): - return _mscl.MipNodeFeatures_supportsNorthCompensation(self) - - def supportedLowPassFilterChannelFields(self): - return _mscl.MipNodeFeatures_supportedLowPassFilterChannelFields(self) - - def maxMeasurementReferenceFrameId(self): - return _mscl.MipNodeFeatures_maxMeasurementReferenceFrameId(self) - -# Register MipNodeFeatures in _mscl: -_mscl.MipNodeFeatures_swigregister(MipNodeFeatures) - -def MipNodeFeatures_isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - -class MipNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.MipNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - def getConfigCommandBytes(self): - return _mscl.MipNode_getConfigCommandBytes(self) - - def sendCommandBytes(self, *args): - return _mscl.MipNode_sendCommandBytes(self, *args) - - @staticmethod - def deviceName(serial): - return _mscl.MipNode_deviceName(serial) - - def connection(self): - return _mscl.MipNode_connection(self) - - def features(self): - return _mscl.MipNode_features(self) - - def clearDeviceInfo(self): - return _mscl.MipNode_clearDeviceInfo(self) - - def lastCommunicationTime(self): - return _mscl.MipNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.MipNode_lastDeviceState(self) - - def setLastDeviceState(self, state): - return _mscl.MipNode_setLastDeviceState(self, state) - - def firmwareVersion(self): - return _mscl.MipNode_firmwareVersion(self) - - def model(self): - return _mscl.MipNode_model(self) - - def modelName(self): - return _mscl.MipNode_modelName(self) - - def modelNumber(self): - return _mscl.MipNode_modelNumber(self) - - def serialNumber(self): - return _mscl.MipNode_serialNumber(self) - - def lotNumber(self): - return _mscl.MipNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.MipNode_deviceOptions(self) - - def timeout(self, *args): - return _mscl.MipNode_timeout(self, *args) - - def name(self): - return _mscl.MipNode_name(self) - - def ping(self): - return _mscl.MipNode_ping(self) - - def setToIdle(self): - return _mscl.MipNode_setToIdle(self) - - def cyclePower(self): - return _mscl.MipNode_cyclePower(self) - - def resume(self): - return _mscl.MipNode_resume(self) - - def getCommunicationMode(self): - return _mscl.MipNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.MipNode_setCommunicationMode(self, communicationMode) - - def saveSettingsAsStartup(self, *args): - return _mscl.MipNode_saveSettingsAsStartup(self, *args) - - def loadStartupSettings(self, *args): - return _mscl.MipNode_loadStartupSettings(self, *args) - - def loadFactoryDefaultSettings(self, *args): - return _mscl.MipNode_loadFactoryDefaultSettings(self, *args) - - def setUARTBaudRate(self, *args): - return _mscl.MipNode_setUARTBaudRate(self, *args) - - def getUARTBaudRate(self, portId=1): - return _mscl.MipNode_getUARTBaudRate(self, portId) - - def getRawBytePackets(self, timeout=0, maxPackets=0): - return _mscl.MipNode_getRawBytePackets(self, timeout, maxPackets) - -# Register MipNode in _mscl: -_mscl.MipNode_swigregister(MipNode) - -def MipNode_deviceName(serial): - return _mscl.MipNode_deviceName(serial) - -class InertialNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.InertialNode_swiginit(self, _mscl.new_InertialNode(connection)) - __swig_destroy__ = _mscl.delete_InertialNode - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.InertialNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.InertialNode_totalPackets(self) - - def pollData(self, *args): - return _mscl.InertialNode_pollData(self, *args) - - def getDataRateBase(self, dataClass): - return _mscl.InertialNode_getDataRateBase(self, dataClass) - - def getActiveChannelFields(self, dataClass): - return _mscl.InertialNode_getActiveChannelFields(self, dataClass) - - def setActiveChannelFields(self, dataClass, channels): - return _mscl.InertialNode_setActiveChannelFields(self, dataClass, channels) - - def saveActiveChannelFields(self, dataClass): - return _mscl.InertialNode_saveActiveChannelFields(self, dataClass) - - def setFactoryStreamingChannels(self, option): - return _mscl.InertialNode_setFactoryStreamingChannels(self, option) - - def getInterfaceControl(self, interfaceId): - return _mscl.InertialNode_getInterfaceControl(self, interfaceId) - - def setInterfaceControl(self, *args): - return _mscl.InertialNode_setInterfaceControl(self, *args) - - def getCommunicationMode(self): - return _mscl.InertialNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.InertialNode_setCommunicationMode(self, communicationMode) - - def isDataStreamEnabled(self, dataClass): - return _mscl.InertialNode_isDataStreamEnabled(self, dataClass) - - def enableDataStream(self, dataClass, enable=True, resumeStreaming=True): - return _mscl.InertialNode_enableDataStream(self, dataClass, enable, resumeStreaming) - - def resetFilter(self): - return _mscl.InertialNode_resetFilter(self) - - def runFilter(self): - return _mscl.InertialNode_runFilter(self) - - def getAutoInitialization(self): - return _mscl.InertialNode_getAutoInitialization(self) - - def setAutoInitialization(self, enable): - return _mscl.InertialNode_setAutoInitialization(self, enable) - - def getAltitudeAid(self): - return _mscl.InertialNode_getAltitudeAid(self) - - def setAltitudeAid(self, enable): - return _mscl.InertialNode_setAltitudeAid(self, enable) - - def getPitchRollAid(self): - return _mscl.InertialNode_getPitchRollAid(self) - - def setPitchRollAid(self, enable): - return _mscl.InertialNode_setPitchRollAid(self, enable) - - def enableVerticalGyroConstraint(self, enable): - return _mscl.InertialNode_enableVerticalGyroConstraint(self, enable) - - def verticalGyroConstraintEnabled(self): - return _mscl.InertialNode_verticalGyroConstraintEnabled(self) - - def enableWheeledVehicleConstraint(self, enable): - return _mscl.InertialNode_enableWheeledVehicleConstraint(self, enable) - - def wheeledVehicleConstraintEnabled(self): - return _mscl.InertialNode_wheeledVehicleConstraintEnabled(self) - - def setVelocityZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setVelocityZUPT(self, ZUPTSettings) - - def getVelocityZUPT(self): - return _mscl.InertialNode_getVelocityZUPT(self) - - def setAngularRateZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setAngularRateZUPT(self, ZUPTSettings) - - def getAngularRateZUPT(self): - return _mscl.InertialNode_getAngularRateZUPT(self) - - def cmdedVelZUPT(self): - return _mscl.InertialNode_cmdedVelZUPT(self) - - def cmdedAngRateZUPT(self): - return _mscl.InertialNode_cmdedAngRateZUPT(self) - - def setInitialAttitude(self, attitude): - return _mscl.InertialNode_setInitialAttitude(self, attitude) - - def setInitialHeading(self, heading): - return _mscl.InertialNode_setInitialHeading(self, heading) - - def getInitialFilterConfiguration(self): - return _mscl.InertialNode_getInitialFilterConfiguration(self) - - def setInitialFilterConfiguration(self, filterConfig): - return _mscl.InertialNode_setInitialFilterConfiguration(self, filterConfig) - - def getSensorToVehicleRotation_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleRotation_eulerAngles(self) - - def setSensorToVehicleRotation_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleRotation_eulerAngles(self, angles) - - def getSensorToVehicleRotation_matrix(self): - return _mscl.InertialNode_getSensorToVehicleRotation_matrix(self) - - def setSensorToVehicleRotation_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleRotation_matrix(self, dcm) - - def getSensorToVehicleRotation_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleRotation_quaternion(self) - - def setSensorToVehicleRotation_quaternion(self, rotation): - return _mscl.InertialNode_setSensorToVehicleRotation_quaternion(self, rotation) - - def getSensorToVehicleTransform_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleTransform_eulerAngles(self) - - def setSensorToVehicleTransform_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleTransform_eulerAngles(self, angles) - - def getSensorToVehicleTransform_matrix(self): - return _mscl.InertialNode_getSensorToVehicleTransform_matrix(self) - - def setSensorToVehicleTransform_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleTransform_matrix(self, dcm) - - def getSensorToVehicleTransform_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleTransform_quaternion(self) - - def setSensorToVehicleTransform_quaternion(self, transformation): - return _mscl.InertialNode_setSensorToVehicleTransform_quaternion(self, transformation) - - def getSensorToVehicleOffset(self): - return _mscl.InertialNode_getSensorToVehicleOffset(self) - - def setSensorToVehicleOffset(self, offset): - return _mscl.InertialNode_setSensorToVehicleOffset(self, offset) - - def getAntennaOffset(self): - return _mscl.InertialNode_getAntennaOffset(self) - - def setAntennaOffset(self, offset): - return _mscl.InertialNode_setAntennaOffset(self, offset) - - def getGNSSAssistedFixControl(self): - return _mscl.InertialNode_getGNSSAssistedFixControl(self) - - def setGNSSAssistedFixControl(self, enableAssistedFix): - return _mscl.InertialNode_setGNSSAssistedFixControl(self, enableAssistedFix) - - def getGNSSAssistTimeUpdate(self): - return _mscl.InertialNode_getGNSSAssistTimeUpdate(self) - - def setGNSSAssistTimeUpdate(self, timeUpdate): - return _mscl.InertialNode_setGNSSAssistTimeUpdate(self, timeUpdate) - - def getGPSTimeUpdate(self, timeFrame): - return _mscl.InertialNode_getGPSTimeUpdate(self, timeFrame) - - def setGPSTimeUpdate(self, arg2, timeData): - return _mscl.InertialNode_setGPSTimeUpdate(self, arg2, timeData) - - def setConstellationSettings(self, dataToUse): - return _mscl.InertialNode_setConstellationSettings(self, dataToUse) - - def getConstellationSettings(self): - return _mscl.InertialNode_getConstellationSettings(self) - - def setSBASSettings(self, dataToUse): - return _mscl.InertialNode_setSBASSettings(self, dataToUse) - - def getSBASSettings(self): - return _mscl.InertialNode_getSBASSettings(self) - - def setAccelerometerBias(self, biasVector): - return _mscl.InertialNode_setAccelerometerBias(self, biasVector) - - def getAccelerometerBias(self): - return _mscl.InertialNode_getAccelerometerBias(self) - - def setGyroBias(self, biasVector): - return _mscl.InertialNode_setGyroBias(self, biasVector) - - def getGyroBias(self): - return _mscl.InertialNode_getGyroBias(self) - - def captureGyroBias(self, samplingTime): - return _mscl.InertialNode_captureGyroBias(self, samplingTime) - - def findMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_findMagnetometerCaptureAutoCalibration(self) - - def saveMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_saveMagnetometerCaptureAutoCalibration(self) - - def setMagnetometerSoftIronMatrix(self, matrix): - return _mscl.InertialNode_setMagnetometerSoftIronMatrix(self, matrix) - - def getMagnetometerSoftIronMatrix(self): - return _mscl.InertialNode_getMagnetometerSoftIronMatrix(self) - - def setMagnetometerHardIronOffset(self, offsetVector): - return _mscl.InertialNode_setMagnetometerHardIronOffset(self, offsetVector) - - def getMagnetometerHardIronOffset(self): - return _mscl.InertialNode_getMagnetometerHardIronOffset(self) - - def setConingAndScullingEnable(self, enable): - return _mscl.InertialNode_setConingAndScullingEnable(self, enable) - - def getConingAndScullingEnable(self): - return _mscl.InertialNode_getConingAndScullingEnable(self) - - def setLowPassFilterSettings(self, data): - return _mscl.InertialNode_setLowPassFilterSettings(self, data) - - def getLowPassFilterSettings(self, dataDescriptors): - return _mscl.InertialNode_getLowPassFilterSettings(self, dataDescriptors) - - def setComplementaryFilterSettings(self, data): - return _mscl.InertialNode_setComplementaryFilterSettings(self, data) - - def getComplementaryFilterSettings(self): - return _mscl.InertialNode_getComplementaryFilterSettings(self) - - def getBasicDeviceStatus(self): - return _mscl.InertialNode_getBasicDeviceStatus(self) - - def getDiagnosticDeviceStatus(self): - return _mscl.InertialNode_getDiagnosticDeviceStatus(self) - - def sendRawRTCM_2_3Message(self, theMessage): - return _mscl.InertialNode_sendRawRTCM_2_3Message(self, theMessage) - - def setVehicleDynamicsMode(self, mode): - return _mscl.InertialNode_setVehicleDynamicsMode(self, mode) - - def getVehicleDynamicsMode(self): - return _mscl.InertialNode_getVehicleDynamicsMode(self) - - def setEstimationControlFlags(self, flags): - return _mscl.InertialNode_setEstimationControlFlags(self, flags) - - def getEstimationControlFlags(self): - return _mscl.InertialNode_getEstimationControlFlags(self) - - def setInclinationSource(self, options): - return _mscl.InertialNode_setInclinationSource(self, options) - - def getInclinationSource(self): - return _mscl.InertialNode_getInclinationSource(self) - - def setDeclinationSource(self, options): - return _mscl.InertialNode_setDeclinationSource(self, options) - - def getDeclinationSource(self): - return _mscl.InertialNode_getDeclinationSource(self) - - def setMagneticFieldMagnitudeSource(self, options): - return _mscl.InertialNode_setMagneticFieldMagnitudeSource(self, options) - - def getMagneticFieldMagnitudeSource(self): - return _mscl.InertialNode_getMagneticFieldMagnitudeSource(self) - - def setGNSS_SourceControl(self, gnssSource): - return _mscl.InertialNode_setGNSS_SourceControl(self, gnssSource) - - def getGNSS_SourceControl(self): - return _mscl.InertialNode_getGNSS_SourceControl(self) - - def sendExternalGNSSUpdate(self, gnssUpdateData): - return _mscl.InertialNode_sendExternalGNSSUpdate(self, gnssUpdateData) - - def setHeadingUpdateControl(self, headingUpdateOptions): - return _mscl.InertialNode_setHeadingUpdateControl(self, headingUpdateOptions) - - def tareOrientation(self, axisValue): - return _mscl.InertialNode_tareOrientation(self, axisValue) - - def getHeadingUpdateControl(self): - return _mscl.InertialNode_getHeadingUpdateControl(self) - - def setGravityErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setGravityErrorAdaptiveMeasurement(self, data) - - def getGravityErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getGravityErrorAdaptiveMeasurement(self) - - def setMagnetometerErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagnetometerErrorAdaptiveMeasurement(self, data) - - def getMagnetometerErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagnetometerErrorAdaptiveMeasurement(self) - - def setMagDipAngleErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagDipAngleErrorAdaptiveMeasurement(self, data) - - def getMagDipAngleErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagDipAngleErrorAdaptiveMeasurement(self) - - def setMagNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setMagNoiseStandardDeviation(self, data) - - def getMagNoiseStandardDeviation(self): - return _mscl.InertialNode_getMagNoiseStandardDeviation(self) - - def setGravNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGravNoiseStandardDeviation(self, data) - - def getGravNoiseStandardDeviation(self): - return _mscl.InertialNode_getGravNoiseStandardDeviation(self) - - def setAccelNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setAccelNoiseStandardDeviation(self, data) - - def getAccelNoiseStandardDeviation(self): - return _mscl.InertialNode_getAccelNoiseStandardDeviation(self) - - def setGyroNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGyroNoiseStandardDeviation(self, data) - - def getGyroNoiseStandardDeviation(self): - return _mscl.InertialNode_getGyroNoiseStandardDeviation(self) - - def setPressureAltNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setPressureAltNoiseStandardDeviation(self, data) - - def getPressureAltNoiseStandardDeviation(self): - return _mscl.InertialNode_getPressureAltNoiseStandardDeviation(self) - - def setHardIronOffsetProcessNoise(self, data): - return _mscl.InertialNode_setHardIronOffsetProcessNoise(self, data) - - def getHardIronOffsetProcessNoise(self): - return _mscl.InertialNode_getHardIronOffsetProcessNoise(self) - - def setAccelBiasModelParams(self, data): - return _mscl.InertialNode_setAccelBiasModelParams(self, data) - - def getAccelBiasModelParams(self): - return _mscl.InertialNode_getAccelBiasModelParams(self) - - def setGyroBiasModelParams(self, data): - return _mscl.InertialNode_setGyroBiasModelParams(self, data) - - def getGyroBiasModelParams(self): - return _mscl.InertialNode_getGyroBiasModelParams(self) - - def setSoftIronMatrixProcessNoise(self, data): - return _mscl.InertialNode_setSoftIronMatrixProcessNoise(self, data) - - def getSoftIronMatrixProcessNoise(self): - return _mscl.InertialNode_getSoftIronMatrixProcessNoise(self) - - def setFixedReferencePosition(self, data): - return _mscl.InertialNode_setFixedReferencePosition(self, data) - - def getFixedReferencePosition(self): - return _mscl.InertialNode_getFixedReferencePosition(self) - - def setGPSDynamicsMode(self, data): - return _mscl.InertialNode_setGPSDynamicsMode(self, data) - - def getGPSDynamicsMode(self): - return _mscl.InertialNode_getGPSDynamicsMode(self) - - def setDevicePowerState(self, device, data): - return _mscl.InertialNode_setDevicePowerState(self, device, data) - - def getDevicePowerState(self, device): - return _mscl.InertialNode_getDevicePowerState(self, device) - - def setDeviceStreamFormat(self, device, data): - return _mscl.InertialNode_setDeviceStreamFormat(self, device, data) - - def getDeviceStreamFormat(self, device): - return _mscl.InertialNode_getDeviceStreamFormat(self, device) - - def setSignalConditioningSettings(self, data): - return _mscl.InertialNode_setSignalConditioningSettings(self, data) - - def getSignalConditioningSettings(self): - return _mscl.InertialNode_getSignalConditioningSettings(self) - - def setEnableDisableMeasurements(self, data): - return _mscl.InertialNode_setEnableDisableMeasurements(self, data) - - def getEnableDisableMeasurements(self): - return _mscl.InertialNode_getEnableDisableMeasurements(self) - - def setGravityNoiseMinimum(self, data): - return _mscl.InertialNode_setGravityNoiseMinimum(self, data) - - def getGravityNoiseMinimum(self): - return _mscl.InertialNode_getGravityNoiseMinimum(self) - - def sendExternalHeadingUpdate(self, *args): - return _mscl.InertialNode_sendExternalHeadingUpdate(self, *args) - - def aidingMeasurementEnabled(self, aidingSource): - return _mscl.InertialNode_aidingMeasurementEnabled(self, aidingSource) - - def enableDisableAidingMeasurement(self, aidingSource, enable): - return _mscl.InertialNode_enableDisableAidingMeasurement(self, aidingSource, enable) - - def getAdaptiveFilterOptions(self): - return _mscl.InertialNode_getAdaptiveFilterOptions(self) - - def setAdaptiveFilterOptions(self, options): - return _mscl.InertialNode_setAdaptiveFilterOptions(self, options) - - def getMultiAntennaOffset(self, receiverId): - return _mscl.InertialNode_getMultiAntennaOffset(self, receiverId) - - def setMultiAntennaOffset(self, receiverId, offset): - return _mscl.InertialNode_setMultiAntennaOffset(self, receiverId, offset) - - def getPpsSource(self): - return _mscl.InertialNode_getPpsSource(self) - - def setPpsSource(self, ppsSource): - return _mscl.InertialNode_setPpsSource(self, ppsSource) - - def getOdometerConfig(self): - return _mscl.InertialNode_getOdometerConfig(self) - - def setOdometerConfig(self, config): - return _mscl.InertialNode_setOdometerConfig(self, config) - - def getSensorRange(self, sensorRangeType): - return _mscl.InertialNode_getSensorRange(self, sensorRangeType) - - def setSensorRange(self, *args): - return _mscl.InertialNode_setSensorRange(self, *args) - - def getGpioConfig(self, pin): - return _mscl.InertialNode_getGpioConfig(self, pin) - - def setGpioConfig(self, config): - return _mscl.InertialNode_setGpioConfig(self, config) - - def getGpioState(self, pin): - return _mscl.InertialNode_getGpioState(self, pin) - - def setGpioState(self, pin, state): - return _mscl.InertialNode_setGpioState(self, pin, state) - - def getEventTriggerMode(self, instance): - return _mscl.InertialNode_getEventTriggerMode(self, instance) - - def setEventTriggerMode(self, instance, mode): - return _mscl.InertialNode_setEventTriggerMode(self, instance, mode) - - def getEventTriggerConfig(self, instance): - return _mscl.InertialNode_getEventTriggerConfig(self, instance) - - def setEventTriggerConfig(self, config): - return _mscl.InertialNode_setEventTriggerConfig(self, config) - - def getEventActionConfig(self, instance): - return _mscl.InertialNode_getEventActionConfig(self, instance) - - def setEventActionConfig(self, config, validateSupported=True): - return _mscl.InertialNode_setEventActionConfig(self, config, validateSupported) - - def getAntennaLeverArmCal(self): - return _mscl.InertialNode_getAntennaLeverArmCal(self) - - def setAntennaLeverArmCal(self, config): - return _mscl.InertialNode_setAntennaLeverArmCal(self, config) - - def getRelativePositionReference(self): - return _mscl.InertialNode_getRelativePositionReference(self) - - def setRelativePositionReference(self, ref): - return _mscl.InertialNode_setRelativePositionReference(self, ref) - - def getLeverArmReferenceOffset(self): - return _mscl.InertialNode_getLeverArmReferenceOffset(self) - - def setLeverArmReferenceOffset(self, offset): - return _mscl.InertialNode_setLeverArmReferenceOffset(self, offset) - - def sendExternalSpeedMeasurementUpdate(self, tow, speed, unc): - return _mscl.InertialNode_sendExternalSpeedMeasurementUpdate(self, tow, speed, unc) - - def getSpeedMeasurementOffset(self): - return _mscl.InertialNode_getSpeedMeasurementOffset(self) - - def setSpeedMeasurementOffset(self, offset): - return _mscl.InertialNode_setSpeedMeasurementOffset(self, offset) - - def getGnssSignalConfig(self): - return _mscl.InertialNode_getGnssSignalConfig(self) - - def setGnssSignalConfig(self, config): - return _mscl.InertialNode_setGnssSignalConfig(self, config) - - def getGnssSpartnConfig(self): - return _mscl.InertialNode_getGnssSpartnConfig(self) - - def setGnssSpartnConfig(self, config): - return _mscl.InertialNode_setGnssSpartnConfig(self, config) - - def rtkEnabled(self): - return _mscl.InertialNode_rtkEnabled(self) - - def enableRtk(self, enable): - return _mscl.InertialNode_enableRtk(self, enable) - - def getEventTriggerStatus(self, *args): - return _mscl.InertialNode_getEventTriggerStatus(self, *args) - - def getEventActionStatus(self, *args): - return _mscl.InertialNode_getEventActionStatus(self, *args) - - def getNmeaMessageFormat(self): - return _mscl.InertialNode_getNmeaMessageFormat(self) - - def setNmeaMessageFormat(self, nmeaFormats): - return _mscl.InertialNode_setNmeaMessageFormat(self, nmeaFormats) - - def getAidingMeasurementReferenceFrames(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrames(self, *args) - - def setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds=False): - return _mscl.InertialNode_setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds) - - def getAidingMeasurementReferenceFrame(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrame(self, *args) - - def setAidingMeasurementReferenceFrame(self, id, frame): - return _mscl.InertialNode_setAidingMeasurementReferenceFrame(self, id, frame) - - def setAidingMeasurementResponseMode(self, mode): - return _mscl.InertialNode_setAidingMeasurementResponseMode(self, mode) - - def getAidingMeasurementResponseMode(self): - return _mscl.InertialNode_getAidingMeasurementResponseMode(self) - - def sendAidingMeasurement(self, *args): - return _mscl.InertialNode_sendAidingMeasurement(self, *args) - - def sendAidingMeasurement_readEcho(self, *args): - return _mscl.InertialNode_sendAidingMeasurement_readEcho(self, *args) - -# Register InertialNode in _mscl: -_mscl.InertialNode_swigregister(InertialNode) - -class DisplacementNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.DisplacementNode_swiginit(self, _mscl.new_DisplacementNode(connection)) - __swig_destroy__ = _mscl.delete_DisplacementNode - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.DisplacementNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - @staticmethod - def deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - - def connection(self): - return _mscl.DisplacementNode_connection(self) - - def features(self): - return _mscl.DisplacementNode_features(self) - - def lastCommunicationTime(self): - return _mscl.DisplacementNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.DisplacementNode_lastDeviceState(self) - - def firmwareVersion(self): - return _mscl.DisplacementNode_firmwareVersion(self) - - def model(self): - return _mscl.DisplacementNode_model(self) - - def modelName(self): - return _mscl.DisplacementNode_modelName(self) - - def modelNumber(self): - return _mscl.DisplacementNode_modelNumber(self) - - def serialNumber(self): - return _mscl.DisplacementNode_serialNumber(self) - - def lotNumber(self): - return _mscl.DisplacementNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.DisplacementNode_deviceOptions(self) - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.DisplacementNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.DisplacementNode_totalPackets(self) - - def timeout(self, *args): - return _mscl.DisplacementNode_timeout(self, *args) - - def name(self): - return _mscl.DisplacementNode_name(self) - - def ping(self): - return _mscl.DisplacementNode_ping(self) - - def setToIdle(self): - return _mscl.DisplacementNode_setToIdle(self) - - def cyclePower(self): - return _mscl.DisplacementNode_cyclePower(self) - - def resume(self): - return _mscl.DisplacementNode_resume(self) - - def getDisplacementOutputDataRate(self): - return _mscl.DisplacementNode_getDisplacementOutputDataRate(self) - - def getAnalogToDisplacementCal(self): - return _mscl.DisplacementNode_getAnalogToDisplacementCal(self) - - def setDeviceTime(self, *args): - return _mscl.DisplacementNode_setDeviceTime(self, *args) - -# Register DisplacementNode in _mscl: -_mscl.DisplacementNode_swigregister(DisplacementNode) - -def DisplacementNode_deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - -class RTKNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.RTKNode_swiginit(self, _mscl.new_RTKNode(connection)) - __swig_destroy__ = _mscl.delete_RTKNode - - def getCommunicationMode(self): - return _mscl.RTKNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.RTKNode_setCommunicationMode(self, communicationMode) - - def getDeviceStatusFlags(self): - return _mscl.RTKNode_getDeviceStatusFlags(self) - - def getActivationCode(self): - return _mscl.RTKNode_getActivationCode(self) - - def getStatusBitfieldVersion(self): - return _mscl.RTKNode_getStatusBitfieldVersion(self) - -# Register RTKNode in _mscl: -_mscl.RTKNode_swigregister(RTKNode) - -class ChannelData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelData___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelData___bool__(self) - - def __len__(self): - return _mscl.ChannelData___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelData___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelData___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelData___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelData___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelData___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelData___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelData_pop(self) - - def append(self, x): - return _mscl.ChannelData_append(self, x) - - def empty(self): - return _mscl.ChannelData_empty(self) - - def size(self): - return _mscl.ChannelData_size(self) - - def swap(self, v): - return _mscl.ChannelData_swap(self, v) - - def begin(self): - return _mscl.ChannelData_begin(self) - - def end(self): - return _mscl.ChannelData_end(self) - - def rbegin(self): - return _mscl.ChannelData_rbegin(self) - - def rend(self): - return _mscl.ChannelData_rend(self) - - def clear(self): - return _mscl.ChannelData_clear(self) - - def get_allocator(self): - return _mscl.ChannelData_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelData_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelData_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelData_swiginit(self, _mscl.new_ChannelData(*args)) - - def push_back(self, x): - return _mscl.ChannelData_push_back(self, x) - - def front(self): - return _mscl.ChannelData_front(self) - - def back(self): - return _mscl.ChannelData_back(self) - - def assign(self, n, x): - return _mscl.ChannelData_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelData_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelData_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelData_reserve(self, n) - - def capacity(self): - return _mscl.ChannelData_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelData - -# Register ChannelData in _mscl: -_mscl.ChannelData_swigregister(ChannelData) - -class MipDataPoints(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPoints_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPoints___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPoints___bool__(self) - - def __len__(self): - return _mscl.MipDataPoints___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPoints___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPoints___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPoints___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPoints___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPoints___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPoints___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPoints_pop(self) - - def append(self, x): - return _mscl.MipDataPoints_append(self, x) - - def empty(self): - return _mscl.MipDataPoints_empty(self) - - def size(self): - return _mscl.MipDataPoints_size(self) - - def swap(self, v): - return _mscl.MipDataPoints_swap(self, v) - - def begin(self): - return _mscl.MipDataPoints_begin(self) - - def end(self): - return _mscl.MipDataPoints_end(self) - - def rbegin(self): - return _mscl.MipDataPoints_rbegin(self) - - def rend(self): - return _mscl.MipDataPoints_rend(self) - - def clear(self): - return _mscl.MipDataPoints_clear(self) - - def get_allocator(self): - return _mscl.MipDataPoints_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPoints_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPoints_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPoints_swiginit(self, _mscl.new_MipDataPoints(*args)) - - def push_back(self, x): - return _mscl.MipDataPoints_push_back(self, x) - - def front(self): - return _mscl.MipDataPoints_front(self) - - def back(self): - return _mscl.MipDataPoints_back(self) - - def assign(self, n, x): - return _mscl.MipDataPoints_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPoints_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPoints_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPoints_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPoints_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPoints - -# Register MipDataPoints in _mscl: -_mscl.MipDataPoints_swigregister(MipDataPoints) - -class Bytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bytes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bytes___nonzero__(self) - - def __bool__(self): - return _mscl.Bytes___bool__(self) - - def __len__(self): - return _mscl.Bytes___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bytes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bytes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bytes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bytes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bytes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bytes___setitem__(self, *args) - - def pop(self): - return _mscl.Bytes_pop(self) - - def append(self, x): - return _mscl.Bytes_append(self, x) - - def empty(self): - return _mscl.Bytes_empty(self) - - def size(self): - return _mscl.Bytes_size(self) - - def swap(self, v): - return _mscl.Bytes_swap(self, v) - - def begin(self): - return _mscl.Bytes_begin(self) - - def end(self): - return _mscl.Bytes_end(self) - - def rbegin(self): - return _mscl.Bytes_rbegin(self) - - def rend(self): - return _mscl.Bytes_rend(self) - - def clear(self): - return _mscl.Bytes_clear(self) - - def get_allocator(self): - return _mscl.Bytes_get_allocator(self) - - def pop_back(self): - return _mscl.Bytes_pop_back(self) - - def erase(self, *args): - return _mscl.Bytes_erase(self, *args) - - def __init__(self, *args): - _mscl.Bytes_swiginit(self, _mscl.new_Bytes(*args)) - - def push_back(self, x): - return _mscl.Bytes_push_back(self, x) - - def front(self): - return _mscl.Bytes_front(self) - - def back(self): - return _mscl.Bytes_back(self) - - def assign(self, n, x): - return _mscl.Bytes_assign(self, n, x) - - def resize(self, *args): - return _mscl.Bytes_resize(self, *args) - - def insert(self, *args): - return _mscl.Bytes_insert(self, *args) - - def reserve(self, n): - return _mscl.Bytes_reserve(self, n) - - def capacity(self): - return _mscl.Bytes_capacity(self) - __swig_destroy__ = _mscl.delete_Bytes - -# Register Bytes in _mscl: -_mscl.Bytes_swigregister(Bytes) - -class BytesCollection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.BytesCollection_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.BytesCollection___nonzero__(self) - - def __bool__(self): - return _mscl.BytesCollection___bool__(self) - - def __len__(self): - return _mscl.BytesCollection___len__(self) - - def __getslice__(self, i, j): - return _mscl.BytesCollection___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.BytesCollection___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.BytesCollection___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.BytesCollection___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.BytesCollection___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.BytesCollection___setitem__(self, *args) - - def pop(self): - return _mscl.BytesCollection_pop(self) - - def append(self, x): - return _mscl.BytesCollection_append(self, x) - - def empty(self): - return _mscl.BytesCollection_empty(self) - - def size(self): - return _mscl.BytesCollection_size(self) - - def swap(self, v): - return _mscl.BytesCollection_swap(self, v) - - def begin(self): - return _mscl.BytesCollection_begin(self) - - def end(self): - return _mscl.BytesCollection_end(self) - - def rbegin(self): - return _mscl.BytesCollection_rbegin(self) - - def rend(self): - return _mscl.BytesCollection_rend(self) - - def clear(self): - return _mscl.BytesCollection_clear(self) - - def get_allocator(self): - return _mscl.BytesCollection_get_allocator(self) - - def pop_back(self): - return _mscl.BytesCollection_pop_back(self) - - def erase(self, *args): - return _mscl.BytesCollection_erase(self, *args) - - def __init__(self, *args): - _mscl.BytesCollection_swiginit(self, _mscl.new_BytesCollection(*args)) - - def push_back(self, x): - return _mscl.BytesCollection_push_back(self, x) - - def front(self): - return _mscl.BytesCollection_front(self) - - def back(self): - return _mscl.BytesCollection_back(self) - - def assign(self, n, x): - return _mscl.BytesCollection_assign(self, n, x) - - def resize(self, *args): - return _mscl.BytesCollection_resize(self, *args) - - def insert(self, *args): - return _mscl.BytesCollection_insert(self, *args) - - def reserve(self, n): - return _mscl.BytesCollection_reserve(self, n) - - def capacity(self): - return _mscl.BytesCollection_capacity(self) - __swig_destroy__ = _mscl.delete_BytesCollection - -# Register BytesCollection in _mscl: -_mscl.BytesCollection_swigregister(BytesCollection) - -class DeviceList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceList___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceList___bool__(self) - - def __len__(self): - return _mscl.DeviceList___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceList___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceList___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceList_has_key(self, key) - - def keys(self): - return _mscl.DeviceList_keys(self) - - def values(self): - return _mscl.DeviceList_values(self) - - def items(self): - return _mscl.DeviceList_items(self) - - def __contains__(self, key): - return _mscl.DeviceList___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceList_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceList_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceList___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceList_asdict(self) - - def __init__(self, *args): - _mscl.DeviceList_swiginit(self, _mscl.new_DeviceList(*args)) - - def empty(self): - return _mscl.DeviceList_empty(self) - - def size(self): - return _mscl.DeviceList_size(self) - - def swap(self, v): - return _mscl.DeviceList_swap(self, v) - - def begin(self): - return _mscl.DeviceList_begin(self) - - def end(self): - return _mscl.DeviceList_end(self) - - def rbegin(self): - return _mscl.DeviceList_rbegin(self) - - def rend(self): - return _mscl.DeviceList_rend(self) - - def clear(self): - return _mscl.DeviceList_clear(self) - - def get_allocator(self): - return _mscl.DeviceList_get_allocator(self) - - def count(self, x): - return _mscl.DeviceList_count(self, x) - - def erase(self, *args): - return _mscl.DeviceList_erase(self, *args) - - def find(self, x): - return _mscl.DeviceList_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceList_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceList_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceList - -# Register DeviceList in _mscl: -_mscl.DeviceList_swigregister(DeviceList) - -class NodeDiscoveries(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NodeDiscoveries_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NodeDiscoveries___nonzero__(self) - - def __bool__(self): - return _mscl.NodeDiscoveries___bool__(self) - - def __len__(self): - return _mscl.NodeDiscoveries___len__(self) - - def __getslice__(self, i, j): - return _mscl.NodeDiscoveries___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NodeDiscoveries___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NodeDiscoveries___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NodeDiscoveries___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NodeDiscoveries___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NodeDiscoveries___setitem__(self, *args) - - def pop(self): - return _mscl.NodeDiscoveries_pop(self) - - def append(self, x): - return _mscl.NodeDiscoveries_append(self, x) - - def empty(self): - return _mscl.NodeDiscoveries_empty(self) - - def size(self): - return _mscl.NodeDiscoveries_size(self) - - def swap(self, v): - return _mscl.NodeDiscoveries_swap(self, v) - - def begin(self): - return _mscl.NodeDiscoveries_begin(self) - - def end(self): - return _mscl.NodeDiscoveries_end(self) - - def rbegin(self): - return _mscl.NodeDiscoveries_rbegin(self) - - def rend(self): - return _mscl.NodeDiscoveries_rend(self) - - def clear(self): - return _mscl.NodeDiscoveries_clear(self) - - def get_allocator(self): - return _mscl.NodeDiscoveries_get_allocator(self) - - def pop_back(self): - return _mscl.NodeDiscoveries_pop_back(self) - - def erase(self, *args): - return _mscl.NodeDiscoveries_erase(self, *args) - - def __init__(self, *args): - _mscl.NodeDiscoveries_swiginit(self, _mscl.new_NodeDiscoveries(*args)) - - def push_back(self, x): - return _mscl.NodeDiscoveries_push_back(self, x) - - def front(self): - return _mscl.NodeDiscoveries_front(self) - - def back(self): - return _mscl.NodeDiscoveries_back(self) - - def assign(self, n, x): - return _mscl.NodeDiscoveries_assign(self, n, x) - - def resize(self, *args): - return _mscl.NodeDiscoveries_resize(self, *args) - - def insert(self, *args): - return _mscl.NodeDiscoveries_insert(self, *args) - - def reserve(self, n): - return _mscl.NodeDiscoveries_reserve(self, n) - - def capacity(self): - return _mscl.NodeDiscoveries_capacity(self) - __swig_destroy__ = _mscl.delete_NodeDiscoveries - -# Register NodeDiscoveries in _mscl: -_mscl.NodeDiscoveries_swigregister(NodeDiscoveries) - -class DataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.DataSweeps___bool__(self) - - def __len__(self): - return _mscl.DataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.DataSweeps_pop(self) - - def append(self, x): - return _mscl.DataSweeps_append(self, x) - - def empty(self): - return _mscl.DataSweeps_empty(self) - - def size(self): - return _mscl.DataSweeps_size(self) - - def swap(self, v): - return _mscl.DataSweeps_swap(self, v) - - def begin(self): - return _mscl.DataSweeps_begin(self) - - def end(self): - return _mscl.DataSweeps_end(self) - - def rbegin(self): - return _mscl.DataSweeps_rbegin(self) - - def rend(self): - return _mscl.DataSweeps_rend(self) - - def clear(self): - return _mscl.DataSweeps_clear(self) - - def get_allocator(self): - return _mscl.DataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.DataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.DataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.DataSweeps_swiginit(self, _mscl.new_DataSweeps(*args)) - - def push_back(self, x): - return _mscl.DataSweeps_push_back(self, x) - - def front(self): - return _mscl.DataSweeps_front(self) - - def back(self): - return _mscl.DataSweeps_back(self) - - def assign(self, n, x): - return _mscl.DataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.DataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.DataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.DataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_DataSweeps - -# Register DataSweeps in _mscl: -_mscl.DataSweeps_swigregister(DataSweeps) - -class LoggedDataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LoggedDataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LoggedDataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.LoggedDataSweeps___bool__(self) - - def __len__(self): - return _mscl.LoggedDataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.LoggedDataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LoggedDataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LoggedDataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LoggedDataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LoggedDataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LoggedDataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.LoggedDataSweeps_pop(self) - - def append(self, x): - return _mscl.LoggedDataSweeps_append(self, x) - - def empty(self): - return _mscl.LoggedDataSweeps_empty(self) - - def size(self): - return _mscl.LoggedDataSweeps_size(self) - - def swap(self, v): - return _mscl.LoggedDataSweeps_swap(self, v) - - def begin(self): - return _mscl.LoggedDataSweeps_begin(self) - - def end(self): - return _mscl.LoggedDataSweeps_end(self) - - def rbegin(self): - return _mscl.LoggedDataSweeps_rbegin(self) - - def rend(self): - return _mscl.LoggedDataSweeps_rend(self) - - def clear(self): - return _mscl.LoggedDataSweeps_clear(self) - - def get_allocator(self): - return _mscl.LoggedDataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.LoggedDataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.LoggedDataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.LoggedDataSweeps_swiginit(self, _mscl.new_LoggedDataSweeps(*args)) - - def push_back(self, x): - return _mscl.LoggedDataSweeps_push_back(self, x) - - def front(self): - return _mscl.LoggedDataSweeps_front(self) - - def back(self): - return _mscl.LoggedDataSweeps_back(self) - - def assign(self, n, x): - return _mscl.LoggedDataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.LoggedDataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.LoggedDataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.LoggedDataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.LoggedDataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweeps - -# Register LoggedDataSweeps in _mscl: -_mscl.LoggedDataSweeps_swigregister(LoggedDataSweeps) - -class MipDataPackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPackets___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPackets___bool__(self) - - def __len__(self): - return _mscl.MipDataPackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPackets___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPackets_pop(self) - - def append(self, x): - return _mscl.MipDataPackets_append(self, x) - - def empty(self): - return _mscl.MipDataPackets_empty(self) - - def size(self): - return _mscl.MipDataPackets_size(self) - - def swap(self, v): - return _mscl.MipDataPackets_swap(self, v) - - def begin(self): - return _mscl.MipDataPackets_begin(self) - - def end(self): - return _mscl.MipDataPackets_end(self) - - def rbegin(self): - return _mscl.MipDataPackets_rbegin(self) - - def rend(self): - return _mscl.MipDataPackets_rend(self) - - def clear(self): - return _mscl.MipDataPackets_clear(self) - - def get_allocator(self): - return _mscl.MipDataPackets_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPackets_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPackets_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPackets_swiginit(self, _mscl.new_MipDataPackets(*args)) - - def push_back(self, x): - return _mscl.MipDataPackets_push_back(self, x) - - def front(self): - return _mscl.MipDataPackets_front(self) - - def back(self): - return _mscl.MipDataPackets_back(self) - - def assign(self, n, x): - return _mscl.MipDataPackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPackets_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPackets_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPackets_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPackets_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPackets - -# Register MipDataPackets in _mscl: -_mscl.MipDataPackets_swigregister(MipDataPackets) - -class RawBytePackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RawBytePackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RawBytePackets___nonzero__(self) - - def __bool__(self): - return _mscl.RawBytePackets___bool__(self) - - def __len__(self): - return _mscl.RawBytePackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.RawBytePackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.RawBytePackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.RawBytePackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.RawBytePackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.RawBytePackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.RawBytePackets___setitem__(self, *args) - - def pop(self): - return _mscl.RawBytePackets_pop(self) - - def append(self, x): - return _mscl.RawBytePackets_append(self, x) - - def empty(self): - return _mscl.RawBytePackets_empty(self) - - def size(self): - return _mscl.RawBytePackets_size(self) - - def swap(self, v): - return _mscl.RawBytePackets_swap(self, v) - - def begin(self): - return _mscl.RawBytePackets_begin(self) - - def end(self): - return _mscl.RawBytePackets_end(self) - - def rbegin(self): - return _mscl.RawBytePackets_rbegin(self) - - def rend(self): - return _mscl.RawBytePackets_rend(self) - - def clear(self): - return _mscl.RawBytePackets_clear(self) - - def get_allocator(self): - return _mscl.RawBytePackets_get_allocator(self) - - def pop_back(self): - return _mscl.RawBytePackets_pop_back(self) - - def erase(self, *args): - return _mscl.RawBytePackets_erase(self, *args) - - def __init__(self, *args): - _mscl.RawBytePackets_swiginit(self, _mscl.new_RawBytePackets(*args)) - - def push_back(self, x): - return _mscl.RawBytePackets_push_back(self, x) - - def front(self): - return _mscl.RawBytePackets_front(self) - - def back(self): - return _mscl.RawBytePackets_back(self) - - def assign(self, n, x): - return _mscl.RawBytePackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.RawBytePackets_resize(self, *args) - - def insert(self, *args): - return _mscl.RawBytePackets_insert(self, *args) - - def reserve(self, n): - return _mscl.RawBytePackets_reserve(self, n) - - def capacity(self): - return _mscl.RawBytePackets_capacity(self) - __swig_destroy__ = _mscl.delete_RawBytePackets - -# Register RawBytePackets in _mscl: -_mscl.RawBytePackets_swigregister(RawBytePackets) - -class MipChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannels___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannels___bool__(self) - - def __len__(self): - return _mscl.MipChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannels___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannels_pop(self) - - def append(self, x): - return _mscl.MipChannels_append(self, x) - - def empty(self): - return _mscl.MipChannels_empty(self) - - def size(self): - return _mscl.MipChannels_size(self) - - def swap(self, v): - return _mscl.MipChannels_swap(self, v) - - def begin(self): - return _mscl.MipChannels_begin(self) - - def end(self): - return _mscl.MipChannels_end(self) - - def rbegin(self): - return _mscl.MipChannels_rbegin(self) - - def rend(self): - return _mscl.MipChannels_rend(self) - - def clear(self): - return _mscl.MipChannels_clear(self) - - def get_allocator(self): - return _mscl.MipChannels_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannels_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannels_swiginit(self, _mscl.new_MipChannels(*args)) - - def push_back(self, x): - return _mscl.MipChannels_push_back(self, x) - - def front(self): - return _mscl.MipChannels_front(self) - - def back(self): - return _mscl.MipChannels_back(self) - - def assign(self, n, x): - return _mscl.MipChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannels_reserve(self, n) - - def capacity(self): - return _mscl.MipChannels_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannels - -# Register MipChannels in _mscl: -_mscl.MipChannels_swigregister(MipChannels) - -class DataCollectionMethods(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataCollectionMethods_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataCollectionMethods___nonzero__(self) - - def __bool__(self): - return _mscl.DataCollectionMethods___bool__(self) - - def __len__(self): - return _mscl.DataCollectionMethods___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataCollectionMethods___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataCollectionMethods___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataCollectionMethods___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataCollectionMethods___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataCollectionMethods___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataCollectionMethods___setitem__(self, *args) - - def pop(self): - return _mscl.DataCollectionMethods_pop(self) - - def append(self, x): - return _mscl.DataCollectionMethods_append(self, x) - - def empty(self): - return _mscl.DataCollectionMethods_empty(self) - - def size(self): - return _mscl.DataCollectionMethods_size(self) - - def swap(self, v): - return _mscl.DataCollectionMethods_swap(self, v) - - def begin(self): - return _mscl.DataCollectionMethods_begin(self) - - def end(self): - return _mscl.DataCollectionMethods_end(self) - - def rbegin(self): - return _mscl.DataCollectionMethods_rbegin(self) - - def rend(self): - return _mscl.DataCollectionMethods_rend(self) - - def clear(self): - return _mscl.DataCollectionMethods_clear(self) - - def get_allocator(self): - return _mscl.DataCollectionMethods_get_allocator(self) - - def pop_back(self): - return _mscl.DataCollectionMethods_pop_back(self) - - def erase(self, *args): - return _mscl.DataCollectionMethods_erase(self, *args) - - def __init__(self, *args): - _mscl.DataCollectionMethods_swiginit(self, _mscl.new_DataCollectionMethods(*args)) - - def push_back(self, x): - return _mscl.DataCollectionMethods_push_back(self, x) - - def front(self): - return _mscl.DataCollectionMethods_front(self) - - def back(self): - return _mscl.DataCollectionMethods_back(self) - - def assign(self, n, x): - return _mscl.DataCollectionMethods_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataCollectionMethods_resize(self, *args) - - def insert(self, *args): - return _mscl.DataCollectionMethods_insert(self, *args) - - def reserve(self, n): - return _mscl.DataCollectionMethods_reserve(self, n) - - def capacity(self): - return _mscl.DataCollectionMethods_capacity(self) - __swig_destroy__ = _mscl.delete_DataCollectionMethods - -# Register DataCollectionMethods in _mscl: -_mscl.DataCollectionMethods_swigregister(DataCollectionMethods) - -class DataFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataFormats___nonzero__(self) - - def __bool__(self): - return _mscl.DataFormats___bool__(self) - - def __len__(self): - return _mscl.DataFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataFormats___setitem__(self, *args) - - def pop(self): - return _mscl.DataFormats_pop(self) - - def append(self, x): - return _mscl.DataFormats_append(self, x) - - def empty(self): - return _mscl.DataFormats_empty(self) - - def size(self): - return _mscl.DataFormats_size(self) - - def swap(self, v): - return _mscl.DataFormats_swap(self, v) - - def begin(self): - return _mscl.DataFormats_begin(self) - - def end(self): - return _mscl.DataFormats_end(self) - - def rbegin(self): - return _mscl.DataFormats_rbegin(self) - - def rend(self): - return _mscl.DataFormats_rend(self) - - def clear(self): - return _mscl.DataFormats_clear(self) - - def get_allocator(self): - return _mscl.DataFormats_get_allocator(self) - - def pop_back(self): - return _mscl.DataFormats_pop_back(self) - - def erase(self, *args): - return _mscl.DataFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.DataFormats_swiginit(self, _mscl.new_DataFormats(*args)) - - def push_back(self, x): - return _mscl.DataFormats_push_back(self, x) - - def front(self): - return _mscl.DataFormats_front(self) - - def back(self): - return _mscl.DataFormats_back(self) - - def assign(self, n, x): - return _mscl.DataFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.DataFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.DataFormats_reserve(self, n) - - def capacity(self): - return _mscl.DataFormats_capacity(self) - __swig_destroy__ = _mscl.delete_DataFormats - -# Register DataFormats in _mscl: -_mscl.DataFormats_swigregister(DataFormats) - -class WirelessSampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessSampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessSampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessSampleRates___bool__(self) - - def __len__(self): - return _mscl.WirelessSampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessSampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessSampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessSampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessSampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessSampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessSampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessSampleRates_pop(self) - - def append(self, x): - return _mscl.WirelessSampleRates_append(self, x) - - def empty(self): - return _mscl.WirelessSampleRates_empty(self) - - def size(self): - return _mscl.WirelessSampleRates_size(self) - - def swap(self, v): - return _mscl.WirelessSampleRates_swap(self, v) - - def begin(self): - return _mscl.WirelessSampleRates_begin(self) - - def end(self): - return _mscl.WirelessSampleRates_end(self) - - def rbegin(self): - return _mscl.WirelessSampleRates_rbegin(self) - - def rend(self): - return _mscl.WirelessSampleRates_rend(self) - - def clear(self): - return _mscl.WirelessSampleRates_clear(self) - - def get_allocator(self): - return _mscl.WirelessSampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessSampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessSampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessSampleRates_swiginit(self, _mscl.new_WirelessSampleRates(*args)) - - def push_back(self, x): - return _mscl.WirelessSampleRates_push_back(self, x) - - def front(self): - return _mscl.WirelessSampleRates_front(self) - - def back(self): - return _mscl.WirelessSampleRates_back(self) - - def assign(self, n, x): - return _mscl.WirelessSampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessSampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessSampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessSampleRates_reserve(self, n) - - def capacity(self): - return _mscl.WirelessSampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessSampleRates - -# Register WirelessSampleRates in _mscl: -_mscl.WirelessSampleRates_swigregister(WirelessSampleRates) - -class SamplingModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SamplingModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SamplingModes___nonzero__(self) - - def __bool__(self): - return _mscl.SamplingModes___bool__(self) - - def __len__(self): - return _mscl.SamplingModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SamplingModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SamplingModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SamplingModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SamplingModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SamplingModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SamplingModes___setitem__(self, *args) - - def pop(self): - return _mscl.SamplingModes_pop(self) - - def append(self, x): - return _mscl.SamplingModes_append(self, x) - - def empty(self): - return _mscl.SamplingModes_empty(self) - - def size(self): - return _mscl.SamplingModes_size(self) - - def swap(self, v): - return _mscl.SamplingModes_swap(self, v) - - def begin(self): - return _mscl.SamplingModes_begin(self) - - def end(self): - return _mscl.SamplingModes_end(self) - - def rbegin(self): - return _mscl.SamplingModes_rbegin(self) - - def rend(self): - return _mscl.SamplingModes_rend(self) - - def clear(self): - return _mscl.SamplingModes_clear(self) - - def get_allocator(self): - return _mscl.SamplingModes_get_allocator(self) - - def pop_back(self): - return _mscl.SamplingModes_pop_back(self) - - def erase(self, *args): - return _mscl.SamplingModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SamplingModes_swiginit(self, _mscl.new_SamplingModes(*args)) - - def push_back(self, x): - return _mscl.SamplingModes_push_back(self, x) - - def front(self): - return _mscl.SamplingModes_front(self) - - def back(self): - return _mscl.SamplingModes_back(self) - - def assign(self, n, x): - return _mscl.SamplingModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SamplingModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SamplingModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SamplingModes_reserve(self, n) - - def capacity(self): - return _mscl.SamplingModes_capacity(self) - __swig_destroy__ = _mscl.delete_SamplingModes - -# Register SamplingModes in _mscl: -_mscl.SamplingModes_swigregister(SamplingModes) - -class DefaultModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DefaultModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DefaultModes___nonzero__(self) - - def __bool__(self): - return _mscl.DefaultModes___bool__(self) - - def __len__(self): - return _mscl.DefaultModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DefaultModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DefaultModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DefaultModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DefaultModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DefaultModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DefaultModes___setitem__(self, *args) - - def pop(self): - return _mscl.DefaultModes_pop(self) - - def append(self, x): - return _mscl.DefaultModes_append(self, x) - - def empty(self): - return _mscl.DefaultModes_empty(self) - - def size(self): - return _mscl.DefaultModes_size(self) - - def swap(self, v): - return _mscl.DefaultModes_swap(self, v) - - def begin(self): - return _mscl.DefaultModes_begin(self) - - def end(self): - return _mscl.DefaultModes_end(self) - - def rbegin(self): - return _mscl.DefaultModes_rbegin(self) - - def rend(self): - return _mscl.DefaultModes_rend(self) - - def clear(self): - return _mscl.DefaultModes_clear(self) - - def get_allocator(self): - return _mscl.DefaultModes_get_allocator(self) - - def pop_back(self): - return _mscl.DefaultModes_pop_back(self) - - def erase(self, *args): - return _mscl.DefaultModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DefaultModes_swiginit(self, _mscl.new_DefaultModes(*args)) - - def push_back(self, x): - return _mscl.DefaultModes_push_back(self, x) - - def front(self): - return _mscl.DefaultModes_front(self) - - def back(self): - return _mscl.DefaultModes_back(self) - - def assign(self, n, x): - return _mscl.DefaultModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DefaultModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DefaultModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DefaultModes_reserve(self, n) - - def capacity(self): - return _mscl.DefaultModes_capacity(self) - __swig_destroy__ = _mscl.delete_DefaultModes - -# Register DefaultModes in _mscl: -_mscl.DefaultModes_swigregister(DefaultModes) - -class TransmitPowers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransmitPowers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransmitPowers___nonzero__(self) - - def __bool__(self): - return _mscl.TransmitPowers___bool__(self) - - def __len__(self): - return _mscl.TransmitPowers___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransmitPowers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransmitPowers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransmitPowers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransmitPowers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransmitPowers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransmitPowers___setitem__(self, *args) - - def pop(self): - return _mscl.TransmitPowers_pop(self) - - def append(self, x): - return _mscl.TransmitPowers_append(self, x) - - def empty(self): - return _mscl.TransmitPowers_empty(self) - - def size(self): - return _mscl.TransmitPowers_size(self) - - def swap(self, v): - return _mscl.TransmitPowers_swap(self, v) - - def begin(self): - return _mscl.TransmitPowers_begin(self) - - def end(self): - return _mscl.TransmitPowers_end(self) - - def rbegin(self): - return _mscl.TransmitPowers_rbegin(self) - - def rend(self): - return _mscl.TransmitPowers_rend(self) - - def clear(self): - return _mscl.TransmitPowers_clear(self) - - def get_allocator(self): - return _mscl.TransmitPowers_get_allocator(self) - - def pop_back(self): - return _mscl.TransmitPowers_pop_back(self) - - def erase(self, *args): - return _mscl.TransmitPowers_erase(self, *args) - - def __init__(self, *args): - _mscl.TransmitPowers_swiginit(self, _mscl.new_TransmitPowers(*args)) - - def push_back(self, x): - return _mscl.TransmitPowers_push_back(self, x) - - def front(self): - return _mscl.TransmitPowers_front(self) - - def back(self): - return _mscl.TransmitPowers_back(self) - - def assign(self, n, x): - return _mscl.TransmitPowers_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransmitPowers_resize(self, *args) - - def insert(self, *args): - return _mscl.TransmitPowers_insert(self, *args) - - def reserve(self, n): - return _mscl.TransmitPowers_reserve(self, n) - - def capacity(self): - return _mscl.TransmitPowers_capacity(self) - __swig_destroy__ = _mscl.delete_TransmitPowers - -# Register TransmitPowers in _mscl: -_mscl.TransmitPowers_swigregister(TransmitPowers) - -class ChannelGroupSettings(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroupSettings_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroupSettings___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroupSettings___bool__(self) - - def __len__(self): - return _mscl.ChannelGroupSettings___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroupSettings___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroupSettings___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroupSettings___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroupSettings___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroupSettings___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroupSettings___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroupSettings_pop(self) - - def append(self, x): - return _mscl.ChannelGroupSettings_append(self, x) - - def empty(self): - return _mscl.ChannelGroupSettings_empty(self) - - def size(self): - return _mscl.ChannelGroupSettings_size(self) - - def swap(self, v): - return _mscl.ChannelGroupSettings_swap(self, v) - - def begin(self): - return _mscl.ChannelGroupSettings_begin(self) - - def end(self): - return _mscl.ChannelGroupSettings_end(self) - - def rbegin(self): - return _mscl.ChannelGroupSettings_rbegin(self) - - def rend(self): - return _mscl.ChannelGroupSettings_rend(self) - - def clear(self): - return _mscl.ChannelGroupSettings_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroupSettings_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroupSettings_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroupSettings_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroupSettings_swiginit(self, _mscl.new_ChannelGroupSettings(*args)) - - def push_back(self, x): - return _mscl.ChannelGroupSettings_push_back(self, x) - - def front(self): - return _mscl.ChannelGroupSettings_front(self) - - def back(self): - return _mscl.ChannelGroupSettings_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroupSettings_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroupSettings_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroupSettings_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroupSettings_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroupSettings_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroupSettings - -# Register ChannelGroupSettings in _mscl: -_mscl.ChannelGroupSettings_swigregister(ChannelGroupSettings) - -class FatigueModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.FatigueModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.FatigueModes___nonzero__(self) - - def __bool__(self): - return _mscl.FatigueModes___bool__(self) - - def __len__(self): - return _mscl.FatigueModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.FatigueModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.FatigueModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.FatigueModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.FatigueModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.FatigueModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.FatigueModes___setitem__(self, *args) - - def pop(self): - return _mscl.FatigueModes_pop(self) - - def append(self, x): - return _mscl.FatigueModes_append(self, x) - - def empty(self): - return _mscl.FatigueModes_empty(self) - - def size(self): - return _mscl.FatigueModes_size(self) - - def swap(self, v): - return _mscl.FatigueModes_swap(self, v) - - def begin(self): - return _mscl.FatigueModes_begin(self) - - def end(self): - return _mscl.FatigueModes_end(self) - - def rbegin(self): - return _mscl.FatigueModes_rbegin(self) - - def rend(self): - return _mscl.FatigueModes_rend(self) - - def clear(self): - return _mscl.FatigueModes_clear(self) - - def get_allocator(self): - return _mscl.FatigueModes_get_allocator(self) - - def pop_back(self): - return _mscl.FatigueModes_pop_back(self) - - def erase(self, *args): - return _mscl.FatigueModes_erase(self, *args) - - def __init__(self, *args): - _mscl.FatigueModes_swiginit(self, _mscl.new_FatigueModes(*args)) - - def push_back(self, x): - return _mscl.FatigueModes_push_back(self, x) - - def front(self): - return _mscl.FatigueModes_front(self) - - def back(self): - return _mscl.FatigueModes_back(self) - - def assign(self, n, x): - return _mscl.FatigueModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.FatigueModes_resize(self, *args) - - def insert(self, *args): - return _mscl.FatigueModes_insert(self, *args) - - def reserve(self, n): - return _mscl.FatigueModes_reserve(self, n) - - def capacity(self): - return _mscl.FatigueModes_capacity(self) - __swig_destroy__ = _mscl.delete_FatigueModes - -# Register FatigueModes in _mscl: -_mscl.FatigueModes_swigregister(FatigueModes) - -class Filters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Filters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Filters___nonzero__(self) - - def __bool__(self): - return _mscl.Filters___bool__(self) - - def __len__(self): - return _mscl.Filters___len__(self) - - def __getslice__(self, i, j): - return _mscl.Filters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Filters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Filters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Filters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Filters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Filters___setitem__(self, *args) - - def pop(self): - return _mscl.Filters_pop(self) - - def append(self, x): - return _mscl.Filters_append(self, x) - - def empty(self): - return _mscl.Filters_empty(self) - - def size(self): - return _mscl.Filters_size(self) - - def swap(self, v): - return _mscl.Filters_swap(self, v) - - def begin(self): - return _mscl.Filters_begin(self) - - def end(self): - return _mscl.Filters_end(self) - - def rbegin(self): - return _mscl.Filters_rbegin(self) - - def rend(self): - return _mscl.Filters_rend(self) - - def clear(self): - return _mscl.Filters_clear(self) - - def get_allocator(self): - return _mscl.Filters_get_allocator(self) - - def pop_back(self): - return _mscl.Filters_pop_back(self) - - def erase(self, *args): - return _mscl.Filters_erase(self, *args) - - def __init__(self, *args): - _mscl.Filters_swiginit(self, _mscl.new_Filters(*args)) - - def push_back(self, x): - return _mscl.Filters_push_back(self, x) - - def front(self): - return _mscl.Filters_front(self) - - def back(self): - return _mscl.Filters_back(self) - - def assign(self, n, x): - return _mscl.Filters_assign(self, n, x) - - def resize(self, *args): - return _mscl.Filters_resize(self, *args) - - def insert(self, *args): - return _mscl.Filters_insert(self, *args) - - def reserve(self, n): - return _mscl.Filters_reserve(self, n) - - def capacity(self): - return _mscl.Filters_capacity(self) - __swig_destroy__ = _mscl.delete_Filters - -# Register Filters in _mscl: -_mscl.Filters_swigregister(Filters) - -class HighPassFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HighPassFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HighPassFilters___nonzero__(self) - - def __bool__(self): - return _mscl.HighPassFilters___bool__(self) - - def __len__(self): - return _mscl.HighPassFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.HighPassFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HighPassFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HighPassFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HighPassFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HighPassFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HighPassFilters___setitem__(self, *args) - - def pop(self): - return _mscl.HighPassFilters_pop(self) - - def append(self, x): - return _mscl.HighPassFilters_append(self, x) - - def empty(self): - return _mscl.HighPassFilters_empty(self) - - def size(self): - return _mscl.HighPassFilters_size(self) - - def swap(self, v): - return _mscl.HighPassFilters_swap(self, v) - - def begin(self): - return _mscl.HighPassFilters_begin(self) - - def end(self): - return _mscl.HighPassFilters_end(self) - - def rbegin(self): - return _mscl.HighPassFilters_rbegin(self) - - def rend(self): - return _mscl.HighPassFilters_rend(self) - - def clear(self): - return _mscl.HighPassFilters_clear(self) - - def get_allocator(self): - return _mscl.HighPassFilters_get_allocator(self) - - def pop_back(self): - return _mscl.HighPassFilters_pop_back(self) - - def erase(self, *args): - return _mscl.HighPassFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.HighPassFilters_swiginit(self, _mscl.new_HighPassFilters(*args)) - - def push_back(self, x): - return _mscl.HighPassFilters_push_back(self, x) - - def front(self): - return _mscl.HighPassFilters_front(self) - - def back(self): - return _mscl.HighPassFilters_back(self) - - def assign(self, n, x): - return _mscl.HighPassFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.HighPassFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.HighPassFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.HighPassFilters_reserve(self, n) - - def capacity(self): - return _mscl.HighPassFilters_capacity(self) - __swig_destroy__ = _mscl.delete_HighPassFilters - -# Register HighPassFilters in _mscl: -_mscl.HighPassFilters_swigregister(HighPassFilters) - -class StorageLimitModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StorageLimitModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StorageLimitModes___nonzero__(self) - - def __bool__(self): - return _mscl.StorageLimitModes___bool__(self) - - def __len__(self): - return _mscl.StorageLimitModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.StorageLimitModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StorageLimitModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StorageLimitModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StorageLimitModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StorageLimitModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StorageLimitModes___setitem__(self, *args) - - def pop(self): - return _mscl.StorageLimitModes_pop(self) - - def append(self, x): - return _mscl.StorageLimitModes_append(self, x) - - def empty(self): - return _mscl.StorageLimitModes_empty(self) - - def size(self): - return _mscl.StorageLimitModes_size(self) - - def swap(self, v): - return _mscl.StorageLimitModes_swap(self, v) - - def begin(self): - return _mscl.StorageLimitModes_begin(self) - - def end(self): - return _mscl.StorageLimitModes_end(self) - - def rbegin(self): - return _mscl.StorageLimitModes_rbegin(self) - - def rend(self): - return _mscl.StorageLimitModes_rend(self) - - def clear(self): - return _mscl.StorageLimitModes_clear(self) - - def get_allocator(self): - return _mscl.StorageLimitModes_get_allocator(self) - - def pop_back(self): - return _mscl.StorageLimitModes_pop_back(self) - - def erase(self, *args): - return _mscl.StorageLimitModes_erase(self, *args) - - def __init__(self, *args): - _mscl.StorageLimitModes_swiginit(self, _mscl.new_StorageLimitModes(*args)) - - def push_back(self, x): - return _mscl.StorageLimitModes_push_back(self, x) - - def front(self): - return _mscl.StorageLimitModes_front(self) - - def back(self): - return _mscl.StorageLimitModes_back(self) - - def assign(self, n, x): - return _mscl.StorageLimitModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.StorageLimitModes_resize(self, *args) - - def insert(self, *args): - return _mscl.StorageLimitModes_insert(self, *args) - - def reserve(self, n): - return _mscl.StorageLimitModes_reserve(self, n) - - def capacity(self): - return _mscl.StorageLimitModes_capacity(self) - __swig_destroy__ = _mscl.delete_StorageLimitModes - -# Register StorageLimitModes in _mscl: -_mscl.StorageLimitModes_swigregister(StorageLimitModes) - -class InputRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.InputRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.InputRanges___nonzero__(self) - - def __bool__(self): - return _mscl.InputRanges___bool__(self) - - def __len__(self): - return _mscl.InputRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.InputRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.InputRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.InputRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.InputRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.InputRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.InputRanges___setitem__(self, *args) - - def pop(self): - return _mscl.InputRanges_pop(self) - - def append(self, x): - return _mscl.InputRanges_append(self, x) - - def empty(self): - return _mscl.InputRanges_empty(self) - - def size(self): - return _mscl.InputRanges_size(self) - - def swap(self, v): - return _mscl.InputRanges_swap(self, v) - - def begin(self): - return _mscl.InputRanges_begin(self) - - def end(self): - return _mscl.InputRanges_end(self) - - def rbegin(self): - return _mscl.InputRanges_rbegin(self) - - def rend(self): - return _mscl.InputRanges_rend(self) - - def clear(self): - return _mscl.InputRanges_clear(self) - - def get_allocator(self): - return _mscl.InputRanges_get_allocator(self) - - def pop_back(self): - return _mscl.InputRanges_pop_back(self) - - def erase(self, *args): - return _mscl.InputRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.InputRanges_swiginit(self, _mscl.new_InputRanges(*args)) - - def push_back(self, x): - return _mscl.InputRanges_push_back(self, x) - - def front(self): - return _mscl.InputRanges_front(self) - - def back(self): - return _mscl.InputRanges_back(self) - - def assign(self, n, x): - return _mscl.InputRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.InputRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.InputRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.InputRanges_reserve(self, n) - - def capacity(self): - return _mscl.InputRanges_capacity(self) - __swig_destroy__ = _mscl.delete_InputRanges - -# Register InputRanges in _mscl: -_mscl.InputRanges_swigregister(InputRanges) - -class DataModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataModes___nonzero__(self) - - def __bool__(self): - return _mscl.DataModes___bool__(self) - - def __len__(self): - return _mscl.DataModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataModes___setitem__(self, *args) - - def pop(self): - return _mscl.DataModes_pop(self) - - def append(self, x): - return _mscl.DataModes_append(self, x) - - def empty(self): - return _mscl.DataModes_empty(self) - - def size(self): - return _mscl.DataModes_size(self) - - def swap(self, v): - return _mscl.DataModes_swap(self, v) - - def begin(self): - return _mscl.DataModes_begin(self) - - def end(self): - return _mscl.DataModes_end(self) - - def rbegin(self): - return _mscl.DataModes_rbegin(self) - - def rend(self): - return _mscl.DataModes_rend(self) - - def clear(self): - return _mscl.DataModes_clear(self) - - def get_allocator(self): - return _mscl.DataModes_get_allocator(self) - - def pop_back(self): - return _mscl.DataModes_pop_back(self) - - def erase(self, *args): - return _mscl.DataModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DataModes_swiginit(self, _mscl.new_DataModes(*args)) - - def push_back(self, x): - return _mscl.DataModes_push_back(self, x) - - def front(self): - return _mscl.DataModes_front(self) - - def back(self): - return _mscl.DataModes_back(self) - - def assign(self, n, x): - return _mscl.DataModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DataModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DataModes_reserve(self, n) - - def capacity(self): - return _mscl.DataModes_capacity(self) - __swig_destroy__ = _mscl.delete_DataModes - -# Register DataModes in _mscl: -_mscl.DataModes_swigregister(DataModes) - -class CommProtocols(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommProtocols_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommProtocols___nonzero__(self) - - def __bool__(self): - return _mscl.CommProtocols___bool__(self) - - def __len__(self): - return _mscl.CommProtocols___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommProtocols___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommProtocols___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommProtocols___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommProtocols___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommProtocols___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommProtocols___setitem__(self, *args) - - def pop(self): - return _mscl.CommProtocols_pop(self) - - def append(self, x): - return _mscl.CommProtocols_append(self, x) - - def empty(self): - return _mscl.CommProtocols_empty(self) - - def size(self): - return _mscl.CommProtocols_size(self) - - def swap(self, v): - return _mscl.CommProtocols_swap(self, v) - - def begin(self): - return _mscl.CommProtocols_begin(self) - - def end(self): - return _mscl.CommProtocols_end(self) - - def rbegin(self): - return _mscl.CommProtocols_rbegin(self) - - def rend(self): - return _mscl.CommProtocols_rend(self) - - def clear(self): - return _mscl.CommProtocols_clear(self) - - def get_allocator(self): - return _mscl.CommProtocols_get_allocator(self) - - def pop_back(self): - return _mscl.CommProtocols_pop_back(self) - - def erase(self, *args): - return _mscl.CommProtocols_erase(self, *args) - - def __init__(self, *args): - _mscl.CommProtocols_swiginit(self, _mscl.new_CommProtocols(*args)) - - def push_back(self, x): - return _mscl.CommProtocols_push_back(self, x) - - def front(self): - return _mscl.CommProtocols_front(self) - - def back(self): - return _mscl.CommProtocols_back(self) - - def assign(self, n, x): - return _mscl.CommProtocols_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommProtocols_resize(self, *args) - - def insert(self, *args): - return _mscl.CommProtocols_insert(self, *args) - - def reserve(self, n): - return _mscl.CommProtocols_reserve(self, n) - - def capacity(self): - return _mscl.CommProtocols_capacity(self) - __swig_destroy__ = _mscl.delete_CommProtocols - -# Register CommProtocols in _mscl: -_mscl.CommProtocols_swigregister(CommProtocols) - -class Voltages(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Voltages_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Voltages___nonzero__(self) - - def __bool__(self): - return _mscl.Voltages___bool__(self) - - def __len__(self): - return _mscl.Voltages___len__(self) - - def __getslice__(self, i, j): - return _mscl.Voltages___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Voltages___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Voltages___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Voltages___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Voltages___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Voltages___setitem__(self, *args) - - def pop(self): - return _mscl.Voltages_pop(self) - - def append(self, x): - return _mscl.Voltages_append(self, x) - - def empty(self): - return _mscl.Voltages_empty(self) - - def size(self): - return _mscl.Voltages_size(self) - - def swap(self, v): - return _mscl.Voltages_swap(self, v) - - def begin(self): - return _mscl.Voltages_begin(self) - - def end(self): - return _mscl.Voltages_end(self) - - def rbegin(self): - return _mscl.Voltages_rbegin(self) - - def rend(self): - return _mscl.Voltages_rend(self) - - def clear(self): - return _mscl.Voltages_clear(self) - - def get_allocator(self): - return _mscl.Voltages_get_allocator(self) - - def pop_back(self): - return _mscl.Voltages_pop_back(self) - - def erase(self, *args): - return _mscl.Voltages_erase(self, *args) - - def __init__(self, *args): - _mscl.Voltages_swiginit(self, _mscl.new_Voltages(*args)) - - def push_back(self, x): - return _mscl.Voltages_push_back(self, x) - - def front(self): - return _mscl.Voltages_front(self) - - def back(self): - return _mscl.Voltages_back(self) - - def assign(self, n, x): - return _mscl.Voltages_assign(self, n, x) - - def resize(self, *args): - return _mscl.Voltages_resize(self, *args) - - def insert(self, *args): - return _mscl.Voltages_insert(self, *args) - - def reserve(self, n): - return _mscl.Voltages_reserve(self, n) - - def capacity(self): - return _mscl.Voltages_capacity(self) - __swig_destroy__ = _mscl.delete_Voltages - -# Register Voltages in _mscl: -_mscl.Voltages_swigregister(Voltages) - -class SensorOutputModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorOutputModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorOutputModes___nonzero__(self) - - def __bool__(self): - return _mscl.SensorOutputModes___bool__(self) - - def __len__(self): - return _mscl.SensorOutputModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorOutputModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorOutputModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorOutputModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorOutputModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorOutputModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorOutputModes___setitem__(self, *args) - - def pop(self): - return _mscl.SensorOutputModes_pop(self) - - def append(self, x): - return _mscl.SensorOutputModes_append(self, x) - - def empty(self): - return _mscl.SensorOutputModes_empty(self) - - def size(self): - return _mscl.SensorOutputModes_size(self) - - def swap(self, v): - return _mscl.SensorOutputModes_swap(self, v) - - def begin(self): - return _mscl.SensorOutputModes_begin(self) - - def end(self): - return _mscl.SensorOutputModes_end(self) - - def rbegin(self): - return _mscl.SensorOutputModes_rbegin(self) - - def rend(self): - return _mscl.SensorOutputModes_rend(self) - - def clear(self): - return _mscl.SensorOutputModes_clear(self) - - def get_allocator(self): - return _mscl.SensorOutputModes_get_allocator(self) - - def pop_back(self): - return _mscl.SensorOutputModes_pop_back(self) - - def erase(self, *args): - return _mscl.SensorOutputModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorOutputModes_swiginit(self, _mscl.new_SensorOutputModes(*args)) - - def push_back(self, x): - return _mscl.SensorOutputModes_push_back(self, x) - - def front(self): - return _mscl.SensorOutputModes_front(self) - - def back(self): - return _mscl.SensorOutputModes_back(self) - - def assign(self, n, x): - return _mscl.SensorOutputModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorOutputModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorOutputModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorOutputModes_reserve(self, n) - - def capacity(self): - return _mscl.SensorOutputModes_capacity(self) - __swig_destroy__ = _mscl.delete_SensorOutputModes - -# Register SensorOutputModes in _mscl: -_mscl.SensorOutputModes_swigregister(SensorOutputModes) - -class CfcFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CfcFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CfcFilters___nonzero__(self) - - def __bool__(self): - return _mscl.CfcFilters___bool__(self) - - def __len__(self): - return _mscl.CfcFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.CfcFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CfcFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CfcFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CfcFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CfcFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CfcFilters___setitem__(self, *args) - - def pop(self): - return _mscl.CfcFilters_pop(self) - - def append(self, x): - return _mscl.CfcFilters_append(self, x) - - def empty(self): - return _mscl.CfcFilters_empty(self) - - def size(self): - return _mscl.CfcFilters_size(self) - - def swap(self, v): - return _mscl.CfcFilters_swap(self, v) - - def begin(self): - return _mscl.CfcFilters_begin(self) - - def end(self): - return _mscl.CfcFilters_end(self) - - def rbegin(self): - return _mscl.CfcFilters_rbegin(self) - - def rend(self): - return _mscl.CfcFilters_rend(self) - - def clear(self): - return _mscl.CfcFilters_clear(self) - - def get_allocator(self): - return _mscl.CfcFilters_get_allocator(self) - - def pop_back(self): - return _mscl.CfcFilters_pop_back(self) - - def erase(self, *args): - return _mscl.CfcFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.CfcFilters_swiginit(self, _mscl.new_CfcFilters(*args)) - - def push_back(self, x): - return _mscl.CfcFilters_push_back(self, x) - - def front(self): - return _mscl.CfcFilters_front(self) - - def back(self): - return _mscl.CfcFilters_back(self) - - def assign(self, n, x): - return _mscl.CfcFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.CfcFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.CfcFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.CfcFilters_reserve(self, n) - - def capacity(self): - return _mscl.CfcFilters_capacity(self) - __swig_destroy__ = _mscl.delete_CfcFilters - -# Register CfcFilters in _mscl: -_mscl.CfcFilters_swigregister(CfcFilters) - -class TransducerTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransducerTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransducerTypes___nonzero__(self) - - def __bool__(self): - return _mscl.TransducerTypes___bool__(self) - - def __len__(self): - return _mscl.TransducerTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransducerTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransducerTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransducerTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransducerTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransducerTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransducerTypes___setitem__(self, *args) - - def pop(self): - return _mscl.TransducerTypes_pop(self) - - def append(self, x): - return _mscl.TransducerTypes_append(self, x) - - def empty(self): - return _mscl.TransducerTypes_empty(self) - - def size(self): - return _mscl.TransducerTypes_size(self) - - def swap(self, v): - return _mscl.TransducerTypes_swap(self, v) - - def begin(self): - return _mscl.TransducerTypes_begin(self) - - def end(self): - return _mscl.TransducerTypes_end(self) - - def rbegin(self): - return _mscl.TransducerTypes_rbegin(self) - - def rend(self): - return _mscl.TransducerTypes_rend(self) - - def clear(self): - return _mscl.TransducerTypes_clear(self) - - def get_allocator(self): - return _mscl.TransducerTypes_get_allocator(self) - - def pop_back(self): - return _mscl.TransducerTypes_pop_back(self) - - def erase(self, *args): - return _mscl.TransducerTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.TransducerTypes_swiginit(self, _mscl.new_TransducerTypes(*args)) - - def push_back(self, x): - return _mscl.TransducerTypes_push_back(self, x) - - def front(self): - return _mscl.TransducerTypes_front(self) - - def back(self): - return _mscl.TransducerTypes_back(self) - - def assign(self, n, x): - return _mscl.TransducerTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransducerTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.TransducerTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.TransducerTypes_reserve(self, n) - - def capacity(self): - return _mscl.TransducerTypes_capacity(self) - __swig_destroy__ = _mscl.delete_TransducerTypes - -# Register TransducerTypes in _mscl: -_mscl.TransducerTypes_swigregister(TransducerTypes) - -class EepromMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EepromMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EepromMap___nonzero__(self) - - def __bool__(self): - return _mscl.EepromMap___bool__(self) - - def __len__(self): - return _mscl.EepromMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.EepromMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.EepromMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.EepromMap_has_key(self, key) - - def keys(self): - return _mscl.EepromMap_keys(self) - - def values(self): - return _mscl.EepromMap_values(self) - - def items(self): - return _mscl.EepromMap_items(self) - - def __contains__(self, key): - return _mscl.EepromMap___contains__(self, key) - - def key_iterator(self): - return _mscl.EepromMap_key_iterator(self) - - def value_iterator(self): - return _mscl.EepromMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.EepromMap___setitem__(self, *args) - - def asdict(self): - return _mscl.EepromMap_asdict(self) - - def __init__(self, *args): - _mscl.EepromMap_swiginit(self, _mscl.new_EepromMap(*args)) - - def empty(self): - return _mscl.EepromMap_empty(self) - - def size(self): - return _mscl.EepromMap_size(self) - - def swap(self, v): - return _mscl.EepromMap_swap(self, v) - - def begin(self): - return _mscl.EepromMap_begin(self) - - def end(self): - return _mscl.EepromMap_end(self) - - def rbegin(self): - return _mscl.EepromMap_rbegin(self) - - def rend(self): - return _mscl.EepromMap_rend(self) - - def clear(self): - return _mscl.EepromMap_clear(self) - - def get_allocator(self): - return _mscl.EepromMap_get_allocator(self) - - def count(self, x): - return _mscl.EepromMap_count(self, x) - - def erase(self, *args): - return _mscl.EepromMap_erase(self, *args) - - def find(self, x): - return _mscl.EepromMap_find(self, x) - - def lower_bound(self, x): - return _mscl.EepromMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.EepromMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_EepromMap - -# Register EepromMap in _mscl: -_mscl.EepromMap_swigregister(EepromMap) - -class DerivedChannelMasks(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DerivedChannelMasks_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DerivedChannelMasks___nonzero__(self) - - def __bool__(self): - return _mscl.DerivedChannelMasks___bool__(self) - - def __len__(self): - return _mscl.DerivedChannelMasks___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DerivedChannelMasks___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DerivedChannelMasks___delitem__(self, key) - - def has_key(self, key): - return _mscl.DerivedChannelMasks_has_key(self, key) - - def keys(self): - return _mscl.DerivedChannelMasks_keys(self) - - def values(self): - return _mscl.DerivedChannelMasks_values(self) - - def items(self): - return _mscl.DerivedChannelMasks_items(self) - - def __contains__(self, key): - return _mscl.DerivedChannelMasks___contains__(self, key) - - def key_iterator(self): - return _mscl.DerivedChannelMasks_key_iterator(self) - - def value_iterator(self): - return _mscl.DerivedChannelMasks_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DerivedChannelMasks___setitem__(self, *args) - - def asdict(self): - return _mscl.DerivedChannelMasks_asdict(self) - - def __init__(self, *args): - _mscl.DerivedChannelMasks_swiginit(self, _mscl.new_DerivedChannelMasks(*args)) - - def empty(self): - return _mscl.DerivedChannelMasks_empty(self) - - def size(self): - return _mscl.DerivedChannelMasks_size(self) - - def swap(self, v): - return _mscl.DerivedChannelMasks_swap(self, v) - - def begin(self): - return _mscl.DerivedChannelMasks_begin(self) - - def end(self): - return _mscl.DerivedChannelMasks_end(self) - - def rbegin(self): - return _mscl.DerivedChannelMasks_rbegin(self) - - def rend(self): - return _mscl.DerivedChannelMasks_rend(self) - - def clear(self): - return _mscl.DerivedChannelMasks_clear(self) - - def get_allocator(self): - return _mscl.DerivedChannelMasks_get_allocator(self) - - def count(self, x): - return _mscl.DerivedChannelMasks_count(self, x) - - def erase(self, *args): - return _mscl.DerivedChannelMasks_erase(self, *args) - - def find(self, x): - return _mscl.DerivedChannelMasks_find(self, x) - - def lower_bound(self, x): - return _mscl.DerivedChannelMasks_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DerivedChannelMasks_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DerivedChannelMasks - -# Register DerivedChannelMasks in _mscl: -_mscl.DerivedChannelMasks_swigregister(DerivedChannelMasks) - -class DeviceStatusMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusMap_keys(self) - - def values(self): - return _mscl.DeviceStatusMap_values(self) - - def items(self): - return _mscl.DeviceStatusMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusMap_swiginit(self, _mscl.new_DeviceStatusMap(*args)) - - def empty(self): - return _mscl.DeviceStatusMap_empty(self) - - def size(self): - return _mscl.DeviceStatusMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusMap_begin(self) - - def end(self): - return _mscl.DeviceStatusMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusMap - -# Register DeviceStatusMap in _mscl: -_mscl.DeviceStatusMap_swigregister(DeviceStatusMap) - -class DeviceStatusValueMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusValueMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusValueMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusValueMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusValueMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusValueMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusValueMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusValueMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusValueMap_keys(self) - - def values(self): - return _mscl.DeviceStatusValueMap_values(self) - - def items(self): - return _mscl.DeviceStatusValueMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusValueMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusValueMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusValueMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusValueMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusValueMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusValueMap_swiginit(self, _mscl.new_DeviceStatusValueMap(*args)) - - def empty(self): - return _mscl.DeviceStatusValueMap_empty(self) - - def size(self): - return _mscl.DeviceStatusValueMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusValueMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusValueMap_begin(self) - - def end(self): - return _mscl.DeviceStatusValueMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusValueMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusValueMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusValueMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusValueMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusValueMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusValueMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusValueMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusValueMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusValueMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusValueMap - -# Register DeviceStatusValueMap in _mscl: -_mscl.DeviceStatusValueMap_swigregister(DeviceStatusValueMap) - -class SampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.SampleRates___bool__(self) - - def __len__(self): - return _mscl.SampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.SampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.SampleRates_pop(self) - - def append(self, x): - return _mscl.SampleRates_append(self, x) - - def empty(self): - return _mscl.SampleRates_empty(self) - - def size(self): - return _mscl.SampleRates_size(self) - - def swap(self, v): - return _mscl.SampleRates_swap(self, v) - - def begin(self): - return _mscl.SampleRates_begin(self) - - def end(self): - return _mscl.SampleRates_end(self) - - def rbegin(self): - return _mscl.SampleRates_rbegin(self) - - def rend(self): - return _mscl.SampleRates_rend(self) - - def clear(self): - return _mscl.SampleRates_clear(self) - - def get_allocator(self): - return _mscl.SampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.SampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.SampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.SampleRates_swiginit(self, _mscl.new_SampleRates(*args)) - - def push_back(self, x): - return _mscl.SampleRates_push_back(self, x) - - def front(self): - return _mscl.SampleRates_front(self) - - def back(self): - return _mscl.SampleRates_back(self) - - def assign(self, n, x): - return _mscl.SampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.SampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.SampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.SampleRates_reserve(self, n) - - def capacity(self): - return _mscl.SampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_SampleRates - -# Register SampleRates in _mscl: -_mscl.SampleRates_swigregister(SampleRates) - -class ConfigIssues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConfigIssues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConfigIssues___nonzero__(self) - - def __bool__(self): - return _mscl.ConfigIssues___bool__(self) - - def __len__(self): - return _mscl.ConfigIssues___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConfigIssues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConfigIssues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConfigIssues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConfigIssues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConfigIssues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConfigIssues___setitem__(self, *args) - - def pop(self): - return _mscl.ConfigIssues_pop(self) - - def append(self, x): - return _mscl.ConfigIssues_append(self, x) - - def empty(self): - return _mscl.ConfigIssues_empty(self) - - def size(self): - return _mscl.ConfigIssues_size(self) - - def swap(self, v): - return _mscl.ConfigIssues_swap(self, v) - - def begin(self): - return _mscl.ConfigIssues_begin(self) - - def end(self): - return _mscl.ConfigIssues_end(self) - - def rbegin(self): - return _mscl.ConfigIssues_rbegin(self) - - def rend(self): - return _mscl.ConfigIssues_rend(self) - - def clear(self): - return _mscl.ConfigIssues_clear(self) - - def get_allocator(self): - return _mscl.ConfigIssues_get_allocator(self) - - def pop_back(self): - return _mscl.ConfigIssues_pop_back(self) - - def erase(self, *args): - return _mscl.ConfigIssues_erase(self, *args) - - def __init__(self, *args): - _mscl.ConfigIssues_swiginit(self, _mscl.new_ConfigIssues(*args)) - - def push_back(self, x): - return _mscl.ConfigIssues_push_back(self, x) - - def front(self): - return _mscl.ConfigIssues_front(self) - - def back(self): - return _mscl.ConfigIssues_back(self) - - def assign(self, n, x): - return _mscl.ConfigIssues_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConfigIssues_resize(self, *args) - - def insert(self, *args): - return _mscl.ConfigIssues_insert(self, *args) - - def reserve(self, n): - return _mscl.ConfigIssues_reserve(self, n) - - def capacity(self): - return _mscl.ConfigIssues_capacity(self) - __swig_destroy__ = _mscl.delete_ConfigIssues - -# Register ConfigIssues in _mscl: -_mscl.ConfigIssues_swigregister(ConfigIssues) - -class MipChannelFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelFields_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelFields___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelFields___bool__(self) - - def __len__(self): - return _mscl.MipChannelFields___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelFields___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelFields___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelFields___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelFields___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelFields___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelFields___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelFields_pop(self) - - def append(self, x): - return _mscl.MipChannelFields_append(self, x) - - def empty(self): - return _mscl.MipChannelFields_empty(self) - - def size(self): - return _mscl.MipChannelFields_size(self) - - def swap(self, v): - return _mscl.MipChannelFields_swap(self, v) - - def begin(self): - return _mscl.MipChannelFields_begin(self) - - def end(self): - return _mscl.MipChannelFields_end(self) - - def rbegin(self): - return _mscl.MipChannelFields_rbegin(self) - - def rend(self): - return _mscl.MipChannelFields_rend(self) - - def clear(self): - return _mscl.MipChannelFields_clear(self) - - def get_allocator(self): - return _mscl.MipChannelFields_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelFields_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelFields_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelFields_swiginit(self, _mscl.new_MipChannelFields(*args)) - - def push_back(self, x): - return _mscl.MipChannelFields_push_back(self, x) - - def front(self): - return _mscl.MipChannelFields_front(self) - - def back(self): - return _mscl.MipChannelFields_back(self) - - def assign(self, n, x): - return _mscl.MipChannelFields_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelFields_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelFields_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelFields_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelFields_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelFields - -# Register MipChannelFields in _mscl: -_mscl.MipChannelFields_swigregister(MipChannelFields) - -class MipCommands(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommands_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommands___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommands___bool__(self) - - def __len__(self): - return _mscl.MipCommands___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommands___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommands___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommands___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommands___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommands___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommands___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommands_pop(self) - - def append(self, x): - return _mscl.MipCommands_append(self, x) - - def empty(self): - return _mscl.MipCommands_empty(self) - - def size(self): - return _mscl.MipCommands_size(self) - - def swap(self, v): - return _mscl.MipCommands_swap(self, v) - - def begin(self): - return _mscl.MipCommands_begin(self) - - def end(self): - return _mscl.MipCommands_end(self) - - def rbegin(self): - return _mscl.MipCommands_rbegin(self) - - def rend(self): - return _mscl.MipCommands_rend(self) - - def clear(self): - return _mscl.MipCommands_clear(self) - - def get_allocator(self): - return _mscl.MipCommands_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommands_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommands_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommands_swiginit(self, _mscl.new_MipCommands(*args)) - - def push_back(self, x): - return _mscl.MipCommands_push_back(self, x) - - def front(self): - return _mscl.MipCommands_front(self) - - def back(self): - return _mscl.MipCommands_back(self) - - def assign(self, n, x): - return _mscl.MipCommands_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommands_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommands_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommands_reserve(self, n) - - def capacity(self): - return _mscl.MipCommands_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommands - -# Register MipCommands in _mscl: -_mscl.MipCommands_swigregister(MipCommands) - -class MipDataClasses(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataClasses_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataClasses___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataClasses___bool__(self) - - def __len__(self): - return _mscl.MipDataClasses___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataClasses___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataClasses___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataClasses___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataClasses___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataClasses___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataClasses___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataClasses_pop(self) - - def append(self, x): - return _mscl.MipDataClasses_append(self, x) - - def empty(self): - return _mscl.MipDataClasses_empty(self) - - def size(self): - return _mscl.MipDataClasses_size(self) - - def swap(self, v): - return _mscl.MipDataClasses_swap(self, v) - - def begin(self): - return _mscl.MipDataClasses_begin(self) - - def end(self): - return _mscl.MipDataClasses_end(self) - - def rbegin(self): - return _mscl.MipDataClasses_rbegin(self) - - def rend(self): - return _mscl.MipDataClasses_rend(self) - - def clear(self): - return _mscl.MipDataClasses_clear(self) - - def get_allocator(self): - return _mscl.MipDataClasses_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataClasses_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataClasses_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataClasses_swiginit(self, _mscl.new_MipDataClasses(*args)) - - def push_back(self, x): - return _mscl.MipDataClasses_push_back(self, x) - - def front(self): - return _mscl.MipDataClasses_front(self) - - def back(self): - return _mscl.MipDataClasses_back(self) - - def assign(self, n, x): - return _mscl.MipDataClasses_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataClasses_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataClasses_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataClasses_reserve(self, n) - - def capacity(self): - return _mscl.MipDataClasses_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataClasses - -# Register MipDataClasses in _mscl: -_mscl.MipDataClasses_swigregister(MipDataClasses) - -class MipChannelIdentifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelIdentifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelIdentifiers___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelIdentifiers___bool__(self) - - def __len__(self): - return _mscl.MipChannelIdentifiers___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelIdentifiers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelIdentifiers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelIdentifiers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelIdentifiers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelIdentifiers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelIdentifiers___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelIdentifiers_pop(self) - - def append(self, x): - return _mscl.MipChannelIdentifiers_append(self, x) - - def empty(self): - return _mscl.MipChannelIdentifiers_empty(self) - - def size(self): - return _mscl.MipChannelIdentifiers_size(self) - - def swap(self, v): - return _mscl.MipChannelIdentifiers_swap(self, v) - - def begin(self): - return _mscl.MipChannelIdentifiers_begin(self) - - def end(self): - return _mscl.MipChannelIdentifiers_end(self) - - def rbegin(self): - return _mscl.MipChannelIdentifiers_rbegin(self) - - def rend(self): - return _mscl.MipChannelIdentifiers_rend(self) - - def clear(self): - return _mscl.MipChannelIdentifiers_clear(self) - - def get_allocator(self): - return _mscl.MipChannelIdentifiers_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelIdentifiers_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelIdentifiers_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelIdentifiers_swiginit(self, _mscl.new_MipChannelIdentifiers(*args)) - - def push_back(self, x): - return _mscl.MipChannelIdentifiers_push_back(self, x) - - def front(self): - return _mscl.MipChannelIdentifiers_front(self) - - def back(self): - return _mscl.MipChannelIdentifiers_back(self) - - def assign(self, n, x): - return _mscl.MipChannelIdentifiers_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelIdentifiers_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelIdentifiers_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelIdentifiers_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelIdentifiers_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelIdentifiers - -# Register MipChannelIdentifiers in _mscl: -_mscl.MipChannelIdentifiers_swigregister(MipChannelIdentifiers) - -class MipCommandSet(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandSet_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandSet___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandSet___bool__(self) - - def __len__(self): - return _mscl.MipCommandSet___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandSet___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandSet___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandSet___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandSet___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandSet___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandSet___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandSet_pop(self) - - def append(self, x): - return _mscl.MipCommandSet_append(self, x) - - def empty(self): - return _mscl.MipCommandSet_empty(self) - - def size(self): - return _mscl.MipCommandSet_size(self) - - def swap(self, v): - return _mscl.MipCommandSet_swap(self, v) - - def begin(self): - return _mscl.MipCommandSet_begin(self) - - def end(self): - return _mscl.MipCommandSet_end(self) - - def rbegin(self): - return _mscl.MipCommandSet_rbegin(self) - - def rend(self): - return _mscl.MipCommandSet_rend(self) - - def clear(self): - return _mscl.MipCommandSet_clear(self) - - def get_allocator(self): - return _mscl.MipCommandSet_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandSet_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandSet_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandSet_swiginit(self, _mscl.new_MipCommandSet(*args)) - - def push_back(self, x): - return _mscl.MipCommandSet_push_back(self, x) - - def front(self): - return _mscl.MipCommandSet_front(self) - - def back(self): - return _mscl.MipCommandSet_back(self) - - def assign(self, n, x): - return _mscl.MipCommandSet_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandSet_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandSet_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandSet_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandSet_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandSet - -# Register MipCommandSet in _mscl: -_mscl.MipCommandSet_swigregister(MipCommandSet) - -class MipFieldValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipFieldValues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipFieldValues___nonzero__(self) - - def __bool__(self): - return _mscl.MipFieldValues___bool__(self) - - def __len__(self): - return _mscl.MipFieldValues___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipFieldValues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipFieldValues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipFieldValues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipFieldValues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipFieldValues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipFieldValues___setitem__(self, *args) - - def pop(self): - return _mscl.MipFieldValues_pop(self) - - def append(self, x): - return _mscl.MipFieldValues_append(self, x) - - def empty(self): - return _mscl.MipFieldValues_empty(self) - - def size(self): - return _mscl.MipFieldValues_size(self) - - def swap(self, v): - return _mscl.MipFieldValues_swap(self, v) - - def begin(self): - return _mscl.MipFieldValues_begin(self) - - def end(self): - return _mscl.MipFieldValues_end(self) - - def rbegin(self): - return _mscl.MipFieldValues_rbegin(self) - - def rend(self): - return _mscl.MipFieldValues_rend(self) - - def clear(self): - return _mscl.MipFieldValues_clear(self) - - def get_allocator(self): - return _mscl.MipFieldValues_get_allocator(self) - - def pop_back(self): - return _mscl.MipFieldValues_pop_back(self) - - def erase(self, *args): - return _mscl.MipFieldValues_erase(self, *args) - - def __init__(self, *args): - _mscl.MipFieldValues_swiginit(self, _mscl.new_MipFieldValues(*args)) - - def push_back(self, x): - return _mscl.MipFieldValues_push_back(self, x) - - def front(self): - return _mscl.MipFieldValues_front(self) - - def back(self): - return _mscl.MipFieldValues_back(self) - - def assign(self, n, x): - return _mscl.MipFieldValues_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipFieldValues_resize(self, *args) - - def insert(self, *args): - return _mscl.MipFieldValues_insert(self, *args) - - def reserve(self, n): - return _mscl.MipFieldValues_reserve(self, n) - - def capacity(self): - return _mscl.MipFieldValues_capacity(self) - __swig_destroy__ = _mscl.delete_MipFieldValues - -# Register MipFieldValues in _mscl: -_mscl.MipFieldValues_swigregister(MipFieldValues) - -class MipCommandParamPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipCommandParamPair_swiginit(self, _mscl.new_MipCommandParamPair(*args)) - first = property(_mscl.MipCommandParamPair_first_get, _mscl.MipCommandParamPair_first_set) - second = property(_mscl.MipCommandParamPair_second_get, _mscl.MipCommandParamPair_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_MipCommandParamPair - -# Register MipCommandParamPair in _mscl: -_mscl.MipCommandParamPair_swigregister(MipCommandParamPair) - -class MipCommandParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandParameters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandParameters___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandParameters___bool__(self) - - def __len__(self): - return _mscl.MipCommandParameters___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandParameters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandParameters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandParameters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandParameters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandParameters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandParameters___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandParameters_pop(self) - - def append(self, x): - return _mscl.MipCommandParameters_append(self, x) - - def empty(self): - return _mscl.MipCommandParameters_empty(self) - - def size(self): - return _mscl.MipCommandParameters_size(self) - - def swap(self, v): - return _mscl.MipCommandParameters_swap(self, v) - - def begin(self): - return _mscl.MipCommandParameters_begin(self) - - def end(self): - return _mscl.MipCommandParameters_end(self) - - def rbegin(self): - return _mscl.MipCommandParameters_rbegin(self) - - def rend(self): - return _mscl.MipCommandParameters_rend(self) - - def clear(self): - return _mscl.MipCommandParameters_clear(self) - - def get_allocator(self): - return _mscl.MipCommandParameters_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandParameters_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandParameters_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandParameters_swiginit(self, _mscl.new_MipCommandParameters(*args)) - - def push_back(self, x): - return _mscl.MipCommandParameters_push_back(self, x) - - def front(self): - return _mscl.MipCommandParameters_front(self) - - def back(self): - return _mscl.MipCommandParameters_back(self) - - def assign(self, n, x): - return _mscl.MipCommandParameters_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandParameters_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandParameters_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandParameters_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandParameters_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandParameters - -# Register MipCommandParameters in _mscl: -_mscl.MipCommandParameters_swigregister(MipCommandParameters) - -class ChannelIndex(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ChannelIndex_swiginit(self, _mscl.new_ChannelIndex(*args)) - first = property(_mscl.ChannelIndex_first_get, _mscl.ChannelIndex_first_set) - second = property(_mscl.ChannelIndex_second_get, _mscl.ChannelIndex_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_ChannelIndex - -# Register ChannelIndex in _mscl: -_mscl.ChannelIndex_swigregister(ChannelIndex) - -class ChannelIndices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelIndices_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelIndices___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelIndices___bool__(self) - - def __len__(self): - return _mscl.ChannelIndices___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelIndices___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelIndices___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelIndices___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelIndices___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelIndices___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelIndices___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelIndices_pop(self) - - def append(self, x): - return _mscl.ChannelIndices_append(self, x) - - def empty(self): - return _mscl.ChannelIndices_empty(self) - - def size(self): - return _mscl.ChannelIndices_size(self) - - def swap(self, v): - return _mscl.ChannelIndices_swap(self, v) - - def begin(self): - return _mscl.ChannelIndices_begin(self) - - def end(self): - return _mscl.ChannelIndices_end(self) - - def rbegin(self): - return _mscl.ChannelIndices_rbegin(self) - - def rend(self): - return _mscl.ChannelIndices_rend(self) - - def clear(self): - return _mscl.ChannelIndices_clear(self) - - def get_allocator(self): - return _mscl.ChannelIndices_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelIndices_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelIndices_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelIndices_swiginit(self, _mscl.new_ChannelIndices(*args)) - - def push_back(self, x): - return _mscl.ChannelIndices_push_back(self, x) - - def front(self): - return _mscl.ChannelIndices_front(self) - - def back(self): - return _mscl.ChannelIndices_back(self) - - def assign(self, n, x): - return _mscl.ChannelIndices_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelIndices_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelIndices_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelIndices_reserve(self, n) - - def capacity(self): - return _mscl.ChannelIndices_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelIndices - -# Register ChannelIndices in _mscl: -_mscl.ChannelIndices_swigregister(ChannelIndices) - -class ChannelFieldQualifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelFieldQualifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelFieldQualifiers___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelFieldQualifiers___bool__(self) - - def __len__(self): - return _mscl.ChannelFieldQualifiers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelFieldQualifiers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelFieldQualifiers___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelFieldQualifiers_has_key(self, key) - - def keys(self): - return _mscl.ChannelFieldQualifiers_keys(self) - - def values(self): - return _mscl.ChannelFieldQualifiers_values(self) - - def items(self): - return _mscl.ChannelFieldQualifiers_items(self) - - def __contains__(self, key): - return _mscl.ChannelFieldQualifiers___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelFieldQualifiers_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelFieldQualifiers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelFieldQualifiers___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelFieldQualifiers_asdict(self) - - def __init__(self, *args): - _mscl.ChannelFieldQualifiers_swiginit(self, _mscl.new_ChannelFieldQualifiers(*args)) - - def empty(self): - return _mscl.ChannelFieldQualifiers_empty(self) - - def size(self): - return _mscl.ChannelFieldQualifiers_size(self) - - def swap(self, v): - return _mscl.ChannelFieldQualifiers_swap(self, v) - - def begin(self): - return _mscl.ChannelFieldQualifiers_begin(self) - - def end(self): - return _mscl.ChannelFieldQualifiers_end(self) - - def rbegin(self): - return _mscl.ChannelFieldQualifiers_rbegin(self) - - def rend(self): - return _mscl.ChannelFieldQualifiers_rend(self) - - def clear(self): - return _mscl.ChannelFieldQualifiers_clear(self) - - def get_allocator(self): - return _mscl.ChannelFieldQualifiers_get_allocator(self) - - def count(self, x): - return _mscl.ChannelFieldQualifiers_count(self, x) - - def erase(self, *args): - return _mscl.ChannelFieldQualifiers_erase(self, *args) - - def find(self, x): - return _mscl.ChannelFieldQualifiers_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelFieldQualifiers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelFieldQualifiers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelFieldQualifiers - -# Register ChannelFieldQualifiers in _mscl: -_mscl.ChannelFieldQualifiers_swigregister(ChannelFieldQualifiers) - -class GnssReceivers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssReceivers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssReceivers___nonzero__(self) - - def __bool__(self): - return _mscl.GnssReceivers___bool__(self) - - def __len__(self): - return _mscl.GnssReceivers___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssReceivers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssReceivers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssReceivers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssReceivers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssReceivers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssReceivers___setitem__(self, *args) - - def pop(self): - return _mscl.GnssReceivers_pop(self) - - def append(self, x): - return _mscl.GnssReceivers_append(self, x) - - def empty(self): - return _mscl.GnssReceivers_empty(self) - - def size(self): - return _mscl.GnssReceivers_size(self) - - def swap(self, v): - return _mscl.GnssReceivers_swap(self, v) - - def begin(self): - return _mscl.GnssReceivers_begin(self) - - def end(self): - return _mscl.GnssReceivers_end(self) - - def rbegin(self): - return _mscl.GnssReceivers_rbegin(self) - - def rend(self): - return _mscl.GnssReceivers_rend(self) - - def clear(self): - return _mscl.GnssReceivers_clear(self) - - def get_allocator(self): - return _mscl.GnssReceivers_get_allocator(self) - - def pop_back(self): - return _mscl.GnssReceivers_pop_back(self) - - def erase(self, *args): - return _mscl.GnssReceivers_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssReceivers_swiginit(self, _mscl.new_GnssReceivers(*args)) - - def push_back(self, x): - return _mscl.GnssReceivers_push_back(self, x) - - def front(self): - return _mscl.GnssReceivers_front(self) - - def back(self): - return _mscl.GnssReceivers_back(self) - - def assign(self, n, x): - return _mscl.GnssReceivers_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssReceivers_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssReceivers_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssReceivers_reserve(self, n) - - def capacity(self): - return _mscl.GnssReceivers_capacity(self) - __swig_destroy__ = _mscl.delete_GnssReceivers - -# Register GnssReceivers in _mscl: -_mscl.GnssReceivers_swigregister(GnssReceivers) - -class SensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRanges___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRanges___bool__(self) - - def __len__(self): - return _mscl.SensorRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorRanges___setitem__(self, *args) - - def pop(self): - return _mscl.SensorRanges_pop(self) - - def append(self, x): - return _mscl.SensorRanges_append(self, x) - - def empty(self): - return _mscl.SensorRanges_empty(self) - - def size(self): - return _mscl.SensorRanges_size(self) - - def swap(self, v): - return _mscl.SensorRanges_swap(self, v) - - def begin(self): - return _mscl.SensorRanges_begin(self) - - def end(self): - return _mscl.SensorRanges_end(self) - - def rbegin(self): - return _mscl.SensorRanges_rbegin(self) - - def rend(self): - return _mscl.SensorRanges_rend(self) - - def clear(self): - return _mscl.SensorRanges_clear(self) - - def get_allocator(self): - return _mscl.SensorRanges_get_allocator(self) - - def pop_back(self): - return _mscl.SensorRanges_pop_back(self) - - def erase(self, *args): - return _mscl.SensorRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorRanges_swiginit(self, _mscl.new_SensorRanges(*args)) - - def push_back(self, x): - return _mscl.SensorRanges_push_back(self, x) - - def front(self): - return _mscl.SensorRanges_front(self) - - def back(self): - return _mscl.SensorRanges_back(self) - - def assign(self, n, x): - return _mscl.SensorRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorRanges_reserve(self, n) - - def capacity(self): - return _mscl.SensorRanges_capacity(self) - __swig_destroy__ = _mscl.delete_SensorRanges - -# Register SensorRanges in _mscl: -_mscl.SensorRanges_swigregister(SensorRanges) - -class SensorRangeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRangeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRangeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRangeOptions___bool__(self) - - def __len__(self): - return _mscl.SensorRangeOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SensorRangeOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SensorRangeOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.SensorRangeOptions_has_key(self, key) - - def keys(self): - return _mscl.SensorRangeOptions_keys(self) - - def values(self): - return _mscl.SensorRangeOptions_values(self) - - def items(self): - return _mscl.SensorRangeOptions_items(self) - - def __contains__(self, key): - return _mscl.SensorRangeOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.SensorRangeOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.SensorRangeOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SensorRangeOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.SensorRangeOptions_asdict(self) - - def __init__(self, *args): - _mscl.SensorRangeOptions_swiginit(self, _mscl.new_SensorRangeOptions(*args)) - - def empty(self): - return _mscl.SensorRangeOptions_empty(self) - - def size(self): - return _mscl.SensorRangeOptions_size(self) - - def swap(self, v): - return _mscl.SensorRangeOptions_swap(self, v) - - def begin(self): - return _mscl.SensorRangeOptions_begin(self) - - def end(self): - return _mscl.SensorRangeOptions_end(self) - - def rbegin(self): - return _mscl.SensorRangeOptions_rbegin(self) - - def rend(self): - return _mscl.SensorRangeOptions_rend(self) - - def clear(self): - return _mscl.SensorRangeOptions_clear(self) - - def get_allocator(self): - return _mscl.SensorRangeOptions_get_allocator(self) - - def count(self, x): - return _mscl.SensorRangeOptions_count(self, x) - - def erase(self, *args): - return _mscl.SensorRangeOptions_erase(self, *args) - - def find(self, x): - return _mscl.SensorRangeOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.SensorRangeOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SensorRangeOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SensorRangeOptions - -# Register SensorRangeOptions in _mscl: -_mscl.SensorRangeOptions_swigregister(SensorRangeOptions) - -class CommPortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommPortInfo_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommPortInfo___nonzero__(self) - - def __bool__(self): - return _mscl.CommPortInfo___bool__(self) - - def __len__(self): - return _mscl.CommPortInfo___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommPortInfo___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommPortInfo___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommPortInfo___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommPortInfo___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommPortInfo___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommPortInfo___setitem__(self, *args) - - def pop(self): - return _mscl.CommPortInfo_pop(self) - - def append(self, x): - return _mscl.CommPortInfo_append(self, x) - - def empty(self): - return _mscl.CommPortInfo_empty(self) - - def size(self): - return _mscl.CommPortInfo_size(self) - - def swap(self, v): - return _mscl.CommPortInfo_swap(self, v) - - def begin(self): - return _mscl.CommPortInfo_begin(self) - - def end(self): - return _mscl.CommPortInfo_end(self) - - def rbegin(self): - return _mscl.CommPortInfo_rbegin(self) - - def rend(self): - return _mscl.CommPortInfo_rend(self) - - def clear(self): - return _mscl.CommPortInfo_clear(self) - - def get_allocator(self): - return _mscl.CommPortInfo_get_allocator(self) - - def pop_back(self): - return _mscl.CommPortInfo_pop_back(self) - - def erase(self, *args): - return _mscl.CommPortInfo_erase(self, *args) - - def __init__(self, *args): - _mscl.CommPortInfo_swiginit(self, _mscl.new_CommPortInfo(*args)) - - def push_back(self, x): - return _mscl.CommPortInfo_push_back(self, x) - - def front(self): - return _mscl.CommPortInfo_front(self) - - def back(self): - return _mscl.CommPortInfo_back(self) - - def assign(self, n, x): - return _mscl.CommPortInfo_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommPortInfo_resize(self, *args) - - def insert(self, *args): - return _mscl.CommPortInfo_insert(self, *args) - - def reserve(self, n): - return _mscl.CommPortInfo_reserve(self, n) - - def capacity(self): - return _mscl.CommPortInfo_capacity(self) - __swig_destroy__ = _mscl.delete_CommPortInfo - -# Register CommPortInfo in _mscl: -_mscl.CommPortInfo_swigregister(CommPortInfo) - -class EventTriggerStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTriggerStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTriggerStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventTriggerStatus___bool__(self) - - def __len__(self): - return _mscl.EventTriggerStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTriggerStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTriggerStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTriggerStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTriggerStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTriggerStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTriggerStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventTriggerStatus_pop(self) - - def append(self, x): - return _mscl.EventTriggerStatus_append(self, x) - - def empty(self): - return _mscl.EventTriggerStatus_empty(self) - - def size(self): - return _mscl.EventTriggerStatus_size(self) - - def swap(self, v): - return _mscl.EventTriggerStatus_swap(self, v) - - def begin(self): - return _mscl.EventTriggerStatus_begin(self) - - def end(self): - return _mscl.EventTriggerStatus_end(self) - - def rbegin(self): - return _mscl.EventTriggerStatus_rbegin(self) - - def rend(self): - return _mscl.EventTriggerStatus_rend(self) - - def clear(self): - return _mscl.EventTriggerStatus_clear(self) - - def get_allocator(self): - return _mscl.EventTriggerStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventTriggerStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventTriggerStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTriggerStatus_swiginit(self, _mscl.new_EventTriggerStatus(*args)) - - def push_back(self, x): - return _mscl.EventTriggerStatus_push_back(self, x) - - def front(self): - return _mscl.EventTriggerStatus_front(self) - - def back(self): - return _mscl.EventTriggerStatus_back(self) - - def assign(self, n, x): - return _mscl.EventTriggerStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTriggerStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTriggerStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTriggerStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventTriggerStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventTriggerStatus - -# Register EventTriggerStatus in _mscl: -_mscl.EventTriggerStatus_swigregister(EventTriggerStatus) - -class EventActionStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventActionStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventActionStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventActionStatus___bool__(self) - - def __len__(self): - return _mscl.EventActionStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventActionStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventActionStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventActionStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventActionStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventActionStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventActionStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventActionStatus_pop(self) - - def append(self, x): - return _mscl.EventActionStatus_append(self, x) - - def empty(self): - return _mscl.EventActionStatus_empty(self) - - def size(self): - return _mscl.EventActionStatus_size(self) - - def swap(self, v): - return _mscl.EventActionStatus_swap(self, v) - - def begin(self): - return _mscl.EventActionStatus_begin(self) - - def end(self): - return _mscl.EventActionStatus_end(self) - - def rbegin(self): - return _mscl.EventActionStatus_rbegin(self) - - def rend(self): - return _mscl.EventActionStatus_rend(self) - - def clear(self): - return _mscl.EventActionStatus_clear(self) - - def get_allocator(self): - return _mscl.EventActionStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventActionStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventActionStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventActionStatus_swiginit(self, _mscl.new_EventActionStatus(*args)) - - def push_back(self, x): - return _mscl.EventActionStatus_push_back(self, x) - - def front(self): - return _mscl.EventActionStatus_front(self) - - def back(self): - return _mscl.EventActionStatus_back(self) - - def assign(self, n, x): - return _mscl.EventActionStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventActionStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventActionStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventActionStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventActionStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventActionStatus - -# Register EventActionStatus in _mscl: -_mscl.EventActionStatus_swigregister(EventActionStatus) - -class ChannelGroups(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroups_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroups___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroups___bool__(self) - - def __len__(self): - return _mscl.ChannelGroups___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroups___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroups___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroups___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroups___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroups___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroups___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroups_pop(self) - - def append(self, x): - return _mscl.ChannelGroups_append(self, x) - - def empty(self): - return _mscl.ChannelGroups_empty(self) - - def size(self): - return _mscl.ChannelGroups_size(self) - - def swap(self, v): - return _mscl.ChannelGroups_swap(self, v) - - def begin(self): - return _mscl.ChannelGroups_begin(self) - - def end(self): - return _mscl.ChannelGroups_end(self) - - def rbegin(self): - return _mscl.ChannelGroups_rbegin(self) - - def rend(self): - return _mscl.ChannelGroups_rend(self) - - def clear(self): - return _mscl.ChannelGroups_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroups_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroups_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroups_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroups_swiginit(self, _mscl.new_ChannelGroups(*args)) - - def push_back(self, x): - return _mscl.ChannelGroups_push_back(self, x) - - def front(self): - return _mscl.ChannelGroups_front(self) - - def back(self): - return _mscl.ChannelGroups_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroups_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroups_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroups_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroups_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroups_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroups - -# Register ChannelGroups in _mscl: -_mscl.ChannelGroups_swigregister(ChannelGroups) - -class WirelessChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessChannels___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessChannels___bool__(self) - - def __len__(self): - return _mscl.WirelessChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessChannels___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessChannels_pop(self) - - def append(self, x): - return _mscl.WirelessChannels_append(self, x) - - def empty(self): - return _mscl.WirelessChannels_empty(self) - - def size(self): - return _mscl.WirelessChannels_size(self) - - def swap(self, v): - return _mscl.WirelessChannels_swap(self, v) - - def begin(self): - return _mscl.WirelessChannels_begin(self) - - def end(self): - return _mscl.WirelessChannels_end(self) - - def rbegin(self): - return _mscl.WirelessChannels_rbegin(self) - - def rend(self): - return _mscl.WirelessChannels_rend(self) - - def clear(self): - return _mscl.WirelessChannels_clear(self) - - def get_allocator(self): - return _mscl.WirelessChannels_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessChannels_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessChannels_swiginit(self, _mscl.new_WirelessChannels(*args)) - - def push_back(self, x): - return _mscl.WirelessChannels_push_back(self, x) - - def front(self): - return _mscl.WirelessChannels_front(self) - - def back(self): - return _mscl.WirelessChannels_back(self) - - def assign(self, n, x): - return _mscl.WirelessChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessChannels_reserve(self, n) - - def capacity(self): - return _mscl.WirelessChannels_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessChannels - -# Register WirelessChannels in _mscl: -_mscl.WirelessChannels_swigregister(WirelessChannels) - -class DamageAngles(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DamageAngles_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DamageAngles___nonzero__(self) - - def __bool__(self): - return _mscl.DamageAngles___bool__(self) - - def __len__(self): - return _mscl.DamageAngles___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DamageAngles___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DamageAngles___delitem__(self, key) - - def has_key(self, key): - return _mscl.DamageAngles_has_key(self, key) - - def keys(self): - return _mscl.DamageAngles_keys(self) - - def values(self): - return _mscl.DamageAngles_values(self) - - def items(self): - return _mscl.DamageAngles_items(self) - - def __contains__(self, key): - return _mscl.DamageAngles___contains__(self, key) - - def key_iterator(self): - return _mscl.DamageAngles_key_iterator(self) - - def value_iterator(self): - return _mscl.DamageAngles_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DamageAngles___setitem__(self, *args) - - def asdict(self): - return _mscl.DamageAngles_asdict(self) - - def __init__(self, *args): - _mscl.DamageAngles_swiginit(self, _mscl.new_DamageAngles(*args)) - - def empty(self): - return _mscl.DamageAngles_empty(self) - - def size(self): - return _mscl.DamageAngles_size(self) - - def swap(self, v): - return _mscl.DamageAngles_swap(self, v) - - def begin(self): - return _mscl.DamageAngles_begin(self) - - def end(self): - return _mscl.DamageAngles_end(self) - - def rbegin(self): - return _mscl.DamageAngles_rbegin(self) - - def rend(self): - return _mscl.DamageAngles_rend(self) - - def clear(self): - return _mscl.DamageAngles_clear(self) - - def get_allocator(self): - return _mscl.DamageAngles_get_allocator(self) - - def count(self, x): - return _mscl.DamageAngles_count(self, x) - - def erase(self, *args): - return _mscl.DamageAngles_erase(self, *args) - - def find(self, x): - return _mscl.DamageAngles_find(self, x) - - def lower_bound(self, x): - return _mscl.DamageAngles_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DamageAngles_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DamageAngles - -# Register DamageAngles in _mscl: -_mscl.DamageAngles_swigregister(DamageAngles) - -class SnCurveSegments(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SnCurveSegments_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SnCurveSegments___nonzero__(self) - - def __bool__(self): - return _mscl.SnCurveSegments___bool__(self) - - def __len__(self): - return _mscl.SnCurveSegments___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SnCurveSegments___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SnCurveSegments___delitem__(self, key) - - def has_key(self, key): - return _mscl.SnCurveSegments_has_key(self, key) - - def keys(self): - return _mscl.SnCurveSegments_keys(self) - - def values(self): - return _mscl.SnCurveSegments_values(self) - - def items(self): - return _mscl.SnCurveSegments_items(self) - - def __contains__(self, key): - return _mscl.SnCurveSegments___contains__(self, key) - - def key_iterator(self): - return _mscl.SnCurveSegments_key_iterator(self) - - def value_iterator(self): - return _mscl.SnCurveSegments_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SnCurveSegments___setitem__(self, *args) - - def asdict(self): - return _mscl.SnCurveSegments_asdict(self) - - def __init__(self, *args): - _mscl.SnCurveSegments_swiginit(self, _mscl.new_SnCurveSegments(*args)) - - def empty(self): - return _mscl.SnCurveSegments_empty(self) - - def size(self): - return _mscl.SnCurveSegments_size(self) - - def swap(self, v): - return _mscl.SnCurveSegments_swap(self, v) - - def begin(self): - return _mscl.SnCurveSegments_begin(self) - - def end(self): - return _mscl.SnCurveSegments_end(self) - - def rbegin(self): - return _mscl.SnCurveSegments_rbegin(self) - - def rend(self): - return _mscl.SnCurveSegments_rend(self) - - def clear(self): - return _mscl.SnCurveSegments_clear(self) - - def get_allocator(self): - return _mscl.SnCurveSegments_get_allocator(self) - - def count(self, x): - return _mscl.SnCurveSegments_count(self, x) - - def erase(self, *args): - return _mscl.SnCurveSegments_erase(self, *args) - - def find(self, x): - return _mscl.SnCurveSegments_find(self, x) - - def lower_bound(self, x): - return _mscl.SnCurveSegments_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SnCurveSegments_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SnCurveSegments - -# Register SnCurveSegments in _mscl: -_mscl.SnCurveSegments_swigregister(SnCurveSegments) - -class RfSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RfSweep_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RfSweep___nonzero__(self) - - def __bool__(self): - return _mscl.RfSweep___bool__(self) - - def __len__(self): - return _mscl.RfSweep___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.RfSweep___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.RfSweep___delitem__(self, key) - - def has_key(self, key): - return _mscl.RfSweep_has_key(self, key) - - def keys(self): - return _mscl.RfSweep_keys(self) - - def values(self): - return _mscl.RfSweep_values(self) - - def items(self): - return _mscl.RfSweep_items(self) - - def __contains__(self, key): - return _mscl.RfSweep___contains__(self, key) - - def key_iterator(self): - return _mscl.RfSweep_key_iterator(self) - - def value_iterator(self): - return _mscl.RfSweep_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.RfSweep___setitem__(self, *args) - - def asdict(self): - return _mscl.RfSweep_asdict(self) - - def __init__(self, *args): - _mscl.RfSweep_swiginit(self, _mscl.new_RfSweep(*args)) - - def empty(self): - return _mscl.RfSweep_empty(self) - - def size(self): - return _mscl.RfSweep_size(self) - - def swap(self, v): - return _mscl.RfSweep_swap(self, v) - - def begin(self): - return _mscl.RfSweep_begin(self) - - def end(self): - return _mscl.RfSweep_end(self) - - def rbegin(self): - return _mscl.RfSweep_rbegin(self) - - def rend(self): - return _mscl.RfSweep_rend(self) - - def clear(self): - return _mscl.RfSweep_clear(self) - - def get_allocator(self): - return _mscl.RfSweep_get_allocator(self) - - def count(self, x): - return _mscl.RfSweep_count(self, x) - - def erase(self, *args): - return _mscl.RfSweep_erase(self, *args) - - def find(self, x): - return _mscl.RfSweep_find(self, x) - - def lower_bound(self, x): - return _mscl.RfSweep_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.RfSweep_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_RfSweep - -# Register RfSweep in _mscl: -_mscl.RfSweep_swigregister(RfSweep) - -class Triggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Triggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Triggers___nonzero__(self) - - def __bool__(self): - return _mscl.Triggers___bool__(self) - - def __len__(self): - return _mscl.Triggers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.Triggers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.Triggers___delitem__(self, key) - - def has_key(self, key): - return _mscl.Triggers_has_key(self, key) - - def keys(self): - return _mscl.Triggers_keys(self) - - def values(self): - return _mscl.Triggers_values(self) - - def items(self): - return _mscl.Triggers_items(self) - - def __contains__(self, key): - return _mscl.Triggers___contains__(self, key) - - def key_iterator(self): - return _mscl.Triggers_key_iterator(self) - - def value_iterator(self): - return _mscl.Triggers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.Triggers___setitem__(self, *args) - - def asdict(self): - return _mscl.Triggers_asdict(self) - - def __init__(self, *args): - _mscl.Triggers_swiginit(self, _mscl.new_Triggers(*args)) - - def empty(self): - return _mscl.Triggers_empty(self) - - def size(self): - return _mscl.Triggers_size(self) - - def swap(self, v): - return _mscl.Triggers_swap(self, v) - - def begin(self): - return _mscl.Triggers_begin(self) - - def end(self): - return _mscl.Triggers_end(self) - - def rbegin(self): - return _mscl.Triggers_rbegin(self) - - def rend(self): - return _mscl.Triggers_rend(self) - - def clear(self): - return _mscl.Triggers_clear(self) - - def get_allocator(self): - return _mscl.Triggers_get_allocator(self) - - def count(self, x): - return _mscl.Triggers_count(self, x) - - def erase(self, *args): - return _mscl.Triggers_erase(self, *args) - - def find(self, x): - return _mscl.Triggers_find(self, x) - - def lower_bound(self, x): - return _mscl.Triggers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.Triggers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_Triggers - -# Register Triggers in _mscl: -_mscl.Triggers_swigregister(Triggers) - -class ChannelCalMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelCalMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelCalMap___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelCalMap___bool__(self) - - def __len__(self): - return _mscl.ChannelCalMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelCalMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelCalMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelCalMap_has_key(self, key) - - def keys(self): - return _mscl.ChannelCalMap_keys(self) - - def values(self): - return _mscl.ChannelCalMap_values(self) - - def items(self): - return _mscl.ChannelCalMap_items(self) - - def __contains__(self, key): - return _mscl.ChannelCalMap___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelCalMap_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelCalMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelCalMap___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelCalMap_asdict(self) - - def __init__(self, *args): - _mscl.ChannelCalMap_swiginit(self, _mscl.new_ChannelCalMap(*args)) - - def empty(self): - return _mscl.ChannelCalMap_empty(self) - - def size(self): - return _mscl.ChannelCalMap_size(self) - - def swap(self, v): - return _mscl.ChannelCalMap_swap(self, v) - - def begin(self): - return _mscl.ChannelCalMap_begin(self) - - def end(self): - return _mscl.ChannelCalMap_end(self) - - def rbegin(self): - return _mscl.ChannelCalMap_rbegin(self) - - def rend(self): - return _mscl.ChannelCalMap_rend(self) - - def clear(self): - return _mscl.ChannelCalMap_clear(self) - - def get_allocator(self): - return _mscl.ChannelCalMap_get_allocator(self) - - def count(self, x): - return _mscl.ChannelCalMap_count(self, x) - - def erase(self, *args): - return _mscl.ChannelCalMap_erase(self, *args) - - def find(self, x): - return _mscl.ChannelCalMap_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelCalMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelCalMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelCalMap - -# Register ChannelCalMap in _mscl: -_mscl.ChannelCalMap_swigregister(ChannelCalMap) - -class WirelessPollData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessPollData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessPollData___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessPollData___bool__(self) - - def __len__(self): - return _mscl.WirelessPollData___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.WirelessPollData___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.WirelessPollData___delitem__(self, key) - - def has_key(self, key): - return _mscl.WirelessPollData_has_key(self, key) - - def keys(self): - return _mscl.WirelessPollData_keys(self) - - def values(self): - return _mscl.WirelessPollData_values(self) - - def items(self): - return _mscl.WirelessPollData_items(self) - - def __contains__(self, key): - return _mscl.WirelessPollData___contains__(self, key) - - def key_iterator(self): - return _mscl.WirelessPollData_key_iterator(self) - - def value_iterator(self): - return _mscl.WirelessPollData_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.WirelessPollData___setitem__(self, *args) - - def asdict(self): - return _mscl.WirelessPollData_asdict(self) - - def __init__(self, *args): - _mscl.WirelessPollData_swiginit(self, _mscl.new_WirelessPollData(*args)) - - def empty(self): - return _mscl.WirelessPollData_empty(self) - - def size(self): - return _mscl.WirelessPollData_size(self) - - def swap(self, v): - return _mscl.WirelessPollData_swap(self, v) - - def begin(self): - return _mscl.WirelessPollData_begin(self) - - def end(self): - return _mscl.WirelessPollData_end(self) - - def rbegin(self): - return _mscl.WirelessPollData_rbegin(self) - - def rend(self): - return _mscl.WirelessPollData_rend(self) - - def clear(self): - return _mscl.WirelessPollData_clear(self) - - def get_allocator(self): - return _mscl.WirelessPollData_get_allocator(self) - - def count(self, x): - return _mscl.WirelessPollData_count(self, x) - - def erase(self, *args): - return _mscl.WirelessPollData_erase(self, *args) - - def find(self, x): - return _mscl.WirelessPollData_find(self, x) - - def lower_bound(self, x): - return _mscl.WirelessPollData_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.WirelessPollData_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_WirelessPollData - -# Register WirelessPollData in _mscl: -_mscl.WirelessPollData_swigregister(WirelessPollData) - -class ConnectionDebugDataVec(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConnectionDebugDataVec_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConnectionDebugDataVec___nonzero__(self) - - def __bool__(self): - return _mscl.ConnectionDebugDataVec___bool__(self) - - def __len__(self): - return _mscl.ConnectionDebugDataVec___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConnectionDebugDataVec___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConnectionDebugDataVec___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConnectionDebugDataVec___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConnectionDebugDataVec___setitem__(self, *args) - - def pop(self): - return _mscl.ConnectionDebugDataVec_pop(self) - - def append(self, x): - return _mscl.ConnectionDebugDataVec_append(self, x) - - def empty(self): - return _mscl.ConnectionDebugDataVec_empty(self) - - def size(self): - return _mscl.ConnectionDebugDataVec_size(self) - - def swap(self, v): - return _mscl.ConnectionDebugDataVec_swap(self, v) - - def begin(self): - return _mscl.ConnectionDebugDataVec_begin(self) - - def end(self): - return _mscl.ConnectionDebugDataVec_end(self) - - def rbegin(self): - return _mscl.ConnectionDebugDataVec_rbegin(self) - - def rend(self): - return _mscl.ConnectionDebugDataVec_rend(self) - - def clear(self): - return _mscl.ConnectionDebugDataVec_clear(self) - - def get_allocator(self): - return _mscl.ConnectionDebugDataVec_get_allocator(self) - - def pop_back(self): - return _mscl.ConnectionDebugDataVec_pop_back(self) - - def erase(self, *args): - return _mscl.ConnectionDebugDataVec_erase(self, *args) - - def __init__(self, *args): - _mscl.ConnectionDebugDataVec_swiginit(self, _mscl.new_ConnectionDebugDataVec(*args)) - - def push_back(self, x): - return _mscl.ConnectionDebugDataVec_push_back(self, x) - - def front(self): - return _mscl.ConnectionDebugDataVec_front(self) - - def back(self): - return _mscl.ConnectionDebugDataVec_back(self) - - def assign(self, n, x): - return _mscl.ConnectionDebugDataVec_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConnectionDebugDataVec_resize(self, *args) - - def insert(self, *args): - return _mscl.ConnectionDebugDataVec_insert(self, *args) - - def reserve(self, n): - return _mscl.ConnectionDebugDataVec_reserve(self, n) - - def capacity(self): - return _mscl.ConnectionDebugDataVec_capacity(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugDataVec - -# Register ConnectionDebugDataVec in _mscl: -_mscl.ConnectionDebugDataVec_swigregister(ConnectionDebugDataVec) - -class SatellitePRNs(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SatellitePRNs_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SatellitePRNs___nonzero__(self) - - def __bool__(self): - return _mscl.SatellitePRNs___bool__(self) - - def __len__(self): - return _mscl.SatellitePRNs___len__(self) - - def __getslice__(self, i, j): - return _mscl.SatellitePRNs___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SatellitePRNs___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SatellitePRNs___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SatellitePRNs___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SatellitePRNs___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SatellitePRNs___setitem__(self, *args) - - def pop(self): - return _mscl.SatellitePRNs_pop(self) - - def append(self, x): - return _mscl.SatellitePRNs_append(self, x) - - def empty(self): - return _mscl.SatellitePRNs_empty(self) - - def size(self): - return _mscl.SatellitePRNs_size(self) - - def swap(self, v): - return _mscl.SatellitePRNs_swap(self, v) - - def begin(self): - return _mscl.SatellitePRNs_begin(self) - - def end(self): - return _mscl.SatellitePRNs_end(self) - - def rbegin(self): - return _mscl.SatellitePRNs_rbegin(self) - - def rend(self): - return _mscl.SatellitePRNs_rend(self) - - def clear(self): - return _mscl.SatellitePRNs_clear(self) - - def get_allocator(self): - return _mscl.SatellitePRNs_get_allocator(self) - - def pop_back(self): - return _mscl.SatellitePRNs_pop_back(self) - - def erase(self, *args): - return _mscl.SatellitePRNs_erase(self, *args) - - def __init__(self, *args): - _mscl.SatellitePRNs_swiginit(self, _mscl.new_SatellitePRNs(*args)) - - def push_back(self, x): - return _mscl.SatellitePRNs_push_back(self, x) - - def front(self): - return _mscl.SatellitePRNs_front(self) - - def back(self): - return _mscl.SatellitePRNs_back(self) - - def assign(self, n, x): - return _mscl.SatellitePRNs_assign(self, n, x) - - def resize(self, *args): - return _mscl.SatellitePRNs_resize(self, *args) - - def insert(self, *args): - return _mscl.SatellitePRNs_insert(self, *args) - - def reserve(self, n): - return _mscl.SatellitePRNs_reserve(self, n) - - def capacity(self): - return _mscl.SatellitePRNs_capacity(self) - __swig_destroy__ = _mscl.delete_SatellitePRNs - -# Register SatellitePRNs in _mscl: -_mscl.SatellitePRNs_swigregister(SatellitePRNs) - -class Constellations(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Constellations_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Constellations___nonzero__(self) - - def __bool__(self): - return _mscl.Constellations___bool__(self) - - def __len__(self): - return _mscl.Constellations___len__(self) - - def __getslice__(self, i, j): - return _mscl.Constellations___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Constellations___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Constellations___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Constellations___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Constellations___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Constellations___setitem__(self, *args) - - def pop(self): - return _mscl.Constellations_pop(self) - - def append(self, x): - return _mscl.Constellations_append(self, x) - - def empty(self): - return _mscl.Constellations_empty(self) - - def size(self): - return _mscl.Constellations_size(self) - - def swap(self, v): - return _mscl.Constellations_swap(self, v) - - def begin(self): - return _mscl.Constellations_begin(self) - - def end(self): - return _mscl.Constellations_end(self) - - def rbegin(self): - return _mscl.Constellations_rbegin(self) - - def rend(self): - return _mscl.Constellations_rend(self) - - def clear(self): - return _mscl.Constellations_clear(self) - - def get_allocator(self): - return _mscl.Constellations_get_allocator(self) - - def pop_back(self): - return _mscl.Constellations_pop_back(self) - - def erase(self, *args): - return _mscl.Constellations_erase(self, *args) - - def __init__(self, *args): - _mscl.Constellations_swiginit(self, _mscl.new_Constellations(*args)) - - def push_back(self, x): - return _mscl.Constellations_push_back(self, x) - - def front(self): - return _mscl.Constellations_front(self) - - def back(self): - return _mscl.Constellations_back(self) - - def assign(self, n, x): - return _mscl.Constellations_assign(self, n, x) - - def resize(self, *args): - return _mscl.Constellations_resize(self, *args) - - def insert(self, *args): - return _mscl.Constellations_insert(self, *args) - - def reserve(self, n): - return _mscl.Constellations_reserve(self, n) - - def capacity(self): - return _mscl.Constellations_capacity(self) - __swig_destroy__ = _mscl.delete_Constellations - -# Register Constellations in _mscl: -_mscl.Constellations_swigregister(Constellations) - -class HeadingUpdateOptionsList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HeadingUpdateOptionsList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HeadingUpdateOptionsList___nonzero__(self) - - def __bool__(self): - return _mscl.HeadingUpdateOptionsList___bool__(self) - - def __len__(self): - return _mscl.HeadingUpdateOptionsList___len__(self) - - def __getslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HeadingUpdateOptionsList___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___setitem__(self, *args) - - def pop(self): - return _mscl.HeadingUpdateOptionsList_pop(self) - - def append(self, x): - return _mscl.HeadingUpdateOptionsList_append(self, x) - - def empty(self): - return _mscl.HeadingUpdateOptionsList_empty(self) - - def size(self): - return _mscl.HeadingUpdateOptionsList_size(self) - - def swap(self, v): - return _mscl.HeadingUpdateOptionsList_swap(self, v) - - def begin(self): - return _mscl.HeadingUpdateOptionsList_begin(self) - - def end(self): - return _mscl.HeadingUpdateOptionsList_end(self) - - def rbegin(self): - return _mscl.HeadingUpdateOptionsList_rbegin(self) - - def rend(self): - return _mscl.HeadingUpdateOptionsList_rend(self) - - def clear(self): - return _mscl.HeadingUpdateOptionsList_clear(self) - - def get_allocator(self): - return _mscl.HeadingUpdateOptionsList_get_allocator(self) - - def pop_back(self): - return _mscl.HeadingUpdateOptionsList_pop_back(self) - - def erase(self, *args): - return _mscl.HeadingUpdateOptionsList_erase(self, *args) - - def __init__(self, *args): - _mscl.HeadingUpdateOptionsList_swiginit(self, _mscl.new_HeadingUpdateOptionsList(*args)) - - def push_back(self, x): - return _mscl.HeadingUpdateOptionsList_push_back(self, x) - - def front(self): - return _mscl.HeadingUpdateOptionsList_front(self) - - def back(self): - return _mscl.HeadingUpdateOptionsList_back(self) - - def assign(self, n, x): - return _mscl.HeadingUpdateOptionsList_assign(self, n, x) - - def resize(self, *args): - return _mscl.HeadingUpdateOptionsList_resize(self, *args) - - def insert(self, *args): - return _mscl.HeadingUpdateOptionsList_insert(self, *args) - - def reserve(self, n): - return _mscl.HeadingUpdateOptionsList_reserve(self, n) - - def capacity(self): - return _mscl.HeadingUpdateOptionsList_capacity(self) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptionsList - -# Register HeadingUpdateOptionsList in _mscl: -_mscl.HeadingUpdateOptionsList_swigregister(HeadingUpdateOptionsList) - -class AdaptiveMeasurementModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveMeasurementModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveMeasurementModes___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveMeasurementModes___bool__(self) - - def __len__(self): - return _mscl.AdaptiveMeasurementModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveMeasurementModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveMeasurementModes_pop(self) - - def append(self, x): - return _mscl.AdaptiveMeasurementModes_append(self, x) - - def empty(self): - return _mscl.AdaptiveMeasurementModes_empty(self) - - def size(self): - return _mscl.AdaptiveMeasurementModes_size(self) - - def swap(self, v): - return _mscl.AdaptiveMeasurementModes_swap(self, v) - - def begin(self): - return _mscl.AdaptiveMeasurementModes_begin(self) - - def end(self): - return _mscl.AdaptiveMeasurementModes_end(self) - - def rbegin(self): - return _mscl.AdaptiveMeasurementModes_rbegin(self) - - def rend(self): - return _mscl.AdaptiveMeasurementModes_rend(self) - - def clear(self): - return _mscl.AdaptiveMeasurementModes_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveMeasurementModes_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveMeasurementModes_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveMeasurementModes_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveMeasurementModes_swiginit(self, _mscl.new_AdaptiveMeasurementModes(*args)) - - def push_back(self, x): - return _mscl.AdaptiveMeasurementModes_push_back(self, x) - - def front(self): - return _mscl.AdaptiveMeasurementModes_front(self) - - def back(self): - return _mscl.AdaptiveMeasurementModes_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveMeasurementModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveMeasurementModes_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveMeasurementModes_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveMeasurementModes_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveMeasurementModes_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementModes - -# Register AdaptiveMeasurementModes in _mscl: -_mscl.AdaptiveMeasurementModes_swigregister(AdaptiveMeasurementModes) - -class GeometricVectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeometricVectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeometricVectors___nonzero__(self) - - def __bool__(self): - return _mscl.GeometricVectors___bool__(self) - - def __len__(self): - return _mscl.GeometricVectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeometricVectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeometricVectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeometricVectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeometricVectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeometricVectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeometricVectors___setitem__(self, *args) - - def pop(self): - return _mscl.GeometricVectors_pop(self) - - def append(self, x): - return _mscl.GeometricVectors_append(self, x) - - def empty(self): - return _mscl.GeometricVectors_empty(self) - - def size(self): - return _mscl.GeometricVectors_size(self) - - def swap(self, v): - return _mscl.GeometricVectors_swap(self, v) - - def begin(self): - return _mscl.GeometricVectors_begin(self) - - def end(self): - return _mscl.GeometricVectors_end(self) - - def rbegin(self): - return _mscl.GeometricVectors_rbegin(self) - - def rend(self): - return _mscl.GeometricVectors_rend(self) - - def clear(self): - return _mscl.GeometricVectors_clear(self) - - def get_allocator(self): - return _mscl.GeometricVectors_get_allocator(self) - - def pop_back(self): - return _mscl.GeometricVectors_pop_back(self) - - def erase(self, *args): - return _mscl.GeometricVectors_erase(self, *args) - - def __init__(self, *args): - _mscl.GeometricVectors_swiginit(self, _mscl.new_GeometricVectors(*args)) - - def push_back(self, x): - return _mscl.GeometricVectors_push_back(self, x) - - def front(self): - return _mscl.GeometricVectors_front(self) - - def back(self): - return _mscl.GeometricVectors_back(self) - - def assign(self, n, x): - return _mscl.GeometricVectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeometricVectors_resize(self, *args) - - def insert(self, *args): - return _mscl.GeometricVectors_insert(self, *args) - - def reserve(self, n): - return _mscl.GeometricVectors_reserve(self, n) - - def capacity(self): - return _mscl.GeometricVectors_capacity(self) - __swig_destroy__ = _mscl.delete_GeometricVectors - -# Register GeometricVectors in _mscl: -_mscl.GeometricVectors_swigregister(GeometricVectors) - -class Matrix_3x3s(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Matrix_3x3s_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Matrix_3x3s___nonzero__(self) - - def __bool__(self): - return _mscl.Matrix_3x3s___bool__(self) - - def __len__(self): - return _mscl.Matrix_3x3s___len__(self) - - def __getslice__(self, i, j): - return _mscl.Matrix_3x3s___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Matrix_3x3s___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Matrix_3x3s___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Matrix_3x3s___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Matrix_3x3s___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Matrix_3x3s___setitem__(self, *args) - - def pop(self): - return _mscl.Matrix_3x3s_pop(self) - - def append(self, x): - return _mscl.Matrix_3x3s_append(self, x) - - def empty(self): - return _mscl.Matrix_3x3s_empty(self) - - def size(self): - return _mscl.Matrix_3x3s_size(self) - - def swap(self, v): - return _mscl.Matrix_3x3s_swap(self, v) - - def begin(self): - return _mscl.Matrix_3x3s_begin(self) - - def end(self): - return _mscl.Matrix_3x3s_end(self) - - def rbegin(self): - return _mscl.Matrix_3x3s_rbegin(self) - - def rend(self): - return _mscl.Matrix_3x3s_rend(self) - - def clear(self): - return _mscl.Matrix_3x3s_clear(self) - - def get_allocator(self): - return _mscl.Matrix_3x3s_get_allocator(self) - - def pop_back(self): - return _mscl.Matrix_3x3s_pop_back(self) - - def erase(self, *args): - return _mscl.Matrix_3x3s_erase(self, *args) - - def __init__(self, *args): - _mscl.Matrix_3x3s_swiginit(self, _mscl.new_Matrix_3x3s(*args)) - - def push_back(self, x): - return _mscl.Matrix_3x3s_push_back(self, x) - - def front(self): - return _mscl.Matrix_3x3s_front(self) - - def back(self): - return _mscl.Matrix_3x3s_back(self) - - def assign(self, n, x): - return _mscl.Matrix_3x3s_assign(self, n, x) - - def resize(self, *args): - return _mscl.Matrix_3x3s_resize(self, *args) - - def insert(self, *args): - return _mscl.Matrix_3x3s_insert(self, *args) - - def reserve(self, n): - return _mscl.Matrix_3x3s_reserve(self, n) - - def capacity(self): - return _mscl.Matrix_3x3s_capacity(self) - __swig_destroy__ = _mscl.delete_Matrix_3x3s - -# Register Matrix_3x3s in _mscl: -_mscl.Matrix_3x3s_swigregister(Matrix_3x3s) - -class StatusSelectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StatusSelectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StatusSelectors___nonzero__(self) - - def __bool__(self): - return _mscl.StatusSelectors___bool__(self) - - def __len__(self): - return _mscl.StatusSelectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.StatusSelectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StatusSelectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StatusSelectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StatusSelectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StatusSelectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StatusSelectors___setitem__(self, *args) - - def pop(self): - return _mscl.StatusSelectors_pop(self) - - def append(self, x): - return _mscl.StatusSelectors_append(self, x) - - def empty(self): - return _mscl.StatusSelectors_empty(self) - - def size(self): - return _mscl.StatusSelectors_size(self) - - def swap(self, v): - return _mscl.StatusSelectors_swap(self, v) - - def begin(self): - return _mscl.StatusSelectors_begin(self) - - def end(self): - return _mscl.StatusSelectors_end(self) - - def rbegin(self): - return _mscl.StatusSelectors_rbegin(self) - - def rend(self): - return _mscl.StatusSelectors_rend(self) - - def clear(self): - return _mscl.StatusSelectors_clear(self) - - def get_allocator(self): - return _mscl.StatusSelectors_get_allocator(self) - - def pop_back(self): - return _mscl.StatusSelectors_pop_back(self) - - def erase(self, *args): - return _mscl.StatusSelectors_erase(self, *args) - - def __init__(self, *args): - _mscl.StatusSelectors_swiginit(self, _mscl.new_StatusSelectors(*args)) - - def push_back(self, x): - return _mscl.StatusSelectors_push_back(self, x) - - def front(self): - return _mscl.StatusSelectors_front(self) - - def back(self): - return _mscl.StatusSelectors_back(self) - - def assign(self, n, x): - return _mscl.StatusSelectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.StatusSelectors_resize(self, *args) - - def insert(self, *args): - return _mscl.StatusSelectors_insert(self, *args) - - def reserve(self, n): - return _mscl.StatusSelectors_reserve(self, n) - - def capacity(self): - return _mscl.StatusSelectors_capacity(self) - __swig_destroy__ = _mscl.delete_StatusSelectors - -# Register StatusSelectors in _mscl: -_mscl.StatusSelectors_swigregister(StatusSelectors) - -class VehicleModeTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.VehicleModeTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.VehicleModeTypes___nonzero__(self) - - def __bool__(self): - return _mscl.VehicleModeTypes___bool__(self) - - def __len__(self): - return _mscl.VehicleModeTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.VehicleModeTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.VehicleModeTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.VehicleModeTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.VehicleModeTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.VehicleModeTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.VehicleModeTypes___setitem__(self, *args) - - def pop(self): - return _mscl.VehicleModeTypes_pop(self) - - def append(self, x): - return _mscl.VehicleModeTypes_append(self, x) - - def empty(self): - return _mscl.VehicleModeTypes_empty(self) - - def size(self): - return _mscl.VehicleModeTypes_size(self) - - def swap(self, v): - return _mscl.VehicleModeTypes_swap(self, v) - - def begin(self): - return _mscl.VehicleModeTypes_begin(self) - - def end(self): - return _mscl.VehicleModeTypes_end(self) - - def rbegin(self): - return _mscl.VehicleModeTypes_rbegin(self) - - def rend(self): - return _mscl.VehicleModeTypes_rend(self) - - def clear(self): - return _mscl.VehicleModeTypes_clear(self) - - def get_allocator(self): - return _mscl.VehicleModeTypes_get_allocator(self) - - def pop_back(self): - return _mscl.VehicleModeTypes_pop_back(self) - - def erase(self, *args): - return _mscl.VehicleModeTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.VehicleModeTypes_swiginit(self, _mscl.new_VehicleModeTypes(*args)) - - def push_back(self, x): - return _mscl.VehicleModeTypes_push_back(self, x) - - def front(self): - return _mscl.VehicleModeTypes_front(self) - - def back(self): - return _mscl.VehicleModeTypes_back(self) - - def assign(self, n, x): - return _mscl.VehicleModeTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.VehicleModeTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.VehicleModeTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.VehicleModeTypes_reserve(self, n) - - def capacity(self): - return _mscl.VehicleModeTypes_capacity(self) - __swig_destroy__ = _mscl.delete_VehicleModeTypes - -# Register VehicleModeTypes in _mscl: -_mscl.VehicleModeTypes_swigregister(VehicleModeTypes) - -class AdaptiveFilterLevels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveFilterLevels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveFilterLevels___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveFilterLevels___bool__(self) - - def __len__(self): - return _mscl.AdaptiveFilterLevels___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveFilterLevels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveFilterLevels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveFilterLevels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveFilterLevels___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveFilterLevels_pop(self) - - def append(self, x): - return _mscl.AdaptiveFilterLevels_append(self, x) - - def empty(self): - return _mscl.AdaptiveFilterLevels_empty(self) - - def size(self): - return _mscl.AdaptiveFilterLevels_size(self) - - def swap(self, v): - return _mscl.AdaptiveFilterLevels_swap(self, v) - - def begin(self): - return _mscl.AdaptiveFilterLevels_begin(self) - - def end(self): - return _mscl.AdaptiveFilterLevels_end(self) - - def rbegin(self): - return _mscl.AdaptiveFilterLevels_rbegin(self) - - def rend(self): - return _mscl.AdaptiveFilterLevels_rend(self) - - def clear(self): - return _mscl.AdaptiveFilterLevels_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveFilterLevels_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveFilterLevels_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveFilterLevels_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveFilterLevels_swiginit(self, _mscl.new_AdaptiveFilterLevels(*args)) - - def push_back(self, x): - return _mscl.AdaptiveFilterLevels_push_back(self, x) - - def front(self): - return _mscl.AdaptiveFilterLevels_front(self) - - def back(self): - return _mscl.AdaptiveFilterLevels_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveFilterLevels_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveFilterLevels_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveFilterLevels_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveFilterLevels_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveFilterLevels_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveFilterLevels - -# Register AdaptiveFilterLevels in _mscl: -_mscl.AdaptiveFilterLevels_swigregister(AdaptiveFilterLevels) - -class LowPassFilterConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LowPassFilterConfig_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LowPassFilterConfig___nonzero__(self) - - def __bool__(self): - return _mscl.LowPassFilterConfig___bool__(self) - - def __len__(self): - return _mscl.LowPassFilterConfig___len__(self) - - def __getslice__(self, i, j): - return _mscl.LowPassFilterConfig___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LowPassFilterConfig___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LowPassFilterConfig___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LowPassFilterConfig___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LowPassFilterConfig___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LowPassFilterConfig___setitem__(self, *args) - - def pop(self): - return _mscl.LowPassFilterConfig_pop(self) - - def append(self, x): - return _mscl.LowPassFilterConfig_append(self, x) - - def empty(self): - return _mscl.LowPassFilterConfig_empty(self) - - def size(self): - return _mscl.LowPassFilterConfig_size(self) - - def swap(self, v): - return _mscl.LowPassFilterConfig_swap(self, v) - - def begin(self): - return _mscl.LowPassFilterConfig_begin(self) - - def end(self): - return _mscl.LowPassFilterConfig_end(self) - - def rbegin(self): - return _mscl.LowPassFilterConfig_rbegin(self) - - def rend(self): - return _mscl.LowPassFilterConfig_rend(self) - - def clear(self): - return _mscl.LowPassFilterConfig_clear(self) - - def get_allocator(self): - return _mscl.LowPassFilterConfig_get_allocator(self) - - def pop_back(self): - return _mscl.LowPassFilterConfig_pop_back(self) - - def erase(self, *args): - return _mscl.LowPassFilterConfig_erase(self, *args) - - def __init__(self, *args): - _mscl.LowPassFilterConfig_swiginit(self, _mscl.new_LowPassFilterConfig(*args)) - - def push_back(self, x): - return _mscl.LowPassFilterConfig_push_back(self, x) - - def front(self): - return _mscl.LowPassFilterConfig_front(self) - - def back(self): - return _mscl.LowPassFilterConfig_back(self) - - def assign(self, n, x): - return _mscl.LowPassFilterConfig_assign(self, n, x) - - def resize(self, *args): - return _mscl.LowPassFilterConfig_resize(self, *args) - - def insert(self, *args): - return _mscl.LowPassFilterConfig_insert(self, *args) - - def reserve(self, n): - return _mscl.LowPassFilterConfig_reserve(self, n) - - def capacity(self): - return _mscl.LowPassFilterConfig_capacity(self) - __swig_destroy__ = _mscl.delete_LowPassFilterConfig - -# Register LowPassFilterConfig in _mscl: -_mscl.LowPassFilterConfig_swigregister(LowPassFilterConfig) - -class AidingMeasurementSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AidingMeasurementSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AidingMeasurementSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.AidingMeasurementSourceOptions___bool__(self) - - def __len__(self): - return _mscl.AidingMeasurementSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.AidingMeasurementSourceOptions_pop(self) - - def append(self, x): - return _mscl.AidingMeasurementSourceOptions_append(self, x) - - def empty(self): - return _mscl.AidingMeasurementSourceOptions_empty(self) - - def size(self): - return _mscl.AidingMeasurementSourceOptions_size(self) - - def swap(self, v): - return _mscl.AidingMeasurementSourceOptions_swap(self, v) - - def begin(self): - return _mscl.AidingMeasurementSourceOptions_begin(self) - - def end(self): - return _mscl.AidingMeasurementSourceOptions_end(self) - - def rbegin(self): - return _mscl.AidingMeasurementSourceOptions_rbegin(self) - - def rend(self): - return _mscl.AidingMeasurementSourceOptions_rend(self) - - def clear(self): - return _mscl.AidingMeasurementSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.AidingMeasurementSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.AidingMeasurementSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.AidingMeasurementSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.AidingMeasurementSourceOptions_swiginit(self, _mscl.new_AidingMeasurementSourceOptions(*args)) - - def push_back(self, x): - return _mscl.AidingMeasurementSourceOptions_push_back(self, x) - - def front(self): - return _mscl.AidingMeasurementSourceOptions_front(self) - - def back(self): - return _mscl.AidingMeasurementSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.AidingMeasurementSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.AidingMeasurementSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.AidingMeasurementSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.AidingMeasurementSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.AidingMeasurementSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_AidingMeasurementSourceOptions - -# Register AidingMeasurementSourceOptions in _mscl: -_mscl.AidingMeasurementSourceOptions_swigregister(AidingMeasurementSourceOptions) - -class PpsSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.PpsSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.PpsSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.PpsSourceOptions___bool__(self) - - def __len__(self): - return _mscl.PpsSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.PpsSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.PpsSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.PpsSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.PpsSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.PpsSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.PpsSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.PpsSourceOptions_pop(self) - - def append(self, x): - return _mscl.PpsSourceOptions_append(self, x) - - def empty(self): - return _mscl.PpsSourceOptions_empty(self) - - def size(self): - return _mscl.PpsSourceOptions_size(self) - - def swap(self, v): - return _mscl.PpsSourceOptions_swap(self, v) - - def begin(self): - return _mscl.PpsSourceOptions_begin(self) - - def end(self): - return _mscl.PpsSourceOptions_end(self) - - def rbegin(self): - return _mscl.PpsSourceOptions_rbegin(self) - - def rend(self): - return _mscl.PpsSourceOptions_rend(self) - - def clear(self): - return _mscl.PpsSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.PpsSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.PpsSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.PpsSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.PpsSourceOptions_swiginit(self, _mscl.new_PpsSourceOptions(*args)) - - def push_back(self, x): - return _mscl.PpsSourceOptions_push_back(self, x) - - def front(self): - return _mscl.PpsSourceOptions_front(self) - - def back(self): - return _mscl.PpsSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.PpsSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.PpsSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.PpsSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.PpsSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.PpsSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_PpsSourceOptions - -# Register PpsSourceOptions in _mscl: -_mscl.PpsSourceOptions_swigregister(PpsSourceOptions) - -class GeographicSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeographicSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeographicSources___nonzero__(self) - - def __bool__(self): - return _mscl.GeographicSources___bool__(self) - - def __len__(self): - return _mscl.GeographicSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeographicSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeographicSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeographicSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeographicSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeographicSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeographicSources___setitem__(self, *args) - - def pop(self): - return _mscl.GeographicSources_pop(self) - - def append(self, x): - return _mscl.GeographicSources_append(self, x) - - def empty(self): - return _mscl.GeographicSources_empty(self) - - def size(self): - return _mscl.GeographicSources_size(self) - - def swap(self, v): - return _mscl.GeographicSources_swap(self, v) - - def begin(self): - return _mscl.GeographicSources_begin(self) - - def end(self): - return _mscl.GeographicSources_end(self) - - def rbegin(self): - return _mscl.GeographicSources_rbegin(self) - - def rend(self): - return _mscl.GeographicSources_rend(self) - - def clear(self): - return _mscl.GeographicSources_clear(self) - - def get_allocator(self): - return _mscl.GeographicSources_get_allocator(self) - - def pop_back(self): - return _mscl.GeographicSources_pop_back(self) - - def erase(self, *args): - return _mscl.GeographicSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GeographicSources_swiginit(self, _mscl.new_GeographicSources(*args)) - - def push_back(self, x): - return _mscl.GeographicSources_push_back(self, x) - - def front(self): - return _mscl.GeographicSources_front(self) - - def back(self): - return _mscl.GeographicSources_back(self) - - def assign(self, n, x): - return _mscl.GeographicSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeographicSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GeographicSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GeographicSources_reserve(self, n) - - def capacity(self): - return _mscl.GeographicSources_capacity(self) - __swig_destroy__ = _mscl.delete_GeographicSources - -# Register GeographicSources in _mscl: -_mscl.GeographicSources_swigregister(GeographicSources) - -class GnssSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSources___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSources___bool__(self) - - def __len__(self): - return _mscl.GnssSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssSources___setitem__(self, *args) - - def pop(self): - return _mscl.GnssSources_pop(self) - - def append(self, x): - return _mscl.GnssSources_append(self, x) - - def empty(self): - return _mscl.GnssSources_empty(self) - - def size(self): - return _mscl.GnssSources_size(self) - - def swap(self, v): - return _mscl.GnssSources_swap(self, v) - - def begin(self): - return _mscl.GnssSources_begin(self) - - def end(self): - return _mscl.GnssSources_end(self) - - def rbegin(self): - return _mscl.GnssSources_rbegin(self) - - def rend(self): - return _mscl.GnssSources_rend(self) - - def clear(self): - return _mscl.GnssSources_clear(self) - - def get_allocator(self): - return _mscl.GnssSources_get_allocator(self) - - def pop_back(self): - return _mscl.GnssSources_pop_back(self) - - def erase(self, *args): - return _mscl.GnssSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssSources_swiginit(self, _mscl.new_GnssSources(*args)) - - def push_back(self, x): - return _mscl.GnssSources_push_back(self, x) - - def front(self): - return _mscl.GnssSources_front(self) - - def back(self): - return _mscl.GnssSources_back(self) - - def assign(self, n, x): - return _mscl.GnssSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssSources_reserve(self, n) - - def capacity(self): - return _mscl.GnssSources_capacity(self) - __swig_destroy__ = _mscl.delete_GnssSources - -# Register GnssSources in _mscl: -_mscl.GnssSources_swigregister(GnssSources) - -class GnssSignalConfigOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSignalConfigOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSignalConfigOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSignalConfigOptions___bool__(self) - - def __len__(self): - return _mscl.GnssSignalConfigOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GnssSignalConfigOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GnssSignalConfigOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GnssSignalConfigOptions_has_key(self, key) - - def keys(self): - return _mscl.GnssSignalConfigOptions_keys(self) - - def values(self): - return _mscl.GnssSignalConfigOptions_values(self) - - def items(self): - return _mscl.GnssSignalConfigOptions_items(self) - - def __contains__(self, key): - return _mscl.GnssSignalConfigOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GnssSignalConfigOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GnssSignalConfigOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GnssSignalConfigOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GnssSignalConfigOptions_asdict(self) - - def __init__(self, *args): - _mscl.GnssSignalConfigOptions_swiginit(self, _mscl.new_GnssSignalConfigOptions(*args)) - - def empty(self): - return _mscl.GnssSignalConfigOptions_empty(self) - - def size(self): - return _mscl.GnssSignalConfigOptions_size(self) - - def swap(self, v): - return _mscl.GnssSignalConfigOptions_swap(self, v) - - def begin(self): - return _mscl.GnssSignalConfigOptions_begin(self) - - def end(self): - return _mscl.GnssSignalConfigOptions_end(self) - - def rbegin(self): - return _mscl.GnssSignalConfigOptions_rbegin(self) - - def rend(self): - return _mscl.GnssSignalConfigOptions_rend(self) - - def clear(self): - return _mscl.GnssSignalConfigOptions_clear(self) - - def get_allocator(self): - return _mscl.GnssSignalConfigOptions_get_allocator(self) - - def count(self, x): - return _mscl.GnssSignalConfigOptions_count(self, x) - - def erase(self, *args): - return _mscl.GnssSignalConfigOptions_erase(self, *args) - - def find(self, x): - return _mscl.GnssSignalConfigOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GnssSignalConfigOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GnssSignalConfigOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GnssSignalConfigOptions - -# Register GnssSignalConfigOptions in _mscl: -_mscl.GnssSignalConfigOptions_swigregister(GnssSignalConfigOptions) - -class NmeaMessageFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NmeaMessageFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NmeaMessageFormats___nonzero__(self) - - def __bool__(self): - return _mscl.NmeaMessageFormats___bool__(self) - - def __len__(self): - return _mscl.NmeaMessageFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.NmeaMessageFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NmeaMessageFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NmeaMessageFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NmeaMessageFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NmeaMessageFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NmeaMessageFormats___setitem__(self, *args) - - def pop(self): - return _mscl.NmeaMessageFormats_pop(self) - - def append(self, x): - return _mscl.NmeaMessageFormats_append(self, x) - - def empty(self): - return _mscl.NmeaMessageFormats_empty(self) - - def size(self): - return _mscl.NmeaMessageFormats_size(self) - - def swap(self, v): - return _mscl.NmeaMessageFormats_swap(self, v) - - def begin(self): - return _mscl.NmeaMessageFormats_begin(self) - - def end(self): - return _mscl.NmeaMessageFormats_end(self) - - def rbegin(self): - return _mscl.NmeaMessageFormats_rbegin(self) - - def rend(self): - return _mscl.NmeaMessageFormats_rend(self) - - def clear(self): - return _mscl.NmeaMessageFormats_clear(self) - - def get_allocator(self): - return _mscl.NmeaMessageFormats_get_allocator(self) - - def pop_back(self): - return _mscl.NmeaMessageFormats_pop_back(self) - - def erase(self, *args): - return _mscl.NmeaMessageFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.NmeaMessageFormats_swiginit(self, _mscl.new_NmeaMessageFormats(*args)) - - def push_back(self, x): - return _mscl.NmeaMessageFormats_push_back(self, x) - - def front(self): - return _mscl.NmeaMessageFormats_front(self) - - def back(self): - return _mscl.NmeaMessageFormats_back(self) - - def assign(self, n, x): - return _mscl.NmeaMessageFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.NmeaMessageFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.NmeaMessageFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.NmeaMessageFormats_reserve(self, n) - - def capacity(self): - return _mscl.NmeaMessageFormats_capacity(self) - __swig_destroy__ = _mscl.delete_NmeaMessageFormats - -# Register NmeaMessageFormats in _mscl: -_mscl.NmeaMessageFormats_swigregister(NmeaMessageFormats) - -class GpioPinModeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinModeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinModeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinModeOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinModeOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.GpioPinModeOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GpioPinModeOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GpioPinModeOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GpioPinModeOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GpioPinModeOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GpioPinModeOptions___setitem__(self, *args) - - def pop(self): - return _mscl.GpioPinModeOptions_pop(self) - - def append(self, x): - return _mscl.GpioPinModeOptions_append(self, x) - - def empty(self): - return _mscl.GpioPinModeOptions_empty(self) - - def size(self): - return _mscl.GpioPinModeOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinModeOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinModeOptions_begin(self) - - def end(self): - return _mscl.GpioPinModeOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinModeOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinModeOptions_rend(self) - - def clear(self): - return _mscl.GpioPinModeOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinModeOptions_get_allocator(self) - - def pop_back(self): - return _mscl.GpioPinModeOptions_pop_back(self) - - def erase(self, *args): - return _mscl.GpioPinModeOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.GpioPinModeOptions_swiginit(self, _mscl.new_GpioPinModeOptions(*args)) - - def push_back(self, x): - return _mscl.GpioPinModeOptions_push_back(self, x) - - def front(self): - return _mscl.GpioPinModeOptions_front(self) - - def back(self): - return _mscl.GpioPinModeOptions_back(self) - - def assign(self, n, x): - return _mscl.GpioPinModeOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.GpioPinModeOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.GpioPinModeOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.GpioPinModeOptions_reserve(self, n) - - def capacity(self): - return _mscl.GpioPinModeOptions_capacity(self) - __swig_destroy__ = _mscl.delete_GpioPinModeOptions - -# Register GpioPinModeOptions in _mscl: -_mscl.GpioPinModeOptions_swigregister(GpioPinModeOptions) - -class GpioBehaviorModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioBehaviorModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioBehaviorModes___nonzero__(self) - - def __bool__(self): - return _mscl.GpioBehaviorModes___bool__(self) - - def __len__(self): - return _mscl.GpioBehaviorModes___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioBehaviorModes___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioBehaviorModes___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioBehaviorModes_has_key(self, key) - - def keys(self): - return _mscl.GpioBehaviorModes_keys(self) - - def values(self): - return _mscl.GpioBehaviorModes_values(self) - - def items(self): - return _mscl.GpioBehaviorModes_items(self) - - def __contains__(self, key): - return _mscl.GpioBehaviorModes___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioBehaviorModes_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioBehaviorModes_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioBehaviorModes___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioBehaviorModes_asdict(self) - - def __init__(self, *args): - _mscl.GpioBehaviorModes_swiginit(self, _mscl.new_GpioBehaviorModes(*args)) - - def empty(self): - return _mscl.GpioBehaviorModes_empty(self) - - def size(self): - return _mscl.GpioBehaviorModes_size(self) - - def swap(self, v): - return _mscl.GpioBehaviorModes_swap(self, v) - - def begin(self): - return _mscl.GpioBehaviorModes_begin(self) - - def end(self): - return _mscl.GpioBehaviorModes_end(self) - - def rbegin(self): - return _mscl.GpioBehaviorModes_rbegin(self) - - def rend(self): - return _mscl.GpioBehaviorModes_rend(self) - - def clear(self): - return _mscl.GpioBehaviorModes_clear(self) - - def get_allocator(self): - return _mscl.GpioBehaviorModes_get_allocator(self) - - def count(self, x): - return _mscl.GpioBehaviorModes_count(self, x) - - def erase(self, *args): - return _mscl.GpioBehaviorModes_erase(self, *args) - - def find(self, x): - return _mscl.GpioBehaviorModes_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioBehaviorModes_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioBehaviorModes_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioBehaviorModes - -# Register GpioBehaviorModes in _mscl: -_mscl.GpioBehaviorModes_swigregister(GpioBehaviorModes) - -class GpioFeatureBehaviors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioFeatureBehaviors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioFeatureBehaviors___nonzero__(self) - - def __bool__(self): - return _mscl.GpioFeatureBehaviors___bool__(self) - - def __len__(self): - return _mscl.GpioFeatureBehaviors___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioFeatureBehaviors___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioFeatureBehaviors___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioFeatureBehaviors_has_key(self, key) - - def keys(self): - return _mscl.GpioFeatureBehaviors_keys(self) - - def values(self): - return _mscl.GpioFeatureBehaviors_values(self) - - def items(self): - return _mscl.GpioFeatureBehaviors_items(self) - - def __contains__(self, key): - return _mscl.GpioFeatureBehaviors___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioFeatureBehaviors_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioFeatureBehaviors_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioFeatureBehaviors___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioFeatureBehaviors_asdict(self) - - def __init__(self, *args): - _mscl.GpioFeatureBehaviors_swiginit(self, _mscl.new_GpioFeatureBehaviors(*args)) - - def empty(self): - return _mscl.GpioFeatureBehaviors_empty(self) - - def size(self): - return _mscl.GpioFeatureBehaviors_size(self) - - def swap(self, v): - return _mscl.GpioFeatureBehaviors_swap(self, v) - - def begin(self): - return _mscl.GpioFeatureBehaviors_begin(self) - - def end(self): - return _mscl.GpioFeatureBehaviors_end(self) - - def rbegin(self): - return _mscl.GpioFeatureBehaviors_rbegin(self) - - def rend(self): - return _mscl.GpioFeatureBehaviors_rend(self) - - def clear(self): - return _mscl.GpioFeatureBehaviors_clear(self) - - def get_allocator(self): - return _mscl.GpioFeatureBehaviors_get_allocator(self) - - def count(self, x): - return _mscl.GpioFeatureBehaviors_count(self, x) - - def erase(self, *args): - return _mscl.GpioFeatureBehaviors_erase(self, *args) - - def find(self, x): - return _mscl.GpioFeatureBehaviors_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioFeatureBehaviors_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioFeatureBehaviors_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioFeatureBehaviors - -# Register GpioFeatureBehaviors in _mscl: -_mscl.GpioFeatureBehaviors_swigregister(GpioFeatureBehaviors) - -class GpioPinOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioPinOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioPinOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioPinOptions_has_key(self, key) - - def keys(self): - return _mscl.GpioPinOptions_keys(self) - - def values(self): - return _mscl.GpioPinOptions_values(self) - - def items(self): - return _mscl.GpioPinOptions_items(self) - - def __contains__(self, key): - return _mscl.GpioPinOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioPinOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioPinOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioPinOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioPinOptions_asdict(self) - - def __init__(self, *args): - _mscl.GpioPinOptions_swiginit(self, _mscl.new_GpioPinOptions(*args)) - - def empty(self): - return _mscl.GpioPinOptions_empty(self) - - def size(self): - return _mscl.GpioPinOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinOptions_begin(self) - - def end(self): - return _mscl.GpioPinOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinOptions_rend(self) - - def clear(self): - return _mscl.GpioPinOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinOptions_get_allocator(self) - - def count(self, x): - return _mscl.GpioPinOptions_count(self, x) - - def erase(self, *args): - return _mscl.GpioPinOptions_erase(self, *args) - - def find(self, x): - return _mscl.GpioPinOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioPinOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioPinOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioPinOptions - -# Register GpioPinOptions in _mscl: -_mscl.GpioPinOptions_swigregister(GpioPinOptions) - -class EventInputTriggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventInputTriggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventInputTriggers___nonzero__(self) - - def __bool__(self): - return _mscl.EventInputTriggers___bool__(self) - - def __len__(self): - return _mscl.EventInputTriggers___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventInputTriggers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventInputTriggers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventInputTriggers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventInputTriggers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventInputTriggers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventInputTriggers___setitem__(self, *args) - - def __init__(self, *args): - _mscl.EventInputTriggers_swiginit(self, _mscl.new_EventInputTriggers(*args)) - - def empty(self): - return _mscl.EventInputTriggers_empty(self) - - def size(self): - return _mscl.EventInputTriggers_size(self) - - def swap(self, v): - return _mscl.EventInputTriggers_swap(self, v) - - def begin(self): - return _mscl.EventInputTriggers_begin(self) - - def end(self): - return _mscl.EventInputTriggers_end(self) - - def rbegin(self): - return _mscl.EventInputTriggers_rbegin(self) - - def rend(self): - return _mscl.EventInputTriggers_rend(self) - - def front(self): - return _mscl.EventInputTriggers_front(self) - - def back(self): - return _mscl.EventInputTriggers_back(self) - - def fill(self, u): - return _mscl.EventInputTriggers_fill(self, u) - __swig_destroy__ = _mscl.delete_EventInputTriggers - -# Register EventInputTriggers in _mscl: -_mscl.EventInputTriggers_swigregister(EventInputTriggers) - -class EventTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTypes___nonzero__(self) - - def __bool__(self): - return _mscl.EventTypes___bool__(self) - - def __len__(self): - return _mscl.EventTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTypes___setitem__(self, *args) - - def pop(self): - return _mscl.EventTypes_pop(self) - - def append(self, x): - return _mscl.EventTypes_append(self, x) - - def empty(self): - return _mscl.EventTypes_empty(self) - - def size(self): - return _mscl.EventTypes_size(self) - - def swap(self, v): - return _mscl.EventTypes_swap(self, v) - - def begin(self): - return _mscl.EventTypes_begin(self) - - def end(self): - return _mscl.EventTypes_end(self) - - def rbegin(self): - return _mscl.EventTypes_rbegin(self) - - def rend(self): - return _mscl.EventTypes_rend(self) - - def clear(self): - return _mscl.EventTypes_clear(self) - - def get_allocator(self): - return _mscl.EventTypes_get_allocator(self) - - def pop_back(self): - return _mscl.EventTypes_pop_back(self) - - def erase(self, *args): - return _mscl.EventTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTypes_swiginit(self, _mscl.new_EventTypes(*args)) - - def push_back(self, x): - return _mscl.EventTypes_push_back(self, x) - - def front(self): - return _mscl.EventTypes_front(self) - - def back(self): - return _mscl.EventTypes_back(self) - - def assign(self, n, x): - return _mscl.EventTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTypes_reserve(self, n) - - def capacity(self): - return _mscl.EventTypes_capacity(self) - __swig_destroy__ = _mscl.delete_EventTypes - -# Register EventTypes in _mscl: -_mscl.EventTypes_swigregister(EventTypes) - -class MeasurementReferenceFrames(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MeasurementReferenceFrames_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MeasurementReferenceFrames___nonzero__(self) - - def __bool__(self): - return _mscl.MeasurementReferenceFrames___bool__(self) - - def __len__(self): - return _mscl.MeasurementReferenceFrames___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.MeasurementReferenceFrames___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.MeasurementReferenceFrames___delitem__(self, key) - - def has_key(self, key): - return _mscl.MeasurementReferenceFrames_has_key(self, key) - - def keys(self): - return _mscl.MeasurementReferenceFrames_keys(self) - - def values(self): - return _mscl.MeasurementReferenceFrames_values(self) - - def items(self): - return _mscl.MeasurementReferenceFrames_items(self) - - def __contains__(self, key): - return _mscl.MeasurementReferenceFrames___contains__(self, key) - - def key_iterator(self): - return _mscl.MeasurementReferenceFrames_key_iterator(self) - - def value_iterator(self): - return _mscl.MeasurementReferenceFrames_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.MeasurementReferenceFrames___setitem__(self, *args) - - def asdict(self): - return _mscl.MeasurementReferenceFrames_asdict(self) - - def __init__(self, *args): - _mscl.MeasurementReferenceFrames_swiginit(self, _mscl.new_MeasurementReferenceFrames(*args)) - - def empty(self): - return _mscl.MeasurementReferenceFrames_empty(self) - - def size(self): - return _mscl.MeasurementReferenceFrames_size(self) - - def swap(self, v): - return _mscl.MeasurementReferenceFrames_swap(self, v) - - def begin(self): - return _mscl.MeasurementReferenceFrames_begin(self) - - def end(self): - return _mscl.MeasurementReferenceFrames_end(self) - - def rbegin(self): - return _mscl.MeasurementReferenceFrames_rbegin(self) - - def rend(self): - return _mscl.MeasurementReferenceFrames_rend(self) - - def clear(self): - return _mscl.MeasurementReferenceFrames_clear(self) - - def get_allocator(self): - return _mscl.MeasurementReferenceFrames_get_allocator(self) - - def count(self, x): - return _mscl.MeasurementReferenceFrames_count(self, x) - - def erase(self, *args): - return _mscl.MeasurementReferenceFrames_erase(self, *args) - - def find(self, x): - return _mscl.MeasurementReferenceFrames_find(self, x) - - def lower_bound(self, x): - return _mscl.MeasurementReferenceFrames_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.MeasurementReferenceFrames_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrames - -# Register MeasurementReferenceFrames in _mscl: -_mscl.MeasurementReferenceFrames_swigregister(MeasurementReferenceFrames) - -class Bins(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bins_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bins___nonzero__(self) - - def __bool__(self): - return _mscl.Bins___bool__(self) - - def __len__(self): - return _mscl.Bins___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bins___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bins___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bins___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bins___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bins___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bins___setitem__(self, *args) - - def pop(self): - return _mscl.Bins_pop(self) - - def append(self, x): - return _mscl.Bins_append(self, x) - - def empty(self): - return _mscl.Bins_empty(self) - - def size(self): - return _mscl.Bins_size(self) - - def swap(self, v): - return _mscl.Bins_swap(self, v) - - def begin(self): - return _mscl.Bins_begin(self) - - def end(self): - return _mscl.Bins_end(self) - - def rbegin(self): - return _mscl.Bins_rbegin(self) - - def rend(self): - return _mscl.Bins_rend(self) - - def clear(self): - return _mscl.Bins_clear(self) - - def get_allocator(self): - return _mscl.Bins_get_allocator(self) - - def pop_back(self): - return _mscl.Bins_pop_back(self) - - def erase(self, *args): - return _mscl.Bins_erase(self, *args) - - def __init__(self, *args): - _mscl.Bins_swiginit(self, _mscl.new_Bins(*args)) - - def push_back(self, x): - return _mscl.Bins_push_back(self, x) - - def front(self): - return _mscl.Bins_front(self) - - def back(self): - return _mscl.Bins_back(self) - - def assign(self, n, x): - return _mscl.Bins_assign(self, n, x) - - def insert(self, *args): - return _mscl.Bins_insert(self, *args) - - def reserve(self, n): - return _mscl.Bins_reserve(self, n) - - def capacity(self): - return _mscl.Bins_capacity(self) - __swig_destroy__ = _mscl.delete_Bins - -# Register Bins in _mscl: -_mscl.Bins_swigregister(Bins) - -class Error(Exception): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_swiginit(self, _mscl.new_Error(*args)) - __swig_destroy__ = _mscl.delete_Error - - def what(self): - return _mscl.Error_what(self) - - def __str__(self): - return _mscl.Error___str__(self) - -# Register Error in _mscl: -_mscl.Error_swigregister(Error) - -class Error_NotSupported(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NotSupported_swiginit(self, _mscl.new_Error_NotSupported(*args)) - __swig_destroy__ = _mscl.delete_Error_NotSupported - -# Register Error_NotSupported in _mscl: -_mscl.Error_NotSupported_swigregister(Error_NotSupported) - -class Error_NoData(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NoData_swiginit(self, _mscl.new_Error_NoData(*args)) - __swig_destroy__ = _mscl.delete_Error_NoData - -# Register Error_NoData in _mscl: -_mscl.Error_NoData_swigregister(Error_NoData) - -class Error_BadDataType(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Error_BadDataType_swiginit(self, _mscl.new_Error_BadDataType()) - __swig_destroy__ = _mscl.delete_Error_BadDataType - -# Register Error_BadDataType in _mscl: -_mscl.Error_BadDataType_swigregister(Error_BadDataType) - -class Error_UnknownSampleRate(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_UnknownSampleRate_swiginit(self, _mscl.new_Error_UnknownSampleRate(*args)) - __swig_destroy__ = _mscl.delete_Error_UnknownSampleRate - -# Register Error_UnknownSampleRate in _mscl: -_mscl.Error_UnknownSampleRate_swigregister(Error_UnknownSampleRate) - -class Error_Communication(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Communication_swiginit(self, _mscl.new_Error_Communication(*args)) - __swig_destroy__ = _mscl.delete_Error_Communication - -# Register Error_Communication in _mscl: -_mscl.Error_Communication_swigregister(Error_Communication) - -class Error_NodeCommunication(Error_Communication): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NodeCommunication_swiginit(self, _mscl.new_Error_NodeCommunication(*args)) - - def nodeAddress(self): - return _mscl.Error_NodeCommunication_nodeAddress(self) - __swig_destroy__ = _mscl.delete_Error_NodeCommunication - -# Register Error_NodeCommunication in _mscl: -_mscl.Error_NodeCommunication_swigregister(Error_NodeCommunication) - -class Error_Connection(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Connection_swiginit(self, _mscl.new_Error_Connection(*args)) - __swig_destroy__ = _mscl.delete_Error_Connection - - def code(self): - return _mscl.Error_Connection_code(self) - - def value(self): - return _mscl.Error_Connection_value(self) - -# Register Error_Connection in _mscl: -_mscl.Error_Connection_swigregister(Error_Connection) - -class Error_InvalidSerialPort(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code): - _mscl.Error_InvalidSerialPort_swiginit(self, _mscl.new_Error_InvalidSerialPort(code)) - __swig_destroy__ = _mscl.delete_Error_InvalidSerialPort - -# Register Error_InvalidSerialPort in _mscl: -_mscl.Error_InvalidSerialPort_swigregister(Error_InvalidSerialPort) - -class Error_InvalidTcpServer(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidTcpServer_swiginit(self, _mscl.new_Error_InvalidTcpServer(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidTcpServer - -# Register Error_InvalidTcpServer in _mscl: -_mscl.Error_InvalidTcpServer_swigregister(Error_InvalidTcpServer) - -class Error_InvalidUnixSocket(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidUnixSocket_swiginit(self, _mscl.new_Error_InvalidUnixSocket(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidUnixSocket - -# Register Error_InvalidUnixSocket in _mscl: -_mscl.Error_InvalidUnixSocket_swigregister(Error_InvalidUnixSocket) - -class Error_MipCmdFailed(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_MipCmdFailed_swiginit(self, _mscl.new_Error_MipCmdFailed(*args)) - __swig_destroy__ = _mscl.delete_Error_MipCmdFailed - - def code(self): - return _mscl.Error_MipCmdFailed_code(self) - - def value(self): - return _mscl.Error_MipCmdFailed_value(self) - -# Register Error_MipCmdFailed in _mscl: -_mscl.Error_MipCmdFailed_swigregister(Error_MipCmdFailed) - -class Error_InvalidConfig(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_InvalidConfig_swiginit(self, _mscl.new_Error_InvalidConfig(*args)) - __swig_destroy__ = _mscl.delete_Error_InvalidConfig - - def issues(self): - return _mscl.Error_InvalidConfig_issues(self) - -# Register Error_InvalidConfig in _mscl: -_mscl.Error_InvalidConfig_swigregister(Error_InvalidConfig) - -class Error_InvalidNodeConfig(Error_InvalidConfig): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, issues, nodeAddress): - _mscl.Error_InvalidNodeConfig_swiginit(self, _mscl.new_Error_InvalidNodeConfig(issues, nodeAddress)) - __swig_destroy__ = _mscl.delete_Error_InvalidNodeConfig - - def nodeAddress(self): - return _mscl.Error_InvalidNodeConfig_nodeAddress(self) - -# Register Error_InvalidNodeConfig in _mscl: -_mscl.Error_InvalidNodeConfig_swigregister(Error_InvalidNodeConfig) - - - diff --git a/mscl_release_assets/mscl-armhf-Python3.11-v67.0.0/_mscl.so b/mscl_release_assets/mscl-armhf-Python3.11-v67.0.0/_mscl.so deleted file mode 100644 index a1442d1..0000000 Binary files a/mscl_release_assets/mscl-armhf-Python3.11-v67.0.0/_mscl.so and /dev/null differ diff --git a/mscl_release_assets/mscl-armhf-Python3.11-v67.0.0/mscl.py b/mscl_release_assets/mscl-armhf-Python3.11-v67.0.0/mscl.py deleted file mode 100644 index daa6217..0000000 --- a/mscl_release_assets/mscl-armhf-Python3.11-v67.0.0/mscl.py +++ /dev/null @@ -1,18376 +0,0 @@ -# This file was automatically generated by SWIG (http://www.swig.org). -# Version 4.0.1 -# -# Do not make changes to this file unless you know what you are doing--modify -# the SWIG interface file instead. - -from sys import version_info as _swig_python_version_info -if _swig_python_version_info < (2, 7, 0): - raise RuntimeError("Python 2.7 or later required") - -# Import the low-level C/C++ module -if __package__ or "." in __name__: - from . import _mscl -else: - import _mscl - -try: - import builtins as __builtin__ -except ImportError: - import __builtin__ - -def _swig_repr(self): - try: - strthis = "proxy of " + self.this.__repr__() - except __builtin__.Exception: - strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - - -def _swig_setattr_nondynamic_instance_variable(set): - def set_instance_attr(self, name, value): - if name == "thisown": - self.this.own(value) - elif name == "this": - set(self, name, value) - elif hasattr(self, name) and isinstance(getattr(type(self), name), property): - set(self, name, value) - else: - raise AttributeError("You cannot add instance attributes to %s" % self) - return set_instance_attr - - -def _swig_setattr_nondynamic_class_variable(set): - def set_class_attr(cls, name, value): - if hasattr(cls, name) and not isinstance(getattr(cls, name), property): - set(cls, name, value) - else: - raise AttributeError("You cannot add class attributes to %s" % cls) - return set_class_attr - - -def _swig_add_metaclass(metaclass): - """Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass""" - def wrapper(cls): - return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy()) - return wrapper - - -class _SwigNonDynamicMeta(type): - """Meta class to enforce nondynamic attributes (no new attributes) for a class""" - __setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__) - - -class SwigPyIterator(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_SwigPyIterator - - def value(self): - return _mscl.SwigPyIterator_value(self) - - def incr(self, n=1): - return _mscl.SwigPyIterator_incr(self, n) - - def decr(self, n=1): - return _mscl.SwigPyIterator_decr(self, n) - - def distance(self, x): - return _mscl.SwigPyIterator_distance(self, x) - - def equal(self, x): - return _mscl.SwigPyIterator_equal(self, x) - - def copy(self): - return _mscl.SwigPyIterator_copy(self) - - def next(self): - return _mscl.SwigPyIterator_next(self) - - def __next__(self): - return _mscl.SwigPyIterator___next__(self) - - def previous(self): - return _mscl.SwigPyIterator_previous(self) - - def advance(self, n): - return _mscl.SwigPyIterator_advance(self, n) - - def __eq__(self, x): - return _mscl.SwigPyIterator___eq__(self, x) - - def __ne__(self, x): - return _mscl.SwigPyIterator___ne__(self, x) - - def __iadd__(self, n): - return _mscl.SwigPyIterator___iadd__(self, n) - - def __isub__(self, n): - return _mscl.SwigPyIterator___isub__(self, n) - - def __add__(self, n): - return _mscl.SwigPyIterator___add__(self, n) - - def __sub__(self, *args): - return _mscl.SwigPyIterator___sub__(self, *args) - def __iter__(self): - return self - -# Register SwigPyIterator in _mscl: -_mscl.SwigPyIterator_swigregister(SwigPyIterator) - -SHARED_PTR_DISOWN = _mscl.SHARED_PTR_DISOWN -valueType_float = _mscl.valueType_float -valueType_double = _mscl.valueType_double -valueType_uint8 = _mscl.valueType_uint8 -valueType_uint16 = _mscl.valueType_uint16 -valueType_uint32 = _mscl.valueType_uint32 -valueType_int16 = _mscl.valueType_int16 -valueType_int32 = _mscl.valueType_int32 -valueType_bool = _mscl.valueType_bool -valueType_Vector = _mscl.valueType_Vector -valueType_Matrix = _mscl.valueType_Matrix -valueType_Timestamp = _mscl.valueType_Timestamp -valueType_string = _mscl.valueType_string -valueType_Bytes = _mscl.valueType_Bytes -valueType_StructuralHealth = _mscl.valueType_StructuralHealth -valueType_RfSweep = _mscl.valueType_RfSweep -valueType_ChannelMask = _mscl.valueType_ChannelMask -valueType_int8 = _mscl.valueType_int8 -valueType_uint64 = _mscl.valueType_uint64 -deviceState_idle = _mscl.deviceState_idle -deviceState_sleep = _mscl.deviceState_sleep -deviceState_sampling = _mscl.deviceState_sampling -deviceState_sampling_lostBeacon = _mscl.deviceState_sampling_lostBeacon -deviceState_sampling_inactive = _mscl.deviceState_sampling_inactive -deviceState_unknown = _mscl.deviceState_unknown -class BitMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BitMask_swiginit(self, _mscl.new_BitMask(*args)) - __swig_destroy__ = _mscl.delete_BitMask - - def __eq__(self, other): - return _mscl.BitMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.BitMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.BitMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.BitMask___gt__(self, other) - - def fromMask(self, val): - return _mscl.BitMask_fromMask(self, val) - - def toMask(self): - return _mscl.BitMask_toMask(self) - - def enabledCount(self): - return _mscl.BitMask_enabledCount(self) - - def enabled(self, bitIndex): - return _mscl.BitMask_enabled(self, bitIndex) - - def enable(self, bitIndex, enable=True): - return _mscl.BitMask_enable(self, bitIndex, enable) - - def lastBitEnabled(self): - return _mscl.BitMask_lastBitEnabled(self) - -# Register BitMask in _mscl: -_mscl.BitMask_swigregister(BitMask) - -class ChannelMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_CHANNELS = _mscl.ChannelMask_MAX_CHANNELS - - def __init__(self, *args): - _mscl.ChannelMask_swiginit(self, _mscl.new_ChannelMask(*args)) - __swig_destroy__ = _mscl.delete_ChannelMask - - def __eq__(self, other): - return _mscl.ChannelMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.ChannelMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.ChannelMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.ChannelMask___gt__(self, other) - - def fromMask(self, channelMask): - return _mscl.ChannelMask_fromMask(self, channelMask) - - def toMask(self): - return _mscl.ChannelMask_toMask(self) - - def count(self): - return _mscl.ChannelMask_count(self) - - def enabled(self, channel): - return _mscl.ChannelMask_enabled(self, channel) - - def enable(self, channel, enable=True): - return _mscl.ChannelMask_enable(self, channel, enable) - - def lastChEnabled(self): - return _mscl.ChannelMask_lastChEnabled(self) - -# Register ChannelMask in _mscl: -_mscl.ChannelMask_swigregister(ChannelMask) - -class Value(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_Value - - def storedAs(self): - return _mscl.Value_storedAs(self) - - def as_float(self): - return _mscl.Value_as_float(self) - - def as_double(self): - return _mscl.Value_as_double(self) - - def as_uint8(self): - return _mscl.Value_as_uint8(self) - - def as_uint16(self): - return _mscl.Value_as_uint16(self) - - def as_uint32(self): - return _mscl.Value_as_uint32(self) - - def as_uint64(self): - return _mscl.Value_as_uint64(self) - - def as_int8(self): - return _mscl.Value_as_int8(self) - - def as_int16(self): - return _mscl.Value_as_int16(self) - - def as_int32(self): - return _mscl.Value_as_int32(self) - - def as_bool(self): - return _mscl.Value_as_bool(self) - - def as_ChannelMask(self): - return _mscl.Value_as_ChannelMask(self) - - def as_string(self): - return _mscl.Value_as_string(self) - - def __init__(self): - _mscl.Value_swiginit(self, _mscl.new_Value()) - -# Register Value in _mscl: -_mscl.Value_swigregister(Value) - -class Bin(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, start, end, count): - _mscl.Bin_swiginit(self, _mscl.new_Bin(start, end, count)) - - def start(self): - return _mscl.Bin_start(self) - - def end(self): - return _mscl.Bin_end(self) - - def count(self): - return _mscl.Bin_count(self) - __swig_destroy__ = _mscl.delete_Bin - -# Register Bin in _mscl: -_mscl.Bin_swigregister(Bin) - -class Histogram(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, binsStart, binsSize): - _mscl.Histogram_swiginit(self, _mscl.new_Histogram(binsStart, binsSize)) - - def binsStart(self): - return _mscl.Histogram_binsStart(self) - - def binsSize(self): - return _mscl.Histogram_binsSize(self) - - def bins(self): - return _mscl.Histogram_bins(self) - - def addBin(self, bin): - return _mscl.Histogram_addBin(self, bin) - __swig_destroy__ = _mscl.delete_Histogram - -# Register Histogram in _mscl: -_mscl.Histogram_swigregister(Histogram) - -class Timestamp(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INTERNAL = _mscl.Timestamp_INTERNAL - EXTERNAL = _mscl.Timestamp_EXTERNAL - TIME_OF_ARRIVAL = _mscl.Timestamp_TIME_OF_ARRIVAL - GPS = _mscl.Timestamp_GPS - UNIX = _mscl.Timestamp_UNIX - UTC = _mscl.Timestamp_UTC - - def __init__(self, *args): - _mscl.Timestamp_swiginit(self, _mscl.new_Timestamp(*args)) - __swig_destroy__ = _mscl.delete_Timestamp - - def nanoseconds(self, *args): - return _mscl.Timestamp_nanoseconds(self, *args) - - def seconds(self, *args): - return _mscl.Timestamp_seconds(self, *args) - - def storedEpoch(self): - return _mscl.Timestamp_storedEpoch(self) - - def __str__(self): - return _mscl.Timestamp___str__(self) - - def setTime(self, *args): - return _mscl.Timestamp_setTime(self, *args) - - def setTimeNow(self): - return _mscl.Timestamp_setTimeNow(self) - - @staticmethod - def timeNow(): - return _mscl.Timestamp_timeNow() - - @staticmethod - def setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - - @staticmethod - def getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - - @staticmethod - def gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - - @staticmethod - def utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -# Register Timestamp in _mscl: -_mscl.Timestamp_swigregister(Timestamp) - -def Timestamp_timeNow(): - return _mscl.Timestamp_timeNow() - -def Timestamp_setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - -def Timestamp_getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - -def Timestamp_gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - -def Timestamp_utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -class TimeSpan(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - NANOSECONDS_PER_MICROSECOND = _mscl.TimeSpan_NANOSECONDS_PER_MICROSECOND - NANOSECONDS_PER_MILLISECOND = _mscl.TimeSpan_NANOSECONDS_PER_MILLISECOND - NANOSECONDS_PER_SECOND = _mscl.TimeSpan_NANOSECONDS_PER_SECOND - - def getNanoseconds(self): - return _mscl.TimeSpan_getNanoseconds(self) - - def getMicroseconds(self): - return _mscl.TimeSpan_getMicroseconds(self) - - def getMilliseconds(self): - return _mscl.TimeSpan_getMilliseconds(self) - - def getSeconds(self): - return _mscl.TimeSpan_getSeconds(self) - - @staticmethod - def NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - - @staticmethod - def MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - - @staticmethod - def MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - - @staticmethod - def Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - - @staticmethod - def Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - - @staticmethod - def Hours(hours): - return _mscl.TimeSpan_Hours(hours) - - @staticmethod - def Days(days): - return _mscl.TimeSpan_Days(days) - __swig_destroy__ = _mscl.delete_TimeSpan - -# Register TimeSpan in _mscl: -_mscl.TimeSpan_swigregister(TimeSpan) - -def TimeSpan_NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - -def TimeSpan_MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - -def TimeSpan_MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - -def TimeSpan_Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - -def TimeSpan_Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - -def TimeSpan_Hours(hours): - return _mscl.TimeSpan_Hours(hours) - -def TimeSpan_Days(days): - return _mscl.TimeSpan_Days(days) - -class Version(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Version_swiginit(self, _mscl.new_Version(*args)) - - def __eq__(self, cmp): - return _mscl.Version___eq__(self, cmp) - - def __ne__(self, cmp): - return _mscl.Version___ne__(self, cmp) - - def __lt__(self, cmp): - return _mscl.Version___lt__(self, cmp) - - def __le__(self, cmp): - return _mscl.Version___le__(self, cmp) - - def __gt__(self, cmp): - return _mscl.Version___gt__(self, cmp) - - def __ge__(self, cmp): - return _mscl.Version___ge__(self, cmp) - - def __str__(self): - return _mscl.Version___str__(self) - - def fromString(self, strVersion): - return _mscl.Version_fromString(self, strVersion) - - def majorPart(self): - return _mscl.Version_majorPart(self) - - def minorPart(self): - return _mscl.Version_minorPart(self) - - def patchPart(self): - return _mscl.Version_patchPart(self) - __swig_destroy__ = _mscl.delete_Version - -# Register Version in _mscl: -_mscl.Version_swigregister(Version) - -class DeviceInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.DeviceInfo_connectionType_serial - connectionType_tcp = _mscl.DeviceInfo_connectionType_tcp - - def __init__(self, *args): - _mscl.DeviceInfo_swiginit(self, _mscl.new_DeviceInfo(*args)) - - def description(self): - return _mscl.DeviceInfo_description(self) - - def serial(self): - return _mscl.DeviceInfo_serial(self) - - def baudRate(self): - return _mscl.DeviceInfo_baudRate(self) - - def connectionType(self): - return _mscl.DeviceInfo_connectionType(self) - __swig_destroy__ = _mscl.delete_DeviceInfo - -# Register DeviceInfo in _mscl: -_mscl.DeviceInfo_swigregister(DeviceInfo) -cvar = _mscl.cvar -MSCL_VERSION = cvar.MSCL_VERSION - -class Devices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def listBaseStations(): - return _mscl.Devices_listBaseStations() - - @staticmethod - def listInertialDevices(): - return _mscl.Devices_listInertialDevices() - - @staticmethod - def listPorts(): - return _mscl.Devices_listPorts() - __swig_destroy__ = _mscl.delete_Devices - -# Register Devices in _mscl: -_mscl.Devices_swigregister(Devices) - -def Devices_listBaseStations(): - return _mscl.Devices_listBaseStations() - -def Devices_listInertialDevices(): - return _mscl.Devices_listInertialDevices() - -def Devices_listPorts(): - return _mscl.Devices_listPorts() - -class ConnectionDebugData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ConnectionDebugData_swiginit(self, _mscl.new_ConnectionDebugData(*args)) - - def fromRead(self): - return _mscl.ConnectionDebugData_fromRead(self) - - def timestamp(self): - return _mscl.ConnectionDebugData_timestamp(self) - - def data(self): - return _mscl.ConnectionDebugData_data(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugData - -# Register ConnectionDebugData in _mscl: -_mscl.ConnectionDebugData_swigregister(ConnectionDebugData) - -class Connection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.Connection_connectionType_serial - connectionType_tcp = _mscl.Connection_connectionType_tcp - connectionType_webSocket = _mscl.Connection_connectionType_webSocket - connectionType_unixSocket = _mscl.Connection_connectionType_unixSocket - - def __init__(self): - _mscl.Connection_swiginit(self, _mscl.new_Connection()) - - @staticmethod - def Serial(*args): - return _mscl.Connection_Serial(*args) - - @staticmethod - def TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - - @staticmethod - def UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - - @staticmethod - def Mock(): - return _mscl.Connection_Mock() - - def description(self): - return _mscl.Connection_description(self) - - def port(self): - return _mscl.Connection_port(self) - - def type(self): - return _mscl.Connection_type(self) - - def disconnect(self): - return _mscl.Connection_disconnect(self) - - def reconnect(self): - return _mscl.Connection_reconnect(self) - - def write(self, bytes): - return _mscl.Connection_write(self, bytes) - - def writeStr(self, bytes): - return _mscl.Connection_writeStr(self, bytes) - - def clearBuffer(self): - return _mscl.Connection_clearBuffer(self) - - def byteReadPos(self): - return _mscl.Connection_byteReadPos(self) - - def byteAppendPos(self): - return _mscl.Connection_byteAppendPos(self) - - def rawByteMode(self, *args): - return _mscl.Connection_rawByteMode(self, *args) - - def getRawBytes(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytes(self, timeout, maxBytes, minBytes) - - def getRawBytesStr(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytesStr(self, timeout, maxBytes, minBytes) - - def getRawBytesWithPattern(self, pattern, timeout=0): - return _mscl.Connection_getRawBytesWithPattern(self, pattern, timeout) - - def debugMode(self, *args): - return _mscl.Connection_debugMode(self, *args) - - def getDebugData(self, timeout=0): - return _mscl.Connection_getDebugData(self, timeout) - - def updateBaudRate(self, baudRate): - return _mscl.Connection_updateBaudRate(self, baudRate) - __swig_destroy__ = _mscl.delete_Connection - -# Register Connection in _mscl: -_mscl.Connection_swigregister(Connection) - -def Connection_Serial(*args): - return _mscl.Connection_Serial(*args) - -def Connection_TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - -def Connection_UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - -def Connection_Mock(): - return _mscl.Connection_Mock() - -class WirelessTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - beacon_none = _mscl.WirelessTypes_beacon_none - beacon_internalTimer = _mscl.WirelessTypes_beacon_internalTimer - beacon_internalPPS = _mscl.WirelessTypes_beacon_internalPPS - beacon_externalPPS = _mscl.WirelessTypes_beacon_externalPPS - microcontroller_18F452 = _mscl.WirelessTypes_microcontroller_18F452 - microcontroller_18F4620 = _mscl.WirelessTypes_microcontroller_18F4620 - microcontroller_18F46K20 = _mscl.WirelessTypes_microcontroller_18F46K20 - microcontroller_18F67K90 = _mscl.WirelessTypes_microcontroller_18F67K90 - microcontroller_EFM32WG990F256 = _mscl.WirelessTypes_microcontroller_EFM32WG990F256 - microcontroller_EFR32FG1P132F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32FG1P132F256GM48 - microcontroller_EFR32MG1P232F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32MG1P232F256GM48 - collectionMethod_logOnly = _mscl.WirelessTypes_collectionMethod_logOnly - collectionMethod_transmitOnly = _mscl.WirelessTypes_collectionMethod_transmitOnly - collectionMethod_logAndTransmit = _mscl.WirelessTypes_collectionMethod_logAndTransmit - dataType_first = _mscl.WirelessTypes_dataType_first - dataType_uint16_shifted = _mscl.WirelessTypes_dataType_uint16_shifted - dataType_float32 = _mscl.WirelessTypes_dataType_float32 - dataType_uint16_12bitRes = _mscl.WirelessTypes_dataType_uint16_12bitRes - dataType_uint32 = _mscl.WirelessTypes_dataType_uint32 - dataType_uint16 = _mscl.WirelessTypes_dataType_uint16 - dataType_float32_noCals = _mscl.WirelessTypes_dataType_float32_noCals - dataType_uint24_18bitRes = _mscl.WirelessTypes_dataType_uint24_18bitRes - dataType_uint16_18bitTrunc = _mscl.WirelessTypes_dataType_uint16_18bitTrunc - dataType_int24_20bit = _mscl.WirelessTypes_dataType_int24_20bit - dataType_int16_20bitTrunc = _mscl.WirelessTypes_dataType_int16_20bitTrunc - dataType_uint24 = _mscl.WirelessTypes_dataType_uint24 - dataType_uint16_24bitTrunc = _mscl.WirelessTypes_dataType_uint16_24bitTrunc - dataType_int16_x10 = _mscl.WirelessTypes_dataType_int16_x10 - dataType_last = _mscl.WirelessTypes_dataType_last - dataFormat_raw_uint16 = _mscl.WirelessTypes_dataFormat_raw_uint16 - dataFormat_cal_float = _mscl.WirelessTypes_dataFormat_cal_float - dataFormat_raw_uint24 = _mscl.WirelessTypes_dataFormat_raw_uint24 - dataFormat_raw_int24 = _mscl.WirelessTypes_dataFormat_raw_int24 - dataFormat_raw_int16 = _mscl.WirelessTypes_dataFormat_raw_int16 - dataFormat_cal_int16_x10 = _mscl.WirelessTypes_dataFormat_cal_int16_x10 - syncMode_continuous = _mscl.WirelessTypes_syncMode_continuous - syncMode_burst = _mscl.WirelessTypes_syncMode_burst - samplingMode_sync = _mscl.WirelessTypes_samplingMode_sync - samplingMode_syncBurst = _mscl.WirelessTypes_samplingMode_syncBurst - samplingMode_nonSync = _mscl.WirelessTypes_samplingMode_nonSync - samplingMode_armedDatalog = _mscl.WirelessTypes_samplingMode_armedDatalog - samplingMode_syncEvent = _mscl.WirelessTypes_samplingMode_syncEvent - samplingMode_nonSyncEvent = _mscl.WirelessTypes_samplingMode_nonSyncEvent - defaultMode_idle = _mscl.WirelessTypes_defaultMode_idle - defaultMode_ldc = _mscl.WirelessTypes_defaultMode_ldc - defaultMode_datalog = _mscl.WirelessTypes_defaultMode_datalog - defaultMode_sleep = _mscl.WirelessTypes_defaultMode_sleep - defaultMode_sync = _mscl.WirelessTypes_defaultMode_sync - freq_unknown = _mscl.WirelessTypes_freq_unknown - freq_11 = _mscl.WirelessTypes_freq_11 - freq_12 = _mscl.WirelessTypes_freq_12 - freq_13 = _mscl.WirelessTypes_freq_13 - freq_14 = _mscl.WirelessTypes_freq_14 - freq_15 = _mscl.WirelessTypes_freq_15 - freq_16 = _mscl.WirelessTypes_freq_16 - freq_17 = _mscl.WirelessTypes_freq_17 - freq_18 = _mscl.WirelessTypes_freq_18 - freq_19 = _mscl.WirelessTypes_freq_19 - freq_20 = _mscl.WirelessTypes_freq_20 - freq_21 = _mscl.WirelessTypes_freq_21 - freq_22 = _mscl.WirelessTypes_freq_22 - freq_23 = _mscl.WirelessTypes_freq_23 - freq_24 = _mscl.WirelessTypes_freq_24 - freq_25 = _mscl.WirelessTypes_freq_25 - freq_26 = _mscl.WirelessTypes_freq_26 - power_20dBm = _mscl.WirelessTypes_power_20dBm - power_16dBm = _mscl.WirelessTypes_power_16dBm - power_15dBm = _mscl.WirelessTypes_power_15dBm - power_12dBm = _mscl.WirelessTypes_power_12dBm - power_11dBm = _mscl.WirelessTypes_power_11dBm - power_10dBm = _mscl.WirelessTypes_power_10dBm - power_5dBm = _mscl.WirelessTypes_power_5dBm - power_1dBm = _mscl.WirelessTypes_power_1dBm - power_0dBm = _mscl.WirelessTypes_power_0dBm - retransmission_off = _mscl.WirelessTypes_retransmission_off - retransmission_on = _mscl.WirelessTypes_retransmission_on - retransmission_disabled = _mscl.WirelessTypes_retransmission_disabled - trigger_userInit = _mscl.WirelessTypes_trigger_userInit - trigger_ceiling = _mscl.WirelessTypes_trigger_ceiling - trigger_floor = _mscl.WirelessTypes_trigger_floor - trigger_rampUp = _mscl.WirelessTypes_trigger_rampUp - trigger_rampDown = _mscl.WirelessTypes_trigger_rampDown - equation_none = _mscl.WirelessTypes_equation_none - equation_standard = _mscl.WirelessTypes_equation_standard - unit_none = _mscl.WirelessTypes_unit_none - unit_other_bits = _mscl.WirelessTypes_unit_other_bits - unit_strain_strain = _mscl.WirelessTypes_unit_strain_strain - unit_strain_microStrain = _mscl.WirelessTypes_unit_strain_microStrain - unit_accel_g = _mscl.WirelessTypes_unit_accel_g - unit_accel_mPerSec2 = _mscl.WirelessTypes_unit_accel_mPerSec2 - unit_volts_volts = _mscl.WirelessTypes_unit_volts_volts - unit_volts_millivolts = _mscl.WirelessTypes_unit_volts_millivolts - unit_volts_microvolts = _mscl.WirelessTypes_unit_volts_microvolts - unit_temp_celsius = _mscl.WirelessTypes_unit_temp_celsius - unit_temp_kelvin = _mscl.WirelessTypes_unit_temp_kelvin - unit_temp_fahrenheit = _mscl.WirelessTypes_unit_temp_fahrenheit - unit_displacement_meters = _mscl.WirelessTypes_unit_displacement_meters - unit_displacement_millimeters = _mscl.WirelessTypes_unit_displacement_millimeters - unit_displacement_micrometers = _mscl.WirelessTypes_unit_displacement_micrometers - unit_force_lbf = _mscl.WirelessTypes_unit_force_lbf - unit_force_newtons = _mscl.WirelessTypes_unit_force_newtons - unit_force_kiloNewtons = _mscl.WirelessTypes_unit_force_kiloNewtons - unit_mass_kilograms = _mscl.WirelessTypes_unit_mass_kilograms - unit_pressure_bar = _mscl.WirelessTypes_unit_pressure_bar - unit_pressure_psi = _mscl.WirelessTypes_unit_pressure_psi - unit_pressure_atm = _mscl.WirelessTypes_unit_pressure_atm - unit_pressure_mmHg = _mscl.WirelessTypes_unit_pressure_mmHg - unit_pressure_pascal = _mscl.WirelessTypes_unit_pressure_pascal - unit_pressure_megaPascal = _mscl.WirelessTypes_unit_pressure_megaPascal - unit_pressure_kiloPascal = _mscl.WirelessTypes_unit_pressure_kiloPascal - unit_angDisplacement_degrees = _mscl.WirelessTypes_unit_angDisplacement_degrees - unit_angVelocity_degreesPerSec = _mscl.WirelessTypes_unit_angVelocity_degreesPerSec - unit_angVelocity_radiansPerSec = _mscl.WirelessTypes_unit_angVelocity_radiansPerSec - unit_other_percent = _mscl.WirelessTypes_unit_other_percent - unit_freq_rpm = _mscl.WirelessTypes_unit_freq_rpm - unit_freq_hertz = _mscl.WirelessTypes_unit_freq_hertz - unit_rh_percentRh = _mscl.WirelessTypes_unit_rh_percentRh - unit_other_mVperV = _mscl.WirelessTypes_unit_other_mVperV - unit_accel_milliG = _mscl.WirelessTypes_unit_accel_milliG - unit_accel_ftPerSec2 = _mscl.WirelessTypes_unit_accel_ftPerSec2 - unit_other_percentLife = _mscl.WirelessTypes_unit_other_percentLife - unit_other_count = _mscl.WirelessTypes_unit_other_count - unit_displacement_feet = _mscl.WirelessTypes_unit_displacement_feet - unit_displacement_inches = _mscl.WirelessTypes_unit_displacement_inches - unit_displacement_yards = _mscl.WirelessTypes_unit_displacement_yards - unit_displacement_miles = _mscl.WirelessTypes_unit_displacement_miles - unit_displacement_nautMiles = _mscl.WirelessTypes_unit_displacement_nautMiles - unit_displacement_thouInch = _mscl.WirelessTypes_unit_displacement_thouInch - unit_displacement_hundInch = _mscl.WirelessTypes_unit_displacement_hundInch - unit_displacement_kilometers = _mscl.WirelessTypes_unit_displacement_kilometers - unit_displacement_centimeters = _mscl.WirelessTypes_unit_displacement_centimeters - unit_irradiance_wattsPerSqMeter = _mscl.WirelessTypes_unit_irradiance_wattsPerSqMeter - unit_par_microEinstein = _mscl.WirelessTypes_unit_par_microEinstein - unit_mass_pound = _mscl.WirelessTypes_unit_mass_pound - unit_power_watt = _mscl.WirelessTypes_unit_power_watt - unit_power_milliwatt = _mscl.WirelessTypes_unit_power_milliwatt - unit_power_horsepower = _mscl.WirelessTypes_unit_power_horsepower - unit_reactivePower_var = _mscl.WirelessTypes_unit_reactivePower_var - unit_energy_wattHour = _mscl.WirelessTypes_unit_energy_wattHour - unit_energy_kiloWattHour = _mscl.WirelessTypes_unit_energy_kiloWattHour - unit_reactiveEnergy_VARh = _mscl.WirelessTypes_unit_reactiveEnergy_VARh - unit_reactiveEnergy_kVARh = _mscl.WirelessTypes_unit_reactiveEnergy_kVARh - unit_current_ampere = _mscl.WirelessTypes_unit_current_ampere - unit_current_milliampere = _mscl.WirelessTypes_unit_current_milliampere - unit_current_microampere = _mscl.WirelessTypes_unit_current_microampere - unit_pressure_millibar = _mscl.WirelessTypes_unit_pressure_millibar - unit_pressure_inHg = _mscl.WirelessTypes_unit_pressure_inHg - unit_rssi_dBm = _mscl.WirelessTypes_unit_rssi_dBm - unit_freq_kiloHertz = _mscl.WirelessTypes_unit_freq_kiloHertz - unit_angDisplacement_radians = _mscl.WirelessTypes_unit_angDisplacement_radians - unit_velocity_metersPerSec = _mscl.WirelessTypes_unit_velocity_metersPerSec - unit_velocity_kilometersPerSec = _mscl.WirelessTypes_unit_velocity_kilometersPerSec - unit_velocity_kilometersPerHr = _mscl.WirelessTypes_unit_velocity_kilometersPerHr - unit_velocity_milesPerHr = _mscl.WirelessTypes_unit_velocity_milesPerHr - unit_velocity_knots = _mscl.WirelessTypes_unit_velocity_knots - unit_volume_cubicMeter = _mscl.WirelessTypes_unit_volume_cubicMeter - unit_volume_cubicFt = _mscl.WirelessTypes_unit_volume_cubicFt - unit_volume_liters = _mscl.WirelessTypes_unit_volume_liters - unit_volume_gallon = _mscl.WirelessTypes_unit_volume_gallon - unit_flowRate_cubicMetersPerSec = _mscl.WirelessTypes_unit_flowRate_cubicMetersPerSec - unit_flowRate_cubicFtPerSec = _mscl.WirelessTypes_unit_flowRate_cubicFtPerSec - unit_torque_newtonMeter = _mscl.WirelessTypes_unit_torque_newtonMeter - unit_torque_footPounds = _mscl.WirelessTypes_unit_torque_footPounds - unit_torque_inchPounds = _mscl.WirelessTypes_unit_torque_inchPounds - unit_time_secs = _mscl.WirelessTypes_unit_time_secs - unit_time_nanosecs = _mscl.WirelessTypes_unit_time_nanosecs - unit_time_microsecs = _mscl.WirelessTypes_unit_time_microsecs - unit_time_millisecs = _mscl.WirelessTypes_unit_time_millisecs - unit_time_minutes = _mscl.WirelessTypes_unit_time_minutes - unit_time_hours = _mscl.WirelessTypes_unit_time_hours - unit_time_days = _mscl.WirelessTypes_unit_time_days - unit_time_weeks = _mscl.WirelessTypes_unit_time_weeks - unit_other_value = _mscl.WirelessTypes_unit_other_value - unit_magneticFlux_gauss = _mscl.WirelessTypes_unit_magneticFlux_gauss - unit_other_gSec = _mscl.WirelessTypes_unit_other_gSec - unit_other_secsPerSec = _mscl.WirelessTypes_unit_other_secsPerSec - unit_rssi_dBHz = _mscl.WirelessTypes_unit_rssi_dBHz - unit_density_kgPerMeter3 = _mscl.WirelessTypes_unit_density_kgPerMeter3 - unit_other_unitless = _mscl.WirelessTypes_unit_other_unitless - unit_velocity_inchesPerSec = _mscl.WirelessTypes_unit_velocity_inchesPerSec - unit_force_kg = _mscl.WirelessTypes_unit_force_kg - unit_rawVoltage_volts = _mscl.WirelessTypes_unit_rawVoltage_volts - unit_rawVoltage_millivolts = _mscl.WirelessTypes_unit_rawVoltage_millivolts - unit_rawVoltage_microvolts = _mscl.WirelessTypes_unit_rawVoltage_microvolts - unit_resistance_ohm = _mscl.WirelessTypes_unit_resistance_ohm - unit_resistance_milliohm = _mscl.WirelessTypes_unit_resistance_milliohm - unit_resistance_kiloohm = _mscl.WirelessTypes_unit_resistance_kiloohm - unit_velocity_mmPerSec = _mscl.WirelessTypes_unit_velocity_mmPerSec - unit_mass_grams = _mscl.WirelessTypes_unit_mass_grams - unit_mass_ton = _mscl.WirelessTypes_unit_mass_ton - unit_mass_tonne = _mscl.WirelessTypes_unit_mass_tonne - chType_none = _mscl.WirelessTypes_chType_none - chType_fullDifferential = _mscl.WirelessTypes_chType_fullDifferential - chType_singleEnded = _mscl.WirelessTypes_chType_singleEnded - chType_battery = _mscl.WirelessTypes_chType_battery - chType_temperature = _mscl.WirelessTypes_chType_temperature - chType_rh = _mscl.WirelessTypes_chType_rh - chType_acceleration = _mscl.WirelessTypes_chType_acceleration - chType_displacement = _mscl.WirelessTypes_chType_displacement - chType_voltage = _mscl.WirelessTypes_chType_voltage - chType_diffTemperature = _mscl.WirelessTypes_chType_diffTemperature - chType_digital = _mscl.WirelessTypes_chType_digital - chType_tilt = _mscl.WirelessTypes_chType_tilt - voltageType_singleEnded = _mscl.WirelessTypes_voltageType_singleEnded - voltageType_differential = _mscl.WirelessTypes_voltageType_differential - settling_4ms = _mscl.WirelessTypes_settling_4ms - settling_8ms = _mscl.WirelessTypes_settling_8ms - settling_16ms = _mscl.WirelessTypes_settling_16ms - settling_32ms = _mscl.WirelessTypes_settling_32ms - settling_40ms = _mscl.WirelessTypes_settling_40ms - settling_48ms = _mscl.WirelessTypes_settling_48ms - settling_60ms = _mscl.WirelessTypes_settling_60ms - settling_101ms_90db = _mscl.WirelessTypes_settling_101ms_90db - settling_120ms_80db = _mscl.WirelessTypes_settling_120ms_80db - settling_120ms_65db = _mscl.WirelessTypes_settling_120ms_65db - settling_160ms_69db = _mscl.WirelessTypes_settling_160ms_69db - settling_200ms = _mscl.WirelessTypes_settling_200ms - transducer_thermocouple = _mscl.WirelessTypes_transducer_thermocouple - transducer_rtd = _mscl.WirelessTypes_transducer_rtd - transducer_thermistor = _mscl.WirelessTypes_transducer_thermistor - tc_uncompensated = _mscl.WirelessTypes_tc_uncompensated - tc_K = _mscl.WirelessTypes_tc_K - tc_J = _mscl.WirelessTypes_tc_J - tc_R = _mscl.WirelessTypes_tc_R - tc_S = _mscl.WirelessTypes_tc_S - tc_T = _mscl.WirelessTypes_tc_T - tc_E = _mscl.WirelessTypes_tc_E - tc_B = _mscl.WirelessTypes_tc_B - tc_N = _mscl.WirelessTypes_tc_N - tc_customPolynomial = _mscl.WirelessTypes_tc_customPolynomial - rtd_uncompensated = _mscl.WirelessTypes_rtd_uncompensated - rtd_pt10 = _mscl.WirelessTypes_rtd_pt10 - rtd_pt50 = _mscl.WirelessTypes_rtd_pt50 - rtd_pt100 = _mscl.WirelessTypes_rtd_pt100 - rtd_pt200 = _mscl.WirelessTypes_rtd_pt200 - rtd_pt500 = _mscl.WirelessTypes_rtd_pt500 - rtd_pt1000 = _mscl.WirelessTypes_rtd_pt1000 - rtd_2wire = _mscl.WirelessTypes_rtd_2wire - rtd_3wire = _mscl.WirelessTypes_rtd_3wire - rtd_4wire = _mscl.WirelessTypes_rtd_4wire - thermistor_uncompensated = _mscl.WirelessTypes_thermistor_uncompensated - thermistor_44004_44033 = _mscl.WirelessTypes_thermistor_44004_44033 - thermistor_44005_44030 = _mscl.WirelessTypes_thermistor_44005_44030 - thermistor_44007_44034 = _mscl.WirelessTypes_thermistor_44007_44034 - thermistor_44006_44031 = _mscl.WirelessTypes_thermistor_44006_44031 - thermistor_44008_44032 = _mscl.WirelessTypes_thermistor_44008_44032 - thermistor_ysi_400 = _mscl.WirelessTypes_thermistor_ysi_400 - sampleRate_104170Hz = _mscl.WirelessTypes_sampleRate_104170Hz - sampleRate_78125Hz = _mscl.WirelessTypes_sampleRate_78125Hz - sampleRate_62500Hz = _mscl.WirelessTypes_sampleRate_62500Hz - sampleRate_25000Hz = _mscl.WirelessTypes_sampleRate_25000Hz - sampleRate_12500Hz = _mscl.WirelessTypes_sampleRate_12500Hz - sampleRate_3200Hz = _mscl.WirelessTypes_sampleRate_3200Hz - sampleRate_1600Hz = _mscl.WirelessTypes_sampleRate_1600Hz - sampleRate_800Hz = _mscl.WirelessTypes_sampleRate_800Hz - sampleRate_300Hz = _mscl.WirelessTypes_sampleRate_300Hz - sampleRate_1kHz = _mscl.WirelessTypes_sampleRate_1kHz - sampleRate_2kHz = _mscl.WirelessTypes_sampleRate_2kHz - sampleRate_3kHz = _mscl.WirelessTypes_sampleRate_3kHz - sampleRate_4kHz = _mscl.WirelessTypes_sampleRate_4kHz - sampleRate_5kHz = _mscl.WirelessTypes_sampleRate_5kHz - sampleRate_6kHz = _mscl.WirelessTypes_sampleRate_6kHz - sampleRate_7kHz = _mscl.WirelessTypes_sampleRate_7kHz - sampleRate_8kHz = _mscl.WirelessTypes_sampleRate_8kHz - sampleRate_9kHz = _mscl.WirelessTypes_sampleRate_9kHz - sampleRate_10kHz = _mscl.WirelessTypes_sampleRate_10kHz - sampleRate_20kHz = _mscl.WirelessTypes_sampleRate_20kHz - sampleRate_30kHz = _mscl.WirelessTypes_sampleRate_30kHz - sampleRate_40kHz = _mscl.WirelessTypes_sampleRate_40kHz - sampleRate_50kHz = _mscl.WirelessTypes_sampleRate_50kHz - sampleRate_60kHz = _mscl.WirelessTypes_sampleRate_60kHz - sampleRate_70kHz = _mscl.WirelessTypes_sampleRate_70kHz - sampleRate_80kHz = _mscl.WirelessTypes_sampleRate_80kHz - sampleRate_90kHz = _mscl.WirelessTypes_sampleRate_90kHz - sampleRate_100kHz = _mscl.WirelessTypes_sampleRate_100kHz - sampleRate_887Hz = _mscl.WirelessTypes_sampleRate_887Hz - sampleRate_8192Hz = _mscl.WirelessTypes_sampleRate_8192Hz - sampleRate_4096Hz = _mscl.WirelessTypes_sampleRate_4096Hz - sampleRate_2048Hz = _mscl.WirelessTypes_sampleRate_2048Hz - sampleRate_1024Hz = _mscl.WirelessTypes_sampleRate_1024Hz - sampleRate_512Hz = _mscl.WirelessTypes_sampleRate_512Hz - sampleRate_256Hz = _mscl.WirelessTypes_sampleRate_256Hz - sampleRate_128Hz = _mscl.WirelessTypes_sampleRate_128Hz - sampleRate_64Hz = _mscl.WirelessTypes_sampleRate_64Hz - sampleRate_32Hz = _mscl.WirelessTypes_sampleRate_32Hz - sampleRate_16Hz = _mscl.WirelessTypes_sampleRate_16Hz - sampleRate_8Hz = _mscl.WirelessTypes_sampleRate_8Hz - sampleRate_4Hz = _mscl.WirelessTypes_sampleRate_4Hz - sampleRate_2Hz = _mscl.WirelessTypes_sampleRate_2Hz - sampleRate_1Hz = _mscl.WirelessTypes_sampleRate_1Hz - sampleRate_2Sec = _mscl.WirelessTypes_sampleRate_2Sec - sampleRate_5Sec = _mscl.WirelessTypes_sampleRate_5Sec - sampleRate_10Sec = _mscl.WirelessTypes_sampleRate_10Sec - sampleRate_30Sec = _mscl.WirelessTypes_sampleRate_30Sec - sampleRate_1Min = _mscl.WirelessTypes_sampleRate_1Min - sampleRate_2Min = _mscl.WirelessTypes_sampleRate_2Min - sampleRate_5Min = _mscl.WirelessTypes_sampleRate_5Min - sampleRate_10Min = _mscl.WirelessTypes_sampleRate_10Min - sampleRate_30Min = _mscl.WirelessTypes_sampleRate_30Min - sampleRate_60Min = _mscl.WirelessTypes_sampleRate_60Min - sampleRate_24Hours = _mscl.WirelessTypes_sampleRate_24Hours - region_usa = _mscl.WirelessTypes_region_usa - region_europeanUnion = _mscl.WirelessTypes_region_europeanUnion - region_japan = _mscl.WirelessTypes_region_japan - region_other = _mscl.WirelessTypes_region_other - region_brazil = _mscl.WirelessTypes_region_brazil - region_china = _mscl.WirelessTypes_region_china - region_australia_newzealand = _mscl.WirelessTypes_region_australia_newzealand - region_singapore = _mscl.WirelessTypes_region_singapore - region_canada = _mscl.WirelessTypes_region_canada - region_southAfrica = _mscl.WirelessTypes_region_southAfrica - region_indonesia = _mscl.WirelessTypes_region_indonesia - region_taiwan = _mscl.WirelessTypes_region_taiwan - chSetting_inputRange = _mscl.WirelessTypes_chSetting_inputRange - chSetting_filterSettlingTime = _mscl.WirelessTypes_chSetting_filterSettlingTime - chSetting_thermocoupleType = _mscl.WirelessTypes_chSetting_thermocoupleType - chSetting_linearEquation = _mscl.WirelessTypes_chSetting_linearEquation - chSetting_unit = _mscl.WirelessTypes_chSetting_unit - chSetting_equationType = _mscl.WirelessTypes_chSetting_equationType - chSetting_hardwareOffset = _mscl.WirelessTypes_chSetting_hardwareOffset - chSetting_autoBalance = _mscl.WirelessTypes_chSetting_autoBalance - chSetting_gaugeFactor = _mscl.WirelessTypes_chSetting_gaugeFactor - chSetting_antiAliasingFilter = _mscl.WirelessTypes_chSetting_antiAliasingFilter - chSetting_legacyShuntCal = _mscl.WirelessTypes_chSetting_legacyShuntCal - chSetting_autoShuntCal = _mscl.WirelessTypes_chSetting_autoShuntCal - chSetting_lowPassFilter = _mscl.WirelessTypes_chSetting_lowPassFilter - chSetting_highPassFilter = _mscl.WirelessTypes_chSetting_highPassFilter - chSetting_tempSensorOptions = _mscl.WirelessTypes_chSetting_tempSensorOptions - chSetting_debounceFilter = _mscl.WirelessTypes_chSetting_debounceFilter - chSetting_pullUpResistor = _mscl.WirelessTypes_chSetting_pullUpResistor - chSetting_factoryLinearEq = _mscl.WirelessTypes_chSetting_factoryLinearEq - chSetting_factoryUnit = _mscl.WirelessTypes_chSetting_factoryUnit - chSetting_factoryEqType = _mscl.WirelessTypes_chSetting_factoryEqType - autobalance_success = _mscl.WirelessTypes_autobalance_success - autobalance_maybeInvalid = _mscl.WirelessTypes_autobalance_maybeInvalid - autobalance_notSupportedByNode = _mscl.WirelessTypes_autobalance_notSupportedByNode - autobalance_notSupportedByCh = _mscl.WirelessTypes_autobalance_notSupportedByCh - autobalance_targetOutOfRange = _mscl.WirelessTypes_autobalance_targetOutOfRange - autobalance_failed = _mscl.WirelessTypes_autobalance_failed - autobalance_legacyNone = _mscl.WirelessTypes_autobalance_legacyNone - autobalance_notComplete = _mscl.WirelessTypes_autobalance_notComplete - autocal_success = _mscl.WirelessTypes_autocal_success - autocal_maybeInvalid_applied = _mscl.WirelessTypes_autocal_maybeInvalid_applied - autocal_maybeInvalid_notApplied = _mscl.WirelessTypes_autocal_maybeInvalid_notApplied - autocal_notComplete = _mscl.WirelessTypes_autocal_notComplete - autocalError_none = _mscl.WirelessTypes_autocalError_none - autocalError_sensorDetached = _mscl.WirelessTypes_autocalError_sensorDetached - autocalError_sensorShorted = _mscl.WirelessTypes_autocalError_sensorShorted - autocalError_unsupportedChannel = _mscl.WirelessTypes_autocalError_unsupportedChannel - autocalError_baseHighRail = _mscl.WirelessTypes_autocalError_baseHighRail - autocalError_baseLowRail = _mscl.WirelessTypes_autocalError_baseLowRail - autocalError_shuntHighRail = _mscl.WirelessTypes_autocalError_shuntHighRail - autocalError_shuntLowRail = _mscl.WirelessTypes_autocalError_shuntLowRail - autocalError_ramp = _mscl.WirelessTypes_autocalError_ramp - autocalError_noShunt = _mscl.WirelessTypes_autocalError_noShunt - autocalError_timeout = _mscl.WirelessTypes_autocalError_timeout - fatigueMode_angleStrain = _mscl.WirelessTypes_fatigueMode_angleStrain - fatigueMode_distributedAngle = _mscl.WirelessTypes_fatigueMode_distributedAngle - fatigueMode_rawGaugeStrain = _mscl.WirelessTypes_fatigueMode_rawGaugeStrain - eventTrigger_ceiling = _mscl.WirelessTypes_eventTrigger_ceiling - eventTrigger_floor = _mscl.WirelessTypes_eventTrigger_floor - filter_33000hz = _mscl.WirelessTypes_filter_33000hz - filter_20000hz = _mscl.WirelessTypes_filter_20000hz - filter_10000hz = _mscl.WirelessTypes_filter_10000hz - filter_5222hz = _mscl.WirelessTypes_filter_5222hz - filter_5000hz = _mscl.WirelessTypes_filter_5000hz - filter_4416hz = _mscl.WirelessTypes_filter_4416hz - filter_4096hz = _mscl.WirelessTypes_filter_4096hz - filter_4000hz = _mscl.WirelessTypes_filter_4000hz - filter_2208hz = _mscl.WirelessTypes_filter_2208hz - filter_2048hz = _mscl.WirelessTypes_filter_2048hz - filter_2000hz = _mscl.WirelessTypes_filter_2000hz - filter_1104hz = _mscl.WirelessTypes_filter_1104hz - filter_1024hz = _mscl.WirelessTypes_filter_1024hz - filter_1000hz = _mscl.WirelessTypes_filter_1000hz - filter_800hz = _mscl.WirelessTypes_filter_800hz - filter_552hz = _mscl.WirelessTypes_filter_552hz - filter_512hz = _mscl.WirelessTypes_filter_512hz - filter_500hz = _mscl.WirelessTypes_filter_500hz - filter_418hz = _mscl.WirelessTypes_filter_418hz - filter_294hz = _mscl.WirelessTypes_filter_294hz - filter_256hz = _mscl.WirelessTypes_filter_256hz - filter_250hz = _mscl.WirelessTypes_filter_250hz - filter_209hz = _mscl.WirelessTypes_filter_209hz - filter_200hz = _mscl.WirelessTypes_filter_200hz - filter_147hz = _mscl.WirelessTypes_filter_147hz - filter_128hz = _mscl.WirelessTypes_filter_128hz - filter_125hz = _mscl.WirelessTypes_filter_125hz - filter_104hz = _mscl.WirelessTypes_filter_104hz - filter_100hz = _mscl.WirelessTypes_filter_100hz - filter_62hz = _mscl.WirelessTypes_filter_62hz - filter_52hz = _mscl.WirelessTypes_filter_52hz - filter_50hz = _mscl.WirelessTypes_filter_50hz - filter_31hz = _mscl.WirelessTypes_filter_31hz - filter_26hz = _mscl.WirelessTypes_filter_26hz - filter_12_66hz = _mscl.WirelessTypes_filter_12_66hz - filter_2_6hz = _mscl.WirelessTypes_filter_2_6hz - highPass_off = _mscl.WirelessTypes_highPass_off - highPass_auto = _mscl.WirelessTypes_highPass_auto - cfc_10 = _mscl.WirelessTypes_cfc_10 - cfc_21 = _mscl.WirelessTypes_cfc_21 - cfc_60 = _mscl.WirelessTypes_cfc_60 - storageLimit_overwrite = _mscl.WirelessTypes_storageLimit_overwrite - storageLimit_stop = _mscl.WirelessTypes_storageLimit_stop - range_14_545mV = _mscl.WirelessTypes_range_14_545mV - range_10_236mV = _mscl.WirelessTypes_range_10_236mV - range_7_608mV = _mscl.WirelessTypes_range_7_608mV - range_4_046mV = _mscl.WirelessTypes_range_4_046mV - range_2_008mV = _mscl.WirelessTypes_range_2_008mV - range_1_511mV = _mscl.WirelessTypes_range_1_511mV - range_1_001mV = _mscl.WirelessTypes_range_1_001mV - range_0_812mV = _mscl.WirelessTypes_range_0_812mV - range_75mV = _mscl.WirelessTypes_range_75mV - range_37_5mV = _mscl.WirelessTypes_range_37_5mV - range_18_75mV = _mscl.WirelessTypes_range_18_75mV - range_9_38mV = _mscl.WirelessTypes_range_9_38mV - range_4_69mV = _mscl.WirelessTypes_range_4_69mV - range_2_34mV = _mscl.WirelessTypes_range_2_34mV - range_1_17mV = _mscl.WirelessTypes_range_1_17mV - range_0_586mV = _mscl.WirelessTypes_range_0_586mV - range_70mV = _mscl.WirelessTypes_range_70mV - range_35mV = _mscl.WirelessTypes_range_35mV - range_17_5mV = _mscl.WirelessTypes_range_17_5mV - range_8_75mV = _mscl.WirelessTypes_range_8_75mV - range_4_38mV = _mscl.WirelessTypes_range_4_38mV - range_2_19mV = _mscl.WirelessTypes_range_2_19mV - range_1_09mV = _mscl.WirelessTypes_range_1_09mV - range_0_547mV = _mscl.WirelessTypes_range_0_547mV - range_44mV = _mscl.WirelessTypes_range_44mV - range_30mV = _mscl.WirelessTypes_range_30mV - range_20mV = _mscl.WirelessTypes_range_20mV - range_15mV = _mscl.WirelessTypes_range_15mV - range_10mV = _mscl.WirelessTypes_range_10mV - range_5mV = _mscl.WirelessTypes_range_5mV - range_3mV = _mscl.WirelessTypes_range_3mV - range_2mV = _mscl.WirelessTypes_range_2mV - range_6mV = _mscl.WirelessTypes_range_6mV - range_1mV = _mscl.WirelessTypes_range_1mV - range_50mV = _mscl.WirelessTypes_range_50mV - range_2_5mV = _mscl.WirelessTypes_range_2_5mV - range_0_6mV = _mscl.WirelessTypes_range_0_6mV - range_0_35mV = _mscl.WirelessTypes_range_0_35mV - range_0_1mV = _mscl.WirelessTypes_range_0_1mV - range_156mV = _mscl.WirelessTypes_range_156mV - range_78_1mV = _mscl.WirelessTypes_range_78_1mV - range_39mV = _mscl.WirelessTypes_range_39mV - range_19_5mV = _mscl.WirelessTypes_range_19_5mV - range_9_76mV = _mscl.WirelessTypes_range_9_76mV - range_4_88mV = _mscl.WirelessTypes_range_4_88mV - range_2_44mV = _mscl.WirelessTypes_range_2_44mV - range_1_22mV = _mscl.WirelessTypes_range_1_22mV - range_10_24V = _mscl.WirelessTypes_range_10_24V - range_5_12V = _mscl.WirelessTypes_range_5_12V - range_2_56V = _mscl.WirelessTypes_range_2_56V - range_0to10_24V = _mscl.WirelessTypes_range_0to10_24V - range_0to5_12V = _mscl.WirelessTypes_range_0to5_12V - range_1_147V = _mscl.WirelessTypes_range_1_147V - range_585mV = _mscl.WirelessTypes_range_585mV - range_292_5mV = _mscl.WirelessTypes_range_292_5mV - range_146_25mV = _mscl.WirelessTypes_range_146_25mV - range_73_13mV = _mscl.WirelessTypes_range_73_13mV - range_36_56mV = _mscl.WirelessTypes_range_36_56mV - range_18_23mV = _mscl.WirelessTypes_range_18_23mV - range_9_14mV = _mscl.WirelessTypes_range_9_14mV - range_5_74V = _mscl.WirelessTypes_range_5_74V - range_2_93V = _mscl.WirelessTypes_range_2_93V - range_1_46V = _mscl.WirelessTypes_range_1_46V - range_731_3mV = _mscl.WirelessTypes_range_731_3mV - range_365_6mV = _mscl.WirelessTypes_range_365_6mV - range_182_8mV = _mscl.WirelessTypes_range_182_8mV - range_91_4mV = _mscl.WirelessTypes_range_91_4mV - range_45_7mV = _mscl.WirelessTypes_range_45_7mV - range_62_5mV = _mscl.WirelessTypes_range_62_5mV - range_31_25mV = _mscl.WirelessTypes_range_31_25mV - range_15_63mV = _mscl.WirelessTypes_range_15_63mV - range_7_81mV = _mscl.WirelessTypes_range_7_81mV - range_3_91mV = _mscl.WirelessTypes_range_3_91mV - range_1_95mV = _mscl.WirelessTypes_range_1_95mV - range_0_976mV = _mscl.WirelessTypes_range_0_976mV - range_0_488mV = _mscl.WirelessTypes_range_0_488mV - range_2G = _mscl.WirelessTypes_range_2G - range_4G = _mscl.WirelessTypes_range_4G - range_8G = _mscl.WirelessTypes_range_8G - range_10G = _mscl.WirelessTypes_range_10G - range_20G = _mscl.WirelessTypes_range_20G - range_40G = _mscl.WirelessTypes_range_40G - range_2_5V = _mscl.WirelessTypes_range_2_5V - range_1_25V = _mscl.WirelessTypes_range_1_25V - range_625mV = _mscl.WirelessTypes_range_625mV - range_312_5mV = _mscl.WirelessTypes_range_312_5mV - range_156_25mV = _mscl.WirelessTypes_range_156_25mV - range_78_125mV = _mscl.WirelessTypes_range_78_125mV - range_39_063mV = _mscl.WirelessTypes_range_39_063mV - range_19_532mV = _mscl.WirelessTypes_range_19_532mV - range_0to2_5V = _mscl.WirelessTypes_range_0to2_5V - range_0to1_25V = _mscl.WirelessTypes_range_0to1_25V - range_0to625mV = _mscl.WirelessTypes_range_0to625mV - range_0to312_5mV = _mscl.WirelessTypes_range_0to312_5mV - range_0to156_25mV = _mscl.WirelessTypes_range_0to156_25mV - range_0to78_125mV = _mscl.WirelessTypes_range_0to78_125mV - range_0to39_063mV = _mscl.WirelessTypes_range_0to39_063mV - range_0to19_532mV = _mscl.WirelessTypes_range_0to19_532mV - range_9_766mV = _mscl.WirelessTypes_range_9_766mV - range_1_35V_or_0to1000000ohm = _mscl.WirelessTypes_range_1_35V_or_0to1000000ohm - range_1_25V_or_0to10000ohm = _mscl.WirelessTypes_range_1_25V_or_0to10000ohm - range_625mV_or_0to3333_3ohm = _mscl.WirelessTypes_range_625mV_or_0to3333_3ohm - range_312_5mV_or_0to1428_6ohm = _mscl.WirelessTypes_range_312_5mV_or_0to1428_6ohm - range_156_25mV_or_0to666_67ohm = _mscl.WirelessTypes_range_156_25mV_or_0to666_67ohm - range_78_125mV_or_0to322_58ohm = _mscl.WirelessTypes_range_78_125mV_or_0to322_58ohm - range_39_0625mV_or_0to158_73ohm = _mscl.WirelessTypes_range_39_0625mV_or_0to158_73ohm - range_19_5313mV_or_0to78_74ohm = _mscl.WirelessTypes_range_19_5313mV_or_0to78_74ohm - range_750mV = _mscl.WirelessTypes_range_750mV - range_375mV = _mscl.WirelessTypes_range_375mV - range_187_5mV = _mscl.WirelessTypes_range_187_5mV - range_93_75mV = _mscl.WirelessTypes_range_93_75mV - range_46_875mV = _mscl.WirelessTypes_range_46_875mV - range_23_438mV = _mscl.WirelessTypes_range_23_438mV - range_11_719mV = _mscl.WirelessTypes_range_11_719mV - range_5_859mV = _mscl.WirelessTypes_range_5_859mV - range_0to1_5V = _mscl.WirelessTypes_range_0to1_5V - range_0to750mV = _mscl.WirelessTypes_range_0to750mV - range_0to375mV = _mscl.WirelessTypes_range_0to375mV - range_0to187_5mV = _mscl.WirelessTypes_range_0to187_5mV - range_0to93_75mV = _mscl.WirelessTypes_range_0to93_75mV - range_0to46_875mV = _mscl.WirelessTypes_range_0to46_875mV - range_0to23_438mV = _mscl.WirelessTypes_range_0to23_438mV - range_0to11_719mV = _mscl.WirelessTypes_range_0to11_719mV - range_1_5V = _mscl.WirelessTypes_range_1_5V - range_1_35V = _mscl.WirelessTypes_range_1_35V - range_0to1000000ohm = _mscl.WirelessTypes_range_0to1000000ohm - range_0to10000ohm = _mscl.WirelessTypes_range_0to10000ohm - range_0to3333_3ohm = _mscl.WirelessTypes_range_0to3333_3ohm - range_0to1428_6ohm = _mscl.WirelessTypes_range_0to1428_6ohm - range_0to666_67ohm = _mscl.WirelessTypes_range_0to666_67ohm - range_0to322_58ohm = _mscl.WirelessTypes_range_0to322_58ohm - range_0to158_73ohm = _mscl.WirelessTypes_range_0to158_73ohm - range_0to78_74ohm = _mscl.WirelessTypes_range_0to78_74ohm - range_39_0625mV = _mscl.WirelessTypes_range_39_0625mV - range_19_5313mV = _mscl.WirelessTypes_range_19_5313mV - range_125mV = _mscl.WirelessTypes_range_125mV - range_invalid = _mscl.WirelessTypes_range_invalid - dataMode_none = _mscl.WirelessTypes_dataMode_none - dataMode_raw = _mscl.WirelessTypes_dataMode_raw - dataMode_derived = _mscl.WirelessTypes_dataMode_derived - dataMode_raw_derived = _mscl.WirelessTypes_dataMode_raw_derived - derivedCategory_rms = _mscl.WirelessTypes_derivedCategory_rms - derivedCategory_peakToPeak = _mscl.WirelessTypes_derivedCategory_peakToPeak - derivedCategory_velocity = _mscl.WirelessTypes_derivedCategory_velocity - derivedCategory_crestFactor = _mscl.WirelessTypes_derivedCategory_crestFactor - derivedCategory_mean = _mscl.WirelessTypes_derivedCategory_mean - derivedAlgId_rms = _mscl.WirelessTypes_derivedAlgId_rms - derivedAlgId_peakToPeak = _mscl.WirelessTypes_derivedAlgId_peakToPeak - derivedAlgId_ips = _mscl.WirelessTypes_derivedAlgId_ips - derivedAlgId_crestFactor = _mscl.WirelessTypes_derivedAlgId_crestFactor - derivedAlgId_mean = _mscl.WirelessTypes_derivedAlgId_mean - derivedAlgId_mmps = _mscl.WirelessTypes_derivedAlgId_mmps - derivedVelocity_ips = _mscl.WirelessTypes_derivedVelocity_ips - derivedVelocity_mmps = _mscl.WirelessTypes_derivedVelocity_mmps - commProtocol_lxrs = _mscl.WirelessTypes_commProtocol_lxrs - commProtocol_lxrsPlus = _mscl.WirelessTypes_commProtocol_lxrsPlus - voltage_5120mV = _mscl.WirelessTypes_voltage_5120mV - voltage_5000mV = _mscl.WirelessTypes_voltage_5000mV - voltage_4096mV = _mscl.WirelessTypes_voltage_4096mV - voltage_3000mV = _mscl.WirelessTypes_voltage_3000mV - voltage_2800mV = _mscl.WirelessTypes_voltage_2800mV - voltage_2750mV = _mscl.WirelessTypes_voltage_2750mV - voltage_2700mV = _mscl.WirelessTypes_voltage_2700mV - voltage_2500mV = _mscl.WirelessTypes_voltage_2500mV - voltage_1500mV = _mscl.WirelessTypes_voltage_1500mV - sensorOutputMode_accel = _mscl.WirelessTypes_sensorOutputMode_accel - sensorOutputMode_tilt = _mscl.WirelessTypes_sensorOutputMode_tilt - batteryStatus_good = _mscl.WirelessTypes_batteryStatus_good - batteryStatus_low = _mscl.WirelessTypes_batteryStatus_low - batteryStatus_critical = _mscl.WirelessTypes_batteryStatus_critical - externalPower_notConnected = _mscl.WirelessTypes_externalPower_notConnected - externalPower_connected = _mscl.WirelessTypes_externalPower_connected - delayVersion_v1 = _mscl.WirelessTypes_delayVersion_v1 - delayVersion_v2 = _mscl.WirelessTypes_delayVersion_v2 - delayVersion_v3 = _mscl.WirelessTypes_delayVersion_v3 - delayVersion_v4 = _mscl.WirelessTypes_delayVersion_v4 - UNKNOWN_RSSI = _mscl.WirelessTypes_UNKNOWN_RSSI - - def __init__(self): - _mscl.WirelessTypes_swiginit(self, _mscl.new_WirelessTypes()) - __swig_destroy__ = _mscl.delete_WirelessTypes - -# Register WirelessTypes in _mscl: -_mscl.WirelessTypes_swigregister(WirelessTypes) - -class SampleRate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - rateType_seconds = _mscl.SampleRate_rateType_seconds - rateType_hertz = _mscl.SampleRate_rateType_hertz - rateType_event = _mscl.SampleRate_rateType_event - rateType_decimation = _mscl.SampleRate_rateType_decimation - - def __init__(self, *args): - _mscl.SampleRate_swiginit(self, _mscl.new_SampleRate(*args)) - - def __str__(self): - return _mscl.SampleRate___str__(self) - - def prettyStr(self): - return _mscl.SampleRate_prettyStr(self) - - def samplePeriod(self): - return _mscl.SampleRate_samplePeriod(self) - - def samplesPerSecond(self): - return _mscl.SampleRate_samplesPerSecond(self) - - def rateType(self): - return _mscl.SampleRate_rateType(self) - - def samples(self): - return _mscl.SampleRate_samples(self) - - def toWirelessSampleRate(self): - return _mscl.SampleRate_toWirelessSampleRate(self) - - def toDecimation(self, sampleRateBase): - return _mscl.SampleRate_toDecimation(self, sampleRateBase) - - @staticmethod - def Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - - @staticmethod - def KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - - @staticmethod - def Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - - @staticmethod - def Event(): - return _mscl.SampleRate_Event() - - @staticmethod - def Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - - @staticmethod - def FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - - @staticmethod - def FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - __swig_destroy__ = _mscl.delete_SampleRate - -# Register SampleRate in _mscl: -_mscl.SampleRate_swigregister(SampleRate) - -def SampleRate_Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - -def SampleRate_KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - -def SampleRate_Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - -def SampleRate_Event(): - return _mscl.SampleRate_Event() - -def SampleRate_Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - -def SampleRate_FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - -def SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - -class Matrix(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Matrix_swiginit(self, _mscl.new_Matrix()) - - def valuesType(self): - return _mscl.Matrix_valuesType(self) - - def rows(self): - return _mscl.Matrix_rows(self) - - def columns(self): - return _mscl.Matrix_columns(self) - - def as_doubleAt(self, row, column): - return _mscl.Matrix_as_doubleAt(self, row, column) - - def as_floatAt(self, row, column): - return _mscl.Matrix_as_floatAt(self, row, column) - - def as_uint16At(self, row, column): - return _mscl.Matrix_as_uint16At(self, row, column) - - def as_uint8At(self, row, column): - return _mscl.Matrix_as_uint8At(self, row, column) - - def __str__(self): - return _mscl.Matrix___str__(self) - __swig_destroy__ = _mscl.delete_Matrix - -# Register Matrix in _mscl: -_mscl.Matrix_swigregister(Matrix) - -class Vector(Matrix): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Vector_swiginit(self, _mscl.new_Vector()) - - def size(self): - return _mscl.Vector_size(self) - - def as_doubleAt(self, index): - return _mscl.Vector_as_doubleAt(self, index) - - def as_floatAt(self, index): - return _mscl.Vector_as_floatAt(self, index) - - def as_uint16At(self, index): - return _mscl.Vector_as_uint16At(self, index) - - def as_uint8At(self, index): - return _mscl.Vector_as_uint8At(self, index) - __swig_destroy__ = _mscl.delete_Vector - -# Register Vector in _mscl: -_mscl.Vector_swigregister(Vector) - -class Bitfield(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Bitfield_swiginit(self, _mscl.new_Bitfield(*args)) - __swig_destroy__ = _mscl.delete_Bitfield - - def value(self, *args): - return _mscl.Bitfield_value(self, *args) - - def get(self, mask, shiftToLsb=True): - return _mscl.Bitfield_get(self, mask, shiftToLsb) - - def set(self, mask, value, shiftRequired=True): - return _mscl.Bitfield_set(self, mask, value, shiftRequired) - - def checkBit(self, bitIndex, indexBase=0): - return _mscl.Bitfield_checkBit(self, bitIndex, indexBase) - - def setBit(self, bitIndex, value, indexBase=0): - return _mscl.Bitfield_setBit(self, bitIndex, value, indexBase) - -# Register Bitfield in _mscl: -_mscl.Bitfield_swigregister(Bitfield) - -class StructuralHealth(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, angle, uptime, damage, processingRate, histogram): - _mscl.StructuralHealth_swiginit(self, _mscl.new_StructuralHealth(angle, uptime, damage, processingRate, histogram)) - - def angle(self): - return _mscl.StructuralHealth_angle(self) - - def uptime(self): - return _mscl.StructuralHealth_uptime(self) - - def damage(self): - return _mscl.StructuralHealth_damage(self) - - def processingRate(self): - return _mscl.StructuralHealth_processingRate(self) - - def histogram(self): - return _mscl.StructuralHealth_histogram(self) - __swig_destroy__ = _mscl.delete_StructuralHealth - -# Register StructuralHealth in _mscl: -_mscl.StructuralHealth_swigregister(StructuralHealth) - -class DataPoint(Value): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - channelPropertyId_angle = _mscl.DataPoint_channelPropertyId_angle - channelPropertyId_derivedFrom = _mscl.DataPoint_channelPropertyId_derivedFrom - channelPropertyId_derivedAlgorithmId = _mscl.DataPoint_channelPropertyId_derivedAlgorithmId - __swig_destroy__ = _mscl.delete_DataPoint - - def channelProperty(self, id): - return _mscl.DataPoint_channelProperty(self, id) - - def as_Vector(self): - return _mscl.DataPoint_as_Vector(self) - - def as_Matrix(self): - return _mscl.DataPoint_as_Matrix(self) - - def as_Timestamp(self): - return _mscl.DataPoint_as_Timestamp(self) - - def as_Bytes(self): - return _mscl.DataPoint_as_Bytes(self) - - def as_StructuralHealth(self): - return _mscl.DataPoint_as_StructuralHealth(self) - - def as_RfSweep(self): - return _mscl.DataPoint_as_RfSweep(self) - - def as_string(self): - return _mscl.DataPoint_as_string(self) - -# Register DataPoint in _mscl: -_mscl.DataPoint_swigregister(DataPoint) - -class ConfigIssue(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONFIG_SAMPLING_MODE = _mscl.ConfigIssue_CONFIG_SAMPLING_MODE - CONFIG_ACTIVE_CHANNELS = _mscl.ConfigIssue_CONFIG_ACTIVE_CHANNELS - CONFIG_SAMPLE_RATE = _mscl.ConfigIssue_CONFIG_SAMPLE_RATE - CONFIG_SWEEPS = _mscl.ConfigIssue_CONFIG_SWEEPS - CONFIG_UNLIMITED_DURATION = _mscl.ConfigIssue_CONFIG_UNLIMITED_DURATION - CONFIG_DATA_FORMAT = _mscl.ConfigIssue_CONFIG_DATA_FORMAT - CONFIG_DATA_COLLECTION_METHOD = _mscl.ConfigIssue_CONFIG_DATA_COLLECTION_METHOD - CONFIG_TIME_BETWEEN_BURSTS = _mscl.ConfigIssue_CONFIG_TIME_BETWEEN_BURSTS - CONFIG_THERMOCOUPLE_TYPE = _mscl.ConfigIssue_CONFIG_THERMOCOUPLE_TYPE - CONFIG_FILTER_SETTLING_TIME = _mscl.ConfigIssue_CONFIG_FILTER_SETTLING_TIME - CONFIG_BUTTON = _mscl.ConfigIssue_CONFIG_BUTTON - CONFIG_ANALOG_PAIR = _mscl.ConfigIssue_CONFIG_ANALOG_PAIR - CONFIG_INPUT_RANGE = _mscl.ConfigIssue_CONFIG_INPUT_RANGE - CONFIG_INACTIVITY_TIMEOUT = _mscl.ConfigIssue_CONFIG_INACTIVITY_TIMEOUT - CONFIG_CHECK_RADIO_INTERVAL = _mscl.ConfigIssue_CONFIG_CHECK_RADIO_INTERVAL - CONFIG_LOST_BEACON_TIMEOUT = _mscl.ConfigIssue_CONFIG_LOST_BEACON_TIMEOUT - CONFIG_DEFAULT_MODE = _mscl.ConfigIssue_CONFIG_DEFAULT_MODE - CONFIG_TRANSMIT_POWER = _mscl.ConfigIssue_CONFIG_TRANSMIT_POWER - CONFIG_LINEAR_EQUATION = _mscl.ConfigIssue_CONFIG_LINEAR_EQUATION - CONFIG_FATIGUE = _mscl.ConfigIssue_CONFIG_FATIGUE - CONFIG_FATIGUE_MODE = _mscl.ConfigIssue_CONFIG_FATIGUE_MODE - CONFIG_FATIGUE_ANGLE_ID = _mscl.ConfigIssue_CONFIG_FATIGUE_ANGLE_ID - CONFIG_FATIGUE_SN_CURVE = _mscl.ConfigIssue_CONFIG_FATIGUE_SN_CURVE - CONFIG_FATIGUE_DIST_NUM_ANGLES = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_NUM_ANGLES - CONFIG_FATIGUE_DIST_ANGLE = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_ANGLE - CONFIG_HISTOGRAM = _mscl.ConfigIssue_CONFIG_HISTOGRAM - CONFIG_HISTOGRAM_TX_RATE = _mscl.ConfigIssue_CONFIG_HISTOGRAM_TX_RATE - CONFIG_HARDWARE_OFFSET = _mscl.ConfigIssue_CONFIG_HARDWARE_OFFSET - CONFIG_ACTIVITY_SENSE = _mscl.ConfigIssue_CONFIG_ACTIVITY_SENSE - CONFIG_GAUGE_FACTOR = _mscl.ConfigIssue_CONFIG_GAUGE_FACTOR - CONFIG_EVENT_TRIGGER = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER - CONFIG_EVENT_TRIGGER_DURATION = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_DURATION - CONFIG_EVENT_TRIGGER_MASK = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_MASK - CONFIG_DIAGNOSTIC_INTERVAL = _mscl.ConfigIssue_CONFIG_DIAGNOSTIC_INTERVAL - CONFIG_ANTI_ALIASING_FILTER = _mscl.ConfigIssue_CONFIG_ANTI_ALIASING_FILTER - CONFIG_STORAGE_LIMIT_MODE = _mscl.ConfigIssue_CONFIG_STORAGE_LIMIT_MODE - CONFIG_SENSOR_DELAY = _mscl.ConfigIssue_CONFIG_SENSOR_DELAY - CONFIG_LOW_PASS_FILTER = _mscl.ConfigIssue_CONFIG_LOW_PASS_FILTER - CONFIG_DATA_MODE = _mscl.ConfigIssue_CONFIG_DATA_MODE - CONFIG_DERIVED_DATA_RATE = _mscl.ConfigIssue_CONFIG_DERIVED_DATA_RATE - CONFIG_DERIVED_MASK_RMS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_RMS - CONFIG_DERIVED_MASK_P2P = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_P2P - CONFIG_DERIVED_MASK_IPS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_IPS - CONFIG_DERIVED_MASK_CREST_FACTOR = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_CREST_FACTOR - CONFIG_HIGH_PASS_FILTER = _mscl.ConfigIssue_CONFIG_HIGH_PASS_FILTER - CONFIG_DERIVED_MASK = _mscl.ConfigIssue_CONFIG_DERIVED_MASK - CONFIG_COMM_PROTOCOL = _mscl.ConfigIssue_CONFIG_COMM_PROTOCOL - CONFIG_DERIVED_MASK_MEAN = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_MEAN - CONFIG_GAUGE_RESISTANCE = _mscl.ConfigIssue_CONFIG_GAUGE_RESISTANCE - CONFIG_NUM_ACTIVE_GAUGES = _mscl.ConfigIssue_CONFIG_NUM_ACTIVE_GAUGES - CONFIG_TEMP_SENSOR_OPTS = _mscl.ConfigIssue_CONFIG_TEMP_SENSOR_OPTS - CONFIG_DEBOUNCE_FILTER = _mscl.ConfigIssue_CONFIG_DEBOUNCE_FILTER - CONFIG_PULLUP_RESISTOR = _mscl.ConfigIssue_CONFIG_PULLUP_RESISTOR - CONFIG_EXCITATION_VOLTAGE = _mscl.ConfigIssue_CONFIG_EXCITATION_VOLTAGE - CONFIG_DERIVED_UNIT = _mscl.ConfigIssue_CONFIG_DERIVED_UNIT - CONFIG_SENSOR_OUTPUT_MODE = _mscl.ConfigIssue_CONFIG_SENSOR_OUTPUT_MODE - CONFIG_LOW_BATTERY_THRESHOLD = _mscl.ConfigIssue_CONFIG_LOW_BATTERY_THRESHOLD - CONFIG_CFC_FILTER = _mscl.ConfigIssue_CONFIG_CFC_FILTER - - def __init__(self, *args): - _mscl.ConfigIssue_swiginit(self, _mscl.new_ConfigIssue(*args)) - - def id(self): - return _mscl.ConfigIssue_id(self) - - def description(self): - return _mscl.ConfigIssue_description(self) - - def isChannelGroupIssue(self): - return _mscl.ConfigIssue_isChannelGroupIssue(self) - - def channelMask(self): - return _mscl.ConfigIssue_channelMask(self) - __swig_destroy__ = _mscl.delete_ConfigIssue - -# Register ConfigIssue in _mscl: -_mscl.ConfigIssue_swigregister(ConfigIssue) - -class ActivitySense(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ActivitySense_swiginit(self, _mscl.new_ActivitySense()) - - def enabled(self, *args): - return _mscl.ActivitySense_enabled(self, *args) - - def activityThreshold(self, *args): - return _mscl.ActivitySense_activityThreshold(self, *args) - - def inactivityThreshold(self, *args): - return _mscl.ActivitySense_inactivityThreshold(self, *args) - - def activityTime(self, *args): - return _mscl.ActivitySense_activityTime(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.ActivitySense_inactivityTimeout(self, *args) - __swig_destroy__ = _mscl.delete_ActivitySense - -# Register ActivitySense in _mscl: -_mscl.ActivitySense_swigregister(ActivitySense) - -class Trigger(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Trigger_swiginit(self, _mscl.new_Trigger(*args)) - - def channelNumber(self, *args): - return _mscl.Trigger_channelNumber(self, *args) - - def triggerType(self, *args): - return _mscl.Trigger_triggerType(self, *args) - - def triggerValue(self, *args): - return _mscl.Trigger_triggerValue(self, *args) - __swig_destroy__ = _mscl.delete_Trigger - -# Register Trigger in _mscl: -_mscl.Trigger_swigregister(Trigger) - -class EventTriggerOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerOptions_swiginit(self, _mscl.new_EventTriggerOptions()) - - def triggerMask(self, *args): - return _mscl.EventTriggerOptions_triggerMask(self, *args) - - def anyTriggersEnabled(self): - return _mscl.EventTriggerOptions_anyTriggersEnabled(self) - - def triggerEnabled(self, triggerIndex): - return _mscl.EventTriggerOptions_triggerEnabled(self, triggerIndex) - - def enableTrigger(self, triggerIndex, enable=True): - return _mscl.EventTriggerOptions_enableTrigger(self, triggerIndex, enable) - - def preDuration(self, *args): - return _mscl.EventTriggerOptions_preDuration(self, *args) - - def postDuration(self, *args): - return _mscl.EventTriggerOptions_postDuration(self, *args) - - def trigger(self, *args): - return _mscl.EventTriggerOptions_trigger(self, *args) - - def triggers(self): - return _mscl.EventTriggerOptions_triggers(self) - __swig_destroy__ = _mscl.delete_EventTriggerOptions - -# Register EventTriggerOptions in _mscl: -_mscl.EventTriggerOptions_swigregister(EventTriggerOptions) - -class SnCurveSegment(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.SnCurveSegment_swiginit(self, _mscl.new_SnCurveSegment(*args)) - - def m(self, *args): - return _mscl.SnCurveSegment_m(self, *args) - - def logA(self, *args): - return _mscl.SnCurveSegment_logA(self, *args) - __swig_destroy__ = _mscl.delete_SnCurveSegment - -# Register SnCurveSegment in _mscl: -_mscl.SnCurveSegment_swigregister(SnCurveSegment) - -class FatigueOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FatigueOptions_swiginit(self, _mscl.new_FatigueOptions()) - - def youngsModulus(self, *args): - return _mscl.FatigueOptions_youngsModulus(self, *args) - - def poissonsRatio(self, *args): - return _mscl.FatigueOptions_poissonsRatio(self, *args) - - def peakValleyThreshold(self, *args): - return _mscl.FatigueOptions_peakValleyThreshold(self, *args) - - def debugMode(self, *args): - return _mscl.FatigueOptions_debugMode(self, *args) - - def damageAngles(self): - return _mscl.FatigueOptions_damageAngles(self) - - def damageAngle(self, *args): - return _mscl.FatigueOptions_damageAngle(self, *args) - - def snCurveSegments(self): - return _mscl.FatigueOptions_snCurveSegments(self) - - def snCurveSegment(self, *args): - return _mscl.FatigueOptions_snCurveSegment(self, *args) - - def fatigueMode(self, *args): - return _mscl.FatigueOptions_fatigueMode(self, *args) - - def distributedAngleMode_numAngles(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_numAngles(self, *args) - - def distributedAngleMode_lowerBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_lowerBound(self, *args) - - def distributedAngleMode_upperBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_upperBound(self, *args) - - def histogramEnable(self, *args): - return _mscl.FatigueOptions_histogramEnable(self, *args) - __swig_destroy__ = _mscl.delete_FatigueOptions - -# Register FatigueOptions in _mscl: -_mscl.FatigueOptions_swigregister(FatigueOptions) - -class HistogramOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HistogramOptions_swiginit(self, _mscl.new_HistogramOptions()) - - def transmitRate(self, *args): - return _mscl.HistogramOptions_transmitRate(self, *args) - - def binsStart(self, *args): - return _mscl.HistogramOptions_binsStart(self, *args) - - def binsSize(self, *args): - return _mscl.HistogramOptions_binsSize(self, *args) - __swig_destroy__ = _mscl.delete_HistogramOptions - -# Register HistogramOptions in _mscl: -_mscl.HistogramOptions_swigregister(HistogramOptions) - -class InputRangeEntry(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - inputRange = property(_mscl.InputRangeEntry_inputRange_get, _mscl.InputRangeEntry_inputRange_set) - hasGain = property(_mscl.InputRangeEntry_hasGain_get, _mscl.InputRangeEntry_hasGain_set) - gain = property(_mscl.InputRangeEntry_gain_get, _mscl.InputRangeEntry_gain_set) - - def __init__(self, *args): - _mscl.InputRangeEntry_swiginit(self, _mscl.new_InputRangeEntry(*args)) - __swig_destroy__ = _mscl.delete_InputRangeEntry - -# Register InputRangeEntry in _mscl: -_mscl.InputRangeEntry_swigregister(InputRangeEntry) - -class TempSensorOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - - @staticmethod - def RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - - @staticmethod - def Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - - def transducerType(self): - return _mscl.TempSensorOptions_transducerType(self) - - def thermocoupleType(self): - return _mscl.TempSensorOptions_thermocoupleType(self) - - def rtdType(self): - return _mscl.TempSensorOptions_rtdType(self) - - def rtdWireType(self): - return _mscl.TempSensorOptions_rtdWireType(self) - - def thermistorType(self): - return _mscl.TempSensorOptions_thermistorType(self) - __swig_destroy__ = _mscl.delete_TempSensorOptions - -# Register TempSensorOptions in _mscl: -_mscl.TempSensorOptions_swigregister(TempSensorOptions) - -def TempSensorOptions_Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - -def TempSensorOptions_RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - -def TempSensorOptions_Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - -class WirelessModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_vLink_legacy = _mscl.WirelessModels_node_vLink_legacy - node_cfBearingTempLink = _mscl.WirelessModels_node_cfBearingTempLink - node_envLink_pro = _mscl.WirelessModels_node_envLink_pro - node_gLink_2g = _mscl.WirelessModels_node_gLink_2g - node_gLink_10g = _mscl.WirelessModels_node_gLink_10g - node_gLinkII_cust_in = _mscl.WirelessModels_node_gLinkII_cust_in - node_gLinkII_2g_in = _mscl.WirelessModels_node_gLinkII_2g_in - node_gLinkII_10g_in = _mscl.WirelessModels_node_gLinkII_10g_in - node_gLinkII_cust_ex = _mscl.WirelessModels_node_gLinkII_cust_ex - node_gLinkII_2g_ex = _mscl.WirelessModels_node_gLinkII_2g_ex - node_gLinkII_10g_ex = _mscl.WirelessModels_node_gLinkII_10g_ex - node_gLink_rgd_10g = _mscl.WirelessModels_node_gLink_rgd_10g - node_gLink_200_8g = _mscl.WirelessModels_node_gLink_200_8g - node_gLink_200_40g = _mscl.WirelessModels_node_gLink_200_40g - node_gLink_200_8g_oem = _mscl.WirelessModels_node_gLink_200_8g_oem - node_gLink_200_40g_oem = _mscl.WirelessModels_node_gLink_200_40g_oem - node_gLink_200_8g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_8g_oem_mmcx - node_gLink_200_40g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_40g_oem_mmcx - node_gLink_200_8g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_8g_oem_u_fl - node_gLink_200_40g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_40g_oem_u_fl - node_gLink_200_r = _mscl.WirelessModels_node_gLink_200_r - node_sgLink_oem_S = _mscl.WirelessModels_node_sgLink_oem_S - node_sgLink = _mscl.WirelessModels_node_sgLink - node_sgLink200 = _mscl.WirelessModels_node_sgLink200 - node_sgLink200_hbridge_1K = _mscl.WirelessModels_node_sgLink200_hbridge_1K - node_sgLink200_hbridge_350 = _mscl.WirelessModels_node_sgLink200_hbridge_350 - node_sgLink200_hbridge_120 = _mscl.WirelessModels_node_sgLink200_hbridge_120 - node_sgLink200_qbridge_1K = _mscl.WirelessModels_node_sgLink200_qbridge_1K - node_sgLink200_qbridge_350 = _mscl.WirelessModels_node_sgLink200_qbridge_350 - node_sgLink200_qbridge_120 = _mscl.WirelessModels_node_sgLink200_qbridge_120 - node_sgLink_oem = _mscl.WirelessModels_node_sgLink_oem - node_sgLink_micro = _mscl.WirelessModels_node_sgLink_micro - node_sgLink200_oem = _mscl.WirelessModels_node_sgLink200_oem - node_sgLink200_oem_ufl = _mscl.WirelessModels_node_sgLink200_oem_ufl - node_sgLink200_oem_hbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K - node_sgLink200_oem_hbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K_ufl - node_sgLink200_oem_hbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120 - node_sgLink200_oem_hbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120_ufl - node_sgLink200_oem_hbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350 - node_sgLink200_oem_hbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350_ufl - node_sgLink200_oem_qbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K - node_sgLink200_oem_qbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K_ufl - node_sgLink200_oem_qbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120 - node_sgLink200_oem_qbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120_ufl - node_sgLink200_oem_qbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350 - node_sgLink200_oem_qbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350_ufl - node_sgLink_rgd = _mscl.WirelessModels_node_sgLink_rgd - node_shmLink = _mscl.WirelessModels_node_shmLink - node_tcLink_1ch = _mscl.WirelessModels_node_tcLink_1ch - node_tcLink_6ch = _mscl.WirelessModels_node_tcLink_6ch - node_tcLink_3ch = _mscl.WirelessModels_node_tcLink_3ch - node_tcLink_6ch_ip67 = _mscl.WirelessModels_node_tcLink_6ch_ip67 - node_tcLink200_oem = _mscl.WirelessModels_node_tcLink200_oem - node_tcLink200_oem_ufl = _mscl.WirelessModels_node_tcLink200_oem_ufl - node_tcLink200 = _mscl.WirelessModels_node_tcLink200 - node_rtdLink200 = _mscl.WirelessModels_node_rtdLink200 - node_tcLink_6ch_ip67_rht = _mscl.WirelessModels_node_tcLink_6ch_ip67_rht - node_vLink = _mscl.WirelessModels_node_vLink - node_vLink200 = _mscl.WirelessModels_node_vLink200 - node_vLink200_qbridge_1K = _mscl.WirelessModels_node_vLink200_qbridge_1K - node_vLink200_qbridge_120 = _mscl.WirelessModels_node_vLink200_qbridge_120 - node_vLink200_qbridge_350 = _mscl.WirelessModels_node_vLink200_qbridge_350 - node_vLink200_hbridge_1K = _mscl.WirelessModels_node_vLink200_hbridge_1K - node_vLink200_hbridge_120 = _mscl.WirelessModels_node_vLink200_hbridge_120 - node_vLink200_hbridge_350 = _mscl.WirelessModels_node_vLink200_hbridge_350 - node_iepeLink = _mscl.WirelessModels_node_iepeLink - node_dvrtLink = _mscl.WirelessModels_node_dvrtLink - node_envLink_mini = _mscl.WirelessModels_node_envLink_mini - node_wattLink = _mscl.WirelessModels_node_wattLink - node_wattLink_3Y208 = _mscl.WirelessModels_node_wattLink_3Y208 - node_wattLink_3D240 = _mscl.WirelessModels_node_wattLink_3D240 - node_wattLink_3Y400 = _mscl.WirelessModels_node_wattLink_3Y400 - node_wattLink_3D400 = _mscl.WirelessModels_node_wattLink_3D400 - node_wattLink_3Y480 = _mscl.WirelessModels_node_wattLink_3Y480 - node_wattLink_3D480 = _mscl.WirelessModels_node_wattLink_3D480 - node_wattLink_3Y600 = _mscl.WirelessModels_node_wattLink_3Y600 - node_ptLink200 = _mscl.WirelessModels_node_ptLink200 - node_rtdLink = _mscl.WirelessModels_node_rtdLink - node_shmLink2_cust1_oldNumber = _mscl.WirelessModels_node_shmLink2_cust1_oldNumber - node_shmLink2_cust1 = _mscl.WirelessModels_node_shmLink2_cust1 - node_shmLink200 = _mscl.WirelessModels_node_shmLink200 - node_shmLink201 = _mscl.WirelessModels_node_shmLink201 - node_shmLink201_qbridge_1K = _mscl.WirelessModels_node_shmLink201_qbridge_1K - node_shmLink201_qbridge_348 = _mscl.WirelessModels_node_shmLink201_qbridge_348 - node_shmLink201_hbridge_1K = _mscl.WirelessModels_node_shmLink201_hbridge_1K - node_shmLink201_hbridge_348 = _mscl.WirelessModels_node_shmLink201_hbridge_348 - node_shmLink201_fullbridge = _mscl.WirelessModels_node_shmLink201_fullbridge - node_shmLink210_fullbridge = _mscl.WirelessModels_node_shmLink210_fullbridge - node_shmLink210_qbridge_3K = _mscl.WirelessModels_node_shmLink210_qbridge_3K - node_torqueLink = _mscl.WirelessModels_node_torqueLink - node_torqueLink200_3ch = _mscl.WirelessModels_node_torqueLink200_3ch - node_torqueLink200 = _mscl.WirelessModels_node_torqueLink200 - node_torqueLink200_3ch_s = _mscl.WirelessModels_node_torqueLink200_3ch_s - node_sgLink_herm = _mscl.WirelessModels_node_sgLink_herm - node_sgLink_herm_2600 = _mscl.WirelessModels_node_sgLink_herm_2600 - node_sgLink_herm_2700 = _mscl.WirelessModels_node_sgLink_herm_2700 - node_sgLink_herm_2800 = _mscl.WirelessModels_node_sgLink_herm_2800 - node_sgLink_herm_2900 = _mscl.WirelessModels_node_sgLink_herm_2900 - node_wirelessImpactSensor = _mscl.WirelessModels_node_wirelessImpactSensor - node_gLink_200_40g_s = _mscl.WirelessModels_node_gLink_200_40g_s - base_wsda_1000 = _mscl.WirelessModels_base_wsda_1000 - base_wsda_1500 = _mscl.WirelessModels_base_wsda_1500 - base_wsda_2000 = _mscl.WirelessModels_base_wsda_2000 - base_wsdaBase_200_legacy = _mscl.WirelessModels_base_wsdaBase_200_legacy - base_wsdaBase_200 = _mscl.WirelessModels_base_wsdaBase_200 - base_wsdaBase_200_extAntenna = _mscl.WirelessModels_base_wsdaBase_200_extAntenna - base_wsdaBase_101_analog = _mscl.WirelessModels_base_wsdaBase_101_analog - base_wsdaBase_102_rs232 = _mscl.WirelessModels_base_wsdaBase_102_rs232 - base_wsdaBase_104_usb = _mscl.WirelessModels_base_wsdaBase_104_usb - base_wsi_104 = _mscl.WirelessModels_base_wsi_104 - base_wsdaBase_mini = _mscl.WirelessModels_base_wsdaBase_mini - - def __init__(self): - _mscl.WirelessModels_swiginit(self, _mscl.new_WirelessModels()) - __swig_destroy__ = _mscl.delete_WirelessModels - -# Register WirelessModels in _mscl: -_mscl.WirelessModels_swigregister(WirelessModels) - -class NodeDiscovery(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def nodeAddress(self): - return _mscl.NodeDiscovery_nodeAddress(self) - - def frequency(self): - return _mscl.NodeDiscovery_frequency(self) - - def panId(self): - return _mscl.NodeDiscovery_panId(self) - - def model(self): - return _mscl.NodeDiscovery_model(self) - - def serialNumber(self): - return _mscl.NodeDiscovery_serialNumber(self) - - def firmwareVersion(self): - return _mscl.NodeDiscovery_firmwareVersion(self) - - def defaultMode(self): - return _mscl.NodeDiscovery_defaultMode(self) - - def builtInTestResult(self): - return _mscl.NodeDiscovery_builtInTestResult(self) - - def communicationProtocol(self): - return _mscl.NodeDiscovery_communicationProtocol(self) - - def asppVersion_lxrs(self): - return _mscl.NodeDiscovery_asppVersion_lxrs(self) - - def asppVersion_lxrsPlus(self): - return _mscl.NodeDiscovery_asppVersion_lxrsPlus(self) - - def baseRssi(self): - return _mscl.NodeDiscovery_baseRssi(self) - - def timestamp(self): - return _mscl.NodeDiscovery_timestamp(self) - - def __init__(self): - _mscl.NodeDiscovery_swiginit(self, _mscl.new_NodeDiscovery()) - __swig_destroy__ = _mscl.delete_NodeDiscovery - -# Register NodeDiscovery in _mscl: -_mscl.NodeDiscovery_swigregister(NodeDiscovery) - -class LinearEquation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LinearEquation_swiginit(self, _mscl.new_LinearEquation(*args)) - - def slope(self, *args): - return _mscl.LinearEquation_slope(self, *args) - - def offset(self, *args): - return _mscl.LinearEquation_offset(self, *args) - __swig_destroy__ = _mscl.delete_LinearEquation - -# Register LinearEquation in _mscl: -_mscl.LinearEquation_swigregister(LinearEquation) - -class CalCoefficients(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CalCoefficients_swiginit(self, _mscl.new_CalCoefficients(*args)) - - def equationType(self): - return _mscl.CalCoefficients_equationType(self) - - def unit(self): - return _mscl.CalCoefficients_unit(self) - - def linearEquation(self): - return _mscl.CalCoefficients_linearEquation(self) - __swig_destroy__ = _mscl.delete_CalCoefficients - -# Register CalCoefficients in _mscl: -_mscl.CalCoefficients_swigregister(CalCoefficients) - -class ChannelGroup(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ChannelGroup_swiginit(self, _mscl.new_ChannelGroup()) - - def channels(self): - return _mscl.ChannelGroup_channels(self) - - def name(self): - return _mscl.ChannelGroup_name(self) - - def eepromLocation(self, setting): - return _mscl.ChannelGroup_eepromLocation(self, setting) - - def settings(self): - return _mscl.ChannelGroup_settings(self) - - def hasSetting(self, setting): - return _mscl.ChannelGroup_hasSetting(self, setting) - - def hasSettingAndChannel(self, setting, channelNumber): - return _mscl.ChannelGroup_hasSettingAndChannel(self, setting, channelNumber) - __swig_destroy__ = _mscl.delete_ChannelGroup - -# Register ChannelGroup in _mscl: -_mscl.ChannelGroup_swigregister(ChannelGroup) - -class WirelessChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - channel_unknown = _mscl.WirelessChannel_channel_unknown - channel_1 = _mscl.WirelessChannel_channel_1 - channel_2 = _mscl.WirelessChannel_channel_2 - channel_3 = _mscl.WirelessChannel_channel_3 - channel_4 = _mscl.WirelessChannel_channel_4 - channel_5 = _mscl.WirelessChannel_channel_5 - channel_6 = _mscl.WirelessChannel_channel_6 - channel_7 = _mscl.WirelessChannel_channel_7 - channel_8 = _mscl.WirelessChannel_channel_8 - channel_9 = _mscl.WirelessChannel_channel_9 - channel_10 = _mscl.WirelessChannel_channel_10 - channel_11 = _mscl.WirelessChannel_channel_11 - channel_12 = _mscl.WirelessChannel_channel_12 - channel_13 = _mscl.WirelessChannel_channel_13 - channel_14 = _mscl.WirelessChannel_channel_14 - channel_15 = _mscl.WirelessChannel_channel_15 - channel_16 = _mscl.WirelessChannel_channel_16 - channel_digital_1 = _mscl.WirelessChannel_channel_digital_1 - channel_digital_2 = _mscl.WirelessChannel_channel_digital_2 - channel_digital_3 = _mscl.WirelessChannel_channel_digital_3 - channel_digital_4 = _mscl.WirelessChannel_channel_digital_4 - channel_digital_5 = _mscl.WirelessChannel_channel_digital_5 - channel_digital_6 = _mscl.WirelessChannel_channel_digital_6 - channel_digital_7 = _mscl.WirelessChannel_channel_digital_7 - channel_digital_8 = _mscl.WirelessChannel_channel_digital_8 - channel_digital_9 = _mscl.WirelessChannel_channel_digital_9 - channel_digital_10 = _mscl.WirelessChannel_channel_digital_10 - channel_digital_11 = _mscl.WirelessChannel_channel_digital_11 - channel_digital_12 = _mscl.WirelessChannel_channel_digital_12 - channel_digital_13 = _mscl.WirelessChannel_channel_digital_13 - channel_digital_14 = _mscl.WirelessChannel_channel_digital_14 - channel_digital_15 = _mscl.WirelessChannel_channel_digital_15 - channel_digital_16 = _mscl.WirelessChannel_channel_digital_16 - channel_structuralHealth = _mscl.WirelessChannel_channel_structuralHealth - channel_hcl_rawBase_mag1_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_x - channel_hcl_rawBase_mag1_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_y - channel_hcl_rawBase_mag1_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_z - channel_hcl_rawBase_mag2_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_x - channel_hcl_rawBase_mag2_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_y - channel_hcl_rawBase_mag2_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_z - channel_hcl_rawBase_mag3_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_x - channel_hcl_rawBase_mag3_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_y - channel_hcl_rawBase_mag3_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_z - channel_hcl_rawBase_mag4_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_x - channel_hcl_rawBase_mag4_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_y - channel_hcl_rawBase_mag4_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_z - channel_hcl_rawBase_mag5_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_x - channel_hcl_rawBase_mag5_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_y - channel_hcl_rawBase_mag5_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_z - channel_hcl_rawBase_mag6_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_x - channel_hcl_rawBase_mag6_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_y - channel_hcl_rawBase_mag6_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_z - channel_hcl_rawBase_mag7_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_x - channel_hcl_rawBase_mag7_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_y - channel_hcl_rawBase_mag7_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_z - channel_hcl_rawBase_mag8_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_x - channel_hcl_rawBase_mag8_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_y - channel_hcl_rawBase_mag8_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_z - channel_hcl_rawBase_gyro_x = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_x - channel_hcl_rawBase_gyro_y = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_y - channel_hcl_rawBase_gyro_z = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_z - channel_error_code = _mscl.WirelessChannel_channel_error_code - channel_hcl_rawStrain_BL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL30 - channel_hcl_rawStrain_BL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL120 - channel_hcl_rawStrain_A60 = _mscl.WirelessChannel_channel_hcl_rawStrain_A60 - channel_hcl_rawStrain_A150 = _mscl.WirelessChannel_channel_hcl_rawStrain_A150 - channel_hcl_rawStrain_AL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL30 - channel_hcl_rawStrain_AL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL120 - channel_hcl_rawStrain_BR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR60 - channel_hcl_rawStrain_BR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR150 - channel_hcl_rawStrain_B30 = _mscl.WirelessChannel_channel_hcl_rawStrain_B30 - channel_hcl_rawStrain_T120 = _mscl.WirelessChannel_channel_hcl_rawStrain_T120 - channel_hcl_rawStrain_AR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR60 - channel_hcl_rawStrain_AR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR150 - channel_hcl_rawStrain_A30 = _mscl.WirelessChannel_channel_hcl_rawStrain_A30 - channel_hcl_rawStrain_A120 = _mscl.WirelessChannel_channel_hcl_rawStrain_A120 - channel_hcl_rawStrain_BL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL90 - channel_hcl_rawStrain_BL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL180 - channel_hcl_rawStrain_BR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR30 - channel_hcl_rawStrain_BR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR120 - channel_hcl_rawStrain_AL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL90 - channel_hcl_rawStrain_AL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL180 - channel_hcl_rawStrain_AR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR30 - channel_hcl_rawStrain_AR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR120 - channel_hcl_rawStrain_B90 = _mscl.WirelessChannel_channel_hcl_rawStrain_B90 - channel_hcl_rawStrain_T0 = _mscl.WirelessChannel_channel_hcl_rawStrain_T0 - channel_hcl_rawStrain_BL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL60 - channel_hcl_rawStrain_BL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL150 - channel_hcl_rawStrain_A90 = _mscl.WirelessChannel_channel_hcl_rawStrain_A90 - channel_hcl_rawStrain_A0 = _mscl.WirelessChannel_channel_hcl_rawStrain_A0 - channel_hcl_rawStrain_AL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL60 - channel_hcl_rawStrain_AL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL150 - channel_hcl_rawStrain_BR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR90 - channel_hcl_rawStrain_BR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR0 - channel_hcl_rawStrain_T60 = _mscl.WirelessChannel_channel_hcl_rawStrain_T60 - channel_hcl_rawStrain_B150 = _mscl.WirelessChannel_channel_hcl_rawStrain_B150 - channel_hcl_rawStrain_AR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR90 - channel_hcl_rawStrain_AR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR0 - channel_hcl_rawInertial_accel1 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel1 - channel_hcl_rawInertial_accel2 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel2 - channel_hcl_rawInertial_accel3 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel3 - channel_hcl_rawInertial_accel4 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel4 - channel_hcl_rawInertial_accel5 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel5 - channel_hcl_rawInertial_accel6 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel6 - channel_hcl_rawInertial_accel7 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel7 - channel_hcl_rawInertial_accel8 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel8 - channel_hcl_rawInertial_gyroX = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroX - channel_hcl_rawInertial_gyroY = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroY - channel_hcl_rawInertial_gyroZ = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroZ - channel_rawAngleStrain = _mscl.WirelessChannel_channel_rawAngleStrain - channel_beaconEcho = _mscl.WirelessChannel_channel_beaconEcho - channel_rfSweep = _mscl.WirelessChannel_channel_rfSweep - channel_diag_state = _mscl.WirelessChannel_channel_diag_state - channel_diag_runtime_idle = _mscl.WirelessChannel_channel_diag_runtime_idle - channel_diag_runtime_sleep = _mscl.WirelessChannel_channel_diag_runtime_sleep - channel_diag_runtime_activeRun = _mscl.WirelessChannel_channel_diag_runtime_activeRun - channel_diag_runtime_inactiveRun = _mscl.WirelessChannel_channel_diag_runtime_inactiveRun - channel_diag_resetCounter = _mscl.WirelessChannel_channel_diag_resetCounter - channel_diag_lowBatteryFlag = _mscl.WirelessChannel_channel_diag_lowBatteryFlag - channel_diag_sweepIndex = _mscl.WirelessChannel_channel_diag_sweepIndex - channel_diag_badSweepCount = _mscl.WirelessChannel_channel_diag_badSweepCount - channel_diag_totalTx = _mscl.WirelessChannel_channel_diag_totalTx - channel_diag_totalReTx = _mscl.WirelessChannel_channel_diag_totalReTx - channel_diag_totalDroppedPackets = _mscl.WirelessChannel_channel_diag_totalDroppedPackets - channel_diag_builtInTestResult = _mscl.WirelessChannel_channel_diag_builtInTestResult - channel_diag_eventIndex = _mscl.WirelessChannel_channel_diag_eventIndex - channel_hcl_axialLoadX = _mscl.WirelessChannel_channel_hcl_axialLoadX - channel_hcl_axialLoadY = _mscl.WirelessChannel_channel_hcl_axialLoadY - channel_hcl_axialLoadZ = _mscl.WirelessChannel_channel_hcl_axialLoadZ - channel_hcl_bendingMomentFlap = _mscl.WirelessChannel_channel_hcl_bendingMomentFlap - channel_hcl_bendingMomentLag = _mscl.WirelessChannel_channel_hcl_bendingMomentLag - channel_hcl_bendingMomentPitch = _mscl.WirelessChannel_channel_hcl_bendingMomentPitch - channel_hcl_motionFlap_mag = _mscl.WirelessChannel_channel_hcl_motionFlap_mag - channel_hcl_motionLag_mag = _mscl.WirelessChannel_channel_hcl_motionLag_mag - channel_hcl_motionPitch_mag = _mscl.WirelessChannel_channel_hcl_motionPitch_mag - channel_hcl_motionFlap_inertial = _mscl.WirelessChannel_channel_hcl_motionFlap_inertial - channel_hcl_motionLag_inertial = _mscl.WirelessChannel_channel_hcl_motionLag_inertial - channel_hcl_motionPitch_inertial = _mscl.WirelessChannel_channel_hcl_motionPitch_inertial - channel_hcl_cockingStiffness_mag = _mscl.WirelessChannel_channel_hcl_cockingStiffness_mag - channel_hcl_cockingStiffness_inertial = _mscl.WirelessChannel_channel_hcl_cockingStiffness_inertial - channel_hcl_temperature = _mscl.WirelessChannel_channel_hcl_temperature - channel_diag_externalPower = _mscl.WirelessChannel_channel_diag_externalPower - channel_diag_internalTemp = _mscl.WirelessChannel_channel_diag_internalTemp - channel_1_rms = _mscl.WirelessChannel_channel_1_rms - channel_2_rms = _mscl.WirelessChannel_channel_2_rms - channel_3_rms = _mscl.WirelessChannel_channel_3_rms - channel_4_rms = _mscl.WirelessChannel_channel_4_rms - channel_5_rms = _mscl.WirelessChannel_channel_5_rms - channel_6_rms = _mscl.WirelessChannel_channel_6_rms - channel_7_rms = _mscl.WirelessChannel_channel_7_rms - channel_8_rms = _mscl.WirelessChannel_channel_8_rms - channel_9_rms = _mscl.WirelessChannel_channel_9_rms - channel_10_rms = _mscl.WirelessChannel_channel_10_rms - channel_11_rms = _mscl.WirelessChannel_channel_11_rms - channel_12_rms = _mscl.WirelessChannel_channel_12_rms - channel_13_rms = _mscl.WirelessChannel_channel_13_rms - channel_14_rms = _mscl.WirelessChannel_channel_14_rms - channel_15_rms = _mscl.WirelessChannel_channel_15_rms - channel_16_rms = _mscl.WirelessChannel_channel_16_rms - channel_1_peakToPeak = _mscl.WirelessChannel_channel_1_peakToPeak - channel_2_peakToPeak = _mscl.WirelessChannel_channel_2_peakToPeak - channel_3_peakToPeak = _mscl.WirelessChannel_channel_3_peakToPeak - channel_4_peakToPeak = _mscl.WirelessChannel_channel_4_peakToPeak - channel_5_peakToPeak = _mscl.WirelessChannel_channel_5_peakToPeak - channel_6_peakToPeak = _mscl.WirelessChannel_channel_6_peakToPeak - channel_7_peakToPeak = _mscl.WirelessChannel_channel_7_peakToPeak - channel_8_peakToPeak = _mscl.WirelessChannel_channel_8_peakToPeak - channel_9_peakToPeak = _mscl.WirelessChannel_channel_9_peakToPeak - channel_10_peakToPeak = _mscl.WirelessChannel_channel_10_peakToPeak - channel_11_peakToPeak = _mscl.WirelessChannel_channel_11_peakToPeak - channel_12_peakToPeak = _mscl.WirelessChannel_channel_12_peakToPeak - channel_13_peakToPeak = _mscl.WirelessChannel_channel_13_peakToPeak - channel_14_peakToPeak = _mscl.WirelessChannel_channel_14_peakToPeak - channel_15_peakToPeak = _mscl.WirelessChannel_channel_15_peakToPeak - channel_16_peakToPeak = _mscl.WirelessChannel_channel_16_peakToPeak - channel_1_ips = _mscl.WirelessChannel_channel_1_ips - channel_2_ips = _mscl.WirelessChannel_channel_2_ips - channel_3_ips = _mscl.WirelessChannel_channel_3_ips - channel_4_ips = _mscl.WirelessChannel_channel_4_ips - channel_5_ips = _mscl.WirelessChannel_channel_5_ips - channel_6_ips = _mscl.WirelessChannel_channel_6_ips - channel_7_ips = _mscl.WirelessChannel_channel_7_ips - channel_8_ips = _mscl.WirelessChannel_channel_8_ips - channel_9_ips = _mscl.WirelessChannel_channel_9_ips - channel_10_ips = _mscl.WirelessChannel_channel_10_ips - channel_11_ips = _mscl.WirelessChannel_channel_11_ips - channel_12_ips = _mscl.WirelessChannel_channel_12_ips - channel_13_ips = _mscl.WirelessChannel_channel_13_ips - channel_14_ips = _mscl.WirelessChannel_channel_14_ips - channel_15_ips = _mscl.WirelessChannel_channel_15_ips - channel_16_ips = _mscl.WirelessChannel_channel_16_ips - channel_1_crestFactor = _mscl.WirelessChannel_channel_1_crestFactor - channel_2_crestFactor = _mscl.WirelessChannel_channel_2_crestFactor - channel_3_crestFactor = _mscl.WirelessChannel_channel_3_crestFactor - channel_4_crestFactor = _mscl.WirelessChannel_channel_4_crestFactor - channel_5_crestFactor = _mscl.WirelessChannel_channel_5_crestFactor - channel_6_crestFactor = _mscl.WirelessChannel_channel_6_crestFactor - channel_7_crestFactor = _mscl.WirelessChannel_channel_7_crestFactor - channel_8_crestFactor = _mscl.WirelessChannel_channel_8_crestFactor - channel_9_crestFactor = _mscl.WirelessChannel_channel_9_crestFactor - channel_10_crestFactor = _mscl.WirelessChannel_channel_10_crestFactor - channel_11_crestFactor = _mscl.WirelessChannel_channel_11_crestFactor - channel_12_crestFactor = _mscl.WirelessChannel_channel_12_crestFactor - channel_13_crestFactor = _mscl.WirelessChannel_channel_13_crestFactor - channel_14_crestFactor = _mscl.WirelessChannel_channel_14_crestFactor - channel_15_crestFactor = _mscl.WirelessChannel_channel_15_crestFactor - channel_16_crestFactor = _mscl.WirelessChannel_channel_16_crestFactor - channel_diag_syncAttempts = _mscl.WirelessChannel_channel_diag_syncAttempts - channel_diag_syncFailures = _mscl.WirelessChannel_channel_diag_syncFailures - channel_diag_secsSinceLastSync = _mscl.WirelessChannel_channel_diag_secsSinceLastSync - channel_beaconConflict = _mscl.WirelessChannel_channel_beaconConflict - channel_1_mean = _mscl.WirelessChannel_channel_1_mean - channel_2_mean = _mscl.WirelessChannel_channel_2_mean - channel_3_mean = _mscl.WirelessChannel_channel_3_mean - channel_4_mean = _mscl.WirelessChannel_channel_4_mean - channel_5_mean = _mscl.WirelessChannel_channel_5_mean - channel_6_mean = _mscl.WirelessChannel_channel_6_mean - channel_7_mean = _mscl.WirelessChannel_channel_7_mean - channel_8_mean = _mscl.WirelessChannel_channel_8_mean - channel_9_mean = _mscl.WirelessChannel_channel_9_mean - channel_10_mean = _mscl.WirelessChannel_channel_10_mean - channel_11_mean = _mscl.WirelessChannel_channel_11_mean - channel_12_mean = _mscl.WirelessChannel_channel_12_mean - channel_13_mean = _mscl.WirelessChannel_channel_13_mean - channel_14_mean = _mscl.WirelessChannel_channel_14_mean - channel_15_mean = _mscl.WirelessChannel_channel_15_mean - channel_16_mean = _mscl.WirelessChannel_channel_16_mean - channel_1_mmps = _mscl.WirelessChannel_channel_1_mmps - channel_2_mmps = _mscl.WirelessChannel_channel_2_mmps - channel_3_mmps = _mscl.WirelessChannel_channel_3_mmps - channel_4_mmps = _mscl.WirelessChannel_channel_4_mmps - channel_5_mmps = _mscl.WirelessChannel_channel_5_mmps - channel_6_mmps = _mscl.WirelessChannel_channel_6_mmps - channel_7_mmps = _mscl.WirelessChannel_channel_7_mmps - channel_8_mmps = _mscl.WirelessChannel_channel_8_mmps - channel_9_mmps = _mscl.WirelessChannel_channel_9_mmps - channel_10_mmps = _mscl.WirelessChannel_channel_10_mmps - channel_11_mmps = _mscl.WirelessChannel_channel_11_mmps - channel_12_mmps = _mscl.WirelessChannel_channel_12_mmps - channel_13_mmps = _mscl.WirelessChannel_channel_13_mmps - channel_14_mmps = _mscl.WirelessChannel_channel_14_mmps - channel_15_mmps = _mscl.WirelessChannel_channel_15_mmps - channel_16_mmps = _mscl.WirelessChannel_channel_16_mmps - channel_diag_memoryFull = _mscl.WirelessChannel_channel_diag_memoryFull - - def __init__(self, *args): - _mscl.WirelessChannel_swiginit(self, _mscl.new_WirelessChannel(*args)) - - def channelNumber(self): - return _mscl.WirelessChannel_channelNumber(self) - - def id(self): - return _mscl.WirelessChannel_id(self) - - def type(self): - return _mscl.WirelessChannel_type(self) - - def description(self): - return _mscl.WirelessChannel_description(self) - - def adcResolution(self): - return _mscl.WirelessChannel_adcResolution(self) - - def adcMaxValue(self): - return _mscl.WirelessChannel_adcMaxValue(self) - - def name(self): - return _mscl.WirelessChannel_name(self) - __swig_destroy__ = _mscl.delete_WirelessChannel - -# Register WirelessChannel in _mscl: -_mscl.WirelessChannel_swigregister(WirelessChannel) - -class WirelessDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessDataPoint_swiginit(self, _mscl.new_WirelessDataPoint()) - - def channelId(self): - return _mscl.WirelessDataPoint_channelId(self) - - def channelNumber(self): - return _mscl.WirelessDataPoint_channelNumber(self) - - def channelName(self): - return _mscl.WirelessDataPoint_channelName(self) - __swig_destroy__ = _mscl.delete_WirelessDataPoint - -# Register WirelessDataPoint in _mscl: -_mscl.WirelessDataPoint_swigregister(WirelessDataPoint) - -class DataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - samplingType_NonSync = _mscl.DataSweep_samplingType_NonSync - samplingType_NonSync_Buffered = _mscl.DataSweep_samplingType_NonSync_Buffered - samplingType_SyncSampling = _mscl.DataSweep_samplingType_SyncSampling - samplingType_SyncSampling_Burst = _mscl.DataSweep_samplingType_SyncSampling_Burst - samplingType_AsyncDigital = _mscl.DataSweep_samplingType_AsyncDigital - samplingType_AsyncDigitalAnalog = _mscl.DataSweep_samplingType_AsyncDigitalAnalog - samplingType_SHM = _mscl.DataSweep_samplingType_SHM - samplingType_BeaconEcho = _mscl.DataSweep_samplingType_BeaconEcho - samplingType_RfSweep = _mscl.DataSweep_samplingType_RfSweep - samplingType_Diagnostic = _mscl.DataSweep_samplingType_Diagnostic - - def __init__(self): - _mscl.DataSweep_swiginit(self, _mscl.new_DataSweep()) - - def timestamp(self): - return _mscl.DataSweep_timestamp(self) - - def tick(self): - return _mscl.DataSweep_tick(self) - - def sampleRate(self): - return _mscl.DataSweep_sampleRate(self) - - def nodeAddress(self): - return _mscl.DataSweep_nodeAddress(self) - - def data(self): - return _mscl.DataSweep_data(self) - - def samplingType(self): - return _mscl.DataSweep_samplingType(self) - - def nodeRssi(self): - return _mscl.DataSweep_nodeRssi(self) - - def baseRssi(self): - return _mscl.DataSweep_baseRssi(self) - - def frequency(self): - return _mscl.DataSweep_frequency(self) - - def calApplied(self): - return _mscl.DataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_DataSweep - -# Register DataSweep in _mscl: -_mscl.DataSweep_swigregister(DataSweep) - -class BaseStationAnalogPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationAnalogPair_swiginit(self, _mscl.new_BaseStationAnalogPair()) - - @staticmethod - def Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - - @staticmethod - def NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - - def nodeAddress(self, *args): - return _mscl.BaseStationAnalogPair_nodeAddress(self, *args) - - def nodeChannel(self, *args): - return _mscl.BaseStationAnalogPair_nodeChannel(self, *args) - - def expectFloatData(self, *args): - return _mscl.BaseStationAnalogPair_expectFloatData(self, *args) - - def outputVal_0V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_0V(self, *args) - - def outputVal_3V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_3V(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationAnalogPair - -# Register BaseStationAnalogPair in _mscl: -_mscl.BaseStationAnalogPair_swigregister(BaseStationAnalogPair) -BaseStationAnalogPair.CHANNEL_NOT_FLOAT = _mscl.cvar.BaseStationAnalogPair_CHANNEL_NOT_FLOAT - -def BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - -def BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - -class BaseStationButton(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - btn_nodeSleep = _mscl.BaseStationButton_btn_nodeSleep - btn_nodeStop = _mscl.BaseStationButton_btn_nodeStop - btn_enableBeacon = _mscl.BaseStationButton_btn_enableBeacon - btn_disableBeacon = _mscl.BaseStationButton_btn_disableBeacon - btn_nodeNonSyncSampling = _mscl.BaseStationButton_btn_nodeNonSyncSampling - btn_nodeSyncSampling = _mscl.BaseStationButton_btn_nodeSyncSampling - btn_nodeArmedDatalogging = _mscl.BaseStationButton_btn_nodeArmedDatalogging - btn_cyclePower = _mscl.BaseStationButton_btn_cyclePower - btn_disabled = _mscl.BaseStationButton_btn_disabled - - def __init__(self, *args): - _mscl.BaseStationButton_swiginit(self, _mscl.new_BaseStationButton(*args)) - - def command(self, *args): - return _mscl.BaseStationButton_command(self, *args) - - def nodeAddress(self, *args): - return _mscl.BaseStationButton_nodeAddress(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationButton - -# Register BaseStationButton in _mscl: -_mscl.BaseStationButton_swigregister(BaseStationButton) - -class BaseStationConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationConfig_swiginit(self, _mscl.new_BaseStationConfig()) - - def transmitPower(self, *args): - return _mscl.BaseStationConfig_transmitPower(self, *args) - - def communicationProtocol(self, *args): - return _mscl.BaseStationConfig_communicationProtocol(self, *args) - - def buttonLongPress(self, *args): - return _mscl.BaseStationConfig_buttonLongPress(self, *args) - - def buttonShortPress(self, *args): - return _mscl.BaseStationConfig_buttonShortPress(self, *args) - - def analogPairingEnable(self, *args): - return _mscl.BaseStationConfig_analogPairingEnable(self, *args) - - def analogTimeoutTime(self, *args): - return _mscl.BaseStationConfig_analogTimeoutTime(self, *args) - - def analogTimeoutVoltage(self, *args): - return _mscl.BaseStationConfig_analogTimeoutVoltage(self, *args) - - def analogExceedanceEnable(self, *args): - return _mscl.BaseStationConfig_analogExceedanceEnable(self, *args) - - def analogPairing(self, *args): - return _mscl.BaseStationConfig_analogPairing(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationConfig - -# Register BaseStationConfig in _mscl: -_mscl.BaseStationConfig_swigregister(BaseStationConfig) - -class BeaconStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BeaconStatus_swiginit(self, _mscl.new_BeaconStatus(*args)) - - def enabled(self): - return _mscl.BeaconStatus_enabled(self) - - def timestamp(self): - return _mscl.BeaconStatus_timestamp(self) - __swig_destroy__ = _mscl.delete_BeaconStatus - -# Register BeaconStatus in _mscl: -_mscl.BeaconStatus_swigregister(BeaconStatus) - -class BaseStationInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region, asppVer_lxrs, asppVer_lxrsPlus): - _mscl.BaseStationInfo_swiginit(self, _mscl.new_BaseStationInfo(fw, model, region, asppVer_lxrs, asppVer_lxrsPlus)) - __swig_destroy__ = _mscl.delete_BaseStationInfo - -# Register BaseStationInfo in _mscl: -_mscl.BaseStationInfo_swigregister(BaseStationInfo) - -class BaseStation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_BASE_COMMANDS_DEFAULT_TIMEOUT - ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT - BROADCAST_NODE_ADDRESS = _mscl.BaseStation_BROADCAST_NODE_ADDRESS - BROADCAST_NODE_ADDRESS_ASPP3 = _mscl.BaseStation_BROADCAST_NODE_ADDRESS_ASPP3 - - def __init__(self, *args): - _mscl.BaseStation_swiginit(self, _mscl.new_BaseStation(*args)) - __swig_destroy__ = _mscl.delete_BaseStation - - @staticmethod - def Mock(*args): - return _mscl.BaseStation_Mock(*args) - - @staticmethod - def deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - - def connection(self): - return _mscl.BaseStation_connection(self) - - def features(self): - return _mscl.BaseStation_features(self) - - def lastCommunicationTime(self): - return _mscl.BaseStation_lastCommunicationTime(self) - - def readWriteRetries(self, *args): - return _mscl.BaseStation_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.BaseStation_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.BaseStation_clearEepromCache(self) - - def frequency(self): - return _mscl.BaseStation_frequency(self) - - def communicationProtocol(self): - return _mscl.BaseStation_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.BaseStation_firmwareVersion(self) - - def model(self): - return _mscl.BaseStation_model(self) - - def serial(self): - return _mscl.BaseStation_serial(self) - - def name(self): - return _mscl.BaseStation_name(self) - - def microcontroller(self): - return _mscl.BaseStation_microcontroller(self) - - def regionCode(self): - return _mscl.BaseStation_regionCode(self) - - def getData(self, timeout=0, maxSweeps=0): - return _mscl.BaseStation_getData(self, timeout, maxSweeps) - - def totalData(self): - return _mscl.BaseStation_totalData(self) - - def getNodeDiscoveries(self): - return _mscl.BaseStation_getNodeDiscoveries(self) - - def timeout(self, *args): - return _mscl.BaseStation_timeout(self, *args) - - def ping(self): - return _mscl.BaseStation_ping(self) - - def readEeprom(self, eepromAddress): - return _mscl.BaseStation_readEeprom(self, eepromAddress) - - def writeEeprom(self, eepromAddress, value): - return _mscl.BaseStation_writeEeprom(self, eepromAddress, value) - - def enableBeacon(self, *args): - return _mscl.BaseStation_enableBeacon(self, *args) - - def disableBeacon(self): - return _mscl.BaseStation_disableBeacon(self) - - def beaconStatus(self): - return _mscl.BaseStation_beaconStatus(self) - - def startRfSweepMode(self, *args): - return _mscl.BaseStation_startRfSweepMode(self, *args) - - def cyclePower(self, checkComm=True): - return _mscl.BaseStation_cyclePower(self, checkComm) - - def resetRadio(self): - return _mscl.BaseStation_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.BaseStation_changeFrequency(self, frequency) - - def broadcastSetToIdle(self): - return _mscl.BaseStation_broadcastSetToIdle(self) - - def verifyConfig(self, config, outIssues): - return _mscl.BaseStation_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.BaseStation_applyConfig(self, config) - - def getTransmitPower(self): - return _mscl.BaseStation_getTransmitPower(self) - - def getButtonLongPress(self, buttonNumber): - return _mscl.BaseStation_getButtonLongPress(self, buttonNumber) - - def getButtonShortPress(self, buttonNumber): - return _mscl.BaseStation_getButtonShortPress(self, buttonNumber) - - def getAnalogPairingEnabled(self): - return _mscl.BaseStation_getAnalogPairingEnabled(self) - - def getAnalogTimeoutTime(self): - return _mscl.BaseStation_getAnalogTimeoutTime(self) - - def getAnalogTimeoutVoltage(self): - return _mscl.BaseStation_getAnalogTimeoutVoltage(self) - - def getAnalogExceedanceEnabled(self): - return _mscl.BaseStation_getAnalogExceedanceEnabled(self) - - def getAnalogPair(self, portNumber): - return _mscl.BaseStation_getAnalogPair(self, portNumber) - -# Register BaseStation in _mscl: -_mscl.BaseStation_swigregister(BaseStation) - -def BaseStation_Mock(*args): - return _mscl.BaseStation_Mock(*args) - -def BaseStation_deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - -class LoggedDataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LoggedDataSweep_swiginit(self, _mscl.new_LoggedDataSweep(*args)) - - def timestamp(self): - return _mscl.LoggedDataSweep_timestamp(self) - - def tick(self): - return _mscl.LoggedDataSweep_tick(self) - - def data(self): - return _mscl.LoggedDataSweep_data(self) - - def calApplied(self): - return _mscl.LoggedDataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweep - -# Register LoggedDataSweep in _mscl: -_mscl.LoggedDataSweep_swigregister(LoggedDataSweep) - -class RadioFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.RadioFeatures_swiginit(self, _mscl.new_RadioFeatures(*args)) - - def extendedRange(self): - return _mscl.RadioFeatures_extendedRange(self) - __swig_destroy__ = _mscl.delete_RadioFeatures - -# Register RadioFeatures in _mscl: -_mscl.RadioFeatures_swigregister(RadioFeatures) - -class WirelessNodeConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessNodeConfig_swiginit(self, _mscl.new_WirelessNodeConfig()) - SENSOR_DELAY_ALWAYS_ON = _mscl.WirelessNodeConfig_SENSOR_DELAY_ALWAYS_ON - - def defaultMode(self, *args): - return _mscl.WirelessNodeConfig_defaultMode(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.WirelessNodeConfig_inactivityTimeout(self, *args) - - def checkRadioInterval(self, *args): - return _mscl.WirelessNodeConfig_checkRadioInterval(self, *args) - - def transmitPower(self, *args): - return _mscl.WirelessNodeConfig_transmitPower(self, *args) - - def samplingMode(self, *args): - return _mscl.WirelessNodeConfig_samplingMode(self, *args) - - def sampleRate(self, *args): - return _mscl.WirelessNodeConfig_sampleRate(self, *args) - - def activeChannels(self, *args): - return _mscl.WirelessNodeConfig_activeChannels(self, *args) - - def numSweeps(self, *args): - return _mscl.WirelessNodeConfig_numSweeps(self, *args) - - def unlimitedDuration(self, *args): - return _mscl.WirelessNodeConfig_unlimitedDuration(self, *args) - - def dataFormat(self, *args): - return _mscl.WirelessNodeConfig_dataFormat(self, *args) - - def dataCollectionMethod(self, *args): - return _mscl.WirelessNodeConfig_dataCollectionMethod(self, *args) - - def timeBetweenBursts(self, *args): - return _mscl.WirelessNodeConfig_timeBetweenBursts(self, *args) - - def lostBeaconTimeout(self, *args): - return _mscl.WirelessNodeConfig_lostBeaconTimeout(self, *args) - - def pullUpResistor(self, *args): - return _mscl.WirelessNodeConfig_pullUpResistor(self, *args) - - def inputRange(self, *args): - return _mscl.WirelessNodeConfig_inputRange(self, *args) - - def hardwareOffset(self, *args): - return _mscl.WirelessNodeConfig_hardwareOffset(self, *args) - - def antiAliasingFilter(self, *args): - return _mscl.WirelessNodeConfig_antiAliasingFilter(self, *args) - - def cfcFilterConfig(self, *args): - return _mscl.WirelessNodeConfig_cfcFilterConfig(self, *args) - - def lowPassFilter(self, *args): - return _mscl.WirelessNodeConfig_lowPassFilter(self, *args) - - def highPassFilter(self, *args): - return _mscl.WirelessNodeConfig_highPassFilter(self, *args) - - def gaugeFactor(self, *args): - return _mscl.WirelessNodeConfig_gaugeFactor(self, *args) - - def gaugeResistance(self, *args): - return _mscl.WirelessNodeConfig_gaugeResistance(self, *args) - - def excitationVoltage(self, *args): - return _mscl.WirelessNodeConfig_excitationVoltage(self, *args) - - def numActiveGauges(self, *args): - return _mscl.WirelessNodeConfig_numActiveGauges(self, *args) - - def lowBatteryThreshold(self, *args): - return _mscl.WirelessNodeConfig_lowBatteryThreshold(self, *args) - - def linearEquation(self, *args): - return _mscl.WirelessNodeConfig_linearEquation(self, *args) - - def unit(self, *args): - return _mscl.WirelessNodeConfig_unit(self, *args) - - def equationType(self, *args): - return _mscl.WirelessNodeConfig_equationType(self, *args) - - def filterSettlingTime(self, *args): - return _mscl.WirelessNodeConfig_filterSettlingTime(self, *args) - - def thermocoupleType(self, *args): - return _mscl.WirelessNodeConfig_thermocoupleType(self, *args) - - def tempSensorOptions(self, *args): - return _mscl.WirelessNodeConfig_tempSensorOptions(self, *args) - - def debounceFilter(self, *args): - return _mscl.WirelessNodeConfig_debounceFilter(self, *args) - - def fatigueOptions(self, *args): - return _mscl.WirelessNodeConfig_fatigueOptions(self, *args) - - def histogramOptions(self, *args): - return _mscl.WirelessNodeConfig_histogramOptions(self, *args) - - def activitySense(self, *args): - return _mscl.WirelessNodeConfig_activitySense(self, *args) - - def eventTriggerOptions(self, *args): - return _mscl.WirelessNodeConfig_eventTriggerOptions(self, *args) - - def diagnosticInterval(self, *args): - return _mscl.WirelessNodeConfig_diagnosticInterval(self, *args) - - def storageLimitMode(self, *args): - return _mscl.WirelessNodeConfig_storageLimitMode(self, *args) - - def sensorDelay(self, *args): - return _mscl.WirelessNodeConfig_sensorDelay(self, *args) - - def dataMode(self, *args): - return _mscl.WirelessNodeConfig_dataMode(self, *args) - - def derivedDataRate(self, *args): - return _mscl.WirelessNodeConfig_derivedDataRate(self, *args) - - def derivedChannelMask(self, *args): - return _mscl.WirelessNodeConfig_derivedChannelMask(self, *args) - - def derivedVelocityUnit(self, *args): - return _mscl.WirelessNodeConfig_derivedVelocityUnit(self, *args) - - def communicationProtocol(self, *args): - return _mscl.WirelessNodeConfig_communicationProtocol(self, *args) - - def sensorOutputMode(self, *args): - return _mscl.WirelessNodeConfig_sensorOutputMode(self, *args) - - @staticmethod - def flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - - @staticmethod - def flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - __swig_destroy__ = _mscl.delete_WirelessNodeConfig - -# Register WirelessNodeConfig in _mscl: -_mscl.WirelessNodeConfig_swigregister(WirelessNodeConfig) - -def WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - -def WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - -class AutoBalanceResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoBalanceResult_swiginit(self, _mscl.new_AutoBalanceResult()) - - def errorCode(self): - return _mscl.AutoBalanceResult_errorCode(self) - - def percentAchieved(self): - return _mscl.AutoBalanceResult_percentAchieved(self) - - def hardwareOffset(self): - return _mscl.AutoBalanceResult_hardwareOffset(self) - __swig_destroy__ = _mscl.delete_AutoBalanceResult - -# Register AutoBalanceResult in _mscl: -_mscl.AutoBalanceResult_swigregister(AutoBalanceResult) - -class ShuntCalCmdInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - useInternalShunt = property(_mscl.ShuntCalCmdInfo_useInternalShunt_get, _mscl.ShuntCalCmdInfo_useInternalShunt_set) - numActiveGauges = property(_mscl.ShuntCalCmdInfo_numActiveGauges_get, _mscl.ShuntCalCmdInfo_numActiveGauges_set) - gaugeResistance = property(_mscl.ShuntCalCmdInfo_gaugeResistance_get, _mscl.ShuntCalCmdInfo_gaugeResistance_set) - shuntResistance = property(_mscl.ShuntCalCmdInfo_shuntResistance_get, _mscl.ShuntCalCmdInfo_shuntResistance_set) - gaugeFactor = property(_mscl.ShuntCalCmdInfo_gaugeFactor_get, _mscl.ShuntCalCmdInfo_gaugeFactor_set) - inputRange = property(_mscl.ShuntCalCmdInfo_inputRange_get, _mscl.ShuntCalCmdInfo_inputRange_set) - hardwareOffset = property(_mscl.ShuntCalCmdInfo_hardwareOffset_get, _mscl.ShuntCalCmdInfo_hardwareOffset_set) - excitationVoltage = property(_mscl.ShuntCalCmdInfo_excitationVoltage_get, _mscl.ShuntCalCmdInfo_excitationVoltage_set) - - def __init__(self): - _mscl.ShuntCalCmdInfo_swiginit(self, _mscl.new_ShuntCalCmdInfo()) - __swig_destroy__ = _mscl.delete_ShuntCalCmdInfo - -# Register ShuntCalCmdInfo in _mscl: -_mscl.ShuntCalCmdInfo_swigregister(ShuntCalCmdInfo) - -class AutoCalResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_AutoCalResult - - def completionFlag(self): - return _mscl.AutoCalResult_completionFlag(self) - -# Register AutoCalResult in _mscl: -_mscl.AutoCalResult_swigregister(AutoCalResult) - -class AutoCalResult_shmLink(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink_swiginit(self, _mscl.new_AutoCalResult_shmLink()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh3(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink_offsetCh1(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink_offsetCh2(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink_temperature(self) - -# Register AutoCalResult_shmLink in _mscl: -_mscl.AutoCalResult_shmLink_swigregister(AutoCalResult_shmLink) - -class AutoCalResult_shmLink201(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink201_swiginit(self, _mscl.new_AutoCalResult_shmLink201()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink201 - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh3(self) - - def slopeCh1(self): - return _mscl.AutoCalResult_shmLink201_slopeCh1(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink201_offsetCh1(self) - - def slopeCh2(self): - return _mscl.AutoCalResult_shmLink201_slopeCh2(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink201_offsetCh2(self) - - def slopeCh3(self): - return _mscl.AutoCalResult_shmLink201_slopeCh3(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink201_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink201_temperature(self) - -# Register AutoCalResult_shmLink201 in _mscl: -_mscl.AutoCalResult_shmLink201_swigregister(AutoCalResult_shmLink201) - -class AutoShuntCalResult(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoShuntCalResult_swiginit(self, _mscl.new_AutoShuntCalResult()) - __swig_destroy__ = _mscl.delete_AutoShuntCalResult - - def errorFlag(self): - return _mscl.AutoShuntCalResult_errorFlag(self) - - def slope(self): - return _mscl.AutoShuntCalResult_slope(self) - - def offset(self): - return _mscl.AutoShuntCalResult_offset(self) - - def baseMedian(self): - return _mscl.AutoShuntCalResult_baseMedian(self) - - def baseMin(self): - return _mscl.AutoShuntCalResult_baseMin(self) - - def baseMax(self): - return _mscl.AutoShuntCalResult_baseMax(self) - - def shuntMedian(self): - return _mscl.AutoShuntCalResult_shuntMedian(self) - - def shuntMin(self): - return _mscl.AutoShuntCalResult_shuntMin(self) - - def shuntMax(self): - return _mscl.AutoShuntCalResult_shuntMax(self) - -# Register AutoShuntCalResult in _mscl: -_mscl.AutoShuntCalResult_swigregister(AutoShuntCalResult) - -class PingResponse(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PingResponse_swiginit(self, _mscl.new_PingResponse()) - - def success(self): - return _mscl.PingResponse_success(self) - - def nodeRssi(self): - return _mscl.PingResponse_nodeRssi(self) - - def baseRssi(self): - return _mscl.PingResponse_baseRssi(self) - __swig_destroy__ = _mscl.delete_PingResponse - -# Register PingResponse in _mscl: -_mscl.PingResponse_swigregister(PingResponse) - -class SetToIdleStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - setToIdleResult_success = _mscl.SetToIdleStatus_setToIdleResult_success - setToIdleResult_canceled = _mscl.SetToIdleStatus_setToIdleResult_canceled - setToIdleResult_failed = _mscl.SetToIdleStatus_setToIdleResult_failed - setToIdleResult_notCompleted = _mscl.SetToIdleStatus_setToIdleResult_notCompleted - - def result(self): - return _mscl.SetToIdleStatus_result(self) - - def complete(self, timeout=10): - return _mscl.SetToIdleStatus_complete(self, timeout) - - def cancel(self): - return _mscl.SetToIdleStatus_cancel(self) - __swig_destroy__ = _mscl.delete_SetToIdleStatus - -# Register SetToIdleStatus in _mscl: -_mscl.SetToIdleStatus_swigregister(SetToIdleStatus) - -class NodeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region): - _mscl.NodeInfo_swiginit(self, _mscl.new_NodeInfo(fw, model, region)) - __swig_destroy__ = _mscl.delete_NodeInfo - -# Register NodeInfo in _mscl: -_mscl.NodeInfo_swigregister(NodeInfo) - -class WirelessNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, nodeAddress, basestation): - _mscl.WirelessNode_swiginit(self, _mscl.new_WirelessNode(nodeAddress, basestation)) - __swig_destroy__ = _mscl.delete_WirelessNode - - @staticmethod - def Mock(*args): - return _mscl.WirelessNode_Mock(*args) - - @staticmethod - def deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - - def features(self): - return _mscl.WirelessNode_features(self) - - def lastCommunicationTime(self): - return _mscl.WirelessNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.WirelessNode_lastDeviceState(self) - - def setBaseStation(self, basestation): - return _mscl.WirelessNode_setBaseStation(self, basestation) - - def getBaseStation(self): - return _mscl.WirelessNode_getBaseStation(self) - - def hasBaseStation(self, basestation): - return _mscl.WirelessNode_hasBaseStation(self, basestation) - - def useGroupRead(self, useGroup): - return _mscl.WirelessNode_useGroupRead(self, useGroup) - - def readWriteRetries(self, *args): - return _mscl.WirelessNode_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.WirelessNode_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.WirelessNode_clearEepromCache(self) - - def updateEepromCacheFromNodeDiscovery(self, nodeDisovery): - return _mscl.WirelessNode_updateEepromCacheFromNodeDiscovery(self, nodeDisovery) - - def getEepromCache(self): - return _mscl.WirelessNode_getEepromCache(self) - - def nodeAddress(self): - return _mscl.WirelessNode_nodeAddress(self) - - def frequency(self): - return _mscl.WirelessNode_frequency(self) - - def communicationProtocol(self): - return _mscl.WirelessNode_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.WirelessNode_firmwareVersion(self) - - def model(self): - return _mscl.WirelessNode_model(self) - - def serial(self): - return _mscl.WirelessNode_serial(self) - - def name(self): - return _mscl.WirelessNode_name(self) - - def microcontroller(self): - return _mscl.WirelessNode_microcontroller(self) - - def radioFeatures(self): - return _mscl.WirelessNode_radioFeatures(self) - - def dataStorageSize(self): - return _mscl.WirelessNode_dataStorageSize(self) - - def regionCode(self): - return _mscl.WirelessNode_regionCode(self) - - def ping(self): - return _mscl.WirelessNode_ping(self) - - def sleep(self): - return _mscl.WirelessNode_sleep(self) - - def cyclePower(self): - return _mscl.WirelessNode_cyclePower(self) - - def resetRadio(self): - return _mscl.WirelessNode_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.WirelessNode_changeFrequency(self, frequency) - - def setToIdle(self): - return _mscl.WirelessNode_setToIdle(self) - - def erase(self): - return _mscl.WirelessNode_erase(self) - - def startNonSyncSampling(self): - return _mscl.WirelessNode_startNonSyncSampling(self) - - def resendStartSyncSampling(self): - return _mscl.WirelessNode_resendStartSyncSampling(self) - - def clearHistogram(self): - return _mscl.WirelessNode_clearHistogram(self) - - def autoBalance(self, mask, targetPercent): - return _mscl.WirelessNode_autoBalance(self, mask, targetPercent) - - def autoCal_shmLink(self): - return _mscl.WirelessNode_autoCal_shmLink(self) - - def autoCal_shmLink201(self): - return _mscl.WirelessNode_autoCal_shmLink201(self) - - def autoShuntCal(self, mask, commandInfo): - return _mscl.WirelessNode_autoShuntCal(self, mask, commandInfo) - - def poll(self, mask): - return _mscl.WirelessNode_poll(self, mask) - - def readEeprom(self, location): - return _mscl.WirelessNode_readEeprom(self, location) - - def writeEeprom(self, location, value): - return _mscl.WirelessNode_writeEeprom(self, location, value) - - def getDiagnosticInfo(self): - return _mscl.WirelessNode_getDiagnosticInfo(self) - - def testCommunicationProtocol(self, protocol): - return _mscl.WirelessNode_testCommunicationProtocol(self, protocol) - - def verifyConfig(self, config, outIssues): - return _mscl.WirelessNode_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.WirelessNode_applyConfig(self, config) - - def getNumDatalogSessions(self): - return _mscl.WirelessNode_getNumDatalogSessions(self) - - def percentFull(self): - return _mscl.WirelessNode_percentFull(self) - - def getDefaultMode(self): - return _mscl.WirelessNode_getDefaultMode(self) - - def getInactivityTimeout(self): - return _mscl.WirelessNode_getInactivityTimeout(self) - - def getCheckRadioInterval(self): - return _mscl.WirelessNode_getCheckRadioInterval(self) - - def getTransmitPower(self): - return _mscl.WirelessNode_getTransmitPower(self) - - def getSamplingMode(self): - return _mscl.WirelessNode_getSamplingMode(self) - - def getActiveChannels(self): - return _mscl.WirelessNode_getActiveChannels(self) - - def getSampleRate(self): - return _mscl.WirelessNode_getSampleRate(self) - - def getNumSweeps(self): - return _mscl.WirelessNode_getNumSweeps(self) - - def getUnlimitedDuration(self): - return _mscl.WirelessNode_getUnlimitedDuration(self) - - def getDataFormat(self): - return _mscl.WirelessNode_getDataFormat(self) - - def getDataCollectionMethod(self): - return _mscl.WirelessNode_getDataCollectionMethod(self) - - def getTimeBetweenBursts(self): - return _mscl.WirelessNode_getTimeBetweenBursts(self) - - def getLostBeaconTimeout(self): - return _mscl.WirelessNode_getLostBeaconTimeout(self) - - def getInputRange(self, mask): - return _mscl.WirelessNode_getInputRange(self, mask) - - def getHardwareOffset(self, mask): - return _mscl.WirelessNode_getHardwareOffset(self, mask) - - def getAntiAliasingFilter(self, mask): - return _mscl.WirelessNode_getAntiAliasingFilter(self, mask) - - def getCfcFilterConfiguration(self): - return _mscl.WirelessNode_getCfcFilterConfiguration(self) - - def getLowPassFilter(self, mask): - return _mscl.WirelessNode_getLowPassFilter(self, mask) - - def getHighPassFilter(self, mask): - return _mscl.WirelessNode_getHighPassFilter(self, mask) - - def getDebounceFilter(self, mask): - return _mscl.WirelessNode_getDebounceFilter(self, mask) - - def getPullUpResistor(self, mask): - return _mscl.WirelessNode_getPullUpResistor(self, mask) - - def getSensorOutputMode(self): - return _mscl.WirelessNode_getSensorOutputMode(self) - - def getGaugeFactor(self, mask): - return _mscl.WirelessNode_getGaugeFactor(self, mask) - - def getExcitationVoltage(self): - return _mscl.WirelessNode_getExcitationVoltage(self) - - def getAdcVoltageRef(self): - return _mscl.WirelessNode_getAdcVoltageRef(self) - - def getGainAmplifierVoltageRef(self): - return _mscl.WirelessNode_getGainAmplifierVoltageRef(self) - - def getGaugeResistance(self): - return _mscl.WirelessNode_getGaugeResistance(self) - - def getNumActiveGauges(self): - return _mscl.WirelessNode_getNumActiveGauges(self) - - def getLowBatteryThreshold(self): - return _mscl.WirelessNode_getLowBatteryThreshold(self) - - def getLinearEquation(self, mask): - return _mscl.WirelessNode_getLinearEquation(self, mask) - - def getUnit(self, mask): - return _mscl.WirelessNode_getUnit(self, mask) - - def getEquationType(self, mask): - return _mscl.WirelessNode_getEquationType(self, mask) - - def getFactoryCalibrationLinearEq(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationLinearEq(self, mask) - - def getFactoryCalibrationUnit(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationUnit(self, mask) - - def getFactoryCalibrationEqType(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationEqType(self, mask) - - def getFilterSettlingTime(self, mask): - return _mscl.WirelessNode_getFilterSettlingTime(self, mask) - - def getThermocoupleType(self, mask): - return _mscl.WirelessNode_getThermocoupleType(self, mask) - - def getTempSensorOptions(self, mask): - return _mscl.WirelessNode_getTempSensorOptions(self, mask) - - def getFatigueOptions(self): - return _mscl.WirelessNode_getFatigueOptions(self) - - def getHistogramOptions(self): - return _mscl.WirelessNode_getHistogramOptions(self) - - def getActivitySense(self): - return _mscl.WirelessNode_getActivitySense(self) - - def getEventTriggerOptions(self): - return _mscl.WirelessNode_getEventTriggerOptions(self) - - def getDiagnosticInterval(self): - return _mscl.WirelessNode_getDiagnosticInterval(self) - - def getStorageLimitMode(self): - return _mscl.WirelessNode_getStorageLimitMode(self) - - def getSensorDelay(self): - return _mscl.WirelessNode_getSensorDelay(self) - - def getDataMode(self): - return _mscl.WirelessNode_getDataMode(self) - - def getDerivedDataRate(self): - return _mscl.WirelessNode_getDerivedDataRate(self) - - def getDerivedChannelMask(self, category): - return _mscl.WirelessNode_getDerivedChannelMask(self, category) - - def getDerivedVelocityUnit(self): - return _mscl.WirelessNode_getDerivedVelocityUnit(self) - -# Register WirelessNode in _mscl: -_mscl.WirelessNode_swigregister(WirelessNode) - -def WirelessNode_Mock(*args): - return _mscl.WirelessNode_Mock(*args) - -def WirelessNode_deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - -class DatalogDownloader(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.DatalogDownloader_swiginit(self, _mscl.new_DatalogDownloader(*args)) - __swig_destroy__ = _mscl.delete_DatalogDownloader - - def complete(self): - return _mscl.DatalogDownloader_complete(self) - - def percentComplete(self): - return _mscl.DatalogDownloader_percentComplete(self) - - def getNextData(self): - return _mscl.DatalogDownloader_getNextData(self) - - def metaDataUpdated(self): - return _mscl.DatalogDownloader_metaDataUpdated(self) - - def calCoefficientsUpdated(self): - return _mscl.DatalogDownloader_calCoefficientsUpdated(self) - - def startOfSession(self): - return _mscl.DatalogDownloader_startOfSession(self) - - def sessionIndex(self): - return _mscl.DatalogDownloader_sessionIndex(self) - - def sampleRate(self): - return _mscl.DatalogDownloader_sampleRate(self) - - def userString(self): - return _mscl.DatalogDownloader_userString(self) - - def calCoefficients(self): - return _mscl.DatalogDownloader_calCoefficients(self) - -# Register DatalogDownloader in _mscl: -_mscl.DatalogDownloader_swigregister(DatalogDownloader) - -class ArmedDataloggingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.ArmedDataloggingNetwork_swiginit(self, _mscl.new_ArmedDataloggingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.ArmedDataloggingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.ArmedDataloggingNetwork_removeNode(self, nodeAddress) - - def startSampling(self): - return _mscl.ArmedDataloggingNetwork_startSampling(self) - __swig_destroy__ = _mscl.delete_ArmedDataloggingNetwork - -# Register ArmedDataloggingNetwork in _mscl: -_mscl.ArmedDataloggingNetwork_swigregister(ArmedDataloggingNetwork) - -class SyncNetworkInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - status_OK = _mscl.SyncNetworkInfo_status_OK - status_PoorCommunication = _mscl.SyncNetworkInfo_status_PoorCommunication - status_DoesNotFit = _mscl.SyncNetworkInfo_status_DoesNotFit - status_Contention = _mscl.SyncNetworkInfo_status_Contention - - def __init__(self, node): - _mscl.SyncNetworkInfo_swiginit(self, _mscl.new_SyncNetworkInfo(node)) - - def status(self): - return _mscl.SyncNetworkInfo_status(self) - - def startedSampling(self): - return _mscl.SyncNetworkInfo_startedSampling(self) - - def configurationApplied(self): - return _mscl.SyncNetworkInfo_configurationApplied(self) - - def percentBandwidth(self): - return _mscl.SyncNetworkInfo_percentBandwidth(self) - - def tdmaAddress(self): - return _mscl.SyncNetworkInfo_tdmaAddress(self) - - def maxTdmaAddress(self): - return _mscl.SyncNetworkInfo_maxTdmaAddress(self) - - def transmissionPerGroup(self): - return _mscl.SyncNetworkInfo_transmissionPerGroup(self) - - def groupSize(self): - return _mscl.SyncNetworkInfo_groupSize(self) - __swig_destroy__ = _mscl.delete_SyncNetworkInfo - -# Register SyncNetworkInfo in _mscl: -_mscl.SyncNetworkInfo_swigregister(SyncNetworkInfo) - -class SyncSamplingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.SyncSamplingNetwork_swiginit(self, _mscl.new_SyncSamplingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.SyncSamplingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.SyncSamplingNetwork_removeNode(self, nodeAddress) - - def percentBandwidth(self): - return _mscl.SyncSamplingNetwork_percentBandwidth(self) - - def ok(self): - return _mscl.SyncSamplingNetwork_ok(self) - - def refresh(self): - return _mscl.SyncSamplingNetwork_refresh(self) - - def lossless(self, *args): - return _mscl.SyncSamplingNetwork_lossless(self, *args) - - def communicationProtocol(self, *args): - return _mscl.SyncSamplingNetwork_communicationProtocol(self, *args) - - def applyConfiguration(self): - return _mscl.SyncSamplingNetwork_applyConfiguration(self) - - def startSampling(self, *args): - return _mscl.SyncSamplingNetwork_startSampling(self, *args) - - def startSampling_noBeacon(self): - return _mscl.SyncSamplingNetwork_startSampling_noBeacon(self) - - def getNodeNetworkInfo(self, nodeAddress): - return _mscl.SyncSamplingNetwork_getNodeNetworkInfo(self, nodeAddress) - __swig_destroy__ = _mscl.delete_SyncSamplingNetwork - -# Register SyncSamplingNetwork in _mscl: -_mscl.SyncSamplingNetwork_swigregister(SyncSamplingNetwork) - -class NodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_NodeFeatures - - def normalizeNumSweeps(self, sweeps): - return _mscl.NodeFeatures_normalizeNumSweeps(self, sweeps) - - def normalizeTimeBetweenBursts(self, time): - return _mscl.NodeFeatures_normalizeTimeBetweenBursts(self, time) - - def channels(self): - return _mscl.NodeFeatures_channels(self) - - def channelGroups(self): - return _mscl.NodeFeatures_channelGroups(self) - - def channelType(self, channelNumber): - return _mscl.NodeFeatures_channelType(self, channelNumber) - - def supportsChannelSetting(self, setting, mask): - return _mscl.NodeFeatures_supportsChannelSetting(self, setting, mask) - - def supportsInputRangePerExcitationVoltage(self): - return _mscl.NodeFeatures_supportsInputRangePerExcitationVoltage(self) - - def supportsHardwareOffset(self): - return _mscl.NodeFeatures_supportsHardwareOffset(self) - - def supportsAntiAliasingFilter(self): - return _mscl.NodeFeatures_supportsAntiAliasingFilter(self) - - def supportsLowPassFilter(self): - return _mscl.NodeFeatures_supportsLowPassFilter(self) - - def supportsHighPassFilter(self): - return _mscl.NodeFeatures_supportsHighPassFilter(self) - - def supportsGaugeFactor(self): - return _mscl.NodeFeatures_supportsGaugeFactor(self) - - def supportsGaugeResistance(self): - return _mscl.NodeFeatures_supportsGaugeResistance(self) - - def supportsNumActiveGauges(self): - return _mscl.NodeFeatures_supportsNumActiveGauges(self) - - def supportsLostBeaconTimeout(self): - return _mscl.NodeFeatures_supportsLostBeaconTimeout(self) - - def supportsPullUpResistor(self): - return _mscl.NodeFeatures_supportsPullUpResistor(self) - - def supportsFilterSettlingTime(self): - return _mscl.NodeFeatures_supportsFilterSettlingTime(self) - - def supportsThermocoupleType(self): - return _mscl.NodeFeatures_supportsThermocoupleType(self) - - def supportsTempSensorOptions(self): - return _mscl.NodeFeatures_supportsTempSensorOptions(self) - - def supportsDebounceFilter(self): - return _mscl.NodeFeatures_supportsDebounceFilter(self) - - def supportsFatigueConfig(self): - return _mscl.NodeFeatures_supportsFatigueConfig(self) - - def supportsYoungsModConfig(self): - return _mscl.NodeFeatures_supportsYoungsModConfig(self) - - def supportsPoissonsRatioConfig(self): - return _mscl.NodeFeatures_supportsPoissonsRatioConfig(self) - - def supportsFatigueDebugModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueDebugModeConfig(self) - - def supportsFatigueModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueModeConfig(self) - - def supportsHistogramConfig(self): - return _mscl.NodeFeatures_supportsHistogramConfig(self) - - def supportsHistogramRateConfig(self): - return _mscl.NodeFeatures_supportsHistogramRateConfig(self) - - def supportsHistogramEnableConfig(self): - return _mscl.NodeFeatures_supportsHistogramEnableConfig(self) - - def supportsActivitySense(self): - return _mscl.NodeFeatures_supportsActivitySense(self) - - def supportsAutoBalance(self): - return _mscl.NodeFeatures_supportsAutoBalance(self) - - def supportsLegacyShuntCal(self): - return _mscl.NodeFeatures_supportsLegacyShuntCal(self) - - def supportsAutoCal_shm(self): - return _mscl.NodeFeatures_supportsAutoCal_shm(self) - - def supportsAutoCal_shm201(self): - return _mscl.NodeFeatures_supportsAutoCal_shm201(self) - - def supportsAutoShuntCal(self): - return _mscl.NodeFeatures_supportsAutoShuntCal(self) - - def supportsGetFactoryCal(self): - return _mscl.NodeFeatures_supportsGetFactoryCal(self) - - def supportsLimitedDuration(self): - return _mscl.NodeFeatures_supportsLimitedDuration(self) - - def supportsEventTrigger(self): - return _mscl.NodeFeatures_supportsEventTrigger(self) - - def supportsDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsDiagnosticInfo(self) - - def supportsLoggedData(self): - return _mscl.NodeFeatures_supportsLoggedData(self) - - def supportsPoll(self): - return _mscl.NodeFeatures_supportsPoll(self) - - def supportsSensorDelayConfig(self): - return _mscl.NodeFeatures_supportsSensorDelayConfig(self) - - def supportsSensorDelayAlwaysOn(self): - return _mscl.NodeFeatures_supportsSensorDelayAlwaysOn(self) - - def supportsSensorOutputMode(self): - return _mscl.NodeFeatures_supportsSensorOutputMode(self) - - def supportsCfcFilterConfiguration(self): - return _mscl.NodeFeatures_supportsCfcFilterConfiguration(self) - - def supportsChannel(self, channelNumber): - return _mscl.NodeFeatures_supportsChannel(self, channelNumber) - - def supportsSamplingMode(self, samplingMode): - return _mscl.NodeFeatures_supportsSamplingMode(self, samplingMode) - - def supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.NodeFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsDataFormat(self, dataFormat): - return _mscl.NodeFeatures_supportsDataFormat(self, dataFormat) - - def supportsDefaultMode(self, mode): - return _mscl.NodeFeatures_supportsDefaultMode(self, mode) - - def supportsDataCollectionMethod(self, collectionMethod): - return _mscl.NodeFeatures_supportsDataCollectionMethod(self, collectionMethod) - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.NodeFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsDataMode(self, dataMode): - return _mscl.NodeFeatures_supportsDataMode(self, dataMode) - - def supportsTransducerType(self, transducerType): - return _mscl.NodeFeatures_supportsTransducerType(self, transducerType) - - def supportsFatigueMode(self, mode): - return _mscl.NodeFeatures_supportsFatigueMode(self, mode) - - def supportsInputRange(self, *args): - return _mscl.NodeFeatures_supportsInputRange(self, *args) - - def supportsCentisecondEventDuration(self): - return _mscl.NodeFeatures_supportsCentisecondEventDuration(self) - - def supportsGetDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsGetDiagnosticInfo(self) - - def supportsNonSyncLogWithTimestamps(self): - return _mscl.NodeFeatures_supportsNonSyncLogWithTimestamps(self) - - def supportsDerivedCategory(self, category): - return _mscl.NodeFeatures_supportsDerivedCategory(self, category) - - def supportsRawDataMode(self): - return _mscl.NodeFeatures_supportsRawDataMode(self) - - def supportsDerivedDataMode(self): - return _mscl.NodeFeatures_supportsDerivedDataMode(self) - - def supportsDerivedVelocityUnitConfig(self): - return _mscl.NodeFeatures_supportsDerivedVelocityUnitConfig(self) - - def supportsExcitationVoltageConfig(self): - return _mscl.NodeFeatures_supportsExcitationVoltageConfig(self) - - def supportsLowBatteryThresholdConfig(self): - return _mscl.NodeFeatures_supportsLowBatteryThresholdConfig(self) - - def maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode) - - def maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode) - - def maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels): - return _mscl.NodeFeatures_maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels) - - def maxFilterSettlingTime(self, rate): - return _mscl.NodeFeatures_maxFilterSettlingTime(self, rate) - - def minInactivityTimeout(self): - return _mscl.NodeFeatures_minInactivityTimeout(self) - - def minLostBeaconTimeout(self): - return _mscl.NodeFeatures_minLostBeaconTimeout(self) - - def maxLostBeaconTimeout(self): - return _mscl.NodeFeatures_maxLostBeaconTimeout(self) - - def minCheckRadioInterval(self): - return _mscl.NodeFeatures_minCheckRadioInterval(self) - - def maxCheckRadioInterval(self): - return _mscl.NodeFeatures_maxCheckRadioInterval(self) - - def minSweeps(self): - return _mscl.NodeFeatures_minSweeps(self) - - def maxSweeps(self, samplingMode, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweeps(self, samplingMode, dataMode, dataFormat, channels) - - def maxSweepsPerBurst(self, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweepsPerBurst(self, dataMode, dataFormat, channels) - - def minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol): - return _mscl.NodeFeatures_minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol) - - def minSensorDelay(self): - return _mscl.NodeFeatures_minSensorDelay(self) - - def maxSensorDelay(self): - return _mscl.NodeFeatures_maxSensorDelay(self) - - def defaultSensorDelay(self): - return _mscl.NodeFeatures_defaultSensorDelay(self) - - def maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate): - return _mscl.NodeFeatures_maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate) - - def normalizeEventDuration(self, duration): - return _mscl.NodeFeatures_normalizeEventDuration(self, duration) - - def normalizeSensorDelay(self, delay): - return _mscl.NodeFeatures_normalizeSensorDelay(self, delay) - - def numDamageAngles(self): - return _mscl.NodeFeatures_numDamageAngles(self) - - def numSnCurveSegments(self): - return _mscl.NodeFeatures_numSnCurveSegments(self) - - def numEventTriggers(self): - return _mscl.NodeFeatures_numEventTriggers(self) - - def defaultModes(self): - return _mscl.NodeFeatures_defaultModes(self) - - def dataCollectionMethods(self): - return _mscl.NodeFeatures_dataCollectionMethods(self) - - def dataFormats(self): - return _mscl.NodeFeatures_dataFormats(self) - - def samplingModes(self): - return _mscl.NodeFeatures_samplingModes(self) - - def sampleRates(self, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_sampleRates(self, samplingMode, dataCollectionMethod, dataMode) - - def derivedDataRates(self): - return _mscl.NodeFeatures_derivedDataRates(self) - - def transmitPowers(self, *args): - return _mscl.NodeFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.NodeFeatures_commProtocols(self) - - def sensorOutputModes(self): - return _mscl.NodeFeatures_sensorOutputModes(self) - - def cfcFilters(self): - return _mscl.NodeFeatures_cfcFilters(self) - - def histogramTransmitRates(self): - return _mscl.NodeFeatures_histogramTransmitRates(self) - - def fatigueModes(self): - return _mscl.NodeFeatures_fatigueModes(self) - - def antiAliasingFilters(self): - return _mscl.NodeFeatures_antiAliasingFilters(self) - - def lowPassFilters(self): - return _mscl.NodeFeatures_lowPassFilters(self) - - def highPassFilters(self): - return _mscl.NodeFeatures_highPassFilters(self) - - def storageLimitModes(self): - return _mscl.NodeFeatures_storageLimitModes(self) - - def inputRanges(self, *args): - return _mscl.NodeFeatures_inputRanges(self, *args) - - def dataModes(self): - return _mscl.NodeFeatures_dataModes(self) - - def transducerTypes(self): - return _mscl.NodeFeatures_transducerTypes(self) - - def channelsPerDerivedCategory(self): - return _mscl.NodeFeatures_channelsPerDerivedCategory(self) - - def excitationVoltages(self): - return _mscl.NodeFeatures_excitationVoltages(self) - - def adcVoltageInputType(self): - return _mscl.NodeFeatures_adcVoltageInputType(self) - - def maxTransmitPower(self, *args): - return _mscl.NodeFeatures_maxTransmitPower(self, *args) - - def minTransmitPower(self, *args): - return _mscl.NodeFeatures_minTransmitPower(self, *args) - -# Register NodeFeatures in _mscl: -_mscl.NodeFeatures_swigregister(NodeFeatures) - -class BaseStationFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_BaseStationFeatures - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.BaseStationFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.BaseStationFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsButtons(self): - return _mscl.BaseStationFeatures_supportsButtons(self) - - def supportsAnalogPairing(self): - return _mscl.BaseStationFeatures_supportsAnalogPairing(self) - - def supportsBeaconStatus(self): - return _mscl.BaseStationFeatures_supportsBeaconStatus(self) - - def supportsRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsRfSweepMode(self) - - def supportsCustomRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsCustomRfSweepMode(self) - - def buttonCount(self): - return _mscl.BaseStationFeatures_buttonCount(self) - - def analogPortCount(self): - return _mscl.BaseStationFeatures_analogPortCount(self) - - def transmitPowers(self, *args): - return _mscl.BaseStationFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.BaseStationFeatures_commProtocols(self) - - def maxTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_maxTransmitPower(self, region, commProtocol) - - def minTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_minTransmitPower(self, region, commProtocol) - -# Register BaseStationFeatures in _mscl: -_mscl.BaseStationFeatures_swigregister(BaseStationFeatures) - -class EulerAngles(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EulerAngles_swiginit(self, _mscl.new_EulerAngles(*args)) - - def asMipFieldValues(self): - return _mscl.EulerAngles_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.EulerAngles_appendMipFieldValues(self, appendTo) - - def roll(self): - return _mscl.EulerAngles_roll(self) - - def pitch(self): - return _mscl.EulerAngles_pitch(self) - - def yaw(self): - return _mscl.EulerAngles_yaw(self) - - def heading(self): - return _mscl.EulerAngles_heading(self) - __swig_destroy__ = _mscl.delete_EulerAngles - -# Register EulerAngles in _mscl: -_mscl.EulerAngles_swigregister(EulerAngles) - -class Quaternion(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Quaternion_swiginit(self, _mscl.new_Quaternion(*args)) - - def asMipFieldValues(self): - return _mscl.Quaternion_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Quaternion_appendMipFieldValues(self, appendTo) - - def normalize(self): - return _mscl.Quaternion_normalize(self) - - def q0(self): - return _mscl.Quaternion_q0(self) - - def q1(self): - return _mscl.Quaternion_q1(self) - - def q2(self): - return _mscl.Quaternion_q2(self) - - def q3(self): - return _mscl.Quaternion_q3(self) - __swig_destroy__ = _mscl.delete_Quaternion - -# Register Quaternion in _mscl: -_mscl.Quaternion_swigregister(Quaternion) - -class Rotation(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EULER_ANGLES = _mscl.Rotation_EULER_ANGLES - QUATERNION = _mscl.Rotation_QUATERNION - - def __init__(self, *args): - _mscl.Rotation_swiginit(self, _mscl.new_Rotation(*args)) - - @staticmethod - def FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - - @staticmethod - def FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - - def asEulerAngles(self): - return _mscl.Rotation_asEulerAngles(self) - - def asQuaternion(self): - return _mscl.Rotation_asQuaternion(self) - - def asMipFieldValues(self, includeFormat=True): - return _mscl.Rotation_asMipFieldValues(self, includeFormat) - - def appendMipFieldValues(self, appendTo, includeFormat=True): - return _mscl.Rotation_appendMipFieldValues(self, appendTo, includeFormat) - - def format(self): - return _mscl.Rotation_format(self) - __swig_destroy__ = _mscl.delete_Rotation - -# Register Rotation in _mscl: -_mscl.Rotation_swigregister(Rotation) - -def Rotation_FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - -def Rotation_FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - -class Vec3f(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Vec3f_swiginit(self, _mscl.new_Vec3f(*args)) - __swig_destroy__ = _mscl.delete_Vec3f - - def fromMipFieldValues(self, data, offset=0): - return _mscl.Vec3f_fromMipFieldValues(self, data, offset) - - def asMipFieldValues(self): - return _mscl.Vec3f_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Vec3f_appendMipFieldValues(self, appendTo) - - def x(self, *args): - return _mscl.Vec3f_x(self, *args) - - def y(self, *args): - return _mscl.Vec3f_y(self, *args) - - def z(self, *args): - return _mscl.Vec3f_z(self, *args) - -# Register Vec3f in _mscl: -_mscl.Vec3f_swigregister(Vec3f) - -ECEF = _mscl.ECEF -LLH_NED = _mscl.LLH_NED -LOCAL = _mscl.LOCAL -VEHICLE = _mscl.VEHICLE -class GeometricVector(Vec3f): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - - @staticmethod - def VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - - def __init__(self, *args): - _mscl.GeometricVector_swiginit(self, _mscl.new_GeometricVector(*args)) - __swig_destroy__ = _mscl.delete_GeometricVector - - def fromMipFieldValues_includesFrame(self, data, offset=0): - return _mscl.GeometricVector_fromMipFieldValues_includesFrame(self, data, offset) - - def asMipFieldValues_includeFrame(self): - return _mscl.GeometricVector_asMipFieldValues_includeFrame(self) - - def appendMipFieldValues_includeFrame(self, appendTo): - return _mscl.GeometricVector_appendMipFieldValues_includeFrame(self, appendTo) - referenceFrame = property(_mscl.GeometricVector_referenceFrame_get, _mscl.GeometricVector_referenceFrame_set) - - def north(self, *args): - return _mscl.GeometricVector_north(self, *args) - - def east(self, *args): - return _mscl.GeometricVector_east(self, *args) - - def down(self, *args): - return _mscl.GeometricVector_down(self, *args) - -# Register GeometricVector in _mscl: -_mscl.GeometricVector_swigregister(GeometricVector) - -def GeometricVector_VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - -def GeometricVector_VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - -class PositionOffset(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.PositionOffset_swiginit(self, _mscl.new_PositionOffset(*args)) - __swig_destroy__ = _mscl.delete_PositionOffset - -# Register PositionOffset in _mscl: -_mscl.PositionOffset_swigregister(PositionOffset) - -class Velocity(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Velocity_swiginit(self, _mscl.new_Velocity(*args)) - __swig_destroy__ = _mscl.delete_Velocity - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - - @staticmethod - def NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - - @staticmethod - def Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -# Register Velocity in _mscl: -_mscl.Velocity_swigregister(Velocity) - -def Velocity_ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - -def Velocity_NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - -def Velocity_Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -class Position(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - - def __init__(self, *args): - _mscl.Position_swiginit(self, _mscl.new_Position(*args)) - __swig_destroy__ = _mscl.delete_Position - referenceFrame = property(_mscl.Position_referenceFrame_get, _mscl.Position_referenceFrame_set) - - def latitude(self, *args): - return _mscl.Position_latitude(self, *args) - - def longitude(self, *args): - return _mscl.Position_longitude(self, *args) - - def altitude(self, *args): - return _mscl.Position_altitude(self, *args) - - def height(self, *args): - return _mscl.Position_height(self, *args) - - def x(self, *args): - return _mscl.Position_x(self, *args) - - def y(self, *args): - return _mscl.Position_y(self, *args) - - def z(self, *args): - return _mscl.Position_z(self, *args) - -# Register Position in _mscl: -_mscl.Position_swigregister(Position) - -def Position_LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - -def Position_ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - -class GeometricUncertainty(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeometricUncertainty_swiginit(self, _mscl.new_GeometricUncertainty(*args)) - __swig_destroy__ = _mscl.delete_GeometricUncertainty - -# Register GeometricUncertainty in _mscl: -_mscl.GeometricUncertainty_swigregister(GeometricUncertainty) - -class MipModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_3dm_dh3 = _mscl.MipModels_node_3dm_dh3 - node_3dm_gx3_15 = _mscl.MipModels_node_3dm_gx3_15 - node_3dm_gx3_25 = _mscl.MipModels_node_3dm_gx3_25 - node_3dm_gx3_35 = _mscl.MipModels_node_3dm_gx3_35 - node_3dm_gx3_45 = _mscl.MipModels_node_3dm_gx3_45 - node_3dm_rq1_45_lt = _mscl.MipModels_node_3dm_rq1_45_lt - node_3dm_gx4_15 = _mscl.MipModels_node_3dm_gx4_15 - node_3dm_gx4_25 = _mscl.MipModels_node_3dm_gx4_25 - node_3dm_gx4_45 = _mscl.MipModels_node_3dm_gx4_45 - node_3dm_rq1_45_st = _mscl.MipModels_node_3dm_rq1_45_st - node_mv5_ar = _mscl.MipModels_node_mv5_ar - node_3dm_gx5_10 = _mscl.MipModels_node_3dm_gx5_10 - node_3dm_gx5_15 = _mscl.MipModels_node_3dm_gx5_15 - node_3dm_gx5_25 = _mscl.MipModels_node_3dm_gx5_25 - node_3dm_gx5_35 = _mscl.MipModels_node_3dm_gx5_35 - node_3dm_gx5_45 = _mscl.MipModels_node_3dm_gx5_45 - node_3dm_cv5_10 = _mscl.MipModels_node_3dm_cv5_10 - node_3dm_cv5_15 = _mscl.MipModels_node_3dm_cv5_15 - node_3dm_cv5_25 = _mscl.MipModels_node_3dm_cv5_25 - node_3dm_cv5_45 = _mscl.MipModels_node_3dm_cv5_45 - node_3dm_gq4_45 = _mscl.MipModels_node_3dm_gq4_45 - node_3dm_cx5_45 = _mscl.MipModels_node_3dm_cx5_45 - node_3dm_cx5_35 = _mscl.MipModels_node_3dm_cx5_35 - node_3dm_cx5_25 = _mscl.MipModels_node_3dm_cx5_25 - node_3dm_cx5_15 = _mscl.MipModels_node_3dm_cx5_15 - node_3dm_cx5_10 = _mscl.MipModels_node_3dm_cx5_10 - node_3dm_cl5_15 = _mscl.MipModels_node_3dm_cl5_15 - node_3dm_cl5_25 = _mscl.MipModels_node_3dm_cl5_25 - node_3dm_gq7 = _mscl.MipModels_node_3dm_gq7 - node_3dm_rtk = _mscl.MipModels_node_3dm_rtk - node_3dm_cv7_ahrs = _mscl.MipModels_node_3dm_cv7_ahrs - node_3dm_cv7_ar = _mscl.MipModels_node_3dm_cv7_ar - node_3dm_gv7_ahrs = _mscl.MipModels_node_3dm_gv7_ahrs - node_3dm_gv7_ar = _mscl.MipModels_node_3dm_gv7_ar - node_3dm_gv7_ins = _mscl.MipModels_node_3dm_gv7_ins - node_3dm_cv7_ins = _mscl.MipModels_node_3dm_cv7_ins - node_3dm_cv7_gnss_ins = _mscl.MipModels_node_3dm_cv7_gnss_ins - placeholder_matchAll = _mscl.MipModels_placeholder_matchAll - rtk_v1 = _mscl.MipModels_rtk_v1 - rtk_v2 = _mscl.MipModels_rtk_v2 - model_3dm_dh3 = _mscl.MipModels_model_3dm_dh3 - model_3dm_gx3_15 = _mscl.MipModels_model_3dm_gx3_15 - model_3dm_gx3_25 = _mscl.MipModels_model_3dm_gx3_25 - model_3dm_gx3_35 = _mscl.MipModels_model_3dm_gx3_35 - model_3dm_gx3_45 = _mscl.MipModels_model_3dm_gx3_45 - model_3dm_rq1_45_lt = _mscl.MipModels_model_3dm_rq1_45_lt - model_3dm_gx4_15 = _mscl.MipModels_model_3dm_gx4_15 - model_3dm_gx4_25 = _mscl.MipModels_model_3dm_gx4_25 - model_3dm_gx4_45 = _mscl.MipModels_model_3dm_gx4_45 - model_3dm_rq1_45_st = _mscl.MipModels_model_3dm_rq1_45_st - model_mv5_ar = _mscl.MipModels_model_mv5_ar - model_3dm_gx5_10 = _mscl.MipModels_model_3dm_gx5_10 - model_3dm_gx5_15 = _mscl.MipModels_model_3dm_gx5_15 - model_3dm_gx5_25 = _mscl.MipModels_model_3dm_gx5_25 - model_3dm_gx5_35 = _mscl.MipModels_model_3dm_gx5_35 - model_3dm_gx5_45 = _mscl.MipModels_model_3dm_gx5_45 - model_3dm_cv5_10 = _mscl.MipModels_model_3dm_cv5_10 - model_3dm_cv5_15 = _mscl.MipModels_model_3dm_cv5_15 - model_3dm_cv5_25 = _mscl.MipModels_model_3dm_cv5_25 - model_3dm_cv5_45 = _mscl.MipModels_model_3dm_cv5_45 - model_3dm_gq4_45 = _mscl.MipModels_model_3dm_gq4_45 - model_3dm_cx5_45 = _mscl.MipModels_model_3dm_cx5_45 - model_3dm_cx5_35 = _mscl.MipModels_model_3dm_cx5_35 - model_3dm_cx5_25 = _mscl.MipModels_model_3dm_cx5_25 - model_3dm_cx5_15 = _mscl.MipModels_model_3dm_cx5_15 - model_3dm_cx5_10 = _mscl.MipModels_model_3dm_cx5_10 - model_3dm_cl5_15 = _mscl.MipModels_model_3dm_cl5_15 - model_3dm_cl5_25 = _mscl.MipModels_model_3dm_cl5_25 - model_3dm_gq7 = _mscl.MipModels_model_3dm_gq7 - model_3dm_rtk_v1 = _mscl.MipModels_model_3dm_rtk_v1 - model_3dm_rtk = _mscl.MipModels_model_3dm_rtk - model_3dm_cv7_ahrs = _mscl.MipModels_model_3dm_cv7_ahrs - model_3dm_cv7_ar = _mscl.MipModels_model_3dm_cv7_ar - model_3dm_gv7_ahrs = _mscl.MipModels_model_3dm_gv7_ahrs - model_3dm_gv7_ar = _mscl.MipModels_model_3dm_gv7_ar - model_3dm_gv7_ins = _mscl.MipModels_model_3dm_gv7_ins - model_3dm_cv7_ins = _mscl.MipModels_model_3dm_cv7_ins - model_3dm_cv7_gnss_ins = _mscl.MipModels_model_3dm_cv7_gnss_ins - - @staticmethod - def modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - - @staticmethod - def modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - - @staticmethod - def modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - - @staticmethod - def nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - - @staticmethod - def modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - - @staticmethod - def nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - - @staticmethod - def modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - - @staticmethod - def stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - - def __init__(self): - _mscl.MipModels_swiginit(self, _mscl.new_MipModels()) - __swig_destroy__ = _mscl.delete_MipModels - -# Register MipModels in _mscl: -_mscl.MipModels_swigregister(MipModels) - -def MipModels_modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - -def MipModels_modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - -def MipModels_modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - -def MipModels_nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - -def MipModels_modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - -def MipModels_nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - -def MipModels_modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - -def MipModels_stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - -class MipModel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipModel_swiginit(self, _mscl.new_MipModel(*args)) - - def equals(self, compare): - return _mscl.MipModel_equals(self, compare) - - def __str__(self): - return _mscl.MipModel___str__(self) - - def nodeModel(self): - return _mscl.MipModel_nodeModel(self) - - def modifier(self): - return _mscl.MipModel_modifier(self) - - def modelNumber(self): - return _mscl.MipModel_modelNumber(self) - - def baseModel(self): - return _mscl.MipModel_baseModel(self) - __swig_destroy__ = _mscl.delete_MipModel - -# Register MipModel in _mscl: -_mscl.MipModel_swigregister(MipModel) -MipModel.mip_model_none = _mscl.cvar.MipModel_mip_model_none -MipModel.mip_model_3dm_dh3 = _mscl.cvar.MipModel_mip_model_3dm_dh3 -MipModel.mip_model_3dm_gx3_15 = _mscl.cvar.MipModel_mip_model_3dm_gx3_15 -MipModel.mip_model_3dm_gx3_25 = _mscl.cvar.MipModel_mip_model_3dm_gx3_25 -MipModel.mip_model_3dm_gx3_35 = _mscl.cvar.MipModel_mip_model_3dm_gx3_35 -MipModel.mip_model_3dm_gx3_45 = _mscl.cvar.MipModel_mip_model_3dm_gx3_45 -MipModel.mip_model_3dm_rq1_45_lt = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_lt -MipModel.mip_model_3dm_rq1_45_st = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_st -MipModel.mip_model_3dm_gx4_15 = _mscl.cvar.MipModel_mip_model_3dm_gx4_15 -MipModel.mip_model_3dm_gx4_25 = _mscl.cvar.MipModel_mip_model_3dm_gx4_25 -MipModel.mip_model_3dm_gx4_45 = _mscl.cvar.MipModel_mip_model_3dm_gx4_45 -MipModel.mip_model_mv5_ar = _mscl.cvar.MipModel_mip_model_mv5_ar -MipModel.mip_model_3dm_gx5_10 = _mscl.cvar.MipModel_mip_model_3dm_gx5_10 -MipModel.mip_model_3dm_gx5_15 = _mscl.cvar.MipModel_mip_model_3dm_gx5_15 -MipModel.mip_model_3dm_gx5_25 = _mscl.cvar.MipModel_mip_model_3dm_gx5_25 -MipModel.mip_model_3dm_gx5_35 = _mscl.cvar.MipModel_mip_model_3dm_gx5_35 -MipModel.mip_model_3dm_gx5_45 = _mscl.cvar.MipModel_mip_model_3dm_gx5_45 -MipModel.mip_model_3dm_cv5_10 = _mscl.cvar.MipModel_mip_model_3dm_cv5_10 -MipModel.mip_model_3dm_cv5_15 = _mscl.cvar.MipModel_mip_model_3dm_cv5_15 -MipModel.mip_model_3dm_cv5_25 = _mscl.cvar.MipModel_mip_model_3dm_cv5_25 -MipModel.mip_model_3dm_cv5_45 = _mscl.cvar.MipModel_mip_model_3dm_cv5_45 -MipModel.mip_model_3dm_gq4_45 = _mscl.cvar.MipModel_mip_model_3dm_gq4_45 -MipModel.mip_model_3dm_cx5_45 = _mscl.cvar.MipModel_mip_model_3dm_cx5_45 -MipModel.mip_model_3dm_cx5_35 = _mscl.cvar.MipModel_mip_model_3dm_cx5_35 -MipModel.mip_model_3dm_cx5_25 = _mscl.cvar.MipModel_mip_model_3dm_cx5_25 -MipModel.mip_model_3dm_cx5_15 = _mscl.cvar.MipModel_mip_model_3dm_cx5_15 -MipModel.mip_model_3dm_cx5_10 = _mscl.cvar.MipModel_mip_model_3dm_cx5_10 -MipModel.mip_model_3dm_cl5_15 = _mscl.cvar.MipModel_mip_model_3dm_cl5_15 -MipModel.mip_model_3dm_cl5_25 = _mscl.cvar.MipModel_mip_model_3dm_cl5_25 -MipModel.mip_model_3dm_gq7 = _mscl.cvar.MipModel_mip_model_3dm_gq7 -MipModel.mip_model_3dm_rtk_v1 = _mscl.cvar.MipModel_mip_model_3dm_rtk_v1 -MipModel.mip_model_3dm_rtk = _mscl.cvar.MipModel_mip_model_3dm_rtk -MipModel.mip_model_3dm_cv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_cv7_ahrs -MipModel.mip_model_3dm_cv7_ar = _mscl.cvar.MipModel_mip_model_3dm_cv7_ar -MipModel.mip_model_3dm_gv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_gv7_ahrs -MipModel.mip_model_3dm_gv7_ar = _mscl.cvar.MipModel_mip_model_3dm_gv7_ar -MipModel.mip_model_3dm_gv7_ins = _mscl.cvar.MipModel_mip_model_3dm_gv7_ins -MipModel.mip_model_3dm_cv7_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_ins -MipModel.mip_model_3dm_cv7_gnss_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_gnss_ins - -class DisplacementModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_digitalDemod = _mscl.DisplacementModels_node_digitalDemod - - def __init__(self): - _mscl.DisplacementModels_swiginit(self, _mscl.new_DisplacementModels()) - __swig_destroy__ = _mscl.delete_DisplacementModels - -# Register DisplacementModels in _mscl: -_mscl.DisplacementModels_swigregister(DisplacementModels) - -class MipTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CLASS_AHRS_IMU = _mscl.MipTypes_CLASS_AHRS_IMU - CLASS_GNSS = _mscl.MipTypes_CLASS_GNSS - CLASS_ESTFILTER = _mscl.MipTypes_CLASS_ESTFILTER - CLASS_DISPLACEMENT = _mscl.MipTypes_CLASS_DISPLACEMENT - CLASS_GNSS1 = _mscl.MipTypes_CLASS_GNSS1 - CLASS_GNSS2 = _mscl.MipTypes_CLASS_GNSS2 - CLASS_GNSS3 = _mscl.MipTypes_CLASS_GNSS3 - CLASS_RTK = _mscl.MipTypes_CLASS_RTK - CLASS_GNSS4 = _mscl.MipTypes_CLASS_GNSS4 - CLASS_GNSS5 = _mscl.MipTypes_CLASS_GNSS5 - CLASS_SYSTEM = _mscl.MipTypes_CLASS_SYSTEM - USE_NEW_SETTINGS = _mscl.MipTypes_USE_NEW_SETTINGS - READ_BACK_CURRENT_SETTINGS = _mscl.MipTypes_READ_BACK_CURRENT_SETTINGS - SAVE_CURRENT_SETTINGS = _mscl.MipTypes_SAVE_CURRENT_SETTINGS - LOAD_STARTUP_SETTINGS = _mscl.MipTypes_LOAD_STARTUP_SETTINGS - RESET_TO_DEFAULT = _mscl.MipTypes_RESET_TO_DEFAULT - USE_NEW_SETTINGS_NO_ACKNACK = _mscl.MipTypes_USE_NEW_SETTINGS_NO_ACKNACK - DISABLED = _mscl.MipTypes_DISABLED - ENABLED = _mscl.MipTypes_ENABLED - TIME_FRAME_WEEKS = _mscl.MipTypes_TIME_FRAME_WEEKS - TIME_FRAME_SECONDS = _mscl.MipTypes_TIME_FRAME_SECONDS - CMD_PING = _mscl.MipTypes_CMD_PING - CMD_SET_IDLE = _mscl.MipTypes_CMD_SET_IDLE - CMD_GET_DEVICE_INFO = _mscl.MipTypes_CMD_GET_DEVICE_INFO - CMD_GET_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_DESCRIPTOR_SETS - CMD_BUILT_IN_TEST = _mscl.MipTypes_CMD_BUILT_IN_TEST - CMD_RESUME = _mscl.MipTypes_CMD_RESUME - CMD_GET_EXT_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_EXT_DESCRIPTOR_SETS - CMD_COMM_PORT_SPEED = _mscl.MipTypes_CMD_COMM_PORT_SPEED - CMD_GPS_TIME_UPDATE = _mscl.MipTypes_CMD_GPS_TIME_UPDATE - CMD_RESET = _mscl.MipTypes_CMD_RESET - CMD_POLL_SENSOR_DATA = _mscl.MipTypes_CMD_POLL_SENSOR_DATA - CMD_POLL_GNSS_DATA = _mscl.MipTypes_CMD_POLL_GNSS_DATA - CMD_POLL_EF_DATA = _mscl.MipTypes_CMD_POLL_EF_DATA - CMD_GET_SENSOR_RATE_BASE = _mscl.MipTypes_CMD_GET_SENSOR_RATE_BASE - CMD_GET_GNSS_RATE_BASE = _mscl.MipTypes_CMD_GET_GNSS_RATE_BASE - CMD_GET_EF_RATE_BASE = _mscl.MipTypes_CMD_GET_EF_RATE_BASE - CMD_SENSOR_MESSAGE_FORMAT = _mscl.MipTypes_CMD_SENSOR_MESSAGE_FORMAT - CMD_GNSS_MESSAGE_FORMAT = _mscl.MipTypes_CMD_GNSS_MESSAGE_FORMAT - CMD_EF_MESSAGE_FORMAT = _mscl.MipTypes_CMD_EF_MESSAGE_FORMAT - CMD_NMEA_MESSAGE_FORMAT = _mscl.MipTypes_CMD_NMEA_MESSAGE_FORMAT - CMD_POLL = _mscl.MipTypes_CMD_POLL - CMD_GET_BASE_RATE = _mscl.MipTypes_CMD_GET_BASE_RATE - CMD_MESSAGE_FORMAT = _mscl.MipTypes_CMD_MESSAGE_FORMAT - CMD_FACTORY_STREAMING = _mscl.MipTypes_CMD_FACTORY_STREAMING - CMD_CONTINUOUS_DATA_STREAM = _mscl.MipTypes_CMD_CONTINUOUS_DATA_STREAM - CMD_RAW_RTCM_2_3_MESSAGE = _mscl.MipTypes_CMD_RAW_RTCM_2_3_MESSAGE - CMD_GNSS_CONSTELLATION_SETTINGS = _mscl.MipTypes_CMD_GNSS_CONSTELLATION_SETTINGS - CMD_GNSS_SBAS_SETTINGS = _mscl.MipTypes_CMD_GNSS_SBAS_SETTINGS - CMD_GNSS_ASSIST_FIX_CONTROL = _mscl.MipTypes_CMD_GNSS_ASSIST_FIX_CONTROL - CMD_GNSS_ASSIST_TIME_UPDATE = _mscl.MipTypes_CMD_GNSS_ASSIST_TIME_UPDATE - CMD_PPS_SOURCE = _mscl.MipTypes_CMD_PPS_SOURCE - CMD_EVENT_SUPPORT = _mscl.MipTypes_CMD_EVENT_SUPPORT - CMD_EVENT_CONTROL = _mscl.MipTypes_CMD_EVENT_CONTROL - CMD_EVENT_TRIGGER_STATUS = _mscl.MipTypes_CMD_EVENT_TRIGGER_STATUS - CMD_EVENT_ACTION_STATUS = _mscl.MipTypes_CMD_EVENT_ACTION_STATUS - CMD_EVENT_TRIGGER_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_TRIGGER_CONFIGURATION - CMD_EVENT_ACTION_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_ACTION_CONFIGURATION - CMD_SAVE_STARTUP_SETTINGS = _mscl.MipTypes_CMD_SAVE_STARTUP_SETTINGS - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM - CMD_GPS_DYNAMICS_MODE = _mscl.MipTypes_CMD_GPS_DYNAMICS_MODE - CMD_SENSOR_SIG_COND_SETTINGS = _mscl.MipTypes_CMD_SENSOR_SIG_COND_SETTINGS - CMD_SENSOR_TIMESTAMP = _mscl.MipTypes_CMD_SENSOR_TIMESTAMP - CMD_ACCEL_BIAS = _mscl.MipTypes_CMD_ACCEL_BIAS - CMD_GYRO_BIAS = _mscl.MipTypes_CMD_GYRO_BIAS - CMD_CAP_GYRO_BIAS = _mscl.MipTypes_CMD_CAP_GYRO_BIAS - CMD_MAG_HARD_IRON_OFFSET = _mscl.MipTypes_CMD_MAG_HARD_IRON_OFFSET - CMD_MAG_SOFT_IRON_MATRIX = _mscl.MipTypes_CMD_MAG_SOFT_IRON_MATRIX - CMD_CF_REALIGN_UP = _mscl.MipTypes_CMD_CF_REALIGN_UP - CMD_CF_REALIGN_NORTH = _mscl.MipTypes_CMD_CF_REALIGN_NORTH - CMD_CONING_SCULLING = _mscl.MipTypes_CMD_CONING_SCULLING - CMD_UART_BAUD_RATE = _mscl.MipTypes_CMD_UART_BAUD_RATE - CMD_GPIO_CONFIGURATION = _mscl.MipTypes_CMD_GPIO_CONFIGURATION - CMD_GPIO_STATE = _mscl.MipTypes_CMD_GPIO_STATE - CMD_ODOMETER_SETTINGS = _mscl.MipTypes_CMD_ODOMETER_SETTINGS - CMD_LOWPASS_FILTER_SETTINGS = _mscl.MipTypes_CMD_LOWPASS_FILTER_SETTINGS - CMD_COMPLEMENTARY_FILTER_SETTINGS = _mscl.MipTypes_CMD_COMPLEMENTARY_FILTER_SETTINGS - CMD_SENSOR_RANGE = _mscl.MipTypes_CMD_SENSOR_RANGE - CMD_SUPPORTED_SENSOR_RANGES = _mscl.MipTypes_CMD_SUPPORTED_SENSOR_RANGES - CMD_LOWPASS_ANTIALIASING_FILTER = _mscl.MipTypes_CMD_LOWPASS_ANTIALIASING_FILTER - CMD_DATA_STREAM_FORMAT = _mscl.MipTypes_CMD_DATA_STREAM_FORMAT - CMD_POWER_STATES = _mscl.MipTypes_CMD_POWER_STATES - CMD_GPS_STARTUP_SETTINGS = _mscl.MipTypes_CMD_GPS_STARTUP_SETTINGS - CMD_DEVICE_STATUS = _mscl.MipTypes_CMD_DEVICE_STATUS - CMD_EF_RESET_FILTER = _mscl.MipTypes_CMD_EF_RESET_FILTER - CMD_EF_INIT_ATTITUDE = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE - CMD_EF_INIT_HEADING = _mscl.MipTypes_CMD_EF_INIT_HEADING - CMD_EF_INIT_ATTITUDE_FROM_AHRS = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE_FROM_AHRS - CMD_EF_RUN_FILTER = _mscl.MipTypes_CMD_EF_RUN_FILTER - CMD_EF_VEHIC_DYNAMICS_MODE = _mscl.MipTypes_CMD_EF_VEHIC_DYNAMICS_MODE - CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER - CMD_EF_SENS_VEHIC_FRAME_OFFSET = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_OFFSET - CMD_EF_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_ANTENNA_OFFSET - CMD_EF_BIAS_EST_CTRL = _mscl.MipTypes_CMD_EF_BIAS_EST_CTRL - CMD_EF_GNSS_SRC_CTRL = _mscl.MipTypes_CMD_EF_GNSS_SRC_CTRL - CMD_EF_EXTERN_GNSS_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_GNSS_UPDATE - CMD_EF_EXTERN_HEADING_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_HEADING_UPDATE - CMD_EF_HEADING_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_HEADING_UPDATE_CTRL - CMD_EF_AUTO_INIT_CTRL = _mscl.MipTypes_CMD_EF_AUTO_INIT_CTRL - CMD_EF_ACCEL_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_ACCEL_WHT_NSE_STD_DEV - CMD_EF_GYRO_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_GYRO_WHT_NSE_STD_DEV - CMD_EF_ACCEL_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_ACCEL_BIAS_MODEL_PARAMS - CMD_EF_GYRO_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_GYRO_BIAS_MODEL_PARAMS - CMD_EF_ZERO_VEL_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_VEL_UPDATE_CTRL - CMD_EF_EXT_HEADING_UPDATE_TS = _mscl.MipTypes_CMD_EF_EXT_HEADING_UPDATE_TS - CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL - CMD_EF_TARE_ORIENT = _mscl.MipTypes_CMD_EF_TARE_ORIENT - CMD_EF_CMDED_ZERO_VEL_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_VEL_UPDATE - CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE - CMD_EF_SET_REF_POSITION = _mscl.MipTypes_CMD_EF_SET_REF_POSITION - CMD_EF_MAG_CAPTURE_AUTO_CAL = _mscl.MipTypes_CMD_EF_MAG_CAPTURE_AUTO_CAL - CMD_EF_GRAVITY_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_STD_DEV - CMD_EF_PRESS_ALT_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_PRESS_ALT_NOISE_STD_DEV - CMD_EF_GRAVITY_NOISE_MINIMUM = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_MINIMUM - CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE - CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE - CMD_EF_ENABLE_DISABLE_MEASUREMENTS = _mscl.MipTypes_CMD_EF_ENABLE_DISABLE_MEASUREMENTS - CMD_EF_MAG_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_MAG_NOISE_STD_DEV - CMD_EF_DECLINATION_SRC = _mscl.MipTypes_CMD_EF_DECLINATION_SRC - CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE - CMD_EF_ALTITUDE_AID_CTRL = _mscl.MipTypes_CMD_EF_ALTITUDE_AID_CTRL - CMD_EF_PITCH_ROLL_AID_CTRL = _mscl.MipTypes_CMD_EF_PITCH_ROLL_AID_CTRL - CMD_EF_INCLINATION_SRC = _mscl.MipTypes_CMD_EF_INCLINATION_SRC - CMD_EF_FIELD_MAGNITUDE_SRC = _mscl.MipTypes_CMD_EF_FIELD_MAGNITUDE_SRC - CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM - CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT - CMD_EF_AIDING_MEASUREMENT_ENABLE = _mscl.MipTypes_CMD_EF_AIDING_MEASUREMENT_ENABLE - CMD_EF_INITIALIZATION_CONFIG = _mscl.MipTypes_CMD_EF_INITIALIZATION_CONFIG - CMD_EF_ADAPTIVE_FILTER_OPTIONS = _mscl.MipTypes_CMD_EF_ADAPTIVE_FILTER_OPTIONS - CMD_EF_MULTI_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_MULTI_ANTENNA_OFFSET - CMD_EF_RELATIVE_POSITION_REF = _mscl.MipTypes_CMD_EF_RELATIVE_POSITION_REF - CMD_EF_LEVER_ARM_OFFSET_REF = _mscl.MipTypes_CMD_EF_LEVER_ARM_OFFSET_REF - CMD_EF_EXTERN_SPEED_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_SPEED_UPDATE - CMD_EF_SPEED_MEASUREMENT_OFFSET = _mscl.MipTypes_CMD_EF_SPEED_MEASUREMENT_OFFSET - CMD_EF_VERTICAL_GYRO_CONSTRAINT = _mscl.MipTypes_CMD_EF_VERTICAL_GYRO_CONSTRAINT - CMD_EF_WHEELED_VEHICLE_CONSTRAINT = _mscl.MipTypes_CMD_EF_WHEELED_VEHICLE_CONSTRAINT - CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL = _mscl.MipTypes_CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL - CMD_GNSS_RECEIVER_INFO = _mscl.MipTypes_CMD_GNSS_RECEIVER_INFO - CMD_GNSS_SIGNAL_CONFIG = _mscl.MipTypes_CMD_GNSS_SIGNAL_CONFIG - CMD_GNSS_SPARTN_CONFIG = _mscl.MipTypes_CMD_GNSS_SPARTN_CONFIG - CMD_GNSS_RTK_CONFIG = _mscl.MipTypes_CMD_GNSS_RTK_CONFIG - CMD_INTERFACE_CONTROL = _mscl.MipTypes_CMD_INTERFACE_CONTROL - CMD_COMMUNICATION_MODE = _mscl.MipTypes_CMD_COMMUNICATION_MODE - CMD_HARDWARE_CTRL = _mscl.MipTypes_CMD_HARDWARE_CTRL - CMD_GET_ANALOG_DISPLACEMENT_CALS = _mscl.MipTypes_CMD_GET_ANALOG_DISPLACEMENT_CALS - CMD_DISPLACEMENT_OUTPUT_RATE = _mscl.MipTypes_CMD_DISPLACEMENT_OUTPUT_RATE - CMD_DISPLACEMENT_DEVICE_TIME = _mscl.MipTypes_CMD_DISPLACEMENT_DEVICE_TIME - CMD_RTK_DEVICE_STATUS_FLAGS = _mscl.MipTypes_CMD_RTK_DEVICE_STATUS_FLAGS - CMD_RTK_ACTIVATION_CODE = _mscl.MipTypes_CMD_RTK_ACTIVATION_CODE - CMD_AIDING_FRAME_CONFIG = _mscl.MipTypes_CMD_AIDING_FRAME_CONFIG - CMD_AIDING_ECHO_CONTROL = _mscl.MipTypes_CMD_AIDING_ECHO_CONTROL - CMD_AIDING_POS_ECEF = _mscl.MipTypes_CMD_AIDING_POS_ECEF - CMD_AIDING_POS_LLH = _mscl.MipTypes_CMD_AIDING_POS_LLH - CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID - CMD_AIDING_VEL_ECEF = _mscl.MipTypes_CMD_AIDING_VEL_ECEF - CMD_AIDING_VEL_NED = _mscl.MipTypes_CMD_AIDING_VEL_NED - CMD_AIDING_VEL_BODY_FRAME = _mscl.MipTypes_CMD_AIDING_VEL_BODY_FRAME - CMD_AIDING_HEADING_TRUE = _mscl.MipTypes_CMD_AIDING_HEADING_TRUE - CMD_AIDING_MAGNETIC_FIELD = _mscl.MipTypes_CMD_AIDING_MAGNETIC_FIELD - CMD_AIDING_PRESSURE = _mscl.MipTypes_CMD_AIDING_PRESSURE - CH_FIELD_SENSOR_RAW_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_ACCEL_VEC - CH_FIELD_SENSOR_RAW_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_GYRO_VEC - CH_FIELD_SENSOR_RAW_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_MAG_VEC - CH_FIELD_SENSOR_SCALED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_ACCEL_VEC - CH_FIELD_SENSOR_SCALED_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_GYRO_VEC - CH_FIELD_SENSOR_SCALED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_MAG_VEC - CH_FIELD_SENSOR_DELTA_THETA_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_THETA_VEC - CH_FIELD_SENSOR_DELTA_VELOCITY_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_VELOCITY_VEC - CH_FIELD_SENSOR_ORIENTATION_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_MATRIX - CH_FIELD_SENSOR_ORIENTATION_QUATERNION = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_QUATERNION - CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX - CH_FIELD_SENSOR_EULER_ANGLES = _mscl.MipTypes_CH_FIELD_SENSOR_EULER_ANGLES - CH_FIELD_SENSOR_INTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_INTERNAL_TIMESTAMP - CH_FIELD_SENSOR_BEACONED_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_BEACONED_TIMESTAMP - CH_FIELD_SENSOR_STABILIZED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_MAG_VEC - CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC - CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP - CH_FIELD_SENSOR_TEMPERATURE_STATISTICS = _mscl.MipTypes_CH_FIELD_SENSOR_TEMPERATURE_STATISTICS - CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE - CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE - CH_FIELD_SENSOR_OVERRANGE_STATUS = _mscl.MipTypes_CH_FIELD_SENSOR_OVERRANGE_STATUS - CH_FIELD_SENSOR_ODOMETER_DATA = _mscl.MipTypes_CH_FIELD_SENSOR_ODOMETER_DATA - CH_FIELD_SENSOR_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EVENT_SOURCE - CH_FIELD_SENSOR_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_TICKS - CH_FIELD_SENSOR_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TICKS - CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP - CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_LLH_POSITION - CH_FIELD_GNSS_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_POSITION - CH_FIELD_GNSS_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_NED_VELOCITY - CH_FIELD_GNSS_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_VELOCITY - CH_FIELD_GNSS_DOP = _mscl.MipTypes_CH_FIELD_GNSS_DOP - CH_FIELD_GNSS_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_UTC_TIME - CH_FIELD_GNSS_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_GPS_TIME - CH_FIELD_GNSS_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO - CH_FIELD_GNSS_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_FIX_INFO - CH_FIELD_GNSS_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_HARDWARE_STATUS - CH_FIELD_GNSS_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_INFO - CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO_2 - CH_FIELD_GNSS_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_LEAP_SECONDS - CH_FIELD_GNSS_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_INFO - CH_FIELD_GNSS_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_CORRECTION - CH_FIELD_GNSS_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_RF_ERROR_DETECTION - CH_FIELD_GNSS_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_SATELLITE_STATUS - CH_FIELD_GNSS_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_RAW_OBSERVATION - CH_FIELD_GNSS_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_STATION_INFO - CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_EPHEMERIS - CH_FIELD_GNSS_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GLONASS_EPHEMERIS - CH_FIELD_GNSS_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_EPHEMERIS - CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_TICKS - CH_FIELD_GNSS_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TICKS - CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS - CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL - CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE - CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE - CH_FIELD_ESTFILTER_FILTER_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_FILTER_STATUS - CH_FIELD_ESTFILTER_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT - CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR - CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE - CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR - CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_MAG_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS - CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT - CH_FIELD_ESTFILTER_COMPENSATED_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_COMPENSATED_ACCEL - CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL - CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT - CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX - CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS_UNCERT - CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS - CH_FIELD_ESTFILTER_ECEF_VEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL - CH_FIELD_ESTFILTER_NED_RELATIVE_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_NED_RELATIVE_POS - CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS - CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS - CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY = _mscl.MipTypes_CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT - CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT - CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE - CH_FIELD_ESTFILTER_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_TICKS - CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS - CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_DISP_DISPLACEMENT_RAW = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_RAW - CH_FIELD_DISP_DISPLACEMENT_MM = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_MM - CH_FIELD_DISP_DISPLACEMENT_TS = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_TS - CH_FIELD_GNSS_1_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_LLH_POSITION - CH_FIELD_GNSS_1_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_POSITION - CH_FIELD_GNSS_1_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_NED_VELOCITY - CH_FIELD_GNSS_1_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_VELOCITY - CH_FIELD_GNSS_1_DOP = _mscl.MipTypes_CH_FIELD_GNSS_1_DOP - CH_FIELD_GNSS_1_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_UTC_TIME - CH_FIELD_GNSS_1_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_TIME - CH_FIELD_GNSS_1_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO - CH_FIELD_GNSS_1_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_FIX_INFO - CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_1_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_HARDWARE_STATUS - CH_FIELD_GNSS_1_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_INFO - CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_1_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO_2 - CH_FIELD_GNSS_1_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_LEAP_SECONDS - CH_FIELD_GNSS_1_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_INFO - CH_FIELD_GNSS_1_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_CORRECTION - CH_FIELD_GNSS_1_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_RF_ERROR_DETECTION - CH_FIELD_GNSS_1_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_SATELLITE_STATUS - CH_FIELD_GNSS_1_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_1_RAW_OBSERVATION - CH_FIELD_GNSS_1_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_STATION_INFO - CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_1_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_EPHEMERIS - CH_FIELD_GNSS_1_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GLONASS_EPHEMERIS - CH_FIELD_GNSS_1_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_EPHEMERIS - CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_1_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_TICKS - CH_FIELD_GNSS_1_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TICKS - CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_2_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_LLH_POSITION - CH_FIELD_GNSS_2_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_POSITION - CH_FIELD_GNSS_2_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_NED_VELOCITY - CH_FIELD_GNSS_2_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_VELOCITY - CH_FIELD_GNSS_2_DOP = _mscl.MipTypes_CH_FIELD_GNSS_2_DOP - CH_FIELD_GNSS_2_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_UTC_TIME - CH_FIELD_GNSS_2_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_TIME - CH_FIELD_GNSS_2_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO - CH_FIELD_GNSS_2_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_FIX_INFO - CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_2_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_HARDWARE_STATUS - CH_FIELD_GNSS_2_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_INFO - CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_2_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO_2 - CH_FIELD_GNSS_2_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_LEAP_SECONDS - CH_FIELD_GNSS_2_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_INFO - CH_FIELD_GNSS_2_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_CORRECTION - CH_FIELD_GNSS_2_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_RF_ERROR_DETECTION - CH_FIELD_GNSS_2_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_SATELLITE_STATUS - CH_FIELD_GNSS_2_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_2_RAW_OBSERVATION - CH_FIELD_GNSS_2_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_STATION_INFO - CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_2_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_EPHEMERIS - CH_FIELD_GNSS_2_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GLONASS_EPHEMERIS - CH_FIELD_GNSS_2_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_EPHEMERIS - CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_2_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_TICKS - CH_FIELD_GNSS_2_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TICKS - CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_3_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_LLH_POSITION - CH_FIELD_GNSS_3_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_POSITION - CH_FIELD_GNSS_3_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_NED_VELOCITY - CH_FIELD_GNSS_3_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_VELOCITY - CH_FIELD_GNSS_3_DOP = _mscl.MipTypes_CH_FIELD_GNSS_3_DOP - CH_FIELD_GNSS_3_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_UTC_TIME - CH_FIELD_GNSS_3_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_TIME - CH_FIELD_GNSS_3_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO - CH_FIELD_GNSS_3_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_FIX_INFO - CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_3_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_HARDWARE_STATUS - CH_FIELD_GNSS_3_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_INFO - CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_3_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO_2 - CH_FIELD_GNSS_3_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_LEAP_SECONDS - CH_FIELD_GNSS_3_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_INFO - CH_FIELD_GNSS_3_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_CORRECTION - CH_FIELD_GNSS_3_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_RF_ERROR_DETECTION - CH_FIELD_GNSS_3_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_SATELLITE_STATUS - CH_FIELD_GNSS_3_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_3_RAW_OBSERVATION - CH_FIELD_GNSS_3_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_STATION_INFO - CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_3_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_EPHEMERIS - CH_FIELD_GNSS_3_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GLONASS_EPHEMERIS - CH_FIELD_GNSS_3_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_EPHEMERIS - CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_3_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_TICKS - CH_FIELD_GNSS_3_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TICKS - CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_4_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_LLH_POSITION - CH_FIELD_GNSS_4_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_POSITION - CH_FIELD_GNSS_4_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_NED_VELOCITY - CH_FIELD_GNSS_4_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_VELOCITY - CH_FIELD_GNSS_4_DOP = _mscl.MipTypes_CH_FIELD_GNSS_4_DOP - CH_FIELD_GNSS_4_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_UTC_TIME - CH_FIELD_GNSS_4_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_TIME - CH_FIELD_GNSS_4_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO - CH_FIELD_GNSS_4_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_FIX_INFO - CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_4_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_HARDWARE_STATUS - CH_FIELD_GNSS_4_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_INFO - CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_4_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO_2 - CH_FIELD_GNSS_4_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_LEAP_SECONDS - CH_FIELD_GNSS_4_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_INFO - CH_FIELD_GNSS_4_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_CORRECTION - CH_FIELD_GNSS_4_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_RF_ERROR_DETECTION - CH_FIELD_GNSS_4_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_SATELLITE_STATUS - CH_FIELD_GNSS_4_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_4_RAW_OBSERVATION - CH_FIELD_GNSS_4_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_STATION_INFO - CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_4_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_EPHEMERIS - CH_FIELD_GNSS_4_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GLONASS_EPHEMERIS - CH_FIELD_GNSS_4_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_EPHEMERIS - CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_4_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_TICKS - CH_FIELD_GNSS_4_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TICKS - CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_5_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_LLH_POSITION - CH_FIELD_GNSS_5_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_POSITION - CH_FIELD_GNSS_5_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_NED_VELOCITY - CH_FIELD_GNSS_5_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_VELOCITY - CH_FIELD_GNSS_5_DOP = _mscl.MipTypes_CH_FIELD_GNSS_5_DOP - CH_FIELD_GNSS_5_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_UTC_TIME - CH_FIELD_GNSS_5_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_TIME - CH_FIELD_GNSS_5_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO - CH_FIELD_GNSS_5_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_FIX_INFO - CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_5_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_HARDWARE_STATUS - CH_FIELD_GNSS_5_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_INFO - CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_5_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO_2 - CH_FIELD_GNSS_5_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_LEAP_SECONDS - CH_FIELD_GNSS_5_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_INFO - CH_FIELD_GNSS_5_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_CORRECTION - CH_FIELD_GNSS_5_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_RF_ERROR_DETECTION - CH_FIELD_GNSS_5_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_SATELLITE_STATUS - CH_FIELD_GNSS_5_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_5_RAW_OBSERVATION - CH_FIELD_GNSS_5_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_STATION_INFO - CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_5_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_EPHEMERIS - CH_FIELD_GNSS_5_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GLONASS_EPHEMERIS - CH_FIELD_GNSS_5_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_EPHEMERIS - CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_5_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_TICKS - CH_FIELD_GNSS_5_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TICKS - CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_SYSTEM_BUILT_IN_TEST = _mscl.MipTypes_CH_FIELD_SYSTEM_BUILT_IN_TEST - CH_FIELD_SYSTEM_TIME_SYNC_STATUS = _mscl.MipTypes_CH_FIELD_SYSTEM_TIME_SYNC_STATUS - CH_FIELD_SYSTEM_GPIO_STATE = _mscl.MipTypes_CH_FIELD_SYSTEM_GPIO_STATE - CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE - CH_FIELD_SYSTEM_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_TICKS - CH_FIELD_SYSTEM_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TICKS - CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME - MIN_SHARED_FIELD_DESCRIPTOR = _mscl.MipTypes_MIN_SHARED_FIELD_DESCRIPTOR - CH_UNKNOWN = _mscl.MipTypes_CH_UNKNOWN - CH_X = _mscl.MipTypes_CH_X - CH_Y = _mscl.MipTypes_CH_Y - CH_Z = _mscl.MipTypes_CH_Z - CH_MATRIX = _mscl.MipTypes_CH_MATRIX - CH_QUATERNION = _mscl.MipTypes_CH_QUATERNION - CH_ROLL = _mscl.MipTypes_CH_ROLL - CH_PITCH = _mscl.MipTypes_CH_PITCH - CH_YAW = _mscl.MipTypes_CH_YAW - CH_TICK = _mscl.MipTypes_CH_TICK - CH_TIMESTAMP = _mscl.MipTypes_CH_TIMESTAMP - CH_STATUS = _mscl.MipTypes_CH_STATUS - CH_TIME_OF_WEEK = _mscl.MipTypes_CH_TIME_OF_WEEK - CH_WEEK_NUMBER = _mscl.MipTypes_CH_WEEK_NUMBER - CH_LATITUDE = _mscl.MipTypes_CH_LATITUDE - CH_LONGITUDE = _mscl.MipTypes_CH_LONGITUDE - CH_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CH_HEIGHT_ABOVE_ELLIPSOID - CH_HEIGHT_ABOVE_MSL = _mscl.MipTypes_CH_HEIGHT_ABOVE_MSL - CH_HORIZONTAL_ACCURACY = _mscl.MipTypes_CH_HORIZONTAL_ACCURACY - CH_VERTICAL_ACCURACY = _mscl.MipTypes_CH_VERTICAL_ACCURACY - CH_POSITION_ACCURACY = _mscl.MipTypes_CH_POSITION_ACCURACY - CH_NORTH = _mscl.MipTypes_CH_NORTH - CH_EAST = _mscl.MipTypes_CH_EAST - CH_DOWN = _mscl.MipTypes_CH_DOWN - CH_SPEED = _mscl.MipTypes_CH_SPEED - CH_GROUND_SPEED = _mscl.MipTypes_CH_GROUND_SPEED - CH_HEADING = _mscl.MipTypes_CH_HEADING - CH_SPEED_ACCURACY = _mscl.MipTypes_CH_SPEED_ACCURACY - CH_HEADING_ACCURACY = _mscl.MipTypes_CH_HEADING_ACCURACY - CH_VELOCITY_ACCURACY = _mscl.MipTypes_CH_VELOCITY_ACCURACY - CH_GEOMETRIC_DOP = _mscl.MipTypes_CH_GEOMETRIC_DOP - CH_POSITION_DOP = _mscl.MipTypes_CH_POSITION_DOP - CH_HORIZONTAL_DOP = _mscl.MipTypes_CH_HORIZONTAL_DOP - CH_VERTICAL_DOP = _mscl.MipTypes_CH_VERTICAL_DOP - CH_TIME_DOP = _mscl.MipTypes_CH_TIME_DOP - CH_NORTHING_DOP = _mscl.MipTypes_CH_NORTHING_DOP - CH_EASTING_DOP = _mscl.MipTypes_CH_EASTING_DOP - CH_FLAGS = _mscl.MipTypes_CH_FLAGS - CH_BIAS = _mscl.MipTypes_CH_BIAS - CH_DRIFT = _mscl.MipTypes_CH_DRIFT - CH_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_ACCURACY_ESTIMATE - CH_FIX_TYPE = _mscl.MipTypes_CH_FIX_TYPE - CH_SV_COUNT = _mscl.MipTypes_CH_SV_COUNT - CH_CHANNEL = _mscl.MipTypes_CH_CHANNEL - CH_ID = _mscl.MipTypes_CH_ID - CH_CARRIER_TO_NOISE_RATIO = _mscl.MipTypes_CH_CARRIER_TO_NOISE_RATIO - CH_AZIMUTH = _mscl.MipTypes_CH_AZIMUTH - CH_ELEVATION = _mscl.MipTypes_CH_ELEVATION - CH_SENSOR_STATE = _mscl.MipTypes_CH_SENSOR_STATE - CH_ANTENNA_STATE = _mscl.MipTypes_CH_ANTENNA_STATE - CH_ANTENNA_POWER = _mscl.MipTypes_CH_ANTENNA_POWER - CH_FILTER_STATE = _mscl.MipTypes_CH_FILTER_STATE - CH_DYNAMICS_MODE = _mscl.MipTypes_CH_DYNAMICS_MODE - CH_MAGNITUDE = _mscl.MipTypes_CH_MAGNITUDE - CH_HEADING_UNCERTAINTY = _mscl.MipTypes_CH_HEADING_UNCERTAINTY - CH_SOURCE = _mscl.MipTypes_CH_SOURCE - CH_INCLINATION = _mscl.MipTypes_CH_INCLINATION - CH_DECLINATION = _mscl.MipTypes_CH_DECLINATION - CH_PRESSURE = _mscl.MipTypes_CH_PRESSURE - CH_AGE = _mscl.MipTypes_CH_AGE - CH_NUM_CHANNELS = _mscl.MipTypes_CH_NUM_CHANNELS - CH_CORRECTION = _mscl.MipTypes_CH_CORRECTION - CH_RATE_CORRECTION = _mscl.MipTypes_CH_RATE_CORRECTION - CH_GEOMETRIC_ALTITUDE = _mscl.MipTypes_CH_GEOMETRIC_ALTITUDE - CH_GEOPOTENTIAL_ALTITUDE = _mscl.MipTypes_CH_GEOPOTENTIAL_ALTITUDE - CH_TEMPERATURE = _mscl.MipTypes_CH_TEMPERATURE - CH_DENSITY = _mscl.MipTypes_CH_DENSITY - CH_ALTITUDE = _mscl.MipTypes_CH_ALTITUDE - CH_DISPLACEMENT = _mscl.MipTypes_CH_DISPLACEMENT - CH_MAX_TEMP = _mscl.MipTypes_CH_MAX_TEMP - CH_MIN_TEMP = _mscl.MipTypes_CH_MIN_TEMP - CH_MEAN_TEMP = _mscl.MipTypes_CH_MEAN_TEMP - CH_BIAS_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_BIAS_ACCURACY_ESTIMATE - CH_DRIFT_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_DRIFT_ACCURACY_ESTIMATE - CH_SECONDS = _mscl.MipTypes_CH_SECONDS - CH_NUM_PACKETS = _mscl.MipTypes_CH_NUM_PACKETS - CH_GPS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GPS_CORRECTION_LATENCY - CH_GLONASS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GLONASS_CORRECTION_LATENCY - CH_GALILEO_CORRECTION_LATENCY = _mscl.MipTypes_CH_GALILEO_CORRECTION_LATENCY - CH_BEIDOU_CORRECTION_LATENCY = _mscl.MipTypes_CH_BEIDOU_CORRECTION_LATENCY - CH_HEIGHT = _mscl.MipTypes_CH_HEIGHT - CH_HEALTH = _mscl.MipTypes_CH_HEALTH - CH_INDEX = _mscl.MipTypes_CH_INDEX - CH_COUNT = _mscl.MipTypes_CH_COUNT - CH_SIGNAL_STRENGTH = _mscl.MipTypes_CH_SIGNAL_STRENGTH - CH_SIGNAL_QUALITY = _mscl.MipTypes_CH_SIGNAL_QUALITY - CH_RANGE = _mscl.MipTypes_CH_RANGE - CH_RANGE_UNC = _mscl.MipTypes_CH_RANGE_UNC - CH_ALPHA = _mscl.MipTypes_CH_ALPHA - CH_BETA = _mscl.MipTypes_CH_BETA - CH_DISTURBANCE_FLAGS = _mscl.MipTypes_CH_DISTURBANCE_FLAGS - CH_CARRIER_PHASE = _mscl.MipTypes_CH_CARRIER_PHASE - CH_CARRIER_PHASE_UNC = _mscl.MipTypes_CH_CARRIER_PHASE_UNC - CH_DOPPLER = _mscl.MipTypes_CH_DOPPLER - CH_DOPPLER_UNC = _mscl.MipTypes_CH_DOPPLER_UNC - CH_DELTA_TIME = _mscl.MipTypes_CH_DELTA_TIME - CH_DELTA_TICK = _mscl.MipTypes_CH_DELTA_TICK - CH_ERROR = _mscl.MipTypes_CH_ERROR - CH_ERROR_UNC = _mscl.MipTypes_CH_ERROR_UNC - CH_W = _mscl.MipTypes_CH_W - CH_M0 = _mscl.MipTypes_CH_M0 - CH_M1 = _mscl.MipTypes_CH_M1 - CH_M2 = _mscl.MipTypes_CH_M2 - CH_M3 = _mscl.MipTypes_CH_M3 - CH_M4 = _mscl.MipTypes_CH_M4 - CH_M5 = _mscl.MipTypes_CH_M5 - CH_M6 = _mscl.MipTypes_CH_M6 - CH_M7 = _mscl.MipTypes_CH_M7 - CH_M8 = _mscl.MipTypes_CH_M8 - CH_NANOSECONDS = _mscl.MipTypes_CH_NANOSECONDS - CH_VALID_FLAGS = _mscl.MipTypes_CH_VALID_FLAGS - CH_PPS_VALID = _mscl.MipTypes_CH_PPS_VALID - CH_LAST_PPS = _mscl.MipTypes_CH_LAST_PPS - CH_UDREI = _mscl.MipTypes_CH_UDREI - CH_PSEUDORANGE_CORRECTION = _mscl.MipTypes_CH_PSEUDORANGE_CORRECTION - CH_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_IONOSPHERIC_CORRECTION - CH_JAMMING_STATE = _mscl.MipTypes_CH_JAMMING_STATE - CH_SPOOFING_STATE = _mscl.MipTypes_CH_SPOOFING_STATE - CH_SYSTEM_ID = _mscl.MipTypes_CH_SYSTEM_ID - CH_SATELLITE_ID = _mscl.MipTypes_CH_SATELLITE_ID - CH_BIT_SYSTEM_GENERAL = _mscl.MipTypes_CH_BIT_SYSTEM_GENERAL - CH_BIT_SYSTEM_PROCESS = _mscl.MipTypes_CH_BIT_SYSTEM_PROCESS - CH_BIT_IMU_GENERAL = _mscl.MipTypes_CH_BIT_IMU_GENERAL - CH_BIT_IMU_SENSORS = _mscl.MipTypes_CH_BIT_IMU_SENSORS - CH_BIT_IMU_FACTORY_BITS = _mscl.MipTypes_CH_BIT_IMU_FACTORY_BITS - CH_BIT_FILTER_GENERAL = _mscl.MipTypes_CH_BIT_FILTER_GENERAL - CH_BIT_GNSS_GENERAL = _mscl.MipTypes_CH_BIT_GNSS_GENERAL - CH_BIT_GNSS_RECEIVERS = _mscl.MipTypes_CH_BIT_GNSS_RECEIVERS - - @staticmethod - def channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - - @staticmethod - def getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - - @staticmethod - def getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - - @staticmethod - def getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - - @staticmethod - def getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - - @staticmethod - def getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - - @staticmethod - def isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - - @staticmethod - def isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - - @staticmethod - def channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - - @staticmethod - def channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - - @staticmethod - def channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - - def __init__(self): - _mscl.MipTypes_swiginit(self, _mscl.new_MipTypes()) - __swig_destroy__ = _mscl.delete_MipTypes - -# Register MipTypes in _mscl: -_mscl.MipTypes_swigregister(MipTypes) - -def MipTypes_channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - -def MipTypes_getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - -def MipTypes_getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - -def MipTypes_getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - -def MipTypes_getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - -def MipTypes_getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - -def MipTypes_isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - -def MipTypes_isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - -def MipTypes_channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - -def MipTypes_channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - -def MipTypes_channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - -class MipChannelIdentifier(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - GNSS_RECEIVER_ID = _mscl.MipChannelIdentifier_GNSS_RECEIVER_ID - GNSS_BASE_STATION_ID = _mscl.MipChannelIdentifier_GNSS_BASE_STATION_ID - GNSS_CONSTELLATION = _mscl.MipChannelIdentifier_GNSS_CONSTELLATION - GNSS_SATELLITE_ID = _mscl.MipChannelIdentifier_GNSS_SATELLITE_ID - GNSS_SIGNAL_ID = _mscl.MipChannelIdentifier_GNSS_SIGNAL_ID - AIDING_MEASUREMENT_TYPE = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_TYPE - GNSS_RF_BAND = _mscl.MipChannelIdentifier_GNSS_RF_BAND - AIDING_MEASUREMENT_FRAME_ID = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_FRAME_ID - GNSS = _mscl.MipChannelIdentifier_GNSS - DUAL_ANTENNA = _mscl.MipChannelIdentifier_DUAL_ANTENNA - HEADING = _mscl.MipChannelIdentifier_HEADING - PRESSURE = _mscl.MipChannelIdentifier_PRESSURE - MAGNETOMETER = _mscl.MipChannelIdentifier_MAGNETOMETER - SPEED = _mscl.MipChannelIdentifier_SPEED - AIDING_POS_ECEF = _mscl.MipChannelIdentifier_AIDING_POS_ECEF - AIDING_POS_LLH = _mscl.MipChannelIdentifier_AIDING_POS_LLH - AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipChannelIdentifier_AIDING_HEIGHT_ABOVE_ELLIPSOID - AIDING_VEL_ECEF = _mscl.MipChannelIdentifier_AIDING_VEL_ECEF - AIDING_VEL_NED = _mscl.MipChannelIdentifier_AIDING_VEL_NED - AIDING_VEL_BODY_FRAME = _mscl.MipChannelIdentifier_AIDING_VEL_BODY_FRAME - AIDING_HEADING_TRUE = _mscl.MipChannelIdentifier_AIDING_HEADING_TRUE - AIDING_MAGNETIC_FIELD = _mscl.MipChannelIdentifier_AIDING_MAGNETIC_FIELD - AIDING_PRESSURE = _mscl.MipChannelIdentifier_AIDING_PRESSURE - UNKNOWN_CONSTELLATION = _mscl.MipChannelIdentifier_UNKNOWN_CONSTELLATION - GPS = _mscl.MipChannelIdentifier_GPS - GLONASS = _mscl.MipChannelIdentifier_GLONASS - GALILEO = _mscl.MipChannelIdentifier_GALILEO - BEIDOU = _mscl.MipChannelIdentifier_BEIDOU - UNKNOWN_SIGNAL = _mscl.MipChannelIdentifier_UNKNOWN_SIGNAL - GPS_L1CA = _mscl.MipChannelIdentifier_GPS_L1CA - GPS_L1P = _mscl.MipChannelIdentifier_GPS_L1P - GPS_L1Z = _mscl.MipChannelIdentifier_GPS_L1Z - GPS_L2CA = _mscl.MipChannelIdentifier_GPS_L2CA - GPS_L2P = _mscl.MipChannelIdentifier_GPS_L2P - GPS_L2Z = _mscl.MipChannelIdentifier_GPS_L2Z - GPS_L2CL = _mscl.MipChannelIdentifier_GPS_L2CL - GPS_L2CM = _mscl.MipChannelIdentifier_GPS_L2CM - GPS_L2CML = _mscl.MipChannelIdentifier_GPS_L2CML - GPS_L5I = _mscl.MipChannelIdentifier_GPS_L5I - GPS_L5Q = _mscl.MipChannelIdentifier_GPS_L5Q - GPS_L5IQ = _mscl.MipChannelIdentifier_GPS_L5IQ - GPS_L1CD = _mscl.MipChannelIdentifier_GPS_L1CD - GPS_L1CP = _mscl.MipChannelIdentifier_GPS_L1CP - GPS_L1CDP = _mscl.MipChannelIdentifier_GPS_L1CDP - GLONASS_G1CA = _mscl.MipChannelIdentifier_GLONASS_G1CA - GLONASS_G1P = _mscl.MipChannelIdentifier_GLONASS_G1P - GLONASS_G2C = _mscl.MipChannelIdentifier_GLONASS_G2C - GLONASS_G2P = _mscl.MipChannelIdentifier_GLONASS_G2P - GALILEO_E1C = _mscl.MipChannelIdentifier_GALILEO_E1C - GALILEO_E1A = _mscl.MipChannelIdentifier_GALILEO_E1A - GALILEO_E1B = _mscl.MipChannelIdentifier_GALILEO_E1B - GALILEO_E1BC = _mscl.MipChannelIdentifier_GALILEO_E1BC - GALILEO_E1ABC = _mscl.MipChannelIdentifier_GALILEO_E1ABC - GALILEO_E6C = _mscl.MipChannelIdentifier_GALILEO_E6C - GALILEO_E6A = _mscl.MipChannelIdentifier_GALILEO_E6A - GALILEO_E6B = _mscl.MipChannelIdentifier_GALILEO_E6B - GALILEO_E6BC = _mscl.MipChannelIdentifier_GALILEO_E6BC - GALILEO_E6ABC = _mscl.MipChannelIdentifier_GALILEO_E6ABC - GALILEO_E5BI = _mscl.MipChannelIdentifier_GALILEO_E5BI - GALILEO_E5BQ = _mscl.MipChannelIdentifier_GALILEO_E5BQ - GALILEO_E5BIQ = _mscl.MipChannelIdentifier_GALILEO_E5BIQ - GALILEO_E5ABI = _mscl.MipChannelIdentifier_GALILEO_E5ABI - GALILEO_E5ABQ = _mscl.MipChannelIdentifier_GALILEO_E5ABQ - GALILEO_E5ABIQ = _mscl.MipChannelIdentifier_GALILEO_E5ABIQ - GALILEO_E5AI = _mscl.MipChannelIdentifier_GALILEO_E5AI - GALILEO_E5AQ = _mscl.MipChannelIdentifier_GALILEO_E5AQ - GALILEO_E5AIQ = _mscl.MipChannelIdentifier_GALILEO_E5AIQ - SBAS_L1CA = _mscl.MipChannelIdentifier_SBAS_L1CA - SBAS_L5I = _mscl.MipChannelIdentifier_SBAS_L5I - SBAS_L5Q = _mscl.MipChannelIdentifier_SBAS_L5Q - SBAS_L5IQ = _mscl.MipChannelIdentifier_SBAS_L5IQ - QZSS_L1CA = _mscl.MipChannelIdentifier_QZSS_L1CA - QZSS_LEXS = _mscl.MipChannelIdentifier_QZSS_LEXS - QZSS_LEXL = _mscl.MipChannelIdentifier_QZSS_LEXL - QZSS_LEXSL = _mscl.MipChannelIdentifier_QZSS_LEXSL - QZSS_L2CM = _mscl.MipChannelIdentifier_QZSS_L2CM - QZSS_L2CL = _mscl.MipChannelIdentifier_QZSS_L2CL - QZSS_L2CML = _mscl.MipChannelIdentifier_QZSS_L2CML - QZSS_L5I = _mscl.MipChannelIdentifier_QZSS_L5I - QZSS_L5Q = _mscl.MipChannelIdentifier_QZSS_L5Q - QZSS_L5IQ = _mscl.MipChannelIdentifier_QZSS_L5IQ - QZSS_L1CD = _mscl.MipChannelIdentifier_QZSS_L1CD - QZSS_L1CP = _mscl.MipChannelIdentifier_QZSS_L1CP - QZSS_L1CDP = _mscl.MipChannelIdentifier_QZSS_L1CDP - BEIDOU_B1I = _mscl.MipChannelIdentifier_BEIDOU_B1I - BEIDOU_B1Q = _mscl.MipChannelIdentifier_BEIDOU_B1Q - BEIDOU_B1IQ = _mscl.MipChannelIdentifier_BEIDOU_B1IQ - BEIDOU_B3I = _mscl.MipChannelIdentifier_BEIDOU_B3I - BEIDOU_B3Q = _mscl.MipChannelIdentifier_BEIDOU_B3Q - BEIDOU_B3IQ = _mscl.MipChannelIdentifier_BEIDOU_B3IQ - BEIDOU_B2I = _mscl.MipChannelIdentifier_BEIDOU_B2I - BEIDOU_B2Q = _mscl.MipChannelIdentifier_BEIDOU_B2Q - BEIDOU_B2IQ = _mscl.MipChannelIdentifier_BEIDOU_B2IQ - UNKNOWN_RF_BAND = _mscl.MipChannelIdentifier_UNKNOWN_RF_BAND - RF_BAND_L1 = _mscl.MipChannelIdentifier_RF_BAND_L1 - RF_BAND_L2 = _mscl.MipChannelIdentifier_RF_BAND_L2 - RF_BAND_L5 = _mscl.MipChannelIdentifier_RF_BAND_L5 - - def __init__(self, *args): - _mscl.MipChannelIdentifier_swiginit(self, _mscl.new_MipChannelIdentifier(*args)) - __swig_destroy__ = _mscl.delete_MipChannelIdentifier - - def identifierType(self): - return _mscl.MipChannelIdentifier_identifierType(self) - - def id(self): - return _mscl.MipChannelIdentifier_id(self) - - def hasSpecifier(self): - return _mscl.MipChannelIdentifier_hasSpecifier(self) - - def specifier(self): - return _mscl.MipChannelIdentifier_specifier(self) - - def name(self, standardizedFormat=True): - return _mscl.MipChannelIdentifier_name(self, standardizedFormat) - -# Register MipChannelIdentifier in _mscl: -_mscl.MipChannelIdentifier_swigregister(MipChannelIdentifier) - -class MipCommandBytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - id = property(_mscl.MipCommandBytes_id_get, _mscl.MipCommandBytes_id_set) - commands = property(_mscl.MipCommandBytes_commands_get, _mscl.MipCommandBytes_commands_set) - buildCmdFailed = property(_mscl.MipCommandBytes_buildCmdFailed_get, _mscl.MipCommandBytes_buildCmdFailed_set) - sendCmdFailed = property(_mscl.MipCommandBytes_sendCmdFailed_get, _mscl.MipCommandBytes_sendCmdFailed_set) - - def __init__(self, *args): - _mscl.MipCommandBytes_swiginit(self, _mscl.new_MipCommandBytes(*args)) - - def add(self, cmd): - return _mscl.MipCommandBytes_add(self, cmd) - - def valid(self): - return _mscl.MipCommandBytes_valid(self) - __swig_destroy__ = _mscl.delete_MipCommandBytes - -# Register MipCommandBytes in _mscl: -_mscl.MipCommandBytes_swigregister(MipCommandBytes) - -class AidingMeasurementInput(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - ACK_NACK = _mscl.AidingMeasurementInput_ACK_NACK - ECHO_INPUT = _mscl.AidingMeasurementInput_ECHO_INPUT - - def toMipFieldValues(self): - return _mscl.AidingMeasurementInput_toMipFieldValues(self) - - def timestamp(self, *args): - return _mscl.AidingMeasurementInput_timestamp(self, *args) - - def timebase(self): - return _mscl.AidingMeasurementInput_timebase(self) - - def frameId(self, *args): - return _mscl.AidingMeasurementInput_frameId(self, *args) - - def validFlags(self, *args): - return _mscl.AidingMeasurementInput_validFlags(self, *args) - -# Register AidingMeasurementInput in _mscl: -_mscl.AidingMeasurementInput_swigregister(AidingMeasurementInput) - -class AidingMeasurementPosition(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementPosition_X - LATITUDE = _mscl.AidingMeasurementPosition_LATITUDE - Y = _mscl.AidingMeasurementPosition_Y - LONGITUDE = _mscl.AidingMeasurementPosition_LONGITUDE - Z = _mscl.AidingMeasurementPosition_Z - HEIGHT = _mscl.AidingMeasurementPosition_HEIGHT - ALTITUDE = _mscl.AidingMeasurementPosition_ALTITUDE - - def __init__(self, *args): - _mscl.AidingMeasurementPosition_swiginit(self, _mscl.new_AidingMeasurementPosition(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPosition - - def position(self, *args): - return _mscl.AidingMeasurementPosition_position(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPosition_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementPosition_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPosition_valid(self, *args) - -# Register AidingMeasurementPosition in _mscl: -_mscl.AidingMeasurementPosition_swigregister(AidingMeasurementPosition) - -class AidingMeasurementHeight(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeight_swiginit(self, _mscl.new_AidingMeasurementHeight(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeight - - def height(self, *args): - return _mscl.AidingMeasurementHeight_height(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeight_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeight_valid(self, *args) - -# Register AidingMeasurementHeight in _mscl: -_mscl.AidingMeasurementHeight_swigregister(AidingMeasurementHeight) - -class AidingMeasurementVelocity(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementVelocity_X - NORTH = _mscl.AidingMeasurementVelocity_NORTH - Y = _mscl.AidingMeasurementVelocity_Y - EAST = _mscl.AidingMeasurementVelocity_EAST - Z = _mscl.AidingMeasurementVelocity_Z - DOWN = _mscl.AidingMeasurementVelocity_DOWN - - def __init__(self, *args): - _mscl.AidingMeasurementVelocity_swiginit(self, _mscl.new_AidingMeasurementVelocity(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementVelocity - - def velocity(self, *args): - return _mscl.AidingMeasurementVelocity_velocity(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementVelocity_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementVelocity_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementVelocity_valid(self, *args) - -# Register AidingMeasurementVelocity in _mscl: -_mscl.AidingMeasurementVelocity_swigregister(AidingMeasurementVelocity) - -class AidingMeasurementHeading(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeading_swiginit(self, _mscl.new_AidingMeasurementHeading(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeading - - def heading(self, *args): - return _mscl.AidingMeasurementHeading_heading(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeading_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeading_valid(self, *args) - -# Register AidingMeasurementHeading in _mscl: -_mscl.AidingMeasurementHeading_swigregister(AidingMeasurementHeading) - -class AidingMeasurementMagneticField(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementMagneticField_X - Y = _mscl.AidingMeasurementMagneticField_Y - Z = _mscl.AidingMeasurementMagneticField_Z - - def __init__(self, *args): - _mscl.AidingMeasurementMagneticField_swiginit(self, _mscl.new_AidingMeasurementMagneticField(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementMagneticField - - def magneticField(self, *args): - return _mscl.AidingMeasurementMagneticField_magneticField(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementMagneticField_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementMagneticField_valid(self, *args) - -# Register AidingMeasurementMagneticField in _mscl: -_mscl.AidingMeasurementMagneticField_swigregister(AidingMeasurementMagneticField) - -class AidingMeasurementPressure(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementPressure_swiginit(self, _mscl.new_AidingMeasurementPressure(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPressure - - def pressure(self, *args): - return _mscl.AidingMeasurementPressure_pressure(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPressure_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPressure_valid(self, *args) - -# Register AidingMeasurementPressure in _mscl: -_mscl.AidingMeasurementPressure_swigregister(AidingMeasurementPressure) - -class GnssReceiverInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GnssReceiverInfo_swiginit(self, _mscl.new_GnssReceiverInfo(*args)) - id = property(_mscl.GnssReceiverInfo_id_get, _mscl.GnssReceiverInfo_id_set) - targetDataClass = property(_mscl.GnssReceiverInfo_targetDataClass_get, _mscl.GnssReceiverInfo_targetDataClass_set) - description = property(_mscl.GnssReceiverInfo_description_get, _mscl.GnssReceiverInfo_description_set) - module = property(_mscl.GnssReceiverInfo_module_get, _mscl.GnssReceiverInfo_module_set) - fwId = property(_mscl.GnssReceiverInfo_fwId_get, _mscl.GnssReceiverInfo_fwId_set) - fwVersion = property(_mscl.GnssReceiverInfo_fwVersion_get, _mscl.GnssReceiverInfo_fwVersion_set) - __swig_destroy__ = _mscl.delete_GnssReceiverInfo - -# Register GnssReceiverInfo in _mscl: -_mscl.GnssReceiverInfo_swigregister(GnssReceiverInfo) -GnssReceiverInfo.INFO_NOT_FOUND = _mscl.cvar.GnssReceiverInfo_INFO_NOT_FOUND - -class DeviceCommPort(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SPECIAL = _mscl.DeviceCommPort_SPECIAL - UART = _mscl.DeviceCommPort_UART - USB = _mscl.DeviceCommPort_USB - NONE = _mscl.DeviceCommPort_NONE - MIP_COMMANDS = _mscl.DeviceCommPort_MIP_COMMANDS - MIP_DATA = _mscl.DeviceCommPort_MIP_DATA - NMEA = _mscl.DeviceCommPort_NMEA - RTCM = _mscl.DeviceCommPort_RTCM - SPARTN = _mscl.DeviceCommPort_SPARTN - ALL = _mscl.DeviceCommPort_ALL - - def __init__(self, *args): - _mscl.DeviceCommPort_swiginit(self, _mscl.new_DeviceCommPort(*args)) - - def interfaceId(self): - return _mscl.DeviceCommPort_interfaceId(self) - type = property(_mscl.DeviceCommPort_type_get, _mscl.DeviceCommPort_type_set) - id = property(_mscl.DeviceCommPort_id_get, _mscl.DeviceCommPort_id_set) - inputProtocols = property(_mscl.DeviceCommPort_inputProtocols_get, _mscl.DeviceCommPort_inputProtocols_set) - outputProtocols = property(_mscl.DeviceCommPort_outputProtocols_get, _mscl.DeviceCommPort_outputProtocols_set) - __swig_destroy__ = _mscl.delete_DeviceCommPort - -# Register DeviceCommPort in _mscl: -_mscl.DeviceCommPort_swigregister(DeviceCommPort) - -class EventTypeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTypeInfo_swiginit(self, _mscl.new_EventTypeInfo(*args)) - type = property(_mscl.EventTypeInfo_type_get, _mscl.EventTypeInfo_type_set) - maxInstances = property(_mscl.EventTypeInfo_maxInstances_get, _mscl.EventTypeInfo_maxInstances_set) - __swig_destroy__ = _mscl.delete_EventTypeInfo - -# Register EventTypeInfo in _mscl: -_mscl.EventTypeInfo_swigregister(EventTypeInfo) - -class EventSupportInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - TRIGGERS = _mscl.EventSupportInfo_TRIGGERS - ACTIONS = _mscl.EventSupportInfo_ACTIONS - query = property(_mscl.EventSupportInfo_query_get, _mscl.EventSupportInfo_query_set) - maxInstances = property(_mscl.EventSupportInfo_maxInstances_get, _mscl.EventSupportInfo_maxInstances_set) - entries = property(_mscl.EventSupportInfo_entries_get, _mscl.EventSupportInfo_entries_set) - - def __init__(self): - _mscl.EventSupportInfo_swiginit(self, _mscl.new_EventSupportInfo()) - __swig_destroy__ = _mscl.delete_EventSupportInfo - -# Register EventSupportInfo in _mscl: -_mscl.EventSupportInfo_swigregister(EventSupportInfo) - -class SensorRange(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ALL = _mscl.SensorRange_ALL - ACCEL_G = _mscl.SensorRange_ACCEL_G - GYRO_DPS = _mscl.SensorRange_GYRO_DPS - MAG_GAUSS = _mscl.SensorRange_MAG_GAUSS - PRESSURE_HPA = _mscl.SensorRange_PRESSURE_HPA - - def __init__(self): - _mscl.SensorRange_swiginit(self, _mscl.new_SensorRange()) - - def type(self): - return _mscl.SensorRange_type(self) - - def range(self): - return _mscl.SensorRange_range(self) - - def id(self): - return _mscl.SensorRange_id(self) - __swig_destroy__ = _mscl.delete_SensorRange - -# Register SensorRange in _mscl: -_mscl.SensorRange_swigregister(SensorRange) - -class SupportedSensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.SupportedSensorRanges_swiginit(self, _mscl.new_SupportedSensorRanges()) - - def options(self): - return _mscl.SupportedSensorRanges_options(self) - - def lookupRecommended(self, type, range): - return _mscl.SupportedSensorRanges_lookupRecommended(self, type, range) - __swig_destroy__ = _mscl.delete_SupportedSensorRanges - -# Register SupportedSensorRanges in _mscl: -_mscl.SupportedSensorRanges_swigregister(SupportedSensorRanges) - -class InertialTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - PORTABLE_VEHICLE = _mscl.InertialTypes_PORTABLE_VEHICLE - AUTOMOTIVE_VEHICLE = _mscl.InertialTypes_AUTOMOTIVE_VEHICLE - AIRBORNE_VEHICLE = _mscl.InertialTypes_AIRBORNE_VEHICLE - AIRBORNE_HIGH_G_VEHICLE = _mscl.InertialTypes_AIRBORNE_HIGH_G_VEHICLE - GPS_PORTABLE = _mscl.InertialTypes_GPS_PORTABLE - GPS_STATIONARY = _mscl.InertialTypes_GPS_STATIONARY - GPS_PEDESTRIAN = _mscl.InertialTypes_GPS_PEDESTRIAN - GPS_AUTOMOTIVE = _mscl.InertialTypes_GPS_AUTOMOTIVE - GPS_SEA = _mscl.InertialTypes_GPS_SEA - GPS_AIRBORNE_1G = _mscl.InertialTypes_GPS_AIRBORNE_1G - GPS_AIRBORNE_2G = _mscl.InertialTypes_GPS_AIRBORNE_2G - GPS_AIRBORNE_4G = _mscl.InertialTypes_GPS_AIRBORNE_4G - RESET_ALL_AXIS = _mscl.InertialTypes_RESET_ALL_AXIS - TARE_ROLL_AXIS = _mscl.InertialTypes_TARE_ROLL_AXIS - TARE_PITCH_AXIS = _mscl.InertialTypes_TARE_PITCH_AXIS - TARE_YAW_AXIS = _mscl.InertialTypes_TARE_YAW_AXIS - INTERNAL_GNSS_ALL = _mscl.InertialTypes_INTERNAL_GNSS_ALL - EXTERNAL_GNSS = _mscl.InertialTypes_EXTERNAL_GNSS - INTERNAL_GNSS1 = _mscl.InertialTypes_INTERNAL_GNSS1 - INTERNAL_GNSS2 = _mscl.InertialTypes_INTERNAL_GNSS2 - FIX_SBAS_CORRECTIONS = _mscl.InertialTypes_FIX_SBAS_CORRECTIONS - FIX_DGNSS_CORRECTIONS = _mscl.InertialTypes_FIX_DGNSS_CORRECTIONS - FIXTYPE_3D = _mscl.InertialTypes_FIXTYPE_3D - FIXTYPE_2D = _mscl.InertialTypes_FIXTYPE_2D - FIXTYPE_TIMEONLY = _mscl.InertialTypes_FIXTYPE_TIMEONLY - FIXTYPE_NONE = _mscl.InertialTypes_FIXTYPE_NONE - FIXTYPE_INVALID = _mscl.InertialTypes_FIXTYPE_INVALID - FIXTYPE_RTK_FLOAT = _mscl.InertialTypes_FIXTYPE_RTK_FLOAT - FIXTYPE_RTK_FIXED = _mscl.InertialTypes_FIXTYPE_RTK_FIXED - FIXTYPE_DUAL_ANTENNA_NONE = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_NONE - FIXTYPE_DUAL_ANTENNA_FLOAT = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FLOAT - FIXTYPE_DUAL_ANTENNA_FIXED = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FIXED - DATA_VALID_REC_1 = _mscl.InertialTypes_DATA_VALID_REC_1 - DATA_VALID_REC_2 = _mscl.InertialTypes_DATA_VALID_REC_2 - ANTENNA_OFFSETS_VALID = _mscl.InertialTypes_ANTENNA_OFFSETS_VALID - SVFLAG_NAVIGATION = _mscl.InertialTypes_SVFLAG_NAVIGATION - SVFLAG_HEALTHY = _mscl.InertialTypes_SVFLAG_HEALTHY - DEVICE_AHRS = _mscl.InertialTypes_DEVICE_AHRS - DEVICE_GPS = _mscl.InertialTypes_DEVICE_GPS - ON_FULL_PERFORMANCE = _mscl.InertialTypes_ON_FULL_PERFORMANCE - ON_LOW_POWER = _mscl.InertialTypes_ON_LOW_POWER - SLEEP = _mscl.InertialTypes_SLEEP - OFF = _mscl.InertialTypes_OFF - STANDARD_MIP = _mscl.InertialTypes_STANDARD_MIP - WRAPPED_RAW = _mscl.InertialTypes_WRAPPED_RAW - SENSORSTATE_OFF = _mscl.InertialTypes_SENSORSTATE_OFF - SENSORSTATE_ON = _mscl.InertialTypes_SENSORSTATE_ON - SENSORSTATE_UNKNOWN = _mscl.InertialTypes_SENSORSTATE_UNKNOWN - ANTENNASTATE_INIT = _mscl.InertialTypes_ANTENNASTATE_INIT - ANTENNASTATE_SHORT = _mscl.InertialTypes_ANTENNASTATE_SHORT - ANTENNASTATE_OPEN = _mscl.InertialTypes_ANTENNASTATE_OPEN - ANTENNASTATE_GOOD = _mscl.InertialTypes_ANTENNASTATE_GOOD - ANTENNASTATE_UNKNOWN = _mscl.InertialTypes_ANTENNASTATE_UNKNOWN - ANTENNAPOWER_OFF = _mscl.InertialTypes_ANTENNAPOWER_OFF - ANTENNAPOWER_ON = _mscl.InertialTypes_ANTENNAPOWER_ON - ANTENNAPOWER_UNKNOWN = _mscl.InertialTypes_ANTENNAPOWER_UNKNOWN - FILTERSTATE_STARTUP = _mscl.InertialTypes_FILTERSTATE_STARTUP - FILTERSTATE_INIT = _mscl.InertialTypes_FILTERSTATE_INIT - FILTERSTATE_RUNNING_SLN_VALID = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_VALID - FILTERSTATE_RUNNING_SLN_ERROR = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_ERROR - FILTERSTATE_VERT_GYRO = _mscl.InertialTypes_FILTERSTATE_VERT_GYRO - FILTERSTATE_AHRS = _mscl.InertialTypes_FILTERSTATE_AHRS - FILTERSTATE_FULL_NAV = _mscl.InertialTypes_FILTERSTATE_FULL_NAV - FILTERSTATUS_IMU_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_IMU_UNAVAILABLE - FILTERSTATUS_GPS_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_GPS_UNAVAILABLE - FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC = _mscl.InertialTypes_FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC - FILTERSTATUS_POS_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_POS_COVARIANCE_HIGH_WARN - FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN - FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN - FILTERSTATUS_NAN_IN_SOLUTION = _mscl.InertialTypes_FILTERSTATUS_NAN_IN_SOLUTION - FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN - FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN - FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN - FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN - FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_CONDITION = _mscl.InertialTypes_FILTERSTATUS_CONDITION - FILTERSTATUS_ROLL_PITCH_WARNING = _mscl.InertialTypes_FILTERSTATUS_ROLL_PITCH_WARNING - FILTERSTATUS_HEADING_WARNING = _mscl.InertialTypes_FILTERSTATUS_HEADING_WARNING - FILTERSTATUS_POSITION_WARNING = _mscl.InertialTypes_FILTERSTATUS_POSITION_WARNING - FILTERSTATUS_VELOCITY_WARNING = _mscl.InertialTypes_FILTERSTATUS_VELOCITY_WARNING - FILTERSTATUS_IMU_BIAS_WARNING = _mscl.InertialTypes_FILTERSTATUS_IMU_BIAS_WARNING - FILTERSTATUS_GNSS_CLK_WARNING = _mscl.InertialTypes_FILTERSTATUS_GNSS_CLK_WARNING - FILTERSTATUS_ANT_LEVER_ARM_WARNING = _mscl.InertialTypes_FILTERSTATUS_ANT_LEVER_ARM_WARNING - FILTERSTATUS_MOUNTING_TRANSFORM_WARNING = _mscl.InertialTypes_FILTERSTATUS_MOUNTING_TRANSFORM_WARNING - FILTERSTATUS_ATT_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_ATT_NOT_INIT - FILTERSTATUS_POS_VEL_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_POS_VEL_NOT_INIT - STABLE = _mscl.InertialTypes_STABLE - CONVERGING = _mscl.InertialTypes_CONVERGING - UNSTABLE = _mscl.InertialTypes_UNSTABLE - DGNSSBASE_UDRE_SCALE_FACTOR_1_00 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_1_00 - DGNSSBASE_UDRE_SCALE_FACTOR_0_75 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_75 - DGNSSBASE_UDRE_SCALE_FACTOR_0_50 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_50 - DGNSSBASE_UDRE_SCALE_FACTOR_0_30 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_30 - DGNSSBASE_UDRE_SCALE_FACTOR_0_20 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_20 - DGNSSBASE_UDRE_SCALE_FACTOR_0_10 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_10 - DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED - DGNSSBASE_REFERENCE_STATION_NOT_WORKING = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_NOT_WORKING - HEADINGSOURCE_NONE = _mscl.InertialTypes_HEADINGSOURCE_NONE - HEADINGSOURCE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_MAGNETOMETER - HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR - HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD = _mscl.InertialTypes_HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD - HEADINGSOURCE_GNSS_DUAL_ANTENNA = _mscl.InertialTypes_HEADINGSOURCE_GNSS_DUAL_ANTENNA - ENABLE_NONE = _mscl.InertialTypes_ENABLE_NONE - ENABLE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_ENABLE_INTERNAL_MAGNETOMETER - ENABLE_INTERNAL_GNSS = _mscl.InertialTypes_ENABLE_INTERNAL_GNSS - ENABLE_EXTERNAL_MESSAGES = _mscl.InertialTypes_ENABLE_EXTERNAL_MESSAGES - ENABLE_MAGNETOMETER_AND_GNSS = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_GNSS - ENABLE_GNSS_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_GNSS_AND_EXTERNAL - ENABLE_MAGNETOMETER_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_EXTERNAL - ENABLE_ALL = _mscl.InertialTypes_ENABLE_ALL - ENABLE_GYRO_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_BIAS_ESTIMATION - ENABLE_ACCEL_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_BIAS_ESTIMATION - ENABLE_GYRO_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_SCALE_FACTOR_ESTIMATION - ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION - ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION = _mscl.InertialTypes_ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION - ENABLE_HARD_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_HARD_IRON_AUTO_CALIBRATION - ENABLE_SOFT_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_SOFT_IRON_AUTO_CALIBRATION - NONE = _mscl.InertialTypes_NONE - WORLD_MAGNETIC_MODEL = _mscl.InertialTypes_WORLD_MAGNETIC_MODEL - MANUAL = _mscl.InertialTypes_MANUAL - ADAPTIVE_MEASUREMENT_DISABLE = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_DISABLE - ADAPTIVE_MEASUREMENT_ENABLE_FIXED = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_FIXED - ADAPTIVE_MEASUREMENT_ENABLE_AUTO = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_AUTO - GNSS_POS_VEL_AIDING = _mscl.InertialTypes_GNSS_POS_VEL_AIDING - GNSS_HEADING_AIDING = _mscl.InertialTypes_GNSS_HEADING_AIDING - ALTIMETER_AIDING = _mscl.InertialTypes_ALTIMETER_AIDING - ODOMETER_AIDING = _mscl.InertialTypes_ODOMETER_AIDING - MAGNETOMETER_AIDING = _mscl.InertialTypes_MAGNETOMETER_AIDING - EXTERNAL_HEADING_AIDING = _mscl.InertialTypes_EXTERNAL_HEADING_AIDING - EXTERNAL_ALTIMETER_AIDING = _mscl.InertialTypes_EXTERNAL_ALTIMETER_AIDING - EXTERNAL_MAGNETOMETER_AIDING = _mscl.InertialTypes_EXTERNAL_MAGNETOMETER_AIDING - BODY_FRAME_VEL_AIDING = _mscl.InertialTypes_BODY_FRAME_VEL_AIDING - ALL_AIDING_MEASUREMENTS = _mscl.InertialTypes_ALL_AIDING_MEASUREMENTS - GPS = _mscl.InertialTypes_GPS - SBAS = _mscl.InertialTypes_SBAS - GALILEO = _mscl.InertialTypes_GALILEO - BEIDOU = _mscl.InertialTypes_BEIDOU - QZSS = _mscl.InertialTypes_QZSS - GLONASS = _mscl.InertialTypes_GLONASS - FILTERING_OFF = _mscl.InertialTypes_FILTERING_OFF - FILTERING_CONSERVATIVE = _mscl.InertialTypes_FILTERING_CONSERVATIVE - FILTERING_MODERATE = _mscl.InertialTypes_FILTERING_MODERATE - FILTERING_AGGRESSIVE = _mscl.InertialTypes_FILTERING_AGGRESSIVE - FACTORY_STREAMING_OVERWRITE = _mscl.InertialTypes_FACTORY_STREAMING_OVERWRITE - FACTORY_STREAMING_MERGE = _mscl.InertialTypes_FACTORY_STREAMING_MERGE - FACTORY_STREAMING_ADDITIVE = _mscl.InertialTypes_FACTORY_STREAMING_ADDITIVE - PPS_DISABLED = _mscl.InertialTypes_PPS_DISABLED - PPS_RECEIVER_1 = _mscl.InertialTypes_PPS_RECEIVER_1 - PPS_RECEIVER_2 = _mscl.InertialTypes_PPS_RECEIVER_2 - PPS_GPIO = _mscl.InertialTypes_PPS_GPIO - PPS_GENERATED = _mscl.InertialTypes_PPS_GENERATED - GNSS_AIDING_TIGHT_COUPLING = _mscl.InertialTypes_GNSS_AIDING_TIGHT_COUPLING - GNSS_AIDING_DIFFERENTIAL = _mscl.InertialTypes_GNSS_AIDING_DIFFERENTIAL - GNSS_AIDING_INTEGER_FIX = _mscl.InertialTypes_GNSS_AIDING_INTEGER_FIX - GNSS_AIDING_GPS = _mscl.InertialTypes_GNSS_AIDING_GPS - GNSS_AIDING_GLONASS = _mscl.InertialTypes_GNSS_AIDING_GLONASS - GNSS_AIDING_GALILEO = _mscl.InertialTypes_GNSS_AIDING_GALILEO - GNSS_AIDING_BEIDOU = _mscl.InertialTypes_GNSS_AIDING_BEIDOU - GNSS_AIDING_NO_FIX = _mscl.InertialTypes_GNSS_AIDING_NO_FIX - GNSS_AIDING_CONFIG_ERROR = _mscl.InertialTypes_GNSS_AIDING_CONFIG_ERROR - AIDING_MEASUREMENT_ENABLED = _mscl.InertialTypes_AIDING_MEASUREMENT_ENABLED - AIDING_MEASUREMENT_USED = _mscl.InertialTypes_AIDING_MEASUREMENT_USED - AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH - AIDING_MEASUREMENT_WARNING_SAMPLE_TIME = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_SAMPLE_TIME - AIDING_MEASUREMENT_CONFIG_ERROR = _mscl.InertialTypes_AIDING_MEASUREMENT_CONFIG_ERROR - AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED = _mscl.InertialTypes_AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED - RTK_CORRECTION_ANTENNA_POS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_POS_RECEIVED - RTK_CORRECTION_ANTENNA_DESC_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_DESC_RECEIVED - RTK_CORRECTION_GPS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GPS_RECEIVED - RTK_CORRECTION_GLONASS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GLONASS_RECEIVED - RTK_CORRECTION_GALILEO_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GALILEO_RECEIVED - RTK_CORRECTION_BEIDOU_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_BEIDOU_RECEIVED - RTK_CORRECTION_USING_GPS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GPS_MSM - RTK_CORRECTION_USING_GLONASS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GLONASS_MSM - SIGNAL_QUALITY_NONE = _mscl.InertialTypes_SIGNAL_QUALITY_NONE - SIGNAL_QUALITY_SEARCHING = _mscl.InertialTypes_SIGNAL_QUALITY_SEARCHING - SIGNAL_QUALITY_ACQUIRED = _mscl.InertialTypes_SIGNAL_QUALITY_ACQUIRED - SIGNAL_QUALITY_UNUSABLE = _mscl.InertialTypes_SIGNAL_QUALITY_UNUSABLE - SIGNAL_QUALITY_TIME_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_TIME_LOCKED - SIGNAL_QUALITY_FULLY_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_FULLY_LOCKED - OVERRANGE_ACCEL_X = _mscl.InertialTypes_OVERRANGE_ACCEL_X - OVERRANGE_ACCEL_Y = _mscl.InertialTypes_OVERRANGE_ACCEL_Y - OVERRANGE_ACCEL_Z = _mscl.InertialTypes_OVERRANGE_ACCEL_Z - OVERRANGE_GYRO_X = _mscl.InertialTypes_OVERRANGE_GYRO_X - OVERRANGE_GYRO_Y = _mscl.InertialTypes_OVERRANGE_GYRO_Y - OVERRANGE_GYRO_Z = _mscl.InertialTypes_OVERRANGE_GYRO_Z - OVERRANGE_MAG_X = _mscl.InertialTypes_OVERRANGE_MAG_X - OVERRANGE_MAG_Y = _mscl.InertialTypes_OVERRANGE_MAG_Y - OVERRANGE_MAG_Z = _mscl.InertialTypes_OVERRANGE_MAG_Z - OVERRANGE_PRESSURE = _mscl.InertialTypes_OVERRANGE_PRESSURE - UNKNOWN_SBAS_SYSTEM = _mscl.InertialTypes_UNKNOWN_SBAS_SYSTEM - WAAS = _mscl.InertialTypes_WAAS - EGNOS = _mscl.InertialTypes_EGNOS - MSAS = _mscl.InertialTypes_MSAS - GAGAN = _mscl.InertialTypes_GAGAN - SBAS_INFO_RANGE_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_RANGE_AVAILABLE - SBAS_INFO_CORRECTIONS_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_CORRECTIONS_AVAILABLE - SBAS_INFO_INTEGRITY_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_INTEGRITY_AVAILABLE - SBAS_INFO_TEST = _mscl.InertialTypes_SBAS_INFO_TEST - JAMMING_STATE_UNKNOWN = _mscl.InertialTypes_JAMMING_STATE_UNKNOWN - JAMMING_STATE_NONE = _mscl.InertialTypes_JAMMING_STATE_NONE - JAMMING_STATE_PARTIAL = _mscl.InertialTypes_JAMMING_STATE_PARTIAL - JAMMING_STATE_SIGNIFICANT = _mscl.InertialTypes_JAMMING_STATE_SIGNIFICANT - SPOOFING_STATE_UNKNOWN = _mscl.InertialTypes_SPOOFING_STATE_UNKNOWN - SPOOFING_STATE_NONE = _mscl.InertialTypes_SPOOFING_STATE_NONE - SPOOFING_STATE_PARTIAL = _mscl.InertialTypes_SPOOFING_STATE_PARTIAL - SPOOFING_STATE_SIGNIFICANT = _mscl.InertialTypes_SPOOFING_STATE_SIGNIFICANT - - def __init__(self): - _mscl.InertialTypes_swiginit(self, _mscl.new_InertialTypes()) - __swig_destroy__ = _mscl.delete_InertialTypes - -# Register InertialTypes in _mscl: -_mscl.InertialTypes_swigregister(InertialTypes) - -class NmeaMessageFormat(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_MESSAGES = _mscl.NmeaMessageFormat_MAX_MESSAGES - GGA = _mscl.NmeaMessageFormat_GGA - GLL = _mscl.NmeaMessageFormat_GLL - GSV = _mscl.NmeaMessageFormat_GSV - RMC = _mscl.NmeaMessageFormat_RMC - VTG = _mscl.NmeaMessageFormat_VTG - HDT = _mscl.NmeaMessageFormat_HDT - ZDA = _mscl.NmeaMessageFormat_ZDA - MSRA = _mscl.NmeaMessageFormat_MSRA - MSRR = _mscl.NmeaMessageFormat_MSRR - IGNORED = _mscl.NmeaMessageFormat_IGNORED - GNSS = _mscl.NmeaMessageFormat_GNSS - GPS = _mscl.NmeaMessageFormat_GPS - GALILEO = _mscl.NmeaMessageFormat_GALILEO - GLONASS = _mscl.NmeaMessageFormat_GLONASS - - def __init__(self): - _mscl.NmeaMessageFormat_swiginit(self, _mscl.new_NmeaMessageFormat()) - __swig_destroy__ = _mscl.delete_NmeaMessageFormat - - def sentenceType(self, *args): - return _mscl.NmeaMessageFormat_sentenceType(self, *args) - - def talkerId(self, *args): - return _mscl.NmeaMessageFormat_talkerId(self, *args) - - def sourceDataClass(self, *args): - return _mscl.NmeaMessageFormat_sourceDataClass(self, *args) - - def sampleRate(self, *args): - return _mscl.NmeaMessageFormat_sampleRate(self, *args) - - @staticmethod - def talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - - @staticmethod - def dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - - @staticmethod - def supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - - @staticmethod - def toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -# Register NmeaMessageFormat in _mscl: -_mscl.NmeaMessageFormat_swigregister(NmeaMessageFormat) -NmeaMessageFormat.MAX_FREQUENCY = _mscl.cvar.NmeaMessageFormat_MAX_FREQUENCY - -def NmeaMessageFormat_talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - -def NmeaMessageFormat_dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - -def NmeaMessageFormat_supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - -def NmeaMessageFormat_toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -class Matrix_3x3(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Matrix_3x3_swiginit(self, _mscl.new_Matrix_3x3(*args)) - __swig_destroy__ = _mscl.delete_Matrix_3x3 - - def set(self, row, col, value): - return _mscl.Matrix_3x3_set(self, row, col, value) - - def at(self, row, col): - return _mscl.Matrix_3x3_at(self, row, col) - - def __str__(self): - return _mscl.Matrix_3x3___str__(self) - - def asMipFieldValues(self): - return _mscl.Matrix_3x3_asMipFieldValues(self) - -# Register Matrix_3x3 in _mscl: -_mscl.Matrix_3x3_swigregister(Matrix_3x3) - -class TimeUpdate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, timeOfWeek, weekNumber, timeAccuracy=0): - _mscl.TimeUpdate_swiginit(self, _mscl.new_TimeUpdate(timeOfWeek, weekNumber, timeAccuracy)) - __swig_destroy__ = _mscl.delete_TimeUpdate - - def timeOfWeek(self): - return _mscl.TimeUpdate_timeOfWeek(self) - - def weekNumber(self): - return _mscl.TimeUpdate_weekNumber(self) - - def timeAccuracy(self): - return _mscl.TimeUpdate_timeAccuracy(self) - -# Register TimeUpdate in _mscl: -_mscl.TimeUpdate_swigregister(TimeUpdate) - -class ZUPTSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, enable, threshold): - _mscl.ZUPTSettingsData_swiginit(self, _mscl.new_ZUPTSettingsData(enable, threshold)) - enabled = property(_mscl.ZUPTSettingsData_enabled_get, _mscl.ZUPTSettingsData_enabled_set) - threshold = property(_mscl.ZUPTSettingsData_threshold_get, _mscl.ZUPTSettingsData_threshold_set) - __swig_destroy__ = _mscl.delete_ZUPTSettingsData - -# Register ZUPTSettingsData in _mscl: -_mscl.ZUPTSettingsData_swigregister(ZUPTSettingsData) - -class FixedReferencePositionData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.FixedReferencePositionData_swiginit(self, _mscl.new_FixedReferencePositionData(*args)) - enable = property(_mscl.FixedReferencePositionData_enable_get, _mscl.FixedReferencePositionData_enable_set) - referencePosition = property(_mscl.FixedReferencePositionData_referencePosition_get, _mscl.FixedReferencePositionData_referencePosition_set) - __swig_destroy__ = _mscl.delete_FixedReferencePositionData - -# Register FixedReferencePositionData in _mscl: -_mscl.FixedReferencePositionData_swigregister(FixedReferencePositionData) - -class SBASSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enableSBAS = property(_mscl.SBASSettingsData_enableSBAS_get, _mscl.SBASSettingsData_enableSBAS_set) - enableRanging = property(_mscl.SBASSettingsData_enableRanging_get, _mscl.SBASSettingsData_enableRanging_set) - enableCorrectionData = property(_mscl.SBASSettingsData_enableCorrectionData_get, _mscl.SBASSettingsData_enableCorrectionData_set) - applyIntegrityInfo = property(_mscl.SBASSettingsData_applyIntegrityInfo_get, _mscl.SBASSettingsData_applyIntegrityInfo_set) - satellitePRNs = property(_mscl.SBASSettingsData_satellitePRNs_get, _mscl.SBASSettingsData_satellitePRNs_set) - - def __init__(self): - _mscl.SBASSettingsData_swiginit(self, _mscl.new_SBASSettingsData()) - __swig_destroy__ = _mscl.delete_SBASSettingsData - -# Register SBASSettingsData in _mscl: -_mscl.SBASSettingsData_swigregister(SBASSettingsData) - -class Constellation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - constellationID = property(_mscl.Constellation_constellationID_get, _mscl.Constellation_constellationID_set) - enabled = property(_mscl.Constellation_enabled_get, _mscl.Constellation_enabled_set) - reservedChannelCount = property(_mscl.Constellation_reservedChannelCount_get, _mscl.Constellation_reservedChannelCount_set) - maxChannels = property(_mscl.Constellation_maxChannels_get, _mscl.Constellation_maxChannels_set) - enableL1SAIF = property(_mscl.Constellation_enableL1SAIF_get, _mscl.Constellation_enableL1SAIF_set) - - def __init__(self): - _mscl.Constellation_swiginit(self, _mscl.new_Constellation()) - __swig_destroy__ = _mscl.delete_Constellation - -# Register Constellation in _mscl: -_mscl.Constellation_swigregister(Constellation) - -class ConstellationSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - maxChannelsAvailable = property(_mscl.ConstellationSettingsData_maxChannelsAvailable_get, _mscl.ConstellationSettingsData_maxChannelsAvailable_set) - maxChannelsToUse = property(_mscl.ConstellationSettingsData_maxChannelsToUse_get, _mscl.ConstellationSettingsData_maxChannelsToUse_set) - constellations = property(_mscl.ConstellationSettingsData_constellations_get, _mscl.ConstellationSettingsData_constellations_set) - - def __init__(self): - _mscl.ConstellationSettingsData_swiginit(self, _mscl.new_ConstellationSettingsData()) - __swig_destroy__ = _mscl.delete_ConstellationSettingsData - -# Register ConstellationSettingsData in _mscl: -_mscl.ConstellationSettingsData_swigregister(ConstellationSettingsData) - -class LowPassFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SET_TO_HALF_REPORTING_RATE = _mscl.LowPassFilterData_SET_TO_HALF_REPORTING_RATE - USER_SPECIFIED_CUTOFF_FREQ = _mscl.LowPassFilterData_USER_SPECIFIED_CUTOFF_FREQ - - def __init__(self, *args): - _mscl.LowPassFilterData_swiginit(self, _mscl.new_LowPassFilterData(*args)) - dataDescriptor = property(_mscl.LowPassFilterData_dataDescriptor_get, _mscl.LowPassFilterData_dataDescriptor_set) - manualFilterBandwidthConfig = property(_mscl.LowPassFilterData_manualFilterBandwidthConfig_get, _mscl.LowPassFilterData_manualFilterBandwidthConfig_set) - applyLowPassFilter = property(_mscl.LowPassFilterData_applyLowPassFilter_get, _mscl.LowPassFilterData_applyLowPassFilter_set) - cutoffFrequency = property(_mscl.LowPassFilterData_cutoffFrequency_get, _mscl.LowPassFilterData_cutoffFrequency_set) - - @staticmethod - def getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - - @staticmethod - def getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - __swig_destroy__ = _mscl.delete_LowPassFilterData - -# Register LowPassFilterData in _mscl: -_mscl.LowPassFilterData_swigregister(LowPassFilterData) - -def LowPassFilterData_getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - -def LowPassFilterData_getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - -class ComplementaryFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ComplementaryFilterData_swiginit(self, _mscl.new_ComplementaryFilterData()) - upCompensationEnabled = property(_mscl.ComplementaryFilterData_upCompensationEnabled_get, _mscl.ComplementaryFilterData_upCompensationEnabled_set) - upCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_upCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_upCompensationTimeInSeconds_set) - northCompensationEnabled = property(_mscl.ComplementaryFilterData_northCompensationEnabled_get, _mscl.ComplementaryFilterData_northCompensationEnabled_set) - northCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_northCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_northCompensationTimeInSeconds_set) - __swig_destroy__ = _mscl.delete_ComplementaryFilterData - -# Register ComplementaryFilterData in _mscl: -_mscl.ComplementaryFilterData_swigregister(ComplementaryFilterData) - -class PpsPulseInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PpsPulseInfo_swiginit(self, _mscl.new_PpsPulseInfo()) - count = property(_mscl.PpsPulseInfo_count_get, _mscl.PpsPulseInfo_count_set) - lastTimeinMS = property(_mscl.PpsPulseInfo_lastTimeinMS_get, _mscl.PpsPulseInfo_lastTimeinMS_set) - __swig_destroy__ = _mscl.delete_PpsPulseInfo - -# Register PpsPulseInfo in _mscl: -_mscl.PpsPulseInfo_swigregister(PpsPulseInfo) - -class StreamInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.StreamInfo_swiginit(self, _mscl.new_StreamInfo()) - enabled = property(_mscl.StreamInfo_enabled_get, _mscl.StreamInfo_enabled_set) - outgoingPacketsDropped = property(_mscl.StreamInfo_outgoingPacketsDropped_get, _mscl.StreamInfo_outgoingPacketsDropped_set) - __swig_destroy__ = _mscl.delete_StreamInfo - -# Register StreamInfo in _mscl: -_mscl.StreamInfo_swigregister(StreamInfo) - -class DeviceMessageInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.DeviceMessageInfo_swiginit(self, _mscl.new_DeviceMessageInfo()) - messageParsingErrors = property(_mscl.DeviceMessageInfo_messageParsingErrors_get, _mscl.DeviceMessageInfo_messageParsingErrors_set) - messagesRead = property(_mscl.DeviceMessageInfo_messagesRead_get, _mscl.DeviceMessageInfo_messagesRead_set) - lastMessageReadinMS = property(_mscl.DeviceMessageInfo_lastMessageReadinMS_get, _mscl.DeviceMessageInfo_lastMessageReadinMS_set) - __swig_destroy__ = _mscl.delete_DeviceMessageInfo - -# Register DeviceMessageInfo in _mscl: -_mscl.DeviceMessageInfo_swigregister(DeviceMessageInfo) - -class PortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PortInfo_swiginit(self, _mscl.new_PortInfo()) - bytesWritten = property(_mscl.PortInfo_bytesWritten_get, _mscl.PortInfo_bytesWritten_set) - bytesRead = property(_mscl.PortInfo_bytesRead_get, _mscl.PortInfo_bytesRead_set) - overrunsOnWrite = property(_mscl.PortInfo_overrunsOnWrite_get, _mscl.PortInfo_overrunsOnWrite_set) - overrunsOnRead = property(_mscl.PortInfo_overrunsOnRead_get, _mscl.PortInfo_overrunsOnRead_set) - __swig_destroy__ = _mscl.delete_PortInfo - -# Register PortInfo in _mscl: -_mscl.PortInfo_swigregister(PortInfo) - -class TemperatureInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.TemperatureInfo_swiginit(self, _mscl.new_TemperatureInfo()) - onBoardTemp = property(_mscl.TemperatureInfo_onBoardTemp_get, _mscl.TemperatureInfo_onBoardTemp_set) - lastReadInMS = property(_mscl.TemperatureInfo_lastReadInMS_get, _mscl.TemperatureInfo_lastReadInMS_set) - error = property(_mscl.TemperatureInfo_error_get, _mscl.TemperatureInfo_error_set) - __swig_destroy__ = _mscl.delete_TemperatureInfo - -# Register TemperatureInfo in _mscl: -_mscl.TemperatureInfo_swigregister(TemperatureInfo) - -ModelNumber = _mscl.ModelNumber -StatusStructure_Value = _mscl.StatusStructure_Value -SystemState_Value = _mscl.SystemState_Value -gnss1PpsPulseInfo_Count = _mscl.gnss1PpsPulseInfo_Count -gnss1PpsPulseInfo_LastTimeinMS = _mscl.gnss1PpsPulseInfo_LastTimeinMS -GnssPowerStateOn = _mscl.GnssPowerStateOn -ImuStreamInfo_Enabled = _mscl.ImuStreamInfo_Enabled -ImuStreamInfo_PacketsDropped = _mscl.ImuStreamInfo_PacketsDropped -GnssStreamInfo_Enabled = _mscl.GnssStreamInfo_Enabled -GnssStreamInfo_PacketsDropped = _mscl.GnssStreamInfo_PacketsDropped -EstimationFilterStreamInfo_Enabled = _mscl.EstimationFilterStreamInfo_Enabled -EstimationFilterStreamInfo_PacketsDropped = _mscl.EstimationFilterStreamInfo_PacketsDropped -ComPortInfo_BytesRead = _mscl.ComPortInfo_BytesRead -ComPortInfo_BytesWritten = _mscl.ComPortInfo_BytesWritten -ComPortInfo_OverrunsOnRead = _mscl.ComPortInfo_OverrunsOnRead -ComPortInfo_OverrunsOnWrite = _mscl.ComPortInfo_OverrunsOnWrite -ImuMessageInfo_LastMessageReadinMS = _mscl.ImuMessageInfo_LastMessageReadinMS -ImuMessageInfo_MessageParsingErrors = _mscl.ImuMessageInfo_MessageParsingErrors -ImuMessageInfo_MessagesRead = _mscl.ImuMessageInfo_MessagesRead -GnssMessageInfo_LastMessageReadinMS = _mscl.GnssMessageInfo_LastMessageReadinMS -GnssMessageInfo_MessageParsingErrors = _mscl.GnssMessageInfo_MessageParsingErrors -GnssMessageInfo_MessagesRead = _mscl.GnssMessageInfo_MessagesRead -TemperatureInfo_Error = _mscl.TemperatureInfo_Error -TemperatureInfo_LastReadInMS = _mscl.TemperatureInfo_LastReadInMS -TemperatureInfo_OnBoardTemp = _mscl.TemperatureInfo_OnBoardTemp -PowerState = _mscl.PowerState -GyroRange = _mscl.GyroRange -AccelRange = _mscl.AccelRange -HasMagnetometer = _mscl.HasMagnetometer -HasPressure = _mscl.HasPressure -class DeviceStatusData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_BASIC_STATUS_STRUCTURE - DIAGNOSTIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_DIAGNOSTIC_STATUS_STRUCTURE - SYSTEM_INITIALIZATION = _mscl.DeviceStatusData_SYSTEM_INITIALIZATION - SYSTEM_STARTUP = _mscl.DeviceStatusData_SYSTEM_STARTUP - SYSTEM_RUNNING = _mscl.DeviceStatusData_SYSTEM_RUNNING - - def __init__(self): - _mscl.DeviceStatusData_swiginit(self, _mscl.new_DeviceStatusData()) - modelNumber = property(_mscl.DeviceStatusData_modelNumber_get, _mscl.DeviceStatusData_modelNumber_set) - statusStructure = property(_mscl.DeviceStatusData_statusStructure_get, _mscl.DeviceStatusData_statusStructure_set) - systemTimerInMS = property(_mscl.DeviceStatusData_systemTimerInMS_get, _mscl.DeviceStatusData_systemTimerInMS_set) - - def systemState(self, *args): - return _mscl.DeviceStatusData_systemState(self, *args) - - def gnssPowerStateOn(self, *args): - return _mscl.DeviceStatusData_gnssPowerStateOn(self, *args) - - def gnss1PpsPulseInfo(self, *args): - return _mscl.DeviceStatusData_gnss1PpsPulseInfo(self, *args) - - def imuStreamInfo(self, *args): - return _mscl.DeviceStatusData_imuStreamInfo(self, *args) - - def gnssStreamInfo(self, *args): - return _mscl.DeviceStatusData_gnssStreamInfo(self, *args) - - def estimationFilterStreamInfo(self, *args): - return _mscl.DeviceStatusData_estimationFilterStreamInfo(self, *args) - - def imuMessageInfo(self, *args): - return _mscl.DeviceStatusData_imuMessageInfo(self, *args) - - def gnssMessageInfo(self, *args): - return _mscl.DeviceStatusData_gnssMessageInfo(self, *args) - - def comPortInfo(self, *args): - return _mscl.DeviceStatusData_comPortInfo(self, *args) - - def usbPortInfo(self, *args): - return _mscl.DeviceStatusData_usbPortInfo(self, *args) - - def hasMagnetometer(self, *args): - return _mscl.DeviceStatusData_hasMagnetometer(self, *args) - - def magnetometerInitializationFailed(self, *args): - return _mscl.DeviceStatusData_magnetometerInitializationFailed(self, *args) - - def hasPressure(self, *args): - return _mscl.DeviceStatusData_hasPressure(self, *args) - - def pressureInitializationFailed(self, *args): - return _mscl.DeviceStatusData_pressureInitializationFailed(self, *args) - - def gnssReceiverInitializationFailed(self, *args): - return _mscl.DeviceStatusData_gnssReceiverInitializationFailed(self, *args) - - def coldStartOnPowerOn(self, *args): - return _mscl.DeviceStatusData_coldStartOnPowerOn(self, *args) - - def temperatureInfo(self, *args): - return _mscl.DeviceStatusData_temperatureInfo(self, *args) - - def powerState(self, *args): - return _mscl.DeviceStatusData_powerState(self, *args) - - def gyroRange(self, *args): - return _mscl.DeviceStatusData_gyroRange(self, *args) - - def accelRange(self, *args): - return _mscl.DeviceStatusData_accelRange(self, *args) - - def asMap(self): - return _mscl.DeviceStatusData_asMap(self) - - def asValueMap(self): - return _mscl.DeviceStatusData_asValueMap(self) - __swig_destroy__ = _mscl.delete_DeviceStatusData - -# Register DeviceStatusData in _mscl: -_mscl.DeviceStatusData_swigregister(DeviceStatusData) - -class ExternalGNSSUpdateData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - gpsTimeOfWeek = property(_mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_get, _mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_set) - gpsWeekNumber = property(_mscl.ExternalGNSSUpdateData_gpsWeekNumber_get, _mscl.ExternalGNSSUpdateData_gpsWeekNumber_set) - lattitude = property(_mscl.ExternalGNSSUpdateData_lattitude_get, _mscl.ExternalGNSSUpdateData_lattitude_set) - longitude = property(_mscl.ExternalGNSSUpdateData_longitude_get, _mscl.ExternalGNSSUpdateData_longitude_set) - altitudeAboveWGS84Ellipsoid = property(_mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_get, _mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_set) - northVelocity = property(_mscl.ExternalGNSSUpdateData_northVelocity_get, _mscl.ExternalGNSSUpdateData_northVelocity_set) - eastVelocity = property(_mscl.ExternalGNSSUpdateData_eastVelocity_get, _mscl.ExternalGNSSUpdateData_eastVelocity_set) - downVelocity = property(_mscl.ExternalGNSSUpdateData_downVelocity_get, _mscl.ExternalGNSSUpdateData_downVelocity_set) - northPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_northPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_northPositionUncertainty_set) - eastPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_eastPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_eastPositionUncertainty_set) - downPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_downPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_downPositionUncertainty_set) - northVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_northVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_northVelocityUncertainty_set) - eastVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_set) - downVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_downVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_downVelocityUncertainty_set) - - def __init__(self): - _mscl.ExternalGNSSUpdateData_swiginit(self, _mscl.new_ExternalGNSSUpdateData()) - __swig_destroy__ = _mscl.delete_ExternalGNSSUpdateData - -# Register ExternalGNSSUpdateData in _mscl: -_mscl.ExternalGNSSUpdateData_swigregister(ExternalGNSSUpdateData) - -class HeadingUpdateOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsOptionId(self): - return _mscl.HeadingUpdateOptions_AsOptionId(self) - - def __init__(self, *args): - _mscl.HeadingUpdateOptions_swiginit(self, _mscl.new_HeadingUpdateOptions(*args)) - useInternalMagnetometer = property(_mscl.HeadingUpdateOptions_useInternalMagnetometer_get, _mscl.HeadingUpdateOptions_useInternalMagnetometer_set) - useInternalGNSSVelocityVector = property(_mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_get, _mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_set) - useExternalHeadingMessages = property(_mscl.HeadingUpdateOptions_useExternalHeadingMessages_get, _mscl.HeadingUpdateOptions_useExternalHeadingMessages_set) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptions - -# Register HeadingUpdateOptions in _mscl: -_mscl.HeadingUpdateOptions_swigregister(HeadingUpdateOptions) - -Automatic = _mscl.Automatic -UserSpecified_Heading = _mscl.UserSpecified_Heading -UserSpecified_Attitude = _mscl.UserSpecified_Attitude -UserSpecified_All = _mscl.UserSpecified_All -GNSS_DualAntenna = _mscl.GNSS_DualAntenna -GNSS_Kinematic = _mscl.GNSS_Kinematic -Magnetometer = _mscl.Magnetometer -External = _mscl.External -class HeadingAlignmentMethod(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.HeadingAlignmentMethod_swiginit(self, _mscl.new_HeadingAlignmentMethod(*args)) - value = property(_mscl.HeadingAlignmentMethod_value_get, _mscl.HeadingAlignmentMethod_value_set) - - def select(self, option): - return _mscl.HeadingAlignmentMethod_select(self, option) - - def deselect(self, option): - return _mscl.HeadingAlignmentMethod_deselect(self, option) - - def selected(self, option): - return _mscl.HeadingAlignmentMethod_selected(self, option) - __swig_destroy__ = _mscl.delete_HeadingAlignmentMethod - -# Register HeadingAlignmentMethod in _mscl: -_mscl.HeadingAlignmentMethod_swigregister(HeadingAlignmentMethod) - -class FilterInitializationValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FilterInitializationValues_swiginit(self, _mscl.new_FilterInitializationValues()) - autoInitialize = property(_mscl.FilterInitializationValues_autoInitialize_get, _mscl.FilterInitializationValues_autoInitialize_set) - initialValuesSource = property(_mscl.FilterInitializationValues_initialValuesSource_get, _mscl.FilterInitializationValues_initialValuesSource_set) - autoHeadingAlignmentMethod = property(_mscl.FilterInitializationValues_autoHeadingAlignmentMethod_get, _mscl.FilterInitializationValues_autoHeadingAlignmentMethod_set) - initialAttitude = property(_mscl.FilterInitializationValues_initialAttitude_get, _mscl.FilterInitializationValues_initialAttitude_set) - initialPosition = property(_mscl.FilterInitializationValues_initialPosition_get, _mscl.FilterInitializationValues_initialPosition_set) - initialVelocity = property(_mscl.FilterInitializationValues_initialVelocity_get, _mscl.FilterInitializationValues_initialVelocity_set) - referenceFrame = property(_mscl.FilterInitializationValues_referenceFrame_get, _mscl.FilterInitializationValues_referenceFrame_set) - - def manualHeading(self): - return _mscl.FilterInitializationValues_manualHeading(self) - - def manualAttitude(self): - return _mscl.FilterInitializationValues_manualAttitude(self) - - def manualPositionVelocity(self): - return _mscl.FilterInitializationValues_manualPositionVelocity(self) - __swig_destroy__ = _mscl.delete_FilterInitializationValues - -# Register FilterInitializationValues in _mscl: -_mscl.FilterInitializationValues_swigregister(FilterInitializationValues) - -class TareAxisValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def asUint8(self): - return _mscl.TareAxisValues_asUint8(self) - - def __init__(self, tareRollAxis, tarePitchAxis, tareYawAxis): - _mscl.TareAxisValues_swiginit(self, _mscl.new_TareAxisValues(tareRollAxis, tarePitchAxis, tareYawAxis)) - tareRollAxis = property(_mscl.TareAxisValues_tareRollAxis_get, _mscl.TareAxisValues_tareRollAxis_set) - tarePitchAxis = property(_mscl.TareAxisValues_tarePitchAxis_get, _mscl.TareAxisValues_tarePitchAxis_set) - tareYawAxis = property(_mscl.TareAxisValues_tareYawAxis_get, _mscl.TareAxisValues_tareYawAxis_set) - __swig_destroy__ = _mscl.delete_TareAxisValues - -# Register TareAxisValues in _mscl: -_mscl.TareAxisValues_swigregister(TareAxisValues) - -class GeographicSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeographicSourceOptions_swiginit(self, _mscl.new_GeographicSourceOptions(*args)) - source = property(_mscl.GeographicSourceOptions_source_get, _mscl.GeographicSourceOptions_source_set) - manual = property(_mscl.GeographicSourceOptions_manual_get, _mscl.GeographicSourceOptions_manual_set) - __swig_destroy__ = _mscl.delete_GeographicSourceOptions - -# Register GeographicSourceOptions in _mscl: -_mscl.GeographicSourceOptions_swigregister(GeographicSourceOptions) - -class EstimationControlOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsUint16(self): - return _mscl.EstimationControlOptions_AsUint16(self) - - def __init__(self, *args): - _mscl.EstimationControlOptions_swiginit(self, _mscl.new_EstimationControlOptions(*args)) - enableGyroBiasEstimation = property(_mscl.EstimationControlOptions_enableGyroBiasEstimation_get, _mscl.EstimationControlOptions_enableGyroBiasEstimation_set) - enableAccelBiasEstimation = property(_mscl.EstimationControlOptions_enableAccelBiasEstimation_get, _mscl.EstimationControlOptions_enableAccelBiasEstimation_set) - enableGyroScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_set) - enableAccelScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_set) - enableGNSSAntennaOffsetEstimation = property(_mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_get, _mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_set) - enableHardIronAutoCalibration = property(_mscl.EstimationControlOptions_enableHardIronAutoCalibration_get, _mscl.EstimationControlOptions_enableHardIronAutoCalibration_set) - enableSoftIronAutoCalibration = property(_mscl.EstimationControlOptions_enableSoftIronAutoCalibration_get, _mscl.EstimationControlOptions_enableSoftIronAutoCalibration_set) - __swig_destroy__ = _mscl.delete_EstimationControlOptions - -# Register EstimationControlOptions in _mscl: -_mscl.EstimationControlOptions_swigregister(EstimationControlOptions) - -class HeadingData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HeadingData_swiginit(self, _mscl.new_HeadingData()) - TRUE_HEADING = _mscl.HeadingData_TRUE_HEADING - MAGNETIC_HEADING = _mscl.HeadingData_MAGNETIC_HEADING - heading = property(_mscl.HeadingData_heading_get, _mscl.HeadingData_heading_set) - headingAngle = property(_mscl.HeadingData_headingAngle_get, _mscl.HeadingData_headingAngle_set) - headingAngleUncertainty = property(_mscl.HeadingData_headingAngleUncertainty_get, _mscl.HeadingData_headingAngleUncertainty_set) - __swig_destroy__ = _mscl.delete_HeadingData - -# Register HeadingData in _mscl: -_mscl.HeadingData_swigregister(HeadingData) - -class AdaptiveMeasurementData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AdaptiveMeasurementData_swiginit(self, _mscl.new_AdaptiveMeasurementData()) - mode = property(_mscl.AdaptiveMeasurementData_mode_get, _mscl.AdaptiveMeasurementData_mode_set) - lowPassFilterCutoff = property(_mscl.AdaptiveMeasurementData_lowPassFilterCutoff_get, _mscl.AdaptiveMeasurementData_lowPassFilterCutoff_set) - lowLimit = property(_mscl.AdaptiveMeasurementData_lowLimit_get, _mscl.AdaptiveMeasurementData_lowLimit_set) - highLimit = property(_mscl.AdaptiveMeasurementData_highLimit_get, _mscl.AdaptiveMeasurementData_highLimit_set) - lowLimitUncertainty = property(_mscl.AdaptiveMeasurementData_lowLimitUncertainty_get, _mscl.AdaptiveMeasurementData_lowLimitUncertainty_set) - highLimitUncertainty = property(_mscl.AdaptiveMeasurementData_highLimitUncertainty_get, _mscl.AdaptiveMeasurementData_highLimitUncertainty_set) - minUncertainty = property(_mscl.AdaptiveMeasurementData_minUncertainty_get, _mscl.AdaptiveMeasurementData_minUncertainty_set) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementData - -# Register AdaptiveMeasurementData in _mscl: -_mscl.AdaptiveMeasurementData_swigregister(AdaptiveMeasurementData) - -class AutoAdaptiveFilterOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AutoAdaptiveFilterOptions_swiginit(self, _mscl.new_AutoAdaptiveFilterOptions(*args)) - level = property(_mscl.AutoAdaptiveFilterOptions_level_get, _mscl.AutoAdaptiveFilterOptions_level_set) - timeLimit = property(_mscl.AutoAdaptiveFilterOptions_timeLimit_get, _mscl.AutoAdaptiveFilterOptions_timeLimit_set) - __swig_destroy__ = _mscl.delete_AutoAdaptiveFilterOptions - -# Register AutoAdaptiveFilterOptions in _mscl: -_mscl.AutoAdaptiveFilterOptions_swigregister(AutoAdaptiveFilterOptions) - -class SignalConditioningValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ENABLE_ORIENTATION_CALC = _mscl.SignalConditioningValues_ENABLE_ORIENTATION_CALC - ENABLE_CONING_SCULLING = _mscl.SignalConditioningValues_ENABLE_CONING_SCULLING - ENABLE_FINITE_SIZE_CORRECTION = _mscl.SignalConditioningValues_ENABLE_FINITE_SIZE_CORRECTION - DISABLE_MAGNETOMETER = _mscl.SignalConditioningValues_DISABLE_MAGNETOMETER - DISABLE_NORTH_COMP = _mscl.SignalConditioningValues_DISABLE_NORTH_COMP - DISABLE_UP_COMP = _mscl.SignalConditioningValues_DISABLE_UP_COMP - ENABLE_QUATERNION_CALC = _mscl.SignalConditioningValues_ENABLE_QUATERNION_CALC - HIGH = _mscl.SignalConditioningValues_HIGH - LOW = _mscl.SignalConditioningValues_LOW - dataConditioningFlags = property(_mscl.SignalConditioningValues_dataConditioningFlags_get, _mscl.SignalConditioningValues_dataConditioningFlags_set) - orientationCalcDecimation = property(_mscl.SignalConditioningValues_orientationCalcDecimation_get, _mscl.SignalConditioningValues_orientationCalcDecimation_set) - accelGyroFilterWidth = property(_mscl.SignalConditioningValues_accelGyroFilterWidth_get, _mscl.SignalConditioningValues_accelGyroFilterWidth_set) - magFilterWidth = property(_mscl.SignalConditioningValues_magFilterWidth_get, _mscl.SignalConditioningValues_magFilterWidth_set) - upCompensation = property(_mscl.SignalConditioningValues_upCompensation_get, _mscl.SignalConditioningValues_upCompensation_set) - northCompensation = property(_mscl.SignalConditioningValues_northCompensation_get, _mscl.SignalConditioningValues_northCompensation_set) - magBandwidthPower = property(_mscl.SignalConditioningValues_magBandwidthPower_get, _mscl.SignalConditioningValues_magBandwidthPower_set) - - def __init__(self): - _mscl.SignalConditioningValues_swiginit(self, _mscl.new_SignalConditioningValues()) - - def conditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_conditioningOptionOn(self, *args) - - def setConditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOn(self, *args) - - def setConditioningOptionOff(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOff(self, *args) - __swig_destroy__ = _mscl.delete_SignalConditioningValues - -# Register SignalConditioningValues in _mscl: -_mscl.SignalConditioningValues_swigregister(SignalConditioningValues) - -class EnableDisableMeasurements(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ACCELEROMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_ACCELEROMETER_MEASUREMENTS - MAGNETOMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_MAGNETOMETER_MEASUREMENTS - - def __init__(self, *args): - _mscl.EnableDisableMeasurements_swiginit(self, _mscl.new_EnableDisableMeasurements(*args)) - measurementOptions = property(_mscl.EnableDisableMeasurements_measurementOptions_get, _mscl.EnableDisableMeasurements_measurementOptions_set) - - def optionEnabled(self, *args): - return _mscl.EnableDisableMeasurements_optionEnabled(self, *args) - - def enableOption(self, *args): - return _mscl.EnableDisableMeasurements_enableOption(self, *args) - - def disableOption(self, *args): - return _mscl.EnableDisableMeasurements_disableOption(self, *args) - __swig_destroy__ = _mscl.delete_EnableDisableMeasurements - -# Register EnableDisableMeasurements in _mscl: -_mscl.EnableDisableMeasurements_swigregister(EnableDisableMeasurements) - -class RTKDeviceStatusFlags(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MODEM_STATE = _mscl.RTKDeviceStatusFlags_MODEM_STATE - CONNECTION_TYPE = _mscl.RTKDeviceStatusFlags_CONNECTION_TYPE - RSSI = _mscl.RTKDeviceStatusFlags_RSSI - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_SIGNAL_QUALITY - TOWER_CHANGE_INDICATOR = _mscl.RTKDeviceStatusFlags_TOWER_CHANGE_INDICATOR - NMEA_TIMEOUT = _mscl.RTKDeviceStatusFlags_NMEA_TIMEOUT - SERVER_TIMEOUT = _mscl.RTKDeviceStatusFlags_SERVER_TIMEOUT - RTCM_TIMEOUT = _mscl.RTKDeviceStatusFlags_RTCM_TIMEOUT - DEVICE_OUT_OF_RANGE = _mscl.RTKDeviceStatusFlags_DEVICE_OUT_OF_RANGE - CORRECTIONS_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_CORRECTIONS_UNAVAILABLE - VERSION = _mscl.RTKDeviceStatusFlags_VERSION - OFF = _mscl.RTKDeviceStatusFlags_OFF - NO_NETWORK = _mscl.RTKDeviceStatusFlags_NO_NETWORK - NETWORK_CONNECTED = _mscl.RTKDeviceStatusFlags_NETWORK_CONNECTED - CONFIGURING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_CONFIGURING_DATA_CONTEXT - ACTIVATING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_ACTIVATING_DATA_CONTEXT - CONFIGURING_SOCKET = _mscl.RTKDeviceStatusFlags_CONFIGURING_SOCKET - WAITING_ON_SERVER_HANDSHAKE = _mscl.RTKDeviceStatusFlags_WAITING_ON_SERVER_HANDSHAKE - CONNECTED_AND_IDLE = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_IDLE - CONNECTED_AND_STREAMING = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_STREAMING - NO_CONNECTION = _mscl.RTKDeviceStatusFlags_NO_CONNECTION - CONNECTION_2G = _mscl.RTKDeviceStatusFlags_CONNECTION_2G - CONNECTION_3G = _mscl.RTKDeviceStatusFlags_CONNECTION_3G - CONNECTION_4G = _mscl.RTKDeviceStatusFlags_CONNECTION_4G - CONNECTION_5G = _mscl.RTKDeviceStatusFlags_CONNECTION_5G - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_swiginit(self, _mscl.new_RTKDeviceStatusFlags(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_version(self) - - def modemState(self, *args): - return _mscl.RTKDeviceStatusFlags_modemState(self, *args) - - def connectionType(self, *args): - return _mscl.RTKDeviceStatusFlags_connectionType(self, *args) - - def rssi(self, *args): - return _mscl.RTKDeviceStatusFlags_rssi(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_signalQuality(self, *args) - - def towerChangeIndicator(self, *args): - return _mscl.RTKDeviceStatusFlags_towerChangeIndicator(self, *args) - - def nmeaTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_nmeaTimeout(self, *args) - - def serverTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_serverTimeout(self, *args) - - def rtcmTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_rtcmTimeout(self, *args) - - def deviceOutOfRange(self, *args): - return _mscl.RTKDeviceStatusFlags_deviceOutOfRange(self, *args) - - def correctionsUnavailable(self, *args): - return _mscl.RTKDeviceStatusFlags_correctionsUnavailable(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags - -# Register RTKDeviceStatusFlags in _mscl: -_mscl.RTKDeviceStatusFlags_swigregister(RTKDeviceStatusFlags) - -class RTKDeviceStatusFlags_v1(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONTROLLER_STATE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATE - PLATFORM_STATE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATE - CONTROLLER_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATUS_CODE - PLATFORM_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATUS_CODE - RESET_REASON = _mscl.RTKDeviceStatusFlags_v1_RESET_REASON - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_v1_SIGNAL_QUALITY - VERSION = _mscl.RTKDeviceStatusFlags_v1_VERSION - IDLE = _mscl.RTKDeviceStatusFlags_v1_IDLE - ACTIVE = _mscl.RTKDeviceStatusFlags_v1_ACTIVE - MODEM_OFF = _mscl.RTKDeviceStatusFlags_v1_MODEM_OFF - MODEM_POWERING_ON = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_ON - MODEM_CONFIGURE = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONFIGURE - MODEM_POWERING_DOWN = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_DOWN - MODEM_READY = _mscl.RTKDeviceStatusFlags_v1_MODEM_READY - MODEM_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTING - MODEM_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_DISCONNECTING - MODEM_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTED - SERVICE_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTING - SERVICE_CONNECTION_FAILED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_FAILED - SERVICE_CONNECTION_CANCELED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_CANCELED - SERVICE_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_DISCONNECTING - SERVICE_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTED - PLATFORM_ERROR = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_ERROR - RESET_MODEM = _mscl.RTKDeviceStatusFlags_v1_RESET_MODEM - CONTROLLER_OK = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_OK - WAITING_NMEA = _mscl.RTKDeviceStatusFlags_v1_WAITING_NMEA - RTK_TIMEOUT = _mscl.RTKDeviceStatusFlags_v1_RTK_TIMEOUT - RTK_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_v1_RTK_UNAVAILABLE - CONFIG_INVALID = _mscl.RTKDeviceStatusFlags_v1_CONFIG_INVALID - PLATFORM_OK = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_OK - RTK_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_RTK_CONNECTION_DROPPED - CELL_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_CELL_CONNECTION_DROPPED - MODEM_ERROR = _mscl.RTKDeviceStatusFlags_v1_MODEM_ERROR - POWER_ON = _mscl.RTKDeviceStatusFlags_v1_POWER_ON - UNKNOWN = _mscl.RTKDeviceStatusFlags_v1_UNKNOWN - SOFT_RESET = _mscl.RTKDeviceStatusFlags_v1_SOFT_RESET - HARDWARE_ERROR_RESET = _mscl.RTKDeviceStatusFlags_v1_HARDWARE_ERROR_RESET - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_v1_swiginit(self, _mscl.new_RTKDeviceStatusFlags_v1(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_v1_version(self) - - def controllerState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerState(self, *args) - - def platformState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformState(self, *args) - - def controllerStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerStatusCode(self, *args) - - def platformStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformStatusCode(self, *args) - - def resetReason(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_resetReason(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_signalQuality(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags_v1 - -# Register RTKDeviceStatusFlags_v1 in _mscl: -_mscl.RTKDeviceStatusFlags_v1_swigregister(RTKDeviceStatusFlags_v1) - -class GnssSignalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - L1CA = _mscl.GnssSignalConfiguration_L1CA - L2C = _mscl.GnssSignalConfiguration_L2C - L1OF = _mscl.GnssSignalConfiguration_L1OF - L2OF = _mscl.GnssSignalConfiguration_L2OF - E1 = _mscl.GnssSignalConfiguration_E1 - E5B = _mscl.GnssSignalConfiguration_E5B - B1 = _mscl.GnssSignalConfiguration_B1 - B2 = _mscl.GnssSignalConfiguration_B2 - - def __init__(self): - _mscl.GnssSignalConfiguration_swiginit(self, _mscl.new_GnssSignalConfiguration()) - - def enableGpsSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGpsSignal(self, signal, enable) - - def gpsSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_gpsSignalEnabled(self, signal) - - def gpsSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_gpsSignalValue(self, *args) - - def enableGlonassSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGlonassSignal(self, signal, enable) - - def glonassSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_glonassSignalEnabled(self, signal) - - def glonassSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_glonassSignalValue(self, *args) - - def enableGalileoSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGalileoSignal(self, signal, enable) - - def galileoSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_galileoSignalEnabled(self, signal) - - def galileoSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_galileoSignalValue(self, *args) - - def enableBeiDouSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableBeiDouSignal(self, signal, enable) - - def beidouSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_beidouSignalEnabled(self, signal) - - def beidouSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_beidouSignalValue(self, *args) - __swig_destroy__ = _mscl.delete_GnssSignalConfiguration - -# Register GnssSignalConfiguration in _mscl: -_mscl.GnssSignalConfiguration_swigregister(GnssSignalConfiguration) - -class GnssSpartnConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - KEY_SIZE = _mscl.GnssSpartnConfiguration_KEY_SIZE - NONE = _mscl.GnssSpartnConfiguration_NONE - NETWORK = _mscl.GnssSpartnConfiguration_NETWORK - LBAND = _mscl.GnssSpartnConfiguration_LBAND - - def __init__(self): - _mscl.GnssSpartnConfiguration_swiginit(self, _mscl.new_GnssSpartnConfiguration()) - - def enable(self, enable): - return _mscl.GnssSpartnConfiguration_enable(self, enable) - - def enabled(self): - return _mscl.GnssSpartnConfiguration_enabled(self) - - def type(self, *args): - return _mscl.GnssSpartnConfiguration_type(self, *args) - - def currentKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyTow(self, *args) - - def currentKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyWeek(self, *args) - - def currentKey(self, *args): - return _mscl.GnssSpartnConfiguration_currentKey(self, *args) - - def nextKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyTow(self, *args) - - def nextKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyWeek(self, *args) - - def nextKey(self, *args): - return _mscl.GnssSpartnConfiguration_nextKey(self, *args) - __swig_destroy__ = _mscl.delete_GnssSpartnConfiguration - -# Register GnssSpartnConfiguration in _mscl: -_mscl.GnssSpartnConfiguration_swigregister(GnssSpartnConfiguration) - -class PositionReferenceConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - autoConfig = property(_mscl.PositionReferenceConfiguration_autoConfig_get, _mscl.PositionReferenceConfiguration_autoConfig_set) - position = property(_mscl.PositionReferenceConfiguration_position_get, _mscl.PositionReferenceConfiguration_position_set) - - def __init__(self): - _mscl.PositionReferenceConfiguration_swiginit(self, _mscl.new_PositionReferenceConfiguration()) - __swig_destroy__ = _mscl.delete_PositionReferenceConfiguration - -# Register PositionReferenceConfiguration in _mscl: -_mscl.PositionReferenceConfiguration_swigregister(PositionReferenceConfiguration) - -class AntennaLeverArmCalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enabled = property(_mscl.AntennaLeverArmCalConfiguration_enabled_get, _mscl.AntennaLeverArmCalConfiguration_enabled_set) - maxOffsetError = property(_mscl.AntennaLeverArmCalConfiguration_maxOffsetError_get, _mscl.AntennaLeverArmCalConfiguration_maxOffsetError_set) - - def __init__(self): - _mscl.AntennaLeverArmCalConfiguration_swiginit(self, _mscl.new_AntennaLeverArmCalConfiguration()) - __swig_destroy__ = _mscl.delete_AntennaLeverArmCalConfiguration - -# Register AntennaLeverArmCalConfiguration in _mscl: -_mscl.AntennaLeverArmCalConfiguration_swigregister(AntennaLeverArmCalConfiguration) - -class OdometerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.OdometerConfiguration_DISABLED - SINGLE = _mscl.OdometerConfiguration_SINGLE - QUADRATURE = _mscl.OdometerConfiguration_QUADRATURE - - def __init__(self): - _mscl.OdometerConfiguration_swiginit(self, _mscl.new_OdometerConfiguration()) - - def mode(self, *args): - return _mscl.OdometerConfiguration_mode(self, *args) - - def uncertainty(self, *args): - return _mscl.OdometerConfiguration_uncertainty(self, *args) - - def scaling(self, *args): - return _mscl.OdometerConfiguration_scaling(self, *args) - __swig_destroy__ = _mscl.delete_OdometerConfiguration - -# Register OdometerConfiguration in _mscl: -_mscl.OdometerConfiguration_swigregister(OdometerConfiguration) - -class GpioConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - UNUSED_FEATURE = _mscl.GpioConfiguration_UNUSED_FEATURE - GPIO_FEATURE = _mscl.GpioConfiguration_GPIO_FEATURE - PPS_FEATURE = _mscl.GpioConfiguration_PPS_FEATURE - ENCODER_FEATURE = _mscl.GpioConfiguration_ENCODER_FEATURE - EVENT_TIMESTAMP_FEATURE = _mscl.GpioConfiguration_EVENT_TIMESTAMP_FEATURE - UART_FEATURE = _mscl.GpioConfiguration_UART_FEATURE - GPIO_UNUSED = _mscl.GpioConfiguration_GPIO_UNUSED - GPIO_INPUT = _mscl.GpioConfiguration_GPIO_INPUT - GPIO_OUTPUT_LOW = _mscl.GpioConfiguration_GPIO_OUTPUT_LOW - GPIO_OUTPUT_HIGH = _mscl.GpioConfiguration_GPIO_OUTPUT_HIGH - PPS_UNUSED = _mscl.GpioConfiguration_PPS_UNUSED - PPS_INPUT = _mscl.GpioConfiguration_PPS_INPUT - PPS_OUTPUT = _mscl.GpioConfiguration_PPS_OUTPUT - ENCODER_UNUSED = _mscl.GpioConfiguration_ENCODER_UNUSED - ENCODER_A = _mscl.GpioConfiguration_ENCODER_A - ENCODER_B = _mscl.GpioConfiguration_ENCODER_B - TIMESTAMP_UNUSED = _mscl.GpioConfiguration_TIMESTAMP_UNUSED - TIMESTAMP_RISING = _mscl.GpioConfiguration_TIMESTAMP_RISING - TIMESTAMP_FALLING = _mscl.GpioConfiguration_TIMESTAMP_FALLING - TIMESTAMP_EITHER = _mscl.GpioConfiguration_TIMESTAMP_EITHER - UART_UNUSED = _mscl.GpioConfiguration_UART_UNUSED - UART_PORT2_TX = _mscl.GpioConfiguration_UART_PORT2_TX - UART_PORT2_RX = _mscl.GpioConfiguration_UART_PORT2_RX - UART_PORT3_TX = _mscl.GpioConfiguration_UART_PORT3_TX - UART_PORT3_RX = _mscl.GpioConfiguration_UART_PORT3_RX - NONE = _mscl.GpioConfiguration_NONE - OPEN_DRAIN = _mscl.GpioConfiguration_OPEN_DRAIN - PULLDOWN = _mscl.GpioConfiguration_PULLDOWN - PULLUP = _mscl.GpioConfiguration_PULLUP - pinMode = property(_mscl.GpioConfiguration_pinMode_get, _mscl.GpioConfiguration_pinMode_set) - pin = property(_mscl.GpioConfiguration_pin_get, _mscl.GpioConfiguration_pin_set) - feature = property(_mscl.GpioConfiguration_feature_get, _mscl.GpioConfiguration_feature_set) - behavior = property(_mscl.GpioConfiguration_behavior_get, _mscl.GpioConfiguration_behavior_set) - - def pinModeValue(self, *args): - return _mscl.GpioConfiguration_pinModeValue(self, *args) - - def __init__(self): - _mscl.GpioConfiguration_swiginit(self, _mscl.new_GpioConfiguration()) - __swig_destroy__ = _mscl.delete_GpioConfiguration - -# Register GpioConfiguration in _mscl: -_mscl.GpioConfiguration_swigregister(GpioConfiguration) - -DISABLED = _mscl.DISABLED -ENABLED = _mscl.ENABLED -TEST = _mscl.TEST -TEST_PULSE = _mscl.TEST_PULSE -class EventTriggerGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventTriggerGpioParameter_DISABLED - WHILE_HIGH = _mscl.EventTriggerGpioParameter_WHILE_HIGH - WHILE_LOW = _mscl.EventTriggerGpioParameter_WHILE_LOW - EDGE = _mscl.EventTriggerGpioParameter_EDGE - pin = property(_mscl.EventTriggerGpioParameter_pin_get, _mscl.EventTriggerGpioParameter_pin_set) - mode = property(_mscl.EventTriggerGpioParameter_mode_get, _mscl.EventTriggerGpioParameter_mode_set) - - def __init__(self): - _mscl.EventTriggerGpioParameter_swiginit(self, _mscl.new_EventTriggerGpioParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerGpioParameter - -# Register EventTriggerGpioParameter in _mscl: -_mscl.EventTriggerGpioParameter_swigregister(EventTriggerGpioParameter) - -class EventTriggerThresholdParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - WINDOW_TYPE = _mscl.EventTriggerThresholdParameter_WINDOW_TYPE - INTERVAL_TYPE = _mscl.EventTriggerThresholdParameter_INTERVAL_TYPE - type = property(_mscl.EventTriggerThresholdParameter_type_get, _mscl.EventTriggerThresholdParameter_type_set) - lowThreshold = property(_mscl.EventTriggerThresholdParameter_lowThreshold_get, _mscl.EventTriggerThresholdParameter_lowThreshold_set) - highThreshold = property(_mscl.EventTriggerThresholdParameter_highThreshold_get, _mscl.EventTriggerThresholdParameter_highThreshold_set) - - def channel(self, *args): - return _mscl.EventTriggerThresholdParameter_channel(self, *args) - - def channelField(self): - return _mscl.EventTriggerThresholdParameter_channelField(self) - - def channelQualifier(self): - return _mscl.EventTriggerThresholdParameter_channelQualifier(self) - - def channelIndex(self): - return _mscl.EventTriggerThresholdParameter_channelIndex(self) - - def __init__(self): - _mscl.EventTriggerThresholdParameter_swiginit(self, _mscl.new_EventTriggerThresholdParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerThresholdParameter - -# Register EventTriggerThresholdParameter in _mscl: -_mscl.EventTriggerThresholdParameter_swigregister(EventTriggerThresholdParameter) - -class EventTriggerCombinationParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_INPUT_TRIGGERS = _mscl.EventTriggerCombinationParameter_MAX_INPUT_TRIGGERS - LOGIC_NEVER = _mscl.EventTriggerCombinationParameter_LOGIC_NEVER - LOGIC_ALWAYS = _mscl.EventTriggerCombinationParameter_LOGIC_ALWAYS - LOGIC_NONE = _mscl.EventTriggerCombinationParameter_LOGIC_NONE - LOGIC_OR = _mscl.EventTriggerCombinationParameter_LOGIC_OR - LOGIC_NAND = _mscl.EventTriggerCombinationParameter_LOGIC_NAND - LOGIC_XOR_ONE = _mscl.EventTriggerCombinationParameter_LOGIC_XOR_ONE - LOGIC_ONLY_A = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_A - LOGIC_ONLY_B = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_B - LOGIC_ONLY_C = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_C - LOGIC_ONLY_D = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_D - LOGIC_AND_AB = _mscl.EventTriggerCombinationParameter_LOGIC_AND_AB - LOGIC_AB_OR_C = _mscl.EventTriggerCombinationParameter_LOGIC_AB_OR_C - LOGIC_AND = _mscl.EventTriggerCombinationParameter_LOGIC_AND - logicTable = property(_mscl.EventTriggerCombinationParameter_logicTable_get, _mscl.EventTriggerCombinationParameter_logicTable_set) - inputTriggers = property(_mscl.EventTriggerCombinationParameter_inputTriggers_get, _mscl.EventTriggerCombinationParameter_inputTriggers_set) - - def __init__(self): - _mscl.EventTriggerCombinationParameter_swiginit(self, _mscl.new_EventTriggerCombinationParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerCombinationParameter - -# Register EventTriggerCombinationParameter in _mscl: -_mscl.EventTriggerCombinationParameter_swigregister(EventTriggerCombinationParameter) - -class EventTriggerParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerParameters_swiginit(self, _mscl.new_EventTriggerParameters()) - gpio = property(_mscl.EventTriggerParameters_gpio_get, _mscl.EventTriggerParameters_gpio_set) - threshold = property(_mscl.EventTriggerParameters_threshold_get, _mscl.EventTriggerParameters_threshold_set) - combination = property(_mscl.EventTriggerParameters_combination_get, _mscl.EventTriggerParameters_combination_set) - __swig_destroy__ = _mscl.delete_EventTriggerParameters - -# Register EventTriggerParameters in _mscl: -_mscl.EventTriggerParameters_swigregister(EventTriggerParameters) - -class EventTriggerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventTriggerConfiguration_NONE - GPIO_TRIGGER = _mscl.EventTriggerConfiguration_GPIO_TRIGGER - THRESHOLD_TRIGGER = _mscl.EventTriggerConfiguration_THRESHOLD_TRIGGER - COMBINATION_TRIGGER = _mscl.EventTriggerConfiguration_COMBINATION_TRIGGER - instance = property(_mscl.EventTriggerConfiguration_instance_get, _mscl.EventTriggerConfiguration_instance_set) - trigger = property(_mscl.EventTriggerConfiguration_trigger_get, _mscl.EventTriggerConfiguration_trigger_set) - parameters = property(_mscl.EventTriggerConfiguration_parameters_get, _mscl.EventTriggerConfiguration_parameters_set) - - def __init__(self): - _mscl.EventTriggerConfiguration_swiginit(self, _mscl.new_EventTriggerConfiguration()) - __swig_destroy__ = _mscl.delete_EventTriggerConfiguration - -# Register EventTriggerConfiguration in _mscl: -_mscl.EventTriggerConfiguration_swigregister(EventTriggerConfiguration) - -class EventActionGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventActionGpioParameter_DISABLED - ACTIVE_HIGH = _mscl.EventActionGpioParameter_ACTIVE_HIGH - ACTIVE_LOW = _mscl.EventActionGpioParameter_ACTIVE_LOW - ONESHOT_HIGH = _mscl.EventActionGpioParameter_ONESHOT_HIGH - ONESHOT_LOW = _mscl.EventActionGpioParameter_ONESHOT_LOW - TOGGLE = _mscl.EventActionGpioParameter_TOGGLE - pin = property(_mscl.EventActionGpioParameter_pin_get, _mscl.EventActionGpioParameter_pin_set) - mode = property(_mscl.EventActionGpioParameter_mode_get, _mscl.EventActionGpioParameter_mode_set) - - def __init__(self): - _mscl.EventActionGpioParameter_swiginit(self, _mscl.new_EventActionGpioParameter()) - __swig_destroy__ = _mscl.delete_EventActionGpioParameter - -# Register EventActionGpioParameter in _mscl: -_mscl.EventActionGpioParameter_swigregister(EventActionGpioParameter) - -class EventActionMessageParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_DESCRIPTORS = _mscl.EventActionMessageParameter_MAX_DESCRIPTORS - sampleRate = property(_mscl.EventActionMessageParameter_sampleRate_get, _mscl.EventActionMessageParameter_sampleRate_set) - - def dataClass(self): - return _mscl.EventActionMessageParameter_dataClass(self) - - def setChannelFields(self, dataClass, fields): - return _mscl.EventActionMessageParameter_setChannelFields(self, dataClass, fields) - - def getChannelFields(self): - return _mscl.EventActionMessageParameter_getChannelFields(self) - - def __init__(self): - _mscl.EventActionMessageParameter_swiginit(self, _mscl.new_EventActionMessageParameter()) - __swig_destroy__ = _mscl.delete_EventActionMessageParameter - -# Register EventActionMessageParameter in _mscl: -_mscl.EventActionMessageParameter_swigregister(EventActionMessageParameter) - -class EventActionParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventActionParameters_swiginit(self, _mscl.new_EventActionParameters()) - gpio = property(_mscl.EventActionParameters_gpio_get, _mscl.EventActionParameters_gpio_set) - message = property(_mscl.EventActionParameters_message_get, _mscl.EventActionParameters_message_set) - __swig_destroy__ = _mscl.delete_EventActionParameters - -# Register EventActionParameters in _mscl: -_mscl.EventActionParameters_swigregister(EventActionParameters) - -class EventActionConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventActionConfiguration_NONE - GPIO = _mscl.EventActionConfiguration_GPIO - MESSAGE = _mscl.EventActionConfiguration_MESSAGE - instance = property(_mscl.EventActionConfiguration_instance_get, _mscl.EventActionConfiguration_instance_set) - trigger = property(_mscl.EventActionConfiguration_trigger_get, _mscl.EventActionConfiguration_trigger_set) - type = property(_mscl.EventActionConfiguration_type_get, _mscl.EventActionConfiguration_type_set) - parameters = property(_mscl.EventActionConfiguration_parameters_get, _mscl.EventActionConfiguration_parameters_set) - - def __init__(self): - _mscl.EventActionConfiguration_swiginit(self, _mscl.new_EventActionConfiguration()) - __swig_destroy__ = _mscl.delete_EventActionConfiguration - -# Register EventActionConfiguration in _mscl: -_mscl.EventActionConfiguration_swigregister(EventActionConfiguration) - -class EventTriggerInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTriggerInfo_swiginit(self, _mscl.new_EventTriggerInfo(*args)) - ACTIVE = _mscl.EventTriggerInfo_ACTIVE - ENABLED = _mscl.EventTriggerInfo_ENABLED - TEST = _mscl.EventTriggerInfo_TEST - type = property(_mscl.EventTriggerInfo_type_get, _mscl.EventTriggerInfo_type_set) - instanceId = property(_mscl.EventTriggerInfo_instanceId_get, _mscl.EventTriggerInfo_instanceId_set) - - def isActive(self): - return _mscl.EventTriggerInfo_isActive(self) - - def isEnabled(self): - return _mscl.EventTriggerInfo_isEnabled(self) - - def isTestMode(self): - return _mscl.EventTriggerInfo_isTestMode(self) - - def setStatus(self, value): - return _mscl.EventTriggerInfo_setStatus(self, value) - __swig_destroy__ = _mscl.delete_EventTriggerInfo - -# Register EventTriggerInfo in _mscl: -_mscl.EventTriggerInfo_swigregister(EventTriggerInfo) - -class EventActionInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventActionInfo_swiginit(self, _mscl.new_EventActionInfo(*args)) - type = property(_mscl.EventActionInfo_type_get, _mscl.EventActionInfo_type_set) - triggerId = property(_mscl.EventActionInfo_triggerId_get, _mscl.EventActionInfo_triggerId_set) - instanceId = property(_mscl.EventActionInfo_instanceId_get, _mscl.EventActionInfo_instanceId_set) - __swig_destroy__ = _mscl.delete_EventActionInfo - -# Register EventActionInfo in _mscl: -_mscl.EventActionInfo_swigregister(EventActionInfo) - -class MeasurementReferenceFrame(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MeasurementReferenceFrame_swiginit(self, _mscl.new_MeasurementReferenceFrame(*args)) - - def asMipFieldValues(self): - return _mscl.MeasurementReferenceFrame_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.MeasurementReferenceFrame_appendMipFieldValues(self, appendTo) - - def translation(self, *args): - return _mscl.MeasurementReferenceFrame_translation(self, *args) - - def rotation(self, *args): - return _mscl.MeasurementReferenceFrame_rotation(self, *args) - - def errorTrackingEnabled(self): - return _mscl.MeasurementReferenceFrame_errorTrackingEnabled(self) - - def enableErrorTracking(self, enable=True): - return _mscl.MeasurementReferenceFrame_enableErrorTracking(self, enable) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrame - -# Register MeasurementReferenceFrame in _mscl: -_mscl.MeasurementReferenceFrame_swigregister(MeasurementReferenceFrame) - -class MipChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipChannel_swiginit(self, _mscl.new_MipChannel(*args)) - - def channelField(self): - return _mscl.MipChannel_channelField(self) - - def sampleRate(self): - return _mscl.MipChannel_sampleRate(self) - - def rateDecimation(self, sampleRateBase): - return _mscl.MipChannel_rateDecimation(self, sampleRateBase) - __swig_destroy__ = _mscl.delete_MipChannel - -# Register MipChannel in _mscl: -_mscl.MipChannel_swigregister(MipChannel) - -class MipPacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MIP_ACK_NACK_ERROR_NONE = _mscl.MipPacket_MIP_ACK_NACK_ERROR_NONE - MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND - MIP_ACK_NACK_ERROR_CHECKSUM_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_CHECKSUM_INVALID - MIP_ACK_NACK_ERROR_PARAMETER_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_PARAMETER_INVALID - MIP_ACK_NACK_ERROR_COMMAND_FAILED = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_FAILED - MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT - MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET - - def __init__(self): - _mscl.MipPacket_swiginit(self, _mscl.new_MipPacket()) - - @staticmethod - def isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - - def descriptorSet(self): - return _mscl.MipPacket_descriptorSet(self) - - def payload(self): - return _mscl.MipPacket_payload(self) - __swig_destroy__ = _mscl.delete_MipPacket - -# Register MipPacket in _mscl: -_mscl.MipPacket_swigregister(MipPacket) - -def MipPacket_isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - -class MipDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def field(self): - return _mscl.MipDataPoint_field(self) - - def qualifier(self): - return _mscl.MipDataPoint_qualifier(self) - - def hasAddlIdentifiers(self): - return _mscl.MipDataPoint_hasAddlIdentifiers(self) - - def addlIdentifiers(self): - return _mscl.MipDataPoint_addlIdentifiers(self) - - def hasValidFlag(self): - return _mscl.MipDataPoint_hasValidFlag(self) - - def valid(self): - return _mscl.MipDataPoint_valid(self) - - def channelName(self, includeAddlIds=True, consolidatedFormat=False): - return _mscl.MipDataPoint_channelName(self, includeAddlIds, consolidatedFormat) - __swig_destroy__ = _mscl.delete_MipDataPoint - -# Register MipDataPoint in _mscl: -_mscl.MipDataPoint_swigregister(MipDataPoint) - -class ContinuousBIT(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def as_MipDataPoints(self): - return _mscl.ContinuousBIT_as_MipDataPoints(self) - - @staticmethod - def getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - - def data(self): - return _mscl.ContinuousBIT_data(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_bufferOverrun(self) - - def imuClockFault(self): - return _mscl.ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_pressureSelfTestFail(self) - - def filterTimingOverrun(self): - return _mscl.ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.ContinuousBIT_filterTimingUnderrun(self) - -# Register ContinuousBIT in _mscl: -_mscl.ContinuousBIT_swigregister(ContinuousBIT) - -def ContinuousBIT_getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - -class ContinuousBIT_System_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - SYSTEM_CLOCK_FAILURE = _mscl.ContinuousBIT_System_General_SYSTEM_CLOCK_FAILURE - POWER_FAULT = _mscl.ContinuousBIT_System_General_POWER_FAULT - FIRMWARE_FAULT = _mscl.ContinuousBIT_System_General_FIRMWARE_FAULT - TIMING_OVERLOAD = _mscl.ContinuousBIT_System_General_TIMING_OVERLOAD - BUFFER_OVERRUN = _mscl.ContinuousBIT_System_General_BUFFER_OVERRUN - - def flags(self): - return _mscl.ContinuousBIT_System_General_flags(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_System_General_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_System_General_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_System_General_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_System_General_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_System_General_bufferOverrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_General - -# Register ContinuousBIT_System_General in _mscl: -_mscl.ContinuousBIT_System_General_swigregister(ContinuousBIT_System_General) - -class ContinuousBIT_System_Process(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def flags(self): - return _mscl.ContinuousBIT_System_Process_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_Process - -# Register ContinuousBIT_System_Process in _mscl: -_mscl.ContinuousBIT_System_Process_swigregister(ContinuousBIT_System_Process) - -class ContinuousBIT_System(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_System_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_System_GENERAL_FLAGS - PROCESS_FLAGS = _mscl.ContinuousBIT_System_PROCESS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_System_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System - -# Register ContinuousBIT_System in _mscl: -_mscl.ContinuousBIT_System_swigregister(ContinuousBIT_System) - -class ContinuousBIT_IMU_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - CLOCK_FAULT = _mscl.ContinuousBIT_IMU_General_CLOCK_FAULT - COMMUNICATION_FAULT = _mscl.ContinuousBIT_IMU_General_COMMUNICATION_FAULT - TIMING_OVERRUN = _mscl.ContinuousBIT_IMU_General_TIMING_OVERRUN - CALIBRATION_ERROR_ACCEL = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_ACCEL - CALIBRATION_ERROR_GYRO = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_GYRO - CALIBRATION_ERROR_MAG = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_MAG - - def flags(self): - return _mscl.ContinuousBIT_IMU_General_flags(self) - - def clockFault(self): - return _mscl.ContinuousBIT_IMU_General_clockFault(self) - - def communicationFault(self): - return _mscl.ContinuousBIT_IMU_General_communicationFault(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_IMU_General_timingOverrun(self) - - def calibrationErrorAccel(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorAccel(self) - - def calibrationErrorGyro(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorGyro(self) - - def calibrationErrorMag(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorMag(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_General - -# Register ContinuousBIT_IMU_General in _mscl: -_mscl.ContinuousBIT_IMU_General_swigregister(ContinuousBIT_IMU_General) - -class ContinuousBIT_IMU_Sensors(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - ACCEL_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_GENERAL_FAULT - ACCEL_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_OVERRANGE - ACCEL_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_SELF_TEST_FAIL - GYRO_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_GYRO_GENERAL_FAULT - GYRO_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_GYRO_OVERRANGE - GYRO_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_GYRO_SELF_TEST_FAIL - MAG_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_MAG_GENERAL_FAULT - MAG_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_MAG_OVERRANGE - MAG_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_MAG_SELF_TEST_FAIL - PRESSURE_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_GENERAL_FAULT - PRESSURE_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_OVERRANGE - PRESSURE_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_SELF_TEST_FAIL - - def flags(self): - return _mscl.ContinuousBIT_IMU_Sensors_flags(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureSelfTestFail(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_Sensors - -# Register ContinuousBIT_IMU_Sensors in _mscl: -_mscl.ContinuousBIT_IMU_Sensors_swigregister(ContinuousBIT_IMU_Sensors) - -class ContinuousBIT_IMU(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_IMU_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_IMU_GENERAL_FLAGS - SENSORS_FLAGS = _mscl.ContinuousBIT_IMU_SENSORS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_IMU_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU - -# Register ContinuousBIT_IMU in _mscl: -_mscl.ContinuousBIT_IMU_swigregister(ContinuousBIT_IMU) - -class ContinuousBIT_Filter_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - TIMING_OVERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_OVERRUN - TIMING_UNDERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_UNDERRUN - - def flags(self): - return _mscl.ContinuousBIT_Filter_General_flags(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_Filter_General_timingOverrun(self) - - def timingUnderrun(self): - return _mscl.ContinuousBIT_Filter_General_timingUnderrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter_General - -# Register ContinuousBIT_Filter_General in _mscl: -_mscl.ContinuousBIT_Filter_General_swigregister(ContinuousBIT_Filter_General) - -class ContinuousBIT_Filter(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_Filter_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_Filter_GENERAL_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_Filter_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter - -# Register ContinuousBIT_Filter in _mscl: -_mscl.ContinuousBIT_Filter_swigregister(ContinuousBIT_Filter) - -class CV7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_General_swiginit(self, _mscl.new_CV7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_General - -# Register CV7ContinuousBIT_System_General in _mscl: -_mscl.CV7ContinuousBIT_System_General_swigregister(CV7ContinuousBIT_System_General) - -class CV7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_Process_swiginit(self, _mscl.new_CV7ContinuousBIT_System_Process(*args)) - IMU_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_IMU_PROCESS_FAULT - IMU_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_IMU_RATE_MISMATCH - IMU_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_IMU_DROPPED_DATA - IMU_STUCK = _mscl.CV7ContinuousBIT_System_Process_IMU_STUCK - FILTER_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_FILTER_PROCESS_FAULT - FILTER_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_FILTER_DROPPED_DATA - FILTER_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_FILTER_RATE_MISMATCH - FILTER_STUCK = _mscl.CV7ContinuousBIT_System_Process_FILTER_STUCK - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_filterStuck(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_Process - -# Register CV7ContinuousBIT_System_Process in _mscl: -_mscl.CV7ContinuousBIT_System_Process_swigregister(CV7ContinuousBIT_System_Process) - -class CV7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_swiginit(self, _mscl.new_CV7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.CV7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System - -# Register CV7ContinuousBIT_System in _mscl: -_mscl.CV7ContinuousBIT_System_swigregister(CV7ContinuousBIT_System) - -class CV7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_General - -# Register CV7ContinuousBIT_IMU_General in _mscl: -_mscl.CV7ContinuousBIT_IMU_General_swigregister(CV7ContinuousBIT_IMU_General) - -class CV7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_Sensors - -# Register CV7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.CV7ContinuousBIT_IMU_Sensors_swigregister(CV7ContinuousBIT_IMU_Sensors) - -class CV7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU(*args)) - FACTORY_BITS_INVALID = _mscl.CV7ContinuousBIT_IMU_FACTORY_BITS_INVALID - - def general(self): - return _mscl.CV7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.CV7ContinuousBIT_IMU_sensors(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_IMU_factoryBitsInvalid(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU - -# Register CV7ContinuousBIT_IMU in _mscl: -_mscl.CV7ContinuousBIT_IMU_swigregister(CV7ContinuousBIT_IMU) - -class CV7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter_General(*args)) - FAULT = _mscl.CV7ContinuousBIT_Filter_General_FAULT - - def fault(self): - return _mscl.CV7ContinuousBIT_Filter_General_fault(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter_General - -# Register CV7ContinuousBIT_Filter_General in _mscl: -_mscl.CV7ContinuousBIT_Filter_General_swigregister(CV7ContinuousBIT_Filter_General) - -class CV7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter - -# Register CV7ContinuousBIT_Filter in _mscl: -_mscl.CV7ContinuousBIT_Filter_swigregister(CV7ContinuousBIT_Filter) - -class CV7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.CV7ContinuousBIT_swiginit(self, _mscl.new_CV7ContinuousBIT(bytes)) - - def system(self): - return _mscl.CV7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.CV7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.CV7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.CV7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.CV7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.CV7ContinuousBIT_bufferOverrun(self) - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_filterStuck(self) - - def imu(self): - return _mscl.CV7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.CV7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.CV7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.CV7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.CV7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.CV7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.CV7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.CV7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.CV7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.CV7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.CV7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.CV7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.CV7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.CV7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.CV7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.CV7ContinuousBIT_pressureSelfTestFail(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_factoryBitsInvalid(self) - - def filter(self): - return _mscl.CV7ContinuousBIT_filter(self) - - def filterFault(self): - return _mscl.CV7ContinuousBIT_filterFault(self) - - def filterTimingOverrun(self): - return _mscl.CV7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.CV7ContinuousBIT_filterTimingUnderrun(self) - - def as_MipDataPoints(self): - return _mscl.CV7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT - -# Register CV7ContinuousBIT in _mscl: -_mscl.CV7ContinuousBIT_swigregister(CV7ContinuousBIT) - -class GQ7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_General - -# Register GQ7ContinuousBIT_System_General in _mscl: -_mscl.GQ7ContinuousBIT_System_General_swigregister(GQ7ContinuousBIT_System_General) - -class GQ7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_Process_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_Process(*args)) - IMU_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_CONTROL_LINE_FAULT - IMU_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_COMMAND_RESPONSE_FAULT - IMU_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_SPI_TRANSFER_FAULT - IMU_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_DATA_FRAME_FAULT - FILTER_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_CONTROL_LINE_FAULT - FILTER_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_COMMAND_RESPONSE_FAULT - FILTER_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_SPI_TRANSFER_FAULT - FILTER_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_DATA_FRAME_FAULT - GNSS_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_CONTROL_LINE_FAULT - GNSS_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_COMMAND_RESPONSE_FAULT - GNSS_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_SPI_TRANSFER_FAULT - GNSS_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_DATA_FRAME_FAULT - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssDataFrameFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_Process - -# Register GQ7ContinuousBIT_System_Process in _mscl: -_mscl.GQ7ContinuousBIT_System_Process_swigregister(GQ7ContinuousBIT_System_Process) - -class GQ7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_swiginit(self, _mscl.new_GQ7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.GQ7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System - -# Register GQ7ContinuousBIT_System in _mscl: -_mscl.GQ7ContinuousBIT_System_swigregister(GQ7ContinuousBIT_System) - -class GQ7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_General - -# Register GQ7ContinuousBIT_IMU_General in _mscl: -_mscl.GQ7ContinuousBIT_IMU_General_swigregister(GQ7ContinuousBIT_IMU_General) - -class GQ7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_Sensors - -# Register GQ7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.GQ7ContinuousBIT_IMU_Sensors_swigregister(GQ7ContinuousBIT_IMU_Sensors) - -class GQ7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.GQ7ContinuousBIT_IMU_sensors(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU - -# Register GQ7ContinuousBIT_IMU in _mscl: -_mscl.GQ7ContinuousBIT_IMU_swigregister(GQ7ContinuousBIT_IMU) - -class GQ7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_HARDWARE_FAULT - COMMUNICATION_ERROR_IMU_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_IMU_SPI - COMMUNICATION_ERROR_GNSS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_GNSS_SPI - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_COMMS_UART = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_UART - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationError(self) - - def communicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorImuSpi(self) - - def communicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorGnssSpi(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsSpi(self) - - def communicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsUart(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter_General - -# Register GQ7ContinuousBIT_Filter_General in _mscl: -_mscl.GQ7ContinuousBIT_Filter_General_swigregister(GQ7ContinuousBIT_Filter_General) - -class GQ7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter - -# Register GQ7ContinuousBIT_Filter in _mscl: -_mscl.GQ7ContinuousBIT_Filter_swigregister(GQ7ContinuousBIT_Filter) - -class GQ7ContinuousBIT_GNSS_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_HARDWARE_FAULT - COMMUNICATION_ERROR_COMMS_SERIAL = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SERIAL - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_NAV_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_NAV_SPI - GPS_TIME_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_GPS_TIME_FAULT - TIMING_OVERRUN = _mscl.GQ7ContinuousBIT_GNSS_General_TIMING_OVERRUN - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_flags(self) - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationError(self) - - def communicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSerial(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSpi(self) - - def communicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_gpsTimeFault(self) - - def timingOverrun(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_timingOverrun(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_General - -# Register GQ7ContinuousBIT_GNSS_General in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_General_swigregister(GQ7ContinuousBIT_GNSS_General) - -class GQ7ContinuousBIT_GNSS_Receivers(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_Receivers_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_Receivers(*args)) - POWER_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_1 - FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_1 - SHORTED_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_1 - OPEN_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_1 - SOLUTION_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_1 - POWER_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_2 - FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_2 - SHORTED_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_2 - OPEN_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_2 - SOLUTION_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_2 - RTCM_COMMUNICATION_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTCM_COMMUNICATION_FAULT - RTK_DONGLE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTK_DONGLE_FAULT - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_flags(self) - - def powerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver1(self) - - def faultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver1(self) - - def shortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna1(self) - - def openAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna1(self) - - def solutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver1(self) - - def powerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver2(self) - - def faultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver2(self) - - def shortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna2(self) - - def openAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna2(self) - - def solutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtkDongleFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_Receivers - -# Register GQ7ContinuousBIT_GNSS_Receivers in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_Receivers_swigregister(GQ7ContinuousBIT_GNSS_Receivers) - -class GQ7ContinuousBIT_GNSS(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS(*args)) - RESPONSE_OFFSET = _mscl.GQ7ContinuousBIT_GNSS_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_GENERAL_FLAGS - RECEIVERS_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_RECEIVERS_FLAGS - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_flags(self) - - def general(self): - return _mscl.GQ7ContinuousBIT_GNSS_general(self) - - def receivers(self): - return _mscl.GQ7ContinuousBIT_GNSS_receivers(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS - -# Register GQ7ContinuousBIT_GNSS in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_swigregister(GQ7ContinuousBIT_GNSS) - -class GQ7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.GQ7ContinuousBIT_swiginit(self, _mscl.new_GQ7ContinuousBIT(bytes)) - - def system(self): - return _mscl.GQ7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.GQ7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.GQ7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.GQ7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.GQ7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.GQ7ContinuousBIT_bufferOverrun(self) - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_gnssDataFrameFault(self) - - def imu(self): - return _mscl.GQ7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.GQ7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.GQ7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.GQ7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.GQ7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.GQ7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.GQ7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.GQ7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.GQ7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.GQ7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_pressureSelfTestFail(self) - - def filter(self): - return _mscl.GQ7ContinuousBIT_filter(self) - - def filterClockFault(self): - return _mscl.GQ7ContinuousBIT_filterClockFault(self) - - def filterHardwareFault(self): - return _mscl.GQ7ContinuousBIT_filterHardwareFault(self) - - def filterTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingUnderrun(self) - - def filterCommunicationError(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationError(self) - - def filterCommunicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorImuSpi(self) - - def filterCommunicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorGnssSpi(self) - - def filterCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsSpi(self) - - def filterCommunicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsUart(self) - - def gnss(self): - return _mscl.GQ7ContinuousBIT_gnss(self) - - def gnssClockFault(self): - return _mscl.GQ7ContinuousBIT_gnssClockFault(self) - - def gnssHardwareFault(self): - return _mscl.GQ7ContinuousBIT_gnssHardwareFault(self) - - def gnssCommunicationError(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationError(self) - - def gnssCommunicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSerial(self) - - def gnssCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSpi(self) - - def gnssCommunicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_gpsTimeFault(self) - - def gnssTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_gnssTimingOverrun(self) - - def gnssPowerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver1(self) - - def gnssFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver1(self) - - def gnssShortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna1(self) - - def gnssOpenAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna1(self) - - def gnssSolutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver1(self) - - def gnssPowerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver2(self) - - def gnssFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver2(self) - - def gnssShortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna2(self) - - def gnssOpenAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna2(self) - - def gnssSolutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_rtkDongleFault(self) - - def as_MipDataPoints(self): - return _mscl.GQ7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT - -# Register GQ7ContinuousBIT in _mscl: -_mscl.GQ7ContinuousBIT_swigregister(GQ7ContinuousBIT) - -class MipSharedDataFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EVENT_SOURCE_NONE = _mscl.MipSharedDataFields_EVENT_SOURCE_NONE - EVENT_SOURCE_UNKNOWN = _mscl.MipSharedDataFields_EVENT_SOURCE_UNKNOWN - - def __init__(self): - _mscl.MipSharedDataFields_swiginit(self, _mscl.new_MipSharedDataFields()) - - def hasEventSource(self): - return _mscl.MipSharedDataFields_hasEventSource(self) - - def eventSource(self): - return _mscl.MipSharedDataFields_eventSource(self) - - def hasTicks(self): - return _mscl.MipSharedDataFields_hasTicks(self) - - def ticks(self): - return _mscl.MipSharedDataFields_ticks(self) - - def hasDeltaTicks(self): - return _mscl.MipSharedDataFields_hasDeltaTicks(self) - - def deltaTicks(self): - return _mscl.MipSharedDataFields_deltaTicks(self) - - def hasGpsTimestamp(self): - return _mscl.MipSharedDataFields_hasGpsTimestamp(self) - - def gpsTimestamp(self): - return _mscl.MipSharedDataFields_gpsTimestamp(self) - - def gpsTimestampValid(self): - return _mscl.MipSharedDataFields_gpsTimestampValid(self) - - def hasDeltaTime(self): - return _mscl.MipSharedDataFields_hasDeltaTime(self) - - def deltaTime(self): - return _mscl.MipSharedDataFields_deltaTime(self) - - def hasReferenceTime(self): - return _mscl.MipSharedDataFields_hasReferenceTime(self) - - def referenceTime(self): - return _mscl.MipSharedDataFields_referenceTime(self) - - def hasDeltaReferenceTime(self): - return _mscl.MipSharedDataFields_hasDeltaReferenceTime(self) - - def deltaReferenceTime(self): - return _mscl.MipSharedDataFields_deltaReferenceTime(self) - - def hasExternalTimestamp(self): - return _mscl.MipSharedDataFields_hasExternalTimestamp(self) - - def externalTimestamp(self): - return _mscl.MipSharedDataFields_externalTimestamp(self) - - def externalTimestampValid(self): - return _mscl.MipSharedDataFields_externalTimestampValid(self) - - def hasDeltaExternalTime(self): - return _mscl.MipSharedDataFields_hasDeltaExternalTime(self) - - def deltaExternalTime(self): - return _mscl.MipSharedDataFields_deltaExternalTime(self) - - def deltaExternalTimeValid(self): - return _mscl.MipSharedDataFields_deltaExternalTimeValid(self) - - def get(self, *args): - return _mscl.MipSharedDataFields_get(self, *args) - __swig_destroy__ = _mscl.delete_MipSharedDataFields - -# Register MipSharedDataFields in _mscl: -_mscl.MipSharedDataFields_swigregister(MipSharedDataFields) - -class MipDataPacket(MipPacket): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipDataPacket_swiginit(self, _mscl.new_MipDataPacket(*args)) - - def data(self): - return _mscl.MipDataPacket_data(self) - - def shared(self): - return _mscl.MipDataPacket_shared(self) - - def collectedTimestamp(self): - return _mscl.MipDataPacket_collectedTimestamp(self) - - def deviceTimestamp(self): - return _mscl.MipDataPacket_deviceTimestamp(self) - - def hasDeviceTime(self): - return _mscl.MipDataPacket_hasDeviceTime(self) - - def deviceTimeValid(self): - return _mscl.MipDataPacket_deviceTimeValid(self) - - def deviceTimeFlags(self): - return _mscl.MipDataPacket_deviceTimeFlags(self) - __swig_destroy__ = _mscl.delete_MipDataPacket - -# Register MipDataPacket in _mscl: -_mscl.MipDataPacket_swigregister(MipDataPacket) - -class RawBytePacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INVALID_PACKET = _mscl.RawBytePacket_INVALID_PACKET - DATA_PACKET = _mscl.RawBytePacket_DATA_PACKET - COMMAND_PACKET = _mscl.RawBytePacket_COMMAND_PACKET - NO_PACKET_FOUND = _mscl.RawBytePacket_NO_PACKET_FOUND - FROM_READ = _mscl.RawBytePacket_FROM_READ - FROM_SEND = _mscl.RawBytePacket_FROM_SEND - - def __init__(self): - _mscl.RawBytePacket_swiginit(self, _mscl.new_RawBytePacket()) - - def type(self, *args): - return _mscl.RawBytePacket_type(self, *args) - - def source(self, *args): - return _mscl.RawBytePacket_source(self, *args) - - def payload(self, *args): - return _mscl.RawBytePacket_payload(self, *args) - __swig_destroy__ = _mscl.delete_RawBytePacket - -# Register RawBytePacket in _mscl: -_mscl.RawBytePacket_swigregister(RawBytePacket) - -class MipNodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_MipNodeFeatures - - @staticmethod - def isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - - def supportsCategory(self, dataClass): - return _mscl.MipNodeFeatures_supportsCategory(self, dataClass) - - def supportsCommand(self, commandId): - return _mscl.MipNodeFeatures_supportsCommand(self, commandId) - - def supportedCommands(self): - return _mscl.MipNodeFeatures_supportedCommands(self) - - def supportsChannelField(self, fieldId): - return _mscl.MipNodeFeatures_supportsChannelField(self, fieldId) - - def filterSupportedChannelFields(self, fields): - return _mscl.MipNodeFeatures_filterSupportedChannelFields(self, fields) - - def supportedChannelFields(self, *args): - return _mscl.MipNodeFeatures_supportedChannelFields(self, *args) - - def supportedSampleRates(self, dataClass): - return _mscl.MipNodeFeatures_supportedSampleRates(self, dataClass) - - def baseDataRate(self, dataClass): - return _mscl.MipNodeFeatures_baseDataRate(self, dataClass) - - def gnssReceiverInfo(self): - return _mscl.MipNodeFeatures_gnssReceiverInfo(self) - - def supportedGnssSources(self): - return _mscl.MipNodeFeatures_supportedGnssSources(self) - - def supportedSensorRanges(self, *args): - return _mscl.MipNodeFeatures_supportedSensorRanges(self, *args) - - def getCommPortInfo(self): - return _mscl.MipNodeFeatures_getCommPortInfo(self) - - def useLegacyIdsForEnableDataStream(self): - return _mscl.MipNodeFeatures_useLegacyIdsForEnableDataStream(self) - - def supportedHeadingUpdateOptions(self): - return _mscl.MipNodeFeatures_supportedHeadingUpdateOptions(self) - - def supportedHeadingAlignmentMethods(self): - return _mscl.MipNodeFeatures_supportedHeadingAlignmentMethods(self) - - def supportedStatusSelectors(self): - return _mscl.MipNodeFeatures_supportedStatusSelectors(self) - - def supportedEstimationControlOptions(self): - return _mscl.MipNodeFeatures_supportedEstimationControlOptions(self) - - def supportedVehicleModeTypes(self): - return _mscl.MipNodeFeatures_supportedVehicleModeTypes(self) - - def supportedAdaptiveMeasurementModes(self): - return _mscl.MipNodeFeatures_supportedAdaptiveMeasurementModes(self) - - def supportedAdaptiveFilterLevels(self): - return _mscl.MipNodeFeatures_supportedAdaptiveFilterLevels(self) - - def supportedAidingMeasurementOptions(self): - return _mscl.MipNodeFeatures_supportedAidingMeasurementOptions(self) - - def supportedPpsSourceOptions(self): - return _mscl.MipNodeFeatures_supportedPpsSourceOptions(self) - - def supportedGpioPins(self): - return _mscl.MipNodeFeatures_supportedGpioPins(self) - - def supportedGpioPinModes(self, feature, behavior): - return _mscl.MipNodeFeatures_supportedGpioPinModes(self, feature, behavior) - - def supportedGpioBehaviors(self, feature, pin): - return _mscl.MipNodeFeatures_supportedGpioBehaviors(self, feature, pin) - - def supportedGpioFeatures(self, pin): - return _mscl.MipNodeFeatures_supportedGpioFeatures(self, pin) - - def supportedGpioConfigurations(self): - return _mscl.MipNodeFeatures_supportedGpioConfigurations(self) - - def supportedGnssSignalConfigurations(self): - return _mscl.MipNodeFeatures_supportedGnssSignalConfigurations(self) - - def supportedDeclinationSources(self): - return _mscl.MipNodeFeatures_supportedDeclinationSources(self) - - def supportedInclinationSources(self): - return _mscl.MipNodeFeatures_supportedInclinationSources(self) - - def supportedMagneticMagnitudeSources(self): - return _mscl.MipNodeFeatures_supportedMagneticMagnitudeSources(self) - - def supportedEventThresholdChannels(self): - return _mscl.MipNodeFeatures_supportedEventThresholdChannels(self) - - def supportedEventActionInfo(self): - return _mscl.MipNodeFeatures_supportedEventActionInfo(self) - - def supportedEventTriggerInfo(self): - return _mscl.MipNodeFeatures_supportedEventTriggerInfo(self) - - def supportsNorthCompensation(self): - return _mscl.MipNodeFeatures_supportsNorthCompensation(self) - - def supportedLowPassFilterChannelFields(self): - return _mscl.MipNodeFeatures_supportedLowPassFilterChannelFields(self) - - def maxMeasurementReferenceFrameId(self): - return _mscl.MipNodeFeatures_maxMeasurementReferenceFrameId(self) - -# Register MipNodeFeatures in _mscl: -_mscl.MipNodeFeatures_swigregister(MipNodeFeatures) - -def MipNodeFeatures_isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - -class MipNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.MipNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - def getConfigCommandBytes(self): - return _mscl.MipNode_getConfigCommandBytes(self) - - def sendCommandBytes(self, *args): - return _mscl.MipNode_sendCommandBytes(self, *args) - - @staticmethod - def deviceName(serial): - return _mscl.MipNode_deviceName(serial) - - def connection(self): - return _mscl.MipNode_connection(self) - - def features(self): - return _mscl.MipNode_features(self) - - def clearDeviceInfo(self): - return _mscl.MipNode_clearDeviceInfo(self) - - def lastCommunicationTime(self): - return _mscl.MipNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.MipNode_lastDeviceState(self) - - def setLastDeviceState(self, state): - return _mscl.MipNode_setLastDeviceState(self, state) - - def firmwareVersion(self): - return _mscl.MipNode_firmwareVersion(self) - - def model(self): - return _mscl.MipNode_model(self) - - def modelName(self): - return _mscl.MipNode_modelName(self) - - def modelNumber(self): - return _mscl.MipNode_modelNumber(self) - - def serialNumber(self): - return _mscl.MipNode_serialNumber(self) - - def lotNumber(self): - return _mscl.MipNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.MipNode_deviceOptions(self) - - def timeout(self, *args): - return _mscl.MipNode_timeout(self, *args) - - def name(self): - return _mscl.MipNode_name(self) - - def ping(self): - return _mscl.MipNode_ping(self) - - def setToIdle(self): - return _mscl.MipNode_setToIdle(self) - - def cyclePower(self): - return _mscl.MipNode_cyclePower(self) - - def resume(self): - return _mscl.MipNode_resume(self) - - def getCommunicationMode(self): - return _mscl.MipNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.MipNode_setCommunicationMode(self, communicationMode) - - def saveSettingsAsStartup(self, *args): - return _mscl.MipNode_saveSettingsAsStartup(self, *args) - - def loadStartupSettings(self, *args): - return _mscl.MipNode_loadStartupSettings(self, *args) - - def loadFactoryDefaultSettings(self, *args): - return _mscl.MipNode_loadFactoryDefaultSettings(self, *args) - - def setUARTBaudRate(self, *args): - return _mscl.MipNode_setUARTBaudRate(self, *args) - - def getUARTBaudRate(self, portId=1): - return _mscl.MipNode_getUARTBaudRate(self, portId) - - def getRawBytePackets(self, timeout=0, maxPackets=0): - return _mscl.MipNode_getRawBytePackets(self, timeout, maxPackets) - -# Register MipNode in _mscl: -_mscl.MipNode_swigregister(MipNode) - -def MipNode_deviceName(serial): - return _mscl.MipNode_deviceName(serial) - -class InertialNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.InertialNode_swiginit(self, _mscl.new_InertialNode(connection)) - __swig_destroy__ = _mscl.delete_InertialNode - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.InertialNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.InertialNode_totalPackets(self) - - def pollData(self, *args): - return _mscl.InertialNode_pollData(self, *args) - - def getDataRateBase(self, dataClass): - return _mscl.InertialNode_getDataRateBase(self, dataClass) - - def getActiveChannelFields(self, dataClass): - return _mscl.InertialNode_getActiveChannelFields(self, dataClass) - - def setActiveChannelFields(self, dataClass, channels): - return _mscl.InertialNode_setActiveChannelFields(self, dataClass, channels) - - def saveActiveChannelFields(self, dataClass): - return _mscl.InertialNode_saveActiveChannelFields(self, dataClass) - - def setFactoryStreamingChannels(self, option): - return _mscl.InertialNode_setFactoryStreamingChannels(self, option) - - def getInterfaceControl(self, interfaceId): - return _mscl.InertialNode_getInterfaceControl(self, interfaceId) - - def setInterfaceControl(self, *args): - return _mscl.InertialNode_setInterfaceControl(self, *args) - - def getCommunicationMode(self): - return _mscl.InertialNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.InertialNode_setCommunicationMode(self, communicationMode) - - def isDataStreamEnabled(self, dataClass): - return _mscl.InertialNode_isDataStreamEnabled(self, dataClass) - - def enableDataStream(self, dataClass, enable=True, resumeStreaming=True): - return _mscl.InertialNode_enableDataStream(self, dataClass, enable, resumeStreaming) - - def resetFilter(self): - return _mscl.InertialNode_resetFilter(self) - - def runFilter(self): - return _mscl.InertialNode_runFilter(self) - - def getAutoInitialization(self): - return _mscl.InertialNode_getAutoInitialization(self) - - def setAutoInitialization(self, enable): - return _mscl.InertialNode_setAutoInitialization(self, enable) - - def getAltitudeAid(self): - return _mscl.InertialNode_getAltitudeAid(self) - - def setAltitudeAid(self, enable): - return _mscl.InertialNode_setAltitudeAid(self, enable) - - def getPitchRollAid(self): - return _mscl.InertialNode_getPitchRollAid(self) - - def setPitchRollAid(self, enable): - return _mscl.InertialNode_setPitchRollAid(self, enable) - - def enableVerticalGyroConstraint(self, enable): - return _mscl.InertialNode_enableVerticalGyroConstraint(self, enable) - - def verticalGyroConstraintEnabled(self): - return _mscl.InertialNode_verticalGyroConstraintEnabled(self) - - def enableWheeledVehicleConstraint(self, enable): - return _mscl.InertialNode_enableWheeledVehicleConstraint(self, enable) - - def wheeledVehicleConstraintEnabled(self): - return _mscl.InertialNode_wheeledVehicleConstraintEnabled(self) - - def setVelocityZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setVelocityZUPT(self, ZUPTSettings) - - def getVelocityZUPT(self): - return _mscl.InertialNode_getVelocityZUPT(self) - - def setAngularRateZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setAngularRateZUPT(self, ZUPTSettings) - - def getAngularRateZUPT(self): - return _mscl.InertialNode_getAngularRateZUPT(self) - - def cmdedVelZUPT(self): - return _mscl.InertialNode_cmdedVelZUPT(self) - - def cmdedAngRateZUPT(self): - return _mscl.InertialNode_cmdedAngRateZUPT(self) - - def setInitialAttitude(self, attitude): - return _mscl.InertialNode_setInitialAttitude(self, attitude) - - def setInitialHeading(self, heading): - return _mscl.InertialNode_setInitialHeading(self, heading) - - def getInitialFilterConfiguration(self): - return _mscl.InertialNode_getInitialFilterConfiguration(self) - - def setInitialFilterConfiguration(self, filterConfig): - return _mscl.InertialNode_setInitialFilterConfiguration(self, filterConfig) - - def getSensorToVehicleRotation_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleRotation_eulerAngles(self) - - def setSensorToVehicleRotation_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleRotation_eulerAngles(self, angles) - - def getSensorToVehicleRotation_matrix(self): - return _mscl.InertialNode_getSensorToVehicleRotation_matrix(self) - - def setSensorToVehicleRotation_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleRotation_matrix(self, dcm) - - def getSensorToVehicleRotation_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleRotation_quaternion(self) - - def setSensorToVehicleRotation_quaternion(self, rotation): - return _mscl.InertialNode_setSensorToVehicleRotation_quaternion(self, rotation) - - def getSensorToVehicleTransform_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleTransform_eulerAngles(self) - - def setSensorToVehicleTransform_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleTransform_eulerAngles(self, angles) - - def getSensorToVehicleTransform_matrix(self): - return _mscl.InertialNode_getSensorToVehicleTransform_matrix(self) - - def setSensorToVehicleTransform_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleTransform_matrix(self, dcm) - - def getSensorToVehicleTransform_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleTransform_quaternion(self) - - def setSensorToVehicleTransform_quaternion(self, transformation): - return _mscl.InertialNode_setSensorToVehicleTransform_quaternion(self, transformation) - - def getSensorToVehicleOffset(self): - return _mscl.InertialNode_getSensorToVehicleOffset(self) - - def setSensorToVehicleOffset(self, offset): - return _mscl.InertialNode_setSensorToVehicleOffset(self, offset) - - def getAntennaOffset(self): - return _mscl.InertialNode_getAntennaOffset(self) - - def setAntennaOffset(self, offset): - return _mscl.InertialNode_setAntennaOffset(self, offset) - - def getGNSSAssistedFixControl(self): - return _mscl.InertialNode_getGNSSAssistedFixControl(self) - - def setGNSSAssistedFixControl(self, enableAssistedFix): - return _mscl.InertialNode_setGNSSAssistedFixControl(self, enableAssistedFix) - - def getGNSSAssistTimeUpdate(self): - return _mscl.InertialNode_getGNSSAssistTimeUpdate(self) - - def setGNSSAssistTimeUpdate(self, timeUpdate): - return _mscl.InertialNode_setGNSSAssistTimeUpdate(self, timeUpdate) - - def getGPSTimeUpdate(self, timeFrame): - return _mscl.InertialNode_getGPSTimeUpdate(self, timeFrame) - - def setGPSTimeUpdate(self, arg2, timeData): - return _mscl.InertialNode_setGPSTimeUpdate(self, arg2, timeData) - - def setConstellationSettings(self, dataToUse): - return _mscl.InertialNode_setConstellationSettings(self, dataToUse) - - def getConstellationSettings(self): - return _mscl.InertialNode_getConstellationSettings(self) - - def setSBASSettings(self, dataToUse): - return _mscl.InertialNode_setSBASSettings(self, dataToUse) - - def getSBASSettings(self): - return _mscl.InertialNode_getSBASSettings(self) - - def setAccelerometerBias(self, biasVector): - return _mscl.InertialNode_setAccelerometerBias(self, biasVector) - - def getAccelerometerBias(self): - return _mscl.InertialNode_getAccelerometerBias(self) - - def setGyroBias(self, biasVector): - return _mscl.InertialNode_setGyroBias(self, biasVector) - - def getGyroBias(self): - return _mscl.InertialNode_getGyroBias(self) - - def captureGyroBias(self, samplingTime): - return _mscl.InertialNode_captureGyroBias(self, samplingTime) - - def findMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_findMagnetometerCaptureAutoCalibration(self) - - def saveMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_saveMagnetometerCaptureAutoCalibration(self) - - def setMagnetometerSoftIronMatrix(self, matrix): - return _mscl.InertialNode_setMagnetometerSoftIronMatrix(self, matrix) - - def getMagnetometerSoftIronMatrix(self): - return _mscl.InertialNode_getMagnetometerSoftIronMatrix(self) - - def setMagnetometerHardIronOffset(self, offsetVector): - return _mscl.InertialNode_setMagnetometerHardIronOffset(self, offsetVector) - - def getMagnetometerHardIronOffset(self): - return _mscl.InertialNode_getMagnetometerHardIronOffset(self) - - def setConingAndScullingEnable(self, enable): - return _mscl.InertialNode_setConingAndScullingEnable(self, enable) - - def getConingAndScullingEnable(self): - return _mscl.InertialNode_getConingAndScullingEnable(self) - - def setLowPassFilterSettings(self, data): - return _mscl.InertialNode_setLowPassFilterSettings(self, data) - - def getLowPassFilterSettings(self, dataDescriptors): - return _mscl.InertialNode_getLowPassFilterSettings(self, dataDescriptors) - - def setComplementaryFilterSettings(self, data): - return _mscl.InertialNode_setComplementaryFilterSettings(self, data) - - def getComplementaryFilterSettings(self): - return _mscl.InertialNode_getComplementaryFilterSettings(self) - - def getBasicDeviceStatus(self): - return _mscl.InertialNode_getBasicDeviceStatus(self) - - def getDiagnosticDeviceStatus(self): - return _mscl.InertialNode_getDiagnosticDeviceStatus(self) - - def sendRawRTCM_2_3Message(self, theMessage): - return _mscl.InertialNode_sendRawRTCM_2_3Message(self, theMessage) - - def setVehicleDynamicsMode(self, mode): - return _mscl.InertialNode_setVehicleDynamicsMode(self, mode) - - def getVehicleDynamicsMode(self): - return _mscl.InertialNode_getVehicleDynamicsMode(self) - - def setEstimationControlFlags(self, flags): - return _mscl.InertialNode_setEstimationControlFlags(self, flags) - - def getEstimationControlFlags(self): - return _mscl.InertialNode_getEstimationControlFlags(self) - - def setInclinationSource(self, options): - return _mscl.InertialNode_setInclinationSource(self, options) - - def getInclinationSource(self): - return _mscl.InertialNode_getInclinationSource(self) - - def setDeclinationSource(self, options): - return _mscl.InertialNode_setDeclinationSource(self, options) - - def getDeclinationSource(self): - return _mscl.InertialNode_getDeclinationSource(self) - - def setMagneticFieldMagnitudeSource(self, options): - return _mscl.InertialNode_setMagneticFieldMagnitudeSource(self, options) - - def getMagneticFieldMagnitudeSource(self): - return _mscl.InertialNode_getMagneticFieldMagnitudeSource(self) - - def setGNSS_SourceControl(self, gnssSource): - return _mscl.InertialNode_setGNSS_SourceControl(self, gnssSource) - - def getGNSS_SourceControl(self): - return _mscl.InertialNode_getGNSS_SourceControl(self) - - def sendExternalGNSSUpdate(self, gnssUpdateData): - return _mscl.InertialNode_sendExternalGNSSUpdate(self, gnssUpdateData) - - def setHeadingUpdateControl(self, headingUpdateOptions): - return _mscl.InertialNode_setHeadingUpdateControl(self, headingUpdateOptions) - - def tareOrientation(self, axisValue): - return _mscl.InertialNode_tareOrientation(self, axisValue) - - def getHeadingUpdateControl(self): - return _mscl.InertialNode_getHeadingUpdateControl(self) - - def setGravityErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setGravityErrorAdaptiveMeasurement(self, data) - - def getGravityErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getGravityErrorAdaptiveMeasurement(self) - - def setMagnetometerErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagnetometerErrorAdaptiveMeasurement(self, data) - - def getMagnetometerErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagnetometerErrorAdaptiveMeasurement(self) - - def setMagDipAngleErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagDipAngleErrorAdaptiveMeasurement(self, data) - - def getMagDipAngleErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagDipAngleErrorAdaptiveMeasurement(self) - - def setMagNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setMagNoiseStandardDeviation(self, data) - - def getMagNoiseStandardDeviation(self): - return _mscl.InertialNode_getMagNoiseStandardDeviation(self) - - def setGravNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGravNoiseStandardDeviation(self, data) - - def getGravNoiseStandardDeviation(self): - return _mscl.InertialNode_getGravNoiseStandardDeviation(self) - - def setAccelNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setAccelNoiseStandardDeviation(self, data) - - def getAccelNoiseStandardDeviation(self): - return _mscl.InertialNode_getAccelNoiseStandardDeviation(self) - - def setGyroNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGyroNoiseStandardDeviation(self, data) - - def getGyroNoiseStandardDeviation(self): - return _mscl.InertialNode_getGyroNoiseStandardDeviation(self) - - def setPressureAltNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setPressureAltNoiseStandardDeviation(self, data) - - def getPressureAltNoiseStandardDeviation(self): - return _mscl.InertialNode_getPressureAltNoiseStandardDeviation(self) - - def setHardIronOffsetProcessNoise(self, data): - return _mscl.InertialNode_setHardIronOffsetProcessNoise(self, data) - - def getHardIronOffsetProcessNoise(self): - return _mscl.InertialNode_getHardIronOffsetProcessNoise(self) - - def setAccelBiasModelParams(self, data): - return _mscl.InertialNode_setAccelBiasModelParams(self, data) - - def getAccelBiasModelParams(self): - return _mscl.InertialNode_getAccelBiasModelParams(self) - - def setGyroBiasModelParams(self, data): - return _mscl.InertialNode_setGyroBiasModelParams(self, data) - - def getGyroBiasModelParams(self): - return _mscl.InertialNode_getGyroBiasModelParams(self) - - def setSoftIronMatrixProcessNoise(self, data): - return _mscl.InertialNode_setSoftIronMatrixProcessNoise(self, data) - - def getSoftIronMatrixProcessNoise(self): - return _mscl.InertialNode_getSoftIronMatrixProcessNoise(self) - - def setFixedReferencePosition(self, data): - return _mscl.InertialNode_setFixedReferencePosition(self, data) - - def getFixedReferencePosition(self): - return _mscl.InertialNode_getFixedReferencePosition(self) - - def setGPSDynamicsMode(self, data): - return _mscl.InertialNode_setGPSDynamicsMode(self, data) - - def getGPSDynamicsMode(self): - return _mscl.InertialNode_getGPSDynamicsMode(self) - - def setDevicePowerState(self, device, data): - return _mscl.InertialNode_setDevicePowerState(self, device, data) - - def getDevicePowerState(self, device): - return _mscl.InertialNode_getDevicePowerState(self, device) - - def setDeviceStreamFormat(self, device, data): - return _mscl.InertialNode_setDeviceStreamFormat(self, device, data) - - def getDeviceStreamFormat(self, device): - return _mscl.InertialNode_getDeviceStreamFormat(self, device) - - def setSignalConditioningSettings(self, data): - return _mscl.InertialNode_setSignalConditioningSettings(self, data) - - def getSignalConditioningSettings(self): - return _mscl.InertialNode_getSignalConditioningSettings(self) - - def setEnableDisableMeasurements(self, data): - return _mscl.InertialNode_setEnableDisableMeasurements(self, data) - - def getEnableDisableMeasurements(self): - return _mscl.InertialNode_getEnableDisableMeasurements(self) - - def setGravityNoiseMinimum(self, data): - return _mscl.InertialNode_setGravityNoiseMinimum(self, data) - - def getGravityNoiseMinimum(self): - return _mscl.InertialNode_getGravityNoiseMinimum(self) - - def sendExternalHeadingUpdate(self, *args): - return _mscl.InertialNode_sendExternalHeadingUpdate(self, *args) - - def aidingMeasurementEnabled(self, aidingSource): - return _mscl.InertialNode_aidingMeasurementEnabled(self, aidingSource) - - def enableDisableAidingMeasurement(self, aidingSource, enable): - return _mscl.InertialNode_enableDisableAidingMeasurement(self, aidingSource, enable) - - def getAdaptiveFilterOptions(self): - return _mscl.InertialNode_getAdaptiveFilterOptions(self) - - def setAdaptiveFilterOptions(self, options): - return _mscl.InertialNode_setAdaptiveFilterOptions(self, options) - - def getMultiAntennaOffset(self, receiverId): - return _mscl.InertialNode_getMultiAntennaOffset(self, receiverId) - - def setMultiAntennaOffset(self, receiverId, offset): - return _mscl.InertialNode_setMultiAntennaOffset(self, receiverId, offset) - - def getPpsSource(self): - return _mscl.InertialNode_getPpsSource(self) - - def setPpsSource(self, ppsSource): - return _mscl.InertialNode_setPpsSource(self, ppsSource) - - def getOdometerConfig(self): - return _mscl.InertialNode_getOdometerConfig(self) - - def setOdometerConfig(self, config): - return _mscl.InertialNode_setOdometerConfig(self, config) - - def getSensorRange(self, sensorRangeType): - return _mscl.InertialNode_getSensorRange(self, sensorRangeType) - - def setSensorRange(self, *args): - return _mscl.InertialNode_setSensorRange(self, *args) - - def getGpioConfig(self, pin): - return _mscl.InertialNode_getGpioConfig(self, pin) - - def setGpioConfig(self, config): - return _mscl.InertialNode_setGpioConfig(self, config) - - def getGpioState(self, pin): - return _mscl.InertialNode_getGpioState(self, pin) - - def setGpioState(self, pin, state): - return _mscl.InertialNode_setGpioState(self, pin, state) - - def getEventTriggerMode(self, instance): - return _mscl.InertialNode_getEventTriggerMode(self, instance) - - def setEventTriggerMode(self, instance, mode): - return _mscl.InertialNode_setEventTriggerMode(self, instance, mode) - - def getEventTriggerConfig(self, instance): - return _mscl.InertialNode_getEventTriggerConfig(self, instance) - - def setEventTriggerConfig(self, config): - return _mscl.InertialNode_setEventTriggerConfig(self, config) - - def getEventActionConfig(self, instance): - return _mscl.InertialNode_getEventActionConfig(self, instance) - - def setEventActionConfig(self, config, validateSupported=True): - return _mscl.InertialNode_setEventActionConfig(self, config, validateSupported) - - def getAntennaLeverArmCal(self): - return _mscl.InertialNode_getAntennaLeverArmCal(self) - - def setAntennaLeverArmCal(self, config): - return _mscl.InertialNode_setAntennaLeverArmCal(self, config) - - def getRelativePositionReference(self): - return _mscl.InertialNode_getRelativePositionReference(self) - - def setRelativePositionReference(self, ref): - return _mscl.InertialNode_setRelativePositionReference(self, ref) - - def getLeverArmReferenceOffset(self): - return _mscl.InertialNode_getLeverArmReferenceOffset(self) - - def setLeverArmReferenceOffset(self, offset): - return _mscl.InertialNode_setLeverArmReferenceOffset(self, offset) - - def sendExternalSpeedMeasurementUpdate(self, tow, speed, unc): - return _mscl.InertialNode_sendExternalSpeedMeasurementUpdate(self, tow, speed, unc) - - def getSpeedMeasurementOffset(self): - return _mscl.InertialNode_getSpeedMeasurementOffset(self) - - def setSpeedMeasurementOffset(self, offset): - return _mscl.InertialNode_setSpeedMeasurementOffset(self, offset) - - def getGnssSignalConfig(self): - return _mscl.InertialNode_getGnssSignalConfig(self) - - def setGnssSignalConfig(self, config): - return _mscl.InertialNode_setGnssSignalConfig(self, config) - - def getGnssSpartnConfig(self): - return _mscl.InertialNode_getGnssSpartnConfig(self) - - def setGnssSpartnConfig(self, config): - return _mscl.InertialNode_setGnssSpartnConfig(self, config) - - def rtkEnabled(self): - return _mscl.InertialNode_rtkEnabled(self) - - def enableRtk(self, enable): - return _mscl.InertialNode_enableRtk(self, enable) - - def getEventTriggerStatus(self, *args): - return _mscl.InertialNode_getEventTriggerStatus(self, *args) - - def getEventActionStatus(self, *args): - return _mscl.InertialNode_getEventActionStatus(self, *args) - - def getNmeaMessageFormat(self): - return _mscl.InertialNode_getNmeaMessageFormat(self) - - def setNmeaMessageFormat(self, nmeaFormats): - return _mscl.InertialNode_setNmeaMessageFormat(self, nmeaFormats) - - def getAidingMeasurementReferenceFrames(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrames(self, *args) - - def setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds=False): - return _mscl.InertialNode_setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds) - - def getAidingMeasurementReferenceFrame(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrame(self, *args) - - def setAidingMeasurementReferenceFrame(self, id, frame): - return _mscl.InertialNode_setAidingMeasurementReferenceFrame(self, id, frame) - - def setAidingMeasurementResponseMode(self, mode): - return _mscl.InertialNode_setAidingMeasurementResponseMode(self, mode) - - def getAidingMeasurementResponseMode(self): - return _mscl.InertialNode_getAidingMeasurementResponseMode(self) - - def sendAidingMeasurement(self, *args): - return _mscl.InertialNode_sendAidingMeasurement(self, *args) - - def sendAidingMeasurement_readEcho(self, *args): - return _mscl.InertialNode_sendAidingMeasurement_readEcho(self, *args) - -# Register InertialNode in _mscl: -_mscl.InertialNode_swigregister(InertialNode) - -class DisplacementNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.DisplacementNode_swiginit(self, _mscl.new_DisplacementNode(connection)) - __swig_destroy__ = _mscl.delete_DisplacementNode - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.DisplacementNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - @staticmethod - def deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - - def connection(self): - return _mscl.DisplacementNode_connection(self) - - def features(self): - return _mscl.DisplacementNode_features(self) - - def lastCommunicationTime(self): - return _mscl.DisplacementNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.DisplacementNode_lastDeviceState(self) - - def firmwareVersion(self): - return _mscl.DisplacementNode_firmwareVersion(self) - - def model(self): - return _mscl.DisplacementNode_model(self) - - def modelName(self): - return _mscl.DisplacementNode_modelName(self) - - def modelNumber(self): - return _mscl.DisplacementNode_modelNumber(self) - - def serialNumber(self): - return _mscl.DisplacementNode_serialNumber(self) - - def lotNumber(self): - return _mscl.DisplacementNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.DisplacementNode_deviceOptions(self) - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.DisplacementNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.DisplacementNode_totalPackets(self) - - def timeout(self, *args): - return _mscl.DisplacementNode_timeout(self, *args) - - def name(self): - return _mscl.DisplacementNode_name(self) - - def ping(self): - return _mscl.DisplacementNode_ping(self) - - def setToIdle(self): - return _mscl.DisplacementNode_setToIdle(self) - - def cyclePower(self): - return _mscl.DisplacementNode_cyclePower(self) - - def resume(self): - return _mscl.DisplacementNode_resume(self) - - def getDisplacementOutputDataRate(self): - return _mscl.DisplacementNode_getDisplacementOutputDataRate(self) - - def getAnalogToDisplacementCal(self): - return _mscl.DisplacementNode_getAnalogToDisplacementCal(self) - - def setDeviceTime(self, *args): - return _mscl.DisplacementNode_setDeviceTime(self, *args) - -# Register DisplacementNode in _mscl: -_mscl.DisplacementNode_swigregister(DisplacementNode) - -def DisplacementNode_deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - -class RTKNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.RTKNode_swiginit(self, _mscl.new_RTKNode(connection)) - __swig_destroy__ = _mscl.delete_RTKNode - - def getCommunicationMode(self): - return _mscl.RTKNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.RTKNode_setCommunicationMode(self, communicationMode) - - def getDeviceStatusFlags(self): - return _mscl.RTKNode_getDeviceStatusFlags(self) - - def getActivationCode(self): - return _mscl.RTKNode_getActivationCode(self) - - def getStatusBitfieldVersion(self): - return _mscl.RTKNode_getStatusBitfieldVersion(self) - -# Register RTKNode in _mscl: -_mscl.RTKNode_swigregister(RTKNode) - -class ChannelData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelData___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelData___bool__(self) - - def __len__(self): - return _mscl.ChannelData___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelData___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelData___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelData___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelData___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelData___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelData___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelData_pop(self) - - def append(self, x): - return _mscl.ChannelData_append(self, x) - - def empty(self): - return _mscl.ChannelData_empty(self) - - def size(self): - return _mscl.ChannelData_size(self) - - def swap(self, v): - return _mscl.ChannelData_swap(self, v) - - def begin(self): - return _mscl.ChannelData_begin(self) - - def end(self): - return _mscl.ChannelData_end(self) - - def rbegin(self): - return _mscl.ChannelData_rbegin(self) - - def rend(self): - return _mscl.ChannelData_rend(self) - - def clear(self): - return _mscl.ChannelData_clear(self) - - def get_allocator(self): - return _mscl.ChannelData_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelData_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelData_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelData_swiginit(self, _mscl.new_ChannelData(*args)) - - def push_back(self, x): - return _mscl.ChannelData_push_back(self, x) - - def front(self): - return _mscl.ChannelData_front(self) - - def back(self): - return _mscl.ChannelData_back(self) - - def assign(self, n, x): - return _mscl.ChannelData_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelData_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelData_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelData_reserve(self, n) - - def capacity(self): - return _mscl.ChannelData_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelData - -# Register ChannelData in _mscl: -_mscl.ChannelData_swigregister(ChannelData) - -class MipDataPoints(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPoints_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPoints___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPoints___bool__(self) - - def __len__(self): - return _mscl.MipDataPoints___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPoints___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPoints___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPoints___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPoints___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPoints___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPoints___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPoints_pop(self) - - def append(self, x): - return _mscl.MipDataPoints_append(self, x) - - def empty(self): - return _mscl.MipDataPoints_empty(self) - - def size(self): - return _mscl.MipDataPoints_size(self) - - def swap(self, v): - return _mscl.MipDataPoints_swap(self, v) - - def begin(self): - return _mscl.MipDataPoints_begin(self) - - def end(self): - return _mscl.MipDataPoints_end(self) - - def rbegin(self): - return _mscl.MipDataPoints_rbegin(self) - - def rend(self): - return _mscl.MipDataPoints_rend(self) - - def clear(self): - return _mscl.MipDataPoints_clear(self) - - def get_allocator(self): - return _mscl.MipDataPoints_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPoints_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPoints_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPoints_swiginit(self, _mscl.new_MipDataPoints(*args)) - - def push_back(self, x): - return _mscl.MipDataPoints_push_back(self, x) - - def front(self): - return _mscl.MipDataPoints_front(self) - - def back(self): - return _mscl.MipDataPoints_back(self) - - def assign(self, n, x): - return _mscl.MipDataPoints_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPoints_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPoints_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPoints_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPoints_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPoints - -# Register MipDataPoints in _mscl: -_mscl.MipDataPoints_swigregister(MipDataPoints) - -class Bytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bytes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bytes___nonzero__(self) - - def __bool__(self): - return _mscl.Bytes___bool__(self) - - def __len__(self): - return _mscl.Bytes___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bytes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bytes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bytes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bytes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bytes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bytes___setitem__(self, *args) - - def pop(self): - return _mscl.Bytes_pop(self) - - def append(self, x): - return _mscl.Bytes_append(self, x) - - def empty(self): - return _mscl.Bytes_empty(self) - - def size(self): - return _mscl.Bytes_size(self) - - def swap(self, v): - return _mscl.Bytes_swap(self, v) - - def begin(self): - return _mscl.Bytes_begin(self) - - def end(self): - return _mscl.Bytes_end(self) - - def rbegin(self): - return _mscl.Bytes_rbegin(self) - - def rend(self): - return _mscl.Bytes_rend(self) - - def clear(self): - return _mscl.Bytes_clear(self) - - def get_allocator(self): - return _mscl.Bytes_get_allocator(self) - - def pop_back(self): - return _mscl.Bytes_pop_back(self) - - def erase(self, *args): - return _mscl.Bytes_erase(self, *args) - - def __init__(self, *args): - _mscl.Bytes_swiginit(self, _mscl.new_Bytes(*args)) - - def push_back(self, x): - return _mscl.Bytes_push_back(self, x) - - def front(self): - return _mscl.Bytes_front(self) - - def back(self): - return _mscl.Bytes_back(self) - - def assign(self, n, x): - return _mscl.Bytes_assign(self, n, x) - - def resize(self, *args): - return _mscl.Bytes_resize(self, *args) - - def insert(self, *args): - return _mscl.Bytes_insert(self, *args) - - def reserve(self, n): - return _mscl.Bytes_reserve(self, n) - - def capacity(self): - return _mscl.Bytes_capacity(self) - __swig_destroy__ = _mscl.delete_Bytes - -# Register Bytes in _mscl: -_mscl.Bytes_swigregister(Bytes) - -class BytesCollection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.BytesCollection_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.BytesCollection___nonzero__(self) - - def __bool__(self): - return _mscl.BytesCollection___bool__(self) - - def __len__(self): - return _mscl.BytesCollection___len__(self) - - def __getslice__(self, i, j): - return _mscl.BytesCollection___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.BytesCollection___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.BytesCollection___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.BytesCollection___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.BytesCollection___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.BytesCollection___setitem__(self, *args) - - def pop(self): - return _mscl.BytesCollection_pop(self) - - def append(self, x): - return _mscl.BytesCollection_append(self, x) - - def empty(self): - return _mscl.BytesCollection_empty(self) - - def size(self): - return _mscl.BytesCollection_size(self) - - def swap(self, v): - return _mscl.BytesCollection_swap(self, v) - - def begin(self): - return _mscl.BytesCollection_begin(self) - - def end(self): - return _mscl.BytesCollection_end(self) - - def rbegin(self): - return _mscl.BytesCollection_rbegin(self) - - def rend(self): - return _mscl.BytesCollection_rend(self) - - def clear(self): - return _mscl.BytesCollection_clear(self) - - def get_allocator(self): - return _mscl.BytesCollection_get_allocator(self) - - def pop_back(self): - return _mscl.BytesCollection_pop_back(self) - - def erase(self, *args): - return _mscl.BytesCollection_erase(self, *args) - - def __init__(self, *args): - _mscl.BytesCollection_swiginit(self, _mscl.new_BytesCollection(*args)) - - def push_back(self, x): - return _mscl.BytesCollection_push_back(self, x) - - def front(self): - return _mscl.BytesCollection_front(self) - - def back(self): - return _mscl.BytesCollection_back(self) - - def assign(self, n, x): - return _mscl.BytesCollection_assign(self, n, x) - - def resize(self, *args): - return _mscl.BytesCollection_resize(self, *args) - - def insert(self, *args): - return _mscl.BytesCollection_insert(self, *args) - - def reserve(self, n): - return _mscl.BytesCollection_reserve(self, n) - - def capacity(self): - return _mscl.BytesCollection_capacity(self) - __swig_destroy__ = _mscl.delete_BytesCollection - -# Register BytesCollection in _mscl: -_mscl.BytesCollection_swigregister(BytesCollection) - -class DeviceList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceList___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceList___bool__(self) - - def __len__(self): - return _mscl.DeviceList___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceList___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceList___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceList_has_key(self, key) - - def keys(self): - return _mscl.DeviceList_keys(self) - - def values(self): - return _mscl.DeviceList_values(self) - - def items(self): - return _mscl.DeviceList_items(self) - - def __contains__(self, key): - return _mscl.DeviceList___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceList_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceList_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceList___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceList_asdict(self) - - def __init__(self, *args): - _mscl.DeviceList_swiginit(self, _mscl.new_DeviceList(*args)) - - def empty(self): - return _mscl.DeviceList_empty(self) - - def size(self): - return _mscl.DeviceList_size(self) - - def swap(self, v): - return _mscl.DeviceList_swap(self, v) - - def begin(self): - return _mscl.DeviceList_begin(self) - - def end(self): - return _mscl.DeviceList_end(self) - - def rbegin(self): - return _mscl.DeviceList_rbegin(self) - - def rend(self): - return _mscl.DeviceList_rend(self) - - def clear(self): - return _mscl.DeviceList_clear(self) - - def get_allocator(self): - return _mscl.DeviceList_get_allocator(self) - - def count(self, x): - return _mscl.DeviceList_count(self, x) - - def erase(self, *args): - return _mscl.DeviceList_erase(self, *args) - - def find(self, x): - return _mscl.DeviceList_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceList_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceList_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceList - -# Register DeviceList in _mscl: -_mscl.DeviceList_swigregister(DeviceList) - -class NodeDiscoveries(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NodeDiscoveries_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NodeDiscoveries___nonzero__(self) - - def __bool__(self): - return _mscl.NodeDiscoveries___bool__(self) - - def __len__(self): - return _mscl.NodeDiscoveries___len__(self) - - def __getslice__(self, i, j): - return _mscl.NodeDiscoveries___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NodeDiscoveries___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NodeDiscoveries___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NodeDiscoveries___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NodeDiscoveries___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NodeDiscoveries___setitem__(self, *args) - - def pop(self): - return _mscl.NodeDiscoveries_pop(self) - - def append(self, x): - return _mscl.NodeDiscoveries_append(self, x) - - def empty(self): - return _mscl.NodeDiscoveries_empty(self) - - def size(self): - return _mscl.NodeDiscoveries_size(self) - - def swap(self, v): - return _mscl.NodeDiscoveries_swap(self, v) - - def begin(self): - return _mscl.NodeDiscoveries_begin(self) - - def end(self): - return _mscl.NodeDiscoveries_end(self) - - def rbegin(self): - return _mscl.NodeDiscoveries_rbegin(self) - - def rend(self): - return _mscl.NodeDiscoveries_rend(self) - - def clear(self): - return _mscl.NodeDiscoveries_clear(self) - - def get_allocator(self): - return _mscl.NodeDiscoveries_get_allocator(self) - - def pop_back(self): - return _mscl.NodeDiscoveries_pop_back(self) - - def erase(self, *args): - return _mscl.NodeDiscoveries_erase(self, *args) - - def __init__(self, *args): - _mscl.NodeDiscoveries_swiginit(self, _mscl.new_NodeDiscoveries(*args)) - - def push_back(self, x): - return _mscl.NodeDiscoveries_push_back(self, x) - - def front(self): - return _mscl.NodeDiscoveries_front(self) - - def back(self): - return _mscl.NodeDiscoveries_back(self) - - def assign(self, n, x): - return _mscl.NodeDiscoveries_assign(self, n, x) - - def resize(self, *args): - return _mscl.NodeDiscoveries_resize(self, *args) - - def insert(self, *args): - return _mscl.NodeDiscoveries_insert(self, *args) - - def reserve(self, n): - return _mscl.NodeDiscoveries_reserve(self, n) - - def capacity(self): - return _mscl.NodeDiscoveries_capacity(self) - __swig_destroy__ = _mscl.delete_NodeDiscoveries - -# Register NodeDiscoveries in _mscl: -_mscl.NodeDiscoveries_swigregister(NodeDiscoveries) - -class DataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.DataSweeps___bool__(self) - - def __len__(self): - return _mscl.DataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.DataSweeps_pop(self) - - def append(self, x): - return _mscl.DataSweeps_append(self, x) - - def empty(self): - return _mscl.DataSweeps_empty(self) - - def size(self): - return _mscl.DataSweeps_size(self) - - def swap(self, v): - return _mscl.DataSweeps_swap(self, v) - - def begin(self): - return _mscl.DataSweeps_begin(self) - - def end(self): - return _mscl.DataSweeps_end(self) - - def rbegin(self): - return _mscl.DataSweeps_rbegin(self) - - def rend(self): - return _mscl.DataSweeps_rend(self) - - def clear(self): - return _mscl.DataSweeps_clear(self) - - def get_allocator(self): - return _mscl.DataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.DataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.DataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.DataSweeps_swiginit(self, _mscl.new_DataSweeps(*args)) - - def push_back(self, x): - return _mscl.DataSweeps_push_back(self, x) - - def front(self): - return _mscl.DataSweeps_front(self) - - def back(self): - return _mscl.DataSweeps_back(self) - - def assign(self, n, x): - return _mscl.DataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.DataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.DataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.DataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_DataSweeps - -# Register DataSweeps in _mscl: -_mscl.DataSweeps_swigregister(DataSweeps) - -class LoggedDataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LoggedDataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LoggedDataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.LoggedDataSweeps___bool__(self) - - def __len__(self): - return _mscl.LoggedDataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.LoggedDataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LoggedDataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LoggedDataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LoggedDataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LoggedDataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LoggedDataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.LoggedDataSweeps_pop(self) - - def append(self, x): - return _mscl.LoggedDataSweeps_append(self, x) - - def empty(self): - return _mscl.LoggedDataSweeps_empty(self) - - def size(self): - return _mscl.LoggedDataSweeps_size(self) - - def swap(self, v): - return _mscl.LoggedDataSweeps_swap(self, v) - - def begin(self): - return _mscl.LoggedDataSweeps_begin(self) - - def end(self): - return _mscl.LoggedDataSweeps_end(self) - - def rbegin(self): - return _mscl.LoggedDataSweeps_rbegin(self) - - def rend(self): - return _mscl.LoggedDataSweeps_rend(self) - - def clear(self): - return _mscl.LoggedDataSweeps_clear(self) - - def get_allocator(self): - return _mscl.LoggedDataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.LoggedDataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.LoggedDataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.LoggedDataSweeps_swiginit(self, _mscl.new_LoggedDataSweeps(*args)) - - def push_back(self, x): - return _mscl.LoggedDataSweeps_push_back(self, x) - - def front(self): - return _mscl.LoggedDataSweeps_front(self) - - def back(self): - return _mscl.LoggedDataSweeps_back(self) - - def assign(self, n, x): - return _mscl.LoggedDataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.LoggedDataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.LoggedDataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.LoggedDataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.LoggedDataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweeps - -# Register LoggedDataSweeps in _mscl: -_mscl.LoggedDataSweeps_swigregister(LoggedDataSweeps) - -class MipDataPackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPackets___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPackets___bool__(self) - - def __len__(self): - return _mscl.MipDataPackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPackets___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPackets_pop(self) - - def append(self, x): - return _mscl.MipDataPackets_append(self, x) - - def empty(self): - return _mscl.MipDataPackets_empty(self) - - def size(self): - return _mscl.MipDataPackets_size(self) - - def swap(self, v): - return _mscl.MipDataPackets_swap(self, v) - - def begin(self): - return _mscl.MipDataPackets_begin(self) - - def end(self): - return _mscl.MipDataPackets_end(self) - - def rbegin(self): - return _mscl.MipDataPackets_rbegin(self) - - def rend(self): - return _mscl.MipDataPackets_rend(self) - - def clear(self): - return _mscl.MipDataPackets_clear(self) - - def get_allocator(self): - return _mscl.MipDataPackets_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPackets_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPackets_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPackets_swiginit(self, _mscl.new_MipDataPackets(*args)) - - def push_back(self, x): - return _mscl.MipDataPackets_push_back(self, x) - - def front(self): - return _mscl.MipDataPackets_front(self) - - def back(self): - return _mscl.MipDataPackets_back(self) - - def assign(self, n, x): - return _mscl.MipDataPackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPackets_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPackets_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPackets_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPackets_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPackets - -# Register MipDataPackets in _mscl: -_mscl.MipDataPackets_swigregister(MipDataPackets) - -class RawBytePackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RawBytePackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RawBytePackets___nonzero__(self) - - def __bool__(self): - return _mscl.RawBytePackets___bool__(self) - - def __len__(self): - return _mscl.RawBytePackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.RawBytePackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.RawBytePackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.RawBytePackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.RawBytePackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.RawBytePackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.RawBytePackets___setitem__(self, *args) - - def pop(self): - return _mscl.RawBytePackets_pop(self) - - def append(self, x): - return _mscl.RawBytePackets_append(self, x) - - def empty(self): - return _mscl.RawBytePackets_empty(self) - - def size(self): - return _mscl.RawBytePackets_size(self) - - def swap(self, v): - return _mscl.RawBytePackets_swap(self, v) - - def begin(self): - return _mscl.RawBytePackets_begin(self) - - def end(self): - return _mscl.RawBytePackets_end(self) - - def rbegin(self): - return _mscl.RawBytePackets_rbegin(self) - - def rend(self): - return _mscl.RawBytePackets_rend(self) - - def clear(self): - return _mscl.RawBytePackets_clear(self) - - def get_allocator(self): - return _mscl.RawBytePackets_get_allocator(self) - - def pop_back(self): - return _mscl.RawBytePackets_pop_back(self) - - def erase(self, *args): - return _mscl.RawBytePackets_erase(self, *args) - - def __init__(self, *args): - _mscl.RawBytePackets_swiginit(self, _mscl.new_RawBytePackets(*args)) - - def push_back(self, x): - return _mscl.RawBytePackets_push_back(self, x) - - def front(self): - return _mscl.RawBytePackets_front(self) - - def back(self): - return _mscl.RawBytePackets_back(self) - - def assign(self, n, x): - return _mscl.RawBytePackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.RawBytePackets_resize(self, *args) - - def insert(self, *args): - return _mscl.RawBytePackets_insert(self, *args) - - def reserve(self, n): - return _mscl.RawBytePackets_reserve(self, n) - - def capacity(self): - return _mscl.RawBytePackets_capacity(self) - __swig_destroy__ = _mscl.delete_RawBytePackets - -# Register RawBytePackets in _mscl: -_mscl.RawBytePackets_swigregister(RawBytePackets) - -class MipChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannels___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannels___bool__(self) - - def __len__(self): - return _mscl.MipChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannels___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannels_pop(self) - - def append(self, x): - return _mscl.MipChannels_append(self, x) - - def empty(self): - return _mscl.MipChannels_empty(self) - - def size(self): - return _mscl.MipChannels_size(self) - - def swap(self, v): - return _mscl.MipChannels_swap(self, v) - - def begin(self): - return _mscl.MipChannels_begin(self) - - def end(self): - return _mscl.MipChannels_end(self) - - def rbegin(self): - return _mscl.MipChannels_rbegin(self) - - def rend(self): - return _mscl.MipChannels_rend(self) - - def clear(self): - return _mscl.MipChannels_clear(self) - - def get_allocator(self): - return _mscl.MipChannels_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannels_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannels_swiginit(self, _mscl.new_MipChannels(*args)) - - def push_back(self, x): - return _mscl.MipChannels_push_back(self, x) - - def front(self): - return _mscl.MipChannels_front(self) - - def back(self): - return _mscl.MipChannels_back(self) - - def assign(self, n, x): - return _mscl.MipChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannels_reserve(self, n) - - def capacity(self): - return _mscl.MipChannels_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannels - -# Register MipChannels in _mscl: -_mscl.MipChannels_swigregister(MipChannels) - -class DataCollectionMethods(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataCollectionMethods_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataCollectionMethods___nonzero__(self) - - def __bool__(self): - return _mscl.DataCollectionMethods___bool__(self) - - def __len__(self): - return _mscl.DataCollectionMethods___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataCollectionMethods___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataCollectionMethods___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataCollectionMethods___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataCollectionMethods___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataCollectionMethods___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataCollectionMethods___setitem__(self, *args) - - def pop(self): - return _mscl.DataCollectionMethods_pop(self) - - def append(self, x): - return _mscl.DataCollectionMethods_append(self, x) - - def empty(self): - return _mscl.DataCollectionMethods_empty(self) - - def size(self): - return _mscl.DataCollectionMethods_size(self) - - def swap(self, v): - return _mscl.DataCollectionMethods_swap(self, v) - - def begin(self): - return _mscl.DataCollectionMethods_begin(self) - - def end(self): - return _mscl.DataCollectionMethods_end(self) - - def rbegin(self): - return _mscl.DataCollectionMethods_rbegin(self) - - def rend(self): - return _mscl.DataCollectionMethods_rend(self) - - def clear(self): - return _mscl.DataCollectionMethods_clear(self) - - def get_allocator(self): - return _mscl.DataCollectionMethods_get_allocator(self) - - def pop_back(self): - return _mscl.DataCollectionMethods_pop_back(self) - - def erase(self, *args): - return _mscl.DataCollectionMethods_erase(self, *args) - - def __init__(self, *args): - _mscl.DataCollectionMethods_swiginit(self, _mscl.new_DataCollectionMethods(*args)) - - def push_back(self, x): - return _mscl.DataCollectionMethods_push_back(self, x) - - def front(self): - return _mscl.DataCollectionMethods_front(self) - - def back(self): - return _mscl.DataCollectionMethods_back(self) - - def assign(self, n, x): - return _mscl.DataCollectionMethods_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataCollectionMethods_resize(self, *args) - - def insert(self, *args): - return _mscl.DataCollectionMethods_insert(self, *args) - - def reserve(self, n): - return _mscl.DataCollectionMethods_reserve(self, n) - - def capacity(self): - return _mscl.DataCollectionMethods_capacity(self) - __swig_destroy__ = _mscl.delete_DataCollectionMethods - -# Register DataCollectionMethods in _mscl: -_mscl.DataCollectionMethods_swigregister(DataCollectionMethods) - -class DataFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataFormats___nonzero__(self) - - def __bool__(self): - return _mscl.DataFormats___bool__(self) - - def __len__(self): - return _mscl.DataFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataFormats___setitem__(self, *args) - - def pop(self): - return _mscl.DataFormats_pop(self) - - def append(self, x): - return _mscl.DataFormats_append(self, x) - - def empty(self): - return _mscl.DataFormats_empty(self) - - def size(self): - return _mscl.DataFormats_size(self) - - def swap(self, v): - return _mscl.DataFormats_swap(self, v) - - def begin(self): - return _mscl.DataFormats_begin(self) - - def end(self): - return _mscl.DataFormats_end(self) - - def rbegin(self): - return _mscl.DataFormats_rbegin(self) - - def rend(self): - return _mscl.DataFormats_rend(self) - - def clear(self): - return _mscl.DataFormats_clear(self) - - def get_allocator(self): - return _mscl.DataFormats_get_allocator(self) - - def pop_back(self): - return _mscl.DataFormats_pop_back(self) - - def erase(self, *args): - return _mscl.DataFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.DataFormats_swiginit(self, _mscl.new_DataFormats(*args)) - - def push_back(self, x): - return _mscl.DataFormats_push_back(self, x) - - def front(self): - return _mscl.DataFormats_front(self) - - def back(self): - return _mscl.DataFormats_back(self) - - def assign(self, n, x): - return _mscl.DataFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.DataFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.DataFormats_reserve(self, n) - - def capacity(self): - return _mscl.DataFormats_capacity(self) - __swig_destroy__ = _mscl.delete_DataFormats - -# Register DataFormats in _mscl: -_mscl.DataFormats_swigregister(DataFormats) - -class WirelessSampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessSampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessSampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessSampleRates___bool__(self) - - def __len__(self): - return _mscl.WirelessSampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessSampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessSampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessSampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessSampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessSampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessSampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessSampleRates_pop(self) - - def append(self, x): - return _mscl.WirelessSampleRates_append(self, x) - - def empty(self): - return _mscl.WirelessSampleRates_empty(self) - - def size(self): - return _mscl.WirelessSampleRates_size(self) - - def swap(self, v): - return _mscl.WirelessSampleRates_swap(self, v) - - def begin(self): - return _mscl.WirelessSampleRates_begin(self) - - def end(self): - return _mscl.WirelessSampleRates_end(self) - - def rbegin(self): - return _mscl.WirelessSampleRates_rbegin(self) - - def rend(self): - return _mscl.WirelessSampleRates_rend(self) - - def clear(self): - return _mscl.WirelessSampleRates_clear(self) - - def get_allocator(self): - return _mscl.WirelessSampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessSampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessSampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessSampleRates_swiginit(self, _mscl.new_WirelessSampleRates(*args)) - - def push_back(self, x): - return _mscl.WirelessSampleRates_push_back(self, x) - - def front(self): - return _mscl.WirelessSampleRates_front(self) - - def back(self): - return _mscl.WirelessSampleRates_back(self) - - def assign(self, n, x): - return _mscl.WirelessSampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessSampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessSampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessSampleRates_reserve(self, n) - - def capacity(self): - return _mscl.WirelessSampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessSampleRates - -# Register WirelessSampleRates in _mscl: -_mscl.WirelessSampleRates_swigregister(WirelessSampleRates) - -class SamplingModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SamplingModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SamplingModes___nonzero__(self) - - def __bool__(self): - return _mscl.SamplingModes___bool__(self) - - def __len__(self): - return _mscl.SamplingModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SamplingModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SamplingModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SamplingModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SamplingModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SamplingModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SamplingModes___setitem__(self, *args) - - def pop(self): - return _mscl.SamplingModes_pop(self) - - def append(self, x): - return _mscl.SamplingModes_append(self, x) - - def empty(self): - return _mscl.SamplingModes_empty(self) - - def size(self): - return _mscl.SamplingModes_size(self) - - def swap(self, v): - return _mscl.SamplingModes_swap(self, v) - - def begin(self): - return _mscl.SamplingModes_begin(self) - - def end(self): - return _mscl.SamplingModes_end(self) - - def rbegin(self): - return _mscl.SamplingModes_rbegin(self) - - def rend(self): - return _mscl.SamplingModes_rend(self) - - def clear(self): - return _mscl.SamplingModes_clear(self) - - def get_allocator(self): - return _mscl.SamplingModes_get_allocator(self) - - def pop_back(self): - return _mscl.SamplingModes_pop_back(self) - - def erase(self, *args): - return _mscl.SamplingModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SamplingModes_swiginit(self, _mscl.new_SamplingModes(*args)) - - def push_back(self, x): - return _mscl.SamplingModes_push_back(self, x) - - def front(self): - return _mscl.SamplingModes_front(self) - - def back(self): - return _mscl.SamplingModes_back(self) - - def assign(self, n, x): - return _mscl.SamplingModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SamplingModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SamplingModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SamplingModes_reserve(self, n) - - def capacity(self): - return _mscl.SamplingModes_capacity(self) - __swig_destroy__ = _mscl.delete_SamplingModes - -# Register SamplingModes in _mscl: -_mscl.SamplingModes_swigregister(SamplingModes) - -class DefaultModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DefaultModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DefaultModes___nonzero__(self) - - def __bool__(self): - return _mscl.DefaultModes___bool__(self) - - def __len__(self): - return _mscl.DefaultModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DefaultModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DefaultModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DefaultModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DefaultModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DefaultModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DefaultModes___setitem__(self, *args) - - def pop(self): - return _mscl.DefaultModes_pop(self) - - def append(self, x): - return _mscl.DefaultModes_append(self, x) - - def empty(self): - return _mscl.DefaultModes_empty(self) - - def size(self): - return _mscl.DefaultModes_size(self) - - def swap(self, v): - return _mscl.DefaultModes_swap(self, v) - - def begin(self): - return _mscl.DefaultModes_begin(self) - - def end(self): - return _mscl.DefaultModes_end(self) - - def rbegin(self): - return _mscl.DefaultModes_rbegin(self) - - def rend(self): - return _mscl.DefaultModes_rend(self) - - def clear(self): - return _mscl.DefaultModes_clear(self) - - def get_allocator(self): - return _mscl.DefaultModes_get_allocator(self) - - def pop_back(self): - return _mscl.DefaultModes_pop_back(self) - - def erase(self, *args): - return _mscl.DefaultModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DefaultModes_swiginit(self, _mscl.new_DefaultModes(*args)) - - def push_back(self, x): - return _mscl.DefaultModes_push_back(self, x) - - def front(self): - return _mscl.DefaultModes_front(self) - - def back(self): - return _mscl.DefaultModes_back(self) - - def assign(self, n, x): - return _mscl.DefaultModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DefaultModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DefaultModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DefaultModes_reserve(self, n) - - def capacity(self): - return _mscl.DefaultModes_capacity(self) - __swig_destroy__ = _mscl.delete_DefaultModes - -# Register DefaultModes in _mscl: -_mscl.DefaultModes_swigregister(DefaultModes) - -class TransmitPowers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransmitPowers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransmitPowers___nonzero__(self) - - def __bool__(self): - return _mscl.TransmitPowers___bool__(self) - - def __len__(self): - return _mscl.TransmitPowers___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransmitPowers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransmitPowers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransmitPowers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransmitPowers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransmitPowers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransmitPowers___setitem__(self, *args) - - def pop(self): - return _mscl.TransmitPowers_pop(self) - - def append(self, x): - return _mscl.TransmitPowers_append(self, x) - - def empty(self): - return _mscl.TransmitPowers_empty(self) - - def size(self): - return _mscl.TransmitPowers_size(self) - - def swap(self, v): - return _mscl.TransmitPowers_swap(self, v) - - def begin(self): - return _mscl.TransmitPowers_begin(self) - - def end(self): - return _mscl.TransmitPowers_end(self) - - def rbegin(self): - return _mscl.TransmitPowers_rbegin(self) - - def rend(self): - return _mscl.TransmitPowers_rend(self) - - def clear(self): - return _mscl.TransmitPowers_clear(self) - - def get_allocator(self): - return _mscl.TransmitPowers_get_allocator(self) - - def pop_back(self): - return _mscl.TransmitPowers_pop_back(self) - - def erase(self, *args): - return _mscl.TransmitPowers_erase(self, *args) - - def __init__(self, *args): - _mscl.TransmitPowers_swiginit(self, _mscl.new_TransmitPowers(*args)) - - def push_back(self, x): - return _mscl.TransmitPowers_push_back(self, x) - - def front(self): - return _mscl.TransmitPowers_front(self) - - def back(self): - return _mscl.TransmitPowers_back(self) - - def assign(self, n, x): - return _mscl.TransmitPowers_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransmitPowers_resize(self, *args) - - def insert(self, *args): - return _mscl.TransmitPowers_insert(self, *args) - - def reserve(self, n): - return _mscl.TransmitPowers_reserve(self, n) - - def capacity(self): - return _mscl.TransmitPowers_capacity(self) - __swig_destroy__ = _mscl.delete_TransmitPowers - -# Register TransmitPowers in _mscl: -_mscl.TransmitPowers_swigregister(TransmitPowers) - -class ChannelGroupSettings(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroupSettings_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroupSettings___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroupSettings___bool__(self) - - def __len__(self): - return _mscl.ChannelGroupSettings___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroupSettings___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroupSettings___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroupSettings___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroupSettings___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroupSettings___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroupSettings___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroupSettings_pop(self) - - def append(self, x): - return _mscl.ChannelGroupSettings_append(self, x) - - def empty(self): - return _mscl.ChannelGroupSettings_empty(self) - - def size(self): - return _mscl.ChannelGroupSettings_size(self) - - def swap(self, v): - return _mscl.ChannelGroupSettings_swap(self, v) - - def begin(self): - return _mscl.ChannelGroupSettings_begin(self) - - def end(self): - return _mscl.ChannelGroupSettings_end(self) - - def rbegin(self): - return _mscl.ChannelGroupSettings_rbegin(self) - - def rend(self): - return _mscl.ChannelGroupSettings_rend(self) - - def clear(self): - return _mscl.ChannelGroupSettings_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroupSettings_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroupSettings_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroupSettings_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroupSettings_swiginit(self, _mscl.new_ChannelGroupSettings(*args)) - - def push_back(self, x): - return _mscl.ChannelGroupSettings_push_back(self, x) - - def front(self): - return _mscl.ChannelGroupSettings_front(self) - - def back(self): - return _mscl.ChannelGroupSettings_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroupSettings_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroupSettings_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroupSettings_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroupSettings_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroupSettings_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroupSettings - -# Register ChannelGroupSettings in _mscl: -_mscl.ChannelGroupSettings_swigregister(ChannelGroupSettings) - -class FatigueModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.FatigueModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.FatigueModes___nonzero__(self) - - def __bool__(self): - return _mscl.FatigueModes___bool__(self) - - def __len__(self): - return _mscl.FatigueModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.FatigueModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.FatigueModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.FatigueModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.FatigueModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.FatigueModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.FatigueModes___setitem__(self, *args) - - def pop(self): - return _mscl.FatigueModes_pop(self) - - def append(self, x): - return _mscl.FatigueModes_append(self, x) - - def empty(self): - return _mscl.FatigueModes_empty(self) - - def size(self): - return _mscl.FatigueModes_size(self) - - def swap(self, v): - return _mscl.FatigueModes_swap(self, v) - - def begin(self): - return _mscl.FatigueModes_begin(self) - - def end(self): - return _mscl.FatigueModes_end(self) - - def rbegin(self): - return _mscl.FatigueModes_rbegin(self) - - def rend(self): - return _mscl.FatigueModes_rend(self) - - def clear(self): - return _mscl.FatigueModes_clear(self) - - def get_allocator(self): - return _mscl.FatigueModes_get_allocator(self) - - def pop_back(self): - return _mscl.FatigueModes_pop_back(self) - - def erase(self, *args): - return _mscl.FatigueModes_erase(self, *args) - - def __init__(self, *args): - _mscl.FatigueModes_swiginit(self, _mscl.new_FatigueModes(*args)) - - def push_back(self, x): - return _mscl.FatigueModes_push_back(self, x) - - def front(self): - return _mscl.FatigueModes_front(self) - - def back(self): - return _mscl.FatigueModes_back(self) - - def assign(self, n, x): - return _mscl.FatigueModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.FatigueModes_resize(self, *args) - - def insert(self, *args): - return _mscl.FatigueModes_insert(self, *args) - - def reserve(self, n): - return _mscl.FatigueModes_reserve(self, n) - - def capacity(self): - return _mscl.FatigueModes_capacity(self) - __swig_destroy__ = _mscl.delete_FatigueModes - -# Register FatigueModes in _mscl: -_mscl.FatigueModes_swigregister(FatigueModes) - -class Filters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Filters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Filters___nonzero__(self) - - def __bool__(self): - return _mscl.Filters___bool__(self) - - def __len__(self): - return _mscl.Filters___len__(self) - - def __getslice__(self, i, j): - return _mscl.Filters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Filters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Filters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Filters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Filters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Filters___setitem__(self, *args) - - def pop(self): - return _mscl.Filters_pop(self) - - def append(self, x): - return _mscl.Filters_append(self, x) - - def empty(self): - return _mscl.Filters_empty(self) - - def size(self): - return _mscl.Filters_size(self) - - def swap(self, v): - return _mscl.Filters_swap(self, v) - - def begin(self): - return _mscl.Filters_begin(self) - - def end(self): - return _mscl.Filters_end(self) - - def rbegin(self): - return _mscl.Filters_rbegin(self) - - def rend(self): - return _mscl.Filters_rend(self) - - def clear(self): - return _mscl.Filters_clear(self) - - def get_allocator(self): - return _mscl.Filters_get_allocator(self) - - def pop_back(self): - return _mscl.Filters_pop_back(self) - - def erase(self, *args): - return _mscl.Filters_erase(self, *args) - - def __init__(self, *args): - _mscl.Filters_swiginit(self, _mscl.new_Filters(*args)) - - def push_back(self, x): - return _mscl.Filters_push_back(self, x) - - def front(self): - return _mscl.Filters_front(self) - - def back(self): - return _mscl.Filters_back(self) - - def assign(self, n, x): - return _mscl.Filters_assign(self, n, x) - - def resize(self, *args): - return _mscl.Filters_resize(self, *args) - - def insert(self, *args): - return _mscl.Filters_insert(self, *args) - - def reserve(self, n): - return _mscl.Filters_reserve(self, n) - - def capacity(self): - return _mscl.Filters_capacity(self) - __swig_destroy__ = _mscl.delete_Filters - -# Register Filters in _mscl: -_mscl.Filters_swigregister(Filters) - -class HighPassFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HighPassFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HighPassFilters___nonzero__(self) - - def __bool__(self): - return _mscl.HighPassFilters___bool__(self) - - def __len__(self): - return _mscl.HighPassFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.HighPassFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HighPassFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HighPassFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HighPassFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HighPassFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HighPassFilters___setitem__(self, *args) - - def pop(self): - return _mscl.HighPassFilters_pop(self) - - def append(self, x): - return _mscl.HighPassFilters_append(self, x) - - def empty(self): - return _mscl.HighPassFilters_empty(self) - - def size(self): - return _mscl.HighPassFilters_size(self) - - def swap(self, v): - return _mscl.HighPassFilters_swap(self, v) - - def begin(self): - return _mscl.HighPassFilters_begin(self) - - def end(self): - return _mscl.HighPassFilters_end(self) - - def rbegin(self): - return _mscl.HighPassFilters_rbegin(self) - - def rend(self): - return _mscl.HighPassFilters_rend(self) - - def clear(self): - return _mscl.HighPassFilters_clear(self) - - def get_allocator(self): - return _mscl.HighPassFilters_get_allocator(self) - - def pop_back(self): - return _mscl.HighPassFilters_pop_back(self) - - def erase(self, *args): - return _mscl.HighPassFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.HighPassFilters_swiginit(self, _mscl.new_HighPassFilters(*args)) - - def push_back(self, x): - return _mscl.HighPassFilters_push_back(self, x) - - def front(self): - return _mscl.HighPassFilters_front(self) - - def back(self): - return _mscl.HighPassFilters_back(self) - - def assign(self, n, x): - return _mscl.HighPassFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.HighPassFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.HighPassFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.HighPassFilters_reserve(self, n) - - def capacity(self): - return _mscl.HighPassFilters_capacity(self) - __swig_destroy__ = _mscl.delete_HighPassFilters - -# Register HighPassFilters in _mscl: -_mscl.HighPassFilters_swigregister(HighPassFilters) - -class StorageLimitModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StorageLimitModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StorageLimitModes___nonzero__(self) - - def __bool__(self): - return _mscl.StorageLimitModes___bool__(self) - - def __len__(self): - return _mscl.StorageLimitModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.StorageLimitModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StorageLimitModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StorageLimitModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StorageLimitModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StorageLimitModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StorageLimitModes___setitem__(self, *args) - - def pop(self): - return _mscl.StorageLimitModes_pop(self) - - def append(self, x): - return _mscl.StorageLimitModes_append(self, x) - - def empty(self): - return _mscl.StorageLimitModes_empty(self) - - def size(self): - return _mscl.StorageLimitModes_size(self) - - def swap(self, v): - return _mscl.StorageLimitModes_swap(self, v) - - def begin(self): - return _mscl.StorageLimitModes_begin(self) - - def end(self): - return _mscl.StorageLimitModes_end(self) - - def rbegin(self): - return _mscl.StorageLimitModes_rbegin(self) - - def rend(self): - return _mscl.StorageLimitModes_rend(self) - - def clear(self): - return _mscl.StorageLimitModes_clear(self) - - def get_allocator(self): - return _mscl.StorageLimitModes_get_allocator(self) - - def pop_back(self): - return _mscl.StorageLimitModes_pop_back(self) - - def erase(self, *args): - return _mscl.StorageLimitModes_erase(self, *args) - - def __init__(self, *args): - _mscl.StorageLimitModes_swiginit(self, _mscl.new_StorageLimitModes(*args)) - - def push_back(self, x): - return _mscl.StorageLimitModes_push_back(self, x) - - def front(self): - return _mscl.StorageLimitModes_front(self) - - def back(self): - return _mscl.StorageLimitModes_back(self) - - def assign(self, n, x): - return _mscl.StorageLimitModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.StorageLimitModes_resize(self, *args) - - def insert(self, *args): - return _mscl.StorageLimitModes_insert(self, *args) - - def reserve(self, n): - return _mscl.StorageLimitModes_reserve(self, n) - - def capacity(self): - return _mscl.StorageLimitModes_capacity(self) - __swig_destroy__ = _mscl.delete_StorageLimitModes - -# Register StorageLimitModes in _mscl: -_mscl.StorageLimitModes_swigregister(StorageLimitModes) - -class InputRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.InputRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.InputRanges___nonzero__(self) - - def __bool__(self): - return _mscl.InputRanges___bool__(self) - - def __len__(self): - return _mscl.InputRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.InputRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.InputRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.InputRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.InputRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.InputRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.InputRanges___setitem__(self, *args) - - def pop(self): - return _mscl.InputRanges_pop(self) - - def append(self, x): - return _mscl.InputRanges_append(self, x) - - def empty(self): - return _mscl.InputRanges_empty(self) - - def size(self): - return _mscl.InputRanges_size(self) - - def swap(self, v): - return _mscl.InputRanges_swap(self, v) - - def begin(self): - return _mscl.InputRanges_begin(self) - - def end(self): - return _mscl.InputRanges_end(self) - - def rbegin(self): - return _mscl.InputRanges_rbegin(self) - - def rend(self): - return _mscl.InputRanges_rend(self) - - def clear(self): - return _mscl.InputRanges_clear(self) - - def get_allocator(self): - return _mscl.InputRanges_get_allocator(self) - - def pop_back(self): - return _mscl.InputRanges_pop_back(self) - - def erase(self, *args): - return _mscl.InputRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.InputRanges_swiginit(self, _mscl.new_InputRanges(*args)) - - def push_back(self, x): - return _mscl.InputRanges_push_back(self, x) - - def front(self): - return _mscl.InputRanges_front(self) - - def back(self): - return _mscl.InputRanges_back(self) - - def assign(self, n, x): - return _mscl.InputRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.InputRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.InputRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.InputRanges_reserve(self, n) - - def capacity(self): - return _mscl.InputRanges_capacity(self) - __swig_destroy__ = _mscl.delete_InputRanges - -# Register InputRanges in _mscl: -_mscl.InputRanges_swigregister(InputRanges) - -class DataModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataModes___nonzero__(self) - - def __bool__(self): - return _mscl.DataModes___bool__(self) - - def __len__(self): - return _mscl.DataModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataModes___setitem__(self, *args) - - def pop(self): - return _mscl.DataModes_pop(self) - - def append(self, x): - return _mscl.DataModes_append(self, x) - - def empty(self): - return _mscl.DataModes_empty(self) - - def size(self): - return _mscl.DataModes_size(self) - - def swap(self, v): - return _mscl.DataModes_swap(self, v) - - def begin(self): - return _mscl.DataModes_begin(self) - - def end(self): - return _mscl.DataModes_end(self) - - def rbegin(self): - return _mscl.DataModes_rbegin(self) - - def rend(self): - return _mscl.DataModes_rend(self) - - def clear(self): - return _mscl.DataModes_clear(self) - - def get_allocator(self): - return _mscl.DataModes_get_allocator(self) - - def pop_back(self): - return _mscl.DataModes_pop_back(self) - - def erase(self, *args): - return _mscl.DataModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DataModes_swiginit(self, _mscl.new_DataModes(*args)) - - def push_back(self, x): - return _mscl.DataModes_push_back(self, x) - - def front(self): - return _mscl.DataModes_front(self) - - def back(self): - return _mscl.DataModes_back(self) - - def assign(self, n, x): - return _mscl.DataModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DataModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DataModes_reserve(self, n) - - def capacity(self): - return _mscl.DataModes_capacity(self) - __swig_destroy__ = _mscl.delete_DataModes - -# Register DataModes in _mscl: -_mscl.DataModes_swigregister(DataModes) - -class CommProtocols(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommProtocols_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommProtocols___nonzero__(self) - - def __bool__(self): - return _mscl.CommProtocols___bool__(self) - - def __len__(self): - return _mscl.CommProtocols___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommProtocols___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommProtocols___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommProtocols___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommProtocols___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommProtocols___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommProtocols___setitem__(self, *args) - - def pop(self): - return _mscl.CommProtocols_pop(self) - - def append(self, x): - return _mscl.CommProtocols_append(self, x) - - def empty(self): - return _mscl.CommProtocols_empty(self) - - def size(self): - return _mscl.CommProtocols_size(self) - - def swap(self, v): - return _mscl.CommProtocols_swap(self, v) - - def begin(self): - return _mscl.CommProtocols_begin(self) - - def end(self): - return _mscl.CommProtocols_end(self) - - def rbegin(self): - return _mscl.CommProtocols_rbegin(self) - - def rend(self): - return _mscl.CommProtocols_rend(self) - - def clear(self): - return _mscl.CommProtocols_clear(self) - - def get_allocator(self): - return _mscl.CommProtocols_get_allocator(self) - - def pop_back(self): - return _mscl.CommProtocols_pop_back(self) - - def erase(self, *args): - return _mscl.CommProtocols_erase(self, *args) - - def __init__(self, *args): - _mscl.CommProtocols_swiginit(self, _mscl.new_CommProtocols(*args)) - - def push_back(self, x): - return _mscl.CommProtocols_push_back(self, x) - - def front(self): - return _mscl.CommProtocols_front(self) - - def back(self): - return _mscl.CommProtocols_back(self) - - def assign(self, n, x): - return _mscl.CommProtocols_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommProtocols_resize(self, *args) - - def insert(self, *args): - return _mscl.CommProtocols_insert(self, *args) - - def reserve(self, n): - return _mscl.CommProtocols_reserve(self, n) - - def capacity(self): - return _mscl.CommProtocols_capacity(self) - __swig_destroy__ = _mscl.delete_CommProtocols - -# Register CommProtocols in _mscl: -_mscl.CommProtocols_swigregister(CommProtocols) - -class Voltages(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Voltages_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Voltages___nonzero__(self) - - def __bool__(self): - return _mscl.Voltages___bool__(self) - - def __len__(self): - return _mscl.Voltages___len__(self) - - def __getslice__(self, i, j): - return _mscl.Voltages___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Voltages___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Voltages___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Voltages___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Voltages___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Voltages___setitem__(self, *args) - - def pop(self): - return _mscl.Voltages_pop(self) - - def append(self, x): - return _mscl.Voltages_append(self, x) - - def empty(self): - return _mscl.Voltages_empty(self) - - def size(self): - return _mscl.Voltages_size(self) - - def swap(self, v): - return _mscl.Voltages_swap(self, v) - - def begin(self): - return _mscl.Voltages_begin(self) - - def end(self): - return _mscl.Voltages_end(self) - - def rbegin(self): - return _mscl.Voltages_rbegin(self) - - def rend(self): - return _mscl.Voltages_rend(self) - - def clear(self): - return _mscl.Voltages_clear(self) - - def get_allocator(self): - return _mscl.Voltages_get_allocator(self) - - def pop_back(self): - return _mscl.Voltages_pop_back(self) - - def erase(self, *args): - return _mscl.Voltages_erase(self, *args) - - def __init__(self, *args): - _mscl.Voltages_swiginit(self, _mscl.new_Voltages(*args)) - - def push_back(self, x): - return _mscl.Voltages_push_back(self, x) - - def front(self): - return _mscl.Voltages_front(self) - - def back(self): - return _mscl.Voltages_back(self) - - def assign(self, n, x): - return _mscl.Voltages_assign(self, n, x) - - def resize(self, *args): - return _mscl.Voltages_resize(self, *args) - - def insert(self, *args): - return _mscl.Voltages_insert(self, *args) - - def reserve(self, n): - return _mscl.Voltages_reserve(self, n) - - def capacity(self): - return _mscl.Voltages_capacity(self) - __swig_destroy__ = _mscl.delete_Voltages - -# Register Voltages in _mscl: -_mscl.Voltages_swigregister(Voltages) - -class SensorOutputModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorOutputModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorOutputModes___nonzero__(self) - - def __bool__(self): - return _mscl.SensorOutputModes___bool__(self) - - def __len__(self): - return _mscl.SensorOutputModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorOutputModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorOutputModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorOutputModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorOutputModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorOutputModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorOutputModes___setitem__(self, *args) - - def pop(self): - return _mscl.SensorOutputModes_pop(self) - - def append(self, x): - return _mscl.SensorOutputModes_append(self, x) - - def empty(self): - return _mscl.SensorOutputModes_empty(self) - - def size(self): - return _mscl.SensorOutputModes_size(self) - - def swap(self, v): - return _mscl.SensorOutputModes_swap(self, v) - - def begin(self): - return _mscl.SensorOutputModes_begin(self) - - def end(self): - return _mscl.SensorOutputModes_end(self) - - def rbegin(self): - return _mscl.SensorOutputModes_rbegin(self) - - def rend(self): - return _mscl.SensorOutputModes_rend(self) - - def clear(self): - return _mscl.SensorOutputModes_clear(self) - - def get_allocator(self): - return _mscl.SensorOutputModes_get_allocator(self) - - def pop_back(self): - return _mscl.SensorOutputModes_pop_back(self) - - def erase(self, *args): - return _mscl.SensorOutputModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorOutputModes_swiginit(self, _mscl.new_SensorOutputModes(*args)) - - def push_back(self, x): - return _mscl.SensorOutputModes_push_back(self, x) - - def front(self): - return _mscl.SensorOutputModes_front(self) - - def back(self): - return _mscl.SensorOutputModes_back(self) - - def assign(self, n, x): - return _mscl.SensorOutputModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorOutputModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorOutputModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorOutputModes_reserve(self, n) - - def capacity(self): - return _mscl.SensorOutputModes_capacity(self) - __swig_destroy__ = _mscl.delete_SensorOutputModes - -# Register SensorOutputModes in _mscl: -_mscl.SensorOutputModes_swigregister(SensorOutputModes) - -class CfcFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CfcFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CfcFilters___nonzero__(self) - - def __bool__(self): - return _mscl.CfcFilters___bool__(self) - - def __len__(self): - return _mscl.CfcFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.CfcFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CfcFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CfcFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CfcFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CfcFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CfcFilters___setitem__(self, *args) - - def pop(self): - return _mscl.CfcFilters_pop(self) - - def append(self, x): - return _mscl.CfcFilters_append(self, x) - - def empty(self): - return _mscl.CfcFilters_empty(self) - - def size(self): - return _mscl.CfcFilters_size(self) - - def swap(self, v): - return _mscl.CfcFilters_swap(self, v) - - def begin(self): - return _mscl.CfcFilters_begin(self) - - def end(self): - return _mscl.CfcFilters_end(self) - - def rbegin(self): - return _mscl.CfcFilters_rbegin(self) - - def rend(self): - return _mscl.CfcFilters_rend(self) - - def clear(self): - return _mscl.CfcFilters_clear(self) - - def get_allocator(self): - return _mscl.CfcFilters_get_allocator(self) - - def pop_back(self): - return _mscl.CfcFilters_pop_back(self) - - def erase(self, *args): - return _mscl.CfcFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.CfcFilters_swiginit(self, _mscl.new_CfcFilters(*args)) - - def push_back(self, x): - return _mscl.CfcFilters_push_back(self, x) - - def front(self): - return _mscl.CfcFilters_front(self) - - def back(self): - return _mscl.CfcFilters_back(self) - - def assign(self, n, x): - return _mscl.CfcFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.CfcFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.CfcFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.CfcFilters_reserve(self, n) - - def capacity(self): - return _mscl.CfcFilters_capacity(self) - __swig_destroy__ = _mscl.delete_CfcFilters - -# Register CfcFilters in _mscl: -_mscl.CfcFilters_swigregister(CfcFilters) - -class TransducerTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransducerTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransducerTypes___nonzero__(self) - - def __bool__(self): - return _mscl.TransducerTypes___bool__(self) - - def __len__(self): - return _mscl.TransducerTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransducerTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransducerTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransducerTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransducerTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransducerTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransducerTypes___setitem__(self, *args) - - def pop(self): - return _mscl.TransducerTypes_pop(self) - - def append(self, x): - return _mscl.TransducerTypes_append(self, x) - - def empty(self): - return _mscl.TransducerTypes_empty(self) - - def size(self): - return _mscl.TransducerTypes_size(self) - - def swap(self, v): - return _mscl.TransducerTypes_swap(self, v) - - def begin(self): - return _mscl.TransducerTypes_begin(self) - - def end(self): - return _mscl.TransducerTypes_end(self) - - def rbegin(self): - return _mscl.TransducerTypes_rbegin(self) - - def rend(self): - return _mscl.TransducerTypes_rend(self) - - def clear(self): - return _mscl.TransducerTypes_clear(self) - - def get_allocator(self): - return _mscl.TransducerTypes_get_allocator(self) - - def pop_back(self): - return _mscl.TransducerTypes_pop_back(self) - - def erase(self, *args): - return _mscl.TransducerTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.TransducerTypes_swiginit(self, _mscl.new_TransducerTypes(*args)) - - def push_back(self, x): - return _mscl.TransducerTypes_push_back(self, x) - - def front(self): - return _mscl.TransducerTypes_front(self) - - def back(self): - return _mscl.TransducerTypes_back(self) - - def assign(self, n, x): - return _mscl.TransducerTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransducerTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.TransducerTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.TransducerTypes_reserve(self, n) - - def capacity(self): - return _mscl.TransducerTypes_capacity(self) - __swig_destroy__ = _mscl.delete_TransducerTypes - -# Register TransducerTypes in _mscl: -_mscl.TransducerTypes_swigregister(TransducerTypes) - -class EepromMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EepromMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EepromMap___nonzero__(self) - - def __bool__(self): - return _mscl.EepromMap___bool__(self) - - def __len__(self): - return _mscl.EepromMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.EepromMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.EepromMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.EepromMap_has_key(self, key) - - def keys(self): - return _mscl.EepromMap_keys(self) - - def values(self): - return _mscl.EepromMap_values(self) - - def items(self): - return _mscl.EepromMap_items(self) - - def __contains__(self, key): - return _mscl.EepromMap___contains__(self, key) - - def key_iterator(self): - return _mscl.EepromMap_key_iterator(self) - - def value_iterator(self): - return _mscl.EepromMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.EepromMap___setitem__(self, *args) - - def asdict(self): - return _mscl.EepromMap_asdict(self) - - def __init__(self, *args): - _mscl.EepromMap_swiginit(self, _mscl.new_EepromMap(*args)) - - def empty(self): - return _mscl.EepromMap_empty(self) - - def size(self): - return _mscl.EepromMap_size(self) - - def swap(self, v): - return _mscl.EepromMap_swap(self, v) - - def begin(self): - return _mscl.EepromMap_begin(self) - - def end(self): - return _mscl.EepromMap_end(self) - - def rbegin(self): - return _mscl.EepromMap_rbegin(self) - - def rend(self): - return _mscl.EepromMap_rend(self) - - def clear(self): - return _mscl.EepromMap_clear(self) - - def get_allocator(self): - return _mscl.EepromMap_get_allocator(self) - - def count(self, x): - return _mscl.EepromMap_count(self, x) - - def erase(self, *args): - return _mscl.EepromMap_erase(self, *args) - - def find(self, x): - return _mscl.EepromMap_find(self, x) - - def lower_bound(self, x): - return _mscl.EepromMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.EepromMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_EepromMap - -# Register EepromMap in _mscl: -_mscl.EepromMap_swigregister(EepromMap) - -class DerivedChannelMasks(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DerivedChannelMasks_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DerivedChannelMasks___nonzero__(self) - - def __bool__(self): - return _mscl.DerivedChannelMasks___bool__(self) - - def __len__(self): - return _mscl.DerivedChannelMasks___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DerivedChannelMasks___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DerivedChannelMasks___delitem__(self, key) - - def has_key(self, key): - return _mscl.DerivedChannelMasks_has_key(self, key) - - def keys(self): - return _mscl.DerivedChannelMasks_keys(self) - - def values(self): - return _mscl.DerivedChannelMasks_values(self) - - def items(self): - return _mscl.DerivedChannelMasks_items(self) - - def __contains__(self, key): - return _mscl.DerivedChannelMasks___contains__(self, key) - - def key_iterator(self): - return _mscl.DerivedChannelMasks_key_iterator(self) - - def value_iterator(self): - return _mscl.DerivedChannelMasks_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DerivedChannelMasks___setitem__(self, *args) - - def asdict(self): - return _mscl.DerivedChannelMasks_asdict(self) - - def __init__(self, *args): - _mscl.DerivedChannelMasks_swiginit(self, _mscl.new_DerivedChannelMasks(*args)) - - def empty(self): - return _mscl.DerivedChannelMasks_empty(self) - - def size(self): - return _mscl.DerivedChannelMasks_size(self) - - def swap(self, v): - return _mscl.DerivedChannelMasks_swap(self, v) - - def begin(self): - return _mscl.DerivedChannelMasks_begin(self) - - def end(self): - return _mscl.DerivedChannelMasks_end(self) - - def rbegin(self): - return _mscl.DerivedChannelMasks_rbegin(self) - - def rend(self): - return _mscl.DerivedChannelMasks_rend(self) - - def clear(self): - return _mscl.DerivedChannelMasks_clear(self) - - def get_allocator(self): - return _mscl.DerivedChannelMasks_get_allocator(self) - - def count(self, x): - return _mscl.DerivedChannelMasks_count(self, x) - - def erase(self, *args): - return _mscl.DerivedChannelMasks_erase(self, *args) - - def find(self, x): - return _mscl.DerivedChannelMasks_find(self, x) - - def lower_bound(self, x): - return _mscl.DerivedChannelMasks_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DerivedChannelMasks_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DerivedChannelMasks - -# Register DerivedChannelMasks in _mscl: -_mscl.DerivedChannelMasks_swigregister(DerivedChannelMasks) - -class DeviceStatusMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusMap_keys(self) - - def values(self): - return _mscl.DeviceStatusMap_values(self) - - def items(self): - return _mscl.DeviceStatusMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusMap_swiginit(self, _mscl.new_DeviceStatusMap(*args)) - - def empty(self): - return _mscl.DeviceStatusMap_empty(self) - - def size(self): - return _mscl.DeviceStatusMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusMap_begin(self) - - def end(self): - return _mscl.DeviceStatusMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusMap - -# Register DeviceStatusMap in _mscl: -_mscl.DeviceStatusMap_swigregister(DeviceStatusMap) - -class DeviceStatusValueMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusValueMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusValueMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusValueMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusValueMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusValueMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusValueMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusValueMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusValueMap_keys(self) - - def values(self): - return _mscl.DeviceStatusValueMap_values(self) - - def items(self): - return _mscl.DeviceStatusValueMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusValueMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusValueMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusValueMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusValueMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusValueMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusValueMap_swiginit(self, _mscl.new_DeviceStatusValueMap(*args)) - - def empty(self): - return _mscl.DeviceStatusValueMap_empty(self) - - def size(self): - return _mscl.DeviceStatusValueMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusValueMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusValueMap_begin(self) - - def end(self): - return _mscl.DeviceStatusValueMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusValueMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusValueMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusValueMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusValueMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusValueMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusValueMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusValueMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusValueMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusValueMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusValueMap - -# Register DeviceStatusValueMap in _mscl: -_mscl.DeviceStatusValueMap_swigregister(DeviceStatusValueMap) - -class SampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.SampleRates___bool__(self) - - def __len__(self): - return _mscl.SampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.SampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.SampleRates_pop(self) - - def append(self, x): - return _mscl.SampleRates_append(self, x) - - def empty(self): - return _mscl.SampleRates_empty(self) - - def size(self): - return _mscl.SampleRates_size(self) - - def swap(self, v): - return _mscl.SampleRates_swap(self, v) - - def begin(self): - return _mscl.SampleRates_begin(self) - - def end(self): - return _mscl.SampleRates_end(self) - - def rbegin(self): - return _mscl.SampleRates_rbegin(self) - - def rend(self): - return _mscl.SampleRates_rend(self) - - def clear(self): - return _mscl.SampleRates_clear(self) - - def get_allocator(self): - return _mscl.SampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.SampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.SampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.SampleRates_swiginit(self, _mscl.new_SampleRates(*args)) - - def push_back(self, x): - return _mscl.SampleRates_push_back(self, x) - - def front(self): - return _mscl.SampleRates_front(self) - - def back(self): - return _mscl.SampleRates_back(self) - - def assign(self, n, x): - return _mscl.SampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.SampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.SampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.SampleRates_reserve(self, n) - - def capacity(self): - return _mscl.SampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_SampleRates - -# Register SampleRates in _mscl: -_mscl.SampleRates_swigregister(SampleRates) - -class ConfigIssues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConfigIssues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConfigIssues___nonzero__(self) - - def __bool__(self): - return _mscl.ConfigIssues___bool__(self) - - def __len__(self): - return _mscl.ConfigIssues___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConfigIssues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConfigIssues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConfigIssues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConfigIssues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConfigIssues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConfigIssues___setitem__(self, *args) - - def pop(self): - return _mscl.ConfigIssues_pop(self) - - def append(self, x): - return _mscl.ConfigIssues_append(self, x) - - def empty(self): - return _mscl.ConfigIssues_empty(self) - - def size(self): - return _mscl.ConfigIssues_size(self) - - def swap(self, v): - return _mscl.ConfigIssues_swap(self, v) - - def begin(self): - return _mscl.ConfigIssues_begin(self) - - def end(self): - return _mscl.ConfigIssues_end(self) - - def rbegin(self): - return _mscl.ConfigIssues_rbegin(self) - - def rend(self): - return _mscl.ConfigIssues_rend(self) - - def clear(self): - return _mscl.ConfigIssues_clear(self) - - def get_allocator(self): - return _mscl.ConfigIssues_get_allocator(self) - - def pop_back(self): - return _mscl.ConfigIssues_pop_back(self) - - def erase(self, *args): - return _mscl.ConfigIssues_erase(self, *args) - - def __init__(self, *args): - _mscl.ConfigIssues_swiginit(self, _mscl.new_ConfigIssues(*args)) - - def push_back(self, x): - return _mscl.ConfigIssues_push_back(self, x) - - def front(self): - return _mscl.ConfigIssues_front(self) - - def back(self): - return _mscl.ConfigIssues_back(self) - - def assign(self, n, x): - return _mscl.ConfigIssues_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConfigIssues_resize(self, *args) - - def insert(self, *args): - return _mscl.ConfigIssues_insert(self, *args) - - def reserve(self, n): - return _mscl.ConfigIssues_reserve(self, n) - - def capacity(self): - return _mscl.ConfigIssues_capacity(self) - __swig_destroy__ = _mscl.delete_ConfigIssues - -# Register ConfigIssues in _mscl: -_mscl.ConfigIssues_swigregister(ConfigIssues) - -class MipChannelFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelFields_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelFields___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelFields___bool__(self) - - def __len__(self): - return _mscl.MipChannelFields___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelFields___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelFields___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelFields___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelFields___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelFields___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelFields___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelFields_pop(self) - - def append(self, x): - return _mscl.MipChannelFields_append(self, x) - - def empty(self): - return _mscl.MipChannelFields_empty(self) - - def size(self): - return _mscl.MipChannelFields_size(self) - - def swap(self, v): - return _mscl.MipChannelFields_swap(self, v) - - def begin(self): - return _mscl.MipChannelFields_begin(self) - - def end(self): - return _mscl.MipChannelFields_end(self) - - def rbegin(self): - return _mscl.MipChannelFields_rbegin(self) - - def rend(self): - return _mscl.MipChannelFields_rend(self) - - def clear(self): - return _mscl.MipChannelFields_clear(self) - - def get_allocator(self): - return _mscl.MipChannelFields_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelFields_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelFields_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelFields_swiginit(self, _mscl.new_MipChannelFields(*args)) - - def push_back(self, x): - return _mscl.MipChannelFields_push_back(self, x) - - def front(self): - return _mscl.MipChannelFields_front(self) - - def back(self): - return _mscl.MipChannelFields_back(self) - - def assign(self, n, x): - return _mscl.MipChannelFields_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelFields_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelFields_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelFields_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelFields_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelFields - -# Register MipChannelFields in _mscl: -_mscl.MipChannelFields_swigregister(MipChannelFields) - -class MipCommands(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommands_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommands___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommands___bool__(self) - - def __len__(self): - return _mscl.MipCommands___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommands___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommands___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommands___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommands___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommands___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommands___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommands_pop(self) - - def append(self, x): - return _mscl.MipCommands_append(self, x) - - def empty(self): - return _mscl.MipCommands_empty(self) - - def size(self): - return _mscl.MipCommands_size(self) - - def swap(self, v): - return _mscl.MipCommands_swap(self, v) - - def begin(self): - return _mscl.MipCommands_begin(self) - - def end(self): - return _mscl.MipCommands_end(self) - - def rbegin(self): - return _mscl.MipCommands_rbegin(self) - - def rend(self): - return _mscl.MipCommands_rend(self) - - def clear(self): - return _mscl.MipCommands_clear(self) - - def get_allocator(self): - return _mscl.MipCommands_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommands_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommands_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommands_swiginit(self, _mscl.new_MipCommands(*args)) - - def push_back(self, x): - return _mscl.MipCommands_push_back(self, x) - - def front(self): - return _mscl.MipCommands_front(self) - - def back(self): - return _mscl.MipCommands_back(self) - - def assign(self, n, x): - return _mscl.MipCommands_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommands_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommands_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommands_reserve(self, n) - - def capacity(self): - return _mscl.MipCommands_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommands - -# Register MipCommands in _mscl: -_mscl.MipCommands_swigregister(MipCommands) - -class MipDataClasses(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataClasses_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataClasses___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataClasses___bool__(self) - - def __len__(self): - return _mscl.MipDataClasses___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataClasses___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataClasses___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataClasses___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataClasses___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataClasses___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataClasses___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataClasses_pop(self) - - def append(self, x): - return _mscl.MipDataClasses_append(self, x) - - def empty(self): - return _mscl.MipDataClasses_empty(self) - - def size(self): - return _mscl.MipDataClasses_size(self) - - def swap(self, v): - return _mscl.MipDataClasses_swap(self, v) - - def begin(self): - return _mscl.MipDataClasses_begin(self) - - def end(self): - return _mscl.MipDataClasses_end(self) - - def rbegin(self): - return _mscl.MipDataClasses_rbegin(self) - - def rend(self): - return _mscl.MipDataClasses_rend(self) - - def clear(self): - return _mscl.MipDataClasses_clear(self) - - def get_allocator(self): - return _mscl.MipDataClasses_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataClasses_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataClasses_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataClasses_swiginit(self, _mscl.new_MipDataClasses(*args)) - - def push_back(self, x): - return _mscl.MipDataClasses_push_back(self, x) - - def front(self): - return _mscl.MipDataClasses_front(self) - - def back(self): - return _mscl.MipDataClasses_back(self) - - def assign(self, n, x): - return _mscl.MipDataClasses_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataClasses_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataClasses_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataClasses_reserve(self, n) - - def capacity(self): - return _mscl.MipDataClasses_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataClasses - -# Register MipDataClasses in _mscl: -_mscl.MipDataClasses_swigregister(MipDataClasses) - -class MipChannelIdentifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelIdentifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelIdentifiers___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelIdentifiers___bool__(self) - - def __len__(self): - return _mscl.MipChannelIdentifiers___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelIdentifiers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelIdentifiers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelIdentifiers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelIdentifiers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelIdentifiers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelIdentifiers___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelIdentifiers_pop(self) - - def append(self, x): - return _mscl.MipChannelIdentifiers_append(self, x) - - def empty(self): - return _mscl.MipChannelIdentifiers_empty(self) - - def size(self): - return _mscl.MipChannelIdentifiers_size(self) - - def swap(self, v): - return _mscl.MipChannelIdentifiers_swap(self, v) - - def begin(self): - return _mscl.MipChannelIdentifiers_begin(self) - - def end(self): - return _mscl.MipChannelIdentifiers_end(self) - - def rbegin(self): - return _mscl.MipChannelIdentifiers_rbegin(self) - - def rend(self): - return _mscl.MipChannelIdentifiers_rend(self) - - def clear(self): - return _mscl.MipChannelIdentifiers_clear(self) - - def get_allocator(self): - return _mscl.MipChannelIdentifiers_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelIdentifiers_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelIdentifiers_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelIdentifiers_swiginit(self, _mscl.new_MipChannelIdentifiers(*args)) - - def push_back(self, x): - return _mscl.MipChannelIdentifiers_push_back(self, x) - - def front(self): - return _mscl.MipChannelIdentifiers_front(self) - - def back(self): - return _mscl.MipChannelIdentifiers_back(self) - - def assign(self, n, x): - return _mscl.MipChannelIdentifiers_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelIdentifiers_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelIdentifiers_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelIdentifiers_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelIdentifiers_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelIdentifiers - -# Register MipChannelIdentifiers in _mscl: -_mscl.MipChannelIdentifiers_swigregister(MipChannelIdentifiers) - -class MipCommandSet(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandSet_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandSet___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandSet___bool__(self) - - def __len__(self): - return _mscl.MipCommandSet___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandSet___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandSet___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandSet___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandSet___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandSet___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandSet___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandSet_pop(self) - - def append(self, x): - return _mscl.MipCommandSet_append(self, x) - - def empty(self): - return _mscl.MipCommandSet_empty(self) - - def size(self): - return _mscl.MipCommandSet_size(self) - - def swap(self, v): - return _mscl.MipCommandSet_swap(self, v) - - def begin(self): - return _mscl.MipCommandSet_begin(self) - - def end(self): - return _mscl.MipCommandSet_end(self) - - def rbegin(self): - return _mscl.MipCommandSet_rbegin(self) - - def rend(self): - return _mscl.MipCommandSet_rend(self) - - def clear(self): - return _mscl.MipCommandSet_clear(self) - - def get_allocator(self): - return _mscl.MipCommandSet_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandSet_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandSet_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandSet_swiginit(self, _mscl.new_MipCommandSet(*args)) - - def push_back(self, x): - return _mscl.MipCommandSet_push_back(self, x) - - def front(self): - return _mscl.MipCommandSet_front(self) - - def back(self): - return _mscl.MipCommandSet_back(self) - - def assign(self, n, x): - return _mscl.MipCommandSet_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandSet_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandSet_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandSet_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandSet_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandSet - -# Register MipCommandSet in _mscl: -_mscl.MipCommandSet_swigregister(MipCommandSet) - -class MipFieldValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipFieldValues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipFieldValues___nonzero__(self) - - def __bool__(self): - return _mscl.MipFieldValues___bool__(self) - - def __len__(self): - return _mscl.MipFieldValues___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipFieldValues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipFieldValues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipFieldValues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipFieldValues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipFieldValues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipFieldValues___setitem__(self, *args) - - def pop(self): - return _mscl.MipFieldValues_pop(self) - - def append(self, x): - return _mscl.MipFieldValues_append(self, x) - - def empty(self): - return _mscl.MipFieldValues_empty(self) - - def size(self): - return _mscl.MipFieldValues_size(self) - - def swap(self, v): - return _mscl.MipFieldValues_swap(self, v) - - def begin(self): - return _mscl.MipFieldValues_begin(self) - - def end(self): - return _mscl.MipFieldValues_end(self) - - def rbegin(self): - return _mscl.MipFieldValues_rbegin(self) - - def rend(self): - return _mscl.MipFieldValues_rend(self) - - def clear(self): - return _mscl.MipFieldValues_clear(self) - - def get_allocator(self): - return _mscl.MipFieldValues_get_allocator(self) - - def pop_back(self): - return _mscl.MipFieldValues_pop_back(self) - - def erase(self, *args): - return _mscl.MipFieldValues_erase(self, *args) - - def __init__(self, *args): - _mscl.MipFieldValues_swiginit(self, _mscl.new_MipFieldValues(*args)) - - def push_back(self, x): - return _mscl.MipFieldValues_push_back(self, x) - - def front(self): - return _mscl.MipFieldValues_front(self) - - def back(self): - return _mscl.MipFieldValues_back(self) - - def assign(self, n, x): - return _mscl.MipFieldValues_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipFieldValues_resize(self, *args) - - def insert(self, *args): - return _mscl.MipFieldValues_insert(self, *args) - - def reserve(self, n): - return _mscl.MipFieldValues_reserve(self, n) - - def capacity(self): - return _mscl.MipFieldValues_capacity(self) - __swig_destroy__ = _mscl.delete_MipFieldValues - -# Register MipFieldValues in _mscl: -_mscl.MipFieldValues_swigregister(MipFieldValues) - -class MipCommandParamPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipCommandParamPair_swiginit(self, _mscl.new_MipCommandParamPair(*args)) - first = property(_mscl.MipCommandParamPair_first_get, _mscl.MipCommandParamPair_first_set) - second = property(_mscl.MipCommandParamPair_second_get, _mscl.MipCommandParamPair_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_MipCommandParamPair - -# Register MipCommandParamPair in _mscl: -_mscl.MipCommandParamPair_swigregister(MipCommandParamPair) - -class MipCommandParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandParameters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandParameters___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandParameters___bool__(self) - - def __len__(self): - return _mscl.MipCommandParameters___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandParameters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandParameters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandParameters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandParameters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandParameters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandParameters___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandParameters_pop(self) - - def append(self, x): - return _mscl.MipCommandParameters_append(self, x) - - def empty(self): - return _mscl.MipCommandParameters_empty(self) - - def size(self): - return _mscl.MipCommandParameters_size(self) - - def swap(self, v): - return _mscl.MipCommandParameters_swap(self, v) - - def begin(self): - return _mscl.MipCommandParameters_begin(self) - - def end(self): - return _mscl.MipCommandParameters_end(self) - - def rbegin(self): - return _mscl.MipCommandParameters_rbegin(self) - - def rend(self): - return _mscl.MipCommandParameters_rend(self) - - def clear(self): - return _mscl.MipCommandParameters_clear(self) - - def get_allocator(self): - return _mscl.MipCommandParameters_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandParameters_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandParameters_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandParameters_swiginit(self, _mscl.new_MipCommandParameters(*args)) - - def push_back(self, x): - return _mscl.MipCommandParameters_push_back(self, x) - - def front(self): - return _mscl.MipCommandParameters_front(self) - - def back(self): - return _mscl.MipCommandParameters_back(self) - - def assign(self, n, x): - return _mscl.MipCommandParameters_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandParameters_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandParameters_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandParameters_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandParameters_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandParameters - -# Register MipCommandParameters in _mscl: -_mscl.MipCommandParameters_swigregister(MipCommandParameters) - -class ChannelIndex(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ChannelIndex_swiginit(self, _mscl.new_ChannelIndex(*args)) - first = property(_mscl.ChannelIndex_first_get, _mscl.ChannelIndex_first_set) - second = property(_mscl.ChannelIndex_second_get, _mscl.ChannelIndex_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_ChannelIndex - -# Register ChannelIndex in _mscl: -_mscl.ChannelIndex_swigregister(ChannelIndex) - -class ChannelIndices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelIndices_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelIndices___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelIndices___bool__(self) - - def __len__(self): - return _mscl.ChannelIndices___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelIndices___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelIndices___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelIndices___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelIndices___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelIndices___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelIndices___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelIndices_pop(self) - - def append(self, x): - return _mscl.ChannelIndices_append(self, x) - - def empty(self): - return _mscl.ChannelIndices_empty(self) - - def size(self): - return _mscl.ChannelIndices_size(self) - - def swap(self, v): - return _mscl.ChannelIndices_swap(self, v) - - def begin(self): - return _mscl.ChannelIndices_begin(self) - - def end(self): - return _mscl.ChannelIndices_end(self) - - def rbegin(self): - return _mscl.ChannelIndices_rbegin(self) - - def rend(self): - return _mscl.ChannelIndices_rend(self) - - def clear(self): - return _mscl.ChannelIndices_clear(self) - - def get_allocator(self): - return _mscl.ChannelIndices_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelIndices_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelIndices_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelIndices_swiginit(self, _mscl.new_ChannelIndices(*args)) - - def push_back(self, x): - return _mscl.ChannelIndices_push_back(self, x) - - def front(self): - return _mscl.ChannelIndices_front(self) - - def back(self): - return _mscl.ChannelIndices_back(self) - - def assign(self, n, x): - return _mscl.ChannelIndices_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelIndices_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelIndices_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelIndices_reserve(self, n) - - def capacity(self): - return _mscl.ChannelIndices_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelIndices - -# Register ChannelIndices in _mscl: -_mscl.ChannelIndices_swigregister(ChannelIndices) - -class ChannelFieldQualifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelFieldQualifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelFieldQualifiers___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelFieldQualifiers___bool__(self) - - def __len__(self): - return _mscl.ChannelFieldQualifiers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelFieldQualifiers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelFieldQualifiers___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelFieldQualifiers_has_key(self, key) - - def keys(self): - return _mscl.ChannelFieldQualifiers_keys(self) - - def values(self): - return _mscl.ChannelFieldQualifiers_values(self) - - def items(self): - return _mscl.ChannelFieldQualifiers_items(self) - - def __contains__(self, key): - return _mscl.ChannelFieldQualifiers___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelFieldQualifiers_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelFieldQualifiers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelFieldQualifiers___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelFieldQualifiers_asdict(self) - - def __init__(self, *args): - _mscl.ChannelFieldQualifiers_swiginit(self, _mscl.new_ChannelFieldQualifiers(*args)) - - def empty(self): - return _mscl.ChannelFieldQualifiers_empty(self) - - def size(self): - return _mscl.ChannelFieldQualifiers_size(self) - - def swap(self, v): - return _mscl.ChannelFieldQualifiers_swap(self, v) - - def begin(self): - return _mscl.ChannelFieldQualifiers_begin(self) - - def end(self): - return _mscl.ChannelFieldQualifiers_end(self) - - def rbegin(self): - return _mscl.ChannelFieldQualifiers_rbegin(self) - - def rend(self): - return _mscl.ChannelFieldQualifiers_rend(self) - - def clear(self): - return _mscl.ChannelFieldQualifiers_clear(self) - - def get_allocator(self): - return _mscl.ChannelFieldQualifiers_get_allocator(self) - - def count(self, x): - return _mscl.ChannelFieldQualifiers_count(self, x) - - def erase(self, *args): - return _mscl.ChannelFieldQualifiers_erase(self, *args) - - def find(self, x): - return _mscl.ChannelFieldQualifiers_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelFieldQualifiers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelFieldQualifiers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelFieldQualifiers - -# Register ChannelFieldQualifiers in _mscl: -_mscl.ChannelFieldQualifiers_swigregister(ChannelFieldQualifiers) - -class GnssReceivers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssReceivers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssReceivers___nonzero__(self) - - def __bool__(self): - return _mscl.GnssReceivers___bool__(self) - - def __len__(self): - return _mscl.GnssReceivers___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssReceivers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssReceivers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssReceivers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssReceivers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssReceivers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssReceivers___setitem__(self, *args) - - def pop(self): - return _mscl.GnssReceivers_pop(self) - - def append(self, x): - return _mscl.GnssReceivers_append(self, x) - - def empty(self): - return _mscl.GnssReceivers_empty(self) - - def size(self): - return _mscl.GnssReceivers_size(self) - - def swap(self, v): - return _mscl.GnssReceivers_swap(self, v) - - def begin(self): - return _mscl.GnssReceivers_begin(self) - - def end(self): - return _mscl.GnssReceivers_end(self) - - def rbegin(self): - return _mscl.GnssReceivers_rbegin(self) - - def rend(self): - return _mscl.GnssReceivers_rend(self) - - def clear(self): - return _mscl.GnssReceivers_clear(self) - - def get_allocator(self): - return _mscl.GnssReceivers_get_allocator(self) - - def pop_back(self): - return _mscl.GnssReceivers_pop_back(self) - - def erase(self, *args): - return _mscl.GnssReceivers_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssReceivers_swiginit(self, _mscl.new_GnssReceivers(*args)) - - def push_back(self, x): - return _mscl.GnssReceivers_push_back(self, x) - - def front(self): - return _mscl.GnssReceivers_front(self) - - def back(self): - return _mscl.GnssReceivers_back(self) - - def assign(self, n, x): - return _mscl.GnssReceivers_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssReceivers_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssReceivers_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssReceivers_reserve(self, n) - - def capacity(self): - return _mscl.GnssReceivers_capacity(self) - __swig_destroy__ = _mscl.delete_GnssReceivers - -# Register GnssReceivers in _mscl: -_mscl.GnssReceivers_swigregister(GnssReceivers) - -class SensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRanges___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRanges___bool__(self) - - def __len__(self): - return _mscl.SensorRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorRanges___setitem__(self, *args) - - def pop(self): - return _mscl.SensorRanges_pop(self) - - def append(self, x): - return _mscl.SensorRanges_append(self, x) - - def empty(self): - return _mscl.SensorRanges_empty(self) - - def size(self): - return _mscl.SensorRanges_size(self) - - def swap(self, v): - return _mscl.SensorRanges_swap(self, v) - - def begin(self): - return _mscl.SensorRanges_begin(self) - - def end(self): - return _mscl.SensorRanges_end(self) - - def rbegin(self): - return _mscl.SensorRanges_rbegin(self) - - def rend(self): - return _mscl.SensorRanges_rend(self) - - def clear(self): - return _mscl.SensorRanges_clear(self) - - def get_allocator(self): - return _mscl.SensorRanges_get_allocator(self) - - def pop_back(self): - return _mscl.SensorRanges_pop_back(self) - - def erase(self, *args): - return _mscl.SensorRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorRanges_swiginit(self, _mscl.new_SensorRanges(*args)) - - def push_back(self, x): - return _mscl.SensorRanges_push_back(self, x) - - def front(self): - return _mscl.SensorRanges_front(self) - - def back(self): - return _mscl.SensorRanges_back(self) - - def assign(self, n, x): - return _mscl.SensorRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorRanges_reserve(self, n) - - def capacity(self): - return _mscl.SensorRanges_capacity(self) - __swig_destroy__ = _mscl.delete_SensorRanges - -# Register SensorRanges in _mscl: -_mscl.SensorRanges_swigregister(SensorRanges) - -class SensorRangeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRangeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRangeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRangeOptions___bool__(self) - - def __len__(self): - return _mscl.SensorRangeOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SensorRangeOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SensorRangeOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.SensorRangeOptions_has_key(self, key) - - def keys(self): - return _mscl.SensorRangeOptions_keys(self) - - def values(self): - return _mscl.SensorRangeOptions_values(self) - - def items(self): - return _mscl.SensorRangeOptions_items(self) - - def __contains__(self, key): - return _mscl.SensorRangeOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.SensorRangeOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.SensorRangeOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SensorRangeOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.SensorRangeOptions_asdict(self) - - def __init__(self, *args): - _mscl.SensorRangeOptions_swiginit(self, _mscl.new_SensorRangeOptions(*args)) - - def empty(self): - return _mscl.SensorRangeOptions_empty(self) - - def size(self): - return _mscl.SensorRangeOptions_size(self) - - def swap(self, v): - return _mscl.SensorRangeOptions_swap(self, v) - - def begin(self): - return _mscl.SensorRangeOptions_begin(self) - - def end(self): - return _mscl.SensorRangeOptions_end(self) - - def rbegin(self): - return _mscl.SensorRangeOptions_rbegin(self) - - def rend(self): - return _mscl.SensorRangeOptions_rend(self) - - def clear(self): - return _mscl.SensorRangeOptions_clear(self) - - def get_allocator(self): - return _mscl.SensorRangeOptions_get_allocator(self) - - def count(self, x): - return _mscl.SensorRangeOptions_count(self, x) - - def erase(self, *args): - return _mscl.SensorRangeOptions_erase(self, *args) - - def find(self, x): - return _mscl.SensorRangeOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.SensorRangeOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SensorRangeOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SensorRangeOptions - -# Register SensorRangeOptions in _mscl: -_mscl.SensorRangeOptions_swigregister(SensorRangeOptions) - -class CommPortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommPortInfo_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommPortInfo___nonzero__(self) - - def __bool__(self): - return _mscl.CommPortInfo___bool__(self) - - def __len__(self): - return _mscl.CommPortInfo___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommPortInfo___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommPortInfo___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommPortInfo___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommPortInfo___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommPortInfo___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommPortInfo___setitem__(self, *args) - - def pop(self): - return _mscl.CommPortInfo_pop(self) - - def append(self, x): - return _mscl.CommPortInfo_append(self, x) - - def empty(self): - return _mscl.CommPortInfo_empty(self) - - def size(self): - return _mscl.CommPortInfo_size(self) - - def swap(self, v): - return _mscl.CommPortInfo_swap(self, v) - - def begin(self): - return _mscl.CommPortInfo_begin(self) - - def end(self): - return _mscl.CommPortInfo_end(self) - - def rbegin(self): - return _mscl.CommPortInfo_rbegin(self) - - def rend(self): - return _mscl.CommPortInfo_rend(self) - - def clear(self): - return _mscl.CommPortInfo_clear(self) - - def get_allocator(self): - return _mscl.CommPortInfo_get_allocator(self) - - def pop_back(self): - return _mscl.CommPortInfo_pop_back(self) - - def erase(self, *args): - return _mscl.CommPortInfo_erase(self, *args) - - def __init__(self, *args): - _mscl.CommPortInfo_swiginit(self, _mscl.new_CommPortInfo(*args)) - - def push_back(self, x): - return _mscl.CommPortInfo_push_back(self, x) - - def front(self): - return _mscl.CommPortInfo_front(self) - - def back(self): - return _mscl.CommPortInfo_back(self) - - def assign(self, n, x): - return _mscl.CommPortInfo_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommPortInfo_resize(self, *args) - - def insert(self, *args): - return _mscl.CommPortInfo_insert(self, *args) - - def reserve(self, n): - return _mscl.CommPortInfo_reserve(self, n) - - def capacity(self): - return _mscl.CommPortInfo_capacity(self) - __swig_destroy__ = _mscl.delete_CommPortInfo - -# Register CommPortInfo in _mscl: -_mscl.CommPortInfo_swigregister(CommPortInfo) - -class EventTriggerStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTriggerStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTriggerStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventTriggerStatus___bool__(self) - - def __len__(self): - return _mscl.EventTriggerStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTriggerStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTriggerStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTriggerStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTriggerStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTriggerStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTriggerStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventTriggerStatus_pop(self) - - def append(self, x): - return _mscl.EventTriggerStatus_append(self, x) - - def empty(self): - return _mscl.EventTriggerStatus_empty(self) - - def size(self): - return _mscl.EventTriggerStatus_size(self) - - def swap(self, v): - return _mscl.EventTriggerStatus_swap(self, v) - - def begin(self): - return _mscl.EventTriggerStatus_begin(self) - - def end(self): - return _mscl.EventTriggerStatus_end(self) - - def rbegin(self): - return _mscl.EventTriggerStatus_rbegin(self) - - def rend(self): - return _mscl.EventTriggerStatus_rend(self) - - def clear(self): - return _mscl.EventTriggerStatus_clear(self) - - def get_allocator(self): - return _mscl.EventTriggerStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventTriggerStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventTriggerStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTriggerStatus_swiginit(self, _mscl.new_EventTriggerStatus(*args)) - - def push_back(self, x): - return _mscl.EventTriggerStatus_push_back(self, x) - - def front(self): - return _mscl.EventTriggerStatus_front(self) - - def back(self): - return _mscl.EventTriggerStatus_back(self) - - def assign(self, n, x): - return _mscl.EventTriggerStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTriggerStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTriggerStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTriggerStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventTriggerStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventTriggerStatus - -# Register EventTriggerStatus in _mscl: -_mscl.EventTriggerStatus_swigregister(EventTriggerStatus) - -class EventActionStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventActionStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventActionStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventActionStatus___bool__(self) - - def __len__(self): - return _mscl.EventActionStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventActionStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventActionStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventActionStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventActionStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventActionStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventActionStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventActionStatus_pop(self) - - def append(self, x): - return _mscl.EventActionStatus_append(self, x) - - def empty(self): - return _mscl.EventActionStatus_empty(self) - - def size(self): - return _mscl.EventActionStatus_size(self) - - def swap(self, v): - return _mscl.EventActionStatus_swap(self, v) - - def begin(self): - return _mscl.EventActionStatus_begin(self) - - def end(self): - return _mscl.EventActionStatus_end(self) - - def rbegin(self): - return _mscl.EventActionStatus_rbegin(self) - - def rend(self): - return _mscl.EventActionStatus_rend(self) - - def clear(self): - return _mscl.EventActionStatus_clear(self) - - def get_allocator(self): - return _mscl.EventActionStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventActionStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventActionStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventActionStatus_swiginit(self, _mscl.new_EventActionStatus(*args)) - - def push_back(self, x): - return _mscl.EventActionStatus_push_back(self, x) - - def front(self): - return _mscl.EventActionStatus_front(self) - - def back(self): - return _mscl.EventActionStatus_back(self) - - def assign(self, n, x): - return _mscl.EventActionStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventActionStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventActionStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventActionStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventActionStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventActionStatus - -# Register EventActionStatus in _mscl: -_mscl.EventActionStatus_swigregister(EventActionStatus) - -class ChannelGroups(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroups_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroups___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroups___bool__(self) - - def __len__(self): - return _mscl.ChannelGroups___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroups___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroups___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroups___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroups___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroups___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroups___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroups_pop(self) - - def append(self, x): - return _mscl.ChannelGroups_append(self, x) - - def empty(self): - return _mscl.ChannelGroups_empty(self) - - def size(self): - return _mscl.ChannelGroups_size(self) - - def swap(self, v): - return _mscl.ChannelGroups_swap(self, v) - - def begin(self): - return _mscl.ChannelGroups_begin(self) - - def end(self): - return _mscl.ChannelGroups_end(self) - - def rbegin(self): - return _mscl.ChannelGroups_rbegin(self) - - def rend(self): - return _mscl.ChannelGroups_rend(self) - - def clear(self): - return _mscl.ChannelGroups_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroups_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroups_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroups_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroups_swiginit(self, _mscl.new_ChannelGroups(*args)) - - def push_back(self, x): - return _mscl.ChannelGroups_push_back(self, x) - - def front(self): - return _mscl.ChannelGroups_front(self) - - def back(self): - return _mscl.ChannelGroups_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroups_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroups_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroups_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroups_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroups_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroups - -# Register ChannelGroups in _mscl: -_mscl.ChannelGroups_swigregister(ChannelGroups) - -class WirelessChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessChannels___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessChannels___bool__(self) - - def __len__(self): - return _mscl.WirelessChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessChannels___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessChannels_pop(self) - - def append(self, x): - return _mscl.WirelessChannels_append(self, x) - - def empty(self): - return _mscl.WirelessChannels_empty(self) - - def size(self): - return _mscl.WirelessChannels_size(self) - - def swap(self, v): - return _mscl.WirelessChannels_swap(self, v) - - def begin(self): - return _mscl.WirelessChannels_begin(self) - - def end(self): - return _mscl.WirelessChannels_end(self) - - def rbegin(self): - return _mscl.WirelessChannels_rbegin(self) - - def rend(self): - return _mscl.WirelessChannels_rend(self) - - def clear(self): - return _mscl.WirelessChannels_clear(self) - - def get_allocator(self): - return _mscl.WirelessChannels_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessChannels_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessChannels_swiginit(self, _mscl.new_WirelessChannels(*args)) - - def push_back(self, x): - return _mscl.WirelessChannels_push_back(self, x) - - def front(self): - return _mscl.WirelessChannels_front(self) - - def back(self): - return _mscl.WirelessChannels_back(self) - - def assign(self, n, x): - return _mscl.WirelessChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessChannels_reserve(self, n) - - def capacity(self): - return _mscl.WirelessChannels_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessChannels - -# Register WirelessChannels in _mscl: -_mscl.WirelessChannels_swigregister(WirelessChannels) - -class DamageAngles(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DamageAngles_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DamageAngles___nonzero__(self) - - def __bool__(self): - return _mscl.DamageAngles___bool__(self) - - def __len__(self): - return _mscl.DamageAngles___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DamageAngles___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DamageAngles___delitem__(self, key) - - def has_key(self, key): - return _mscl.DamageAngles_has_key(self, key) - - def keys(self): - return _mscl.DamageAngles_keys(self) - - def values(self): - return _mscl.DamageAngles_values(self) - - def items(self): - return _mscl.DamageAngles_items(self) - - def __contains__(self, key): - return _mscl.DamageAngles___contains__(self, key) - - def key_iterator(self): - return _mscl.DamageAngles_key_iterator(self) - - def value_iterator(self): - return _mscl.DamageAngles_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DamageAngles___setitem__(self, *args) - - def asdict(self): - return _mscl.DamageAngles_asdict(self) - - def __init__(self, *args): - _mscl.DamageAngles_swiginit(self, _mscl.new_DamageAngles(*args)) - - def empty(self): - return _mscl.DamageAngles_empty(self) - - def size(self): - return _mscl.DamageAngles_size(self) - - def swap(self, v): - return _mscl.DamageAngles_swap(self, v) - - def begin(self): - return _mscl.DamageAngles_begin(self) - - def end(self): - return _mscl.DamageAngles_end(self) - - def rbegin(self): - return _mscl.DamageAngles_rbegin(self) - - def rend(self): - return _mscl.DamageAngles_rend(self) - - def clear(self): - return _mscl.DamageAngles_clear(self) - - def get_allocator(self): - return _mscl.DamageAngles_get_allocator(self) - - def count(self, x): - return _mscl.DamageAngles_count(self, x) - - def erase(self, *args): - return _mscl.DamageAngles_erase(self, *args) - - def find(self, x): - return _mscl.DamageAngles_find(self, x) - - def lower_bound(self, x): - return _mscl.DamageAngles_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DamageAngles_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DamageAngles - -# Register DamageAngles in _mscl: -_mscl.DamageAngles_swigregister(DamageAngles) - -class SnCurveSegments(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SnCurveSegments_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SnCurveSegments___nonzero__(self) - - def __bool__(self): - return _mscl.SnCurveSegments___bool__(self) - - def __len__(self): - return _mscl.SnCurveSegments___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SnCurveSegments___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SnCurveSegments___delitem__(self, key) - - def has_key(self, key): - return _mscl.SnCurveSegments_has_key(self, key) - - def keys(self): - return _mscl.SnCurveSegments_keys(self) - - def values(self): - return _mscl.SnCurveSegments_values(self) - - def items(self): - return _mscl.SnCurveSegments_items(self) - - def __contains__(self, key): - return _mscl.SnCurveSegments___contains__(self, key) - - def key_iterator(self): - return _mscl.SnCurveSegments_key_iterator(self) - - def value_iterator(self): - return _mscl.SnCurveSegments_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SnCurveSegments___setitem__(self, *args) - - def asdict(self): - return _mscl.SnCurveSegments_asdict(self) - - def __init__(self, *args): - _mscl.SnCurveSegments_swiginit(self, _mscl.new_SnCurveSegments(*args)) - - def empty(self): - return _mscl.SnCurveSegments_empty(self) - - def size(self): - return _mscl.SnCurveSegments_size(self) - - def swap(self, v): - return _mscl.SnCurveSegments_swap(self, v) - - def begin(self): - return _mscl.SnCurveSegments_begin(self) - - def end(self): - return _mscl.SnCurveSegments_end(self) - - def rbegin(self): - return _mscl.SnCurveSegments_rbegin(self) - - def rend(self): - return _mscl.SnCurveSegments_rend(self) - - def clear(self): - return _mscl.SnCurveSegments_clear(self) - - def get_allocator(self): - return _mscl.SnCurveSegments_get_allocator(self) - - def count(self, x): - return _mscl.SnCurveSegments_count(self, x) - - def erase(self, *args): - return _mscl.SnCurveSegments_erase(self, *args) - - def find(self, x): - return _mscl.SnCurveSegments_find(self, x) - - def lower_bound(self, x): - return _mscl.SnCurveSegments_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SnCurveSegments_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SnCurveSegments - -# Register SnCurveSegments in _mscl: -_mscl.SnCurveSegments_swigregister(SnCurveSegments) - -class RfSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RfSweep_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RfSweep___nonzero__(self) - - def __bool__(self): - return _mscl.RfSweep___bool__(self) - - def __len__(self): - return _mscl.RfSweep___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.RfSweep___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.RfSweep___delitem__(self, key) - - def has_key(self, key): - return _mscl.RfSweep_has_key(self, key) - - def keys(self): - return _mscl.RfSweep_keys(self) - - def values(self): - return _mscl.RfSweep_values(self) - - def items(self): - return _mscl.RfSweep_items(self) - - def __contains__(self, key): - return _mscl.RfSweep___contains__(self, key) - - def key_iterator(self): - return _mscl.RfSweep_key_iterator(self) - - def value_iterator(self): - return _mscl.RfSweep_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.RfSweep___setitem__(self, *args) - - def asdict(self): - return _mscl.RfSweep_asdict(self) - - def __init__(self, *args): - _mscl.RfSweep_swiginit(self, _mscl.new_RfSweep(*args)) - - def empty(self): - return _mscl.RfSweep_empty(self) - - def size(self): - return _mscl.RfSweep_size(self) - - def swap(self, v): - return _mscl.RfSweep_swap(self, v) - - def begin(self): - return _mscl.RfSweep_begin(self) - - def end(self): - return _mscl.RfSweep_end(self) - - def rbegin(self): - return _mscl.RfSweep_rbegin(self) - - def rend(self): - return _mscl.RfSweep_rend(self) - - def clear(self): - return _mscl.RfSweep_clear(self) - - def get_allocator(self): - return _mscl.RfSweep_get_allocator(self) - - def count(self, x): - return _mscl.RfSweep_count(self, x) - - def erase(self, *args): - return _mscl.RfSweep_erase(self, *args) - - def find(self, x): - return _mscl.RfSweep_find(self, x) - - def lower_bound(self, x): - return _mscl.RfSweep_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.RfSweep_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_RfSweep - -# Register RfSweep in _mscl: -_mscl.RfSweep_swigregister(RfSweep) - -class Triggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Triggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Triggers___nonzero__(self) - - def __bool__(self): - return _mscl.Triggers___bool__(self) - - def __len__(self): - return _mscl.Triggers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.Triggers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.Triggers___delitem__(self, key) - - def has_key(self, key): - return _mscl.Triggers_has_key(self, key) - - def keys(self): - return _mscl.Triggers_keys(self) - - def values(self): - return _mscl.Triggers_values(self) - - def items(self): - return _mscl.Triggers_items(self) - - def __contains__(self, key): - return _mscl.Triggers___contains__(self, key) - - def key_iterator(self): - return _mscl.Triggers_key_iterator(self) - - def value_iterator(self): - return _mscl.Triggers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.Triggers___setitem__(self, *args) - - def asdict(self): - return _mscl.Triggers_asdict(self) - - def __init__(self, *args): - _mscl.Triggers_swiginit(self, _mscl.new_Triggers(*args)) - - def empty(self): - return _mscl.Triggers_empty(self) - - def size(self): - return _mscl.Triggers_size(self) - - def swap(self, v): - return _mscl.Triggers_swap(self, v) - - def begin(self): - return _mscl.Triggers_begin(self) - - def end(self): - return _mscl.Triggers_end(self) - - def rbegin(self): - return _mscl.Triggers_rbegin(self) - - def rend(self): - return _mscl.Triggers_rend(self) - - def clear(self): - return _mscl.Triggers_clear(self) - - def get_allocator(self): - return _mscl.Triggers_get_allocator(self) - - def count(self, x): - return _mscl.Triggers_count(self, x) - - def erase(self, *args): - return _mscl.Triggers_erase(self, *args) - - def find(self, x): - return _mscl.Triggers_find(self, x) - - def lower_bound(self, x): - return _mscl.Triggers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.Triggers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_Triggers - -# Register Triggers in _mscl: -_mscl.Triggers_swigregister(Triggers) - -class ChannelCalMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelCalMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelCalMap___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelCalMap___bool__(self) - - def __len__(self): - return _mscl.ChannelCalMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelCalMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelCalMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelCalMap_has_key(self, key) - - def keys(self): - return _mscl.ChannelCalMap_keys(self) - - def values(self): - return _mscl.ChannelCalMap_values(self) - - def items(self): - return _mscl.ChannelCalMap_items(self) - - def __contains__(self, key): - return _mscl.ChannelCalMap___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelCalMap_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelCalMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelCalMap___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelCalMap_asdict(self) - - def __init__(self, *args): - _mscl.ChannelCalMap_swiginit(self, _mscl.new_ChannelCalMap(*args)) - - def empty(self): - return _mscl.ChannelCalMap_empty(self) - - def size(self): - return _mscl.ChannelCalMap_size(self) - - def swap(self, v): - return _mscl.ChannelCalMap_swap(self, v) - - def begin(self): - return _mscl.ChannelCalMap_begin(self) - - def end(self): - return _mscl.ChannelCalMap_end(self) - - def rbegin(self): - return _mscl.ChannelCalMap_rbegin(self) - - def rend(self): - return _mscl.ChannelCalMap_rend(self) - - def clear(self): - return _mscl.ChannelCalMap_clear(self) - - def get_allocator(self): - return _mscl.ChannelCalMap_get_allocator(self) - - def count(self, x): - return _mscl.ChannelCalMap_count(self, x) - - def erase(self, *args): - return _mscl.ChannelCalMap_erase(self, *args) - - def find(self, x): - return _mscl.ChannelCalMap_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelCalMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelCalMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelCalMap - -# Register ChannelCalMap in _mscl: -_mscl.ChannelCalMap_swigregister(ChannelCalMap) - -class WirelessPollData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessPollData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessPollData___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessPollData___bool__(self) - - def __len__(self): - return _mscl.WirelessPollData___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.WirelessPollData___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.WirelessPollData___delitem__(self, key) - - def has_key(self, key): - return _mscl.WirelessPollData_has_key(self, key) - - def keys(self): - return _mscl.WirelessPollData_keys(self) - - def values(self): - return _mscl.WirelessPollData_values(self) - - def items(self): - return _mscl.WirelessPollData_items(self) - - def __contains__(self, key): - return _mscl.WirelessPollData___contains__(self, key) - - def key_iterator(self): - return _mscl.WirelessPollData_key_iterator(self) - - def value_iterator(self): - return _mscl.WirelessPollData_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.WirelessPollData___setitem__(self, *args) - - def asdict(self): - return _mscl.WirelessPollData_asdict(self) - - def __init__(self, *args): - _mscl.WirelessPollData_swiginit(self, _mscl.new_WirelessPollData(*args)) - - def empty(self): - return _mscl.WirelessPollData_empty(self) - - def size(self): - return _mscl.WirelessPollData_size(self) - - def swap(self, v): - return _mscl.WirelessPollData_swap(self, v) - - def begin(self): - return _mscl.WirelessPollData_begin(self) - - def end(self): - return _mscl.WirelessPollData_end(self) - - def rbegin(self): - return _mscl.WirelessPollData_rbegin(self) - - def rend(self): - return _mscl.WirelessPollData_rend(self) - - def clear(self): - return _mscl.WirelessPollData_clear(self) - - def get_allocator(self): - return _mscl.WirelessPollData_get_allocator(self) - - def count(self, x): - return _mscl.WirelessPollData_count(self, x) - - def erase(self, *args): - return _mscl.WirelessPollData_erase(self, *args) - - def find(self, x): - return _mscl.WirelessPollData_find(self, x) - - def lower_bound(self, x): - return _mscl.WirelessPollData_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.WirelessPollData_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_WirelessPollData - -# Register WirelessPollData in _mscl: -_mscl.WirelessPollData_swigregister(WirelessPollData) - -class ConnectionDebugDataVec(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConnectionDebugDataVec_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConnectionDebugDataVec___nonzero__(self) - - def __bool__(self): - return _mscl.ConnectionDebugDataVec___bool__(self) - - def __len__(self): - return _mscl.ConnectionDebugDataVec___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConnectionDebugDataVec___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConnectionDebugDataVec___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConnectionDebugDataVec___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConnectionDebugDataVec___setitem__(self, *args) - - def pop(self): - return _mscl.ConnectionDebugDataVec_pop(self) - - def append(self, x): - return _mscl.ConnectionDebugDataVec_append(self, x) - - def empty(self): - return _mscl.ConnectionDebugDataVec_empty(self) - - def size(self): - return _mscl.ConnectionDebugDataVec_size(self) - - def swap(self, v): - return _mscl.ConnectionDebugDataVec_swap(self, v) - - def begin(self): - return _mscl.ConnectionDebugDataVec_begin(self) - - def end(self): - return _mscl.ConnectionDebugDataVec_end(self) - - def rbegin(self): - return _mscl.ConnectionDebugDataVec_rbegin(self) - - def rend(self): - return _mscl.ConnectionDebugDataVec_rend(self) - - def clear(self): - return _mscl.ConnectionDebugDataVec_clear(self) - - def get_allocator(self): - return _mscl.ConnectionDebugDataVec_get_allocator(self) - - def pop_back(self): - return _mscl.ConnectionDebugDataVec_pop_back(self) - - def erase(self, *args): - return _mscl.ConnectionDebugDataVec_erase(self, *args) - - def __init__(self, *args): - _mscl.ConnectionDebugDataVec_swiginit(self, _mscl.new_ConnectionDebugDataVec(*args)) - - def push_back(self, x): - return _mscl.ConnectionDebugDataVec_push_back(self, x) - - def front(self): - return _mscl.ConnectionDebugDataVec_front(self) - - def back(self): - return _mscl.ConnectionDebugDataVec_back(self) - - def assign(self, n, x): - return _mscl.ConnectionDebugDataVec_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConnectionDebugDataVec_resize(self, *args) - - def insert(self, *args): - return _mscl.ConnectionDebugDataVec_insert(self, *args) - - def reserve(self, n): - return _mscl.ConnectionDebugDataVec_reserve(self, n) - - def capacity(self): - return _mscl.ConnectionDebugDataVec_capacity(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugDataVec - -# Register ConnectionDebugDataVec in _mscl: -_mscl.ConnectionDebugDataVec_swigregister(ConnectionDebugDataVec) - -class SatellitePRNs(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SatellitePRNs_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SatellitePRNs___nonzero__(self) - - def __bool__(self): - return _mscl.SatellitePRNs___bool__(self) - - def __len__(self): - return _mscl.SatellitePRNs___len__(self) - - def __getslice__(self, i, j): - return _mscl.SatellitePRNs___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SatellitePRNs___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SatellitePRNs___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SatellitePRNs___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SatellitePRNs___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SatellitePRNs___setitem__(self, *args) - - def pop(self): - return _mscl.SatellitePRNs_pop(self) - - def append(self, x): - return _mscl.SatellitePRNs_append(self, x) - - def empty(self): - return _mscl.SatellitePRNs_empty(self) - - def size(self): - return _mscl.SatellitePRNs_size(self) - - def swap(self, v): - return _mscl.SatellitePRNs_swap(self, v) - - def begin(self): - return _mscl.SatellitePRNs_begin(self) - - def end(self): - return _mscl.SatellitePRNs_end(self) - - def rbegin(self): - return _mscl.SatellitePRNs_rbegin(self) - - def rend(self): - return _mscl.SatellitePRNs_rend(self) - - def clear(self): - return _mscl.SatellitePRNs_clear(self) - - def get_allocator(self): - return _mscl.SatellitePRNs_get_allocator(self) - - def pop_back(self): - return _mscl.SatellitePRNs_pop_back(self) - - def erase(self, *args): - return _mscl.SatellitePRNs_erase(self, *args) - - def __init__(self, *args): - _mscl.SatellitePRNs_swiginit(self, _mscl.new_SatellitePRNs(*args)) - - def push_back(self, x): - return _mscl.SatellitePRNs_push_back(self, x) - - def front(self): - return _mscl.SatellitePRNs_front(self) - - def back(self): - return _mscl.SatellitePRNs_back(self) - - def assign(self, n, x): - return _mscl.SatellitePRNs_assign(self, n, x) - - def resize(self, *args): - return _mscl.SatellitePRNs_resize(self, *args) - - def insert(self, *args): - return _mscl.SatellitePRNs_insert(self, *args) - - def reserve(self, n): - return _mscl.SatellitePRNs_reserve(self, n) - - def capacity(self): - return _mscl.SatellitePRNs_capacity(self) - __swig_destroy__ = _mscl.delete_SatellitePRNs - -# Register SatellitePRNs in _mscl: -_mscl.SatellitePRNs_swigregister(SatellitePRNs) - -class Constellations(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Constellations_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Constellations___nonzero__(self) - - def __bool__(self): - return _mscl.Constellations___bool__(self) - - def __len__(self): - return _mscl.Constellations___len__(self) - - def __getslice__(self, i, j): - return _mscl.Constellations___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Constellations___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Constellations___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Constellations___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Constellations___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Constellations___setitem__(self, *args) - - def pop(self): - return _mscl.Constellations_pop(self) - - def append(self, x): - return _mscl.Constellations_append(self, x) - - def empty(self): - return _mscl.Constellations_empty(self) - - def size(self): - return _mscl.Constellations_size(self) - - def swap(self, v): - return _mscl.Constellations_swap(self, v) - - def begin(self): - return _mscl.Constellations_begin(self) - - def end(self): - return _mscl.Constellations_end(self) - - def rbegin(self): - return _mscl.Constellations_rbegin(self) - - def rend(self): - return _mscl.Constellations_rend(self) - - def clear(self): - return _mscl.Constellations_clear(self) - - def get_allocator(self): - return _mscl.Constellations_get_allocator(self) - - def pop_back(self): - return _mscl.Constellations_pop_back(self) - - def erase(self, *args): - return _mscl.Constellations_erase(self, *args) - - def __init__(self, *args): - _mscl.Constellations_swiginit(self, _mscl.new_Constellations(*args)) - - def push_back(self, x): - return _mscl.Constellations_push_back(self, x) - - def front(self): - return _mscl.Constellations_front(self) - - def back(self): - return _mscl.Constellations_back(self) - - def assign(self, n, x): - return _mscl.Constellations_assign(self, n, x) - - def resize(self, *args): - return _mscl.Constellations_resize(self, *args) - - def insert(self, *args): - return _mscl.Constellations_insert(self, *args) - - def reserve(self, n): - return _mscl.Constellations_reserve(self, n) - - def capacity(self): - return _mscl.Constellations_capacity(self) - __swig_destroy__ = _mscl.delete_Constellations - -# Register Constellations in _mscl: -_mscl.Constellations_swigregister(Constellations) - -class HeadingUpdateOptionsList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HeadingUpdateOptionsList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HeadingUpdateOptionsList___nonzero__(self) - - def __bool__(self): - return _mscl.HeadingUpdateOptionsList___bool__(self) - - def __len__(self): - return _mscl.HeadingUpdateOptionsList___len__(self) - - def __getslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HeadingUpdateOptionsList___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___setitem__(self, *args) - - def pop(self): - return _mscl.HeadingUpdateOptionsList_pop(self) - - def append(self, x): - return _mscl.HeadingUpdateOptionsList_append(self, x) - - def empty(self): - return _mscl.HeadingUpdateOptionsList_empty(self) - - def size(self): - return _mscl.HeadingUpdateOptionsList_size(self) - - def swap(self, v): - return _mscl.HeadingUpdateOptionsList_swap(self, v) - - def begin(self): - return _mscl.HeadingUpdateOptionsList_begin(self) - - def end(self): - return _mscl.HeadingUpdateOptionsList_end(self) - - def rbegin(self): - return _mscl.HeadingUpdateOptionsList_rbegin(self) - - def rend(self): - return _mscl.HeadingUpdateOptionsList_rend(self) - - def clear(self): - return _mscl.HeadingUpdateOptionsList_clear(self) - - def get_allocator(self): - return _mscl.HeadingUpdateOptionsList_get_allocator(self) - - def pop_back(self): - return _mscl.HeadingUpdateOptionsList_pop_back(self) - - def erase(self, *args): - return _mscl.HeadingUpdateOptionsList_erase(self, *args) - - def __init__(self, *args): - _mscl.HeadingUpdateOptionsList_swiginit(self, _mscl.new_HeadingUpdateOptionsList(*args)) - - def push_back(self, x): - return _mscl.HeadingUpdateOptionsList_push_back(self, x) - - def front(self): - return _mscl.HeadingUpdateOptionsList_front(self) - - def back(self): - return _mscl.HeadingUpdateOptionsList_back(self) - - def assign(self, n, x): - return _mscl.HeadingUpdateOptionsList_assign(self, n, x) - - def resize(self, *args): - return _mscl.HeadingUpdateOptionsList_resize(self, *args) - - def insert(self, *args): - return _mscl.HeadingUpdateOptionsList_insert(self, *args) - - def reserve(self, n): - return _mscl.HeadingUpdateOptionsList_reserve(self, n) - - def capacity(self): - return _mscl.HeadingUpdateOptionsList_capacity(self) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptionsList - -# Register HeadingUpdateOptionsList in _mscl: -_mscl.HeadingUpdateOptionsList_swigregister(HeadingUpdateOptionsList) - -class AdaptiveMeasurementModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveMeasurementModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveMeasurementModes___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveMeasurementModes___bool__(self) - - def __len__(self): - return _mscl.AdaptiveMeasurementModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveMeasurementModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveMeasurementModes_pop(self) - - def append(self, x): - return _mscl.AdaptiveMeasurementModes_append(self, x) - - def empty(self): - return _mscl.AdaptiveMeasurementModes_empty(self) - - def size(self): - return _mscl.AdaptiveMeasurementModes_size(self) - - def swap(self, v): - return _mscl.AdaptiveMeasurementModes_swap(self, v) - - def begin(self): - return _mscl.AdaptiveMeasurementModes_begin(self) - - def end(self): - return _mscl.AdaptiveMeasurementModes_end(self) - - def rbegin(self): - return _mscl.AdaptiveMeasurementModes_rbegin(self) - - def rend(self): - return _mscl.AdaptiveMeasurementModes_rend(self) - - def clear(self): - return _mscl.AdaptiveMeasurementModes_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveMeasurementModes_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveMeasurementModes_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveMeasurementModes_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveMeasurementModes_swiginit(self, _mscl.new_AdaptiveMeasurementModes(*args)) - - def push_back(self, x): - return _mscl.AdaptiveMeasurementModes_push_back(self, x) - - def front(self): - return _mscl.AdaptiveMeasurementModes_front(self) - - def back(self): - return _mscl.AdaptiveMeasurementModes_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveMeasurementModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveMeasurementModes_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveMeasurementModes_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveMeasurementModes_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveMeasurementModes_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementModes - -# Register AdaptiveMeasurementModes in _mscl: -_mscl.AdaptiveMeasurementModes_swigregister(AdaptiveMeasurementModes) - -class GeometricVectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeometricVectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeometricVectors___nonzero__(self) - - def __bool__(self): - return _mscl.GeometricVectors___bool__(self) - - def __len__(self): - return _mscl.GeometricVectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeometricVectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeometricVectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeometricVectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeometricVectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeometricVectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeometricVectors___setitem__(self, *args) - - def pop(self): - return _mscl.GeometricVectors_pop(self) - - def append(self, x): - return _mscl.GeometricVectors_append(self, x) - - def empty(self): - return _mscl.GeometricVectors_empty(self) - - def size(self): - return _mscl.GeometricVectors_size(self) - - def swap(self, v): - return _mscl.GeometricVectors_swap(self, v) - - def begin(self): - return _mscl.GeometricVectors_begin(self) - - def end(self): - return _mscl.GeometricVectors_end(self) - - def rbegin(self): - return _mscl.GeometricVectors_rbegin(self) - - def rend(self): - return _mscl.GeometricVectors_rend(self) - - def clear(self): - return _mscl.GeometricVectors_clear(self) - - def get_allocator(self): - return _mscl.GeometricVectors_get_allocator(self) - - def pop_back(self): - return _mscl.GeometricVectors_pop_back(self) - - def erase(self, *args): - return _mscl.GeometricVectors_erase(self, *args) - - def __init__(self, *args): - _mscl.GeometricVectors_swiginit(self, _mscl.new_GeometricVectors(*args)) - - def push_back(self, x): - return _mscl.GeometricVectors_push_back(self, x) - - def front(self): - return _mscl.GeometricVectors_front(self) - - def back(self): - return _mscl.GeometricVectors_back(self) - - def assign(self, n, x): - return _mscl.GeometricVectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeometricVectors_resize(self, *args) - - def insert(self, *args): - return _mscl.GeometricVectors_insert(self, *args) - - def reserve(self, n): - return _mscl.GeometricVectors_reserve(self, n) - - def capacity(self): - return _mscl.GeometricVectors_capacity(self) - __swig_destroy__ = _mscl.delete_GeometricVectors - -# Register GeometricVectors in _mscl: -_mscl.GeometricVectors_swigregister(GeometricVectors) - -class Matrix_3x3s(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Matrix_3x3s_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Matrix_3x3s___nonzero__(self) - - def __bool__(self): - return _mscl.Matrix_3x3s___bool__(self) - - def __len__(self): - return _mscl.Matrix_3x3s___len__(self) - - def __getslice__(self, i, j): - return _mscl.Matrix_3x3s___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Matrix_3x3s___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Matrix_3x3s___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Matrix_3x3s___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Matrix_3x3s___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Matrix_3x3s___setitem__(self, *args) - - def pop(self): - return _mscl.Matrix_3x3s_pop(self) - - def append(self, x): - return _mscl.Matrix_3x3s_append(self, x) - - def empty(self): - return _mscl.Matrix_3x3s_empty(self) - - def size(self): - return _mscl.Matrix_3x3s_size(self) - - def swap(self, v): - return _mscl.Matrix_3x3s_swap(self, v) - - def begin(self): - return _mscl.Matrix_3x3s_begin(self) - - def end(self): - return _mscl.Matrix_3x3s_end(self) - - def rbegin(self): - return _mscl.Matrix_3x3s_rbegin(self) - - def rend(self): - return _mscl.Matrix_3x3s_rend(self) - - def clear(self): - return _mscl.Matrix_3x3s_clear(self) - - def get_allocator(self): - return _mscl.Matrix_3x3s_get_allocator(self) - - def pop_back(self): - return _mscl.Matrix_3x3s_pop_back(self) - - def erase(self, *args): - return _mscl.Matrix_3x3s_erase(self, *args) - - def __init__(self, *args): - _mscl.Matrix_3x3s_swiginit(self, _mscl.new_Matrix_3x3s(*args)) - - def push_back(self, x): - return _mscl.Matrix_3x3s_push_back(self, x) - - def front(self): - return _mscl.Matrix_3x3s_front(self) - - def back(self): - return _mscl.Matrix_3x3s_back(self) - - def assign(self, n, x): - return _mscl.Matrix_3x3s_assign(self, n, x) - - def resize(self, *args): - return _mscl.Matrix_3x3s_resize(self, *args) - - def insert(self, *args): - return _mscl.Matrix_3x3s_insert(self, *args) - - def reserve(self, n): - return _mscl.Matrix_3x3s_reserve(self, n) - - def capacity(self): - return _mscl.Matrix_3x3s_capacity(self) - __swig_destroy__ = _mscl.delete_Matrix_3x3s - -# Register Matrix_3x3s in _mscl: -_mscl.Matrix_3x3s_swigregister(Matrix_3x3s) - -class StatusSelectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StatusSelectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StatusSelectors___nonzero__(self) - - def __bool__(self): - return _mscl.StatusSelectors___bool__(self) - - def __len__(self): - return _mscl.StatusSelectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.StatusSelectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StatusSelectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StatusSelectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StatusSelectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StatusSelectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StatusSelectors___setitem__(self, *args) - - def pop(self): - return _mscl.StatusSelectors_pop(self) - - def append(self, x): - return _mscl.StatusSelectors_append(self, x) - - def empty(self): - return _mscl.StatusSelectors_empty(self) - - def size(self): - return _mscl.StatusSelectors_size(self) - - def swap(self, v): - return _mscl.StatusSelectors_swap(self, v) - - def begin(self): - return _mscl.StatusSelectors_begin(self) - - def end(self): - return _mscl.StatusSelectors_end(self) - - def rbegin(self): - return _mscl.StatusSelectors_rbegin(self) - - def rend(self): - return _mscl.StatusSelectors_rend(self) - - def clear(self): - return _mscl.StatusSelectors_clear(self) - - def get_allocator(self): - return _mscl.StatusSelectors_get_allocator(self) - - def pop_back(self): - return _mscl.StatusSelectors_pop_back(self) - - def erase(self, *args): - return _mscl.StatusSelectors_erase(self, *args) - - def __init__(self, *args): - _mscl.StatusSelectors_swiginit(self, _mscl.new_StatusSelectors(*args)) - - def push_back(self, x): - return _mscl.StatusSelectors_push_back(self, x) - - def front(self): - return _mscl.StatusSelectors_front(self) - - def back(self): - return _mscl.StatusSelectors_back(self) - - def assign(self, n, x): - return _mscl.StatusSelectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.StatusSelectors_resize(self, *args) - - def insert(self, *args): - return _mscl.StatusSelectors_insert(self, *args) - - def reserve(self, n): - return _mscl.StatusSelectors_reserve(self, n) - - def capacity(self): - return _mscl.StatusSelectors_capacity(self) - __swig_destroy__ = _mscl.delete_StatusSelectors - -# Register StatusSelectors in _mscl: -_mscl.StatusSelectors_swigregister(StatusSelectors) - -class VehicleModeTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.VehicleModeTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.VehicleModeTypes___nonzero__(self) - - def __bool__(self): - return _mscl.VehicleModeTypes___bool__(self) - - def __len__(self): - return _mscl.VehicleModeTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.VehicleModeTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.VehicleModeTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.VehicleModeTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.VehicleModeTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.VehicleModeTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.VehicleModeTypes___setitem__(self, *args) - - def pop(self): - return _mscl.VehicleModeTypes_pop(self) - - def append(self, x): - return _mscl.VehicleModeTypes_append(self, x) - - def empty(self): - return _mscl.VehicleModeTypes_empty(self) - - def size(self): - return _mscl.VehicleModeTypes_size(self) - - def swap(self, v): - return _mscl.VehicleModeTypes_swap(self, v) - - def begin(self): - return _mscl.VehicleModeTypes_begin(self) - - def end(self): - return _mscl.VehicleModeTypes_end(self) - - def rbegin(self): - return _mscl.VehicleModeTypes_rbegin(self) - - def rend(self): - return _mscl.VehicleModeTypes_rend(self) - - def clear(self): - return _mscl.VehicleModeTypes_clear(self) - - def get_allocator(self): - return _mscl.VehicleModeTypes_get_allocator(self) - - def pop_back(self): - return _mscl.VehicleModeTypes_pop_back(self) - - def erase(self, *args): - return _mscl.VehicleModeTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.VehicleModeTypes_swiginit(self, _mscl.new_VehicleModeTypes(*args)) - - def push_back(self, x): - return _mscl.VehicleModeTypes_push_back(self, x) - - def front(self): - return _mscl.VehicleModeTypes_front(self) - - def back(self): - return _mscl.VehicleModeTypes_back(self) - - def assign(self, n, x): - return _mscl.VehicleModeTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.VehicleModeTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.VehicleModeTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.VehicleModeTypes_reserve(self, n) - - def capacity(self): - return _mscl.VehicleModeTypes_capacity(self) - __swig_destroy__ = _mscl.delete_VehicleModeTypes - -# Register VehicleModeTypes in _mscl: -_mscl.VehicleModeTypes_swigregister(VehicleModeTypes) - -class AdaptiveFilterLevels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveFilterLevels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveFilterLevels___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveFilterLevels___bool__(self) - - def __len__(self): - return _mscl.AdaptiveFilterLevels___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveFilterLevels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveFilterLevels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveFilterLevels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveFilterLevels___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveFilterLevels_pop(self) - - def append(self, x): - return _mscl.AdaptiveFilterLevels_append(self, x) - - def empty(self): - return _mscl.AdaptiveFilterLevels_empty(self) - - def size(self): - return _mscl.AdaptiveFilterLevels_size(self) - - def swap(self, v): - return _mscl.AdaptiveFilterLevels_swap(self, v) - - def begin(self): - return _mscl.AdaptiveFilterLevels_begin(self) - - def end(self): - return _mscl.AdaptiveFilterLevels_end(self) - - def rbegin(self): - return _mscl.AdaptiveFilterLevels_rbegin(self) - - def rend(self): - return _mscl.AdaptiveFilterLevels_rend(self) - - def clear(self): - return _mscl.AdaptiveFilterLevels_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveFilterLevels_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveFilterLevels_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveFilterLevels_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveFilterLevels_swiginit(self, _mscl.new_AdaptiveFilterLevels(*args)) - - def push_back(self, x): - return _mscl.AdaptiveFilterLevels_push_back(self, x) - - def front(self): - return _mscl.AdaptiveFilterLevels_front(self) - - def back(self): - return _mscl.AdaptiveFilterLevels_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveFilterLevels_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveFilterLevels_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveFilterLevels_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveFilterLevels_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveFilterLevels_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveFilterLevels - -# Register AdaptiveFilterLevels in _mscl: -_mscl.AdaptiveFilterLevels_swigregister(AdaptiveFilterLevels) - -class LowPassFilterConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LowPassFilterConfig_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LowPassFilterConfig___nonzero__(self) - - def __bool__(self): - return _mscl.LowPassFilterConfig___bool__(self) - - def __len__(self): - return _mscl.LowPassFilterConfig___len__(self) - - def __getslice__(self, i, j): - return _mscl.LowPassFilterConfig___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LowPassFilterConfig___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LowPassFilterConfig___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LowPassFilterConfig___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LowPassFilterConfig___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LowPassFilterConfig___setitem__(self, *args) - - def pop(self): - return _mscl.LowPassFilterConfig_pop(self) - - def append(self, x): - return _mscl.LowPassFilterConfig_append(self, x) - - def empty(self): - return _mscl.LowPassFilterConfig_empty(self) - - def size(self): - return _mscl.LowPassFilterConfig_size(self) - - def swap(self, v): - return _mscl.LowPassFilterConfig_swap(self, v) - - def begin(self): - return _mscl.LowPassFilterConfig_begin(self) - - def end(self): - return _mscl.LowPassFilterConfig_end(self) - - def rbegin(self): - return _mscl.LowPassFilterConfig_rbegin(self) - - def rend(self): - return _mscl.LowPassFilterConfig_rend(self) - - def clear(self): - return _mscl.LowPassFilterConfig_clear(self) - - def get_allocator(self): - return _mscl.LowPassFilterConfig_get_allocator(self) - - def pop_back(self): - return _mscl.LowPassFilterConfig_pop_back(self) - - def erase(self, *args): - return _mscl.LowPassFilterConfig_erase(self, *args) - - def __init__(self, *args): - _mscl.LowPassFilterConfig_swiginit(self, _mscl.new_LowPassFilterConfig(*args)) - - def push_back(self, x): - return _mscl.LowPassFilterConfig_push_back(self, x) - - def front(self): - return _mscl.LowPassFilterConfig_front(self) - - def back(self): - return _mscl.LowPassFilterConfig_back(self) - - def assign(self, n, x): - return _mscl.LowPassFilterConfig_assign(self, n, x) - - def resize(self, *args): - return _mscl.LowPassFilterConfig_resize(self, *args) - - def insert(self, *args): - return _mscl.LowPassFilterConfig_insert(self, *args) - - def reserve(self, n): - return _mscl.LowPassFilterConfig_reserve(self, n) - - def capacity(self): - return _mscl.LowPassFilterConfig_capacity(self) - __swig_destroy__ = _mscl.delete_LowPassFilterConfig - -# Register LowPassFilterConfig in _mscl: -_mscl.LowPassFilterConfig_swigregister(LowPassFilterConfig) - -class AidingMeasurementSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AidingMeasurementSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AidingMeasurementSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.AidingMeasurementSourceOptions___bool__(self) - - def __len__(self): - return _mscl.AidingMeasurementSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.AidingMeasurementSourceOptions_pop(self) - - def append(self, x): - return _mscl.AidingMeasurementSourceOptions_append(self, x) - - def empty(self): - return _mscl.AidingMeasurementSourceOptions_empty(self) - - def size(self): - return _mscl.AidingMeasurementSourceOptions_size(self) - - def swap(self, v): - return _mscl.AidingMeasurementSourceOptions_swap(self, v) - - def begin(self): - return _mscl.AidingMeasurementSourceOptions_begin(self) - - def end(self): - return _mscl.AidingMeasurementSourceOptions_end(self) - - def rbegin(self): - return _mscl.AidingMeasurementSourceOptions_rbegin(self) - - def rend(self): - return _mscl.AidingMeasurementSourceOptions_rend(self) - - def clear(self): - return _mscl.AidingMeasurementSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.AidingMeasurementSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.AidingMeasurementSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.AidingMeasurementSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.AidingMeasurementSourceOptions_swiginit(self, _mscl.new_AidingMeasurementSourceOptions(*args)) - - def push_back(self, x): - return _mscl.AidingMeasurementSourceOptions_push_back(self, x) - - def front(self): - return _mscl.AidingMeasurementSourceOptions_front(self) - - def back(self): - return _mscl.AidingMeasurementSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.AidingMeasurementSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.AidingMeasurementSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.AidingMeasurementSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.AidingMeasurementSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.AidingMeasurementSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_AidingMeasurementSourceOptions - -# Register AidingMeasurementSourceOptions in _mscl: -_mscl.AidingMeasurementSourceOptions_swigregister(AidingMeasurementSourceOptions) - -class PpsSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.PpsSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.PpsSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.PpsSourceOptions___bool__(self) - - def __len__(self): - return _mscl.PpsSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.PpsSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.PpsSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.PpsSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.PpsSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.PpsSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.PpsSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.PpsSourceOptions_pop(self) - - def append(self, x): - return _mscl.PpsSourceOptions_append(self, x) - - def empty(self): - return _mscl.PpsSourceOptions_empty(self) - - def size(self): - return _mscl.PpsSourceOptions_size(self) - - def swap(self, v): - return _mscl.PpsSourceOptions_swap(self, v) - - def begin(self): - return _mscl.PpsSourceOptions_begin(self) - - def end(self): - return _mscl.PpsSourceOptions_end(self) - - def rbegin(self): - return _mscl.PpsSourceOptions_rbegin(self) - - def rend(self): - return _mscl.PpsSourceOptions_rend(self) - - def clear(self): - return _mscl.PpsSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.PpsSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.PpsSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.PpsSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.PpsSourceOptions_swiginit(self, _mscl.new_PpsSourceOptions(*args)) - - def push_back(self, x): - return _mscl.PpsSourceOptions_push_back(self, x) - - def front(self): - return _mscl.PpsSourceOptions_front(self) - - def back(self): - return _mscl.PpsSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.PpsSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.PpsSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.PpsSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.PpsSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.PpsSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_PpsSourceOptions - -# Register PpsSourceOptions in _mscl: -_mscl.PpsSourceOptions_swigregister(PpsSourceOptions) - -class GeographicSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeographicSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeographicSources___nonzero__(self) - - def __bool__(self): - return _mscl.GeographicSources___bool__(self) - - def __len__(self): - return _mscl.GeographicSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeographicSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeographicSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeographicSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeographicSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeographicSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeographicSources___setitem__(self, *args) - - def pop(self): - return _mscl.GeographicSources_pop(self) - - def append(self, x): - return _mscl.GeographicSources_append(self, x) - - def empty(self): - return _mscl.GeographicSources_empty(self) - - def size(self): - return _mscl.GeographicSources_size(self) - - def swap(self, v): - return _mscl.GeographicSources_swap(self, v) - - def begin(self): - return _mscl.GeographicSources_begin(self) - - def end(self): - return _mscl.GeographicSources_end(self) - - def rbegin(self): - return _mscl.GeographicSources_rbegin(self) - - def rend(self): - return _mscl.GeographicSources_rend(self) - - def clear(self): - return _mscl.GeographicSources_clear(self) - - def get_allocator(self): - return _mscl.GeographicSources_get_allocator(self) - - def pop_back(self): - return _mscl.GeographicSources_pop_back(self) - - def erase(self, *args): - return _mscl.GeographicSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GeographicSources_swiginit(self, _mscl.new_GeographicSources(*args)) - - def push_back(self, x): - return _mscl.GeographicSources_push_back(self, x) - - def front(self): - return _mscl.GeographicSources_front(self) - - def back(self): - return _mscl.GeographicSources_back(self) - - def assign(self, n, x): - return _mscl.GeographicSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeographicSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GeographicSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GeographicSources_reserve(self, n) - - def capacity(self): - return _mscl.GeographicSources_capacity(self) - __swig_destroy__ = _mscl.delete_GeographicSources - -# Register GeographicSources in _mscl: -_mscl.GeographicSources_swigregister(GeographicSources) - -class GnssSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSources___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSources___bool__(self) - - def __len__(self): - return _mscl.GnssSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssSources___setitem__(self, *args) - - def pop(self): - return _mscl.GnssSources_pop(self) - - def append(self, x): - return _mscl.GnssSources_append(self, x) - - def empty(self): - return _mscl.GnssSources_empty(self) - - def size(self): - return _mscl.GnssSources_size(self) - - def swap(self, v): - return _mscl.GnssSources_swap(self, v) - - def begin(self): - return _mscl.GnssSources_begin(self) - - def end(self): - return _mscl.GnssSources_end(self) - - def rbegin(self): - return _mscl.GnssSources_rbegin(self) - - def rend(self): - return _mscl.GnssSources_rend(self) - - def clear(self): - return _mscl.GnssSources_clear(self) - - def get_allocator(self): - return _mscl.GnssSources_get_allocator(self) - - def pop_back(self): - return _mscl.GnssSources_pop_back(self) - - def erase(self, *args): - return _mscl.GnssSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssSources_swiginit(self, _mscl.new_GnssSources(*args)) - - def push_back(self, x): - return _mscl.GnssSources_push_back(self, x) - - def front(self): - return _mscl.GnssSources_front(self) - - def back(self): - return _mscl.GnssSources_back(self) - - def assign(self, n, x): - return _mscl.GnssSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssSources_reserve(self, n) - - def capacity(self): - return _mscl.GnssSources_capacity(self) - __swig_destroy__ = _mscl.delete_GnssSources - -# Register GnssSources in _mscl: -_mscl.GnssSources_swigregister(GnssSources) - -class GnssSignalConfigOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSignalConfigOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSignalConfigOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSignalConfigOptions___bool__(self) - - def __len__(self): - return _mscl.GnssSignalConfigOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GnssSignalConfigOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GnssSignalConfigOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GnssSignalConfigOptions_has_key(self, key) - - def keys(self): - return _mscl.GnssSignalConfigOptions_keys(self) - - def values(self): - return _mscl.GnssSignalConfigOptions_values(self) - - def items(self): - return _mscl.GnssSignalConfigOptions_items(self) - - def __contains__(self, key): - return _mscl.GnssSignalConfigOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GnssSignalConfigOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GnssSignalConfigOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GnssSignalConfigOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GnssSignalConfigOptions_asdict(self) - - def __init__(self, *args): - _mscl.GnssSignalConfigOptions_swiginit(self, _mscl.new_GnssSignalConfigOptions(*args)) - - def empty(self): - return _mscl.GnssSignalConfigOptions_empty(self) - - def size(self): - return _mscl.GnssSignalConfigOptions_size(self) - - def swap(self, v): - return _mscl.GnssSignalConfigOptions_swap(self, v) - - def begin(self): - return _mscl.GnssSignalConfigOptions_begin(self) - - def end(self): - return _mscl.GnssSignalConfigOptions_end(self) - - def rbegin(self): - return _mscl.GnssSignalConfigOptions_rbegin(self) - - def rend(self): - return _mscl.GnssSignalConfigOptions_rend(self) - - def clear(self): - return _mscl.GnssSignalConfigOptions_clear(self) - - def get_allocator(self): - return _mscl.GnssSignalConfigOptions_get_allocator(self) - - def count(self, x): - return _mscl.GnssSignalConfigOptions_count(self, x) - - def erase(self, *args): - return _mscl.GnssSignalConfigOptions_erase(self, *args) - - def find(self, x): - return _mscl.GnssSignalConfigOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GnssSignalConfigOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GnssSignalConfigOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GnssSignalConfigOptions - -# Register GnssSignalConfigOptions in _mscl: -_mscl.GnssSignalConfigOptions_swigregister(GnssSignalConfigOptions) - -class NmeaMessageFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NmeaMessageFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NmeaMessageFormats___nonzero__(self) - - def __bool__(self): - return _mscl.NmeaMessageFormats___bool__(self) - - def __len__(self): - return _mscl.NmeaMessageFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.NmeaMessageFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NmeaMessageFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NmeaMessageFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NmeaMessageFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NmeaMessageFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NmeaMessageFormats___setitem__(self, *args) - - def pop(self): - return _mscl.NmeaMessageFormats_pop(self) - - def append(self, x): - return _mscl.NmeaMessageFormats_append(self, x) - - def empty(self): - return _mscl.NmeaMessageFormats_empty(self) - - def size(self): - return _mscl.NmeaMessageFormats_size(self) - - def swap(self, v): - return _mscl.NmeaMessageFormats_swap(self, v) - - def begin(self): - return _mscl.NmeaMessageFormats_begin(self) - - def end(self): - return _mscl.NmeaMessageFormats_end(self) - - def rbegin(self): - return _mscl.NmeaMessageFormats_rbegin(self) - - def rend(self): - return _mscl.NmeaMessageFormats_rend(self) - - def clear(self): - return _mscl.NmeaMessageFormats_clear(self) - - def get_allocator(self): - return _mscl.NmeaMessageFormats_get_allocator(self) - - def pop_back(self): - return _mscl.NmeaMessageFormats_pop_back(self) - - def erase(self, *args): - return _mscl.NmeaMessageFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.NmeaMessageFormats_swiginit(self, _mscl.new_NmeaMessageFormats(*args)) - - def push_back(self, x): - return _mscl.NmeaMessageFormats_push_back(self, x) - - def front(self): - return _mscl.NmeaMessageFormats_front(self) - - def back(self): - return _mscl.NmeaMessageFormats_back(self) - - def assign(self, n, x): - return _mscl.NmeaMessageFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.NmeaMessageFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.NmeaMessageFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.NmeaMessageFormats_reserve(self, n) - - def capacity(self): - return _mscl.NmeaMessageFormats_capacity(self) - __swig_destroy__ = _mscl.delete_NmeaMessageFormats - -# Register NmeaMessageFormats in _mscl: -_mscl.NmeaMessageFormats_swigregister(NmeaMessageFormats) - -class GpioPinModeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinModeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinModeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinModeOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinModeOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.GpioPinModeOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GpioPinModeOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GpioPinModeOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GpioPinModeOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GpioPinModeOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GpioPinModeOptions___setitem__(self, *args) - - def pop(self): - return _mscl.GpioPinModeOptions_pop(self) - - def append(self, x): - return _mscl.GpioPinModeOptions_append(self, x) - - def empty(self): - return _mscl.GpioPinModeOptions_empty(self) - - def size(self): - return _mscl.GpioPinModeOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinModeOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinModeOptions_begin(self) - - def end(self): - return _mscl.GpioPinModeOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinModeOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinModeOptions_rend(self) - - def clear(self): - return _mscl.GpioPinModeOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinModeOptions_get_allocator(self) - - def pop_back(self): - return _mscl.GpioPinModeOptions_pop_back(self) - - def erase(self, *args): - return _mscl.GpioPinModeOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.GpioPinModeOptions_swiginit(self, _mscl.new_GpioPinModeOptions(*args)) - - def push_back(self, x): - return _mscl.GpioPinModeOptions_push_back(self, x) - - def front(self): - return _mscl.GpioPinModeOptions_front(self) - - def back(self): - return _mscl.GpioPinModeOptions_back(self) - - def assign(self, n, x): - return _mscl.GpioPinModeOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.GpioPinModeOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.GpioPinModeOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.GpioPinModeOptions_reserve(self, n) - - def capacity(self): - return _mscl.GpioPinModeOptions_capacity(self) - __swig_destroy__ = _mscl.delete_GpioPinModeOptions - -# Register GpioPinModeOptions in _mscl: -_mscl.GpioPinModeOptions_swigregister(GpioPinModeOptions) - -class GpioBehaviorModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioBehaviorModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioBehaviorModes___nonzero__(self) - - def __bool__(self): - return _mscl.GpioBehaviorModes___bool__(self) - - def __len__(self): - return _mscl.GpioBehaviorModes___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioBehaviorModes___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioBehaviorModes___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioBehaviorModes_has_key(self, key) - - def keys(self): - return _mscl.GpioBehaviorModes_keys(self) - - def values(self): - return _mscl.GpioBehaviorModes_values(self) - - def items(self): - return _mscl.GpioBehaviorModes_items(self) - - def __contains__(self, key): - return _mscl.GpioBehaviorModes___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioBehaviorModes_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioBehaviorModes_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioBehaviorModes___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioBehaviorModes_asdict(self) - - def __init__(self, *args): - _mscl.GpioBehaviorModes_swiginit(self, _mscl.new_GpioBehaviorModes(*args)) - - def empty(self): - return _mscl.GpioBehaviorModes_empty(self) - - def size(self): - return _mscl.GpioBehaviorModes_size(self) - - def swap(self, v): - return _mscl.GpioBehaviorModes_swap(self, v) - - def begin(self): - return _mscl.GpioBehaviorModes_begin(self) - - def end(self): - return _mscl.GpioBehaviorModes_end(self) - - def rbegin(self): - return _mscl.GpioBehaviorModes_rbegin(self) - - def rend(self): - return _mscl.GpioBehaviorModes_rend(self) - - def clear(self): - return _mscl.GpioBehaviorModes_clear(self) - - def get_allocator(self): - return _mscl.GpioBehaviorModes_get_allocator(self) - - def count(self, x): - return _mscl.GpioBehaviorModes_count(self, x) - - def erase(self, *args): - return _mscl.GpioBehaviorModes_erase(self, *args) - - def find(self, x): - return _mscl.GpioBehaviorModes_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioBehaviorModes_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioBehaviorModes_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioBehaviorModes - -# Register GpioBehaviorModes in _mscl: -_mscl.GpioBehaviorModes_swigregister(GpioBehaviorModes) - -class GpioFeatureBehaviors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioFeatureBehaviors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioFeatureBehaviors___nonzero__(self) - - def __bool__(self): - return _mscl.GpioFeatureBehaviors___bool__(self) - - def __len__(self): - return _mscl.GpioFeatureBehaviors___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioFeatureBehaviors___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioFeatureBehaviors___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioFeatureBehaviors_has_key(self, key) - - def keys(self): - return _mscl.GpioFeatureBehaviors_keys(self) - - def values(self): - return _mscl.GpioFeatureBehaviors_values(self) - - def items(self): - return _mscl.GpioFeatureBehaviors_items(self) - - def __contains__(self, key): - return _mscl.GpioFeatureBehaviors___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioFeatureBehaviors_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioFeatureBehaviors_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioFeatureBehaviors___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioFeatureBehaviors_asdict(self) - - def __init__(self, *args): - _mscl.GpioFeatureBehaviors_swiginit(self, _mscl.new_GpioFeatureBehaviors(*args)) - - def empty(self): - return _mscl.GpioFeatureBehaviors_empty(self) - - def size(self): - return _mscl.GpioFeatureBehaviors_size(self) - - def swap(self, v): - return _mscl.GpioFeatureBehaviors_swap(self, v) - - def begin(self): - return _mscl.GpioFeatureBehaviors_begin(self) - - def end(self): - return _mscl.GpioFeatureBehaviors_end(self) - - def rbegin(self): - return _mscl.GpioFeatureBehaviors_rbegin(self) - - def rend(self): - return _mscl.GpioFeatureBehaviors_rend(self) - - def clear(self): - return _mscl.GpioFeatureBehaviors_clear(self) - - def get_allocator(self): - return _mscl.GpioFeatureBehaviors_get_allocator(self) - - def count(self, x): - return _mscl.GpioFeatureBehaviors_count(self, x) - - def erase(self, *args): - return _mscl.GpioFeatureBehaviors_erase(self, *args) - - def find(self, x): - return _mscl.GpioFeatureBehaviors_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioFeatureBehaviors_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioFeatureBehaviors_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioFeatureBehaviors - -# Register GpioFeatureBehaviors in _mscl: -_mscl.GpioFeatureBehaviors_swigregister(GpioFeatureBehaviors) - -class GpioPinOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioPinOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioPinOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioPinOptions_has_key(self, key) - - def keys(self): - return _mscl.GpioPinOptions_keys(self) - - def values(self): - return _mscl.GpioPinOptions_values(self) - - def items(self): - return _mscl.GpioPinOptions_items(self) - - def __contains__(self, key): - return _mscl.GpioPinOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioPinOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioPinOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioPinOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioPinOptions_asdict(self) - - def __init__(self, *args): - _mscl.GpioPinOptions_swiginit(self, _mscl.new_GpioPinOptions(*args)) - - def empty(self): - return _mscl.GpioPinOptions_empty(self) - - def size(self): - return _mscl.GpioPinOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinOptions_begin(self) - - def end(self): - return _mscl.GpioPinOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinOptions_rend(self) - - def clear(self): - return _mscl.GpioPinOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinOptions_get_allocator(self) - - def count(self, x): - return _mscl.GpioPinOptions_count(self, x) - - def erase(self, *args): - return _mscl.GpioPinOptions_erase(self, *args) - - def find(self, x): - return _mscl.GpioPinOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioPinOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioPinOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioPinOptions - -# Register GpioPinOptions in _mscl: -_mscl.GpioPinOptions_swigregister(GpioPinOptions) - -class EventInputTriggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventInputTriggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventInputTriggers___nonzero__(self) - - def __bool__(self): - return _mscl.EventInputTriggers___bool__(self) - - def __len__(self): - return _mscl.EventInputTriggers___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventInputTriggers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventInputTriggers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventInputTriggers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventInputTriggers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventInputTriggers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventInputTriggers___setitem__(self, *args) - - def __init__(self, *args): - _mscl.EventInputTriggers_swiginit(self, _mscl.new_EventInputTriggers(*args)) - - def empty(self): - return _mscl.EventInputTriggers_empty(self) - - def size(self): - return _mscl.EventInputTriggers_size(self) - - def swap(self, v): - return _mscl.EventInputTriggers_swap(self, v) - - def begin(self): - return _mscl.EventInputTriggers_begin(self) - - def end(self): - return _mscl.EventInputTriggers_end(self) - - def rbegin(self): - return _mscl.EventInputTriggers_rbegin(self) - - def rend(self): - return _mscl.EventInputTriggers_rend(self) - - def front(self): - return _mscl.EventInputTriggers_front(self) - - def back(self): - return _mscl.EventInputTriggers_back(self) - - def fill(self, u): - return _mscl.EventInputTriggers_fill(self, u) - __swig_destroy__ = _mscl.delete_EventInputTriggers - -# Register EventInputTriggers in _mscl: -_mscl.EventInputTriggers_swigregister(EventInputTriggers) - -class EventTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTypes___nonzero__(self) - - def __bool__(self): - return _mscl.EventTypes___bool__(self) - - def __len__(self): - return _mscl.EventTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTypes___setitem__(self, *args) - - def pop(self): - return _mscl.EventTypes_pop(self) - - def append(self, x): - return _mscl.EventTypes_append(self, x) - - def empty(self): - return _mscl.EventTypes_empty(self) - - def size(self): - return _mscl.EventTypes_size(self) - - def swap(self, v): - return _mscl.EventTypes_swap(self, v) - - def begin(self): - return _mscl.EventTypes_begin(self) - - def end(self): - return _mscl.EventTypes_end(self) - - def rbegin(self): - return _mscl.EventTypes_rbegin(self) - - def rend(self): - return _mscl.EventTypes_rend(self) - - def clear(self): - return _mscl.EventTypes_clear(self) - - def get_allocator(self): - return _mscl.EventTypes_get_allocator(self) - - def pop_back(self): - return _mscl.EventTypes_pop_back(self) - - def erase(self, *args): - return _mscl.EventTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTypes_swiginit(self, _mscl.new_EventTypes(*args)) - - def push_back(self, x): - return _mscl.EventTypes_push_back(self, x) - - def front(self): - return _mscl.EventTypes_front(self) - - def back(self): - return _mscl.EventTypes_back(self) - - def assign(self, n, x): - return _mscl.EventTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTypes_reserve(self, n) - - def capacity(self): - return _mscl.EventTypes_capacity(self) - __swig_destroy__ = _mscl.delete_EventTypes - -# Register EventTypes in _mscl: -_mscl.EventTypes_swigregister(EventTypes) - -class MeasurementReferenceFrames(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MeasurementReferenceFrames_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MeasurementReferenceFrames___nonzero__(self) - - def __bool__(self): - return _mscl.MeasurementReferenceFrames___bool__(self) - - def __len__(self): - return _mscl.MeasurementReferenceFrames___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.MeasurementReferenceFrames___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.MeasurementReferenceFrames___delitem__(self, key) - - def has_key(self, key): - return _mscl.MeasurementReferenceFrames_has_key(self, key) - - def keys(self): - return _mscl.MeasurementReferenceFrames_keys(self) - - def values(self): - return _mscl.MeasurementReferenceFrames_values(self) - - def items(self): - return _mscl.MeasurementReferenceFrames_items(self) - - def __contains__(self, key): - return _mscl.MeasurementReferenceFrames___contains__(self, key) - - def key_iterator(self): - return _mscl.MeasurementReferenceFrames_key_iterator(self) - - def value_iterator(self): - return _mscl.MeasurementReferenceFrames_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.MeasurementReferenceFrames___setitem__(self, *args) - - def asdict(self): - return _mscl.MeasurementReferenceFrames_asdict(self) - - def __init__(self, *args): - _mscl.MeasurementReferenceFrames_swiginit(self, _mscl.new_MeasurementReferenceFrames(*args)) - - def empty(self): - return _mscl.MeasurementReferenceFrames_empty(self) - - def size(self): - return _mscl.MeasurementReferenceFrames_size(self) - - def swap(self, v): - return _mscl.MeasurementReferenceFrames_swap(self, v) - - def begin(self): - return _mscl.MeasurementReferenceFrames_begin(self) - - def end(self): - return _mscl.MeasurementReferenceFrames_end(self) - - def rbegin(self): - return _mscl.MeasurementReferenceFrames_rbegin(self) - - def rend(self): - return _mscl.MeasurementReferenceFrames_rend(self) - - def clear(self): - return _mscl.MeasurementReferenceFrames_clear(self) - - def get_allocator(self): - return _mscl.MeasurementReferenceFrames_get_allocator(self) - - def count(self, x): - return _mscl.MeasurementReferenceFrames_count(self, x) - - def erase(self, *args): - return _mscl.MeasurementReferenceFrames_erase(self, *args) - - def find(self, x): - return _mscl.MeasurementReferenceFrames_find(self, x) - - def lower_bound(self, x): - return _mscl.MeasurementReferenceFrames_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.MeasurementReferenceFrames_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrames - -# Register MeasurementReferenceFrames in _mscl: -_mscl.MeasurementReferenceFrames_swigregister(MeasurementReferenceFrames) - -class Bins(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bins_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bins___nonzero__(self) - - def __bool__(self): - return _mscl.Bins___bool__(self) - - def __len__(self): - return _mscl.Bins___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bins___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bins___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bins___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bins___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bins___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bins___setitem__(self, *args) - - def pop(self): - return _mscl.Bins_pop(self) - - def append(self, x): - return _mscl.Bins_append(self, x) - - def empty(self): - return _mscl.Bins_empty(self) - - def size(self): - return _mscl.Bins_size(self) - - def swap(self, v): - return _mscl.Bins_swap(self, v) - - def begin(self): - return _mscl.Bins_begin(self) - - def end(self): - return _mscl.Bins_end(self) - - def rbegin(self): - return _mscl.Bins_rbegin(self) - - def rend(self): - return _mscl.Bins_rend(self) - - def clear(self): - return _mscl.Bins_clear(self) - - def get_allocator(self): - return _mscl.Bins_get_allocator(self) - - def pop_back(self): - return _mscl.Bins_pop_back(self) - - def erase(self, *args): - return _mscl.Bins_erase(self, *args) - - def __init__(self, *args): - _mscl.Bins_swiginit(self, _mscl.new_Bins(*args)) - - def push_back(self, x): - return _mscl.Bins_push_back(self, x) - - def front(self): - return _mscl.Bins_front(self) - - def back(self): - return _mscl.Bins_back(self) - - def assign(self, n, x): - return _mscl.Bins_assign(self, n, x) - - def insert(self, *args): - return _mscl.Bins_insert(self, *args) - - def reserve(self, n): - return _mscl.Bins_reserve(self, n) - - def capacity(self): - return _mscl.Bins_capacity(self) - __swig_destroy__ = _mscl.delete_Bins - -# Register Bins in _mscl: -_mscl.Bins_swigregister(Bins) - -class Error(Exception): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_swiginit(self, _mscl.new_Error(*args)) - __swig_destroy__ = _mscl.delete_Error - - def what(self): - return _mscl.Error_what(self) - - def __str__(self): - return _mscl.Error___str__(self) - -# Register Error in _mscl: -_mscl.Error_swigregister(Error) - -class Error_NotSupported(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NotSupported_swiginit(self, _mscl.new_Error_NotSupported(*args)) - __swig_destroy__ = _mscl.delete_Error_NotSupported - -# Register Error_NotSupported in _mscl: -_mscl.Error_NotSupported_swigregister(Error_NotSupported) - -class Error_NoData(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NoData_swiginit(self, _mscl.new_Error_NoData(*args)) - __swig_destroy__ = _mscl.delete_Error_NoData - -# Register Error_NoData in _mscl: -_mscl.Error_NoData_swigregister(Error_NoData) - -class Error_BadDataType(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Error_BadDataType_swiginit(self, _mscl.new_Error_BadDataType()) - __swig_destroy__ = _mscl.delete_Error_BadDataType - -# Register Error_BadDataType in _mscl: -_mscl.Error_BadDataType_swigregister(Error_BadDataType) - -class Error_UnknownSampleRate(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_UnknownSampleRate_swiginit(self, _mscl.new_Error_UnknownSampleRate(*args)) - __swig_destroy__ = _mscl.delete_Error_UnknownSampleRate - -# Register Error_UnknownSampleRate in _mscl: -_mscl.Error_UnknownSampleRate_swigregister(Error_UnknownSampleRate) - -class Error_Communication(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Communication_swiginit(self, _mscl.new_Error_Communication(*args)) - __swig_destroy__ = _mscl.delete_Error_Communication - -# Register Error_Communication in _mscl: -_mscl.Error_Communication_swigregister(Error_Communication) - -class Error_NodeCommunication(Error_Communication): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NodeCommunication_swiginit(self, _mscl.new_Error_NodeCommunication(*args)) - - def nodeAddress(self): - return _mscl.Error_NodeCommunication_nodeAddress(self) - __swig_destroy__ = _mscl.delete_Error_NodeCommunication - -# Register Error_NodeCommunication in _mscl: -_mscl.Error_NodeCommunication_swigregister(Error_NodeCommunication) - -class Error_Connection(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Connection_swiginit(self, _mscl.new_Error_Connection(*args)) - __swig_destroy__ = _mscl.delete_Error_Connection - - def code(self): - return _mscl.Error_Connection_code(self) - - def value(self): - return _mscl.Error_Connection_value(self) - -# Register Error_Connection in _mscl: -_mscl.Error_Connection_swigregister(Error_Connection) - -class Error_InvalidSerialPort(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code): - _mscl.Error_InvalidSerialPort_swiginit(self, _mscl.new_Error_InvalidSerialPort(code)) - __swig_destroy__ = _mscl.delete_Error_InvalidSerialPort - -# Register Error_InvalidSerialPort in _mscl: -_mscl.Error_InvalidSerialPort_swigregister(Error_InvalidSerialPort) - -class Error_InvalidTcpServer(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidTcpServer_swiginit(self, _mscl.new_Error_InvalidTcpServer(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidTcpServer - -# Register Error_InvalidTcpServer in _mscl: -_mscl.Error_InvalidTcpServer_swigregister(Error_InvalidTcpServer) - -class Error_InvalidUnixSocket(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidUnixSocket_swiginit(self, _mscl.new_Error_InvalidUnixSocket(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidUnixSocket - -# Register Error_InvalidUnixSocket in _mscl: -_mscl.Error_InvalidUnixSocket_swigregister(Error_InvalidUnixSocket) - -class Error_MipCmdFailed(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_MipCmdFailed_swiginit(self, _mscl.new_Error_MipCmdFailed(*args)) - __swig_destroy__ = _mscl.delete_Error_MipCmdFailed - - def code(self): - return _mscl.Error_MipCmdFailed_code(self) - - def value(self): - return _mscl.Error_MipCmdFailed_value(self) - -# Register Error_MipCmdFailed in _mscl: -_mscl.Error_MipCmdFailed_swigregister(Error_MipCmdFailed) - -class Error_InvalidConfig(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_InvalidConfig_swiginit(self, _mscl.new_Error_InvalidConfig(*args)) - __swig_destroy__ = _mscl.delete_Error_InvalidConfig - - def issues(self): - return _mscl.Error_InvalidConfig_issues(self) - -# Register Error_InvalidConfig in _mscl: -_mscl.Error_InvalidConfig_swigregister(Error_InvalidConfig) - -class Error_InvalidNodeConfig(Error_InvalidConfig): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, issues, nodeAddress): - _mscl.Error_InvalidNodeConfig_swiginit(self, _mscl.new_Error_InvalidNodeConfig(issues, nodeAddress)) - __swig_destroy__ = _mscl.delete_Error_InvalidNodeConfig - - def nodeAddress(self): - return _mscl.Error_InvalidNodeConfig_nodeAddress(self) - -# Register Error_InvalidNodeConfig in _mscl: -_mscl.Error_InvalidNodeConfig_swigregister(Error_InvalidNodeConfig) - - - diff --git a/mscl_release_assets/mscl-armhf-Python3.12-v67.0.0/_mscl.so b/mscl_release_assets/mscl-armhf-Python3.12-v67.0.0/_mscl.so deleted file mode 100644 index bbdb1fc..0000000 Binary files a/mscl_release_assets/mscl-armhf-Python3.12-v67.0.0/_mscl.so and /dev/null differ diff --git a/mscl_release_assets/mscl-armhf-Python3.12-v67.0.0/mscl.py b/mscl_release_assets/mscl-armhf-Python3.12-v67.0.0/mscl.py deleted file mode 100644 index daa6217..0000000 --- a/mscl_release_assets/mscl-armhf-Python3.12-v67.0.0/mscl.py +++ /dev/null @@ -1,18376 +0,0 @@ -# This file was automatically generated by SWIG (http://www.swig.org). -# Version 4.0.1 -# -# Do not make changes to this file unless you know what you are doing--modify -# the SWIG interface file instead. - -from sys import version_info as _swig_python_version_info -if _swig_python_version_info < (2, 7, 0): - raise RuntimeError("Python 2.7 or later required") - -# Import the low-level C/C++ module -if __package__ or "." in __name__: - from . import _mscl -else: - import _mscl - -try: - import builtins as __builtin__ -except ImportError: - import __builtin__ - -def _swig_repr(self): - try: - strthis = "proxy of " + self.this.__repr__() - except __builtin__.Exception: - strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - - -def _swig_setattr_nondynamic_instance_variable(set): - def set_instance_attr(self, name, value): - if name == "thisown": - self.this.own(value) - elif name == "this": - set(self, name, value) - elif hasattr(self, name) and isinstance(getattr(type(self), name), property): - set(self, name, value) - else: - raise AttributeError("You cannot add instance attributes to %s" % self) - return set_instance_attr - - -def _swig_setattr_nondynamic_class_variable(set): - def set_class_attr(cls, name, value): - if hasattr(cls, name) and not isinstance(getattr(cls, name), property): - set(cls, name, value) - else: - raise AttributeError("You cannot add class attributes to %s" % cls) - return set_class_attr - - -def _swig_add_metaclass(metaclass): - """Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass""" - def wrapper(cls): - return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy()) - return wrapper - - -class _SwigNonDynamicMeta(type): - """Meta class to enforce nondynamic attributes (no new attributes) for a class""" - __setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__) - - -class SwigPyIterator(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_SwigPyIterator - - def value(self): - return _mscl.SwigPyIterator_value(self) - - def incr(self, n=1): - return _mscl.SwigPyIterator_incr(self, n) - - def decr(self, n=1): - return _mscl.SwigPyIterator_decr(self, n) - - def distance(self, x): - return _mscl.SwigPyIterator_distance(self, x) - - def equal(self, x): - return _mscl.SwigPyIterator_equal(self, x) - - def copy(self): - return _mscl.SwigPyIterator_copy(self) - - def next(self): - return _mscl.SwigPyIterator_next(self) - - def __next__(self): - return _mscl.SwigPyIterator___next__(self) - - def previous(self): - return _mscl.SwigPyIterator_previous(self) - - def advance(self, n): - return _mscl.SwigPyIterator_advance(self, n) - - def __eq__(self, x): - return _mscl.SwigPyIterator___eq__(self, x) - - def __ne__(self, x): - return _mscl.SwigPyIterator___ne__(self, x) - - def __iadd__(self, n): - return _mscl.SwigPyIterator___iadd__(self, n) - - def __isub__(self, n): - return _mscl.SwigPyIterator___isub__(self, n) - - def __add__(self, n): - return _mscl.SwigPyIterator___add__(self, n) - - def __sub__(self, *args): - return _mscl.SwigPyIterator___sub__(self, *args) - def __iter__(self): - return self - -# Register SwigPyIterator in _mscl: -_mscl.SwigPyIterator_swigregister(SwigPyIterator) - -SHARED_PTR_DISOWN = _mscl.SHARED_PTR_DISOWN -valueType_float = _mscl.valueType_float -valueType_double = _mscl.valueType_double -valueType_uint8 = _mscl.valueType_uint8 -valueType_uint16 = _mscl.valueType_uint16 -valueType_uint32 = _mscl.valueType_uint32 -valueType_int16 = _mscl.valueType_int16 -valueType_int32 = _mscl.valueType_int32 -valueType_bool = _mscl.valueType_bool -valueType_Vector = _mscl.valueType_Vector -valueType_Matrix = _mscl.valueType_Matrix -valueType_Timestamp = _mscl.valueType_Timestamp -valueType_string = _mscl.valueType_string -valueType_Bytes = _mscl.valueType_Bytes -valueType_StructuralHealth = _mscl.valueType_StructuralHealth -valueType_RfSweep = _mscl.valueType_RfSweep -valueType_ChannelMask = _mscl.valueType_ChannelMask -valueType_int8 = _mscl.valueType_int8 -valueType_uint64 = _mscl.valueType_uint64 -deviceState_idle = _mscl.deviceState_idle -deviceState_sleep = _mscl.deviceState_sleep -deviceState_sampling = _mscl.deviceState_sampling -deviceState_sampling_lostBeacon = _mscl.deviceState_sampling_lostBeacon -deviceState_sampling_inactive = _mscl.deviceState_sampling_inactive -deviceState_unknown = _mscl.deviceState_unknown -class BitMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BitMask_swiginit(self, _mscl.new_BitMask(*args)) - __swig_destroy__ = _mscl.delete_BitMask - - def __eq__(self, other): - return _mscl.BitMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.BitMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.BitMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.BitMask___gt__(self, other) - - def fromMask(self, val): - return _mscl.BitMask_fromMask(self, val) - - def toMask(self): - return _mscl.BitMask_toMask(self) - - def enabledCount(self): - return _mscl.BitMask_enabledCount(self) - - def enabled(self, bitIndex): - return _mscl.BitMask_enabled(self, bitIndex) - - def enable(self, bitIndex, enable=True): - return _mscl.BitMask_enable(self, bitIndex, enable) - - def lastBitEnabled(self): - return _mscl.BitMask_lastBitEnabled(self) - -# Register BitMask in _mscl: -_mscl.BitMask_swigregister(BitMask) - -class ChannelMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_CHANNELS = _mscl.ChannelMask_MAX_CHANNELS - - def __init__(self, *args): - _mscl.ChannelMask_swiginit(self, _mscl.new_ChannelMask(*args)) - __swig_destroy__ = _mscl.delete_ChannelMask - - def __eq__(self, other): - return _mscl.ChannelMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.ChannelMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.ChannelMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.ChannelMask___gt__(self, other) - - def fromMask(self, channelMask): - return _mscl.ChannelMask_fromMask(self, channelMask) - - def toMask(self): - return _mscl.ChannelMask_toMask(self) - - def count(self): - return _mscl.ChannelMask_count(self) - - def enabled(self, channel): - return _mscl.ChannelMask_enabled(self, channel) - - def enable(self, channel, enable=True): - return _mscl.ChannelMask_enable(self, channel, enable) - - def lastChEnabled(self): - return _mscl.ChannelMask_lastChEnabled(self) - -# Register ChannelMask in _mscl: -_mscl.ChannelMask_swigregister(ChannelMask) - -class Value(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_Value - - def storedAs(self): - return _mscl.Value_storedAs(self) - - def as_float(self): - return _mscl.Value_as_float(self) - - def as_double(self): - return _mscl.Value_as_double(self) - - def as_uint8(self): - return _mscl.Value_as_uint8(self) - - def as_uint16(self): - return _mscl.Value_as_uint16(self) - - def as_uint32(self): - return _mscl.Value_as_uint32(self) - - def as_uint64(self): - return _mscl.Value_as_uint64(self) - - def as_int8(self): - return _mscl.Value_as_int8(self) - - def as_int16(self): - return _mscl.Value_as_int16(self) - - def as_int32(self): - return _mscl.Value_as_int32(self) - - def as_bool(self): - return _mscl.Value_as_bool(self) - - def as_ChannelMask(self): - return _mscl.Value_as_ChannelMask(self) - - def as_string(self): - return _mscl.Value_as_string(self) - - def __init__(self): - _mscl.Value_swiginit(self, _mscl.new_Value()) - -# Register Value in _mscl: -_mscl.Value_swigregister(Value) - -class Bin(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, start, end, count): - _mscl.Bin_swiginit(self, _mscl.new_Bin(start, end, count)) - - def start(self): - return _mscl.Bin_start(self) - - def end(self): - return _mscl.Bin_end(self) - - def count(self): - return _mscl.Bin_count(self) - __swig_destroy__ = _mscl.delete_Bin - -# Register Bin in _mscl: -_mscl.Bin_swigregister(Bin) - -class Histogram(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, binsStart, binsSize): - _mscl.Histogram_swiginit(self, _mscl.new_Histogram(binsStart, binsSize)) - - def binsStart(self): - return _mscl.Histogram_binsStart(self) - - def binsSize(self): - return _mscl.Histogram_binsSize(self) - - def bins(self): - return _mscl.Histogram_bins(self) - - def addBin(self, bin): - return _mscl.Histogram_addBin(self, bin) - __swig_destroy__ = _mscl.delete_Histogram - -# Register Histogram in _mscl: -_mscl.Histogram_swigregister(Histogram) - -class Timestamp(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INTERNAL = _mscl.Timestamp_INTERNAL - EXTERNAL = _mscl.Timestamp_EXTERNAL - TIME_OF_ARRIVAL = _mscl.Timestamp_TIME_OF_ARRIVAL - GPS = _mscl.Timestamp_GPS - UNIX = _mscl.Timestamp_UNIX - UTC = _mscl.Timestamp_UTC - - def __init__(self, *args): - _mscl.Timestamp_swiginit(self, _mscl.new_Timestamp(*args)) - __swig_destroy__ = _mscl.delete_Timestamp - - def nanoseconds(self, *args): - return _mscl.Timestamp_nanoseconds(self, *args) - - def seconds(self, *args): - return _mscl.Timestamp_seconds(self, *args) - - def storedEpoch(self): - return _mscl.Timestamp_storedEpoch(self) - - def __str__(self): - return _mscl.Timestamp___str__(self) - - def setTime(self, *args): - return _mscl.Timestamp_setTime(self, *args) - - def setTimeNow(self): - return _mscl.Timestamp_setTimeNow(self) - - @staticmethod - def timeNow(): - return _mscl.Timestamp_timeNow() - - @staticmethod - def setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - - @staticmethod - def getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - - @staticmethod - def gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - - @staticmethod - def utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -# Register Timestamp in _mscl: -_mscl.Timestamp_swigregister(Timestamp) - -def Timestamp_timeNow(): - return _mscl.Timestamp_timeNow() - -def Timestamp_setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - -def Timestamp_getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - -def Timestamp_gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - -def Timestamp_utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -class TimeSpan(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - NANOSECONDS_PER_MICROSECOND = _mscl.TimeSpan_NANOSECONDS_PER_MICROSECOND - NANOSECONDS_PER_MILLISECOND = _mscl.TimeSpan_NANOSECONDS_PER_MILLISECOND - NANOSECONDS_PER_SECOND = _mscl.TimeSpan_NANOSECONDS_PER_SECOND - - def getNanoseconds(self): - return _mscl.TimeSpan_getNanoseconds(self) - - def getMicroseconds(self): - return _mscl.TimeSpan_getMicroseconds(self) - - def getMilliseconds(self): - return _mscl.TimeSpan_getMilliseconds(self) - - def getSeconds(self): - return _mscl.TimeSpan_getSeconds(self) - - @staticmethod - def NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - - @staticmethod - def MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - - @staticmethod - def MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - - @staticmethod - def Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - - @staticmethod - def Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - - @staticmethod - def Hours(hours): - return _mscl.TimeSpan_Hours(hours) - - @staticmethod - def Days(days): - return _mscl.TimeSpan_Days(days) - __swig_destroy__ = _mscl.delete_TimeSpan - -# Register TimeSpan in _mscl: -_mscl.TimeSpan_swigregister(TimeSpan) - -def TimeSpan_NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - -def TimeSpan_MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - -def TimeSpan_MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - -def TimeSpan_Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - -def TimeSpan_Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - -def TimeSpan_Hours(hours): - return _mscl.TimeSpan_Hours(hours) - -def TimeSpan_Days(days): - return _mscl.TimeSpan_Days(days) - -class Version(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Version_swiginit(self, _mscl.new_Version(*args)) - - def __eq__(self, cmp): - return _mscl.Version___eq__(self, cmp) - - def __ne__(self, cmp): - return _mscl.Version___ne__(self, cmp) - - def __lt__(self, cmp): - return _mscl.Version___lt__(self, cmp) - - def __le__(self, cmp): - return _mscl.Version___le__(self, cmp) - - def __gt__(self, cmp): - return _mscl.Version___gt__(self, cmp) - - def __ge__(self, cmp): - return _mscl.Version___ge__(self, cmp) - - def __str__(self): - return _mscl.Version___str__(self) - - def fromString(self, strVersion): - return _mscl.Version_fromString(self, strVersion) - - def majorPart(self): - return _mscl.Version_majorPart(self) - - def minorPart(self): - return _mscl.Version_minorPart(self) - - def patchPart(self): - return _mscl.Version_patchPart(self) - __swig_destroy__ = _mscl.delete_Version - -# Register Version in _mscl: -_mscl.Version_swigregister(Version) - -class DeviceInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.DeviceInfo_connectionType_serial - connectionType_tcp = _mscl.DeviceInfo_connectionType_tcp - - def __init__(self, *args): - _mscl.DeviceInfo_swiginit(self, _mscl.new_DeviceInfo(*args)) - - def description(self): - return _mscl.DeviceInfo_description(self) - - def serial(self): - return _mscl.DeviceInfo_serial(self) - - def baudRate(self): - return _mscl.DeviceInfo_baudRate(self) - - def connectionType(self): - return _mscl.DeviceInfo_connectionType(self) - __swig_destroy__ = _mscl.delete_DeviceInfo - -# Register DeviceInfo in _mscl: -_mscl.DeviceInfo_swigregister(DeviceInfo) -cvar = _mscl.cvar -MSCL_VERSION = cvar.MSCL_VERSION - -class Devices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def listBaseStations(): - return _mscl.Devices_listBaseStations() - - @staticmethod - def listInertialDevices(): - return _mscl.Devices_listInertialDevices() - - @staticmethod - def listPorts(): - return _mscl.Devices_listPorts() - __swig_destroy__ = _mscl.delete_Devices - -# Register Devices in _mscl: -_mscl.Devices_swigregister(Devices) - -def Devices_listBaseStations(): - return _mscl.Devices_listBaseStations() - -def Devices_listInertialDevices(): - return _mscl.Devices_listInertialDevices() - -def Devices_listPorts(): - return _mscl.Devices_listPorts() - -class ConnectionDebugData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ConnectionDebugData_swiginit(self, _mscl.new_ConnectionDebugData(*args)) - - def fromRead(self): - return _mscl.ConnectionDebugData_fromRead(self) - - def timestamp(self): - return _mscl.ConnectionDebugData_timestamp(self) - - def data(self): - return _mscl.ConnectionDebugData_data(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugData - -# Register ConnectionDebugData in _mscl: -_mscl.ConnectionDebugData_swigregister(ConnectionDebugData) - -class Connection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.Connection_connectionType_serial - connectionType_tcp = _mscl.Connection_connectionType_tcp - connectionType_webSocket = _mscl.Connection_connectionType_webSocket - connectionType_unixSocket = _mscl.Connection_connectionType_unixSocket - - def __init__(self): - _mscl.Connection_swiginit(self, _mscl.new_Connection()) - - @staticmethod - def Serial(*args): - return _mscl.Connection_Serial(*args) - - @staticmethod - def TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - - @staticmethod - def UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - - @staticmethod - def Mock(): - return _mscl.Connection_Mock() - - def description(self): - return _mscl.Connection_description(self) - - def port(self): - return _mscl.Connection_port(self) - - def type(self): - return _mscl.Connection_type(self) - - def disconnect(self): - return _mscl.Connection_disconnect(self) - - def reconnect(self): - return _mscl.Connection_reconnect(self) - - def write(self, bytes): - return _mscl.Connection_write(self, bytes) - - def writeStr(self, bytes): - return _mscl.Connection_writeStr(self, bytes) - - def clearBuffer(self): - return _mscl.Connection_clearBuffer(self) - - def byteReadPos(self): - return _mscl.Connection_byteReadPos(self) - - def byteAppendPos(self): - return _mscl.Connection_byteAppendPos(self) - - def rawByteMode(self, *args): - return _mscl.Connection_rawByteMode(self, *args) - - def getRawBytes(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytes(self, timeout, maxBytes, minBytes) - - def getRawBytesStr(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytesStr(self, timeout, maxBytes, minBytes) - - def getRawBytesWithPattern(self, pattern, timeout=0): - return _mscl.Connection_getRawBytesWithPattern(self, pattern, timeout) - - def debugMode(self, *args): - return _mscl.Connection_debugMode(self, *args) - - def getDebugData(self, timeout=0): - return _mscl.Connection_getDebugData(self, timeout) - - def updateBaudRate(self, baudRate): - return _mscl.Connection_updateBaudRate(self, baudRate) - __swig_destroy__ = _mscl.delete_Connection - -# Register Connection in _mscl: -_mscl.Connection_swigregister(Connection) - -def Connection_Serial(*args): - return _mscl.Connection_Serial(*args) - -def Connection_TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - -def Connection_UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - -def Connection_Mock(): - return _mscl.Connection_Mock() - -class WirelessTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - beacon_none = _mscl.WirelessTypes_beacon_none - beacon_internalTimer = _mscl.WirelessTypes_beacon_internalTimer - beacon_internalPPS = _mscl.WirelessTypes_beacon_internalPPS - beacon_externalPPS = _mscl.WirelessTypes_beacon_externalPPS - microcontroller_18F452 = _mscl.WirelessTypes_microcontroller_18F452 - microcontroller_18F4620 = _mscl.WirelessTypes_microcontroller_18F4620 - microcontroller_18F46K20 = _mscl.WirelessTypes_microcontroller_18F46K20 - microcontroller_18F67K90 = _mscl.WirelessTypes_microcontroller_18F67K90 - microcontroller_EFM32WG990F256 = _mscl.WirelessTypes_microcontroller_EFM32WG990F256 - microcontroller_EFR32FG1P132F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32FG1P132F256GM48 - microcontroller_EFR32MG1P232F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32MG1P232F256GM48 - collectionMethod_logOnly = _mscl.WirelessTypes_collectionMethod_logOnly - collectionMethod_transmitOnly = _mscl.WirelessTypes_collectionMethod_transmitOnly - collectionMethod_logAndTransmit = _mscl.WirelessTypes_collectionMethod_logAndTransmit - dataType_first = _mscl.WirelessTypes_dataType_first - dataType_uint16_shifted = _mscl.WirelessTypes_dataType_uint16_shifted - dataType_float32 = _mscl.WirelessTypes_dataType_float32 - dataType_uint16_12bitRes = _mscl.WirelessTypes_dataType_uint16_12bitRes - dataType_uint32 = _mscl.WirelessTypes_dataType_uint32 - dataType_uint16 = _mscl.WirelessTypes_dataType_uint16 - dataType_float32_noCals = _mscl.WirelessTypes_dataType_float32_noCals - dataType_uint24_18bitRes = _mscl.WirelessTypes_dataType_uint24_18bitRes - dataType_uint16_18bitTrunc = _mscl.WirelessTypes_dataType_uint16_18bitTrunc - dataType_int24_20bit = _mscl.WirelessTypes_dataType_int24_20bit - dataType_int16_20bitTrunc = _mscl.WirelessTypes_dataType_int16_20bitTrunc - dataType_uint24 = _mscl.WirelessTypes_dataType_uint24 - dataType_uint16_24bitTrunc = _mscl.WirelessTypes_dataType_uint16_24bitTrunc - dataType_int16_x10 = _mscl.WirelessTypes_dataType_int16_x10 - dataType_last = _mscl.WirelessTypes_dataType_last - dataFormat_raw_uint16 = _mscl.WirelessTypes_dataFormat_raw_uint16 - dataFormat_cal_float = _mscl.WirelessTypes_dataFormat_cal_float - dataFormat_raw_uint24 = _mscl.WirelessTypes_dataFormat_raw_uint24 - dataFormat_raw_int24 = _mscl.WirelessTypes_dataFormat_raw_int24 - dataFormat_raw_int16 = _mscl.WirelessTypes_dataFormat_raw_int16 - dataFormat_cal_int16_x10 = _mscl.WirelessTypes_dataFormat_cal_int16_x10 - syncMode_continuous = _mscl.WirelessTypes_syncMode_continuous - syncMode_burst = _mscl.WirelessTypes_syncMode_burst - samplingMode_sync = _mscl.WirelessTypes_samplingMode_sync - samplingMode_syncBurst = _mscl.WirelessTypes_samplingMode_syncBurst - samplingMode_nonSync = _mscl.WirelessTypes_samplingMode_nonSync - samplingMode_armedDatalog = _mscl.WirelessTypes_samplingMode_armedDatalog - samplingMode_syncEvent = _mscl.WirelessTypes_samplingMode_syncEvent - samplingMode_nonSyncEvent = _mscl.WirelessTypes_samplingMode_nonSyncEvent - defaultMode_idle = _mscl.WirelessTypes_defaultMode_idle - defaultMode_ldc = _mscl.WirelessTypes_defaultMode_ldc - defaultMode_datalog = _mscl.WirelessTypes_defaultMode_datalog - defaultMode_sleep = _mscl.WirelessTypes_defaultMode_sleep - defaultMode_sync = _mscl.WirelessTypes_defaultMode_sync - freq_unknown = _mscl.WirelessTypes_freq_unknown - freq_11 = _mscl.WirelessTypes_freq_11 - freq_12 = _mscl.WirelessTypes_freq_12 - freq_13 = _mscl.WirelessTypes_freq_13 - freq_14 = _mscl.WirelessTypes_freq_14 - freq_15 = _mscl.WirelessTypes_freq_15 - freq_16 = _mscl.WirelessTypes_freq_16 - freq_17 = _mscl.WirelessTypes_freq_17 - freq_18 = _mscl.WirelessTypes_freq_18 - freq_19 = _mscl.WirelessTypes_freq_19 - freq_20 = _mscl.WirelessTypes_freq_20 - freq_21 = _mscl.WirelessTypes_freq_21 - freq_22 = _mscl.WirelessTypes_freq_22 - freq_23 = _mscl.WirelessTypes_freq_23 - freq_24 = _mscl.WirelessTypes_freq_24 - freq_25 = _mscl.WirelessTypes_freq_25 - freq_26 = _mscl.WirelessTypes_freq_26 - power_20dBm = _mscl.WirelessTypes_power_20dBm - power_16dBm = _mscl.WirelessTypes_power_16dBm - power_15dBm = _mscl.WirelessTypes_power_15dBm - power_12dBm = _mscl.WirelessTypes_power_12dBm - power_11dBm = _mscl.WirelessTypes_power_11dBm - power_10dBm = _mscl.WirelessTypes_power_10dBm - power_5dBm = _mscl.WirelessTypes_power_5dBm - power_1dBm = _mscl.WirelessTypes_power_1dBm - power_0dBm = _mscl.WirelessTypes_power_0dBm - retransmission_off = _mscl.WirelessTypes_retransmission_off - retransmission_on = _mscl.WirelessTypes_retransmission_on - retransmission_disabled = _mscl.WirelessTypes_retransmission_disabled - trigger_userInit = _mscl.WirelessTypes_trigger_userInit - trigger_ceiling = _mscl.WirelessTypes_trigger_ceiling - trigger_floor = _mscl.WirelessTypes_trigger_floor - trigger_rampUp = _mscl.WirelessTypes_trigger_rampUp - trigger_rampDown = _mscl.WirelessTypes_trigger_rampDown - equation_none = _mscl.WirelessTypes_equation_none - equation_standard = _mscl.WirelessTypes_equation_standard - unit_none = _mscl.WirelessTypes_unit_none - unit_other_bits = _mscl.WirelessTypes_unit_other_bits - unit_strain_strain = _mscl.WirelessTypes_unit_strain_strain - unit_strain_microStrain = _mscl.WirelessTypes_unit_strain_microStrain - unit_accel_g = _mscl.WirelessTypes_unit_accel_g - unit_accel_mPerSec2 = _mscl.WirelessTypes_unit_accel_mPerSec2 - unit_volts_volts = _mscl.WirelessTypes_unit_volts_volts - unit_volts_millivolts = _mscl.WirelessTypes_unit_volts_millivolts - unit_volts_microvolts = _mscl.WirelessTypes_unit_volts_microvolts - unit_temp_celsius = _mscl.WirelessTypes_unit_temp_celsius - unit_temp_kelvin = _mscl.WirelessTypes_unit_temp_kelvin - unit_temp_fahrenheit = _mscl.WirelessTypes_unit_temp_fahrenheit - unit_displacement_meters = _mscl.WirelessTypes_unit_displacement_meters - unit_displacement_millimeters = _mscl.WirelessTypes_unit_displacement_millimeters - unit_displacement_micrometers = _mscl.WirelessTypes_unit_displacement_micrometers - unit_force_lbf = _mscl.WirelessTypes_unit_force_lbf - unit_force_newtons = _mscl.WirelessTypes_unit_force_newtons - unit_force_kiloNewtons = _mscl.WirelessTypes_unit_force_kiloNewtons - unit_mass_kilograms = _mscl.WirelessTypes_unit_mass_kilograms - unit_pressure_bar = _mscl.WirelessTypes_unit_pressure_bar - unit_pressure_psi = _mscl.WirelessTypes_unit_pressure_psi - unit_pressure_atm = _mscl.WirelessTypes_unit_pressure_atm - unit_pressure_mmHg = _mscl.WirelessTypes_unit_pressure_mmHg - unit_pressure_pascal = _mscl.WirelessTypes_unit_pressure_pascal - unit_pressure_megaPascal = _mscl.WirelessTypes_unit_pressure_megaPascal - unit_pressure_kiloPascal = _mscl.WirelessTypes_unit_pressure_kiloPascal - unit_angDisplacement_degrees = _mscl.WirelessTypes_unit_angDisplacement_degrees - unit_angVelocity_degreesPerSec = _mscl.WirelessTypes_unit_angVelocity_degreesPerSec - unit_angVelocity_radiansPerSec = _mscl.WirelessTypes_unit_angVelocity_radiansPerSec - unit_other_percent = _mscl.WirelessTypes_unit_other_percent - unit_freq_rpm = _mscl.WirelessTypes_unit_freq_rpm - unit_freq_hertz = _mscl.WirelessTypes_unit_freq_hertz - unit_rh_percentRh = _mscl.WirelessTypes_unit_rh_percentRh - unit_other_mVperV = _mscl.WirelessTypes_unit_other_mVperV - unit_accel_milliG = _mscl.WirelessTypes_unit_accel_milliG - unit_accel_ftPerSec2 = _mscl.WirelessTypes_unit_accel_ftPerSec2 - unit_other_percentLife = _mscl.WirelessTypes_unit_other_percentLife - unit_other_count = _mscl.WirelessTypes_unit_other_count - unit_displacement_feet = _mscl.WirelessTypes_unit_displacement_feet - unit_displacement_inches = _mscl.WirelessTypes_unit_displacement_inches - unit_displacement_yards = _mscl.WirelessTypes_unit_displacement_yards - unit_displacement_miles = _mscl.WirelessTypes_unit_displacement_miles - unit_displacement_nautMiles = _mscl.WirelessTypes_unit_displacement_nautMiles - unit_displacement_thouInch = _mscl.WirelessTypes_unit_displacement_thouInch - unit_displacement_hundInch = _mscl.WirelessTypes_unit_displacement_hundInch - unit_displacement_kilometers = _mscl.WirelessTypes_unit_displacement_kilometers - unit_displacement_centimeters = _mscl.WirelessTypes_unit_displacement_centimeters - unit_irradiance_wattsPerSqMeter = _mscl.WirelessTypes_unit_irradiance_wattsPerSqMeter - unit_par_microEinstein = _mscl.WirelessTypes_unit_par_microEinstein - unit_mass_pound = _mscl.WirelessTypes_unit_mass_pound - unit_power_watt = _mscl.WirelessTypes_unit_power_watt - unit_power_milliwatt = _mscl.WirelessTypes_unit_power_milliwatt - unit_power_horsepower = _mscl.WirelessTypes_unit_power_horsepower - unit_reactivePower_var = _mscl.WirelessTypes_unit_reactivePower_var - unit_energy_wattHour = _mscl.WirelessTypes_unit_energy_wattHour - unit_energy_kiloWattHour = _mscl.WirelessTypes_unit_energy_kiloWattHour - unit_reactiveEnergy_VARh = _mscl.WirelessTypes_unit_reactiveEnergy_VARh - unit_reactiveEnergy_kVARh = _mscl.WirelessTypes_unit_reactiveEnergy_kVARh - unit_current_ampere = _mscl.WirelessTypes_unit_current_ampere - unit_current_milliampere = _mscl.WirelessTypes_unit_current_milliampere - unit_current_microampere = _mscl.WirelessTypes_unit_current_microampere - unit_pressure_millibar = _mscl.WirelessTypes_unit_pressure_millibar - unit_pressure_inHg = _mscl.WirelessTypes_unit_pressure_inHg - unit_rssi_dBm = _mscl.WirelessTypes_unit_rssi_dBm - unit_freq_kiloHertz = _mscl.WirelessTypes_unit_freq_kiloHertz - unit_angDisplacement_radians = _mscl.WirelessTypes_unit_angDisplacement_radians - unit_velocity_metersPerSec = _mscl.WirelessTypes_unit_velocity_metersPerSec - unit_velocity_kilometersPerSec = _mscl.WirelessTypes_unit_velocity_kilometersPerSec - unit_velocity_kilometersPerHr = _mscl.WirelessTypes_unit_velocity_kilometersPerHr - unit_velocity_milesPerHr = _mscl.WirelessTypes_unit_velocity_milesPerHr - unit_velocity_knots = _mscl.WirelessTypes_unit_velocity_knots - unit_volume_cubicMeter = _mscl.WirelessTypes_unit_volume_cubicMeter - unit_volume_cubicFt = _mscl.WirelessTypes_unit_volume_cubicFt - unit_volume_liters = _mscl.WirelessTypes_unit_volume_liters - unit_volume_gallon = _mscl.WirelessTypes_unit_volume_gallon - unit_flowRate_cubicMetersPerSec = _mscl.WirelessTypes_unit_flowRate_cubicMetersPerSec - unit_flowRate_cubicFtPerSec = _mscl.WirelessTypes_unit_flowRate_cubicFtPerSec - unit_torque_newtonMeter = _mscl.WirelessTypes_unit_torque_newtonMeter - unit_torque_footPounds = _mscl.WirelessTypes_unit_torque_footPounds - unit_torque_inchPounds = _mscl.WirelessTypes_unit_torque_inchPounds - unit_time_secs = _mscl.WirelessTypes_unit_time_secs - unit_time_nanosecs = _mscl.WirelessTypes_unit_time_nanosecs - unit_time_microsecs = _mscl.WirelessTypes_unit_time_microsecs - unit_time_millisecs = _mscl.WirelessTypes_unit_time_millisecs - unit_time_minutes = _mscl.WirelessTypes_unit_time_minutes - unit_time_hours = _mscl.WirelessTypes_unit_time_hours - unit_time_days = _mscl.WirelessTypes_unit_time_days - unit_time_weeks = _mscl.WirelessTypes_unit_time_weeks - unit_other_value = _mscl.WirelessTypes_unit_other_value - unit_magneticFlux_gauss = _mscl.WirelessTypes_unit_magneticFlux_gauss - unit_other_gSec = _mscl.WirelessTypes_unit_other_gSec - unit_other_secsPerSec = _mscl.WirelessTypes_unit_other_secsPerSec - unit_rssi_dBHz = _mscl.WirelessTypes_unit_rssi_dBHz - unit_density_kgPerMeter3 = _mscl.WirelessTypes_unit_density_kgPerMeter3 - unit_other_unitless = _mscl.WirelessTypes_unit_other_unitless - unit_velocity_inchesPerSec = _mscl.WirelessTypes_unit_velocity_inchesPerSec - unit_force_kg = _mscl.WirelessTypes_unit_force_kg - unit_rawVoltage_volts = _mscl.WirelessTypes_unit_rawVoltage_volts - unit_rawVoltage_millivolts = _mscl.WirelessTypes_unit_rawVoltage_millivolts - unit_rawVoltage_microvolts = _mscl.WirelessTypes_unit_rawVoltage_microvolts - unit_resistance_ohm = _mscl.WirelessTypes_unit_resistance_ohm - unit_resistance_milliohm = _mscl.WirelessTypes_unit_resistance_milliohm - unit_resistance_kiloohm = _mscl.WirelessTypes_unit_resistance_kiloohm - unit_velocity_mmPerSec = _mscl.WirelessTypes_unit_velocity_mmPerSec - unit_mass_grams = _mscl.WirelessTypes_unit_mass_grams - unit_mass_ton = _mscl.WirelessTypes_unit_mass_ton - unit_mass_tonne = _mscl.WirelessTypes_unit_mass_tonne - chType_none = _mscl.WirelessTypes_chType_none - chType_fullDifferential = _mscl.WirelessTypes_chType_fullDifferential - chType_singleEnded = _mscl.WirelessTypes_chType_singleEnded - chType_battery = _mscl.WirelessTypes_chType_battery - chType_temperature = _mscl.WirelessTypes_chType_temperature - chType_rh = _mscl.WirelessTypes_chType_rh - chType_acceleration = _mscl.WirelessTypes_chType_acceleration - chType_displacement = _mscl.WirelessTypes_chType_displacement - chType_voltage = _mscl.WirelessTypes_chType_voltage - chType_diffTemperature = _mscl.WirelessTypes_chType_diffTemperature - chType_digital = _mscl.WirelessTypes_chType_digital - chType_tilt = _mscl.WirelessTypes_chType_tilt - voltageType_singleEnded = _mscl.WirelessTypes_voltageType_singleEnded - voltageType_differential = _mscl.WirelessTypes_voltageType_differential - settling_4ms = _mscl.WirelessTypes_settling_4ms - settling_8ms = _mscl.WirelessTypes_settling_8ms - settling_16ms = _mscl.WirelessTypes_settling_16ms - settling_32ms = _mscl.WirelessTypes_settling_32ms - settling_40ms = _mscl.WirelessTypes_settling_40ms - settling_48ms = _mscl.WirelessTypes_settling_48ms - settling_60ms = _mscl.WirelessTypes_settling_60ms - settling_101ms_90db = _mscl.WirelessTypes_settling_101ms_90db - settling_120ms_80db = _mscl.WirelessTypes_settling_120ms_80db - settling_120ms_65db = _mscl.WirelessTypes_settling_120ms_65db - settling_160ms_69db = _mscl.WirelessTypes_settling_160ms_69db - settling_200ms = _mscl.WirelessTypes_settling_200ms - transducer_thermocouple = _mscl.WirelessTypes_transducer_thermocouple - transducer_rtd = _mscl.WirelessTypes_transducer_rtd - transducer_thermistor = _mscl.WirelessTypes_transducer_thermistor - tc_uncompensated = _mscl.WirelessTypes_tc_uncompensated - tc_K = _mscl.WirelessTypes_tc_K - tc_J = _mscl.WirelessTypes_tc_J - tc_R = _mscl.WirelessTypes_tc_R - tc_S = _mscl.WirelessTypes_tc_S - tc_T = _mscl.WirelessTypes_tc_T - tc_E = _mscl.WirelessTypes_tc_E - tc_B = _mscl.WirelessTypes_tc_B - tc_N = _mscl.WirelessTypes_tc_N - tc_customPolynomial = _mscl.WirelessTypes_tc_customPolynomial - rtd_uncompensated = _mscl.WirelessTypes_rtd_uncompensated - rtd_pt10 = _mscl.WirelessTypes_rtd_pt10 - rtd_pt50 = _mscl.WirelessTypes_rtd_pt50 - rtd_pt100 = _mscl.WirelessTypes_rtd_pt100 - rtd_pt200 = _mscl.WirelessTypes_rtd_pt200 - rtd_pt500 = _mscl.WirelessTypes_rtd_pt500 - rtd_pt1000 = _mscl.WirelessTypes_rtd_pt1000 - rtd_2wire = _mscl.WirelessTypes_rtd_2wire - rtd_3wire = _mscl.WirelessTypes_rtd_3wire - rtd_4wire = _mscl.WirelessTypes_rtd_4wire - thermistor_uncompensated = _mscl.WirelessTypes_thermistor_uncompensated - thermistor_44004_44033 = _mscl.WirelessTypes_thermistor_44004_44033 - thermistor_44005_44030 = _mscl.WirelessTypes_thermistor_44005_44030 - thermistor_44007_44034 = _mscl.WirelessTypes_thermistor_44007_44034 - thermistor_44006_44031 = _mscl.WirelessTypes_thermistor_44006_44031 - thermistor_44008_44032 = _mscl.WirelessTypes_thermistor_44008_44032 - thermistor_ysi_400 = _mscl.WirelessTypes_thermistor_ysi_400 - sampleRate_104170Hz = _mscl.WirelessTypes_sampleRate_104170Hz - sampleRate_78125Hz = _mscl.WirelessTypes_sampleRate_78125Hz - sampleRate_62500Hz = _mscl.WirelessTypes_sampleRate_62500Hz - sampleRate_25000Hz = _mscl.WirelessTypes_sampleRate_25000Hz - sampleRate_12500Hz = _mscl.WirelessTypes_sampleRate_12500Hz - sampleRate_3200Hz = _mscl.WirelessTypes_sampleRate_3200Hz - sampleRate_1600Hz = _mscl.WirelessTypes_sampleRate_1600Hz - sampleRate_800Hz = _mscl.WirelessTypes_sampleRate_800Hz - sampleRate_300Hz = _mscl.WirelessTypes_sampleRate_300Hz - sampleRate_1kHz = _mscl.WirelessTypes_sampleRate_1kHz - sampleRate_2kHz = _mscl.WirelessTypes_sampleRate_2kHz - sampleRate_3kHz = _mscl.WirelessTypes_sampleRate_3kHz - sampleRate_4kHz = _mscl.WirelessTypes_sampleRate_4kHz - sampleRate_5kHz = _mscl.WirelessTypes_sampleRate_5kHz - sampleRate_6kHz = _mscl.WirelessTypes_sampleRate_6kHz - sampleRate_7kHz = _mscl.WirelessTypes_sampleRate_7kHz - sampleRate_8kHz = _mscl.WirelessTypes_sampleRate_8kHz - sampleRate_9kHz = _mscl.WirelessTypes_sampleRate_9kHz - sampleRate_10kHz = _mscl.WirelessTypes_sampleRate_10kHz - sampleRate_20kHz = _mscl.WirelessTypes_sampleRate_20kHz - sampleRate_30kHz = _mscl.WirelessTypes_sampleRate_30kHz - sampleRate_40kHz = _mscl.WirelessTypes_sampleRate_40kHz - sampleRate_50kHz = _mscl.WirelessTypes_sampleRate_50kHz - sampleRate_60kHz = _mscl.WirelessTypes_sampleRate_60kHz - sampleRate_70kHz = _mscl.WirelessTypes_sampleRate_70kHz - sampleRate_80kHz = _mscl.WirelessTypes_sampleRate_80kHz - sampleRate_90kHz = _mscl.WirelessTypes_sampleRate_90kHz - sampleRate_100kHz = _mscl.WirelessTypes_sampleRate_100kHz - sampleRate_887Hz = _mscl.WirelessTypes_sampleRate_887Hz - sampleRate_8192Hz = _mscl.WirelessTypes_sampleRate_8192Hz - sampleRate_4096Hz = _mscl.WirelessTypes_sampleRate_4096Hz - sampleRate_2048Hz = _mscl.WirelessTypes_sampleRate_2048Hz - sampleRate_1024Hz = _mscl.WirelessTypes_sampleRate_1024Hz - sampleRate_512Hz = _mscl.WirelessTypes_sampleRate_512Hz - sampleRate_256Hz = _mscl.WirelessTypes_sampleRate_256Hz - sampleRate_128Hz = _mscl.WirelessTypes_sampleRate_128Hz - sampleRate_64Hz = _mscl.WirelessTypes_sampleRate_64Hz - sampleRate_32Hz = _mscl.WirelessTypes_sampleRate_32Hz - sampleRate_16Hz = _mscl.WirelessTypes_sampleRate_16Hz - sampleRate_8Hz = _mscl.WirelessTypes_sampleRate_8Hz - sampleRate_4Hz = _mscl.WirelessTypes_sampleRate_4Hz - sampleRate_2Hz = _mscl.WirelessTypes_sampleRate_2Hz - sampleRate_1Hz = _mscl.WirelessTypes_sampleRate_1Hz - sampleRate_2Sec = _mscl.WirelessTypes_sampleRate_2Sec - sampleRate_5Sec = _mscl.WirelessTypes_sampleRate_5Sec - sampleRate_10Sec = _mscl.WirelessTypes_sampleRate_10Sec - sampleRate_30Sec = _mscl.WirelessTypes_sampleRate_30Sec - sampleRate_1Min = _mscl.WirelessTypes_sampleRate_1Min - sampleRate_2Min = _mscl.WirelessTypes_sampleRate_2Min - sampleRate_5Min = _mscl.WirelessTypes_sampleRate_5Min - sampleRate_10Min = _mscl.WirelessTypes_sampleRate_10Min - sampleRate_30Min = _mscl.WirelessTypes_sampleRate_30Min - sampleRate_60Min = _mscl.WirelessTypes_sampleRate_60Min - sampleRate_24Hours = _mscl.WirelessTypes_sampleRate_24Hours - region_usa = _mscl.WirelessTypes_region_usa - region_europeanUnion = _mscl.WirelessTypes_region_europeanUnion - region_japan = _mscl.WirelessTypes_region_japan - region_other = _mscl.WirelessTypes_region_other - region_brazil = _mscl.WirelessTypes_region_brazil - region_china = _mscl.WirelessTypes_region_china - region_australia_newzealand = _mscl.WirelessTypes_region_australia_newzealand - region_singapore = _mscl.WirelessTypes_region_singapore - region_canada = _mscl.WirelessTypes_region_canada - region_southAfrica = _mscl.WirelessTypes_region_southAfrica - region_indonesia = _mscl.WirelessTypes_region_indonesia - region_taiwan = _mscl.WirelessTypes_region_taiwan - chSetting_inputRange = _mscl.WirelessTypes_chSetting_inputRange - chSetting_filterSettlingTime = _mscl.WirelessTypes_chSetting_filterSettlingTime - chSetting_thermocoupleType = _mscl.WirelessTypes_chSetting_thermocoupleType - chSetting_linearEquation = _mscl.WirelessTypes_chSetting_linearEquation - chSetting_unit = _mscl.WirelessTypes_chSetting_unit - chSetting_equationType = _mscl.WirelessTypes_chSetting_equationType - chSetting_hardwareOffset = _mscl.WirelessTypes_chSetting_hardwareOffset - chSetting_autoBalance = _mscl.WirelessTypes_chSetting_autoBalance - chSetting_gaugeFactor = _mscl.WirelessTypes_chSetting_gaugeFactor - chSetting_antiAliasingFilter = _mscl.WirelessTypes_chSetting_antiAliasingFilter - chSetting_legacyShuntCal = _mscl.WirelessTypes_chSetting_legacyShuntCal - chSetting_autoShuntCal = _mscl.WirelessTypes_chSetting_autoShuntCal - chSetting_lowPassFilter = _mscl.WirelessTypes_chSetting_lowPassFilter - chSetting_highPassFilter = _mscl.WirelessTypes_chSetting_highPassFilter - chSetting_tempSensorOptions = _mscl.WirelessTypes_chSetting_tempSensorOptions - chSetting_debounceFilter = _mscl.WirelessTypes_chSetting_debounceFilter - chSetting_pullUpResistor = _mscl.WirelessTypes_chSetting_pullUpResistor - chSetting_factoryLinearEq = _mscl.WirelessTypes_chSetting_factoryLinearEq - chSetting_factoryUnit = _mscl.WirelessTypes_chSetting_factoryUnit - chSetting_factoryEqType = _mscl.WirelessTypes_chSetting_factoryEqType - autobalance_success = _mscl.WirelessTypes_autobalance_success - autobalance_maybeInvalid = _mscl.WirelessTypes_autobalance_maybeInvalid - autobalance_notSupportedByNode = _mscl.WirelessTypes_autobalance_notSupportedByNode - autobalance_notSupportedByCh = _mscl.WirelessTypes_autobalance_notSupportedByCh - autobalance_targetOutOfRange = _mscl.WirelessTypes_autobalance_targetOutOfRange - autobalance_failed = _mscl.WirelessTypes_autobalance_failed - autobalance_legacyNone = _mscl.WirelessTypes_autobalance_legacyNone - autobalance_notComplete = _mscl.WirelessTypes_autobalance_notComplete - autocal_success = _mscl.WirelessTypes_autocal_success - autocal_maybeInvalid_applied = _mscl.WirelessTypes_autocal_maybeInvalid_applied - autocal_maybeInvalid_notApplied = _mscl.WirelessTypes_autocal_maybeInvalid_notApplied - autocal_notComplete = _mscl.WirelessTypes_autocal_notComplete - autocalError_none = _mscl.WirelessTypes_autocalError_none - autocalError_sensorDetached = _mscl.WirelessTypes_autocalError_sensorDetached - autocalError_sensorShorted = _mscl.WirelessTypes_autocalError_sensorShorted - autocalError_unsupportedChannel = _mscl.WirelessTypes_autocalError_unsupportedChannel - autocalError_baseHighRail = _mscl.WirelessTypes_autocalError_baseHighRail - autocalError_baseLowRail = _mscl.WirelessTypes_autocalError_baseLowRail - autocalError_shuntHighRail = _mscl.WirelessTypes_autocalError_shuntHighRail - autocalError_shuntLowRail = _mscl.WirelessTypes_autocalError_shuntLowRail - autocalError_ramp = _mscl.WirelessTypes_autocalError_ramp - autocalError_noShunt = _mscl.WirelessTypes_autocalError_noShunt - autocalError_timeout = _mscl.WirelessTypes_autocalError_timeout - fatigueMode_angleStrain = _mscl.WirelessTypes_fatigueMode_angleStrain - fatigueMode_distributedAngle = _mscl.WirelessTypes_fatigueMode_distributedAngle - fatigueMode_rawGaugeStrain = _mscl.WirelessTypes_fatigueMode_rawGaugeStrain - eventTrigger_ceiling = _mscl.WirelessTypes_eventTrigger_ceiling - eventTrigger_floor = _mscl.WirelessTypes_eventTrigger_floor - filter_33000hz = _mscl.WirelessTypes_filter_33000hz - filter_20000hz = _mscl.WirelessTypes_filter_20000hz - filter_10000hz = _mscl.WirelessTypes_filter_10000hz - filter_5222hz = _mscl.WirelessTypes_filter_5222hz - filter_5000hz = _mscl.WirelessTypes_filter_5000hz - filter_4416hz = _mscl.WirelessTypes_filter_4416hz - filter_4096hz = _mscl.WirelessTypes_filter_4096hz - filter_4000hz = _mscl.WirelessTypes_filter_4000hz - filter_2208hz = _mscl.WirelessTypes_filter_2208hz - filter_2048hz = _mscl.WirelessTypes_filter_2048hz - filter_2000hz = _mscl.WirelessTypes_filter_2000hz - filter_1104hz = _mscl.WirelessTypes_filter_1104hz - filter_1024hz = _mscl.WirelessTypes_filter_1024hz - filter_1000hz = _mscl.WirelessTypes_filter_1000hz - filter_800hz = _mscl.WirelessTypes_filter_800hz - filter_552hz = _mscl.WirelessTypes_filter_552hz - filter_512hz = _mscl.WirelessTypes_filter_512hz - filter_500hz = _mscl.WirelessTypes_filter_500hz - filter_418hz = _mscl.WirelessTypes_filter_418hz - filter_294hz = _mscl.WirelessTypes_filter_294hz - filter_256hz = _mscl.WirelessTypes_filter_256hz - filter_250hz = _mscl.WirelessTypes_filter_250hz - filter_209hz = _mscl.WirelessTypes_filter_209hz - filter_200hz = _mscl.WirelessTypes_filter_200hz - filter_147hz = _mscl.WirelessTypes_filter_147hz - filter_128hz = _mscl.WirelessTypes_filter_128hz - filter_125hz = _mscl.WirelessTypes_filter_125hz - filter_104hz = _mscl.WirelessTypes_filter_104hz - filter_100hz = _mscl.WirelessTypes_filter_100hz - filter_62hz = _mscl.WirelessTypes_filter_62hz - filter_52hz = _mscl.WirelessTypes_filter_52hz - filter_50hz = _mscl.WirelessTypes_filter_50hz - filter_31hz = _mscl.WirelessTypes_filter_31hz - filter_26hz = _mscl.WirelessTypes_filter_26hz - filter_12_66hz = _mscl.WirelessTypes_filter_12_66hz - filter_2_6hz = _mscl.WirelessTypes_filter_2_6hz - highPass_off = _mscl.WirelessTypes_highPass_off - highPass_auto = _mscl.WirelessTypes_highPass_auto - cfc_10 = _mscl.WirelessTypes_cfc_10 - cfc_21 = _mscl.WirelessTypes_cfc_21 - cfc_60 = _mscl.WirelessTypes_cfc_60 - storageLimit_overwrite = _mscl.WirelessTypes_storageLimit_overwrite - storageLimit_stop = _mscl.WirelessTypes_storageLimit_stop - range_14_545mV = _mscl.WirelessTypes_range_14_545mV - range_10_236mV = _mscl.WirelessTypes_range_10_236mV - range_7_608mV = _mscl.WirelessTypes_range_7_608mV - range_4_046mV = _mscl.WirelessTypes_range_4_046mV - range_2_008mV = _mscl.WirelessTypes_range_2_008mV - range_1_511mV = _mscl.WirelessTypes_range_1_511mV - range_1_001mV = _mscl.WirelessTypes_range_1_001mV - range_0_812mV = _mscl.WirelessTypes_range_0_812mV - range_75mV = _mscl.WirelessTypes_range_75mV - range_37_5mV = _mscl.WirelessTypes_range_37_5mV - range_18_75mV = _mscl.WirelessTypes_range_18_75mV - range_9_38mV = _mscl.WirelessTypes_range_9_38mV - range_4_69mV = _mscl.WirelessTypes_range_4_69mV - range_2_34mV = _mscl.WirelessTypes_range_2_34mV - range_1_17mV = _mscl.WirelessTypes_range_1_17mV - range_0_586mV = _mscl.WirelessTypes_range_0_586mV - range_70mV = _mscl.WirelessTypes_range_70mV - range_35mV = _mscl.WirelessTypes_range_35mV - range_17_5mV = _mscl.WirelessTypes_range_17_5mV - range_8_75mV = _mscl.WirelessTypes_range_8_75mV - range_4_38mV = _mscl.WirelessTypes_range_4_38mV - range_2_19mV = _mscl.WirelessTypes_range_2_19mV - range_1_09mV = _mscl.WirelessTypes_range_1_09mV - range_0_547mV = _mscl.WirelessTypes_range_0_547mV - range_44mV = _mscl.WirelessTypes_range_44mV - range_30mV = _mscl.WirelessTypes_range_30mV - range_20mV = _mscl.WirelessTypes_range_20mV - range_15mV = _mscl.WirelessTypes_range_15mV - range_10mV = _mscl.WirelessTypes_range_10mV - range_5mV = _mscl.WirelessTypes_range_5mV - range_3mV = _mscl.WirelessTypes_range_3mV - range_2mV = _mscl.WirelessTypes_range_2mV - range_6mV = _mscl.WirelessTypes_range_6mV - range_1mV = _mscl.WirelessTypes_range_1mV - range_50mV = _mscl.WirelessTypes_range_50mV - range_2_5mV = _mscl.WirelessTypes_range_2_5mV - range_0_6mV = _mscl.WirelessTypes_range_0_6mV - range_0_35mV = _mscl.WirelessTypes_range_0_35mV - range_0_1mV = _mscl.WirelessTypes_range_0_1mV - range_156mV = _mscl.WirelessTypes_range_156mV - range_78_1mV = _mscl.WirelessTypes_range_78_1mV - range_39mV = _mscl.WirelessTypes_range_39mV - range_19_5mV = _mscl.WirelessTypes_range_19_5mV - range_9_76mV = _mscl.WirelessTypes_range_9_76mV - range_4_88mV = _mscl.WirelessTypes_range_4_88mV - range_2_44mV = _mscl.WirelessTypes_range_2_44mV - range_1_22mV = _mscl.WirelessTypes_range_1_22mV - range_10_24V = _mscl.WirelessTypes_range_10_24V - range_5_12V = _mscl.WirelessTypes_range_5_12V - range_2_56V = _mscl.WirelessTypes_range_2_56V - range_0to10_24V = _mscl.WirelessTypes_range_0to10_24V - range_0to5_12V = _mscl.WirelessTypes_range_0to5_12V - range_1_147V = _mscl.WirelessTypes_range_1_147V - range_585mV = _mscl.WirelessTypes_range_585mV - range_292_5mV = _mscl.WirelessTypes_range_292_5mV - range_146_25mV = _mscl.WirelessTypes_range_146_25mV - range_73_13mV = _mscl.WirelessTypes_range_73_13mV - range_36_56mV = _mscl.WirelessTypes_range_36_56mV - range_18_23mV = _mscl.WirelessTypes_range_18_23mV - range_9_14mV = _mscl.WirelessTypes_range_9_14mV - range_5_74V = _mscl.WirelessTypes_range_5_74V - range_2_93V = _mscl.WirelessTypes_range_2_93V - range_1_46V = _mscl.WirelessTypes_range_1_46V - range_731_3mV = _mscl.WirelessTypes_range_731_3mV - range_365_6mV = _mscl.WirelessTypes_range_365_6mV - range_182_8mV = _mscl.WirelessTypes_range_182_8mV - range_91_4mV = _mscl.WirelessTypes_range_91_4mV - range_45_7mV = _mscl.WirelessTypes_range_45_7mV - range_62_5mV = _mscl.WirelessTypes_range_62_5mV - range_31_25mV = _mscl.WirelessTypes_range_31_25mV - range_15_63mV = _mscl.WirelessTypes_range_15_63mV - range_7_81mV = _mscl.WirelessTypes_range_7_81mV - range_3_91mV = _mscl.WirelessTypes_range_3_91mV - range_1_95mV = _mscl.WirelessTypes_range_1_95mV - range_0_976mV = _mscl.WirelessTypes_range_0_976mV - range_0_488mV = _mscl.WirelessTypes_range_0_488mV - range_2G = _mscl.WirelessTypes_range_2G - range_4G = _mscl.WirelessTypes_range_4G - range_8G = _mscl.WirelessTypes_range_8G - range_10G = _mscl.WirelessTypes_range_10G - range_20G = _mscl.WirelessTypes_range_20G - range_40G = _mscl.WirelessTypes_range_40G - range_2_5V = _mscl.WirelessTypes_range_2_5V - range_1_25V = _mscl.WirelessTypes_range_1_25V - range_625mV = _mscl.WirelessTypes_range_625mV - range_312_5mV = _mscl.WirelessTypes_range_312_5mV - range_156_25mV = _mscl.WirelessTypes_range_156_25mV - range_78_125mV = _mscl.WirelessTypes_range_78_125mV - range_39_063mV = _mscl.WirelessTypes_range_39_063mV - range_19_532mV = _mscl.WirelessTypes_range_19_532mV - range_0to2_5V = _mscl.WirelessTypes_range_0to2_5V - range_0to1_25V = _mscl.WirelessTypes_range_0to1_25V - range_0to625mV = _mscl.WirelessTypes_range_0to625mV - range_0to312_5mV = _mscl.WirelessTypes_range_0to312_5mV - range_0to156_25mV = _mscl.WirelessTypes_range_0to156_25mV - range_0to78_125mV = _mscl.WirelessTypes_range_0to78_125mV - range_0to39_063mV = _mscl.WirelessTypes_range_0to39_063mV - range_0to19_532mV = _mscl.WirelessTypes_range_0to19_532mV - range_9_766mV = _mscl.WirelessTypes_range_9_766mV - range_1_35V_or_0to1000000ohm = _mscl.WirelessTypes_range_1_35V_or_0to1000000ohm - range_1_25V_or_0to10000ohm = _mscl.WirelessTypes_range_1_25V_or_0to10000ohm - range_625mV_or_0to3333_3ohm = _mscl.WirelessTypes_range_625mV_or_0to3333_3ohm - range_312_5mV_or_0to1428_6ohm = _mscl.WirelessTypes_range_312_5mV_or_0to1428_6ohm - range_156_25mV_or_0to666_67ohm = _mscl.WirelessTypes_range_156_25mV_or_0to666_67ohm - range_78_125mV_or_0to322_58ohm = _mscl.WirelessTypes_range_78_125mV_or_0to322_58ohm - range_39_0625mV_or_0to158_73ohm = _mscl.WirelessTypes_range_39_0625mV_or_0to158_73ohm - range_19_5313mV_or_0to78_74ohm = _mscl.WirelessTypes_range_19_5313mV_or_0to78_74ohm - range_750mV = _mscl.WirelessTypes_range_750mV - range_375mV = _mscl.WirelessTypes_range_375mV - range_187_5mV = _mscl.WirelessTypes_range_187_5mV - range_93_75mV = _mscl.WirelessTypes_range_93_75mV - range_46_875mV = _mscl.WirelessTypes_range_46_875mV - range_23_438mV = _mscl.WirelessTypes_range_23_438mV - range_11_719mV = _mscl.WirelessTypes_range_11_719mV - range_5_859mV = _mscl.WirelessTypes_range_5_859mV - range_0to1_5V = _mscl.WirelessTypes_range_0to1_5V - range_0to750mV = _mscl.WirelessTypes_range_0to750mV - range_0to375mV = _mscl.WirelessTypes_range_0to375mV - range_0to187_5mV = _mscl.WirelessTypes_range_0to187_5mV - range_0to93_75mV = _mscl.WirelessTypes_range_0to93_75mV - range_0to46_875mV = _mscl.WirelessTypes_range_0to46_875mV - range_0to23_438mV = _mscl.WirelessTypes_range_0to23_438mV - range_0to11_719mV = _mscl.WirelessTypes_range_0to11_719mV - range_1_5V = _mscl.WirelessTypes_range_1_5V - range_1_35V = _mscl.WirelessTypes_range_1_35V - range_0to1000000ohm = _mscl.WirelessTypes_range_0to1000000ohm - range_0to10000ohm = _mscl.WirelessTypes_range_0to10000ohm - range_0to3333_3ohm = _mscl.WirelessTypes_range_0to3333_3ohm - range_0to1428_6ohm = _mscl.WirelessTypes_range_0to1428_6ohm - range_0to666_67ohm = _mscl.WirelessTypes_range_0to666_67ohm - range_0to322_58ohm = _mscl.WirelessTypes_range_0to322_58ohm - range_0to158_73ohm = _mscl.WirelessTypes_range_0to158_73ohm - range_0to78_74ohm = _mscl.WirelessTypes_range_0to78_74ohm - range_39_0625mV = _mscl.WirelessTypes_range_39_0625mV - range_19_5313mV = _mscl.WirelessTypes_range_19_5313mV - range_125mV = _mscl.WirelessTypes_range_125mV - range_invalid = _mscl.WirelessTypes_range_invalid - dataMode_none = _mscl.WirelessTypes_dataMode_none - dataMode_raw = _mscl.WirelessTypes_dataMode_raw - dataMode_derived = _mscl.WirelessTypes_dataMode_derived - dataMode_raw_derived = _mscl.WirelessTypes_dataMode_raw_derived - derivedCategory_rms = _mscl.WirelessTypes_derivedCategory_rms - derivedCategory_peakToPeak = _mscl.WirelessTypes_derivedCategory_peakToPeak - derivedCategory_velocity = _mscl.WirelessTypes_derivedCategory_velocity - derivedCategory_crestFactor = _mscl.WirelessTypes_derivedCategory_crestFactor - derivedCategory_mean = _mscl.WirelessTypes_derivedCategory_mean - derivedAlgId_rms = _mscl.WirelessTypes_derivedAlgId_rms - derivedAlgId_peakToPeak = _mscl.WirelessTypes_derivedAlgId_peakToPeak - derivedAlgId_ips = _mscl.WirelessTypes_derivedAlgId_ips - derivedAlgId_crestFactor = _mscl.WirelessTypes_derivedAlgId_crestFactor - derivedAlgId_mean = _mscl.WirelessTypes_derivedAlgId_mean - derivedAlgId_mmps = _mscl.WirelessTypes_derivedAlgId_mmps - derivedVelocity_ips = _mscl.WirelessTypes_derivedVelocity_ips - derivedVelocity_mmps = _mscl.WirelessTypes_derivedVelocity_mmps - commProtocol_lxrs = _mscl.WirelessTypes_commProtocol_lxrs - commProtocol_lxrsPlus = _mscl.WirelessTypes_commProtocol_lxrsPlus - voltage_5120mV = _mscl.WirelessTypes_voltage_5120mV - voltage_5000mV = _mscl.WirelessTypes_voltage_5000mV - voltage_4096mV = _mscl.WirelessTypes_voltage_4096mV - voltage_3000mV = _mscl.WirelessTypes_voltage_3000mV - voltage_2800mV = _mscl.WirelessTypes_voltage_2800mV - voltage_2750mV = _mscl.WirelessTypes_voltage_2750mV - voltage_2700mV = _mscl.WirelessTypes_voltage_2700mV - voltage_2500mV = _mscl.WirelessTypes_voltage_2500mV - voltage_1500mV = _mscl.WirelessTypes_voltage_1500mV - sensorOutputMode_accel = _mscl.WirelessTypes_sensorOutputMode_accel - sensorOutputMode_tilt = _mscl.WirelessTypes_sensorOutputMode_tilt - batteryStatus_good = _mscl.WirelessTypes_batteryStatus_good - batteryStatus_low = _mscl.WirelessTypes_batteryStatus_low - batteryStatus_critical = _mscl.WirelessTypes_batteryStatus_critical - externalPower_notConnected = _mscl.WirelessTypes_externalPower_notConnected - externalPower_connected = _mscl.WirelessTypes_externalPower_connected - delayVersion_v1 = _mscl.WirelessTypes_delayVersion_v1 - delayVersion_v2 = _mscl.WirelessTypes_delayVersion_v2 - delayVersion_v3 = _mscl.WirelessTypes_delayVersion_v3 - delayVersion_v4 = _mscl.WirelessTypes_delayVersion_v4 - UNKNOWN_RSSI = _mscl.WirelessTypes_UNKNOWN_RSSI - - def __init__(self): - _mscl.WirelessTypes_swiginit(self, _mscl.new_WirelessTypes()) - __swig_destroy__ = _mscl.delete_WirelessTypes - -# Register WirelessTypes in _mscl: -_mscl.WirelessTypes_swigregister(WirelessTypes) - -class SampleRate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - rateType_seconds = _mscl.SampleRate_rateType_seconds - rateType_hertz = _mscl.SampleRate_rateType_hertz - rateType_event = _mscl.SampleRate_rateType_event - rateType_decimation = _mscl.SampleRate_rateType_decimation - - def __init__(self, *args): - _mscl.SampleRate_swiginit(self, _mscl.new_SampleRate(*args)) - - def __str__(self): - return _mscl.SampleRate___str__(self) - - def prettyStr(self): - return _mscl.SampleRate_prettyStr(self) - - def samplePeriod(self): - return _mscl.SampleRate_samplePeriod(self) - - def samplesPerSecond(self): - return _mscl.SampleRate_samplesPerSecond(self) - - def rateType(self): - return _mscl.SampleRate_rateType(self) - - def samples(self): - return _mscl.SampleRate_samples(self) - - def toWirelessSampleRate(self): - return _mscl.SampleRate_toWirelessSampleRate(self) - - def toDecimation(self, sampleRateBase): - return _mscl.SampleRate_toDecimation(self, sampleRateBase) - - @staticmethod - def Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - - @staticmethod - def KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - - @staticmethod - def Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - - @staticmethod - def Event(): - return _mscl.SampleRate_Event() - - @staticmethod - def Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - - @staticmethod - def FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - - @staticmethod - def FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - __swig_destroy__ = _mscl.delete_SampleRate - -# Register SampleRate in _mscl: -_mscl.SampleRate_swigregister(SampleRate) - -def SampleRate_Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - -def SampleRate_KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - -def SampleRate_Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - -def SampleRate_Event(): - return _mscl.SampleRate_Event() - -def SampleRate_Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - -def SampleRate_FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - -def SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - -class Matrix(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Matrix_swiginit(self, _mscl.new_Matrix()) - - def valuesType(self): - return _mscl.Matrix_valuesType(self) - - def rows(self): - return _mscl.Matrix_rows(self) - - def columns(self): - return _mscl.Matrix_columns(self) - - def as_doubleAt(self, row, column): - return _mscl.Matrix_as_doubleAt(self, row, column) - - def as_floatAt(self, row, column): - return _mscl.Matrix_as_floatAt(self, row, column) - - def as_uint16At(self, row, column): - return _mscl.Matrix_as_uint16At(self, row, column) - - def as_uint8At(self, row, column): - return _mscl.Matrix_as_uint8At(self, row, column) - - def __str__(self): - return _mscl.Matrix___str__(self) - __swig_destroy__ = _mscl.delete_Matrix - -# Register Matrix in _mscl: -_mscl.Matrix_swigregister(Matrix) - -class Vector(Matrix): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Vector_swiginit(self, _mscl.new_Vector()) - - def size(self): - return _mscl.Vector_size(self) - - def as_doubleAt(self, index): - return _mscl.Vector_as_doubleAt(self, index) - - def as_floatAt(self, index): - return _mscl.Vector_as_floatAt(self, index) - - def as_uint16At(self, index): - return _mscl.Vector_as_uint16At(self, index) - - def as_uint8At(self, index): - return _mscl.Vector_as_uint8At(self, index) - __swig_destroy__ = _mscl.delete_Vector - -# Register Vector in _mscl: -_mscl.Vector_swigregister(Vector) - -class Bitfield(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Bitfield_swiginit(self, _mscl.new_Bitfield(*args)) - __swig_destroy__ = _mscl.delete_Bitfield - - def value(self, *args): - return _mscl.Bitfield_value(self, *args) - - def get(self, mask, shiftToLsb=True): - return _mscl.Bitfield_get(self, mask, shiftToLsb) - - def set(self, mask, value, shiftRequired=True): - return _mscl.Bitfield_set(self, mask, value, shiftRequired) - - def checkBit(self, bitIndex, indexBase=0): - return _mscl.Bitfield_checkBit(self, bitIndex, indexBase) - - def setBit(self, bitIndex, value, indexBase=0): - return _mscl.Bitfield_setBit(self, bitIndex, value, indexBase) - -# Register Bitfield in _mscl: -_mscl.Bitfield_swigregister(Bitfield) - -class StructuralHealth(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, angle, uptime, damage, processingRate, histogram): - _mscl.StructuralHealth_swiginit(self, _mscl.new_StructuralHealth(angle, uptime, damage, processingRate, histogram)) - - def angle(self): - return _mscl.StructuralHealth_angle(self) - - def uptime(self): - return _mscl.StructuralHealth_uptime(self) - - def damage(self): - return _mscl.StructuralHealth_damage(self) - - def processingRate(self): - return _mscl.StructuralHealth_processingRate(self) - - def histogram(self): - return _mscl.StructuralHealth_histogram(self) - __swig_destroy__ = _mscl.delete_StructuralHealth - -# Register StructuralHealth in _mscl: -_mscl.StructuralHealth_swigregister(StructuralHealth) - -class DataPoint(Value): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - channelPropertyId_angle = _mscl.DataPoint_channelPropertyId_angle - channelPropertyId_derivedFrom = _mscl.DataPoint_channelPropertyId_derivedFrom - channelPropertyId_derivedAlgorithmId = _mscl.DataPoint_channelPropertyId_derivedAlgorithmId - __swig_destroy__ = _mscl.delete_DataPoint - - def channelProperty(self, id): - return _mscl.DataPoint_channelProperty(self, id) - - def as_Vector(self): - return _mscl.DataPoint_as_Vector(self) - - def as_Matrix(self): - return _mscl.DataPoint_as_Matrix(self) - - def as_Timestamp(self): - return _mscl.DataPoint_as_Timestamp(self) - - def as_Bytes(self): - return _mscl.DataPoint_as_Bytes(self) - - def as_StructuralHealth(self): - return _mscl.DataPoint_as_StructuralHealth(self) - - def as_RfSweep(self): - return _mscl.DataPoint_as_RfSweep(self) - - def as_string(self): - return _mscl.DataPoint_as_string(self) - -# Register DataPoint in _mscl: -_mscl.DataPoint_swigregister(DataPoint) - -class ConfigIssue(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONFIG_SAMPLING_MODE = _mscl.ConfigIssue_CONFIG_SAMPLING_MODE - CONFIG_ACTIVE_CHANNELS = _mscl.ConfigIssue_CONFIG_ACTIVE_CHANNELS - CONFIG_SAMPLE_RATE = _mscl.ConfigIssue_CONFIG_SAMPLE_RATE - CONFIG_SWEEPS = _mscl.ConfigIssue_CONFIG_SWEEPS - CONFIG_UNLIMITED_DURATION = _mscl.ConfigIssue_CONFIG_UNLIMITED_DURATION - CONFIG_DATA_FORMAT = _mscl.ConfigIssue_CONFIG_DATA_FORMAT - CONFIG_DATA_COLLECTION_METHOD = _mscl.ConfigIssue_CONFIG_DATA_COLLECTION_METHOD - CONFIG_TIME_BETWEEN_BURSTS = _mscl.ConfigIssue_CONFIG_TIME_BETWEEN_BURSTS - CONFIG_THERMOCOUPLE_TYPE = _mscl.ConfigIssue_CONFIG_THERMOCOUPLE_TYPE - CONFIG_FILTER_SETTLING_TIME = _mscl.ConfigIssue_CONFIG_FILTER_SETTLING_TIME - CONFIG_BUTTON = _mscl.ConfigIssue_CONFIG_BUTTON - CONFIG_ANALOG_PAIR = _mscl.ConfigIssue_CONFIG_ANALOG_PAIR - CONFIG_INPUT_RANGE = _mscl.ConfigIssue_CONFIG_INPUT_RANGE - CONFIG_INACTIVITY_TIMEOUT = _mscl.ConfigIssue_CONFIG_INACTIVITY_TIMEOUT - CONFIG_CHECK_RADIO_INTERVAL = _mscl.ConfigIssue_CONFIG_CHECK_RADIO_INTERVAL - CONFIG_LOST_BEACON_TIMEOUT = _mscl.ConfigIssue_CONFIG_LOST_BEACON_TIMEOUT - CONFIG_DEFAULT_MODE = _mscl.ConfigIssue_CONFIG_DEFAULT_MODE - CONFIG_TRANSMIT_POWER = _mscl.ConfigIssue_CONFIG_TRANSMIT_POWER - CONFIG_LINEAR_EQUATION = _mscl.ConfigIssue_CONFIG_LINEAR_EQUATION - CONFIG_FATIGUE = _mscl.ConfigIssue_CONFIG_FATIGUE - CONFIG_FATIGUE_MODE = _mscl.ConfigIssue_CONFIG_FATIGUE_MODE - CONFIG_FATIGUE_ANGLE_ID = _mscl.ConfigIssue_CONFIG_FATIGUE_ANGLE_ID - CONFIG_FATIGUE_SN_CURVE = _mscl.ConfigIssue_CONFIG_FATIGUE_SN_CURVE - CONFIG_FATIGUE_DIST_NUM_ANGLES = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_NUM_ANGLES - CONFIG_FATIGUE_DIST_ANGLE = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_ANGLE - CONFIG_HISTOGRAM = _mscl.ConfigIssue_CONFIG_HISTOGRAM - CONFIG_HISTOGRAM_TX_RATE = _mscl.ConfigIssue_CONFIG_HISTOGRAM_TX_RATE - CONFIG_HARDWARE_OFFSET = _mscl.ConfigIssue_CONFIG_HARDWARE_OFFSET - CONFIG_ACTIVITY_SENSE = _mscl.ConfigIssue_CONFIG_ACTIVITY_SENSE - CONFIG_GAUGE_FACTOR = _mscl.ConfigIssue_CONFIG_GAUGE_FACTOR - CONFIG_EVENT_TRIGGER = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER - CONFIG_EVENT_TRIGGER_DURATION = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_DURATION - CONFIG_EVENT_TRIGGER_MASK = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_MASK - CONFIG_DIAGNOSTIC_INTERVAL = _mscl.ConfigIssue_CONFIG_DIAGNOSTIC_INTERVAL - CONFIG_ANTI_ALIASING_FILTER = _mscl.ConfigIssue_CONFIG_ANTI_ALIASING_FILTER - CONFIG_STORAGE_LIMIT_MODE = _mscl.ConfigIssue_CONFIG_STORAGE_LIMIT_MODE - CONFIG_SENSOR_DELAY = _mscl.ConfigIssue_CONFIG_SENSOR_DELAY - CONFIG_LOW_PASS_FILTER = _mscl.ConfigIssue_CONFIG_LOW_PASS_FILTER - CONFIG_DATA_MODE = _mscl.ConfigIssue_CONFIG_DATA_MODE - CONFIG_DERIVED_DATA_RATE = _mscl.ConfigIssue_CONFIG_DERIVED_DATA_RATE - CONFIG_DERIVED_MASK_RMS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_RMS - CONFIG_DERIVED_MASK_P2P = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_P2P - CONFIG_DERIVED_MASK_IPS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_IPS - CONFIG_DERIVED_MASK_CREST_FACTOR = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_CREST_FACTOR - CONFIG_HIGH_PASS_FILTER = _mscl.ConfigIssue_CONFIG_HIGH_PASS_FILTER - CONFIG_DERIVED_MASK = _mscl.ConfigIssue_CONFIG_DERIVED_MASK - CONFIG_COMM_PROTOCOL = _mscl.ConfigIssue_CONFIG_COMM_PROTOCOL - CONFIG_DERIVED_MASK_MEAN = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_MEAN - CONFIG_GAUGE_RESISTANCE = _mscl.ConfigIssue_CONFIG_GAUGE_RESISTANCE - CONFIG_NUM_ACTIVE_GAUGES = _mscl.ConfigIssue_CONFIG_NUM_ACTIVE_GAUGES - CONFIG_TEMP_SENSOR_OPTS = _mscl.ConfigIssue_CONFIG_TEMP_SENSOR_OPTS - CONFIG_DEBOUNCE_FILTER = _mscl.ConfigIssue_CONFIG_DEBOUNCE_FILTER - CONFIG_PULLUP_RESISTOR = _mscl.ConfigIssue_CONFIG_PULLUP_RESISTOR - CONFIG_EXCITATION_VOLTAGE = _mscl.ConfigIssue_CONFIG_EXCITATION_VOLTAGE - CONFIG_DERIVED_UNIT = _mscl.ConfigIssue_CONFIG_DERIVED_UNIT - CONFIG_SENSOR_OUTPUT_MODE = _mscl.ConfigIssue_CONFIG_SENSOR_OUTPUT_MODE - CONFIG_LOW_BATTERY_THRESHOLD = _mscl.ConfigIssue_CONFIG_LOW_BATTERY_THRESHOLD - CONFIG_CFC_FILTER = _mscl.ConfigIssue_CONFIG_CFC_FILTER - - def __init__(self, *args): - _mscl.ConfigIssue_swiginit(self, _mscl.new_ConfigIssue(*args)) - - def id(self): - return _mscl.ConfigIssue_id(self) - - def description(self): - return _mscl.ConfigIssue_description(self) - - def isChannelGroupIssue(self): - return _mscl.ConfigIssue_isChannelGroupIssue(self) - - def channelMask(self): - return _mscl.ConfigIssue_channelMask(self) - __swig_destroy__ = _mscl.delete_ConfigIssue - -# Register ConfigIssue in _mscl: -_mscl.ConfigIssue_swigregister(ConfigIssue) - -class ActivitySense(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ActivitySense_swiginit(self, _mscl.new_ActivitySense()) - - def enabled(self, *args): - return _mscl.ActivitySense_enabled(self, *args) - - def activityThreshold(self, *args): - return _mscl.ActivitySense_activityThreshold(self, *args) - - def inactivityThreshold(self, *args): - return _mscl.ActivitySense_inactivityThreshold(self, *args) - - def activityTime(self, *args): - return _mscl.ActivitySense_activityTime(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.ActivitySense_inactivityTimeout(self, *args) - __swig_destroy__ = _mscl.delete_ActivitySense - -# Register ActivitySense in _mscl: -_mscl.ActivitySense_swigregister(ActivitySense) - -class Trigger(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Trigger_swiginit(self, _mscl.new_Trigger(*args)) - - def channelNumber(self, *args): - return _mscl.Trigger_channelNumber(self, *args) - - def triggerType(self, *args): - return _mscl.Trigger_triggerType(self, *args) - - def triggerValue(self, *args): - return _mscl.Trigger_triggerValue(self, *args) - __swig_destroy__ = _mscl.delete_Trigger - -# Register Trigger in _mscl: -_mscl.Trigger_swigregister(Trigger) - -class EventTriggerOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerOptions_swiginit(self, _mscl.new_EventTriggerOptions()) - - def triggerMask(self, *args): - return _mscl.EventTriggerOptions_triggerMask(self, *args) - - def anyTriggersEnabled(self): - return _mscl.EventTriggerOptions_anyTriggersEnabled(self) - - def triggerEnabled(self, triggerIndex): - return _mscl.EventTriggerOptions_triggerEnabled(self, triggerIndex) - - def enableTrigger(self, triggerIndex, enable=True): - return _mscl.EventTriggerOptions_enableTrigger(self, triggerIndex, enable) - - def preDuration(self, *args): - return _mscl.EventTriggerOptions_preDuration(self, *args) - - def postDuration(self, *args): - return _mscl.EventTriggerOptions_postDuration(self, *args) - - def trigger(self, *args): - return _mscl.EventTriggerOptions_trigger(self, *args) - - def triggers(self): - return _mscl.EventTriggerOptions_triggers(self) - __swig_destroy__ = _mscl.delete_EventTriggerOptions - -# Register EventTriggerOptions in _mscl: -_mscl.EventTriggerOptions_swigregister(EventTriggerOptions) - -class SnCurveSegment(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.SnCurveSegment_swiginit(self, _mscl.new_SnCurveSegment(*args)) - - def m(self, *args): - return _mscl.SnCurveSegment_m(self, *args) - - def logA(self, *args): - return _mscl.SnCurveSegment_logA(self, *args) - __swig_destroy__ = _mscl.delete_SnCurveSegment - -# Register SnCurveSegment in _mscl: -_mscl.SnCurveSegment_swigregister(SnCurveSegment) - -class FatigueOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FatigueOptions_swiginit(self, _mscl.new_FatigueOptions()) - - def youngsModulus(self, *args): - return _mscl.FatigueOptions_youngsModulus(self, *args) - - def poissonsRatio(self, *args): - return _mscl.FatigueOptions_poissonsRatio(self, *args) - - def peakValleyThreshold(self, *args): - return _mscl.FatigueOptions_peakValleyThreshold(self, *args) - - def debugMode(self, *args): - return _mscl.FatigueOptions_debugMode(self, *args) - - def damageAngles(self): - return _mscl.FatigueOptions_damageAngles(self) - - def damageAngle(self, *args): - return _mscl.FatigueOptions_damageAngle(self, *args) - - def snCurveSegments(self): - return _mscl.FatigueOptions_snCurveSegments(self) - - def snCurveSegment(self, *args): - return _mscl.FatigueOptions_snCurveSegment(self, *args) - - def fatigueMode(self, *args): - return _mscl.FatigueOptions_fatigueMode(self, *args) - - def distributedAngleMode_numAngles(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_numAngles(self, *args) - - def distributedAngleMode_lowerBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_lowerBound(self, *args) - - def distributedAngleMode_upperBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_upperBound(self, *args) - - def histogramEnable(self, *args): - return _mscl.FatigueOptions_histogramEnable(self, *args) - __swig_destroy__ = _mscl.delete_FatigueOptions - -# Register FatigueOptions in _mscl: -_mscl.FatigueOptions_swigregister(FatigueOptions) - -class HistogramOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HistogramOptions_swiginit(self, _mscl.new_HistogramOptions()) - - def transmitRate(self, *args): - return _mscl.HistogramOptions_transmitRate(self, *args) - - def binsStart(self, *args): - return _mscl.HistogramOptions_binsStart(self, *args) - - def binsSize(self, *args): - return _mscl.HistogramOptions_binsSize(self, *args) - __swig_destroy__ = _mscl.delete_HistogramOptions - -# Register HistogramOptions in _mscl: -_mscl.HistogramOptions_swigregister(HistogramOptions) - -class InputRangeEntry(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - inputRange = property(_mscl.InputRangeEntry_inputRange_get, _mscl.InputRangeEntry_inputRange_set) - hasGain = property(_mscl.InputRangeEntry_hasGain_get, _mscl.InputRangeEntry_hasGain_set) - gain = property(_mscl.InputRangeEntry_gain_get, _mscl.InputRangeEntry_gain_set) - - def __init__(self, *args): - _mscl.InputRangeEntry_swiginit(self, _mscl.new_InputRangeEntry(*args)) - __swig_destroy__ = _mscl.delete_InputRangeEntry - -# Register InputRangeEntry in _mscl: -_mscl.InputRangeEntry_swigregister(InputRangeEntry) - -class TempSensorOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - - @staticmethod - def RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - - @staticmethod - def Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - - def transducerType(self): - return _mscl.TempSensorOptions_transducerType(self) - - def thermocoupleType(self): - return _mscl.TempSensorOptions_thermocoupleType(self) - - def rtdType(self): - return _mscl.TempSensorOptions_rtdType(self) - - def rtdWireType(self): - return _mscl.TempSensorOptions_rtdWireType(self) - - def thermistorType(self): - return _mscl.TempSensorOptions_thermistorType(self) - __swig_destroy__ = _mscl.delete_TempSensorOptions - -# Register TempSensorOptions in _mscl: -_mscl.TempSensorOptions_swigregister(TempSensorOptions) - -def TempSensorOptions_Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - -def TempSensorOptions_RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - -def TempSensorOptions_Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - -class WirelessModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_vLink_legacy = _mscl.WirelessModels_node_vLink_legacy - node_cfBearingTempLink = _mscl.WirelessModels_node_cfBearingTempLink - node_envLink_pro = _mscl.WirelessModels_node_envLink_pro - node_gLink_2g = _mscl.WirelessModels_node_gLink_2g - node_gLink_10g = _mscl.WirelessModels_node_gLink_10g - node_gLinkII_cust_in = _mscl.WirelessModels_node_gLinkII_cust_in - node_gLinkII_2g_in = _mscl.WirelessModels_node_gLinkII_2g_in - node_gLinkII_10g_in = _mscl.WirelessModels_node_gLinkII_10g_in - node_gLinkII_cust_ex = _mscl.WirelessModels_node_gLinkII_cust_ex - node_gLinkII_2g_ex = _mscl.WirelessModels_node_gLinkII_2g_ex - node_gLinkII_10g_ex = _mscl.WirelessModels_node_gLinkII_10g_ex - node_gLink_rgd_10g = _mscl.WirelessModels_node_gLink_rgd_10g - node_gLink_200_8g = _mscl.WirelessModels_node_gLink_200_8g - node_gLink_200_40g = _mscl.WirelessModels_node_gLink_200_40g - node_gLink_200_8g_oem = _mscl.WirelessModels_node_gLink_200_8g_oem - node_gLink_200_40g_oem = _mscl.WirelessModels_node_gLink_200_40g_oem - node_gLink_200_8g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_8g_oem_mmcx - node_gLink_200_40g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_40g_oem_mmcx - node_gLink_200_8g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_8g_oem_u_fl - node_gLink_200_40g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_40g_oem_u_fl - node_gLink_200_r = _mscl.WirelessModels_node_gLink_200_r - node_sgLink_oem_S = _mscl.WirelessModels_node_sgLink_oem_S - node_sgLink = _mscl.WirelessModels_node_sgLink - node_sgLink200 = _mscl.WirelessModels_node_sgLink200 - node_sgLink200_hbridge_1K = _mscl.WirelessModels_node_sgLink200_hbridge_1K - node_sgLink200_hbridge_350 = _mscl.WirelessModels_node_sgLink200_hbridge_350 - node_sgLink200_hbridge_120 = _mscl.WirelessModels_node_sgLink200_hbridge_120 - node_sgLink200_qbridge_1K = _mscl.WirelessModels_node_sgLink200_qbridge_1K - node_sgLink200_qbridge_350 = _mscl.WirelessModels_node_sgLink200_qbridge_350 - node_sgLink200_qbridge_120 = _mscl.WirelessModels_node_sgLink200_qbridge_120 - node_sgLink_oem = _mscl.WirelessModels_node_sgLink_oem - node_sgLink_micro = _mscl.WirelessModels_node_sgLink_micro - node_sgLink200_oem = _mscl.WirelessModels_node_sgLink200_oem - node_sgLink200_oem_ufl = _mscl.WirelessModels_node_sgLink200_oem_ufl - node_sgLink200_oem_hbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K - node_sgLink200_oem_hbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K_ufl - node_sgLink200_oem_hbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120 - node_sgLink200_oem_hbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120_ufl - node_sgLink200_oem_hbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350 - node_sgLink200_oem_hbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350_ufl - node_sgLink200_oem_qbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K - node_sgLink200_oem_qbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K_ufl - node_sgLink200_oem_qbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120 - node_sgLink200_oem_qbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120_ufl - node_sgLink200_oem_qbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350 - node_sgLink200_oem_qbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350_ufl - node_sgLink_rgd = _mscl.WirelessModels_node_sgLink_rgd - node_shmLink = _mscl.WirelessModels_node_shmLink - node_tcLink_1ch = _mscl.WirelessModels_node_tcLink_1ch - node_tcLink_6ch = _mscl.WirelessModels_node_tcLink_6ch - node_tcLink_3ch = _mscl.WirelessModels_node_tcLink_3ch - node_tcLink_6ch_ip67 = _mscl.WirelessModels_node_tcLink_6ch_ip67 - node_tcLink200_oem = _mscl.WirelessModels_node_tcLink200_oem - node_tcLink200_oem_ufl = _mscl.WirelessModels_node_tcLink200_oem_ufl - node_tcLink200 = _mscl.WirelessModels_node_tcLink200 - node_rtdLink200 = _mscl.WirelessModels_node_rtdLink200 - node_tcLink_6ch_ip67_rht = _mscl.WirelessModels_node_tcLink_6ch_ip67_rht - node_vLink = _mscl.WirelessModels_node_vLink - node_vLink200 = _mscl.WirelessModels_node_vLink200 - node_vLink200_qbridge_1K = _mscl.WirelessModels_node_vLink200_qbridge_1K - node_vLink200_qbridge_120 = _mscl.WirelessModels_node_vLink200_qbridge_120 - node_vLink200_qbridge_350 = _mscl.WirelessModels_node_vLink200_qbridge_350 - node_vLink200_hbridge_1K = _mscl.WirelessModels_node_vLink200_hbridge_1K - node_vLink200_hbridge_120 = _mscl.WirelessModels_node_vLink200_hbridge_120 - node_vLink200_hbridge_350 = _mscl.WirelessModels_node_vLink200_hbridge_350 - node_iepeLink = _mscl.WirelessModels_node_iepeLink - node_dvrtLink = _mscl.WirelessModels_node_dvrtLink - node_envLink_mini = _mscl.WirelessModels_node_envLink_mini - node_wattLink = _mscl.WirelessModels_node_wattLink - node_wattLink_3Y208 = _mscl.WirelessModels_node_wattLink_3Y208 - node_wattLink_3D240 = _mscl.WirelessModels_node_wattLink_3D240 - node_wattLink_3Y400 = _mscl.WirelessModels_node_wattLink_3Y400 - node_wattLink_3D400 = _mscl.WirelessModels_node_wattLink_3D400 - node_wattLink_3Y480 = _mscl.WirelessModels_node_wattLink_3Y480 - node_wattLink_3D480 = _mscl.WirelessModels_node_wattLink_3D480 - node_wattLink_3Y600 = _mscl.WirelessModels_node_wattLink_3Y600 - node_ptLink200 = _mscl.WirelessModels_node_ptLink200 - node_rtdLink = _mscl.WirelessModels_node_rtdLink - node_shmLink2_cust1_oldNumber = _mscl.WirelessModels_node_shmLink2_cust1_oldNumber - node_shmLink2_cust1 = _mscl.WirelessModels_node_shmLink2_cust1 - node_shmLink200 = _mscl.WirelessModels_node_shmLink200 - node_shmLink201 = _mscl.WirelessModels_node_shmLink201 - node_shmLink201_qbridge_1K = _mscl.WirelessModels_node_shmLink201_qbridge_1K - node_shmLink201_qbridge_348 = _mscl.WirelessModels_node_shmLink201_qbridge_348 - node_shmLink201_hbridge_1K = _mscl.WirelessModels_node_shmLink201_hbridge_1K - node_shmLink201_hbridge_348 = _mscl.WirelessModels_node_shmLink201_hbridge_348 - node_shmLink201_fullbridge = _mscl.WirelessModels_node_shmLink201_fullbridge - node_shmLink210_fullbridge = _mscl.WirelessModels_node_shmLink210_fullbridge - node_shmLink210_qbridge_3K = _mscl.WirelessModels_node_shmLink210_qbridge_3K - node_torqueLink = _mscl.WirelessModels_node_torqueLink - node_torqueLink200_3ch = _mscl.WirelessModels_node_torqueLink200_3ch - node_torqueLink200 = _mscl.WirelessModels_node_torqueLink200 - node_torqueLink200_3ch_s = _mscl.WirelessModels_node_torqueLink200_3ch_s - node_sgLink_herm = _mscl.WirelessModels_node_sgLink_herm - node_sgLink_herm_2600 = _mscl.WirelessModels_node_sgLink_herm_2600 - node_sgLink_herm_2700 = _mscl.WirelessModels_node_sgLink_herm_2700 - node_sgLink_herm_2800 = _mscl.WirelessModels_node_sgLink_herm_2800 - node_sgLink_herm_2900 = _mscl.WirelessModels_node_sgLink_herm_2900 - node_wirelessImpactSensor = _mscl.WirelessModels_node_wirelessImpactSensor - node_gLink_200_40g_s = _mscl.WirelessModels_node_gLink_200_40g_s - base_wsda_1000 = _mscl.WirelessModels_base_wsda_1000 - base_wsda_1500 = _mscl.WirelessModels_base_wsda_1500 - base_wsda_2000 = _mscl.WirelessModels_base_wsda_2000 - base_wsdaBase_200_legacy = _mscl.WirelessModels_base_wsdaBase_200_legacy - base_wsdaBase_200 = _mscl.WirelessModels_base_wsdaBase_200 - base_wsdaBase_200_extAntenna = _mscl.WirelessModels_base_wsdaBase_200_extAntenna - base_wsdaBase_101_analog = _mscl.WirelessModels_base_wsdaBase_101_analog - base_wsdaBase_102_rs232 = _mscl.WirelessModels_base_wsdaBase_102_rs232 - base_wsdaBase_104_usb = _mscl.WirelessModels_base_wsdaBase_104_usb - base_wsi_104 = _mscl.WirelessModels_base_wsi_104 - base_wsdaBase_mini = _mscl.WirelessModels_base_wsdaBase_mini - - def __init__(self): - _mscl.WirelessModels_swiginit(self, _mscl.new_WirelessModels()) - __swig_destroy__ = _mscl.delete_WirelessModels - -# Register WirelessModels in _mscl: -_mscl.WirelessModels_swigregister(WirelessModels) - -class NodeDiscovery(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def nodeAddress(self): - return _mscl.NodeDiscovery_nodeAddress(self) - - def frequency(self): - return _mscl.NodeDiscovery_frequency(self) - - def panId(self): - return _mscl.NodeDiscovery_panId(self) - - def model(self): - return _mscl.NodeDiscovery_model(self) - - def serialNumber(self): - return _mscl.NodeDiscovery_serialNumber(self) - - def firmwareVersion(self): - return _mscl.NodeDiscovery_firmwareVersion(self) - - def defaultMode(self): - return _mscl.NodeDiscovery_defaultMode(self) - - def builtInTestResult(self): - return _mscl.NodeDiscovery_builtInTestResult(self) - - def communicationProtocol(self): - return _mscl.NodeDiscovery_communicationProtocol(self) - - def asppVersion_lxrs(self): - return _mscl.NodeDiscovery_asppVersion_lxrs(self) - - def asppVersion_lxrsPlus(self): - return _mscl.NodeDiscovery_asppVersion_lxrsPlus(self) - - def baseRssi(self): - return _mscl.NodeDiscovery_baseRssi(self) - - def timestamp(self): - return _mscl.NodeDiscovery_timestamp(self) - - def __init__(self): - _mscl.NodeDiscovery_swiginit(self, _mscl.new_NodeDiscovery()) - __swig_destroy__ = _mscl.delete_NodeDiscovery - -# Register NodeDiscovery in _mscl: -_mscl.NodeDiscovery_swigregister(NodeDiscovery) - -class LinearEquation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LinearEquation_swiginit(self, _mscl.new_LinearEquation(*args)) - - def slope(self, *args): - return _mscl.LinearEquation_slope(self, *args) - - def offset(self, *args): - return _mscl.LinearEquation_offset(self, *args) - __swig_destroy__ = _mscl.delete_LinearEquation - -# Register LinearEquation in _mscl: -_mscl.LinearEquation_swigregister(LinearEquation) - -class CalCoefficients(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CalCoefficients_swiginit(self, _mscl.new_CalCoefficients(*args)) - - def equationType(self): - return _mscl.CalCoefficients_equationType(self) - - def unit(self): - return _mscl.CalCoefficients_unit(self) - - def linearEquation(self): - return _mscl.CalCoefficients_linearEquation(self) - __swig_destroy__ = _mscl.delete_CalCoefficients - -# Register CalCoefficients in _mscl: -_mscl.CalCoefficients_swigregister(CalCoefficients) - -class ChannelGroup(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ChannelGroup_swiginit(self, _mscl.new_ChannelGroup()) - - def channels(self): - return _mscl.ChannelGroup_channels(self) - - def name(self): - return _mscl.ChannelGroup_name(self) - - def eepromLocation(self, setting): - return _mscl.ChannelGroup_eepromLocation(self, setting) - - def settings(self): - return _mscl.ChannelGroup_settings(self) - - def hasSetting(self, setting): - return _mscl.ChannelGroup_hasSetting(self, setting) - - def hasSettingAndChannel(self, setting, channelNumber): - return _mscl.ChannelGroup_hasSettingAndChannel(self, setting, channelNumber) - __swig_destroy__ = _mscl.delete_ChannelGroup - -# Register ChannelGroup in _mscl: -_mscl.ChannelGroup_swigregister(ChannelGroup) - -class WirelessChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - channel_unknown = _mscl.WirelessChannel_channel_unknown - channel_1 = _mscl.WirelessChannel_channel_1 - channel_2 = _mscl.WirelessChannel_channel_2 - channel_3 = _mscl.WirelessChannel_channel_3 - channel_4 = _mscl.WirelessChannel_channel_4 - channel_5 = _mscl.WirelessChannel_channel_5 - channel_6 = _mscl.WirelessChannel_channel_6 - channel_7 = _mscl.WirelessChannel_channel_7 - channel_8 = _mscl.WirelessChannel_channel_8 - channel_9 = _mscl.WirelessChannel_channel_9 - channel_10 = _mscl.WirelessChannel_channel_10 - channel_11 = _mscl.WirelessChannel_channel_11 - channel_12 = _mscl.WirelessChannel_channel_12 - channel_13 = _mscl.WirelessChannel_channel_13 - channel_14 = _mscl.WirelessChannel_channel_14 - channel_15 = _mscl.WirelessChannel_channel_15 - channel_16 = _mscl.WirelessChannel_channel_16 - channel_digital_1 = _mscl.WirelessChannel_channel_digital_1 - channel_digital_2 = _mscl.WirelessChannel_channel_digital_2 - channel_digital_3 = _mscl.WirelessChannel_channel_digital_3 - channel_digital_4 = _mscl.WirelessChannel_channel_digital_4 - channel_digital_5 = _mscl.WirelessChannel_channel_digital_5 - channel_digital_6 = _mscl.WirelessChannel_channel_digital_6 - channel_digital_7 = _mscl.WirelessChannel_channel_digital_7 - channel_digital_8 = _mscl.WirelessChannel_channel_digital_8 - channel_digital_9 = _mscl.WirelessChannel_channel_digital_9 - channel_digital_10 = _mscl.WirelessChannel_channel_digital_10 - channel_digital_11 = _mscl.WirelessChannel_channel_digital_11 - channel_digital_12 = _mscl.WirelessChannel_channel_digital_12 - channel_digital_13 = _mscl.WirelessChannel_channel_digital_13 - channel_digital_14 = _mscl.WirelessChannel_channel_digital_14 - channel_digital_15 = _mscl.WirelessChannel_channel_digital_15 - channel_digital_16 = _mscl.WirelessChannel_channel_digital_16 - channel_structuralHealth = _mscl.WirelessChannel_channel_structuralHealth - channel_hcl_rawBase_mag1_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_x - channel_hcl_rawBase_mag1_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_y - channel_hcl_rawBase_mag1_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_z - channel_hcl_rawBase_mag2_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_x - channel_hcl_rawBase_mag2_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_y - channel_hcl_rawBase_mag2_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_z - channel_hcl_rawBase_mag3_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_x - channel_hcl_rawBase_mag3_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_y - channel_hcl_rawBase_mag3_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_z - channel_hcl_rawBase_mag4_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_x - channel_hcl_rawBase_mag4_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_y - channel_hcl_rawBase_mag4_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_z - channel_hcl_rawBase_mag5_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_x - channel_hcl_rawBase_mag5_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_y - channel_hcl_rawBase_mag5_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_z - channel_hcl_rawBase_mag6_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_x - channel_hcl_rawBase_mag6_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_y - channel_hcl_rawBase_mag6_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_z - channel_hcl_rawBase_mag7_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_x - channel_hcl_rawBase_mag7_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_y - channel_hcl_rawBase_mag7_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_z - channel_hcl_rawBase_mag8_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_x - channel_hcl_rawBase_mag8_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_y - channel_hcl_rawBase_mag8_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_z - channel_hcl_rawBase_gyro_x = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_x - channel_hcl_rawBase_gyro_y = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_y - channel_hcl_rawBase_gyro_z = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_z - channel_error_code = _mscl.WirelessChannel_channel_error_code - channel_hcl_rawStrain_BL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL30 - channel_hcl_rawStrain_BL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL120 - channel_hcl_rawStrain_A60 = _mscl.WirelessChannel_channel_hcl_rawStrain_A60 - channel_hcl_rawStrain_A150 = _mscl.WirelessChannel_channel_hcl_rawStrain_A150 - channel_hcl_rawStrain_AL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL30 - channel_hcl_rawStrain_AL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL120 - channel_hcl_rawStrain_BR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR60 - channel_hcl_rawStrain_BR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR150 - channel_hcl_rawStrain_B30 = _mscl.WirelessChannel_channel_hcl_rawStrain_B30 - channel_hcl_rawStrain_T120 = _mscl.WirelessChannel_channel_hcl_rawStrain_T120 - channel_hcl_rawStrain_AR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR60 - channel_hcl_rawStrain_AR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR150 - channel_hcl_rawStrain_A30 = _mscl.WirelessChannel_channel_hcl_rawStrain_A30 - channel_hcl_rawStrain_A120 = _mscl.WirelessChannel_channel_hcl_rawStrain_A120 - channel_hcl_rawStrain_BL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL90 - channel_hcl_rawStrain_BL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL180 - channel_hcl_rawStrain_BR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR30 - channel_hcl_rawStrain_BR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR120 - channel_hcl_rawStrain_AL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL90 - channel_hcl_rawStrain_AL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL180 - channel_hcl_rawStrain_AR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR30 - channel_hcl_rawStrain_AR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR120 - channel_hcl_rawStrain_B90 = _mscl.WirelessChannel_channel_hcl_rawStrain_B90 - channel_hcl_rawStrain_T0 = _mscl.WirelessChannel_channel_hcl_rawStrain_T0 - channel_hcl_rawStrain_BL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL60 - channel_hcl_rawStrain_BL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL150 - channel_hcl_rawStrain_A90 = _mscl.WirelessChannel_channel_hcl_rawStrain_A90 - channel_hcl_rawStrain_A0 = _mscl.WirelessChannel_channel_hcl_rawStrain_A0 - channel_hcl_rawStrain_AL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL60 - channel_hcl_rawStrain_AL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL150 - channel_hcl_rawStrain_BR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR90 - channel_hcl_rawStrain_BR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR0 - channel_hcl_rawStrain_T60 = _mscl.WirelessChannel_channel_hcl_rawStrain_T60 - channel_hcl_rawStrain_B150 = _mscl.WirelessChannel_channel_hcl_rawStrain_B150 - channel_hcl_rawStrain_AR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR90 - channel_hcl_rawStrain_AR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR0 - channel_hcl_rawInertial_accel1 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel1 - channel_hcl_rawInertial_accel2 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel2 - channel_hcl_rawInertial_accel3 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel3 - channel_hcl_rawInertial_accel4 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel4 - channel_hcl_rawInertial_accel5 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel5 - channel_hcl_rawInertial_accel6 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel6 - channel_hcl_rawInertial_accel7 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel7 - channel_hcl_rawInertial_accel8 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel8 - channel_hcl_rawInertial_gyroX = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroX - channel_hcl_rawInertial_gyroY = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroY - channel_hcl_rawInertial_gyroZ = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroZ - channel_rawAngleStrain = _mscl.WirelessChannel_channel_rawAngleStrain - channel_beaconEcho = _mscl.WirelessChannel_channel_beaconEcho - channel_rfSweep = _mscl.WirelessChannel_channel_rfSweep - channel_diag_state = _mscl.WirelessChannel_channel_diag_state - channel_diag_runtime_idle = _mscl.WirelessChannel_channel_diag_runtime_idle - channel_diag_runtime_sleep = _mscl.WirelessChannel_channel_diag_runtime_sleep - channel_diag_runtime_activeRun = _mscl.WirelessChannel_channel_diag_runtime_activeRun - channel_diag_runtime_inactiveRun = _mscl.WirelessChannel_channel_diag_runtime_inactiveRun - channel_diag_resetCounter = _mscl.WirelessChannel_channel_diag_resetCounter - channel_diag_lowBatteryFlag = _mscl.WirelessChannel_channel_diag_lowBatteryFlag - channel_diag_sweepIndex = _mscl.WirelessChannel_channel_diag_sweepIndex - channel_diag_badSweepCount = _mscl.WirelessChannel_channel_diag_badSweepCount - channel_diag_totalTx = _mscl.WirelessChannel_channel_diag_totalTx - channel_diag_totalReTx = _mscl.WirelessChannel_channel_diag_totalReTx - channel_diag_totalDroppedPackets = _mscl.WirelessChannel_channel_diag_totalDroppedPackets - channel_diag_builtInTestResult = _mscl.WirelessChannel_channel_diag_builtInTestResult - channel_diag_eventIndex = _mscl.WirelessChannel_channel_diag_eventIndex - channel_hcl_axialLoadX = _mscl.WirelessChannel_channel_hcl_axialLoadX - channel_hcl_axialLoadY = _mscl.WirelessChannel_channel_hcl_axialLoadY - channel_hcl_axialLoadZ = _mscl.WirelessChannel_channel_hcl_axialLoadZ - channel_hcl_bendingMomentFlap = _mscl.WirelessChannel_channel_hcl_bendingMomentFlap - channel_hcl_bendingMomentLag = _mscl.WirelessChannel_channel_hcl_bendingMomentLag - channel_hcl_bendingMomentPitch = _mscl.WirelessChannel_channel_hcl_bendingMomentPitch - channel_hcl_motionFlap_mag = _mscl.WirelessChannel_channel_hcl_motionFlap_mag - channel_hcl_motionLag_mag = _mscl.WirelessChannel_channel_hcl_motionLag_mag - channel_hcl_motionPitch_mag = _mscl.WirelessChannel_channel_hcl_motionPitch_mag - channel_hcl_motionFlap_inertial = _mscl.WirelessChannel_channel_hcl_motionFlap_inertial - channel_hcl_motionLag_inertial = _mscl.WirelessChannel_channel_hcl_motionLag_inertial - channel_hcl_motionPitch_inertial = _mscl.WirelessChannel_channel_hcl_motionPitch_inertial - channel_hcl_cockingStiffness_mag = _mscl.WirelessChannel_channel_hcl_cockingStiffness_mag - channel_hcl_cockingStiffness_inertial = _mscl.WirelessChannel_channel_hcl_cockingStiffness_inertial - channel_hcl_temperature = _mscl.WirelessChannel_channel_hcl_temperature - channel_diag_externalPower = _mscl.WirelessChannel_channel_diag_externalPower - channel_diag_internalTemp = _mscl.WirelessChannel_channel_diag_internalTemp - channel_1_rms = _mscl.WirelessChannel_channel_1_rms - channel_2_rms = _mscl.WirelessChannel_channel_2_rms - channel_3_rms = _mscl.WirelessChannel_channel_3_rms - channel_4_rms = _mscl.WirelessChannel_channel_4_rms - channel_5_rms = _mscl.WirelessChannel_channel_5_rms - channel_6_rms = _mscl.WirelessChannel_channel_6_rms - channel_7_rms = _mscl.WirelessChannel_channel_7_rms - channel_8_rms = _mscl.WirelessChannel_channel_8_rms - channel_9_rms = _mscl.WirelessChannel_channel_9_rms - channel_10_rms = _mscl.WirelessChannel_channel_10_rms - channel_11_rms = _mscl.WirelessChannel_channel_11_rms - channel_12_rms = _mscl.WirelessChannel_channel_12_rms - channel_13_rms = _mscl.WirelessChannel_channel_13_rms - channel_14_rms = _mscl.WirelessChannel_channel_14_rms - channel_15_rms = _mscl.WirelessChannel_channel_15_rms - channel_16_rms = _mscl.WirelessChannel_channel_16_rms - channel_1_peakToPeak = _mscl.WirelessChannel_channel_1_peakToPeak - channel_2_peakToPeak = _mscl.WirelessChannel_channel_2_peakToPeak - channel_3_peakToPeak = _mscl.WirelessChannel_channel_3_peakToPeak - channel_4_peakToPeak = _mscl.WirelessChannel_channel_4_peakToPeak - channel_5_peakToPeak = _mscl.WirelessChannel_channel_5_peakToPeak - channel_6_peakToPeak = _mscl.WirelessChannel_channel_6_peakToPeak - channel_7_peakToPeak = _mscl.WirelessChannel_channel_7_peakToPeak - channel_8_peakToPeak = _mscl.WirelessChannel_channel_8_peakToPeak - channel_9_peakToPeak = _mscl.WirelessChannel_channel_9_peakToPeak - channel_10_peakToPeak = _mscl.WirelessChannel_channel_10_peakToPeak - channel_11_peakToPeak = _mscl.WirelessChannel_channel_11_peakToPeak - channel_12_peakToPeak = _mscl.WirelessChannel_channel_12_peakToPeak - channel_13_peakToPeak = _mscl.WirelessChannel_channel_13_peakToPeak - channel_14_peakToPeak = _mscl.WirelessChannel_channel_14_peakToPeak - channel_15_peakToPeak = _mscl.WirelessChannel_channel_15_peakToPeak - channel_16_peakToPeak = _mscl.WirelessChannel_channel_16_peakToPeak - channel_1_ips = _mscl.WirelessChannel_channel_1_ips - channel_2_ips = _mscl.WirelessChannel_channel_2_ips - channel_3_ips = _mscl.WirelessChannel_channel_3_ips - channel_4_ips = _mscl.WirelessChannel_channel_4_ips - channel_5_ips = _mscl.WirelessChannel_channel_5_ips - channel_6_ips = _mscl.WirelessChannel_channel_6_ips - channel_7_ips = _mscl.WirelessChannel_channel_7_ips - channel_8_ips = _mscl.WirelessChannel_channel_8_ips - channel_9_ips = _mscl.WirelessChannel_channel_9_ips - channel_10_ips = _mscl.WirelessChannel_channel_10_ips - channel_11_ips = _mscl.WirelessChannel_channel_11_ips - channel_12_ips = _mscl.WirelessChannel_channel_12_ips - channel_13_ips = _mscl.WirelessChannel_channel_13_ips - channel_14_ips = _mscl.WirelessChannel_channel_14_ips - channel_15_ips = _mscl.WirelessChannel_channel_15_ips - channel_16_ips = _mscl.WirelessChannel_channel_16_ips - channel_1_crestFactor = _mscl.WirelessChannel_channel_1_crestFactor - channel_2_crestFactor = _mscl.WirelessChannel_channel_2_crestFactor - channel_3_crestFactor = _mscl.WirelessChannel_channel_3_crestFactor - channel_4_crestFactor = _mscl.WirelessChannel_channel_4_crestFactor - channel_5_crestFactor = _mscl.WirelessChannel_channel_5_crestFactor - channel_6_crestFactor = _mscl.WirelessChannel_channel_6_crestFactor - channel_7_crestFactor = _mscl.WirelessChannel_channel_7_crestFactor - channel_8_crestFactor = _mscl.WirelessChannel_channel_8_crestFactor - channel_9_crestFactor = _mscl.WirelessChannel_channel_9_crestFactor - channel_10_crestFactor = _mscl.WirelessChannel_channel_10_crestFactor - channel_11_crestFactor = _mscl.WirelessChannel_channel_11_crestFactor - channel_12_crestFactor = _mscl.WirelessChannel_channel_12_crestFactor - channel_13_crestFactor = _mscl.WirelessChannel_channel_13_crestFactor - channel_14_crestFactor = _mscl.WirelessChannel_channel_14_crestFactor - channel_15_crestFactor = _mscl.WirelessChannel_channel_15_crestFactor - channel_16_crestFactor = _mscl.WirelessChannel_channel_16_crestFactor - channel_diag_syncAttempts = _mscl.WirelessChannel_channel_diag_syncAttempts - channel_diag_syncFailures = _mscl.WirelessChannel_channel_diag_syncFailures - channel_diag_secsSinceLastSync = _mscl.WirelessChannel_channel_diag_secsSinceLastSync - channel_beaconConflict = _mscl.WirelessChannel_channel_beaconConflict - channel_1_mean = _mscl.WirelessChannel_channel_1_mean - channel_2_mean = _mscl.WirelessChannel_channel_2_mean - channel_3_mean = _mscl.WirelessChannel_channel_3_mean - channel_4_mean = _mscl.WirelessChannel_channel_4_mean - channel_5_mean = _mscl.WirelessChannel_channel_5_mean - channel_6_mean = _mscl.WirelessChannel_channel_6_mean - channel_7_mean = _mscl.WirelessChannel_channel_7_mean - channel_8_mean = _mscl.WirelessChannel_channel_8_mean - channel_9_mean = _mscl.WirelessChannel_channel_9_mean - channel_10_mean = _mscl.WirelessChannel_channel_10_mean - channel_11_mean = _mscl.WirelessChannel_channel_11_mean - channel_12_mean = _mscl.WirelessChannel_channel_12_mean - channel_13_mean = _mscl.WirelessChannel_channel_13_mean - channel_14_mean = _mscl.WirelessChannel_channel_14_mean - channel_15_mean = _mscl.WirelessChannel_channel_15_mean - channel_16_mean = _mscl.WirelessChannel_channel_16_mean - channel_1_mmps = _mscl.WirelessChannel_channel_1_mmps - channel_2_mmps = _mscl.WirelessChannel_channel_2_mmps - channel_3_mmps = _mscl.WirelessChannel_channel_3_mmps - channel_4_mmps = _mscl.WirelessChannel_channel_4_mmps - channel_5_mmps = _mscl.WirelessChannel_channel_5_mmps - channel_6_mmps = _mscl.WirelessChannel_channel_6_mmps - channel_7_mmps = _mscl.WirelessChannel_channel_7_mmps - channel_8_mmps = _mscl.WirelessChannel_channel_8_mmps - channel_9_mmps = _mscl.WirelessChannel_channel_9_mmps - channel_10_mmps = _mscl.WirelessChannel_channel_10_mmps - channel_11_mmps = _mscl.WirelessChannel_channel_11_mmps - channel_12_mmps = _mscl.WirelessChannel_channel_12_mmps - channel_13_mmps = _mscl.WirelessChannel_channel_13_mmps - channel_14_mmps = _mscl.WirelessChannel_channel_14_mmps - channel_15_mmps = _mscl.WirelessChannel_channel_15_mmps - channel_16_mmps = _mscl.WirelessChannel_channel_16_mmps - channel_diag_memoryFull = _mscl.WirelessChannel_channel_diag_memoryFull - - def __init__(self, *args): - _mscl.WirelessChannel_swiginit(self, _mscl.new_WirelessChannel(*args)) - - def channelNumber(self): - return _mscl.WirelessChannel_channelNumber(self) - - def id(self): - return _mscl.WirelessChannel_id(self) - - def type(self): - return _mscl.WirelessChannel_type(self) - - def description(self): - return _mscl.WirelessChannel_description(self) - - def adcResolution(self): - return _mscl.WirelessChannel_adcResolution(self) - - def adcMaxValue(self): - return _mscl.WirelessChannel_adcMaxValue(self) - - def name(self): - return _mscl.WirelessChannel_name(self) - __swig_destroy__ = _mscl.delete_WirelessChannel - -# Register WirelessChannel in _mscl: -_mscl.WirelessChannel_swigregister(WirelessChannel) - -class WirelessDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessDataPoint_swiginit(self, _mscl.new_WirelessDataPoint()) - - def channelId(self): - return _mscl.WirelessDataPoint_channelId(self) - - def channelNumber(self): - return _mscl.WirelessDataPoint_channelNumber(self) - - def channelName(self): - return _mscl.WirelessDataPoint_channelName(self) - __swig_destroy__ = _mscl.delete_WirelessDataPoint - -# Register WirelessDataPoint in _mscl: -_mscl.WirelessDataPoint_swigregister(WirelessDataPoint) - -class DataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - samplingType_NonSync = _mscl.DataSweep_samplingType_NonSync - samplingType_NonSync_Buffered = _mscl.DataSweep_samplingType_NonSync_Buffered - samplingType_SyncSampling = _mscl.DataSweep_samplingType_SyncSampling - samplingType_SyncSampling_Burst = _mscl.DataSweep_samplingType_SyncSampling_Burst - samplingType_AsyncDigital = _mscl.DataSweep_samplingType_AsyncDigital - samplingType_AsyncDigitalAnalog = _mscl.DataSweep_samplingType_AsyncDigitalAnalog - samplingType_SHM = _mscl.DataSweep_samplingType_SHM - samplingType_BeaconEcho = _mscl.DataSweep_samplingType_BeaconEcho - samplingType_RfSweep = _mscl.DataSweep_samplingType_RfSweep - samplingType_Diagnostic = _mscl.DataSweep_samplingType_Diagnostic - - def __init__(self): - _mscl.DataSweep_swiginit(self, _mscl.new_DataSweep()) - - def timestamp(self): - return _mscl.DataSweep_timestamp(self) - - def tick(self): - return _mscl.DataSweep_tick(self) - - def sampleRate(self): - return _mscl.DataSweep_sampleRate(self) - - def nodeAddress(self): - return _mscl.DataSweep_nodeAddress(self) - - def data(self): - return _mscl.DataSweep_data(self) - - def samplingType(self): - return _mscl.DataSweep_samplingType(self) - - def nodeRssi(self): - return _mscl.DataSweep_nodeRssi(self) - - def baseRssi(self): - return _mscl.DataSweep_baseRssi(self) - - def frequency(self): - return _mscl.DataSweep_frequency(self) - - def calApplied(self): - return _mscl.DataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_DataSweep - -# Register DataSweep in _mscl: -_mscl.DataSweep_swigregister(DataSweep) - -class BaseStationAnalogPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationAnalogPair_swiginit(self, _mscl.new_BaseStationAnalogPair()) - - @staticmethod - def Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - - @staticmethod - def NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - - def nodeAddress(self, *args): - return _mscl.BaseStationAnalogPair_nodeAddress(self, *args) - - def nodeChannel(self, *args): - return _mscl.BaseStationAnalogPair_nodeChannel(self, *args) - - def expectFloatData(self, *args): - return _mscl.BaseStationAnalogPair_expectFloatData(self, *args) - - def outputVal_0V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_0V(self, *args) - - def outputVal_3V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_3V(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationAnalogPair - -# Register BaseStationAnalogPair in _mscl: -_mscl.BaseStationAnalogPair_swigregister(BaseStationAnalogPair) -BaseStationAnalogPair.CHANNEL_NOT_FLOAT = _mscl.cvar.BaseStationAnalogPair_CHANNEL_NOT_FLOAT - -def BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - -def BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - -class BaseStationButton(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - btn_nodeSleep = _mscl.BaseStationButton_btn_nodeSleep - btn_nodeStop = _mscl.BaseStationButton_btn_nodeStop - btn_enableBeacon = _mscl.BaseStationButton_btn_enableBeacon - btn_disableBeacon = _mscl.BaseStationButton_btn_disableBeacon - btn_nodeNonSyncSampling = _mscl.BaseStationButton_btn_nodeNonSyncSampling - btn_nodeSyncSampling = _mscl.BaseStationButton_btn_nodeSyncSampling - btn_nodeArmedDatalogging = _mscl.BaseStationButton_btn_nodeArmedDatalogging - btn_cyclePower = _mscl.BaseStationButton_btn_cyclePower - btn_disabled = _mscl.BaseStationButton_btn_disabled - - def __init__(self, *args): - _mscl.BaseStationButton_swiginit(self, _mscl.new_BaseStationButton(*args)) - - def command(self, *args): - return _mscl.BaseStationButton_command(self, *args) - - def nodeAddress(self, *args): - return _mscl.BaseStationButton_nodeAddress(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationButton - -# Register BaseStationButton in _mscl: -_mscl.BaseStationButton_swigregister(BaseStationButton) - -class BaseStationConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationConfig_swiginit(self, _mscl.new_BaseStationConfig()) - - def transmitPower(self, *args): - return _mscl.BaseStationConfig_transmitPower(self, *args) - - def communicationProtocol(self, *args): - return _mscl.BaseStationConfig_communicationProtocol(self, *args) - - def buttonLongPress(self, *args): - return _mscl.BaseStationConfig_buttonLongPress(self, *args) - - def buttonShortPress(self, *args): - return _mscl.BaseStationConfig_buttonShortPress(self, *args) - - def analogPairingEnable(self, *args): - return _mscl.BaseStationConfig_analogPairingEnable(self, *args) - - def analogTimeoutTime(self, *args): - return _mscl.BaseStationConfig_analogTimeoutTime(self, *args) - - def analogTimeoutVoltage(self, *args): - return _mscl.BaseStationConfig_analogTimeoutVoltage(self, *args) - - def analogExceedanceEnable(self, *args): - return _mscl.BaseStationConfig_analogExceedanceEnable(self, *args) - - def analogPairing(self, *args): - return _mscl.BaseStationConfig_analogPairing(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationConfig - -# Register BaseStationConfig in _mscl: -_mscl.BaseStationConfig_swigregister(BaseStationConfig) - -class BeaconStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BeaconStatus_swiginit(self, _mscl.new_BeaconStatus(*args)) - - def enabled(self): - return _mscl.BeaconStatus_enabled(self) - - def timestamp(self): - return _mscl.BeaconStatus_timestamp(self) - __swig_destroy__ = _mscl.delete_BeaconStatus - -# Register BeaconStatus in _mscl: -_mscl.BeaconStatus_swigregister(BeaconStatus) - -class BaseStationInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region, asppVer_lxrs, asppVer_lxrsPlus): - _mscl.BaseStationInfo_swiginit(self, _mscl.new_BaseStationInfo(fw, model, region, asppVer_lxrs, asppVer_lxrsPlus)) - __swig_destroy__ = _mscl.delete_BaseStationInfo - -# Register BaseStationInfo in _mscl: -_mscl.BaseStationInfo_swigregister(BaseStationInfo) - -class BaseStation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_BASE_COMMANDS_DEFAULT_TIMEOUT - ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT - BROADCAST_NODE_ADDRESS = _mscl.BaseStation_BROADCAST_NODE_ADDRESS - BROADCAST_NODE_ADDRESS_ASPP3 = _mscl.BaseStation_BROADCAST_NODE_ADDRESS_ASPP3 - - def __init__(self, *args): - _mscl.BaseStation_swiginit(self, _mscl.new_BaseStation(*args)) - __swig_destroy__ = _mscl.delete_BaseStation - - @staticmethod - def Mock(*args): - return _mscl.BaseStation_Mock(*args) - - @staticmethod - def deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - - def connection(self): - return _mscl.BaseStation_connection(self) - - def features(self): - return _mscl.BaseStation_features(self) - - def lastCommunicationTime(self): - return _mscl.BaseStation_lastCommunicationTime(self) - - def readWriteRetries(self, *args): - return _mscl.BaseStation_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.BaseStation_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.BaseStation_clearEepromCache(self) - - def frequency(self): - return _mscl.BaseStation_frequency(self) - - def communicationProtocol(self): - return _mscl.BaseStation_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.BaseStation_firmwareVersion(self) - - def model(self): - return _mscl.BaseStation_model(self) - - def serial(self): - return _mscl.BaseStation_serial(self) - - def name(self): - return _mscl.BaseStation_name(self) - - def microcontroller(self): - return _mscl.BaseStation_microcontroller(self) - - def regionCode(self): - return _mscl.BaseStation_regionCode(self) - - def getData(self, timeout=0, maxSweeps=0): - return _mscl.BaseStation_getData(self, timeout, maxSweeps) - - def totalData(self): - return _mscl.BaseStation_totalData(self) - - def getNodeDiscoveries(self): - return _mscl.BaseStation_getNodeDiscoveries(self) - - def timeout(self, *args): - return _mscl.BaseStation_timeout(self, *args) - - def ping(self): - return _mscl.BaseStation_ping(self) - - def readEeprom(self, eepromAddress): - return _mscl.BaseStation_readEeprom(self, eepromAddress) - - def writeEeprom(self, eepromAddress, value): - return _mscl.BaseStation_writeEeprom(self, eepromAddress, value) - - def enableBeacon(self, *args): - return _mscl.BaseStation_enableBeacon(self, *args) - - def disableBeacon(self): - return _mscl.BaseStation_disableBeacon(self) - - def beaconStatus(self): - return _mscl.BaseStation_beaconStatus(self) - - def startRfSweepMode(self, *args): - return _mscl.BaseStation_startRfSweepMode(self, *args) - - def cyclePower(self, checkComm=True): - return _mscl.BaseStation_cyclePower(self, checkComm) - - def resetRadio(self): - return _mscl.BaseStation_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.BaseStation_changeFrequency(self, frequency) - - def broadcastSetToIdle(self): - return _mscl.BaseStation_broadcastSetToIdle(self) - - def verifyConfig(self, config, outIssues): - return _mscl.BaseStation_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.BaseStation_applyConfig(self, config) - - def getTransmitPower(self): - return _mscl.BaseStation_getTransmitPower(self) - - def getButtonLongPress(self, buttonNumber): - return _mscl.BaseStation_getButtonLongPress(self, buttonNumber) - - def getButtonShortPress(self, buttonNumber): - return _mscl.BaseStation_getButtonShortPress(self, buttonNumber) - - def getAnalogPairingEnabled(self): - return _mscl.BaseStation_getAnalogPairingEnabled(self) - - def getAnalogTimeoutTime(self): - return _mscl.BaseStation_getAnalogTimeoutTime(self) - - def getAnalogTimeoutVoltage(self): - return _mscl.BaseStation_getAnalogTimeoutVoltage(self) - - def getAnalogExceedanceEnabled(self): - return _mscl.BaseStation_getAnalogExceedanceEnabled(self) - - def getAnalogPair(self, portNumber): - return _mscl.BaseStation_getAnalogPair(self, portNumber) - -# Register BaseStation in _mscl: -_mscl.BaseStation_swigregister(BaseStation) - -def BaseStation_Mock(*args): - return _mscl.BaseStation_Mock(*args) - -def BaseStation_deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - -class LoggedDataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LoggedDataSweep_swiginit(self, _mscl.new_LoggedDataSweep(*args)) - - def timestamp(self): - return _mscl.LoggedDataSweep_timestamp(self) - - def tick(self): - return _mscl.LoggedDataSweep_tick(self) - - def data(self): - return _mscl.LoggedDataSweep_data(self) - - def calApplied(self): - return _mscl.LoggedDataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweep - -# Register LoggedDataSweep in _mscl: -_mscl.LoggedDataSweep_swigregister(LoggedDataSweep) - -class RadioFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.RadioFeatures_swiginit(self, _mscl.new_RadioFeatures(*args)) - - def extendedRange(self): - return _mscl.RadioFeatures_extendedRange(self) - __swig_destroy__ = _mscl.delete_RadioFeatures - -# Register RadioFeatures in _mscl: -_mscl.RadioFeatures_swigregister(RadioFeatures) - -class WirelessNodeConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessNodeConfig_swiginit(self, _mscl.new_WirelessNodeConfig()) - SENSOR_DELAY_ALWAYS_ON = _mscl.WirelessNodeConfig_SENSOR_DELAY_ALWAYS_ON - - def defaultMode(self, *args): - return _mscl.WirelessNodeConfig_defaultMode(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.WirelessNodeConfig_inactivityTimeout(self, *args) - - def checkRadioInterval(self, *args): - return _mscl.WirelessNodeConfig_checkRadioInterval(self, *args) - - def transmitPower(self, *args): - return _mscl.WirelessNodeConfig_transmitPower(self, *args) - - def samplingMode(self, *args): - return _mscl.WirelessNodeConfig_samplingMode(self, *args) - - def sampleRate(self, *args): - return _mscl.WirelessNodeConfig_sampleRate(self, *args) - - def activeChannels(self, *args): - return _mscl.WirelessNodeConfig_activeChannels(self, *args) - - def numSweeps(self, *args): - return _mscl.WirelessNodeConfig_numSweeps(self, *args) - - def unlimitedDuration(self, *args): - return _mscl.WirelessNodeConfig_unlimitedDuration(self, *args) - - def dataFormat(self, *args): - return _mscl.WirelessNodeConfig_dataFormat(self, *args) - - def dataCollectionMethod(self, *args): - return _mscl.WirelessNodeConfig_dataCollectionMethod(self, *args) - - def timeBetweenBursts(self, *args): - return _mscl.WirelessNodeConfig_timeBetweenBursts(self, *args) - - def lostBeaconTimeout(self, *args): - return _mscl.WirelessNodeConfig_lostBeaconTimeout(self, *args) - - def pullUpResistor(self, *args): - return _mscl.WirelessNodeConfig_pullUpResistor(self, *args) - - def inputRange(self, *args): - return _mscl.WirelessNodeConfig_inputRange(self, *args) - - def hardwareOffset(self, *args): - return _mscl.WirelessNodeConfig_hardwareOffset(self, *args) - - def antiAliasingFilter(self, *args): - return _mscl.WirelessNodeConfig_antiAliasingFilter(self, *args) - - def cfcFilterConfig(self, *args): - return _mscl.WirelessNodeConfig_cfcFilterConfig(self, *args) - - def lowPassFilter(self, *args): - return _mscl.WirelessNodeConfig_lowPassFilter(self, *args) - - def highPassFilter(self, *args): - return _mscl.WirelessNodeConfig_highPassFilter(self, *args) - - def gaugeFactor(self, *args): - return _mscl.WirelessNodeConfig_gaugeFactor(self, *args) - - def gaugeResistance(self, *args): - return _mscl.WirelessNodeConfig_gaugeResistance(self, *args) - - def excitationVoltage(self, *args): - return _mscl.WirelessNodeConfig_excitationVoltage(self, *args) - - def numActiveGauges(self, *args): - return _mscl.WirelessNodeConfig_numActiveGauges(self, *args) - - def lowBatteryThreshold(self, *args): - return _mscl.WirelessNodeConfig_lowBatteryThreshold(self, *args) - - def linearEquation(self, *args): - return _mscl.WirelessNodeConfig_linearEquation(self, *args) - - def unit(self, *args): - return _mscl.WirelessNodeConfig_unit(self, *args) - - def equationType(self, *args): - return _mscl.WirelessNodeConfig_equationType(self, *args) - - def filterSettlingTime(self, *args): - return _mscl.WirelessNodeConfig_filterSettlingTime(self, *args) - - def thermocoupleType(self, *args): - return _mscl.WirelessNodeConfig_thermocoupleType(self, *args) - - def tempSensorOptions(self, *args): - return _mscl.WirelessNodeConfig_tempSensorOptions(self, *args) - - def debounceFilter(self, *args): - return _mscl.WirelessNodeConfig_debounceFilter(self, *args) - - def fatigueOptions(self, *args): - return _mscl.WirelessNodeConfig_fatigueOptions(self, *args) - - def histogramOptions(self, *args): - return _mscl.WirelessNodeConfig_histogramOptions(self, *args) - - def activitySense(self, *args): - return _mscl.WirelessNodeConfig_activitySense(self, *args) - - def eventTriggerOptions(self, *args): - return _mscl.WirelessNodeConfig_eventTriggerOptions(self, *args) - - def diagnosticInterval(self, *args): - return _mscl.WirelessNodeConfig_diagnosticInterval(self, *args) - - def storageLimitMode(self, *args): - return _mscl.WirelessNodeConfig_storageLimitMode(self, *args) - - def sensorDelay(self, *args): - return _mscl.WirelessNodeConfig_sensorDelay(self, *args) - - def dataMode(self, *args): - return _mscl.WirelessNodeConfig_dataMode(self, *args) - - def derivedDataRate(self, *args): - return _mscl.WirelessNodeConfig_derivedDataRate(self, *args) - - def derivedChannelMask(self, *args): - return _mscl.WirelessNodeConfig_derivedChannelMask(self, *args) - - def derivedVelocityUnit(self, *args): - return _mscl.WirelessNodeConfig_derivedVelocityUnit(self, *args) - - def communicationProtocol(self, *args): - return _mscl.WirelessNodeConfig_communicationProtocol(self, *args) - - def sensorOutputMode(self, *args): - return _mscl.WirelessNodeConfig_sensorOutputMode(self, *args) - - @staticmethod - def flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - - @staticmethod - def flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - __swig_destroy__ = _mscl.delete_WirelessNodeConfig - -# Register WirelessNodeConfig in _mscl: -_mscl.WirelessNodeConfig_swigregister(WirelessNodeConfig) - -def WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - -def WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - -class AutoBalanceResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoBalanceResult_swiginit(self, _mscl.new_AutoBalanceResult()) - - def errorCode(self): - return _mscl.AutoBalanceResult_errorCode(self) - - def percentAchieved(self): - return _mscl.AutoBalanceResult_percentAchieved(self) - - def hardwareOffset(self): - return _mscl.AutoBalanceResult_hardwareOffset(self) - __swig_destroy__ = _mscl.delete_AutoBalanceResult - -# Register AutoBalanceResult in _mscl: -_mscl.AutoBalanceResult_swigregister(AutoBalanceResult) - -class ShuntCalCmdInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - useInternalShunt = property(_mscl.ShuntCalCmdInfo_useInternalShunt_get, _mscl.ShuntCalCmdInfo_useInternalShunt_set) - numActiveGauges = property(_mscl.ShuntCalCmdInfo_numActiveGauges_get, _mscl.ShuntCalCmdInfo_numActiveGauges_set) - gaugeResistance = property(_mscl.ShuntCalCmdInfo_gaugeResistance_get, _mscl.ShuntCalCmdInfo_gaugeResistance_set) - shuntResistance = property(_mscl.ShuntCalCmdInfo_shuntResistance_get, _mscl.ShuntCalCmdInfo_shuntResistance_set) - gaugeFactor = property(_mscl.ShuntCalCmdInfo_gaugeFactor_get, _mscl.ShuntCalCmdInfo_gaugeFactor_set) - inputRange = property(_mscl.ShuntCalCmdInfo_inputRange_get, _mscl.ShuntCalCmdInfo_inputRange_set) - hardwareOffset = property(_mscl.ShuntCalCmdInfo_hardwareOffset_get, _mscl.ShuntCalCmdInfo_hardwareOffset_set) - excitationVoltage = property(_mscl.ShuntCalCmdInfo_excitationVoltage_get, _mscl.ShuntCalCmdInfo_excitationVoltage_set) - - def __init__(self): - _mscl.ShuntCalCmdInfo_swiginit(self, _mscl.new_ShuntCalCmdInfo()) - __swig_destroy__ = _mscl.delete_ShuntCalCmdInfo - -# Register ShuntCalCmdInfo in _mscl: -_mscl.ShuntCalCmdInfo_swigregister(ShuntCalCmdInfo) - -class AutoCalResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_AutoCalResult - - def completionFlag(self): - return _mscl.AutoCalResult_completionFlag(self) - -# Register AutoCalResult in _mscl: -_mscl.AutoCalResult_swigregister(AutoCalResult) - -class AutoCalResult_shmLink(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink_swiginit(self, _mscl.new_AutoCalResult_shmLink()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh3(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink_offsetCh1(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink_offsetCh2(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink_temperature(self) - -# Register AutoCalResult_shmLink in _mscl: -_mscl.AutoCalResult_shmLink_swigregister(AutoCalResult_shmLink) - -class AutoCalResult_shmLink201(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink201_swiginit(self, _mscl.new_AutoCalResult_shmLink201()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink201 - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh3(self) - - def slopeCh1(self): - return _mscl.AutoCalResult_shmLink201_slopeCh1(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink201_offsetCh1(self) - - def slopeCh2(self): - return _mscl.AutoCalResult_shmLink201_slopeCh2(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink201_offsetCh2(self) - - def slopeCh3(self): - return _mscl.AutoCalResult_shmLink201_slopeCh3(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink201_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink201_temperature(self) - -# Register AutoCalResult_shmLink201 in _mscl: -_mscl.AutoCalResult_shmLink201_swigregister(AutoCalResult_shmLink201) - -class AutoShuntCalResult(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoShuntCalResult_swiginit(self, _mscl.new_AutoShuntCalResult()) - __swig_destroy__ = _mscl.delete_AutoShuntCalResult - - def errorFlag(self): - return _mscl.AutoShuntCalResult_errorFlag(self) - - def slope(self): - return _mscl.AutoShuntCalResult_slope(self) - - def offset(self): - return _mscl.AutoShuntCalResult_offset(self) - - def baseMedian(self): - return _mscl.AutoShuntCalResult_baseMedian(self) - - def baseMin(self): - return _mscl.AutoShuntCalResult_baseMin(self) - - def baseMax(self): - return _mscl.AutoShuntCalResult_baseMax(self) - - def shuntMedian(self): - return _mscl.AutoShuntCalResult_shuntMedian(self) - - def shuntMin(self): - return _mscl.AutoShuntCalResult_shuntMin(self) - - def shuntMax(self): - return _mscl.AutoShuntCalResult_shuntMax(self) - -# Register AutoShuntCalResult in _mscl: -_mscl.AutoShuntCalResult_swigregister(AutoShuntCalResult) - -class PingResponse(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PingResponse_swiginit(self, _mscl.new_PingResponse()) - - def success(self): - return _mscl.PingResponse_success(self) - - def nodeRssi(self): - return _mscl.PingResponse_nodeRssi(self) - - def baseRssi(self): - return _mscl.PingResponse_baseRssi(self) - __swig_destroy__ = _mscl.delete_PingResponse - -# Register PingResponse in _mscl: -_mscl.PingResponse_swigregister(PingResponse) - -class SetToIdleStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - setToIdleResult_success = _mscl.SetToIdleStatus_setToIdleResult_success - setToIdleResult_canceled = _mscl.SetToIdleStatus_setToIdleResult_canceled - setToIdleResult_failed = _mscl.SetToIdleStatus_setToIdleResult_failed - setToIdleResult_notCompleted = _mscl.SetToIdleStatus_setToIdleResult_notCompleted - - def result(self): - return _mscl.SetToIdleStatus_result(self) - - def complete(self, timeout=10): - return _mscl.SetToIdleStatus_complete(self, timeout) - - def cancel(self): - return _mscl.SetToIdleStatus_cancel(self) - __swig_destroy__ = _mscl.delete_SetToIdleStatus - -# Register SetToIdleStatus in _mscl: -_mscl.SetToIdleStatus_swigregister(SetToIdleStatus) - -class NodeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region): - _mscl.NodeInfo_swiginit(self, _mscl.new_NodeInfo(fw, model, region)) - __swig_destroy__ = _mscl.delete_NodeInfo - -# Register NodeInfo in _mscl: -_mscl.NodeInfo_swigregister(NodeInfo) - -class WirelessNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, nodeAddress, basestation): - _mscl.WirelessNode_swiginit(self, _mscl.new_WirelessNode(nodeAddress, basestation)) - __swig_destroy__ = _mscl.delete_WirelessNode - - @staticmethod - def Mock(*args): - return _mscl.WirelessNode_Mock(*args) - - @staticmethod - def deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - - def features(self): - return _mscl.WirelessNode_features(self) - - def lastCommunicationTime(self): - return _mscl.WirelessNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.WirelessNode_lastDeviceState(self) - - def setBaseStation(self, basestation): - return _mscl.WirelessNode_setBaseStation(self, basestation) - - def getBaseStation(self): - return _mscl.WirelessNode_getBaseStation(self) - - def hasBaseStation(self, basestation): - return _mscl.WirelessNode_hasBaseStation(self, basestation) - - def useGroupRead(self, useGroup): - return _mscl.WirelessNode_useGroupRead(self, useGroup) - - def readWriteRetries(self, *args): - return _mscl.WirelessNode_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.WirelessNode_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.WirelessNode_clearEepromCache(self) - - def updateEepromCacheFromNodeDiscovery(self, nodeDisovery): - return _mscl.WirelessNode_updateEepromCacheFromNodeDiscovery(self, nodeDisovery) - - def getEepromCache(self): - return _mscl.WirelessNode_getEepromCache(self) - - def nodeAddress(self): - return _mscl.WirelessNode_nodeAddress(self) - - def frequency(self): - return _mscl.WirelessNode_frequency(self) - - def communicationProtocol(self): - return _mscl.WirelessNode_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.WirelessNode_firmwareVersion(self) - - def model(self): - return _mscl.WirelessNode_model(self) - - def serial(self): - return _mscl.WirelessNode_serial(self) - - def name(self): - return _mscl.WirelessNode_name(self) - - def microcontroller(self): - return _mscl.WirelessNode_microcontroller(self) - - def radioFeatures(self): - return _mscl.WirelessNode_radioFeatures(self) - - def dataStorageSize(self): - return _mscl.WirelessNode_dataStorageSize(self) - - def regionCode(self): - return _mscl.WirelessNode_regionCode(self) - - def ping(self): - return _mscl.WirelessNode_ping(self) - - def sleep(self): - return _mscl.WirelessNode_sleep(self) - - def cyclePower(self): - return _mscl.WirelessNode_cyclePower(self) - - def resetRadio(self): - return _mscl.WirelessNode_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.WirelessNode_changeFrequency(self, frequency) - - def setToIdle(self): - return _mscl.WirelessNode_setToIdle(self) - - def erase(self): - return _mscl.WirelessNode_erase(self) - - def startNonSyncSampling(self): - return _mscl.WirelessNode_startNonSyncSampling(self) - - def resendStartSyncSampling(self): - return _mscl.WirelessNode_resendStartSyncSampling(self) - - def clearHistogram(self): - return _mscl.WirelessNode_clearHistogram(self) - - def autoBalance(self, mask, targetPercent): - return _mscl.WirelessNode_autoBalance(self, mask, targetPercent) - - def autoCal_shmLink(self): - return _mscl.WirelessNode_autoCal_shmLink(self) - - def autoCal_shmLink201(self): - return _mscl.WirelessNode_autoCal_shmLink201(self) - - def autoShuntCal(self, mask, commandInfo): - return _mscl.WirelessNode_autoShuntCal(self, mask, commandInfo) - - def poll(self, mask): - return _mscl.WirelessNode_poll(self, mask) - - def readEeprom(self, location): - return _mscl.WirelessNode_readEeprom(self, location) - - def writeEeprom(self, location, value): - return _mscl.WirelessNode_writeEeprom(self, location, value) - - def getDiagnosticInfo(self): - return _mscl.WirelessNode_getDiagnosticInfo(self) - - def testCommunicationProtocol(self, protocol): - return _mscl.WirelessNode_testCommunicationProtocol(self, protocol) - - def verifyConfig(self, config, outIssues): - return _mscl.WirelessNode_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.WirelessNode_applyConfig(self, config) - - def getNumDatalogSessions(self): - return _mscl.WirelessNode_getNumDatalogSessions(self) - - def percentFull(self): - return _mscl.WirelessNode_percentFull(self) - - def getDefaultMode(self): - return _mscl.WirelessNode_getDefaultMode(self) - - def getInactivityTimeout(self): - return _mscl.WirelessNode_getInactivityTimeout(self) - - def getCheckRadioInterval(self): - return _mscl.WirelessNode_getCheckRadioInterval(self) - - def getTransmitPower(self): - return _mscl.WirelessNode_getTransmitPower(self) - - def getSamplingMode(self): - return _mscl.WirelessNode_getSamplingMode(self) - - def getActiveChannels(self): - return _mscl.WirelessNode_getActiveChannels(self) - - def getSampleRate(self): - return _mscl.WirelessNode_getSampleRate(self) - - def getNumSweeps(self): - return _mscl.WirelessNode_getNumSweeps(self) - - def getUnlimitedDuration(self): - return _mscl.WirelessNode_getUnlimitedDuration(self) - - def getDataFormat(self): - return _mscl.WirelessNode_getDataFormat(self) - - def getDataCollectionMethod(self): - return _mscl.WirelessNode_getDataCollectionMethod(self) - - def getTimeBetweenBursts(self): - return _mscl.WirelessNode_getTimeBetweenBursts(self) - - def getLostBeaconTimeout(self): - return _mscl.WirelessNode_getLostBeaconTimeout(self) - - def getInputRange(self, mask): - return _mscl.WirelessNode_getInputRange(self, mask) - - def getHardwareOffset(self, mask): - return _mscl.WirelessNode_getHardwareOffset(self, mask) - - def getAntiAliasingFilter(self, mask): - return _mscl.WirelessNode_getAntiAliasingFilter(self, mask) - - def getCfcFilterConfiguration(self): - return _mscl.WirelessNode_getCfcFilterConfiguration(self) - - def getLowPassFilter(self, mask): - return _mscl.WirelessNode_getLowPassFilter(self, mask) - - def getHighPassFilter(self, mask): - return _mscl.WirelessNode_getHighPassFilter(self, mask) - - def getDebounceFilter(self, mask): - return _mscl.WirelessNode_getDebounceFilter(self, mask) - - def getPullUpResistor(self, mask): - return _mscl.WirelessNode_getPullUpResistor(self, mask) - - def getSensorOutputMode(self): - return _mscl.WirelessNode_getSensorOutputMode(self) - - def getGaugeFactor(self, mask): - return _mscl.WirelessNode_getGaugeFactor(self, mask) - - def getExcitationVoltage(self): - return _mscl.WirelessNode_getExcitationVoltage(self) - - def getAdcVoltageRef(self): - return _mscl.WirelessNode_getAdcVoltageRef(self) - - def getGainAmplifierVoltageRef(self): - return _mscl.WirelessNode_getGainAmplifierVoltageRef(self) - - def getGaugeResistance(self): - return _mscl.WirelessNode_getGaugeResistance(self) - - def getNumActiveGauges(self): - return _mscl.WirelessNode_getNumActiveGauges(self) - - def getLowBatteryThreshold(self): - return _mscl.WirelessNode_getLowBatteryThreshold(self) - - def getLinearEquation(self, mask): - return _mscl.WirelessNode_getLinearEquation(self, mask) - - def getUnit(self, mask): - return _mscl.WirelessNode_getUnit(self, mask) - - def getEquationType(self, mask): - return _mscl.WirelessNode_getEquationType(self, mask) - - def getFactoryCalibrationLinearEq(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationLinearEq(self, mask) - - def getFactoryCalibrationUnit(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationUnit(self, mask) - - def getFactoryCalibrationEqType(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationEqType(self, mask) - - def getFilterSettlingTime(self, mask): - return _mscl.WirelessNode_getFilterSettlingTime(self, mask) - - def getThermocoupleType(self, mask): - return _mscl.WirelessNode_getThermocoupleType(self, mask) - - def getTempSensorOptions(self, mask): - return _mscl.WirelessNode_getTempSensorOptions(self, mask) - - def getFatigueOptions(self): - return _mscl.WirelessNode_getFatigueOptions(self) - - def getHistogramOptions(self): - return _mscl.WirelessNode_getHistogramOptions(self) - - def getActivitySense(self): - return _mscl.WirelessNode_getActivitySense(self) - - def getEventTriggerOptions(self): - return _mscl.WirelessNode_getEventTriggerOptions(self) - - def getDiagnosticInterval(self): - return _mscl.WirelessNode_getDiagnosticInterval(self) - - def getStorageLimitMode(self): - return _mscl.WirelessNode_getStorageLimitMode(self) - - def getSensorDelay(self): - return _mscl.WirelessNode_getSensorDelay(self) - - def getDataMode(self): - return _mscl.WirelessNode_getDataMode(self) - - def getDerivedDataRate(self): - return _mscl.WirelessNode_getDerivedDataRate(self) - - def getDerivedChannelMask(self, category): - return _mscl.WirelessNode_getDerivedChannelMask(self, category) - - def getDerivedVelocityUnit(self): - return _mscl.WirelessNode_getDerivedVelocityUnit(self) - -# Register WirelessNode in _mscl: -_mscl.WirelessNode_swigregister(WirelessNode) - -def WirelessNode_Mock(*args): - return _mscl.WirelessNode_Mock(*args) - -def WirelessNode_deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - -class DatalogDownloader(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.DatalogDownloader_swiginit(self, _mscl.new_DatalogDownloader(*args)) - __swig_destroy__ = _mscl.delete_DatalogDownloader - - def complete(self): - return _mscl.DatalogDownloader_complete(self) - - def percentComplete(self): - return _mscl.DatalogDownloader_percentComplete(self) - - def getNextData(self): - return _mscl.DatalogDownloader_getNextData(self) - - def metaDataUpdated(self): - return _mscl.DatalogDownloader_metaDataUpdated(self) - - def calCoefficientsUpdated(self): - return _mscl.DatalogDownloader_calCoefficientsUpdated(self) - - def startOfSession(self): - return _mscl.DatalogDownloader_startOfSession(self) - - def sessionIndex(self): - return _mscl.DatalogDownloader_sessionIndex(self) - - def sampleRate(self): - return _mscl.DatalogDownloader_sampleRate(self) - - def userString(self): - return _mscl.DatalogDownloader_userString(self) - - def calCoefficients(self): - return _mscl.DatalogDownloader_calCoefficients(self) - -# Register DatalogDownloader in _mscl: -_mscl.DatalogDownloader_swigregister(DatalogDownloader) - -class ArmedDataloggingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.ArmedDataloggingNetwork_swiginit(self, _mscl.new_ArmedDataloggingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.ArmedDataloggingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.ArmedDataloggingNetwork_removeNode(self, nodeAddress) - - def startSampling(self): - return _mscl.ArmedDataloggingNetwork_startSampling(self) - __swig_destroy__ = _mscl.delete_ArmedDataloggingNetwork - -# Register ArmedDataloggingNetwork in _mscl: -_mscl.ArmedDataloggingNetwork_swigregister(ArmedDataloggingNetwork) - -class SyncNetworkInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - status_OK = _mscl.SyncNetworkInfo_status_OK - status_PoorCommunication = _mscl.SyncNetworkInfo_status_PoorCommunication - status_DoesNotFit = _mscl.SyncNetworkInfo_status_DoesNotFit - status_Contention = _mscl.SyncNetworkInfo_status_Contention - - def __init__(self, node): - _mscl.SyncNetworkInfo_swiginit(self, _mscl.new_SyncNetworkInfo(node)) - - def status(self): - return _mscl.SyncNetworkInfo_status(self) - - def startedSampling(self): - return _mscl.SyncNetworkInfo_startedSampling(self) - - def configurationApplied(self): - return _mscl.SyncNetworkInfo_configurationApplied(self) - - def percentBandwidth(self): - return _mscl.SyncNetworkInfo_percentBandwidth(self) - - def tdmaAddress(self): - return _mscl.SyncNetworkInfo_tdmaAddress(self) - - def maxTdmaAddress(self): - return _mscl.SyncNetworkInfo_maxTdmaAddress(self) - - def transmissionPerGroup(self): - return _mscl.SyncNetworkInfo_transmissionPerGroup(self) - - def groupSize(self): - return _mscl.SyncNetworkInfo_groupSize(self) - __swig_destroy__ = _mscl.delete_SyncNetworkInfo - -# Register SyncNetworkInfo in _mscl: -_mscl.SyncNetworkInfo_swigregister(SyncNetworkInfo) - -class SyncSamplingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.SyncSamplingNetwork_swiginit(self, _mscl.new_SyncSamplingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.SyncSamplingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.SyncSamplingNetwork_removeNode(self, nodeAddress) - - def percentBandwidth(self): - return _mscl.SyncSamplingNetwork_percentBandwidth(self) - - def ok(self): - return _mscl.SyncSamplingNetwork_ok(self) - - def refresh(self): - return _mscl.SyncSamplingNetwork_refresh(self) - - def lossless(self, *args): - return _mscl.SyncSamplingNetwork_lossless(self, *args) - - def communicationProtocol(self, *args): - return _mscl.SyncSamplingNetwork_communicationProtocol(self, *args) - - def applyConfiguration(self): - return _mscl.SyncSamplingNetwork_applyConfiguration(self) - - def startSampling(self, *args): - return _mscl.SyncSamplingNetwork_startSampling(self, *args) - - def startSampling_noBeacon(self): - return _mscl.SyncSamplingNetwork_startSampling_noBeacon(self) - - def getNodeNetworkInfo(self, nodeAddress): - return _mscl.SyncSamplingNetwork_getNodeNetworkInfo(self, nodeAddress) - __swig_destroy__ = _mscl.delete_SyncSamplingNetwork - -# Register SyncSamplingNetwork in _mscl: -_mscl.SyncSamplingNetwork_swigregister(SyncSamplingNetwork) - -class NodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_NodeFeatures - - def normalizeNumSweeps(self, sweeps): - return _mscl.NodeFeatures_normalizeNumSweeps(self, sweeps) - - def normalizeTimeBetweenBursts(self, time): - return _mscl.NodeFeatures_normalizeTimeBetweenBursts(self, time) - - def channels(self): - return _mscl.NodeFeatures_channels(self) - - def channelGroups(self): - return _mscl.NodeFeatures_channelGroups(self) - - def channelType(self, channelNumber): - return _mscl.NodeFeatures_channelType(self, channelNumber) - - def supportsChannelSetting(self, setting, mask): - return _mscl.NodeFeatures_supportsChannelSetting(self, setting, mask) - - def supportsInputRangePerExcitationVoltage(self): - return _mscl.NodeFeatures_supportsInputRangePerExcitationVoltage(self) - - def supportsHardwareOffset(self): - return _mscl.NodeFeatures_supportsHardwareOffset(self) - - def supportsAntiAliasingFilter(self): - return _mscl.NodeFeatures_supportsAntiAliasingFilter(self) - - def supportsLowPassFilter(self): - return _mscl.NodeFeatures_supportsLowPassFilter(self) - - def supportsHighPassFilter(self): - return _mscl.NodeFeatures_supportsHighPassFilter(self) - - def supportsGaugeFactor(self): - return _mscl.NodeFeatures_supportsGaugeFactor(self) - - def supportsGaugeResistance(self): - return _mscl.NodeFeatures_supportsGaugeResistance(self) - - def supportsNumActiveGauges(self): - return _mscl.NodeFeatures_supportsNumActiveGauges(self) - - def supportsLostBeaconTimeout(self): - return _mscl.NodeFeatures_supportsLostBeaconTimeout(self) - - def supportsPullUpResistor(self): - return _mscl.NodeFeatures_supportsPullUpResistor(self) - - def supportsFilterSettlingTime(self): - return _mscl.NodeFeatures_supportsFilterSettlingTime(self) - - def supportsThermocoupleType(self): - return _mscl.NodeFeatures_supportsThermocoupleType(self) - - def supportsTempSensorOptions(self): - return _mscl.NodeFeatures_supportsTempSensorOptions(self) - - def supportsDebounceFilter(self): - return _mscl.NodeFeatures_supportsDebounceFilter(self) - - def supportsFatigueConfig(self): - return _mscl.NodeFeatures_supportsFatigueConfig(self) - - def supportsYoungsModConfig(self): - return _mscl.NodeFeatures_supportsYoungsModConfig(self) - - def supportsPoissonsRatioConfig(self): - return _mscl.NodeFeatures_supportsPoissonsRatioConfig(self) - - def supportsFatigueDebugModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueDebugModeConfig(self) - - def supportsFatigueModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueModeConfig(self) - - def supportsHistogramConfig(self): - return _mscl.NodeFeatures_supportsHistogramConfig(self) - - def supportsHistogramRateConfig(self): - return _mscl.NodeFeatures_supportsHistogramRateConfig(self) - - def supportsHistogramEnableConfig(self): - return _mscl.NodeFeatures_supportsHistogramEnableConfig(self) - - def supportsActivitySense(self): - return _mscl.NodeFeatures_supportsActivitySense(self) - - def supportsAutoBalance(self): - return _mscl.NodeFeatures_supportsAutoBalance(self) - - def supportsLegacyShuntCal(self): - return _mscl.NodeFeatures_supportsLegacyShuntCal(self) - - def supportsAutoCal_shm(self): - return _mscl.NodeFeatures_supportsAutoCal_shm(self) - - def supportsAutoCal_shm201(self): - return _mscl.NodeFeatures_supportsAutoCal_shm201(self) - - def supportsAutoShuntCal(self): - return _mscl.NodeFeatures_supportsAutoShuntCal(self) - - def supportsGetFactoryCal(self): - return _mscl.NodeFeatures_supportsGetFactoryCal(self) - - def supportsLimitedDuration(self): - return _mscl.NodeFeatures_supportsLimitedDuration(self) - - def supportsEventTrigger(self): - return _mscl.NodeFeatures_supportsEventTrigger(self) - - def supportsDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsDiagnosticInfo(self) - - def supportsLoggedData(self): - return _mscl.NodeFeatures_supportsLoggedData(self) - - def supportsPoll(self): - return _mscl.NodeFeatures_supportsPoll(self) - - def supportsSensorDelayConfig(self): - return _mscl.NodeFeatures_supportsSensorDelayConfig(self) - - def supportsSensorDelayAlwaysOn(self): - return _mscl.NodeFeatures_supportsSensorDelayAlwaysOn(self) - - def supportsSensorOutputMode(self): - return _mscl.NodeFeatures_supportsSensorOutputMode(self) - - def supportsCfcFilterConfiguration(self): - return _mscl.NodeFeatures_supportsCfcFilterConfiguration(self) - - def supportsChannel(self, channelNumber): - return _mscl.NodeFeatures_supportsChannel(self, channelNumber) - - def supportsSamplingMode(self, samplingMode): - return _mscl.NodeFeatures_supportsSamplingMode(self, samplingMode) - - def supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.NodeFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsDataFormat(self, dataFormat): - return _mscl.NodeFeatures_supportsDataFormat(self, dataFormat) - - def supportsDefaultMode(self, mode): - return _mscl.NodeFeatures_supportsDefaultMode(self, mode) - - def supportsDataCollectionMethod(self, collectionMethod): - return _mscl.NodeFeatures_supportsDataCollectionMethod(self, collectionMethod) - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.NodeFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsDataMode(self, dataMode): - return _mscl.NodeFeatures_supportsDataMode(self, dataMode) - - def supportsTransducerType(self, transducerType): - return _mscl.NodeFeatures_supportsTransducerType(self, transducerType) - - def supportsFatigueMode(self, mode): - return _mscl.NodeFeatures_supportsFatigueMode(self, mode) - - def supportsInputRange(self, *args): - return _mscl.NodeFeatures_supportsInputRange(self, *args) - - def supportsCentisecondEventDuration(self): - return _mscl.NodeFeatures_supportsCentisecondEventDuration(self) - - def supportsGetDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsGetDiagnosticInfo(self) - - def supportsNonSyncLogWithTimestamps(self): - return _mscl.NodeFeatures_supportsNonSyncLogWithTimestamps(self) - - def supportsDerivedCategory(self, category): - return _mscl.NodeFeatures_supportsDerivedCategory(self, category) - - def supportsRawDataMode(self): - return _mscl.NodeFeatures_supportsRawDataMode(self) - - def supportsDerivedDataMode(self): - return _mscl.NodeFeatures_supportsDerivedDataMode(self) - - def supportsDerivedVelocityUnitConfig(self): - return _mscl.NodeFeatures_supportsDerivedVelocityUnitConfig(self) - - def supportsExcitationVoltageConfig(self): - return _mscl.NodeFeatures_supportsExcitationVoltageConfig(self) - - def supportsLowBatteryThresholdConfig(self): - return _mscl.NodeFeatures_supportsLowBatteryThresholdConfig(self) - - def maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode) - - def maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode) - - def maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels): - return _mscl.NodeFeatures_maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels) - - def maxFilterSettlingTime(self, rate): - return _mscl.NodeFeatures_maxFilterSettlingTime(self, rate) - - def minInactivityTimeout(self): - return _mscl.NodeFeatures_minInactivityTimeout(self) - - def minLostBeaconTimeout(self): - return _mscl.NodeFeatures_minLostBeaconTimeout(self) - - def maxLostBeaconTimeout(self): - return _mscl.NodeFeatures_maxLostBeaconTimeout(self) - - def minCheckRadioInterval(self): - return _mscl.NodeFeatures_minCheckRadioInterval(self) - - def maxCheckRadioInterval(self): - return _mscl.NodeFeatures_maxCheckRadioInterval(self) - - def minSweeps(self): - return _mscl.NodeFeatures_minSweeps(self) - - def maxSweeps(self, samplingMode, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweeps(self, samplingMode, dataMode, dataFormat, channels) - - def maxSweepsPerBurst(self, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweepsPerBurst(self, dataMode, dataFormat, channels) - - def minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol): - return _mscl.NodeFeatures_minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol) - - def minSensorDelay(self): - return _mscl.NodeFeatures_minSensorDelay(self) - - def maxSensorDelay(self): - return _mscl.NodeFeatures_maxSensorDelay(self) - - def defaultSensorDelay(self): - return _mscl.NodeFeatures_defaultSensorDelay(self) - - def maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate): - return _mscl.NodeFeatures_maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate) - - def normalizeEventDuration(self, duration): - return _mscl.NodeFeatures_normalizeEventDuration(self, duration) - - def normalizeSensorDelay(self, delay): - return _mscl.NodeFeatures_normalizeSensorDelay(self, delay) - - def numDamageAngles(self): - return _mscl.NodeFeatures_numDamageAngles(self) - - def numSnCurveSegments(self): - return _mscl.NodeFeatures_numSnCurveSegments(self) - - def numEventTriggers(self): - return _mscl.NodeFeatures_numEventTriggers(self) - - def defaultModes(self): - return _mscl.NodeFeatures_defaultModes(self) - - def dataCollectionMethods(self): - return _mscl.NodeFeatures_dataCollectionMethods(self) - - def dataFormats(self): - return _mscl.NodeFeatures_dataFormats(self) - - def samplingModes(self): - return _mscl.NodeFeatures_samplingModes(self) - - def sampleRates(self, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_sampleRates(self, samplingMode, dataCollectionMethod, dataMode) - - def derivedDataRates(self): - return _mscl.NodeFeatures_derivedDataRates(self) - - def transmitPowers(self, *args): - return _mscl.NodeFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.NodeFeatures_commProtocols(self) - - def sensorOutputModes(self): - return _mscl.NodeFeatures_sensorOutputModes(self) - - def cfcFilters(self): - return _mscl.NodeFeatures_cfcFilters(self) - - def histogramTransmitRates(self): - return _mscl.NodeFeatures_histogramTransmitRates(self) - - def fatigueModes(self): - return _mscl.NodeFeatures_fatigueModes(self) - - def antiAliasingFilters(self): - return _mscl.NodeFeatures_antiAliasingFilters(self) - - def lowPassFilters(self): - return _mscl.NodeFeatures_lowPassFilters(self) - - def highPassFilters(self): - return _mscl.NodeFeatures_highPassFilters(self) - - def storageLimitModes(self): - return _mscl.NodeFeatures_storageLimitModes(self) - - def inputRanges(self, *args): - return _mscl.NodeFeatures_inputRanges(self, *args) - - def dataModes(self): - return _mscl.NodeFeatures_dataModes(self) - - def transducerTypes(self): - return _mscl.NodeFeatures_transducerTypes(self) - - def channelsPerDerivedCategory(self): - return _mscl.NodeFeatures_channelsPerDerivedCategory(self) - - def excitationVoltages(self): - return _mscl.NodeFeatures_excitationVoltages(self) - - def adcVoltageInputType(self): - return _mscl.NodeFeatures_adcVoltageInputType(self) - - def maxTransmitPower(self, *args): - return _mscl.NodeFeatures_maxTransmitPower(self, *args) - - def minTransmitPower(self, *args): - return _mscl.NodeFeatures_minTransmitPower(self, *args) - -# Register NodeFeatures in _mscl: -_mscl.NodeFeatures_swigregister(NodeFeatures) - -class BaseStationFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_BaseStationFeatures - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.BaseStationFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.BaseStationFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsButtons(self): - return _mscl.BaseStationFeatures_supportsButtons(self) - - def supportsAnalogPairing(self): - return _mscl.BaseStationFeatures_supportsAnalogPairing(self) - - def supportsBeaconStatus(self): - return _mscl.BaseStationFeatures_supportsBeaconStatus(self) - - def supportsRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsRfSweepMode(self) - - def supportsCustomRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsCustomRfSweepMode(self) - - def buttonCount(self): - return _mscl.BaseStationFeatures_buttonCount(self) - - def analogPortCount(self): - return _mscl.BaseStationFeatures_analogPortCount(self) - - def transmitPowers(self, *args): - return _mscl.BaseStationFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.BaseStationFeatures_commProtocols(self) - - def maxTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_maxTransmitPower(self, region, commProtocol) - - def minTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_minTransmitPower(self, region, commProtocol) - -# Register BaseStationFeatures in _mscl: -_mscl.BaseStationFeatures_swigregister(BaseStationFeatures) - -class EulerAngles(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EulerAngles_swiginit(self, _mscl.new_EulerAngles(*args)) - - def asMipFieldValues(self): - return _mscl.EulerAngles_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.EulerAngles_appendMipFieldValues(self, appendTo) - - def roll(self): - return _mscl.EulerAngles_roll(self) - - def pitch(self): - return _mscl.EulerAngles_pitch(self) - - def yaw(self): - return _mscl.EulerAngles_yaw(self) - - def heading(self): - return _mscl.EulerAngles_heading(self) - __swig_destroy__ = _mscl.delete_EulerAngles - -# Register EulerAngles in _mscl: -_mscl.EulerAngles_swigregister(EulerAngles) - -class Quaternion(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Quaternion_swiginit(self, _mscl.new_Quaternion(*args)) - - def asMipFieldValues(self): - return _mscl.Quaternion_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Quaternion_appendMipFieldValues(self, appendTo) - - def normalize(self): - return _mscl.Quaternion_normalize(self) - - def q0(self): - return _mscl.Quaternion_q0(self) - - def q1(self): - return _mscl.Quaternion_q1(self) - - def q2(self): - return _mscl.Quaternion_q2(self) - - def q3(self): - return _mscl.Quaternion_q3(self) - __swig_destroy__ = _mscl.delete_Quaternion - -# Register Quaternion in _mscl: -_mscl.Quaternion_swigregister(Quaternion) - -class Rotation(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EULER_ANGLES = _mscl.Rotation_EULER_ANGLES - QUATERNION = _mscl.Rotation_QUATERNION - - def __init__(self, *args): - _mscl.Rotation_swiginit(self, _mscl.new_Rotation(*args)) - - @staticmethod - def FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - - @staticmethod - def FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - - def asEulerAngles(self): - return _mscl.Rotation_asEulerAngles(self) - - def asQuaternion(self): - return _mscl.Rotation_asQuaternion(self) - - def asMipFieldValues(self, includeFormat=True): - return _mscl.Rotation_asMipFieldValues(self, includeFormat) - - def appendMipFieldValues(self, appendTo, includeFormat=True): - return _mscl.Rotation_appendMipFieldValues(self, appendTo, includeFormat) - - def format(self): - return _mscl.Rotation_format(self) - __swig_destroy__ = _mscl.delete_Rotation - -# Register Rotation in _mscl: -_mscl.Rotation_swigregister(Rotation) - -def Rotation_FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - -def Rotation_FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - -class Vec3f(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Vec3f_swiginit(self, _mscl.new_Vec3f(*args)) - __swig_destroy__ = _mscl.delete_Vec3f - - def fromMipFieldValues(self, data, offset=0): - return _mscl.Vec3f_fromMipFieldValues(self, data, offset) - - def asMipFieldValues(self): - return _mscl.Vec3f_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Vec3f_appendMipFieldValues(self, appendTo) - - def x(self, *args): - return _mscl.Vec3f_x(self, *args) - - def y(self, *args): - return _mscl.Vec3f_y(self, *args) - - def z(self, *args): - return _mscl.Vec3f_z(self, *args) - -# Register Vec3f in _mscl: -_mscl.Vec3f_swigregister(Vec3f) - -ECEF = _mscl.ECEF -LLH_NED = _mscl.LLH_NED -LOCAL = _mscl.LOCAL -VEHICLE = _mscl.VEHICLE -class GeometricVector(Vec3f): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - - @staticmethod - def VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - - def __init__(self, *args): - _mscl.GeometricVector_swiginit(self, _mscl.new_GeometricVector(*args)) - __swig_destroy__ = _mscl.delete_GeometricVector - - def fromMipFieldValues_includesFrame(self, data, offset=0): - return _mscl.GeometricVector_fromMipFieldValues_includesFrame(self, data, offset) - - def asMipFieldValues_includeFrame(self): - return _mscl.GeometricVector_asMipFieldValues_includeFrame(self) - - def appendMipFieldValues_includeFrame(self, appendTo): - return _mscl.GeometricVector_appendMipFieldValues_includeFrame(self, appendTo) - referenceFrame = property(_mscl.GeometricVector_referenceFrame_get, _mscl.GeometricVector_referenceFrame_set) - - def north(self, *args): - return _mscl.GeometricVector_north(self, *args) - - def east(self, *args): - return _mscl.GeometricVector_east(self, *args) - - def down(self, *args): - return _mscl.GeometricVector_down(self, *args) - -# Register GeometricVector in _mscl: -_mscl.GeometricVector_swigregister(GeometricVector) - -def GeometricVector_VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - -def GeometricVector_VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - -class PositionOffset(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.PositionOffset_swiginit(self, _mscl.new_PositionOffset(*args)) - __swig_destroy__ = _mscl.delete_PositionOffset - -# Register PositionOffset in _mscl: -_mscl.PositionOffset_swigregister(PositionOffset) - -class Velocity(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Velocity_swiginit(self, _mscl.new_Velocity(*args)) - __swig_destroy__ = _mscl.delete_Velocity - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - - @staticmethod - def NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - - @staticmethod - def Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -# Register Velocity in _mscl: -_mscl.Velocity_swigregister(Velocity) - -def Velocity_ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - -def Velocity_NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - -def Velocity_Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -class Position(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - - def __init__(self, *args): - _mscl.Position_swiginit(self, _mscl.new_Position(*args)) - __swig_destroy__ = _mscl.delete_Position - referenceFrame = property(_mscl.Position_referenceFrame_get, _mscl.Position_referenceFrame_set) - - def latitude(self, *args): - return _mscl.Position_latitude(self, *args) - - def longitude(self, *args): - return _mscl.Position_longitude(self, *args) - - def altitude(self, *args): - return _mscl.Position_altitude(self, *args) - - def height(self, *args): - return _mscl.Position_height(self, *args) - - def x(self, *args): - return _mscl.Position_x(self, *args) - - def y(self, *args): - return _mscl.Position_y(self, *args) - - def z(self, *args): - return _mscl.Position_z(self, *args) - -# Register Position in _mscl: -_mscl.Position_swigregister(Position) - -def Position_LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - -def Position_ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - -class GeometricUncertainty(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeometricUncertainty_swiginit(self, _mscl.new_GeometricUncertainty(*args)) - __swig_destroy__ = _mscl.delete_GeometricUncertainty - -# Register GeometricUncertainty in _mscl: -_mscl.GeometricUncertainty_swigregister(GeometricUncertainty) - -class MipModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_3dm_dh3 = _mscl.MipModels_node_3dm_dh3 - node_3dm_gx3_15 = _mscl.MipModels_node_3dm_gx3_15 - node_3dm_gx3_25 = _mscl.MipModels_node_3dm_gx3_25 - node_3dm_gx3_35 = _mscl.MipModels_node_3dm_gx3_35 - node_3dm_gx3_45 = _mscl.MipModels_node_3dm_gx3_45 - node_3dm_rq1_45_lt = _mscl.MipModels_node_3dm_rq1_45_lt - node_3dm_gx4_15 = _mscl.MipModels_node_3dm_gx4_15 - node_3dm_gx4_25 = _mscl.MipModels_node_3dm_gx4_25 - node_3dm_gx4_45 = _mscl.MipModels_node_3dm_gx4_45 - node_3dm_rq1_45_st = _mscl.MipModels_node_3dm_rq1_45_st - node_mv5_ar = _mscl.MipModels_node_mv5_ar - node_3dm_gx5_10 = _mscl.MipModels_node_3dm_gx5_10 - node_3dm_gx5_15 = _mscl.MipModels_node_3dm_gx5_15 - node_3dm_gx5_25 = _mscl.MipModels_node_3dm_gx5_25 - node_3dm_gx5_35 = _mscl.MipModels_node_3dm_gx5_35 - node_3dm_gx5_45 = _mscl.MipModels_node_3dm_gx5_45 - node_3dm_cv5_10 = _mscl.MipModels_node_3dm_cv5_10 - node_3dm_cv5_15 = _mscl.MipModels_node_3dm_cv5_15 - node_3dm_cv5_25 = _mscl.MipModels_node_3dm_cv5_25 - node_3dm_cv5_45 = _mscl.MipModels_node_3dm_cv5_45 - node_3dm_gq4_45 = _mscl.MipModels_node_3dm_gq4_45 - node_3dm_cx5_45 = _mscl.MipModels_node_3dm_cx5_45 - node_3dm_cx5_35 = _mscl.MipModels_node_3dm_cx5_35 - node_3dm_cx5_25 = _mscl.MipModels_node_3dm_cx5_25 - node_3dm_cx5_15 = _mscl.MipModels_node_3dm_cx5_15 - node_3dm_cx5_10 = _mscl.MipModels_node_3dm_cx5_10 - node_3dm_cl5_15 = _mscl.MipModels_node_3dm_cl5_15 - node_3dm_cl5_25 = _mscl.MipModels_node_3dm_cl5_25 - node_3dm_gq7 = _mscl.MipModels_node_3dm_gq7 - node_3dm_rtk = _mscl.MipModels_node_3dm_rtk - node_3dm_cv7_ahrs = _mscl.MipModels_node_3dm_cv7_ahrs - node_3dm_cv7_ar = _mscl.MipModels_node_3dm_cv7_ar - node_3dm_gv7_ahrs = _mscl.MipModels_node_3dm_gv7_ahrs - node_3dm_gv7_ar = _mscl.MipModels_node_3dm_gv7_ar - node_3dm_gv7_ins = _mscl.MipModels_node_3dm_gv7_ins - node_3dm_cv7_ins = _mscl.MipModels_node_3dm_cv7_ins - node_3dm_cv7_gnss_ins = _mscl.MipModels_node_3dm_cv7_gnss_ins - placeholder_matchAll = _mscl.MipModels_placeholder_matchAll - rtk_v1 = _mscl.MipModels_rtk_v1 - rtk_v2 = _mscl.MipModels_rtk_v2 - model_3dm_dh3 = _mscl.MipModels_model_3dm_dh3 - model_3dm_gx3_15 = _mscl.MipModels_model_3dm_gx3_15 - model_3dm_gx3_25 = _mscl.MipModels_model_3dm_gx3_25 - model_3dm_gx3_35 = _mscl.MipModels_model_3dm_gx3_35 - model_3dm_gx3_45 = _mscl.MipModels_model_3dm_gx3_45 - model_3dm_rq1_45_lt = _mscl.MipModels_model_3dm_rq1_45_lt - model_3dm_gx4_15 = _mscl.MipModels_model_3dm_gx4_15 - model_3dm_gx4_25 = _mscl.MipModels_model_3dm_gx4_25 - model_3dm_gx4_45 = _mscl.MipModels_model_3dm_gx4_45 - model_3dm_rq1_45_st = _mscl.MipModels_model_3dm_rq1_45_st - model_mv5_ar = _mscl.MipModels_model_mv5_ar - model_3dm_gx5_10 = _mscl.MipModels_model_3dm_gx5_10 - model_3dm_gx5_15 = _mscl.MipModels_model_3dm_gx5_15 - model_3dm_gx5_25 = _mscl.MipModels_model_3dm_gx5_25 - model_3dm_gx5_35 = _mscl.MipModels_model_3dm_gx5_35 - model_3dm_gx5_45 = _mscl.MipModels_model_3dm_gx5_45 - model_3dm_cv5_10 = _mscl.MipModels_model_3dm_cv5_10 - model_3dm_cv5_15 = _mscl.MipModels_model_3dm_cv5_15 - model_3dm_cv5_25 = _mscl.MipModels_model_3dm_cv5_25 - model_3dm_cv5_45 = _mscl.MipModels_model_3dm_cv5_45 - model_3dm_gq4_45 = _mscl.MipModels_model_3dm_gq4_45 - model_3dm_cx5_45 = _mscl.MipModels_model_3dm_cx5_45 - model_3dm_cx5_35 = _mscl.MipModels_model_3dm_cx5_35 - model_3dm_cx5_25 = _mscl.MipModels_model_3dm_cx5_25 - model_3dm_cx5_15 = _mscl.MipModels_model_3dm_cx5_15 - model_3dm_cx5_10 = _mscl.MipModels_model_3dm_cx5_10 - model_3dm_cl5_15 = _mscl.MipModels_model_3dm_cl5_15 - model_3dm_cl5_25 = _mscl.MipModels_model_3dm_cl5_25 - model_3dm_gq7 = _mscl.MipModels_model_3dm_gq7 - model_3dm_rtk_v1 = _mscl.MipModels_model_3dm_rtk_v1 - model_3dm_rtk = _mscl.MipModels_model_3dm_rtk - model_3dm_cv7_ahrs = _mscl.MipModels_model_3dm_cv7_ahrs - model_3dm_cv7_ar = _mscl.MipModels_model_3dm_cv7_ar - model_3dm_gv7_ahrs = _mscl.MipModels_model_3dm_gv7_ahrs - model_3dm_gv7_ar = _mscl.MipModels_model_3dm_gv7_ar - model_3dm_gv7_ins = _mscl.MipModels_model_3dm_gv7_ins - model_3dm_cv7_ins = _mscl.MipModels_model_3dm_cv7_ins - model_3dm_cv7_gnss_ins = _mscl.MipModels_model_3dm_cv7_gnss_ins - - @staticmethod - def modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - - @staticmethod - def modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - - @staticmethod - def modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - - @staticmethod - def nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - - @staticmethod - def modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - - @staticmethod - def nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - - @staticmethod - def modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - - @staticmethod - def stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - - def __init__(self): - _mscl.MipModels_swiginit(self, _mscl.new_MipModels()) - __swig_destroy__ = _mscl.delete_MipModels - -# Register MipModels in _mscl: -_mscl.MipModels_swigregister(MipModels) - -def MipModels_modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - -def MipModels_modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - -def MipModels_modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - -def MipModels_nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - -def MipModels_modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - -def MipModels_nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - -def MipModels_modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - -def MipModels_stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - -class MipModel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipModel_swiginit(self, _mscl.new_MipModel(*args)) - - def equals(self, compare): - return _mscl.MipModel_equals(self, compare) - - def __str__(self): - return _mscl.MipModel___str__(self) - - def nodeModel(self): - return _mscl.MipModel_nodeModel(self) - - def modifier(self): - return _mscl.MipModel_modifier(self) - - def modelNumber(self): - return _mscl.MipModel_modelNumber(self) - - def baseModel(self): - return _mscl.MipModel_baseModel(self) - __swig_destroy__ = _mscl.delete_MipModel - -# Register MipModel in _mscl: -_mscl.MipModel_swigregister(MipModel) -MipModel.mip_model_none = _mscl.cvar.MipModel_mip_model_none -MipModel.mip_model_3dm_dh3 = _mscl.cvar.MipModel_mip_model_3dm_dh3 -MipModel.mip_model_3dm_gx3_15 = _mscl.cvar.MipModel_mip_model_3dm_gx3_15 -MipModel.mip_model_3dm_gx3_25 = _mscl.cvar.MipModel_mip_model_3dm_gx3_25 -MipModel.mip_model_3dm_gx3_35 = _mscl.cvar.MipModel_mip_model_3dm_gx3_35 -MipModel.mip_model_3dm_gx3_45 = _mscl.cvar.MipModel_mip_model_3dm_gx3_45 -MipModel.mip_model_3dm_rq1_45_lt = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_lt -MipModel.mip_model_3dm_rq1_45_st = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_st -MipModel.mip_model_3dm_gx4_15 = _mscl.cvar.MipModel_mip_model_3dm_gx4_15 -MipModel.mip_model_3dm_gx4_25 = _mscl.cvar.MipModel_mip_model_3dm_gx4_25 -MipModel.mip_model_3dm_gx4_45 = _mscl.cvar.MipModel_mip_model_3dm_gx4_45 -MipModel.mip_model_mv5_ar = _mscl.cvar.MipModel_mip_model_mv5_ar -MipModel.mip_model_3dm_gx5_10 = _mscl.cvar.MipModel_mip_model_3dm_gx5_10 -MipModel.mip_model_3dm_gx5_15 = _mscl.cvar.MipModel_mip_model_3dm_gx5_15 -MipModel.mip_model_3dm_gx5_25 = _mscl.cvar.MipModel_mip_model_3dm_gx5_25 -MipModel.mip_model_3dm_gx5_35 = _mscl.cvar.MipModel_mip_model_3dm_gx5_35 -MipModel.mip_model_3dm_gx5_45 = _mscl.cvar.MipModel_mip_model_3dm_gx5_45 -MipModel.mip_model_3dm_cv5_10 = _mscl.cvar.MipModel_mip_model_3dm_cv5_10 -MipModel.mip_model_3dm_cv5_15 = _mscl.cvar.MipModel_mip_model_3dm_cv5_15 -MipModel.mip_model_3dm_cv5_25 = _mscl.cvar.MipModel_mip_model_3dm_cv5_25 -MipModel.mip_model_3dm_cv5_45 = _mscl.cvar.MipModel_mip_model_3dm_cv5_45 -MipModel.mip_model_3dm_gq4_45 = _mscl.cvar.MipModel_mip_model_3dm_gq4_45 -MipModel.mip_model_3dm_cx5_45 = _mscl.cvar.MipModel_mip_model_3dm_cx5_45 -MipModel.mip_model_3dm_cx5_35 = _mscl.cvar.MipModel_mip_model_3dm_cx5_35 -MipModel.mip_model_3dm_cx5_25 = _mscl.cvar.MipModel_mip_model_3dm_cx5_25 -MipModel.mip_model_3dm_cx5_15 = _mscl.cvar.MipModel_mip_model_3dm_cx5_15 -MipModel.mip_model_3dm_cx5_10 = _mscl.cvar.MipModel_mip_model_3dm_cx5_10 -MipModel.mip_model_3dm_cl5_15 = _mscl.cvar.MipModel_mip_model_3dm_cl5_15 -MipModel.mip_model_3dm_cl5_25 = _mscl.cvar.MipModel_mip_model_3dm_cl5_25 -MipModel.mip_model_3dm_gq7 = _mscl.cvar.MipModel_mip_model_3dm_gq7 -MipModel.mip_model_3dm_rtk_v1 = _mscl.cvar.MipModel_mip_model_3dm_rtk_v1 -MipModel.mip_model_3dm_rtk = _mscl.cvar.MipModel_mip_model_3dm_rtk -MipModel.mip_model_3dm_cv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_cv7_ahrs -MipModel.mip_model_3dm_cv7_ar = _mscl.cvar.MipModel_mip_model_3dm_cv7_ar -MipModel.mip_model_3dm_gv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_gv7_ahrs -MipModel.mip_model_3dm_gv7_ar = _mscl.cvar.MipModel_mip_model_3dm_gv7_ar -MipModel.mip_model_3dm_gv7_ins = _mscl.cvar.MipModel_mip_model_3dm_gv7_ins -MipModel.mip_model_3dm_cv7_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_ins -MipModel.mip_model_3dm_cv7_gnss_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_gnss_ins - -class DisplacementModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_digitalDemod = _mscl.DisplacementModels_node_digitalDemod - - def __init__(self): - _mscl.DisplacementModels_swiginit(self, _mscl.new_DisplacementModels()) - __swig_destroy__ = _mscl.delete_DisplacementModels - -# Register DisplacementModels in _mscl: -_mscl.DisplacementModels_swigregister(DisplacementModels) - -class MipTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CLASS_AHRS_IMU = _mscl.MipTypes_CLASS_AHRS_IMU - CLASS_GNSS = _mscl.MipTypes_CLASS_GNSS - CLASS_ESTFILTER = _mscl.MipTypes_CLASS_ESTFILTER - CLASS_DISPLACEMENT = _mscl.MipTypes_CLASS_DISPLACEMENT - CLASS_GNSS1 = _mscl.MipTypes_CLASS_GNSS1 - CLASS_GNSS2 = _mscl.MipTypes_CLASS_GNSS2 - CLASS_GNSS3 = _mscl.MipTypes_CLASS_GNSS3 - CLASS_RTK = _mscl.MipTypes_CLASS_RTK - CLASS_GNSS4 = _mscl.MipTypes_CLASS_GNSS4 - CLASS_GNSS5 = _mscl.MipTypes_CLASS_GNSS5 - CLASS_SYSTEM = _mscl.MipTypes_CLASS_SYSTEM - USE_NEW_SETTINGS = _mscl.MipTypes_USE_NEW_SETTINGS - READ_BACK_CURRENT_SETTINGS = _mscl.MipTypes_READ_BACK_CURRENT_SETTINGS - SAVE_CURRENT_SETTINGS = _mscl.MipTypes_SAVE_CURRENT_SETTINGS - LOAD_STARTUP_SETTINGS = _mscl.MipTypes_LOAD_STARTUP_SETTINGS - RESET_TO_DEFAULT = _mscl.MipTypes_RESET_TO_DEFAULT - USE_NEW_SETTINGS_NO_ACKNACK = _mscl.MipTypes_USE_NEW_SETTINGS_NO_ACKNACK - DISABLED = _mscl.MipTypes_DISABLED - ENABLED = _mscl.MipTypes_ENABLED - TIME_FRAME_WEEKS = _mscl.MipTypes_TIME_FRAME_WEEKS - TIME_FRAME_SECONDS = _mscl.MipTypes_TIME_FRAME_SECONDS - CMD_PING = _mscl.MipTypes_CMD_PING - CMD_SET_IDLE = _mscl.MipTypes_CMD_SET_IDLE - CMD_GET_DEVICE_INFO = _mscl.MipTypes_CMD_GET_DEVICE_INFO - CMD_GET_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_DESCRIPTOR_SETS - CMD_BUILT_IN_TEST = _mscl.MipTypes_CMD_BUILT_IN_TEST - CMD_RESUME = _mscl.MipTypes_CMD_RESUME - CMD_GET_EXT_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_EXT_DESCRIPTOR_SETS - CMD_COMM_PORT_SPEED = _mscl.MipTypes_CMD_COMM_PORT_SPEED - CMD_GPS_TIME_UPDATE = _mscl.MipTypes_CMD_GPS_TIME_UPDATE - CMD_RESET = _mscl.MipTypes_CMD_RESET - CMD_POLL_SENSOR_DATA = _mscl.MipTypes_CMD_POLL_SENSOR_DATA - CMD_POLL_GNSS_DATA = _mscl.MipTypes_CMD_POLL_GNSS_DATA - CMD_POLL_EF_DATA = _mscl.MipTypes_CMD_POLL_EF_DATA - CMD_GET_SENSOR_RATE_BASE = _mscl.MipTypes_CMD_GET_SENSOR_RATE_BASE - CMD_GET_GNSS_RATE_BASE = _mscl.MipTypes_CMD_GET_GNSS_RATE_BASE - CMD_GET_EF_RATE_BASE = _mscl.MipTypes_CMD_GET_EF_RATE_BASE - CMD_SENSOR_MESSAGE_FORMAT = _mscl.MipTypes_CMD_SENSOR_MESSAGE_FORMAT - CMD_GNSS_MESSAGE_FORMAT = _mscl.MipTypes_CMD_GNSS_MESSAGE_FORMAT - CMD_EF_MESSAGE_FORMAT = _mscl.MipTypes_CMD_EF_MESSAGE_FORMAT - CMD_NMEA_MESSAGE_FORMAT = _mscl.MipTypes_CMD_NMEA_MESSAGE_FORMAT - CMD_POLL = _mscl.MipTypes_CMD_POLL - CMD_GET_BASE_RATE = _mscl.MipTypes_CMD_GET_BASE_RATE - CMD_MESSAGE_FORMAT = _mscl.MipTypes_CMD_MESSAGE_FORMAT - CMD_FACTORY_STREAMING = _mscl.MipTypes_CMD_FACTORY_STREAMING - CMD_CONTINUOUS_DATA_STREAM = _mscl.MipTypes_CMD_CONTINUOUS_DATA_STREAM - CMD_RAW_RTCM_2_3_MESSAGE = _mscl.MipTypes_CMD_RAW_RTCM_2_3_MESSAGE - CMD_GNSS_CONSTELLATION_SETTINGS = _mscl.MipTypes_CMD_GNSS_CONSTELLATION_SETTINGS - CMD_GNSS_SBAS_SETTINGS = _mscl.MipTypes_CMD_GNSS_SBAS_SETTINGS - CMD_GNSS_ASSIST_FIX_CONTROL = _mscl.MipTypes_CMD_GNSS_ASSIST_FIX_CONTROL - CMD_GNSS_ASSIST_TIME_UPDATE = _mscl.MipTypes_CMD_GNSS_ASSIST_TIME_UPDATE - CMD_PPS_SOURCE = _mscl.MipTypes_CMD_PPS_SOURCE - CMD_EVENT_SUPPORT = _mscl.MipTypes_CMD_EVENT_SUPPORT - CMD_EVENT_CONTROL = _mscl.MipTypes_CMD_EVENT_CONTROL - CMD_EVENT_TRIGGER_STATUS = _mscl.MipTypes_CMD_EVENT_TRIGGER_STATUS - CMD_EVENT_ACTION_STATUS = _mscl.MipTypes_CMD_EVENT_ACTION_STATUS - CMD_EVENT_TRIGGER_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_TRIGGER_CONFIGURATION - CMD_EVENT_ACTION_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_ACTION_CONFIGURATION - CMD_SAVE_STARTUP_SETTINGS = _mscl.MipTypes_CMD_SAVE_STARTUP_SETTINGS - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM - CMD_GPS_DYNAMICS_MODE = _mscl.MipTypes_CMD_GPS_DYNAMICS_MODE - CMD_SENSOR_SIG_COND_SETTINGS = _mscl.MipTypes_CMD_SENSOR_SIG_COND_SETTINGS - CMD_SENSOR_TIMESTAMP = _mscl.MipTypes_CMD_SENSOR_TIMESTAMP - CMD_ACCEL_BIAS = _mscl.MipTypes_CMD_ACCEL_BIAS - CMD_GYRO_BIAS = _mscl.MipTypes_CMD_GYRO_BIAS - CMD_CAP_GYRO_BIAS = _mscl.MipTypes_CMD_CAP_GYRO_BIAS - CMD_MAG_HARD_IRON_OFFSET = _mscl.MipTypes_CMD_MAG_HARD_IRON_OFFSET - CMD_MAG_SOFT_IRON_MATRIX = _mscl.MipTypes_CMD_MAG_SOFT_IRON_MATRIX - CMD_CF_REALIGN_UP = _mscl.MipTypes_CMD_CF_REALIGN_UP - CMD_CF_REALIGN_NORTH = _mscl.MipTypes_CMD_CF_REALIGN_NORTH - CMD_CONING_SCULLING = _mscl.MipTypes_CMD_CONING_SCULLING - CMD_UART_BAUD_RATE = _mscl.MipTypes_CMD_UART_BAUD_RATE - CMD_GPIO_CONFIGURATION = _mscl.MipTypes_CMD_GPIO_CONFIGURATION - CMD_GPIO_STATE = _mscl.MipTypes_CMD_GPIO_STATE - CMD_ODOMETER_SETTINGS = _mscl.MipTypes_CMD_ODOMETER_SETTINGS - CMD_LOWPASS_FILTER_SETTINGS = _mscl.MipTypes_CMD_LOWPASS_FILTER_SETTINGS - CMD_COMPLEMENTARY_FILTER_SETTINGS = _mscl.MipTypes_CMD_COMPLEMENTARY_FILTER_SETTINGS - CMD_SENSOR_RANGE = _mscl.MipTypes_CMD_SENSOR_RANGE - CMD_SUPPORTED_SENSOR_RANGES = _mscl.MipTypes_CMD_SUPPORTED_SENSOR_RANGES - CMD_LOWPASS_ANTIALIASING_FILTER = _mscl.MipTypes_CMD_LOWPASS_ANTIALIASING_FILTER - CMD_DATA_STREAM_FORMAT = _mscl.MipTypes_CMD_DATA_STREAM_FORMAT - CMD_POWER_STATES = _mscl.MipTypes_CMD_POWER_STATES - CMD_GPS_STARTUP_SETTINGS = _mscl.MipTypes_CMD_GPS_STARTUP_SETTINGS - CMD_DEVICE_STATUS = _mscl.MipTypes_CMD_DEVICE_STATUS - CMD_EF_RESET_FILTER = _mscl.MipTypes_CMD_EF_RESET_FILTER - CMD_EF_INIT_ATTITUDE = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE - CMD_EF_INIT_HEADING = _mscl.MipTypes_CMD_EF_INIT_HEADING - CMD_EF_INIT_ATTITUDE_FROM_AHRS = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE_FROM_AHRS - CMD_EF_RUN_FILTER = _mscl.MipTypes_CMD_EF_RUN_FILTER - CMD_EF_VEHIC_DYNAMICS_MODE = _mscl.MipTypes_CMD_EF_VEHIC_DYNAMICS_MODE - CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER - CMD_EF_SENS_VEHIC_FRAME_OFFSET = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_OFFSET - CMD_EF_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_ANTENNA_OFFSET - CMD_EF_BIAS_EST_CTRL = _mscl.MipTypes_CMD_EF_BIAS_EST_CTRL - CMD_EF_GNSS_SRC_CTRL = _mscl.MipTypes_CMD_EF_GNSS_SRC_CTRL - CMD_EF_EXTERN_GNSS_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_GNSS_UPDATE - CMD_EF_EXTERN_HEADING_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_HEADING_UPDATE - CMD_EF_HEADING_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_HEADING_UPDATE_CTRL - CMD_EF_AUTO_INIT_CTRL = _mscl.MipTypes_CMD_EF_AUTO_INIT_CTRL - CMD_EF_ACCEL_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_ACCEL_WHT_NSE_STD_DEV - CMD_EF_GYRO_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_GYRO_WHT_NSE_STD_DEV - CMD_EF_ACCEL_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_ACCEL_BIAS_MODEL_PARAMS - CMD_EF_GYRO_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_GYRO_BIAS_MODEL_PARAMS - CMD_EF_ZERO_VEL_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_VEL_UPDATE_CTRL - CMD_EF_EXT_HEADING_UPDATE_TS = _mscl.MipTypes_CMD_EF_EXT_HEADING_UPDATE_TS - CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL - CMD_EF_TARE_ORIENT = _mscl.MipTypes_CMD_EF_TARE_ORIENT - CMD_EF_CMDED_ZERO_VEL_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_VEL_UPDATE - CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE - CMD_EF_SET_REF_POSITION = _mscl.MipTypes_CMD_EF_SET_REF_POSITION - CMD_EF_MAG_CAPTURE_AUTO_CAL = _mscl.MipTypes_CMD_EF_MAG_CAPTURE_AUTO_CAL - CMD_EF_GRAVITY_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_STD_DEV - CMD_EF_PRESS_ALT_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_PRESS_ALT_NOISE_STD_DEV - CMD_EF_GRAVITY_NOISE_MINIMUM = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_MINIMUM - CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE - CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE - CMD_EF_ENABLE_DISABLE_MEASUREMENTS = _mscl.MipTypes_CMD_EF_ENABLE_DISABLE_MEASUREMENTS - CMD_EF_MAG_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_MAG_NOISE_STD_DEV - CMD_EF_DECLINATION_SRC = _mscl.MipTypes_CMD_EF_DECLINATION_SRC - CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE - CMD_EF_ALTITUDE_AID_CTRL = _mscl.MipTypes_CMD_EF_ALTITUDE_AID_CTRL - CMD_EF_PITCH_ROLL_AID_CTRL = _mscl.MipTypes_CMD_EF_PITCH_ROLL_AID_CTRL - CMD_EF_INCLINATION_SRC = _mscl.MipTypes_CMD_EF_INCLINATION_SRC - CMD_EF_FIELD_MAGNITUDE_SRC = _mscl.MipTypes_CMD_EF_FIELD_MAGNITUDE_SRC - CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM - CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT - CMD_EF_AIDING_MEASUREMENT_ENABLE = _mscl.MipTypes_CMD_EF_AIDING_MEASUREMENT_ENABLE - CMD_EF_INITIALIZATION_CONFIG = _mscl.MipTypes_CMD_EF_INITIALIZATION_CONFIG - CMD_EF_ADAPTIVE_FILTER_OPTIONS = _mscl.MipTypes_CMD_EF_ADAPTIVE_FILTER_OPTIONS - CMD_EF_MULTI_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_MULTI_ANTENNA_OFFSET - CMD_EF_RELATIVE_POSITION_REF = _mscl.MipTypes_CMD_EF_RELATIVE_POSITION_REF - CMD_EF_LEVER_ARM_OFFSET_REF = _mscl.MipTypes_CMD_EF_LEVER_ARM_OFFSET_REF - CMD_EF_EXTERN_SPEED_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_SPEED_UPDATE - CMD_EF_SPEED_MEASUREMENT_OFFSET = _mscl.MipTypes_CMD_EF_SPEED_MEASUREMENT_OFFSET - CMD_EF_VERTICAL_GYRO_CONSTRAINT = _mscl.MipTypes_CMD_EF_VERTICAL_GYRO_CONSTRAINT - CMD_EF_WHEELED_VEHICLE_CONSTRAINT = _mscl.MipTypes_CMD_EF_WHEELED_VEHICLE_CONSTRAINT - CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL = _mscl.MipTypes_CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL - CMD_GNSS_RECEIVER_INFO = _mscl.MipTypes_CMD_GNSS_RECEIVER_INFO - CMD_GNSS_SIGNAL_CONFIG = _mscl.MipTypes_CMD_GNSS_SIGNAL_CONFIG - CMD_GNSS_SPARTN_CONFIG = _mscl.MipTypes_CMD_GNSS_SPARTN_CONFIG - CMD_GNSS_RTK_CONFIG = _mscl.MipTypes_CMD_GNSS_RTK_CONFIG - CMD_INTERFACE_CONTROL = _mscl.MipTypes_CMD_INTERFACE_CONTROL - CMD_COMMUNICATION_MODE = _mscl.MipTypes_CMD_COMMUNICATION_MODE - CMD_HARDWARE_CTRL = _mscl.MipTypes_CMD_HARDWARE_CTRL - CMD_GET_ANALOG_DISPLACEMENT_CALS = _mscl.MipTypes_CMD_GET_ANALOG_DISPLACEMENT_CALS - CMD_DISPLACEMENT_OUTPUT_RATE = _mscl.MipTypes_CMD_DISPLACEMENT_OUTPUT_RATE - CMD_DISPLACEMENT_DEVICE_TIME = _mscl.MipTypes_CMD_DISPLACEMENT_DEVICE_TIME - CMD_RTK_DEVICE_STATUS_FLAGS = _mscl.MipTypes_CMD_RTK_DEVICE_STATUS_FLAGS - CMD_RTK_ACTIVATION_CODE = _mscl.MipTypes_CMD_RTK_ACTIVATION_CODE - CMD_AIDING_FRAME_CONFIG = _mscl.MipTypes_CMD_AIDING_FRAME_CONFIG - CMD_AIDING_ECHO_CONTROL = _mscl.MipTypes_CMD_AIDING_ECHO_CONTROL - CMD_AIDING_POS_ECEF = _mscl.MipTypes_CMD_AIDING_POS_ECEF - CMD_AIDING_POS_LLH = _mscl.MipTypes_CMD_AIDING_POS_LLH - CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID - CMD_AIDING_VEL_ECEF = _mscl.MipTypes_CMD_AIDING_VEL_ECEF - CMD_AIDING_VEL_NED = _mscl.MipTypes_CMD_AIDING_VEL_NED - CMD_AIDING_VEL_BODY_FRAME = _mscl.MipTypes_CMD_AIDING_VEL_BODY_FRAME - CMD_AIDING_HEADING_TRUE = _mscl.MipTypes_CMD_AIDING_HEADING_TRUE - CMD_AIDING_MAGNETIC_FIELD = _mscl.MipTypes_CMD_AIDING_MAGNETIC_FIELD - CMD_AIDING_PRESSURE = _mscl.MipTypes_CMD_AIDING_PRESSURE - CH_FIELD_SENSOR_RAW_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_ACCEL_VEC - CH_FIELD_SENSOR_RAW_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_GYRO_VEC - CH_FIELD_SENSOR_RAW_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_MAG_VEC - CH_FIELD_SENSOR_SCALED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_ACCEL_VEC - CH_FIELD_SENSOR_SCALED_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_GYRO_VEC - CH_FIELD_SENSOR_SCALED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_MAG_VEC - CH_FIELD_SENSOR_DELTA_THETA_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_THETA_VEC - CH_FIELD_SENSOR_DELTA_VELOCITY_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_VELOCITY_VEC - CH_FIELD_SENSOR_ORIENTATION_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_MATRIX - CH_FIELD_SENSOR_ORIENTATION_QUATERNION = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_QUATERNION - CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX - CH_FIELD_SENSOR_EULER_ANGLES = _mscl.MipTypes_CH_FIELD_SENSOR_EULER_ANGLES - CH_FIELD_SENSOR_INTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_INTERNAL_TIMESTAMP - CH_FIELD_SENSOR_BEACONED_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_BEACONED_TIMESTAMP - CH_FIELD_SENSOR_STABILIZED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_MAG_VEC - CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC - CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP - CH_FIELD_SENSOR_TEMPERATURE_STATISTICS = _mscl.MipTypes_CH_FIELD_SENSOR_TEMPERATURE_STATISTICS - CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE - CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE - CH_FIELD_SENSOR_OVERRANGE_STATUS = _mscl.MipTypes_CH_FIELD_SENSOR_OVERRANGE_STATUS - CH_FIELD_SENSOR_ODOMETER_DATA = _mscl.MipTypes_CH_FIELD_SENSOR_ODOMETER_DATA - CH_FIELD_SENSOR_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EVENT_SOURCE - CH_FIELD_SENSOR_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_TICKS - CH_FIELD_SENSOR_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TICKS - CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP - CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_LLH_POSITION - CH_FIELD_GNSS_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_POSITION - CH_FIELD_GNSS_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_NED_VELOCITY - CH_FIELD_GNSS_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_VELOCITY - CH_FIELD_GNSS_DOP = _mscl.MipTypes_CH_FIELD_GNSS_DOP - CH_FIELD_GNSS_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_UTC_TIME - CH_FIELD_GNSS_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_GPS_TIME - CH_FIELD_GNSS_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO - CH_FIELD_GNSS_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_FIX_INFO - CH_FIELD_GNSS_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_HARDWARE_STATUS - CH_FIELD_GNSS_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_INFO - CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO_2 - CH_FIELD_GNSS_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_LEAP_SECONDS - CH_FIELD_GNSS_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_INFO - CH_FIELD_GNSS_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_CORRECTION - CH_FIELD_GNSS_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_RF_ERROR_DETECTION - CH_FIELD_GNSS_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_SATELLITE_STATUS - CH_FIELD_GNSS_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_RAW_OBSERVATION - CH_FIELD_GNSS_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_STATION_INFO - CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_EPHEMERIS - CH_FIELD_GNSS_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GLONASS_EPHEMERIS - CH_FIELD_GNSS_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_EPHEMERIS - CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_TICKS - CH_FIELD_GNSS_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TICKS - CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS - CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL - CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE - CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE - CH_FIELD_ESTFILTER_FILTER_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_FILTER_STATUS - CH_FIELD_ESTFILTER_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT - CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR - CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE - CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR - CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_MAG_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS - CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT - CH_FIELD_ESTFILTER_COMPENSATED_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_COMPENSATED_ACCEL - CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL - CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT - CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX - CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS_UNCERT - CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS - CH_FIELD_ESTFILTER_ECEF_VEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL - CH_FIELD_ESTFILTER_NED_RELATIVE_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_NED_RELATIVE_POS - CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS - CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS - CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY = _mscl.MipTypes_CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT - CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT - CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE - CH_FIELD_ESTFILTER_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_TICKS - CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS - CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_DISP_DISPLACEMENT_RAW = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_RAW - CH_FIELD_DISP_DISPLACEMENT_MM = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_MM - CH_FIELD_DISP_DISPLACEMENT_TS = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_TS - CH_FIELD_GNSS_1_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_LLH_POSITION - CH_FIELD_GNSS_1_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_POSITION - CH_FIELD_GNSS_1_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_NED_VELOCITY - CH_FIELD_GNSS_1_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_VELOCITY - CH_FIELD_GNSS_1_DOP = _mscl.MipTypes_CH_FIELD_GNSS_1_DOP - CH_FIELD_GNSS_1_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_UTC_TIME - CH_FIELD_GNSS_1_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_TIME - CH_FIELD_GNSS_1_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO - CH_FIELD_GNSS_1_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_FIX_INFO - CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_1_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_HARDWARE_STATUS - CH_FIELD_GNSS_1_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_INFO - CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_1_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO_2 - CH_FIELD_GNSS_1_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_LEAP_SECONDS - CH_FIELD_GNSS_1_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_INFO - CH_FIELD_GNSS_1_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_CORRECTION - CH_FIELD_GNSS_1_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_RF_ERROR_DETECTION - CH_FIELD_GNSS_1_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_SATELLITE_STATUS - CH_FIELD_GNSS_1_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_1_RAW_OBSERVATION - CH_FIELD_GNSS_1_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_STATION_INFO - CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_1_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_EPHEMERIS - CH_FIELD_GNSS_1_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GLONASS_EPHEMERIS - CH_FIELD_GNSS_1_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_EPHEMERIS - CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_1_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_TICKS - CH_FIELD_GNSS_1_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TICKS - CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_2_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_LLH_POSITION - CH_FIELD_GNSS_2_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_POSITION - CH_FIELD_GNSS_2_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_NED_VELOCITY - CH_FIELD_GNSS_2_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_VELOCITY - CH_FIELD_GNSS_2_DOP = _mscl.MipTypes_CH_FIELD_GNSS_2_DOP - CH_FIELD_GNSS_2_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_UTC_TIME - CH_FIELD_GNSS_2_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_TIME - CH_FIELD_GNSS_2_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO - CH_FIELD_GNSS_2_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_FIX_INFO - CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_2_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_HARDWARE_STATUS - CH_FIELD_GNSS_2_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_INFO - CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_2_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO_2 - CH_FIELD_GNSS_2_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_LEAP_SECONDS - CH_FIELD_GNSS_2_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_INFO - CH_FIELD_GNSS_2_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_CORRECTION - CH_FIELD_GNSS_2_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_RF_ERROR_DETECTION - CH_FIELD_GNSS_2_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_SATELLITE_STATUS - CH_FIELD_GNSS_2_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_2_RAW_OBSERVATION - CH_FIELD_GNSS_2_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_STATION_INFO - CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_2_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_EPHEMERIS - CH_FIELD_GNSS_2_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GLONASS_EPHEMERIS - CH_FIELD_GNSS_2_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_EPHEMERIS - CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_2_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_TICKS - CH_FIELD_GNSS_2_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TICKS - CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_3_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_LLH_POSITION - CH_FIELD_GNSS_3_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_POSITION - CH_FIELD_GNSS_3_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_NED_VELOCITY - CH_FIELD_GNSS_3_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_VELOCITY - CH_FIELD_GNSS_3_DOP = _mscl.MipTypes_CH_FIELD_GNSS_3_DOP - CH_FIELD_GNSS_3_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_UTC_TIME - CH_FIELD_GNSS_3_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_TIME - CH_FIELD_GNSS_3_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO - CH_FIELD_GNSS_3_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_FIX_INFO - CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_3_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_HARDWARE_STATUS - CH_FIELD_GNSS_3_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_INFO - CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_3_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO_2 - CH_FIELD_GNSS_3_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_LEAP_SECONDS - CH_FIELD_GNSS_3_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_INFO - CH_FIELD_GNSS_3_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_CORRECTION - CH_FIELD_GNSS_3_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_RF_ERROR_DETECTION - CH_FIELD_GNSS_3_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_SATELLITE_STATUS - CH_FIELD_GNSS_3_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_3_RAW_OBSERVATION - CH_FIELD_GNSS_3_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_STATION_INFO - CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_3_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_EPHEMERIS - CH_FIELD_GNSS_3_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GLONASS_EPHEMERIS - CH_FIELD_GNSS_3_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_EPHEMERIS - CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_3_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_TICKS - CH_FIELD_GNSS_3_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TICKS - CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_4_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_LLH_POSITION - CH_FIELD_GNSS_4_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_POSITION - CH_FIELD_GNSS_4_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_NED_VELOCITY - CH_FIELD_GNSS_4_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_VELOCITY - CH_FIELD_GNSS_4_DOP = _mscl.MipTypes_CH_FIELD_GNSS_4_DOP - CH_FIELD_GNSS_4_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_UTC_TIME - CH_FIELD_GNSS_4_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_TIME - CH_FIELD_GNSS_4_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO - CH_FIELD_GNSS_4_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_FIX_INFO - CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_4_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_HARDWARE_STATUS - CH_FIELD_GNSS_4_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_INFO - CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_4_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO_2 - CH_FIELD_GNSS_4_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_LEAP_SECONDS - CH_FIELD_GNSS_4_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_INFO - CH_FIELD_GNSS_4_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_CORRECTION - CH_FIELD_GNSS_4_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_RF_ERROR_DETECTION - CH_FIELD_GNSS_4_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_SATELLITE_STATUS - CH_FIELD_GNSS_4_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_4_RAW_OBSERVATION - CH_FIELD_GNSS_4_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_STATION_INFO - CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_4_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_EPHEMERIS - CH_FIELD_GNSS_4_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GLONASS_EPHEMERIS - CH_FIELD_GNSS_4_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_EPHEMERIS - CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_4_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_TICKS - CH_FIELD_GNSS_4_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TICKS - CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_5_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_LLH_POSITION - CH_FIELD_GNSS_5_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_POSITION - CH_FIELD_GNSS_5_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_NED_VELOCITY - CH_FIELD_GNSS_5_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_VELOCITY - CH_FIELD_GNSS_5_DOP = _mscl.MipTypes_CH_FIELD_GNSS_5_DOP - CH_FIELD_GNSS_5_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_UTC_TIME - CH_FIELD_GNSS_5_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_TIME - CH_FIELD_GNSS_5_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO - CH_FIELD_GNSS_5_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_FIX_INFO - CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_5_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_HARDWARE_STATUS - CH_FIELD_GNSS_5_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_INFO - CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_5_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO_2 - CH_FIELD_GNSS_5_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_LEAP_SECONDS - CH_FIELD_GNSS_5_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_INFO - CH_FIELD_GNSS_5_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_CORRECTION - CH_FIELD_GNSS_5_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_RF_ERROR_DETECTION - CH_FIELD_GNSS_5_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_SATELLITE_STATUS - CH_FIELD_GNSS_5_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_5_RAW_OBSERVATION - CH_FIELD_GNSS_5_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_STATION_INFO - CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_5_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_EPHEMERIS - CH_FIELD_GNSS_5_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GLONASS_EPHEMERIS - CH_FIELD_GNSS_5_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_EPHEMERIS - CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_5_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_TICKS - CH_FIELD_GNSS_5_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TICKS - CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_SYSTEM_BUILT_IN_TEST = _mscl.MipTypes_CH_FIELD_SYSTEM_BUILT_IN_TEST - CH_FIELD_SYSTEM_TIME_SYNC_STATUS = _mscl.MipTypes_CH_FIELD_SYSTEM_TIME_SYNC_STATUS - CH_FIELD_SYSTEM_GPIO_STATE = _mscl.MipTypes_CH_FIELD_SYSTEM_GPIO_STATE - CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE - CH_FIELD_SYSTEM_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_TICKS - CH_FIELD_SYSTEM_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TICKS - CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME - MIN_SHARED_FIELD_DESCRIPTOR = _mscl.MipTypes_MIN_SHARED_FIELD_DESCRIPTOR - CH_UNKNOWN = _mscl.MipTypes_CH_UNKNOWN - CH_X = _mscl.MipTypes_CH_X - CH_Y = _mscl.MipTypes_CH_Y - CH_Z = _mscl.MipTypes_CH_Z - CH_MATRIX = _mscl.MipTypes_CH_MATRIX - CH_QUATERNION = _mscl.MipTypes_CH_QUATERNION - CH_ROLL = _mscl.MipTypes_CH_ROLL - CH_PITCH = _mscl.MipTypes_CH_PITCH - CH_YAW = _mscl.MipTypes_CH_YAW - CH_TICK = _mscl.MipTypes_CH_TICK - CH_TIMESTAMP = _mscl.MipTypes_CH_TIMESTAMP - CH_STATUS = _mscl.MipTypes_CH_STATUS - CH_TIME_OF_WEEK = _mscl.MipTypes_CH_TIME_OF_WEEK - CH_WEEK_NUMBER = _mscl.MipTypes_CH_WEEK_NUMBER - CH_LATITUDE = _mscl.MipTypes_CH_LATITUDE - CH_LONGITUDE = _mscl.MipTypes_CH_LONGITUDE - CH_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CH_HEIGHT_ABOVE_ELLIPSOID - CH_HEIGHT_ABOVE_MSL = _mscl.MipTypes_CH_HEIGHT_ABOVE_MSL - CH_HORIZONTAL_ACCURACY = _mscl.MipTypes_CH_HORIZONTAL_ACCURACY - CH_VERTICAL_ACCURACY = _mscl.MipTypes_CH_VERTICAL_ACCURACY - CH_POSITION_ACCURACY = _mscl.MipTypes_CH_POSITION_ACCURACY - CH_NORTH = _mscl.MipTypes_CH_NORTH - CH_EAST = _mscl.MipTypes_CH_EAST - CH_DOWN = _mscl.MipTypes_CH_DOWN - CH_SPEED = _mscl.MipTypes_CH_SPEED - CH_GROUND_SPEED = _mscl.MipTypes_CH_GROUND_SPEED - CH_HEADING = _mscl.MipTypes_CH_HEADING - CH_SPEED_ACCURACY = _mscl.MipTypes_CH_SPEED_ACCURACY - CH_HEADING_ACCURACY = _mscl.MipTypes_CH_HEADING_ACCURACY - CH_VELOCITY_ACCURACY = _mscl.MipTypes_CH_VELOCITY_ACCURACY - CH_GEOMETRIC_DOP = _mscl.MipTypes_CH_GEOMETRIC_DOP - CH_POSITION_DOP = _mscl.MipTypes_CH_POSITION_DOP - CH_HORIZONTAL_DOP = _mscl.MipTypes_CH_HORIZONTAL_DOP - CH_VERTICAL_DOP = _mscl.MipTypes_CH_VERTICAL_DOP - CH_TIME_DOP = _mscl.MipTypes_CH_TIME_DOP - CH_NORTHING_DOP = _mscl.MipTypes_CH_NORTHING_DOP - CH_EASTING_DOP = _mscl.MipTypes_CH_EASTING_DOP - CH_FLAGS = _mscl.MipTypes_CH_FLAGS - CH_BIAS = _mscl.MipTypes_CH_BIAS - CH_DRIFT = _mscl.MipTypes_CH_DRIFT - CH_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_ACCURACY_ESTIMATE - CH_FIX_TYPE = _mscl.MipTypes_CH_FIX_TYPE - CH_SV_COUNT = _mscl.MipTypes_CH_SV_COUNT - CH_CHANNEL = _mscl.MipTypes_CH_CHANNEL - CH_ID = _mscl.MipTypes_CH_ID - CH_CARRIER_TO_NOISE_RATIO = _mscl.MipTypes_CH_CARRIER_TO_NOISE_RATIO - CH_AZIMUTH = _mscl.MipTypes_CH_AZIMUTH - CH_ELEVATION = _mscl.MipTypes_CH_ELEVATION - CH_SENSOR_STATE = _mscl.MipTypes_CH_SENSOR_STATE - CH_ANTENNA_STATE = _mscl.MipTypes_CH_ANTENNA_STATE - CH_ANTENNA_POWER = _mscl.MipTypes_CH_ANTENNA_POWER - CH_FILTER_STATE = _mscl.MipTypes_CH_FILTER_STATE - CH_DYNAMICS_MODE = _mscl.MipTypes_CH_DYNAMICS_MODE - CH_MAGNITUDE = _mscl.MipTypes_CH_MAGNITUDE - CH_HEADING_UNCERTAINTY = _mscl.MipTypes_CH_HEADING_UNCERTAINTY - CH_SOURCE = _mscl.MipTypes_CH_SOURCE - CH_INCLINATION = _mscl.MipTypes_CH_INCLINATION - CH_DECLINATION = _mscl.MipTypes_CH_DECLINATION - CH_PRESSURE = _mscl.MipTypes_CH_PRESSURE - CH_AGE = _mscl.MipTypes_CH_AGE - CH_NUM_CHANNELS = _mscl.MipTypes_CH_NUM_CHANNELS - CH_CORRECTION = _mscl.MipTypes_CH_CORRECTION - CH_RATE_CORRECTION = _mscl.MipTypes_CH_RATE_CORRECTION - CH_GEOMETRIC_ALTITUDE = _mscl.MipTypes_CH_GEOMETRIC_ALTITUDE - CH_GEOPOTENTIAL_ALTITUDE = _mscl.MipTypes_CH_GEOPOTENTIAL_ALTITUDE - CH_TEMPERATURE = _mscl.MipTypes_CH_TEMPERATURE - CH_DENSITY = _mscl.MipTypes_CH_DENSITY - CH_ALTITUDE = _mscl.MipTypes_CH_ALTITUDE - CH_DISPLACEMENT = _mscl.MipTypes_CH_DISPLACEMENT - CH_MAX_TEMP = _mscl.MipTypes_CH_MAX_TEMP - CH_MIN_TEMP = _mscl.MipTypes_CH_MIN_TEMP - CH_MEAN_TEMP = _mscl.MipTypes_CH_MEAN_TEMP - CH_BIAS_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_BIAS_ACCURACY_ESTIMATE - CH_DRIFT_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_DRIFT_ACCURACY_ESTIMATE - CH_SECONDS = _mscl.MipTypes_CH_SECONDS - CH_NUM_PACKETS = _mscl.MipTypes_CH_NUM_PACKETS - CH_GPS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GPS_CORRECTION_LATENCY - CH_GLONASS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GLONASS_CORRECTION_LATENCY - CH_GALILEO_CORRECTION_LATENCY = _mscl.MipTypes_CH_GALILEO_CORRECTION_LATENCY - CH_BEIDOU_CORRECTION_LATENCY = _mscl.MipTypes_CH_BEIDOU_CORRECTION_LATENCY - CH_HEIGHT = _mscl.MipTypes_CH_HEIGHT - CH_HEALTH = _mscl.MipTypes_CH_HEALTH - CH_INDEX = _mscl.MipTypes_CH_INDEX - CH_COUNT = _mscl.MipTypes_CH_COUNT - CH_SIGNAL_STRENGTH = _mscl.MipTypes_CH_SIGNAL_STRENGTH - CH_SIGNAL_QUALITY = _mscl.MipTypes_CH_SIGNAL_QUALITY - CH_RANGE = _mscl.MipTypes_CH_RANGE - CH_RANGE_UNC = _mscl.MipTypes_CH_RANGE_UNC - CH_ALPHA = _mscl.MipTypes_CH_ALPHA - CH_BETA = _mscl.MipTypes_CH_BETA - CH_DISTURBANCE_FLAGS = _mscl.MipTypes_CH_DISTURBANCE_FLAGS - CH_CARRIER_PHASE = _mscl.MipTypes_CH_CARRIER_PHASE - CH_CARRIER_PHASE_UNC = _mscl.MipTypes_CH_CARRIER_PHASE_UNC - CH_DOPPLER = _mscl.MipTypes_CH_DOPPLER - CH_DOPPLER_UNC = _mscl.MipTypes_CH_DOPPLER_UNC - CH_DELTA_TIME = _mscl.MipTypes_CH_DELTA_TIME - CH_DELTA_TICK = _mscl.MipTypes_CH_DELTA_TICK - CH_ERROR = _mscl.MipTypes_CH_ERROR - CH_ERROR_UNC = _mscl.MipTypes_CH_ERROR_UNC - CH_W = _mscl.MipTypes_CH_W - CH_M0 = _mscl.MipTypes_CH_M0 - CH_M1 = _mscl.MipTypes_CH_M1 - CH_M2 = _mscl.MipTypes_CH_M2 - CH_M3 = _mscl.MipTypes_CH_M3 - CH_M4 = _mscl.MipTypes_CH_M4 - CH_M5 = _mscl.MipTypes_CH_M5 - CH_M6 = _mscl.MipTypes_CH_M6 - CH_M7 = _mscl.MipTypes_CH_M7 - CH_M8 = _mscl.MipTypes_CH_M8 - CH_NANOSECONDS = _mscl.MipTypes_CH_NANOSECONDS - CH_VALID_FLAGS = _mscl.MipTypes_CH_VALID_FLAGS - CH_PPS_VALID = _mscl.MipTypes_CH_PPS_VALID - CH_LAST_PPS = _mscl.MipTypes_CH_LAST_PPS - CH_UDREI = _mscl.MipTypes_CH_UDREI - CH_PSEUDORANGE_CORRECTION = _mscl.MipTypes_CH_PSEUDORANGE_CORRECTION - CH_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_IONOSPHERIC_CORRECTION - CH_JAMMING_STATE = _mscl.MipTypes_CH_JAMMING_STATE - CH_SPOOFING_STATE = _mscl.MipTypes_CH_SPOOFING_STATE - CH_SYSTEM_ID = _mscl.MipTypes_CH_SYSTEM_ID - CH_SATELLITE_ID = _mscl.MipTypes_CH_SATELLITE_ID - CH_BIT_SYSTEM_GENERAL = _mscl.MipTypes_CH_BIT_SYSTEM_GENERAL - CH_BIT_SYSTEM_PROCESS = _mscl.MipTypes_CH_BIT_SYSTEM_PROCESS - CH_BIT_IMU_GENERAL = _mscl.MipTypes_CH_BIT_IMU_GENERAL - CH_BIT_IMU_SENSORS = _mscl.MipTypes_CH_BIT_IMU_SENSORS - CH_BIT_IMU_FACTORY_BITS = _mscl.MipTypes_CH_BIT_IMU_FACTORY_BITS - CH_BIT_FILTER_GENERAL = _mscl.MipTypes_CH_BIT_FILTER_GENERAL - CH_BIT_GNSS_GENERAL = _mscl.MipTypes_CH_BIT_GNSS_GENERAL - CH_BIT_GNSS_RECEIVERS = _mscl.MipTypes_CH_BIT_GNSS_RECEIVERS - - @staticmethod - def channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - - @staticmethod - def getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - - @staticmethod - def getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - - @staticmethod - def getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - - @staticmethod - def getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - - @staticmethod - def getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - - @staticmethod - def isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - - @staticmethod - def isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - - @staticmethod - def channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - - @staticmethod - def channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - - @staticmethod - def channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - - def __init__(self): - _mscl.MipTypes_swiginit(self, _mscl.new_MipTypes()) - __swig_destroy__ = _mscl.delete_MipTypes - -# Register MipTypes in _mscl: -_mscl.MipTypes_swigregister(MipTypes) - -def MipTypes_channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - -def MipTypes_getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - -def MipTypes_getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - -def MipTypes_getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - -def MipTypes_getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - -def MipTypes_getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - -def MipTypes_isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - -def MipTypes_isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - -def MipTypes_channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - -def MipTypes_channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - -def MipTypes_channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - -class MipChannelIdentifier(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - GNSS_RECEIVER_ID = _mscl.MipChannelIdentifier_GNSS_RECEIVER_ID - GNSS_BASE_STATION_ID = _mscl.MipChannelIdentifier_GNSS_BASE_STATION_ID - GNSS_CONSTELLATION = _mscl.MipChannelIdentifier_GNSS_CONSTELLATION - GNSS_SATELLITE_ID = _mscl.MipChannelIdentifier_GNSS_SATELLITE_ID - GNSS_SIGNAL_ID = _mscl.MipChannelIdentifier_GNSS_SIGNAL_ID - AIDING_MEASUREMENT_TYPE = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_TYPE - GNSS_RF_BAND = _mscl.MipChannelIdentifier_GNSS_RF_BAND - AIDING_MEASUREMENT_FRAME_ID = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_FRAME_ID - GNSS = _mscl.MipChannelIdentifier_GNSS - DUAL_ANTENNA = _mscl.MipChannelIdentifier_DUAL_ANTENNA - HEADING = _mscl.MipChannelIdentifier_HEADING - PRESSURE = _mscl.MipChannelIdentifier_PRESSURE - MAGNETOMETER = _mscl.MipChannelIdentifier_MAGNETOMETER - SPEED = _mscl.MipChannelIdentifier_SPEED - AIDING_POS_ECEF = _mscl.MipChannelIdentifier_AIDING_POS_ECEF - AIDING_POS_LLH = _mscl.MipChannelIdentifier_AIDING_POS_LLH - AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipChannelIdentifier_AIDING_HEIGHT_ABOVE_ELLIPSOID - AIDING_VEL_ECEF = _mscl.MipChannelIdentifier_AIDING_VEL_ECEF - AIDING_VEL_NED = _mscl.MipChannelIdentifier_AIDING_VEL_NED - AIDING_VEL_BODY_FRAME = _mscl.MipChannelIdentifier_AIDING_VEL_BODY_FRAME - AIDING_HEADING_TRUE = _mscl.MipChannelIdentifier_AIDING_HEADING_TRUE - AIDING_MAGNETIC_FIELD = _mscl.MipChannelIdentifier_AIDING_MAGNETIC_FIELD - AIDING_PRESSURE = _mscl.MipChannelIdentifier_AIDING_PRESSURE - UNKNOWN_CONSTELLATION = _mscl.MipChannelIdentifier_UNKNOWN_CONSTELLATION - GPS = _mscl.MipChannelIdentifier_GPS - GLONASS = _mscl.MipChannelIdentifier_GLONASS - GALILEO = _mscl.MipChannelIdentifier_GALILEO - BEIDOU = _mscl.MipChannelIdentifier_BEIDOU - UNKNOWN_SIGNAL = _mscl.MipChannelIdentifier_UNKNOWN_SIGNAL - GPS_L1CA = _mscl.MipChannelIdentifier_GPS_L1CA - GPS_L1P = _mscl.MipChannelIdentifier_GPS_L1P - GPS_L1Z = _mscl.MipChannelIdentifier_GPS_L1Z - GPS_L2CA = _mscl.MipChannelIdentifier_GPS_L2CA - GPS_L2P = _mscl.MipChannelIdentifier_GPS_L2P - GPS_L2Z = _mscl.MipChannelIdentifier_GPS_L2Z - GPS_L2CL = _mscl.MipChannelIdentifier_GPS_L2CL - GPS_L2CM = _mscl.MipChannelIdentifier_GPS_L2CM - GPS_L2CML = _mscl.MipChannelIdentifier_GPS_L2CML - GPS_L5I = _mscl.MipChannelIdentifier_GPS_L5I - GPS_L5Q = _mscl.MipChannelIdentifier_GPS_L5Q - GPS_L5IQ = _mscl.MipChannelIdentifier_GPS_L5IQ - GPS_L1CD = _mscl.MipChannelIdentifier_GPS_L1CD - GPS_L1CP = _mscl.MipChannelIdentifier_GPS_L1CP - GPS_L1CDP = _mscl.MipChannelIdentifier_GPS_L1CDP - GLONASS_G1CA = _mscl.MipChannelIdentifier_GLONASS_G1CA - GLONASS_G1P = _mscl.MipChannelIdentifier_GLONASS_G1P - GLONASS_G2C = _mscl.MipChannelIdentifier_GLONASS_G2C - GLONASS_G2P = _mscl.MipChannelIdentifier_GLONASS_G2P - GALILEO_E1C = _mscl.MipChannelIdentifier_GALILEO_E1C - GALILEO_E1A = _mscl.MipChannelIdentifier_GALILEO_E1A - GALILEO_E1B = _mscl.MipChannelIdentifier_GALILEO_E1B - GALILEO_E1BC = _mscl.MipChannelIdentifier_GALILEO_E1BC - GALILEO_E1ABC = _mscl.MipChannelIdentifier_GALILEO_E1ABC - GALILEO_E6C = _mscl.MipChannelIdentifier_GALILEO_E6C - GALILEO_E6A = _mscl.MipChannelIdentifier_GALILEO_E6A - GALILEO_E6B = _mscl.MipChannelIdentifier_GALILEO_E6B - GALILEO_E6BC = _mscl.MipChannelIdentifier_GALILEO_E6BC - GALILEO_E6ABC = _mscl.MipChannelIdentifier_GALILEO_E6ABC - GALILEO_E5BI = _mscl.MipChannelIdentifier_GALILEO_E5BI - GALILEO_E5BQ = _mscl.MipChannelIdentifier_GALILEO_E5BQ - GALILEO_E5BIQ = _mscl.MipChannelIdentifier_GALILEO_E5BIQ - GALILEO_E5ABI = _mscl.MipChannelIdentifier_GALILEO_E5ABI - GALILEO_E5ABQ = _mscl.MipChannelIdentifier_GALILEO_E5ABQ - GALILEO_E5ABIQ = _mscl.MipChannelIdentifier_GALILEO_E5ABIQ - GALILEO_E5AI = _mscl.MipChannelIdentifier_GALILEO_E5AI - GALILEO_E5AQ = _mscl.MipChannelIdentifier_GALILEO_E5AQ - GALILEO_E5AIQ = _mscl.MipChannelIdentifier_GALILEO_E5AIQ - SBAS_L1CA = _mscl.MipChannelIdentifier_SBAS_L1CA - SBAS_L5I = _mscl.MipChannelIdentifier_SBAS_L5I - SBAS_L5Q = _mscl.MipChannelIdentifier_SBAS_L5Q - SBAS_L5IQ = _mscl.MipChannelIdentifier_SBAS_L5IQ - QZSS_L1CA = _mscl.MipChannelIdentifier_QZSS_L1CA - QZSS_LEXS = _mscl.MipChannelIdentifier_QZSS_LEXS - QZSS_LEXL = _mscl.MipChannelIdentifier_QZSS_LEXL - QZSS_LEXSL = _mscl.MipChannelIdentifier_QZSS_LEXSL - QZSS_L2CM = _mscl.MipChannelIdentifier_QZSS_L2CM - QZSS_L2CL = _mscl.MipChannelIdentifier_QZSS_L2CL - QZSS_L2CML = _mscl.MipChannelIdentifier_QZSS_L2CML - QZSS_L5I = _mscl.MipChannelIdentifier_QZSS_L5I - QZSS_L5Q = _mscl.MipChannelIdentifier_QZSS_L5Q - QZSS_L5IQ = _mscl.MipChannelIdentifier_QZSS_L5IQ - QZSS_L1CD = _mscl.MipChannelIdentifier_QZSS_L1CD - QZSS_L1CP = _mscl.MipChannelIdentifier_QZSS_L1CP - QZSS_L1CDP = _mscl.MipChannelIdentifier_QZSS_L1CDP - BEIDOU_B1I = _mscl.MipChannelIdentifier_BEIDOU_B1I - BEIDOU_B1Q = _mscl.MipChannelIdentifier_BEIDOU_B1Q - BEIDOU_B1IQ = _mscl.MipChannelIdentifier_BEIDOU_B1IQ - BEIDOU_B3I = _mscl.MipChannelIdentifier_BEIDOU_B3I - BEIDOU_B3Q = _mscl.MipChannelIdentifier_BEIDOU_B3Q - BEIDOU_B3IQ = _mscl.MipChannelIdentifier_BEIDOU_B3IQ - BEIDOU_B2I = _mscl.MipChannelIdentifier_BEIDOU_B2I - BEIDOU_B2Q = _mscl.MipChannelIdentifier_BEIDOU_B2Q - BEIDOU_B2IQ = _mscl.MipChannelIdentifier_BEIDOU_B2IQ - UNKNOWN_RF_BAND = _mscl.MipChannelIdentifier_UNKNOWN_RF_BAND - RF_BAND_L1 = _mscl.MipChannelIdentifier_RF_BAND_L1 - RF_BAND_L2 = _mscl.MipChannelIdentifier_RF_BAND_L2 - RF_BAND_L5 = _mscl.MipChannelIdentifier_RF_BAND_L5 - - def __init__(self, *args): - _mscl.MipChannelIdentifier_swiginit(self, _mscl.new_MipChannelIdentifier(*args)) - __swig_destroy__ = _mscl.delete_MipChannelIdentifier - - def identifierType(self): - return _mscl.MipChannelIdentifier_identifierType(self) - - def id(self): - return _mscl.MipChannelIdentifier_id(self) - - def hasSpecifier(self): - return _mscl.MipChannelIdentifier_hasSpecifier(self) - - def specifier(self): - return _mscl.MipChannelIdentifier_specifier(self) - - def name(self, standardizedFormat=True): - return _mscl.MipChannelIdentifier_name(self, standardizedFormat) - -# Register MipChannelIdentifier in _mscl: -_mscl.MipChannelIdentifier_swigregister(MipChannelIdentifier) - -class MipCommandBytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - id = property(_mscl.MipCommandBytes_id_get, _mscl.MipCommandBytes_id_set) - commands = property(_mscl.MipCommandBytes_commands_get, _mscl.MipCommandBytes_commands_set) - buildCmdFailed = property(_mscl.MipCommandBytes_buildCmdFailed_get, _mscl.MipCommandBytes_buildCmdFailed_set) - sendCmdFailed = property(_mscl.MipCommandBytes_sendCmdFailed_get, _mscl.MipCommandBytes_sendCmdFailed_set) - - def __init__(self, *args): - _mscl.MipCommandBytes_swiginit(self, _mscl.new_MipCommandBytes(*args)) - - def add(self, cmd): - return _mscl.MipCommandBytes_add(self, cmd) - - def valid(self): - return _mscl.MipCommandBytes_valid(self) - __swig_destroy__ = _mscl.delete_MipCommandBytes - -# Register MipCommandBytes in _mscl: -_mscl.MipCommandBytes_swigregister(MipCommandBytes) - -class AidingMeasurementInput(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - ACK_NACK = _mscl.AidingMeasurementInput_ACK_NACK - ECHO_INPUT = _mscl.AidingMeasurementInput_ECHO_INPUT - - def toMipFieldValues(self): - return _mscl.AidingMeasurementInput_toMipFieldValues(self) - - def timestamp(self, *args): - return _mscl.AidingMeasurementInput_timestamp(self, *args) - - def timebase(self): - return _mscl.AidingMeasurementInput_timebase(self) - - def frameId(self, *args): - return _mscl.AidingMeasurementInput_frameId(self, *args) - - def validFlags(self, *args): - return _mscl.AidingMeasurementInput_validFlags(self, *args) - -# Register AidingMeasurementInput in _mscl: -_mscl.AidingMeasurementInput_swigregister(AidingMeasurementInput) - -class AidingMeasurementPosition(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementPosition_X - LATITUDE = _mscl.AidingMeasurementPosition_LATITUDE - Y = _mscl.AidingMeasurementPosition_Y - LONGITUDE = _mscl.AidingMeasurementPosition_LONGITUDE - Z = _mscl.AidingMeasurementPosition_Z - HEIGHT = _mscl.AidingMeasurementPosition_HEIGHT - ALTITUDE = _mscl.AidingMeasurementPosition_ALTITUDE - - def __init__(self, *args): - _mscl.AidingMeasurementPosition_swiginit(self, _mscl.new_AidingMeasurementPosition(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPosition - - def position(self, *args): - return _mscl.AidingMeasurementPosition_position(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPosition_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementPosition_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPosition_valid(self, *args) - -# Register AidingMeasurementPosition in _mscl: -_mscl.AidingMeasurementPosition_swigregister(AidingMeasurementPosition) - -class AidingMeasurementHeight(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeight_swiginit(self, _mscl.new_AidingMeasurementHeight(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeight - - def height(self, *args): - return _mscl.AidingMeasurementHeight_height(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeight_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeight_valid(self, *args) - -# Register AidingMeasurementHeight in _mscl: -_mscl.AidingMeasurementHeight_swigregister(AidingMeasurementHeight) - -class AidingMeasurementVelocity(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementVelocity_X - NORTH = _mscl.AidingMeasurementVelocity_NORTH - Y = _mscl.AidingMeasurementVelocity_Y - EAST = _mscl.AidingMeasurementVelocity_EAST - Z = _mscl.AidingMeasurementVelocity_Z - DOWN = _mscl.AidingMeasurementVelocity_DOWN - - def __init__(self, *args): - _mscl.AidingMeasurementVelocity_swiginit(self, _mscl.new_AidingMeasurementVelocity(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementVelocity - - def velocity(self, *args): - return _mscl.AidingMeasurementVelocity_velocity(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementVelocity_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementVelocity_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementVelocity_valid(self, *args) - -# Register AidingMeasurementVelocity in _mscl: -_mscl.AidingMeasurementVelocity_swigregister(AidingMeasurementVelocity) - -class AidingMeasurementHeading(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeading_swiginit(self, _mscl.new_AidingMeasurementHeading(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeading - - def heading(self, *args): - return _mscl.AidingMeasurementHeading_heading(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeading_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeading_valid(self, *args) - -# Register AidingMeasurementHeading in _mscl: -_mscl.AidingMeasurementHeading_swigregister(AidingMeasurementHeading) - -class AidingMeasurementMagneticField(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementMagneticField_X - Y = _mscl.AidingMeasurementMagneticField_Y - Z = _mscl.AidingMeasurementMagneticField_Z - - def __init__(self, *args): - _mscl.AidingMeasurementMagneticField_swiginit(self, _mscl.new_AidingMeasurementMagneticField(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementMagneticField - - def magneticField(self, *args): - return _mscl.AidingMeasurementMagneticField_magneticField(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementMagneticField_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementMagneticField_valid(self, *args) - -# Register AidingMeasurementMagneticField in _mscl: -_mscl.AidingMeasurementMagneticField_swigregister(AidingMeasurementMagneticField) - -class AidingMeasurementPressure(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementPressure_swiginit(self, _mscl.new_AidingMeasurementPressure(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPressure - - def pressure(self, *args): - return _mscl.AidingMeasurementPressure_pressure(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPressure_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPressure_valid(self, *args) - -# Register AidingMeasurementPressure in _mscl: -_mscl.AidingMeasurementPressure_swigregister(AidingMeasurementPressure) - -class GnssReceiverInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GnssReceiverInfo_swiginit(self, _mscl.new_GnssReceiverInfo(*args)) - id = property(_mscl.GnssReceiverInfo_id_get, _mscl.GnssReceiverInfo_id_set) - targetDataClass = property(_mscl.GnssReceiverInfo_targetDataClass_get, _mscl.GnssReceiverInfo_targetDataClass_set) - description = property(_mscl.GnssReceiverInfo_description_get, _mscl.GnssReceiverInfo_description_set) - module = property(_mscl.GnssReceiverInfo_module_get, _mscl.GnssReceiverInfo_module_set) - fwId = property(_mscl.GnssReceiverInfo_fwId_get, _mscl.GnssReceiverInfo_fwId_set) - fwVersion = property(_mscl.GnssReceiverInfo_fwVersion_get, _mscl.GnssReceiverInfo_fwVersion_set) - __swig_destroy__ = _mscl.delete_GnssReceiverInfo - -# Register GnssReceiverInfo in _mscl: -_mscl.GnssReceiverInfo_swigregister(GnssReceiverInfo) -GnssReceiverInfo.INFO_NOT_FOUND = _mscl.cvar.GnssReceiverInfo_INFO_NOT_FOUND - -class DeviceCommPort(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SPECIAL = _mscl.DeviceCommPort_SPECIAL - UART = _mscl.DeviceCommPort_UART - USB = _mscl.DeviceCommPort_USB - NONE = _mscl.DeviceCommPort_NONE - MIP_COMMANDS = _mscl.DeviceCommPort_MIP_COMMANDS - MIP_DATA = _mscl.DeviceCommPort_MIP_DATA - NMEA = _mscl.DeviceCommPort_NMEA - RTCM = _mscl.DeviceCommPort_RTCM - SPARTN = _mscl.DeviceCommPort_SPARTN - ALL = _mscl.DeviceCommPort_ALL - - def __init__(self, *args): - _mscl.DeviceCommPort_swiginit(self, _mscl.new_DeviceCommPort(*args)) - - def interfaceId(self): - return _mscl.DeviceCommPort_interfaceId(self) - type = property(_mscl.DeviceCommPort_type_get, _mscl.DeviceCommPort_type_set) - id = property(_mscl.DeviceCommPort_id_get, _mscl.DeviceCommPort_id_set) - inputProtocols = property(_mscl.DeviceCommPort_inputProtocols_get, _mscl.DeviceCommPort_inputProtocols_set) - outputProtocols = property(_mscl.DeviceCommPort_outputProtocols_get, _mscl.DeviceCommPort_outputProtocols_set) - __swig_destroy__ = _mscl.delete_DeviceCommPort - -# Register DeviceCommPort in _mscl: -_mscl.DeviceCommPort_swigregister(DeviceCommPort) - -class EventTypeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTypeInfo_swiginit(self, _mscl.new_EventTypeInfo(*args)) - type = property(_mscl.EventTypeInfo_type_get, _mscl.EventTypeInfo_type_set) - maxInstances = property(_mscl.EventTypeInfo_maxInstances_get, _mscl.EventTypeInfo_maxInstances_set) - __swig_destroy__ = _mscl.delete_EventTypeInfo - -# Register EventTypeInfo in _mscl: -_mscl.EventTypeInfo_swigregister(EventTypeInfo) - -class EventSupportInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - TRIGGERS = _mscl.EventSupportInfo_TRIGGERS - ACTIONS = _mscl.EventSupportInfo_ACTIONS - query = property(_mscl.EventSupportInfo_query_get, _mscl.EventSupportInfo_query_set) - maxInstances = property(_mscl.EventSupportInfo_maxInstances_get, _mscl.EventSupportInfo_maxInstances_set) - entries = property(_mscl.EventSupportInfo_entries_get, _mscl.EventSupportInfo_entries_set) - - def __init__(self): - _mscl.EventSupportInfo_swiginit(self, _mscl.new_EventSupportInfo()) - __swig_destroy__ = _mscl.delete_EventSupportInfo - -# Register EventSupportInfo in _mscl: -_mscl.EventSupportInfo_swigregister(EventSupportInfo) - -class SensorRange(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ALL = _mscl.SensorRange_ALL - ACCEL_G = _mscl.SensorRange_ACCEL_G - GYRO_DPS = _mscl.SensorRange_GYRO_DPS - MAG_GAUSS = _mscl.SensorRange_MAG_GAUSS - PRESSURE_HPA = _mscl.SensorRange_PRESSURE_HPA - - def __init__(self): - _mscl.SensorRange_swiginit(self, _mscl.new_SensorRange()) - - def type(self): - return _mscl.SensorRange_type(self) - - def range(self): - return _mscl.SensorRange_range(self) - - def id(self): - return _mscl.SensorRange_id(self) - __swig_destroy__ = _mscl.delete_SensorRange - -# Register SensorRange in _mscl: -_mscl.SensorRange_swigregister(SensorRange) - -class SupportedSensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.SupportedSensorRanges_swiginit(self, _mscl.new_SupportedSensorRanges()) - - def options(self): - return _mscl.SupportedSensorRanges_options(self) - - def lookupRecommended(self, type, range): - return _mscl.SupportedSensorRanges_lookupRecommended(self, type, range) - __swig_destroy__ = _mscl.delete_SupportedSensorRanges - -# Register SupportedSensorRanges in _mscl: -_mscl.SupportedSensorRanges_swigregister(SupportedSensorRanges) - -class InertialTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - PORTABLE_VEHICLE = _mscl.InertialTypes_PORTABLE_VEHICLE - AUTOMOTIVE_VEHICLE = _mscl.InertialTypes_AUTOMOTIVE_VEHICLE - AIRBORNE_VEHICLE = _mscl.InertialTypes_AIRBORNE_VEHICLE - AIRBORNE_HIGH_G_VEHICLE = _mscl.InertialTypes_AIRBORNE_HIGH_G_VEHICLE - GPS_PORTABLE = _mscl.InertialTypes_GPS_PORTABLE - GPS_STATIONARY = _mscl.InertialTypes_GPS_STATIONARY - GPS_PEDESTRIAN = _mscl.InertialTypes_GPS_PEDESTRIAN - GPS_AUTOMOTIVE = _mscl.InertialTypes_GPS_AUTOMOTIVE - GPS_SEA = _mscl.InertialTypes_GPS_SEA - GPS_AIRBORNE_1G = _mscl.InertialTypes_GPS_AIRBORNE_1G - GPS_AIRBORNE_2G = _mscl.InertialTypes_GPS_AIRBORNE_2G - GPS_AIRBORNE_4G = _mscl.InertialTypes_GPS_AIRBORNE_4G - RESET_ALL_AXIS = _mscl.InertialTypes_RESET_ALL_AXIS - TARE_ROLL_AXIS = _mscl.InertialTypes_TARE_ROLL_AXIS - TARE_PITCH_AXIS = _mscl.InertialTypes_TARE_PITCH_AXIS - TARE_YAW_AXIS = _mscl.InertialTypes_TARE_YAW_AXIS - INTERNAL_GNSS_ALL = _mscl.InertialTypes_INTERNAL_GNSS_ALL - EXTERNAL_GNSS = _mscl.InertialTypes_EXTERNAL_GNSS - INTERNAL_GNSS1 = _mscl.InertialTypes_INTERNAL_GNSS1 - INTERNAL_GNSS2 = _mscl.InertialTypes_INTERNAL_GNSS2 - FIX_SBAS_CORRECTIONS = _mscl.InertialTypes_FIX_SBAS_CORRECTIONS - FIX_DGNSS_CORRECTIONS = _mscl.InertialTypes_FIX_DGNSS_CORRECTIONS - FIXTYPE_3D = _mscl.InertialTypes_FIXTYPE_3D - FIXTYPE_2D = _mscl.InertialTypes_FIXTYPE_2D - FIXTYPE_TIMEONLY = _mscl.InertialTypes_FIXTYPE_TIMEONLY - FIXTYPE_NONE = _mscl.InertialTypes_FIXTYPE_NONE - FIXTYPE_INVALID = _mscl.InertialTypes_FIXTYPE_INVALID - FIXTYPE_RTK_FLOAT = _mscl.InertialTypes_FIXTYPE_RTK_FLOAT - FIXTYPE_RTK_FIXED = _mscl.InertialTypes_FIXTYPE_RTK_FIXED - FIXTYPE_DUAL_ANTENNA_NONE = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_NONE - FIXTYPE_DUAL_ANTENNA_FLOAT = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FLOAT - FIXTYPE_DUAL_ANTENNA_FIXED = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FIXED - DATA_VALID_REC_1 = _mscl.InertialTypes_DATA_VALID_REC_1 - DATA_VALID_REC_2 = _mscl.InertialTypes_DATA_VALID_REC_2 - ANTENNA_OFFSETS_VALID = _mscl.InertialTypes_ANTENNA_OFFSETS_VALID - SVFLAG_NAVIGATION = _mscl.InertialTypes_SVFLAG_NAVIGATION - SVFLAG_HEALTHY = _mscl.InertialTypes_SVFLAG_HEALTHY - DEVICE_AHRS = _mscl.InertialTypes_DEVICE_AHRS - DEVICE_GPS = _mscl.InertialTypes_DEVICE_GPS - ON_FULL_PERFORMANCE = _mscl.InertialTypes_ON_FULL_PERFORMANCE - ON_LOW_POWER = _mscl.InertialTypes_ON_LOW_POWER - SLEEP = _mscl.InertialTypes_SLEEP - OFF = _mscl.InertialTypes_OFF - STANDARD_MIP = _mscl.InertialTypes_STANDARD_MIP - WRAPPED_RAW = _mscl.InertialTypes_WRAPPED_RAW - SENSORSTATE_OFF = _mscl.InertialTypes_SENSORSTATE_OFF - SENSORSTATE_ON = _mscl.InertialTypes_SENSORSTATE_ON - SENSORSTATE_UNKNOWN = _mscl.InertialTypes_SENSORSTATE_UNKNOWN - ANTENNASTATE_INIT = _mscl.InertialTypes_ANTENNASTATE_INIT - ANTENNASTATE_SHORT = _mscl.InertialTypes_ANTENNASTATE_SHORT - ANTENNASTATE_OPEN = _mscl.InertialTypes_ANTENNASTATE_OPEN - ANTENNASTATE_GOOD = _mscl.InertialTypes_ANTENNASTATE_GOOD - ANTENNASTATE_UNKNOWN = _mscl.InertialTypes_ANTENNASTATE_UNKNOWN - ANTENNAPOWER_OFF = _mscl.InertialTypes_ANTENNAPOWER_OFF - ANTENNAPOWER_ON = _mscl.InertialTypes_ANTENNAPOWER_ON - ANTENNAPOWER_UNKNOWN = _mscl.InertialTypes_ANTENNAPOWER_UNKNOWN - FILTERSTATE_STARTUP = _mscl.InertialTypes_FILTERSTATE_STARTUP - FILTERSTATE_INIT = _mscl.InertialTypes_FILTERSTATE_INIT - FILTERSTATE_RUNNING_SLN_VALID = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_VALID - FILTERSTATE_RUNNING_SLN_ERROR = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_ERROR - FILTERSTATE_VERT_GYRO = _mscl.InertialTypes_FILTERSTATE_VERT_GYRO - FILTERSTATE_AHRS = _mscl.InertialTypes_FILTERSTATE_AHRS - FILTERSTATE_FULL_NAV = _mscl.InertialTypes_FILTERSTATE_FULL_NAV - FILTERSTATUS_IMU_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_IMU_UNAVAILABLE - FILTERSTATUS_GPS_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_GPS_UNAVAILABLE - FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC = _mscl.InertialTypes_FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC - FILTERSTATUS_POS_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_POS_COVARIANCE_HIGH_WARN - FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN - FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN - FILTERSTATUS_NAN_IN_SOLUTION = _mscl.InertialTypes_FILTERSTATUS_NAN_IN_SOLUTION - FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN - FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN - FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN - FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN - FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_CONDITION = _mscl.InertialTypes_FILTERSTATUS_CONDITION - FILTERSTATUS_ROLL_PITCH_WARNING = _mscl.InertialTypes_FILTERSTATUS_ROLL_PITCH_WARNING - FILTERSTATUS_HEADING_WARNING = _mscl.InertialTypes_FILTERSTATUS_HEADING_WARNING - FILTERSTATUS_POSITION_WARNING = _mscl.InertialTypes_FILTERSTATUS_POSITION_WARNING - FILTERSTATUS_VELOCITY_WARNING = _mscl.InertialTypes_FILTERSTATUS_VELOCITY_WARNING - FILTERSTATUS_IMU_BIAS_WARNING = _mscl.InertialTypes_FILTERSTATUS_IMU_BIAS_WARNING - FILTERSTATUS_GNSS_CLK_WARNING = _mscl.InertialTypes_FILTERSTATUS_GNSS_CLK_WARNING - FILTERSTATUS_ANT_LEVER_ARM_WARNING = _mscl.InertialTypes_FILTERSTATUS_ANT_LEVER_ARM_WARNING - FILTERSTATUS_MOUNTING_TRANSFORM_WARNING = _mscl.InertialTypes_FILTERSTATUS_MOUNTING_TRANSFORM_WARNING - FILTERSTATUS_ATT_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_ATT_NOT_INIT - FILTERSTATUS_POS_VEL_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_POS_VEL_NOT_INIT - STABLE = _mscl.InertialTypes_STABLE - CONVERGING = _mscl.InertialTypes_CONVERGING - UNSTABLE = _mscl.InertialTypes_UNSTABLE - DGNSSBASE_UDRE_SCALE_FACTOR_1_00 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_1_00 - DGNSSBASE_UDRE_SCALE_FACTOR_0_75 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_75 - DGNSSBASE_UDRE_SCALE_FACTOR_0_50 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_50 - DGNSSBASE_UDRE_SCALE_FACTOR_0_30 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_30 - DGNSSBASE_UDRE_SCALE_FACTOR_0_20 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_20 - DGNSSBASE_UDRE_SCALE_FACTOR_0_10 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_10 - DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED - DGNSSBASE_REFERENCE_STATION_NOT_WORKING = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_NOT_WORKING - HEADINGSOURCE_NONE = _mscl.InertialTypes_HEADINGSOURCE_NONE - HEADINGSOURCE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_MAGNETOMETER - HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR - HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD = _mscl.InertialTypes_HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD - HEADINGSOURCE_GNSS_DUAL_ANTENNA = _mscl.InertialTypes_HEADINGSOURCE_GNSS_DUAL_ANTENNA - ENABLE_NONE = _mscl.InertialTypes_ENABLE_NONE - ENABLE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_ENABLE_INTERNAL_MAGNETOMETER - ENABLE_INTERNAL_GNSS = _mscl.InertialTypes_ENABLE_INTERNAL_GNSS - ENABLE_EXTERNAL_MESSAGES = _mscl.InertialTypes_ENABLE_EXTERNAL_MESSAGES - ENABLE_MAGNETOMETER_AND_GNSS = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_GNSS - ENABLE_GNSS_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_GNSS_AND_EXTERNAL - ENABLE_MAGNETOMETER_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_EXTERNAL - ENABLE_ALL = _mscl.InertialTypes_ENABLE_ALL - ENABLE_GYRO_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_BIAS_ESTIMATION - ENABLE_ACCEL_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_BIAS_ESTIMATION - ENABLE_GYRO_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_SCALE_FACTOR_ESTIMATION - ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION - ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION = _mscl.InertialTypes_ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION - ENABLE_HARD_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_HARD_IRON_AUTO_CALIBRATION - ENABLE_SOFT_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_SOFT_IRON_AUTO_CALIBRATION - NONE = _mscl.InertialTypes_NONE - WORLD_MAGNETIC_MODEL = _mscl.InertialTypes_WORLD_MAGNETIC_MODEL - MANUAL = _mscl.InertialTypes_MANUAL - ADAPTIVE_MEASUREMENT_DISABLE = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_DISABLE - ADAPTIVE_MEASUREMENT_ENABLE_FIXED = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_FIXED - ADAPTIVE_MEASUREMENT_ENABLE_AUTO = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_AUTO - GNSS_POS_VEL_AIDING = _mscl.InertialTypes_GNSS_POS_VEL_AIDING - GNSS_HEADING_AIDING = _mscl.InertialTypes_GNSS_HEADING_AIDING - ALTIMETER_AIDING = _mscl.InertialTypes_ALTIMETER_AIDING - ODOMETER_AIDING = _mscl.InertialTypes_ODOMETER_AIDING - MAGNETOMETER_AIDING = _mscl.InertialTypes_MAGNETOMETER_AIDING - EXTERNAL_HEADING_AIDING = _mscl.InertialTypes_EXTERNAL_HEADING_AIDING - EXTERNAL_ALTIMETER_AIDING = _mscl.InertialTypes_EXTERNAL_ALTIMETER_AIDING - EXTERNAL_MAGNETOMETER_AIDING = _mscl.InertialTypes_EXTERNAL_MAGNETOMETER_AIDING - BODY_FRAME_VEL_AIDING = _mscl.InertialTypes_BODY_FRAME_VEL_AIDING - ALL_AIDING_MEASUREMENTS = _mscl.InertialTypes_ALL_AIDING_MEASUREMENTS - GPS = _mscl.InertialTypes_GPS - SBAS = _mscl.InertialTypes_SBAS - GALILEO = _mscl.InertialTypes_GALILEO - BEIDOU = _mscl.InertialTypes_BEIDOU - QZSS = _mscl.InertialTypes_QZSS - GLONASS = _mscl.InertialTypes_GLONASS - FILTERING_OFF = _mscl.InertialTypes_FILTERING_OFF - FILTERING_CONSERVATIVE = _mscl.InertialTypes_FILTERING_CONSERVATIVE - FILTERING_MODERATE = _mscl.InertialTypes_FILTERING_MODERATE - FILTERING_AGGRESSIVE = _mscl.InertialTypes_FILTERING_AGGRESSIVE - FACTORY_STREAMING_OVERWRITE = _mscl.InertialTypes_FACTORY_STREAMING_OVERWRITE - FACTORY_STREAMING_MERGE = _mscl.InertialTypes_FACTORY_STREAMING_MERGE - FACTORY_STREAMING_ADDITIVE = _mscl.InertialTypes_FACTORY_STREAMING_ADDITIVE - PPS_DISABLED = _mscl.InertialTypes_PPS_DISABLED - PPS_RECEIVER_1 = _mscl.InertialTypes_PPS_RECEIVER_1 - PPS_RECEIVER_2 = _mscl.InertialTypes_PPS_RECEIVER_2 - PPS_GPIO = _mscl.InertialTypes_PPS_GPIO - PPS_GENERATED = _mscl.InertialTypes_PPS_GENERATED - GNSS_AIDING_TIGHT_COUPLING = _mscl.InertialTypes_GNSS_AIDING_TIGHT_COUPLING - GNSS_AIDING_DIFFERENTIAL = _mscl.InertialTypes_GNSS_AIDING_DIFFERENTIAL - GNSS_AIDING_INTEGER_FIX = _mscl.InertialTypes_GNSS_AIDING_INTEGER_FIX - GNSS_AIDING_GPS = _mscl.InertialTypes_GNSS_AIDING_GPS - GNSS_AIDING_GLONASS = _mscl.InertialTypes_GNSS_AIDING_GLONASS - GNSS_AIDING_GALILEO = _mscl.InertialTypes_GNSS_AIDING_GALILEO - GNSS_AIDING_BEIDOU = _mscl.InertialTypes_GNSS_AIDING_BEIDOU - GNSS_AIDING_NO_FIX = _mscl.InertialTypes_GNSS_AIDING_NO_FIX - GNSS_AIDING_CONFIG_ERROR = _mscl.InertialTypes_GNSS_AIDING_CONFIG_ERROR - AIDING_MEASUREMENT_ENABLED = _mscl.InertialTypes_AIDING_MEASUREMENT_ENABLED - AIDING_MEASUREMENT_USED = _mscl.InertialTypes_AIDING_MEASUREMENT_USED - AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH - AIDING_MEASUREMENT_WARNING_SAMPLE_TIME = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_SAMPLE_TIME - AIDING_MEASUREMENT_CONFIG_ERROR = _mscl.InertialTypes_AIDING_MEASUREMENT_CONFIG_ERROR - AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED = _mscl.InertialTypes_AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED - RTK_CORRECTION_ANTENNA_POS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_POS_RECEIVED - RTK_CORRECTION_ANTENNA_DESC_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_DESC_RECEIVED - RTK_CORRECTION_GPS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GPS_RECEIVED - RTK_CORRECTION_GLONASS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GLONASS_RECEIVED - RTK_CORRECTION_GALILEO_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GALILEO_RECEIVED - RTK_CORRECTION_BEIDOU_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_BEIDOU_RECEIVED - RTK_CORRECTION_USING_GPS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GPS_MSM - RTK_CORRECTION_USING_GLONASS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GLONASS_MSM - SIGNAL_QUALITY_NONE = _mscl.InertialTypes_SIGNAL_QUALITY_NONE - SIGNAL_QUALITY_SEARCHING = _mscl.InertialTypes_SIGNAL_QUALITY_SEARCHING - SIGNAL_QUALITY_ACQUIRED = _mscl.InertialTypes_SIGNAL_QUALITY_ACQUIRED - SIGNAL_QUALITY_UNUSABLE = _mscl.InertialTypes_SIGNAL_QUALITY_UNUSABLE - SIGNAL_QUALITY_TIME_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_TIME_LOCKED - SIGNAL_QUALITY_FULLY_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_FULLY_LOCKED - OVERRANGE_ACCEL_X = _mscl.InertialTypes_OVERRANGE_ACCEL_X - OVERRANGE_ACCEL_Y = _mscl.InertialTypes_OVERRANGE_ACCEL_Y - OVERRANGE_ACCEL_Z = _mscl.InertialTypes_OVERRANGE_ACCEL_Z - OVERRANGE_GYRO_X = _mscl.InertialTypes_OVERRANGE_GYRO_X - OVERRANGE_GYRO_Y = _mscl.InertialTypes_OVERRANGE_GYRO_Y - OVERRANGE_GYRO_Z = _mscl.InertialTypes_OVERRANGE_GYRO_Z - OVERRANGE_MAG_X = _mscl.InertialTypes_OVERRANGE_MAG_X - OVERRANGE_MAG_Y = _mscl.InertialTypes_OVERRANGE_MAG_Y - OVERRANGE_MAG_Z = _mscl.InertialTypes_OVERRANGE_MAG_Z - OVERRANGE_PRESSURE = _mscl.InertialTypes_OVERRANGE_PRESSURE - UNKNOWN_SBAS_SYSTEM = _mscl.InertialTypes_UNKNOWN_SBAS_SYSTEM - WAAS = _mscl.InertialTypes_WAAS - EGNOS = _mscl.InertialTypes_EGNOS - MSAS = _mscl.InertialTypes_MSAS - GAGAN = _mscl.InertialTypes_GAGAN - SBAS_INFO_RANGE_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_RANGE_AVAILABLE - SBAS_INFO_CORRECTIONS_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_CORRECTIONS_AVAILABLE - SBAS_INFO_INTEGRITY_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_INTEGRITY_AVAILABLE - SBAS_INFO_TEST = _mscl.InertialTypes_SBAS_INFO_TEST - JAMMING_STATE_UNKNOWN = _mscl.InertialTypes_JAMMING_STATE_UNKNOWN - JAMMING_STATE_NONE = _mscl.InertialTypes_JAMMING_STATE_NONE - JAMMING_STATE_PARTIAL = _mscl.InertialTypes_JAMMING_STATE_PARTIAL - JAMMING_STATE_SIGNIFICANT = _mscl.InertialTypes_JAMMING_STATE_SIGNIFICANT - SPOOFING_STATE_UNKNOWN = _mscl.InertialTypes_SPOOFING_STATE_UNKNOWN - SPOOFING_STATE_NONE = _mscl.InertialTypes_SPOOFING_STATE_NONE - SPOOFING_STATE_PARTIAL = _mscl.InertialTypes_SPOOFING_STATE_PARTIAL - SPOOFING_STATE_SIGNIFICANT = _mscl.InertialTypes_SPOOFING_STATE_SIGNIFICANT - - def __init__(self): - _mscl.InertialTypes_swiginit(self, _mscl.new_InertialTypes()) - __swig_destroy__ = _mscl.delete_InertialTypes - -# Register InertialTypes in _mscl: -_mscl.InertialTypes_swigregister(InertialTypes) - -class NmeaMessageFormat(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_MESSAGES = _mscl.NmeaMessageFormat_MAX_MESSAGES - GGA = _mscl.NmeaMessageFormat_GGA - GLL = _mscl.NmeaMessageFormat_GLL - GSV = _mscl.NmeaMessageFormat_GSV - RMC = _mscl.NmeaMessageFormat_RMC - VTG = _mscl.NmeaMessageFormat_VTG - HDT = _mscl.NmeaMessageFormat_HDT - ZDA = _mscl.NmeaMessageFormat_ZDA - MSRA = _mscl.NmeaMessageFormat_MSRA - MSRR = _mscl.NmeaMessageFormat_MSRR - IGNORED = _mscl.NmeaMessageFormat_IGNORED - GNSS = _mscl.NmeaMessageFormat_GNSS - GPS = _mscl.NmeaMessageFormat_GPS - GALILEO = _mscl.NmeaMessageFormat_GALILEO - GLONASS = _mscl.NmeaMessageFormat_GLONASS - - def __init__(self): - _mscl.NmeaMessageFormat_swiginit(self, _mscl.new_NmeaMessageFormat()) - __swig_destroy__ = _mscl.delete_NmeaMessageFormat - - def sentenceType(self, *args): - return _mscl.NmeaMessageFormat_sentenceType(self, *args) - - def talkerId(self, *args): - return _mscl.NmeaMessageFormat_talkerId(self, *args) - - def sourceDataClass(self, *args): - return _mscl.NmeaMessageFormat_sourceDataClass(self, *args) - - def sampleRate(self, *args): - return _mscl.NmeaMessageFormat_sampleRate(self, *args) - - @staticmethod - def talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - - @staticmethod - def dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - - @staticmethod - def supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - - @staticmethod - def toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -# Register NmeaMessageFormat in _mscl: -_mscl.NmeaMessageFormat_swigregister(NmeaMessageFormat) -NmeaMessageFormat.MAX_FREQUENCY = _mscl.cvar.NmeaMessageFormat_MAX_FREQUENCY - -def NmeaMessageFormat_talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - -def NmeaMessageFormat_dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - -def NmeaMessageFormat_supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - -def NmeaMessageFormat_toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -class Matrix_3x3(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Matrix_3x3_swiginit(self, _mscl.new_Matrix_3x3(*args)) - __swig_destroy__ = _mscl.delete_Matrix_3x3 - - def set(self, row, col, value): - return _mscl.Matrix_3x3_set(self, row, col, value) - - def at(self, row, col): - return _mscl.Matrix_3x3_at(self, row, col) - - def __str__(self): - return _mscl.Matrix_3x3___str__(self) - - def asMipFieldValues(self): - return _mscl.Matrix_3x3_asMipFieldValues(self) - -# Register Matrix_3x3 in _mscl: -_mscl.Matrix_3x3_swigregister(Matrix_3x3) - -class TimeUpdate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, timeOfWeek, weekNumber, timeAccuracy=0): - _mscl.TimeUpdate_swiginit(self, _mscl.new_TimeUpdate(timeOfWeek, weekNumber, timeAccuracy)) - __swig_destroy__ = _mscl.delete_TimeUpdate - - def timeOfWeek(self): - return _mscl.TimeUpdate_timeOfWeek(self) - - def weekNumber(self): - return _mscl.TimeUpdate_weekNumber(self) - - def timeAccuracy(self): - return _mscl.TimeUpdate_timeAccuracy(self) - -# Register TimeUpdate in _mscl: -_mscl.TimeUpdate_swigregister(TimeUpdate) - -class ZUPTSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, enable, threshold): - _mscl.ZUPTSettingsData_swiginit(self, _mscl.new_ZUPTSettingsData(enable, threshold)) - enabled = property(_mscl.ZUPTSettingsData_enabled_get, _mscl.ZUPTSettingsData_enabled_set) - threshold = property(_mscl.ZUPTSettingsData_threshold_get, _mscl.ZUPTSettingsData_threshold_set) - __swig_destroy__ = _mscl.delete_ZUPTSettingsData - -# Register ZUPTSettingsData in _mscl: -_mscl.ZUPTSettingsData_swigregister(ZUPTSettingsData) - -class FixedReferencePositionData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.FixedReferencePositionData_swiginit(self, _mscl.new_FixedReferencePositionData(*args)) - enable = property(_mscl.FixedReferencePositionData_enable_get, _mscl.FixedReferencePositionData_enable_set) - referencePosition = property(_mscl.FixedReferencePositionData_referencePosition_get, _mscl.FixedReferencePositionData_referencePosition_set) - __swig_destroy__ = _mscl.delete_FixedReferencePositionData - -# Register FixedReferencePositionData in _mscl: -_mscl.FixedReferencePositionData_swigregister(FixedReferencePositionData) - -class SBASSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enableSBAS = property(_mscl.SBASSettingsData_enableSBAS_get, _mscl.SBASSettingsData_enableSBAS_set) - enableRanging = property(_mscl.SBASSettingsData_enableRanging_get, _mscl.SBASSettingsData_enableRanging_set) - enableCorrectionData = property(_mscl.SBASSettingsData_enableCorrectionData_get, _mscl.SBASSettingsData_enableCorrectionData_set) - applyIntegrityInfo = property(_mscl.SBASSettingsData_applyIntegrityInfo_get, _mscl.SBASSettingsData_applyIntegrityInfo_set) - satellitePRNs = property(_mscl.SBASSettingsData_satellitePRNs_get, _mscl.SBASSettingsData_satellitePRNs_set) - - def __init__(self): - _mscl.SBASSettingsData_swiginit(self, _mscl.new_SBASSettingsData()) - __swig_destroy__ = _mscl.delete_SBASSettingsData - -# Register SBASSettingsData in _mscl: -_mscl.SBASSettingsData_swigregister(SBASSettingsData) - -class Constellation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - constellationID = property(_mscl.Constellation_constellationID_get, _mscl.Constellation_constellationID_set) - enabled = property(_mscl.Constellation_enabled_get, _mscl.Constellation_enabled_set) - reservedChannelCount = property(_mscl.Constellation_reservedChannelCount_get, _mscl.Constellation_reservedChannelCount_set) - maxChannels = property(_mscl.Constellation_maxChannels_get, _mscl.Constellation_maxChannels_set) - enableL1SAIF = property(_mscl.Constellation_enableL1SAIF_get, _mscl.Constellation_enableL1SAIF_set) - - def __init__(self): - _mscl.Constellation_swiginit(self, _mscl.new_Constellation()) - __swig_destroy__ = _mscl.delete_Constellation - -# Register Constellation in _mscl: -_mscl.Constellation_swigregister(Constellation) - -class ConstellationSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - maxChannelsAvailable = property(_mscl.ConstellationSettingsData_maxChannelsAvailable_get, _mscl.ConstellationSettingsData_maxChannelsAvailable_set) - maxChannelsToUse = property(_mscl.ConstellationSettingsData_maxChannelsToUse_get, _mscl.ConstellationSettingsData_maxChannelsToUse_set) - constellations = property(_mscl.ConstellationSettingsData_constellations_get, _mscl.ConstellationSettingsData_constellations_set) - - def __init__(self): - _mscl.ConstellationSettingsData_swiginit(self, _mscl.new_ConstellationSettingsData()) - __swig_destroy__ = _mscl.delete_ConstellationSettingsData - -# Register ConstellationSettingsData in _mscl: -_mscl.ConstellationSettingsData_swigregister(ConstellationSettingsData) - -class LowPassFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SET_TO_HALF_REPORTING_RATE = _mscl.LowPassFilterData_SET_TO_HALF_REPORTING_RATE - USER_SPECIFIED_CUTOFF_FREQ = _mscl.LowPassFilterData_USER_SPECIFIED_CUTOFF_FREQ - - def __init__(self, *args): - _mscl.LowPassFilterData_swiginit(self, _mscl.new_LowPassFilterData(*args)) - dataDescriptor = property(_mscl.LowPassFilterData_dataDescriptor_get, _mscl.LowPassFilterData_dataDescriptor_set) - manualFilterBandwidthConfig = property(_mscl.LowPassFilterData_manualFilterBandwidthConfig_get, _mscl.LowPassFilterData_manualFilterBandwidthConfig_set) - applyLowPassFilter = property(_mscl.LowPassFilterData_applyLowPassFilter_get, _mscl.LowPassFilterData_applyLowPassFilter_set) - cutoffFrequency = property(_mscl.LowPassFilterData_cutoffFrequency_get, _mscl.LowPassFilterData_cutoffFrequency_set) - - @staticmethod - def getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - - @staticmethod - def getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - __swig_destroy__ = _mscl.delete_LowPassFilterData - -# Register LowPassFilterData in _mscl: -_mscl.LowPassFilterData_swigregister(LowPassFilterData) - -def LowPassFilterData_getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - -def LowPassFilterData_getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - -class ComplementaryFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ComplementaryFilterData_swiginit(self, _mscl.new_ComplementaryFilterData()) - upCompensationEnabled = property(_mscl.ComplementaryFilterData_upCompensationEnabled_get, _mscl.ComplementaryFilterData_upCompensationEnabled_set) - upCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_upCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_upCompensationTimeInSeconds_set) - northCompensationEnabled = property(_mscl.ComplementaryFilterData_northCompensationEnabled_get, _mscl.ComplementaryFilterData_northCompensationEnabled_set) - northCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_northCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_northCompensationTimeInSeconds_set) - __swig_destroy__ = _mscl.delete_ComplementaryFilterData - -# Register ComplementaryFilterData in _mscl: -_mscl.ComplementaryFilterData_swigregister(ComplementaryFilterData) - -class PpsPulseInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PpsPulseInfo_swiginit(self, _mscl.new_PpsPulseInfo()) - count = property(_mscl.PpsPulseInfo_count_get, _mscl.PpsPulseInfo_count_set) - lastTimeinMS = property(_mscl.PpsPulseInfo_lastTimeinMS_get, _mscl.PpsPulseInfo_lastTimeinMS_set) - __swig_destroy__ = _mscl.delete_PpsPulseInfo - -# Register PpsPulseInfo in _mscl: -_mscl.PpsPulseInfo_swigregister(PpsPulseInfo) - -class StreamInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.StreamInfo_swiginit(self, _mscl.new_StreamInfo()) - enabled = property(_mscl.StreamInfo_enabled_get, _mscl.StreamInfo_enabled_set) - outgoingPacketsDropped = property(_mscl.StreamInfo_outgoingPacketsDropped_get, _mscl.StreamInfo_outgoingPacketsDropped_set) - __swig_destroy__ = _mscl.delete_StreamInfo - -# Register StreamInfo in _mscl: -_mscl.StreamInfo_swigregister(StreamInfo) - -class DeviceMessageInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.DeviceMessageInfo_swiginit(self, _mscl.new_DeviceMessageInfo()) - messageParsingErrors = property(_mscl.DeviceMessageInfo_messageParsingErrors_get, _mscl.DeviceMessageInfo_messageParsingErrors_set) - messagesRead = property(_mscl.DeviceMessageInfo_messagesRead_get, _mscl.DeviceMessageInfo_messagesRead_set) - lastMessageReadinMS = property(_mscl.DeviceMessageInfo_lastMessageReadinMS_get, _mscl.DeviceMessageInfo_lastMessageReadinMS_set) - __swig_destroy__ = _mscl.delete_DeviceMessageInfo - -# Register DeviceMessageInfo in _mscl: -_mscl.DeviceMessageInfo_swigregister(DeviceMessageInfo) - -class PortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PortInfo_swiginit(self, _mscl.new_PortInfo()) - bytesWritten = property(_mscl.PortInfo_bytesWritten_get, _mscl.PortInfo_bytesWritten_set) - bytesRead = property(_mscl.PortInfo_bytesRead_get, _mscl.PortInfo_bytesRead_set) - overrunsOnWrite = property(_mscl.PortInfo_overrunsOnWrite_get, _mscl.PortInfo_overrunsOnWrite_set) - overrunsOnRead = property(_mscl.PortInfo_overrunsOnRead_get, _mscl.PortInfo_overrunsOnRead_set) - __swig_destroy__ = _mscl.delete_PortInfo - -# Register PortInfo in _mscl: -_mscl.PortInfo_swigregister(PortInfo) - -class TemperatureInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.TemperatureInfo_swiginit(self, _mscl.new_TemperatureInfo()) - onBoardTemp = property(_mscl.TemperatureInfo_onBoardTemp_get, _mscl.TemperatureInfo_onBoardTemp_set) - lastReadInMS = property(_mscl.TemperatureInfo_lastReadInMS_get, _mscl.TemperatureInfo_lastReadInMS_set) - error = property(_mscl.TemperatureInfo_error_get, _mscl.TemperatureInfo_error_set) - __swig_destroy__ = _mscl.delete_TemperatureInfo - -# Register TemperatureInfo in _mscl: -_mscl.TemperatureInfo_swigregister(TemperatureInfo) - -ModelNumber = _mscl.ModelNumber -StatusStructure_Value = _mscl.StatusStructure_Value -SystemState_Value = _mscl.SystemState_Value -gnss1PpsPulseInfo_Count = _mscl.gnss1PpsPulseInfo_Count -gnss1PpsPulseInfo_LastTimeinMS = _mscl.gnss1PpsPulseInfo_LastTimeinMS -GnssPowerStateOn = _mscl.GnssPowerStateOn -ImuStreamInfo_Enabled = _mscl.ImuStreamInfo_Enabled -ImuStreamInfo_PacketsDropped = _mscl.ImuStreamInfo_PacketsDropped -GnssStreamInfo_Enabled = _mscl.GnssStreamInfo_Enabled -GnssStreamInfo_PacketsDropped = _mscl.GnssStreamInfo_PacketsDropped -EstimationFilterStreamInfo_Enabled = _mscl.EstimationFilterStreamInfo_Enabled -EstimationFilterStreamInfo_PacketsDropped = _mscl.EstimationFilterStreamInfo_PacketsDropped -ComPortInfo_BytesRead = _mscl.ComPortInfo_BytesRead -ComPortInfo_BytesWritten = _mscl.ComPortInfo_BytesWritten -ComPortInfo_OverrunsOnRead = _mscl.ComPortInfo_OverrunsOnRead -ComPortInfo_OverrunsOnWrite = _mscl.ComPortInfo_OverrunsOnWrite -ImuMessageInfo_LastMessageReadinMS = _mscl.ImuMessageInfo_LastMessageReadinMS -ImuMessageInfo_MessageParsingErrors = _mscl.ImuMessageInfo_MessageParsingErrors -ImuMessageInfo_MessagesRead = _mscl.ImuMessageInfo_MessagesRead -GnssMessageInfo_LastMessageReadinMS = _mscl.GnssMessageInfo_LastMessageReadinMS -GnssMessageInfo_MessageParsingErrors = _mscl.GnssMessageInfo_MessageParsingErrors -GnssMessageInfo_MessagesRead = _mscl.GnssMessageInfo_MessagesRead -TemperatureInfo_Error = _mscl.TemperatureInfo_Error -TemperatureInfo_LastReadInMS = _mscl.TemperatureInfo_LastReadInMS -TemperatureInfo_OnBoardTemp = _mscl.TemperatureInfo_OnBoardTemp -PowerState = _mscl.PowerState -GyroRange = _mscl.GyroRange -AccelRange = _mscl.AccelRange -HasMagnetometer = _mscl.HasMagnetometer -HasPressure = _mscl.HasPressure -class DeviceStatusData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_BASIC_STATUS_STRUCTURE - DIAGNOSTIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_DIAGNOSTIC_STATUS_STRUCTURE - SYSTEM_INITIALIZATION = _mscl.DeviceStatusData_SYSTEM_INITIALIZATION - SYSTEM_STARTUP = _mscl.DeviceStatusData_SYSTEM_STARTUP - SYSTEM_RUNNING = _mscl.DeviceStatusData_SYSTEM_RUNNING - - def __init__(self): - _mscl.DeviceStatusData_swiginit(self, _mscl.new_DeviceStatusData()) - modelNumber = property(_mscl.DeviceStatusData_modelNumber_get, _mscl.DeviceStatusData_modelNumber_set) - statusStructure = property(_mscl.DeviceStatusData_statusStructure_get, _mscl.DeviceStatusData_statusStructure_set) - systemTimerInMS = property(_mscl.DeviceStatusData_systemTimerInMS_get, _mscl.DeviceStatusData_systemTimerInMS_set) - - def systemState(self, *args): - return _mscl.DeviceStatusData_systemState(self, *args) - - def gnssPowerStateOn(self, *args): - return _mscl.DeviceStatusData_gnssPowerStateOn(self, *args) - - def gnss1PpsPulseInfo(self, *args): - return _mscl.DeviceStatusData_gnss1PpsPulseInfo(self, *args) - - def imuStreamInfo(self, *args): - return _mscl.DeviceStatusData_imuStreamInfo(self, *args) - - def gnssStreamInfo(self, *args): - return _mscl.DeviceStatusData_gnssStreamInfo(self, *args) - - def estimationFilterStreamInfo(self, *args): - return _mscl.DeviceStatusData_estimationFilterStreamInfo(self, *args) - - def imuMessageInfo(self, *args): - return _mscl.DeviceStatusData_imuMessageInfo(self, *args) - - def gnssMessageInfo(self, *args): - return _mscl.DeviceStatusData_gnssMessageInfo(self, *args) - - def comPortInfo(self, *args): - return _mscl.DeviceStatusData_comPortInfo(self, *args) - - def usbPortInfo(self, *args): - return _mscl.DeviceStatusData_usbPortInfo(self, *args) - - def hasMagnetometer(self, *args): - return _mscl.DeviceStatusData_hasMagnetometer(self, *args) - - def magnetometerInitializationFailed(self, *args): - return _mscl.DeviceStatusData_magnetometerInitializationFailed(self, *args) - - def hasPressure(self, *args): - return _mscl.DeviceStatusData_hasPressure(self, *args) - - def pressureInitializationFailed(self, *args): - return _mscl.DeviceStatusData_pressureInitializationFailed(self, *args) - - def gnssReceiverInitializationFailed(self, *args): - return _mscl.DeviceStatusData_gnssReceiverInitializationFailed(self, *args) - - def coldStartOnPowerOn(self, *args): - return _mscl.DeviceStatusData_coldStartOnPowerOn(self, *args) - - def temperatureInfo(self, *args): - return _mscl.DeviceStatusData_temperatureInfo(self, *args) - - def powerState(self, *args): - return _mscl.DeviceStatusData_powerState(self, *args) - - def gyroRange(self, *args): - return _mscl.DeviceStatusData_gyroRange(self, *args) - - def accelRange(self, *args): - return _mscl.DeviceStatusData_accelRange(self, *args) - - def asMap(self): - return _mscl.DeviceStatusData_asMap(self) - - def asValueMap(self): - return _mscl.DeviceStatusData_asValueMap(self) - __swig_destroy__ = _mscl.delete_DeviceStatusData - -# Register DeviceStatusData in _mscl: -_mscl.DeviceStatusData_swigregister(DeviceStatusData) - -class ExternalGNSSUpdateData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - gpsTimeOfWeek = property(_mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_get, _mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_set) - gpsWeekNumber = property(_mscl.ExternalGNSSUpdateData_gpsWeekNumber_get, _mscl.ExternalGNSSUpdateData_gpsWeekNumber_set) - lattitude = property(_mscl.ExternalGNSSUpdateData_lattitude_get, _mscl.ExternalGNSSUpdateData_lattitude_set) - longitude = property(_mscl.ExternalGNSSUpdateData_longitude_get, _mscl.ExternalGNSSUpdateData_longitude_set) - altitudeAboveWGS84Ellipsoid = property(_mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_get, _mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_set) - northVelocity = property(_mscl.ExternalGNSSUpdateData_northVelocity_get, _mscl.ExternalGNSSUpdateData_northVelocity_set) - eastVelocity = property(_mscl.ExternalGNSSUpdateData_eastVelocity_get, _mscl.ExternalGNSSUpdateData_eastVelocity_set) - downVelocity = property(_mscl.ExternalGNSSUpdateData_downVelocity_get, _mscl.ExternalGNSSUpdateData_downVelocity_set) - northPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_northPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_northPositionUncertainty_set) - eastPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_eastPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_eastPositionUncertainty_set) - downPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_downPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_downPositionUncertainty_set) - northVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_northVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_northVelocityUncertainty_set) - eastVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_set) - downVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_downVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_downVelocityUncertainty_set) - - def __init__(self): - _mscl.ExternalGNSSUpdateData_swiginit(self, _mscl.new_ExternalGNSSUpdateData()) - __swig_destroy__ = _mscl.delete_ExternalGNSSUpdateData - -# Register ExternalGNSSUpdateData in _mscl: -_mscl.ExternalGNSSUpdateData_swigregister(ExternalGNSSUpdateData) - -class HeadingUpdateOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsOptionId(self): - return _mscl.HeadingUpdateOptions_AsOptionId(self) - - def __init__(self, *args): - _mscl.HeadingUpdateOptions_swiginit(self, _mscl.new_HeadingUpdateOptions(*args)) - useInternalMagnetometer = property(_mscl.HeadingUpdateOptions_useInternalMagnetometer_get, _mscl.HeadingUpdateOptions_useInternalMagnetometer_set) - useInternalGNSSVelocityVector = property(_mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_get, _mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_set) - useExternalHeadingMessages = property(_mscl.HeadingUpdateOptions_useExternalHeadingMessages_get, _mscl.HeadingUpdateOptions_useExternalHeadingMessages_set) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptions - -# Register HeadingUpdateOptions in _mscl: -_mscl.HeadingUpdateOptions_swigregister(HeadingUpdateOptions) - -Automatic = _mscl.Automatic -UserSpecified_Heading = _mscl.UserSpecified_Heading -UserSpecified_Attitude = _mscl.UserSpecified_Attitude -UserSpecified_All = _mscl.UserSpecified_All -GNSS_DualAntenna = _mscl.GNSS_DualAntenna -GNSS_Kinematic = _mscl.GNSS_Kinematic -Magnetometer = _mscl.Magnetometer -External = _mscl.External -class HeadingAlignmentMethod(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.HeadingAlignmentMethod_swiginit(self, _mscl.new_HeadingAlignmentMethod(*args)) - value = property(_mscl.HeadingAlignmentMethod_value_get, _mscl.HeadingAlignmentMethod_value_set) - - def select(self, option): - return _mscl.HeadingAlignmentMethod_select(self, option) - - def deselect(self, option): - return _mscl.HeadingAlignmentMethod_deselect(self, option) - - def selected(self, option): - return _mscl.HeadingAlignmentMethod_selected(self, option) - __swig_destroy__ = _mscl.delete_HeadingAlignmentMethod - -# Register HeadingAlignmentMethod in _mscl: -_mscl.HeadingAlignmentMethod_swigregister(HeadingAlignmentMethod) - -class FilterInitializationValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FilterInitializationValues_swiginit(self, _mscl.new_FilterInitializationValues()) - autoInitialize = property(_mscl.FilterInitializationValues_autoInitialize_get, _mscl.FilterInitializationValues_autoInitialize_set) - initialValuesSource = property(_mscl.FilterInitializationValues_initialValuesSource_get, _mscl.FilterInitializationValues_initialValuesSource_set) - autoHeadingAlignmentMethod = property(_mscl.FilterInitializationValues_autoHeadingAlignmentMethod_get, _mscl.FilterInitializationValues_autoHeadingAlignmentMethod_set) - initialAttitude = property(_mscl.FilterInitializationValues_initialAttitude_get, _mscl.FilterInitializationValues_initialAttitude_set) - initialPosition = property(_mscl.FilterInitializationValues_initialPosition_get, _mscl.FilterInitializationValues_initialPosition_set) - initialVelocity = property(_mscl.FilterInitializationValues_initialVelocity_get, _mscl.FilterInitializationValues_initialVelocity_set) - referenceFrame = property(_mscl.FilterInitializationValues_referenceFrame_get, _mscl.FilterInitializationValues_referenceFrame_set) - - def manualHeading(self): - return _mscl.FilterInitializationValues_manualHeading(self) - - def manualAttitude(self): - return _mscl.FilterInitializationValues_manualAttitude(self) - - def manualPositionVelocity(self): - return _mscl.FilterInitializationValues_manualPositionVelocity(self) - __swig_destroy__ = _mscl.delete_FilterInitializationValues - -# Register FilterInitializationValues in _mscl: -_mscl.FilterInitializationValues_swigregister(FilterInitializationValues) - -class TareAxisValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def asUint8(self): - return _mscl.TareAxisValues_asUint8(self) - - def __init__(self, tareRollAxis, tarePitchAxis, tareYawAxis): - _mscl.TareAxisValues_swiginit(self, _mscl.new_TareAxisValues(tareRollAxis, tarePitchAxis, tareYawAxis)) - tareRollAxis = property(_mscl.TareAxisValues_tareRollAxis_get, _mscl.TareAxisValues_tareRollAxis_set) - tarePitchAxis = property(_mscl.TareAxisValues_tarePitchAxis_get, _mscl.TareAxisValues_tarePitchAxis_set) - tareYawAxis = property(_mscl.TareAxisValues_tareYawAxis_get, _mscl.TareAxisValues_tareYawAxis_set) - __swig_destroy__ = _mscl.delete_TareAxisValues - -# Register TareAxisValues in _mscl: -_mscl.TareAxisValues_swigregister(TareAxisValues) - -class GeographicSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeographicSourceOptions_swiginit(self, _mscl.new_GeographicSourceOptions(*args)) - source = property(_mscl.GeographicSourceOptions_source_get, _mscl.GeographicSourceOptions_source_set) - manual = property(_mscl.GeographicSourceOptions_manual_get, _mscl.GeographicSourceOptions_manual_set) - __swig_destroy__ = _mscl.delete_GeographicSourceOptions - -# Register GeographicSourceOptions in _mscl: -_mscl.GeographicSourceOptions_swigregister(GeographicSourceOptions) - -class EstimationControlOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsUint16(self): - return _mscl.EstimationControlOptions_AsUint16(self) - - def __init__(self, *args): - _mscl.EstimationControlOptions_swiginit(self, _mscl.new_EstimationControlOptions(*args)) - enableGyroBiasEstimation = property(_mscl.EstimationControlOptions_enableGyroBiasEstimation_get, _mscl.EstimationControlOptions_enableGyroBiasEstimation_set) - enableAccelBiasEstimation = property(_mscl.EstimationControlOptions_enableAccelBiasEstimation_get, _mscl.EstimationControlOptions_enableAccelBiasEstimation_set) - enableGyroScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_set) - enableAccelScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_set) - enableGNSSAntennaOffsetEstimation = property(_mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_get, _mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_set) - enableHardIronAutoCalibration = property(_mscl.EstimationControlOptions_enableHardIronAutoCalibration_get, _mscl.EstimationControlOptions_enableHardIronAutoCalibration_set) - enableSoftIronAutoCalibration = property(_mscl.EstimationControlOptions_enableSoftIronAutoCalibration_get, _mscl.EstimationControlOptions_enableSoftIronAutoCalibration_set) - __swig_destroy__ = _mscl.delete_EstimationControlOptions - -# Register EstimationControlOptions in _mscl: -_mscl.EstimationControlOptions_swigregister(EstimationControlOptions) - -class HeadingData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HeadingData_swiginit(self, _mscl.new_HeadingData()) - TRUE_HEADING = _mscl.HeadingData_TRUE_HEADING - MAGNETIC_HEADING = _mscl.HeadingData_MAGNETIC_HEADING - heading = property(_mscl.HeadingData_heading_get, _mscl.HeadingData_heading_set) - headingAngle = property(_mscl.HeadingData_headingAngle_get, _mscl.HeadingData_headingAngle_set) - headingAngleUncertainty = property(_mscl.HeadingData_headingAngleUncertainty_get, _mscl.HeadingData_headingAngleUncertainty_set) - __swig_destroy__ = _mscl.delete_HeadingData - -# Register HeadingData in _mscl: -_mscl.HeadingData_swigregister(HeadingData) - -class AdaptiveMeasurementData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AdaptiveMeasurementData_swiginit(self, _mscl.new_AdaptiveMeasurementData()) - mode = property(_mscl.AdaptiveMeasurementData_mode_get, _mscl.AdaptiveMeasurementData_mode_set) - lowPassFilterCutoff = property(_mscl.AdaptiveMeasurementData_lowPassFilterCutoff_get, _mscl.AdaptiveMeasurementData_lowPassFilterCutoff_set) - lowLimit = property(_mscl.AdaptiveMeasurementData_lowLimit_get, _mscl.AdaptiveMeasurementData_lowLimit_set) - highLimit = property(_mscl.AdaptiveMeasurementData_highLimit_get, _mscl.AdaptiveMeasurementData_highLimit_set) - lowLimitUncertainty = property(_mscl.AdaptiveMeasurementData_lowLimitUncertainty_get, _mscl.AdaptiveMeasurementData_lowLimitUncertainty_set) - highLimitUncertainty = property(_mscl.AdaptiveMeasurementData_highLimitUncertainty_get, _mscl.AdaptiveMeasurementData_highLimitUncertainty_set) - minUncertainty = property(_mscl.AdaptiveMeasurementData_minUncertainty_get, _mscl.AdaptiveMeasurementData_minUncertainty_set) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementData - -# Register AdaptiveMeasurementData in _mscl: -_mscl.AdaptiveMeasurementData_swigregister(AdaptiveMeasurementData) - -class AutoAdaptiveFilterOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AutoAdaptiveFilterOptions_swiginit(self, _mscl.new_AutoAdaptiveFilterOptions(*args)) - level = property(_mscl.AutoAdaptiveFilterOptions_level_get, _mscl.AutoAdaptiveFilterOptions_level_set) - timeLimit = property(_mscl.AutoAdaptiveFilterOptions_timeLimit_get, _mscl.AutoAdaptiveFilterOptions_timeLimit_set) - __swig_destroy__ = _mscl.delete_AutoAdaptiveFilterOptions - -# Register AutoAdaptiveFilterOptions in _mscl: -_mscl.AutoAdaptiveFilterOptions_swigregister(AutoAdaptiveFilterOptions) - -class SignalConditioningValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ENABLE_ORIENTATION_CALC = _mscl.SignalConditioningValues_ENABLE_ORIENTATION_CALC - ENABLE_CONING_SCULLING = _mscl.SignalConditioningValues_ENABLE_CONING_SCULLING - ENABLE_FINITE_SIZE_CORRECTION = _mscl.SignalConditioningValues_ENABLE_FINITE_SIZE_CORRECTION - DISABLE_MAGNETOMETER = _mscl.SignalConditioningValues_DISABLE_MAGNETOMETER - DISABLE_NORTH_COMP = _mscl.SignalConditioningValues_DISABLE_NORTH_COMP - DISABLE_UP_COMP = _mscl.SignalConditioningValues_DISABLE_UP_COMP - ENABLE_QUATERNION_CALC = _mscl.SignalConditioningValues_ENABLE_QUATERNION_CALC - HIGH = _mscl.SignalConditioningValues_HIGH - LOW = _mscl.SignalConditioningValues_LOW - dataConditioningFlags = property(_mscl.SignalConditioningValues_dataConditioningFlags_get, _mscl.SignalConditioningValues_dataConditioningFlags_set) - orientationCalcDecimation = property(_mscl.SignalConditioningValues_orientationCalcDecimation_get, _mscl.SignalConditioningValues_orientationCalcDecimation_set) - accelGyroFilterWidth = property(_mscl.SignalConditioningValues_accelGyroFilterWidth_get, _mscl.SignalConditioningValues_accelGyroFilterWidth_set) - magFilterWidth = property(_mscl.SignalConditioningValues_magFilterWidth_get, _mscl.SignalConditioningValues_magFilterWidth_set) - upCompensation = property(_mscl.SignalConditioningValues_upCompensation_get, _mscl.SignalConditioningValues_upCompensation_set) - northCompensation = property(_mscl.SignalConditioningValues_northCompensation_get, _mscl.SignalConditioningValues_northCompensation_set) - magBandwidthPower = property(_mscl.SignalConditioningValues_magBandwidthPower_get, _mscl.SignalConditioningValues_magBandwidthPower_set) - - def __init__(self): - _mscl.SignalConditioningValues_swiginit(self, _mscl.new_SignalConditioningValues()) - - def conditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_conditioningOptionOn(self, *args) - - def setConditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOn(self, *args) - - def setConditioningOptionOff(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOff(self, *args) - __swig_destroy__ = _mscl.delete_SignalConditioningValues - -# Register SignalConditioningValues in _mscl: -_mscl.SignalConditioningValues_swigregister(SignalConditioningValues) - -class EnableDisableMeasurements(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ACCELEROMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_ACCELEROMETER_MEASUREMENTS - MAGNETOMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_MAGNETOMETER_MEASUREMENTS - - def __init__(self, *args): - _mscl.EnableDisableMeasurements_swiginit(self, _mscl.new_EnableDisableMeasurements(*args)) - measurementOptions = property(_mscl.EnableDisableMeasurements_measurementOptions_get, _mscl.EnableDisableMeasurements_measurementOptions_set) - - def optionEnabled(self, *args): - return _mscl.EnableDisableMeasurements_optionEnabled(self, *args) - - def enableOption(self, *args): - return _mscl.EnableDisableMeasurements_enableOption(self, *args) - - def disableOption(self, *args): - return _mscl.EnableDisableMeasurements_disableOption(self, *args) - __swig_destroy__ = _mscl.delete_EnableDisableMeasurements - -# Register EnableDisableMeasurements in _mscl: -_mscl.EnableDisableMeasurements_swigregister(EnableDisableMeasurements) - -class RTKDeviceStatusFlags(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MODEM_STATE = _mscl.RTKDeviceStatusFlags_MODEM_STATE - CONNECTION_TYPE = _mscl.RTKDeviceStatusFlags_CONNECTION_TYPE - RSSI = _mscl.RTKDeviceStatusFlags_RSSI - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_SIGNAL_QUALITY - TOWER_CHANGE_INDICATOR = _mscl.RTKDeviceStatusFlags_TOWER_CHANGE_INDICATOR - NMEA_TIMEOUT = _mscl.RTKDeviceStatusFlags_NMEA_TIMEOUT - SERVER_TIMEOUT = _mscl.RTKDeviceStatusFlags_SERVER_TIMEOUT - RTCM_TIMEOUT = _mscl.RTKDeviceStatusFlags_RTCM_TIMEOUT - DEVICE_OUT_OF_RANGE = _mscl.RTKDeviceStatusFlags_DEVICE_OUT_OF_RANGE - CORRECTIONS_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_CORRECTIONS_UNAVAILABLE - VERSION = _mscl.RTKDeviceStatusFlags_VERSION - OFF = _mscl.RTKDeviceStatusFlags_OFF - NO_NETWORK = _mscl.RTKDeviceStatusFlags_NO_NETWORK - NETWORK_CONNECTED = _mscl.RTKDeviceStatusFlags_NETWORK_CONNECTED - CONFIGURING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_CONFIGURING_DATA_CONTEXT - ACTIVATING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_ACTIVATING_DATA_CONTEXT - CONFIGURING_SOCKET = _mscl.RTKDeviceStatusFlags_CONFIGURING_SOCKET - WAITING_ON_SERVER_HANDSHAKE = _mscl.RTKDeviceStatusFlags_WAITING_ON_SERVER_HANDSHAKE - CONNECTED_AND_IDLE = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_IDLE - CONNECTED_AND_STREAMING = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_STREAMING - NO_CONNECTION = _mscl.RTKDeviceStatusFlags_NO_CONNECTION - CONNECTION_2G = _mscl.RTKDeviceStatusFlags_CONNECTION_2G - CONNECTION_3G = _mscl.RTKDeviceStatusFlags_CONNECTION_3G - CONNECTION_4G = _mscl.RTKDeviceStatusFlags_CONNECTION_4G - CONNECTION_5G = _mscl.RTKDeviceStatusFlags_CONNECTION_5G - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_swiginit(self, _mscl.new_RTKDeviceStatusFlags(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_version(self) - - def modemState(self, *args): - return _mscl.RTKDeviceStatusFlags_modemState(self, *args) - - def connectionType(self, *args): - return _mscl.RTKDeviceStatusFlags_connectionType(self, *args) - - def rssi(self, *args): - return _mscl.RTKDeviceStatusFlags_rssi(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_signalQuality(self, *args) - - def towerChangeIndicator(self, *args): - return _mscl.RTKDeviceStatusFlags_towerChangeIndicator(self, *args) - - def nmeaTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_nmeaTimeout(self, *args) - - def serverTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_serverTimeout(self, *args) - - def rtcmTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_rtcmTimeout(self, *args) - - def deviceOutOfRange(self, *args): - return _mscl.RTKDeviceStatusFlags_deviceOutOfRange(self, *args) - - def correctionsUnavailable(self, *args): - return _mscl.RTKDeviceStatusFlags_correctionsUnavailable(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags - -# Register RTKDeviceStatusFlags in _mscl: -_mscl.RTKDeviceStatusFlags_swigregister(RTKDeviceStatusFlags) - -class RTKDeviceStatusFlags_v1(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONTROLLER_STATE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATE - PLATFORM_STATE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATE - CONTROLLER_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATUS_CODE - PLATFORM_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATUS_CODE - RESET_REASON = _mscl.RTKDeviceStatusFlags_v1_RESET_REASON - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_v1_SIGNAL_QUALITY - VERSION = _mscl.RTKDeviceStatusFlags_v1_VERSION - IDLE = _mscl.RTKDeviceStatusFlags_v1_IDLE - ACTIVE = _mscl.RTKDeviceStatusFlags_v1_ACTIVE - MODEM_OFF = _mscl.RTKDeviceStatusFlags_v1_MODEM_OFF - MODEM_POWERING_ON = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_ON - MODEM_CONFIGURE = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONFIGURE - MODEM_POWERING_DOWN = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_DOWN - MODEM_READY = _mscl.RTKDeviceStatusFlags_v1_MODEM_READY - MODEM_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTING - MODEM_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_DISCONNECTING - MODEM_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTED - SERVICE_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTING - SERVICE_CONNECTION_FAILED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_FAILED - SERVICE_CONNECTION_CANCELED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_CANCELED - SERVICE_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_DISCONNECTING - SERVICE_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTED - PLATFORM_ERROR = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_ERROR - RESET_MODEM = _mscl.RTKDeviceStatusFlags_v1_RESET_MODEM - CONTROLLER_OK = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_OK - WAITING_NMEA = _mscl.RTKDeviceStatusFlags_v1_WAITING_NMEA - RTK_TIMEOUT = _mscl.RTKDeviceStatusFlags_v1_RTK_TIMEOUT - RTK_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_v1_RTK_UNAVAILABLE - CONFIG_INVALID = _mscl.RTKDeviceStatusFlags_v1_CONFIG_INVALID - PLATFORM_OK = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_OK - RTK_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_RTK_CONNECTION_DROPPED - CELL_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_CELL_CONNECTION_DROPPED - MODEM_ERROR = _mscl.RTKDeviceStatusFlags_v1_MODEM_ERROR - POWER_ON = _mscl.RTKDeviceStatusFlags_v1_POWER_ON - UNKNOWN = _mscl.RTKDeviceStatusFlags_v1_UNKNOWN - SOFT_RESET = _mscl.RTKDeviceStatusFlags_v1_SOFT_RESET - HARDWARE_ERROR_RESET = _mscl.RTKDeviceStatusFlags_v1_HARDWARE_ERROR_RESET - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_v1_swiginit(self, _mscl.new_RTKDeviceStatusFlags_v1(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_v1_version(self) - - def controllerState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerState(self, *args) - - def platformState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformState(self, *args) - - def controllerStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerStatusCode(self, *args) - - def platformStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformStatusCode(self, *args) - - def resetReason(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_resetReason(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_signalQuality(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags_v1 - -# Register RTKDeviceStatusFlags_v1 in _mscl: -_mscl.RTKDeviceStatusFlags_v1_swigregister(RTKDeviceStatusFlags_v1) - -class GnssSignalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - L1CA = _mscl.GnssSignalConfiguration_L1CA - L2C = _mscl.GnssSignalConfiguration_L2C - L1OF = _mscl.GnssSignalConfiguration_L1OF - L2OF = _mscl.GnssSignalConfiguration_L2OF - E1 = _mscl.GnssSignalConfiguration_E1 - E5B = _mscl.GnssSignalConfiguration_E5B - B1 = _mscl.GnssSignalConfiguration_B1 - B2 = _mscl.GnssSignalConfiguration_B2 - - def __init__(self): - _mscl.GnssSignalConfiguration_swiginit(self, _mscl.new_GnssSignalConfiguration()) - - def enableGpsSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGpsSignal(self, signal, enable) - - def gpsSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_gpsSignalEnabled(self, signal) - - def gpsSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_gpsSignalValue(self, *args) - - def enableGlonassSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGlonassSignal(self, signal, enable) - - def glonassSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_glonassSignalEnabled(self, signal) - - def glonassSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_glonassSignalValue(self, *args) - - def enableGalileoSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGalileoSignal(self, signal, enable) - - def galileoSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_galileoSignalEnabled(self, signal) - - def galileoSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_galileoSignalValue(self, *args) - - def enableBeiDouSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableBeiDouSignal(self, signal, enable) - - def beidouSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_beidouSignalEnabled(self, signal) - - def beidouSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_beidouSignalValue(self, *args) - __swig_destroy__ = _mscl.delete_GnssSignalConfiguration - -# Register GnssSignalConfiguration in _mscl: -_mscl.GnssSignalConfiguration_swigregister(GnssSignalConfiguration) - -class GnssSpartnConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - KEY_SIZE = _mscl.GnssSpartnConfiguration_KEY_SIZE - NONE = _mscl.GnssSpartnConfiguration_NONE - NETWORK = _mscl.GnssSpartnConfiguration_NETWORK - LBAND = _mscl.GnssSpartnConfiguration_LBAND - - def __init__(self): - _mscl.GnssSpartnConfiguration_swiginit(self, _mscl.new_GnssSpartnConfiguration()) - - def enable(self, enable): - return _mscl.GnssSpartnConfiguration_enable(self, enable) - - def enabled(self): - return _mscl.GnssSpartnConfiguration_enabled(self) - - def type(self, *args): - return _mscl.GnssSpartnConfiguration_type(self, *args) - - def currentKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyTow(self, *args) - - def currentKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyWeek(self, *args) - - def currentKey(self, *args): - return _mscl.GnssSpartnConfiguration_currentKey(self, *args) - - def nextKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyTow(self, *args) - - def nextKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyWeek(self, *args) - - def nextKey(self, *args): - return _mscl.GnssSpartnConfiguration_nextKey(self, *args) - __swig_destroy__ = _mscl.delete_GnssSpartnConfiguration - -# Register GnssSpartnConfiguration in _mscl: -_mscl.GnssSpartnConfiguration_swigregister(GnssSpartnConfiguration) - -class PositionReferenceConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - autoConfig = property(_mscl.PositionReferenceConfiguration_autoConfig_get, _mscl.PositionReferenceConfiguration_autoConfig_set) - position = property(_mscl.PositionReferenceConfiguration_position_get, _mscl.PositionReferenceConfiguration_position_set) - - def __init__(self): - _mscl.PositionReferenceConfiguration_swiginit(self, _mscl.new_PositionReferenceConfiguration()) - __swig_destroy__ = _mscl.delete_PositionReferenceConfiguration - -# Register PositionReferenceConfiguration in _mscl: -_mscl.PositionReferenceConfiguration_swigregister(PositionReferenceConfiguration) - -class AntennaLeverArmCalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enabled = property(_mscl.AntennaLeverArmCalConfiguration_enabled_get, _mscl.AntennaLeverArmCalConfiguration_enabled_set) - maxOffsetError = property(_mscl.AntennaLeverArmCalConfiguration_maxOffsetError_get, _mscl.AntennaLeverArmCalConfiguration_maxOffsetError_set) - - def __init__(self): - _mscl.AntennaLeverArmCalConfiguration_swiginit(self, _mscl.new_AntennaLeverArmCalConfiguration()) - __swig_destroy__ = _mscl.delete_AntennaLeverArmCalConfiguration - -# Register AntennaLeverArmCalConfiguration in _mscl: -_mscl.AntennaLeverArmCalConfiguration_swigregister(AntennaLeverArmCalConfiguration) - -class OdometerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.OdometerConfiguration_DISABLED - SINGLE = _mscl.OdometerConfiguration_SINGLE - QUADRATURE = _mscl.OdometerConfiguration_QUADRATURE - - def __init__(self): - _mscl.OdometerConfiguration_swiginit(self, _mscl.new_OdometerConfiguration()) - - def mode(self, *args): - return _mscl.OdometerConfiguration_mode(self, *args) - - def uncertainty(self, *args): - return _mscl.OdometerConfiguration_uncertainty(self, *args) - - def scaling(self, *args): - return _mscl.OdometerConfiguration_scaling(self, *args) - __swig_destroy__ = _mscl.delete_OdometerConfiguration - -# Register OdometerConfiguration in _mscl: -_mscl.OdometerConfiguration_swigregister(OdometerConfiguration) - -class GpioConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - UNUSED_FEATURE = _mscl.GpioConfiguration_UNUSED_FEATURE - GPIO_FEATURE = _mscl.GpioConfiguration_GPIO_FEATURE - PPS_FEATURE = _mscl.GpioConfiguration_PPS_FEATURE - ENCODER_FEATURE = _mscl.GpioConfiguration_ENCODER_FEATURE - EVENT_TIMESTAMP_FEATURE = _mscl.GpioConfiguration_EVENT_TIMESTAMP_FEATURE - UART_FEATURE = _mscl.GpioConfiguration_UART_FEATURE - GPIO_UNUSED = _mscl.GpioConfiguration_GPIO_UNUSED - GPIO_INPUT = _mscl.GpioConfiguration_GPIO_INPUT - GPIO_OUTPUT_LOW = _mscl.GpioConfiguration_GPIO_OUTPUT_LOW - GPIO_OUTPUT_HIGH = _mscl.GpioConfiguration_GPIO_OUTPUT_HIGH - PPS_UNUSED = _mscl.GpioConfiguration_PPS_UNUSED - PPS_INPUT = _mscl.GpioConfiguration_PPS_INPUT - PPS_OUTPUT = _mscl.GpioConfiguration_PPS_OUTPUT - ENCODER_UNUSED = _mscl.GpioConfiguration_ENCODER_UNUSED - ENCODER_A = _mscl.GpioConfiguration_ENCODER_A - ENCODER_B = _mscl.GpioConfiguration_ENCODER_B - TIMESTAMP_UNUSED = _mscl.GpioConfiguration_TIMESTAMP_UNUSED - TIMESTAMP_RISING = _mscl.GpioConfiguration_TIMESTAMP_RISING - TIMESTAMP_FALLING = _mscl.GpioConfiguration_TIMESTAMP_FALLING - TIMESTAMP_EITHER = _mscl.GpioConfiguration_TIMESTAMP_EITHER - UART_UNUSED = _mscl.GpioConfiguration_UART_UNUSED - UART_PORT2_TX = _mscl.GpioConfiguration_UART_PORT2_TX - UART_PORT2_RX = _mscl.GpioConfiguration_UART_PORT2_RX - UART_PORT3_TX = _mscl.GpioConfiguration_UART_PORT3_TX - UART_PORT3_RX = _mscl.GpioConfiguration_UART_PORT3_RX - NONE = _mscl.GpioConfiguration_NONE - OPEN_DRAIN = _mscl.GpioConfiguration_OPEN_DRAIN - PULLDOWN = _mscl.GpioConfiguration_PULLDOWN - PULLUP = _mscl.GpioConfiguration_PULLUP - pinMode = property(_mscl.GpioConfiguration_pinMode_get, _mscl.GpioConfiguration_pinMode_set) - pin = property(_mscl.GpioConfiguration_pin_get, _mscl.GpioConfiguration_pin_set) - feature = property(_mscl.GpioConfiguration_feature_get, _mscl.GpioConfiguration_feature_set) - behavior = property(_mscl.GpioConfiguration_behavior_get, _mscl.GpioConfiguration_behavior_set) - - def pinModeValue(self, *args): - return _mscl.GpioConfiguration_pinModeValue(self, *args) - - def __init__(self): - _mscl.GpioConfiguration_swiginit(self, _mscl.new_GpioConfiguration()) - __swig_destroy__ = _mscl.delete_GpioConfiguration - -# Register GpioConfiguration in _mscl: -_mscl.GpioConfiguration_swigregister(GpioConfiguration) - -DISABLED = _mscl.DISABLED -ENABLED = _mscl.ENABLED -TEST = _mscl.TEST -TEST_PULSE = _mscl.TEST_PULSE -class EventTriggerGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventTriggerGpioParameter_DISABLED - WHILE_HIGH = _mscl.EventTriggerGpioParameter_WHILE_HIGH - WHILE_LOW = _mscl.EventTriggerGpioParameter_WHILE_LOW - EDGE = _mscl.EventTriggerGpioParameter_EDGE - pin = property(_mscl.EventTriggerGpioParameter_pin_get, _mscl.EventTriggerGpioParameter_pin_set) - mode = property(_mscl.EventTriggerGpioParameter_mode_get, _mscl.EventTriggerGpioParameter_mode_set) - - def __init__(self): - _mscl.EventTriggerGpioParameter_swiginit(self, _mscl.new_EventTriggerGpioParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerGpioParameter - -# Register EventTriggerGpioParameter in _mscl: -_mscl.EventTriggerGpioParameter_swigregister(EventTriggerGpioParameter) - -class EventTriggerThresholdParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - WINDOW_TYPE = _mscl.EventTriggerThresholdParameter_WINDOW_TYPE - INTERVAL_TYPE = _mscl.EventTriggerThresholdParameter_INTERVAL_TYPE - type = property(_mscl.EventTriggerThresholdParameter_type_get, _mscl.EventTriggerThresholdParameter_type_set) - lowThreshold = property(_mscl.EventTriggerThresholdParameter_lowThreshold_get, _mscl.EventTriggerThresholdParameter_lowThreshold_set) - highThreshold = property(_mscl.EventTriggerThresholdParameter_highThreshold_get, _mscl.EventTriggerThresholdParameter_highThreshold_set) - - def channel(self, *args): - return _mscl.EventTriggerThresholdParameter_channel(self, *args) - - def channelField(self): - return _mscl.EventTriggerThresholdParameter_channelField(self) - - def channelQualifier(self): - return _mscl.EventTriggerThresholdParameter_channelQualifier(self) - - def channelIndex(self): - return _mscl.EventTriggerThresholdParameter_channelIndex(self) - - def __init__(self): - _mscl.EventTriggerThresholdParameter_swiginit(self, _mscl.new_EventTriggerThresholdParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerThresholdParameter - -# Register EventTriggerThresholdParameter in _mscl: -_mscl.EventTriggerThresholdParameter_swigregister(EventTriggerThresholdParameter) - -class EventTriggerCombinationParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_INPUT_TRIGGERS = _mscl.EventTriggerCombinationParameter_MAX_INPUT_TRIGGERS - LOGIC_NEVER = _mscl.EventTriggerCombinationParameter_LOGIC_NEVER - LOGIC_ALWAYS = _mscl.EventTriggerCombinationParameter_LOGIC_ALWAYS - LOGIC_NONE = _mscl.EventTriggerCombinationParameter_LOGIC_NONE - LOGIC_OR = _mscl.EventTriggerCombinationParameter_LOGIC_OR - LOGIC_NAND = _mscl.EventTriggerCombinationParameter_LOGIC_NAND - LOGIC_XOR_ONE = _mscl.EventTriggerCombinationParameter_LOGIC_XOR_ONE - LOGIC_ONLY_A = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_A - LOGIC_ONLY_B = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_B - LOGIC_ONLY_C = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_C - LOGIC_ONLY_D = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_D - LOGIC_AND_AB = _mscl.EventTriggerCombinationParameter_LOGIC_AND_AB - LOGIC_AB_OR_C = _mscl.EventTriggerCombinationParameter_LOGIC_AB_OR_C - LOGIC_AND = _mscl.EventTriggerCombinationParameter_LOGIC_AND - logicTable = property(_mscl.EventTriggerCombinationParameter_logicTable_get, _mscl.EventTriggerCombinationParameter_logicTable_set) - inputTriggers = property(_mscl.EventTriggerCombinationParameter_inputTriggers_get, _mscl.EventTriggerCombinationParameter_inputTriggers_set) - - def __init__(self): - _mscl.EventTriggerCombinationParameter_swiginit(self, _mscl.new_EventTriggerCombinationParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerCombinationParameter - -# Register EventTriggerCombinationParameter in _mscl: -_mscl.EventTriggerCombinationParameter_swigregister(EventTriggerCombinationParameter) - -class EventTriggerParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerParameters_swiginit(self, _mscl.new_EventTriggerParameters()) - gpio = property(_mscl.EventTriggerParameters_gpio_get, _mscl.EventTriggerParameters_gpio_set) - threshold = property(_mscl.EventTriggerParameters_threshold_get, _mscl.EventTriggerParameters_threshold_set) - combination = property(_mscl.EventTriggerParameters_combination_get, _mscl.EventTriggerParameters_combination_set) - __swig_destroy__ = _mscl.delete_EventTriggerParameters - -# Register EventTriggerParameters in _mscl: -_mscl.EventTriggerParameters_swigregister(EventTriggerParameters) - -class EventTriggerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventTriggerConfiguration_NONE - GPIO_TRIGGER = _mscl.EventTriggerConfiguration_GPIO_TRIGGER - THRESHOLD_TRIGGER = _mscl.EventTriggerConfiguration_THRESHOLD_TRIGGER - COMBINATION_TRIGGER = _mscl.EventTriggerConfiguration_COMBINATION_TRIGGER - instance = property(_mscl.EventTriggerConfiguration_instance_get, _mscl.EventTriggerConfiguration_instance_set) - trigger = property(_mscl.EventTriggerConfiguration_trigger_get, _mscl.EventTriggerConfiguration_trigger_set) - parameters = property(_mscl.EventTriggerConfiguration_parameters_get, _mscl.EventTriggerConfiguration_parameters_set) - - def __init__(self): - _mscl.EventTriggerConfiguration_swiginit(self, _mscl.new_EventTriggerConfiguration()) - __swig_destroy__ = _mscl.delete_EventTriggerConfiguration - -# Register EventTriggerConfiguration in _mscl: -_mscl.EventTriggerConfiguration_swigregister(EventTriggerConfiguration) - -class EventActionGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventActionGpioParameter_DISABLED - ACTIVE_HIGH = _mscl.EventActionGpioParameter_ACTIVE_HIGH - ACTIVE_LOW = _mscl.EventActionGpioParameter_ACTIVE_LOW - ONESHOT_HIGH = _mscl.EventActionGpioParameter_ONESHOT_HIGH - ONESHOT_LOW = _mscl.EventActionGpioParameter_ONESHOT_LOW - TOGGLE = _mscl.EventActionGpioParameter_TOGGLE - pin = property(_mscl.EventActionGpioParameter_pin_get, _mscl.EventActionGpioParameter_pin_set) - mode = property(_mscl.EventActionGpioParameter_mode_get, _mscl.EventActionGpioParameter_mode_set) - - def __init__(self): - _mscl.EventActionGpioParameter_swiginit(self, _mscl.new_EventActionGpioParameter()) - __swig_destroy__ = _mscl.delete_EventActionGpioParameter - -# Register EventActionGpioParameter in _mscl: -_mscl.EventActionGpioParameter_swigregister(EventActionGpioParameter) - -class EventActionMessageParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_DESCRIPTORS = _mscl.EventActionMessageParameter_MAX_DESCRIPTORS - sampleRate = property(_mscl.EventActionMessageParameter_sampleRate_get, _mscl.EventActionMessageParameter_sampleRate_set) - - def dataClass(self): - return _mscl.EventActionMessageParameter_dataClass(self) - - def setChannelFields(self, dataClass, fields): - return _mscl.EventActionMessageParameter_setChannelFields(self, dataClass, fields) - - def getChannelFields(self): - return _mscl.EventActionMessageParameter_getChannelFields(self) - - def __init__(self): - _mscl.EventActionMessageParameter_swiginit(self, _mscl.new_EventActionMessageParameter()) - __swig_destroy__ = _mscl.delete_EventActionMessageParameter - -# Register EventActionMessageParameter in _mscl: -_mscl.EventActionMessageParameter_swigregister(EventActionMessageParameter) - -class EventActionParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventActionParameters_swiginit(self, _mscl.new_EventActionParameters()) - gpio = property(_mscl.EventActionParameters_gpio_get, _mscl.EventActionParameters_gpio_set) - message = property(_mscl.EventActionParameters_message_get, _mscl.EventActionParameters_message_set) - __swig_destroy__ = _mscl.delete_EventActionParameters - -# Register EventActionParameters in _mscl: -_mscl.EventActionParameters_swigregister(EventActionParameters) - -class EventActionConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventActionConfiguration_NONE - GPIO = _mscl.EventActionConfiguration_GPIO - MESSAGE = _mscl.EventActionConfiguration_MESSAGE - instance = property(_mscl.EventActionConfiguration_instance_get, _mscl.EventActionConfiguration_instance_set) - trigger = property(_mscl.EventActionConfiguration_trigger_get, _mscl.EventActionConfiguration_trigger_set) - type = property(_mscl.EventActionConfiguration_type_get, _mscl.EventActionConfiguration_type_set) - parameters = property(_mscl.EventActionConfiguration_parameters_get, _mscl.EventActionConfiguration_parameters_set) - - def __init__(self): - _mscl.EventActionConfiguration_swiginit(self, _mscl.new_EventActionConfiguration()) - __swig_destroy__ = _mscl.delete_EventActionConfiguration - -# Register EventActionConfiguration in _mscl: -_mscl.EventActionConfiguration_swigregister(EventActionConfiguration) - -class EventTriggerInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTriggerInfo_swiginit(self, _mscl.new_EventTriggerInfo(*args)) - ACTIVE = _mscl.EventTriggerInfo_ACTIVE - ENABLED = _mscl.EventTriggerInfo_ENABLED - TEST = _mscl.EventTriggerInfo_TEST - type = property(_mscl.EventTriggerInfo_type_get, _mscl.EventTriggerInfo_type_set) - instanceId = property(_mscl.EventTriggerInfo_instanceId_get, _mscl.EventTriggerInfo_instanceId_set) - - def isActive(self): - return _mscl.EventTriggerInfo_isActive(self) - - def isEnabled(self): - return _mscl.EventTriggerInfo_isEnabled(self) - - def isTestMode(self): - return _mscl.EventTriggerInfo_isTestMode(self) - - def setStatus(self, value): - return _mscl.EventTriggerInfo_setStatus(self, value) - __swig_destroy__ = _mscl.delete_EventTriggerInfo - -# Register EventTriggerInfo in _mscl: -_mscl.EventTriggerInfo_swigregister(EventTriggerInfo) - -class EventActionInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventActionInfo_swiginit(self, _mscl.new_EventActionInfo(*args)) - type = property(_mscl.EventActionInfo_type_get, _mscl.EventActionInfo_type_set) - triggerId = property(_mscl.EventActionInfo_triggerId_get, _mscl.EventActionInfo_triggerId_set) - instanceId = property(_mscl.EventActionInfo_instanceId_get, _mscl.EventActionInfo_instanceId_set) - __swig_destroy__ = _mscl.delete_EventActionInfo - -# Register EventActionInfo in _mscl: -_mscl.EventActionInfo_swigregister(EventActionInfo) - -class MeasurementReferenceFrame(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MeasurementReferenceFrame_swiginit(self, _mscl.new_MeasurementReferenceFrame(*args)) - - def asMipFieldValues(self): - return _mscl.MeasurementReferenceFrame_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.MeasurementReferenceFrame_appendMipFieldValues(self, appendTo) - - def translation(self, *args): - return _mscl.MeasurementReferenceFrame_translation(self, *args) - - def rotation(self, *args): - return _mscl.MeasurementReferenceFrame_rotation(self, *args) - - def errorTrackingEnabled(self): - return _mscl.MeasurementReferenceFrame_errorTrackingEnabled(self) - - def enableErrorTracking(self, enable=True): - return _mscl.MeasurementReferenceFrame_enableErrorTracking(self, enable) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrame - -# Register MeasurementReferenceFrame in _mscl: -_mscl.MeasurementReferenceFrame_swigregister(MeasurementReferenceFrame) - -class MipChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipChannel_swiginit(self, _mscl.new_MipChannel(*args)) - - def channelField(self): - return _mscl.MipChannel_channelField(self) - - def sampleRate(self): - return _mscl.MipChannel_sampleRate(self) - - def rateDecimation(self, sampleRateBase): - return _mscl.MipChannel_rateDecimation(self, sampleRateBase) - __swig_destroy__ = _mscl.delete_MipChannel - -# Register MipChannel in _mscl: -_mscl.MipChannel_swigregister(MipChannel) - -class MipPacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MIP_ACK_NACK_ERROR_NONE = _mscl.MipPacket_MIP_ACK_NACK_ERROR_NONE - MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND - MIP_ACK_NACK_ERROR_CHECKSUM_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_CHECKSUM_INVALID - MIP_ACK_NACK_ERROR_PARAMETER_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_PARAMETER_INVALID - MIP_ACK_NACK_ERROR_COMMAND_FAILED = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_FAILED - MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT - MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET - - def __init__(self): - _mscl.MipPacket_swiginit(self, _mscl.new_MipPacket()) - - @staticmethod - def isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - - def descriptorSet(self): - return _mscl.MipPacket_descriptorSet(self) - - def payload(self): - return _mscl.MipPacket_payload(self) - __swig_destroy__ = _mscl.delete_MipPacket - -# Register MipPacket in _mscl: -_mscl.MipPacket_swigregister(MipPacket) - -def MipPacket_isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - -class MipDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def field(self): - return _mscl.MipDataPoint_field(self) - - def qualifier(self): - return _mscl.MipDataPoint_qualifier(self) - - def hasAddlIdentifiers(self): - return _mscl.MipDataPoint_hasAddlIdentifiers(self) - - def addlIdentifiers(self): - return _mscl.MipDataPoint_addlIdentifiers(self) - - def hasValidFlag(self): - return _mscl.MipDataPoint_hasValidFlag(self) - - def valid(self): - return _mscl.MipDataPoint_valid(self) - - def channelName(self, includeAddlIds=True, consolidatedFormat=False): - return _mscl.MipDataPoint_channelName(self, includeAddlIds, consolidatedFormat) - __swig_destroy__ = _mscl.delete_MipDataPoint - -# Register MipDataPoint in _mscl: -_mscl.MipDataPoint_swigregister(MipDataPoint) - -class ContinuousBIT(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def as_MipDataPoints(self): - return _mscl.ContinuousBIT_as_MipDataPoints(self) - - @staticmethod - def getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - - def data(self): - return _mscl.ContinuousBIT_data(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_bufferOverrun(self) - - def imuClockFault(self): - return _mscl.ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_pressureSelfTestFail(self) - - def filterTimingOverrun(self): - return _mscl.ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.ContinuousBIT_filterTimingUnderrun(self) - -# Register ContinuousBIT in _mscl: -_mscl.ContinuousBIT_swigregister(ContinuousBIT) - -def ContinuousBIT_getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - -class ContinuousBIT_System_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - SYSTEM_CLOCK_FAILURE = _mscl.ContinuousBIT_System_General_SYSTEM_CLOCK_FAILURE - POWER_FAULT = _mscl.ContinuousBIT_System_General_POWER_FAULT - FIRMWARE_FAULT = _mscl.ContinuousBIT_System_General_FIRMWARE_FAULT - TIMING_OVERLOAD = _mscl.ContinuousBIT_System_General_TIMING_OVERLOAD - BUFFER_OVERRUN = _mscl.ContinuousBIT_System_General_BUFFER_OVERRUN - - def flags(self): - return _mscl.ContinuousBIT_System_General_flags(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_System_General_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_System_General_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_System_General_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_System_General_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_System_General_bufferOverrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_General - -# Register ContinuousBIT_System_General in _mscl: -_mscl.ContinuousBIT_System_General_swigregister(ContinuousBIT_System_General) - -class ContinuousBIT_System_Process(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def flags(self): - return _mscl.ContinuousBIT_System_Process_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_Process - -# Register ContinuousBIT_System_Process in _mscl: -_mscl.ContinuousBIT_System_Process_swigregister(ContinuousBIT_System_Process) - -class ContinuousBIT_System(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_System_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_System_GENERAL_FLAGS - PROCESS_FLAGS = _mscl.ContinuousBIT_System_PROCESS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_System_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System - -# Register ContinuousBIT_System in _mscl: -_mscl.ContinuousBIT_System_swigregister(ContinuousBIT_System) - -class ContinuousBIT_IMU_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - CLOCK_FAULT = _mscl.ContinuousBIT_IMU_General_CLOCK_FAULT - COMMUNICATION_FAULT = _mscl.ContinuousBIT_IMU_General_COMMUNICATION_FAULT - TIMING_OVERRUN = _mscl.ContinuousBIT_IMU_General_TIMING_OVERRUN - CALIBRATION_ERROR_ACCEL = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_ACCEL - CALIBRATION_ERROR_GYRO = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_GYRO - CALIBRATION_ERROR_MAG = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_MAG - - def flags(self): - return _mscl.ContinuousBIT_IMU_General_flags(self) - - def clockFault(self): - return _mscl.ContinuousBIT_IMU_General_clockFault(self) - - def communicationFault(self): - return _mscl.ContinuousBIT_IMU_General_communicationFault(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_IMU_General_timingOverrun(self) - - def calibrationErrorAccel(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorAccel(self) - - def calibrationErrorGyro(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorGyro(self) - - def calibrationErrorMag(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorMag(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_General - -# Register ContinuousBIT_IMU_General in _mscl: -_mscl.ContinuousBIT_IMU_General_swigregister(ContinuousBIT_IMU_General) - -class ContinuousBIT_IMU_Sensors(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - ACCEL_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_GENERAL_FAULT - ACCEL_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_OVERRANGE - ACCEL_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_SELF_TEST_FAIL - GYRO_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_GYRO_GENERAL_FAULT - GYRO_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_GYRO_OVERRANGE - GYRO_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_GYRO_SELF_TEST_FAIL - MAG_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_MAG_GENERAL_FAULT - MAG_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_MAG_OVERRANGE - MAG_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_MAG_SELF_TEST_FAIL - PRESSURE_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_GENERAL_FAULT - PRESSURE_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_OVERRANGE - PRESSURE_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_SELF_TEST_FAIL - - def flags(self): - return _mscl.ContinuousBIT_IMU_Sensors_flags(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureSelfTestFail(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_Sensors - -# Register ContinuousBIT_IMU_Sensors in _mscl: -_mscl.ContinuousBIT_IMU_Sensors_swigregister(ContinuousBIT_IMU_Sensors) - -class ContinuousBIT_IMU(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_IMU_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_IMU_GENERAL_FLAGS - SENSORS_FLAGS = _mscl.ContinuousBIT_IMU_SENSORS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_IMU_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU - -# Register ContinuousBIT_IMU in _mscl: -_mscl.ContinuousBIT_IMU_swigregister(ContinuousBIT_IMU) - -class ContinuousBIT_Filter_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - TIMING_OVERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_OVERRUN - TIMING_UNDERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_UNDERRUN - - def flags(self): - return _mscl.ContinuousBIT_Filter_General_flags(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_Filter_General_timingOverrun(self) - - def timingUnderrun(self): - return _mscl.ContinuousBIT_Filter_General_timingUnderrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter_General - -# Register ContinuousBIT_Filter_General in _mscl: -_mscl.ContinuousBIT_Filter_General_swigregister(ContinuousBIT_Filter_General) - -class ContinuousBIT_Filter(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_Filter_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_Filter_GENERAL_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_Filter_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter - -# Register ContinuousBIT_Filter in _mscl: -_mscl.ContinuousBIT_Filter_swigregister(ContinuousBIT_Filter) - -class CV7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_General_swiginit(self, _mscl.new_CV7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_General - -# Register CV7ContinuousBIT_System_General in _mscl: -_mscl.CV7ContinuousBIT_System_General_swigregister(CV7ContinuousBIT_System_General) - -class CV7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_Process_swiginit(self, _mscl.new_CV7ContinuousBIT_System_Process(*args)) - IMU_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_IMU_PROCESS_FAULT - IMU_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_IMU_RATE_MISMATCH - IMU_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_IMU_DROPPED_DATA - IMU_STUCK = _mscl.CV7ContinuousBIT_System_Process_IMU_STUCK - FILTER_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_FILTER_PROCESS_FAULT - FILTER_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_FILTER_DROPPED_DATA - FILTER_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_FILTER_RATE_MISMATCH - FILTER_STUCK = _mscl.CV7ContinuousBIT_System_Process_FILTER_STUCK - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_filterStuck(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_Process - -# Register CV7ContinuousBIT_System_Process in _mscl: -_mscl.CV7ContinuousBIT_System_Process_swigregister(CV7ContinuousBIT_System_Process) - -class CV7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_swiginit(self, _mscl.new_CV7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.CV7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System - -# Register CV7ContinuousBIT_System in _mscl: -_mscl.CV7ContinuousBIT_System_swigregister(CV7ContinuousBIT_System) - -class CV7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_General - -# Register CV7ContinuousBIT_IMU_General in _mscl: -_mscl.CV7ContinuousBIT_IMU_General_swigregister(CV7ContinuousBIT_IMU_General) - -class CV7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_Sensors - -# Register CV7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.CV7ContinuousBIT_IMU_Sensors_swigregister(CV7ContinuousBIT_IMU_Sensors) - -class CV7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU(*args)) - FACTORY_BITS_INVALID = _mscl.CV7ContinuousBIT_IMU_FACTORY_BITS_INVALID - - def general(self): - return _mscl.CV7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.CV7ContinuousBIT_IMU_sensors(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_IMU_factoryBitsInvalid(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU - -# Register CV7ContinuousBIT_IMU in _mscl: -_mscl.CV7ContinuousBIT_IMU_swigregister(CV7ContinuousBIT_IMU) - -class CV7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter_General(*args)) - FAULT = _mscl.CV7ContinuousBIT_Filter_General_FAULT - - def fault(self): - return _mscl.CV7ContinuousBIT_Filter_General_fault(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter_General - -# Register CV7ContinuousBIT_Filter_General in _mscl: -_mscl.CV7ContinuousBIT_Filter_General_swigregister(CV7ContinuousBIT_Filter_General) - -class CV7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter - -# Register CV7ContinuousBIT_Filter in _mscl: -_mscl.CV7ContinuousBIT_Filter_swigregister(CV7ContinuousBIT_Filter) - -class CV7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.CV7ContinuousBIT_swiginit(self, _mscl.new_CV7ContinuousBIT(bytes)) - - def system(self): - return _mscl.CV7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.CV7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.CV7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.CV7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.CV7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.CV7ContinuousBIT_bufferOverrun(self) - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_filterStuck(self) - - def imu(self): - return _mscl.CV7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.CV7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.CV7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.CV7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.CV7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.CV7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.CV7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.CV7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.CV7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.CV7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.CV7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.CV7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.CV7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.CV7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.CV7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.CV7ContinuousBIT_pressureSelfTestFail(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_factoryBitsInvalid(self) - - def filter(self): - return _mscl.CV7ContinuousBIT_filter(self) - - def filterFault(self): - return _mscl.CV7ContinuousBIT_filterFault(self) - - def filterTimingOverrun(self): - return _mscl.CV7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.CV7ContinuousBIT_filterTimingUnderrun(self) - - def as_MipDataPoints(self): - return _mscl.CV7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT - -# Register CV7ContinuousBIT in _mscl: -_mscl.CV7ContinuousBIT_swigregister(CV7ContinuousBIT) - -class GQ7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_General - -# Register GQ7ContinuousBIT_System_General in _mscl: -_mscl.GQ7ContinuousBIT_System_General_swigregister(GQ7ContinuousBIT_System_General) - -class GQ7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_Process_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_Process(*args)) - IMU_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_CONTROL_LINE_FAULT - IMU_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_COMMAND_RESPONSE_FAULT - IMU_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_SPI_TRANSFER_FAULT - IMU_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_DATA_FRAME_FAULT - FILTER_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_CONTROL_LINE_FAULT - FILTER_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_COMMAND_RESPONSE_FAULT - FILTER_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_SPI_TRANSFER_FAULT - FILTER_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_DATA_FRAME_FAULT - GNSS_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_CONTROL_LINE_FAULT - GNSS_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_COMMAND_RESPONSE_FAULT - GNSS_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_SPI_TRANSFER_FAULT - GNSS_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_DATA_FRAME_FAULT - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssDataFrameFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_Process - -# Register GQ7ContinuousBIT_System_Process in _mscl: -_mscl.GQ7ContinuousBIT_System_Process_swigregister(GQ7ContinuousBIT_System_Process) - -class GQ7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_swiginit(self, _mscl.new_GQ7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.GQ7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System - -# Register GQ7ContinuousBIT_System in _mscl: -_mscl.GQ7ContinuousBIT_System_swigregister(GQ7ContinuousBIT_System) - -class GQ7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_General - -# Register GQ7ContinuousBIT_IMU_General in _mscl: -_mscl.GQ7ContinuousBIT_IMU_General_swigregister(GQ7ContinuousBIT_IMU_General) - -class GQ7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_Sensors - -# Register GQ7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.GQ7ContinuousBIT_IMU_Sensors_swigregister(GQ7ContinuousBIT_IMU_Sensors) - -class GQ7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.GQ7ContinuousBIT_IMU_sensors(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU - -# Register GQ7ContinuousBIT_IMU in _mscl: -_mscl.GQ7ContinuousBIT_IMU_swigregister(GQ7ContinuousBIT_IMU) - -class GQ7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_HARDWARE_FAULT - COMMUNICATION_ERROR_IMU_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_IMU_SPI - COMMUNICATION_ERROR_GNSS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_GNSS_SPI - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_COMMS_UART = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_UART - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationError(self) - - def communicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorImuSpi(self) - - def communicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorGnssSpi(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsSpi(self) - - def communicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsUart(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter_General - -# Register GQ7ContinuousBIT_Filter_General in _mscl: -_mscl.GQ7ContinuousBIT_Filter_General_swigregister(GQ7ContinuousBIT_Filter_General) - -class GQ7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter - -# Register GQ7ContinuousBIT_Filter in _mscl: -_mscl.GQ7ContinuousBIT_Filter_swigregister(GQ7ContinuousBIT_Filter) - -class GQ7ContinuousBIT_GNSS_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_HARDWARE_FAULT - COMMUNICATION_ERROR_COMMS_SERIAL = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SERIAL - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_NAV_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_NAV_SPI - GPS_TIME_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_GPS_TIME_FAULT - TIMING_OVERRUN = _mscl.GQ7ContinuousBIT_GNSS_General_TIMING_OVERRUN - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_flags(self) - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationError(self) - - def communicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSerial(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSpi(self) - - def communicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_gpsTimeFault(self) - - def timingOverrun(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_timingOverrun(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_General - -# Register GQ7ContinuousBIT_GNSS_General in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_General_swigregister(GQ7ContinuousBIT_GNSS_General) - -class GQ7ContinuousBIT_GNSS_Receivers(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_Receivers_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_Receivers(*args)) - POWER_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_1 - FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_1 - SHORTED_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_1 - OPEN_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_1 - SOLUTION_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_1 - POWER_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_2 - FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_2 - SHORTED_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_2 - OPEN_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_2 - SOLUTION_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_2 - RTCM_COMMUNICATION_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTCM_COMMUNICATION_FAULT - RTK_DONGLE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTK_DONGLE_FAULT - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_flags(self) - - def powerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver1(self) - - def faultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver1(self) - - def shortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna1(self) - - def openAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna1(self) - - def solutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver1(self) - - def powerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver2(self) - - def faultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver2(self) - - def shortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna2(self) - - def openAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna2(self) - - def solutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtkDongleFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_Receivers - -# Register GQ7ContinuousBIT_GNSS_Receivers in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_Receivers_swigregister(GQ7ContinuousBIT_GNSS_Receivers) - -class GQ7ContinuousBIT_GNSS(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS(*args)) - RESPONSE_OFFSET = _mscl.GQ7ContinuousBIT_GNSS_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_GENERAL_FLAGS - RECEIVERS_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_RECEIVERS_FLAGS - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_flags(self) - - def general(self): - return _mscl.GQ7ContinuousBIT_GNSS_general(self) - - def receivers(self): - return _mscl.GQ7ContinuousBIT_GNSS_receivers(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS - -# Register GQ7ContinuousBIT_GNSS in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_swigregister(GQ7ContinuousBIT_GNSS) - -class GQ7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.GQ7ContinuousBIT_swiginit(self, _mscl.new_GQ7ContinuousBIT(bytes)) - - def system(self): - return _mscl.GQ7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.GQ7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.GQ7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.GQ7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.GQ7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.GQ7ContinuousBIT_bufferOverrun(self) - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_gnssDataFrameFault(self) - - def imu(self): - return _mscl.GQ7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.GQ7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.GQ7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.GQ7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.GQ7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.GQ7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.GQ7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.GQ7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.GQ7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.GQ7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_pressureSelfTestFail(self) - - def filter(self): - return _mscl.GQ7ContinuousBIT_filter(self) - - def filterClockFault(self): - return _mscl.GQ7ContinuousBIT_filterClockFault(self) - - def filterHardwareFault(self): - return _mscl.GQ7ContinuousBIT_filterHardwareFault(self) - - def filterTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingUnderrun(self) - - def filterCommunicationError(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationError(self) - - def filterCommunicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorImuSpi(self) - - def filterCommunicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorGnssSpi(self) - - def filterCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsSpi(self) - - def filterCommunicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsUart(self) - - def gnss(self): - return _mscl.GQ7ContinuousBIT_gnss(self) - - def gnssClockFault(self): - return _mscl.GQ7ContinuousBIT_gnssClockFault(self) - - def gnssHardwareFault(self): - return _mscl.GQ7ContinuousBIT_gnssHardwareFault(self) - - def gnssCommunicationError(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationError(self) - - def gnssCommunicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSerial(self) - - def gnssCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSpi(self) - - def gnssCommunicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_gpsTimeFault(self) - - def gnssTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_gnssTimingOverrun(self) - - def gnssPowerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver1(self) - - def gnssFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver1(self) - - def gnssShortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna1(self) - - def gnssOpenAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna1(self) - - def gnssSolutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver1(self) - - def gnssPowerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver2(self) - - def gnssFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver2(self) - - def gnssShortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna2(self) - - def gnssOpenAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna2(self) - - def gnssSolutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_rtkDongleFault(self) - - def as_MipDataPoints(self): - return _mscl.GQ7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT - -# Register GQ7ContinuousBIT in _mscl: -_mscl.GQ7ContinuousBIT_swigregister(GQ7ContinuousBIT) - -class MipSharedDataFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EVENT_SOURCE_NONE = _mscl.MipSharedDataFields_EVENT_SOURCE_NONE - EVENT_SOURCE_UNKNOWN = _mscl.MipSharedDataFields_EVENT_SOURCE_UNKNOWN - - def __init__(self): - _mscl.MipSharedDataFields_swiginit(self, _mscl.new_MipSharedDataFields()) - - def hasEventSource(self): - return _mscl.MipSharedDataFields_hasEventSource(self) - - def eventSource(self): - return _mscl.MipSharedDataFields_eventSource(self) - - def hasTicks(self): - return _mscl.MipSharedDataFields_hasTicks(self) - - def ticks(self): - return _mscl.MipSharedDataFields_ticks(self) - - def hasDeltaTicks(self): - return _mscl.MipSharedDataFields_hasDeltaTicks(self) - - def deltaTicks(self): - return _mscl.MipSharedDataFields_deltaTicks(self) - - def hasGpsTimestamp(self): - return _mscl.MipSharedDataFields_hasGpsTimestamp(self) - - def gpsTimestamp(self): - return _mscl.MipSharedDataFields_gpsTimestamp(self) - - def gpsTimestampValid(self): - return _mscl.MipSharedDataFields_gpsTimestampValid(self) - - def hasDeltaTime(self): - return _mscl.MipSharedDataFields_hasDeltaTime(self) - - def deltaTime(self): - return _mscl.MipSharedDataFields_deltaTime(self) - - def hasReferenceTime(self): - return _mscl.MipSharedDataFields_hasReferenceTime(self) - - def referenceTime(self): - return _mscl.MipSharedDataFields_referenceTime(self) - - def hasDeltaReferenceTime(self): - return _mscl.MipSharedDataFields_hasDeltaReferenceTime(self) - - def deltaReferenceTime(self): - return _mscl.MipSharedDataFields_deltaReferenceTime(self) - - def hasExternalTimestamp(self): - return _mscl.MipSharedDataFields_hasExternalTimestamp(self) - - def externalTimestamp(self): - return _mscl.MipSharedDataFields_externalTimestamp(self) - - def externalTimestampValid(self): - return _mscl.MipSharedDataFields_externalTimestampValid(self) - - def hasDeltaExternalTime(self): - return _mscl.MipSharedDataFields_hasDeltaExternalTime(self) - - def deltaExternalTime(self): - return _mscl.MipSharedDataFields_deltaExternalTime(self) - - def deltaExternalTimeValid(self): - return _mscl.MipSharedDataFields_deltaExternalTimeValid(self) - - def get(self, *args): - return _mscl.MipSharedDataFields_get(self, *args) - __swig_destroy__ = _mscl.delete_MipSharedDataFields - -# Register MipSharedDataFields in _mscl: -_mscl.MipSharedDataFields_swigregister(MipSharedDataFields) - -class MipDataPacket(MipPacket): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipDataPacket_swiginit(self, _mscl.new_MipDataPacket(*args)) - - def data(self): - return _mscl.MipDataPacket_data(self) - - def shared(self): - return _mscl.MipDataPacket_shared(self) - - def collectedTimestamp(self): - return _mscl.MipDataPacket_collectedTimestamp(self) - - def deviceTimestamp(self): - return _mscl.MipDataPacket_deviceTimestamp(self) - - def hasDeviceTime(self): - return _mscl.MipDataPacket_hasDeviceTime(self) - - def deviceTimeValid(self): - return _mscl.MipDataPacket_deviceTimeValid(self) - - def deviceTimeFlags(self): - return _mscl.MipDataPacket_deviceTimeFlags(self) - __swig_destroy__ = _mscl.delete_MipDataPacket - -# Register MipDataPacket in _mscl: -_mscl.MipDataPacket_swigregister(MipDataPacket) - -class RawBytePacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INVALID_PACKET = _mscl.RawBytePacket_INVALID_PACKET - DATA_PACKET = _mscl.RawBytePacket_DATA_PACKET - COMMAND_PACKET = _mscl.RawBytePacket_COMMAND_PACKET - NO_PACKET_FOUND = _mscl.RawBytePacket_NO_PACKET_FOUND - FROM_READ = _mscl.RawBytePacket_FROM_READ - FROM_SEND = _mscl.RawBytePacket_FROM_SEND - - def __init__(self): - _mscl.RawBytePacket_swiginit(self, _mscl.new_RawBytePacket()) - - def type(self, *args): - return _mscl.RawBytePacket_type(self, *args) - - def source(self, *args): - return _mscl.RawBytePacket_source(self, *args) - - def payload(self, *args): - return _mscl.RawBytePacket_payload(self, *args) - __swig_destroy__ = _mscl.delete_RawBytePacket - -# Register RawBytePacket in _mscl: -_mscl.RawBytePacket_swigregister(RawBytePacket) - -class MipNodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_MipNodeFeatures - - @staticmethod - def isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - - def supportsCategory(self, dataClass): - return _mscl.MipNodeFeatures_supportsCategory(self, dataClass) - - def supportsCommand(self, commandId): - return _mscl.MipNodeFeatures_supportsCommand(self, commandId) - - def supportedCommands(self): - return _mscl.MipNodeFeatures_supportedCommands(self) - - def supportsChannelField(self, fieldId): - return _mscl.MipNodeFeatures_supportsChannelField(self, fieldId) - - def filterSupportedChannelFields(self, fields): - return _mscl.MipNodeFeatures_filterSupportedChannelFields(self, fields) - - def supportedChannelFields(self, *args): - return _mscl.MipNodeFeatures_supportedChannelFields(self, *args) - - def supportedSampleRates(self, dataClass): - return _mscl.MipNodeFeatures_supportedSampleRates(self, dataClass) - - def baseDataRate(self, dataClass): - return _mscl.MipNodeFeatures_baseDataRate(self, dataClass) - - def gnssReceiverInfo(self): - return _mscl.MipNodeFeatures_gnssReceiverInfo(self) - - def supportedGnssSources(self): - return _mscl.MipNodeFeatures_supportedGnssSources(self) - - def supportedSensorRanges(self, *args): - return _mscl.MipNodeFeatures_supportedSensorRanges(self, *args) - - def getCommPortInfo(self): - return _mscl.MipNodeFeatures_getCommPortInfo(self) - - def useLegacyIdsForEnableDataStream(self): - return _mscl.MipNodeFeatures_useLegacyIdsForEnableDataStream(self) - - def supportedHeadingUpdateOptions(self): - return _mscl.MipNodeFeatures_supportedHeadingUpdateOptions(self) - - def supportedHeadingAlignmentMethods(self): - return _mscl.MipNodeFeatures_supportedHeadingAlignmentMethods(self) - - def supportedStatusSelectors(self): - return _mscl.MipNodeFeatures_supportedStatusSelectors(self) - - def supportedEstimationControlOptions(self): - return _mscl.MipNodeFeatures_supportedEstimationControlOptions(self) - - def supportedVehicleModeTypes(self): - return _mscl.MipNodeFeatures_supportedVehicleModeTypes(self) - - def supportedAdaptiveMeasurementModes(self): - return _mscl.MipNodeFeatures_supportedAdaptiveMeasurementModes(self) - - def supportedAdaptiveFilterLevels(self): - return _mscl.MipNodeFeatures_supportedAdaptiveFilterLevels(self) - - def supportedAidingMeasurementOptions(self): - return _mscl.MipNodeFeatures_supportedAidingMeasurementOptions(self) - - def supportedPpsSourceOptions(self): - return _mscl.MipNodeFeatures_supportedPpsSourceOptions(self) - - def supportedGpioPins(self): - return _mscl.MipNodeFeatures_supportedGpioPins(self) - - def supportedGpioPinModes(self, feature, behavior): - return _mscl.MipNodeFeatures_supportedGpioPinModes(self, feature, behavior) - - def supportedGpioBehaviors(self, feature, pin): - return _mscl.MipNodeFeatures_supportedGpioBehaviors(self, feature, pin) - - def supportedGpioFeatures(self, pin): - return _mscl.MipNodeFeatures_supportedGpioFeatures(self, pin) - - def supportedGpioConfigurations(self): - return _mscl.MipNodeFeatures_supportedGpioConfigurations(self) - - def supportedGnssSignalConfigurations(self): - return _mscl.MipNodeFeatures_supportedGnssSignalConfigurations(self) - - def supportedDeclinationSources(self): - return _mscl.MipNodeFeatures_supportedDeclinationSources(self) - - def supportedInclinationSources(self): - return _mscl.MipNodeFeatures_supportedInclinationSources(self) - - def supportedMagneticMagnitudeSources(self): - return _mscl.MipNodeFeatures_supportedMagneticMagnitudeSources(self) - - def supportedEventThresholdChannels(self): - return _mscl.MipNodeFeatures_supportedEventThresholdChannels(self) - - def supportedEventActionInfo(self): - return _mscl.MipNodeFeatures_supportedEventActionInfo(self) - - def supportedEventTriggerInfo(self): - return _mscl.MipNodeFeatures_supportedEventTriggerInfo(self) - - def supportsNorthCompensation(self): - return _mscl.MipNodeFeatures_supportsNorthCompensation(self) - - def supportedLowPassFilterChannelFields(self): - return _mscl.MipNodeFeatures_supportedLowPassFilterChannelFields(self) - - def maxMeasurementReferenceFrameId(self): - return _mscl.MipNodeFeatures_maxMeasurementReferenceFrameId(self) - -# Register MipNodeFeatures in _mscl: -_mscl.MipNodeFeatures_swigregister(MipNodeFeatures) - -def MipNodeFeatures_isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - -class MipNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.MipNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - def getConfigCommandBytes(self): - return _mscl.MipNode_getConfigCommandBytes(self) - - def sendCommandBytes(self, *args): - return _mscl.MipNode_sendCommandBytes(self, *args) - - @staticmethod - def deviceName(serial): - return _mscl.MipNode_deviceName(serial) - - def connection(self): - return _mscl.MipNode_connection(self) - - def features(self): - return _mscl.MipNode_features(self) - - def clearDeviceInfo(self): - return _mscl.MipNode_clearDeviceInfo(self) - - def lastCommunicationTime(self): - return _mscl.MipNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.MipNode_lastDeviceState(self) - - def setLastDeviceState(self, state): - return _mscl.MipNode_setLastDeviceState(self, state) - - def firmwareVersion(self): - return _mscl.MipNode_firmwareVersion(self) - - def model(self): - return _mscl.MipNode_model(self) - - def modelName(self): - return _mscl.MipNode_modelName(self) - - def modelNumber(self): - return _mscl.MipNode_modelNumber(self) - - def serialNumber(self): - return _mscl.MipNode_serialNumber(self) - - def lotNumber(self): - return _mscl.MipNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.MipNode_deviceOptions(self) - - def timeout(self, *args): - return _mscl.MipNode_timeout(self, *args) - - def name(self): - return _mscl.MipNode_name(self) - - def ping(self): - return _mscl.MipNode_ping(self) - - def setToIdle(self): - return _mscl.MipNode_setToIdle(self) - - def cyclePower(self): - return _mscl.MipNode_cyclePower(self) - - def resume(self): - return _mscl.MipNode_resume(self) - - def getCommunicationMode(self): - return _mscl.MipNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.MipNode_setCommunicationMode(self, communicationMode) - - def saveSettingsAsStartup(self, *args): - return _mscl.MipNode_saveSettingsAsStartup(self, *args) - - def loadStartupSettings(self, *args): - return _mscl.MipNode_loadStartupSettings(self, *args) - - def loadFactoryDefaultSettings(self, *args): - return _mscl.MipNode_loadFactoryDefaultSettings(self, *args) - - def setUARTBaudRate(self, *args): - return _mscl.MipNode_setUARTBaudRate(self, *args) - - def getUARTBaudRate(self, portId=1): - return _mscl.MipNode_getUARTBaudRate(self, portId) - - def getRawBytePackets(self, timeout=0, maxPackets=0): - return _mscl.MipNode_getRawBytePackets(self, timeout, maxPackets) - -# Register MipNode in _mscl: -_mscl.MipNode_swigregister(MipNode) - -def MipNode_deviceName(serial): - return _mscl.MipNode_deviceName(serial) - -class InertialNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.InertialNode_swiginit(self, _mscl.new_InertialNode(connection)) - __swig_destroy__ = _mscl.delete_InertialNode - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.InertialNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.InertialNode_totalPackets(self) - - def pollData(self, *args): - return _mscl.InertialNode_pollData(self, *args) - - def getDataRateBase(self, dataClass): - return _mscl.InertialNode_getDataRateBase(self, dataClass) - - def getActiveChannelFields(self, dataClass): - return _mscl.InertialNode_getActiveChannelFields(self, dataClass) - - def setActiveChannelFields(self, dataClass, channels): - return _mscl.InertialNode_setActiveChannelFields(self, dataClass, channels) - - def saveActiveChannelFields(self, dataClass): - return _mscl.InertialNode_saveActiveChannelFields(self, dataClass) - - def setFactoryStreamingChannels(self, option): - return _mscl.InertialNode_setFactoryStreamingChannels(self, option) - - def getInterfaceControl(self, interfaceId): - return _mscl.InertialNode_getInterfaceControl(self, interfaceId) - - def setInterfaceControl(self, *args): - return _mscl.InertialNode_setInterfaceControl(self, *args) - - def getCommunicationMode(self): - return _mscl.InertialNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.InertialNode_setCommunicationMode(self, communicationMode) - - def isDataStreamEnabled(self, dataClass): - return _mscl.InertialNode_isDataStreamEnabled(self, dataClass) - - def enableDataStream(self, dataClass, enable=True, resumeStreaming=True): - return _mscl.InertialNode_enableDataStream(self, dataClass, enable, resumeStreaming) - - def resetFilter(self): - return _mscl.InertialNode_resetFilter(self) - - def runFilter(self): - return _mscl.InertialNode_runFilter(self) - - def getAutoInitialization(self): - return _mscl.InertialNode_getAutoInitialization(self) - - def setAutoInitialization(self, enable): - return _mscl.InertialNode_setAutoInitialization(self, enable) - - def getAltitudeAid(self): - return _mscl.InertialNode_getAltitudeAid(self) - - def setAltitudeAid(self, enable): - return _mscl.InertialNode_setAltitudeAid(self, enable) - - def getPitchRollAid(self): - return _mscl.InertialNode_getPitchRollAid(self) - - def setPitchRollAid(self, enable): - return _mscl.InertialNode_setPitchRollAid(self, enable) - - def enableVerticalGyroConstraint(self, enable): - return _mscl.InertialNode_enableVerticalGyroConstraint(self, enable) - - def verticalGyroConstraintEnabled(self): - return _mscl.InertialNode_verticalGyroConstraintEnabled(self) - - def enableWheeledVehicleConstraint(self, enable): - return _mscl.InertialNode_enableWheeledVehicleConstraint(self, enable) - - def wheeledVehicleConstraintEnabled(self): - return _mscl.InertialNode_wheeledVehicleConstraintEnabled(self) - - def setVelocityZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setVelocityZUPT(self, ZUPTSettings) - - def getVelocityZUPT(self): - return _mscl.InertialNode_getVelocityZUPT(self) - - def setAngularRateZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setAngularRateZUPT(self, ZUPTSettings) - - def getAngularRateZUPT(self): - return _mscl.InertialNode_getAngularRateZUPT(self) - - def cmdedVelZUPT(self): - return _mscl.InertialNode_cmdedVelZUPT(self) - - def cmdedAngRateZUPT(self): - return _mscl.InertialNode_cmdedAngRateZUPT(self) - - def setInitialAttitude(self, attitude): - return _mscl.InertialNode_setInitialAttitude(self, attitude) - - def setInitialHeading(self, heading): - return _mscl.InertialNode_setInitialHeading(self, heading) - - def getInitialFilterConfiguration(self): - return _mscl.InertialNode_getInitialFilterConfiguration(self) - - def setInitialFilterConfiguration(self, filterConfig): - return _mscl.InertialNode_setInitialFilterConfiguration(self, filterConfig) - - def getSensorToVehicleRotation_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleRotation_eulerAngles(self) - - def setSensorToVehicleRotation_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleRotation_eulerAngles(self, angles) - - def getSensorToVehicleRotation_matrix(self): - return _mscl.InertialNode_getSensorToVehicleRotation_matrix(self) - - def setSensorToVehicleRotation_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleRotation_matrix(self, dcm) - - def getSensorToVehicleRotation_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleRotation_quaternion(self) - - def setSensorToVehicleRotation_quaternion(self, rotation): - return _mscl.InertialNode_setSensorToVehicleRotation_quaternion(self, rotation) - - def getSensorToVehicleTransform_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleTransform_eulerAngles(self) - - def setSensorToVehicleTransform_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleTransform_eulerAngles(self, angles) - - def getSensorToVehicleTransform_matrix(self): - return _mscl.InertialNode_getSensorToVehicleTransform_matrix(self) - - def setSensorToVehicleTransform_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleTransform_matrix(self, dcm) - - def getSensorToVehicleTransform_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleTransform_quaternion(self) - - def setSensorToVehicleTransform_quaternion(self, transformation): - return _mscl.InertialNode_setSensorToVehicleTransform_quaternion(self, transformation) - - def getSensorToVehicleOffset(self): - return _mscl.InertialNode_getSensorToVehicleOffset(self) - - def setSensorToVehicleOffset(self, offset): - return _mscl.InertialNode_setSensorToVehicleOffset(self, offset) - - def getAntennaOffset(self): - return _mscl.InertialNode_getAntennaOffset(self) - - def setAntennaOffset(self, offset): - return _mscl.InertialNode_setAntennaOffset(self, offset) - - def getGNSSAssistedFixControl(self): - return _mscl.InertialNode_getGNSSAssistedFixControl(self) - - def setGNSSAssistedFixControl(self, enableAssistedFix): - return _mscl.InertialNode_setGNSSAssistedFixControl(self, enableAssistedFix) - - def getGNSSAssistTimeUpdate(self): - return _mscl.InertialNode_getGNSSAssistTimeUpdate(self) - - def setGNSSAssistTimeUpdate(self, timeUpdate): - return _mscl.InertialNode_setGNSSAssistTimeUpdate(self, timeUpdate) - - def getGPSTimeUpdate(self, timeFrame): - return _mscl.InertialNode_getGPSTimeUpdate(self, timeFrame) - - def setGPSTimeUpdate(self, arg2, timeData): - return _mscl.InertialNode_setGPSTimeUpdate(self, arg2, timeData) - - def setConstellationSettings(self, dataToUse): - return _mscl.InertialNode_setConstellationSettings(self, dataToUse) - - def getConstellationSettings(self): - return _mscl.InertialNode_getConstellationSettings(self) - - def setSBASSettings(self, dataToUse): - return _mscl.InertialNode_setSBASSettings(self, dataToUse) - - def getSBASSettings(self): - return _mscl.InertialNode_getSBASSettings(self) - - def setAccelerometerBias(self, biasVector): - return _mscl.InertialNode_setAccelerometerBias(self, biasVector) - - def getAccelerometerBias(self): - return _mscl.InertialNode_getAccelerometerBias(self) - - def setGyroBias(self, biasVector): - return _mscl.InertialNode_setGyroBias(self, biasVector) - - def getGyroBias(self): - return _mscl.InertialNode_getGyroBias(self) - - def captureGyroBias(self, samplingTime): - return _mscl.InertialNode_captureGyroBias(self, samplingTime) - - def findMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_findMagnetometerCaptureAutoCalibration(self) - - def saveMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_saveMagnetometerCaptureAutoCalibration(self) - - def setMagnetometerSoftIronMatrix(self, matrix): - return _mscl.InertialNode_setMagnetometerSoftIronMatrix(self, matrix) - - def getMagnetometerSoftIronMatrix(self): - return _mscl.InertialNode_getMagnetometerSoftIronMatrix(self) - - def setMagnetometerHardIronOffset(self, offsetVector): - return _mscl.InertialNode_setMagnetometerHardIronOffset(self, offsetVector) - - def getMagnetometerHardIronOffset(self): - return _mscl.InertialNode_getMagnetometerHardIronOffset(self) - - def setConingAndScullingEnable(self, enable): - return _mscl.InertialNode_setConingAndScullingEnable(self, enable) - - def getConingAndScullingEnable(self): - return _mscl.InertialNode_getConingAndScullingEnable(self) - - def setLowPassFilterSettings(self, data): - return _mscl.InertialNode_setLowPassFilterSettings(self, data) - - def getLowPassFilterSettings(self, dataDescriptors): - return _mscl.InertialNode_getLowPassFilterSettings(self, dataDescriptors) - - def setComplementaryFilterSettings(self, data): - return _mscl.InertialNode_setComplementaryFilterSettings(self, data) - - def getComplementaryFilterSettings(self): - return _mscl.InertialNode_getComplementaryFilterSettings(self) - - def getBasicDeviceStatus(self): - return _mscl.InertialNode_getBasicDeviceStatus(self) - - def getDiagnosticDeviceStatus(self): - return _mscl.InertialNode_getDiagnosticDeviceStatus(self) - - def sendRawRTCM_2_3Message(self, theMessage): - return _mscl.InertialNode_sendRawRTCM_2_3Message(self, theMessage) - - def setVehicleDynamicsMode(self, mode): - return _mscl.InertialNode_setVehicleDynamicsMode(self, mode) - - def getVehicleDynamicsMode(self): - return _mscl.InertialNode_getVehicleDynamicsMode(self) - - def setEstimationControlFlags(self, flags): - return _mscl.InertialNode_setEstimationControlFlags(self, flags) - - def getEstimationControlFlags(self): - return _mscl.InertialNode_getEstimationControlFlags(self) - - def setInclinationSource(self, options): - return _mscl.InertialNode_setInclinationSource(self, options) - - def getInclinationSource(self): - return _mscl.InertialNode_getInclinationSource(self) - - def setDeclinationSource(self, options): - return _mscl.InertialNode_setDeclinationSource(self, options) - - def getDeclinationSource(self): - return _mscl.InertialNode_getDeclinationSource(self) - - def setMagneticFieldMagnitudeSource(self, options): - return _mscl.InertialNode_setMagneticFieldMagnitudeSource(self, options) - - def getMagneticFieldMagnitudeSource(self): - return _mscl.InertialNode_getMagneticFieldMagnitudeSource(self) - - def setGNSS_SourceControl(self, gnssSource): - return _mscl.InertialNode_setGNSS_SourceControl(self, gnssSource) - - def getGNSS_SourceControl(self): - return _mscl.InertialNode_getGNSS_SourceControl(self) - - def sendExternalGNSSUpdate(self, gnssUpdateData): - return _mscl.InertialNode_sendExternalGNSSUpdate(self, gnssUpdateData) - - def setHeadingUpdateControl(self, headingUpdateOptions): - return _mscl.InertialNode_setHeadingUpdateControl(self, headingUpdateOptions) - - def tareOrientation(self, axisValue): - return _mscl.InertialNode_tareOrientation(self, axisValue) - - def getHeadingUpdateControl(self): - return _mscl.InertialNode_getHeadingUpdateControl(self) - - def setGravityErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setGravityErrorAdaptiveMeasurement(self, data) - - def getGravityErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getGravityErrorAdaptiveMeasurement(self) - - def setMagnetometerErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagnetometerErrorAdaptiveMeasurement(self, data) - - def getMagnetometerErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagnetometerErrorAdaptiveMeasurement(self) - - def setMagDipAngleErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagDipAngleErrorAdaptiveMeasurement(self, data) - - def getMagDipAngleErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagDipAngleErrorAdaptiveMeasurement(self) - - def setMagNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setMagNoiseStandardDeviation(self, data) - - def getMagNoiseStandardDeviation(self): - return _mscl.InertialNode_getMagNoiseStandardDeviation(self) - - def setGravNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGravNoiseStandardDeviation(self, data) - - def getGravNoiseStandardDeviation(self): - return _mscl.InertialNode_getGravNoiseStandardDeviation(self) - - def setAccelNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setAccelNoiseStandardDeviation(self, data) - - def getAccelNoiseStandardDeviation(self): - return _mscl.InertialNode_getAccelNoiseStandardDeviation(self) - - def setGyroNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGyroNoiseStandardDeviation(self, data) - - def getGyroNoiseStandardDeviation(self): - return _mscl.InertialNode_getGyroNoiseStandardDeviation(self) - - def setPressureAltNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setPressureAltNoiseStandardDeviation(self, data) - - def getPressureAltNoiseStandardDeviation(self): - return _mscl.InertialNode_getPressureAltNoiseStandardDeviation(self) - - def setHardIronOffsetProcessNoise(self, data): - return _mscl.InertialNode_setHardIronOffsetProcessNoise(self, data) - - def getHardIronOffsetProcessNoise(self): - return _mscl.InertialNode_getHardIronOffsetProcessNoise(self) - - def setAccelBiasModelParams(self, data): - return _mscl.InertialNode_setAccelBiasModelParams(self, data) - - def getAccelBiasModelParams(self): - return _mscl.InertialNode_getAccelBiasModelParams(self) - - def setGyroBiasModelParams(self, data): - return _mscl.InertialNode_setGyroBiasModelParams(self, data) - - def getGyroBiasModelParams(self): - return _mscl.InertialNode_getGyroBiasModelParams(self) - - def setSoftIronMatrixProcessNoise(self, data): - return _mscl.InertialNode_setSoftIronMatrixProcessNoise(self, data) - - def getSoftIronMatrixProcessNoise(self): - return _mscl.InertialNode_getSoftIronMatrixProcessNoise(self) - - def setFixedReferencePosition(self, data): - return _mscl.InertialNode_setFixedReferencePosition(self, data) - - def getFixedReferencePosition(self): - return _mscl.InertialNode_getFixedReferencePosition(self) - - def setGPSDynamicsMode(self, data): - return _mscl.InertialNode_setGPSDynamicsMode(self, data) - - def getGPSDynamicsMode(self): - return _mscl.InertialNode_getGPSDynamicsMode(self) - - def setDevicePowerState(self, device, data): - return _mscl.InertialNode_setDevicePowerState(self, device, data) - - def getDevicePowerState(self, device): - return _mscl.InertialNode_getDevicePowerState(self, device) - - def setDeviceStreamFormat(self, device, data): - return _mscl.InertialNode_setDeviceStreamFormat(self, device, data) - - def getDeviceStreamFormat(self, device): - return _mscl.InertialNode_getDeviceStreamFormat(self, device) - - def setSignalConditioningSettings(self, data): - return _mscl.InertialNode_setSignalConditioningSettings(self, data) - - def getSignalConditioningSettings(self): - return _mscl.InertialNode_getSignalConditioningSettings(self) - - def setEnableDisableMeasurements(self, data): - return _mscl.InertialNode_setEnableDisableMeasurements(self, data) - - def getEnableDisableMeasurements(self): - return _mscl.InertialNode_getEnableDisableMeasurements(self) - - def setGravityNoiseMinimum(self, data): - return _mscl.InertialNode_setGravityNoiseMinimum(self, data) - - def getGravityNoiseMinimum(self): - return _mscl.InertialNode_getGravityNoiseMinimum(self) - - def sendExternalHeadingUpdate(self, *args): - return _mscl.InertialNode_sendExternalHeadingUpdate(self, *args) - - def aidingMeasurementEnabled(self, aidingSource): - return _mscl.InertialNode_aidingMeasurementEnabled(self, aidingSource) - - def enableDisableAidingMeasurement(self, aidingSource, enable): - return _mscl.InertialNode_enableDisableAidingMeasurement(self, aidingSource, enable) - - def getAdaptiveFilterOptions(self): - return _mscl.InertialNode_getAdaptiveFilterOptions(self) - - def setAdaptiveFilterOptions(self, options): - return _mscl.InertialNode_setAdaptiveFilterOptions(self, options) - - def getMultiAntennaOffset(self, receiverId): - return _mscl.InertialNode_getMultiAntennaOffset(self, receiverId) - - def setMultiAntennaOffset(self, receiverId, offset): - return _mscl.InertialNode_setMultiAntennaOffset(self, receiverId, offset) - - def getPpsSource(self): - return _mscl.InertialNode_getPpsSource(self) - - def setPpsSource(self, ppsSource): - return _mscl.InertialNode_setPpsSource(self, ppsSource) - - def getOdometerConfig(self): - return _mscl.InertialNode_getOdometerConfig(self) - - def setOdometerConfig(self, config): - return _mscl.InertialNode_setOdometerConfig(self, config) - - def getSensorRange(self, sensorRangeType): - return _mscl.InertialNode_getSensorRange(self, sensorRangeType) - - def setSensorRange(self, *args): - return _mscl.InertialNode_setSensorRange(self, *args) - - def getGpioConfig(self, pin): - return _mscl.InertialNode_getGpioConfig(self, pin) - - def setGpioConfig(self, config): - return _mscl.InertialNode_setGpioConfig(self, config) - - def getGpioState(self, pin): - return _mscl.InertialNode_getGpioState(self, pin) - - def setGpioState(self, pin, state): - return _mscl.InertialNode_setGpioState(self, pin, state) - - def getEventTriggerMode(self, instance): - return _mscl.InertialNode_getEventTriggerMode(self, instance) - - def setEventTriggerMode(self, instance, mode): - return _mscl.InertialNode_setEventTriggerMode(self, instance, mode) - - def getEventTriggerConfig(self, instance): - return _mscl.InertialNode_getEventTriggerConfig(self, instance) - - def setEventTriggerConfig(self, config): - return _mscl.InertialNode_setEventTriggerConfig(self, config) - - def getEventActionConfig(self, instance): - return _mscl.InertialNode_getEventActionConfig(self, instance) - - def setEventActionConfig(self, config, validateSupported=True): - return _mscl.InertialNode_setEventActionConfig(self, config, validateSupported) - - def getAntennaLeverArmCal(self): - return _mscl.InertialNode_getAntennaLeverArmCal(self) - - def setAntennaLeverArmCal(self, config): - return _mscl.InertialNode_setAntennaLeverArmCal(self, config) - - def getRelativePositionReference(self): - return _mscl.InertialNode_getRelativePositionReference(self) - - def setRelativePositionReference(self, ref): - return _mscl.InertialNode_setRelativePositionReference(self, ref) - - def getLeverArmReferenceOffset(self): - return _mscl.InertialNode_getLeverArmReferenceOffset(self) - - def setLeverArmReferenceOffset(self, offset): - return _mscl.InertialNode_setLeverArmReferenceOffset(self, offset) - - def sendExternalSpeedMeasurementUpdate(self, tow, speed, unc): - return _mscl.InertialNode_sendExternalSpeedMeasurementUpdate(self, tow, speed, unc) - - def getSpeedMeasurementOffset(self): - return _mscl.InertialNode_getSpeedMeasurementOffset(self) - - def setSpeedMeasurementOffset(self, offset): - return _mscl.InertialNode_setSpeedMeasurementOffset(self, offset) - - def getGnssSignalConfig(self): - return _mscl.InertialNode_getGnssSignalConfig(self) - - def setGnssSignalConfig(self, config): - return _mscl.InertialNode_setGnssSignalConfig(self, config) - - def getGnssSpartnConfig(self): - return _mscl.InertialNode_getGnssSpartnConfig(self) - - def setGnssSpartnConfig(self, config): - return _mscl.InertialNode_setGnssSpartnConfig(self, config) - - def rtkEnabled(self): - return _mscl.InertialNode_rtkEnabled(self) - - def enableRtk(self, enable): - return _mscl.InertialNode_enableRtk(self, enable) - - def getEventTriggerStatus(self, *args): - return _mscl.InertialNode_getEventTriggerStatus(self, *args) - - def getEventActionStatus(self, *args): - return _mscl.InertialNode_getEventActionStatus(self, *args) - - def getNmeaMessageFormat(self): - return _mscl.InertialNode_getNmeaMessageFormat(self) - - def setNmeaMessageFormat(self, nmeaFormats): - return _mscl.InertialNode_setNmeaMessageFormat(self, nmeaFormats) - - def getAidingMeasurementReferenceFrames(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrames(self, *args) - - def setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds=False): - return _mscl.InertialNode_setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds) - - def getAidingMeasurementReferenceFrame(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrame(self, *args) - - def setAidingMeasurementReferenceFrame(self, id, frame): - return _mscl.InertialNode_setAidingMeasurementReferenceFrame(self, id, frame) - - def setAidingMeasurementResponseMode(self, mode): - return _mscl.InertialNode_setAidingMeasurementResponseMode(self, mode) - - def getAidingMeasurementResponseMode(self): - return _mscl.InertialNode_getAidingMeasurementResponseMode(self) - - def sendAidingMeasurement(self, *args): - return _mscl.InertialNode_sendAidingMeasurement(self, *args) - - def sendAidingMeasurement_readEcho(self, *args): - return _mscl.InertialNode_sendAidingMeasurement_readEcho(self, *args) - -# Register InertialNode in _mscl: -_mscl.InertialNode_swigregister(InertialNode) - -class DisplacementNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.DisplacementNode_swiginit(self, _mscl.new_DisplacementNode(connection)) - __swig_destroy__ = _mscl.delete_DisplacementNode - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.DisplacementNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - @staticmethod - def deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - - def connection(self): - return _mscl.DisplacementNode_connection(self) - - def features(self): - return _mscl.DisplacementNode_features(self) - - def lastCommunicationTime(self): - return _mscl.DisplacementNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.DisplacementNode_lastDeviceState(self) - - def firmwareVersion(self): - return _mscl.DisplacementNode_firmwareVersion(self) - - def model(self): - return _mscl.DisplacementNode_model(self) - - def modelName(self): - return _mscl.DisplacementNode_modelName(self) - - def modelNumber(self): - return _mscl.DisplacementNode_modelNumber(self) - - def serialNumber(self): - return _mscl.DisplacementNode_serialNumber(self) - - def lotNumber(self): - return _mscl.DisplacementNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.DisplacementNode_deviceOptions(self) - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.DisplacementNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.DisplacementNode_totalPackets(self) - - def timeout(self, *args): - return _mscl.DisplacementNode_timeout(self, *args) - - def name(self): - return _mscl.DisplacementNode_name(self) - - def ping(self): - return _mscl.DisplacementNode_ping(self) - - def setToIdle(self): - return _mscl.DisplacementNode_setToIdle(self) - - def cyclePower(self): - return _mscl.DisplacementNode_cyclePower(self) - - def resume(self): - return _mscl.DisplacementNode_resume(self) - - def getDisplacementOutputDataRate(self): - return _mscl.DisplacementNode_getDisplacementOutputDataRate(self) - - def getAnalogToDisplacementCal(self): - return _mscl.DisplacementNode_getAnalogToDisplacementCal(self) - - def setDeviceTime(self, *args): - return _mscl.DisplacementNode_setDeviceTime(self, *args) - -# Register DisplacementNode in _mscl: -_mscl.DisplacementNode_swigregister(DisplacementNode) - -def DisplacementNode_deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - -class RTKNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.RTKNode_swiginit(self, _mscl.new_RTKNode(connection)) - __swig_destroy__ = _mscl.delete_RTKNode - - def getCommunicationMode(self): - return _mscl.RTKNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.RTKNode_setCommunicationMode(self, communicationMode) - - def getDeviceStatusFlags(self): - return _mscl.RTKNode_getDeviceStatusFlags(self) - - def getActivationCode(self): - return _mscl.RTKNode_getActivationCode(self) - - def getStatusBitfieldVersion(self): - return _mscl.RTKNode_getStatusBitfieldVersion(self) - -# Register RTKNode in _mscl: -_mscl.RTKNode_swigregister(RTKNode) - -class ChannelData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelData___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelData___bool__(self) - - def __len__(self): - return _mscl.ChannelData___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelData___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelData___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelData___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelData___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelData___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelData___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelData_pop(self) - - def append(self, x): - return _mscl.ChannelData_append(self, x) - - def empty(self): - return _mscl.ChannelData_empty(self) - - def size(self): - return _mscl.ChannelData_size(self) - - def swap(self, v): - return _mscl.ChannelData_swap(self, v) - - def begin(self): - return _mscl.ChannelData_begin(self) - - def end(self): - return _mscl.ChannelData_end(self) - - def rbegin(self): - return _mscl.ChannelData_rbegin(self) - - def rend(self): - return _mscl.ChannelData_rend(self) - - def clear(self): - return _mscl.ChannelData_clear(self) - - def get_allocator(self): - return _mscl.ChannelData_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelData_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelData_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelData_swiginit(self, _mscl.new_ChannelData(*args)) - - def push_back(self, x): - return _mscl.ChannelData_push_back(self, x) - - def front(self): - return _mscl.ChannelData_front(self) - - def back(self): - return _mscl.ChannelData_back(self) - - def assign(self, n, x): - return _mscl.ChannelData_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelData_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelData_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelData_reserve(self, n) - - def capacity(self): - return _mscl.ChannelData_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelData - -# Register ChannelData in _mscl: -_mscl.ChannelData_swigregister(ChannelData) - -class MipDataPoints(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPoints_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPoints___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPoints___bool__(self) - - def __len__(self): - return _mscl.MipDataPoints___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPoints___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPoints___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPoints___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPoints___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPoints___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPoints___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPoints_pop(self) - - def append(self, x): - return _mscl.MipDataPoints_append(self, x) - - def empty(self): - return _mscl.MipDataPoints_empty(self) - - def size(self): - return _mscl.MipDataPoints_size(self) - - def swap(self, v): - return _mscl.MipDataPoints_swap(self, v) - - def begin(self): - return _mscl.MipDataPoints_begin(self) - - def end(self): - return _mscl.MipDataPoints_end(self) - - def rbegin(self): - return _mscl.MipDataPoints_rbegin(self) - - def rend(self): - return _mscl.MipDataPoints_rend(self) - - def clear(self): - return _mscl.MipDataPoints_clear(self) - - def get_allocator(self): - return _mscl.MipDataPoints_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPoints_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPoints_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPoints_swiginit(self, _mscl.new_MipDataPoints(*args)) - - def push_back(self, x): - return _mscl.MipDataPoints_push_back(self, x) - - def front(self): - return _mscl.MipDataPoints_front(self) - - def back(self): - return _mscl.MipDataPoints_back(self) - - def assign(self, n, x): - return _mscl.MipDataPoints_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPoints_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPoints_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPoints_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPoints_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPoints - -# Register MipDataPoints in _mscl: -_mscl.MipDataPoints_swigregister(MipDataPoints) - -class Bytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bytes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bytes___nonzero__(self) - - def __bool__(self): - return _mscl.Bytes___bool__(self) - - def __len__(self): - return _mscl.Bytes___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bytes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bytes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bytes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bytes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bytes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bytes___setitem__(self, *args) - - def pop(self): - return _mscl.Bytes_pop(self) - - def append(self, x): - return _mscl.Bytes_append(self, x) - - def empty(self): - return _mscl.Bytes_empty(self) - - def size(self): - return _mscl.Bytes_size(self) - - def swap(self, v): - return _mscl.Bytes_swap(self, v) - - def begin(self): - return _mscl.Bytes_begin(self) - - def end(self): - return _mscl.Bytes_end(self) - - def rbegin(self): - return _mscl.Bytes_rbegin(self) - - def rend(self): - return _mscl.Bytes_rend(self) - - def clear(self): - return _mscl.Bytes_clear(self) - - def get_allocator(self): - return _mscl.Bytes_get_allocator(self) - - def pop_back(self): - return _mscl.Bytes_pop_back(self) - - def erase(self, *args): - return _mscl.Bytes_erase(self, *args) - - def __init__(self, *args): - _mscl.Bytes_swiginit(self, _mscl.new_Bytes(*args)) - - def push_back(self, x): - return _mscl.Bytes_push_back(self, x) - - def front(self): - return _mscl.Bytes_front(self) - - def back(self): - return _mscl.Bytes_back(self) - - def assign(self, n, x): - return _mscl.Bytes_assign(self, n, x) - - def resize(self, *args): - return _mscl.Bytes_resize(self, *args) - - def insert(self, *args): - return _mscl.Bytes_insert(self, *args) - - def reserve(self, n): - return _mscl.Bytes_reserve(self, n) - - def capacity(self): - return _mscl.Bytes_capacity(self) - __swig_destroy__ = _mscl.delete_Bytes - -# Register Bytes in _mscl: -_mscl.Bytes_swigregister(Bytes) - -class BytesCollection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.BytesCollection_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.BytesCollection___nonzero__(self) - - def __bool__(self): - return _mscl.BytesCollection___bool__(self) - - def __len__(self): - return _mscl.BytesCollection___len__(self) - - def __getslice__(self, i, j): - return _mscl.BytesCollection___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.BytesCollection___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.BytesCollection___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.BytesCollection___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.BytesCollection___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.BytesCollection___setitem__(self, *args) - - def pop(self): - return _mscl.BytesCollection_pop(self) - - def append(self, x): - return _mscl.BytesCollection_append(self, x) - - def empty(self): - return _mscl.BytesCollection_empty(self) - - def size(self): - return _mscl.BytesCollection_size(self) - - def swap(self, v): - return _mscl.BytesCollection_swap(self, v) - - def begin(self): - return _mscl.BytesCollection_begin(self) - - def end(self): - return _mscl.BytesCollection_end(self) - - def rbegin(self): - return _mscl.BytesCollection_rbegin(self) - - def rend(self): - return _mscl.BytesCollection_rend(self) - - def clear(self): - return _mscl.BytesCollection_clear(self) - - def get_allocator(self): - return _mscl.BytesCollection_get_allocator(self) - - def pop_back(self): - return _mscl.BytesCollection_pop_back(self) - - def erase(self, *args): - return _mscl.BytesCollection_erase(self, *args) - - def __init__(self, *args): - _mscl.BytesCollection_swiginit(self, _mscl.new_BytesCollection(*args)) - - def push_back(self, x): - return _mscl.BytesCollection_push_back(self, x) - - def front(self): - return _mscl.BytesCollection_front(self) - - def back(self): - return _mscl.BytesCollection_back(self) - - def assign(self, n, x): - return _mscl.BytesCollection_assign(self, n, x) - - def resize(self, *args): - return _mscl.BytesCollection_resize(self, *args) - - def insert(self, *args): - return _mscl.BytesCollection_insert(self, *args) - - def reserve(self, n): - return _mscl.BytesCollection_reserve(self, n) - - def capacity(self): - return _mscl.BytesCollection_capacity(self) - __swig_destroy__ = _mscl.delete_BytesCollection - -# Register BytesCollection in _mscl: -_mscl.BytesCollection_swigregister(BytesCollection) - -class DeviceList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceList___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceList___bool__(self) - - def __len__(self): - return _mscl.DeviceList___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceList___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceList___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceList_has_key(self, key) - - def keys(self): - return _mscl.DeviceList_keys(self) - - def values(self): - return _mscl.DeviceList_values(self) - - def items(self): - return _mscl.DeviceList_items(self) - - def __contains__(self, key): - return _mscl.DeviceList___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceList_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceList_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceList___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceList_asdict(self) - - def __init__(self, *args): - _mscl.DeviceList_swiginit(self, _mscl.new_DeviceList(*args)) - - def empty(self): - return _mscl.DeviceList_empty(self) - - def size(self): - return _mscl.DeviceList_size(self) - - def swap(self, v): - return _mscl.DeviceList_swap(self, v) - - def begin(self): - return _mscl.DeviceList_begin(self) - - def end(self): - return _mscl.DeviceList_end(self) - - def rbegin(self): - return _mscl.DeviceList_rbegin(self) - - def rend(self): - return _mscl.DeviceList_rend(self) - - def clear(self): - return _mscl.DeviceList_clear(self) - - def get_allocator(self): - return _mscl.DeviceList_get_allocator(self) - - def count(self, x): - return _mscl.DeviceList_count(self, x) - - def erase(self, *args): - return _mscl.DeviceList_erase(self, *args) - - def find(self, x): - return _mscl.DeviceList_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceList_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceList_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceList - -# Register DeviceList in _mscl: -_mscl.DeviceList_swigregister(DeviceList) - -class NodeDiscoveries(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NodeDiscoveries_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NodeDiscoveries___nonzero__(self) - - def __bool__(self): - return _mscl.NodeDiscoveries___bool__(self) - - def __len__(self): - return _mscl.NodeDiscoveries___len__(self) - - def __getslice__(self, i, j): - return _mscl.NodeDiscoveries___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NodeDiscoveries___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NodeDiscoveries___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NodeDiscoveries___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NodeDiscoveries___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NodeDiscoveries___setitem__(self, *args) - - def pop(self): - return _mscl.NodeDiscoveries_pop(self) - - def append(self, x): - return _mscl.NodeDiscoveries_append(self, x) - - def empty(self): - return _mscl.NodeDiscoveries_empty(self) - - def size(self): - return _mscl.NodeDiscoveries_size(self) - - def swap(self, v): - return _mscl.NodeDiscoveries_swap(self, v) - - def begin(self): - return _mscl.NodeDiscoveries_begin(self) - - def end(self): - return _mscl.NodeDiscoveries_end(self) - - def rbegin(self): - return _mscl.NodeDiscoveries_rbegin(self) - - def rend(self): - return _mscl.NodeDiscoveries_rend(self) - - def clear(self): - return _mscl.NodeDiscoveries_clear(self) - - def get_allocator(self): - return _mscl.NodeDiscoveries_get_allocator(self) - - def pop_back(self): - return _mscl.NodeDiscoveries_pop_back(self) - - def erase(self, *args): - return _mscl.NodeDiscoveries_erase(self, *args) - - def __init__(self, *args): - _mscl.NodeDiscoveries_swiginit(self, _mscl.new_NodeDiscoveries(*args)) - - def push_back(self, x): - return _mscl.NodeDiscoveries_push_back(self, x) - - def front(self): - return _mscl.NodeDiscoveries_front(self) - - def back(self): - return _mscl.NodeDiscoveries_back(self) - - def assign(self, n, x): - return _mscl.NodeDiscoveries_assign(self, n, x) - - def resize(self, *args): - return _mscl.NodeDiscoveries_resize(self, *args) - - def insert(self, *args): - return _mscl.NodeDiscoveries_insert(self, *args) - - def reserve(self, n): - return _mscl.NodeDiscoveries_reserve(self, n) - - def capacity(self): - return _mscl.NodeDiscoveries_capacity(self) - __swig_destroy__ = _mscl.delete_NodeDiscoveries - -# Register NodeDiscoveries in _mscl: -_mscl.NodeDiscoveries_swigregister(NodeDiscoveries) - -class DataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.DataSweeps___bool__(self) - - def __len__(self): - return _mscl.DataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.DataSweeps_pop(self) - - def append(self, x): - return _mscl.DataSweeps_append(self, x) - - def empty(self): - return _mscl.DataSweeps_empty(self) - - def size(self): - return _mscl.DataSweeps_size(self) - - def swap(self, v): - return _mscl.DataSweeps_swap(self, v) - - def begin(self): - return _mscl.DataSweeps_begin(self) - - def end(self): - return _mscl.DataSweeps_end(self) - - def rbegin(self): - return _mscl.DataSweeps_rbegin(self) - - def rend(self): - return _mscl.DataSweeps_rend(self) - - def clear(self): - return _mscl.DataSweeps_clear(self) - - def get_allocator(self): - return _mscl.DataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.DataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.DataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.DataSweeps_swiginit(self, _mscl.new_DataSweeps(*args)) - - def push_back(self, x): - return _mscl.DataSweeps_push_back(self, x) - - def front(self): - return _mscl.DataSweeps_front(self) - - def back(self): - return _mscl.DataSweeps_back(self) - - def assign(self, n, x): - return _mscl.DataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.DataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.DataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.DataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_DataSweeps - -# Register DataSweeps in _mscl: -_mscl.DataSweeps_swigregister(DataSweeps) - -class LoggedDataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LoggedDataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LoggedDataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.LoggedDataSweeps___bool__(self) - - def __len__(self): - return _mscl.LoggedDataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.LoggedDataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LoggedDataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LoggedDataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LoggedDataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LoggedDataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LoggedDataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.LoggedDataSweeps_pop(self) - - def append(self, x): - return _mscl.LoggedDataSweeps_append(self, x) - - def empty(self): - return _mscl.LoggedDataSweeps_empty(self) - - def size(self): - return _mscl.LoggedDataSweeps_size(self) - - def swap(self, v): - return _mscl.LoggedDataSweeps_swap(self, v) - - def begin(self): - return _mscl.LoggedDataSweeps_begin(self) - - def end(self): - return _mscl.LoggedDataSweeps_end(self) - - def rbegin(self): - return _mscl.LoggedDataSweeps_rbegin(self) - - def rend(self): - return _mscl.LoggedDataSweeps_rend(self) - - def clear(self): - return _mscl.LoggedDataSweeps_clear(self) - - def get_allocator(self): - return _mscl.LoggedDataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.LoggedDataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.LoggedDataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.LoggedDataSweeps_swiginit(self, _mscl.new_LoggedDataSweeps(*args)) - - def push_back(self, x): - return _mscl.LoggedDataSweeps_push_back(self, x) - - def front(self): - return _mscl.LoggedDataSweeps_front(self) - - def back(self): - return _mscl.LoggedDataSweeps_back(self) - - def assign(self, n, x): - return _mscl.LoggedDataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.LoggedDataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.LoggedDataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.LoggedDataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.LoggedDataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweeps - -# Register LoggedDataSweeps in _mscl: -_mscl.LoggedDataSweeps_swigregister(LoggedDataSweeps) - -class MipDataPackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPackets___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPackets___bool__(self) - - def __len__(self): - return _mscl.MipDataPackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPackets___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPackets_pop(self) - - def append(self, x): - return _mscl.MipDataPackets_append(self, x) - - def empty(self): - return _mscl.MipDataPackets_empty(self) - - def size(self): - return _mscl.MipDataPackets_size(self) - - def swap(self, v): - return _mscl.MipDataPackets_swap(self, v) - - def begin(self): - return _mscl.MipDataPackets_begin(self) - - def end(self): - return _mscl.MipDataPackets_end(self) - - def rbegin(self): - return _mscl.MipDataPackets_rbegin(self) - - def rend(self): - return _mscl.MipDataPackets_rend(self) - - def clear(self): - return _mscl.MipDataPackets_clear(self) - - def get_allocator(self): - return _mscl.MipDataPackets_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPackets_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPackets_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPackets_swiginit(self, _mscl.new_MipDataPackets(*args)) - - def push_back(self, x): - return _mscl.MipDataPackets_push_back(self, x) - - def front(self): - return _mscl.MipDataPackets_front(self) - - def back(self): - return _mscl.MipDataPackets_back(self) - - def assign(self, n, x): - return _mscl.MipDataPackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPackets_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPackets_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPackets_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPackets_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPackets - -# Register MipDataPackets in _mscl: -_mscl.MipDataPackets_swigregister(MipDataPackets) - -class RawBytePackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RawBytePackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RawBytePackets___nonzero__(self) - - def __bool__(self): - return _mscl.RawBytePackets___bool__(self) - - def __len__(self): - return _mscl.RawBytePackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.RawBytePackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.RawBytePackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.RawBytePackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.RawBytePackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.RawBytePackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.RawBytePackets___setitem__(self, *args) - - def pop(self): - return _mscl.RawBytePackets_pop(self) - - def append(self, x): - return _mscl.RawBytePackets_append(self, x) - - def empty(self): - return _mscl.RawBytePackets_empty(self) - - def size(self): - return _mscl.RawBytePackets_size(self) - - def swap(self, v): - return _mscl.RawBytePackets_swap(self, v) - - def begin(self): - return _mscl.RawBytePackets_begin(self) - - def end(self): - return _mscl.RawBytePackets_end(self) - - def rbegin(self): - return _mscl.RawBytePackets_rbegin(self) - - def rend(self): - return _mscl.RawBytePackets_rend(self) - - def clear(self): - return _mscl.RawBytePackets_clear(self) - - def get_allocator(self): - return _mscl.RawBytePackets_get_allocator(self) - - def pop_back(self): - return _mscl.RawBytePackets_pop_back(self) - - def erase(self, *args): - return _mscl.RawBytePackets_erase(self, *args) - - def __init__(self, *args): - _mscl.RawBytePackets_swiginit(self, _mscl.new_RawBytePackets(*args)) - - def push_back(self, x): - return _mscl.RawBytePackets_push_back(self, x) - - def front(self): - return _mscl.RawBytePackets_front(self) - - def back(self): - return _mscl.RawBytePackets_back(self) - - def assign(self, n, x): - return _mscl.RawBytePackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.RawBytePackets_resize(self, *args) - - def insert(self, *args): - return _mscl.RawBytePackets_insert(self, *args) - - def reserve(self, n): - return _mscl.RawBytePackets_reserve(self, n) - - def capacity(self): - return _mscl.RawBytePackets_capacity(self) - __swig_destroy__ = _mscl.delete_RawBytePackets - -# Register RawBytePackets in _mscl: -_mscl.RawBytePackets_swigregister(RawBytePackets) - -class MipChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannels___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannels___bool__(self) - - def __len__(self): - return _mscl.MipChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannels___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannels_pop(self) - - def append(self, x): - return _mscl.MipChannels_append(self, x) - - def empty(self): - return _mscl.MipChannels_empty(self) - - def size(self): - return _mscl.MipChannels_size(self) - - def swap(self, v): - return _mscl.MipChannels_swap(self, v) - - def begin(self): - return _mscl.MipChannels_begin(self) - - def end(self): - return _mscl.MipChannels_end(self) - - def rbegin(self): - return _mscl.MipChannels_rbegin(self) - - def rend(self): - return _mscl.MipChannels_rend(self) - - def clear(self): - return _mscl.MipChannels_clear(self) - - def get_allocator(self): - return _mscl.MipChannels_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannels_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannels_swiginit(self, _mscl.new_MipChannels(*args)) - - def push_back(self, x): - return _mscl.MipChannels_push_back(self, x) - - def front(self): - return _mscl.MipChannels_front(self) - - def back(self): - return _mscl.MipChannels_back(self) - - def assign(self, n, x): - return _mscl.MipChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannels_reserve(self, n) - - def capacity(self): - return _mscl.MipChannels_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannels - -# Register MipChannels in _mscl: -_mscl.MipChannels_swigregister(MipChannels) - -class DataCollectionMethods(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataCollectionMethods_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataCollectionMethods___nonzero__(self) - - def __bool__(self): - return _mscl.DataCollectionMethods___bool__(self) - - def __len__(self): - return _mscl.DataCollectionMethods___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataCollectionMethods___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataCollectionMethods___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataCollectionMethods___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataCollectionMethods___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataCollectionMethods___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataCollectionMethods___setitem__(self, *args) - - def pop(self): - return _mscl.DataCollectionMethods_pop(self) - - def append(self, x): - return _mscl.DataCollectionMethods_append(self, x) - - def empty(self): - return _mscl.DataCollectionMethods_empty(self) - - def size(self): - return _mscl.DataCollectionMethods_size(self) - - def swap(self, v): - return _mscl.DataCollectionMethods_swap(self, v) - - def begin(self): - return _mscl.DataCollectionMethods_begin(self) - - def end(self): - return _mscl.DataCollectionMethods_end(self) - - def rbegin(self): - return _mscl.DataCollectionMethods_rbegin(self) - - def rend(self): - return _mscl.DataCollectionMethods_rend(self) - - def clear(self): - return _mscl.DataCollectionMethods_clear(self) - - def get_allocator(self): - return _mscl.DataCollectionMethods_get_allocator(self) - - def pop_back(self): - return _mscl.DataCollectionMethods_pop_back(self) - - def erase(self, *args): - return _mscl.DataCollectionMethods_erase(self, *args) - - def __init__(self, *args): - _mscl.DataCollectionMethods_swiginit(self, _mscl.new_DataCollectionMethods(*args)) - - def push_back(self, x): - return _mscl.DataCollectionMethods_push_back(self, x) - - def front(self): - return _mscl.DataCollectionMethods_front(self) - - def back(self): - return _mscl.DataCollectionMethods_back(self) - - def assign(self, n, x): - return _mscl.DataCollectionMethods_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataCollectionMethods_resize(self, *args) - - def insert(self, *args): - return _mscl.DataCollectionMethods_insert(self, *args) - - def reserve(self, n): - return _mscl.DataCollectionMethods_reserve(self, n) - - def capacity(self): - return _mscl.DataCollectionMethods_capacity(self) - __swig_destroy__ = _mscl.delete_DataCollectionMethods - -# Register DataCollectionMethods in _mscl: -_mscl.DataCollectionMethods_swigregister(DataCollectionMethods) - -class DataFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataFormats___nonzero__(self) - - def __bool__(self): - return _mscl.DataFormats___bool__(self) - - def __len__(self): - return _mscl.DataFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataFormats___setitem__(self, *args) - - def pop(self): - return _mscl.DataFormats_pop(self) - - def append(self, x): - return _mscl.DataFormats_append(self, x) - - def empty(self): - return _mscl.DataFormats_empty(self) - - def size(self): - return _mscl.DataFormats_size(self) - - def swap(self, v): - return _mscl.DataFormats_swap(self, v) - - def begin(self): - return _mscl.DataFormats_begin(self) - - def end(self): - return _mscl.DataFormats_end(self) - - def rbegin(self): - return _mscl.DataFormats_rbegin(self) - - def rend(self): - return _mscl.DataFormats_rend(self) - - def clear(self): - return _mscl.DataFormats_clear(self) - - def get_allocator(self): - return _mscl.DataFormats_get_allocator(self) - - def pop_back(self): - return _mscl.DataFormats_pop_back(self) - - def erase(self, *args): - return _mscl.DataFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.DataFormats_swiginit(self, _mscl.new_DataFormats(*args)) - - def push_back(self, x): - return _mscl.DataFormats_push_back(self, x) - - def front(self): - return _mscl.DataFormats_front(self) - - def back(self): - return _mscl.DataFormats_back(self) - - def assign(self, n, x): - return _mscl.DataFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.DataFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.DataFormats_reserve(self, n) - - def capacity(self): - return _mscl.DataFormats_capacity(self) - __swig_destroy__ = _mscl.delete_DataFormats - -# Register DataFormats in _mscl: -_mscl.DataFormats_swigregister(DataFormats) - -class WirelessSampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessSampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessSampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessSampleRates___bool__(self) - - def __len__(self): - return _mscl.WirelessSampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessSampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessSampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessSampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessSampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessSampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessSampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessSampleRates_pop(self) - - def append(self, x): - return _mscl.WirelessSampleRates_append(self, x) - - def empty(self): - return _mscl.WirelessSampleRates_empty(self) - - def size(self): - return _mscl.WirelessSampleRates_size(self) - - def swap(self, v): - return _mscl.WirelessSampleRates_swap(self, v) - - def begin(self): - return _mscl.WirelessSampleRates_begin(self) - - def end(self): - return _mscl.WirelessSampleRates_end(self) - - def rbegin(self): - return _mscl.WirelessSampleRates_rbegin(self) - - def rend(self): - return _mscl.WirelessSampleRates_rend(self) - - def clear(self): - return _mscl.WirelessSampleRates_clear(self) - - def get_allocator(self): - return _mscl.WirelessSampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessSampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessSampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessSampleRates_swiginit(self, _mscl.new_WirelessSampleRates(*args)) - - def push_back(self, x): - return _mscl.WirelessSampleRates_push_back(self, x) - - def front(self): - return _mscl.WirelessSampleRates_front(self) - - def back(self): - return _mscl.WirelessSampleRates_back(self) - - def assign(self, n, x): - return _mscl.WirelessSampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessSampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessSampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessSampleRates_reserve(self, n) - - def capacity(self): - return _mscl.WirelessSampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessSampleRates - -# Register WirelessSampleRates in _mscl: -_mscl.WirelessSampleRates_swigregister(WirelessSampleRates) - -class SamplingModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SamplingModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SamplingModes___nonzero__(self) - - def __bool__(self): - return _mscl.SamplingModes___bool__(self) - - def __len__(self): - return _mscl.SamplingModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SamplingModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SamplingModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SamplingModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SamplingModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SamplingModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SamplingModes___setitem__(self, *args) - - def pop(self): - return _mscl.SamplingModes_pop(self) - - def append(self, x): - return _mscl.SamplingModes_append(self, x) - - def empty(self): - return _mscl.SamplingModes_empty(self) - - def size(self): - return _mscl.SamplingModes_size(self) - - def swap(self, v): - return _mscl.SamplingModes_swap(self, v) - - def begin(self): - return _mscl.SamplingModes_begin(self) - - def end(self): - return _mscl.SamplingModes_end(self) - - def rbegin(self): - return _mscl.SamplingModes_rbegin(self) - - def rend(self): - return _mscl.SamplingModes_rend(self) - - def clear(self): - return _mscl.SamplingModes_clear(self) - - def get_allocator(self): - return _mscl.SamplingModes_get_allocator(self) - - def pop_back(self): - return _mscl.SamplingModes_pop_back(self) - - def erase(self, *args): - return _mscl.SamplingModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SamplingModes_swiginit(self, _mscl.new_SamplingModes(*args)) - - def push_back(self, x): - return _mscl.SamplingModes_push_back(self, x) - - def front(self): - return _mscl.SamplingModes_front(self) - - def back(self): - return _mscl.SamplingModes_back(self) - - def assign(self, n, x): - return _mscl.SamplingModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SamplingModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SamplingModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SamplingModes_reserve(self, n) - - def capacity(self): - return _mscl.SamplingModes_capacity(self) - __swig_destroy__ = _mscl.delete_SamplingModes - -# Register SamplingModes in _mscl: -_mscl.SamplingModes_swigregister(SamplingModes) - -class DefaultModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DefaultModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DefaultModes___nonzero__(self) - - def __bool__(self): - return _mscl.DefaultModes___bool__(self) - - def __len__(self): - return _mscl.DefaultModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DefaultModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DefaultModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DefaultModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DefaultModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DefaultModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DefaultModes___setitem__(self, *args) - - def pop(self): - return _mscl.DefaultModes_pop(self) - - def append(self, x): - return _mscl.DefaultModes_append(self, x) - - def empty(self): - return _mscl.DefaultModes_empty(self) - - def size(self): - return _mscl.DefaultModes_size(self) - - def swap(self, v): - return _mscl.DefaultModes_swap(self, v) - - def begin(self): - return _mscl.DefaultModes_begin(self) - - def end(self): - return _mscl.DefaultModes_end(self) - - def rbegin(self): - return _mscl.DefaultModes_rbegin(self) - - def rend(self): - return _mscl.DefaultModes_rend(self) - - def clear(self): - return _mscl.DefaultModes_clear(self) - - def get_allocator(self): - return _mscl.DefaultModes_get_allocator(self) - - def pop_back(self): - return _mscl.DefaultModes_pop_back(self) - - def erase(self, *args): - return _mscl.DefaultModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DefaultModes_swiginit(self, _mscl.new_DefaultModes(*args)) - - def push_back(self, x): - return _mscl.DefaultModes_push_back(self, x) - - def front(self): - return _mscl.DefaultModes_front(self) - - def back(self): - return _mscl.DefaultModes_back(self) - - def assign(self, n, x): - return _mscl.DefaultModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DefaultModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DefaultModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DefaultModes_reserve(self, n) - - def capacity(self): - return _mscl.DefaultModes_capacity(self) - __swig_destroy__ = _mscl.delete_DefaultModes - -# Register DefaultModes in _mscl: -_mscl.DefaultModes_swigregister(DefaultModes) - -class TransmitPowers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransmitPowers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransmitPowers___nonzero__(self) - - def __bool__(self): - return _mscl.TransmitPowers___bool__(self) - - def __len__(self): - return _mscl.TransmitPowers___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransmitPowers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransmitPowers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransmitPowers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransmitPowers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransmitPowers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransmitPowers___setitem__(self, *args) - - def pop(self): - return _mscl.TransmitPowers_pop(self) - - def append(self, x): - return _mscl.TransmitPowers_append(self, x) - - def empty(self): - return _mscl.TransmitPowers_empty(self) - - def size(self): - return _mscl.TransmitPowers_size(self) - - def swap(self, v): - return _mscl.TransmitPowers_swap(self, v) - - def begin(self): - return _mscl.TransmitPowers_begin(self) - - def end(self): - return _mscl.TransmitPowers_end(self) - - def rbegin(self): - return _mscl.TransmitPowers_rbegin(self) - - def rend(self): - return _mscl.TransmitPowers_rend(self) - - def clear(self): - return _mscl.TransmitPowers_clear(self) - - def get_allocator(self): - return _mscl.TransmitPowers_get_allocator(self) - - def pop_back(self): - return _mscl.TransmitPowers_pop_back(self) - - def erase(self, *args): - return _mscl.TransmitPowers_erase(self, *args) - - def __init__(self, *args): - _mscl.TransmitPowers_swiginit(self, _mscl.new_TransmitPowers(*args)) - - def push_back(self, x): - return _mscl.TransmitPowers_push_back(self, x) - - def front(self): - return _mscl.TransmitPowers_front(self) - - def back(self): - return _mscl.TransmitPowers_back(self) - - def assign(self, n, x): - return _mscl.TransmitPowers_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransmitPowers_resize(self, *args) - - def insert(self, *args): - return _mscl.TransmitPowers_insert(self, *args) - - def reserve(self, n): - return _mscl.TransmitPowers_reserve(self, n) - - def capacity(self): - return _mscl.TransmitPowers_capacity(self) - __swig_destroy__ = _mscl.delete_TransmitPowers - -# Register TransmitPowers in _mscl: -_mscl.TransmitPowers_swigregister(TransmitPowers) - -class ChannelGroupSettings(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroupSettings_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroupSettings___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroupSettings___bool__(self) - - def __len__(self): - return _mscl.ChannelGroupSettings___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroupSettings___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroupSettings___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroupSettings___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroupSettings___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroupSettings___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroupSettings___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroupSettings_pop(self) - - def append(self, x): - return _mscl.ChannelGroupSettings_append(self, x) - - def empty(self): - return _mscl.ChannelGroupSettings_empty(self) - - def size(self): - return _mscl.ChannelGroupSettings_size(self) - - def swap(self, v): - return _mscl.ChannelGroupSettings_swap(self, v) - - def begin(self): - return _mscl.ChannelGroupSettings_begin(self) - - def end(self): - return _mscl.ChannelGroupSettings_end(self) - - def rbegin(self): - return _mscl.ChannelGroupSettings_rbegin(self) - - def rend(self): - return _mscl.ChannelGroupSettings_rend(self) - - def clear(self): - return _mscl.ChannelGroupSettings_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroupSettings_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroupSettings_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroupSettings_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroupSettings_swiginit(self, _mscl.new_ChannelGroupSettings(*args)) - - def push_back(self, x): - return _mscl.ChannelGroupSettings_push_back(self, x) - - def front(self): - return _mscl.ChannelGroupSettings_front(self) - - def back(self): - return _mscl.ChannelGroupSettings_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroupSettings_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroupSettings_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroupSettings_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroupSettings_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroupSettings_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroupSettings - -# Register ChannelGroupSettings in _mscl: -_mscl.ChannelGroupSettings_swigregister(ChannelGroupSettings) - -class FatigueModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.FatigueModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.FatigueModes___nonzero__(self) - - def __bool__(self): - return _mscl.FatigueModes___bool__(self) - - def __len__(self): - return _mscl.FatigueModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.FatigueModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.FatigueModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.FatigueModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.FatigueModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.FatigueModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.FatigueModes___setitem__(self, *args) - - def pop(self): - return _mscl.FatigueModes_pop(self) - - def append(self, x): - return _mscl.FatigueModes_append(self, x) - - def empty(self): - return _mscl.FatigueModes_empty(self) - - def size(self): - return _mscl.FatigueModes_size(self) - - def swap(self, v): - return _mscl.FatigueModes_swap(self, v) - - def begin(self): - return _mscl.FatigueModes_begin(self) - - def end(self): - return _mscl.FatigueModes_end(self) - - def rbegin(self): - return _mscl.FatigueModes_rbegin(self) - - def rend(self): - return _mscl.FatigueModes_rend(self) - - def clear(self): - return _mscl.FatigueModes_clear(self) - - def get_allocator(self): - return _mscl.FatigueModes_get_allocator(self) - - def pop_back(self): - return _mscl.FatigueModes_pop_back(self) - - def erase(self, *args): - return _mscl.FatigueModes_erase(self, *args) - - def __init__(self, *args): - _mscl.FatigueModes_swiginit(self, _mscl.new_FatigueModes(*args)) - - def push_back(self, x): - return _mscl.FatigueModes_push_back(self, x) - - def front(self): - return _mscl.FatigueModes_front(self) - - def back(self): - return _mscl.FatigueModes_back(self) - - def assign(self, n, x): - return _mscl.FatigueModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.FatigueModes_resize(self, *args) - - def insert(self, *args): - return _mscl.FatigueModes_insert(self, *args) - - def reserve(self, n): - return _mscl.FatigueModes_reserve(self, n) - - def capacity(self): - return _mscl.FatigueModes_capacity(self) - __swig_destroy__ = _mscl.delete_FatigueModes - -# Register FatigueModes in _mscl: -_mscl.FatigueModes_swigregister(FatigueModes) - -class Filters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Filters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Filters___nonzero__(self) - - def __bool__(self): - return _mscl.Filters___bool__(self) - - def __len__(self): - return _mscl.Filters___len__(self) - - def __getslice__(self, i, j): - return _mscl.Filters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Filters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Filters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Filters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Filters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Filters___setitem__(self, *args) - - def pop(self): - return _mscl.Filters_pop(self) - - def append(self, x): - return _mscl.Filters_append(self, x) - - def empty(self): - return _mscl.Filters_empty(self) - - def size(self): - return _mscl.Filters_size(self) - - def swap(self, v): - return _mscl.Filters_swap(self, v) - - def begin(self): - return _mscl.Filters_begin(self) - - def end(self): - return _mscl.Filters_end(self) - - def rbegin(self): - return _mscl.Filters_rbegin(self) - - def rend(self): - return _mscl.Filters_rend(self) - - def clear(self): - return _mscl.Filters_clear(self) - - def get_allocator(self): - return _mscl.Filters_get_allocator(self) - - def pop_back(self): - return _mscl.Filters_pop_back(self) - - def erase(self, *args): - return _mscl.Filters_erase(self, *args) - - def __init__(self, *args): - _mscl.Filters_swiginit(self, _mscl.new_Filters(*args)) - - def push_back(self, x): - return _mscl.Filters_push_back(self, x) - - def front(self): - return _mscl.Filters_front(self) - - def back(self): - return _mscl.Filters_back(self) - - def assign(self, n, x): - return _mscl.Filters_assign(self, n, x) - - def resize(self, *args): - return _mscl.Filters_resize(self, *args) - - def insert(self, *args): - return _mscl.Filters_insert(self, *args) - - def reserve(self, n): - return _mscl.Filters_reserve(self, n) - - def capacity(self): - return _mscl.Filters_capacity(self) - __swig_destroy__ = _mscl.delete_Filters - -# Register Filters in _mscl: -_mscl.Filters_swigregister(Filters) - -class HighPassFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HighPassFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HighPassFilters___nonzero__(self) - - def __bool__(self): - return _mscl.HighPassFilters___bool__(self) - - def __len__(self): - return _mscl.HighPassFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.HighPassFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HighPassFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HighPassFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HighPassFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HighPassFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HighPassFilters___setitem__(self, *args) - - def pop(self): - return _mscl.HighPassFilters_pop(self) - - def append(self, x): - return _mscl.HighPassFilters_append(self, x) - - def empty(self): - return _mscl.HighPassFilters_empty(self) - - def size(self): - return _mscl.HighPassFilters_size(self) - - def swap(self, v): - return _mscl.HighPassFilters_swap(self, v) - - def begin(self): - return _mscl.HighPassFilters_begin(self) - - def end(self): - return _mscl.HighPassFilters_end(self) - - def rbegin(self): - return _mscl.HighPassFilters_rbegin(self) - - def rend(self): - return _mscl.HighPassFilters_rend(self) - - def clear(self): - return _mscl.HighPassFilters_clear(self) - - def get_allocator(self): - return _mscl.HighPassFilters_get_allocator(self) - - def pop_back(self): - return _mscl.HighPassFilters_pop_back(self) - - def erase(self, *args): - return _mscl.HighPassFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.HighPassFilters_swiginit(self, _mscl.new_HighPassFilters(*args)) - - def push_back(self, x): - return _mscl.HighPassFilters_push_back(self, x) - - def front(self): - return _mscl.HighPassFilters_front(self) - - def back(self): - return _mscl.HighPassFilters_back(self) - - def assign(self, n, x): - return _mscl.HighPassFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.HighPassFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.HighPassFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.HighPassFilters_reserve(self, n) - - def capacity(self): - return _mscl.HighPassFilters_capacity(self) - __swig_destroy__ = _mscl.delete_HighPassFilters - -# Register HighPassFilters in _mscl: -_mscl.HighPassFilters_swigregister(HighPassFilters) - -class StorageLimitModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StorageLimitModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StorageLimitModes___nonzero__(self) - - def __bool__(self): - return _mscl.StorageLimitModes___bool__(self) - - def __len__(self): - return _mscl.StorageLimitModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.StorageLimitModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StorageLimitModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StorageLimitModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StorageLimitModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StorageLimitModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StorageLimitModes___setitem__(self, *args) - - def pop(self): - return _mscl.StorageLimitModes_pop(self) - - def append(self, x): - return _mscl.StorageLimitModes_append(self, x) - - def empty(self): - return _mscl.StorageLimitModes_empty(self) - - def size(self): - return _mscl.StorageLimitModes_size(self) - - def swap(self, v): - return _mscl.StorageLimitModes_swap(self, v) - - def begin(self): - return _mscl.StorageLimitModes_begin(self) - - def end(self): - return _mscl.StorageLimitModes_end(self) - - def rbegin(self): - return _mscl.StorageLimitModes_rbegin(self) - - def rend(self): - return _mscl.StorageLimitModes_rend(self) - - def clear(self): - return _mscl.StorageLimitModes_clear(self) - - def get_allocator(self): - return _mscl.StorageLimitModes_get_allocator(self) - - def pop_back(self): - return _mscl.StorageLimitModes_pop_back(self) - - def erase(self, *args): - return _mscl.StorageLimitModes_erase(self, *args) - - def __init__(self, *args): - _mscl.StorageLimitModes_swiginit(self, _mscl.new_StorageLimitModes(*args)) - - def push_back(self, x): - return _mscl.StorageLimitModes_push_back(self, x) - - def front(self): - return _mscl.StorageLimitModes_front(self) - - def back(self): - return _mscl.StorageLimitModes_back(self) - - def assign(self, n, x): - return _mscl.StorageLimitModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.StorageLimitModes_resize(self, *args) - - def insert(self, *args): - return _mscl.StorageLimitModes_insert(self, *args) - - def reserve(self, n): - return _mscl.StorageLimitModes_reserve(self, n) - - def capacity(self): - return _mscl.StorageLimitModes_capacity(self) - __swig_destroy__ = _mscl.delete_StorageLimitModes - -# Register StorageLimitModes in _mscl: -_mscl.StorageLimitModes_swigregister(StorageLimitModes) - -class InputRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.InputRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.InputRanges___nonzero__(self) - - def __bool__(self): - return _mscl.InputRanges___bool__(self) - - def __len__(self): - return _mscl.InputRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.InputRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.InputRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.InputRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.InputRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.InputRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.InputRanges___setitem__(self, *args) - - def pop(self): - return _mscl.InputRanges_pop(self) - - def append(self, x): - return _mscl.InputRanges_append(self, x) - - def empty(self): - return _mscl.InputRanges_empty(self) - - def size(self): - return _mscl.InputRanges_size(self) - - def swap(self, v): - return _mscl.InputRanges_swap(self, v) - - def begin(self): - return _mscl.InputRanges_begin(self) - - def end(self): - return _mscl.InputRanges_end(self) - - def rbegin(self): - return _mscl.InputRanges_rbegin(self) - - def rend(self): - return _mscl.InputRanges_rend(self) - - def clear(self): - return _mscl.InputRanges_clear(self) - - def get_allocator(self): - return _mscl.InputRanges_get_allocator(self) - - def pop_back(self): - return _mscl.InputRanges_pop_back(self) - - def erase(self, *args): - return _mscl.InputRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.InputRanges_swiginit(self, _mscl.new_InputRanges(*args)) - - def push_back(self, x): - return _mscl.InputRanges_push_back(self, x) - - def front(self): - return _mscl.InputRanges_front(self) - - def back(self): - return _mscl.InputRanges_back(self) - - def assign(self, n, x): - return _mscl.InputRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.InputRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.InputRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.InputRanges_reserve(self, n) - - def capacity(self): - return _mscl.InputRanges_capacity(self) - __swig_destroy__ = _mscl.delete_InputRanges - -# Register InputRanges in _mscl: -_mscl.InputRanges_swigregister(InputRanges) - -class DataModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataModes___nonzero__(self) - - def __bool__(self): - return _mscl.DataModes___bool__(self) - - def __len__(self): - return _mscl.DataModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataModes___setitem__(self, *args) - - def pop(self): - return _mscl.DataModes_pop(self) - - def append(self, x): - return _mscl.DataModes_append(self, x) - - def empty(self): - return _mscl.DataModes_empty(self) - - def size(self): - return _mscl.DataModes_size(self) - - def swap(self, v): - return _mscl.DataModes_swap(self, v) - - def begin(self): - return _mscl.DataModes_begin(self) - - def end(self): - return _mscl.DataModes_end(self) - - def rbegin(self): - return _mscl.DataModes_rbegin(self) - - def rend(self): - return _mscl.DataModes_rend(self) - - def clear(self): - return _mscl.DataModes_clear(self) - - def get_allocator(self): - return _mscl.DataModes_get_allocator(self) - - def pop_back(self): - return _mscl.DataModes_pop_back(self) - - def erase(self, *args): - return _mscl.DataModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DataModes_swiginit(self, _mscl.new_DataModes(*args)) - - def push_back(self, x): - return _mscl.DataModes_push_back(self, x) - - def front(self): - return _mscl.DataModes_front(self) - - def back(self): - return _mscl.DataModes_back(self) - - def assign(self, n, x): - return _mscl.DataModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DataModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DataModes_reserve(self, n) - - def capacity(self): - return _mscl.DataModes_capacity(self) - __swig_destroy__ = _mscl.delete_DataModes - -# Register DataModes in _mscl: -_mscl.DataModes_swigregister(DataModes) - -class CommProtocols(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommProtocols_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommProtocols___nonzero__(self) - - def __bool__(self): - return _mscl.CommProtocols___bool__(self) - - def __len__(self): - return _mscl.CommProtocols___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommProtocols___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommProtocols___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommProtocols___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommProtocols___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommProtocols___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommProtocols___setitem__(self, *args) - - def pop(self): - return _mscl.CommProtocols_pop(self) - - def append(self, x): - return _mscl.CommProtocols_append(self, x) - - def empty(self): - return _mscl.CommProtocols_empty(self) - - def size(self): - return _mscl.CommProtocols_size(self) - - def swap(self, v): - return _mscl.CommProtocols_swap(self, v) - - def begin(self): - return _mscl.CommProtocols_begin(self) - - def end(self): - return _mscl.CommProtocols_end(self) - - def rbegin(self): - return _mscl.CommProtocols_rbegin(self) - - def rend(self): - return _mscl.CommProtocols_rend(self) - - def clear(self): - return _mscl.CommProtocols_clear(self) - - def get_allocator(self): - return _mscl.CommProtocols_get_allocator(self) - - def pop_back(self): - return _mscl.CommProtocols_pop_back(self) - - def erase(self, *args): - return _mscl.CommProtocols_erase(self, *args) - - def __init__(self, *args): - _mscl.CommProtocols_swiginit(self, _mscl.new_CommProtocols(*args)) - - def push_back(self, x): - return _mscl.CommProtocols_push_back(self, x) - - def front(self): - return _mscl.CommProtocols_front(self) - - def back(self): - return _mscl.CommProtocols_back(self) - - def assign(self, n, x): - return _mscl.CommProtocols_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommProtocols_resize(self, *args) - - def insert(self, *args): - return _mscl.CommProtocols_insert(self, *args) - - def reserve(self, n): - return _mscl.CommProtocols_reserve(self, n) - - def capacity(self): - return _mscl.CommProtocols_capacity(self) - __swig_destroy__ = _mscl.delete_CommProtocols - -# Register CommProtocols in _mscl: -_mscl.CommProtocols_swigregister(CommProtocols) - -class Voltages(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Voltages_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Voltages___nonzero__(self) - - def __bool__(self): - return _mscl.Voltages___bool__(self) - - def __len__(self): - return _mscl.Voltages___len__(self) - - def __getslice__(self, i, j): - return _mscl.Voltages___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Voltages___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Voltages___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Voltages___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Voltages___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Voltages___setitem__(self, *args) - - def pop(self): - return _mscl.Voltages_pop(self) - - def append(self, x): - return _mscl.Voltages_append(self, x) - - def empty(self): - return _mscl.Voltages_empty(self) - - def size(self): - return _mscl.Voltages_size(self) - - def swap(self, v): - return _mscl.Voltages_swap(self, v) - - def begin(self): - return _mscl.Voltages_begin(self) - - def end(self): - return _mscl.Voltages_end(self) - - def rbegin(self): - return _mscl.Voltages_rbegin(self) - - def rend(self): - return _mscl.Voltages_rend(self) - - def clear(self): - return _mscl.Voltages_clear(self) - - def get_allocator(self): - return _mscl.Voltages_get_allocator(self) - - def pop_back(self): - return _mscl.Voltages_pop_back(self) - - def erase(self, *args): - return _mscl.Voltages_erase(self, *args) - - def __init__(self, *args): - _mscl.Voltages_swiginit(self, _mscl.new_Voltages(*args)) - - def push_back(self, x): - return _mscl.Voltages_push_back(self, x) - - def front(self): - return _mscl.Voltages_front(self) - - def back(self): - return _mscl.Voltages_back(self) - - def assign(self, n, x): - return _mscl.Voltages_assign(self, n, x) - - def resize(self, *args): - return _mscl.Voltages_resize(self, *args) - - def insert(self, *args): - return _mscl.Voltages_insert(self, *args) - - def reserve(self, n): - return _mscl.Voltages_reserve(self, n) - - def capacity(self): - return _mscl.Voltages_capacity(self) - __swig_destroy__ = _mscl.delete_Voltages - -# Register Voltages in _mscl: -_mscl.Voltages_swigregister(Voltages) - -class SensorOutputModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorOutputModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorOutputModes___nonzero__(self) - - def __bool__(self): - return _mscl.SensorOutputModes___bool__(self) - - def __len__(self): - return _mscl.SensorOutputModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorOutputModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorOutputModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorOutputModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorOutputModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorOutputModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorOutputModes___setitem__(self, *args) - - def pop(self): - return _mscl.SensorOutputModes_pop(self) - - def append(self, x): - return _mscl.SensorOutputModes_append(self, x) - - def empty(self): - return _mscl.SensorOutputModes_empty(self) - - def size(self): - return _mscl.SensorOutputModes_size(self) - - def swap(self, v): - return _mscl.SensorOutputModes_swap(self, v) - - def begin(self): - return _mscl.SensorOutputModes_begin(self) - - def end(self): - return _mscl.SensorOutputModes_end(self) - - def rbegin(self): - return _mscl.SensorOutputModes_rbegin(self) - - def rend(self): - return _mscl.SensorOutputModes_rend(self) - - def clear(self): - return _mscl.SensorOutputModes_clear(self) - - def get_allocator(self): - return _mscl.SensorOutputModes_get_allocator(self) - - def pop_back(self): - return _mscl.SensorOutputModes_pop_back(self) - - def erase(self, *args): - return _mscl.SensorOutputModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorOutputModes_swiginit(self, _mscl.new_SensorOutputModes(*args)) - - def push_back(self, x): - return _mscl.SensorOutputModes_push_back(self, x) - - def front(self): - return _mscl.SensorOutputModes_front(self) - - def back(self): - return _mscl.SensorOutputModes_back(self) - - def assign(self, n, x): - return _mscl.SensorOutputModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorOutputModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorOutputModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorOutputModes_reserve(self, n) - - def capacity(self): - return _mscl.SensorOutputModes_capacity(self) - __swig_destroy__ = _mscl.delete_SensorOutputModes - -# Register SensorOutputModes in _mscl: -_mscl.SensorOutputModes_swigregister(SensorOutputModes) - -class CfcFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CfcFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CfcFilters___nonzero__(self) - - def __bool__(self): - return _mscl.CfcFilters___bool__(self) - - def __len__(self): - return _mscl.CfcFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.CfcFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CfcFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CfcFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CfcFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CfcFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CfcFilters___setitem__(self, *args) - - def pop(self): - return _mscl.CfcFilters_pop(self) - - def append(self, x): - return _mscl.CfcFilters_append(self, x) - - def empty(self): - return _mscl.CfcFilters_empty(self) - - def size(self): - return _mscl.CfcFilters_size(self) - - def swap(self, v): - return _mscl.CfcFilters_swap(self, v) - - def begin(self): - return _mscl.CfcFilters_begin(self) - - def end(self): - return _mscl.CfcFilters_end(self) - - def rbegin(self): - return _mscl.CfcFilters_rbegin(self) - - def rend(self): - return _mscl.CfcFilters_rend(self) - - def clear(self): - return _mscl.CfcFilters_clear(self) - - def get_allocator(self): - return _mscl.CfcFilters_get_allocator(self) - - def pop_back(self): - return _mscl.CfcFilters_pop_back(self) - - def erase(self, *args): - return _mscl.CfcFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.CfcFilters_swiginit(self, _mscl.new_CfcFilters(*args)) - - def push_back(self, x): - return _mscl.CfcFilters_push_back(self, x) - - def front(self): - return _mscl.CfcFilters_front(self) - - def back(self): - return _mscl.CfcFilters_back(self) - - def assign(self, n, x): - return _mscl.CfcFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.CfcFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.CfcFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.CfcFilters_reserve(self, n) - - def capacity(self): - return _mscl.CfcFilters_capacity(self) - __swig_destroy__ = _mscl.delete_CfcFilters - -# Register CfcFilters in _mscl: -_mscl.CfcFilters_swigregister(CfcFilters) - -class TransducerTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransducerTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransducerTypes___nonzero__(self) - - def __bool__(self): - return _mscl.TransducerTypes___bool__(self) - - def __len__(self): - return _mscl.TransducerTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransducerTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransducerTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransducerTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransducerTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransducerTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransducerTypes___setitem__(self, *args) - - def pop(self): - return _mscl.TransducerTypes_pop(self) - - def append(self, x): - return _mscl.TransducerTypes_append(self, x) - - def empty(self): - return _mscl.TransducerTypes_empty(self) - - def size(self): - return _mscl.TransducerTypes_size(self) - - def swap(self, v): - return _mscl.TransducerTypes_swap(self, v) - - def begin(self): - return _mscl.TransducerTypes_begin(self) - - def end(self): - return _mscl.TransducerTypes_end(self) - - def rbegin(self): - return _mscl.TransducerTypes_rbegin(self) - - def rend(self): - return _mscl.TransducerTypes_rend(self) - - def clear(self): - return _mscl.TransducerTypes_clear(self) - - def get_allocator(self): - return _mscl.TransducerTypes_get_allocator(self) - - def pop_back(self): - return _mscl.TransducerTypes_pop_back(self) - - def erase(self, *args): - return _mscl.TransducerTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.TransducerTypes_swiginit(self, _mscl.new_TransducerTypes(*args)) - - def push_back(self, x): - return _mscl.TransducerTypes_push_back(self, x) - - def front(self): - return _mscl.TransducerTypes_front(self) - - def back(self): - return _mscl.TransducerTypes_back(self) - - def assign(self, n, x): - return _mscl.TransducerTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransducerTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.TransducerTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.TransducerTypes_reserve(self, n) - - def capacity(self): - return _mscl.TransducerTypes_capacity(self) - __swig_destroy__ = _mscl.delete_TransducerTypes - -# Register TransducerTypes in _mscl: -_mscl.TransducerTypes_swigregister(TransducerTypes) - -class EepromMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EepromMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EepromMap___nonzero__(self) - - def __bool__(self): - return _mscl.EepromMap___bool__(self) - - def __len__(self): - return _mscl.EepromMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.EepromMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.EepromMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.EepromMap_has_key(self, key) - - def keys(self): - return _mscl.EepromMap_keys(self) - - def values(self): - return _mscl.EepromMap_values(self) - - def items(self): - return _mscl.EepromMap_items(self) - - def __contains__(self, key): - return _mscl.EepromMap___contains__(self, key) - - def key_iterator(self): - return _mscl.EepromMap_key_iterator(self) - - def value_iterator(self): - return _mscl.EepromMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.EepromMap___setitem__(self, *args) - - def asdict(self): - return _mscl.EepromMap_asdict(self) - - def __init__(self, *args): - _mscl.EepromMap_swiginit(self, _mscl.new_EepromMap(*args)) - - def empty(self): - return _mscl.EepromMap_empty(self) - - def size(self): - return _mscl.EepromMap_size(self) - - def swap(self, v): - return _mscl.EepromMap_swap(self, v) - - def begin(self): - return _mscl.EepromMap_begin(self) - - def end(self): - return _mscl.EepromMap_end(self) - - def rbegin(self): - return _mscl.EepromMap_rbegin(self) - - def rend(self): - return _mscl.EepromMap_rend(self) - - def clear(self): - return _mscl.EepromMap_clear(self) - - def get_allocator(self): - return _mscl.EepromMap_get_allocator(self) - - def count(self, x): - return _mscl.EepromMap_count(self, x) - - def erase(self, *args): - return _mscl.EepromMap_erase(self, *args) - - def find(self, x): - return _mscl.EepromMap_find(self, x) - - def lower_bound(self, x): - return _mscl.EepromMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.EepromMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_EepromMap - -# Register EepromMap in _mscl: -_mscl.EepromMap_swigregister(EepromMap) - -class DerivedChannelMasks(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DerivedChannelMasks_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DerivedChannelMasks___nonzero__(self) - - def __bool__(self): - return _mscl.DerivedChannelMasks___bool__(self) - - def __len__(self): - return _mscl.DerivedChannelMasks___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DerivedChannelMasks___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DerivedChannelMasks___delitem__(self, key) - - def has_key(self, key): - return _mscl.DerivedChannelMasks_has_key(self, key) - - def keys(self): - return _mscl.DerivedChannelMasks_keys(self) - - def values(self): - return _mscl.DerivedChannelMasks_values(self) - - def items(self): - return _mscl.DerivedChannelMasks_items(self) - - def __contains__(self, key): - return _mscl.DerivedChannelMasks___contains__(self, key) - - def key_iterator(self): - return _mscl.DerivedChannelMasks_key_iterator(self) - - def value_iterator(self): - return _mscl.DerivedChannelMasks_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DerivedChannelMasks___setitem__(self, *args) - - def asdict(self): - return _mscl.DerivedChannelMasks_asdict(self) - - def __init__(self, *args): - _mscl.DerivedChannelMasks_swiginit(self, _mscl.new_DerivedChannelMasks(*args)) - - def empty(self): - return _mscl.DerivedChannelMasks_empty(self) - - def size(self): - return _mscl.DerivedChannelMasks_size(self) - - def swap(self, v): - return _mscl.DerivedChannelMasks_swap(self, v) - - def begin(self): - return _mscl.DerivedChannelMasks_begin(self) - - def end(self): - return _mscl.DerivedChannelMasks_end(self) - - def rbegin(self): - return _mscl.DerivedChannelMasks_rbegin(self) - - def rend(self): - return _mscl.DerivedChannelMasks_rend(self) - - def clear(self): - return _mscl.DerivedChannelMasks_clear(self) - - def get_allocator(self): - return _mscl.DerivedChannelMasks_get_allocator(self) - - def count(self, x): - return _mscl.DerivedChannelMasks_count(self, x) - - def erase(self, *args): - return _mscl.DerivedChannelMasks_erase(self, *args) - - def find(self, x): - return _mscl.DerivedChannelMasks_find(self, x) - - def lower_bound(self, x): - return _mscl.DerivedChannelMasks_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DerivedChannelMasks_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DerivedChannelMasks - -# Register DerivedChannelMasks in _mscl: -_mscl.DerivedChannelMasks_swigregister(DerivedChannelMasks) - -class DeviceStatusMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusMap_keys(self) - - def values(self): - return _mscl.DeviceStatusMap_values(self) - - def items(self): - return _mscl.DeviceStatusMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusMap_swiginit(self, _mscl.new_DeviceStatusMap(*args)) - - def empty(self): - return _mscl.DeviceStatusMap_empty(self) - - def size(self): - return _mscl.DeviceStatusMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusMap_begin(self) - - def end(self): - return _mscl.DeviceStatusMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusMap - -# Register DeviceStatusMap in _mscl: -_mscl.DeviceStatusMap_swigregister(DeviceStatusMap) - -class DeviceStatusValueMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusValueMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusValueMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusValueMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusValueMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusValueMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusValueMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusValueMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusValueMap_keys(self) - - def values(self): - return _mscl.DeviceStatusValueMap_values(self) - - def items(self): - return _mscl.DeviceStatusValueMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusValueMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusValueMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusValueMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusValueMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusValueMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusValueMap_swiginit(self, _mscl.new_DeviceStatusValueMap(*args)) - - def empty(self): - return _mscl.DeviceStatusValueMap_empty(self) - - def size(self): - return _mscl.DeviceStatusValueMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusValueMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusValueMap_begin(self) - - def end(self): - return _mscl.DeviceStatusValueMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusValueMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusValueMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusValueMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusValueMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusValueMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusValueMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusValueMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusValueMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusValueMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusValueMap - -# Register DeviceStatusValueMap in _mscl: -_mscl.DeviceStatusValueMap_swigregister(DeviceStatusValueMap) - -class SampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.SampleRates___bool__(self) - - def __len__(self): - return _mscl.SampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.SampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.SampleRates_pop(self) - - def append(self, x): - return _mscl.SampleRates_append(self, x) - - def empty(self): - return _mscl.SampleRates_empty(self) - - def size(self): - return _mscl.SampleRates_size(self) - - def swap(self, v): - return _mscl.SampleRates_swap(self, v) - - def begin(self): - return _mscl.SampleRates_begin(self) - - def end(self): - return _mscl.SampleRates_end(self) - - def rbegin(self): - return _mscl.SampleRates_rbegin(self) - - def rend(self): - return _mscl.SampleRates_rend(self) - - def clear(self): - return _mscl.SampleRates_clear(self) - - def get_allocator(self): - return _mscl.SampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.SampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.SampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.SampleRates_swiginit(self, _mscl.new_SampleRates(*args)) - - def push_back(self, x): - return _mscl.SampleRates_push_back(self, x) - - def front(self): - return _mscl.SampleRates_front(self) - - def back(self): - return _mscl.SampleRates_back(self) - - def assign(self, n, x): - return _mscl.SampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.SampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.SampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.SampleRates_reserve(self, n) - - def capacity(self): - return _mscl.SampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_SampleRates - -# Register SampleRates in _mscl: -_mscl.SampleRates_swigregister(SampleRates) - -class ConfigIssues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConfigIssues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConfigIssues___nonzero__(self) - - def __bool__(self): - return _mscl.ConfigIssues___bool__(self) - - def __len__(self): - return _mscl.ConfigIssues___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConfigIssues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConfigIssues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConfigIssues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConfigIssues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConfigIssues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConfigIssues___setitem__(self, *args) - - def pop(self): - return _mscl.ConfigIssues_pop(self) - - def append(self, x): - return _mscl.ConfigIssues_append(self, x) - - def empty(self): - return _mscl.ConfigIssues_empty(self) - - def size(self): - return _mscl.ConfigIssues_size(self) - - def swap(self, v): - return _mscl.ConfigIssues_swap(self, v) - - def begin(self): - return _mscl.ConfigIssues_begin(self) - - def end(self): - return _mscl.ConfigIssues_end(self) - - def rbegin(self): - return _mscl.ConfigIssues_rbegin(self) - - def rend(self): - return _mscl.ConfigIssues_rend(self) - - def clear(self): - return _mscl.ConfigIssues_clear(self) - - def get_allocator(self): - return _mscl.ConfigIssues_get_allocator(self) - - def pop_back(self): - return _mscl.ConfigIssues_pop_back(self) - - def erase(self, *args): - return _mscl.ConfigIssues_erase(self, *args) - - def __init__(self, *args): - _mscl.ConfigIssues_swiginit(self, _mscl.new_ConfigIssues(*args)) - - def push_back(self, x): - return _mscl.ConfigIssues_push_back(self, x) - - def front(self): - return _mscl.ConfigIssues_front(self) - - def back(self): - return _mscl.ConfigIssues_back(self) - - def assign(self, n, x): - return _mscl.ConfigIssues_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConfigIssues_resize(self, *args) - - def insert(self, *args): - return _mscl.ConfigIssues_insert(self, *args) - - def reserve(self, n): - return _mscl.ConfigIssues_reserve(self, n) - - def capacity(self): - return _mscl.ConfigIssues_capacity(self) - __swig_destroy__ = _mscl.delete_ConfigIssues - -# Register ConfigIssues in _mscl: -_mscl.ConfigIssues_swigregister(ConfigIssues) - -class MipChannelFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelFields_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelFields___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelFields___bool__(self) - - def __len__(self): - return _mscl.MipChannelFields___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelFields___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelFields___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelFields___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelFields___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelFields___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelFields___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelFields_pop(self) - - def append(self, x): - return _mscl.MipChannelFields_append(self, x) - - def empty(self): - return _mscl.MipChannelFields_empty(self) - - def size(self): - return _mscl.MipChannelFields_size(self) - - def swap(self, v): - return _mscl.MipChannelFields_swap(self, v) - - def begin(self): - return _mscl.MipChannelFields_begin(self) - - def end(self): - return _mscl.MipChannelFields_end(self) - - def rbegin(self): - return _mscl.MipChannelFields_rbegin(self) - - def rend(self): - return _mscl.MipChannelFields_rend(self) - - def clear(self): - return _mscl.MipChannelFields_clear(self) - - def get_allocator(self): - return _mscl.MipChannelFields_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelFields_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelFields_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelFields_swiginit(self, _mscl.new_MipChannelFields(*args)) - - def push_back(self, x): - return _mscl.MipChannelFields_push_back(self, x) - - def front(self): - return _mscl.MipChannelFields_front(self) - - def back(self): - return _mscl.MipChannelFields_back(self) - - def assign(self, n, x): - return _mscl.MipChannelFields_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelFields_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelFields_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelFields_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelFields_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelFields - -# Register MipChannelFields in _mscl: -_mscl.MipChannelFields_swigregister(MipChannelFields) - -class MipCommands(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommands_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommands___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommands___bool__(self) - - def __len__(self): - return _mscl.MipCommands___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommands___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommands___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommands___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommands___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommands___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommands___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommands_pop(self) - - def append(self, x): - return _mscl.MipCommands_append(self, x) - - def empty(self): - return _mscl.MipCommands_empty(self) - - def size(self): - return _mscl.MipCommands_size(self) - - def swap(self, v): - return _mscl.MipCommands_swap(self, v) - - def begin(self): - return _mscl.MipCommands_begin(self) - - def end(self): - return _mscl.MipCommands_end(self) - - def rbegin(self): - return _mscl.MipCommands_rbegin(self) - - def rend(self): - return _mscl.MipCommands_rend(self) - - def clear(self): - return _mscl.MipCommands_clear(self) - - def get_allocator(self): - return _mscl.MipCommands_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommands_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommands_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommands_swiginit(self, _mscl.new_MipCommands(*args)) - - def push_back(self, x): - return _mscl.MipCommands_push_back(self, x) - - def front(self): - return _mscl.MipCommands_front(self) - - def back(self): - return _mscl.MipCommands_back(self) - - def assign(self, n, x): - return _mscl.MipCommands_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommands_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommands_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommands_reserve(self, n) - - def capacity(self): - return _mscl.MipCommands_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommands - -# Register MipCommands in _mscl: -_mscl.MipCommands_swigregister(MipCommands) - -class MipDataClasses(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataClasses_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataClasses___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataClasses___bool__(self) - - def __len__(self): - return _mscl.MipDataClasses___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataClasses___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataClasses___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataClasses___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataClasses___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataClasses___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataClasses___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataClasses_pop(self) - - def append(self, x): - return _mscl.MipDataClasses_append(self, x) - - def empty(self): - return _mscl.MipDataClasses_empty(self) - - def size(self): - return _mscl.MipDataClasses_size(self) - - def swap(self, v): - return _mscl.MipDataClasses_swap(self, v) - - def begin(self): - return _mscl.MipDataClasses_begin(self) - - def end(self): - return _mscl.MipDataClasses_end(self) - - def rbegin(self): - return _mscl.MipDataClasses_rbegin(self) - - def rend(self): - return _mscl.MipDataClasses_rend(self) - - def clear(self): - return _mscl.MipDataClasses_clear(self) - - def get_allocator(self): - return _mscl.MipDataClasses_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataClasses_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataClasses_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataClasses_swiginit(self, _mscl.new_MipDataClasses(*args)) - - def push_back(self, x): - return _mscl.MipDataClasses_push_back(self, x) - - def front(self): - return _mscl.MipDataClasses_front(self) - - def back(self): - return _mscl.MipDataClasses_back(self) - - def assign(self, n, x): - return _mscl.MipDataClasses_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataClasses_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataClasses_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataClasses_reserve(self, n) - - def capacity(self): - return _mscl.MipDataClasses_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataClasses - -# Register MipDataClasses in _mscl: -_mscl.MipDataClasses_swigregister(MipDataClasses) - -class MipChannelIdentifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelIdentifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelIdentifiers___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelIdentifiers___bool__(self) - - def __len__(self): - return _mscl.MipChannelIdentifiers___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelIdentifiers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelIdentifiers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelIdentifiers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelIdentifiers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelIdentifiers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelIdentifiers___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelIdentifiers_pop(self) - - def append(self, x): - return _mscl.MipChannelIdentifiers_append(self, x) - - def empty(self): - return _mscl.MipChannelIdentifiers_empty(self) - - def size(self): - return _mscl.MipChannelIdentifiers_size(self) - - def swap(self, v): - return _mscl.MipChannelIdentifiers_swap(self, v) - - def begin(self): - return _mscl.MipChannelIdentifiers_begin(self) - - def end(self): - return _mscl.MipChannelIdentifiers_end(self) - - def rbegin(self): - return _mscl.MipChannelIdentifiers_rbegin(self) - - def rend(self): - return _mscl.MipChannelIdentifiers_rend(self) - - def clear(self): - return _mscl.MipChannelIdentifiers_clear(self) - - def get_allocator(self): - return _mscl.MipChannelIdentifiers_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelIdentifiers_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelIdentifiers_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelIdentifiers_swiginit(self, _mscl.new_MipChannelIdentifiers(*args)) - - def push_back(self, x): - return _mscl.MipChannelIdentifiers_push_back(self, x) - - def front(self): - return _mscl.MipChannelIdentifiers_front(self) - - def back(self): - return _mscl.MipChannelIdentifiers_back(self) - - def assign(self, n, x): - return _mscl.MipChannelIdentifiers_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelIdentifiers_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelIdentifiers_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelIdentifiers_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelIdentifiers_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelIdentifiers - -# Register MipChannelIdentifiers in _mscl: -_mscl.MipChannelIdentifiers_swigregister(MipChannelIdentifiers) - -class MipCommandSet(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandSet_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandSet___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandSet___bool__(self) - - def __len__(self): - return _mscl.MipCommandSet___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandSet___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandSet___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandSet___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandSet___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandSet___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandSet___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandSet_pop(self) - - def append(self, x): - return _mscl.MipCommandSet_append(self, x) - - def empty(self): - return _mscl.MipCommandSet_empty(self) - - def size(self): - return _mscl.MipCommandSet_size(self) - - def swap(self, v): - return _mscl.MipCommandSet_swap(self, v) - - def begin(self): - return _mscl.MipCommandSet_begin(self) - - def end(self): - return _mscl.MipCommandSet_end(self) - - def rbegin(self): - return _mscl.MipCommandSet_rbegin(self) - - def rend(self): - return _mscl.MipCommandSet_rend(self) - - def clear(self): - return _mscl.MipCommandSet_clear(self) - - def get_allocator(self): - return _mscl.MipCommandSet_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandSet_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandSet_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandSet_swiginit(self, _mscl.new_MipCommandSet(*args)) - - def push_back(self, x): - return _mscl.MipCommandSet_push_back(self, x) - - def front(self): - return _mscl.MipCommandSet_front(self) - - def back(self): - return _mscl.MipCommandSet_back(self) - - def assign(self, n, x): - return _mscl.MipCommandSet_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandSet_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandSet_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandSet_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandSet_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandSet - -# Register MipCommandSet in _mscl: -_mscl.MipCommandSet_swigregister(MipCommandSet) - -class MipFieldValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipFieldValues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipFieldValues___nonzero__(self) - - def __bool__(self): - return _mscl.MipFieldValues___bool__(self) - - def __len__(self): - return _mscl.MipFieldValues___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipFieldValues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipFieldValues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipFieldValues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipFieldValues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipFieldValues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipFieldValues___setitem__(self, *args) - - def pop(self): - return _mscl.MipFieldValues_pop(self) - - def append(self, x): - return _mscl.MipFieldValues_append(self, x) - - def empty(self): - return _mscl.MipFieldValues_empty(self) - - def size(self): - return _mscl.MipFieldValues_size(self) - - def swap(self, v): - return _mscl.MipFieldValues_swap(self, v) - - def begin(self): - return _mscl.MipFieldValues_begin(self) - - def end(self): - return _mscl.MipFieldValues_end(self) - - def rbegin(self): - return _mscl.MipFieldValues_rbegin(self) - - def rend(self): - return _mscl.MipFieldValues_rend(self) - - def clear(self): - return _mscl.MipFieldValues_clear(self) - - def get_allocator(self): - return _mscl.MipFieldValues_get_allocator(self) - - def pop_back(self): - return _mscl.MipFieldValues_pop_back(self) - - def erase(self, *args): - return _mscl.MipFieldValues_erase(self, *args) - - def __init__(self, *args): - _mscl.MipFieldValues_swiginit(self, _mscl.new_MipFieldValues(*args)) - - def push_back(self, x): - return _mscl.MipFieldValues_push_back(self, x) - - def front(self): - return _mscl.MipFieldValues_front(self) - - def back(self): - return _mscl.MipFieldValues_back(self) - - def assign(self, n, x): - return _mscl.MipFieldValues_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipFieldValues_resize(self, *args) - - def insert(self, *args): - return _mscl.MipFieldValues_insert(self, *args) - - def reserve(self, n): - return _mscl.MipFieldValues_reserve(self, n) - - def capacity(self): - return _mscl.MipFieldValues_capacity(self) - __swig_destroy__ = _mscl.delete_MipFieldValues - -# Register MipFieldValues in _mscl: -_mscl.MipFieldValues_swigregister(MipFieldValues) - -class MipCommandParamPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipCommandParamPair_swiginit(self, _mscl.new_MipCommandParamPair(*args)) - first = property(_mscl.MipCommandParamPair_first_get, _mscl.MipCommandParamPair_first_set) - second = property(_mscl.MipCommandParamPair_second_get, _mscl.MipCommandParamPair_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_MipCommandParamPair - -# Register MipCommandParamPair in _mscl: -_mscl.MipCommandParamPair_swigregister(MipCommandParamPair) - -class MipCommandParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandParameters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandParameters___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandParameters___bool__(self) - - def __len__(self): - return _mscl.MipCommandParameters___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandParameters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandParameters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandParameters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandParameters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandParameters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandParameters___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandParameters_pop(self) - - def append(self, x): - return _mscl.MipCommandParameters_append(self, x) - - def empty(self): - return _mscl.MipCommandParameters_empty(self) - - def size(self): - return _mscl.MipCommandParameters_size(self) - - def swap(self, v): - return _mscl.MipCommandParameters_swap(self, v) - - def begin(self): - return _mscl.MipCommandParameters_begin(self) - - def end(self): - return _mscl.MipCommandParameters_end(self) - - def rbegin(self): - return _mscl.MipCommandParameters_rbegin(self) - - def rend(self): - return _mscl.MipCommandParameters_rend(self) - - def clear(self): - return _mscl.MipCommandParameters_clear(self) - - def get_allocator(self): - return _mscl.MipCommandParameters_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandParameters_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandParameters_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandParameters_swiginit(self, _mscl.new_MipCommandParameters(*args)) - - def push_back(self, x): - return _mscl.MipCommandParameters_push_back(self, x) - - def front(self): - return _mscl.MipCommandParameters_front(self) - - def back(self): - return _mscl.MipCommandParameters_back(self) - - def assign(self, n, x): - return _mscl.MipCommandParameters_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandParameters_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandParameters_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandParameters_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandParameters_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandParameters - -# Register MipCommandParameters in _mscl: -_mscl.MipCommandParameters_swigregister(MipCommandParameters) - -class ChannelIndex(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ChannelIndex_swiginit(self, _mscl.new_ChannelIndex(*args)) - first = property(_mscl.ChannelIndex_first_get, _mscl.ChannelIndex_first_set) - second = property(_mscl.ChannelIndex_second_get, _mscl.ChannelIndex_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_ChannelIndex - -# Register ChannelIndex in _mscl: -_mscl.ChannelIndex_swigregister(ChannelIndex) - -class ChannelIndices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelIndices_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelIndices___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelIndices___bool__(self) - - def __len__(self): - return _mscl.ChannelIndices___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelIndices___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelIndices___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelIndices___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelIndices___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelIndices___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelIndices___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelIndices_pop(self) - - def append(self, x): - return _mscl.ChannelIndices_append(self, x) - - def empty(self): - return _mscl.ChannelIndices_empty(self) - - def size(self): - return _mscl.ChannelIndices_size(self) - - def swap(self, v): - return _mscl.ChannelIndices_swap(self, v) - - def begin(self): - return _mscl.ChannelIndices_begin(self) - - def end(self): - return _mscl.ChannelIndices_end(self) - - def rbegin(self): - return _mscl.ChannelIndices_rbegin(self) - - def rend(self): - return _mscl.ChannelIndices_rend(self) - - def clear(self): - return _mscl.ChannelIndices_clear(self) - - def get_allocator(self): - return _mscl.ChannelIndices_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelIndices_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelIndices_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelIndices_swiginit(self, _mscl.new_ChannelIndices(*args)) - - def push_back(self, x): - return _mscl.ChannelIndices_push_back(self, x) - - def front(self): - return _mscl.ChannelIndices_front(self) - - def back(self): - return _mscl.ChannelIndices_back(self) - - def assign(self, n, x): - return _mscl.ChannelIndices_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelIndices_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelIndices_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelIndices_reserve(self, n) - - def capacity(self): - return _mscl.ChannelIndices_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelIndices - -# Register ChannelIndices in _mscl: -_mscl.ChannelIndices_swigregister(ChannelIndices) - -class ChannelFieldQualifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelFieldQualifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelFieldQualifiers___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelFieldQualifiers___bool__(self) - - def __len__(self): - return _mscl.ChannelFieldQualifiers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelFieldQualifiers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelFieldQualifiers___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelFieldQualifiers_has_key(self, key) - - def keys(self): - return _mscl.ChannelFieldQualifiers_keys(self) - - def values(self): - return _mscl.ChannelFieldQualifiers_values(self) - - def items(self): - return _mscl.ChannelFieldQualifiers_items(self) - - def __contains__(self, key): - return _mscl.ChannelFieldQualifiers___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelFieldQualifiers_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelFieldQualifiers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelFieldQualifiers___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelFieldQualifiers_asdict(self) - - def __init__(self, *args): - _mscl.ChannelFieldQualifiers_swiginit(self, _mscl.new_ChannelFieldQualifiers(*args)) - - def empty(self): - return _mscl.ChannelFieldQualifiers_empty(self) - - def size(self): - return _mscl.ChannelFieldQualifiers_size(self) - - def swap(self, v): - return _mscl.ChannelFieldQualifiers_swap(self, v) - - def begin(self): - return _mscl.ChannelFieldQualifiers_begin(self) - - def end(self): - return _mscl.ChannelFieldQualifiers_end(self) - - def rbegin(self): - return _mscl.ChannelFieldQualifiers_rbegin(self) - - def rend(self): - return _mscl.ChannelFieldQualifiers_rend(self) - - def clear(self): - return _mscl.ChannelFieldQualifiers_clear(self) - - def get_allocator(self): - return _mscl.ChannelFieldQualifiers_get_allocator(self) - - def count(self, x): - return _mscl.ChannelFieldQualifiers_count(self, x) - - def erase(self, *args): - return _mscl.ChannelFieldQualifiers_erase(self, *args) - - def find(self, x): - return _mscl.ChannelFieldQualifiers_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelFieldQualifiers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelFieldQualifiers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelFieldQualifiers - -# Register ChannelFieldQualifiers in _mscl: -_mscl.ChannelFieldQualifiers_swigregister(ChannelFieldQualifiers) - -class GnssReceivers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssReceivers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssReceivers___nonzero__(self) - - def __bool__(self): - return _mscl.GnssReceivers___bool__(self) - - def __len__(self): - return _mscl.GnssReceivers___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssReceivers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssReceivers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssReceivers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssReceivers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssReceivers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssReceivers___setitem__(self, *args) - - def pop(self): - return _mscl.GnssReceivers_pop(self) - - def append(self, x): - return _mscl.GnssReceivers_append(self, x) - - def empty(self): - return _mscl.GnssReceivers_empty(self) - - def size(self): - return _mscl.GnssReceivers_size(self) - - def swap(self, v): - return _mscl.GnssReceivers_swap(self, v) - - def begin(self): - return _mscl.GnssReceivers_begin(self) - - def end(self): - return _mscl.GnssReceivers_end(self) - - def rbegin(self): - return _mscl.GnssReceivers_rbegin(self) - - def rend(self): - return _mscl.GnssReceivers_rend(self) - - def clear(self): - return _mscl.GnssReceivers_clear(self) - - def get_allocator(self): - return _mscl.GnssReceivers_get_allocator(self) - - def pop_back(self): - return _mscl.GnssReceivers_pop_back(self) - - def erase(self, *args): - return _mscl.GnssReceivers_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssReceivers_swiginit(self, _mscl.new_GnssReceivers(*args)) - - def push_back(self, x): - return _mscl.GnssReceivers_push_back(self, x) - - def front(self): - return _mscl.GnssReceivers_front(self) - - def back(self): - return _mscl.GnssReceivers_back(self) - - def assign(self, n, x): - return _mscl.GnssReceivers_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssReceivers_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssReceivers_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssReceivers_reserve(self, n) - - def capacity(self): - return _mscl.GnssReceivers_capacity(self) - __swig_destroy__ = _mscl.delete_GnssReceivers - -# Register GnssReceivers in _mscl: -_mscl.GnssReceivers_swigregister(GnssReceivers) - -class SensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRanges___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRanges___bool__(self) - - def __len__(self): - return _mscl.SensorRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorRanges___setitem__(self, *args) - - def pop(self): - return _mscl.SensorRanges_pop(self) - - def append(self, x): - return _mscl.SensorRanges_append(self, x) - - def empty(self): - return _mscl.SensorRanges_empty(self) - - def size(self): - return _mscl.SensorRanges_size(self) - - def swap(self, v): - return _mscl.SensorRanges_swap(self, v) - - def begin(self): - return _mscl.SensorRanges_begin(self) - - def end(self): - return _mscl.SensorRanges_end(self) - - def rbegin(self): - return _mscl.SensorRanges_rbegin(self) - - def rend(self): - return _mscl.SensorRanges_rend(self) - - def clear(self): - return _mscl.SensorRanges_clear(self) - - def get_allocator(self): - return _mscl.SensorRanges_get_allocator(self) - - def pop_back(self): - return _mscl.SensorRanges_pop_back(self) - - def erase(self, *args): - return _mscl.SensorRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorRanges_swiginit(self, _mscl.new_SensorRanges(*args)) - - def push_back(self, x): - return _mscl.SensorRanges_push_back(self, x) - - def front(self): - return _mscl.SensorRanges_front(self) - - def back(self): - return _mscl.SensorRanges_back(self) - - def assign(self, n, x): - return _mscl.SensorRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorRanges_reserve(self, n) - - def capacity(self): - return _mscl.SensorRanges_capacity(self) - __swig_destroy__ = _mscl.delete_SensorRanges - -# Register SensorRanges in _mscl: -_mscl.SensorRanges_swigregister(SensorRanges) - -class SensorRangeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRangeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRangeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRangeOptions___bool__(self) - - def __len__(self): - return _mscl.SensorRangeOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SensorRangeOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SensorRangeOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.SensorRangeOptions_has_key(self, key) - - def keys(self): - return _mscl.SensorRangeOptions_keys(self) - - def values(self): - return _mscl.SensorRangeOptions_values(self) - - def items(self): - return _mscl.SensorRangeOptions_items(self) - - def __contains__(self, key): - return _mscl.SensorRangeOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.SensorRangeOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.SensorRangeOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SensorRangeOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.SensorRangeOptions_asdict(self) - - def __init__(self, *args): - _mscl.SensorRangeOptions_swiginit(self, _mscl.new_SensorRangeOptions(*args)) - - def empty(self): - return _mscl.SensorRangeOptions_empty(self) - - def size(self): - return _mscl.SensorRangeOptions_size(self) - - def swap(self, v): - return _mscl.SensorRangeOptions_swap(self, v) - - def begin(self): - return _mscl.SensorRangeOptions_begin(self) - - def end(self): - return _mscl.SensorRangeOptions_end(self) - - def rbegin(self): - return _mscl.SensorRangeOptions_rbegin(self) - - def rend(self): - return _mscl.SensorRangeOptions_rend(self) - - def clear(self): - return _mscl.SensorRangeOptions_clear(self) - - def get_allocator(self): - return _mscl.SensorRangeOptions_get_allocator(self) - - def count(self, x): - return _mscl.SensorRangeOptions_count(self, x) - - def erase(self, *args): - return _mscl.SensorRangeOptions_erase(self, *args) - - def find(self, x): - return _mscl.SensorRangeOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.SensorRangeOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SensorRangeOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SensorRangeOptions - -# Register SensorRangeOptions in _mscl: -_mscl.SensorRangeOptions_swigregister(SensorRangeOptions) - -class CommPortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommPortInfo_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommPortInfo___nonzero__(self) - - def __bool__(self): - return _mscl.CommPortInfo___bool__(self) - - def __len__(self): - return _mscl.CommPortInfo___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommPortInfo___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommPortInfo___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommPortInfo___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommPortInfo___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommPortInfo___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommPortInfo___setitem__(self, *args) - - def pop(self): - return _mscl.CommPortInfo_pop(self) - - def append(self, x): - return _mscl.CommPortInfo_append(self, x) - - def empty(self): - return _mscl.CommPortInfo_empty(self) - - def size(self): - return _mscl.CommPortInfo_size(self) - - def swap(self, v): - return _mscl.CommPortInfo_swap(self, v) - - def begin(self): - return _mscl.CommPortInfo_begin(self) - - def end(self): - return _mscl.CommPortInfo_end(self) - - def rbegin(self): - return _mscl.CommPortInfo_rbegin(self) - - def rend(self): - return _mscl.CommPortInfo_rend(self) - - def clear(self): - return _mscl.CommPortInfo_clear(self) - - def get_allocator(self): - return _mscl.CommPortInfo_get_allocator(self) - - def pop_back(self): - return _mscl.CommPortInfo_pop_back(self) - - def erase(self, *args): - return _mscl.CommPortInfo_erase(self, *args) - - def __init__(self, *args): - _mscl.CommPortInfo_swiginit(self, _mscl.new_CommPortInfo(*args)) - - def push_back(self, x): - return _mscl.CommPortInfo_push_back(self, x) - - def front(self): - return _mscl.CommPortInfo_front(self) - - def back(self): - return _mscl.CommPortInfo_back(self) - - def assign(self, n, x): - return _mscl.CommPortInfo_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommPortInfo_resize(self, *args) - - def insert(self, *args): - return _mscl.CommPortInfo_insert(self, *args) - - def reserve(self, n): - return _mscl.CommPortInfo_reserve(self, n) - - def capacity(self): - return _mscl.CommPortInfo_capacity(self) - __swig_destroy__ = _mscl.delete_CommPortInfo - -# Register CommPortInfo in _mscl: -_mscl.CommPortInfo_swigregister(CommPortInfo) - -class EventTriggerStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTriggerStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTriggerStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventTriggerStatus___bool__(self) - - def __len__(self): - return _mscl.EventTriggerStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTriggerStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTriggerStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTriggerStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTriggerStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTriggerStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTriggerStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventTriggerStatus_pop(self) - - def append(self, x): - return _mscl.EventTriggerStatus_append(self, x) - - def empty(self): - return _mscl.EventTriggerStatus_empty(self) - - def size(self): - return _mscl.EventTriggerStatus_size(self) - - def swap(self, v): - return _mscl.EventTriggerStatus_swap(self, v) - - def begin(self): - return _mscl.EventTriggerStatus_begin(self) - - def end(self): - return _mscl.EventTriggerStatus_end(self) - - def rbegin(self): - return _mscl.EventTriggerStatus_rbegin(self) - - def rend(self): - return _mscl.EventTriggerStatus_rend(self) - - def clear(self): - return _mscl.EventTriggerStatus_clear(self) - - def get_allocator(self): - return _mscl.EventTriggerStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventTriggerStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventTriggerStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTriggerStatus_swiginit(self, _mscl.new_EventTriggerStatus(*args)) - - def push_back(self, x): - return _mscl.EventTriggerStatus_push_back(self, x) - - def front(self): - return _mscl.EventTriggerStatus_front(self) - - def back(self): - return _mscl.EventTriggerStatus_back(self) - - def assign(self, n, x): - return _mscl.EventTriggerStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTriggerStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTriggerStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTriggerStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventTriggerStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventTriggerStatus - -# Register EventTriggerStatus in _mscl: -_mscl.EventTriggerStatus_swigregister(EventTriggerStatus) - -class EventActionStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventActionStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventActionStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventActionStatus___bool__(self) - - def __len__(self): - return _mscl.EventActionStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventActionStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventActionStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventActionStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventActionStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventActionStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventActionStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventActionStatus_pop(self) - - def append(self, x): - return _mscl.EventActionStatus_append(self, x) - - def empty(self): - return _mscl.EventActionStatus_empty(self) - - def size(self): - return _mscl.EventActionStatus_size(self) - - def swap(self, v): - return _mscl.EventActionStatus_swap(self, v) - - def begin(self): - return _mscl.EventActionStatus_begin(self) - - def end(self): - return _mscl.EventActionStatus_end(self) - - def rbegin(self): - return _mscl.EventActionStatus_rbegin(self) - - def rend(self): - return _mscl.EventActionStatus_rend(self) - - def clear(self): - return _mscl.EventActionStatus_clear(self) - - def get_allocator(self): - return _mscl.EventActionStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventActionStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventActionStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventActionStatus_swiginit(self, _mscl.new_EventActionStatus(*args)) - - def push_back(self, x): - return _mscl.EventActionStatus_push_back(self, x) - - def front(self): - return _mscl.EventActionStatus_front(self) - - def back(self): - return _mscl.EventActionStatus_back(self) - - def assign(self, n, x): - return _mscl.EventActionStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventActionStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventActionStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventActionStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventActionStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventActionStatus - -# Register EventActionStatus in _mscl: -_mscl.EventActionStatus_swigregister(EventActionStatus) - -class ChannelGroups(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroups_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroups___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroups___bool__(self) - - def __len__(self): - return _mscl.ChannelGroups___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroups___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroups___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroups___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroups___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroups___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroups___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroups_pop(self) - - def append(self, x): - return _mscl.ChannelGroups_append(self, x) - - def empty(self): - return _mscl.ChannelGroups_empty(self) - - def size(self): - return _mscl.ChannelGroups_size(self) - - def swap(self, v): - return _mscl.ChannelGroups_swap(self, v) - - def begin(self): - return _mscl.ChannelGroups_begin(self) - - def end(self): - return _mscl.ChannelGroups_end(self) - - def rbegin(self): - return _mscl.ChannelGroups_rbegin(self) - - def rend(self): - return _mscl.ChannelGroups_rend(self) - - def clear(self): - return _mscl.ChannelGroups_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroups_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroups_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroups_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroups_swiginit(self, _mscl.new_ChannelGroups(*args)) - - def push_back(self, x): - return _mscl.ChannelGroups_push_back(self, x) - - def front(self): - return _mscl.ChannelGroups_front(self) - - def back(self): - return _mscl.ChannelGroups_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroups_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroups_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroups_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroups_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroups_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroups - -# Register ChannelGroups in _mscl: -_mscl.ChannelGroups_swigregister(ChannelGroups) - -class WirelessChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessChannels___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessChannels___bool__(self) - - def __len__(self): - return _mscl.WirelessChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessChannels___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessChannels_pop(self) - - def append(self, x): - return _mscl.WirelessChannels_append(self, x) - - def empty(self): - return _mscl.WirelessChannels_empty(self) - - def size(self): - return _mscl.WirelessChannels_size(self) - - def swap(self, v): - return _mscl.WirelessChannels_swap(self, v) - - def begin(self): - return _mscl.WirelessChannels_begin(self) - - def end(self): - return _mscl.WirelessChannels_end(self) - - def rbegin(self): - return _mscl.WirelessChannels_rbegin(self) - - def rend(self): - return _mscl.WirelessChannels_rend(self) - - def clear(self): - return _mscl.WirelessChannels_clear(self) - - def get_allocator(self): - return _mscl.WirelessChannels_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessChannels_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessChannels_swiginit(self, _mscl.new_WirelessChannels(*args)) - - def push_back(self, x): - return _mscl.WirelessChannels_push_back(self, x) - - def front(self): - return _mscl.WirelessChannels_front(self) - - def back(self): - return _mscl.WirelessChannels_back(self) - - def assign(self, n, x): - return _mscl.WirelessChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessChannels_reserve(self, n) - - def capacity(self): - return _mscl.WirelessChannels_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessChannels - -# Register WirelessChannels in _mscl: -_mscl.WirelessChannels_swigregister(WirelessChannels) - -class DamageAngles(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DamageAngles_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DamageAngles___nonzero__(self) - - def __bool__(self): - return _mscl.DamageAngles___bool__(self) - - def __len__(self): - return _mscl.DamageAngles___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DamageAngles___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DamageAngles___delitem__(self, key) - - def has_key(self, key): - return _mscl.DamageAngles_has_key(self, key) - - def keys(self): - return _mscl.DamageAngles_keys(self) - - def values(self): - return _mscl.DamageAngles_values(self) - - def items(self): - return _mscl.DamageAngles_items(self) - - def __contains__(self, key): - return _mscl.DamageAngles___contains__(self, key) - - def key_iterator(self): - return _mscl.DamageAngles_key_iterator(self) - - def value_iterator(self): - return _mscl.DamageAngles_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DamageAngles___setitem__(self, *args) - - def asdict(self): - return _mscl.DamageAngles_asdict(self) - - def __init__(self, *args): - _mscl.DamageAngles_swiginit(self, _mscl.new_DamageAngles(*args)) - - def empty(self): - return _mscl.DamageAngles_empty(self) - - def size(self): - return _mscl.DamageAngles_size(self) - - def swap(self, v): - return _mscl.DamageAngles_swap(self, v) - - def begin(self): - return _mscl.DamageAngles_begin(self) - - def end(self): - return _mscl.DamageAngles_end(self) - - def rbegin(self): - return _mscl.DamageAngles_rbegin(self) - - def rend(self): - return _mscl.DamageAngles_rend(self) - - def clear(self): - return _mscl.DamageAngles_clear(self) - - def get_allocator(self): - return _mscl.DamageAngles_get_allocator(self) - - def count(self, x): - return _mscl.DamageAngles_count(self, x) - - def erase(self, *args): - return _mscl.DamageAngles_erase(self, *args) - - def find(self, x): - return _mscl.DamageAngles_find(self, x) - - def lower_bound(self, x): - return _mscl.DamageAngles_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DamageAngles_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DamageAngles - -# Register DamageAngles in _mscl: -_mscl.DamageAngles_swigregister(DamageAngles) - -class SnCurveSegments(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SnCurveSegments_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SnCurveSegments___nonzero__(self) - - def __bool__(self): - return _mscl.SnCurveSegments___bool__(self) - - def __len__(self): - return _mscl.SnCurveSegments___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SnCurveSegments___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SnCurveSegments___delitem__(self, key) - - def has_key(self, key): - return _mscl.SnCurveSegments_has_key(self, key) - - def keys(self): - return _mscl.SnCurveSegments_keys(self) - - def values(self): - return _mscl.SnCurveSegments_values(self) - - def items(self): - return _mscl.SnCurveSegments_items(self) - - def __contains__(self, key): - return _mscl.SnCurveSegments___contains__(self, key) - - def key_iterator(self): - return _mscl.SnCurveSegments_key_iterator(self) - - def value_iterator(self): - return _mscl.SnCurveSegments_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SnCurveSegments___setitem__(self, *args) - - def asdict(self): - return _mscl.SnCurveSegments_asdict(self) - - def __init__(self, *args): - _mscl.SnCurveSegments_swiginit(self, _mscl.new_SnCurveSegments(*args)) - - def empty(self): - return _mscl.SnCurveSegments_empty(self) - - def size(self): - return _mscl.SnCurveSegments_size(self) - - def swap(self, v): - return _mscl.SnCurveSegments_swap(self, v) - - def begin(self): - return _mscl.SnCurveSegments_begin(self) - - def end(self): - return _mscl.SnCurveSegments_end(self) - - def rbegin(self): - return _mscl.SnCurveSegments_rbegin(self) - - def rend(self): - return _mscl.SnCurveSegments_rend(self) - - def clear(self): - return _mscl.SnCurveSegments_clear(self) - - def get_allocator(self): - return _mscl.SnCurveSegments_get_allocator(self) - - def count(self, x): - return _mscl.SnCurveSegments_count(self, x) - - def erase(self, *args): - return _mscl.SnCurveSegments_erase(self, *args) - - def find(self, x): - return _mscl.SnCurveSegments_find(self, x) - - def lower_bound(self, x): - return _mscl.SnCurveSegments_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SnCurveSegments_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SnCurveSegments - -# Register SnCurveSegments in _mscl: -_mscl.SnCurveSegments_swigregister(SnCurveSegments) - -class RfSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RfSweep_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RfSweep___nonzero__(self) - - def __bool__(self): - return _mscl.RfSweep___bool__(self) - - def __len__(self): - return _mscl.RfSweep___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.RfSweep___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.RfSweep___delitem__(self, key) - - def has_key(self, key): - return _mscl.RfSweep_has_key(self, key) - - def keys(self): - return _mscl.RfSweep_keys(self) - - def values(self): - return _mscl.RfSweep_values(self) - - def items(self): - return _mscl.RfSweep_items(self) - - def __contains__(self, key): - return _mscl.RfSweep___contains__(self, key) - - def key_iterator(self): - return _mscl.RfSweep_key_iterator(self) - - def value_iterator(self): - return _mscl.RfSweep_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.RfSweep___setitem__(self, *args) - - def asdict(self): - return _mscl.RfSweep_asdict(self) - - def __init__(self, *args): - _mscl.RfSweep_swiginit(self, _mscl.new_RfSweep(*args)) - - def empty(self): - return _mscl.RfSweep_empty(self) - - def size(self): - return _mscl.RfSweep_size(self) - - def swap(self, v): - return _mscl.RfSweep_swap(self, v) - - def begin(self): - return _mscl.RfSweep_begin(self) - - def end(self): - return _mscl.RfSweep_end(self) - - def rbegin(self): - return _mscl.RfSweep_rbegin(self) - - def rend(self): - return _mscl.RfSweep_rend(self) - - def clear(self): - return _mscl.RfSweep_clear(self) - - def get_allocator(self): - return _mscl.RfSweep_get_allocator(self) - - def count(self, x): - return _mscl.RfSweep_count(self, x) - - def erase(self, *args): - return _mscl.RfSweep_erase(self, *args) - - def find(self, x): - return _mscl.RfSweep_find(self, x) - - def lower_bound(self, x): - return _mscl.RfSweep_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.RfSweep_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_RfSweep - -# Register RfSweep in _mscl: -_mscl.RfSweep_swigregister(RfSweep) - -class Triggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Triggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Triggers___nonzero__(self) - - def __bool__(self): - return _mscl.Triggers___bool__(self) - - def __len__(self): - return _mscl.Triggers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.Triggers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.Triggers___delitem__(self, key) - - def has_key(self, key): - return _mscl.Triggers_has_key(self, key) - - def keys(self): - return _mscl.Triggers_keys(self) - - def values(self): - return _mscl.Triggers_values(self) - - def items(self): - return _mscl.Triggers_items(self) - - def __contains__(self, key): - return _mscl.Triggers___contains__(self, key) - - def key_iterator(self): - return _mscl.Triggers_key_iterator(self) - - def value_iterator(self): - return _mscl.Triggers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.Triggers___setitem__(self, *args) - - def asdict(self): - return _mscl.Triggers_asdict(self) - - def __init__(self, *args): - _mscl.Triggers_swiginit(self, _mscl.new_Triggers(*args)) - - def empty(self): - return _mscl.Triggers_empty(self) - - def size(self): - return _mscl.Triggers_size(self) - - def swap(self, v): - return _mscl.Triggers_swap(self, v) - - def begin(self): - return _mscl.Triggers_begin(self) - - def end(self): - return _mscl.Triggers_end(self) - - def rbegin(self): - return _mscl.Triggers_rbegin(self) - - def rend(self): - return _mscl.Triggers_rend(self) - - def clear(self): - return _mscl.Triggers_clear(self) - - def get_allocator(self): - return _mscl.Triggers_get_allocator(self) - - def count(self, x): - return _mscl.Triggers_count(self, x) - - def erase(self, *args): - return _mscl.Triggers_erase(self, *args) - - def find(self, x): - return _mscl.Triggers_find(self, x) - - def lower_bound(self, x): - return _mscl.Triggers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.Triggers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_Triggers - -# Register Triggers in _mscl: -_mscl.Triggers_swigregister(Triggers) - -class ChannelCalMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelCalMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelCalMap___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelCalMap___bool__(self) - - def __len__(self): - return _mscl.ChannelCalMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelCalMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelCalMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelCalMap_has_key(self, key) - - def keys(self): - return _mscl.ChannelCalMap_keys(self) - - def values(self): - return _mscl.ChannelCalMap_values(self) - - def items(self): - return _mscl.ChannelCalMap_items(self) - - def __contains__(self, key): - return _mscl.ChannelCalMap___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelCalMap_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelCalMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelCalMap___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelCalMap_asdict(self) - - def __init__(self, *args): - _mscl.ChannelCalMap_swiginit(self, _mscl.new_ChannelCalMap(*args)) - - def empty(self): - return _mscl.ChannelCalMap_empty(self) - - def size(self): - return _mscl.ChannelCalMap_size(self) - - def swap(self, v): - return _mscl.ChannelCalMap_swap(self, v) - - def begin(self): - return _mscl.ChannelCalMap_begin(self) - - def end(self): - return _mscl.ChannelCalMap_end(self) - - def rbegin(self): - return _mscl.ChannelCalMap_rbegin(self) - - def rend(self): - return _mscl.ChannelCalMap_rend(self) - - def clear(self): - return _mscl.ChannelCalMap_clear(self) - - def get_allocator(self): - return _mscl.ChannelCalMap_get_allocator(self) - - def count(self, x): - return _mscl.ChannelCalMap_count(self, x) - - def erase(self, *args): - return _mscl.ChannelCalMap_erase(self, *args) - - def find(self, x): - return _mscl.ChannelCalMap_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelCalMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelCalMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelCalMap - -# Register ChannelCalMap in _mscl: -_mscl.ChannelCalMap_swigregister(ChannelCalMap) - -class WirelessPollData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessPollData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessPollData___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessPollData___bool__(self) - - def __len__(self): - return _mscl.WirelessPollData___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.WirelessPollData___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.WirelessPollData___delitem__(self, key) - - def has_key(self, key): - return _mscl.WirelessPollData_has_key(self, key) - - def keys(self): - return _mscl.WirelessPollData_keys(self) - - def values(self): - return _mscl.WirelessPollData_values(self) - - def items(self): - return _mscl.WirelessPollData_items(self) - - def __contains__(self, key): - return _mscl.WirelessPollData___contains__(self, key) - - def key_iterator(self): - return _mscl.WirelessPollData_key_iterator(self) - - def value_iterator(self): - return _mscl.WirelessPollData_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.WirelessPollData___setitem__(self, *args) - - def asdict(self): - return _mscl.WirelessPollData_asdict(self) - - def __init__(self, *args): - _mscl.WirelessPollData_swiginit(self, _mscl.new_WirelessPollData(*args)) - - def empty(self): - return _mscl.WirelessPollData_empty(self) - - def size(self): - return _mscl.WirelessPollData_size(self) - - def swap(self, v): - return _mscl.WirelessPollData_swap(self, v) - - def begin(self): - return _mscl.WirelessPollData_begin(self) - - def end(self): - return _mscl.WirelessPollData_end(self) - - def rbegin(self): - return _mscl.WirelessPollData_rbegin(self) - - def rend(self): - return _mscl.WirelessPollData_rend(self) - - def clear(self): - return _mscl.WirelessPollData_clear(self) - - def get_allocator(self): - return _mscl.WirelessPollData_get_allocator(self) - - def count(self, x): - return _mscl.WirelessPollData_count(self, x) - - def erase(self, *args): - return _mscl.WirelessPollData_erase(self, *args) - - def find(self, x): - return _mscl.WirelessPollData_find(self, x) - - def lower_bound(self, x): - return _mscl.WirelessPollData_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.WirelessPollData_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_WirelessPollData - -# Register WirelessPollData in _mscl: -_mscl.WirelessPollData_swigregister(WirelessPollData) - -class ConnectionDebugDataVec(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConnectionDebugDataVec_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConnectionDebugDataVec___nonzero__(self) - - def __bool__(self): - return _mscl.ConnectionDebugDataVec___bool__(self) - - def __len__(self): - return _mscl.ConnectionDebugDataVec___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConnectionDebugDataVec___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConnectionDebugDataVec___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConnectionDebugDataVec___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConnectionDebugDataVec___setitem__(self, *args) - - def pop(self): - return _mscl.ConnectionDebugDataVec_pop(self) - - def append(self, x): - return _mscl.ConnectionDebugDataVec_append(self, x) - - def empty(self): - return _mscl.ConnectionDebugDataVec_empty(self) - - def size(self): - return _mscl.ConnectionDebugDataVec_size(self) - - def swap(self, v): - return _mscl.ConnectionDebugDataVec_swap(self, v) - - def begin(self): - return _mscl.ConnectionDebugDataVec_begin(self) - - def end(self): - return _mscl.ConnectionDebugDataVec_end(self) - - def rbegin(self): - return _mscl.ConnectionDebugDataVec_rbegin(self) - - def rend(self): - return _mscl.ConnectionDebugDataVec_rend(self) - - def clear(self): - return _mscl.ConnectionDebugDataVec_clear(self) - - def get_allocator(self): - return _mscl.ConnectionDebugDataVec_get_allocator(self) - - def pop_back(self): - return _mscl.ConnectionDebugDataVec_pop_back(self) - - def erase(self, *args): - return _mscl.ConnectionDebugDataVec_erase(self, *args) - - def __init__(self, *args): - _mscl.ConnectionDebugDataVec_swiginit(self, _mscl.new_ConnectionDebugDataVec(*args)) - - def push_back(self, x): - return _mscl.ConnectionDebugDataVec_push_back(self, x) - - def front(self): - return _mscl.ConnectionDebugDataVec_front(self) - - def back(self): - return _mscl.ConnectionDebugDataVec_back(self) - - def assign(self, n, x): - return _mscl.ConnectionDebugDataVec_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConnectionDebugDataVec_resize(self, *args) - - def insert(self, *args): - return _mscl.ConnectionDebugDataVec_insert(self, *args) - - def reserve(self, n): - return _mscl.ConnectionDebugDataVec_reserve(self, n) - - def capacity(self): - return _mscl.ConnectionDebugDataVec_capacity(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugDataVec - -# Register ConnectionDebugDataVec in _mscl: -_mscl.ConnectionDebugDataVec_swigregister(ConnectionDebugDataVec) - -class SatellitePRNs(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SatellitePRNs_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SatellitePRNs___nonzero__(self) - - def __bool__(self): - return _mscl.SatellitePRNs___bool__(self) - - def __len__(self): - return _mscl.SatellitePRNs___len__(self) - - def __getslice__(self, i, j): - return _mscl.SatellitePRNs___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SatellitePRNs___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SatellitePRNs___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SatellitePRNs___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SatellitePRNs___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SatellitePRNs___setitem__(self, *args) - - def pop(self): - return _mscl.SatellitePRNs_pop(self) - - def append(self, x): - return _mscl.SatellitePRNs_append(self, x) - - def empty(self): - return _mscl.SatellitePRNs_empty(self) - - def size(self): - return _mscl.SatellitePRNs_size(self) - - def swap(self, v): - return _mscl.SatellitePRNs_swap(self, v) - - def begin(self): - return _mscl.SatellitePRNs_begin(self) - - def end(self): - return _mscl.SatellitePRNs_end(self) - - def rbegin(self): - return _mscl.SatellitePRNs_rbegin(self) - - def rend(self): - return _mscl.SatellitePRNs_rend(self) - - def clear(self): - return _mscl.SatellitePRNs_clear(self) - - def get_allocator(self): - return _mscl.SatellitePRNs_get_allocator(self) - - def pop_back(self): - return _mscl.SatellitePRNs_pop_back(self) - - def erase(self, *args): - return _mscl.SatellitePRNs_erase(self, *args) - - def __init__(self, *args): - _mscl.SatellitePRNs_swiginit(self, _mscl.new_SatellitePRNs(*args)) - - def push_back(self, x): - return _mscl.SatellitePRNs_push_back(self, x) - - def front(self): - return _mscl.SatellitePRNs_front(self) - - def back(self): - return _mscl.SatellitePRNs_back(self) - - def assign(self, n, x): - return _mscl.SatellitePRNs_assign(self, n, x) - - def resize(self, *args): - return _mscl.SatellitePRNs_resize(self, *args) - - def insert(self, *args): - return _mscl.SatellitePRNs_insert(self, *args) - - def reserve(self, n): - return _mscl.SatellitePRNs_reserve(self, n) - - def capacity(self): - return _mscl.SatellitePRNs_capacity(self) - __swig_destroy__ = _mscl.delete_SatellitePRNs - -# Register SatellitePRNs in _mscl: -_mscl.SatellitePRNs_swigregister(SatellitePRNs) - -class Constellations(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Constellations_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Constellations___nonzero__(self) - - def __bool__(self): - return _mscl.Constellations___bool__(self) - - def __len__(self): - return _mscl.Constellations___len__(self) - - def __getslice__(self, i, j): - return _mscl.Constellations___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Constellations___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Constellations___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Constellations___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Constellations___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Constellations___setitem__(self, *args) - - def pop(self): - return _mscl.Constellations_pop(self) - - def append(self, x): - return _mscl.Constellations_append(self, x) - - def empty(self): - return _mscl.Constellations_empty(self) - - def size(self): - return _mscl.Constellations_size(self) - - def swap(self, v): - return _mscl.Constellations_swap(self, v) - - def begin(self): - return _mscl.Constellations_begin(self) - - def end(self): - return _mscl.Constellations_end(self) - - def rbegin(self): - return _mscl.Constellations_rbegin(self) - - def rend(self): - return _mscl.Constellations_rend(self) - - def clear(self): - return _mscl.Constellations_clear(self) - - def get_allocator(self): - return _mscl.Constellations_get_allocator(self) - - def pop_back(self): - return _mscl.Constellations_pop_back(self) - - def erase(self, *args): - return _mscl.Constellations_erase(self, *args) - - def __init__(self, *args): - _mscl.Constellations_swiginit(self, _mscl.new_Constellations(*args)) - - def push_back(self, x): - return _mscl.Constellations_push_back(self, x) - - def front(self): - return _mscl.Constellations_front(self) - - def back(self): - return _mscl.Constellations_back(self) - - def assign(self, n, x): - return _mscl.Constellations_assign(self, n, x) - - def resize(self, *args): - return _mscl.Constellations_resize(self, *args) - - def insert(self, *args): - return _mscl.Constellations_insert(self, *args) - - def reserve(self, n): - return _mscl.Constellations_reserve(self, n) - - def capacity(self): - return _mscl.Constellations_capacity(self) - __swig_destroy__ = _mscl.delete_Constellations - -# Register Constellations in _mscl: -_mscl.Constellations_swigregister(Constellations) - -class HeadingUpdateOptionsList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HeadingUpdateOptionsList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HeadingUpdateOptionsList___nonzero__(self) - - def __bool__(self): - return _mscl.HeadingUpdateOptionsList___bool__(self) - - def __len__(self): - return _mscl.HeadingUpdateOptionsList___len__(self) - - def __getslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HeadingUpdateOptionsList___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___setitem__(self, *args) - - def pop(self): - return _mscl.HeadingUpdateOptionsList_pop(self) - - def append(self, x): - return _mscl.HeadingUpdateOptionsList_append(self, x) - - def empty(self): - return _mscl.HeadingUpdateOptionsList_empty(self) - - def size(self): - return _mscl.HeadingUpdateOptionsList_size(self) - - def swap(self, v): - return _mscl.HeadingUpdateOptionsList_swap(self, v) - - def begin(self): - return _mscl.HeadingUpdateOptionsList_begin(self) - - def end(self): - return _mscl.HeadingUpdateOptionsList_end(self) - - def rbegin(self): - return _mscl.HeadingUpdateOptionsList_rbegin(self) - - def rend(self): - return _mscl.HeadingUpdateOptionsList_rend(self) - - def clear(self): - return _mscl.HeadingUpdateOptionsList_clear(self) - - def get_allocator(self): - return _mscl.HeadingUpdateOptionsList_get_allocator(self) - - def pop_back(self): - return _mscl.HeadingUpdateOptionsList_pop_back(self) - - def erase(self, *args): - return _mscl.HeadingUpdateOptionsList_erase(self, *args) - - def __init__(self, *args): - _mscl.HeadingUpdateOptionsList_swiginit(self, _mscl.new_HeadingUpdateOptionsList(*args)) - - def push_back(self, x): - return _mscl.HeadingUpdateOptionsList_push_back(self, x) - - def front(self): - return _mscl.HeadingUpdateOptionsList_front(self) - - def back(self): - return _mscl.HeadingUpdateOptionsList_back(self) - - def assign(self, n, x): - return _mscl.HeadingUpdateOptionsList_assign(self, n, x) - - def resize(self, *args): - return _mscl.HeadingUpdateOptionsList_resize(self, *args) - - def insert(self, *args): - return _mscl.HeadingUpdateOptionsList_insert(self, *args) - - def reserve(self, n): - return _mscl.HeadingUpdateOptionsList_reserve(self, n) - - def capacity(self): - return _mscl.HeadingUpdateOptionsList_capacity(self) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptionsList - -# Register HeadingUpdateOptionsList in _mscl: -_mscl.HeadingUpdateOptionsList_swigregister(HeadingUpdateOptionsList) - -class AdaptiveMeasurementModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveMeasurementModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveMeasurementModes___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveMeasurementModes___bool__(self) - - def __len__(self): - return _mscl.AdaptiveMeasurementModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveMeasurementModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveMeasurementModes_pop(self) - - def append(self, x): - return _mscl.AdaptiveMeasurementModes_append(self, x) - - def empty(self): - return _mscl.AdaptiveMeasurementModes_empty(self) - - def size(self): - return _mscl.AdaptiveMeasurementModes_size(self) - - def swap(self, v): - return _mscl.AdaptiveMeasurementModes_swap(self, v) - - def begin(self): - return _mscl.AdaptiveMeasurementModes_begin(self) - - def end(self): - return _mscl.AdaptiveMeasurementModes_end(self) - - def rbegin(self): - return _mscl.AdaptiveMeasurementModes_rbegin(self) - - def rend(self): - return _mscl.AdaptiveMeasurementModes_rend(self) - - def clear(self): - return _mscl.AdaptiveMeasurementModes_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveMeasurementModes_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveMeasurementModes_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveMeasurementModes_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveMeasurementModes_swiginit(self, _mscl.new_AdaptiveMeasurementModes(*args)) - - def push_back(self, x): - return _mscl.AdaptiveMeasurementModes_push_back(self, x) - - def front(self): - return _mscl.AdaptiveMeasurementModes_front(self) - - def back(self): - return _mscl.AdaptiveMeasurementModes_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveMeasurementModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveMeasurementModes_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveMeasurementModes_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveMeasurementModes_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveMeasurementModes_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementModes - -# Register AdaptiveMeasurementModes in _mscl: -_mscl.AdaptiveMeasurementModes_swigregister(AdaptiveMeasurementModes) - -class GeometricVectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeometricVectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeometricVectors___nonzero__(self) - - def __bool__(self): - return _mscl.GeometricVectors___bool__(self) - - def __len__(self): - return _mscl.GeometricVectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeometricVectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeometricVectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeometricVectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeometricVectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeometricVectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeometricVectors___setitem__(self, *args) - - def pop(self): - return _mscl.GeometricVectors_pop(self) - - def append(self, x): - return _mscl.GeometricVectors_append(self, x) - - def empty(self): - return _mscl.GeometricVectors_empty(self) - - def size(self): - return _mscl.GeometricVectors_size(self) - - def swap(self, v): - return _mscl.GeometricVectors_swap(self, v) - - def begin(self): - return _mscl.GeometricVectors_begin(self) - - def end(self): - return _mscl.GeometricVectors_end(self) - - def rbegin(self): - return _mscl.GeometricVectors_rbegin(self) - - def rend(self): - return _mscl.GeometricVectors_rend(self) - - def clear(self): - return _mscl.GeometricVectors_clear(self) - - def get_allocator(self): - return _mscl.GeometricVectors_get_allocator(self) - - def pop_back(self): - return _mscl.GeometricVectors_pop_back(self) - - def erase(self, *args): - return _mscl.GeometricVectors_erase(self, *args) - - def __init__(self, *args): - _mscl.GeometricVectors_swiginit(self, _mscl.new_GeometricVectors(*args)) - - def push_back(self, x): - return _mscl.GeometricVectors_push_back(self, x) - - def front(self): - return _mscl.GeometricVectors_front(self) - - def back(self): - return _mscl.GeometricVectors_back(self) - - def assign(self, n, x): - return _mscl.GeometricVectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeometricVectors_resize(self, *args) - - def insert(self, *args): - return _mscl.GeometricVectors_insert(self, *args) - - def reserve(self, n): - return _mscl.GeometricVectors_reserve(self, n) - - def capacity(self): - return _mscl.GeometricVectors_capacity(self) - __swig_destroy__ = _mscl.delete_GeometricVectors - -# Register GeometricVectors in _mscl: -_mscl.GeometricVectors_swigregister(GeometricVectors) - -class Matrix_3x3s(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Matrix_3x3s_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Matrix_3x3s___nonzero__(self) - - def __bool__(self): - return _mscl.Matrix_3x3s___bool__(self) - - def __len__(self): - return _mscl.Matrix_3x3s___len__(self) - - def __getslice__(self, i, j): - return _mscl.Matrix_3x3s___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Matrix_3x3s___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Matrix_3x3s___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Matrix_3x3s___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Matrix_3x3s___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Matrix_3x3s___setitem__(self, *args) - - def pop(self): - return _mscl.Matrix_3x3s_pop(self) - - def append(self, x): - return _mscl.Matrix_3x3s_append(self, x) - - def empty(self): - return _mscl.Matrix_3x3s_empty(self) - - def size(self): - return _mscl.Matrix_3x3s_size(self) - - def swap(self, v): - return _mscl.Matrix_3x3s_swap(self, v) - - def begin(self): - return _mscl.Matrix_3x3s_begin(self) - - def end(self): - return _mscl.Matrix_3x3s_end(self) - - def rbegin(self): - return _mscl.Matrix_3x3s_rbegin(self) - - def rend(self): - return _mscl.Matrix_3x3s_rend(self) - - def clear(self): - return _mscl.Matrix_3x3s_clear(self) - - def get_allocator(self): - return _mscl.Matrix_3x3s_get_allocator(self) - - def pop_back(self): - return _mscl.Matrix_3x3s_pop_back(self) - - def erase(self, *args): - return _mscl.Matrix_3x3s_erase(self, *args) - - def __init__(self, *args): - _mscl.Matrix_3x3s_swiginit(self, _mscl.new_Matrix_3x3s(*args)) - - def push_back(self, x): - return _mscl.Matrix_3x3s_push_back(self, x) - - def front(self): - return _mscl.Matrix_3x3s_front(self) - - def back(self): - return _mscl.Matrix_3x3s_back(self) - - def assign(self, n, x): - return _mscl.Matrix_3x3s_assign(self, n, x) - - def resize(self, *args): - return _mscl.Matrix_3x3s_resize(self, *args) - - def insert(self, *args): - return _mscl.Matrix_3x3s_insert(self, *args) - - def reserve(self, n): - return _mscl.Matrix_3x3s_reserve(self, n) - - def capacity(self): - return _mscl.Matrix_3x3s_capacity(self) - __swig_destroy__ = _mscl.delete_Matrix_3x3s - -# Register Matrix_3x3s in _mscl: -_mscl.Matrix_3x3s_swigregister(Matrix_3x3s) - -class StatusSelectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StatusSelectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StatusSelectors___nonzero__(self) - - def __bool__(self): - return _mscl.StatusSelectors___bool__(self) - - def __len__(self): - return _mscl.StatusSelectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.StatusSelectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StatusSelectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StatusSelectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StatusSelectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StatusSelectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StatusSelectors___setitem__(self, *args) - - def pop(self): - return _mscl.StatusSelectors_pop(self) - - def append(self, x): - return _mscl.StatusSelectors_append(self, x) - - def empty(self): - return _mscl.StatusSelectors_empty(self) - - def size(self): - return _mscl.StatusSelectors_size(self) - - def swap(self, v): - return _mscl.StatusSelectors_swap(self, v) - - def begin(self): - return _mscl.StatusSelectors_begin(self) - - def end(self): - return _mscl.StatusSelectors_end(self) - - def rbegin(self): - return _mscl.StatusSelectors_rbegin(self) - - def rend(self): - return _mscl.StatusSelectors_rend(self) - - def clear(self): - return _mscl.StatusSelectors_clear(self) - - def get_allocator(self): - return _mscl.StatusSelectors_get_allocator(self) - - def pop_back(self): - return _mscl.StatusSelectors_pop_back(self) - - def erase(self, *args): - return _mscl.StatusSelectors_erase(self, *args) - - def __init__(self, *args): - _mscl.StatusSelectors_swiginit(self, _mscl.new_StatusSelectors(*args)) - - def push_back(self, x): - return _mscl.StatusSelectors_push_back(self, x) - - def front(self): - return _mscl.StatusSelectors_front(self) - - def back(self): - return _mscl.StatusSelectors_back(self) - - def assign(self, n, x): - return _mscl.StatusSelectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.StatusSelectors_resize(self, *args) - - def insert(self, *args): - return _mscl.StatusSelectors_insert(self, *args) - - def reserve(self, n): - return _mscl.StatusSelectors_reserve(self, n) - - def capacity(self): - return _mscl.StatusSelectors_capacity(self) - __swig_destroy__ = _mscl.delete_StatusSelectors - -# Register StatusSelectors in _mscl: -_mscl.StatusSelectors_swigregister(StatusSelectors) - -class VehicleModeTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.VehicleModeTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.VehicleModeTypes___nonzero__(self) - - def __bool__(self): - return _mscl.VehicleModeTypes___bool__(self) - - def __len__(self): - return _mscl.VehicleModeTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.VehicleModeTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.VehicleModeTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.VehicleModeTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.VehicleModeTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.VehicleModeTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.VehicleModeTypes___setitem__(self, *args) - - def pop(self): - return _mscl.VehicleModeTypes_pop(self) - - def append(self, x): - return _mscl.VehicleModeTypes_append(self, x) - - def empty(self): - return _mscl.VehicleModeTypes_empty(self) - - def size(self): - return _mscl.VehicleModeTypes_size(self) - - def swap(self, v): - return _mscl.VehicleModeTypes_swap(self, v) - - def begin(self): - return _mscl.VehicleModeTypes_begin(self) - - def end(self): - return _mscl.VehicleModeTypes_end(self) - - def rbegin(self): - return _mscl.VehicleModeTypes_rbegin(self) - - def rend(self): - return _mscl.VehicleModeTypes_rend(self) - - def clear(self): - return _mscl.VehicleModeTypes_clear(self) - - def get_allocator(self): - return _mscl.VehicleModeTypes_get_allocator(self) - - def pop_back(self): - return _mscl.VehicleModeTypes_pop_back(self) - - def erase(self, *args): - return _mscl.VehicleModeTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.VehicleModeTypes_swiginit(self, _mscl.new_VehicleModeTypes(*args)) - - def push_back(self, x): - return _mscl.VehicleModeTypes_push_back(self, x) - - def front(self): - return _mscl.VehicleModeTypes_front(self) - - def back(self): - return _mscl.VehicleModeTypes_back(self) - - def assign(self, n, x): - return _mscl.VehicleModeTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.VehicleModeTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.VehicleModeTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.VehicleModeTypes_reserve(self, n) - - def capacity(self): - return _mscl.VehicleModeTypes_capacity(self) - __swig_destroy__ = _mscl.delete_VehicleModeTypes - -# Register VehicleModeTypes in _mscl: -_mscl.VehicleModeTypes_swigregister(VehicleModeTypes) - -class AdaptiveFilterLevels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveFilterLevels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveFilterLevels___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveFilterLevels___bool__(self) - - def __len__(self): - return _mscl.AdaptiveFilterLevels___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveFilterLevels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveFilterLevels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveFilterLevels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveFilterLevels___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveFilterLevels_pop(self) - - def append(self, x): - return _mscl.AdaptiveFilterLevels_append(self, x) - - def empty(self): - return _mscl.AdaptiveFilterLevels_empty(self) - - def size(self): - return _mscl.AdaptiveFilterLevels_size(self) - - def swap(self, v): - return _mscl.AdaptiveFilterLevels_swap(self, v) - - def begin(self): - return _mscl.AdaptiveFilterLevels_begin(self) - - def end(self): - return _mscl.AdaptiveFilterLevels_end(self) - - def rbegin(self): - return _mscl.AdaptiveFilterLevels_rbegin(self) - - def rend(self): - return _mscl.AdaptiveFilterLevels_rend(self) - - def clear(self): - return _mscl.AdaptiveFilterLevels_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveFilterLevels_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveFilterLevels_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveFilterLevels_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveFilterLevels_swiginit(self, _mscl.new_AdaptiveFilterLevels(*args)) - - def push_back(self, x): - return _mscl.AdaptiveFilterLevels_push_back(self, x) - - def front(self): - return _mscl.AdaptiveFilterLevels_front(self) - - def back(self): - return _mscl.AdaptiveFilterLevels_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveFilterLevels_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveFilterLevels_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveFilterLevels_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveFilterLevels_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveFilterLevels_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveFilterLevels - -# Register AdaptiveFilterLevels in _mscl: -_mscl.AdaptiveFilterLevels_swigregister(AdaptiveFilterLevels) - -class LowPassFilterConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LowPassFilterConfig_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LowPassFilterConfig___nonzero__(self) - - def __bool__(self): - return _mscl.LowPassFilterConfig___bool__(self) - - def __len__(self): - return _mscl.LowPassFilterConfig___len__(self) - - def __getslice__(self, i, j): - return _mscl.LowPassFilterConfig___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LowPassFilterConfig___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LowPassFilterConfig___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LowPassFilterConfig___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LowPassFilterConfig___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LowPassFilterConfig___setitem__(self, *args) - - def pop(self): - return _mscl.LowPassFilterConfig_pop(self) - - def append(self, x): - return _mscl.LowPassFilterConfig_append(self, x) - - def empty(self): - return _mscl.LowPassFilterConfig_empty(self) - - def size(self): - return _mscl.LowPassFilterConfig_size(self) - - def swap(self, v): - return _mscl.LowPassFilterConfig_swap(self, v) - - def begin(self): - return _mscl.LowPassFilterConfig_begin(self) - - def end(self): - return _mscl.LowPassFilterConfig_end(self) - - def rbegin(self): - return _mscl.LowPassFilterConfig_rbegin(self) - - def rend(self): - return _mscl.LowPassFilterConfig_rend(self) - - def clear(self): - return _mscl.LowPassFilterConfig_clear(self) - - def get_allocator(self): - return _mscl.LowPassFilterConfig_get_allocator(self) - - def pop_back(self): - return _mscl.LowPassFilterConfig_pop_back(self) - - def erase(self, *args): - return _mscl.LowPassFilterConfig_erase(self, *args) - - def __init__(self, *args): - _mscl.LowPassFilterConfig_swiginit(self, _mscl.new_LowPassFilterConfig(*args)) - - def push_back(self, x): - return _mscl.LowPassFilterConfig_push_back(self, x) - - def front(self): - return _mscl.LowPassFilterConfig_front(self) - - def back(self): - return _mscl.LowPassFilterConfig_back(self) - - def assign(self, n, x): - return _mscl.LowPassFilterConfig_assign(self, n, x) - - def resize(self, *args): - return _mscl.LowPassFilterConfig_resize(self, *args) - - def insert(self, *args): - return _mscl.LowPassFilterConfig_insert(self, *args) - - def reserve(self, n): - return _mscl.LowPassFilterConfig_reserve(self, n) - - def capacity(self): - return _mscl.LowPassFilterConfig_capacity(self) - __swig_destroy__ = _mscl.delete_LowPassFilterConfig - -# Register LowPassFilterConfig in _mscl: -_mscl.LowPassFilterConfig_swigregister(LowPassFilterConfig) - -class AidingMeasurementSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AidingMeasurementSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AidingMeasurementSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.AidingMeasurementSourceOptions___bool__(self) - - def __len__(self): - return _mscl.AidingMeasurementSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.AidingMeasurementSourceOptions_pop(self) - - def append(self, x): - return _mscl.AidingMeasurementSourceOptions_append(self, x) - - def empty(self): - return _mscl.AidingMeasurementSourceOptions_empty(self) - - def size(self): - return _mscl.AidingMeasurementSourceOptions_size(self) - - def swap(self, v): - return _mscl.AidingMeasurementSourceOptions_swap(self, v) - - def begin(self): - return _mscl.AidingMeasurementSourceOptions_begin(self) - - def end(self): - return _mscl.AidingMeasurementSourceOptions_end(self) - - def rbegin(self): - return _mscl.AidingMeasurementSourceOptions_rbegin(self) - - def rend(self): - return _mscl.AidingMeasurementSourceOptions_rend(self) - - def clear(self): - return _mscl.AidingMeasurementSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.AidingMeasurementSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.AidingMeasurementSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.AidingMeasurementSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.AidingMeasurementSourceOptions_swiginit(self, _mscl.new_AidingMeasurementSourceOptions(*args)) - - def push_back(self, x): - return _mscl.AidingMeasurementSourceOptions_push_back(self, x) - - def front(self): - return _mscl.AidingMeasurementSourceOptions_front(self) - - def back(self): - return _mscl.AidingMeasurementSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.AidingMeasurementSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.AidingMeasurementSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.AidingMeasurementSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.AidingMeasurementSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.AidingMeasurementSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_AidingMeasurementSourceOptions - -# Register AidingMeasurementSourceOptions in _mscl: -_mscl.AidingMeasurementSourceOptions_swigregister(AidingMeasurementSourceOptions) - -class PpsSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.PpsSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.PpsSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.PpsSourceOptions___bool__(self) - - def __len__(self): - return _mscl.PpsSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.PpsSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.PpsSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.PpsSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.PpsSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.PpsSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.PpsSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.PpsSourceOptions_pop(self) - - def append(self, x): - return _mscl.PpsSourceOptions_append(self, x) - - def empty(self): - return _mscl.PpsSourceOptions_empty(self) - - def size(self): - return _mscl.PpsSourceOptions_size(self) - - def swap(self, v): - return _mscl.PpsSourceOptions_swap(self, v) - - def begin(self): - return _mscl.PpsSourceOptions_begin(self) - - def end(self): - return _mscl.PpsSourceOptions_end(self) - - def rbegin(self): - return _mscl.PpsSourceOptions_rbegin(self) - - def rend(self): - return _mscl.PpsSourceOptions_rend(self) - - def clear(self): - return _mscl.PpsSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.PpsSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.PpsSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.PpsSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.PpsSourceOptions_swiginit(self, _mscl.new_PpsSourceOptions(*args)) - - def push_back(self, x): - return _mscl.PpsSourceOptions_push_back(self, x) - - def front(self): - return _mscl.PpsSourceOptions_front(self) - - def back(self): - return _mscl.PpsSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.PpsSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.PpsSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.PpsSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.PpsSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.PpsSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_PpsSourceOptions - -# Register PpsSourceOptions in _mscl: -_mscl.PpsSourceOptions_swigregister(PpsSourceOptions) - -class GeographicSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeographicSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeographicSources___nonzero__(self) - - def __bool__(self): - return _mscl.GeographicSources___bool__(self) - - def __len__(self): - return _mscl.GeographicSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeographicSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeographicSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeographicSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeographicSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeographicSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeographicSources___setitem__(self, *args) - - def pop(self): - return _mscl.GeographicSources_pop(self) - - def append(self, x): - return _mscl.GeographicSources_append(self, x) - - def empty(self): - return _mscl.GeographicSources_empty(self) - - def size(self): - return _mscl.GeographicSources_size(self) - - def swap(self, v): - return _mscl.GeographicSources_swap(self, v) - - def begin(self): - return _mscl.GeographicSources_begin(self) - - def end(self): - return _mscl.GeographicSources_end(self) - - def rbegin(self): - return _mscl.GeographicSources_rbegin(self) - - def rend(self): - return _mscl.GeographicSources_rend(self) - - def clear(self): - return _mscl.GeographicSources_clear(self) - - def get_allocator(self): - return _mscl.GeographicSources_get_allocator(self) - - def pop_back(self): - return _mscl.GeographicSources_pop_back(self) - - def erase(self, *args): - return _mscl.GeographicSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GeographicSources_swiginit(self, _mscl.new_GeographicSources(*args)) - - def push_back(self, x): - return _mscl.GeographicSources_push_back(self, x) - - def front(self): - return _mscl.GeographicSources_front(self) - - def back(self): - return _mscl.GeographicSources_back(self) - - def assign(self, n, x): - return _mscl.GeographicSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeographicSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GeographicSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GeographicSources_reserve(self, n) - - def capacity(self): - return _mscl.GeographicSources_capacity(self) - __swig_destroy__ = _mscl.delete_GeographicSources - -# Register GeographicSources in _mscl: -_mscl.GeographicSources_swigregister(GeographicSources) - -class GnssSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSources___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSources___bool__(self) - - def __len__(self): - return _mscl.GnssSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssSources___setitem__(self, *args) - - def pop(self): - return _mscl.GnssSources_pop(self) - - def append(self, x): - return _mscl.GnssSources_append(self, x) - - def empty(self): - return _mscl.GnssSources_empty(self) - - def size(self): - return _mscl.GnssSources_size(self) - - def swap(self, v): - return _mscl.GnssSources_swap(self, v) - - def begin(self): - return _mscl.GnssSources_begin(self) - - def end(self): - return _mscl.GnssSources_end(self) - - def rbegin(self): - return _mscl.GnssSources_rbegin(self) - - def rend(self): - return _mscl.GnssSources_rend(self) - - def clear(self): - return _mscl.GnssSources_clear(self) - - def get_allocator(self): - return _mscl.GnssSources_get_allocator(self) - - def pop_back(self): - return _mscl.GnssSources_pop_back(self) - - def erase(self, *args): - return _mscl.GnssSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssSources_swiginit(self, _mscl.new_GnssSources(*args)) - - def push_back(self, x): - return _mscl.GnssSources_push_back(self, x) - - def front(self): - return _mscl.GnssSources_front(self) - - def back(self): - return _mscl.GnssSources_back(self) - - def assign(self, n, x): - return _mscl.GnssSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssSources_reserve(self, n) - - def capacity(self): - return _mscl.GnssSources_capacity(self) - __swig_destroy__ = _mscl.delete_GnssSources - -# Register GnssSources in _mscl: -_mscl.GnssSources_swigregister(GnssSources) - -class GnssSignalConfigOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSignalConfigOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSignalConfigOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSignalConfigOptions___bool__(self) - - def __len__(self): - return _mscl.GnssSignalConfigOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GnssSignalConfigOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GnssSignalConfigOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GnssSignalConfigOptions_has_key(self, key) - - def keys(self): - return _mscl.GnssSignalConfigOptions_keys(self) - - def values(self): - return _mscl.GnssSignalConfigOptions_values(self) - - def items(self): - return _mscl.GnssSignalConfigOptions_items(self) - - def __contains__(self, key): - return _mscl.GnssSignalConfigOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GnssSignalConfigOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GnssSignalConfigOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GnssSignalConfigOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GnssSignalConfigOptions_asdict(self) - - def __init__(self, *args): - _mscl.GnssSignalConfigOptions_swiginit(self, _mscl.new_GnssSignalConfigOptions(*args)) - - def empty(self): - return _mscl.GnssSignalConfigOptions_empty(self) - - def size(self): - return _mscl.GnssSignalConfigOptions_size(self) - - def swap(self, v): - return _mscl.GnssSignalConfigOptions_swap(self, v) - - def begin(self): - return _mscl.GnssSignalConfigOptions_begin(self) - - def end(self): - return _mscl.GnssSignalConfigOptions_end(self) - - def rbegin(self): - return _mscl.GnssSignalConfigOptions_rbegin(self) - - def rend(self): - return _mscl.GnssSignalConfigOptions_rend(self) - - def clear(self): - return _mscl.GnssSignalConfigOptions_clear(self) - - def get_allocator(self): - return _mscl.GnssSignalConfigOptions_get_allocator(self) - - def count(self, x): - return _mscl.GnssSignalConfigOptions_count(self, x) - - def erase(self, *args): - return _mscl.GnssSignalConfigOptions_erase(self, *args) - - def find(self, x): - return _mscl.GnssSignalConfigOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GnssSignalConfigOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GnssSignalConfigOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GnssSignalConfigOptions - -# Register GnssSignalConfigOptions in _mscl: -_mscl.GnssSignalConfigOptions_swigregister(GnssSignalConfigOptions) - -class NmeaMessageFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NmeaMessageFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NmeaMessageFormats___nonzero__(self) - - def __bool__(self): - return _mscl.NmeaMessageFormats___bool__(self) - - def __len__(self): - return _mscl.NmeaMessageFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.NmeaMessageFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NmeaMessageFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NmeaMessageFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NmeaMessageFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NmeaMessageFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NmeaMessageFormats___setitem__(self, *args) - - def pop(self): - return _mscl.NmeaMessageFormats_pop(self) - - def append(self, x): - return _mscl.NmeaMessageFormats_append(self, x) - - def empty(self): - return _mscl.NmeaMessageFormats_empty(self) - - def size(self): - return _mscl.NmeaMessageFormats_size(self) - - def swap(self, v): - return _mscl.NmeaMessageFormats_swap(self, v) - - def begin(self): - return _mscl.NmeaMessageFormats_begin(self) - - def end(self): - return _mscl.NmeaMessageFormats_end(self) - - def rbegin(self): - return _mscl.NmeaMessageFormats_rbegin(self) - - def rend(self): - return _mscl.NmeaMessageFormats_rend(self) - - def clear(self): - return _mscl.NmeaMessageFormats_clear(self) - - def get_allocator(self): - return _mscl.NmeaMessageFormats_get_allocator(self) - - def pop_back(self): - return _mscl.NmeaMessageFormats_pop_back(self) - - def erase(self, *args): - return _mscl.NmeaMessageFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.NmeaMessageFormats_swiginit(self, _mscl.new_NmeaMessageFormats(*args)) - - def push_back(self, x): - return _mscl.NmeaMessageFormats_push_back(self, x) - - def front(self): - return _mscl.NmeaMessageFormats_front(self) - - def back(self): - return _mscl.NmeaMessageFormats_back(self) - - def assign(self, n, x): - return _mscl.NmeaMessageFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.NmeaMessageFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.NmeaMessageFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.NmeaMessageFormats_reserve(self, n) - - def capacity(self): - return _mscl.NmeaMessageFormats_capacity(self) - __swig_destroy__ = _mscl.delete_NmeaMessageFormats - -# Register NmeaMessageFormats in _mscl: -_mscl.NmeaMessageFormats_swigregister(NmeaMessageFormats) - -class GpioPinModeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinModeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinModeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinModeOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinModeOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.GpioPinModeOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GpioPinModeOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GpioPinModeOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GpioPinModeOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GpioPinModeOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GpioPinModeOptions___setitem__(self, *args) - - def pop(self): - return _mscl.GpioPinModeOptions_pop(self) - - def append(self, x): - return _mscl.GpioPinModeOptions_append(self, x) - - def empty(self): - return _mscl.GpioPinModeOptions_empty(self) - - def size(self): - return _mscl.GpioPinModeOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinModeOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinModeOptions_begin(self) - - def end(self): - return _mscl.GpioPinModeOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinModeOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinModeOptions_rend(self) - - def clear(self): - return _mscl.GpioPinModeOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinModeOptions_get_allocator(self) - - def pop_back(self): - return _mscl.GpioPinModeOptions_pop_back(self) - - def erase(self, *args): - return _mscl.GpioPinModeOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.GpioPinModeOptions_swiginit(self, _mscl.new_GpioPinModeOptions(*args)) - - def push_back(self, x): - return _mscl.GpioPinModeOptions_push_back(self, x) - - def front(self): - return _mscl.GpioPinModeOptions_front(self) - - def back(self): - return _mscl.GpioPinModeOptions_back(self) - - def assign(self, n, x): - return _mscl.GpioPinModeOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.GpioPinModeOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.GpioPinModeOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.GpioPinModeOptions_reserve(self, n) - - def capacity(self): - return _mscl.GpioPinModeOptions_capacity(self) - __swig_destroy__ = _mscl.delete_GpioPinModeOptions - -# Register GpioPinModeOptions in _mscl: -_mscl.GpioPinModeOptions_swigregister(GpioPinModeOptions) - -class GpioBehaviorModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioBehaviorModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioBehaviorModes___nonzero__(self) - - def __bool__(self): - return _mscl.GpioBehaviorModes___bool__(self) - - def __len__(self): - return _mscl.GpioBehaviorModes___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioBehaviorModes___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioBehaviorModes___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioBehaviorModes_has_key(self, key) - - def keys(self): - return _mscl.GpioBehaviorModes_keys(self) - - def values(self): - return _mscl.GpioBehaviorModes_values(self) - - def items(self): - return _mscl.GpioBehaviorModes_items(self) - - def __contains__(self, key): - return _mscl.GpioBehaviorModes___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioBehaviorModes_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioBehaviorModes_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioBehaviorModes___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioBehaviorModes_asdict(self) - - def __init__(self, *args): - _mscl.GpioBehaviorModes_swiginit(self, _mscl.new_GpioBehaviorModes(*args)) - - def empty(self): - return _mscl.GpioBehaviorModes_empty(self) - - def size(self): - return _mscl.GpioBehaviorModes_size(self) - - def swap(self, v): - return _mscl.GpioBehaviorModes_swap(self, v) - - def begin(self): - return _mscl.GpioBehaviorModes_begin(self) - - def end(self): - return _mscl.GpioBehaviorModes_end(self) - - def rbegin(self): - return _mscl.GpioBehaviorModes_rbegin(self) - - def rend(self): - return _mscl.GpioBehaviorModes_rend(self) - - def clear(self): - return _mscl.GpioBehaviorModes_clear(self) - - def get_allocator(self): - return _mscl.GpioBehaviorModes_get_allocator(self) - - def count(self, x): - return _mscl.GpioBehaviorModes_count(self, x) - - def erase(self, *args): - return _mscl.GpioBehaviorModes_erase(self, *args) - - def find(self, x): - return _mscl.GpioBehaviorModes_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioBehaviorModes_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioBehaviorModes_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioBehaviorModes - -# Register GpioBehaviorModes in _mscl: -_mscl.GpioBehaviorModes_swigregister(GpioBehaviorModes) - -class GpioFeatureBehaviors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioFeatureBehaviors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioFeatureBehaviors___nonzero__(self) - - def __bool__(self): - return _mscl.GpioFeatureBehaviors___bool__(self) - - def __len__(self): - return _mscl.GpioFeatureBehaviors___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioFeatureBehaviors___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioFeatureBehaviors___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioFeatureBehaviors_has_key(self, key) - - def keys(self): - return _mscl.GpioFeatureBehaviors_keys(self) - - def values(self): - return _mscl.GpioFeatureBehaviors_values(self) - - def items(self): - return _mscl.GpioFeatureBehaviors_items(self) - - def __contains__(self, key): - return _mscl.GpioFeatureBehaviors___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioFeatureBehaviors_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioFeatureBehaviors_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioFeatureBehaviors___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioFeatureBehaviors_asdict(self) - - def __init__(self, *args): - _mscl.GpioFeatureBehaviors_swiginit(self, _mscl.new_GpioFeatureBehaviors(*args)) - - def empty(self): - return _mscl.GpioFeatureBehaviors_empty(self) - - def size(self): - return _mscl.GpioFeatureBehaviors_size(self) - - def swap(self, v): - return _mscl.GpioFeatureBehaviors_swap(self, v) - - def begin(self): - return _mscl.GpioFeatureBehaviors_begin(self) - - def end(self): - return _mscl.GpioFeatureBehaviors_end(self) - - def rbegin(self): - return _mscl.GpioFeatureBehaviors_rbegin(self) - - def rend(self): - return _mscl.GpioFeatureBehaviors_rend(self) - - def clear(self): - return _mscl.GpioFeatureBehaviors_clear(self) - - def get_allocator(self): - return _mscl.GpioFeatureBehaviors_get_allocator(self) - - def count(self, x): - return _mscl.GpioFeatureBehaviors_count(self, x) - - def erase(self, *args): - return _mscl.GpioFeatureBehaviors_erase(self, *args) - - def find(self, x): - return _mscl.GpioFeatureBehaviors_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioFeatureBehaviors_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioFeatureBehaviors_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioFeatureBehaviors - -# Register GpioFeatureBehaviors in _mscl: -_mscl.GpioFeatureBehaviors_swigregister(GpioFeatureBehaviors) - -class GpioPinOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioPinOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioPinOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioPinOptions_has_key(self, key) - - def keys(self): - return _mscl.GpioPinOptions_keys(self) - - def values(self): - return _mscl.GpioPinOptions_values(self) - - def items(self): - return _mscl.GpioPinOptions_items(self) - - def __contains__(self, key): - return _mscl.GpioPinOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioPinOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioPinOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioPinOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioPinOptions_asdict(self) - - def __init__(self, *args): - _mscl.GpioPinOptions_swiginit(self, _mscl.new_GpioPinOptions(*args)) - - def empty(self): - return _mscl.GpioPinOptions_empty(self) - - def size(self): - return _mscl.GpioPinOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinOptions_begin(self) - - def end(self): - return _mscl.GpioPinOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinOptions_rend(self) - - def clear(self): - return _mscl.GpioPinOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinOptions_get_allocator(self) - - def count(self, x): - return _mscl.GpioPinOptions_count(self, x) - - def erase(self, *args): - return _mscl.GpioPinOptions_erase(self, *args) - - def find(self, x): - return _mscl.GpioPinOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioPinOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioPinOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioPinOptions - -# Register GpioPinOptions in _mscl: -_mscl.GpioPinOptions_swigregister(GpioPinOptions) - -class EventInputTriggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventInputTriggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventInputTriggers___nonzero__(self) - - def __bool__(self): - return _mscl.EventInputTriggers___bool__(self) - - def __len__(self): - return _mscl.EventInputTriggers___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventInputTriggers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventInputTriggers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventInputTriggers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventInputTriggers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventInputTriggers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventInputTriggers___setitem__(self, *args) - - def __init__(self, *args): - _mscl.EventInputTriggers_swiginit(self, _mscl.new_EventInputTriggers(*args)) - - def empty(self): - return _mscl.EventInputTriggers_empty(self) - - def size(self): - return _mscl.EventInputTriggers_size(self) - - def swap(self, v): - return _mscl.EventInputTriggers_swap(self, v) - - def begin(self): - return _mscl.EventInputTriggers_begin(self) - - def end(self): - return _mscl.EventInputTriggers_end(self) - - def rbegin(self): - return _mscl.EventInputTriggers_rbegin(self) - - def rend(self): - return _mscl.EventInputTriggers_rend(self) - - def front(self): - return _mscl.EventInputTriggers_front(self) - - def back(self): - return _mscl.EventInputTriggers_back(self) - - def fill(self, u): - return _mscl.EventInputTriggers_fill(self, u) - __swig_destroy__ = _mscl.delete_EventInputTriggers - -# Register EventInputTriggers in _mscl: -_mscl.EventInputTriggers_swigregister(EventInputTriggers) - -class EventTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTypes___nonzero__(self) - - def __bool__(self): - return _mscl.EventTypes___bool__(self) - - def __len__(self): - return _mscl.EventTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTypes___setitem__(self, *args) - - def pop(self): - return _mscl.EventTypes_pop(self) - - def append(self, x): - return _mscl.EventTypes_append(self, x) - - def empty(self): - return _mscl.EventTypes_empty(self) - - def size(self): - return _mscl.EventTypes_size(self) - - def swap(self, v): - return _mscl.EventTypes_swap(self, v) - - def begin(self): - return _mscl.EventTypes_begin(self) - - def end(self): - return _mscl.EventTypes_end(self) - - def rbegin(self): - return _mscl.EventTypes_rbegin(self) - - def rend(self): - return _mscl.EventTypes_rend(self) - - def clear(self): - return _mscl.EventTypes_clear(self) - - def get_allocator(self): - return _mscl.EventTypes_get_allocator(self) - - def pop_back(self): - return _mscl.EventTypes_pop_back(self) - - def erase(self, *args): - return _mscl.EventTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTypes_swiginit(self, _mscl.new_EventTypes(*args)) - - def push_back(self, x): - return _mscl.EventTypes_push_back(self, x) - - def front(self): - return _mscl.EventTypes_front(self) - - def back(self): - return _mscl.EventTypes_back(self) - - def assign(self, n, x): - return _mscl.EventTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTypes_reserve(self, n) - - def capacity(self): - return _mscl.EventTypes_capacity(self) - __swig_destroy__ = _mscl.delete_EventTypes - -# Register EventTypes in _mscl: -_mscl.EventTypes_swigregister(EventTypes) - -class MeasurementReferenceFrames(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MeasurementReferenceFrames_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MeasurementReferenceFrames___nonzero__(self) - - def __bool__(self): - return _mscl.MeasurementReferenceFrames___bool__(self) - - def __len__(self): - return _mscl.MeasurementReferenceFrames___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.MeasurementReferenceFrames___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.MeasurementReferenceFrames___delitem__(self, key) - - def has_key(self, key): - return _mscl.MeasurementReferenceFrames_has_key(self, key) - - def keys(self): - return _mscl.MeasurementReferenceFrames_keys(self) - - def values(self): - return _mscl.MeasurementReferenceFrames_values(self) - - def items(self): - return _mscl.MeasurementReferenceFrames_items(self) - - def __contains__(self, key): - return _mscl.MeasurementReferenceFrames___contains__(self, key) - - def key_iterator(self): - return _mscl.MeasurementReferenceFrames_key_iterator(self) - - def value_iterator(self): - return _mscl.MeasurementReferenceFrames_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.MeasurementReferenceFrames___setitem__(self, *args) - - def asdict(self): - return _mscl.MeasurementReferenceFrames_asdict(self) - - def __init__(self, *args): - _mscl.MeasurementReferenceFrames_swiginit(self, _mscl.new_MeasurementReferenceFrames(*args)) - - def empty(self): - return _mscl.MeasurementReferenceFrames_empty(self) - - def size(self): - return _mscl.MeasurementReferenceFrames_size(self) - - def swap(self, v): - return _mscl.MeasurementReferenceFrames_swap(self, v) - - def begin(self): - return _mscl.MeasurementReferenceFrames_begin(self) - - def end(self): - return _mscl.MeasurementReferenceFrames_end(self) - - def rbegin(self): - return _mscl.MeasurementReferenceFrames_rbegin(self) - - def rend(self): - return _mscl.MeasurementReferenceFrames_rend(self) - - def clear(self): - return _mscl.MeasurementReferenceFrames_clear(self) - - def get_allocator(self): - return _mscl.MeasurementReferenceFrames_get_allocator(self) - - def count(self, x): - return _mscl.MeasurementReferenceFrames_count(self, x) - - def erase(self, *args): - return _mscl.MeasurementReferenceFrames_erase(self, *args) - - def find(self, x): - return _mscl.MeasurementReferenceFrames_find(self, x) - - def lower_bound(self, x): - return _mscl.MeasurementReferenceFrames_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.MeasurementReferenceFrames_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrames - -# Register MeasurementReferenceFrames in _mscl: -_mscl.MeasurementReferenceFrames_swigregister(MeasurementReferenceFrames) - -class Bins(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bins_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bins___nonzero__(self) - - def __bool__(self): - return _mscl.Bins___bool__(self) - - def __len__(self): - return _mscl.Bins___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bins___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bins___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bins___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bins___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bins___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bins___setitem__(self, *args) - - def pop(self): - return _mscl.Bins_pop(self) - - def append(self, x): - return _mscl.Bins_append(self, x) - - def empty(self): - return _mscl.Bins_empty(self) - - def size(self): - return _mscl.Bins_size(self) - - def swap(self, v): - return _mscl.Bins_swap(self, v) - - def begin(self): - return _mscl.Bins_begin(self) - - def end(self): - return _mscl.Bins_end(self) - - def rbegin(self): - return _mscl.Bins_rbegin(self) - - def rend(self): - return _mscl.Bins_rend(self) - - def clear(self): - return _mscl.Bins_clear(self) - - def get_allocator(self): - return _mscl.Bins_get_allocator(self) - - def pop_back(self): - return _mscl.Bins_pop_back(self) - - def erase(self, *args): - return _mscl.Bins_erase(self, *args) - - def __init__(self, *args): - _mscl.Bins_swiginit(self, _mscl.new_Bins(*args)) - - def push_back(self, x): - return _mscl.Bins_push_back(self, x) - - def front(self): - return _mscl.Bins_front(self) - - def back(self): - return _mscl.Bins_back(self) - - def assign(self, n, x): - return _mscl.Bins_assign(self, n, x) - - def insert(self, *args): - return _mscl.Bins_insert(self, *args) - - def reserve(self, n): - return _mscl.Bins_reserve(self, n) - - def capacity(self): - return _mscl.Bins_capacity(self) - __swig_destroy__ = _mscl.delete_Bins - -# Register Bins in _mscl: -_mscl.Bins_swigregister(Bins) - -class Error(Exception): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_swiginit(self, _mscl.new_Error(*args)) - __swig_destroy__ = _mscl.delete_Error - - def what(self): - return _mscl.Error_what(self) - - def __str__(self): - return _mscl.Error___str__(self) - -# Register Error in _mscl: -_mscl.Error_swigregister(Error) - -class Error_NotSupported(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NotSupported_swiginit(self, _mscl.new_Error_NotSupported(*args)) - __swig_destroy__ = _mscl.delete_Error_NotSupported - -# Register Error_NotSupported in _mscl: -_mscl.Error_NotSupported_swigregister(Error_NotSupported) - -class Error_NoData(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NoData_swiginit(self, _mscl.new_Error_NoData(*args)) - __swig_destroy__ = _mscl.delete_Error_NoData - -# Register Error_NoData in _mscl: -_mscl.Error_NoData_swigregister(Error_NoData) - -class Error_BadDataType(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Error_BadDataType_swiginit(self, _mscl.new_Error_BadDataType()) - __swig_destroy__ = _mscl.delete_Error_BadDataType - -# Register Error_BadDataType in _mscl: -_mscl.Error_BadDataType_swigregister(Error_BadDataType) - -class Error_UnknownSampleRate(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_UnknownSampleRate_swiginit(self, _mscl.new_Error_UnknownSampleRate(*args)) - __swig_destroy__ = _mscl.delete_Error_UnknownSampleRate - -# Register Error_UnknownSampleRate in _mscl: -_mscl.Error_UnknownSampleRate_swigregister(Error_UnknownSampleRate) - -class Error_Communication(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Communication_swiginit(self, _mscl.new_Error_Communication(*args)) - __swig_destroy__ = _mscl.delete_Error_Communication - -# Register Error_Communication in _mscl: -_mscl.Error_Communication_swigregister(Error_Communication) - -class Error_NodeCommunication(Error_Communication): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NodeCommunication_swiginit(self, _mscl.new_Error_NodeCommunication(*args)) - - def nodeAddress(self): - return _mscl.Error_NodeCommunication_nodeAddress(self) - __swig_destroy__ = _mscl.delete_Error_NodeCommunication - -# Register Error_NodeCommunication in _mscl: -_mscl.Error_NodeCommunication_swigregister(Error_NodeCommunication) - -class Error_Connection(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Connection_swiginit(self, _mscl.new_Error_Connection(*args)) - __swig_destroy__ = _mscl.delete_Error_Connection - - def code(self): - return _mscl.Error_Connection_code(self) - - def value(self): - return _mscl.Error_Connection_value(self) - -# Register Error_Connection in _mscl: -_mscl.Error_Connection_swigregister(Error_Connection) - -class Error_InvalidSerialPort(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code): - _mscl.Error_InvalidSerialPort_swiginit(self, _mscl.new_Error_InvalidSerialPort(code)) - __swig_destroy__ = _mscl.delete_Error_InvalidSerialPort - -# Register Error_InvalidSerialPort in _mscl: -_mscl.Error_InvalidSerialPort_swigregister(Error_InvalidSerialPort) - -class Error_InvalidTcpServer(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidTcpServer_swiginit(self, _mscl.new_Error_InvalidTcpServer(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidTcpServer - -# Register Error_InvalidTcpServer in _mscl: -_mscl.Error_InvalidTcpServer_swigregister(Error_InvalidTcpServer) - -class Error_InvalidUnixSocket(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidUnixSocket_swiginit(self, _mscl.new_Error_InvalidUnixSocket(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidUnixSocket - -# Register Error_InvalidUnixSocket in _mscl: -_mscl.Error_InvalidUnixSocket_swigregister(Error_InvalidUnixSocket) - -class Error_MipCmdFailed(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_MipCmdFailed_swiginit(self, _mscl.new_Error_MipCmdFailed(*args)) - __swig_destroy__ = _mscl.delete_Error_MipCmdFailed - - def code(self): - return _mscl.Error_MipCmdFailed_code(self) - - def value(self): - return _mscl.Error_MipCmdFailed_value(self) - -# Register Error_MipCmdFailed in _mscl: -_mscl.Error_MipCmdFailed_swigregister(Error_MipCmdFailed) - -class Error_InvalidConfig(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_InvalidConfig_swiginit(self, _mscl.new_Error_InvalidConfig(*args)) - __swig_destroy__ = _mscl.delete_Error_InvalidConfig - - def issues(self): - return _mscl.Error_InvalidConfig_issues(self) - -# Register Error_InvalidConfig in _mscl: -_mscl.Error_InvalidConfig_swigregister(Error_InvalidConfig) - -class Error_InvalidNodeConfig(Error_InvalidConfig): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, issues, nodeAddress): - _mscl.Error_InvalidNodeConfig_swiginit(self, _mscl.new_Error_InvalidNodeConfig(issues, nodeAddress)) - __swig_destroy__ = _mscl.delete_Error_InvalidNodeConfig - - def nodeAddress(self): - return _mscl.Error_InvalidNodeConfig_nodeAddress(self) - -# Register Error_InvalidNodeConfig in _mscl: -_mscl.Error_InvalidNodeConfig_swigregister(Error_InvalidNodeConfig) - - - diff --git a/mscl_release_assets/mscl-armhf-Python3.13-v67.0.0/_mscl.so b/mscl_release_assets/mscl-armhf-Python3.13-v67.0.0/_mscl.so deleted file mode 100644 index e1569a4..0000000 Binary files a/mscl_release_assets/mscl-armhf-Python3.13-v67.0.0/_mscl.so and /dev/null differ diff --git a/mscl_release_assets/mscl-armhf-Python3.13-v67.0.0/mscl.py b/mscl_release_assets/mscl-armhf-Python3.13-v67.0.0/mscl.py deleted file mode 100644 index daa6217..0000000 --- a/mscl_release_assets/mscl-armhf-Python3.13-v67.0.0/mscl.py +++ /dev/null @@ -1,18376 +0,0 @@ -# This file was automatically generated by SWIG (http://www.swig.org). -# Version 4.0.1 -# -# Do not make changes to this file unless you know what you are doing--modify -# the SWIG interface file instead. - -from sys import version_info as _swig_python_version_info -if _swig_python_version_info < (2, 7, 0): - raise RuntimeError("Python 2.7 or later required") - -# Import the low-level C/C++ module -if __package__ or "." in __name__: - from . import _mscl -else: - import _mscl - -try: - import builtins as __builtin__ -except ImportError: - import __builtin__ - -def _swig_repr(self): - try: - strthis = "proxy of " + self.this.__repr__() - except __builtin__.Exception: - strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - - -def _swig_setattr_nondynamic_instance_variable(set): - def set_instance_attr(self, name, value): - if name == "thisown": - self.this.own(value) - elif name == "this": - set(self, name, value) - elif hasattr(self, name) and isinstance(getattr(type(self), name), property): - set(self, name, value) - else: - raise AttributeError("You cannot add instance attributes to %s" % self) - return set_instance_attr - - -def _swig_setattr_nondynamic_class_variable(set): - def set_class_attr(cls, name, value): - if hasattr(cls, name) and not isinstance(getattr(cls, name), property): - set(cls, name, value) - else: - raise AttributeError("You cannot add class attributes to %s" % cls) - return set_class_attr - - -def _swig_add_metaclass(metaclass): - """Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass""" - def wrapper(cls): - return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy()) - return wrapper - - -class _SwigNonDynamicMeta(type): - """Meta class to enforce nondynamic attributes (no new attributes) for a class""" - __setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__) - - -class SwigPyIterator(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_SwigPyIterator - - def value(self): - return _mscl.SwigPyIterator_value(self) - - def incr(self, n=1): - return _mscl.SwigPyIterator_incr(self, n) - - def decr(self, n=1): - return _mscl.SwigPyIterator_decr(self, n) - - def distance(self, x): - return _mscl.SwigPyIterator_distance(self, x) - - def equal(self, x): - return _mscl.SwigPyIterator_equal(self, x) - - def copy(self): - return _mscl.SwigPyIterator_copy(self) - - def next(self): - return _mscl.SwigPyIterator_next(self) - - def __next__(self): - return _mscl.SwigPyIterator___next__(self) - - def previous(self): - return _mscl.SwigPyIterator_previous(self) - - def advance(self, n): - return _mscl.SwigPyIterator_advance(self, n) - - def __eq__(self, x): - return _mscl.SwigPyIterator___eq__(self, x) - - def __ne__(self, x): - return _mscl.SwigPyIterator___ne__(self, x) - - def __iadd__(self, n): - return _mscl.SwigPyIterator___iadd__(self, n) - - def __isub__(self, n): - return _mscl.SwigPyIterator___isub__(self, n) - - def __add__(self, n): - return _mscl.SwigPyIterator___add__(self, n) - - def __sub__(self, *args): - return _mscl.SwigPyIterator___sub__(self, *args) - def __iter__(self): - return self - -# Register SwigPyIterator in _mscl: -_mscl.SwigPyIterator_swigregister(SwigPyIterator) - -SHARED_PTR_DISOWN = _mscl.SHARED_PTR_DISOWN -valueType_float = _mscl.valueType_float -valueType_double = _mscl.valueType_double -valueType_uint8 = _mscl.valueType_uint8 -valueType_uint16 = _mscl.valueType_uint16 -valueType_uint32 = _mscl.valueType_uint32 -valueType_int16 = _mscl.valueType_int16 -valueType_int32 = _mscl.valueType_int32 -valueType_bool = _mscl.valueType_bool -valueType_Vector = _mscl.valueType_Vector -valueType_Matrix = _mscl.valueType_Matrix -valueType_Timestamp = _mscl.valueType_Timestamp -valueType_string = _mscl.valueType_string -valueType_Bytes = _mscl.valueType_Bytes -valueType_StructuralHealth = _mscl.valueType_StructuralHealth -valueType_RfSweep = _mscl.valueType_RfSweep -valueType_ChannelMask = _mscl.valueType_ChannelMask -valueType_int8 = _mscl.valueType_int8 -valueType_uint64 = _mscl.valueType_uint64 -deviceState_idle = _mscl.deviceState_idle -deviceState_sleep = _mscl.deviceState_sleep -deviceState_sampling = _mscl.deviceState_sampling -deviceState_sampling_lostBeacon = _mscl.deviceState_sampling_lostBeacon -deviceState_sampling_inactive = _mscl.deviceState_sampling_inactive -deviceState_unknown = _mscl.deviceState_unknown -class BitMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BitMask_swiginit(self, _mscl.new_BitMask(*args)) - __swig_destroy__ = _mscl.delete_BitMask - - def __eq__(self, other): - return _mscl.BitMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.BitMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.BitMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.BitMask___gt__(self, other) - - def fromMask(self, val): - return _mscl.BitMask_fromMask(self, val) - - def toMask(self): - return _mscl.BitMask_toMask(self) - - def enabledCount(self): - return _mscl.BitMask_enabledCount(self) - - def enabled(self, bitIndex): - return _mscl.BitMask_enabled(self, bitIndex) - - def enable(self, bitIndex, enable=True): - return _mscl.BitMask_enable(self, bitIndex, enable) - - def lastBitEnabled(self): - return _mscl.BitMask_lastBitEnabled(self) - -# Register BitMask in _mscl: -_mscl.BitMask_swigregister(BitMask) - -class ChannelMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_CHANNELS = _mscl.ChannelMask_MAX_CHANNELS - - def __init__(self, *args): - _mscl.ChannelMask_swiginit(self, _mscl.new_ChannelMask(*args)) - __swig_destroy__ = _mscl.delete_ChannelMask - - def __eq__(self, other): - return _mscl.ChannelMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.ChannelMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.ChannelMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.ChannelMask___gt__(self, other) - - def fromMask(self, channelMask): - return _mscl.ChannelMask_fromMask(self, channelMask) - - def toMask(self): - return _mscl.ChannelMask_toMask(self) - - def count(self): - return _mscl.ChannelMask_count(self) - - def enabled(self, channel): - return _mscl.ChannelMask_enabled(self, channel) - - def enable(self, channel, enable=True): - return _mscl.ChannelMask_enable(self, channel, enable) - - def lastChEnabled(self): - return _mscl.ChannelMask_lastChEnabled(self) - -# Register ChannelMask in _mscl: -_mscl.ChannelMask_swigregister(ChannelMask) - -class Value(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_Value - - def storedAs(self): - return _mscl.Value_storedAs(self) - - def as_float(self): - return _mscl.Value_as_float(self) - - def as_double(self): - return _mscl.Value_as_double(self) - - def as_uint8(self): - return _mscl.Value_as_uint8(self) - - def as_uint16(self): - return _mscl.Value_as_uint16(self) - - def as_uint32(self): - return _mscl.Value_as_uint32(self) - - def as_uint64(self): - return _mscl.Value_as_uint64(self) - - def as_int8(self): - return _mscl.Value_as_int8(self) - - def as_int16(self): - return _mscl.Value_as_int16(self) - - def as_int32(self): - return _mscl.Value_as_int32(self) - - def as_bool(self): - return _mscl.Value_as_bool(self) - - def as_ChannelMask(self): - return _mscl.Value_as_ChannelMask(self) - - def as_string(self): - return _mscl.Value_as_string(self) - - def __init__(self): - _mscl.Value_swiginit(self, _mscl.new_Value()) - -# Register Value in _mscl: -_mscl.Value_swigregister(Value) - -class Bin(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, start, end, count): - _mscl.Bin_swiginit(self, _mscl.new_Bin(start, end, count)) - - def start(self): - return _mscl.Bin_start(self) - - def end(self): - return _mscl.Bin_end(self) - - def count(self): - return _mscl.Bin_count(self) - __swig_destroy__ = _mscl.delete_Bin - -# Register Bin in _mscl: -_mscl.Bin_swigregister(Bin) - -class Histogram(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, binsStart, binsSize): - _mscl.Histogram_swiginit(self, _mscl.new_Histogram(binsStart, binsSize)) - - def binsStart(self): - return _mscl.Histogram_binsStart(self) - - def binsSize(self): - return _mscl.Histogram_binsSize(self) - - def bins(self): - return _mscl.Histogram_bins(self) - - def addBin(self, bin): - return _mscl.Histogram_addBin(self, bin) - __swig_destroy__ = _mscl.delete_Histogram - -# Register Histogram in _mscl: -_mscl.Histogram_swigregister(Histogram) - -class Timestamp(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INTERNAL = _mscl.Timestamp_INTERNAL - EXTERNAL = _mscl.Timestamp_EXTERNAL - TIME_OF_ARRIVAL = _mscl.Timestamp_TIME_OF_ARRIVAL - GPS = _mscl.Timestamp_GPS - UNIX = _mscl.Timestamp_UNIX - UTC = _mscl.Timestamp_UTC - - def __init__(self, *args): - _mscl.Timestamp_swiginit(self, _mscl.new_Timestamp(*args)) - __swig_destroy__ = _mscl.delete_Timestamp - - def nanoseconds(self, *args): - return _mscl.Timestamp_nanoseconds(self, *args) - - def seconds(self, *args): - return _mscl.Timestamp_seconds(self, *args) - - def storedEpoch(self): - return _mscl.Timestamp_storedEpoch(self) - - def __str__(self): - return _mscl.Timestamp___str__(self) - - def setTime(self, *args): - return _mscl.Timestamp_setTime(self, *args) - - def setTimeNow(self): - return _mscl.Timestamp_setTimeNow(self) - - @staticmethod - def timeNow(): - return _mscl.Timestamp_timeNow() - - @staticmethod - def setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - - @staticmethod - def getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - - @staticmethod - def gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - - @staticmethod - def utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -# Register Timestamp in _mscl: -_mscl.Timestamp_swigregister(Timestamp) - -def Timestamp_timeNow(): - return _mscl.Timestamp_timeNow() - -def Timestamp_setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - -def Timestamp_getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - -def Timestamp_gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - -def Timestamp_utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -class TimeSpan(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - NANOSECONDS_PER_MICROSECOND = _mscl.TimeSpan_NANOSECONDS_PER_MICROSECOND - NANOSECONDS_PER_MILLISECOND = _mscl.TimeSpan_NANOSECONDS_PER_MILLISECOND - NANOSECONDS_PER_SECOND = _mscl.TimeSpan_NANOSECONDS_PER_SECOND - - def getNanoseconds(self): - return _mscl.TimeSpan_getNanoseconds(self) - - def getMicroseconds(self): - return _mscl.TimeSpan_getMicroseconds(self) - - def getMilliseconds(self): - return _mscl.TimeSpan_getMilliseconds(self) - - def getSeconds(self): - return _mscl.TimeSpan_getSeconds(self) - - @staticmethod - def NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - - @staticmethod - def MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - - @staticmethod - def MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - - @staticmethod - def Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - - @staticmethod - def Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - - @staticmethod - def Hours(hours): - return _mscl.TimeSpan_Hours(hours) - - @staticmethod - def Days(days): - return _mscl.TimeSpan_Days(days) - __swig_destroy__ = _mscl.delete_TimeSpan - -# Register TimeSpan in _mscl: -_mscl.TimeSpan_swigregister(TimeSpan) - -def TimeSpan_NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - -def TimeSpan_MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - -def TimeSpan_MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - -def TimeSpan_Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - -def TimeSpan_Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - -def TimeSpan_Hours(hours): - return _mscl.TimeSpan_Hours(hours) - -def TimeSpan_Days(days): - return _mscl.TimeSpan_Days(days) - -class Version(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Version_swiginit(self, _mscl.new_Version(*args)) - - def __eq__(self, cmp): - return _mscl.Version___eq__(self, cmp) - - def __ne__(self, cmp): - return _mscl.Version___ne__(self, cmp) - - def __lt__(self, cmp): - return _mscl.Version___lt__(self, cmp) - - def __le__(self, cmp): - return _mscl.Version___le__(self, cmp) - - def __gt__(self, cmp): - return _mscl.Version___gt__(self, cmp) - - def __ge__(self, cmp): - return _mscl.Version___ge__(self, cmp) - - def __str__(self): - return _mscl.Version___str__(self) - - def fromString(self, strVersion): - return _mscl.Version_fromString(self, strVersion) - - def majorPart(self): - return _mscl.Version_majorPart(self) - - def minorPart(self): - return _mscl.Version_minorPart(self) - - def patchPart(self): - return _mscl.Version_patchPart(self) - __swig_destroy__ = _mscl.delete_Version - -# Register Version in _mscl: -_mscl.Version_swigregister(Version) - -class DeviceInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.DeviceInfo_connectionType_serial - connectionType_tcp = _mscl.DeviceInfo_connectionType_tcp - - def __init__(self, *args): - _mscl.DeviceInfo_swiginit(self, _mscl.new_DeviceInfo(*args)) - - def description(self): - return _mscl.DeviceInfo_description(self) - - def serial(self): - return _mscl.DeviceInfo_serial(self) - - def baudRate(self): - return _mscl.DeviceInfo_baudRate(self) - - def connectionType(self): - return _mscl.DeviceInfo_connectionType(self) - __swig_destroy__ = _mscl.delete_DeviceInfo - -# Register DeviceInfo in _mscl: -_mscl.DeviceInfo_swigregister(DeviceInfo) -cvar = _mscl.cvar -MSCL_VERSION = cvar.MSCL_VERSION - -class Devices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def listBaseStations(): - return _mscl.Devices_listBaseStations() - - @staticmethod - def listInertialDevices(): - return _mscl.Devices_listInertialDevices() - - @staticmethod - def listPorts(): - return _mscl.Devices_listPorts() - __swig_destroy__ = _mscl.delete_Devices - -# Register Devices in _mscl: -_mscl.Devices_swigregister(Devices) - -def Devices_listBaseStations(): - return _mscl.Devices_listBaseStations() - -def Devices_listInertialDevices(): - return _mscl.Devices_listInertialDevices() - -def Devices_listPorts(): - return _mscl.Devices_listPorts() - -class ConnectionDebugData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ConnectionDebugData_swiginit(self, _mscl.new_ConnectionDebugData(*args)) - - def fromRead(self): - return _mscl.ConnectionDebugData_fromRead(self) - - def timestamp(self): - return _mscl.ConnectionDebugData_timestamp(self) - - def data(self): - return _mscl.ConnectionDebugData_data(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugData - -# Register ConnectionDebugData in _mscl: -_mscl.ConnectionDebugData_swigregister(ConnectionDebugData) - -class Connection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.Connection_connectionType_serial - connectionType_tcp = _mscl.Connection_connectionType_tcp - connectionType_webSocket = _mscl.Connection_connectionType_webSocket - connectionType_unixSocket = _mscl.Connection_connectionType_unixSocket - - def __init__(self): - _mscl.Connection_swiginit(self, _mscl.new_Connection()) - - @staticmethod - def Serial(*args): - return _mscl.Connection_Serial(*args) - - @staticmethod - def TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - - @staticmethod - def UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - - @staticmethod - def Mock(): - return _mscl.Connection_Mock() - - def description(self): - return _mscl.Connection_description(self) - - def port(self): - return _mscl.Connection_port(self) - - def type(self): - return _mscl.Connection_type(self) - - def disconnect(self): - return _mscl.Connection_disconnect(self) - - def reconnect(self): - return _mscl.Connection_reconnect(self) - - def write(self, bytes): - return _mscl.Connection_write(self, bytes) - - def writeStr(self, bytes): - return _mscl.Connection_writeStr(self, bytes) - - def clearBuffer(self): - return _mscl.Connection_clearBuffer(self) - - def byteReadPos(self): - return _mscl.Connection_byteReadPos(self) - - def byteAppendPos(self): - return _mscl.Connection_byteAppendPos(self) - - def rawByteMode(self, *args): - return _mscl.Connection_rawByteMode(self, *args) - - def getRawBytes(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytes(self, timeout, maxBytes, minBytes) - - def getRawBytesStr(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytesStr(self, timeout, maxBytes, minBytes) - - def getRawBytesWithPattern(self, pattern, timeout=0): - return _mscl.Connection_getRawBytesWithPattern(self, pattern, timeout) - - def debugMode(self, *args): - return _mscl.Connection_debugMode(self, *args) - - def getDebugData(self, timeout=0): - return _mscl.Connection_getDebugData(self, timeout) - - def updateBaudRate(self, baudRate): - return _mscl.Connection_updateBaudRate(self, baudRate) - __swig_destroy__ = _mscl.delete_Connection - -# Register Connection in _mscl: -_mscl.Connection_swigregister(Connection) - -def Connection_Serial(*args): - return _mscl.Connection_Serial(*args) - -def Connection_TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - -def Connection_UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - -def Connection_Mock(): - return _mscl.Connection_Mock() - -class WirelessTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - beacon_none = _mscl.WirelessTypes_beacon_none - beacon_internalTimer = _mscl.WirelessTypes_beacon_internalTimer - beacon_internalPPS = _mscl.WirelessTypes_beacon_internalPPS - beacon_externalPPS = _mscl.WirelessTypes_beacon_externalPPS - microcontroller_18F452 = _mscl.WirelessTypes_microcontroller_18F452 - microcontroller_18F4620 = _mscl.WirelessTypes_microcontroller_18F4620 - microcontroller_18F46K20 = _mscl.WirelessTypes_microcontroller_18F46K20 - microcontroller_18F67K90 = _mscl.WirelessTypes_microcontroller_18F67K90 - microcontroller_EFM32WG990F256 = _mscl.WirelessTypes_microcontroller_EFM32WG990F256 - microcontroller_EFR32FG1P132F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32FG1P132F256GM48 - microcontroller_EFR32MG1P232F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32MG1P232F256GM48 - collectionMethod_logOnly = _mscl.WirelessTypes_collectionMethod_logOnly - collectionMethod_transmitOnly = _mscl.WirelessTypes_collectionMethod_transmitOnly - collectionMethod_logAndTransmit = _mscl.WirelessTypes_collectionMethod_logAndTransmit - dataType_first = _mscl.WirelessTypes_dataType_first - dataType_uint16_shifted = _mscl.WirelessTypes_dataType_uint16_shifted - dataType_float32 = _mscl.WirelessTypes_dataType_float32 - dataType_uint16_12bitRes = _mscl.WirelessTypes_dataType_uint16_12bitRes - dataType_uint32 = _mscl.WirelessTypes_dataType_uint32 - dataType_uint16 = _mscl.WirelessTypes_dataType_uint16 - dataType_float32_noCals = _mscl.WirelessTypes_dataType_float32_noCals - dataType_uint24_18bitRes = _mscl.WirelessTypes_dataType_uint24_18bitRes - dataType_uint16_18bitTrunc = _mscl.WirelessTypes_dataType_uint16_18bitTrunc - dataType_int24_20bit = _mscl.WirelessTypes_dataType_int24_20bit - dataType_int16_20bitTrunc = _mscl.WirelessTypes_dataType_int16_20bitTrunc - dataType_uint24 = _mscl.WirelessTypes_dataType_uint24 - dataType_uint16_24bitTrunc = _mscl.WirelessTypes_dataType_uint16_24bitTrunc - dataType_int16_x10 = _mscl.WirelessTypes_dataType_int16_x10 - dataType_last = _mscl.WirelessTypes_dataType_last - dataFormat_raw_uint16 = _mscl.WirelessTypes_dataFormat_raw_uint16 - dataFormat_cal_float = _mscl.WirelessTypes_dataFormat_cal_float - dataFormat_raw_uint24 = _mscl.WirelessTypes_dataFormat_raw_uint24 - dataFormat_raw_int24 = _mscl.WirelessTypes_dataFormat_raw_int24 - dataFormat_raw_int16 = _mscl.WirelessTypes_dataFormat_raw_int16 - dataFormat_cal_int16_x10 = _mscl.WirelessTypes_dataFormat_cal_int16_x10 - syncMode_continuous = _mscl.WirelessTypes_syncMode_continuous - syncMode_burst = _mscl.WirelessTypes_syncMode_burst - samplingMode_sync = _mscl.WirelessTypes_samplingMode_sync - samplingMode_syncBurst = _mscl.WirelessTypes_samplingMode_syncBurst - samplingMode_nonSync = _mscl.WirelessTypes_samplingMode_nonSync - samplingMode_armedDatalog = _mscl.WirelessTypes_samplingMode_armedDatalog - samplingMode_syncEvent = _mscl.WirelessTypes_samplingMode_syncEvent - samplingMode_nonSyncEvent = _mscl.WirelessTypes_samplingMode_nonSyncEvent - defaultMode_idle = _mscl.WirelessTypes_defaultMode_idle - defaultMode_ldc = _mscl.WirelessTypes_defaultMode_ldc - defaultMode_datalog = _mscl.WirelessTypes_defaultMode_datalog - defaultMode_sleep = _mscl.WirelessTypes_defaultMode_sleep - defaultMode_sync = _mscl.WirelessTypes_defaultMode_sync - freq_unknown = _mscl.WirelessTypes_freq_unknown - freq_11 = _mscl.WirelessTypes_freq_11 - freq_12 = _mscl.WirelessTypes_freq_12 - freq_13 = _mscl.WirelessTypes_freq_13 - freq_14 = _mscl.WirelessTypes_freq_14 - freq_15 = _mscl.WirelessTypes_freq_15 - freq_16 = _mscl.WirelessTypes_freq_16 - freq_17 = _mscl.WirelessTypes_freq_17 - freq_18 = _mscl.WirelessTypes_freq_18 - freq_19 = _mscl.WirelessTypes_freq_19 - freq_20 = _mscl.WirelessTypes_freq_20 - freq_21 = _mscl.WirelessTypes_freq_21 - freq_22 = _mscl.WirelessTypes_freq_22 - freq_23 = _mscl.WirelessTypes_freq_23 - freq_24 = _mscl.WirelessTypes_freq_24 - freq_25 = _mscl.WirelessTypes_freq_25 - freq_26 = _mscl.WirelessTypes_freq_26 - power_20dBm = _mscl.WirelessTypes_power_20dBm - power_16dBm = _mscl.WirelessTypes_power_16dBm - power_15dBm = _mscl.WirelessTypes_power_15dBm - power_12dBm = _mscl.WirelessTypes_power_12dBm - power_11dBm = _mscl.WirelessTypes_power_11dBm - power_10dBm = _mscl.WirelessTypes_power_10dBm - power_5dBm = _mscl.WirelessTypes_power_5dBm - power_1dBm = _mscl.WirelessTypes_power_1dBm - power_0dBm = _mscl.WirelessTypes_power_0dBm - retransmission_off = _mscl.WirelessTypes_retransmission_off - retransmission_on = _mscl.WirelessTypes_retransmission_on - retransmission_disabled = _mscl.WirelessTypes_retransmission_disabled - trigger_userInit = _mscl.WirelessTypes_trigger_userInit - trigger_ceiling = _mscl.WirelessTypes_trigger_ceiling - trigger_floor = _mscl.WirelessTypes_trigger_floor - trigger_rampUp = _mscl.WirelessTypes_trigger_rampUp - trigger_rampDown = _mscl.WirelessTypes_trigger_rampDown - equation_none = _mscl.WirelessTypes_equation_none - equation_standard = _mscl.WirelessTypes_equation_standard - unit_none = _mscl.WirelessTypes_unit_none - unit_other_bits = _mscl.WirelessTypes_unit_other_bits - unit_strain_strain = _mscl.WirelessTypes_unit_strain_strain - unit_strain_microStrain = _mscl.WirelessTypes_unit_strain_microStrain - unit_accel_g = _mscl.WirelessTypes_unit_accel_g - unit_accel_mPerSec2 = _mscl.WirelessTypes_unit_accel_mPerSec2 - unit_volts_volts = _mscl.WirelessTypes_unit_volts_volts - unit_volts_millivolts = _mscl.WirelessTypes_unit_volts_millivolts - unit_volts_microvolts = _mscl.WirelessTypes_unit_volts_microvolts - unit_temp_celsius = _mscl.WirelessTypes_unit_temp_celsius - unit_temp_kelvin = _mscl.WirelessTypes_unit_temp_kelvin - unit_temp_fahrenheit = _mscl.WirelessTypes_unit_temp_fahrenheit - unit_displacement_meters = _mscl.WirelessTypes_unit_displacement_meters - unit_displacement_millimeters = _mscl.WirelessTypes_unit_displacement_millimeters - unit_displacement_micrometers = _mscl.WirelessTypes_unit_displacement_micrometers - unit_force_lbf = _mscl.WirelessTypes_unit_force_lbf - unit_force_newtons = _mscl.WirelessTypes_unit_force_newtons - unit_force_kiloNewtons = _mscl.WirelessTypes_unit_force_kiloNewtons - unit_mass_kilograms = _mscl.WirelessTypes_unit_mass_kilograms - unit_pressure_bar = _mscl.WirelessTypes_unit_pressure_bar - unit_pressure_psi = _mscl.WirelessTypes_unit_pressure_psi - unit_pressure_atm = _mscl.WirelessTypes_unit_pressure_atm - unit_pressure_mmHg = _mscl.WirelessTypes_unit_pressure_mmHg - unit_pressure_pascal = _mscl.WirelessTypes_unit_pressure_pascal - unit_pressure_megaPascal = _mscl.WirelessTypes_unit_pressure_megaPascal - unit_pressure_kiloPascal = _mscl.WirelessTypes_unit_pressure_kiloPascal - unit_angDisplacement_degrees = _mscl.WirelessTypes_unit_angDisplacement_degrees - unit_angVelocity_degreesPerSec = _mscl.WirelessTypes_unit_angVelocity_degreesPerSec - unit_angVelocity_radiansPerSec = _mscl.WirelessTypes_unit_angVelocity_radiansPerSec - unit_other_percent = _mscl.WirelessTypes_unit_other_percent - unit_freq_rpm = _mscl.WirelessTypes_unit_freq_rpm - unit_freq_hertz = _mscl.WirelessTypes_unit_freq_hertz - unit_rh_percentRh = _mscl.WirelessTypes_unit_rh_percentRh - unit_other_mVperV = _mscl.WirelessTypes_unit_other_mVperV - unit_accel_milliG = _mscl.WirelessTypes_unit_accel_milliG - unit_accel_ftPerSec2 = _mscl.WirelessTypes_unit_accel_ftPerSec2 - unit_other_percentLife = _mscl.WirelessTypes_unit_other_percentLife - unit_other_count = _mscl.WirelessTypes_unit_other_count - unit_displacement_feet = _mscl.WirelessTypes_unit_displacement_feet - unit_displacement_inches = _mscl.WirelessTypes_unit_displacement_inches - unit_displacement_yards = _mscl.WirelessTypes_unit_displacement_yards - unit_displacement_miles = _mscl.WirelessTypes_unit_displacement_miles - unit_displacement_nautMiles = _mscl.WirelessTypes_unit_displacement_nautMiles - unit_displacement_thouInch = _mscl.WirelessTypes_unit_displacement_thouInch - unit_displacement_hundInch = _mscl.WirelessTypes_unit_displacement_hundInch - unit_displacement_kilometers = _mscl.WirelessTypes_unit_displacement_kilometers - unit_displacement_centimeters = _mscl.WirelessTypes_unit_displacement_centimeters - unit_irradiance_wattsPerSqMeter = _mscl.WirelessTypes_unit_irradiance_wattsPerSqMeter - unit_par_microEinstein = _mscl.WirelessTypes_unit_par_microEinstein - unit_mass_pound = _mscl.WirelessTypes_unit_mass_pound - unit_power_watt = _mscl.WirelessTypes_unit_power_watt - unit_power_milliwatt = _mscl.WirelessTypes_unit_power_milliwatt - unit_power_horsepower = _mscl.WirelessTypes_unit_power_horsepower - unit_reactivePower_var = _mscl.WirelessTypes_unit_reactivePower_var - unit_energy_wattHour = _mscl.WirelessTypes_unit_energy_wattHour - unit_energy_kiloWattHour = _mscl.WirelessTypes_unit_energy_kiloWattHour - unit_reactiveEnergy_VARh = _mscl.WirelessTypes_unit_reactiveEnergy_VARh - unit_reactiveEnergy_kVARh = _mscl.WirelessTypes_unit_reactiveEnergy_kVARh - unit_current_ampere = _mscl.WirelessTypes_unit_current_ampere - unit_current_milliampere = _mscl.WirelessTypes_unit_current_milliampere - unit_current_microampere = _mscl.WirelessTypes_unit_current_microampere - unit_pressure_millibar = _mscl.WirelessTypes_unit_pressure_millibar - unit_pressure_inHg = _mscl.WirelessTypes_unit_pressure_inHg - unit_rssi_dBm = _mscl.WirelessTypes_unit_rssi_dBm - unit_freq_kiloHertz = _mscl.WirelessTypes_unit_freq_kiloHertz - unit_angDisplacement_radians = _mscl.WirelessTypes_unit_angDisplacement_radians - unit_velocity_metersPerSec = _mscl.WirelessTypes_unit_velocity_metersPerSec - unit_velocity_kilometersPerSec = _mscl.WirelessTypes_unit_velocity_kilometersPerSec - unit_velocity_kilometersPerHr = _mscl.WirelessTypes_unit_velocity_kilometersPerHr - unit_velocity_milesPerHr = _mscl.WirelessTypes_unit_velocity_milesPerHr - unit_velocity_knots = _mscl.WirelessTypes_unit_velocity_knots - unit_volume_cubicMeter = _mscl.WirelessTypes_unit_volume_cubicMeter - unit_volume_cubicFt = _mscl.WirelessTypes_unit_volume_cubicFt - unit_volume_liters = _mscl.WirelessTypes_unit_volume_liters - unit_volume_gallon = _mscl.WirelessTypes_unit_volume_gallon - unit_flowRate_cubicMetersPerSec = _mscl.WirelessTypes_unit_flowRate_cubicMetersPerSec - unit_flowRate_cubicFtPerSec = _mscl.WirelessTypes_unit_flowRate_cubicFtPerSec - unit_torque_newtonMeter = _mscl.WirelessTypes_unit_torque_newtonMeter - unit_torque_footPounds = _mscl.WirelessTypes_unit_torque_footPounds - unit_torque_inchPounds = _mscl.WirelessTypes_unit_torque_inchPounds - unit_time_secs = _mscl.WirelessTypes_unit_time_secs - unit_time_nanosecs = _mscl.WirelessTypes_unit_time_nanosecs - unit_time_microsecs = _mscl.WirelessTypes_unit_time_microsecs - unit_time_millisecs = _mscl.WirelessTypes_unit_time_millisecs - unit_time_minutes = _mscl.WirelessTypes_unit_time_minutes - unit_time_hours = _mscl.WirelessTypes_unit_time_hours - unit_time_days = _mscl.WirelessTypes_unit_time_days - unit_time_weeks = _mscl.WirelessTypes_unit_time_weeks - unit_other_value = _mscl.WirelessTypes_unit_other_value - unit_magneticFlux_gauss = _mscl.WirelessTypes_unit_magneticFlux_gauss - unit_other_gSec = _mscl.WirelessTypes_unit_other_gSec - unit_other_secsPerSec = _mscl.WirelessTypes_unit_other_secsPerSec - unit_rssi_dBHz = _mscl.WirelessTypes_unit_rssi_dBHz - unit_density_kgPerMeter3 = _mscl.WirelessTypes_unit_density_kgPerMeter3 - unit_other_unitless = _mscl.WirelessTypes_unit_other_unitless - unit_velocity_inchesPerSec = _mscl.WirelessTypes_unit_velocity_inchesPerSec - unit_force_kg = _mscl.WirelessTypes_unit_force_kg - unit_rawVoltage_volts = _mscl.WirelessTypes_unit_rawVoltage_volts - unit_rawVoltage_millivolts = _mscl.WirelessTypes_unit_rawVoltage_millivolts - unit_rawVoltage_microvolts = _mscl.WirelessTypes_unit_rawVoltage_microvolts - unit_resistance_ohm = _mscl.WirelessTypes_unit_resistance_ohm - unit_resistance_milliohm = _mscl.WirelessTypes_unit_resistance_milliohm - unit_resistance_kiloohm = _mscl.WirelessTypes_unit_resistance_kiloohm - unit_velocity_mmPerSec = _mscl.WirelessTypes_unit_velocity_mmPerSec - unit_mass_grams = _mscl.WirelessTypes_unit_mass_grams - unit_mass_ton = _mscl.WirelessTypes_unit_mass_ton - unit_mass_tonne = _mscl.WirelessTypes_unit_mass_tonne - chType_none = _mscl.WirelessTypes_chType_none - chType_fullDifferential = _mscl.WirelessTypes_chType_fullDifferential - chType_singleEnded = _mscl.WirelessTypes_chType_singleEnded - chType_battery = _mscl.WirelessTypes_chType_battery - chType_temperature = _mscl.WirelessTypes_chType_temperature - chType_rh = _mscl.WirelessTypes_chType_rh - chType_acceleration = _mscl.WirelessTypes_chType_acceleration - chType_displacement = _mscl.WirelessTypes_chType_displacement - chType_voltage = _mscl.WirelessTypes_chType_voltage - chType_diffTemperature = _mscl.WirelessTypes_chType_diffTemperature - chType_digital = _mscl.WirelessTypes_chType_digital - chType_tilt = _mscl.WirelessTypes_chType_tilt - voltageType_singleEnded = _mscl.WirelessTypes_voltageType_singleEnded - voltageType_differential = _mscl.WirelessTypes_voltageType_differential - settling_4ms = _mscl.WirelessTypes_settling_4ms - settling_8ms = _mscl.WirelessTypes_settling_8ms - settling_16ms = _mscl.WirelessTypes_settling_16ms - settling_32ms = _mscl.WirelessTypes_settling_32ms - settling_40ms = _mscl.WirelessTypes_settling_40ms - settling_48ms = _mscl.WirelessTypes_settling_48ms - settling_60ms = _mscl.WirelessTypes_settling_60ms - settling_101ms_90db = _mscl.WirelessTypes_settling_101ms_90db - settling_120ms_80db = _mscl.WirelessTypes_settling_120ms_80db - settling_120ms_65db = _mscl.WirelessTypes_settling_120ms_65db - settling_160ms_69db = _mscl.WirelessTypes_settling_160ms_69db - settling_200ms = _mscl.WirelessTypes_settling_200ms - transducer_thermocouple = _mscl.WirelessTypes_transducer_thermocouple - transducer_rtd = _mscl.WirelessTypes_transducer_rtd - transducer_thermistor = _mscl.WirelessTypes_transducer_thermistor - tc_uncompensated = _mscl.WirelessTypes_tc_uncompensated - tc_K = _mscl.WirelessTypes_tc_K - tc_J = _mscl.WirelessTypes_tc_J - tc_R = _mscl.WirelessTypes_tc_R - tc_S = _mscl.WirelessTypes_tc_S - tc_T = _mscl.WirelessTypes_tc_T - tc_E = _mscl.WirelessTypes_tc_E - tc_B = _mscl.WirelessTypes_tc_B - tc_N = _mscl.WirelessTypes_tc_N - tc_customPolynomial = _mscl.WirelessTypes_tc_customPolynomial - rtd_uncompensated = _mscl.WirelessTypes_rtd_uncompensated - rtd_pt10 = _mscl.WirelessTypes_rtd_pt10 - rtd_pt50 = _mscl.WirelessTypes_rtd_pt50 - rtd_pt100 = _mscl.WirelessTypes_rtd_pt100 - rtd_pt200 = _mscl.WirelessTypes_rtd_pt200 - rtd_pt500 = _mscl.WirelessTypes_rtd_pt500 - rtd_pt1000 = _mscl.WirelessTypes_rtd_pt1000 - rtd_2wire = _mscl.WirelessTypes_rtd_2wire - rtd_3wire = _mscl.WirelessTypes_rtd_3wire - rtd_4wire = _mscl.WirelessTypes_rtd_4wire - thermistor_uncompensated = _mscl.WirelessTypes_thermistor_uncompensated - thermistor_44004_44033 = _mscl.WirelessTypes_thermistor_44004_44033 - thermistor_44005_44030 = _mscl.WirelessTypes_thermistor_44005_44030 - thermistor_44007_44034 = _mscl.WirelessTypes_thermistor_44007_44034 - thermistor_44006_44031 = _mscl.WirelessTypes_thermistor_44006_44031 - thermistor_44008_44032 = _mscl.WirelessTypes_thermistor_44008_44032 - thermistor_ysi_400 = _mscl.WirelessTypes_thermistor_ysi_400 - sampleRate_104170Hz = _mscl.WirelessTypes_sampleRate_104170Hz - sampleRate_78125Hz = _mscl.WirelessTypes_sampleRate_78125Hz - sampleRate_62500Hz = _mscl.WirelessTypes_sampleRate_62500Hz - sampleRate_25000Hz = _mscl.WirelessTypes_sampleRate_25000Hz - sampleRate_12500Hz = _mscl.WirelessTypes_sampleRate_12500Hz - sampleRate_3200Hz = _mscl.WirelessTypes_sampleRate_3200Hz - sampleRate_1600Hz = _mscl.WirelessTypes_sampleRate_1600Hz - sampleRate_800Hz = _mscl.WirelessTypes_sampleRate_800Hz - sampleRate_300Hz = _mscl.WirelessTypes_sampleRate_300Hz - sampleRate_1kHz = _mscl.WirelessTypes_sampleRate_1kHz - sampleRate_2kHz = _mscl.WirelessTypes_sampleRate_2kHz - sampleRate_3kHz = _mscl.WirelessTypes_sampleRate_3kHz - sampleRate_4kHz = _mscl.WirelessTypes_sampleRate_4kHz - sampleRate_5kHz = _mscl.WirelessTypes_sampleRate_5kHz - sampleRate_6kHz = _mscl.WirelessTypes_sampleRate_6kHz - sampleRate_7kHz = _mscl.WirelessTypes_sampleRate_7kHz - sampleRate_8kHz = _mscl.WirelessTypes_sampleRate_8kHz - sampleRate_9kHz = _mscl.WirelessTypes_sampleRate_9kHz - sampleRate_10kHz = _mscl.WirelessTypes_sampleRate_10kHz - sampleRate_20kHz = _mscl.WirelessTypes_sampleRate_20kHz - sampleRate_30kHz = _mscl.WirelessTypes_sampleRate_30kHz - sampleRate_40kHz = _mscl.WirelessTypes_sampleRate_40kHz - sampleRate_50kHz = _mscl.WirelessTypes_sampleRate_50kHz - sampleRate_60kHz = _mscl.WirelessTypes_sampleRate_60kHz - sampleRate_70kHz = _mscl.WirelessTypes_sampleRate_70kHz - sampleRate_80kHz = _mscl.WirelessTypes_sampleRate_80kHz - sampleRate_90kHz = _mscl.WirelessTypes_sampleRate_90kHz - sampleRate_100kHz = _mscl.WirelessTypes_sampleRate_100kHz - sampleRate_887Hz = _mscl.WirelessTypes_sampleRate_887Hz - sampleRate_8192Hz = _mscl.WirelessTypes_sampleRate_8192Hz - sampleRate_4096Hz = _mscl.WirelessTypes_sampleRate_4096Hz - sampleRate_2048Hz = _mscl.WirelessTypes_sampleRate_2048Hz - sampleRate_1024Hz = _mscl.WirelessTypes_sampleRate_1024Hz - sampleRate_512Hz = _mscl.WirelessTypes_sampleRate_512Hz - sampleRate_256Hz = _mscl.WirelessTypes_sampleRate_256Hz - sampleRate_128Hz = _mscl.WirelessTypes_sampleRate_128Hz - sampleRate_64Hz = _mscl.WirelessTypes_sampleRate_64Hz - sampleRate_32Hz = _mscl.WirelessTypes_sampleRate_32Hz - sampleRate_16Hz = _mscl.WirelessTypes_sampleRate_16Hz - sampleRate_8Hz = _mscl.WirelessTypes_sampleRate_8Hz - sampleRate_4Hz = _mscl.WirelessTypes_sampleRate_4Hz - sampleRate_2Hz = _mscl.WirelessTypes_sampleRate_2Hz - sampleRate_1Hz = _mscl.WirelessTypes_sampleRate_1Hz - sampleRate_2Sec = _mscl.WirelessTypes_sampleRate_2Sec - sampleRate_5Sec = _mscl.WirelessTypes_sampleRate_5Sec - sampleRate_10Sec = _mscl.WirelessTypes_sampleRate_10Sec - sampleRate_30Sec = _mscl.WirelessTypes_sampleRate_30Sec - sampleRate_1Min = _mscl.WirelessTypes_sampleRate_1Min - sampleRate_2Min = _mscl.WirelessTypes_sampleRate_2Min - sampleRate_5Min = _mscl.WirelessTypes_sampleRate_5Min - sampleRate_10Min = _mscl.WirelessTypes_sampleRate_10Min - sampleRate_30Min = _mscl.WirelessTypes_sampleRate_30Min - sampleRate_60Min = _mscl.WirelessTypes_sampleRate_60Min - sampleRate_24Hours = _mscl.WirelessTypes_sampleRate_24Hours - region_usa = _mscl.WirelessTypes_region_usa - region_europeanUnion = _mscl.WirelessTypes_region_europeanUnion - region_japan = _mscl.WirelessTypes_region_japan - region_other = _mscl.WirelessTypes_region_other - region_brazil = _mscl.WirelessTypes_region_brazil - region_china = _mscl.WirelessTypes_region_china - region_australia_newzealand = _mscl.WirelessTypes_region_australia_newzealand - region_singapore = _mscl.WirelessTypes_region_singapore - region_canada = _mscl.WirelessTypes_region_canada - region_southAfrica = _mscl.WirelessTypes_region_southAfrica - region_indonesia = _mscl.WirelessTypes_region_indonesia - region_taiwan = _mscl.WirelessTypes_region_taiwan - chSetting_inputRange = _mscl.WirelessTypes_chSetting_inputRange - chSetting_filterSettlingTime = _mscl.WirelessTypes_chSetting_filterSettlingTime - chSetting_thermocoupleType = _mscl.WirelessTypes_chSetting_thermocoupleType - chSetting_linearEquation = _mscl.WirelessTypes_chSetting_linearEquation - chSetting_unit = _mscl.WirelessTypes_chSetting_unit - chSetting_equationType = _mscl.WirelessTypes_chSetting_equationType - chSetting_hardwareOffset = _mscl.WirelessTypes_chSetting_hardwareOffset - chSetting_autoBalance = _mscl.WirelessTypes_chSetting_autoBalance - chSetting_gaugeFactor = _mscl.WirelessTypes_chSetting_gaugeFactor - chSetting_antiAliasingFilter = _mscl.WirelessTypes_chSetting_antiAliasingFilter - chSetting_legacyShuntCal = _mscl.WirelessTypes_chSetting_legacyShuntCal - chSetting_autoShuntCal = _mscl.WirelessTypes_chSetting_autoShuntCal - chSetting_lowPassFilter = _mscl.WirelessTypes_chSetting_lowPassFilter - chSetting_highPassFilter = _mscl.WirelessTypes_chSetting_highPassFilter - chSetting_tempSensorOptions = _mscl.WirelessTypes_chSetting_tempSensorOptions - chSetting_debounceFilter = _mscl.WirelessTypes_chSetting_debounceFilter - chSetting_pullUpResistor = _mscl.WirelessTypes_chSetting_pullUpResistor - chSetting_factoryLinearEq = _mscl.WirelessTypes_chSetting_factoryLinearEq - chSetting_factoryUnit = _mscl.WirelessTypes_chSetting_factoryUnit - chSetting_factoryEqType = _mscl.WirelessTypes_chSetting_factoryEqType - autobalance_success = _mscl.WirelessTypes_autobalance_success - autobalance_maybeInvalid = _mscl.WirelessTypes_autobalance_maybeInvalid - autobalance_notSupportedByNode = _mscl.WirelessTypes_autobalance_notSupportedByNode - autobalance_notSupportedByCh = _mscl.WirelessTypes_autobalance_notSupportedByCh - autobalance_targetOutOfRange = _mscl.WirelessTypes_autobalance_targetOutOfRange - autobalance_failed = _mscl.WirelessTypes_autobalance_failed - autobalance_legacyNone = _mscl.WirelessTypes_autobalance_legacyNone - autobalance_notComplete = _mscl.WirelessTypes_autobalance_notComplete - autocal_success = _mscl.WirelessTypes_autocal_success - autocal_maybeInvalid_applied = _mscl.WirelessTypes_autocal_maybeInvalid_applied - autocal_maybeInvalid_notApplied = _mscl.WirelessTypes_autocal_maybeInvalid_notApplied - autocal_notComplete = _mscl.WirelessTypes_autocal_notComplete - autocalError_none = _mscl.WirelessTypes_autocalError_none - autocalError_sensorDetached = _mscl.WirelessTypes_autocalError_sensorDetached - autocalError_sensorShorted = _mscl.WirelessTypes_autocalError_sensorShorted - autocalError_unsupportedChannel = _mscl.WirelessTypes_autocalError_unsupportedChannel - autocalError_baseHighRail = _mscl.WirelessTypes_autocalError_baseHighRail - autocalError_baseLowRail = _mscl.WirelessTypes_autocalError_baseLowRail - autocalError_shuntHighRail = _mscl.WirelessTypes_autocalError_shuntHighRail - autocalError_shuntLowRail = _mscl.WirelessTypes_autocalError_shuntLowRail - autocalError_ramp = _mscl.WirelessTypes_autocalError_ramp - autocalError_noShunt = _mscl.WirelessTypes_autocalError_noShunt - autocalError_timeout = _mscl.WirelessTypes_autocalError_timeout - fatigueMode_angleStrain = _mscl.WirelessTypes_fatigueMode_angleStrain - fatigueMode_distributedAngle = _mscl.WirelessTypes_fatigueMode_distributedAngle - fatigueMode_rawGaugeStrain = _mscl.WirelessTypes_fatigueMode_rawGaugeStrain - eventTrigger_ceiling = _mscl.WirelessTypes_eventTrigger_ceiling - eventTrigger_floor = _mscl.WirelessTypes_eventTrigger_floor - filter_33000hz = _mscl.WirelessTypes_filter_33000hz - filter_20000hz = _mscl.WirelessTypes_filter_20000hz - filter_10000hz = _mscl.WirelessTypes_filter_10000hz - filter_5222hz = _mscl.WirelessTypes_filter_5222hz - filter_5000hz = _mscl.WirelessTypes_filter_5000hz - filter_4416hz = _mscl.WirelessTypes_filter_4416hz - filter_4096hz = _mscl.WirelessTypes_filter_4096hz - filter_4000hz = _mscl.WirelessTypes_filter_4000hz - filter_2208hz = _mscl.WirelessTypes_filter_2208hz - filter_2048hz = _mscl.WirelessTypes_filter_2048hz - filter_2000hz = _mscl.WirelessTypes_filter_2000hz - filter_1104hz = _mscl.WirelessTypes_filter_1104hz - filter_1024hz = _mscl.WirelessTypes_filter_1024hz - filter_1000hz = _mscl.WirelessTypes_filter_1000hz - filter_800hz = _mscl.WirelessTypes_filter_800hz - filter_552hz = _mscl.WirelessTypes_filter_552hz - filter_512hz = _mscl.WirelessTypes_filter_512hz - filter_500hz = _mscl.WirelessTypes_filter_500hz - filter_418hz = _mscl.WirelessTypes_filter_418hz - filter_294hz = _mscl.WirelessTypes_filter_294hz - filter_256hz = _mscl.WirelessTypes_filter_256hz - filter_250hz = _mscl.WirelessTypes_filter_250hz - filter_209hz = _mscl.WirelessTypes_filter_209hz - filter_200hz = _mscl.WirelessTypes_filter_200hz - filter_147hz = _mscl.WirelessTypes_filter_147hz - filter_128hz = _mscl.WirelessTypes_filter_128hz - filter_125hz = _mscl.WirelessTypes_filter_125hz - filter_104hz = _mscl.WirelessTypes_filter_104hz - filter_100hz = _mscl.WirelessTypes_filter_100hz - filter_62hz = _mscl.WirelessTypes_filter_62hz - filter_52hz = _mscl.WirelessTypes_filter_52hz - filter_50hz = _mscl.WirelessTypes_filter_50hz - filter_31hz = _mscl.WirelessTypes_filter_31hz - filter_26hz = _mscl.WirelessTypes_filter_26hz - filter_12_66hz = _mscl.WirelessTypes_filter_12_66hz - filter_2_6hz = _mscl.WirelessTypes_filter_2_6hz - highPass_off = _mscl.WirelessTypes_highPass_off - highPass_auto = _mscl.WirelessTypes_highPass_auto - cfc_10 = _mscl.WirelessTypes_cfc_10 - cfc_21 = _mscl.WirelessTypes_cfc_21 - cfc_60 = _mscl.WirelessTypes_cfc_60 - storageLimit_overwrite = _mscl.WirelessTypes_storageLimit_overwrite - storageLimit_stop = _mscl.WirelessTypes_storageLimit_stop - range_14_545mV = _mscl.WirelessTypes_range_14_545mV - range_10_236mV = _mscl.WirelessTypes_range_10_236mV - range_7_608mV = _mscl.WirelessTypes_range_7_608mV - range_4_046mV = _mscl.WirelessTypes_range_4_046mV - range_2_008mV = _mscl.WirelessTypes_range_2_008mV - range_1_511mV = _mscl.WirelessTypes_range_1_511mV - range_1_001mV = _mscl.WirelessTypes_range_1_001mV - range_0_812mV = _mscl.WirelessTypes_range_0_812mV - range_75mV = _mscl.WirelessTypes_range_75mV - range_37_5mV = _mscl.WirelessTypes_range_37_5mV - range_18_75mV = _mscl.WirelessTypes_range_18_75mV - range_9_38mV = _mscl.WirelessTypes_range_9_38mV - range_4_69mV = _mscl.WirelessTypes_range_4_69mV - range_2_34mV = _mscl.WirelessTypes_range_2_34mV - range_1_17mV = _mscl.WirelessTypes_range_1_17mV - range_0_586mV = _mscl.WirelessTypes_range_0_586mV - range_70mV = _mscl.WirelessTypes_range_70mV - range_35mV = _mscl.WirelessTypes_range_35mV - range_17_5mV = _mscl.WirelessTypes_range_17_5mV - range_8_75mV = _mscl.WirelessTypes_range_8_75mV - range_4_38mV = _mscl.WirelessTypes_range_4_38mV - range_2_19mV = _mscl.WirelessTypes_range_2_19mV - range_1_09mV = _mscl.WirelessTypes_range_1_09mV - range_0_547mV = _mscl.WirelessTypes_range_0_547mV - range_44mV = _mscl.WirelessTypes_range_44mV - range_30mV = _mscl.WirelessTypes_range_30mV - range_20mV = _mscl.WirelessTypes_range_20mV - range_15mV = _mscl.WirelessTypes_range_15mV - range_10mV = _mscl.WirelessTypes_range_10mV - range_5mV = _mscl.WirelessTypes_range_5mV - range_3mV = _mscl.WirelessTypes_range_3mV - range_2mV = _mscl.WirelessTypes_range_2mV - range_6mV = _mscl.WirelessTypes_range_6mV - range_1mV = _mscl.WirelessTypes_range_1mV - range_50mV = _mscl.WirelessTypes_range_50mV - range_2_5mV = _mscl.WirelessTypes_range_2_5mV - range_0_6mV = _mscl.WirelessTypes_range_0_6mV - range_0_35mV = _mscl.WirelessTypes_range_0_35mV - range_0_1mV = _mscl.WirelessTypes_range_0_1mV - range_156mV = _mscl.WirelessTypes_range_156mV - range_78_1mV = _mscl.WirelessTypes_range_78_1mV - range_39mV = _mscl.WirelessTypes_range_39mV - range_19_5mV = _mscl.WirelessTypes_range_19_5mV - range_9_76mV = _mscl.WirelessTypes_range_9_76mV - range_4_88mV = _mscl.WirelessTypes_range_4_88mV - range_2_44mV = _mscl.WirelessTypes_range_2_44mV - range_1_22mV = _mscl.WirelessTypes_range_1_22mV - range_10_24V = _mscl.WirelessTypes_range_10_24V - range_5_12V = _mscl.WirelessTypes_range_5_12V - range_2_56V = _mscl.WirelessTypes_range_2_56V - range_0to10_24V = _mscl.WirelessTypes_range_0to10_24V - range_0to5_12V = _mscl.WirelessTypes_range_0to5_12V - range_1_147V = _mscl.WirelessTypes_range_1_147V - range_585mV = _mscl.WirelessTypes_range_585mV - range_292_5mV = _mscl.WirelessTypes_range_292_5mV - range_146_25mV = _mscl.WirelessTypes_range_146_25mV - range_73_13mV = _mscl.WirelessTypes_range_73_13mV - range_36_56mV = _mscl.WirelessTypes_range_36_56mV - range_18_23mV = _mscl.WirelessTypes_range_18_23mV - range_9_14mV = _mscl.WirelessTypes_range_9_14mV - range_5_74V = _mscl.WirelessTypes_range_5_74V - range_2_93V = _mscl.WirelessTypes_range_2_93V - range_1_46V = _mscl.WirelessTypes_range_1_46V - range_731_3mV = _mscl.WirelessTypes_range_731_3mV - range_365_6mV = _mscl.WirelessTypes_range_365_6mV - range_182_8mV = _mscl.WirelessTypes_range_182_8mV - range_91_4mV = _mscl.WirelessTypes_range_91_4mV - range_45_7mV = _mscl.WirelessTypes_range_45_7mV - range_62_5mV = _mscl.WirelessTypes_range_62_5mV - range_31_25mV = _mscl.WirelessTypes_range_31_25mV - range_15_63mV = _mscl.WirelessTypes_range_15_63mV - range_7_81mV = _mscl.WirelessTypes_range_7_81mV - range_3_91mV = _mscl.WirelessTypes_range_3_91mV - range_1_95mV = _mscl.WirelessTypes_range_1_95mV - range_0_976mV = _mscl.WirelessTypes_range_0_976mV - range_0_488mV = _mscl.WirelessTypes_range_0_488mV - range_2G = _mscl.WirelessTypes_range_2G - range_4G = _mscl.WirelessTypes_range_4G - range_8G = _mscl.WirelessTypes_range_8G - range_10G = _mscl.WirelessTypes_range_10G - range_20G = _mscl.WirelessTypes_range_20G - range_40G = _mscl.WirelessTypes_range_40G - range_2_5V = _mscl.WirelessTypes_range_2_5V - range_1_25V = _mscl.WirelessTypes_range_1_25V - range_625mV = _mscl.WirelessTypes_range_625mV - range_312_5mV = _mscl.WirelessTypes_range_312_5mV - range_156_25mV = _mscl.WirelessTypes_range_156_25mV - range_78_125mV = _mscl.WirelessTypes_range_78_125mV - range_39_063mV = _mscl.WirelessTypes_range_39_063mV - range_19_532mV = _mscl.WirelessTypes_range_19_532mV - range_0to2_5V = _mscl.WirelessTypes_range_0to2_5V - range_0to1_25V = _mscl.WirelessTypes_range_0to1_25V - range_0to625mV = _mscl.WirelessTypes_range_0to625mV - range_0to312_5mV = _mscl.WirelessTypes_range_0to312_5mV - range_0to156_25mV = _mscl.WirelessTypes_range_0to156_25mV - range_0to78_125mV = _mscl.WirelessTypes_range_0to78_125mV - range_0to39_063mV = _mscl.WirelessTypes_range_0to39_063mV - range_0to19_532mV = _mscl.WirelessTypes_range_0to19_532mV - range_9_766mV = _mscl.WirelessTypes_range_9_766mV - range_1_35V_or_0to1000000ohm = _mscl.WirelessTypes_range_1_35V_or_0to1000000ohm - range_1_25V_or_0to10000ohm = _mscl.WirelessTypes_range_1_25V_or_0to10000ohm - range_625mV_or_0to3333_3ohm = _mscl.WirelessTypes_range_625mV_or_0to3333_3ohm - range_312_5mV_or_0to1428_6ohm = _mscl.WirelessTypes_range_312_5mV_or_0to1428_6ohm - range_156_25mV_or_0to666_67ohm = _mscl.WirelessTypes_range_156_25mV_or_0to666_67ohm - range_78_125mV_or_0to322_58ohm = _mscl.WirelessTypes_range_78_125mV_or_0to322_58ohm - range_39_0625mV_or_0to158_73ohm = _mscl.WirelessTypes_range_39_0625mV_or_0to158_73ohm - range_19_5313mV_or_0to78_74ohm = _mscl.WirelessTypes_range_19_5313mV_or_0to78_74ohm - range_750mV = _mscl.WirelessTypes_range_750mV - range_375mV = _mscl.WirelessTypes_range_375mV - range_187_5mV = _mscl.WirelessTypes_range_187_5mV - range_93_75mV = _mscl.WirelessTypes_range_93_75mV - range_46_875mV = _mscl.WirelessTypes_range_46_875mV - range_23_438mV = _mscl.WirelessTypes_range_23_438mV - range_11_719mV = _mscl.WirelessTypes_range_11_719mV - range_5_859mV = _mscl.WirelessTypes_range_5_859mV - range_0to1_5V = _mscl.WirelessTypes_range_0to1_5V - range_0to750mV = _mscl.WirelessTypes_range_0to750mV - range_0to375mV = _mscl.WirelessTypes_range_0to375mV - range_0to187_5mV = _mscl.WirelessTypes_range_0to187_5mV - range_0to93_75mV = _mscl.WirelessTypes_range_0to93_75mV - range_0to46_875mV = _mscl.WirelessTypes_range_0to46_875mV - range_0to23_438mV = _mscl.WirelessTypes_range_0to23_438mV - range_0to11_719mV = _mscl.WirelessTypes_range_0to11_719mV - range_1_5V = _mscl.WirelessTypes_range_1_5V - range_1_35V = _mscl.WirelessTypes_range_1_35V - range_0to1000000ohm = _mscl.WirelessTypes_range_0to1000000ohm - range_0to10000ohm = _mscl.WirelessTypes_range_0to10000ohm - range_0to3333_3ohm = _mscl.WirelessTypes_range_0to3333_3ohm - range_0to1428_6ohm = _mscl.WirelessTypes_range_0to1428_6ohm - range_0to666_67ohm = _mscl.WirelessTypes_range_0to666_67ohm - range_0to322_58ohm = _mscl.WirelessTypes_range_0to322_58ohm - range_0to158_73ohm = _mscl.WirelessTypes_range_0to158_73ohm - range_0to78_74ohm = _mscl.WirelessTypes_range_0to78_74ohm - range_39_0625mV = _mscl.WirelessTypes_range_39_0625mV - range_19_5313mV = _mscl.WirelessTypes_range_19_5313mV - range_125mV = _mscl.WirelessTypes_range_125mV - range_invalid = _mscl.WirelessTypes_range_invalid - dataMode_none = _mscl.WirelessTypes_dataMode_none - dataMode_raw = _mscl.WirelessTypes_dataMode_raw - dataMode_derived = _mscl.WirelessTypes_dataMode_derived - dataMode_raw_derived = _mscl.WirelessTypes_dataMode_raw_derived - derivedCategory_rms = _mscl.WirelessTypes_derivedCategory_rms - derivedCategory_peakToPeak = _mscl.WirelessTypes_derivedCategory_peakToPeak - derivedCategory_velocity = _mscl.WirelessTypes_derivedCategory_velocity - derivedCategory_crestFactor = _mscl.WirelessTypes_derivedCategory_crestFactor - derivedCategory_mean = _mscl.WirelessTypes_derivedCategory_mean - derivedAlgId_rms = _mscl.WirelessTypes_derivedAlgId_rms - derivedAlgId_peakToPeak = _mscl.WirelessTypes_derivedAlgId_peakToPeak - derivedAlgId_ips = _mscl.WirelessTypes_derivedAlgId_ips - derivedAlgId_crestFactor = _mscl.WirelessTypes_derivedAlgId_crestFactor - derivedAlgId_mean = _mscl.WirelessTypes_derivedAlgId_mean - derivedAlgId_mmps = _mscl.WirelessTypes_derivedAlgId_mmps - derivedVelocity_ips = _mscl.WirelessTypes_derivedVelocity_ips - derivedVelocity_mmps = _mscl.WirelessTypes_derivedVelocity_mmps - commProtocol_lxrs = _mscl.WirelessTypes_commProtocol_lxrs - commProtocol_lxrsPlus = _mscl.WirelessTypes_commProtocol_lxrsPlus - voltage_5120mV = _mscl.WirelessTypes_voltage_5120mV - voltage_5000mV = _mscl.WirelessTypes_voltage_5000mV - voltage_4096mV = _mscl.WirelessTypes_voltage_4096mV - voltage_3000mV = _mscl.WirelessTypes_voltage_3000mV - voltage_2800mV = _mscl.WirelessTypes_voltage_2800mV - voltage_2750mV = _mscl.WirelessTypes_voltage_2750mV - voltage_2700mV = _mscl.WirelessTypes_voltage_2700mV - voltage_2500mV = _mscl.WirelessTypes_voltage_2500mV - voltage_1500mV = _mscl.WirelessTypes_voltage_1500mV - sensorOutputMode_accel = _mscl.WirelessTypes_sensorOutputMode_accel - sensorOutputMode_tilt = _mscl.WirelessTypes_sensorOutputMode_tilt - batteryStatus_good = _mscl.WirelessTypes_batteryStatus_good - batteryStatus_low = _mscl.WirelessTypes_batteryStatus_low - batteryStatus_critical = _mscl.WirelessTypes_batteryStatus_critical - externalPower_notConnected = _mscl.WirelessTypes_externalPower_notConnected - externalPower_connected = _mscl.WirelessTypes_externalPower_connected - delayVersion_v1 = _mscl.WirelessTypes_delayVersion_v1 - delayVersion_v2 = _mscl.WirelessTypes_delayVersion_v2 - delayVersion_v3 = _mscl.WirelessTypes_delayVersion_v3 - delayVersion_v4 = _mscl.WirelessTypes_delayVersion_v4 - UNKNOWN_RSSI = _mscl.WirelessTypes_UNKNOWN_RSSI - - def __init__(self): - _mscl.WirelessTypes_swiginit(self, _mscl.new_WirelessTypes()) - __swig_destroy__ = _mscl.delete_WirelessTypes - -# Register WirelessTypes in _mscl: -_mscl.WirelessTypes_swigregister(WirelessTypes) - -class SampleRate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - rateType_seconds = _mscl.SampleRate_rateType_seconds - rateType_hertz = _mscl.SampleRate_rateType_hertz - rateType_event = _mscl.SampleRate_rateType_event - rateType_decimation = _mscl.SampleRate_rateType_decimation - - def __init__(self, *args): - _mscl.SampleRate_swiginit(self, _mscl.new_SampleRate(*args)) - - def __str__(self): - return _mscl.SampleRate___str__(self) - - def prettyStr(self): - return _mscl.SampleRate_prettyStr(self) - - def samplePeriod(self): - return _mscl.SampleRate_samplePeriod(self) - - def samplesPerSecond(self): - return _mscl.SampleRate_samplesPerSecond(self) - - def rateType(self): - return _mscl.SampleRate_rateType(self) - - def samples(self): - return _mscl.SampleRate_samples(self) - - def toWirelessSampleRate(self): - return _mscl.SampleRate_toWirelessSampleRate(self) - - def toDecimation(self, sampleRateBase): - return _mscl.SampleRate_toDecimation(self, sampleRateBase) - - @staticmethod - def Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - - @staticmethod - def KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - - @staticmethod - def Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - - @staticmethod - def Event(): - return _mscl.SampleRate_Event() - - @staticmethod - def Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - - @staticmethod - def FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - - @staticmethod - def FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - __swig_destroy__ = _mscl.delete_SampleRate - -# Register SampleRate in _mscl: -_mscl.SampleRate_swigregister(SampleRate) - -def SampleRate_Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - -def SampleRate_KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - -def SampleRate_Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - -def SampleRate_Event(): - return _mscl.SampleRate_Event() - -def SampleRate_Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - -def SampleRate_FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - -def SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - -class Matrix(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Matrix_swiginit(self, _mscl.new_Matrix()) - - def valuesType(self): - return _mscl.Matrix_valuesType(self) - - def rows(self): - return _mscl.Matrix_rows(self) - - def columns(self): - return _mscl.Matrix_columns(self) - - def as_doubleAt(self, row, column): - return _mscl.Matrix_as_doubleAt(self, row, column) - - def as_floatAt(self, row, column): - return _mscl.Matrix_as_floatAt(self, row, column) - - def as_uint16At(self, row, column): - return _mscl.Matrix_as_uint16At(self, row, column) - - def as_uint8At(self, row, column): - return _mscl.Matrix_as_uint8At(self, row, column) - - def __str__(self): - return _mscl.Matrix___str__(self) - __swig_destroy__ = _mscl.delete_Matrix - -# Register Matrix in _mscl: -_mscl.Matrix_swigregister(Matrix) - -class Vector(Matrix): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Vector_swiginit(self, _mscl.new_Vector()) - - def size(self): - return _mscl.Vector_size(self) - - def as_doubleAt(self, index): - return _mscl.Vector_as_doubleAt(self, index) - - def as_floatAt(self, index): - return _mscl.Vector_as_floatAt(self, index) - - def as_uint16At(self, index): - return _mscl.Vector_as_uint16At(self, index) - - def as_uint8At(self, index): - return _mscl.Vector_as_uint8At(self, index) - __swig_destroy__ = _mscl.delete_Vector - -# Register Vector in _mscl: -_mscl.Vector_swigregister(Vector) - -class Bitfield(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Bitfield_swiginit(self, _mscl.new_Bitfield(*args)) - __swig_destroy__ = _mscl.delete_Bitfield - - def value(self, *args): - return _mscl.Bitfield_value(self, *args) - - def get(self, mask, shiftToLsb=True): - return _mscl.Bitfield_get(self, mask, shiftToLsb) - - def set(self, mask, value, shiftRequired=True): - return _mscl.Bitfield_set(self, mask, value, shiftRequired) - - def checkBit(self, bitIndex, indexBase=0): - return _mscl.Bitfield_checkBit(self, bitIndex, indexBase) - - def setBit(self, bitIndex, value, indexBase=0): - return _mscl.Bitfield_setBit(self, bitIndex, value, indexBase) - -# Register Bitfield in _mscl: -_mscl.Bitfield_swigregister(Bitfield) - -class StructuralHealth(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, angle, uptime, damage, processingRate, histogram): - _mscl.StructuralHealth_swiginit(self, _mscl.new_StructuralHealth(angle, uptime, damage, processingRate, histogram)) - - def angle(self): - return _mscl.StructuralHealth_angle(self) - - def uptime(self): - return _mscl.StructuralHealth_uptime(self) - - def damage(self): - return _mscl.StructuralHealth_damage(self) - - def processingRate(self): - return _mscl.StructuralHealth_processingRate(self) - - def histogram(self): - return _mscl.StructuralHealth_histogram(self) - __swig_destroy__ = _mscl.delete_StructuralHealth - -# Register StructuralHealth in _mscl: -_mscl.StructuralHealth_swigregister(StructuralHealth) - -class DataPoint(Value): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - channelPropertyId_angle = _mscl.DataPoint_channelPropertyId_angle - channelPropertyId_derivedFrom = _mscl.DataPoint_channelPropertyId_derivedFrom - channelPropertyId_derivedAlgorithmId = _mscl.DataPoint_channelPropertyId_derivedAlgorithmId - __swig_destroy__ = _mscl.delete_DataPoint - - def channelProperty(self, id): - return _mscl.DataPoint_channelProperty(self, id) - - def as_Vector(self): - return _mscl.DataPoint_as_Vector(self) - - def as_Matrix(self): - return _mscl.DataPoint_as_Matrix(self) - - def as_Timestamp(self): - return _mscl.DataPoint_as_Timestamp(self) - - def as_Bytes(self): - return _mscl.DataPoint_as_Bytes(self) - - def as_StructuralHealth(self): - return _mscl.DataPoint_as_StructuralHealth(self) - - def as_RfSweep(self): - return _mscl.DataPoint_as_RfSweep(self) - - def as_string(self): - return _mscl.DataPoint_as_string(self) - -# Register DataPoint in _mscl: -_mscl.DataPoint_swigregister(DataPoint) - -class ConfigIssue(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONFIG_SAMPLING_MODE = _mscl.ConfigIssue_CONFIG_SAMPLING_MODE - CONFIG_ACTIVE_CHANNELS = _mscl.ConfigIssue_CONFIG_ACTIVE_CHANNELS - CONFIG_SAMPLE_RATE = _mscl.ConfigIssue_CONFIG_SAMPLE_RATE - CONFIG_SWEEPS = _mscl.ConfigIssue_CONFIG_SWEEPS - CONFIG_UNLIMITED_DURATION = _mscl.ConfigIssue_CONFIG_UNLIMITED_DURATION - CONFIG_DATA_FORMAT = _mscl.ConfigIssue_CONFIG_DATA_FORMAT - CONFIG_DATA_COLLECTION_METHOD = _mscl.ConfigIssue_CONFIG_DATA_COLLECTION_METHOD - CONFIG_TIME_BETWEEN_BURSTS = _mscl.ConfigIssue_CONFIG_TIME_BETWEEN_BURSTS - CONFIG_THERMOCOUPLE_TYPE = _mscl.ConfigIssue_CONFIG_THERMOCOUPLE_TYPE - CONFIG_FILTER_SETTLING_TIME = _mscl.ConfigIssue_CONFIG_FILTER_SETTLING_TIME - CONFIG_BUTTON = _mscl.ConfigIssue_CONFIG_BUTTON - CONFIG_ANALOG_PAIR = _mscl.ConfigIssue_CONFIG_ANALOG_PAIR - CONFIG_INPUT_RANGE = _mscl.ConfigIssue_CONFIG_INPUT_RANGE - CONFIG_INACTIVITY_TIMEOUT = _mscl.ConfigIssue_CONFIG_INACTIVITY_TIMEOUT - CONFIG_CHECK_RADIO_INTERVAL = _mscl.ConfigIssue_CONFIG_CHECK_RADIO_INTERVAL - CONFIG_LOST_BEACON_TIMEOUT = _mscl.ConfigIssue_CONFIG_LOST_BEACON_TIMEOUT - CONFIG_DEFAULT_MODE = _mscl.ConfigIssue_CONFIG_DEFAULT_MODE - CONFIG_TRANSMIT_POWER = _mscl.ConfigIssue_CONFIG_TRANSMIT_POWER - CONFIG_LINEAR_EQUATION = _mscl.ConfigIssue_CONFIG_LINEAR_EQUATION - CONFIG_FATIGUE = _mscl.ConfigIssue_CONFIG_FATIGUE - CONFIG_FATIGUE_MODE = _mscl.ConfigIssue_CONFIG_FATIGUE_MODE - CONFIG_FATIGUE_ANGLE_ID = _mscl.ConfigIssue_CONFIG_FATIGUE_ANGLE_ID - CONFIG_FATIGUE_SN_CURVE = _mscl.ConfigIssue_CONFIG_FATIGUE_SN_CURVE - CONFIG_FATIGUE_DIST_NUM_ANGLES = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_NUM_ANGLES - CONFIG_FATIGUE_DIST_ANGLE = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_ANGLE - CONFIG_HISTOGRAM = _mscl.ConfigIssue_CONFIG_HISTOGRAM - CONFIG_HISTOGRAM_TX_RATE = _mscl.ConfigIssue_CONFIG_HISTOGRAM_TX_RATE - CONFIG_HARDWARE_OFFSET = _mscl.ConfigIssue_CONFIG_HARDWARE_OFFSET - CONFIG_ACTIVITY_SENSE = _mscl.ConfigIssue_CONFIG_ACTIVITY_SENSE - CONFIG_GAUGE_FACTOR = _mscl.ConfigIssue_CONFIG_GAUGE_FACTOR - CONFIG_EVENT_TRIGGER = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER - CONFIG_EVENT_TRIGGER_DURATION = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_DURATION - CONFIG_EVENT_TRIGGER_MASK = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_MASK - CONFIG_DIAGNOSTIC_INTERVAL = _mscl.ConfigIssue_CONFIG_DIAGNOSTIC_INTERVAL - CONFIG_ANTI_ALIASING_FILTER = _mscl.ConfigIssue_CONFIG_ANTI_ALIASING_FILTER - CONFIG_STORAGE_LIMIT_MODE = _mscl.ConfigIssue_CONFIG_STORAGE_LIMIT_MODE - CONFIG_SENSOR_DELAY = _mscl.ConfigIssue_CONFIG_SENSOR_DELAY - CONFIG_LOW_PASS_FILTER = _mscl.ConfigIssue_CONFIG_LOW_PASS_FILTER - CONFIG_DATA_MODE = _mscl.ConfigIssue_CONFIG_DATA_MODE - CONFIG_DERIVED_DATA_RATE = _mscl.ConfigIssue_CONFIG_DERIVED_DATA_RATE - CONFIG_DERIVED_MASK_RMS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_RMS - CONFIG_DERIVED_MASK_P2P = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_P2P - CONFIG_DERIVED_MASK_IPS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_IPS - CONFIG_DERIVED_MASK_CREST_FACTOR = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_CREST_FACTOR - CONFIG_HIGH_PASS_FILTER = _mscl.ConfigIssue_CONFIG_HIGH_PASS_FILTER - CONFIG_DERIVED_MASK = _mscl.ConfigIssue_CONFIG_DERIVED_MASK - CONFIG_COMM_PROTOCOL = _mscl.ConfigIssue_CONFIG_COMM_PROTOCOL - CONFIG_DERIVED_MASK_MEAN = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_MEAN - CONFIG_GAUGE_RESISTANCE = _mscl.ConfigIssue_CONFIG_GAUGE_RESISTANCE - CONFIG_NUM_ACTIVE_GAUGES = _mscl.ConfigIssue_CONFIG_NUM_ACTIVE_GAUGES - CONFIG_TEMP_SENSOR_OPTS = _mscl.ConfigIssue_CONFIG_TEMP_SENSOR_OPTS - CONFIG_DEBOUNCE_FILTER = _mscl.ConfigIssue_CONFIG_DEBOUNCE_FILTER - CONFIG_PULLUP_RESISTOR = _mscl.ConfigIssue_CONFIG_PULLUP_RESISTOR - CONFIG_EXCITATION_VOLTAGE = _mscl.ConfigIssue_CONFIG_EXCITATION_VOLTAGE - CONFIG_DERIVED_UNIT = _mscl.ConfigIssue_CONFIG_DERIVED_UNIT - CONFIG_SENSOR_OUTPUT_MODE = _mscl.ConfigIssue_CONFIG_SENSOR_OUTPUT_MODE - CONFIG_LOW_BATTERY_THRESHOLD = _mscl.ConfigIssue_CONFIG_LOW_BATTERY_THRESHOLD - CONFIG_CFC_FILTER = _mscl.ConfigIssue_CONFIG_CFC_FILTER - - def __init__(self, *args): - _mscl.ConfigIssue_swiginit(self, _mscl.new_ConfigIssue(*args)) - - def id(self): - return _mscl.ConfigIssue_id(self) - - def description(self): - return _mscl.ConfigIssue_description(self) - - def isChannelGroupIssue(self): - return _mscl.ConfigIssue_isChannelGroupIssue(self) - - def channelMask(self): - return _mscl.ConfigIssue_channelMask(self) - __swig_destroy__ = _mscl.delete_ConfigIssue - -# Register ConfigIssue in _mscl: -_mscl.ConfigIssue_swigregister(ConfigIssue) - -class ActivitySense(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ActivitySense_swiginit(self, _mscl.new_ActivitySense()) - - def enabled(self, *args): - return _mscl.ActivitySense_enabled(self, *args) - - def activityThreshold(self, *args): - return _mscl.ActivitySense_activityThreshold(self, *args) - - def inactivityThreshold(self, *args): - return _mscl.ActivitySense_inactivityThreshold(self, *args) - - def activityTime(self, *args): - return _mscl.ActivitySense_activityTime(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.ActivitySense_inactivityTimeout(self, *args) - __swig_destroy__ = _mscl.delete_ActivitySense - -# Register ActivitySense in _mscl: -_mscl.ActivitySense_swigregister(ActivitySense) - -class Trigger(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Trigger_swiginit(self, _mscl.new_Trigger(*args)) - - def channelNumber(self, *args): - return _mscl.Trigger_channelNumber(self, *args) - - def triggerType(self, *args): - return _mscl.Trigger_triggerType(self, *args) - - def triggerValue(self, *args): - return _mscl.Trigger_triggerValue(self, *args) - __swig_destroy__ = _mscl.delete_Trigger - -# Register Trigger in _mscl: -_mscl.Trigger_swigregister(Trigger) - -class EventTriggerOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerOptions_swiginit(self, _mscl.new_EventTriggerOptions()) - - def triggerMask(self, *args): - return _mscl.EventTriggerOptions_triggerMask(self, *args) - - def anyTriggersEnabled(self): - return _mscl.EventTriggerOptions_anyTriggersEnabled(self) - - def triggerEnabled(self, triggerIndex): - return _mscl.EventTriggerOptions_triggerEnabled(self, triggerIndex) - - def enableTrigger(self, triggerIndex, enable=True): - return _mscl.EventTriggerOptions_enableTrigger(self, triggerIndex, enable) - - def preDuration(self, *args): - return _mscl.EventTriggerOptions_preDuration(self, *args) - - def postDuration(self, *args): - return _mscl.EventTriggerOptions_postDuration(self, *args) - - def trigger(self, *args): - return _mscl.EventTriggerOptions_trigger(self, *args) - - def triggers(self): - return _mscl.EventTriggerOptions_triggers(self) - __swig_destroy__ = _mscl.delete_EventTriggerOptions - -# Register EventTriggerOptions in _mscl: -_mscl.EventTriggerOptions_swigregister(EventTriggerOptions) - -class SnCurveSegment(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.SnCurveSegment_swiginit(self, _mscl.new_SnCurveSegment(*args)) - - def m(self, *args): - return _mscl.SnCurveSegment_m(self, *args) - - def logA(self, *args): - return _mscl.SnCurveSegment_logA(self, *args) - __swig_destroy__ = _mscl.delete_SnCurveSegment - -# Register SnCurveSegment in _mscl: -_mscl.SnCurveSegment_swigregister(SnCurveSegment) - -class FatigueOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FatigueOptions_swiginit(self, _mscl.new_FatigueOptions()) - - def youngsModulus(self, *args): - return _mscl.FatigueOptions_youngsModulus(self, *args) - - def poissonsRatio(self, *args): - return _mscl.FatigueOptions_poissonsRatio(self, *args) - - def peakValleyThreshold(self, *args): - return _mscl.FatigueOptions_peakValleyThreshold(self, *args) - - def debugMode(self, *args): - return _mscl.FatigueOptions_debugMode(self, *args) - - def damageAngles(self): - return _mscl.FatigueOptions_damageAngles(self) - - def damageAngle(self, *args): - return _mscl.FatigueOptions_damageAngle(self, *args) - - def snCurveSegments(self): - return _mscl.FatigueOptions_snCurveSegments(self) - - def snCurveSegment(self, *args): - return _mscl.FatigueOptions_snCurveSegment(self, *args) - - def fatigueMode(self, *args): - return _mscl.FatigueOptions_fatigueMode(self, *args) - - def distributedAngleMode_numAngles(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_numAngles(self, *args) - - def distributedAngleMode_lowerBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_lowerBound(self, *args) - - def distributedAngleMode_upperBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_upperBound(self, *args) - - def histogramEnable(self, *args): - return _mscl.FatigueOptions_histogramEnable(self, *args) - __swig_destroy__ = _mscl.delete_FatigueOptions - -# Register FatigueOptions in _mscl: -_mscl.FatigueOptions_swigregister(FatigueOptions) - -class HistogramOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HistogramOptions_swiginit(self, _mscl.new_HistogramOptions()) - - def transmitRate(self, *args): - return _mscl.HistogramOptions_transmitRate(self, *args) - - def binsStart(self, *args): - return _mscl.HistogramOptions_binsStart(self, *args) - - def binsSize(self, *args): - return _mscl.HistogramOptions_binsSize(self, *args) - __swig_destroy__ = _mscl.delete_HistogramOptions - -# Register HistogramOptions in _mscl: -_mscl.HistogramOptions_swigregister(HistogramOptions) - -class InputRangeEntry(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - inputRange = property(_mscl.InputRangeEntry_inputRange_get, _mscl.InputRangeEntry_inputRange_set) - hasGain = property(_mscl.InputRangeEntry_hasGain_get, _mscl.InputRangeEntry_hasGain_set) - gain = property(_mscl.InputRangeEntry_gain_get, _mscl.InputRangeEntry_gain_set) - - def __init__(self, *args): - _mscl.InputRangeEntry_swiginit(self, _mscl.new_InputRangeEntry(*args)) - __swig_destroy__ = _mscl.delete_InputRangeEntry - -# Register InputRangeEntry in _mscl: -_mscl.InputRangeEntry_swigregister(InputRangeEntry) - -class TempSensorOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - - @staticmethod - def RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - - @staticmethod - def Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - - def transducerType(self): - return _mscl.TempSensorOptions_transducerType(self) - - def thermocoupleType(self): - return _mscl.TempSensorOptions_thermocoupleType(self) - - def rtdType(self): - return _mscl.TempSensorOptions_rtdType(self) - - def rtdWireType(self): - return _mscl.TempSensorOptions_rtdWireType(self) - - def thermistorType(self): - return _mscl.TempSensorOptions_thermistorType(self) - __swig_destroy__ = _mscl.delete_TempSensorOptions - -# Register TempSensorOptions in _mscl: -_mscl.TempSensorOptions_swigregister(TempSensorOptions) - -def TempSensorOptions_Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - -def TempSensorOptions_RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - -def TempSensorOptions_Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - -class WirelessModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_vLink_legacy = _mscl.WirelessModels_node_vLink_legacy - node_cfBearingTempLink = _mscl.WirelessModels_node_cfBearingTempLink - node_envLink_pro = _mscl.WirelessModels_node_envLink_pro - node_gLink_2g = _mscl.WirelessModels_node_gLink_2g - node_gLink_10g = _mscl.WirelessModels_node_gLink_10g - node_gLinkII_cust_in = _mscl.WirelessModels_node_gLinkII_cust_in - node_gLinkII_2g_in = _mscl.WirelessModels_node_gLinkII_2g_in - node_gLinkII_10g_in = _mscl.WirelessModels_node_gLinkII_10g_in - node_gLinkII_cust_ex = _mscl.WirelessModels_node_gLinkII_cust_ex - node_gLinkII_2g_ex = _mscl.WirelessModels_node_gLinkII_2g_ex - node_gLinkII_10g_ex = _mscl.WirelessModels_node_gLinkII_10g_ex - node_gLink_rgd_10g = _mscl.WirelessModels_node_gLink_rgd_10g - node_gLink_200_8g = _mscl.WirelessModels_node_gLink_200_8g - node_gLink_200_40g = _mscl.WirelessModels_node_gLink_200_40g - node_gLink_200_8g_oem = _mscl.WirelessModels_node_gLink_200_8g_oem - node_gLink_200_40g_oem = _mscl.WirelessModels_node_gLink_200_40g_oem - node_gLink_200_8g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_8g_oem_mmcx - node_gLink_200_40g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_40g_oem_mmcx - node_gLink_200_8g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_8g_oem_u_fl - node_gLink_200_40g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_40g_oem_u_fl - node_gLink_200_r = _mscl.WirelessModels_node_gLink_200_r - node_sgLink_oem_S = _mscl.WirelessModels_node_sgLink_oem_S - node_sgLink = _mscl.WirelessModels_node_sgLink - node_sgLink200 = _mscl.WirelessModels_node_sgLink200 - node_sgLink200_hbridge_1K = _mscl.WirelessModels_node_sgLink200_hbridge_1K - node_sgLink200_hbridge_350 = _mscl.WirelessModels_node_sgLink200_hbridge_350 - node_sgLink200_hbridge_120 = _mscl.WirelessModels_node_sgLink200_hbridge_120 - node_sgLink200_qbridge_1K = _mscl.WirelessModels_node_sgLink200_qbridge_1K - node_sgLink200_qbridge_350 = _mscl.WirelessModels_node_sgLink200_qbridge_350 - node_sgLink200_qbridge_120 = _mscl.WirelessModels_node_sgLink200_qbridge_120 - node_sgLink_oem = _mscl.WirelessModels_node_sgLink_oem - node_sgLink_micro = _mscl.WirelessModels_node_sgLink_micro - node_sgLink200_oem = _mscl.WirelessModels_node_sgLink200_oem - node_sgLink200_oem_ufl = _mscl.WirelessModels_node_sgLink200_oem_ufl - node_sgLink200_oem_hbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K - node_sgLink200_oem_hbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K_ufl - node_sgLink200_oem_hbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120 - node_sgLink200_oem_hbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120_ufl - node_sgLink200_oem_hbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350 - node_sgLink200_oem_hbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350_ufl - node_sgLink200_oem_qbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K - node_sgLink200_oem_qbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K_ufl - node_sgLink200_oem_qbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120 - node_sgLink200_oem_qbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120_ufl - node_sgLink200_oem_qbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350 - node_sgLink200_oem_qbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350_ufl - node_sgLink_rgd = _mscl.WirelessModels_node_sgLink_rgd - node_shmLink = _mscl.WirelessModels_node_shmLink - node_tcLink_1ch = _mscl.WirelessModels_node_tcLink_1ch - node_tcLink_6ch = _mscl.WirelessModels_node_tcLink_6ch - node_tcLink_3ch = _mscl.WirelessModels_node_tcLink_3ch - node_tcLink_6ch_ip67 = _mscl.WirelessModels_node_tcLink_6ch_ip67 - node_tcLink200_oem = _mscl.WirelessModels_node_tcLink200_oem - node_tcLink200_oem_ufl = _mscl.WirelessModels_node_tcLink200_oem_ufl - node_tcLink200 = _mscl.WirelessModels_node_tcLink200 - node_rtdLink200 = _mscl.WirelessModels_node_rtdLink200 - node_tcLink_6ch_ip67_rht = _mscl.WirelessModels_node_tcLink_6ch_ip67_rht - node_vLink = _mscl.WirelessModels_node_vLink - node_vLink200 = _mscl.WirelessModels_node_vLink200 - node_vLink200_qbridge_1K = _mscl.WirelessModels_node_vLink200_qbridge_1K - node_vLink200_qbridge_120 = _mscl.WirelessModels_node_vLink200_qbridge_120 - node_vLink200_qbridge_350 = _mscl.WirelessModels_node_vLink200_qbridge_350 - node_vLink200_hbridge_1K = _mscl.WirelessModels_node_vLink200_hbridge_1K - node_vLink200_hbridge_120 = _mscl.WirelessModels_node_vLink200_hbridge_120 - node_vLink200_hbridge_350 = _mscl.WirelessModels_node_vLink200_hbridge_350 - node_iepeLink = _mscl.WirelessModels_node_iepeLink - node_dvrtLink = _mscl.WirelessModels_node_dvrtLink - node_envLink_mini = _mscl.WirelessModels_node_envLink_mini - node_wattLink = _mscl.WirelessModels_node_wattLink - node_wattLink_3Y208 = _mscl.WirelessModels_node_wattLink_3Y208 - node_wattLink_3D240 = _mscl.WirelessModels_node_wattLink_3D240 - node_wattLink_3Y400 = _mscl.WirelessModels_node_wattLink_3Y400 - node_wattLink_3D400 = _mscl.WirelessModels_node_wattLink_3D400 - node_wattLink_3Y480 = _mscl.WirelessModels_node_wattLink_3Y480 - node_wattLink_3D480 = _mscl.WirelessModels_node_wattLink_3D480 - node_wattLink_3Y600 = _mscl.WirelessModels_node_wattLink_3Y600 - node_ptLink200 = _mscl.WirelessModels_node_ptLink200 - node_rtdLink = _mscl.WirelessModels_node_rtdLink - node_shmLink2_cust1_oldNumber = _mscl.WirelessModels_node_shmLink2_cust1_oldNumber - node_shmLink2_cust1 = _mscl.WirelessModels_node_shmLink2_cust1 - node_shmLink200 = _mscl.WirelessModels_node_shmLink200 - node_shmLink201 = _mscl.WirelessModels_node_shmLink201 - node_shmLink201_qbridge_1K = _mscl.WirelessModels_node_shmLink201_qbridge_1K - node_shmLink201_qbridge_348 = _mscl.WirelessModels_node_shmLink201_qbridge_348 - node_shmLink201_hbridge_1K = _mscl.WirelessModels_node_shmLink201_hbridge_1K - node_shmLink201_hbridge_348 = _mscl.WirelessModels_node_shmLink201_hbridge_348 - node_shmLink201_fullbridge = _mscl.WirelessModels_node_shmLink201_fullbridge - node_shmLink210_fullbridge = _mscl.WirelessModels_node_shmLink210_fullbridge - node_shmLink210_qbridge_3K = _mscl.WirelessModels_node_shmLink210_qbridge_3K - node_torqueLink = _mscl.WirelessModels_node_torqueLink - node_torqueLink200_3ch = _mscl.WirelessModels_node_torqueLink200_3ch - node_torqueLink200 = _mscl.WirelessModels_node_torqueLink200 - node_torqueLink200_3ch_s = _mscl.WirelessModels_node_torqueLink200_3ch_s - node_sgLink_herm = _mscl.WirelessModels_node_sgLink_herm - node_sgLink_herm_2600 = _mscl.WirelessModels_node_sgLink_herm_2600 - node_sgLink_herm_2700 = _mscl.WirelessModels_node_sgLink_herm_2700 - node_sgLink_herm_2800 = _mscl.WirelessModels_node_sgLink_herm_2800 - node_sgLink_herm_2900 = _mscl.WirelessModels_node_sgLink_herm_2900 - node_wirelessImpactSensor = _mscl.WirelessModels_node_wirelessImpactSensor - node_gLink_200_40g_s = _mscl.WirelessModels_node_gLink_200_40g_s - base_wsda_1000 = _mscl.WirelessModels_base_wsda_1000 - base_wsda_1500 = _mscl.WirelessModels_base_wsda_1500 - base_wsda_2000 = _mscl.WirelessModels_base_wsda_2000 - base_wsdaBase_200_legacy = _mscl.WirelessModels_base_wsdaBase_200_legacy - base_wsdaBase_200 = _mscl.WirelessModels_base_wsdaBase_200 - base_wsdaBase_200_extAntenna = _mscl.WirelessModels_base_wsdaBase_200_extAntenna - base_wsdaBase_101_analog = _mscl.WirelessModels_base_wsdaBase_101_analog - base_wsdaBase_102_rs232 = _mscl.WirelessModels_base_wsdaBase_102_rs232 - base_wsdaBase_104_usb = _mscl.WirelessModels_base_wsdaBase_104_usb - base_wsi_104 = _mscl.WirelessModels_base_wsi_104 - base_wsdaBase_mini = _mscl.WirelessModels_base_wsdaBase_mini - - def __init__(self): - _mscl.WirelessModels_swiginit(self, _mscl.new_WirelessModels()) - __swig_destroy__ = _mscl.delete_WirelessModels - -# Register WirelessModels in _mscl: -_mscl.WirelessModels_swigregister(WirelessModels) - -class NodeDiscovery(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def nodeAddress(self): - return _mscl.NodeDiscovery_nodeAddress(self) - - def frequency(self): - return _mscl.NodeDiscovery_frequency(self) - - def panId(self): - return _mscl.NodeDiscovery_panId(self) - - def model(self): - return _mscl.NodeDiscovery_model(self) - - def serialNumber(self): - return _mscl.NodeDiscovery_serialNumber(self) - - def firmwareVersion(self): - return _mscl.NodeDiscovery_firmwareVersion(self) - - def defaultMode(self): - return _mscl.NodeDiscovery_defaultMode(self) - - def builtInTestResult(self): - return _mscl.NodeDiscovery_builtInTestResult(self) - - def communicationProtocol(self): - return _mscl.NodeDiscovery_communicationProtocol(self) - - def asppVersion_lxrs(self): - return _mscl.NodeDiscovery_asppVersion_lxrs(self) - - def asppVersion_lxrsPlus(self): - return _mscl.NodeDiscovery_asppVersion_lxrsPlus(self) - - def baseRssi(self): - return _mscl.NodeDiscovery_baseRssi(self) - - def timestamp(self): - return _mscl.NodeDiscovery_timestamp(self) - - def __init__(self): - _mscl.NodeDiscovery_swiginit(self, _mscl.new_NodeDiscovery()) - __swig_destroy__ = _mscl.delete_NodeDiscovery - -# Register NodeDiscovery in _mscl: -_mscl.NodeDiscovery_swigregister(NodeDiscovery) - -class LinearEquation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LinearEquation_swiginit(self, _mscl.new_LinearEquation(*args)) - - def slope(self, *args): - return _mscl.LinearEquation_slope(self, *args) - - def offset(self, *args): - return _mscl.LinearEquation_offset(self, *args) - __swig_destroy__ = _mscl.delete_LinearEquation - -# Register LinearEquation in _mscl: -_mscl.LinearEquation_swigregister(LinearEquation) - -class CalCoefficients(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CalCoefficients_swiginit(self, _mscl.new_CalCoefficients(*args)) - - def equationType(self): - return _mscl.CalCoefficients_equationType(self) - - def unit(self): - return _mscl.CalCoefficients_unit(self) - - def linearEquation(self): - return _mscl.CalCoefficients_linearEquation(self) - __swig_destroy__ = _mscl.delete_CalCoefficients - -# Register CalCoefficients in _mscl: -_mscl.CalCoefficients_swigregister(CalCoefficients) - -class ChannelGroup(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ChannelGroup_swiginit(self, _mscl.new_ChannelGroup()) - - def channels(self): - return _mscl.ChannelGroup_channels(self) - - def name(self): - return _mscl.ChannelGroup_name(self) - - def eepromLocation(self, setting): - return _mscl.ChannelGroup_eepromLocation(self, setting) - - def settings(self): - return _mscl.ChannelGroup_settings(self) - - def hasSetting(self, setting): - return _mscl.ChannelGroup_hasSetting(self, setting) - - def hasSettingAndChannel(self, setting, channelNumber): - return _mscl.ChannelGroup_hasSettingAndChannel(self, setting, channelNumber) - __swig_destroy__ = _mscl.delete_ChannelGroup - -# Register ChannelGroup in _mscl: -_mscl.ChannelGroup_swigregister(ChannelGroup) - -class WirelessChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - channel_unknown = _mscl.WirelessChannel_channel_unknown - channel_1 = _mscl.WirelessChannel_channel_1 - channel_2 = _mscl.WirelessChannel_channel_2 - channel_3 = _mscl.WirelessChannel_channel_3 - channel_4 = _mscl.WirelessChannel_channel_4 - channel_5 = _mscl.WirelessChannel_channel_5 - channel_6 = _mscl.WirelessChannel_channel_6 - channel_7 = _mscl.WirelessChannel_channel_7 - channel_8 = _mscl.WirelessChannel_channel_8 - channel_9 = _mscl.WirelessChannel_channel_9 - channel_10 = _mscl.WirelessChannel_channel_10 - channel_11 = _mscl.WirelessChannel_channel_11 - channel_12 = _mscl.WirelessChannel_channel_12 - channel_13 = _mscl.WirelessChannel_channel_13 - channel_14 = _mscl.WirelessChannel_channel_14 - channel_15 = _mscl.WirelessChannel_channel_15 - channel_16 = _mscl.WirelessChannel_channel_16 - channel_digital_1 = _mscl.WirelessChannel_channel_digital_1 - channel_digital_2 = _mscl.WirelessChannel_channel_digital_2 - channel_digital_3 = _mscl.WirelessChannel_channel_digital_3 - channel_digital_4 = _mscl.WirelessChannel_channel_digital_4 - channel_digital_5 = _mscl.WirelessChannel_channel_digital_5 - channel_digital_6 = _mscl.WirelessChannel_channel_digital_6 - channel_digital_7 = _mscl.WirelessChannel_channel_digital_7 - channel_digital_8 = _mscl.WirelessChannel_channel_digital_8 - channel_digital_9 = _mscl.WirelessChannel_channel_digital_9 - channel_digital_10 = _mscl.WirelessChannel_channel_digital_10 - channel_digital_11 = _mscl.WirelessChannel_channel_digital_11 - channel_digital_12 = _mscl.WirelessChannel_channel_digital_12 - channel_digital_13 = _mscl.WirelessChannel_channel_digital_13 - channel_digital_14 = _mscl.WirelessChannel_channel_digital_14 - channel_digital_15 = _mscl.WirelessChannel_channel_digital_15 - channel_digital_16 = _mscl.WirelessChannel_channel_digital_16 - channel_structuralHealth = _mscl.WirelessChannel_channel_structuralHealth - channel_hcl_rawBase_mag1_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_x - channel_hcl_rawBase_mag1_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_y - channel_hcl_rawBase_mag1_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_z - channel_hcl_rawBase_mag2_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_x - channel_hcl_rawBase_mag2_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_y - channel_hcl_rawBase_mag2_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_z - channel_hcl_rawBase_mag3_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_x - channel_hcl_rawBase_mag3_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_y - channel_hcl_rawBase_mag3_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_z - channel_hcl_rawBase_mag4_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_x - channel_hcl_rawBase_mag4_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_y - channel_hcl_rawBase_mag4_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_z - channel_hcl_rawBase_mag5_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_x - channel_hcl_rawBase_mag5_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_y - channel_hcl_rawBase_mag5_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_z - channel_hcl_rawBase_mag6_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_x - channel_hcl_rawBase_mag6_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_y - channel_hcl_rawBase_mag6_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_z - channel_hcl_rawBase_mag7_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_x - channel_hcl_rawBase_mag7_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_y - channel_hcl_rawBase_mag7_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_z - channel_hcl_rawBase_mag8_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_x - channel_hcl_rawBase_mag8_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_y - channel_hcl_rawBase_mag8_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_z - channel_hcl_rawBase_gyro_x = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_x - channel_hcl_rawBase_gyro_y = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_y - channel_hcl_rawBase_gyro_z = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_z - channel_error_code = _mscl.WirelessChannel_channel_error_code - channel_hcl_rawStrain_BL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL30 - channel_hcl_rawStrain_BL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL120 - channel_hcl_rawStrain_A60 = _mscl.WirelessChannel_channel_hcl_rawStrain_A60 - channel_hcl_rawStrain_A150 = _mscl.WirelessChannel_channel_hcl_rawStrain_A150 - channel_hcl_rawStrain_AL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL30 - channel_hcl_rawStrain_AL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL120 - channel_hcl_rawStrain_BR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR60 - channel_hcl_rawStrain_BR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR150 - channel_hcl_rawStrain_B30 = _mscl.WirelessChannel_channel_hcl_rawStrain_B30 - channel_hcl_rawStrain_T120 = _mscl.WirelessChannel_channel_hcl_rawStrain_T120 - channel_hcl_rawStrain_AR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR60 - channel_hcl_rawStrain_AR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR150 - channel_hcl_rawStrain_A30 = _mscl.WirelessChannel_channel_hcl_rawStrain_A30 - channel_hcl_rawStrain_A120 = _mscl.WirelessChannel_channel_hcl_rawStrain_A120 - channel_hcl_rawStrain_BL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL90 - channel_hcl_rawStrain_BL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL180 - channel_hcl_rawStrain_BR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR30 - channel_hcl_rawStrain_BR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR120 - channel_hcl_rawStrain_AL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL90 - channel_hcl_rawStrain_AL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL180 - channel_hcl_rawStrain_AR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR30 - channel_hcl_rawStrain_AR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR120 - channel_hcl_rawStrain_B90 = _mscl.WirelessChannel_channel_hcl_rawStrain_B90 - channel_hcl_rawStrain_T0 = _mscl.WirelessChannel_channel_hcl_rawStrain_T0 - channel_hcl_rawStrain_BL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL60 - channel_hcl_rawStrain_BL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL150 - channel_hcl_rawStrain_A90 = _mscl.WirelessChannel_channel_hcl_rawStrain_A90 - channel_hcl_rawStrain_A0 = _mscl.WirelessChannel_channel_hcl_rawStrain_A0 - channel_hcl_rawStrain_AL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL60 - channel_hcl_rawStrain_AL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL150 - channel_hcl_rawStrain_BR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR90 - channel_hcl_rawStrain_BR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR0 - channel_hcl_rawStrain_T60 = _mscl.WirelessChannel_channel_hcl_rawStrain_T60 - channel_hcl_rawStrain_B150 = _mscl.WirelessChannel_channel_hcl_rawStrain_B150 - channel_hcl_rawStrain_AR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR90 - channel_hcl_rawStrain_AR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR0 - channel_hcl_rawInertial_accel1 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel1 - channel_hcl_rawInertial_accel2 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel2 - channel_hcl_rawInertial_accel3 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel3 - channel_hcl_rawInertial_accel4 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel4 - channel_hcl_rawInertial_accel5 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel5 - channel_hcl_rawInertial_accel6 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel6 - channel_hcl_rawInertial_accel7 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel7 - channel_hcl_rawInertial_accel8 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel8 - channel_hcl_rawInertial_gyroX = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroX - channel_hcl_rawInertial_gyroY = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroY - channel_hcl_rawInertial_gyroZ = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroZ - channel_rawAngleStrain = _mscl.WirelessChannel_channel_rawAngleStrain - channel_beaconEcho = _mscl.WirelessChannel_channel_beaconEcho - channel_rfSweep = _mscl.WirelessChannel_channel_rfSweep - channel_diag_state = _mscl.WirelessChannel_channel_diag_state - channel_diag_runtime_idle = _mscl.WirelessChannel_channel_diag_runtime_idle - channel_diag_runtime_sleep = _mscl.WirelessChannel_channel_diag_runtime_sleep - channel_diag_runtime_activeRun = _mscl.WirelessChannel_channel_diag_runtime_activeRun - channel_diag_runtime_inactiveRun = _mscl.WirelessChannel_channel_diag_runtime_inactiveRun - channel_diag_resetCounter = _mscl.WirelessChannel_channel_diag_resetCounter - channel_diag_lowBatteryFlag = _mscl.WirelessChannel_channel_diag_lowBatteryFlag - channel_diag_sweepIndex = _mscl.WirelessChannel_channel_diag_sweepIndex - channel_diag_badSweepCount = _mscl.WirelessChannel_channel_diag_badSweepCount - channel_diag_totalTx = _mscl.WirelessChannel_channel_diag_totalTx - channel_diag_totalReTx = _mscl.WirelessChannel_channel_diag_totalReTx - channel_diag_totalDroppedPackets = _mscl.WirelessChannel_channel_diag_totalDroppedPackets - channel_diag_builtInTestResult = _mscl.WirelessChannel_channel_diag_builtInTestResult - channel_diag_eventIndex = _mscl.WirelessChannel_channel_diag_eventIndex - channel_hcl_axialLoadX = _mscl.WirelessChannel_channel_hcl_axialLoadX - channel_hcl_axialLoadY = _mscl.WirelessChannel_channel_hcl_axialLoadY - channel_hcl_axialLoadZ = _mscl.WirelessChannel_channel_hcl_axialLoadZ - channel_hcl_bendingMomentFlap = _mscl.WirelessChannel_channel_hcl_bendingMomentFlap - channel_hcl_bendingMomentLag = _mscl.WirelessChannel_channel_hcl_bendingMomentLag - channel_hcl_bendingMomentPitch = _mscl.WirelessChannel_channel_hcl_bendingMomentPitch - channel_hcl_motionFlap_mag = _mscl.WirelessChannel_channel_hcl_motionFlap_mag - channel_hcl_motionLag_mag = _mscl.WirelessChannel_channel_hcl_motionLag_mag - channel_hcl_motionPitch_mag = _mscl.WirelessChannel_channel_hcl_motionPitch_mag - channel_hcl_motionFlap_inertial = _mscl.WirelessChannel_channel_hcl_motionFlap_inertial - channel_hcl_motionLag_inertial = _mscl.WirelessChannel_channel_hcl_motionLag_inertial - channel_hcl_motionPitch_inertial = _mscl.WirelessChannel_channel_hcl_motionPitch_inertial - channel_hcl_cockingStiffness_mag = _mscl.WirelessChannel_channel_hcl_cockingStiffness_mag - channel_hcl_cockingStiffness_inertial = _mscl.WirelessChannel_channel_hcl_cockingStiffness_inertial - channel_hcl_temperature = _mscl.WirelessChannel_channel_hcl_temperature - channel_diag_externalPower = _mscl.WirelessChannel_channel_diag_externalPower - channel_diag_internalTemp = _mscl.WirelessChannel_channel_diag_internalTemp - channel_1_rms = _mscl.WirelessChannel_channel_1_rms - channel_2_rms = _mscl.WirelessChannel_channel_2_rms - channel_3_rms = _mscl.WirelessChannel_channel_3_rms - channel_4_rms = _mscl.WirelessChannel_channel_4_rms - channel_5_rms = _mscl.WirelessChannel_channel_5_rms - channel_6_rms = _mscl.WirelessChannel_channel_6_rms - channel_7_rms = _mscl.WirelessChannel_channel_7_rms - channel_8_rms = _mscl.WirelessChannel_channel_8_rms - channel_9_rms = _mscl.WirelessChannel_channel_9_rms - channel_10_rms = _mscl.WirelessChannel_channel_10_rms - channel_11_rms = _mscl.WirelessChannel_channel_11_rms - channel_12_rms = _mscl.WirelessChannel_channel_12_rms - channel_13_rms = _mscl.WirelessChannel_channel_13_rms - channel_14_rms = _mscl.WirelessChannel_channel_14_rms - channel_15_rms = _mscl.WirelessChannel_channel_15_rms - channel_16_rms = _mscl.WirelessChannel_channel_16_rms - channel_1_peakToPeak = _mscl.WirelessChannel_channel_1_peakToPeak - channel_2_peakToPeak = _mscl.WirelessChannel_channel_2_peakToPeak - channel_3_peakToPeak = _mscl.WirelessChannel_channel_3_peakToPeak - channel_4_peakToPeak = _mscl.WirelessChannel_channel_4_peakToPeak - channel_5_peakToPeak = _mscl.WirelessChannel_channel_5_peakToPeak - channel_6_peakToPeak = _mscl.WirelessChannel_channel_6_peakToPeak - channel_7_peakToPeak = _mscl.WirelessChannel_channel_7_peakToPeak - channel_8_peakToPeak = _mscl.WirelessChannel_channel_8_peakToPeak - channel_9_peakToPeak = _mscl.WirelessChannel_channel_9_peakToPeak - channel_10_peakToPeak = _mscl.WirelessChannel_channel_10_peakToPeak - channel_11_peakToPeak = _mscl.WirelessChannel_channel_11_peakToPeak - channel_12_peakToPeak = _mscl.WirelessChannel_channel_12_peakToPeak - channel_13_peakToPeak = _mscl.WirelessChannel_channel_13_peakToPeak - channel_14_peakToPeak = _mscl.WirelessChannel_channel_14_peakToPeak - channel_15_peakToPeak = _mscl.WirelessChannel_channel_15_peakToPeak - channel_16_peakToPeak = _mscl.WirelessChannel_channel_16_peakToPeak - channel_1_ips = _mscl.WirelessChannel_channel_1_ips - channel_2_ips = _mscl.WirelessChannel_channel_2_ips - channel_3_ips = _mscl.WirelessChannel_channel_3_ips - channel_4_ips = _mscl.WirelessChannel_channel_4_ips - channel_5_ips = _mscl.WirelessChannel_channel_5_ips - channel_6_ips = _mscl.WirelessChannel_channel_6_ips - channel_7_ips = _mscl.WirelessChannel_channel_7_ips - channel_8_ips = _mscl.WirelessChannel_channel_8_ips - channel_9_ips = _mscl.WirelessChannel_channel_9_ips - channel_10_ips = _mscl.WirelessChannel_channel_10_ips - channel_11_ips = _mscl.WirelessChannel_channel_11_ips - channel_12_ips = _mscl.WirelessChannel_channel_12_ips - channel_13_ips = _mscl.WirelessChannel_channel_13_ips - channel_14_ips = _mscl.WirelessChannel_channel_14_ips - channel_15_ips = _mscl.WirelessChannel_channel_15_ips - channel_16_ips = _mscl.WirelessChannel_channel_16_ips - channel_1_crestFactor = _mscl.WirelessChannel_channel_1_crestFactor - channel_2_crestFactor = _mscl.WirelessChannel_channel_2_crestFactor - channel_3_crestFactor = _mscl.WirelessChannel_channel_3_crestFactor - channel_4_crestFactor = _mscl.WirelessChannel_channel_4_crestFactor - channel_5_crestFactor = _mscl.WirelessChannel_channel_5_crestFactor - channel_6_crestFactor = _mscl.WirelessChannel_channel_6_crestFactor - channel_7_crestFactor = _mscl.WirelessChannel_channel_7_crestFactor - channel_8_crestFactor = _mscl.WirelessChannel_channel_8_crestFactor - channel_9_crestFactor = _mscl.WirelessChannel_channel_9_crestFactor - channel_10_crestFactor = _mscl.WirelessChannel_channel_10_crestFactor - channel_11_crestFactor = _mscl.WirelessChannel_channel_11_crestFactor - channel_12_crestFactor = _mscl.WirelessChannel_channel_12_crestFactor - channel_13_crestFactor = _mscl.WirelessChannel_channel_13_crestFactor - channel_14_crestFactor = _mscl.WirelessChannel_channel_14_crestFactor - channel_15_crestFactor = _mscl.WirelessChannel_channel_15_crestFactor - channel_16_crestFactor = _mscl.WirelessChannel_channel_16_crestFactor - channel_diag_syncAttempts = _mscl.WirelessChannel_channel_diag_syncAttempts - channel_diag_syncFailures = _mscl.WirelessChannel_channel_diag_syncFailures - channel_diag_secsSinceLastSync = _mscl.WirelessChannel_channel_diag_secsSinceLastSync - channel_beaconConflict = _mscl.WirelessChannel_channel_beaconConflict - channel_1_mean = _mscl.WirelessChannel_channel_1_mean - channel_2_mean = _mscl.WirelessChannel_channel_2_mean - channel_3_mean = _mscl.WirelessChannel_channel_3_mean - channel_4_mean = _mscl.WirelessChannel_channel_4_mean - channel_5_mean = _mscl.WirelessChannel_channel_5_mean - channel_6_mean = _mscl.WirelessChannel_channel_6_mean - channel_7_mean = _mscl.WirelessChannel_channel_7_mean - channel_8_mean = _mscl.WirelessChannel_channel_8_mean - channel_9_mean = _mscl.WirelessChannel_channel_9_mean - channel_10_mean = _mscl.WirelessChannel_channel_10_mean - channel_11_mean = _mscl.WirelessChannel_channel_11_mean - channel_12_mean = _mscl.WirelessChannel_channel_12_mean - channel_13_mean = _mscl.WirelessChannel_channel_13_mean - channel_14_mean = _mscl.WirelessChannel_channel_14_mean - channel_15_mean = _mscl.WirelessChannel_channel_15_mean - channel_16_mean = _mscl.WirelessChannel_channel_16_mean - channel_1_mmps = _mscl.WirelessChannel_channel_1_mmps - channel_2_mmps = _mscl.WirelessChannel_channel_2_mmps - channel_3_mmps = _mscl.WirelessChannel_channel_3_mmps - channel_4_mmps = _mscl.WirelessChannel_channel_4_mmps - channel_5_mmps = _mscl.WirelessChannel_channel_5_mmps - channel_6_mmps = _mscl.WirelessChannel_channel_6_mmps - channel_7_mmps = _mscl.WirelessChannel_channel_7_mmps - channel_8_mmps = _mscl.WirelessChannel_channel_8_mmps - channel_9_mmps = _mscl.WirelessChannel_channel_9_mmps - channel_10_mmps = _mscl.WirelessChannel_channel_10_mmps - channel_11_mmps = _mscl.WirelessChannel_channel_11_mmps - channel_12_mmps = _mscl.WirelessChannel_channel_12_mmps - channel_13_mmps = _mscl.WirelessChannel_channel_13_mmps - channel_14_mmps = _mscl.WirelessChannel_channel_14_mmps - channel_15_mmps = _mscl.WirelessChannel_channel_15_mmps - channel_16_mmps = _mscl.WirelessChannel_channel_16_mmps - channel_diag_memoryFull = _mscl.WirelessChannel_channel_diag_memoryFull - - def __init__(self, *args): - _mscl.WirelessChannel_swiginit(self, _mscl.new_WirelessChannel(*args)) - - def channelNumber(self): - return _mscl.WirelessChannel_channelNumber(self) - - def id(self): - return _mscl.WirelessChannel_id(self) - - def type(self): - return _mscl.WirelessChannel_type(self) - - def description(self): - return _mscl.WirelessChannel_description(self) - - def adcResolution(self): - return _mscl.WirelessChannel_adcResolution(self) - - def adcMaxValue(self): - return _mscl.WirelessChannel_adcMaxValue(self) - - def name(self): - return _mscl.WirelessChannel_name(self) - __swig_destroy__ = _mscl.delete_WirelessChannel - -# Register WirelessChannel in _mscl: -_mscl.WirelessChannel_swigregister(WirelessChannel) - -class WirelessDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessDataPoint_swiginit(self, _mscl.new_WirelessDataPoint()) - - def channelId(self): - return _mscl.WirelessDataPoint_channelId(self) - - def channelNumber(self): - return _mscl.WirelessDataPoint_channelNumber(self) - - def channelName(self): - return _mscl.WirelessDataPoint_channelName(self) - __swig_destroy__ = _mscl.delete_WirelessDataPoint - -# Register WirelessDataPoint in _mscl: -_mscl.WirelessDataPoint_swigregister(WirelessDataPoint) - -class DataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - samplingType_NonSync = _mscl.DataSweep_samplingType_NonSync - samplingType_NonSync_Buffered = _mscl.DataSweep_samplingType_NonSync_Buffered - samplingType_SyncSampling = _mscl.DataSweep_samplingType_SyncSampling - samplingType_SyncSampling_Burst = _mscl.DataSweep_samplingType_SyncSampling_Burst - samplingType_AsyncDigital = _mscl.DataSweep_samplingType_AsyncDigital - samplingType_AsyncDigitalAnalog = _mscl.DataSweep_samplingType_AsyncDigitalAnalog - samplingType_SHM = _mscl.DataSweep_samplingType_SHM - samplingType_BeaconEcho = _mscl.DataSweep_samplingType_BeaconEcho - samplingType_RfSweep = _mscl.DataSweep_samplingType_RfSweep - samplingType_Diagnostic = _mscl.DataSweep_samplingType_Diagnostic - - def __init__(self): - _mscl.DataSweep_swiginit(self, _mscl.new_DataSweep()) - - def timestamp(self): - return _mscl.DataSweep_timestamp(self) - - def tick(self): - return _mscl.DataSweep_tick(self) - - def sampleRate(self): - return _mscl.DataSweep_sampleRate(self) - - def nodeAddress(self): - return _mscl.DataSweep_nodeAddress(self) - - def data(self): - return _mscl.DataSweep_data(self) - - def samplingType(self): - return _mscl.DataSweep_samplingType(self) - - def nodeRssi(self): - return _mscl.DataSweep_nodeRssi(self) - - def baseRssi(self): - return _mscl.DataSweep_baseRssi(self) - - def frequency(self): - return _mscl.DataSweep_frequency(self) - - def calApplied(self): - return _mscl.DataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_DataSweep - -# Register DataSweep in _mscl: -_mscl.DataSweep_swigregister(DataSweep) - -class BaseStationAnalogPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationAnalogPair_swiginit(self, _mscl.new_BaseStationAnalogPair()) - - @staticmethod - def Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - - @staticmethod - def NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - - def nodeAddress(self, *args): - return _mscl.BaseStationAnalogPair_nodeAddress(self, *args) - - def nodeChannel(self, *args): - return _mscl.BaseStationAnalogPair_nodeChannel(self, *args) - - def expectFloatData(self, *args): - return _mscl.BaseStationAnalogPair_expectFloatData(self, *args) - - def outputVal_0V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_0V(self, *args) - - def outputVal_3V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_3V(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationAnalogPair - -# Register BaseStationAnalogPair in _mscl: -_mscl.BaseStationAnalogPair_swigregister(BaseStationAnalogPair) -BaseStationAnalogPair.CHANNEL_NOT_FLOAT = _mscl.cvar.BaseStationAnalogPair_CHANNEL_NOT_FLOAT - -def BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - -def BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - -class BaseStationButton(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - btn_nodeSleep = _mscl.BaseStationButton_btn_nodeSleep - btn_nodeStop = _mscl.BaseStationButton_btn_nodeStop - btn_enableBeacon = _mscl.BaseStationButton_btn_enableBeacon - btn_disableBeacon = _mscl.BaseStationButton_btn_disableBeacon - btn_nodeNonSyncSampling = _mscl.BaseStationButton_btn_nodeNonSyncSampling - btn_nodeSyncSampling = _mscl.BaseStationButton_btn_nodeSyncSampling - btn_nodeArmedDatalogging = _mscl.BaseStationButton_btn_nodeArmedDatalogging - btn_cyclePower = _mscl.BaseStationButton_btn_cyclePower - btn_disabled = _mscl.BaseStationButton_btn_disabled - - def __init__(self, *args): - _mscl.BaseStationButton_swiginit(self, _mscl.new_BaseStationButton(*args)) - - def command(self, *args): - return _mscl.BaseStationButton_command(self, *args) - - def nodeAddress(self, *args): - return _mscl.BaseStationButton_nodeAddress(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationButton - -# Register BaseStationButton in _mscl: -_mscl.BaseStationButton_swigregister(BaseStationButton) - -class BaseStationConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationConfig_swiginit(self, _mscl.new_BaseStationConfig()) - - def transmitPower(self, *args): - return _mscl.BaseStationConfig_transmitPower(self, *args) - - def communicationProtocol(self, *args): - return _mscl.BaseStationConfig_communicationProtocol(self, *args) - - def buttonLongPress(self, *args): - return _mscl.BaseStationConfig_buttonLongPress(self, *args) - - def buttonShortPress(self, *args): - return _mscl.BaseStationConfig_buttonShortPress(self, *args) - - def analogPairingEnable(self, *args): - return _mscl.BaseStationConfig_analogPairingEnable(self, *args) - - def analogTimeoutTime(self, *args): - return _mscl.BaseStationConfig_analogTimeoutTime(self, *args) - - def analogTimeoutVoltage(self, *args): - return _mscl.BaseStationConfig_analogTimeoutVoltage(self, *args) - - def analogExceedanceEnable(self, *args): - return _mscl.BaseStationConfig_analogExceedanceEnable(self, *args) - - def analogPairing(self, *args): - return _mscl.BaseStationConfig_analogPairing(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationConfig - -# Register BaseStationConfig in _mscl: -_mscl.BaseStationConfig_swigregister(BaseStationConfig) - -class BeaconStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BeaconStatus_swiginit(self, _mscl.new_BeaconStatus(*args)) - - def enabled(self): - return _mscl.BeaconStatus_enabled(self) - - def timestamp(self): - return _mscl.BeaconStatus_timestamp(self) - __swig_destroy__ = _mscl.delete_BeaconStatus - -# Register BeaconStatus in _mscl: -_mscl.BeaconStatus_swigregister(BeaconStatus) - -class BaseStationInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region, asppVer_lxrs, asppVer_lxrsPlus): - _mscl.BaseStationInfo_swiginit(self, _mscl.new_BaseStationInfo(fw, model, region, asppVer_lxrs, asppVer_lxrsPlus)) - __swig_destroy__ = _mscl.delete_BaseStationInfo - -# Register BaseStationInfo in _mscl: -_mscl.BaseStationInfo_swigregister(BaseStationInfo) - -class BaseStation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_BASE_COMMANDS_DEFAULT_TIMEOUT - ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT - BROADCAST_NODE_ADDRESS = _mscl.BaseStation_BROADCAST_NODE_ADDRESS - BROADCAST_NODE_ADDRESS_ASPP3 = _mscl.BaseStation_BROADCAST_NODE_ADDRESS_ASPP3 - - def __init__(self, *args): - _mscl.BaseStation_swiginit(self, _mscl.new_BaseStation(*args)) - __swig_destroy__ = _mscl.delete_BaseStation - - @staticmethod - def Mock(*args): - return _mscl.BaseStation_Mock(*args) - - @staticmethod - def deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - - def connection(self): - return _mscl.BaseStation_connection(self) - - def features(self): - return _mscl.BaseStation_features(self) - - def lastCommunicationTime(self): - return _mscl.BaseStation_lastCommunicationTime(self) - - def readWriteRetries(self, *args): - return _mscl.BaseStation_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.BaseStation_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.BaseStation_clearEepromCache(self) - - def frequency(self): - return _mscl.BaseStation_frequency(self) - - def communicationProtocol(self): - return _mscl.BaseStation_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.BaseStation_firmwareVersion(self) - - def model(self): - return _mscl.BaseStation_model(self) - - def serial(self): - return _mscl.BaseStation_serial(self) - - def name(self): - return _mscl.BaseStation_name(self) - - def microcontroller(self): - return _mscl.BaseStation_microcontroller(self) - - def regionCode(self): - return _mscl.BaseStation_regionCode(self) - - def getData(self, timeout=0, maxSweeps=0): - return _mscl.BaseStation_getData(self, timeout, maxSweeps) - - def totalData(self): - return _mscl.BaseStation_totalData(self) - - def getNodeDiscoveries(self): - return _mscl.BaseStation_getNodeDiscoveries(self) - - def timeout(self, *args): - return _mscl.BaseStation_timeout(self, *args) - - def ping(self): - return _mscl.BaseStation_ping(self) - - def readEeprom(self, eepromAddress): - return _mscl.BaseStation_readEeprom(self, eepromAddress) - - def writeEeprom(self, eepromAddress, value): - return _mscl.BaseStation_writeEeprom(self, eepromAddress, value) - - def enableBeacon(self, *args): - return _mscl.BaseStation_enableBeacon(self, *args) - - def disableBeacon(self): - return _mscl.BaseStation_disableBeacon(self) - - def beaconStatus(self): - return _mscl.BaseStation_beaconStatus(self) - - def startRfSweepMode(self, *args): - return _mscl.BaseStation_startRfSweepMode(self, *args) - - def cyclePower(self, checkComm=True): - return _mscl.BaseStation_cyclePower(self, checkComm) - - def resetRadio(self): - return _mscl.BaseStation_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.BaseStation_changeFrequency(self, frequency) - - def broadcastSetToIdle(self): - return _mscl.BaseStation_broadcastSetToIdle(self) - - def verifyConfig(self, config, outIssues): - return _mscl.BaseStation_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.BaseStation_applyConfig(self, config) - - def getTransmitPower(self): - return _mscl.BaseStation_getTransmitPower(self) - - def getButtonLongPress(self, buttonNumber): - return _mscl.BaseStation_getButtonLongPress(self, buttonNumber) - - def getButtonShortPress(self, buttonNumber): - return _mscl.BaseStation_getButtonShortPress(self, buttonNumber) - - def getAnalogPairingEnabled(self): - return _mscl.BaseStation_getAnalogPairingEnabled(self) - - def getAnalogTimeoutTime(self): - return _mscl.BaseStation_getAnalogTimeoutTime(self) - - def getAnalogTimeoutVoltage(self): - return _mscl.BaseStation_getAnalogTimeoutVoltage(self) - - def getAnalogExceedanceEnabled(self): - return _mscl.BaseStation_getAnalogExceedanceEnabled(self) - - def getAnalogPair(self, portNumber): - return _mscl.BaseStation_getAnalogPair(self, portNumber) - -# Register BaseStation in _mscl: -_mscl.BaseStation_swigregister(BaseStation) - -def BaseStation_Mock(*args): - return _mscl.BaseStation_Mock(*args) - -def BaseStation_deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - -class LoggedDataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LoggedDataSweep_swiginit(self, _mscl.new_LoggedDataSweep(*args)) - - def timestamp(self): - return _mscl.LoggedDataSweep_timestamp(self) - - def tick(self): - return _mscl.LoggedDataSweep_tick(self) - - def data(self): - return _mscl.LoggedDataSweep_data(self) - - def calApplied(self): - return _mscl.LoggedDataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweep - -# Register LoggedDataSweep in _mscl: -_mscl.LoggedDataSweep_swigregister(LoggedDataSweep) - -class RadioFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.RadioFeatures_swiginit(self, _mscl.new_RadioFeatures(*args)) - - def extendedRange(self): - return _mscl.RadioFeatures_extendedRange(self) - __swig_destroy__ = _mscl.delete_RadioFeatures - -# Register RadioFeatures in _mscl: -_mscl.RadioFeatures_swigregister(RadioFeatures) - -class WirelessNodeConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessNodeConfig_swiginit(self, _mscl.new_WirelessNodeConfig()) - SENSOR_DELAY_ALWAYS_ON = _mscl.WirelessNodeConfig_SENSOR_DELAY_ALWAYS_ON - - def defaultMode(self, *args): - return _mscl.WirelessNodeConfig_defaultMode(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.WirelessNodeConfig_inactivityTimeout(self, *args) - - def checkRadioInterval(self, *args): - return _mscl.WirelessNodeConfig_checkRadioInterval(self, *args) - - def transmitPower(self, *args): - return _mscl.WirelessNodeConfig_transmitPower(self, *args) - - def samplingMode(self, *args): - return _mscl.WirelessNodeConfig_samplingMode(self, *args) - - def sampleRate(self, *args): - return _mscl.WirelessNodeConfig_sampleRate(self, *args) - - def activeChannels(self, *args): - return _mscl.WirelessNodeConfig_activeChannels(self, *args) - - def numSweeps(self, *args): - return _mscl.WirelessNodeConfig_numSweeps(self, *args) - - def unlimitedDuration(self, *args): - return _mscl.WirelessNodeConfig_unlimitedDuration(self, *args) - - def dataFormat(self, *args): - return _mscl.WirelessNodeConfig_dataFormat(self, *args) - - def dataCollectionMethod(self, *args): - return _mscl.WirelessNodeConfig_dataCollectionMethod(self, *args) - - def timeBetweenBursts(self, *args): - return _mscl.WirelessNodeConfig_timeBetweenBursts(self, *args) - - def lostBeaconTimeout(self, *args): - return _mscl.WirelessNodeConfig_lostBeaconTimeout(self, *args) - - def pullUpResistor(self, *args): - return _mscl.WirelessNodeConfig_pullUpResistor(self, *args) - - def inputRange(self, *args): - return _mscl.WirelessNodeConfig_inputRange(self, *args) - - def hardwareOffset(self, *args): - return _mscl.WirelessNodeConfig_hardwareOffset(self, *args) - - def antiAliasingFilter(self, *args): - return _mscl.WirelessNodeConfig_antiAliasingFilter(self, *args) - - def cfcFilterConfig(self, *args): - return _mscl.WirelessNodeConfig_cfcFilterConfig(self, *args) - - def lowPassFilter(self, *args): - return _mscl.WirelessNodeConfig_lowPassFilter(self, *args) - - def highPassFilter(self, *args): - return _mscl.WirelessNodeConfig_highPassFilter(self, *args) - - def gaugeFactor(self, *args): - return _mscl.WirelessNodeConfig_gaugeFactor(self, *args) - - def gaugeResistance(self, *args): - return _mscl.WirelessNodeConfig_gaugeResistance(self, *args) - - def excitationVoltage(self, *args): - return _mscl.WirelessNodeConfig_excitationVoltage(self, *args) - - def numActiveGauges(self, *args): - return _mscl.WirelessNodeConfig_numActiveGauges(self, *args) - - def lowBatteryThreshold(self, *args): - return _mscl.WirelessNodeConfig_lowBatteryThreshold(self, *args) - - def linearEquation(self, *args): - return _mscl.WirelessNodeConfig_linearEquation(self, *args) - - def unit(self, *args): - return _mscl.WirelessNodeConfig_unit(self, *args) - - def equationType(self, *args): - return _mscl.WirelessNodeConfig_equationType(self, *args) - - def filterSettlingTime(self, *args): - return _mscl.WirelessNodeConfig_filterSettlingTime(self, *args) - - def thermocoupleType(self, *args): - return _mscl.WirelessNodeConfig_thermocoupleType(self, *args) - - def tempSensorOptions(self, *args): - return _mscl.WirelessNodeConfig_tempSensorOptions(self, *args) - - def debounceFilter(self, *args): - return _mscl.WirelessNodeConfig_debounceFilter(self, *args) - - def fatigueOptions(self, *args): - return _mscl.WirelessNodeConfig_fatigueOptions(self, *args) - - def histogramOptions(self, *args): - return _mscl.WirelessNodeConfig_histogramOptions(self, *args) - - def activitySense(self, *args): - return _mscl.WirelessNodeConfig_activitySense(self, *args) - - def eventTriggerOptions(self, *args): - return _mscl.WirelessNodeConfig_eventTriggerOptions(self, *args) - - def diagnosticInterval(self, *args): - return _mscl.WirelessNodeConfig_diagnosticInterval(self, *args) - - def storageLimitMode(self, *args): - return _mscl.WirelessNodeConfig_storageLimitMode(self, *args) - - def sensorDelay(self, *args): - return _mscl.WirelessNodeConfig_sensorDelay(self, *args) - - def dataMode(self, *args): - return _mscl.WirelessNodeConfig_dataMode(self, *args) - - def derivedDataRate(self, *args): - return _mscl.WirelessNodeConfig_derivedDataRate(self, *args) - - def derivedChannelMask(self, *args): - return _mscl.WirelessNodeConfig_derivedChannelMask(self, *args) - - def derivedVelocityUnit(self, *args): - return _mscl.WirelessNodeConfig_derivedVelocityUnit(self, *args) - - def communicationProtocol(self, *args): - return _mscl.WirelessNodeConfig_communicationProtocol(self, *args) - - def sensorOutputMode(self, *args): - return _mscl.WirelessNodeConfig_sensorOutputMode(self, *args) - - @staticmethod - def flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - - @staticmethod - def flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - __swig_destroy__ = _mscl.delete_WirelessNodeConfig - -# Register WirelessNodeConfig in _mscl: -_mscl.WirelessNodeConfig_swigregister(WirelessNodeConfig) - -def WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - -def WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - -class AutoBalanceResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoBalanceResult_swiginit(self, _mscl.new_AutoBalanceResult()) - - def errorCode(self): - return _mscl.AutoBalanceResult_errorCode(self) - - def percentAchieved(self): - return _mscl.AutoBalanceResult_percentAchieved(self) - - def hardwareOffset(self): - return _mscl.AutoBalanceResult_hardwareOffset(self) - __swig_destroy__ = _mscl.delete_AutoBalanceResult - -# Register AutoBalanceResult in _mscl: -_mscl.AutoBalanceResult_swigregister(AutoBalanceResult) - -class ShuntCalCmdInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - useInternalShunt = property(_mscl.ShuntCalCmdInfo_useInternalShunt_get, _mscl.ShuntCalCmdInfo_useInternalShunt_set) - numActiveGauges = property(_mscl.ShuntCalCmdInfo_numActiveGauges_get, _mscl.ShuntCalCmdInfo_numActiveGauges_set) - gaugeResistance = property(_mscl.ShuntCalCmdInfo_gaugeResistance_get, _mscl.ShuntCalCmdInfo_gaugeResistance_set) - shuntResistance = property(_mscl.ShuntCalCmdInfo_shuntResistance_get, _mscl.ShuntCalCmdInfo_shuntResistance_set) - gaugeFactor = property(_mscl.ShuntCalCmdInfo_gaugeFactor_get, _mscl.ShuntCalCmdInfo_gaugeFactor_set) - inputRange = property(_mscl.ShuntCalCmdInfo_inputRange_get, _mscl.ShuntCalCmdInfo_inputRange_set) - hardwareOffset = property(_mscl.ShuntCalCmdInfo_hardwareOffset_get, _mscl.ShuntCalCmdInfo_hardwareOffset_set) - excitationVoltage = property(_mscl.ShuntCalCmdInfo_excitationVoltage_get, _mscl.ShuntCalCmdInfo_excitationVoltage_set) - - def __init__(self): - _mscl.ShuntCalCmdInfo_swiginit(self, _mscl.new_ShuntCalCmdInfo()) - __swig_destroy__ = _mscl.delete_ShuntCalCmdInfo - -# Register ShuntCalCmdInfo in _mscl: -_mscl.ShuntCalCmdInfo_swigregister(ShuntCalCmdInfo) - -class AutoCalResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_AutoCalResult - - def completionFlag(self): - return _mscl.AutoCalResult_completionFlag(self) - -# Register AutoCalResult in _mscl: -_mscl.AutoCalResult_swigregister(AutoCalResult) - -class AutoCalResult_shmLink(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink_swiginit(self, _mscl.new_AutoCalResult_shmLink()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh3(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink_offsetCh1(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink_offsetCh2(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink_temperature(self) - -# Register AutoCalResult_shmLink in _mscl: -_mscl.AutoCalResult_shmLink_swigregister(AutoCalResult_shmLink) - -class AutoCalResult_shmLink201(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink201_swiginit(self, _mscl.new_AutoCalResult_shmLink201()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink201 - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh3(self) - - def slopeCh1(self): - return _mscl.AutoCalResult_shmLink201_slopeCh1(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink201_offsetCh1(self) - - def slopeCh2(self): - return _mscl.AutoCalResult_shmLink201_slopeCh2(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink201_offsetCh2(self) - - def slopeCh3(self): - return _mscl.AutoCalResult_shmLink201_slopeCh3(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink201_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink201_temperature(self) - -# Register AutoCalResult_shmLink201 in _mscl: -_mscl.AutoCalResult_shmLink201_swigregister(AutoCalResult_shmLink201) - -class AutoShuntCalResult(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoShuntCalResult_swiginit(self, _mscl.new_AutoShuntCalResult()) - __swig_destroy__ = _mscl.delete_AutoShuntCalResult - - def errorFlag(self): - return _mscl.AutoShuntCalResult_errorFlag(self) - - def slope(self): - return _mscl.AutoShuntCalResult_slope(self) - - def offset(self): - return _mscl.AutoShuntCalResult_offset(self) - - def baseMedian(self): - return _mscl.AutoShuntCalResult_baseMedian(self) - - def baseMin(self): - return _mscl.AutoShuntCalResult_baseMin(self) - - def baseMax(self): - return _mscl.AutoShuntCalResult_baseMax(self) - - def shuntMedian(self): - return _mscl.AutoShuntCalResult_shuntMedian(self) - - def shuntMin(self): - return _mscl.AutoShuntCalResult_shuntMin(self) - - def shuntMax(self): - return _mscl.AutoShuntCalResult_shuntMax(self) - -# Register AutoShuntCalResult in _mscl: -_mscl.AutoShuntCalResult_swigregister(AutoShuntCalResult) - -class PingResponse(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PingResponse_swiginit(self, _mscl.new_PingResponse()) - - def success(self): - return _mscl.PingResponse_success(self) - - def nodeRssi(self): - return _mscl.PingResponse_nodeRssi(self) - - def baseRssi(self): - return _mscl.PingResponse_baseRssi(self) - __swig_destroy__ = _mscl.delete_PingResponse - -# Register PingResponse in _mscl: -_mscl.PingResponse_swigregister(PingResponse) - -class SetToIdleStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - setToIdleResult_success = _mscl.SetToIdleStatus_setToIdleResult_success - setToIdleResult_canceled = _mscl.SetToIdleStatus_setToIdleResult_canceled - setToIdleResult_failed = _mscl.SetToIdleStatus_setToIdleResult_failed - setToIdleResult_notCompleted = _mscl.SetToIdleStatus_setToIdleResult_notCompleted - - def result(self): - return _mscl.SetToIdleStatus_result(self) - - def complete(self, timeout=10): - return _mscl.SetToIdleStatus_complete(self, timeout) - - def cancel(self): - return _mscl.SetToIdleStatus_cancel(self) - __swig_destroy__ = _mscl.delete_SetToIdleStatus - -# Register SetToIdleStatus in _mscl: -_mscl.SetToIdleStatus_swigregister(SetToIdleStatus) - -class NodeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region): - _mscl.NodeInfo_swiginit(self, _mscl.new_NodeInfo(fw, model, region)) - __swig_destroy__ = _mscl.delete_NodeInfo - -# Register NodeInfo in _mscl: -_mscl.NodeInfo_swigregister(NodeInfo) - -class WirelessNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, nodeAddress, basestation): - _mscl.WirelessNode_swiginit(self, _mscl.new_WirelessNode(nodeAddress, basestation)) - __swig_destroy__ = _mscl.delete_WirelessNode - - @staticmethod - def Mock(*args): - return _mscl.WirelessNode_Mock(*args) - - @staticmethod - def deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - - def features(self): - return _mscl.WirelessNode_features(self) - - def lastCommunicationTime(self): - return _mscl.WirelessNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.WirelessNode_lastDeviceState(self) - - def setBaseStation(self, basestation): - return _mscl.WirelessNode_setBaseStation(self, basestation) - - def getBaseStation(self): - return _mscl.WirelessNode_getBaseStation(self) - - def hasBaseStation(self, basestation): - return _mscl.WirelessNode_hasBaseStation(self, basestation) - - def useGroupRead(self, useGroup): - return _mscl.WirelessNode_useGroupRead(self, useGroup) - - def readWriteRetries(self, *args): - return _mscl.WirelessNode_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.WirelessNode_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.WirelessNode_clearEepromCache(self) - - def updateEepromCacheFromNodeDiscovery(self, nodeDisovery): - return _mscl.WirelessNode_updateEepromCacheFromNodeDiscovery(self, nodeDisovery) - - def getEepromCache(self): - return _mscl.WirelessNode_getEepromCache(self) - - def nodeAddress(self): - return _mscl.WirelessNode_nodeAddress(self) - - def frequency(self): - return _mscl.WirelessNode_frequency(self) - - def communicationProtocol(self): - return _mscl.WirelessNode_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.WirelessNode_firmwareVersion(self) - - def model(self): - return _mscl.WirelessNode_model(self) - - def serial(self): - return _mscl.WirelessNode_serial(self) - - def name(self): - return _mscl.WirelessNode_name(self) - - def microcontroller(self): - return _mscl.WirelessNode_microcontroller(self) - - def radioFeatures(self): - return _mscl.WirelessNode_radioFeatures(self) - - def dataStorageSize(self): - return _mscl.WirelessNode_dataStorageSize(self) - - def regionCode(self): - return _mscl.WirelessNode_regionCode(self) - - def ping(self): - return _mscl.WirelessNode_ping(self) - - def sleep(self): - return _mscl.WirelessNode_sleep(self) - - def cyclePower(self): - return _mscl.WirelessNode_cyclePower(self) - - def resetRadio(self): - return _mscl.WirelessNode_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.WirelessNode_changeFrequency(self, frequency) - - def setToIdle(self): - return _mscl.WirelessNode_setToIdle(self) - - def erase(self): - return _mscl.WirelessNode_erase(self) - - def startNonSyncSampling(self): - return _mscl.WirelessNode_startNonSyncSampling(self) - - def resendStartSyncSampling(self): - return _mscl.WirelessNode_resendStartSyncSampling(self) - - def clearHistogram(self): - return _mscl.WirelessNode_clearHistogram(self) - - def autoBalance(self, mask, targetPercent): - return _mscl.WirelessNode_autoBalance(self, mask, targetPercent) - - def autoCal_shmLink(self): - return _mscl.WirelessNode_autoCal_shmLink(self) - - def autoCal_shmLink201(self): - return _mscl.WirelessNode_autoCal_shmLink201(self) - - def autoShuntCal(self, mask, commandInfo): - return _mscl.WirelessNode_autoShuntCal(self, mask, commandInfo) - - def poll(self, mask): - return _mscl.WirelessNode_poll(self, mask) - - def readEeprom(self, location): - return _mscl.WirelessNode_readEeprom(self, location) - - def writeEeprom(self, location, value): - return _mscl.WirelessNode_writeEeprom(self, location, value) - - def getDiagnosticInfo(self): - return _mscl.WirelessNode_getDiagnosticInfo(self) - - def testCommunicationProtocol(self, protocol): - return _mscl.WirelessNode_testCommunicationProtocol(self, protocol) - - def verifyConfig(self, config, outIssues): - return _mscl.WirelessNode_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.WirelessNode_applyConfig(self, config) - - def getNumDatalogSessions(self): - return _mscl.WirelessNode_getNumDatalogSessions(self) - - def percentFull(self): - return _mscl.WirelessNode_percentFull(self) - - def getDefaultMode(self): - return _mscl.WirelessNode_getDefaultMode(self) - - def getInactivityTimeout(self): - return _mscl.WirelessNode_getInactivityTimeout(self) - - def getCheckRadioInterval(self): - return _mscl.WirelessNode_getCheckRadioInterval(self) - - def getTransmitPower(self): - return _mscl.WirelessNode_getTransmitPower(self) - - def getSamplingMode(self): - return _mscl.WirelessNode_getSamplingMode(self) - - def getActiveChannels(self): - return _mscl.WirelessNode_getActiveChannels(self) - - def getSampleRate(self): - return _mscl.WirelessNode_getSampleRate(self) - - def getNumSweeps(self): - return _mscl.WirelessNode_getNumSweeps(self) - - def getUnlimitedDuration(self): - return _mscl.WirelessNode_getUnlimitedDuration(self) - - def getDataFormat(self): - return _mscl.WirelessNode_getDataFormat(self) - - def getDataCollectionMethod(self): - return _mscl.WirelessNode_getDataCollectionMethod(self) - - def getTimeBetweenBursts(self): - return _mscl.WirelessNode_getTimeBetweenBursts(self) - - def getLostBeaconTimeout(self): - return _mscl.WirelessNode_getLostBeaconTimeout(self) - - def getInputRange(self, mask): - return _mscl.WirelessNode_getInputRange(self, mask) - - def getHardwareOffset(self, mask): - return _mscl.WirelessNode_getHardwareOffset(self, mask) - - def getAntiAliasingFilter(self, mask): - return _mscl.WirelessNode_getAntiAliasingFilter(self, mask) - - def getCfcFilterConfiguration(self): - return _mscl.WirelessNode_getCfcFilterConfiguration(self) - - def getLowPassFilter(self, mask): - return _mscl.WirelessNode_getLowPassFilter(self, mask) - - def getHighPassFilter(self, mask): - return _mscl.WirelessNode_getHighPassFilter(self, mask) - - def getDebounceFilter(self, mask): - return _mscl.WirelessNode_getDebounceFilter(self, mask) - - def getPullUpResistor(self, mask): - return _mscl.WirelessNode_getPullUpResistor(self, mask) - - def getSensorOutputMode(self): - return _mscl.WirelessNode_getSensorOutputMode(self) - - def getGaugeFactor(self, mask): - return _mscl.WirelessNode_getGaugeFactor(self, mask) - - def getExcitationVoltage(self): - return _mscl.WirelessNode_getExcitationVoltage(self) - - def getAdcVoltageRef(self): - return _mscl.WirelessNode_getAdcVoltageRef(self) - - def getGainAmplifierVoltageRef(self): - return _mscl.WirelessNode_getGainAmplifierVoltageRef(self) - - def getGaugeResistance(self): - return _mscl.WirelessNode_getGaugeResistance(self) - - def getNumActiveGauges(self): - return _mscl.WirelessNode_getNumActiveGauges(self) - - def getLowBatteryThreshold(self): - return _mscl.WirelessNode_getLowBatteryThreshold(self) - - def getLinearEquation(self, mask): - return _mscl.WirelessNode_getLinearEquation(self, mask) - - def getUnit(self, mask): - return _mscl.WirelessNode_getUnit(self, mask) - - def getEquationType(self, mask): - return _mscl.WirelessNode_getEquationType(self, mask) - - def getFactoryCalibrationLinearEq(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationLinearEq(self, mask) - - def getFactoryCalibrationUnit(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationUnit(self, mask) - - def getFactoryCalibrationEqType(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationEqType(self, mask) - - def getFilterSettlingTime(self, mask): - return _mscl.WirelessNode_getFilterSettlingTime(self, mask) - - def getThermocoupleType(self, mask): - return _mscl.WirelessNode_getThermocoupleType(self, mask) - - def getTempSensorOptions(self, mask): - return _mscl.WirelessNode_getTempSensorOptions(self, mask) - - def getFatigueOptions(self): - return _mscl.WirelessNode_getFatigueOptions(self) - - def getHistogramOptions(self): - return _mscl.WirelessNode_getHistogramOptions(self) - - def getActivitySense(self): - return _mscl.WirelessNode_getActivitySense(self) - - def getEventTriggerOptions(self): - return _mscl.WirelessNode_getEventTriggerOptions(self) - - def getDiagnosticInterval(self): - return _mscl.WirelessNode_getDiagnosticInterval(self) - - def getStorageLimitMode(self): - return _mscl.WirelessNode_getStorageLimitMode(self) - - def getSensorDelay(self): - return _mscl.WirelessNode_getSensorDelay(self) - - def getDataMode(self): - return _mscl.WirelessNode_getDataMode(self) - - def getDerivedDataRate(self): - return _mscl.WirelessNode_getDerivedDataRate(self) - - def getDerivedChannelMask(self, category): - return _mscl.WirelessNode_getDerivedChannelMask(self, category) - - def getDerivedVelocityUnit(self): - return _mscl.WirelessNode_getDerivedVelocityUnit(self) - -# Register WirelessNode in _mscl: -_mscl.WirelessNode_swigregister(WirelessNode) - -def WirelessNode_Mock(*args): - return _mscl.WirelessNode_Mock(*args) - -def WirelessNode_deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - -class DatalogDownloader(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.DatalogDownloader_swiginit(self, _mscl.new_DatalogDownloader(*args)) - __swig_destroy__ = _mscl.delete_DatalogDownloader - - def complete(self): - return _mscl.DatalogDownloader_complete(self) - - def percentComplete(self): - return _mscl.DatalogDownloader_percentComplete(self) - - def getNextData(self): - return _mscl.DatalogDownloader_getNextData(self) - - def metaDataUpdated(self): - return _mscl.DatalogDownloader_metaDataUpdated(self) - - def calCoefficientsUpdated(self): - return _mscl.DatalogDownloader_calCoefficientsUpdated(self) - - def startOfSession(self): - return _mscl.DatalogDownloader_startOfSession(self) - - def sessionIndex(self): - return _mscl.DatalogDownloader_sessionIndex(self) - - def sampleRate(self): - return _mscl.DatalogDownloader_sampleRate(self) - - def userString(self): - return _mscl.DatalogDownloader_userString(self) - - def calCoefficients(self): - return _mscl.DatalogDownloader_calCoefficients(self) - -# Register DatalogDownloader in _mscl: -_mscl.DatalogDownloader_swigregister(DatalogDownloader) - -class ArmedDataloggingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.ArmedDataloggingNetwork_swiginit(self, _mscl.new_ArmedDataloggingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.ArmedDataloggingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.ArmedDataloggingNetwork_removeNode(self, nodeAddress) - - def startSampling(self): - return _mscl.ArmedDataloggingNetwork_startSampling(self) - __swig_destroy__ = _mscl.delete_ArmedDataloggingNetwork - -# Register ArmedDataloggingNetwork in _mscl: -_mscl.ArmedDataloggingNetwork_swigregister(ArmedDataloggingNetwork) - -class SyncNetworkInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - status_OK = _mscl.SyncNetworkInfo_status_OK - status_PoorCommunication = _mscl.SyncNetworkInfo_status_PoorCommunication - status_DoesNotFit = _mscl.SyncNetworkInfo_status_DoesNotFit - status_Contention = _mscl.SyncNetworkInfo_status_Contention - - def __init__(self, node): - _mscl.SyncNetworkInfo_swiginit(self, _mscl.new_SyncNetworkInfo(node)) - - def status(self): - return _mscl.SyncNetworkInfo_status(self) - - def startedSampling(self): - return _mscl.SyncNetworkInfo_startedSampling(self) - - def configurationApplied(self): - return _mscl.SyncNetworkInfo_configurationApplied(self) - - def percentBandwidth(self): - return _mscl.SyncNetworkInfo_percentBandwidth(self) - - def tdmaAddress(self): - return _mscl.SyncNetworkInfo_tdmaAddress(self) - - def maxTdmaAddress(self): - return _mscl.SyncNetworkInfo_maxTdmaAddress(self) - - def transmissionPerGroup(self): - return _mscl.SyncNetworkInfo_transmissionPerGroup(self) - - def groupSize(self): - return _mscl.SyncNetworkInfo_groupSize(self) - __swig_destroy__ = _mscl.delete_SyncNetworkInfo - -# Register SyncNetworkInfo in _mscl: -_mscl.SyncNetworkInfo_swigregister(SyncNetworkInfo) - -class SyncSamplingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.SyncSamplingNetwork_swiginit(self, _mscl.new_SyncSamplingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.SyncSamplingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.SyncSamplingNetwork_removeNode(self, nodeAddress) - - def percentBandwidth(self): - return _mscl.SyncSamplingNetwork_percentBandwidth(self) - - def ok(self): - return _mscl.SyncSamplingNetwork_ok(self) - - def refresh(self): - return _mscl.SyncSamplingNetwork_refresh(self) - - def lossless(self, *args): - return _mscl.SyncSamplingNetwork_lossless(self, *args) - - def communicationProtocol(self, *args): - return _mscl.SyncSamplingNetwork_communicationProtocol(self, *args) - - def applyConfiguration(self): - return _mscl.SyncSamplingNetwork_applyConfiguration(self) - - def startSampling(self, *args): - return _mscl.SyncSamplingNetwork_startSampling(self, *args) - - def startSampling_noBeacon(self): - return _mscl.SyncSamplingNetwork_startSampling_noBeacon(self) - - def getNodeNetworkInfo(self, nodeAddress): - return _mscl.SyncSamplingNetwork_getNodeNetworkInfo(self, nodeAddress) - __swig_destroy__ = _mscl.delete_SyncSamplingNetwork - -# Register SyncSamplingNetwork in _mscl: -_mscl.SyncSamplingNetwork_swigregister(SyncSamplingNetwork) - -class NodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_NodeFeatures - - def normalizeNumSweeps(self, sweeps): - return _mscl.NodeFeatures_normalizeNumSweeps(self, sweeps) - - def normalizeTimeBetweenBursts(self, time): - return _mscl.NodeFeatures_normalizeTimeBetweenBursts(self, time) - - def channels(self): - return _mscl.NodeFeatures_channels(self) - - def channelGroups(self): - return _mscl.NodeFeatures_channelGroups(self) - - def channelType(self, channelNumber): - return _mscl.NodeFeatures_channelType(self, channelNumber) - - def supportsChannelSetting(self, setting, mask): - return _mscl.NodeFeatures_supportsChannelSetting(self, setting, mask) - - def supportsInputRangePerExcitationVoltage(self): - return _mscl.NodeFeatures_supportsInputRangePerExcitationVoltage(self) - - def supportsHardwareOffset(self): - return _mscl.NodeFeatures_supportsHardwareOffset(self) - - def supportsAntiAliasingFilter(self): - return _mscl.NodeFeatures_supportsAntiAliasingFilter(self) - - def supportsLowPassFilter(self): - return _mscl.NodeFeatures_supportsLowPassFilter(self) - - def supportsHighPassFilter(self): - return _mscl.NodeFeatures_supportsHighPassFilter(self) - - def supportsGaugeFactor(self): - return _mscl.NodeFeatures_supportsGaugeFactor(self) - - def supportsGaugeResistance(self): - return _mscl.NodeFeatures_supportsGaugeResistance(self) - - def supportsNumActiveGauges(self): - return _mscl.NodeFeatures_supportsNumActiveGauges(self) - - def supportsLostBeaconTimeout(self): - return _mscl.NodeFeatures_supportsLostBeaconTimeout(self) - - def supportsPullUpResistor(self): - return _mscl.NodeFeatures_supportsPullUpResistor(self) - - def supportsFilterSettlingTime(self): - return _mscl.NodeFeatures_supportsFilterSettlingTime(self) - - def supportsThermocoupleType(self): - return _mscl.NodeFeatures_supportsThermocoupleType(self) - - def supportsTempSensorOptions(self): - return _mscl.NodeFeatures_supportsTempSensorOptions(self) - - def supportsDebounceFilter(self): - return _mscl.NodeFeatures_supportsDebounceFilter(self) - - def supportsFatigueConfig(self): - return _mscl.NodeFeatures_supportsFatigueConfig(self) - - def supportsYoungsModConfig(self): - return _mscl.NodeFeatures_supportsYoungsModConfig(self) - - def supportsPoissonsRatioConfig(self): - return _mscl.NodeFeatures_supportsPoissonsRatioConfig(self) - - def supportsFatigueDebugModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueDebugModeConfig(self) - - def supportsFatigueModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueModeConfig(self) - - def supportsHistogramConfig(self): - return _mscl.NodeFeatures_supportsHistogramConfig(self) - - def supportsHistogramRateConfig(self): - return _mscl.NodeFeatures_supportsHistogramRateConfig(self) - - def supportsHistogramEnableConfig(self): - return _mscl.NodeFeatures_supportsHistogramEnableConfig(self) - - def supportsActivitySense(self): - return _mscl.NodeFeatures_supportsActivitySense(self) - - def supportsAutoBalance(self): - return _mscl.NodeFeatures_supportsAutoBalance(self) - - def supportsLegacyShuntCal(self): - return _mscl.NodeFeatures_supportsLegacyShuntCal(self) - - def supportsAutoCal_shm(self): - return _mscl.NodeFeatures_supportsAutoCal_shm(self) - - def supportsAutoCal_shm201(self): - return _mscl.NodeFeatures_supportsAutoCal_shm201(self) - - def supportsAutoShuntCal(self): - return _mscl.NodeFeatures_supportsAutoShuntCal(self) - - def supportsGetFactoryCal(self): - return _mscl.NodeFeatures_supportsGetFactoryCal(self) - - def supportsLimitedDuration(self): - return _mscl.NodeFeatures_supportsLimitedDuration(self) - - def supportsEventTrigger(self): - return _mscl.NodeFeatures_supportsEventTrigger(self) - - def supportsDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsDiagnosticInfo(self) - - def supportsLoggedData(self): - return _mscl.NodeFeatures_supportsLoggedData(self) - - def supportsPoll(self): - return _mscl.NodeFeatures_supportsPoll(self) - - def supportsSensorDelayConfig(self): - return _mscl.NodeFeatures_supportsSensorDelayConfig(self) - - def supportsSensorDelayAlwaysOn(self): - return _mscl.NodeFeatures_supportsSensorDelayAlwaysOn(self) - - def supportsSensorOutputMode(self): - return _mscl.NodeFeatures_supportsSensorOutputMode(self) - - def supportsCfcFilterConfiguration(self): - return _mscl.NodeFeatures_supportsCfcFilterConfiguration(self) - - def supportsChannel(self, channelNumber): - return _mscl.NodeFeatures_supportsChannel(self, channelNumber) - - def supportsSamplingMode(self, samplingMode): - return _mscl.NodeFeatures_supportsSamplingMode(self, samplingMode) - - def supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.NodeFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsDataFormat(self, dataFormat): - return _mscl.NodeFeatures_supportsDataFormat(self, dataFormat) - - def supportsDefaultMode(self, mode): - return _mscl.NodeFeatures_supportsDefaultMode(self, mode) - - def supportsDataCollectionMethod(self, collectionMethod): - return _mscl.NodeFeatures_supportsDataCollectionMethod(self, collectionMethod) - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.NodeFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsDataMode(self, dataMode): - return _mscl.NodeFeatures_supportsDataMode(self, dataMode) - - def supportsTransducerType(self, transducerType): - return _mscl.NodeFeatures_supportsTransducerType(self, transducerType) - - def supportsFatigueMode(self, mode): - return _mscl.NodeFeatures_supportsFatigueMode(self, mode) - - def supportsInputRange(self, *args): - return _mscl.NodeFeatures_supportsInputRange(self, *args) - - def supportsCentisecondEventDuration(self): - return _mscl.NodeFeatures_supportsCentisecondEventDuration(self) - - def supportsGetDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsGetDiagnosticInfo(self) - - def supportsNonSyncLogWithTimestamps(self): - return _mscl.NodeFeatures_supportsNonSyncLogWithTimestamps(self) - - def supportsDerivedCategory(self, category): - return _mscl.NodeFeatures_supportsDerivedCategory(self, category) - - def supportsRawDataMode(self): - return _mscl.NodeFeatures_supportsRawDataMode(self) - - def supportsDerivedDataMode(self): - return _mscl.NodeFeatures_supportsDerivedDataMode(self) - - def supportsDerivedVelocityUnitConfig(self): - return _mscl.NodeFeatures_supportsDerivedVelocityUnitConfig(self) - - def supportsExcitationVoltageConfig(self): - return _mscl.NodeFeatures_supportsExcitationVoltageConfig(self) - - def supportsLowBatteryThresholdConfig(self): - return _mscl.NodeFeatures_supportsLowBatteryThresholdConfig(self) - - def maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode) - - def maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode) - - def maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels): - return _mscl.NodeFeatures_maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels) - - def maxFilterSettlingTime(self, rate): - return _mscl.NodeFeatures_maxFilterSettlingTime(self, rate) - - def minInactivityTimeout(self): - return _mscl.NodeFeatures_minInactivityTimeout(self) - - def minLostBeaconTimeout(self): - return _mscl.NodeFeatures_minLostBeaconTimeout(self) - - def maxLostBeaconTimeout(self): - return _mscl.NodeFeatures_maxLostBeaconTimeout(self) - - def minCheckRadioInterval(self): - return _mscl.NodeFeatures_minCheckRadioInterval(self) - - def maxCheckRadioInterval(self): - return _mscl.NodeFeatures_maxCheckRadioInterval(self) - - def minSweeps(self): - return _mscl.NodeFeatures_minSweeps(self) - - def maxSweeps(self, samplingMode, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweeps(self, samplingMode, dataMode, dataFormat, channels) - - def maxSweepsPerBurst(self, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweepsPerBurst(self, dataMode, dataFormat, channels) - - def minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol): - return _mscl.NodeFeatures_minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol) - - def minSensorDelay(self): - return _mscl.NodeFeatures_minSensorDelay(self) - - def maxSensorDelay(self): - return _mscl.NodeFeatures_maxSensorDelay(self) - - def defaultSensorDelay(self): - return _mscl.NodeFeatures_defaultSensorDelay(self) - - def maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate): - return _mscl.NodeFeatures_maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate) - - def normalizeEventDuration(self, duration): - return _mscl.NodeFeatures_normalizeEventDuration(self, duration) - - def normalizeSensorDelay(self, delay): - return _mscl.NodeFeatures_normalizeSensorDelay(self, delay) - - def numDamageAngles(self): - return _mscl.NodeFeatures_numDamageAngles(self) - - def numSnCurveSegments(self): - return _mscl.NodeFeatures_numSnCurveSegments(self) - - def numEventTriggers(self): - return _mscl.NodeFeatures_numEventTriggers(self) - - def defaultModes(self): - return _mscl.NodeFeatures_defaultModes(self) - - def dataCollectionMethods(self): - return _mscl.NodeFeatures_dataCollectionMethods(self) - - def dataFormats(self): - return _mscl.NodeFeatures_dataFormats(self) - - def samplingModes(self): - return _mscl.NodeFeatures_samplingModes(self) - - def sampleRates(self, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_sampleRates(self, samplingMode, dataCollectionMethod, dataMode) - - def derivedDataRates(self): - return _mscl.NodeFeatures_derivedDataRates(self) - - def transmitPowers(self, *args): - return _mscl.NodeFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.NodeFeatures_commProtocols(self) - - def sensorOutputModes(self): - return _mscl.NodeFeatures_sensorOutputModes(self) - - def cfcFilters(self): - return _mscl.NodeFeatures_cfcFilters(self) - - def histogramTransmitRates(self): - return _mscl.NodeFeatures_histogramTransmitRates(self) - - def fatigueModes(self): - return _mscl.NodeFeatures_fatigueModes(self) - - def antiAliasingFilters(self): - return _mscl.NodeFeatures_antiAliasingFilters(self) - - def lowPassFilters(self): - return _mscl.NodeFeatures_lowPassFilters(self) - - def highPassFilters(self): - return _mscl.NodeFeatures_highPassFilters(self) - - def storageLimitModes(self): - return _mscl.NodeFeatures_storageLimitModes(self) - - def inputRanges(self, *args): - return _mscl.NodeFeatures_inputRanges(self, *args) - - def dataModes(self): - return _mscl.NodeFeatures_dataModes(self) - - def transducerTypes(self): - return _mscl.NodeFeatures_transducerTypes(self) - - def channelsPerDerivedCategory(self): - return _mscl.NodeFeatures_channelsPerDerivedCategory(self) - - def excitationVoltages(self): - return _mscl.NodeFeatures_excitationVoltages(self) - - def adcVoltageInputType(self): - return _mscl.NodeFeatures_adcVoltageInputType(self) - - def maxTransmitPower(self, *args): - return _mscl.NodeFeatures_maxTransmitPower(self, *args) - - def minTransmitPower(self, *args): - return _mscl.NodeFeatures_minTransmitPower(self, *args) - -# Register NodeFeatures in _mscl: -_mscl.NodeFeatures_swigregister(NodeFeatures) - -class BaseStationFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_BaseStationFeatures - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.BaseStationFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.BaseStationFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsButtons(self): - return _mscl.BaseStationFeatures_supportsButtons(self) - - def supportsAnalogPairing(self): - return _mscl.BaseStationFeatures_supportsAnalogPairing(self) - - def supportsBeaconStatus(self): - return _mscl.BaseStationFeatures_supportsBeaconStatus(self) - - def supportsRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsRfSweepMode(self) - - def supportsCustomRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsCustomRfSweepMode(self) - - def buttonCount(self): - return _mscl.BaseStationFeatures_buttonCount(self) - - def analogPortCount(self): - return _mscl.BaseStationFeatures_analogPortCount(self) - - def transmitPowers(self, *args): - return _mscl.BaseStationFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.BaseStationFeatures_commProtocols(self) - - def maxTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_maxTransmitPower(self, region, commProtocol) - - def minTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_minTransmitPower(self, region, commProtocol) - -# Register BaseStationFeatures in _mscl: -_mscl.BaseStationFeatures_swigregister(BaseStationFeatures) - -class EulerAngles(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EulerAngles_swiginit(self, _mscl.new_EulerAngles(*args)) - - def asMipFieldValues(self): - return _mscl.EulerAngles_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.EulerAngles_appendMipFieldValues(self, appendTo) - - def roll(self): - return _mscl.EulerAngles_roll(self) - - def pitch(self): - return _mscl.EulerAngles_pitch(self) - - def yaw(self): - return _mscl.EulerAngles_yaw(self) - - def heading(self): - return _mscl.EulerAngles_heading(self) - __swig_destroy__ = _mscl.delete_EulerAngles - -# Register EulerAngles in _mscl: -_mscl.EulerAngles_swigregister(EulerAngles) - -class Quaternion(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Quaternion_swiginit(self, _mscl.new_Quaternion(*args)) - - def asMipFieldValues(self): - return _mscl.Quaternion_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Quaternion_appendMipFieldValues(self, appendTo) - - def normalize(self): - return _mscl.Quaternion_normalize(self) - - def q0(self): - return _mscl.Quaternion_q0(self) - - def q1(self): - return _mscl.Quaternion_q1(self) - - def q2(self): - return _mscl.Quaternion_q2(self) - - def q3(self): - return _mscl.Quaternion_q3(self) - __swig_destroy__ = _mscl.delete_Quaternion - -# Register Quaternion in _mscl: -_mscl.Quaternion_swigregister(Quaternion) - -class Rotation(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EULER_ANGLES = _mscl.Rotation_EULER_ANGLES - QUATERNION = _mscl.Rotation_QUATERNION - - def __init__(self, *args): - _mscl.Rotation_swiginit(self, _mscl.new_Rotation(*args)) - - @staticmethod - def FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - - @staticmethod - def FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - - def asEulerAngles(self): - return _mscl.Rotation_asEulerAngles(self) - - def asQuaternion(self): - return _mscl.Rotation_asQuaternion(self) - - def asMipFieldValues(self, includeFormat=True): - return _mscl.Rotation_asMipFieldValues(self, includeFormat) - - def appendMipFieldValues(self, appendTo, includeFormat=True): - return _mscl.Rotation_appendMipFieldValues(self, appendTo, includeFormat) - - def format(self): - return _mscl.Rotation_format(self) - __swig_destroy__ = _mscl.delete_Rotation - -# Register Rotation in _mscl: -_mscl.Rotation_swigregister(Rotation) - -def Rotation_FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - -def Rotation_FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - -class Vec3f(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Vec3f_swiginit(self, _mscl.new_Vec3f(*args)) - __swig_destroy__ = _mscl.delete_Vec3f - - def fromMipFieldValues(self, data, offset=0): - return _mscl.Vec3f_fromMipFieldValues(self, data, offset) - - def asMipFieldValues(self): - return _mscl.Vec3f_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Vec3f_appendMipFieldValues(self, appendTo) - - def x(self, *args): - return _mscl.Vec3f_x(self, *args) - - def y(self, *args): - return _mscl.Vec3f_y(self, *args) - - def z(self, *args): - return _mscl.Vec3f_z(self, *args) - -# Register Vec3f in _mscl: -_mscl.Vec3f_swigregister(Vec3f) - -ECEF = _mscl.ECEF -LLH_NED = _mscl.LLH_NED -LOCAL = _mscl.LOCAL -VEHICLE = _mscl.VEHICLE -class GeometricVector(Vec3f): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - - @staticmethod - def VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - - def __init__(self, *args): - _mscl.GeometricVector_swiginit(self, _mscl.new_GeometricVector(*args)) - __swig_destroy__ = _mscl.delete_GeometricVector - - def fromMipFieldValues_includesFrame(self, data, offset=0): - return _mscl.GeometricVector_fromMipFieldValues_includesFrame(self, data, offset) - - def asMipFieldValues_includeFrame(self): - return _mscl.GeometricVector_asMipFieldValues_includeFrame(self) - - def appendMipFieldValues_includeFrame(self, appendTo): - return _mscl.GeometricVector_appendMipFieldValues_includeFrame(self, appendTo) - referenceFrame = property(_mscl.GeometricVector_referenceFrame_get, _mscl.GeometricVector_referenceFrame_set) - - def north(self, *args): - return _mscl.GeometricVector_north(self, *args) - - def east(self, *args): - return _mscl.GeometricVector_east(self, *args) - - def down(self, *args): - return _mscl.GeometricVector_down(self, *args) - -# Register GeometricVector in _mscl: -_mscl.GeometricVector_swigregister(GeometricVector) - -def GeometricVector_VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - -def GeometricVector_VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - -class PositionOffset(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.PositionOffset_swiginit(self, _mscl.new_PositionOffset(*args)) - __swig_destroy__ = _mscl.delete_PositionOffset - -# Register PositionOffset in _mscl: -_mscl.PositionOffset_swigregister(PositionOffset) - -class Velocity(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Velocity_swiginit(self, _mscl.new_Velocity(*args)) - __swig_destroy__ = _mscl.delete_Velocity - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - - @staticmethod - def NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - - @staticmethod - def Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -# Register Velocity in _mscl: -_mscl.Velocity_swigregister(Velocity) - -def Velocity_ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - -def Velocity_NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - -def Velocity_Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -class Position(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - - def __init__(self, *args): - _mscl.Position_swiginit(self, _mscl.new_Position(*args)) - __swig_destroy__ = _mscl.delete_Position - referenceFrame = property(_mscl.Position_referenceFrame_get, _mscl.Position_referenceFrame_set) - - def latitude(self, *args): - return _mscl.Position_latitude(self, *args) - - def longitude(self, *args): - return _mscl.Position_longitude(self, *args) - - def altitude(self, *args): - return _mscl.Position_altitude(self, *args) - - def height(self, *args): - return _mscl.Position_height(self, *args) - - def x(self, *args): - return _mscl.Position_x(self, *args) - - def y(self, *args): - return _mscl.Position_y(self, *args) - - def z(self, *args): - return _mscl.Position_z(self, *args) - -# Register Position in _mscl: -_mscl.Position_swigregister(Position) - -def Position_LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - -def Position_ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - -class GeometricUncertainty(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeometricUncertainty_swiginit(self, _mscl.new_GeometricUncertainty(*args)) - __swig_destroy__ = _mscl.delete_GeometricUncertainty - -# Register GeometricUncertainty in _mscl: -_mscl.GeometricUncertainty_swigregister(GeometricUncertainty) - -class MipModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_3dm_dh3 = _mscl.MipModels_node_3dm_dh3 - node_3dm_gx3_15 = _mscl.MipModels_node_3dm_gx3_15 - node_3dm_gx3_25 = _mscl.MipModels_node_3dm_gx3_25 - node_3dm_gx3_35 = _mscl.MipModels_node_3dm_gx3_35 - node_3dm_gx3_45 = _mscl.MipModels_node_3dm_gx3_45 - node_3dm_rq1_45_lt = _mscl.MipModels_node_3dm_rq1_45_lt - node_3dm_gx4_15 = _mscl.MipModels_node_3dm_gx4_15 - node_3dm_gx4_25 = _mscl.MipModels_node_3dm_gx4_25 - node_3dm_gx4_45 = _mscl.MipModels_node_3dm_gx4_45 - node_3dm_rq1_45_st = _mscl.MipModels_node_3dm_rq1_45_st - node_mv5_ar = _mscl.MipModels_node_mv5_ar - node_3dm_gx5_10 = _mscl.MipModels_node_3dm_gx5_10 - node_3dm_gx5_15 = _mscl.MipModels_node_3dm_gx5_15 - node_3dm_gx5_25 = _mscl.MipModels_node_3dm_gx5_25 - node_3dm_gx5_35 = _mscl.MipModels_node_3dm_gx5_35 - node_3dm_gx5_45 = _mscl.MipModels_node_3dm_gx5_45 - node_3dm_cv5_10 = _mscl.MipModels_node_3dm_cv5_10 - node_3dm_cv5_15 = _mscl.MipModels_node_3dm_cv5_15 - node_3dm_cv5_25 = _mscl.MipModels_node_3dm_cv5_25 - node_3dm_cv5_45 = _mscl.MipModels_node_3dm_cv5_45 - node_3dm_gq4_45 = _mscl.MipModels_node_3dm_gq4_45 - node_3dm_cx5_45 = _mscl.MipModels_node_3dm_cx5_45 - node_3dm_cx5_35 = _mscl.MipModels_node_3dm_cx5_35 - node_3dm_cx5_25 = _mscl.MipModels_node_3dm_cx5_25 - node_3dm_cx5_15 = _mscl.MipModels_node_3dm_cx5_15 - node_3dm_cx5_10 = _mscl.MipModels_node_3dm_cx5_10 - node_3dm_cl5_15 = _mscl.MipModels_node_3dm_cl5_15 - node_3dm_cl5_25 = _mscl.MipModels_node_3dm_cl5_25 - node_3dm_gq7 = _mscl.MipModels_node_3dm_gq7 - node_3dm_rtk = _mscl.MipModels_node_3dm_rtk - node_3dm_cv7_ahrs = _mscl.MipModels_node_3dm_cv7_ahrs - node_3dm_cv7_ar = _mscl.MipModels_node_3dm_cv7_ar - node_3dm_gv7_ahrs = _mscl.MipModels_node_3dm_gv7_ahrs - node_3dm_gv7_ar = _mscl.MipModels_node_3dm_gv7_ar - node_3dm_gv7_ins = _mscl.MipModels_node_3dm_gv7_ins - node_3dm_cv7_ins = _mscl.MipModels_node_3dm_cv7_ins - node_3dm_cv7_gnss_ins = _mscl.MipModels_node_3dm_cv7_gnss_ins - placeholder_matchAll = _mscl.MipModels_placeholder_matchAll - rtk_v1 = _mscl.MipModels_rtk_v1 - rtk_v2 = _mscl.MipModels_rtk_v2 - model_3dm_dh3 = _mscl.MipModels_model_3dm_dh3 - model_3dm_gx3_15 = _mscl.MipModels_model_3dm_gx3_15 - model_3dm_gx3_25 = _mscl.MipModels_model_3dm_gx3_25 - model_3dm_gx3_35 = _mscl.MipModels_model_3dm_gx3_35 - model_3dm_gx3_45 = _mscl.MipModels_model_3dm_gx3_45 - model_3dm_rq1_45_lt = _mscl.MipModels_model_3dm_rq1_45_lt - model_3dm_gx4_15 = _mscl.MipModels_model_3dm_gx4_15 - model_3dm_gx4_25 = _mscl.MipModels_model_3dm_gx4_25 - model_3dm_gx4_45 = _mscl.MipModels_model_3dm_gx4_45 - model_3dm_rq1_45_st = _mscl.MipModels_model_3dm_rq1_45_st - model_mv5_ar = _mscl.MipModels_model_mv5_ar - model_3dm_gx5_10 = _mscl.MipModels_model_3dm_gx5_10 - model_3dm_gx5_15 = _mscl.MipModels_model_3dm_gx5_15 - model_3dm_gx5_25 = _mscl.MipModels_model_3dm_gx5_25 - model_3dm_gx5_35 = _mscl.MipModels_model_3dm_gx5_35 - model_3dm_gx5_45 = _mscl.MipModels_model_3dm_gx5_45 - model_3dm_cv5_10 = _mscl.MipModels_model_3dm_cv5_10 - model_3dm_cv5_15 = _mscl.MipModels_model_3dm_cv5_15 - model_3dm_cv5_25 = _mscl.MipModels_model_3dm_cv5_25 - model_3dm_cv5_45 = _mscl.MipModels_model_3dm_cv5_45 - model_3dm_gq4_45 = _mscl.MipModels_model_3dm_gq4_45 - model_3dm_cx5_45 = _mscl.MipModels_model_3dm_cx5_45 - model_3dm_cx5_35 = _mscl.MipModels_model_3dm_cx5_35 - model_3dm_cx5_25 = _mscl.MipModels_model_3dm_cx5_25 - model_3dm_cx5_15 = _mscl.MipModels_model_3dm_cx5_15 - model_3dm_cx5_10 = _mscl.MipModels_model_3dm_cx5_10 - model_3dm_cl5_15 = _mscl.MipModels_model_3dm_cl5_15 - model_3dm_cl5_25 = _mscl.MipModels_model_3dm_cl5_25 - model_3dm_gq7 = _mscl.MipModels_model_3dm_gq7 - model_3dm_rtk_v1 = _mscl.MipModels_model_3dm_rtk_v1 - model_3dm_rtk = _mscl.MipModels_model_3dm_rtk - model_3dm_cv7_ahrs = _mscl.MipModels_model_3dm_cv7_ahrs - model_3dm_cv7_ar = _mscl.MipModels_model_3dm_cv7_ar - model_3dm_gv7_ahrs = _mscl.MipModels_model_3dm_gv7_ahrs - model_3dm_gv7_ar = _mscl.MipModels_model_3dm_gv7_ar - model_3dm_gv7_ins = _mscl.MipModels_model_3dm_gv7_ins - model_3dm_cv7_ins = _mscl.MipModels_model_3dm_cv7_ins - model_3dm_cv7_gnss_ins = _mscl.MipModels_model_3dm_cv7_gnss_ins - - @staticmethod - def modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - - @staticmethod - def modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - - @staticmethod - def modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - - @staticmethod - def nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - - @staticmethod - def modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - - @staticmethod - def nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - - @staticmethod - def modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - - @staticmethod - def stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - - def __init__(self): - _mscl.MipModels_swiginit(self, _mscl.new_MipModels()) - __swig_destroy__ = _mscl.delete_MipModels - -# Register MipModels in _mscl: -_mscl.MipModels_swigregister(MipModels) - -def MipModels_modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - -def MipModels_modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - -def MipModels_modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - -def MipModels_nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - -def MipModels_modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - -def MipModels_nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - -def MipModels_modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - -def MipModels_stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - -class MipModel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipModel_swiginit(self, _mscl.new_MipModel(*args)) - - def equals(self, compare): - return _mscl.MipModel_equals(self, compare) - - def __str__(self): - return _mscl.MipModel___str__(self) - - def nodeModel(self): - return _mscl.MipModel_nodeModel(self) - - def modifier(self): - return _mscl.MipModel_modifier(self) - - def modelNumber(self): - return _mscl.MipModel_modelNumber(self) - - def baseModel(self): - return _mscl.MipModel_baseModel(self) - __swig_destroy__ = _mscl.delete_MipModel - -# Register MipModel in _mscl: -_mscl.MipModel_swigregister(MipModel) -MipModel.mip_model_none = _mscl.cvar.MipModel_mip_model_none -MipModel.mip_model_3dm_dh3 = _mscl.cvar.MipModel_mip_model_3dm_dh3 -MipModel.mip_model_3dm_gx3_15 = _mscl.cvar.MipModel_mip_model_3dm_gx3_15 -MipModel.mip_model_3dm_gx3_25 = _mscl.cvar.MipModel_mip_model_3dm_gx3_25 -MipModel.mip_model_3dm_gx3_35 = _mscl.cvar.MipModel_mip_model_3dm_gx3_35 -MipModel.mip_model_3dm_gx3_45 = _mscl.cvar.MipModel_mip_model_3dm_gx3_45 -MipModel.mip_model_3dm_rq1_45_lt = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_lt -MipModel.mip_model_3dm_rq1_45_st = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_st -MipModel.mip_model_3dm_gx4_15 = _mscl.cvar.MipModel_mip_model_3dm_gx4_15 -MipModel.mip_model_3dm_gx4_25 = _mscl.cvar.MipModel_mip_model_3dm_gx4_25 -MipModel.mip_model_3dm_gx4_45 = _mscl.cvar.MipModel_mip_model_3dm_gx4_45 -MipModel.mip_model_mv5_ar = _mscl.cvar.MipModel_mip_model_mv5_ar -MipModel.mip_model_3dm_gx5_10 = _mscl.cvar.MipModel_mip_model_3dm_gx5_10 -MipModel.mip_model_3dm_gx5_15 = _mscl.cvar.MipModel_mip_model_3dm_gx5_15 -MipModel.mip_model_3dm_gx5_25 = _mscl.cvar.MipModel_mip_model_3dm_gx5_25 -MipModel.mip_model_3dm_gx5_35 = _mscl.cvar.MipModel_mip_model_3dm_gx5_35 -MipModel.mip_model_3dm_gx5_45 = _mscl.cvar.MipModel_mip_model_3dm_gx5_45 -MipModel.mip_model_3dm_cv5_10 = _mscl.cvar.MipModel_mip_model_3dm_cv5_10 -MipModel.mip_model_3dm_cv5_15 = _mscl.cvar.MipModel_mip_model_3dm_cv5_15 -MipModel.mip_model_3dm_cv5_25 = _mscl.cvar.MipModel_mip_model_3dm_cv5_25 -MipModel.mip_model_3dm_cv5_45 = _mscl.cvar.MipModel_mip_model_3dm_cv5_45 -MipModel.mip_model_3dm_gq4_45 = _mscl.cvar.MipModel_mip_model_3dm_gq4_45 -MipModel.mip_model_3dm_cx5_45 = _mscl.cvar.MipModel_mip_model_3dm_cx5_45 -MipModel.mip_model_3dm_cx5_35 = _mscl.cvar.MipModel_mip_model_3dm_cx5_35 -MipModel.mip_model_3dm_cx5_25 = _mscl.cvar.MipModel_mip_model_3dm_cx5_25 -MipModel.mip_model_3dm_cx5_15 = _mscl.cvar.MipModel_mip_model_3dm_cx5_15 -MipModel.mip_model_3dm_cx5_10 = _mscl.cvar.MipModel_mip_model_3dm_cx5_10 -MipModel.mip_model_3dm_cl5_15 = _mscl.cvar.MipModel_mip_model_3dm_cl5_15 -MipModel.mip_model_3dm_cl5_25 = _mscl.cvar.MipModel_mip_model_3dm_cl5_25 -MipModel.mip_model_3dm_gq7 = _mscl.cvar.MipModel_mip_model_3dm_gq7 -MipModel.mip_model_3dm_rtk_v1 = _mscl.cvar.MipModel_mip_model_3dm_rtk_v1 -MipModel.mip_model_3dm_rtk = _mscl.cvar.MipModel_mip_model_3dm_rtk -MipModel.mip_model_3dm_cv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_cv7_ahrs -MipModel.mip_model_3dm_cv7_ar = _mscl.cvar.MipModel_mip_model_3dm_cv7_ar -MipModel.mip_model_3dm_gv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_gv7_ahrs -MipModel.mip_model_3dm_gv7_ar = _mscl.cvar.MipModel_mip_model_3dm_gv7_ar -MipModel.mip_model_3dm_gv7_ins = _mscl.cvar.MipModel_mip_model_3dm_gv7_ins -MipModel.mip_model_3dm_cv7_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_ins -MipModel.mip_model_3dm_cv7_gnss_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_gnss_ins - -class DisplacementModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_digitalDemod = _mscl.DisplacementModels_node_digitalDemod - - def __init__(self): - _mscl.DisplacementModels_swiginit(self, _mscl.new_DisplacementModels()) - __swig_destroy__ = _mscl.delete_DisplacementModels - -# Register DisplacementModels in _mscl: -_mscl.DisplacementModels_swigregister(DisplacementModels) - -class MipTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CLASS_AHRS_IMU = _mscl.MipTypes_CLASS_AHRS_IMU - CLASS_GNSS = _mscl.MipTypes_CLASS_GNSS - CLASS_ESTFILTER = _mscl.MipTypes_CLASS_ESTFILTER - CLASS_DISPLACEMENT = _mscl.MipTypes_CLASS_DISPLACEMENT - CLASS_GNSS1 = _mscl.MipTypes_CLASS_GNSS1 - CLASS_GNSS2 = _mscl.MipTypes_CLASS_GNSS2 - CLASS_GNSS3 = _mscl.MipTypes_CLASS_GNSS3 - CLASS_RTK = _mscl.MipTypes_CLASS_RTK - CLASS_GNSS4 = _mscl.MipTypes_CLASS_GNSS4 - CLASS_GNSS5 = _mscl.MipTypes_CLASS_GNSS5 - CLASS_SYSTEM = _mscl.MipTypes_CLASS_SYSTEM - USE_NEW_SETTINGS = _mscl.MipTypes_USE_NEW_SETTINGS - READ_BACK_CURRENT_SETTINGS = _mscl.MipTypes_READ_BACK_CURRENT_SETTINGS - SAVE_CURRENT_SETTINGS = _mscl.MipTypes_SAVE_CURRENT_SETTINGS - LOAD_STARTUP_SETTINGS = _mscl.MipTypes_LOAD_STARTUP_SETTINGS - RESET_TO_DEFAULT = _mscl.MipTypes_RESET_TO_DEFAULT - USE_NEW_SETTINGS_NO_ACKNACK = _mscl.MipTypes_USE_NEW_SETTINGS_NO_ACKNACK - DISABLED = _mscl.MipTypes_DISABLED - ENABLED = _mscl.MipTypes_ENABLED - TIME_FRAME_WEEKS = _mscl.MipTypes_TIME_FRAME_WEEKS - TIME_FRAME_SECONDS = _mscl.MipTypes_TIME_FRAME_SECONDS - CMD_PING = _mscl.MipTypes_CMD_PING - CMD_SET_IDLE = _mscl.MipTypes_CMD_SET_IDLE - CMD_GET_DEVICE_INFO = _mscl.MipTypes_CMD_GET_DEVICE_INFO - CMD_GET_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_DESCRIPTOR_SETS - CMD_BUILT_IN_TEST = _mscl.MipTypes_CMD_BUILT_IN_TEST - CMD_RESUME = _mscl.MipTypes_CMD_RESUME - CMD_GET_EXT_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_EXT_DESCRIPTOR_SETS - CMD_COMM_PORT_SPEED = _mscl.MipTypes_CMD_COMM_PORT_SPEED - CMD_GPS_TIME_UPDATE = _mscl.MipTypes_CMD_GPS_TIME_UPDATE - CMD_RESET = _mscl.MipTypes_CMD_RESET - CMD_POLL_SENSOR_DATA = _mscl.MipTypes_CMD_POLL_SENSOR_DATA - CMD_POLL_GNSS_DATA = _mscl.MipTypes_CMD_POLL_GNSS_DATA - CMD_POLL_EF_DATA = _mscl.MipTypes_CMD_POLL_EF_DATA - CMD_GET_SENSOR_RATE_BASE = _mscl.MipTypes_CMD_GET_SENSOR_RATE_BASE - CMD_GET_GNSS_RATE_BASE = _mscl.MipTypes_CMD_GET_GNSS_RATE_BASE - CMD_GET_EF_RATE_BASE = _mscl.MipTypes_CMD_GET_EF_RATE_BASE - CMD_SENSOR_MESSAGE_FORMAT = _mscl.MipTypes_CMD_SENSOR_MESSAGE_FORMAT - CMD_GNSS_MESSAGE_FORMAT = _mscl.MipTypes_CMD_GNSS_MESSAGE_FORMAT - CMD_EF_MESSAGE_FORMAT = _mscl.MipTypes_CMD_EF_MESSAGE_FORMAT - CMD_NMEA_MESSAGE_FORMAT = _mscl.MipTypes_CMD_NMEA_MESSAGE_FORMAT - CMD_POLL = _mscl.MipTypes_CMD_POLL - CMD_GET_BASE_RATE = _mscl.MipTypes_CMD_GET_BASE_RATE - CMD_MESSAGE_FORMAT = _mscl.MipTypes_CMD_MESSAGE_FORMAT - CMD_FACTORY_STREAMING = _mscl.MipTypes_CMD_FACTORY_STREAMING - CMD_CONTINUOUS_DATA_STREAM = _mscl.MipTypes_CMD_CONTINUOUS_DATA_STREAM - CMD_RAW_RTCM_2_3_MESSAGE = _mscl.MipTypes_CMD_RAW_RTCM_2_3_MESSAGE - CMD_GNSS_CONSTELLATION_SETTINGS = _mscl.MipTypes_CMD_GNSS_CONSTELLATION_SETTINGS - CMD_GNSS_SBAS_SETTINGS = _mscl.MipTypes_CMD_GNSS_SBAS_SETTINGS - CMD_GNSS_ASSIST_FIX_CONTROL = _mscl.MipTypes_CMD_GNSS_ASSIST_FIX_CONTROL - CMD_GNSS_ASSIST_TIME_UPDATE = _mscl.MipTypes_CMD_GNSS_ASSIST_TIME_UPDATE - CMD_PPS_SOURCE = _mscl.MipTypes_CMD_PPS_SOURCE - CMD_EVENT_SUPPORT = _mscl.MipTypes_CMD_EVENT_SUPPORT - CMD_EVENT_CONTROL = _mscl.MipTypes_CMD_EVENT_CONTROL - CMD_EVENT_TRIGGER_STATUS = _mscl.MipTypes_CMD_EVENT_TRIGGER_STATUS - CMD_EVENT_ACTION_STATUS = _mscl.MipTypes_CMD_EVENT_ACTION_STATUS - CMD_EVENT_TRIGGER_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_TRIGGER_CONFIGURATION - CMD_EVENT_ACTION_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_ACTION_CONFIGURATION - CMD_SAVE_STARTUP_SETTINGS = _mscl.MipTypes_CMD_SAVE_STARTUP_SETTINGS - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM - CMD_GPS_DYNAMICS_MODE = _mscl.MipTypes_CMD_GPS_DYNAMICS_MODE - CMD_SENSOR_SIG_COND_SETTINGS = _mscl.MipTypes_CMD_SENSOR_SIG_COND_SETTINGS - CMD_SENSOR_TIMESTAMP = _mscl.MipTypes_CMD_SENSOR_TIMESTAMP - CMD_ACCEL_BIAS = _mscl.MipTypes_CMD_ACCEL_BIAS - CMD_GYRO_BIAS = _mscl.MipTypes_CMD_GYRO_BIAS - CMD_CAP_GYRO_BIAS = _mscl.MipTypes_CMD_CAP_GYRO_BIAS - CMD_MAG_HARD_IRON_OFFSET = _mscl.MipTypes_CMD_MAG_HARD_IRON_OFFSET - CMD_MAG_SOFT_IRON_MATRIX = _mscl.MipTypes_CMD_MAG_SOFT_IRON_MATRIX - CMD_CF_REALIGN_UP = _mscl.MipTypes_CMD_CF_REALIGN_UP - CMD_CF_REALIGN_NORTH = _mscl.MipTypes_CMD_CF_REALIGN_NORTH - CMD_CONING_SCULLING = _mscl.MipTypes_CMD_CONING_SCULLING - CMD_UART_BAUD_RATE = _mscl.MipTypes_CMD_UART_BAUD_RATE - CMD_GPIO_CONFIGURATION = _mscl.MipTypes_CMD_GPIO_CONFIGURATION - CMD_GPIO_STATE = _mscl.MipTypes_CMD_GPIO_STATE - CMD_ODOMETER_SETTINGS = _mscl.MipTypes_CMD_ODOMETER_SETTINGS - CMD_LOWPASS_FILTER_SETTINGS = _mscl.MipTypes_CMD_LOWPASS_FILTER_SETTINGS - CMD_COMPLEMENTARY_FILTER_SETTINGS = _mscl.MipTypes_CMD_COMPLEMENTARY_FILTER_SETTINGS - CMD_SENSOR_RANGE = _mscl.MipTypes_CMD_SENSOR_RANGE - CMD_SUPPORTED_SENSOR_RANGES = _mscl.MipTypes_CMD_SUPPORTED_SENSOR_RANGES - CMD_LOWPASS_ANTIALIASING_FILTER = _mscl.MipTypes_CMD_LOWPASS_ANTIALIASING_FILTER - CMD_DATA_STREAM_FORMAT = _mscl.MipTypes_CMD_DATA_STREAM_FORMAT - CMD_POWER_STATES = _mscl.MipTypes_CMD_POWER_STATES - CMD_GPS_STARTUP_SETTINGS = _mscl.MipTypes_CMD_GPS_STARTUP_SETTINGS - CMD_DEVICE_STATUS = _mscl.MipTypes_CMD_DEVICE_STATUS - CMD_EF_RESET_FILTER = _mscl.MipTypes_CMD_EF_RESET_FILTER - CMD_EF_INIT_ATTITUDE = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE - CMD_EF_INIT_HEADING = _mscl.MipTypes_CMD_EF_INIT_HEADING - CMD_EF_INIT_ATTITUDE_FROM_AHRS = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE_FROM_AHRS - CMD_EF_RUN_FILTER = _mscl.MipTypes_CMD_EF_RUN_FILTER - CMD_EF_VEHIC_DYNAMICS_MODE = _mscl.MipTypes_CMD_EF_VEHIC_DYNAMICS_MODE - CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER - CMD_EF_SENS_VEHIC_FRAME_OFFSET = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_OFFSET - CMD_EF_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_ANTENNA_OFFSET - CMD_EF_BIAS_EST_CTRL = _mscl.MipTypes_CMD_EF_BIAS_EST_CTRL - CMD_EF_GNSS_SRC_CTRL = _mscl.MipTypes_CMD_EF_GNSS_SRC_CTRL - CMD_EF_EXTERN_GNSS_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_GNSS_UPDATE - CMD_EF_EXTERN_HEADING_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_HEADING_UPDATE - CMD_EF_HEADING_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_HEADING_UPDATE_CTRL - CMD_EF_AUTO_INIT_CTRL = _mscl.MipTypes_CMD_EF_AUTO_INIT_CTRL - CMD_EF_ACCEL_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_ACCEL_WHT_NSE_STD_DEV - CMD_EF_GYRO_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_GYRO_WHT_NSE_STD_DEV - CMD_EF_ACCEL_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_ACCEL_BIAS_MODEL_PARAMS - CMD_EF_GYRO_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_GYRO_BIAS_MODEL_PARAMS - CMD_EF_ZERO_VEL_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_VEL_UPDATE_CTRL - CMD_EF_EXT_HEADING_UPDATE_TS = _mscl.MipTypes_CMD_EF_EXT_HEADING_UPDATE_TS - CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL - CMD_EF_TARE_ORIENT = _mscl.MipTypes_CMD_EF_TARE_ORIENT - CMD_EF_CMDED_ZERO_VEL_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_VEL_UPDATE - CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE - CMD_EF_SET_REF_POSITION = _mscl.MipTypes_CMD_EF_SET_REF_POSITION - CMD_EF_MAG_CAPTURE_AUTO_CAL = _mscl.MipTypes_CMD_EF_MAG_CAPTURE_AUTO_CAL - CMD_EF_GRAVITY_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_STD_DEV - CMD_EF_PRESS_ALT_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_PRESS_ALT_NOISE_STD_DEV - CMD_EF_GRAVITY_NOISE_MINIMUM = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_MINIMUM - CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE - CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE - CMD_EF_ENABLE_DISABLE_MEASUREMENTS = _mscl.MipTypes_CMD_EF_ENABLE_DISABLE_MEASUREMENTS - CMD_EF_MAG_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_MAG_NOISE_STD_DEV - CMD_EF_DECLINATION_SRC = _mscl.MipTypes_CMD_EF_DECLINATION_SRC - CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE - CMD_EF_ALTITUDE_AID_CTRL = _mscl.MipTypes_CMD_EF_ALTITUDE_AID_CTRL - CMD_EF_PITCH_ROLL_AID_CTRL = _mscl.MipTypes_CMD_EF_PITCH_ROLL_AID_CTRL - CMD_EF_INCLINATION_SRC = _mscl.MipTypes_CMD_EF_INCLINATION_SRC - CMD_EF_FIELD_MAGNITUDE_SRC = _mscl.MipTypes_CMD_EF_FIELD_MAGNITUDE_SRC - CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM - CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT - CMD_EF_AIDING_MEASUREMENT_ENABLE = _mscl.MipTypes_CMD_EF_AIDING_MEASUREMENT_ENABLE - CMD_EF_INITIALIZATION_CONFIG = _mscl.MipTypes_CMD_EF_INITIALIZATION_CONFIG - CMD_EF_ADAPTIVE_FILTER_OPTIONS = _mscl.MipTypes_CMD_EF_ADAPTIVE_FILTER_OPTIONS - CMD_EF_MULTI_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_MULTI_ANTENNA_OFFSET - CMD_EF_RELATIVE_POSITION_REF = _mscl.MipTypes_CMD_EF_RELATIVE_POSITION_REF - CMD_EF_LEVER_ARM_OFFSET_REF = _mscl.MipTypes_CMD_EF_LEVER_ARM_OFFSET_REF - CMD_EF_EXTERN_SPEED_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_SPEED_UPDATE - CMD_EF_SPEED_MEASUREMENT_OFFSET = _mscl.MipTypes_CMD_EF_SPEED_MEASUREMENT_OFFSET - CMD_EF_VERTICAL_GYRO_CONSTRAINT = _mscl.MipTypes_CMD_EF_VERTICAL_GYRO_CONSTRAINT - CMD_EF_WHEELED_VEHICLE_CONSTRAINT = _mscl.MipTypes_CMD_EF_WHEELED_VEHICLE_CONSTRAINT - CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL = _mscl.MipTypes_CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL - CMD_GNSS_RECEIVER_INFO = _mscl.MipTypes_CMD_GNSS_RECEIVER_INFO - CMD_GNSS_SIGNAL_CONFIG = _mscl.MipTypes_CMD_GNSS_SIGNAL_CONFIG - CMD_GNSS_SPARTN_CONFIG = _mscl.MipTypes_CMD_GNSS_SPARTN_CONFIG - CMD_GNSS_RTK_CONFIG = _mscl.MipTypes_CMD_GNSS_RTK_CONFIG - CMD_INTERFACE_CONTROL = _mscl.MipTypes_CMD_INTERFACE_CONTROL - CMD_COMMUNICATION_MODE = _mscl.MipTypes_CMD_COMMUNICATION_MODE - CMD_HARDWARE_CTRL = _mscl.MipTypes_CMD_HARDWARE_CTRL - CMD_GET_ANALOG_DISPLACEMENT_CALS = _mscl.MipTypes_CMD_GET_ANALOG_DISPLACEMENT_CALS - CMD_DISPLACEMENT_OUTPUT_RATE = _mscl.MipTypes_CMD_DISPLACEMENT_OUTPUT_RATE - CMD_DISPLACEMENT_DEVICE_TIME = _mscl.MipTypes_CMD_DISPLACEMENT_DEVICE_TIME - CMD_RTK_DEVICE_STATUS_FLAGS = _mscl.MipTypes_CMD_RTK_DEVICE_STATUS_FLAGS - CMD_RTK_ACTIVATION_CODE = _mscl.MipTypes_CMD_RTK_ACTIVATION_CODE - CMD_AIDING_FRAME_CONFIG = _mscl.MipTypes_CMD_AIDING_FRAME_CONFIG - CMD_AIDING_ECHO_CONTROL = _mscl.MipTypes_CMD_AIDING_ECHO_CONTROL - CMD_AIDING_POS_ECEF = _mscl.MipTypes_CMD_AIDING_POS_ECEF - CMD_AIDING_POS_LLH = _mscl.MipTypes_CMD_AIDING_POS_LLH - CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID - CMD_AIDING_VEL_ECEF = _mscl.MipTypes_CMD_AIDING_VEL_ECEF - CMD_AIDING_VEL_NED = _mscl.MipTypes_CMD_AIDING_VEL_NED - CMD_AIDING_VEL_BODY_FRAME = _mscl.MipTypes_CMD_AIDING_VEL_BODY_FRAME - CMD_AIDING_HEADING_TRUE = _mscl.MipTypes_CMD_AIDING_HEADING_TRUE - CMD_AIDING_MAGNETIC_FIELD = _mscl.MipTypes_CMD_AIDING_MAGNETIC_FIELD - CMD_AIDING_PRESSURE = _mscl.MipTypes_CMD_AIDING_PRESSURE - CH_FIELD_SENSOR_RAW_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_ACCEL_VEC - CH_FIELD_SENSOR_RAW_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_GYRO_VEC - CH_FIELD_SENSOR_RAW_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_MAG_VEC - CH_FIELD_SENSOR_SCALED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_ACCEL_VEC - CH_FIELD_SENSOR_SCALED_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_GYRO_VEC - CH_FIELD_SENSOR_SCALED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_MAG_VEC - CH_FIELD_SENSOR_DELTA_THETA_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_THETA_VEC - CH_FIELD_SENSOR_DELTA_VELOCITY_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_VELOCITY_VEC - CH_FIELD_SENSOR_ORIENTATION_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_MATRIX - CH_FIELD_SENSOR_ORIENTATION_QUATERNION = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_QUATERNION - CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX - CH_FIELD_SENSOR_EULER_ANGLES = _mscl.MipTypes_CH_FIELD_SENSOR_EULER_ANGLES - CH_FIELD_SENSOR_INTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_INTERNAL_TIMESTAMP - CH_FIELD_SENSOR_BEACONED_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_BEACONED_TIMESTAMP - CH_FIELD_SENSOR_STABILIZED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_MAG_VEC - CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC - CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP - CH_FIELD_SENSOR_TEMPERATURE_STATISTICS = _mscl.MipTypes_CH_FIELD_SENSOR_TEMPERATURE_STATISTICS - CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE - CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE - CH_FIELD_SENSOR_OVERRANGE_STATUS = _mscl.MipTypes_CH_FIELD_SENSOR_OVERRANGE_STATUS - CH_FIELD_SENSOR_ODOMETER_DATA = _mscl.MipTypes_CH_FIELD_SENSOR_ODOMETER_DATA - CH_FIELD_SENSOR_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EVENT_SOURCE - CH_FIELD_SENSOR_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_TICKS - CH_FIELD_SENSOR_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TICKS - CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP - CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_LLH_POSITION - CH_FIELD_GNSS_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_POSITION - CH_FIELD_GNSS_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_NED_VELOCITY - CH_FIELD_GNSS_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_VELOCITY - CH_FIELD_GNSS_DOP = _mscl.MipTypes_CH_FIELD_GNSS_DOP - CH_FIELD_GNSS_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_UTC_TIME - CH_FIELD_GNSS_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_GPS_TIME - CH_FIELD_GNSS_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO - CH_FIELD_GNSS_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_FIX_INFO - CH_FIELD_GNSS_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_HARDWARE_STATUS - CH_FIELD_GNSS_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_INFO - CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO_2 - CH_FIELD_GNSS_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_LEAP_SECONDS - CH_FIELD_GNSS_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_INFO - CH_FIELD_GNSS_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_CORRECTION - CH_FIELD_GNSS_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_RF_ERROR_DETECTION - CH_FIELD_GNSS_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_SATELLITE_STATUS - CH_FIELD_GNSS_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_RAW_OBSERVATION - CH_FIELD_GNSS_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_STATION_INFO - CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_EPHEMERIS - CH_FIELD_GNSS_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GLONASS_EPHEMERIS - CH_FIELD_GNSS_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_EPHEMERIS - CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_TICKS - CH_FIELD_GNSS_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TICKS - CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS - CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL - CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE - CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE - CH_FIELD_ESTFILTER_FILTER_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_FILTER_STATUS - CH_FIELD_ESTFILTER_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT - CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR - CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE - CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR - CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_MAG_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS - CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT - CH_FIELD_ESTFILTER_COMPENSATED_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_COMPENSATED_ACCEL - CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL - CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT - CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX - CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS_UNCERT - CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS - CH_FIELD_ESTFILTER_ECEF_VEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL - CH_FIELD_ESTFILTER_NED_RELATIVE_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_NED_RELATIVE_POS - CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS - CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS - CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY = _mscl.MipTypes_CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT - CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT - CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE - CH_FIELD_ESTFILTER_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_TICKS - CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS - CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_DISP_DISPLACEMENT_RAW = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_RAW - CH_FIELD_DISP_DISPLACEMENT_MM = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_MM - CH_FIELD_DISP_DISPLACEMENT_TS = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_TS - CH_FIELD_GNSS_1_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_LLH_POSITION - CH_FIELD_GNSS_1_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_POSITION - CH_FIELD_GNSS_1_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_NED_VELOCITY - CH_FIELD_GNSS_1_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_VELOCITY - CH_FIELD_GNSS_1_DOP = _mscl.MipTypes_CH_FIELD_GNSS_1_DOP - CH_FIELD_GNSS_1_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_UTC_TIME - CH_FIELD_GNSS_1_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_TIME - CH_FIELD_GNSS_1_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO - CH_FIELD_GNSS_1_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_FIX_INFO - CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_1_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_HARDWARE_STATUS - CH_FIELD_GNSS_1_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_INFO - CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_1_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO_2 - CH_FIELD_GNSS_1_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_LEAP_SECONDS - CH_FIELD_GNSS_1_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_INFO - CH_FIELD_GNSS_1_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_CORRECTION - CH_FIELD_GNSS_1_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_RF_ERROR_DETECTION - CH_FIELD_GNSS_1_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_SATELLITE_STATUS - CH_FIELD_GNSS_1_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_1_RAW_OBSERVATION - CH_FIELD_GNSS_1_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_STATION_INFO - CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_1_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_EPHEMERIS - CH_FIELD_GNSS_1_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GLONASS_EPHEMERIS - CH_FIELD_GNSS_1_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_EPHEMERIS - CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_1_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_TICKS - CH_FIELD_GNSS_1_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TICKS - CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_2_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_LLH_POSITION - CH_FIELD_GNSS_2_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_POSITION - CH_FIELD_GNSS_2_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_NED_VELOCITY - CH_FIELD_GNSS_2_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_VELOCITY - CH_FIELD_GNSS_2_DOP = _mscl.MipTypes_CH_FIELD_GNSS_2_DOP - CH_FIELD_GNSS_2_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_UTC_TIME - CH_FIELD_GNSS_2_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_TIME - CH_FIELD_GNSS_2_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO - CH_FIELD_GNSS_2_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_FIX_INFO - CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_2_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_HARDWARE_STATUS - CH_FIELD_GNSS_2_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_INFO - CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_2_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO_2 - CH_FIELD_GNSS_2_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_LEAP_SECONDS - CH_FIELD_GNSS_2_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_INFO - CH_FIELD_GNSS_2_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_CORRECTION - CH_FIELD_GNSS_2_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_RF_ERROR_DETECTION - CH_FIELD_GNSS_2_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_SATELLITE_STATUS - CH_FIELD_GNSS_2_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_2_RAW_OBSERVATION - CH_FIELD_GNSS_2_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_STATION_INFO - CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_2_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_EPHEMERIS - CH_FIELD_GNSS_2_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GLONASS_EPHEMERIS - CH_FIELD_GNSS_2_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_EPHEMERIS - CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_2_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_TICKS - CH_FIELD_GNSS_2_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TICKS - CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_3_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_LLH_POSITION - CH_FIELD_GNSS_3_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_POSITION - CH_FIELD_GNSS_3_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_NED_VELOCITY - CH_FIELD_GNSS_3_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_VELOCITY - CH_FIELD_GNSS_3_DOP = _mscl.MipTypes_CH_FIELD_GNSS_3_DOP - CH_FIELD_GNSS_3_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_UTC_TIME - CH_FIELD_GNSS_3_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_TIME - CH_FIELD_GNSS_3_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO - CH_FIELD_GNSS_3_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_FIX_INFO - CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_3_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_HARDWARE_STATUS - CH_FIELD_GNSS_3_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_INFO - CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_3_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO_2 - CH_FIELD_GNSS_3_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_LEAP_SECONDS - CH_FIELD_GNSS_3_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_INFO - CH_FIELD_GNSS_3_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_CORRECTION - CH_FIELD_GNSS_3_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_RF_ERROR_DETECTION - CH_FIELD_GNSS_3_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_SATELLITE_STATUS - CH_FIELD_GNSS_3_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_3_RAW_OBSERVATION - CH_FIELD_GNSS_3_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_STATION_INFO - CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_3_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_EPHEMERIS - CH_FIELD_GNSS_3_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GLONASS_EPHEMERIS - CH_FIELD_GNSS_3_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_EPHEMERIS - CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_3_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_TICKS - CH_FIELD_GNSS_3_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TICKS - CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_4_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_LLH_POSITION - CH_FIELD_GNSS_4_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_POSITION - CH_FIELD_GNSS_4_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_NED_VELOCITY - CH_FIELD_GNSS_4_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_VELOCITY - CH_FIELD_GNSS_4_DOP = _mscl.MipTypes_CH_FIELD_GNSS_4_DOP - CH_FIELD_GNSS_4_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_UTC_TIME - CH_FIELD_GNSS_4_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_TIME - CH_FIELD_GNSS_4_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO - CH_FIELD_GNSS_4_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_FIX_INFO - CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_4_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_HARDWARE_STATUS - CH_FIELD_GNSS_4_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_INFO - CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_4_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO_2 - CH_FIELD_GNSS_4_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_LEAP_SECONDS - CH_FIELD_GNSS_4_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_INFO - CH_FIELD_GNSS_4_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_CORRECTION - CH_FIELD_GNSS_4_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_RF_ERROR_DETECTION - CH_FIELD_GNSS_4_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_SATELLITE_STATUS - CH_FIELD_GNSS_4_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_4_RAW_OBSERVATION - CH_FIELD_GNSS_4_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_STATION_INFO - CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_4_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_EPHEMERIS - CH_FIELD_GNSS_4_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GLONASS_EPHEMERIS - CH_FIELD_GNSS_4_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_EPHEMERIS - CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_4_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_TICKS - CH_FIELD_GNSS_4_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TICKS - CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_5_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_LLH_POSITION - CH_FIELD_GNSS_5_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_POSITION - CH_FIELD_GNSS_5_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_NED_VELOCITY - CH_FIELD_GNSS_5_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_VELOCITY - CH_FIELD_GNSS_5_DOP = _mscl.MipTypes_CH_FIELD_GNSS_5_DOP - CH_FIELD_GNSS_5_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_UTC_TIME - CH_FIELD_GNSS_5_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_TIME - CH_FIELD_GNSS_5_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO - CH_FIELD_GNSS_5_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_FIX_INFO - CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_5_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_HARDWARE_STATUS - CH_FIELD_GNSS_5_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_INFO - CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_5_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO_2 - CH_FIELD_GNSS_5_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_LEAP_SECONDS - CH_FIELD_GNSS_5_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_INFO - CH_FIELD_GNSS_5_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_CORRECTION - CH_FIELD_GNSS_5_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_RF_ERROR_DETECTION - CH_FIELD_GNSS_5_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_SATELLITE_STATUS - CH_FIELD_GNSS_5_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_5_RAW_OBSERVATION - CH_FIELD_GNSS_5_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_STATION_INFO - CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_5_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_EPHEMERIS - CH_FIELD_GNSS_5_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GLONASS_EPHEMERIS - CH_FIELD_GNSS_5_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_EPHEMERIS - CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_5_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_TICKS - CH_FIELD_GNSS_5_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TICKS - CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_SYSTEM_BUILT_IN_TEST = _mscl.MipTypes_CH_FIELD_SYSTEM_BUILT_IN_TEST - CH_FIELD_SYSTEM_TIME_SYNC_STATUS = _mscl.MipTypes_CH_FIELD_SYSTEM_TIME_SYNC_STATUS - CH_FIELD_SYSTEM_GPIO_STATE = _mscl.MipTypes_CH_FIELD_SYSTEM_GPIO_STATE - CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE - CH_FIELD_SYSTEM_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_TICKS - CH_FIELD_SYSTEM_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TICKS - CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME - MIN_SHARED_FIELD_DESCRIPTOR = _mscl.MipTypes_MIN_SHARED_FIELD_DESCRIPTOR - CH_UNKNOWN = _mscl.MipTypes_CH_UNKNOWN - CH_X = _mscl.MipTypes_CH_X - CH_Y = _mscl.MipTypes_CH_Y - CH_Z = _mscl.MipTypes_CH_Z - CH_MATRIX = _mscl.MipTypes_CH_MATRIX - CH_QUATERNION = _mscl.MipTypes_CH_QUATERNION - CH_ROLL = _mscl.MipTypes_CH_ROLL - CH_PITCH = _mscl.MipTypes_CH_PITCH - CH_YAW = _mscl.MipTypes_CH_YAW - CH_TICK = _mscl.MipTypes_CH_TICK - CH_TIMESTAMP = _mscl.MipTypes_CH_TIMESTAMP - CH_STATUS = _mscl.MipTypes_CH_STATUS - CH_TIME_OF_WEEK = _mscl.MipTypes_CH_TIME_OF_WEEK - CH_WEEK_NUMBER = _mscl.MipTypes_CH_WEEK_NUMBER - CH_LATITUDE = _mscl.MipTypes_CH_LATITUDE - CH_LONGITUDE = _mscl.MipTypes_CH_LONGITUDE - CH_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CH_HEIGHT_ABOVE_ELLIPSOID - CH_HEIGHT_ABOVE_MSL = _mscl.MipTypes_CH_HEIGHT_ABOVE_MSL - CH_HORIZONTAL_ACCURACY = _mscl.MipTypes_CH_HORIZONTAL_ACCURACY - CH_VERTICAL_ACCURACY = _mscl.MipTypes_CH_VERTICAL_ACCURACY - CH_POSITION_ACCURACY = _mscl.MipTypes_CH_POSITION_ACCURACY - CH_NORTH = _mscl.MipTypes_CH_NORTH - CH_EAST = _mscl.MipTypes_CH_EAST - CH_DOWN = _mscl.MipTypes_CH_DOWN - CH_SPEED = _mscl.MipTypes_CH_SPEED - CH_GROUND_SPEED = _mscl.MipTypes_CH_GROUND_SPEED - CH_HEADING = _mscl.MipTypes_CH_HEADING - CH_SPEED_ACCURACY = _mscl.MipTypes_CH_SPEED_ACCURACY - CH_HEADING_ACCURACY = _mscl.MipTypes_CH_HEADING_ACCURACY - CH_VELOCITY_ACCURACY = _mscl.MipTypes_CH_VELOCITY_ACCURACY - CH_GEOMETRIC_DOP = _mscl.MipTypes_CH_GEOMETRIC_DOP - CH_POSITION_DOP = _mscl.MipTypes_CH_POSITION_DOP - CH_HORIZONTAL_DOP = _mscl.MipTypes_CH_HORIZONTAL_DOP - CH_VERTICAL_DOP = _mscl.MipTypes_CH_VERTICAL_DOP - CH_TIME_DOP = _mscl.MipTypes_CH_TIME_DOP - CH_NORTHING_DOP = _mscl.MipTypes_CH_NORTHING_DOP - CH_EASTING_DOP = _mscl.MipTypes_CH_EASTING_DOP - CH_FLAGS = _mscl.MipTypes_CH_FLAGS - CH_BIAS = _mscl.MipTypes_CH_BIAS - CH_DRIFT = _mscl.MipTypes_CH_DRIFT - CH_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_ACCURACY_ESTIMATE - CH_FIX_TYPE = _mscl.MipTypes_CH_FIX_TYPE - CH_SV_COUNT = _mscl.MipTypes_CH_SV_COUNT - CH_CHANNEL = _mscl.MipTypes_CH_CHANNEL - CH_ID = _mscl.MipTypes_CH_ID - CH_CARRIER_TO_NOISE_RATIO = _mscl.MipTypes_CH_CARRIER_TO_NOISE_RATIO - CH_AZIMUTH = _mscl.MipTypes_CH_AZIMUTH - CH_ELEVATION = _mscl.MipTypes_CH_ELEVATION - CH_SENSOR_STATE = _mscl.MipTypes_CH_SENSOR_STATE - CH_ANTENNA_STATE = _mscl.MipTypes_CH_ANTENNA_STATE - CH_ANTENNA_POWER = _mscl.MipTypes_CH_ANTENNA_POWER - CH_FILTER_STATE = _mscl.MipTypes_CH_FILTER_STATE - CH_DYNAMICS_MODE = _mscl.MipTypes_CH_DYNAMICS_MODE - CH_MAGNITUDE = _mscl.MipTypes_CH_MAGNITUDE - CH_HEADING_UNCERTAINTY = _mscl.MipTypes_CH_HEADING_UNCERTAINTY - CH_SOURCE = _mscl.MipTypes_CH_SOURCE - CH_INCLINATION = _mscl.MipTypes_CH_INCLINATION - CH_DECLINATION = _mscl.MipTypes_CH_DECLINATION - CH_PRESSURE = _mscl.MipTypes_CH_PRESSURE - CH_AGE = _mscl.MipTypes_CH_AGE - CH_NUM_CHANNELS = _mscl.MipTypes_CH_NUM_CHANNELS - CH_CORRECTION = _mscl.MipTypes_CH_CORRECTION - CH_RATE_CORRECTION = _mscl.MipTypes_CH_RATE_CORRECTION - CH_GEOMETRIC_ALTITUDE = _mscl.MipTypes_CH_GEOMETRIC_ALTITUDE - CH_GEOPOTENTIAL_ALTITUDE = _mscl.MipTypes_CH_GEOPOTENTIAL_ALTITUDE - CH_TEMPERATURE = _mscl.MipTypes_CH_TEMPERATURE - CH_DENSITY = _mscl.MipTypes_CH_DENSITY - CH_ALTITUDE = _mscl.MipTypes_CH_ALTITUDE - CH_DISPLACEMENT = _mscl.MipTypes_CH_DISPLACEMENT - CH_MAX_TEMP = _mscl.MipTypes_CH_MAX_TEMP - CH_MIN_TEMP = _mscl.MipTypes_CH_MIN_TEMP - CH_MEAN_TEMP = _mscl.MipTypes_CH_MEAN_TEMP - CH_BIAS_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_BIAS_ACCURACY_ESTIMATE - CH_DRIFT_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_DRIFT_ACCURACY_ESTIMATE - CH_SECONDS = _mscl.MipTypes_CH_SECONDS - CH_NUM_PACKETS = _mscl.MipTypes_CH_NUM_PACKETS - CH_GPS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GPS_CORRECTION_LATENCY - CH_GLONASS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GLONASS_CORRECTION_LATENCY - CH_GALILEO_CORRECTION_LATENCY = _mscl.MipTypes_CH_GALILEO_CORRECTION_LATENCY - CH_BEIDOU_CORRECTION_LATENCY = _mscl.MipTypes_CH_BEIDOU_CORRECTION_LATENCY - CH_HEIGHT = _mscl.MipTypes_CH_HEIGHT - CH_HEALTH = _mscl.MipTypes_CH_HEALTH - CH_INDEX = _mscl.MipTypes_CH_INDEX - CH_COUNT = _mscl.MipTypes_CH_COUNT - CH_SIGNAL_STRENGTH = _mscl.MipTypes_CH_SIGNAL_STRENGTH - CH_SIGNAL_QUALITY = _mscl.MipTypes_CH_SIGNAL_QUALITY - CH_RANGE = _mscl.MipTypes_CH_RANGE - CH_RANGE_UNC = _mscl.MipTypes_CH_RANGE_UNC - CH_ALPHA = _mscl.MipTypes_CH_ALPHA - CH_BETA = _mscl.MipTypes_CH_BETA - CH_DISTURBANCE_FLAGS = _mscl.MipTypes_CH_DISTURBANCE_FLAGS - CH_CARRIER_PHASE = _mscl.MipTypes_CH_CARRIER_PHASE - CH_CARRIER_PHASE_UNC = _mscl.MipTypes_CH_CARRIER_PHASE_UNC - CH_DOPPLER = _mscl.MipTypes_CH_DOPPLER - CH_DOPPLER_UNC = _mscl.MipTypes_CH_DOPPLER_UNC - CH_DELTA_TIME = _mscl.MipTypes_CH_DELTA_TIME - CH_DELTA_TICK = _mscl.MipTypes_CH_DELTA_TICK - CH_ERROR = _mscl.MipTypes_CH_ERROR - CH_ERROR_UNC = _mscl.MipTypes_CH_ERROR_UNC - CH_W = _mscl.MipTypes_CH_W - CH_M0 = _mscl.MipTypes_CH_M0 - CH_M1 = _mscl.MipTypes_CH_M1 - CH_M2 = _mscl.MipTypes_CH_M2 - CH_M3 = _mscl.MipTypes_CH_M3 - CH_M4 = _mscl.MipTypes_CH_M4 - CH_M5 = _mscl.MipTypes_CH_M5 - CH_M6 = _mscl.MipTypes_CH_M6 - CH_M7 = _mscl.MipTypes_CH_M7 - CH_M8 = _mscl.MipTypes_CH_M8 - CH_NANOSECONDS = _mscl.MipTypes_CH_NANOSECONDS - CH_VALID_FLAGS = _mscl.MipTypes_CH_VALID_FLAGS - CH_PPS_VALID = _mscl.MipTypes_CH_PPS_VALID - CH_LAST_PPS = _mscl.MipTypes_CH_LAST_PPS - CH_UDREI = _mscl.MipTypes_CH_UDREI - CH_PSEUDORANGE_CORRECTION = _mscl.MipTypes_CH_PSEUDORANGE_CORRECTION - CH_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_IONOSPHERIC_CORRECTION - CH_JAMMING_STATE = _mscl.MipTypes_CH_JAMMING_STATE - CH_SPOOFING_STATE = _mscl.MipTypes_CH_SPOOFING_STATE - CH_SYSTEM_ID = _mscl.MipTypes_CH_SYSTEM_ID - CH_SATELLITE_ID = _mscl.MipTypes_CH_SATELLITE_ID - CH_BIT_SYSTEM_GENERAL = _mscl.MipTypes_CH_BIT_SYSTEM_GENERAL - CH_BIT_SYSTEM_PROCESS = _mscl.MipTypes_CH_BIT_SYSTEM_PROCESS - CH_BIT_IMU_GENERAL = _mscl.MipTypes_CH_BIT_IMU_GENERAL - CH_BIT_IMU_SENSORS = _mscl.MipTypes_CH_BIT_IMU_SENSORS - CH_BIT_IMU_FACTORY_BITS = _mscl.MipTypes_CH_BIT_IMU_FACTORY_BITS - CH_BIT_FILTER_GENERAL = _mscl.MipTypes_CH_BIT_FILTER_GENERAL - CH_BIT_GNSS_GENERAL = _mscl.MipTypes_CH_BIT_GNSS_GENERAL - CH_BIT_GNSS_RECEIVERS = _mscl.MipTypes_CH_BIT_GNSS_RECEIVERS - - @staticmethod - def channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - - @staticmethod - def getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - - @staticmethod - def getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - - @staticmethod - def getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - - @staticmethod - def getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - - @staticmethod - def getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - - @staticmethod - def isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - - @staticmethod - def isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - - @staticmethod - def channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - - @staticmethod - def channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - - @staticmethod - def channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - - def __init__(self): - _mscl.MipTypes_swiginit(self, _mscl.new_MipTypes()) - __swig_destroy__ = _mscl.delete_MipTypes - -# Register MipTypes in _mscl: -_mscl.MipTypes_swigregister(MipTypes) - -def MipTypes_channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - -def MipTypes_getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - -def MipTypes_getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - -def MipTypes_getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - -def MipTypes_getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - -def MipTypes_getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - -def MipTypes_isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - -def MipTypes_isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - -def MipTypes_channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - -def MipTypes_channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - -def MipTypes_channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - -class MipChannelIdentifier(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - GNSS_RECEIVER_ID = _mscl.MipChannelIdentifier_GNSS_RECEIVER_ID - GNSS_BASE_STATION_ID = _mscl.MipChannelIdentifier_GNSS_BASE_STATION_ID - GNSS_CONSTELLATION = _mscl.MipChannelIdentifier_GNSS_CONSTELLATION - GNSS_SATELLITE_ID = _mscl.MipChannelIdentifier_GNSS_SATELLITE_ID - GNSS_SIGNAL_ID = _mscl.MipChannelIdentifier_GNSS_SIGNAL_ID - AIDING_MEASUREMENT_TYPE = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_TYPE - GNSS_RF_BAND = _mscl.MipChannelIdentifier_GNSS_RF_BAND - AIDING_MEASUREMENT_FRAME_ID = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_FRAME_ID - GNSS = _mscl.MipChannelIdentifier_GNSS - DUAL_ANTENNA = _mscl.MipChannelIdentifier_DUAL_ANTENNA - HEADING = _mscl.MipChannelIdentifier_HEADING - PRESSURE = _mscl.MipChannelIdentifier_PRESSURE - MAGNETOMETER = _mscl.MipChannelIdentifier_MAGNETOMETER - SPEED = _mscl.MipChannelIdentifier_SPEED - AIDING_POS_ECEF = _mscl.MipChannelIdentifier_AIDING_POS_ECEF - AIDING_POS_LLH = _mscl.MipChannelIdentifier_AIDING_POS_LLH - AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipChannelIdentifier_AIDING_HEIGHT_ABOVE_ELLIPSOID - AIDING_VEL_ECEF = _mscl.MipChannelIdentifier_AIDING_VEL_ECEF - AIDING_VEL_NED = _mscl.MipChannelIdentifier_AIDING_VEL_NED - AIDING_VEL_BODY_FRAME = _mscl.MipChannelIdentifier_AIDING_VEL_BODY_FRAME - AIDING_HEADING_TRUE = _mscl.MipChannelIdentifier_AIDING_HEADING_TRUE - AIDING_MAGNETIC_FIELD = _mscl.MipChannelIdentifier_AIDING_MAGNETIC_FIELD - AIDING_PRESSURE = _mscl.MipChannelIdentifier_AIDING_PRESSURE - UNKNOWN_CONSTELLATION = _mscl.MipChannelIdentifier_UNKNOWN_CONSTELLATION - GPS = _mscl.MipChannelIdentifier_GPS - GLONASS = _mscl.MipChannelIdentifier_GLONASS - GALILEO = _mscl.MipChannelIdentifier_GALILEO - BEIDOU = _mscl.MipChannelIdentifier_BEIDOU - UNKNOWN_SIGNAL = _mscl.MipChannelIdentifier_UNKNOWN_SIGNAL - GPS_L1CA = _mscl.MipChannelIdentifier_GPS_L1CA - GPS_L1P = _mscl.MipChannelIdentifier_GPS_L1P - GPS_L1Z = _mscl.MipChannelIdentifier_GPS_L1Z - GPS_L2CA = _mscl.MipChannelIdentifier_GPS_L2CA - GPS_L2P = _mscl.MipChannelIdentifier_GPS_L2P - GPS_L2Z = _mscl.MipChannelIdentifier_GPS_L2Z - GPS_L2CL = _mscl.MipChannelIdentifier_GPS_L2CL - GPS_L2CM = _mscl.MipChannelIdentifier_GPS_L2CM - GPS_L2CML = _mscl.MipChannelIdentifier_GPS_L2CML - GPS_L5I = _mscl.MipChannelIdentifier_GPS_L5I - GPS_L5Q = _mscl.MipChannelIdentifier_GPS_L5Q - GPS_L5IQ = _mscl.MipChannelIdentifier_GPS_L5IQ - GPS_L1CD = _mscl.MipChannelIdentifier_GPS_L1CD - GPS_L1CP = _mscl.MipChannelIdentifier_GPS_L1CP - GPS_L1CDP = _mscl.MipChannelIdentifier_GPS_L1CDP - GLONASS_G1CA = _mscl.MipChannelIdentifier_GLONASS_G1CA - GLONASS_G1P = _mscl.MipChannelIdentifier_GLONASS_G1P - GLONASS_G2C = _mscl.MipChannelIdentifier_GLONASS_G2C - GLONASS_G2P = _mscl.MipChannelIdentifier_GLONASS_G2P - GALILEO_E1C = _mscl.MipChannelIdentifier_GALILEO_E1C - GALILEO_E1A = _mscl.MipChannelIdentifier_GALILEO_E1A - GALILEO_E1B = _mscl.MipChannelIdentifier_GALILEO_E1B - GALILEO_E1BC = _mscl.MipChannelIdentifier_GALILEO_E1BC - GALILEO_E1ABC = _mscl.MipChannelIdentifier_GALILEO_E1ABC - GALILEO_E6C = _mscl.MipChannelIdentifier_GALILEO_E6C - GALILEO_E6A = _mscl.MipChannelIdentifier_GALILEO_E6A - GALILEO_E6B = _mscl.MipChannelIdentifier_GALILEO_E6B - GALILEO_E6BC = _mscl.MipChannelIdentifier_GALILEO_E6BC - GALILEO_E6ABC = _mscl.MipChannelIdentifier_GALILEO_E6ABC - GALILEO_E5BI = _mscl.MipChannelIdentifier_GALILEO_E5BI - GALILEO_E5BQ = _mscl.MipChannelIdentifier_GALILEO_E5BQ - GALILEO_E5BIQ = _mscl.MipChannelIdentifier_GALILEO_E5BIQ - GALILEO_E5ABI = _mscl.MipChannelIdentifier_GALILEO_E5ABI - GALILEO_E5ABQ = _mscl.MipChannelIdentifier_GALILEO_E5ABQ - GALILEO_E5ABIQ = _mscl.MipChannelIdentifier_GALILEO_E5ABIQ - GALILEO_E5AI = _mscl.MipChannelIdentifier_GALILEO_E5AI - GALILEO_E5AQ = _mscl.MipChannelIdentifier_GALILEO_E5AQ - GALILEO_E5AIQ = _mscl.MipChannelIdentifier_GALILEO_E5AIQ - SBAS_L1CA = _mscl.MipChannelIdentifier_SBAS_L1CA - SBAS_L5I = _mscl.MipChannelIdentifier_SBAS_L5I - SBAS_L5Q = _mscl.MipChannelIdentifier_SBAS_L5Q - SBAS_L5IQ = _mscl.MipChannelIdentifier_SBAS_L5IQ - QZSS_L1CA = _mscl.MipChannelIdentifier_QZSS_L1CA - QZSS_LEXS = _mscl.MipChannelIdentifier_QZSS_LEXS - QZSS_LEXL = _mscl.MipChannelIdentifier_QZSS_LEXL - QZSS_LEXSL = _mscl.MipChannelIdentifier_QZSS_LEXSL - QZSS_L2CM = _mscl.MipChannelIdentifier_QZSS_L2CM - QZSS_L2CL = _mscl.MipChannelIdentifier_QZSS_L2CL - QZSS_L2CML = _mscl.MipChannelIdentifier_QZSS_L2CML - QZSS_L5I = _mscl.MipChannelIdentifier_QZSS_L5I - QZSS_L5Q = _mscl.MipChannelIdentifier_QZSS_L5Q - QZSS_L5IQ = _mscl.MipChannelIdentifier_QZSS_L5IQ - QZSS_L1CD = _mscl.MipChannelIdentifier_QZSS_L1CD - QZSS_L1CP = _mscl.MipChannelIdentifier_QZSS_L1CP - QZSS_L1CDP = _mscl.MipChannelIdentifier_QZSS_L1CDP - BEIDOU_B1I = _mscl.MipChannelIdentifier_BEIDOU_B1I - BEIDOU_B1Q = _mscl.MipChannelIdentifier_BEIDOU_B1Q - BEIDOU_B1IQ = _mscl.MipChannelIdentifier_BEIDOU_B1IQ - BEIDOU_B3I = _mscl.MipChannelIdentifier_BEIDOU_B3I - BEIDOU_B3Q = _mscl.MipChannelIdentifier_BEIDOU_B3Q - BEIDOU_B3IQ = _mscl.MipChannelIdentifier_BEIDOU_B3IQ - BEIDOU_B2I = _mscl.MipChannelIdentifier_BEIDOU_B2I - BEIDOU_B2Q = _mscl.MipChannelIdentifier_BEIDOU_B2Q - BEIDOU_B2IQ = _mscl.MipChannelIdentifier_BEIDOU_B2IQ - UNKNOWN_RF_BAND = _mscl.MipChannelIdentifier_UNKNOWN_RF_BAND - RF_BAND_L1 = _mscl.MipChannelIdentifier_RF_BAND_L1 - RF_BAND_L2 = _mscl.MipChannelIdentifier_RF_BAND_L2 - RF_BAND_L5 = _mscl.MipChannelIdentifier_RF_BAND_L5 - - def __init__(self, *args): - _mscl.MipChannelIdentifier_swiginit(self, _mscl.new_MipChannelIdentifier(*args)) - __swig_destroy__ = _mscl.delete_MipChannelIdentifier - - def identifierType(self): - return _mscl.MipChannelIdentifier_identifierType(self) - - def id(self): - return _mscl.MipChannelIdentifier_id(self) - - def hasSpecifier(self): - return _mscl.MipChannelIdentifier_hasSpecifier(self) - - def specifier(self): - return _mscl.MipChannelIdentifier_specifier(self) - - def name(self, standardizedFormat=True): - return _mscl.MipChannelIdentifier_name(self, standardizedFormat) - -# Register MipChannelIdentifier in _mscl: -_mscl.MipChannelIdentifier_swigregister(MipChannelIdentifier) - -class MipCommandBytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - id = property(_mscl.MipCommandBytes_id_get, _mscl.MipCommandBytes_id_set) - commands = property(_mscl.MipCommandBytes_commands_get, _mscl.MipCommandBytes_commands_set) - buildCmdFailed = property(_mscl.MipCommandBytes_buildCmdFailed_get, _mscl.MipCommandBytes_buildCmdFailed_set) - sendCmdFailed = property(_mscl.MipCommandBytes_sendCmdFailed_get, _mscl.MipCommandBytes_sendCmdFailed_set) - - def __init__(self, *args): - _mscl.MipCommandBytes_swiginit(self, _mscl.new_MipCommandBytes(*args)) - - def add(self, cmd): - return _mscl.MipCommandBytes_add(self, cmd) - - def valid(self): - return _mscl.MipCommandBytes_valid(self) - __swig_destroy__ = _mscl.delete_MipCommandBytes - -# Register MipCommandBytes in _mscl: -_mscl.MipCommandBytes_swigregister(MipCommandBytes) - -class AidingMeasurementInput(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - ACK_NACK = _mscl.AidingMeasurementInput_ACK_NACK - ECHO_INPUT = _mscl.AidingMeasurementInput_ECHO_INPUT - - def toMipFieldValues(self): - return _mscl.AidingMeasurementInput_toMipFieldValues(self) - - def timestamp(self, *args): - return _mscl.AidingMeasurementInput_timestamp(self, *args) - - def timebase(self): - return _mscl.AidingMeasurementInput_timebase(self) - - def frameId(self, *args): - return _mscl.AidingMeasurementInput_frameId(self, *args) - - def validFlags(self, *args): - return _mscl.AidingMeasurementInput_validFlags(self, *args) - -# Register AidingMeasurementInput in _mscl: -_mscl.AidingMeasurementInput_swigregister(AidingMeasurementInput) - -class AidingMeasurementPosition(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementPosition_X - LATITUDE = _mscl.AidingMeasurementPosition_LATITUDE - Y = _mscl.AidingMeasurementPosition_Y - LONGITUDE = _mscl.AidingMeasurementPosition_LONGITUDE - Z = _mscl.AidingMeasurementPosition_Z - HEIGHT = _mscl.AidingMeasurementPosition_HEIGHT - ALTITUDE = _mscl.AidingMeasurementPosition_ALTITUDE - - def __init__(self, *args): - _mscl.AidingMeasurementPosition_swiginit(self, _mscl.new_AidingMeasurementPosition(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPosition - - def position(self, *args): - return _mscl.AidingMeasurementPosition_position(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPosition_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementPosition_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPosition_valid(self, *args) - -# Register AidingMeasurementPosition in _mscl: -_mscl.AidingMeasurementPosition_swigregister(AidingMeasurementPosition) - -class AidingMeasurementHeight(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeight_swiginit(self, _mscl.new_AidingMeasurementHeight(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeight - - def height(self, *args): - return _mscl.AidingMeasurementHeight_height(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeight_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeight_valid(self, *args) - -# Register AidingMeasurementHeight in _mscl: -_mscl.AidingMeasurementHeight_swigregister(AidingMeasurementHeight) - -class AidingMeasurementVelocity(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementVelocity_X - NORTH = _mscl.AidingMeasurementVelocity_NORTH - Y = _mscl.AidingMeasurementVelocity_Y - EAST = _mscl.AidingMeasurementVelocity_EAST - Z = _mscl.AidingMeasurementVelocity_Z - DOWN = _mscl.AidingMeasurementVelocity_DOWN - - def __init__(self, *args): - _mscl.AidingMeasurementVelocity_swiginit(self, _mscl.new_AidingMeasurementVelocity(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementVelocity - - def velocity(self, *args): - return _mscl.AidingMeasurementVelocity_velocity(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementVelocity_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementVelocity_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementVelocity_valid(self, *args) - -# Register AidingMeasurementVelocity in _mscl: -_mscl.AidingMeasurementVelocity_swigregister(AidingMeasurementVelocity) - -class AidingMeasurementHeading(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeading_swiginit(self, _mscl.new_AidingMeasurementHeading(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeading - - def heading(self, *args): - return _mscl.AidingMeasurementHeading_heading(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeading_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeading_valid(self, *args) - -# Register AidingMeasurementHeading in _mscl: -_mscl.AidingMeasurementHeading_swigregister(AidingMeasurementHeading) - -class AidingMeasurementMagneticField(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementMagneticField_X - Y = _mscl.AidingMeasurementMagneticField_Y - Z = _mscl.AidingMeasurementMagneticField_Z - - def __init__(self, *args): - _mscl.AidingMeasurementMagneticField_swiginit(self, _mscl.new_AidingMeasurementMagneticField(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementMagneticField - - def magneticField(self, *args): - return _mscl.AidingMeasurementMagneticField_magneticField(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementMagneticField_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementMagneticField_valid(self, *args) - -# Register AidingMeasurementMagneticField in _mscl: -_mscl.AidingMeasurementMagneticField_swigregister(AidingMeasurementMagneticField) - -class AidingMeasurementPressure(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementPressure_swiginit(self, _mscl.new_AidingMeasurementPressure(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPressure - - def pressure(self, *args): - return _mscl.AidingMeasurementPressure_pressure(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPressure_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPressure_valid(self, *args) - -# Register AidingMeasurementPressure in _mscl: -_mscl.AidingMeasurementPressure_swigregister(AidingMeasurementPressure) - -class GnssReceiverInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GnssReceiverInfo_swiginit(self, _mscl.new_GnssReceiverInfo(*args)) - id = property(_mscl.GnssReceiverInfo_id_get, _mscl.GnssReceiverInfo_id_set) - targetDataClass = property(_mscl.GnssReceiverInfo_targetDataClass_get, _mscl.GnssReceiverInfo_targetDataClass_set) - description = property(_mscl.GnssReceiverInfo_description_get, _mscl.GnssReceiverInfo_description_set) - module = property(_mscl.GnssReceiverInfo_module_get, _mscl.GnssReceiverInfo_module_set) - fwId = property(_mscl.GnssReceiverInfo_fwId_get, _mscl.GnssReceiverInfo_fwId_set) - fwVersion = property(_mscl.GnssReceiverInfo_fwVersion_get, _mscl.GnssReceiverInfo_fwVersion_set) - __swig_destroy__ = _mscl.delete_GnssReceiverInfo - -# Register GnssReceiverInfo in _mscl: -_mscl.GnssReceiverInfo_swigregister(GnssReceiverInfo) -GnssReceiverInfo.INFO_NOT_FOUND = _mscl.cvar.GnssReceiverInfo_INFO_NOT_FOUND - -class DeviceCommPort(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SPECIAL = _mscl.DeviceCommPort_SPECIAL - UART = _mscl.DeviceCommPort_UART - USB = _mscl.DeviceCommPort_USB - NONE = _mscl.DeviceCommPort_NONE - MIP_COMMANDS = _mscl.DeviceCommPort_MIP_COMMANDS - MIP_DATA = _mscl.DeviceCommPort_MIP_DATA - NMEA = _mscl.DeviceCommPort_NMEA - RTCM = _mscl.DeviceCommPort_RTCM - SPARTN = _mscl.DeviceCommPort_SPARTN - ALL = _mscl.DeviceCommPort_ALL - - def __init__(self, *args): - _mscl.DeviceCommPort_swiginit(self, _mscl.new_DeviceCommPort(*args)) - - def interfaceId(self): - return _mscl.DeviceCommPort_interfaceId(self) - type = property(_mscl.DeviceCommPort_type_get, _mscl.DeviceCommPort_type_set) - id = property(_mscl.DeviceCommPort_id_get, _mscl.DeviceCommPort_id_set) - inputProtocols = property(_mscl.DeviceCommPort_inputProtocols_get, _mscl.DeviceCommPort_inputProtocols_set) - outputProtocols = property(_mscl.DeviceCommPort_outputProtocols_get, _mscl.DeviceCommPort_outputProtocols_set) - __swig_destroy__ = _mscl.delete_DeviceCommPort - -# Register DeviceCommPort in _mscl: -_mscl.DeviceCommPort_swigregister(DeviceCommPort) - -class EventTypeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTypeInfo_swiginit(self, _mscl.new_EventTypeInfo(*args)) - type = property(_mscl.EventTypeInfo_type_get, _mscl.EventTypeInfo_type_set) - maxInstances = property(_mscl.EventTypeInfo_maxInstances_get, _mscl.EventTypeInfo_maxInstances_set) - __swig_destroy__ = _mscl.delete_EventTypeInfo - -# Register EventTypeInfo in _mscl: -_mscl.EventTypeInfo_swigregister(EventTypeInfo) - -class EventSupportInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - TRIGGERS = _mscl.EventSupportInfo_TRIGGERS - ACTIONS = _mscl.EventSupportInfo_ACTIONS - query = property(_mscl.EventSupportInfo_query_get, _mscl.EventSupportInfo_query_set) - maxInstances = property(_mscl.EventSupportInfo_maxInstances_get, _mscl.EventSupportInfo_maxInstances_set) - entries = property(_mscl.EventSupportInfo_entries_get, _mscl.EventSupportInfo_entries_set) - - def __init__(self): - _mscl.EventSupportInfo_swiginit(self, _mscl.new_EventSupportInfo()) - __swig_destroy__ = _mscl.delete_EventSupportInfo - -# Register EventSupportInfo in _mscl: -_mscl.EventSupportInfo_swigregister(EventSupportInfo) - -class SensorRange(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ALL = _mscl.SensorRange_ALL - ACCEL_G = _mscl.SensorRange_ACCEL_G - GYRO_DPS = _mscl.SensorRange_GYRO_DPS - MAG_GAUSS = _mscl.SensorRange_MAG_GAUSS - PRESSURE_HPA = _mscl.SensorRange_PRESSURE_HPA - - def __init__(self): - _mscl.SensorRange_swiginit(self, _mscl.new_SensorRange()) - - def type(self): - return _mscl.SensorRange_type(self) - - def range(self): - return _mscl.SensorRange_range(self) - - def id(self): - return _mscl.SensorRange_id(self) - __swig_destroy__ = _mscl.delete_SensorRange - -# Register SensorRange in _mscl: -_mscl.SensorRange_swigregister(SensorRange) - -class SupportedSensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.SupportedSensorRanges_swiginit(self, _mscl.new_SupportedSensorRanges()) - - def options(self): - return _mscl.SupportedSensorRanges_options(self) - - def lookupRecommended(self, type, range): - return _mscl.SupportedSensorRanges_lookupRecommended(self, type, range) - __swig_destroy__ = _mscl.delete_SupportedSensorRanges - -# Register SupportedSensorRanges in _mscl: -_mscl.SupportedSensorRanges_swigregister(SupportedSensorRanges) - -class InertialTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - PORTABLE_VEHICLE = _mscl.InertialTypes_PORTABLE_VEHICLE - AUTOMOTIVE_VEHICLE = _mscl.InertialTypes_AUTOMOTIVE_VEHICLE - AIRBORNE_VEHICLE = _mscl.InertialTypes_AIRBORNE_VEHICLE - AIRBORNE_HIGH_G_VEHICLE = _mscl.InertialTypes_AIRBORNE_HIGH_G_VEHICLE - GPS_PORTABLE = _mscl.InertialTypes_GPS_PORTABLE - GPS_STATIONARY = _mscl.InertialTypes_GPS_STATIONARY - GPS_PEDESTRIAN = _mscl.InertialTypes_GPS_PEDESTRIAN - GPS_AUTOMOTIVE = _mscl.InertialTypes_GPS_AUTOMOTIVE - GPS_SEA = _mscl.InertialTypes_GPS_SEA - GPS_AIRBORNE_1G = _mscl.InertialTypes_GPS_AIRBORNE_1G - GPS_AIRBORNE_2G = _mscl.InertialTypes_GPS_AIRBORNE_2G - GPS_AIRBORNE_4G = _mscl.InertialTypes_GPS_AIRBORNE_4G - RESET_ALL_AXIS = _mscl.InertialTypes_RESET_ALL_AXIS - TARE_ROLL_AXIS = _mscl.InertialTypes_TARE_ROLL_AXIS - TARE_PITCH_AXIS = _mscl.InertialTypes_TARE_PITCH_AXIS - TARE_YAW_AXIS = _mscl.InertialTypes_TARE_YAW_AXIS - INTERNAL_GNSS_ALL = _mscl.InertialTypes_INTERNAL_GNSS_ALL - EXTERNAL_GNSS = _mscl.InertialTypes_EXTERNAL_GNSS - INTERNAL_GNSS1 = _mscl.InertialTypes_INTERNAL_GNSS1 - INTERNAL_GNSS2 = _mscl.InertialTypes_INTERNAL_GNSS2 - FIX_SBAS_CORRECTIONS = _mscl.InertialTypes_FIX_SBAS_CORRECTIONS - FIX_DGNSS_CORRECTIONS = _mscl.InertialTypes_FIX_DGNSS_CORRECTIONS - FIXTYPE_3D = _mscl.InertialTypes_FIXTYPE_3D - FIXTYPE_2D = _mscl.InertialTypes_FIXTYPE_2D - FIXTYPE_TIMEONLY = _mscl.InertialTypes_FIXTYPE_TIMEONLY - FIXTYPE_NONE = _mscl.InertialTypes_FIXTYPE_NONE - FIXTYPE_INVALID = _mscl.InertialTypes_FIXTYPE_INVALID - FIXTYPE_RTK_FLOAT = _mscl.InertialTypes_FIXTYPE_RTK_FLOAT - FIXTYPE_RTK_FIXED = _mscl.InertialTypes_FIXTYPE_RTK_FIXED - FIXTYPE_DUAL_ANTENNA_NONE = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_NONE - FIXTYPE_DUAL_ANTENNA_FLOAT = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FLOAT - FIXTYPE_DUAL_ANTENNA_FIXED = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FIXED - DATA_VALID_REC_1 = _mscl.InertialTypes_DATA_VALID_REC_1 - DATA_VALID_REC_2 = _mscl.InertialTypes_DATA_VALID_REC_2 - ANTENNA_OFFSETS_VALID = _mscl.InertialTypes_ANTENNA_OFFSETS_VALID - SVFLAG_NAVIGATION = _mscl.InertialTypes_SVFLAG_NAVIGATION - SVFLAG_HEALTHY = _mscl.InertialTypes_SVFLAG_HEALTHY - DEVICE_AHRS = _mscl.InertialTypes_DEVICE_AHRS - DEVICE_GPS = _mscl.InertialTypes_DEVICE_GPS - ON_FULL_PERFORMANCE = _mscl.InertialTypes_ON_FULL_PERFORMANCE - ON_LOW_POWER = _mscl.InertialTypes_ON_LOW_POWER - SLEEP = _mscl.InertialTypes_SLEEP - OFF = _mscl.InertialTypes_OFF - STANDARD_MIP = _mscl.InertialTypes_STANDARD_MIP - WRAPPED_RAW = _mscl.InertialTypes_WRAPPED_RAW - SENSORSTATE_OFF = _mscl.InertialTypes_SENSORSTATE_OFF - SENSORSTATE_ON = _mscl.InertialTypes_SENSORSTATE_ON - SENSORSTATE_UNKNOWN = _mscl.InertialTypes_SENSORSTATE_UNKNOWN - ANTENNASTATE_INIT = _mscl.InertialTypes_ANTENNASTATE_INIT - ANTENNASTATE_SHORT = _mscl.InertialTypes_ANTENNASTATE_SHORT - ANTENNASTATE_OPEN = _mscl.InertialTypes_ANTENNASTATE_OPEN - ANTENNASTATE_GOOD = _mscl.InertialTypes_ANTENNASTATE_GOOD - ANTENNASTATE_UNKNOWN = _mscl.InertialTypes_ANTENNASTATE_UNKNOWN - ANTENNAPOWER_OFF = _mscl.InertialTypes_ANTENNAPOWER_OFF - ANTENNAPOWER_ON = _mscl.InertialTypes_ANTENNAPOWER_ON - ANTENNAPOWER_UNKNOWN = _mscl.InertialTypes_ANTENNAPOWER_UNKNOWN - FILTERSTATE_STARTUP = _mscl.InertialTypes_FILTERSTATE_STARTUP - FILTERSTATE_INIT = _mscl.InertialTypes_FILTERSTATE_INIT - FILTERSTATE_RUNNING_SLN_VALID = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_VALID - FILTERSTATE_RUNNING_SLN_ERROR = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_ERROR - FILTERSTATE_VERT_GYRO = _mscl.InertialTypes_FILTERSTATE_VERT_GYRO - FILTERSTATE_AHRS = _mscl.InertialTypes_FILTERSTATE_AHRS - FILTERSTATE_FULL_NAV = _mscl.InertialTypes_FILTERSTATE_FULL_NAV - FILTERSTATUS_IMU_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_IMU_UNAVAILABLE - FILTERSTATUS_GPS_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_GPS_UNAVAILABLE - FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC = _mscl.InertialTypes_FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC - FILTERSTATUS_POS_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_POS_COVARIANCE_HIGH_WARN - FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN - FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN - FILTERSTATUS_NAN_IN_SOLUTION = _mscl.InertialTypes_FILTERSTATUS_NAN_IN_SOLUTION - FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN - FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN - FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN - FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN - FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_CONDITION = _mscl.InertialTypes_FILTERSTATUS_CONDITION - FILTERSTATUS_ROLL_PITCH_WARNING = _mscl.InertialTypes_FILTERSTATUS_ROLL_PITCH_WARNING - FILTERSTATUS_HEADING_WARNING = _mscl.InertialTypes_FILTERSTATUS_HEADING_WARNING - FILTERSTATUS_POSITION_WARNING = _mscl.InertialTypes_FILTERSTATUS_POSITION_WARNING - FILTERSTATUS_VELOCITY_WARNING = _mscl.InertialTypes_FILTERSTATUS_VELOCITY_WARNING - FILTERSTATUS_IMU_BIAS_WARNING = _mscl.InertialTypes_FILTERSTATUS_IMU_BIAS_WARNING - FILTERSTATUS_GNSS_CLK_WARNING = _mscl.InertialTypes_FILTERSTATUS_GNSS_CLK_WARNING - FILTERSTATUS_ANT_LEVER_ARM_WARNING = _mscl.InertialTypes_FILTERSTATUS_ANT_LEVER_ARM_WARNING - FILTERSTATUS_MOUNTING_TRANSFORM_WARNING = _mscl.InertialTypes_FILTERSTATUS_MOUNTING_TRANSFORM_WARNING - FILTERSTATUS_ATT_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_ATT_NOT_INIT - FILTERSTATUS_POS_VEL_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_POS_VEL_NOT_INIT - STABLE = _mscl.InertialTypes_STABLE - CONVERGING = _mscl.InertialTypes_CONVERGING - UNSTABLE = _mscl.InertialTypes_UNSTABLE - DGNSSBASE_UDRE_SCALE_FACTOR_1_00 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_1_00 - DGNSSBASE_UDRE_SCALE_FACTOR_0_75 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_75 - DGNSSBASE_UDRE_SCALE_FACTOR_0_50 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_50 - DGNSSBASE_UDRE_SCALE_FACTOR_0_30 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_30 - DGNSSBASE_UDRE_SCALE_FACTOR_0_20 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_20 - DGNSSBASE_UDRE_SCALE_FACTOR_0_10 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_10 - DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED - DGNSSBASE_REFERENCE_STATION_NOT_WORKING = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_NOT_WORKING - HEADINGSOURCE_NONE = _mscl.InertialTypes_HEADINGSOURCE_NONE - HEADINGSOURCE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_MAGNETOMETER - HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR - HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD = _mscl.InertialTypes_HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD - HEADINGSOURCE_GNSS_DUAL_ANTENNA = _mscl.InertialTypes_HEADINGSOURCE_GNSS_DUAL_ANTENNA - ENABLE_NONE = _mscl.InertialTypes_ENABLE_NONE - ENABLE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_ENABLE_INTERNAL_MAGNETOMETER - ENABLE_INTERNAL_GNSS = _mscl.InertialTypes_ENABLE_INTERNAL_GNSS - ENABLE_EXTERNAL_MESSAGES = _mscl.InertialTypes_ENABLE_EXTERNAL_MESSAGES - ENABLE_MAGNETOMETER_AND_GNSS = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_GNSS - ENABLE_GNSS_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_GNSS_AND_EXTERNAL - ENABLE_MAGNETOMETER_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_EXTERNAL - ENABLE_ALL = _mscl.InertialTypes_ENABLE_ALL - ENABLE_GYRO_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_BIAS_ESTIMATION - ENABLE_ACCEL_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_BIAS_ESTIMATION - ENABLE_GYRO_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_SCALE_FACTOR_ESTIMATION - ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION - ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION = _mscl.InertialTypes_ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION - ENABLE_HARD_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_HARD_IRON_AUTO_CALIBRATION - ENABLE_SOFT_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_SOFT_IRON_AUTO_CALIBRATION - NONE = _mscl.InertialTypes_NONE - WORLD_MAGNETIC_MODEL = _mscl.InertialTypes_WORLD_MAGNETIC_MODEL - MANUAL = _mscl.InertialTypes_MANUAL - ADAPTIVE_MEASUREMENT_DISABLE = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_DISABLE - ADAPTIVE_MEASUREMENT_ENABLE_FIXED = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_FIXED - ADAPTIVE_MEASUREMENT_ENABLE_AUTO = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_AUTO - GNSS_POS_VEL_AIDING = _mscl.InertialTypes_GNSS_POS_VEL_AIDING - GNSS_HEADING_AIDING = _mscl.InertialTypes_GNSS_HEADING_AIDING - ALTIMETER_AIDING = _mscl.InertialTypes_ALTIMETER_AIDING - ODOMETER_AIDING = _mscl.InertialTypes_ODOMETER_AIDING - MAGNETOMETER_AIDING = _mscl.InertialTypes_MAGNETOMETER_AIDING - EXTERNAL_HEADING_AIDING = _mscl.InertialTypes_EXTERNAL_HEADING_AIDING - EXTERNAL_ALTIMETER_AIDING = _mscl.InertialTypes_EXTERNAL_ALTIMETER_AIDING - EXTERNAL_MAGNETOMETER_AIDING = _mscl.InertialTypes_EXTERNAL_MAGNETOMETER_AIDING - BODY_FRAME_VEL_AIDING = _mscl.InertialTypes_BODY_FRAME_VEL_AIDING - ALL_AIDING_MEASUREMENTS = _mscl.InertialTypes_ALL_AIDING_MEASUREMENTS - GPS = _mscl.InertialTypes_GPS - SBAS = _mscl.InertialTypes_SBAS - GALILEO = _mscl.InertialTypes_GALILEO - BEIDOU = _mscl.InertialTypes_BEIDOU - QZSS = _mscl.InertialTypes_QZSS - GLONASS = _mscl.InertialTypes_GLONASS - FILTERING_OFF = _mscl.InertialTypes_FILTERING_OFF - FILTERING_CONSERVATIVE = _mscl.InertialTypes_FILTERING_CONSERVATIVE - FILTERING_MODERATE = _mscl.InertialTypes_FILTERING_MODERATE - FILTERING_AGGRESSIVE = _mscl.InertialTypes_FILTERING_AGGRESSIVE - FACTORY_STREAMING_OVERWRITE = _mscl.InertialTypes_FACTORY_STREAMING_OVERWRITE - FACTORY_STREAMING_MERGE = _mscl.InertialTypes_FACTORY_STREAMING_MERGE - FACTORY_STREAMING_ADDITIVE = _mscl.InertialTypes_FACTORY_STREAMING_ADDITIVE - PPS_DISABLED = _mscl.InertialTypes_PPS_DISABLED - PPS_RECEIVER_1 = _mscl.InertialTypes_PPS_RECEIVER_1 - PPS_RECEIVER_2 = _mscl.InertialTypes_PPS_RECEIVER_2 - PPS_GPIO = _mscl.InertialTypes_PPS_GPIO - PPS_GENERATED = _mscl.InertialTypes_PPS_GENERATED - GNSS_AIDING_TIGHT_COUPLING = _mscl.InertialTypes_GNSS_AIDING_TIGHT_COUPLING - GNSS_AIDING_DIFFERENTIAL = _mscl.InertialTypes_GNSS_AIDING_DIFFERENTIAL - GNSS_AIDING_INTEGER_FIX = _mscl.InertialTypes_GNSS_AIDING_INTEGER_FIX - GNSS_AIDING_GPS = _mscl.InertialTypes_GNSS_AIDING_GPS - GNSS_AIDING_GLONASS = _mscl.InertialTypes_GNSS_AIDING_GLONASS - GNSS_AIDING_GALILEO = _mscl.InertialTypes_GNSS_AIDING_GALILEO - GNSS_AIDING_BEIDOU = _mscl.InertialTypes_GNSS_AIDING_BEIDOU - GNSS_AIDING_NO_FIX = _mscl.InertialTypes_GNSS_AIDING_NO_FIX - GNSS_AIDING_CONFIG_ERROR = _mscl.InertialTypes_GNSS_AIDING_CONFIG_ERROR - AIDING_MEASUREMENT_ENABLED = _mscl.InertialTypes_AIDING_MEASUREMENT_ENABLED - AIDING_MEASUREMENT_USED = _mscl.InertialTypes_AIDING_MEASUREMENT_USED - AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH - AIDING_MEASUREMENT_WARNING_SAMPLE_TIME = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_SAMPLE_TIME - AIDING_MEASUREMENT_CONFIG_ERROR = _mscl.InertialTypes_AIDING_MEASUREMENT_CONFIG_ERROR - AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED = _mscl.InertialTypes_AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED - RTK_CORRECTION_ANTENNA_POS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_POS_RECEIVED - RTK_CORRECTION_ANTENNA_DESC_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_DESC_RECEIVED - RTK_CORRECTION_GPS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GPS_RECEIVED - RTK_CORRECTION_GLONASS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GLONASS_RECEIVED - RTK_CORRECTION_GALILEO_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GALILEO_RECEIVED - RTK_CORRECTION_BEIDOU_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_BEIDOU_RECEIVED - RTK_CORRECTION_USING_GPS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GPS_MSM - RTK_CORRECTION_USING_GLONASS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GLONASS_MSM - SIGNAL_QUALITY_NONE = _mscl.InertialTypes_SIGNAL_QUALITY_NONE - SIGNAL_QUALITY_SEARCHING = _mscl.InertialTypes_SIGNAL_QUALITY_SEARCHING - SIGNAL_QUALITY_ACQUIRED = _mscl.InertialTypes_SIGNAL_QUALITY_ACQUIRED - SIGNAL_QUALITY_UNUSABLE = _mscl.InertialTypes_SIGNAL_QUALITY_UNUSABLE - SIGNAL_QUALITY_TIME_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_TIME_LOCKED - SIGNAL_QUALITY_FULLY_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_FULLY_LOCKED - OVERRANGE_ACCEL_X = _mscl.InertialTypes_OVERRANGE_ACCEL_X - OVERRANGE_ACCEL_Y = _mscl.InertialTypes_OVERRANGE_ACCEL_Y - OVERRANGE_ACCEL_Z = _mscl.InertialTypes_OVERRANGE_ACCEL_Z - OVERRANGE_GYRO_X = _mscl.InertialTypes_OVERRANGE_GYRO_X - OVERRANGE_GYRO_Y = _mscl.InertialTypes_OVERRANGE_GYRO_Y - OVERRANGE_GYRO_Z = _mscl.InertialTypes_OVERRANGE_GYRO_Z - OVERRANGE_MAG_X = _mscl.InertialTypes_OVERRANGE_MAG_X - OVERRANGE_MAG_Y = _mscl.InertialTypes_OVERRANGE_MAG_Y - OVERRANGE_MAG_Z = _mscl.InertialTypes_OVERRANGE_MAG_Z - OVERRANGE_PRESSURE = _mscl.InertialTypes_OVERRANGE_PRESSURE - UNKNOWN_SBAS_SYSTEM = _mscl.InertialTypes_UNKNOWN_SBAS_SYSTEM - WAAS = _mscl.InertialTypes_WAAS - EGNOS = _mscl.InertialTypes_EGNOS - MSAS = _mscl.InertialTypes_MSAS - GAGAN = _mscl.InertialTypes_GAGAN - SBAS_INFO_RANGE_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_RANGE_AVAILABLE - SBAS_INFO_CORRECTIONS_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_CORRECTIONS_AVAILABLE - SBAS_INFO_INTEGRITY_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_INTEGRITY_AVAILABLE - SBAS_INFO_TEST = _mscl.InertialTypes_SBAS_INFO_TEST - JAMMING_STATE_UNKNOWN = _mscl.InertialTypes_JAMMING_STATE_UNKNOWN - JAMMING_STATE_NONE = _mscl.InertialTypes_JAMMING_STATE_NONE - JAMMING_STATE_PARTIAL = _mscl.InertialTypes_JAMMING_STATE_PARTIAL - JAMMING_STATE_SIGNIFICANT = _mscl.InertialTypes_JAMMING_STATE_SIGNIFICANT - SPOOFING_STATE_UNKNOWN = _mscl.InertialTypes_SPOOFING_STATE_UNKNOWN - SPOOFING_STATE_NONE = _mscl.InertialTypes_SPOOFING_STATE_NONE - SPOOFING_STATE_PARTIAL = _mscl.InertialTypes_SPOOFING_STATE_PARTIAL - SPOOFING_STATE_SIGNIFICANT = _mscl.InertialTypes_SPOOFING_STATE_SIGNIFICANT - - def __init__(self): - _mscl.InertialTypes_swiginit(self, _mscl.new_InertialTypes()) - __swig_destroy__ = _mscl.delete_InertialTypes - -# Register InertialTypes in _mscl: -_mscl.InertialTypes_swigregister(InertialTypes) - -class NmeaMessageFormat(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_MESSAGES = _mscl.NmeaMessageFormat_MAX_MESSAGES - GGA = _mscl.NmeaMessageFormat_GGA - GLL = _mscl.NmeaMessageFormat_GLL - GSV = _mscl.NmeaMessageFormat_GSV - RMC = _mscl.NmeaMessageFormat_RMC - VTG = _mscl.NmeaMessageFormat_VTG - HDT = _mscl.NmeaMessageFormat_HDT - ZDA = _mscl.NmeaMessageFormat_ZDA - MSRA = _mscl.NmeaMessageFormat_MSRA - MSRR = _mscl.NmeaMessageFormat_MSRR - IGNORED = _mscl.NmeaMessageFormat_IGNORED - GNSS = _mscl.NmeaMessageFormat_GNSS - GPS = _mscl.NmeaMessageFormat_GPS - GALILEO = _mscl.NmeaMessageFormat_GALILEO - GLONASS = _mscl.NmeaMessageFormat_GLONASS - - def __init__(self): - _mscl.NmeaMessageFormat_swiginit(self, _mscl.new_NmeaMessageFormat()) - __swig_destroy__ = _mscl.delete_NmeaMessageFormat - - def sentenceType(self, *args): - return _mscl.NmeaMessageFormat_sentenceType(self, *args) - - def talkerId(self, *args): - return _mscl.NmeaMessageFormat_talkerId(self, *args) - - def sourceDataClass(self, *args): - return _mscl.NmeaMessageFormat_sourceDataClass(self, *args) - - def sampleRate(self, *args): - return _mscl.NmeaMessageFormat_sampleRate(self, *args) - - @staticmethod - def talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - - @staticmethod - def dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - - @staticmethod - def supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - - @staticmethod - def toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -# Register NmeaMessageFormat in _mscl: -_mscl.NmeaMessageFormat_swigregister(NmeaMessageFormat) -NmeaMessageFormat.MAX_FREQUENCY = _mscl.cvar.NmeaMessageFormat_MAX_FREQUENCY - -def NmeaMessageFormat_talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - -def NmeaMessageFormat_dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - -def NmeaMessageFormat_supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - -def NmeaMessageFormat_toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -class Matrix_3x3(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Matrix_3x3_swiginit(self, _mscl.new_Matrix_3x3(*args)) - __swig_destroy__ = _mscl.delete_Matrix_3x3 - - def set(self, row, col, value): - return _mscl.Matrix_3x3_set(self, row, col, value) - - def at(self, row, col): - return _mscl.Matrix_3x3_at(self, row, col) - - def __str__(self): - return _mscl.Matrix_3x3___str__(self) - - def asMipFieldValues(self): - return _mscl.Matrix_3x3_asMipFieldValues(self) - -# Register Matrix_3x3 in _mscl: -_mscl.Matrix_3x3_swigregister(Matrix_3x3) - -class TimeUpdate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, timeOfWeek, weekNumber, timeAccuracy=0): - _mscl.TimeUpdate_swiginit(self, _mscl.new_TimeUpdate(timeOfWeek, weekNumber, timeAccuracy)) - __swig_destroy__ = _mscl.delete_TimeUpdate - - def timeOfWeek(self): - return _mscl.TimeUpdate_timeOfWeek(self) - - def weekNumber(self): - return _mscl.TimeUpdate_weekNumber(self) - - def timeAccuracy(self): - return _mscl.TimeUpdate_timeAccuracy(self) - -# Register TimeUpdate in _mscl: -_mscl.TimeUpdate_swigregister(TimeUpdate) - -class ZUPTSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, enable, threshold): - _mscl.ZUPTSettingsData_swiginit(self, _mscl.new_ZUPTSettingsData(enable, threshold)) - enabled = property(_mscl.ZUPTSettingsData_enabled_get, _mscl.ZUPTSettingsData_enabled_set) - threshold = property(_mscl.ZUPTSettingsData_threshold_get, _mscl.ZUPTSettingsData_threshold_set) - __swig_destroy__ = _mscl.delete_ZUPTSettingsData - -# Register ZUPTSettingsData in _mscl: -_mscl.ZUPTSettingsData_swigregister(ZUPTSettingsData) - -class FixedReferencePositionData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.FixedReferencePositionData_swiginit(self, _mscl.new_FixedReferencePositionData(*args)) - enable = property(_mscl.FixedReferencePositionData_enable_get, _mscl.FixedReferencePositionData_enable_set) - referencePosition = property(_mscl.FixedReferencePositionData_referencePosition_get, _mscl.FixedReferencePositionData_referencePosition_set) - __swig_destroy__ = _mscl.delete_FixedReferencePositionData - -# Register FixedReferencePositionData in _mscl: -_mscl.FixedReferencePositionData_swigregister(FixedReferencePositionData) - -class SBASSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enableSBAS = property(_mscl.SBASSettingsData_enableSBAS_get, _mscl.SBASSettingsData_enableSBAS_set) - enableRanging = property(_mscl.SBASSettingsData_enableRanging_get, _mscl.SBASSettingsData_enableRanging_set) - enableCorrectionData = property(_mscl.SBASSettingsData_enableCorrectionData_get, _mscl.SBASSettingsData_enableCorrectionData_set) - applyIntegrityInfo = property(_mscl.SBASSettingsData_applyIntegrityInfo_get, _mscl.SBASSettingsData_applyIntegrityInfo_set) - satellitePRNs = property(_mscl.SBASSettingsData_satellitePRNs_get, _mscl.SBASSettingsData_satellitePRNs_set) - - def __init__(self): - _mscl.SBASSettingsData_swiginit(self, _mscl.new_SBASSettingsData()) - __swig_destroy__ = _mscl.delete_SBASSettingsData - -# Register SBASSettingsData in _mscl: -_mscl.SBASSettingsData_swigregister(SBASSettingsData) - -class Constellation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - constellationID = property(_mscl.Constellation_constellationID_get, _mscl.Constellation_constellationID_set) - enabled = property(_mscl.Constellation_enabled_get, _mscl.Constellation_enabled_set) - reservedChannelCount = property(_mscl.Constellation_reservedChannelCount_get, _mscl.Constellation_reservedChannelCount_set) - maxChannels = property(_mscl.Constellation_maxChannels_get, _mscl.Constellation_maxChannels_set) - enableL1SAIF = property(_mscl.Constellation_enableL1SAIF_get, _mscl.Constellation_enableL1SAIF_set) - - def __init__(self): - _mscl.Constellation_swiginit(self, _mscl.new_Constellation()) - __swig_destroy__ = _mscl.delete_Constellation - -# Register Constellation in _mscl: -_mscl.Constellation_swigregister(Constellation) - -class ConstellationSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - maxChannelsAvailable = property(_mscl.ConstellationSettingsData_maxChannelsAvailable_get, _mscl.ConstellationSettingsData_maxChannelsAvailable_set) - maxChannelsToUse = property(_mscl.ConstellationSettingsData_maxChannelsToUse_get, _mscl.ConstellationSettingsData_maxChannelsToUse_set) - constellations = property(_mscl.ConstellationSettingsData_constellations_get, _mscl.ConstellationSettingsData_constellations_set) - - def __init__(self): - _mscl.ConstellationSettingsData_swiginit(self, _mscl.new_ConstellationSettingsData()) - __swig_destroy__ = _mscl.delete_ConstellationSettingsData - -# Register ConstellationSettingsData in _mscl: -_mscl.ConstellationSettingsData_swigregister(ConstellationSettingsData) - -class LowPassFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SET_TO_HALF_REPORTING_RATE = _mscl.LowPassFilterData_SET_TO_HALF_REPORTING_RATE - USER_SPECIFIED_CUTOFF_FREQ = _mscl.LowPassFilterData_USER_SPECIFIED_CUTOFF_FREQ - - def __init__(self, *args): - _mscl.LowPassFilterData_swiginit(self, _mscl.new_LowPassFilterData(*args)) - dataDescriptor = property(_mscl.LowPassFilterData_dataDescriptor_get, _mscl.LowPassFilterData_dataDescriptor_set) - manualFilterBandwidthConfig = property(_mscl.LowPassFilterData_manualFilterBandwidthConfig_get, _mscl.LowPassFilterData_manualFilterBandwidthConfig_set) - applyLowPassFilter = property(_mscl.LowPassFilterData_applyLowPassFilter_get, _mscl.LowPassFilterData_applyLowPassFilter_set) - cutoffFrequency = property(_mscl.LowPassFilterData_cutoffFrequency_get, _mscl.LowPassFilterData_cutoffFrequency_set) - - @staticmethod - def getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - - @staticmethod - def getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - __swig_destroy__ = _mscl.delete_LowPassFilterData - -# Register LowPassFilterData in _mscl: -_mscl.LowPassFilterData_swigregister(LowPassFilterData) - -def LowPassFilterData_getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - -def LowPassFilterData_getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - -class ComplementaryFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ComplementaryFilterData_swiginit(self, _mscl.new_ComplementaryFilterData()) - upCompensationEnabled = property(_mscl.ComplementaryFilterData_upCompensationEnabled_get, _mscl.ComplementaryFilterData_upCompensationEnabled_set) - upCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_upCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_upCompensationTimeInSeconds_set) - northCompensationEnabled = property(_mscl.ComplementaryFilterData_northCompensationEnabled_get, _mscl.ComplementaryFilterData_northCompensationEnabled_set) - northCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_northCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_northCompensationTimeInSeconds_set) - __swig_destroy__ = _mscl.delete_ComplementaryFilterData - -# Register ComplementaryFilterData in _mscl: -_mscl.ComplementaryFilterData_swigregister(ComplementaryFilterData) - -class PpsPulseInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PpsPulseInfo_swiginit(self, _mscl.new_PpsPulseInfo()) - count = property(_mscl.PpsPulseInfo_count_get, _mscl.PpsPulseInfo_count_set) - lastTimeinMS = property(_mscl.PpsPulseInfo_lastTimeinMS_get, _mscl.PpsPulseInfo_lastTimeinMS_set) - __swig_destroy__ = _mscl.delete_PpsPulseInfo - -# Register PpsPulseInfo in _mscl: -_mscl.PpsPulseInfo_swigregister(PpsPulseInfo) - -class StreamInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.StreamInfo_swiginit(self, _mscl.new_StreamInfo()) - enabled = property(_mscl.StreamInfo_enabled_get, _mscl.StreamInfo_enabled_set) - outgoingPacketsDropped = property(_mscl.StreamInfo_outgoingPacketsDropped_get, _mscl.StreamInfo_outgoingPacketsDropped_set) - __swig_destroy__ = _mscl.delete_StreamInfo - -# Register StreamInfo in _mscl: -_mscl.StreamInfo_swigregister(StreamInfo) - -class DeviceMessageInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.DeviceMessageInfo_swiginit(self, _mscl.new_DeviceMessageInfo()) - messageParsingErrors = property(_mscl.DeviceMessageInfo_messageParsingErrors_get, _mscl.DeviceMessageInfo_messageParsingErrors_set) - messagesRead = property(_mscl.DeviceMessageInfo_messagesRead_get, _mscl.DeviceMessageInfo_messagesRead_set) - lastMessageReadinMS = property(_mscl.DeviceMessageInfo_lastMessageReadinMS_get, _mscl.DeviceMessageInfo_lastMessageReadinMS_set) - __swig_destroy__ = _mscl.delete_DeviceMessageInfo - -# Register DeviceMessageInfo in _mscl: -_mscl.DeviceMessageInfo_swigregister(DeviceMessageInfo) - -class PortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PortInfo_swiginit(self, _mscl.new_PortInfo()) - bytesWritten = property(_mscl.PortInfo_bytesWritten_get, _mscl.PortInfo_bytesWritten_set) - bytesRead = property(_mscl.PortInfo_bytesRead_get, _mscl.PortInfo_bytesRead_set) - overrunsOnWrite = property(_mscl.PortInfo_overrunsOnWrite_get, _mscl.PortInfo_overrunsOnWrite_set) - overrunsOnRead = property(_mscl.PortInfo_overrunsOnRead_get, _mscl.PortInfo_overrunsOnRead_set) - __swig_destroy__ = _mscl.delete_PortInfo - -# Register PortInfo in _mscl: -_mscl.PortInfo_swigregister(PortInfo) - -class TemperatureInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.TemperatureInfo_swiginit(self, _mscl.new_TemperatureInfo()) - onBoardTemp = property(_mscl.TemperatureInfo_onBoardTemp_get, _mscl.TemperatureInfo_onBoardTemp_set) - lastReadInMS = property(_mscl.TemperatureInfo_lastReadInMS_get, _mscl.TemperatureInfo_lastReadInMS_set) - error = property(_mscl.TemperatureInfo_error_get, _mscl.TemperatureInfo_error_set) - __swig_destroy__ = _mscl.delete_TemperatureInfo - -# Register TemperatureInfo in _mscl: -_mscl.TemperatureInfo_swigregister(TemperatureInfo) - -ModelNumber = _mscl.ModelNumber -StatusStructure_Value = _mscl.StatusStructure_Value -SystemState_Value = _mscl.SystemState_Value -gnss1PpsPulseInfo_Count = _mscl.gnss1PpsPulseInfo_Count -gnss1PpsPulseInfo_LastTimeinMS = _mscl.gnss1PpsPulseInfo_LastTimeinMS -GnssPowerStateOn = _mscl.GnssPowerStateOn -ImuStreamInfo_Enabled = _mscl.ImuStreamInfo_Enabled -ImuStreamInfo_PacketsDropped = _mscl.ImuStreamInfo_PacketsDropped -GnssStreamInfo_Enabled = _mscl.GnssStreamInfo_Enabled -GnssStreamInfo_PacketsDropped = _mscl.GnssStreamInfo_PacketsDropped -EstimationFilterStreamInfo_Enabled = _mscl.EstimationFilterStreamInfo_Enabled -EstimationFilterStreamInfo_PacketsDropped = _mscl.EstimationFilterStreamInfo_PacketsDropped -ComPortInfo_BytesRead = _mscl.ComPortInfo_BytesRead -ComPortInfo_BytesWritten = _mscl.ComPortInfo_BytesWritten -ComPortInfo_OverrunsOnRead = _mscl.ComPortInfo_OverrunsOnRead -ComPortInfo_OverrunsOnWrite = _mscl.ComPortInfo_OverrunsOnWrite -ImuMessageInfo_LastMessageReadinMS = _mscl.ImuMessageInfo_LastMessageReadinMS -ImuMessageInfo_MessageParsingErrors = _mscl.ImuMessageInfo_MessageParsingErrors -ImuMessageInfo_MessagesRead = _mscl.ImuMessageInfo_MessagesRead -GnssMessageInfo_LastMessageReadinMS = _mscl.GnssMessageInfo_LastMessageReadinMS -GnssMessageInfo_MessageParsingErrors = _mscl.GnssMessageInfo_MessageParsingErrors -GnssMessageInfo_MessagesRead = _mscl.GnssMessageInfo_MessagesRead -TemperatureInfo_Error = _mscl.TemperatureInfo_Error -TemperatureInfo_LastReadInMS = _mscl.TemperatureInfo_LastReadInMS -TemperatureInfo_OnBoardTemp = _mscl.TemperatureInfo_OnBoardTemp -PowerState = _mscl.PowerState -GyroRange = _mscl.GyroRange -AccelRange = _mscl.AccelRange -HasMagnetometer = _mscl.HasMagnetometer -HasPressure = _mscl.HasPressure -class DeviceStatusData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_BASIC_STATUS_STRUCTURE - DIAGNOSTIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_DIAGNOSTIC_STATUS_STRUCTURE - SYSTEM_INITIALIZATION = _mscl.DeviceStatusData_SYSTEM_INITIALIZATION - SYSTEM_STARTUP = _mscl.DeviceStatusData_SYSTEM_STARTUP - SYSTEM_RUNNING = _mscl.DeviceStatusData_SYSTEM_RUNNING - - def __init__(self): - _mscl.DeviceStatusData_swiginit(self, _mscl.new_DeviceStatusData()) - modelNumber = property(_mscl.DeviceStatusData_modelNumber_get, _mscl.DeviceStatusData_modelNumber_set) - statusStructure = property(_mscl.DeviceStatusData_statusStructure_get, _mscl.DeviceStatusData_statusStructure_set) - systemTimerInMS = property(_mscl.DeviceStatusData_systemTimerInMS_get, _mscl.DeviceStatusData_systemTimerInMS_set) - - def systemState(self, *args): - return _mscl.DeviceStatusData_systemState(self, *args) - - def gnssPowerStateOn(self, *args): - return _mscl.DeviceStatusData_gnssPowerStateOn(self, *args) - - def gnss1PpsPulseInfo(self, *args): - return _mscl.DeviceStatusData_gnss1PpsPulseInfo(self, *args) - - def imuStreamInfo(self, *args): - return _mscl.DeviceStatusData_imuStreamInfo(self, *args) - - def gnssStreamInfo(self, *args): - return _mscl.DeviceStatusData_gnssStreamInfo(self, *args) - - def estimationFilterStreamInfo(self, *args): - return _mscl.DeviceStatusData_estimationFilterStreamInfo(self, *args) - - def imuMessageInfo(self, *args): - return _mscl.DeviceStatusData_imuMessageInfo(self, *args) - - def gnssMessageInfo(self, *args): - return _mscl.DeviceStatusData_gnssMessageInfo(self, *args) - - def comPortInfo(self, *args): - return _mscl.DeviceStatusData_comPortInfo(self, *args) - - def usbPortInfo(self, *args): - return _mscl.DeviceStatusData_usbPortInfo(self, *args) - - def hasMagnetometer(self, *args): - return _mscl.DeviceStatusData_hasMagnetometer(self, *args) - - def magnetometerInitializationFailed(self, *args): - return _mscl.DeviceStatusData_magnetometerInitializationFailed(self, *args) - - def hasPressure(self, *args): - return _mscl.DeviceStatusData_hasPressure(self, *args) - - def pressureInitializationFailed(self, *args): - return _mscl.DeviceStatusData_pressureInitializationFailed(self, *args) - - def gnssReceiverInitializationFailed(self, *args): - return _mscl.DeviceStatusData_gnssReceiverInitializationFailed(self, *args) - - def coldStartOnPowerOn(self, *args): - return _mscl.DeviceStatusData_coldStartOnPowerOn(self, *args) - - def temperatureInfo(self, *args): - return _mscl.DeviceStatusData_temperatureInfo(self, *args) - - def powerState(self, *args): - return _mscl.DeviceStatusData_powerState(self, *args) - - def gyroRange(self, *args): - return _mscl.DeviceStatusData_gyroRange(self, *args) - - def accelRange(self, *args): - return _mscl.DeviceStatusData_accelRange(self, *args) - - def asMap(self): - return _mscl.DeviceStatusData_asMap(self) - - def asValueMap(self): - return _mscl.DeviceStatusData_asValueMap(self) - __swig_destroy__ = _mscl.delete_DeviceStatusData - -# Register DeviceStatusData in _mscl: -_mscl.DeviceStatusData_swigregister(DeviceStatusData) - -class ExternalGNSSUpdateData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - gpsTimeOfWeek = property(_mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_get, _mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_set) - gpsWeekNumber = property(_mscl.ExternalGNSSUpdateData_gpsWeekNumber_get, _mscl.ExternalGNSSUpdateData_gpsWeekNumber_set) - lattitude = property(_mscl.ExternalGNSSUpdateData_lattitude_get, _mscl.ExternalGNSSUpdateData_lattitude_set) - longitude = property(_mscl.ExternalGNSSUpdateData_longitude_get, _mscl.ExternalGNSSUpdateData_longitude_set) - altitudeAboveWGS84Ellipsoid = property(_mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_get, _mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_set) - northVelocity = property(_mscl.ExternalGNSSUpdateData_northVelocity_get, _mscl.ExternalGNSSUpdateData_northVelocity_set) - eastVelocity = property(_mscl.ExternalGNSSUpdateData_eastVelocity_get, _mscl.ExternalGNSSUpdateData_eastVelocity_set) - downVelocity = property(_mscl.ExternalGNSSUpdateData_downVelocity_get, _mscl.ExternalGNSSUpdateData_downVelocity_set) - northPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_northPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_northPositionUncertainty_set) - eastPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_eastPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_eastPositionUncertainty_set) - downPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_downPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_downPositionUncertainty_set) - northVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_northVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_northVelocityUncertainty_set) - eastVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_set) - downVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_downVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_downVelocityUncertainty_set) - - def __init__(self): - _mscl.ExternalGNSSUpdateData_swiginit(self, _mscl.new_ExternalGNSSUpdateData()) - __swig_destroy__ = _mscl.delete_ExternalGNSSUpdateData - -# Register ExternalGNSSUpdateData in _mscl: -_mscl.ExternalGNSSUpdateData_swigregister(ExternalGNSSUpdateData) - -class HeadingUpdateOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsOptionId(self): - return _mscl.HeadingUpdateOptions_AsOptionId(self) - - def __init__(self, *args): - _mscl.HeadingUpdateOptions_swiginit(self, _mscl.new_HeadingUpdateOptions(*args)) - useInternalMagnetometer = property(_mscl.HeadingUpdateOptions_useInternalMagnetometer_get, _mscl.HeadingUpdateOptions_useInternalMagnetometer_set) - useInternalGNSSVelocityVector = property(_mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_get, _mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_set) - useExternalHeadingMessages = property(_mscl.HeadingUpdateOptions_useExternalHeadingMessages_get, _mscl.HeadingUpdateOptions_useExternalHeadingMessages_set) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptions - -# Register HeadingUpdateOptions in _mscl: -_mscl.HeadingUpdateOptions_swigregister(HeadingUpdateOptions) - -Automatic = _mscl.Automatic -UserSpecified_Heading = _mscl.UserSpecified_Heading -UserSpecified_Attitude = _mscl.UserSpecified_Attitude -UserSpecified_All = _mscl.UserSpecified_All -GNSS_DualAntenna = _mscl.GNSS_DualAntenna -GNSS_Kinematic = _mscl.GNSS_Kinematic -Magnetometer = _mscl.Magnetometer -External = _mscl.External -class HeadingAlignmentMethod(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.HeadingAlignmentMethod_swiginit(self, _mscl.new_HeadingAlignmentMethod(*args)) - value = property(_mscl.HeadingAlignmentMethod_value_get, _mscl.HeadingAlignmentMethod_value_set) - - def select(self, option): - return _mscl.HeadingAlignmentMethod_select(self, option) - - def deselect(self, option): - return _mscl.HeadingAlignmentMethod_deselect(self, option) - - def selected(self, option): - return _mscl.HeadingAlignmentMethod_selected(self, option) - __swig_destroy__ = _mscl.delete_HeadingAlignmentMethod - -# Register HeadingAlignmentMethod in _mscl: -_mscl.HeadingAlignmentMethod_swigregister(HeadingAlignmentMethod) - -class FilterInitializationValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FilterInitializationValues_swiginit(self, _mscl.new_FilterInitializationValues()) - autoInitialize = property(_mscl.FilterInitializationValues_autoInitialize_get, _mscl.FilterInitializationValues_autoInitialize_set) - initialValuesSource = property(_mscl.FilterInitializationValues_initialValuesSource_get, _mscl.FilterInitializationValues_initialValuesSource_set) - autoHeadingAlignmentMethod = property(_mscl.FilterInitializationValues_autoHeadingAlignmentMethod_get, _mscl.FilterInitializationValues_autoHeadingAlignmentMethod_set) - initialAttitude = property(_mscl.FilterInitializationValues_initialAttitude_get, _mscl.FilterInitializationValues_initialAttitude_set) - initialPosition = property(_mscl.FilterInitializationValues_initialPosition_get, _mscl.FilterInitializationValues_initialPosition_set) - initialVelocity = property(_mscl.FilterInitializationValues_initialVelocity_get, _mscl.FilterInitializationValues_initialVelocity_set) - referenceFrame = property(_mscl.FilterInitializationValues_referenceFrame_get, _mscl.FilterInitializationValues_referenceFrame_set) - - def manualHeading(self): - return _mscl.FilterInitializationValues_manualHeading(self) - - def manualAttitude(self): - return _mscl.FilterInitializationValues_manualAttitude(self) - - def manualPositionVelocity(self): - return _mscl.FilterInitializationValues_manualPositionVelocity(self) - __swig_destroy__ = _mscl.delete_FilterInitializationValues - -# Register FilterInitializationValues in _mscl: -_mscl.FilterInitializationValues_swigregister(FilterInitializationValues) - -class TareAxisValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def asUint8(self): - return _mscl.TareAxisValues_asUint8(self) - - def __init__(self, tareRollAxis, tarePitchAxis, tareYawAxis): - _mscl.TareAxisValues_swiginit(self, _mscl.new_TareAxisValues(tareRollAxis, tarePitchAxis, tareYawAxis)) - tareRollAxis = property(_mscl.TareAxisValues_tareRollAxis_get, _mscl.TareAxisValues_tareRollAxis_set) - tarePitchAxis = property(_mscl.TareAxisValues_tarePitchAxis_get, _mscl.TareAxisValues_tarePitchAxis_set) - tareYawAxis = property(_mscl.TareAxisValues_tareYawAxis_get, _mscl.TareAxisValues_tareYawAxis_set) - __swig_destroy__ = _mscl.delete_TareAxisValues - -# Register TareAxisValues in _mscl: -_mscl.TareAxisValues_swigregister(TareAxisValues) - -class GeographicSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeographicSourceOptions_swiginit(self, _mscl.new_GeographicSourceOptions(*args)) - source = property(_mscl.GeographicSourceOptions_source_get, _mscl.GeographicSourceOptions_source_set) - manual = property(_mscl.GeographicSourceOptions_manual_get, _mscl.GeographicSourceOptions_manual_set) - __swig_destroy__ = _mscl.delete_GeographicSourceOptions - -# Register GeographicSourceOptions in _mscl: -_mscl.GeographicSourceOptions_swigregister(GeographicSourceOptions) - -class EstimationControlOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsUint16(self): - return _mscl.EstimationControlOptions_AsUint16(self) - - def __init__(self, *args): - _mscl.EstimationControlOptions_swiginit(self, _mscl.new_EstimationControlOptions(*args)) - enableGyroBiasEstimation = property(_mscl.EstimationControlOptions_enableGyroBiasEstimation_get, _mscl.EstimationControlOptions_enableGyroBiasEstimation_set) - enableAccelBiasEstimation = property(_mscl.EstimationControlOptions_enableAccelBiasEstimation_get, _mscl.EstimationControlOptions_enableAccelBiasEstimation_set) - enableGyroScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_set) - enableAccelScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_set) - enableGNSSAntennaOffsetEstimation = property(_mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_get, _mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_set) - enableHardIronAutoCalibration = property(_mscl.EstimationControlOptions_enableHardIronAutoCalibration_get, _mscl.EstimationControlOptions_enableHardIronAutoCalibration_set) - enableSoftIronAutoCalibration = property(_mscl.EstimationControlOptions_enableSoftIronAutoCalibration_get, _mscl.EstimationControlOptions_enableSoftIronAutoCalibration_set) - __swig_destroy__ = _mscl.delete_EstimationControlOptions - -# Register EstimationControlOptions in _mscl: -_mscl.EstimationControlOptions_swigregister(EstimationControlOptions) - -class HeadingData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HeadingData_swiginit(self, _mscl.new_HeadingData()) - TRUE_HEADING = _mscl.HeadingData_TRUE_HEADING - MAGNETIC_HEADING = _mscl.HeadingData_MAGNETIC_HEADING - heading = property(_mscl.HeadingData_heading_get, _mscl.HeadingData_heading_set) - headingAngle = property(_mscl.HeadingData_headingAngle_get, _mscl.HeadingData_headingAngle_set) - headingAngleUncertainty = property(_mscl.HeadingData_headingAngleUncertainty_get, _mscl.HeadingData_headingAngleUncertainty_set) - __swig_destroy__ = _mscl.delete_HeadingData - -# Register HeadingData in _mscl: -_mscl.HeadingData_swigregister(HeadingData) - -class AdaptiveMeasurementData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AdaptiveMeasurementData_swiginit(self, _mscl.new_AdaptiveMeasurementData()) - mode = property(_mscl.AdaptiveMeasurementData_mode_get, _mscl.AdaptiveMeasurementData_mode_set) - lowPassFilterCutoff = property(_mscl.AdaptiveMeasurementData_lowPassFilterCutoff_get, _mscl.AdaptiveMeasurementData_lowPassFilterCutoff_set) - lowLimit = property(_mscl.AdaptiveMeasurementData_lowLimit_get, _mscl.AdaptiveMeasurementData_lowLimit_set) - highLimit = property(_mscl.AdaptiveMeasurementData_highLimit_get, _mscl.AdaptiveMeasurementData_highLimit_set) - lowLimitUncertainty = property(_mscl.AdaptiveMeasurementData_lowLimitUncertainty_get, _mscl.AdaptiveMeasurementData_lowLimitUncertainty_set) - highLimitUncertainty = property(_mscl.AdaptiveMeasurementData_highLimitUncertainty_get, _mscl.AdaptiveMeasurementData_highLimitUncertainty_set) - minUncertainty = property(_mscl.AdaptiveMeasurementData_minUncertainty_get, _mscl.AdaptiveMeasurementData_minUncertainty_set) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementData - -# Register AdaptiveMeasurementData in _mscl: -_mscl.AdaptiveMeasurementData_swigregister(AdaptiveMeasurementData) - -class AutoAdaptiveFilterOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AutoAdaptiveFilterOptions_swiginit(self, _mscl.new_AutoAdaptiveFilterOptions(*args)) - level = property(_mscl.AutoAdaptiveFilterOptions_level_get, _mscl.AutoAdaptiveFilterOptions_level_set) - timeLimit = property(_mscl.AutoAdaptiveFilterOptions_timeLimit_get, _mscl.AutoAdaptiveFilterOptions_timeLimit_set) - __swig_destroy__ = _mscl.delete_AutoAdaptiveFilterOptions - -# Register AutoAdaptiveFilterOptions in _mscl: -_mscl.AutoAdaptiveFilterOptions_swigregister(AutoAdaptiveFilterOptions) - -class SignalConditioningValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ENABLE_ORIENTATION_CALC = _mscl.SignalConditioningValues_ENABLE_ORIENTATION_CALC - ENABLE_CONING_SCULLING = _mscl.SignalConditioningValues_ENABLE_CONING_SCULLING - ENABLE_FINITE_SIZE_CORRECTION = _mscl.SignalConditioningValues_ENABLE_FINITE_SIZE_CORRECTION - DISABLE_MAGNETOMETER = _mscl.SignalConditioningValues_DISABLE_MAGNETOMETER - DISABLE_NORTH_COMP = _mscl.SignalConditioningValues_DISABLE_NORTH_COMP - DISABLE_UP_COMP = _mscl.SignalConditioningValues_DISABLE_UP_COMP - ENABLE_QUATERNION_CALC = _mscl.SignalConditioningValues_ENABLE_QUATERNION_CALC - HIGH = _mscl.SignalConditioningValues_HIGH - LOW = _mscl.SignalConditioningValues_LOW - dataConditioningFlags = property(_mscl.SignalConditioningValues_dataConditioningFlags_get, _mscl.SignalConditioningValues_dataConditioningFlags_set) - orientationCalcDecimation = property(_mscl.SignalConditioningValues_orientationCalcDecimation_get, _mscl.SignalConditioningValues_orientationCalcDecimation_set) - accelGyroFilterWidth = property(_mscl.SignalConditioningValues_accelGyroFilterWidth_get, _mscl.SignalConditioningValues_accelGyroFilterWidth_set) - magFilterWidth = property(_mscl.SignalConditioningValues_magFilterWidth_get, _mscl.SignalConditioningValues_magFilterWidth_set) - upCompensation = property(_mscl.SignalConditioningValues_upCompensation_get, _mscl.SignalConditioningValues_upCompensation_set) - northCompensation = property(_mscl.SignalConditioningValues_northCompensation_get, _mscl.SignalConditioningValues_northCompensation_set) - magBandwidthPower = property(_mscl.SignalConditioningValues_magBandwidthPower_get, _mscl.SignalConditioningValues_magBandwidthPower_set) - - def __init__(self): - _mscl.SignalConditioningValues_swiginit(self, _mscl.new_SignalConditioningValues()) - - def conditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_conditioningOptionOn(self, *args) - - def setConditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOn(self, *args) - - def setConditioningOptionOff(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOff(self, *args) - __swig_destroy__ = _mscl.delete_SignalConditioningValues - -# Register SignalConditioningValues in _mscl: -_mscl.SignalConditioningValues_swigregister(SignalConditioningValues) - -class EnableDisableMeasurements(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ACCELEROMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_ACCELEROMETER_MEASUREMENTS - MAGNETOMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_MAGNETOMETER_MEASUREMENTS - - def __init__(self, *args): - _mscl.EnableDisableMeasurements_swiginit(self, _mscl.new_EnableDisableMeasurements(*args)) - measurementOptions = property(_mscl.EnableDisableMeasurements_measurementOptions_get, _mscl.EnableDisableMeasurements_measurementOptions_set) - - def optionEnabled(self, *args): - return _mscl.EnableDisableMeasurements_optionEnabled(self, *args) - - def enableOption(self, *args): - return _mscl.EnableDisableMeasurements_enableOption(self, *args) - - def disableOption(self, *args): - return _mscl.EnableDisableMeasurements_disableOption(self, *args) - __swig_destroy__ = _mscl.delete_EnableDisableMeasurements - -# Register EnableDisableMeasurements in _mscl: -_mscl.EnableDisableMeasurements_swigregister(EnableDisableMeasurements) - -class RTKDeviceStatusFlags(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MODEM_STATE = _mscl.RTKDeviceStatusFlags_MODEM_STATE - CONNECTION_TYPE = _mscl.RTKDeviceStatusFlags_CONNECTION_TYPE - RSSI = _mscl.RTKDeviceStatusFlags_RSSI - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_SIGNAL_QUALITY - TOWER_CHANGE_INDICATOR = _mscl.RTKDeviceStatusFlags_TOWER_CHANGE_INDICATOR - NMEA_TIMEOUT = _mscl.RTKDeviceStatusFlags_NMEA_TIMEOUT - SERVER_TIMEOUT = _mscl.RTKDeviceStatusFlags_SERVER_TIMEOUT - RTCM_TIMEOUT = _mscl.RTKDeviceStatusFlags_RTCM_TIMEOUT - DEVICE_OUT_OF_RANGE = _mscl.RTKDeviceStatusFlags_DEVICE_OUT_OF_RANGE - CORRECTIONS_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_CORRECTIONS_UNAVAILABLE - VERSION = _mscl.RTKDeviceStatusFlags_VERSION - OFF = _mscl.RTKDeviceStatusFlags_OFF - NO_NETWORK = _mscl.RTKDeviceStatusFlags_NO_NETWORK - NETWORK_CONNECTED = _mscl.RTKDeviceStatusFlags_NETWORK_CONNECTED - CONFIGURING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_CONFIGURING_DATA_CONTEXT - ACTIVATING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_ACTIVATING_DATA_CONTEXT - CONFIGURING_SOCKET = _mscl.RTKDeviceStatusFlags_CONFIGURING_SOCKET - WAITING_ON_SERVER_HANDSHAKE = _mscl.RTKDeviceStatusFlags_WAITING_ON_SERVER_HANDSHAKE - CONNECTED_AND_IDLE = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_IDLE - CONNECTED_AND_STREAMING = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_STREAMING - NO_CONNECTION = _mscl.RTKDeviceStatusFlags_NO_CONNECTION - CONNECTION_2G = _mscl.RTKDeviceStatusFlags_CONNECTION_2G - CONNECTION_3G = _mscl.RTKDeviceStatusFlags_CONNECTION_3G - CONNECTION_4G = _mscl.RTKDeviceStatusFlags_CONNECTION_4G - CONNECTION_5G = _mscl.RTKDeviceStatusFlags_CONNECTION_5G - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_swiginit(self, _mscl.new_RTKDeviceStatusFlags(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_version(self) - - def modemState(self, *args): - return _mscl.RTKDeviceStatusFlags_modemState(self, *args) - - def connectionType(self, *args): - return _mscl.RTKDeviceStatusFlags_connectionType(self, *args) - - def rssi(self, *args): - return _mscl.RTKDeviceStatusFlags_rssi(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_signalQuality(self, *args) - - def towerChangeIndicator(self, *args): - return _mscl.RTKDeviceStatusFlags_towerChangeIndicator(self, *args) - - def nmeaTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_nmeaTimeout(self, *args) - - def serverTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_serverTimeout(self, *args) - - def rtcmTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_rtcmTimeout(self, *args) - - def deviceOutOfRange(self, *args): - return _mscl.RTKDeviceStatusFlags_deviceOutOfRange(self, *args) - - def correctionsUnavailable(self, *args): - return _mscl.RTKDeviceStatusFlags_correctionsUnavailable(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags - -# Register RTKDeviceStatusFlags in _mscl: -_mscl.RTKDeviceStatusFlags_swigregister(RTKDeviceStatusFlags) - -class RTKDeviceStatusFlags_v1(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONTROLLER_STATE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATE - PLATFORM_STATE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATE - CONTROLLER_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATUS_CODE - PLATFORM_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATUS_CODE - RESET_REASON = _mscl.RTKDeviceStatusFlags_v1_RESET_REASON - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_v1_SIGNAL_QUALITY - VERSION = _mscl.RTKDeviceStatusFlags_v1_VERSION - IDLE = _mscl.RTKDeviceStatusFlags_v1_IDLE - ACTIVE = _mscl.RTKDeviceStatusFlags_v1_ACTIVE - MODEM_OFF = _mscl.RTKDeviceStatusFlags_v1_MODEM_OFF - MODEM_POWERING_ON = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_ON - MODEM_CONFIGURE = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONFIGURE - MODEM_POWERING_DOWN = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_DOWN - MODEM_READY = _mscl.RTKDeviceStatusFlags_v1_MODEM_READY - MODEM_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTING - MODEM_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_DISCONNECTING - MODEM_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTED - SERVICE_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTING - SERVICE_CONNECTION_FAILED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_FAILED - SERVICE_CONNECTION_CANCELED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_CANCELED - SERVICE_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_DISCONNECTING - SERVICE_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTED - PLATFORM_ERROR = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_ERROR - RESET_MODEM = _mscl.RTKDeviceStatusFlags_v1_RESET_MODEM - CONTROLLER_OK = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_OK - WAITING_NMEA = _mscl.RTKDeviceStatusFlags_v1_WAITING_NMEA - RTK_TIMEOUT = _mscl.RTKDeviceStatusFlags_v1_RTK_TIMEOUT - RTK_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_v1_RTK_UNAVAILABLE - CONFIG_INVALID = _mscl.RTKDeviceStatusFlags_v1_CONFIG_INVALID - PLATFORM_OK = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_OK - RTK_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_RTK_CONNECTION_DROPPED - CELL_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_CELL_CONNECTION_DROPPED - MODEM_ERROR = _mscl.RTKDeviceStatusFlags_v1_MODEM_ERROR - POWER_ON = _mscl.RTKDeviceStatusFlags_v1_POWER_ON - UNKNOWN = _mscl.RTKDeviceStatusFlags_v1_UNKNOWN - SOFT_RESET = _mscl.RTKDeviceStatusFlags_v1_SOFT_RESET - HARDWARE_ERROR_RESET = _mscl.RTKDeviceStatusFlags_v1_HARDWARE_ERROR_RESET - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_v1_swiginit(self, _mscl.new_RTKDeviceStatusFlags_v1(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_v1_version(self) - - def controllerState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerState(self, *args) - - def platformState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformState(self, *args) - - def controllerStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerStatusCode(self, *args) - - def platformStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformStatusCode(self, *args) - - def resetReason(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_resetReason(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_signalQuality(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags_v1 - -# Register RTKDeviceStatusFlags_v1 in _mscl: -_mscl.RTKDeviceStatusFlags_v1_swigregister(RTKDeviceStatusFlags_v1) - -class GnssSignalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - L1CA = _mscl.GnssSignalConfiguration_L1CA - L2C = _mscl.GnssSignalConfiguration_L2C - L1OF = _mscl.GnssSignalConfiguration_L1OF - L2OF = _mscl.GnssSignalConfiguration_L2OF - E1 = _mscl.GnssSignalConfiguration_E1 - E5B = _mscl.GnssSignalConfiguration_E5B - B1 = _mscl.GnssSignalConfiguration_B1 - B2 = _mscl.GnssSignalConfiguration_B2 - - def __init__(self): - _mscl.GnssSignalConfiguration_swiginit(self, _mscl.new_GnssSignalConfiguration()) - - def enableGpsSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGpsSignal(self, signal, enable) - - def gpsSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_gpsSignalEnabled(self, signal) - - def gpsSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_gpsSignalValue(self, *args) - - def enableGlonassSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGlonassSignal(self, signal, enable) - - def glonassSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_glonassSignalEnabled(self, signal) - - def glonassSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_glonassSignalValue(self, *args) - - def enableGalileoSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGalileoSignal(self, signal, enable) - - def galileoSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_galileoSignalEnabled(self, signal) - - def galileoSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_galileoSignalValue(self, *args) - - def enableBeiDouSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableBeiDouSignal(self, signal, enable) - - def beidouSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_beidouSignalEnabled(self, signal) - - def beidouSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_beidouSignalValue(self, *args) - __swig_destroy__ = _mscl.delete_GnssSignalConfiguration - -# Register GnssSignalConfiguration in _mscl: -_mscl.GnssSignalConfiguration_swigregister(GnssSignalConfiguration) - -class GnssSpartnConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - KEY_SIZE = _mscl.GnssSpartnConfiguration_KEY_SIZE - NONE = _mscl.GnssSpartnConfiguration_NONE - NETWORK = _mscl.GnssSpartnConfiguration_NETWORK - LBAND = _mscl.GnssSpartnConfiguration_LBAND - - def __init__(self): - _mscl.GnssSpartnConfiguration_swiginit(self, _mscl.new_GnssSpartnConfiguration()) - - def enable(self, enable): - return _mscl.GnssSpartnConfiguration_enable(self, enable) - - def enabled(self): - return _mscl.GnssSpartnConfiguration_enabled(self) - - def type(self, *args): - return _mscl.GnssSpartnConfiguration_type(self, *args) - - def currentKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyTow(self, *args) - - def currentKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyWeek(self, *args) - - def currentKey(self, *args): - return _mscl.GnssSpartnConfiguration_currentKey(self, *args) - - def nextKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyTow(self, *args) - - def nextKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyWeek(self, *args) - - def nextKey(self, *args): - return _mscl.GnssSpartnConfiguration_nextKey(self, *args) - __swig_destroy__ = _mscl.delete_GnssSpartnConfiguration - -# Register GnssSpartnConfiguration in _mscl: -_mscl.GnssSpartnConfiguration_swigregister(GnssSpartnConfiguration) - -class PositionReferenceConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - autoConfig = property(_mscl.PositionReferenceConfiguration_autoConfig_get, _mscl.PositionReferenceConfiguration_autoConfig_set) - position = property(_mscl.PositionReferenceConfiguration_position_get, _mscl.PositionReferenceConfiguration_position_set) - - def __init__(self): - _mscl.PositionReferenceConfiguration_swiginit(self, _mscl.new_PositionReferenceConfiguration()) - __swig_destroy__ = _mscl.delete_PositionReferenceConfiguration - -# Register PositionReferenceConfiguration in _mscl: -_mscl.PositionReferenceConfiguration_swigregister(PositionReferenceConfiguration) - -class AntennaLeverArmCalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enabled = property(_mscl.AntennaLeverArmCalConfiguration_enabled_get, _mscl.AntennaLeverArmCalConfiguration_enabled_set) - maxOffsetError = property(_mscl.AntennaLeverArmCalConfiguration_maxOffsetError_get, _mscl.AntennaLeverArmCalConfiguration_maxOffsetError_set) - - def __init__(self): - _mscl.AntennaLeverArmCalConfiguration_swiginit(self, _mscl.new_AntennaLeverArmCalConfiguration()) - __swig_destroy__ = _mscl.delete_AntennaLeverArmCalConfiguration - -# Register AntennaLeverArmCalConfiguration in _mscl: -_mscl.AntennaLeverArmCalConfiguration_swigregister(AntennaLeverArmCalConfiguration) - -class OdometerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.OdometerConfiguration_DISABLED - SINGLE = _mscl.OdometerConfiguration_SINGLE - QUADRATURE = _mscl.OdometerConfiguration_QUADRATURE - - def __init__(self): - _mscl.OdometerConfiguration_swiginit(self, _mscl.new_OdometerConfiguration()) - - def mode(self, *args): - return _mscl.OdometerConfiguration_mode(self, *args) - - def uncertainty(self, *args): - return _mscl.OdometerConfiguration_uncertainty(self, *args) - - def scaling(self, *args): - return _mscl.OdometerConfiguration_scaling(self, *args) - __swig_destroy__ = _mscl.delete_OdometerConfiguration - -# Register OdometerConfiguration in _mscl: -_mscl.OdometerConfiguration_swigregister(OdometerConfiguration) - -class GpioConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - UNUSED_FEATURE = _mscl.GpioConfiguration_UNUSED_FEATURE - GPIO_FEATURE = _mscl.GpioConfiguration_GPIO_FEATURE - PPS_FEATURE = _mscl.GpioConfiguration_PPS_FEATURE - ENCODER_FEATURE = _mscl.GpioConfiguration_ENCODER_FEATURE - EVENT_TIMESTAMP_FEATURE = _mscl.GpioConfiguration_EVENT_TIMESTAMP_FEATURE - UART_FEATURE = _mscl.GpioConfiguration_UART_FEATURE - GPIO_UNUSED = _mscl.GpioConfiguration_GPIO_UNUSED - GPIO_INPUT = _mscl.GpioConfiguration_GPIO_INPUT - GPIO_OUTPUT_LOW = _mscl.GpioConfiguration_GPIO_OUTPUT_LOW - GPIO_OUTPUT_HIGH = _mscl.GpioConfiguration_GPIO_OUTPUT_HIGH - PPS_UNUSED = _mscl.GpioConfiguration_PPS_UNUSED - PPS_INPUT = _mscl.GpioConfiguration_PPS_INPUT - PPS_OUTPUT = _mscl.GpioConfiguration_PPS_OUTPUT - ENCODER_UNUSED = _mscl.GpioConfiguration_ENCODER_UNUSED - ENCODER_A = _mscl.GpioConfiguration_ENCODER_A - ENCODER_B = _mscl.GpioConfiguration_ENCODER_B - TIMESTAMP_UNUSED = _mscl.GpioConfiguration_TIMESTAMP_UNUSED - TIMESTAMP_RISING = _mscl.GpioConfiguration_TIMESTAMP_RISING - TIMESTAMP_FALLING = _mscl.GpioConfiguration_TIMESTAMP_FALLING - TIMESTAMP_EITHER = _mscl.GpioConfiguration_TIMESTAMP_EITHER - UART_UNUSED = _mscl.GpioConfiguration_UART_UNUSED - UART_PORT2_TX = _mscl.GpioConfiguration_UART_PORT2_TX - UART_PORT2_RX = _mscl.GpioConfiguration_UART_PORT2_RX - UART_PORT3_TX = _mscl.GpioConfiguration_UART_PORT3_TX - UART_PORT3_RX = _mscl.GpioConfiguration_UART_PORT3_RX - NONE = _mscl.GpioConfiguration_NONE - OPEN_DRAIN = _mscl.GpioConfiguration_OPEN_DRAIN - PULLDOWN = _mscl.GpioConfiguration_PULLDOWN - PULLUP = _mscl.GpioConfiguration_PULLUP - pinMode = property(_mscl.GpioConfiguration_pinMode_get, _mscl.GpioConfiguration_pinMode_set) - pin = property(_mscl.GpioConfiguration_pin_get, _mscl.GpioConfiguration_pin_set) - feature = property(_mscl.GpioConfiguration_feature_get, _mscl.GpioConfiguration_feature_set) - behavior = property(_mscl.GpioConfiguration_behavior_get, _mscl.GpioConfiguration_behavior_set) - - def pinModeValue(self, *args): - return _mscl.GpioConfiguration_pinModeValue(self, *args) - - def __init__(self): - _mscl.GpioConfiguration_swiginit(self, _mscl.new_GpioConfiguration()) - __swig_destroy__ = _mscl.delete_GpioConfiguration - -# Register GpioConfiguration in _mscl: -_mscl.GpioConfiguration_swigregister(GpioConfiguration) - -DISABLED = _mscl.DISABLED -ENABLED = _mscl.ENABLED -TEST = _mscl.TEST -TEST_PULSE = _mscl.TEST_PULSE -class EventTriggerGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventTriggerGpioParameter_DISABLED - WHILE_HIGH = _mscl.EventTriggerGpioParameter_WHILE_HIGH - WHILE_LOW = _mscl.EventTriggerGpioParameter_WHILE_LOW - EDGE = _mscl.EventTriggerGpioParameter_EDGE - pin = property(_mscl.EventTriggerGpioParameter_pin_get, _mscl.EventTriggerGpioParameter_pin_set) - mode = property(_mscl.EventTriggerGpioParameter_mode_get, _mscl.EventTriggerGpioParameter_mode_set) - - def __init__(self): - _mscl.EventTriggerGpioParameter_swiginit(self, _mscl.new_EventTriggerGpioParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerGpioParameter - -# Register EventTriggerGpioParameter in _mscl: -_mscl.EventTriggerGpioParameter_swigregister(EventTriggerGpioParameter) - -class EventTriggerThresholdParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - WINDOW_TYPE = _mscl.EventTriggerThresholdParameter_WINDOW_TYPE - INTERVAL_TYPE = _mscl.EventTriggerThresholdParameter_INTERVAL_TYPE - type = property(_mscl.EventTriggerThresholdParameter_type_get, _mscl.EventTriggerThresholdParameter_type_set) - lowThreshold = property(_mscl.EventTriggerThresholdParameter_lowThreshold_get, _mscl.EventTriggerThresholdParameter_lowThreshold_set) - highThreshold = property(_mscl.EventTriggerThresholdParameter_highThreshold_get, _mscl.EventTriggerThresholdParameter_highThreshold_set) - - def channel(self, *args): - return _mscl.EventTriggerThresholdParameter_channel(self, *args) - - def channelField(self): - return _mscl.EventTriggerThresholdParameter_channelField(self) - - def channelQualifier(self): - return _mscl.EventTriggerThresholdParameter_channelQualifier(self) - - def channelIndex(self): - return _mscl.EventTriggerThresholdParameter_channelIndex(self) - - def __init__(self): - _mscl.EventTriggerThresholdParameter_swiginit(self, _mscl.new_EventTriggerThresholdParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerThresholdParameter - -# Register EventTriggerThresholdParameter in _mscl: -_mscl.EventTriggerThresholdParameter_swigregister(EventTriggerThresholdParameter) - -class EventTriggerCombinationParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_INPUT_TRIGGERS = _mscl.EventTriggerCombinationParameter_MAX_INPUT_TRIGGERS - LOGIC_NEVER = _mscl.EventTriggerCombinationParameter_LOGIC_NEVER - LOGIC_ALWAYS = _mscl.EventTriggerCombinationParameter_LOGIC_ALWAYS - LOGIC_NONE = _mscl.EventTriggerCombinationParameter_LOGIC_NONE - LOGIC_OR = _mscl.EventTriggerCombinationParameter_LOGIC_OR - LOGIC_NAND = _mscl.EventTriggerCombinationParameter_LOGIC_NAND - LOGIC_XOR_ONE = _mscl.EventTriggerCombinationParameter_LOGIC_XOR_ONE - LOGIC_ONLY_A = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_A - LOGIC_ONLY_B = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_B - LOGIC_ONLY_C = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_C - LOGIC_ONLY_D = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_D - LOGIC_AND_AB = _mscl.EventTriggerCombinationParameter_LOGIC_AND_AB - LOGIC_AB_OR_C = _mscl.EventTriggerCombinationParameter_LOGIC_AB_OR_C - LOGIC_AND = _mscl.EventTriggerCombinationParameter_LOGIC_AND - logicTable = property(_mscl.EventTriggerCombinationParameter_logicTable_get, _mscl.EventTriggerCombinationParameter_logicTable_set) - inputTriggers = property(_mscl.EventTriggerCombinationParameter_inputTriggers_get, _mscl.EventTriggerCombinationParameter_inputTriggers_set) - - def __init__(self): - _mscl.EventTriggerCombinationParameter_swiginit(self, _mscl.new_EventTriggerCombinationParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerCombinationParameter - -# Register EventTriggerCombinationParameter in _mscl: -_mscl.EventTriggerCombinationParameter_swigregister(EventTriggerCombinationParameter) - -class EventTriggerParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerParameters_swiginit(self, _mscl.new_EventTriggerParameters()) - gpio = property(_mscl.EventTriggerParameters_gpio_get, _mscl.EventTriggerParameters_gpio_set) - threshold = property(_mscl.EventTriggerParameters_threshold_get, _mscl.EventTriggerParameters_threshold_set) - combination = property(_mscl.EventTriggerParameters_combination_get, _mscl.EventTriggerParameters_combination_set) - __swig_destroy__ = _mscl.delete_EventTriggerParameters - -# Register EventTriggerParameters in _mscl: -_mscl.EventTriggerParameters_swigregister(EventTriggerParameters) - -class EventTriggerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventTriggerConfiguration_NONE - GPIO_TRIGGER = _mscl.EventTriggerConfiguration_GPIO_TRIGGER - THRESHOLD_TRIGGER = _mscl.EventTriggerConfiguration_THRESHOLD_TRIGGER - COMBINATION_TRIGGER = _mscl.EventTriggerConfiguration_COMBINATION_TRIGGER - instance = property(_mscl.EventTriggerConfiguration_instance_get, _mscl.EventTriggerConfiguration_instance_set) - trigger = property(_mscl.EventTriggerConfiguration_trigger_get, _mscl.EventTriggerConfiguration_trigger_set) - parameters = property(_mscl.EventTriggerConfiguration_parameters_get, _mscl.EventTriggerConfiguration_parameters_set) - - def __init__(self): - _mscl.EventTriggerConfiguration_swiginit(self, _mscl.new_EventTriggerConfiguration()) - __swig_destroy__ = _mscl.delete_EventTriggerConfiguration - -# Register EventTriggerConfiguration in _mscl: -_mscl.EventTriggerConfiguration_swigregister(EventTriggerConfiguration) - -class EventActionGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventActionGpioParameter_DISABLED - ACTIVE_HIGH = _mscl.EventActionGpioParameter_ACTIVE_HIGH - ACTIVE_LOW = _mscl.EventActionGpioParameter_ACTIVE_LOW - ONESHOT_HIGH = _mscl.EventActionGpioParameter_ONESHOT_HIGH - ONESHOT_LOW = _mscl.EventActionGpioParameter_ONESHOT_LOW - TOGGLE = _mscl.EventActionGpioParameter_TOGGLE - pin = property(_mscl.EventActionGpioParameter_pin_get, _mscl.EventActionGpioParameter_pin_set) - mode = property(_mscl.EventActionGpioParameter_mode_get, _mscl.EventActionGpioParameter_mode_set) - - def __init__(self): - _mscl.EventActionGpioParameter_swiginit(self, _mscl.new_EventActionGpioParameter()) - __swig_destroy__ = _mscl.delete_EventActionGpioParameter - -# Register EventActionGpioParameter in _mscl: -_mscl.EventActionGpioParameter_swigregister(EventActionGpioParameter) - -class EventActionMessageParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_DESCRIPTORS = _mscl.EventActionMessageParameter_MAX_DESCRIPTORS - sampleRate = property(_mscl.EventActionMessageParameter_sampleRate_get, _mscl.EventActionMessageParameter_sampleRate_set) - - def dataClass(self): - return _mscl.EventActionMessageParameter_dataClass(self) - - def setChannelFields(self, dataClass, fields): - return _mscl.EventActionMessageParameter_setChannelFields(self, dataClass, fields) - - def getChannelFields(self): - return _mscl.EventActionMessageParameter_getChannelFields(self) - - def __init__(self): - _mscl.EventActionMessageParameter_swiginit(self, _mscl.new_EventActionMessageParameter()) - __swig_destroy__ = _mscl.delete_EventActionMessageParameter - -# Register EventActionMessageParameter in _mscl: -_mscl.EventActionMessageParameter_swigregister(EventActionMessageParameter) - -class EventActionParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventActionParameters_swiginit(self, _mscl.new_EventActionParameters()) - gpio = property(_mscl.EventActionParameters_gpio_get, _mscl.EventActionParameters_gpio_set) - message = property(_mscl.EventActionParameters_message_get, _mscl.EventActionParameters_message_set) - __swig_destroy__ = _mscl.delete_EventActionParameters - -# Register EventActionParameters in _mscl: -_mscl.EventActionParameters_swigregister(EventActionParameters) - -class EventActionConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventActionConfiguration_NONE - GPIO = _mscl.EventActionConfiguration_GPIO - MESSAGE = _mscl.EventActionConfiguration_MESSAGE - instance = property(_mscl.EventActionConfiguration_instance_get, _mscl.EventActionConfiguration_instance_set) - trigger = property(_mscl.EventActionConfiguration_trigger_get, _mscl.EventActionConfiguration_trigger_set) - type = property(_mscl.EventActionConfiguration_type_get, _mscl.EventActionConfiguration_type_set) - parameters = property(_mscl.EventActionConfiguration_parameters_get, _mscl.EventActionConfiguration_parameters_set) - - def __init__(self): - _mscl.EventActionConfiguration_swiginit(self, _mscl.new_EventActionConfiguration()) - __swig_destroy__ = _mscl.delete_EventActionConfiguration - -# Register EventActionConfiguration in _mscl: -_mscl.EventActionConfiguration_swigregister(EventActionConfiguration) - -class EventTriggerInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTriggerInfo_swiginit(self, _mscl.new_EventTriggerInfo(*args)) - ACTIVE = _mscl.EventTriggerInfo_ACTIVE - ENABLED = _mscl.EventTriggerInfo_ENABLED - TEST = _mscl.EventTriggerInfo_TEST - type = property(_mscl.EventTriggerInfo_type_get, _mscl.EventTriggerInfo_type_set) - instanceId = property(_mscl.EventTriggerInfo_instanceId_get, _mscl.EventTriggerInfo_instanceId_set) - - def isActive(self): - return _mscl.EventTriggerInfo_isActive(self) - - def isEnabled(self): - return _mscl.EventTriggerInfo_isEnabled(self) - - def isTestMode(self): - return _mscl.EventTriggerInfo_isTestMode(self) - - def setStatus(self, value): - return _mscl.EventTriggerInfo_setStatus(self, value) - __swig_destroy__ = _mscl.delete_EventTriggerInfo - -# Register EventTriggerInfo in _mscl: -_mscl.EventTriggerInfo_swigregister(EventTriggerInfo) - -class EventActionInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventActionInfo_swiginit(self, _mscl.new_EventActionInfo(*args)) - type = property(_mscl.EventActionInfo_type_get, _mscl.EventActionInfo_type_set) - triggerId = property(_mscl.EventActionInfo_triggerId_get, _mscl.EventActionInfo_triggerId_set) - instanceId = property(_mscl.EventActionInfo_instanceId_get, _mscl.EventActionInfo_instanceId_set) - __swig_destroy__ = _mscl.delete_EventActionInfo - -# Register EventActionInfo in _mscl: -_mscl.EventActionInfo_swigregister(EventActionInfo) - -class MeasurementReferenceFrame(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MeasurementReferenceFrame_swiginit(self, _mscl.new_MeasurementReferenceFrame(*args)) - - def asMipFieldValues(self): - return _mscl.MeasurementReferenceFrame_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.MeasurementReferenceFrame_appendMipFieldValues(self, appendTo) - - def translation(self, *args): - return _mscl.MeasurementReferenceFrame_translation(self, *args) - - def rotation(self, *args): - return _mscl.MeasurementReferenceFrame_rotation(self, *args) - - def errorTrackingEnabled(self): - return _mscl.MeasurementReferenceFrame_errorTrackingEnabled(self) - - def enableErrorTracking(self, enable=True): - return _mscl.MeasurementReferenceFrame_enableErrorTracking(self, enable) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrame - -# Register MeasurementReferenceFrame in _mscl: -_mscl.MeasurementReferenceFrame_swigregister(MeasurementReferenceFrame) - -class MipChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipChannel_swiginit(self, _mscl.new_MipChannel(*args)) - - def channelField(self): - return _mscl.MipChannel_channelField(self) - - def sampleRate(self): - return _mscl.MipChannel_sampleRate(self) - - def rateDecimation(self, sampleRateBase): - return _mscl.MipChannel_rateDecimation(self, sampleRateBase) - __swig_destroy__ = _mscl.delete_MipChannel - -# Register MipChannel in _mscl: -_mscl.MipChannel_swigregister(MipChannel) - -class MipPacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MIP_ACK_NACK_ERROR_NONE = _mscl.MipPacket_MIP_ACK_NACK_ERROR_NONE - MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND - MIP_ACK_NACK_ERROR_CHECKSUM_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_CHECKSUM_INVALID - MIP_ACK_NACK_ERROR_PARAMETER_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_PARAMETER_INVALID - MIP_ACK_NACK_ERROR_COMMAND_FAILED = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_FAILED - MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT - MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET - - def __init__(self): - _mscl.MipPacket_swiginit(self, _mscl.new_MipPacket()) - - @staticmethod - def isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - - def descriptorSet(self): - return _mscl.MipPacket_descriptorSet(self) - - def payload(self): - return _mscl.MipPacket_payload(self) - __swig_destroy__ = _mscl.delete_MipPacket - -# Register MipPacket in _mscl: -_mscl.MipPacket_swigregister(MipPacket) - -def MipPacket_isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - -class MipDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def field(self): - return _mscl.MipDataPoint_field(self) - - def qualifier(self): - return _mscl.MipDataPoint_qualifier(self) - - def hasAddlIdentifiers(self): - return _mscl.MipDataPoint_hasAddlIdentifiers(self) - - def addlIdentifiers(self): - return _mscl.MipDataPoint_addlIdentifiers(self) - - def hasValidFlag(self): - return _mscl.MipDataPoint_hasValidFlag(self) - - def valid(self): - return _mscl.MipDataPoint_valid(self) - - def channelName(self, includeAddlIds=True, consolidatedFormat=False): - return _mscl.MipDataPoint_channelName(self, includeAddlIds, consolidatedFormat) - __swig_destroy__ = _mscl.delete_MipDataPoint - -# Register MipDataPoint in _mscl: -_mscl.MipDataPoint_swigregister(MipDataPoint) - -class ContinuousBIT(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def as_MipDataPoints(self): - return _mscl.ContinuousBIT_as_MipDataPoints(self) - - @staticmethod - def getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - - def data(self): - return _mscl.ContinuousBIT_data(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_bufferOverrun(self) - - def imuClockFault(self): - return _mscl.ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_pressureSelfTestFail(self) - - def filterTimingOverrun(self): - return _mscl.ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.ContinuousBIT_filterTimingUnderrun(self) - -# Register ContinuousBIT in _mscl: -_mscl.ContinuousBIT_swigregister(ContinuousBIT) - -def ContinuousBIT_getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - -class ContinuousBIT_System_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - SYSTEM_CLOCK_FAILURE = _mscl.ContinuousBIT_System_General_SYSTEM_CLOCK_FAILURE - POWER_FAULT = _mscl.ContinuousBIT_System_General_POWER_FAULT - FIRMWARE_FAULT = _mscl.ContinuousBIT_System_General_FIRMWARE_FAULT - TIMING_OVERLOAD = _mscl.ContinuousBIT_System_General_TIMING_OVERLOAD - BUFFER_OVERRUN = _mscl.ContinuousBIT_System_General_BUFFER_OVERRUN - - def flags(self): - return _mscl.ContinuousBIT_System_General_flags(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_System_General_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_System_General_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_System_General_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_System_General_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_System_General_bufferOverrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_General - -# Register ContinuousBIT_System_General in _mscl: -_mscl.ContinuousBIT_System_General_swigregister(ContinuousBIT_System_General) - -class ContinuousBIT_System_Process(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def flags(self): - return _mscl.ContinuousBIT_System_Process_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_Process - -# Register ContinuousBIT_System_Process in _mscl: -_mscl.ContinuousBIT_System_Process_swigregister(ContinuousBIT_System_Process) - -class ContinuousBIT_System(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_System_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_System_GENERAL_FLAGS - PROCESS_FLAGS = _mscl.ContinuousBIT_System_PROCESS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_System_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System - -# Register ContinuousBIT_System in _mscl: -_mscl.ContinuousBIT_System_swigregister(ContinuousBIT_System) - -class ContinuousBIT_IMU_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - CLOCK_FAULT = _mscl.ContinuousBIT_IMU_General_CLOCK_FAULT - COMMUNICATION_FAULT = _mscl.ContinuousBIT_IMU_General_COMMUNICATION_FAULT - TIMING_OVERRUN = _mscl.ContinuousBIT_IMU_General_TIMING_OVERRUN - CALIBRATION_ERROR_ACCEL = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_ACCEL - CALIBRATION_ERROR_GYRO = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_GYRO - CALIBRATION_ERROR_MAG = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_MAG - - def flags(self): - return _mscl.ContinuousBIT_IMU_General_flags(self) - - def clockFault(self): - return _mscl.ContinuousBIT_IMU_General_clockFault(self) - - def communicationFault(self): - return _mscl.ContinuousBIT_IMU_General_communicationFault(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_IMU_General_timingOverrun(self) - - def calibrationErrorAccel(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorAccel(self) - - def calibrationErrorGyro(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorGyro(self) - - def calibrationErrorMag(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorMag(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_General - -# Register ContinuousBIT_IMU_General in _mscl: -_mscl.ContinuousBIT_IMU_General_swigregister(ContinuousBIT_IMU_General) - -class ContinuousBIT_IMU_Sensors(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - ACCEL_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_GENERAL_FAULT - ACCEL_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_OVERRANGE - ACCEL_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_SELF_TEST_FAIL - GYRO_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_GYRO_GENERAL_FAULT - GYRO_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_GYRO_OVERRANGE - GYRO_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_GYRO_SELF_TEST_FAIL - MAG_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_MAG_GENERAL_FAULT - MAG_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_MAG_OVERRANGE - MAG_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_MAG_SELF_TEST_FAIL - PRESSURE_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_GENERAL_FAULT - PRESSURE_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_OVERRANGE - PRESSURE_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_SELF_TEST_FAIL - - def flags(self): - return _mscl.ContinuousBIT_IMU_Sensors_flags(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureSelfTestFail(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_Sensors - -# Register ContinuousBIT_IMU_Sensors in _mscl: -_mscl.ContinuousBIT_IMU_Sensors_swigregister(ContinuousBIT_IMU_Sensors) - -class ContinuousBIT_IMU(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_IMU_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_IMU_GENERAL_FLAGS - SENSORS_FLAGS = _mscl.ContinuousBIT_IMU_SENSORS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_IMU_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU - -# Register ContinuousBIT_IMU in _mscl: -_mscl.ContinuousBIT_IMU_swigregister(ContinuousBIT_IMU) - -class ContinuousBIT_Filter_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - TIMING_OVERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_OVERRUN - TIMING_UNDERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_UNDERRUN - - def flags(self): - return _mscl.ContinuousBIT_Filter_General_flags(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_Filter_General_timingOverrun(self) - - def timingUnderrun(self): - return _mscl.ContinuousBIT_Filter_General_timingUnderrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter_General - -# Register ContinuousBIT_Filter_General in _mscl: -_mscl.ContinuousBIT_Filter_General_swigregister(ContinuousBIT_Filter_General) - -class ContinuousBIT_Filter(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_Filter_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_Filter_GENERAL_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_Filter_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter - -# Register ContinuousBIT_Filter in _mscl: -_mscl.ContinuousBIT_Filter_swigregister(ContinuousBIT_Filter) - -class CV7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_General_swiginit(self, _mscl.new_CV7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_General - -# Register CV7ContinuousBIT_System_General in _mscl: -_mscl.CV7ContinuousBIT_System_General_swigregister(CV7ContinuousBIT_System_General) - -class CV7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_Process_swiginit(self, _mscl.new_CV7ContinuousBIT_System_Process(*args)) - IMU_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_IMU_PROCESS_FAULT - IMU_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_IMU_RATE_MISMATCH - IMU_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_IMU_DROPPED_DATA - IMU_STUCK = _mscl.CV7ContinuousBIT_System_Process_IMU_STUCK - FILTER_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_FILTER_PROCESS_FAULT - FILTER_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_FILTER_DROPPED_DATA - FILTER_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_FILTER_RATE_MISMATCH - FILTER_STUCK = _mscl.CV7ContinuousBIT_System_Process_FILTER_STUCK - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_filterStuck(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_Process - -# Register CV7ContinuousBIT_System_Process in _mscl: -_mscl.CV7ContinuousBIT_System_Process_swigregister(CV7ContinuousBIT_System_Process) - -class CV7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_swiginit(self, _mscl.new_CV7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.CV7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System - -# Register CV7ContinuousBIT_System in _mscl: -_mscl.CV7ContinuousBIT_System_swigregister(CV7ContinuousBIT_System) - -class CV7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_General - -# Register CV7ContinuousBIT_IMU_General in _mscl: -_mscl.CV7ContinuousBIT_IMU_General_swigregister(CV7ContinuousBIT_IMU_General) - -class CV7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_Sensors - -# Register CV7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.CV7ContinuousBIT_IMU_Sensors_swigregister(CV7ContinuousBIT_IMU_Sensors) - -class CV7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU(*args)) - FACTORY_BITS_INVALID = _mscl.CV7ContinuousBIT_IMU_FACTORY_BITS_INVALID - - def general(self): - return _mscl.CV7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.CV7ContinuousBIT_IMU_sensors(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_IMU_factoryBitsInvalid(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU - -# Register CV7ContinuousBIT_IMU in _mscl: -_mscl.CV7ContinuousBIT_IMU_swigregister(CV7ContinuousBIT_IMU) - -class CV7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter_General(*args)) - FAULT = _mscl.CV7ContinuousBIT_Filter_General_FAULT - - def fault(self): - return _mscl.CV7ContinuousBIT_Filter_General_fault(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter_General - -# Register CV7ContinuousBIT_Filter_General in _mscl: -_mscl.CV7ContinuousBIT_Filter_General_swigregister(CV7ContinuousBIT_Filter_General) - -class CV7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter - -# Register CV7ContinuousBIT_Filter in _mscl: -_mscl.CV7ContinuousBIT_Filter_swigregister(CV7ContinuousBIT_Filter) - -class CV7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.CV7ContinuousBIT_swiginit(self, _mscl.new_CV7ContinuousBIT(bytes)) - - def system(self): - return _mscl.CV7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.CV7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.CV7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.CV7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.CV7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.CV7ContinuousBIT_bufferOverrun(self) - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_filterStuck(self) - - def imu(self): - return _mscl.CV7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.CV7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.CV7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.CV7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.CV7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.CV7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.CV7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.CV7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.CV7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.CV7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.CV7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.CV7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.CV7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.CV7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.CV7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.CV7ContinuousBIT_pressureSelfTestFail(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_factoryBitsInvalid(self) - - def filter(self): - return _mscl.CV7ContinuousBIT_filter(self) - - def filterFault(self): - return _mscl.CV7ContinuousBIT_filterFault(self) - - def filterTimingOverrun(self): - return _mscl.CV7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.CV7ContinuousBIT_filterTimingUnderrun(self) - - def as_MipDataPoints(self): - return _mscl.CV7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT - -# Register CV7ContinuousBIT in _mscl: -_mscl.CV7ContinuousBIT_swigregister(CV7ContinuousBIT) - -class GQ7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_General - -# Register GQ7ContinuousBIT_System_General in _mscl: -_mscl.GQ7ContinuousBIT_System_General_swigregister(GQ7ContinuousBIT_System_General) - -class GQ7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_Process_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_Process(*args)) - IMU_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_CONTROL_LINE_FAULT - IMU_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_COMMAND_RESPONSE_FAULT - IMU_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_SPI_TRANSFER_FAULT - IMU_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_DATA_FRAME_FAULT - FILTER_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_CONTROL_LINE_FAULT - FILTER_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_COMMAND_RESPONSE_FAULT - FILTER_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_SPI_TRANSFER_FAULT - FILTER_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_DATA_FRAME_FAULT - GNSS_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_CONTROL_LINE_FAULT - GNSS_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_COMMAND_RESPONSE_FAULT - GNSS_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_SPI_TRANSFER_FAULT - GNSS_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_DATA_FRAME_FAULT - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssDataFrameFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_Process - -# Register GQ7ContinuousBIT_System_Process in _mscl: -_mscl.GQ7ContinuousBIT_System_Process_swigregister(GQ7ContinuousBIT_System_Process) - -class GQ7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_swiginit(self, _mscl.new_GQ7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.GQ7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System - -# Register GQ7ContinuousBIT_System in _mscl: -_mscl.GQ7ContinuousBIT_System_swigregister(GQ7ContinuousBIT_System) - -class GQ7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_General - -# Register GQ7ContinuousBIT_IMU_General in _mscl: -_mscl.GQ7ContinuousBIT_IMU_General_swigregister(GQ7ContinuousBIT_IMU_General) - -class GQ7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_Sensors - -# Register GQ7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.GQ7ContinuousBIT_IMU_Sensors_swigregister(GQ7ContinuousBIT_IMU_Sensors) - -class GQ7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.GQ7ContinuousBIT_IMU_sensors(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU - -# Register GQ7ContinuousBIT_IMU in _mscl: -_mscl.GQ7ContinuousBIT_IMU_swigregister(GQ7ContinuousBIT_IMU) - -class GQ7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_HARDWARE_FAULT - COMMUNICATION_ERROR_IMU_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_IMU_SPI - COMMUNICATION_ERROR_GNSS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_GNSS_SPI - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_COMMS_UART = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_UART - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationError(self) - - def communicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorImuSpi(self) - - def communicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorGnssSpi(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsSpi(self) - - def communicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsUart(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter_General - -# Register GQ7ContinuousBIT_Filter_General in _mscl: -_mscl.GQ7ContinuousBIT_Filter_General_swigregister(GQ7ContinuousBIT_Filter_General) - -class GQ7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter - -# Register GQ7ContinuousBIT_Filter in _mscl: -_mscl.GQ7ContinuousBIT_Filter_swigregister(GQ7ContinuousBIT_Filter) - -class GQ7ContinuousBIT_GNSS_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_HARDWARE_FAULT - COMMUNICATION_ERROR_COMMS_SERIAL = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SERIAL - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_NAV_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_NAV_SPI - GPS_TIME_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_GPS_TIME_FAULT - TIMING_OVERRUN = _mscl.GQ7ContinuousBIT_GNSS_General_TIMING_OVERRUN - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_flags(self) - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationError(self) - - def communicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSerial(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSpi(self) - - def communicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_gpsTimeFault(self) - - def timingOverrun(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_timingOverrun(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_General - -# Register GQ7ContinuousBIT_GNSS_General in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_General_swigregister(GQ7ContinuousBIT_GNSS_General) - -class GQ7ContinuousBIT_GNSS_Receivers(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_Receivers_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_Receivers(*args)) - POWER_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_1 - FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_1 - SHORTED_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_1 - OPEN_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_1 - SOLUTION_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_1 - POWER_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_2 - FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_2 - SHORTED_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_2 - OPEN_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_2 - SOLUTION_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_2 - RTCM_COMMUNICATION_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTCM_COMMUNICATION_FAULT - RTK_DONGLE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTK_DONGLE_FAULT - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_flags(self) - - def powerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver1(self) - - def faultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver1(self) - - def shortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna1(self) - - def openAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna1(self) - - def solutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver1(self) - - def powerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver2(self) - - def faultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver2(self) - - def shortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna2(self) - - def openAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna2(self) - - def solutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtkDongleFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_Receivers - -# Register GQ7ContinuousBIT_GNSS_Receivers in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_Receivers_swigregister(GQ7ContinuousBIT_GNSS_Receivers) - -class GQ7ContinuousBIT_GNSS(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS(*args)) - RESPONSE_OFFSET = _mscl.GQ7ContinuousBIT_GNSS_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_GENERAL_FLAGS - RECEIVERS_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_RECEIVERS_FLAGS - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_flags(self) - - def general(self): - return _mscl.GQ7ContinuousBIT_GNSS_general(self) - - def receivers(self): - return _mscl.GQ7ContinuousBIT_GNSS_receivers(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS - -# Register GQ7ContinuousBIT_GNSS in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_swigregister(GQ7ContinuousBIT_GNSS) - -class GQ7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.GQ7ContinuousBIT_swiginit(self, _mscl.new_GQ7ContinuousBIT(bytes)) - - def system(self): - return _mscl.GQ7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.GQ7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.GQ7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.GQ7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.GQ7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.GQ7ContinuousBIT_bufferOverrun(self) - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_gnssDataFrameFault(self) - - def imu(self): - return _mscl.GQ7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.GQ7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.GQ7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.GQ7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.GQ7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.GQ7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.GQ7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.GQ7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.GQ7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.GQ7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_pressureSelfTestFail(self) - - def filter(self): - return _mscl.GQ7ContinuousBIT_filter(self) - - def filterClockFault(self): - return _mscl.GQ7ContinuousBIT_filterClockFault(self) - - def filterHardwareFault(self): - return _mscl.GQ7ContinuousBIT_filterHardwareFault(self) - - def filterTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingUnderrun(self) - - def filterCommunicationError(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationError(self) - - def filterCommunicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorImuSpi(self) - - def filterCommunicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorGnssSpi(self) - - def filterCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsSpi(self) - - def filterCommunicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsUart(self) - - def gnss(self): - return _mscl.GQ7ContinuousBIT_gnss(self) - - def gnssClockFault(self): - return _mscl.GQ7ContinuousBIT_gnssClockFault(self) - - def gnssHardwareFault(self): - return _mscl.GQ7ContinuousBIT_gnssHardwareFault(self) - - def gnssCommunicationError(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationError(self) - - def gnssCommunicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSerial(self) - - def gnssCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSpi(self) - - def gnssCommunicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_gpsTimeFault(self) - - def gnssTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_gnssTimingOverrun(self) - - def gnssPowerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver1(self) - - def gnssFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver1(self) - - def gnssShortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna1(self) - - def gnssOpenAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna1(self) - - def gnssSolutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver1(self) - - def gnssPowerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver2(self) - - def gnssFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver2(self) - - def gnssShortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna2(self) - - def gnssOpenAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna2(self) - - def gnssSolutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_rtkDongleFault(self) - - def as_MipDataPoints(self): - return _mscl.GQ7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT - -# Register GQ7ContinuousBIT in _mscl: -_mscl.GQ7ContinuousBIT_swigregister(GQ7ContinuousBIT) - -class MipSharedDataFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EVENT_SOURCE_NONE = _mscl.MipSharedDataFields_EVENT_SOURCE_NONE - EVENT_SOURCE_UNKNOWN = _mscl.MipSharedDataFields_EVENT_SOURCE_UNKNOWN - - def __init__(self): - _mscl.MipSharedDataFields_swiginit(self, _mscl.new_MipSharedDataFields()) - - def hasEventSource(self): - return _mscl.MipSharedDataFields_hasEventSource(self) - - def eventSource(self): - return _mscl.MipSharedDataFields_eventSource(self) - - def hasTicks(self): - return _mscl.MipSharedDataFields_hasTicks(self) - - def ticks(self): - return _mscl.MipSharedDataFields_ticks(self) - - def hasDeltaTicks(self): - return _mscl.MipSharedDataFields_hasDeltaTicks(self) - - def deltaTicks(self): - return _mscl.MipSharedDataFields_deltaTicks(self) - - def hasGpsTimestamp(self): - return _mscl.MipSharedDataFields_hasGpsTimestamp(self) - - def gpsTimestamp(self): - return _mscl.MipSharedDataFields_gpsTimestamp(self) - - def gpsTimestampValid(self): - return _mscl.MipSharedDataFields_gpsTimestampValid(self) - - def hasDeltaTime(self): - return _mscl.MipSharedDataFields_hasDeltaTime(self) - - def deltaTime(self): - return _mscl.MipSharedDataFields_deltaTime(self) - - def hasReferenceTime(self): - return _mscl.MipSharedDataFields_hasReferenceTime(self) - - def referenceTime(self): - return _mscl.MipSharedDataFields_referenceTime(self) - - def hasDeltaReferenceTime(self): - return _mscl.MipSharedDataFields_hasDeltaReferenceTime(self) - - def deltaReferenceTime(self): - return _mscl.MipSharedDataFields_deltaReferenceTime(self) - - def hasExternalTimestamp(self): - return _mscl.MipSharedDataFields_hasExternalTimestamp(self) - - def externalTimestamp(self): - return _mscl.MipSharedDataFields_externalTimestamp(self) - - def externalTimestampValid(self): - return _mscl.MipSharedDataFields_externalTimestampValid(self) - - def hasDeltaExternalTime(self): - return _mscl.MipSharedDataFields_hasDeltaExternalTime(self) - - def deltaExternalTime(self): - return _mscl.MipSharedDataFields_deltaExternalTime(self) - - def deltaExternalTimeValid(self): - return _mscl.MipSharedDataFields_deltaExternalTimeValid(self) - - def get(self, *args): - return _mscl.MipSharedDataFields_get(self, *args) - __swig_destroy__ = _mscl.delete_MipSharedDataFields - -# Register MipSharedDataFields in _mscl: -_mscl.MipSharedDataFields_swigregister(MipSharedDataFields) - -class MipDataPacket(MipPacket): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipDataPacket_swiginit(self, _mscl.new_MipDataPacket(*args)) - - def data(self): - return _mscl.MipDataPacket_data(self) - - def shared(self): - return _mscl.MipDataPacket_shared(self) - - def collectedTimestamp(self): - return _mscl.MipDataPacket_collectedTimestamp(self) - - def deviceTimestamp(self): - return _mscl.MipDataPacket_deviceTimestamp(self) - - def hasDeviceTime(self): - return _mscl.MipDataPacket_hasDeviceTime(self) - - def deviceTimeValid(self): - return _mscl.MipDataPacket_deviceTimeValid(self) - - def deviceTimeFlags(self): - return _mscl.MipDataPacket_deviceTimeFlags(self) - __swig_destroy__ = _mscl.delete_MipDataPacket - -# Register MipDataPacket in _mscl: -_mscl.MipDataPacket_swigregister(MipDataPacket) - -class RawBytePacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INVALID_PACKET = _mscl.RawBytePacket_INVALID_PACKET - DATA_PACKET = _mscl.RawBytePacket_DATA_PACKET - COMMAND_PACKET = _mscl.RawBytePacket_COMMAND_PACKET - NO_PACKET_FOUND = _mscl.RawBytePacket_NO_PACKET_FOUND - FROM_READ = _mscl.RawBytePacket_FROM_READ - FROM_SEND = _mscl.RawBytePacket_FROM_SEND - - def __init__(self): - _mscl.RawBytePacket_swiginit(self, _mscl.new_RawBytePacket()) - - def type(self, *args): - return _mscl.RawBytePacket_type(self, *args) - - def source(self, *args): - return _mscl.RawBytePacket_source(self, *args) - - def payload(self, *args): - return _mscl.RawBytePacket_payload(self, *args) - __swig_destroy__ = _mscl.delete_RawBytePacket - -# Register RawBytePacket in _mscl: -_mscl.RawBytePacket_swigregister(RawBytePacket) - -class MipNodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_MipNodeFeatures - - @staticmethod - def isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - - def supportsCategory(self, dataClass): - return _mscl.MipNodeFeatures_supportsCategory(self, dataClass) - - def supportsCommand(self, commandId): - return _mscl.MipNodeFeatures_supportsCommand(self, commandId) - - def supportedCommands(self): - return _mscl.MipNodeFeatures_supportedCommands(self) - - def supportsChannelField(self, fieldId): - return _mscl.MipNodeFeatures_supportsChannelField(self, fieldId) - - def filterSupportedChannelFields(self, fields): - return _mscl.MipNodeFeatures_filterSupportedChannelFields(self, fields) - - def supportedChannelFields(self, *args): - return _mscl.MipNodeFeatures_supportedChannelFields(self, *args) - - def supportedSampleRates(self, dataClass): - return _mscl.MipNodeFeatures_supportedSampleRates(self, dataClass) - - def baseDataRate(self, dataClass): - return _mscl.MipNodeFeatures_baseDataRate(self, dataClass) - - def gnssReceiverInfo(self): - return _mscl.MipNodeFeatures_gnssReceiverInfo(self) - - def supportedGnssSources(self): - return _mscl.MipNodeFeatures_supportedGnssSources(self) - - def supportedSensorRanges(self, *args): - return _mscl.MipNodeFeatures_supportedSensorRanges(self, *args) - - def getCommPortInfo(self): - return _mscl.MipNodeFeatures_getCommPortInfo(self) - - def useLegacyIdsForEnableDataStream(self): - return _mscl.MipNodeFeatures_useLegacyIdsForEnableDataStream(self) - - def supportedHeadingUpdateOptions(self): - return _mscl.MipNodeFeatures_supportedHeadingUpdateOptions(self) - - def supportedHeadingAlignmentMethods(self): - return _mscl.MipNodeFeatures_supportedHeadingAlignmentMethods(self) - - def supportedStatusSelectors(self): - return _mscl.MipNodeFeatures_supportedStatusSelectors(self) - - def supportedEstimationControlOptions(self): - return _mscl.MipNodeFeatures_supportedEstimationControlOptions(self) - - def supportedVehicleModeTypes(self): - return _mscl.MipNodeFeatures_supportedVehicleModeTypes(self) - - def supportedAdaptiveMeasurementModes(self): - return _mscl.MipNodeFeatures_supportedAdaptiveMeasurementModes(self) - - def supportedAdaptiveFilterLevels(self): - return _mscl.MipNodeFeatures_supportedAdaptiveFilterLevels(self) - - def supportedAidingMeasurementOptions(self): - return _mscl.MipNodeFeatures_supportedAidingMeasurementOptions(self) - - def supportedPpsSourceOptions(self): - return _mscl.MipNodeFeatures_supportedPpsSourceOptions(self) - - def supportedGpioPins(self): - return _mscl.MipNodeFeatures_supportedGpioPins(self) - - def supportedGpioPinModes(self, feature, behavior): - return _mscl.MipNodeFeatures_supportedGpioPinModes(self, feature, behavior) - - def supportedGpioBehaviors(self, feature, pin): - return _mscl.MipNodeFeatures_supportedGpioBehaviors(self, feature, pin) - - def supportedGpioFeatures(self, pin): - return _mscl.MipNodeFeatures_supportedGpioFeatures(self, pin) - - def supportedGpioConfigurations(self): - return _mscl.MipNodeFeatures_supportedGpioConfigurations(self) - - def supportedGnssSignalConfigurations(self): - return _mscl.MipNodeFeatures_supportedGnssSignalConfigurations(self) - - def supportedDeclinationSources(self): - return _mscl.MipNodeFeatures_supportedDeclinationSources(self) - - def supportedInclinationSources(self): - return _mscl.MipNodeFeatures_supportedInclinationSources(self) - - def supportedMagneticMagnitudeSources(self): - return _mscl.MipNodeFeatures_supportedMagneticMagnitudeSources(self) - - def supportedEventThresholdChannels(self): - return _mscl.MipNodeFeatures_supportedEventThresholdChannels(self) - - def supportedEventActionInfo(self): - return _mscl.MipNodeFeatures_supportedEventActionInfo(self) - - def supportedEventTriggerInfo(self): - return _mscl.MipNodeFeatures_supportedEventTriggerInfo(self) - - def supportsNorthCompensation(self): - return _mscl.MipNodeFeatures_supportsNorthCompensation(self) - - def supportedLowPassFilterChannelFields(self): - return _mscl.MipNodeFeatures_supportedLowPassFilterChannelFields(self) - - def maxMeasurementReferenceFrameId(self): - return _mscl.MipNodeFeatures_maxMeasurementReferenceFrameId(self) - -# Register MipNodeFeatures in _mscl: -_mscl.MipNodeFeatures_swigregister(MipNodeFeatures) - -def MipNodeFeatures_isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - -class MipNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.MipNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - def getConfigCommandBytes(self): - return _mscl.MipNode_getConfigCommandBytes(self) - - def sendCommandBytes(self, *args): - return _mscl.MipNode_sendCommandBytes(self, *args) - - @staticmethod - def deviceName(serial): - return _mscl.MipNode_deviceName(serial) - - def connection(self): - return _mscl.MipNode_connection(self) - - def features(self): - return _mscl.MipNode_features(self) - - def clearDeviceInfo(self): - return _mscl.MipNode_clearDeviceInfo(self) - - def lastCommunicationTime(self): - return _mscl.MipNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.MipNode_lastDeviceState(self) - - def setLastDeviceState(self, state): - return _mscl.MipNode_setLastDeviceState(self, state) - - def firmwareVersion(self): - return _mscl.MipNode_firmwareVersion(self) - - def model(self): - return _mscl.MipNode_model(self) - - def modelName(self): - return _mscl.MipNode_modelName(self) - - def modelNumber(self): - return _mscl.MipNode_modelNumber(self) - - def serialNumber(self): - return _mscl.MipNode_serialNumber(self) - - def lotNumber(self): - return _mscl.MipNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.MipNode_deviceOptions(self) - - def timeout(self, *args): - return _mscl.MipNode_timeout(self, *args) - - def name(self): - return _mscl.MipNode_name(self) - - def ping(self): - return _mscl.MipNode_ping(self) - - def setToIdle(self): - return _mscl.MipNode_setToIdle(self) - - def cyclePower(self): - return _mscl.MipNode_cyclePower(self) - - def resume(self): - return _mscl.MipNode_resume(self) - - def getCommunicationMode(self): - return _mscl.MipNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.MipNode_setCommunicationMode(self, communicationMode) - - def saveSettingsAsStartup(self, *args): - return _mscl.MipNode_saveSettingsAsStartup(self, *args) - - def loadStartupSettings(self, *args): - return _mscl.MipNode_loadStartupSettings(self, *args) - - def loadFactoryDefaultSettings(self, *args): - return _mscl.MipNode_loadFactoryDefaultSettings(self, *args) - - def setUARTBaudRate(self, *args): - return _mscl.MipNode_setUARTBaudRate(self, *args) - - def getUARTBaudRate(self, portId=1): - return _mscl.MipNode_getUARTBaudRate(self, portId) - - def getRawBytePackets(self, timeout=0, maxPackets=0): - return _mscl.MipNode_getRawBytePackets(self, timeout, maxPackets) - -# Register MipNode in _mscl: -_mscl.MipNode_swigregister(MipNode) - -def MipNode_deviceName(serial): - return _mscl.MipNode_deviceName(serial) - -class InertialNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.InertialNode_swiginit(self, _mscl.new_InertialNode(connection)) - __swig_destroy__ = _mscl.delete_InertialNode - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.InertialNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.InertialNode_totalPackets(self) - - def pollData(self, *args): - return _mscl.InertialNode_pollData(self, *args) - - def getDataRateBase(self, dataClass): - return _mscl.InertialNode_getDataRateBase(self, dataClass) - - def getActiveChannelFields(self, dataClass): - return _mscl.InertialNode_getActiveChannelFields(self, dataClass) - - def setActiveChannelFields(self, dataClass, channels): - return _mscl.InertialNode_setActiveChannelFields(self, dataClass, channels) - - def saveActiveChannelFields(self, dataClass): - return _mscl.InertialNode_saveActiveChannelFields(self, dataClass) - - def setFactoryStreamingChannels(self, option): - return _mscl.InertialNode_setFactoryStreamingChannels(self, option) - - def getInterfaceControl(self, interfaceId): - return _mscl.InertialNode_getInterfaceControl(self, interfaceId) - - def setInterfaceControl(self, *args): - return _mscl.InertialNode_setInterfaceControl(self, *args) - - def getCommunicationMode(self): - return _mscl.InertialNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.InertialNode_setCommunicationMode(self, communicationMode) - - def isDataStreamEnabled(self, dataClass): - return _mscl.InertialNode_isDataStreamEnabled(self, dataClass) - - def enableDataStream(self, dataClass, enable=True, resumeStreaming=True): - return _mscl.InertialNode_enableDataStream(self, dataClass, enable, resumeStreaming) - - def resetFilter(self): - return _mscl.InertialNode_resetFilter(self) - - def runFilter(self): - return _mscl.InertialNode_runFilter(self) - - def getAutoInitialization(self): - return _mscl.InertialNode_getAutoInitialization(self) - - def setAutoInitialization(self, enable): - return _mscl.InertialNode_setAutoInitialization(self, enable) - - def getAltitudeAid(self): - return _mscl.InertialNode_getAltitudeAid(self) - - def setAltitudeAid(self, enable): - return _mscl.InertialNode_setAltitudeAid(self, enable) - - def getPitchRollAid(self): - return _mscl.InertialNode_getPitchRollAid(self) - - def setPitchRollAid(self, enable): - return _mscl.InertialNode_setPitchRollAid(self, enable) - - def enableVerticalGyroConstraint(self, enable): - return _mscl.InertialNode_enableVerticalGyroConstraint(self, enable) - - def verticalGyroConstraintEnabled(self): - return _mscl.InertialNode_verticalGyroConstraintEnabled(self) - - def enableWheeledVehicleConstraint(self, enable): - return _mscl.InertialNode_enableWheeledVehicleConstraint(self, enable) - - def wheeledVehicleConstraintEnabled(self): - return _mscl.InertialNode_wheeledVehicleConstraintEnabled(self) - - def setVelocityZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setVelocityZUPT(self, ZUPTSettings) - - def getVelocityZUPT(self): - return _mscl.InertialNode_getVelocityZUPT(self) - - def setAngularRateZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setAngularRateZUPT(self, ZUPTSettings) - - def getAngularRateZUPT(self): - return _mscl.InertialNode_getAngularRateZUPT(self) - - def cmdedVelZUPT(self): - return _mscl.InertialNode_cmdedVelZUPT(self) - - def cmdedAngRateZUPT(self): - return _mscl.InertialNode_cmdedAngRateZUPT(self) - - def setInitialAttitude(self, attitude): - return _mscl.InertialNode_setInitialAttitude(self, attitude) - - def setInitialHeading(self, heading): - return _mscl.InertialNode_setInitialHeading(self, heading) - - def getInitialFilterConfiguration(self): - return _mscl.InertialNode_getInitialFilterConfiguration(self) - - def setInitialFilterConfiguration(self, filterConfig): - return _mscl.InertialNode_setInitialFilterConfiguration(self, filterConfig) - - def getSensorToVehicleRotation_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleRotation_eulerAngles(self) - - def setSensorToVehicleRotation_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleRotation_eulerAngles(self, angles) - - def getSensorToVehicleRotation_matrix(self): - return _mscl.InertialNode_getSensorToVehicleRotation_matrix(self) - - def setSensorToVehicleRotation_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleRotation_matrix(self, dcm) - - def getSensorToVehicleRotation_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleRotation_quaternion(self) - - def setSensorToVehicleRotation_quaternion(self, rotation): - return _mscl.InertialNode_setSensorToVehicleRotation_quaternion(self, rotation) - - def getSensorToVehicleTransform_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleTransform_eulerAngles(self) - - def setSensorToVehicleTransform_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleTransform_eulerAngles(self, angles) - - def getSensorToVehicleTransform_matrix(self): - return _mscl.InertialNode_getSensorToVehicleTransform_matrix(self) - - def setSensorToVehicleTransform_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleTransform_matrix(self, dcm) - - def getSensorToVehicleTransform_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleTransform_quaternion(self) - - def setSensorToVehicleTransform_quaternion(self, transformation): - return _mscl.InertialNode_setSensorToVehicleTransform_quaternion(self, transformation) - - def getSensorToVehicleOffset(self): - return _mscl.InertialNode_getSensorToVehicleOffset(self) - - def setSensorToVehicleOffset(self, offset): - return _mscl.InertialNode_setSensorToVehicleOffset(self, offset) - - def getAntennaOffset(self): - return _mscl.InertialNode_getAntennaOffset(self) - - def setAntennaOffset(self, offset): - return _mscl.InertialNode_setAntennaOffset(self, offset) - - def getGNSSAssistedFixControl(self): - return _mscl.InertialNode_getGNSSAssistedFixControl(self) - - def setGNSSAssistedFixControl(self, enableAssistedFix): - return _mscl.InertialNode_setGNSSAssistedFixControl(self, enableAssistedFix) - - def getGNSSAssistTimeUpdate(self): - return _mscl.InertialNode_getGNSSAssistTimeUpdate(self) - - def setGNSSAssistTimeUpdate(self, timeUpdate): - return _mscl.InertialNode_setGNSSAssistTimeUpdate(self, timeUpdate) - - def getGPSTimeUpdate(self, timeFrame): - return _mscl.InertialNode_getGPSTimeUpdate(self, timeFrame) - - def setGPSTimeUpdate(self, arg2, timeData): - return _mscl.InertialNode_setGPSTimeUpdate(self, arg2, timeData) - - def setConstellationSettings(self, dataToUse): - return _mscl.InertialNode_setConstellationSettings(self, dataToUse) - - def getConstellationSettings(self): - return _mscl.InertialNode_getConstellationSettings(self) - - def setSBASSettings(self, dataToUse): - return _mscl.InertialNode_setSBASSettings(self, dataToUse) - - def getSBASSettings(self): - return _mscl.InertialNode_getSBASSettings(self) - - def setAccelerometerBias(self, biasVector): - return _mscl.InertialNode_setAccelerometerBias(self, biasVector) - - def getAccelerometerBias(self): - return _mscl.InertialNode_getAccelerometerBias(self) - - def setGyroBias(self, biasVector): - return _mscl.InertialNode_setGyroBias(self, biasVector) - - def getGyroBias(self): - return _mscl.InertialNode_getGyroBias(self) - - def captureGyroBias(self, samplingTime): - return _mscl.InertialNode_captureGyroBias(self, samplingTime) - - def findMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_findMagnetometerCaptureAutoCalibration(self) - - def saveMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_saveMagnetometerCaptureAutoCalibration(self) - - def setMagnetometerSoftIronMatrix(self, matrix): - return _mscl.InertialNode_setMagnetometerSoftIronMatrix(self, matrix) - - def getMagnetometerSoftIronMatrix(self): - return _mscl.InertialNode_getMagnetometerSoftIronMatrix(self) - - def setMagnetometerHardIronOffset(self, offsetVector): - return _mscl.InertialNode_setMagnetometerHardIronOffset(self, offsetVector) - - def getMagnetometerHardIronOffset(self): - return _mscl.InertialNode_getMagnetometerHardIronOffset(self) - - def setConingAndScullingEnable(self, enable): - return _mscl.InertialNode_setConingAndScullingEnable(self, enable) - - def getConingAndScullingEnable(self): - return _mscl.InertialNode_getConingAndScullingEnable(self) - - def setLowPassFilterSettings(self, data): - return _mscl.InertialNode_setLowPassFilterSettings(self, data) - - def getLowPassFilterSettings(self, dataDescriptors): - return _mscl.InertialNode_getLowPassFilterSettings(self, dataDescriptors) - - def setComplementaryFilterSettings(self, data): - return _mscl.InertialNode_setComplementaryFilterSettings(self, data) - - def getComplementaryFilterSettings(self): - return _mscl.InertialNode_getComplementaryFilterSettings(self) - - def getBasicDeviceStatus(self): - return _mscl.InertialNode_getBasicDeviceStatus(self) - - def getDiagnosticDeviceStatus(self): - return _mscl.InertialNode_getDiagnosticDeviceStatus(self) - - def sendRawRTCM_2_3Message(self, theMessage): - return _mscl.InertialNode_sendRawRTCM_2_3Message(self, theMessage) - - def setVehicleDynamicsMode(self, mode): - return _mscl.InertialNode_setVehicleDynamicsMode(self, mode) - - def getVehicleDynamicsMode(self): - return _mscl.InertialNode_getVehicleDynamicsMode(self) - - def setEstimationControlFlags(self, flags): - return _mscl.InertialNode_setEstimationControlFlags(self, flags) - - def getEstimationControlFlags(self): - return _mscl.InertialNode_getEstimationControlFlags(self) - - def setInclinationSource(self, options): - return _mscl.InertialNode_setInclinationSource(self, options) - - def getInclinationSource(self): - return _mscl.InertialNode_getInclinationSource(self) - - def setDeclinationSource(self, options): - return _mscl.InertialNode_setDeclinationSource(self, options) - - def getDeclinationSource(self): - return _mscl.InertialNode_getDeclinationSource(self) - - def setMagneticFieldMagnitudeSource(self, options): - return _mscl.InertialNode_setMagneticFieldMagnitudeSource(self, options) - - def getMagneticFieldMagnitudeSource(self): - return _mscl.InertialNode_getMagneticFieldMagnitudeSource(self) - - def setGNSS_SourceControl(self, gnssSource): - return _mscl.InertialNode_setGNSS_SourceControl(self, gnssSource) - - def getGNSS_SourceControl(self): - return _mscl.InertialNode_getGNSS_SourceControl(self) - - def sendExternalGNSSUpdate(self, gnssUpdateData): - return _mscl.InertialNode_sendExternalGNSSUpdate(self, gnssUpdateData) - - def setHeadingUpdateControl(self, headingUpdateOptions): - return _mscl.InertialNode_setHeadingUpdateControl(self, headingUpdateOptions) - - def tareOrientation(self, axisValue): - return _mscl.InertialNode_tareOrientation(self, axisValue) - - def getHeadingUpdateControl(self): - return _mscl.InertialNode_getHeadingUpdateControl(self) - - def setGravityErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setGravityErrorAdaptiveMeasurement(self, data) - - def getGravityErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getGravityErrorAdaptiveMeasurement(self) - - def setMagnetometerErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagnetometerErrorAdaptiveMeasurement(self, data) - - def getMagnetometerErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagnetometerErrorAdaptiveMeasurement(self) - - def setMagDipAngleErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagDipAngleErrorAdaptiveMeasurement(self, data) - - def getMagDipAngleErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagDipAngleErrorAdaptiveMeasurement(self) - - def setMagNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setMagNoiseStandardDeviation(self, data) - - def getMagNoiseStandardDeviation(self): - return _mscl.InertialNode_getMagNoiseStandardDeviation(self) - - def setGravNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGravNoiseStandardDeviation(self, data) - - def getGravNoiseStandardDeviation(self): - return _mscl.InertialNode_getGravNoiseStandardDeviation(self) - - def setAccelNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setAccelNoiseStandardDeviation(self, data) - - def getAccelNoiseStandardDeviation(self): - return _mscl.InertialNode_getAccelNoiseStandardDeviation(self) - - def setGyroNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGyroNoiseStandardDeviation(self, data) - - def getGyroNoiseStandardDeviation(self): - return _mscl.InertialNode_getGyroNoiseStandardDeviation(self) - - def setPressureAltNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setPressureAltNoiseStandardDeviation(self, data) - - def getPressureAltNoiseStandardDeviation(self): - return _mscl.InertialNode_getPressureAltNoiseStandardDeviation(self) - - def setHardIronOffsetProcessNoise(self, data): - return _mscl.InertialNode_setHardIronOffsetProcessNoise(self, data) - - def getHardIronOffsetProcessNoise(self): - return _mscl.InertialNode_getHardIronOffsetProcessNoise(self) - - def setAccelBiasModelParams(self, data): - return _mscl.InertialNode_setAccelBiasModelParams(self, data) - - def getAccelBiasModelParams(self): - return _mscl.InertialNode_getAccelBiasModelParams(self) - - def setGyroBiasModelParams(self, data): - return _mscl.InertialNode_setGyroBiasModelParams(self, data) - - def getGyroBiasModelParams(self): - return _mscl.InertialNode_getGyroBiasModelParams(self) - - def setSoftIronMatrixProcessNoise(self, data): - return _mscl.InertialNode_setSoftIronMatrixProcessNoise(self, data) - - def getSoftIronMatrixProcessNoise(self): - return _mscl.InertialNode_getSoftIronMatrixProcessNoise(self) - - def setFixedReferencePosition(self, data): - return _mscl.InertialNode_setFixedReferencePosition(self, data) - - def getFixedReferencePosition(self): - return _mscl.InertialNode_getFixedReferencePosition(self) - - def setGPSDynamicsMode(self, data): - return _mscl.InertialNode_setGPSDynamicsMode(self, data) - - def getGPSDynamicsMode(self): - return _mscl.InertialNode_getGPSDynamicsMode(self) - - def setDevicePowerState(self, device, data): - return _mscl.InertialNode_setDevicePowerState(self, device, data) - - def getDevicePowerState(self, device): - return _mscl.InertialNode_getDevicePowerState(self, device) - - def setDeviceStreamFormat(self, device, data): - return _mscl.InertialNode_setDeviceStreamFormat(self, device, data) - - def getDeviceStreamFormat(self, device): - return _mscl.InertialNode_getDeviceStreamFormat(self, device) - - def setSignalConditioningSettings(self, data): - return _mscl.InertialNode_setSignalConditioningSettings(self, data) - - def getSignalConditioningSettings(self): - return _mscl.InertialNode_getSignalConditioningSettings(self) - - def setEnableDisableMeasurements(self, data): - return _mscl.InertialNode_setEnableDisableMeasurements(self, data) - - def getEnableDisableMeasurements(self): - return _mscl.InertialNode_getEnableDisableMeasurements(self) - - def setGravityNoiseMinimum(self, data): - return _mscl.InertialNode_setGravityNoiseMinimum(self, data) - - def getGravityNoiseMinimum(self): - return _mscl.InertialNode_getGravityNoiseMinimum(self) - - def sendExternalHeadingUpdate(self, *args): - return _mscl.InertialNode_sendExternalHeadingUpdate(self, *args) - - def aidingMeasurementEnabled(self, aidingSource): - return _mscl.InertialNode_aidingMeasurementEnabled(self, aidingSource) - - def enableDisableAidingMeasurement(self, aidingSource, enable): - return _mscl.InertialNode_enableDisableAidingMeasurement(self, aidingSource, enable) - - def getAdaptiveFilterOptions(self): - return _mscl.InertialNode_getAdaptiveFilterOptions(self) - - def setAdaptiveFilterOptions(self, options): - return _mscl.InertialNode_setAdaptiveFilterOptions(self, options) - - def getMultiAntennaOffset(self, receiverId): - return _mscl.InertialNode_getMultiAntennaOffset(self, receiverId) - - def setMultiAntennaOffset(self, receiverId, offset): - return _mscl.InertialNode_setMultiAntennaOffset(self, receiverId, offset) - - def getPpsSource(self): - return _mscl.InertialNode_getPpsSource(self) - - def setPpsSource(self, ppsSource): - return _mscl.InertialNode_setPpsSource(self, ppsSource) - - def getOdometerConfig(self): - return _mscl.InertialNode_getOdometerConfig(self) - - def setOdometerConfig(self, config): - return _mscl.InertialNode_setOdometerConfig(self, config) - - def getSensorRange(self, sensorRangeType): - return _mscl.InertialNode_getSensorRange(self, sensorRangeType) - - def setSensorRange(self, *args): - return _mscl.InertialNode_setSensorRange(self, *args) - - def getGpioConfig(self, pin): - return _mscl.InertialNode_getGpioConfig(self, pin) - - def setGpioConfig(self, config): - return _mscl.InertialNode_setGpioConfig(self, config) - - def getGpioState(self, pin): - return _mscl.InertialNode_getGpioState(self, pin) - - def setGpioState(self, pin, state): - return _mscl.InertialNode_setGpioState(self, pin, state) - - def getEventTriggerMode(self, instance): - return _mscl.InertialNode_getEventTriggerMode(self, instance) - - def setEventTriggerMode(self, instance, mode): - return _mscl.InertialNode_setEventTriggerMode(self, instance, mode) - - def getEventTriggerConfig(self, instance): - return _mscl.InertialNode_getEventTriggerConfig(self, instance) - - def setEventTriggerConfig(self, config): - return _mscl.InertialNode_setEventTriggerConfig(self, config) - - def getEventActionConfig(self, instance): - return _mscl.InertialNode_getEventActionConfig(self, instance) - - def setEventActionConfig(self, config, validateSupported=True): - return _mscl.InertialNode_setEventActionConfig(self, config, validateSupported) - - def getAntennaLeverArmCal(self): - return _mscl.InertialNode_getAntennaLeverArmCal(self) - - def setAntennaLeverArmCal(self, config): - return _mscl.InertialNode_setAntennaLeverArmCal(self, config) - - def getRelativePositionReference(self): - return _mscl.InertialNode_getRelativePositionReference(self) - - def setRelativePositionReference(self, ref): - return _mscl.InertialNode_setRelativePositionReference(self, ref) - - def getLeverArmReferenceOffset(self): - return _mscl.InertialNode_getLeverArmReferenceOffset(self) - - def setLeverArmReferenceOffset(self, offset): - return _mscl.InertialNode_setLeverArmReferenceOffset(self, offset) - - def sendExternalSpeedMeasurementUpdate(self, tow, speed, unc): - return _mscl.InertialNode_sendExternalSpeedMeasurementUpdate(self, tow, speed, unc) - - def getSpeedMeasurementOffset(self): - return _mscl.InertialNode_getSpeedMeasurementOffset(self) - - def setSpeedMeasurementOffset(self, offset): - return _mscl.InertialNode_setSpeedMeasurementOffset(self, offset) - - def getGnssSignalConfig(self): - return _mscl.InertialNode_getGnssSignalConfig(self) - - def setGnssSignalConfig(self, config): - return _mscl.InertialNode_setGnssSignalConfig(self, config) - - def getGnssSpartnConfig(self): - return _mscl.InertialNode_getGnssSpartnConfig(self) - - def setGnssSpartnConfig(self, config): - return _mscl.InertialNode_setGnssSpartnConfig(self, config) - - def rtkEnabled(self): - return _mscl.InertialNode_rtkEnabled(self) - - def enableRtk(self, enable): - return _mscl.InertialNode_enableRtk(self, enable) - - def getEventTriggerStatus(self, *args): - return _mscl.InertialNode_getEventTriggerStatus(self, *args) - - def getEventActionStatus(self, *args): - return _mscl.InertialNode_getEventActionStatus(self, *args) - - def getNmeaMessageFormat(self): - return _mscl.InertialNode_getNmeaMessageFormat(self) - - def setNmeaMessageFormat(self, nmeaFormats): - return _mscl.InertialNode_setNmeaMessageFormat(self, nmeaFormats) - - def getAidingMeasurementReferenceFrames(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrames(self, *args) - - def setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds=False): - return _mscl.InertialNode_setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds) - - def getAidingMeasurementReferenceFrame(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrame(self, *args) - - def setAidingMeasurementReferenceFrame(self, id, frame): - return _mscl.InertialNode_setAidingMeasurementReferenceFrame(self, id, frame) - - def setAidingMeasurementResponseMode(self, mode): - return _mscl.InertialNode_setAidingMeasurementResponseMode(self, mode) - - def getAidingMeasurementResponseMode(self): - return _mscl.InertialNode_getAidingMeasurementResponseMode(self) - - def sendAidingMeasurement(self, *args): - return _mscl.InertialNode_sendAidingMeasurement(self, *args) - - def sendAidingMeasurement_readEcho(self, *args): - return _mscl.InertialNode_sendAidingMeasurement_readEcho(self, *args) - -# Register InertialNode in _mscl: -_mscl.InertialNode_swigregister(InertialNode) - -class DisplacementNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.DisplacementNode_swiginit(self, _mscl.new_DisplacementNode(connection)) - __swig_destroy__ = _mscl.delete_DisplacementNode - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.DisplacementNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - @staticmethod - def deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - - def connection(self): - return _mscl.DisplacementNode_connection(self) - - def features(self): - return _mscl.DisplacementNode_features(self) - - def lastCommunicationTime(self): - return _mscl.DisplacementNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.DisplacementNode_lastDeviceState(self) - - def firmwareVersion(self): - return _mscl.DisplacementNode_firmwareVersion(self) - - def model(self): - return _mscl.DisplacementNode_model(self) - - def modelName(self): - return _mscl.DisplacementNode_modelName(self) - - def modelNumber(self): - return _mscl.DisplacementNode_modelNumber(self) - - def serialNumber(self): - return _mscl.DisplacementNode_serialNumber(self) - - def lotNumber(self): - return _mscl.DisplacementNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.DisplacementNode_deviceOptions(self) - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.DisplacementNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.DisplacementNode_totalPackets(self) - - def timeout(self, *args): - return _mscl.DisplacementNode_timeout(self, *args) - - def name(self): - return _mscl.DisplacementNode_name(self) - - def ping(self): - return _mscl.DisplacementNode_ping(self) - - def setToIdle(self): - return _mscl.DisplacementNode_setToIdle(self) - - def cyclePower(self): - return _mscl.DisplacementNode_cyclePower(self) - - def resume(self): - return _mscl.DisplacementNode_resume(self) - - def getDisplacementOutputDataRate(self): - return _mscl.DisplacementNode_getDisplacementOutputDataRate(self) - - def getAnalogToDisplacementCal(self): - return _mscl.DisplacementNode_getAnalogToDisplacementCal(self) - - def setDeviceTime(self, *args): - return _mscl.DisplacementNode_setDeviceTime(self, *args) - -# Register DisplacementNode in _mscl: -_mscl.DisplacementNode_swigregister(DisplacementNode) - -def DisplacementNode_deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - -class RTKNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.RTKNode_swiginit(self, _mscl.new_RTKNode(connection)) - __swig_destroy__ = _mscl.delete_RTKNode - - def getCommunicationMode(self): - return _mscl.RTKNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.RTKNode_setCommunicationMode(self, communicationMode) - - def getDeviceStatusFlags(self): - return _mscl.RTKNode_getDeviceStatusFlags(self) - - def getActivationCode(self): - return _mscl.RTKNode_getActivationCode(self) - - def getStatusBitfieldVersion(self): - return _mscl.RTKNode_getStatusBitfieldVersion(self) - -# Register RTKNode in _mscl: -_mscl.RTKNode_swigregister(RTKNode) - -class ChannelData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelData___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelData___bool__(self) - - def __len__(self): - return _mscl.ChannelData___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelData___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelData___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelData___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelData___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelData___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelData___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelData_pop(self) - - def append(self, x): - return _mscl.ChannelData_append(self, x) - - def empty(self): - return _mscl.ChannelData_empty(self) - - def size(self): - return _mscl.ChannelData_size(self) - - def swap(self, v): - return _mscl.ChannelData_swap(self, v) - - def begin(self): - return _mscl.ChannelData_begin(self) - - def end(self): - return _mscl.ChannelData_end(self) - - def rbegin(self): - return _mscl.ChannelData_rbegin(self) - - def rend(self): - return _mscl.ChannelData_rend(self) - - def clear(self): - return _mscl.ChannelData_clear(self) - - def get_allocator(self): - return _mscl.ChannelData_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelData_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelData_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelData_swiginit(self, _mscl.new_ChannelData(*args)) - - def push_back(self, x): - return _mscl.ChannelData_push_back(self, x) - - def front(self): - return _mscl.ChannelData_front(self) - - def back(self): - return _mscl.ChannelData_back(self) - - def assign(self, n, x): - return _mscl.ChannelData_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelData_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelData_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelData_reserve(self, n) - - def capacity(self): - return _mscl.ChannelData_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelData - -# Register ChannelData in _mscl: -_mscl.ChannelData_swigregister(ChannelData) - -class MipDataPoints(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPoints_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPoints___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPoints___bool__(self) - - def __len__(self): - return _mscl.MipDataPoints___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPoints___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPoints___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPoints___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPoints___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPoints___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPoints___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPoints_pop(self) - - def append(self, x): - return _mscl.MipDataPoints_append(self, x) - - def empty(self): - return _mscl.MipDataPoints_empty(self) - - def size(self): - return _mscl.MipDataPoints_size(self) - - def swap(self, v): - return _mscl.MipDataPoints_swap(self, v) - - def begin(self): - return _mscl.MipDataPoints_begin(self) - - def end(self): - return _mscl.MipDataPoints_end(self) - - def rbegin(self): - return _mscl.MipDataPoints_rbegin(self) - - def rend(self): - return _mscl.MipDataPoints_rend(self) - - def clear(self): - return _mscl.MipDataPoints_clear(self) - - def get_allocator(self): - return _mscl.MipDataPoints_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPoints_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPoints_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPoints_swiginit(self, _mscl.new_MipDataPoints(*args)) - - def push_back(self, x): - return _mscl.MipDataPoints_push_back(self, x) - - def front(self): - return _mscl.MipDataPoints_front(self) - - def back(self): - return _mscl.MipDataPoints_back(self) - - def assign(self, n, x): - return _mscl.MipDataPoints_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPoints_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPoints_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPoints_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPoints_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPoints - -# Register MipDataPoints in _mscl: -_mscl.MipDataPoints_swigregister(MipDataPoints) - -class Bytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bytes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bytes___nonzero__(self) - - def __bool__(self): - return _mscl.Bytes___bool__(self) - - def __len__(self): - return _mscl.Bytes___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bytes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bytes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bytes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bytes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bytes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bytes___setitem__(self, *args) - - def pop(self): - return _mscl.Bytes_pop(self) - - def append(self, x): - return _mscl.Bytes_append(self, x) - - def empty(self): - return _mscl.Bytes_empty(self) - - def size(self): - return _mscl.Bytes_size(self) - - def swap(self, v): - return _mscl.Bytes_swap(self, v) - - def begin(self): - return _mscl.Bytes_begin(self) - - def end(self): - return _mscl.Bytes_end(self) - - def rbegin(self): - return _mscl.Bytes_rbegin(self) - - def rend(self): - return _mscl.Bytes_rend(self) - - def clear(self): - return _mscl.Bytes_clear(self) - - def get_allocator(self): - return _mscl.Bytes_get_allocator(self) - - def pop_back(self): - return _mscl.Bytes_pop_back(self) - - def erase(self, *args): - return _mscl.Bytes_erase(self, *args) - - def __init__(self, *args): - _mscl.Bytes_swiginit(self, _mscl.new_Bytes(*args)) - - def push_back(self, x): - return _mscl.Bytes_push_back(self, x) - - def front(self): - return _mscl.Bytes_front(self) - - def back(self): - return _mscl.Bytes_back(self) - - def assign(self, n, x): - return _mscl.Bytes_assign(self, n, x) - - def resize(self, *args): - return _mscl.Bytes_resize(self, *args) - - def insert(self, *args): - return _mscl.Bytes_insert(self, *args) - - def reserve(self, n): - return _mscl.Bytes_reserve(self, n) - - def capacity(self): - return _mscl.Bytes_capacity(self) - __swig_destroy__ = _mscl.delete_Bytes - -# Register Bytes in _mscl: -_mscl.Bytes_swigregister(Bytes) - -class BytesCollection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.BytesCollection_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.BytesCollection___nonzero__(self) - - def __bool__(self): - return _mscl.BytesCollection___bool__(self) - - def __len__(self): - return _mscl.BytesCollection___len__(self) - - def __getslice__(self, i, j): - return _mscl.BytesCollection___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.BytesCollection___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.BytesCollection___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.BytesCollection___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.BytesCollection___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.BytesCollection___setitem__(self, *args) - - def pop(self): - return _mscl.BytesCollection_pop(self) - - def append(self, x): - return _mscl.BytesCollection_append(self, x) - - def empty(self): - return _mscl.BytesCollection_empty(self) - - def size(self): - return _mscl.BytesCollection_size(self) - - def swap(self, v): - return _mscl.BytesCollection_swap(self, v) - - def begin(self): - return _mscl.BytesCollection_begin(self) - - def end(self): - return _mscl.BytesCollection_end(self) - - def rbegin(self): - return _mscl.BytesCollection_rbegin(self) - - def rend(self): - return _mscl.BytesCollection_rend(self) - - def clear(self): - return _mscl.BytesCollection_clear(self) - - def get_allocator(self): - return _mscl.BytesCollection_get_allocator(self) - - def pop_back(self): - return _mscl.BytesCollection_pop_back(self) - - def erase(self, *args): - return _mscl.BytesCollection_erase(self, *args) - - def __init__(self, *args): - _mscl.BytesCollection_swiginit(self, _mscl.new_BytesCollection(*args)) - - def push_back(self, x): - return _mscl.BytesCollection_push_back(self, x) - - def front(self): - return _mscl.BytesCollection_front(self) - - def back(self): - return _mscl.BytesCollection_back(self) - - def assign(self, n, x): - return _mscl.BytesCollection_assign(self, n, x) - - def resize(self, *args): - return _mscl.BytesCollection_resize(self, *args) - - def insert(self, *args): - return _mscl.BytesCollection_insert(self, *args) - - def reserve(self, n): - return _mscl.BytesCollection_reserve(self, n) - - def capacity(self): - return _mscl.BytesCollection_capacity(self) - __swig_destroy__ = _mscl.delete_BytesCollection - -# Register BytesCollection in _mscl: -_mscl.BytesCollection_swigregister(BytesCollection) - -class DeviceList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceList___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceList___bool__(self) - - def __len__(self): - return _mscl.DeviceList___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceList___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceList___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceList_has_key(self, key) - - def keys(self): - return _mscl.DeviceList_keys(self) - - def values(self): - return _mscl.DeviceList_values(self) - - def items(self): - return _mscl.DeviceList_items(self) - - def __contains__(self, key): - return _mscl.DeviceList___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceList_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceList_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceList___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceList_asdict(self) - - def __init__(self, *args): - _mscl.DeviceList_swiginit(self, _mscl.new_DeviceList(*args)) - - def empty(self): - return _mscl.DeviceList_empty(self) - - def size(self): - return _mscl.DeviceList_size(self) - - def swap(self, v): - return _mscl.DeviceList_swap(self, v) - - def begin(self): - return _mscl.DeviceList_begin(self) - - def end(self): - return _mscl.DeviceList_end(self) - - def rbegin(self): - return _mscl.DeviceList_rbegin(self) - - def rend(self): - return _mscl.DeviceList_rend(self) - - def clear(self): - return _mscl.DeviceList_clear(self) - - def get_allocator(self): - return _mscl.DeviceList_get_allocator(self) - - def count(self, x): - return _mscl.DeviceList_count(self, x) - - def erase(self, *args): - return _mscl.DeviceList_erase(self, *args) - - def find(self, x): - return _mscl.DeviceList_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceList_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceList_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceList - -# Register DeviceList in _mscl: -_mscl.DeviceList_swigregister(DeviceList) - -class NodeDiscoveries(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NodeDiscoveries_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NodeDiscoveries___nonzero__(self) - - def __bool__(self): - return _mscl.NodeDiscoveries___bool__(self) - - def __len__(self): - return _mscl.NodeDiscoveries___len__(self) - - def __getslice__(self, i, j): - return _mscl.NodeDiscoveries___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NodeDiscoveries___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NodeDiscoveries___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NodeDiscoveries___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NodeDiscoveries___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NodeDiscoveries___setitem__(self, *args) - - def pop(self): - return _mscl.NodeDiscoveries_pop(self) - - def append(self, x): - return _mscl.NodeDiscoveries_append(self, x) - - def empty(self): - return _mscl.NodeDiscoveries_empty(self) - - def size(self): - return _mscl.NodeDiscoveries_size(self) - - def swap(self, v): - return _mscl.NodeDiscoveries_swap(self, v) - - def begin(self): - return _mscl.NodeDiscoveries_begin(self) - - def end(self): - return _mscl.NodeDiscoveries_end(self) - - def rbegin(self): - return _mscl.NodeDiscoveries_rbegin(self) - - def rend(self): - return _mscl.NodeDiscoveries_rend(self) - - def clear(self): - return _mscl.NodeDiscoveries_clear(self) - - def get_allocator(self): - return _mscl.NodeDiscoveries_get_allocator(self) - - def pop_back(self): - return _mscl.NodeDiscoveries_pop_back(self) - - def erase(self, *args): - return _mscl.NodeDiscoveries_erase(self, *args) - - def __init__(self, *args): - _mscl.NodeDiscoveries_swiginit(self, _mscl.new_NodeDiscoveries(*args)) - - def push_back(self, x): - return _mscl.NodeDiscoveries_push_back(self, x) - - def front(self): - return _mscl.NodeDiscoveries_front(self) - - def back(self): - return _mscl.NodeDiscoveries_back(self) - - def assign(self, n, x): - return _mscl.NodeDiscoveries_assign(self, n, x) - - def resize(self, *args): - return _mscl.NodeDiscoveries_resize(self, *args) - - def insert(self, *args): - return _mscl.NodeDiscoveries_insert(self, *args) - - def reserve(self, n): - return _mscl.NodeDiscoveries_reserve(self, n) - - def capacity(self): - return _mscl.NodeDiscoveries_capacity(self) - __swig_destroy__ = _mscl.delete_NodeDiscoveries - -# Register NodeDiscoveries in _mscl: -_mscl.NodeDiscoveries_swigregister(NodeDiscoveries) - -class DataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.DataSweeps___bool__(self) - - def __len__(self): - return _mscl.DataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.DataSweeps_pop(self) - - def append(self, x): - return _mscl.DataSweeps_append(self, x) - - def empty(self): - return _mscl.DataSweeps_empty(self) - - def size(self): - return _mscl.DataSweeps_size(self) - - def swap(self, v): - return _mscl.DataSweeps_swap(self, v) - - def begin(self): - return _mscl.DataSweeps_begin(self) - - def end(self): - return _mscl.DataSweeps_end(self) - - def rbegin(self): - return _mscl.DataSweeps_rbegin(self) - - def rend(self): - return _mscl.DataSweeps_rend(self) - - def clear(self): - return _mscl.DataSweeps_clear(self) - - def get_allocator(self): - return _mscl.DataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.DataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.DataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.DataSweeps_swiginit(self, _mscl.new_DataSweeps(*args)) - - def push_back(self, x): - return _mscl.DataSweeps_push_back(self, x) - - def front(self): - return _mscl.DataSweeps_front(self) - - def back(self): - return _mscl.DataSweeps_back(self) - - def assign(self, n, x): - return _mscl.DataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.DataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.DataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.DataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_DataSweeps - -# Register DataSweeps in _mscl: -_mscl.DataSweeps_swigregister(DataSweeps) - -class LoggedDataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LoggedDataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LoggedDataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.LoggedDataSweeps___bool__(self) - - def __len__(self): - return _mscl.LoggedDataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.LoggedDataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LoggedDataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LoggedDataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LoggedDataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LoggedDataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LoggedDataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.LoggedDataSweeps_pop(self) - - def append(self, x): - return _mscl.LoggedDataSweeps_append(self, x) - - def empty(self): - return _mscl.LoggedDataSweeps_empty(self) - - def size(self): - return _mscl.LoggedDataSweeps_size(self) - - def swap(self, v): - return _mscl.LoggedDataSweeps_swap(self, v) - - def begin(self): - return _mscl.LoggedDataSweeps_begin(self) - - def end(self): - return _mscl.LoggedDataSweeps_end(self) - - def rbegin(self): - return _mscl.LoggedDataSweeps_rbegin(self) - - def rend(self): - return _mscl.LoggedDataSweeps_rend(self) - - def clear(self): - return _mscl.LoggedDataSweeps_clear(self) - - def get_allocator(self): - return _mscl.LoggedDataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.LoggedDataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.LoggedDataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.LoggedDataSweeps_swiginit(self, _mscl.new_LoggedDataSweeps(*args)) - - def push_back(self, x): - return _mscl.LoggedDataSweeps_push_back(self, x) - - def front(self): - return _mscl.LoggedDataSweeps_front(self) - - def back(self): - return _mscl.LoggedDataSweeps_back(self) - - def assign(self, n, x): - return _mscl.LoggedDataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.LoggedDataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.LoggedDataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.LoggedDataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.LoggedDataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweeps - -# Register LoggedDataSweeps in _mscl: -_mscl.LoggedDataSweeps_swigregister(LoggedDataSweeps) - -class MipDataPackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPackets___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPackets___bool__(self) - - def __len__(self): - return _mscl.MipDataPackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPackets___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPackets_pop(self) - - def append(self, x): - return _mscl.MipDataPackets_append(self, x) - - def empty(self): - return _mscl.MipDataPackets_empty(self) - - def size(self): - return _mscl.MipDataPackets_size(self) - - def swap(self, v): - return _mscl.MipDataPackets_swap(self, v) - - def begin(self): - return _mscl.MipDataPackets_begin(self) - - def end(self): - return _mscl.MipDataPackets_end(self) - - def rbegin(self): - return _mscl.MipDataPackets_rbegin(self) - - def rend(self): - return _mscl.MipDataPackets_rend(self) - - def clear(self): - return _mscl.MipDataPackets_clear(self) - - def get_allocator(self): - return _mscl.MipDataPackets_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPackets_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPackets_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPackets_swiginit(self, _mscl.new_MipDataPackets(*args)) - - def push_back(self, x): - return _mscl.MipDataPackets_push_back(self, x) - - def front(self): - return _mscl.MipDataPackets_front(self) - - def back(self): - return _mscl.MipDataPackets_back(self) - - def assign(self, n, x): - return _mscl.MipDataPackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPackets_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPackets_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPackets_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPackets_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPackets - -# Register MipDataPackets in _mscl: -_mscl.MipDataPackets_swigregister(MipDataPackets) - -class RawBytePackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RawBytePackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RawBytePackets___nonzero__(self) - - def __bool__(self): - return _mscl.RawBytePackets___bool__(self) - - def __len__(self): - return _mscl.RawBytePackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.RawBytePackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.RawBytePackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.RawBytePackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.RawBytePackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.RawBytePackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.RawBytePackets___setitem__(self, *args) - - def pop(self): - return _mscl.RawBytePackets_pop(self) - - def append(self, x): - return _mscl.RawBytePackets_append(self, x) - - def empty(self): - return _mscl.RawBytePackets_empty(self) - - def size(self): - return _mscl.RawBytePackets_size(self) - - def swap(self, v): - return _mscl.RawBytePackets_swap(self, v) - - def begin(self): - return _mscl.RawBytePackets_begin(self) - - def end(self): - return _mscl.RawBytePackets_end(self) - - def rbegin(self): - return _mscl.RawBytePackets_rbegin(self) - - def rend(self): - return _mscl.RawBytePackets_rend(self) - - def clear(self): - return _mscl.RawBytePackets_clear(self) - - def get_allocator(self): - return _mscl.RawBytePackets_get_allocator(self) - - def pop_back(self): - return _mscl.RawBytePackets_pop_back(self) - - def erase(self, *args): - return _mscl.RawBytePackets_erase(self, *args) - - def __init__(self, *args): - _mscl.RawBytePackets_swiginit(self, _mscl.new_RawBytePackets(*args)) - - def push_back(self, x): - return _mscl.RawBytePackets_push_back(self, x) - - def front(self): - return _mscl.RawBytePackets_front(self) - - def back(self): - return _mscl.RawBytePackets_back(self) - - def assign(self, n, x): - return _mscl.RawBytePackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.RawBytePackets_resize(self, *args) - - def insert(self, *args): - return _mscl.RawBytePackets_insert(self, *args) - - def reserve(self, n): - return _mscl.RawBytePackets_reserve(self, n) - - def capacity(self): - return _mscl.RawBytePackets_capacity(self) - __swig_destroy__ = _mscl.delete_RawBytePackets - -# Register RawBytePackets in _mscl: -_mscl.RawBytePackets_swigregister(RawBytePackets) - -class MipChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannels___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannels___bool__(self) - - def __len__(self): - return _mscl.MipChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannels___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannels_pop(self) - - def append(self, x): - return _mscl.MipChannels_append(self, x) - - def empty(self): - return _mscl.MipChannels_empty(self) - - def size(self): - return _mscl.MipChannels_size(self) - - def swap(self, v): - return _mscl.MipChannels_swap(self, v) - - def begin(self): - return _mscl.MipChannels_begin(self) - - def end(self): - return _mscl.MipChannels_end(self) - - def rbegin(self): - return _mscl.MipChannels_rbegin(self) - - def rend(self): - return _mscl.MipChannels_rend(self) - - def clear(self): - return _mscl.MipChannels_clear(self) - - def get_allocator(self): - return _mscl.MipChannels_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannels_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannels_swiginit(self, _mscl.new_MipChannels(*args)) - - def push_back(self, x): - return _mscl.MipChannels_push_back(self, x) - - def front(self): - return _mscl.MipChannels_front(self) - - def back(self): - return _mscl.MipChannels_back(self) - - def assign(self, n, x): - return _mscl.MipChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannels_reserve(self, n) - - def capacity(self): - return _mscl.MipChannels_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannels - -# Register MipChannels in _mscl: -_mscl.MipChannels_swigregister(MipChannels) - -class DataCollectionMethods(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataCollectionMethods_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataCollectionMethods___nonzero__(self) - - def __bool__(self): - return _mscl.DataCollectionMethods___bool__(self) - - def __len__(self): - return _mscl.DataCollectionMethods___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataCollectionMethods___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataCollectionMethods___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataCollectionMethods___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataCollectionMethods___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataCollectionMethods___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataCollectionMethods___setitem__(self, *args) - - def pop(self): - return _mscl.DataCollectionMethods_pop(self) - - def append(self, x): - return _mscl.DataCollectionMethods_append(self, x) - - def empty(self): - return _mscl.DataCollectionMethods_empty(self) - - def size(self): - return _mscl.DataCollectionMethods_size(self) - - def swap(self, v): - return _mscl.DataCollectionMethods_swap(self, v) - - def begin(self): - return _mscl.DataCollectionMethods_begin(self) - - def end(self): - return _mscl.DataCollectionMethods_end(self) - - def rbegin(self): - return _mscl.DataCollectionMethods_rbegin(self) - - def rend(self): - return _mscl.DataCollectionMethods_rend(self) - - def clear(self): - return _mscl.DataCollectionMethods_clear(self) - - def get_allocator(self): - return _mscl.DataCollectionMethods_get_allocator(self) - - def pop_back(self): - return _mscl.DataCollectionMethods_pop_back(self) - - def erase(self, *args): - return _mscl.DataCollectionMethods_erase(self, *args) - - def __init__(self, *args): - _mscl.DataCollectionMethods_swiginit(self, _mscl.new_DataCollectionMethods(*args)) - - def push_back(self, x): - return _mscl.DataCollectionMethods_push_back(self, x) - - def front(self): - return _mscl.DataCollectionMethods_front(self) - - def back(self): - return _mscl.DataCollectionMethods_back(self) - - def assign(self, n, x): - return _mscl.DataCollectionMethods_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataCollectionMethods_resize(self, *args) - - def insert(self, *args): - return _mscl.DataCollectionMethods_insert(self, *args) - - def reserve(self, n): - return _mscl.DataCollectionMethods_reserve(self, n) - - def capacity(self): - return _mscl.DataCollectionMethods_capacity(self) - __swig_destroy__ = _mscl.delete_DataCollectionMethods - -# Register DataCollectionMethods in _mscl: -_mscl.DataCollectionMethods_swigregister(DataCollectionMethods) - -class DataFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataFormats___nonzero__(self) - - def __bool__(self): - return _mscl.DataFormats___bool__(self) - - def __len__(self): - return _mscl.DataFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataFormats___setitem__(self, *args) - - def pop(self): - return _mscl.DataFormats_pop(self) - - def append(self, x): - return _mscl.DataFormats_append(self, x) - - def empty(self): - return _mscl.DataFormats_empty(self) - - def size(self): - return _mscl.DataFormats_size(self) - - def swap(self, v): - return _mscl.DataFormats_swap(self, v) - - def begin(self): - return _mscl.DataFormats_begin(self) - - def end(self): - return _mscl.DataFormats_end(self) - - def rbegin(self): - return _mscl.DataFormats_rbegin(self) - - def rend(self): - return _mscl.DataFormats_rend(self) - - def clear(self): - return _mscl.DataFormats_clear(self) - - def get_allocator(self): - return _mscl.DataFormats_get_allocator(self) - - def pop_back(self): - return _mscl.DataFormats_pop_back(self) - - def erase(self, *args): - return _mscl.DataFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.DataFormats_swiginit(self, _mscl.new_DataFormats(*args)) - - def push_back(self, x): - return _mscl.DataFormats_push_back(self, x) - - def front(self): - return _mscl.DataFormats_front(self) - - def back(self): - return _mscl.DataFormats_back(self) - - def assign(self, n, x): - return _mscl.DataFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.DataFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.DataFormats_reserve(self, n) - - def capacity(self): - return _mscl.DataFormats_capacity(self) - __swig_destroy__ = _mscl.delete_DataFormats - -# Register DataFormats in _mscl: -_mscl.DataFormats_swigregister(DataFormats) - -class WirelessSampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessSampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessSampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessSampleRates___bool__(self) - - def __len__(self): - return _mscl.WirelessSampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessSampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessSampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessSampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessSampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessSampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessSampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessSampleRates_pop(self) - - def append(self, x): - return _mscl.WirelessSampleRates_append(self, x) - - def empty(self): - return _mscl.WirelessSampleRates_empty(self) - - def size(self): - return _mscl.WirelessSampleRates_size(self) - - def swap(self, v): - return _mscl.WirelessSampleRates_swap(self, v) - - def begin(self): - return _mscl.WirelessSampleRates_begin(self) - - def end(self): - return _mscl.WirelessSampleRates_end(self) - - def rbegin(self): - return _mscl.WirelessSampleRates_rbegin(self) - - def rend(self): - return _mscl.WirelessSampleRates_rend(self) - - def clear(self): - return _mscl.WirelessSampleRates_clear(self) - - def get_allocator(self): - return _mscl.WirelessSampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessSampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessSampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessSampleRates_swiginit(self, _mscl.new_WirelessSampleRates(*args)) - - def push_back(self, x): - return _mscl.WirelessSampleRates_push_back(self, x) - - def front(self): - return _mscl.WirelessSampleRates_front(self) - - def back(self): - return _mscl.WirelessSampleRates_back(self) - - def assign(self, n, x): - return _mscl.WirelessSampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessSampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessSampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessSampleRates_reserve(self, n) - - def capacity(self): - return _mscl.WirelessSampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessSampleRates - -# Register WirelessSampleRates in _mscl: -_mscl.WirelessSampleRates_swigregister(WirelessSampleRates) - -class SamplingModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SamplingModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SamplingModes___nonzero__(self) - - def __bool__(self): - return _mscl.SamplingModes___bool__(self) - - def __len__(self): - return _mscl.SamplingModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SamplingModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SamplingModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SamplingModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SamplingModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SamplingModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SamplingModes___setitem__(self, *args) - - def pop(self): - return _mscl.SamplingModes_pop(self) - - def append(self, x): - return _mscl.SamplingModes_append(self, x) - - def empty(self): - return _mscl.SamplingModes_empty(self) - - def size(self): - return _mscl.SamplingModes_size(self) - - def swap(self, v): - return _mscl.SamplingModes_swap(self, v) - - def begin(self): - return _mscl.SamplingModes_begin(self) - - def end(self): - return _mscl.SamplingModes_end(self) - - def rbegin(self): - return _mscl.SamplingModes_rbegin(self) - - def rend(self): - return _mscl.SamplingModes_rend(self) - - def clear(self): - return _mscl.SamplingModes_clear(self) - - def get_allocator(self): - return _mscl.SamplingModes_get_allocator(self) - - def pop_back(self): - return _mscl.SamplingModes_pop_back(self) - - def erase(self, *args): - return _mscl.SamplingModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SamplingModes_swiginit(self, _mscl.new_SamplingModes(*args)) - - def push_back(self, x): - return _mscl.SamplingModes_push_back(self, x) - - def front(self): - return _mscl.SamplingModes_front(self) - - def back(self): - return _mscl.SamplingModes_back(self) - - def assign(self, n, x): - return _mscl.SamplingModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SamplingModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SamplingModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SamplingModes_reserve(self, n) - - def capacity(self): - return _mscl.SamplingModes_capacity(self) - __swig_destroy__ = _mscl.delete_SamplingModes - -# Register SamplingModes in _mscl: -_mscl.SamplingModes_swigregister(SamplingModes) - -class DefaultModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DefaultModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DefaultModes___nonzero__(self) - - def __bool__(self): - return _mscl.DefaultModes___bool__(self) - - def __len__(self): - return _mscl.DefaultModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DefaultModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DefaultModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DefaultModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DefaultModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DefaultModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DefaultModes___setitem__(self, *args) - - def pop(self): - return _mscl.DefaultModes_pop(self) - - def append(self, x): - return _mscl.DefaultModes_append(self, x) - - def empty(self): - return _mscl.DefaultModes_empty(self) - - def size(self): - return _mscl.DefaultModes_size(self) - - def swap(self, v): - return _mscl.DefaultModes_swap(self, v) - - def begin(self): - return _mscl.DefaultModes_begin(self) - - def end(self): - return _mscl.DefaultModes_end(self) - - def rbegin(self): - return _mscl.DefaultModes_rbegin(self) - - def rend(self): - return _mscl.DefaultModes_rend(self) - - def clear(self): - return _mscl.DefaultModes_clear(self) - - def get_allocator(self): - return _mscl.DefaultModes_get_allocator(self) - - def pop_back(self): - return _mscl.DefaultModes_pop_back(self) - - def erase(self, *args): - return _mscl.DefaultModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DefaultModes_swiginit(self, _mscl.new_DefaultModes(*args)) - - def push_back(self, x): - return _mscl.DefaultModes_push_back(self, x) - - def front(self): - return _mscl.DefaultModes_front(self) - - def back(self): - return _mscl.DefaultModes_back(self) - - def assign(self, n, x): - return _mscl.DefaultModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DefaultModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DefaultModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DefaultModes_reserve(self, n) - - def capacity(self): - return _mscl.DefaultModes_capacity(self) - __swig_destroy__ = _mscl.delete_DefaultModes - -# Register DefaultModes in _mscl: -_mscl.DefaultModes_swigregister(DefaultModes) - -class TransmitPowers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransmitPowers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransmitPowers___nonzero__(self) - - def __bool__(self): - return _mscl.TransmitPowers___bool__(self) - - def __len__(self): - return _mscl.TransmitPowers___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransmitPowers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransmitPowers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransmitPowers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransmitPowers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransmitPowers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransmitPowers___setitem__(self, *args) - - def pop(self): - return _mscl.TransmitPowers_pop(self) - - def append(self, x): - return _mscl.TransmitPowers_append(self, x) - - def empty(self): - return _mscl.TransmitPowers_empty(self) - - def size(self): - return _mscl.TransmitPowers_size(self) - - def swap(self, v): - return _mscl.TransmitPowers_swap(self, v) - - def begin(self): - return _mscl.TransmitPowers_begin(self) - - def end(self): - return _mscl.TransmitPowers_end(self) - - def rbegin(self): - return _mscl.TransmitPowers_rbegin(self) - - def rend(self): - return _mscl.TransmitPowers_rend(self) - - def clear(self): - return _mscl.TransmitPowers_clear(self) - - def get_allocator(self): - return _mscl.TransmitPowers_get_allocator(self) - - def pop_back(self): - return _mscl.TransmitPowers_pop_back(self) - - def erase(self, *args): - return _mscl.TransmitPowers_erase(self, *args) - - def __init__(self, *args): - _mscl.TransmitPowers_swiginit(self, _mscl.new_TransmitPowers(*args)) - - def push_back(self, x): - return _mscl.TransmitPowers_push_back(self, x) - - def front(self): - return _mscl.TransmitPowers_front(self) - - def back(self): - return _mscl.TransmitPowers_back(self) - - def assign(self, n, x): - return _mscl.TransmitPowers_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransmitPowers_resize(self, *args) - - def insert(self, *args): - return _mscl.TransmitPowers_insert(self, *args) - - def reserve(self, n): - return _mscl.TransmitPowers_reserve(self, n) - - def capacity(self): - return _mscl.TransmitPowers_capacity(self) - __swig_destroy__ = _mscl.delete_TransmitPowers - -# Register TransmitPowers in _mscl: -_mscl.TransmitPowers_swigregister(TransmitPowers) - -class ChannelGroupSettings(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroupSettings_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroupSettings___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroupSettings___bool__(self) - - def __len__(self): - return _mscl.ChannelGroupSettings___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroupSettings___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroupSettings___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroupSettings___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroupSettings___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroupSettings___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroupSettings___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroupSettings_pop(self) - - def append(self, x): - return _mscl.ChannelGroupSettings_append(self, x) - - def empty(self): - return _mscl.ChannelGroupSettings_empty(self) - - def size(self): - return _mscl.ChannelGroupSettings_size(self) - - def swap(self, v): - return _mscl.ChannelGroupSettings_swap(self, v) - - def begin(self): - return _mscl.ChannelGroupSettings_begin(self) - - def end(self): - return _mscl.ChannelGroupSettings_end(self) - - def rbegin(self): - return _mscl.ChannelGroupSettings_rbegin(self) - - def rend(self): - return _mscl.ChannelGroupSettings_rend(self) - - def clear(self): - return _mscl.ChannelGroupSettings_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroupSettings_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroupSettings_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroupSettings_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroupSettings_swiginit(self, _mscl.new_ChannelGroupSettings(*args)) - - def push_back(self, x): - return _mscl.ChannelGroupSettings_push_back(self, x) - - def front(self): - return _mscl.ChannelGroupSettings_front(self) - - def back(self): - return _mscl.ChannelGroupSettings_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroupSettings_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroupSettings_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroupSettings_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroupSettings_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroupSettings_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroupSettings - -# Register ChannelGroupSettings in _mscl: -_mscl.ChannelGroupSettings_swigregister(ChannelGroupSettings) - -class FatigueModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.FatigueModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.FatigueModes___nonzero__(self) - - def __bool__(self): - return _mscl.FatigueModes___bool__(self) - - def __len__(self): - return _mscl.FatigueModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.FatigueModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.FatigueModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.FatigueModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.FatigueModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.FatigueModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.FatigueModes___setitem__(self, *args) - - def pop(self): - return _mscl.FatigueModes_pop(self) - - def append(self, x): - return _mscl.FatigueModes_append(self, x) - - def empty(self): - return _mscl.FatigueModes_empty(self) - - def size(self): - return _mscl.FatigueModes_size(self) - - def swap(self, v): - return _mscl.FatigueModes_swap(self, v) - - def begin(self): - return _mscl.FatigueModes_begin(self) - - def end(self): - return _mscl.FatigueModes_end(self) - - def rbegin(self): - return _mscl.FatigueModes_rbegin(self) - - def rend(self): - return _mscl.FatigueModes_rend(self) - - def clear(self): - return _mscl.FatigueModes_clear(self) - - def get_allocator(self): - return _mscl.FatigueModes_get_allocator(self) - - def pop_back(self): - return _mscl.FatigueModes_pop_back(self) - - def erase(self, *args): - return _mscl.FatigueModes_erase(self, *args) - - def __init__(self, *args): - _mscl.FatigueModes_swiginit(self, _mscl.new_FatigueModes(*args)) - - def push_back(self, x): - return _mscl.FatigueModes_push_back(self, x) - - def front(self): - return _mscl.FatigueModes_front(self) - - def back(self): - return _mscl.FatigueModes_back(self) - - def assign(self, n, x): - return _mscl.FatigueModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.FatigueModes_resize(self, *args) - - def insert(self, *args): - return _mscl.FatigueModes_insert(self, *args) - - def reserve(self, n): - return _mscl.FatigueModes_reserve(self, n) - - def capacity(self): - return _mscl.FatigueModes_capacity(self) - __swig_destroy__ = _mscl.delete_FatigueModes - -# Register FatigueModes in _mscl: -_mscl.FatigueModes_swigregister(FatigueModes) - -class Filters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Filters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Filters___nonzero__(self) - - def __bool__(self): - return _mscl.Filters___bool__(self) - - def __len__(self): - return _mscl.Filters___len__(self) - - def __getslice__(self, i, j): - return _mscl.Filters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Filters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Filters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Filters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Filters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Filters___setitem__(self, *args) - - def pop(self): - return _mscl.Filters_pop(self) - - def append(self, x): - return _mscl.Filters_append(self, x) - - def empty(self): - return _mscl.Filters_empty(self) - - def size(self): - return _mscl.Filters_size(self) - - def swap(self, v): - return _mscl.Filters_swap(self, v) - - def begin(self): - return _mscl.Filters_begin(self) - - def end(self): - return _mscl.Filters_end(self) - - def rbegin(self): - return _mscl.Filters_rbegin(self) - - def rend(self): - return _mscl.Filters_rend(self) - - def clear(self): - return _mscl.Filters_clear(self) - - def get_allocator(self): - return _mscl.Filters_get_allocator(self) - - def pop_back(self): - return _mscl.Filters_pop_back(self) - - def erase(self, *args): - return _mscl.Filters_erase(self, *args) - - def __init__(self, *args): - _mscl.Filters_swiginit(self, _mscl.new_Filters(*args)) - - def push_back(self, x): - return _mscl.Filters_push_back(self, x) - - def front(self): - return _mscl.Filters_front(self) - - def back(self): - return _mscl.Filters_back(self) - - def assign(self, n, x): - return _mscl.Filters_assign(self, n, x) - - def resize(self, *args): - return _mscl.Filters_resize(self, *args) - - def insert(self, *args): - return _mscl.Filters_insert(self, *args) - - def reserve(self, n): - return _mscl.Filters_reserve(self, n) - - def capacity(self): - return _mscl.Filters_capacity(self) - __swig_destroy__ = _mscl.delete_Filters - -# Register Filters in _mscl: -_mscl.Filters_swigregister(Filters) - -class HighPassFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HighPassFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HighPassFilters___nonzero__(self) - - def __bool__(self): - return _mscl.HighPassFilters___bool__(self) - - def __len__(self): - return _mscl.HighPassFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.HighPassFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HighPassFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HighPassFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HighPassFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HighPassFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HighPassFilters___setitem__(self, *args) - - def pop(self): - return _mscl.HighPassFilters_pop(self) - - def append(self, x): - return _mscl.HighPassFilters_append(self, x) - - def empty(self): - return _mscl.HighPassFilters_empty(self) - - def size(self): - return _mscl.HighPassFilters_size(self) - - def swap(self, v): - return _mscl.HighPassFilters_swap(self, v) - - def begin(self): - return _mscl.HighPassFilters_begin(self) - - def end(self): - return _mscl.HighPassFilters_end(self) - - def rbegin(self): - return _mscl.HighPassFilters_rbegin(self) - - def rend(self): - return _mscl.HighPassFilters_rend(self) - - def clear(self): - return _mscl.HighPassFilters_clear(self) - - def get_allocator(self): - return _mscl.HighPassFilters_get_allocator(self) - - def pop_back(self): - return _mscl.HighPassFilters_pop_back(self) - - def erase(self, *args): - return _mscl.HighPassFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.HighPassFilters_swiginit(self, _mscl.new_HighPassFilters(*args)) - - def push_back(self, x): - return _mscl.HighPassFilters_push_back(self, x) - - def front(self): - return _mscl.HighPassFilters_front(self) - - def back(self): - return _mscl.HighPassFilters_back(self) - - def assign(self, n, x): - return _mscl.HighPassFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.HighPassFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.HighPassFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.HighPassFilters_reserve(self, n) - - def capacity(self): - return _mscl.HighPassFilters_capacity(self) - __swig_destroy__ = _mscl.delete_HighPassFilters - -# Register HighPassFilters in _mscl: -_mscl.HighPassFilters_swigregister(HighPassFilters) - -class StorageLimitModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StorageLimitModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StorageLimitModes___nonzero__(self) - - def __bool__(self): - return _mscl.StorageLimitModes___bool__(self) - - def __len__(self): - return _mscl.StorageLimitModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.StorageLimitModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StorageLimitModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StorageLimitModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StorageLimitModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StorageLimitModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StorageLimitModes___setitem__(self, *args) - - def pop(self): - return _mscl.StorageLimitModes_pop(self) - - def append(self, x): - return _mscl.StorageLimitModes_append(self, x) - - def empty(self): - return _mscl.StorageLimitModes_empty(self) - - def size(self): - return _mscl.StorageLimitModes_size(self) - - def swap(self, v): - return _mscl.StorageLimitModes_swap(self, v) - - def begin(self): - return _mscl.StorageLimitModes_begin(self) - - def end(self): - return _mscl.StorageLimitModes_end(self) - - def rbegin(self): - return _mscl.StorageLimitModes_rbegin(self) - - def rend(self): - return _mscl.StorageLimitModes_rend(self) - - def clear(self): - return _mscl.StorageLimitModes_clear(self) - - def get_allocator(self): - return _mscl.StorageLimitModes_get_allocator(self) - - def pop_back(self): - return _mscl.StorageLimitModes_pop_back(self) - - def erase(self, *args): - return _mscl.StorageLimitModes_erase(self, *args) - - def __init__(self, *args): - _mscl.StorageLimitModes_swiginit(self, _mscl.new_StorageLimitModes(*args)) - - def push_back(self, x): - return _mscl.StorageLimitModes_push_back(self, x) - - def front(self): - return _mscl.StorageLimitModes_front(self) - - def back(self): - return _mscl.StorageLimitModes_back(self) - - def assign(self, n, x): - return _mscl.StorageLimitModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.StorageLimitModes_resize(self, *args) - - def insert(self, *args): - return _mscl.StorageLimitModes_insert(self, *args) - - def reserve(self, n): - return _mscl.StorageLimitModes_reserve(self, n) - - def capacity(self): - return _mscl.StorageLimitModes_capacity(self) - __swig_destroy__ = _mscl.delete_StorageLimitModes - -# Register StorageLimitModes in _mscl: -_mscl.StorageLimitModes_swigregister(StorageLimitModes) - -class InputRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.InputRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.InputRanges___nonzero__(self) - - def __bool__(self): - return _mscl.InputRanges___bool__(self) - - def __len__(self): - return _mscl.InputRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.InputRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.InputRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.InputRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.InputRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.InputRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.InputRanges___setitem__(self, *args) - - def pop(self): - return _mscl.InputRanges_pop(self) - - def append(self, x): - return _mscl.InputRanges_append(self, x) - - def empty(self): - return _mscl.InputRanges_empty(self) - - def size(self): - return _mscl.InputRanges_size(self) - - def swap(self, v): - return _mscl.InputRanges_swap(self, v) - - def begin(self): - return _mscl.InputRanges_begin(self) - - def end(self): - return _mscl.InputRanges_end(self) - - def rbegin(self): - return _mscl.InputRanges_rbegin(self) - - def rend(self): - return _mscl.InputRanges_rend(self) - - def clear(self): - return _mscl.InputRanges_clear(self) - - def get_allocator(self): - return _mscl.InputRanges_get_allocator(self) - - def pop_back(self): - return _mscl.InputRanges_pop_back(self) - - def erase(self, *args): - return _mscl.InputRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.InputRanges_swiginit(self, _mscl.new_InputRanges(*args)) - - def push_back(self, x): - return _mscl.InputRanges_push_back(self, x) - - def front(self): - return _mscl.InputRanges_front(self) - - def back(self): - return _mscl.InputRanges_back(self) - - def assign(self, n, x): - return _mscl.InputRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.InputRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.InputRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.InputRanges_reserve(self, n) - - def capacity(self): - return _mscl.InputRanges_capacity(self) - __swig_destroy__ = _mscl.delete_InputRanges - -# Register InputRanges in _mscl: -_mscl.InputRanges_swigregister(InputRanges) - -class DataModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataModes___nonzero__(self) - - def __bool__(self): - return _mscl.DataModes___bool__(self) - - def __len__(self): - return _mscl.DataModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataModes___setitem__(self, *args) - - def pop(self): - return _mscl.DataModes_pop(self) - - def append(self, x): - return _mscl.DataModes_append(self, x) - - def empty(self): - return _mscl.DataModes_empty(self) - - def size(self): - return _mscl.DataModes_size(self) - - def swap(self, v): - return _mscl.DataModes_swap(self, v) - - def begin(self): - return _mscl.DataModes_begin(self) - - def end(self): - return _mscl.DataModes_end(self) - - def rbegin(self): - return _mscl.DataModes_rbegin(self) - - def rend(self): - return _mscl.DataModes_rend(self) - - def clear(self): - return _mscl.DataModes_clear(self) - - def get_allocator(self): - return _mscl.DataModes_get_allocator(self) - - def pop_back(self): - return _mscl.DataModes_pop_back(self) - - def erase(self, *args): - return _mscl.DataModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DataModes_swiginit(self, _mscl.new_DataModes(*args)) - - def push_back(self, x): - return _mscl.DataModes_push_back(self, x) - - def front(self): - return _mscl.DataModes_front(self) - - def back(self): - return _mscl.DataModes_back(self) - - def assign(self, n, x): - return _mscl.DataModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DataModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DataModes_reserve(self, n) - - def capacity(self): - return _mscl.DataModes_capacity(self) - __swig_destroy__ = _mscl.delete_DataModes - -# Register DataModes in _mscl: -_mscl.DataModes_swigregister(DataModes) - -class CommProtocols(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommProtocols_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommProtocols___nonzero__(self) - - def __bool__(self): - return _mscl.CommProtocols___bool__(self) - - def __len__(self): - return _mscl.CommProtocols___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommProtocols___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommProtocols___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommProtocols___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommProtocols___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommProtocols___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommProtocols___setitem__(self, *args) - - def pop(self): - return _mscl.CommProtocols_pop(self) - - def append(self, x): - return _mscl.CommProtocols_append(self, x) - - def empty(self): - return _mscl.CommProtocols_empty(self) - - def size(self): - return _mscl.CommProtocols_size(self) - - def swap(self, v): - return _mscl.CommProtocols_swap(self, v) - - def begin(self): - return _mscl.CommProtocols_begin(self) - - def end(self): - return _mscl.CommProtocols_end(self) - - def rbegin(self): - return _mscl.CommProtocols_rbegin(self) - - def rend(self): - return _mscl.CommProtocols_rend(self) - - def clear(self): - return _mscl.CommProtocols_clear(self) - - def get_allocator(self): - return _mscl.CommProtocols_get_allocator(self) - - def pop_back(self): - return _mscl.CommProtocols_pop_back(self) - - def erase(self, *args): - return _mscl.CommProtocols_erase(self, *args) - - def __init__(self, *args): - _mscl.CommProtocols_swiginit(self, _mscl.new_CommProtocols(*args)) - - def push_back(self, x): - return _mscl.CommProtocols_push_back(self, x) - - def front(self): - return _mscl.CommProtocols_front(self) - - def back(self): - return _mscl.CommProtocols_back(self) - - def assign(self, n, x): - return _mscl.CommProtocols_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommProtocols_resize(self, *args) - - def insert(self, *args): - return _mscl.CommProtocols_insert(self, *args) - - def reserve(self, n): - return _mscl.CommProtocols_reserve(self, n) - - def capacity(self): - return _mscl.CommProtocols_capacity(self) - __swig_destroy__ = _mscl.delete_CommProtocols - -# Register CommProtocols in _mscl: -_mscl.CommProtocols_swigregister(CommProtocols) - -class Voltages(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Voltages_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Voltages___nonzero__(self) - - def __bool__(self): - return _mscl.Voltages___bool__(self) - - def __len__(self): - return _mscl.Voltages___len__(self) - - def __getslice__(self, i, j): - return _mscl.Voltages___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Voltages___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Voltages___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Voltages___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Voltages___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Voltages___setitem__(self, *args) - - def pop(self): - return _mscl.Voltages_pop(self) - - def append(self, x): - return _mscl.Voltages_append(self, x) - - def empty(self): - return _mscl.Voltages_empty(self) - - def size(self): - return _mscl.Voltages_size(self) - - def swap(self, v): - return _mscl.Voltages_swap(self, v) - - def begin(self): - return _mscl.Voltages_begin(self) - - def end(self): - return _mscl.Voltages_end(self) - - def rbegin(self): - return _mscl.Voltages_rbegin(self) - - def rend(self): - return _mscl.Voltages_rend(self) - - def clear(self): - return _mscl.Voltages_clear(self) - - def get_allocator(self): - return _mscl.Voltages_get_allocator(self) - - def pop_back(self): - return _mscl.Voltages_pop_back(self) - - def erase(self, *args): - return _mscl.Voltages_erase(self, *args) - - def __init__(self, *args): - _mscl.Voltages_swiginit(self, _mscl.new_Voltages(*args)) - - def push_back(self, x): - return _mscl.Voltages_push_back(self, x) - - def front(self): - return _mscl.Voltages_front(self) - - def back(self): - return _mscl.Voltages_back(self) - - def assign(self, n, x): - return _mscl.Voltages_assign(self, n, x) - - def resize(self, *args): - return _mscl.Voltages_resize(self, *args) - - def insert(self, *args): - return _mscl.Voltages_insert(self, *args) - - def reserve(self, n): - return _mscl.Voltages_reserve(self, n) - - def capacity(self): - return _mscl.Voltages_capacity(self) - __swig_destroy__ = _mscl.delete_Voltages - -# Register Voltages in _mscl: -_mscl.Voltages_swigregister(Voltages) - -class SensorOutputModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorOutputModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorOutputModes___nonzero__(self) - - def __bool__(self): - return _mscl.SensorOutputModes___bool__(self) - - def __len__(self): - return _mscl.SensorOutputModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorOutputModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorOutputModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorOutputModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorOutputModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorOutputModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorOutputModes___setitem__(self, *args) - - def pop(self): - return _mscl.SensorOutputModes_pop(self) - - def append(self, x): - return _mscl.SensorOutputModes_append(self, x) - - def empty(self): - return _mscl.SensorOutputModes_empty(self) - - def size(self): - return _mscl.SensorOutputModes_size(self) - - def swap(self, v): - return _mscl.SensorOutputModes_swap(self, v) - - def begin(self): - return _mscl.SensorOutputModes_begin(self) - - def end(self): - return _mscl.SensorOutputModes_end(self) - - def rbegin(self): - return _mscl.SensorOutputModes_rbegin(self) - - def rend(self): - return _mscl.SensorOutputModes_rend(self) - - def clear(self): - return _mscl.SensorOutputModes_clear(self) - - def get_allocator(self): - return _mscl.SensorOutputModes_get_allocator(self) - - def pop_back(self): - return _mscl.SensorOutputModes_pop_back(self) - - def erase(self, *args): - return _mscl.SensorOutputModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorOutputModes_swiginit(self, _mscl.new_SensorOutputModes(*args)) - - def push_back(self, x): - return _mscl.SensorOutputModes_push_back(self, x) - - def front(self): - return _mscl.SensorOutputModes_front(self) - - def back(self): - return _mscl.SensorOutputModes_back(self) - - def assign(self, n, x): - return _mscl.SensorOutputModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorOutputModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorOutputModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorOutputModes_reserve(self, n) - - def capacity(self): - return _mscl.SensorOutputModes_capacity(self) - __swig_destroy__ = _mscl.delete_SensorOutputModes - -# Register SensorOutputModes in _mscl: -_mscl.SensorOutputModes_swigregister(SensorOutputModes) - -class CfcFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CfcFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CfcFilters___nonzero__(self) - - def __bool__(self): - return _mscl.CfcFilters___bool__(self) - - def __len__(self): - return _mscl.CfcFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.CfcFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CfcFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CfcFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CfcFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CfcFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CfcFilters___setitem__(self, *args) - - def pop(self): - return _mscl.CfcFilters_pop(self) - - def append(self, x): - return _mscl.CfcFilters_append(self, x) - - def empty(self): - return _mscl.CfcFilters_empty(self) - - def size(self): - return _mscl.CfcFilters_size(self) - - def swap(self, v): - return _mscl.CfcFilters_swap(self, v) - - def begin(self): - return _mscl.CfcFilters_begin(self) - - def end(self): - return _mscl.CfcFilters_end(self) - - def rbegin(self): - return _mscl.CfcFilters_rbegin(self) - - def rend(self): - return _mscl.CfcFilters_rend(self) - - def clear(self): - return _mscl.CfcFilters_clear(self) - - def get_allocator(self): - return _mscl.CfcFilters_get_allocator(self) - - def pop_back(self): - return _mscl.CfcFilters_pop_back(self) - - def erase(self, *args): - return _mscl.CfcFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.CfcFilters_swiginit(self, _mscl.new_CfcFilters(*args)) - - def push_back(self, x): - return _mscl.CfcFilters_push_back(self, x) - - def front(self): - return _mscl.CfcFilters_front(self) - - def back(self): - return _mscl.CfcFilters_back(self) - - def assign(self, n, x): - return _mscl.CfcFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.CfcFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.CfcFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.CfcFilters_reserve(self, n) - - def capacity(self): - return _mscl.CfcFilters_capacity(self) - __swig_destroy__ = _mscl.delete_CfcFilters - -# Register CfcFilters in _mscl: -_mscl.CfcFilters_swigregister(CfcFilters) - -class TransducerTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransducerTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransducerTypes___nonzero__(self) - - def __bool__(self): - return _mscl.TransducerTypes___bool__(self) - - def __len__(self): - return _mscl.TransducerTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransducerTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransducerTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransducerTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransducerTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransducerTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransducerTypes___setitem__(self, *args) - - def pop(self): - return _mscl.TransducerTypes_pop(self) - - def append(self, x): - return _mscl.TransducerTypes_append(self, x) - - def empty(self): - return _mscl.TransducerTypes_empty(self) - - def size(self): - return _mscl.TransducerTypes_size(self) - - def swap(self, v): - return _mscl.TransducerTypes_swap(self, v) - - def begin(self): - return _mscl.TransducerTypes_begin(self) - - def end(self): - return _mscl.TransducerTypes_end(self) - - def rbegin(self): - return _mscl.TransducerTypes_rbegin(self) - - def rend(self): - return _mscl.TransducerTypes_rend(self) - - def clear(self): - return _mscl.TransducerTypes_clear(self) - - def get_allocator(self): - return _mscl.TransducerTypes_get_allocator(self) - - def pop_back(self): - return _mscl.TransducerTypes_pop_back(self) - - def erase(self, *args): - return _mscl.TransducerTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.TransducerTypes_swiginit(self, _mscl.new_TransducerTypes(*args)) - - def push_back(self, x): - return _mscl.TransducerTypes_push_back(self, x) - - def front(self): - return _mscl.TransducerTypes_front(self) - - def back(self): - return _mscl.TransducerTypes_back(self) - - def assign(self, n, x): - return _mscl.TransducerTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransducerTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.TransducerTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.TransducerTypes_reserve(self, n) - - def capacity(self): - return _mscl.TransducerTypes_capacity(self) - __swig_destroy__ = _mscl.delete_TransducerTypes - -# Register TransducerTypes in _mscl: -_mscl.TransducerTypes_swigregister(TransducerTypes) - -class EepromMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EepromMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EepromMap___nonzero__(self) - - def __bool__(self): - return _mscl.EepromMap___bool__(self) - - def __len__(self): - return _mscl.EepromMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.EepromMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.EepromMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.EepromMap_has_key(self, key) - - def keys(self): - return _mscl.EepromMap_keys(self) - - def values(self): - return _mscl.EepromMap_values(self) - - def items(self): - return _mscl.EepromMap_items(self) - - def __contains__(self, key): - return _mscl.EepromMap___contains__(self, key) - - def key_iterator(self): - return _mscl.EepromMap_key_iterator(self) - - def value_iterator(self): - return _mscl.EepromMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.EepromMap___setitem__(self, *args) - - def asdict(self): - return _mscl.EepromMap_asdict(self) - - def __init__(self, *args): - _mscl.EepromMap_swiginit(self, _mscl.new_EepromMap(*args)) - - def empty(self): - return _mscl.EepromMap_empty(self) - - def size(self): - return _mscl.EepromMap_size(self) - - def swap(self, v): - return _mscl.EepromMap_swap(self, v) - - def begin(self): - return _mscl.EepromMap_begin(self) - - def end(self): - return _mscl.EepromMap_end(self) - - def rbegin(self): - return _mscl.EepromMap_rbegin(self) - - def rend(self): - return _mscl.EepromMap_rend(self) - - def clear(self): - return _mscl.EepromMap_clear(self) - - def get_allocator(self): - return _mscl.EepromMap_get_allocator(self) - - def count(self, x): - return _mscl.EepromMap_count(self, x) - - def erase(self, *args): - return _mscl.EepromMap_erase(self, *args) - - def find(self, x): - return _mscl.EepromMap_find(self, x) - - def lower_bound(self, x): - return _mscl.EepromMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.EepromMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_EepromMap - -# Register EepromMap in _mscl: -_mscl.EepromMap_swigregister(EepromMap) - -class DerivedChannelMasks(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DerivedChannelMasks_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DerivedChannelMasks___nonzero__(self) - - def __bool__(self): - return _mscl.DerivedChannelMasks___bool__(self) - - def __len__(self): - return _mscl.DerivedChannelMasks___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DerivedChannelMasks___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DerivedChannelMasks___delitem__(self, key) - - def has_key(self, key): - return _mscl.DerivedChannelMasks_has_key(self, key) - - def keys(self): - return _mscl.DerivedChannelMasks_keys(self) - - def values(self): - return _mscl.DerivedChannelMasks_values(self) - - def items(self): - return _mscl.DerivedChannelMasks_items(self) - - def __contains__(self, key): - return _mscl.DerivedChannelMasks___contains__(self, key) - - def key_iterator(self): - return _mscl.DerivedChannelMasks_key_iterator(self) - - def value_iterator(self): - return _mscl.DerivedChannelMasks_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DerivedChannelMasks___setitem__(self, *args) - - def asdict(self): - return _mscl.DerivedChannelMasks_asdict(self) - - def __init__(self, *args): - _mscl.DerivedChannelMasks_swiginit(self, _mscl.new_DerivedChannelMasks(*args)) - - def empty(self): - return _mscl.DerivedChannelMasks_empty(self) - - def size(self): - return _mscl.DerivedChannelMasks_size(self) - - def swap(self, v): - return _mscl.DerivedChannelMasks_swap(self, v) - - def begin(self): - return _mscl.DerivedChannelMasks_begin(self) - - def end(self): - return _mscl.DerivedChannelMasks_end(self) - - def rbegin(self): - return _mscl.DerivedChannelMasks_rbegin(self) - - def rend(self): - return _mscl.DerivedChannelMasks_rend(self) - - def clear(self): - return _mscl.DerivedChannelMasks_clear(self) - - def get_allocator(self): - return _mscl.DerivedChannelMasks_get_allocator(self) - - def count(self, x): - return _mscl.DerivedChannelMasks_count(self, x) - - def erase(self, *args): - return _mscl.DerivedChannelMasks_erase(self, *args) - - def find(self, x): - return _mscl.DerivedChannelMasks_find(self, x) - - def lower_bound(self, x): - return _mscl.DerivedChannelMasks_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DerivedChannelMasks_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DerivedChannelMasks - -# Register DerivedChannelMasks in _mscl: -_mscl.DerivedChannelMasks_swigregister(DerivedChannelMasks) - -class DeviceStatusMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusMap_keys(self) - - def values(self): - return _mscl.DeviceStatusMap_values(self) - - def items(self): - return _mscl.DeviceStatusMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusMap_swiginit(self, _mscl.new_DeviceStatusMap(*args)) - - def empty(self): - return _mscl.DeviceStatusMap_empty(self) - - def size(self): - return _mscl.DeviceStatusMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusMap_begin(self) - - def end(self): - return _mscl.DeviceStatusMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusMap - -# Register DeviceStatusMap in _mscl: -_mscl.DeviceStatusMap_swigregister(DeviceStatusMap) - -class DeviceStatusValueMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusValueMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusValueMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusValueMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusValueMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusValueMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusValueMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusValueMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusValueMap_keys(self) - - def values(self): - return _mscl.DeviceStatusValueMap_values(self) - - def items(self): - return _mscl.DeviceStatusValueMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusValueMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusValueMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusValueMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusValueMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusValueMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusValueMap_swiginit(self, _mscl.new_DeviceStatusValueMap(*args)) - - def empty(self): - return _mscl.DeviceStatusValueMap_empty(self) - - def size(self): - return _mscl.DeviceStatusValueMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusValueMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusValueMap_begin(self) - - def end(self): - return _mscl.DeviceStatusValueMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusValueMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusValueMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusValueMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusValueMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusValueMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusValueMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusValueMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusValueMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusValueMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusValueMap - -# Register DeviceStatusValueMap in _mscl: -_mscl.DeviceStatusValueMap_swigregister(DeviceStatusValueMap) - -class SampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.SampleRates___bool__(self) - - def __len__(self): - return _mscl.SampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.SampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.SampleRates_pop(self) - - def append(self, x): - return _mscl.SampleRates_append(self, x) - - def empty(self): - return _mscl.SampleRates_empty(self) - - def size(self): - return _mscl.SampleRates_size(self) - - def swap(self, v): - return _mscl.SampleRates_swap(self, v) - - def begin(self): - return _mscl.SampleRates_begin(self) - - def end(self): - return _mscl.SampleRates_end(self) - - def rbegin(self): - return _mscl.SampleRates_rbegin(self) - - def rend(self): - return _mscl.SampleRates_rend(self) - - def clear(self): - return _mscl.SampleRates_clear(self) - - def get_allocator(self): - return _mscl.SampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.SampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.SampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.SampleRates_swiginit(self, _mscl.new_SampleRates(*args)) - - def push_back(self, x): - return _mscl.SampleRates_push_back(self, x) - - def front(self): - return _mscl.SampleRates_front(self) - - def back(self): - return _mscl.SampleRates_back(self) - - def assign(self, n, x): - return _mscl.SampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.SampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.SampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.SampleRates_reserve(self, n) - - def capacity(self): - return _mscl.SampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_SampleRates - -# Register SampleRates in _mscl: -_mscl.SampleRates_swigregister(SampleRates) - -class ConfigIssues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConfigIssues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConfigIssues___nonzero__(self) - - def __bool__(self): - return _mscl.ConfigIssues___bool__(self) - - def __len__(self): - return _mscl.ConfigIssues___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConfigIssues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConfigIssues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConfigIssues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConfigIssues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConfigIssues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConfigIssues___setitem__(self, *args) - - def pop(self): - return _mscl.ConfigIssues_pop(self) - - def append(self, x): - return _mscl.ConfigIssues_append(self, x) - - def empty(self): - return _mscl.ConfigIssues_empty(self) - - def size(self): - return _mscl.ConfigIssues_size(self) - - def swap(self, v): - return _mscl.ConfigIssues_swap(self, v) - - def begin(self): - return _mscl.ConfigIssues_begin(self) - - def end(self): - return _mscl.ConfigIssues_end(self) - - def rbegin(self): - return _mscl.ConfigIssues_rbegin(self) - - def rend(self): - return _mscl.ConfigIssues_rend(self) - - def clear(self): - return _mscl.ConfigIssues_clear(self) - - def get_allocator(self): - return _mscl.ConfigIssues_get_allocator(self) - - def pop_back(self): - return _mscl.ConfigIssues_pop_back(self) - - def erase(self, *args): - return _mscl.ConfigIssues_erase(self, *args) - - def __init__(self, *args): - _mscl.ConfigIssues_swiginit(self, _mscl.new_ConfigIssues(*args)) - - def push_back(self, x): - return _mscl.ConfigIssues_push_back(self, x) - - def front(self): - return _mscl.ConfigIssues_front(self) - - def back(self): - return _mscl.ConfigIssues_back(self) - - def assign(self, n, x): - return _mscl.ConfigIssues_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConfigIssues_resize(self, *args) - - def insert(self, *args): - return _mscl.ConfigIssues_insert(self, *args) - - def reserve(self, n): - return _mscl.ConfigIssues_reserve(self, n) - - def capacity(self): - return _mscl.ConfigIssues_capacity(self) - __swig_destroy__ = _mscl.delete_ConfigIssues - -# Register ConfigIssues in _mscl: -_mscl.ConfigIssues_swigregister(ConfigIssues) - -class MipChannelFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelFields_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelFields___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelFields___bool__(self) - - def __len__(self): - return _mscl.MipChannelFields___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelFields___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelFields___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelFields___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelFields___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelFields___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelFields___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelFields_pop(self) - - def append(self, x): - return _mscl.MipChannelFields_append(self, x) - - def empty(self): - return _mscl.MipChannelFields_empty(self) - - def size(self): - return _mscl.MipChannelFields_size(self) - - def swap(self, v): - return _mscl.MipChannelFields_swap(self, v) - - def begin(self): - return _mscl.MipChannelFields_begin(self) - - def end(self): - return _mscl.MipChannelFields_end(self) - - def rbegin(self): - return _mscl.MipChannelFields_rbegin(self) - - def rend(self): - return _mscl.MipChannelFields_rend(self) - - def clear(self): - return _mscl.MipChannelFields_clear(self) - - def get_allocator(self): - return _mscl.MipChannelFields_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelFields_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelFields_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelFields_swiginit(self, _mscl.new_MipChannelFields(*args)) - - def push_back(self, x): - return _mscl.MipChannelFields_push_back(self, x) - - def front(self): - return _mscl.MipChannelFields_front(self) - - def back(self): - return _mscl.MipChannelFields_back(self) - - def assign(self, n, x): - return _mscl.MipChannelFields_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelFields_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelFields_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelFields_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelFields_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelFields - -# Register MipChannelFields in _mscl: -_mscl.MipChannelFields_swigregister(MipChannelFields) - -class MipCommands(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommands_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommands___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommands___bool__(self) - - def __len__(self): - return _mscl.MipCommands___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommands___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommands___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommands___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommands___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommands___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommands___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommands_pop(self) - - def append(self, x): - return _mscl.MipCommands_append(self, x) - - def empty(self): - return _mscl.MipCommands_empty(self) - - def size(self): - return _mscl.MipCommands_size(self) - - def swap(self, v): - return _mscl.MipCommands_swap(self, v) - - def begin(self): - return _mscl.MipCommands_begin(self) - - def end(self): - return _mscl.MipCommands_end(self) - - def rbegin(self): - return _mscl.MipCommands_rbegin(self) - - def rend(self): - return _mscl.MipCommands_rend(self) - - def clear(self): - return _mscl.MipCommands_clear(self) - - def get_allocator(self): - return _mscl.MipCommands_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommands_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommands_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommands_swiginit(self, _mscl.new_MipCommands(*args)) - - def push_back(self, x): - return _mscl.MipCommands_push_back(self, x) - - def front(self): - return _mscl.MipCommands_front(self) - - def back(self): - return _mscl.MipCommands_back(self) - - def assign(self, n, x): - return _mscl.MipCommands_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommands_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommands_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommands_reserve(self, n) - - def capacity(self): - return _mscl.MipCommands_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommands - -# Register MipCommands in _mscl: -_mscl.MipCommands_swigregister(MipCommands) - -class MipDataClasses(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataClasses_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataClasses___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataClasses___bool__(self) - - def __len__(self): - return _mscl.MipDataClasses___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataClasses___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataClasses___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataClasses___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataClasses___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataClasses___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataClasses___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataClasses_pop(self) - - def append(self, x): - return _mscl.MipDataClasses_append(self, x) - - def empty(self): - return _mscl.MipDataClasses_empty(self) - - def size(self): - return _mscl.MipDataClasses_size(self) - - def swap(self, v): - return _mscl.MipDataClasses_swap(self, v) - - def begin(self): - return _mscl.MipDataClasses_begin(self) - - def end(self): - return _mscl.MipDataClasses_end(self) - - def rbegin(self): - return _mscl.MipDataClasses_rbegin(self) - - def rend(self): - return _mscl.MipDataClasses_rend(self) - - def clear(self): - return _mscl.MipDataClasses_clear(self) - - def get_allocator(self): - return _mscl.MipDataClasses_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataClasses_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataClasses_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataClasses_swiginit(self, _mscl.new_MipDataClasses(*args)) - - def push_back(self, x): - return _mscl.MipDataClasses_push_back(self, x) - - def front(self): - return _mscl.MipDataClasses_front(self) - - def back(self): - return _mscl.MipDataClasses_back(self) - - def assign(self, n, x): - return _mscl.MipDataClasses_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataClasses_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataClasses_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataClasses_reserve(self, n) - - def capacity(self): - return _mscl.MipDataClasses_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataClasses - -# Register MipDataClasses in _mscl: -_mscl.MipDataClasses_swigregister(MipDataClasses) - -class MipChannelIdentifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelIdentifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelIdentifiers___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelIdentifiers___bool__(self) - - def __len__(self): - return _mscl.MipChannelIdentifiers___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelIdentifiers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelIdentifiers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelIdentifiers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelIdentifiers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelIdentifiers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelIdentifiers___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelIdentifiers_pop(self) - - def append(self, x): - return _mscl.MipChannelIdentifiers_append(self, x) - - def empty(self): - return _mscl.MipChannelIdentifiers_empty(self) - - def size(self): - return _mscl.MipChannelIdentifiers_size(self) - - def swap(self, v): - return _mscl.MipChannelIdentifiers_swap(self, v) - - def begin(self): - return _mscl.MipChannelIdentifiers_begin(self) - - def end(self): - return _mscl.MipChannelIdentifiers_end(self) - - def rbegin(self): - return _mscl.MipChannelIdentifiers_rbegin(self) - - def rend(self): - return _mscl.MipChannelIdentifiers_rend(self) - - def clear(self): - return _mscl.MipChannelIdentifiers_clear(self) - - def get_allocator(self): - return _mscl.MipChannelIdentifiers_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelIdentifiers_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelIdentifiers_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelIdentifiers_swiginit(self, _mscl.new_MipChannelIdentifiers(*args)) - - def push_back(self, x): - return _mscl.MipChannelIdentifiers_push_back(self, x) - - def front(self): - return _mscl.MipChannelIdentifiers_front(self) - - def back(self): - return _mscl.MipChannelIdentifiers_back(self) - - def assign(self, n, x): - return _mscl.MipChannelIdentifiers_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelIdentifiers_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelIdentifiers_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelIdentifiers_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelIdentifiers_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelIdentifiers - -# Register MipChannelIdentifiers in _mscl: -_mscl.MipChannelIdentifiers_swigregister(MipChannelIdentifiers) - -class MipCommandSet(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandSet_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandSet___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandSet___bool__(self) - - def __len__(self): - return _mscl.MipCommandSet___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandSet___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandSet___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandSet___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandSet___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandSet___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandSet___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandSet_pop(self) - - def append(self, x): - return _mscl.MipCommandSet_append(self, x) - - def empty(self): - return _mscl.MipCommandSet_empty(self) - - def size(self): - return _mscl.MipCommandSet_size(self) - - def swap(self, v): - return _mscl.MipCommandSet_swap(self, v) - - def begin(self): - return _mscl.MipCommandSet_begin(self) - - def end(self): - return _mscl.MipCommandSet_end(self) - - def rbegin(self): - return _mscl.MipCommandSet_rbegin(self) - - def rend(self): - return _mscl.MipCommandSet_rend(self) - - def clear(self): - return _mscl.MipCommandSet_clear(self) - - def get_allocator(self): - return _mscl.MipCommandSet_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandSet_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandSet_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandSet_swiginit(self, _mscl.new_MipCommandSet(*args)) - - def push_back(self, x): - return _mscl.MipCommandSet_push_back(self, x) - - def front(self): - return _mscl.MipCommandSet_front(self) - - def back(self): - return _mscl.MipCommandSet_back(self) - - def assign(self, n, x): - return _mscl.MipCommandSet_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandSet_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandSet_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandSet_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandSet_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandSet - -# Register MipCommandSet in _mscl: -_mscl.MipCommandSet_swigregister(MipCommandSet) - -class MipFieldValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipFieldValues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipFieldValues___nonzero__(self) - - def __bool__(self): - return _mscl.MipFieldValues___bool__(self) - - def __len__(self): - return _mscl.MipFieldValues___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipFieldValues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipFieldValues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipFieldValues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipFieldValues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipFieldValues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipFieldValues___setitem__(self, *args) - - def pop(self): - return _mscl.MipFieldValues_pop(self) - - def append(self, x): - return _mscl.MipFieldValues_append(self, x) - - def empty(self): - return _mscl.MipFieldValues_empty(self) - - def size(self): - return _mscl.MipFieldValues_size(self) - - def swap(self, v): - return _mscl.MipFieldValues_swap(self, v) - - def begin(self): - return _mscl.MipFieldValues_begin(self) - - def end(self): - return _mscl.MipFieldValues_end(self) - - def rbegin(self): - return _mscl.MipFieldValues_rbegin(self) - - def rend(self): - return _mscl.MipFieldValues_rend(self) - - def clear(self): - return _mscl.MipFieldValues_clear(self) - - def get_allocator(self): - return _mscl.MipFieldValues_get_allocator(self) - - def pop_back(self): - return _mscl.MipFieldValues_pop_back(self) - - def erase(self, *args): - return _mscl.MipFieldValues_erase(self, *args) - - def __init__(self, *args): - _mscl.MipFieldValues_swiginit(self, _mscl.new_MipFieldValues(*args)) - - def push_back(self, x): - return _mscl.MipFieldValues_push_back(self, x) - - def front(self): - return _mscl.MipFieldValues_front(self) - - def back(self): - return _mscl.MipFieldValues_back(self) - - def assign(self, n, x): - return _mscl.MipFieldValues_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipFieldValues_resize(self, *args) - - def insert(self, *args): - return _mscl.MipFieldValues_insert(self, *args) - - def reserve(self, n): - return _mscl.MipFieldValues_reserve(self, n) - - def capacity(self): - return _mscl.MipFieldValues_capacity(self) - __swig_destroy__ = _mscl.delete_MipFieldValues - -# Register MipFieldValues in _mscl: -_mscl.MipFieldValues_swigregister(MipFieldValues) - -class MipCommandParamPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipCommandParamPair_swiginit(self, _mscl.new_MipCommandParamPair(*args)) - first = property(_mscl.MipCommandParamPair_first_get, _mscl.MipCommandParamPair_first_set) - second = property(_mscl.MipCommandParamPair_second_get, _mscl.MipCommandParamPair_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_MipCommandParamPair - -# Register MipCommandParamPair in _mscl: -_mscl.MipCommandParamPair_swigregister(MipCommandParamPair) - -class MipCommandParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandParameters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandParameters___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandParameters___bool__(self) - - def __len__(self): - return _mscl.MipCommandParameters___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandParameters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandParameters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandParameters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandParameters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandParameters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandParameters___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandParameters_pop(self) - - def append(self, x): - return _mscl.MipCommandParameters_append(self, x) - - def empty(self): - return _mscl.MipCommandParameters_empty(self) - - def size(self): - return _mscl.MipCommandParameters_size(self) - - def swap(self, v): - return _mscl.MipCommandParameters_swap(self, v) - - def begin(self): - return _mscl.MipCommandParameters_begin(self) - - def end(self): - return _mscl.MipCommandParameters_end(self) - - def rbegin(self): - return _mscl.MipCommandParameters_rbegin(self) - - def rend(self): - return _mscl.MipCommandParameters_rend(self) - - def clear(self): - return _mscl.MipCommandParameters_clear(self) - - def get_allocator(self): - return _mscl.MipCommandParameters_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandParameters_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandParameters_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandParameters_swiginit(self, _mscl.new_MipCommandParameters(*args)) - - def push_back(self, x): - return _mscl.MipCommandParameters_push_back(self, x) - - def front(self): - return _mscl.MipCommandParameters_front(self) - - def back(self): - return _mscl.MipCommandParameters_back(self) - - def assign(self, n, x): - return _mscl.MipCommandParameters_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandParameters_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandParameters_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandParameters_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandParameters_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandParameters - -# Register MipCommandParameters in _mscl: -_mscl.MipCommandParameters_swigregister(MipCommandParameters) - -class ChannelIndex(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ChannelIndex_swiginit(self, _mscl.new_ChannelIndex(*args)) - first = property(_mscl.ChannelIndex_first_get, _mscl.ChannelIndex_first_set) - second = property(_mscl.ChannelIndex_second_get, _mscl.ChannelIndex_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_ChannelIndex - -# Register ChannelIndex in _mscl: -_mscl.ChannelIndex_swigregister(ChannelIndex) - -class ChannelIndices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelIndices_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelIndices___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelIndices___bool__(self) - - def __len__(self): - return _mscl.ChannelIndices___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelIndices___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelIndices___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelIndices___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelIndices___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelIndices___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelIndices___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelIndices_pop(self) - - def append(self, x): - return _mscl.ChannelIndices_append(self, x) - - def empty(self): - return _mscl.ChannelIndices_empty(self) - - def size(self): - return _mscl.ChannelIndices_size(self) - - def swap(self, v): - return _mscl.ChannelIndices_swap(self, v) - - def begin(self): - return _mscl.ChannelIndices_begin(self) - - def end(self): - return _mscl.ChannelIndices_end(self) - - def rbegin(self): - return _mscl.ChannelIndices_rbegin(self) - - def rend(self): - return _mscl.ChannelIndices_rend(self) - - def clear(self): - return _mscl.ChannelIndices_clear(self) - - def get_allocator(self): - return _mscl.ChannelIndices_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelIndices_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelIndices_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelIndices_swiginit(self, _mscl.new_ChannelIndices(*args)) - - def push_back(self, x): - return _mscl.ChannelIndices_push_back(self, x) - - def front(self): - return _mscl.ChannelIndices_front(self) - - def back(self): - return _mscl.ChannelIndices_back(self) - - def assign(self, n, x): - return _mscl.ChannelIndices_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelIndices_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelIndices_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelIndices_reserve(self, n) - - def capacity(self): - return _mscl.ChannelIndices_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelIndices - -# Register ChannelIndices in _mscl: -_mscl.ChannelIndices_swigregister(ChannelIndices) - -class ChannelFieldQualifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelFieldQualifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelFieldQualifiers___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelFieldQualifiers___bool__(self) - - def __len__(self): - return _mscl.ChannelFieldQualifiers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelFieldQualifiers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelFieldQualifiers___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelFieldQualifiers_has_key(self, key) - - def keys(self): - return _mscl.ChannelFieldQualifiers_keys(self) - - def values(self): - return _mscl.ChannelFieldQualifiers_values(self) - - def items(self): - return _mscl.ChannelFieldQualifiers_items(self) - - def __contains__(self, key): - return _mscl.ChannelFieldQualifiers___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelFieldQualifiers_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelFieldQualifiers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelFieldQualifiers___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelFieldQualifiers_asdict(self) - - def __init__(self, *args): - _mscl.ChannelFieldQualifiers_swiginit(self, _mscl.new_ChannelFieldQualifiers(*args)) - - def empty(self): - return _mscl.ChannelFieldQualifiers_empty(self) - - def size(self): - return _mscl.ChannelFieldQualifiers_size(self) - - def swap(self, v): - return _mscl.ChannelFieldQualifiers_swap(self, v) - - def begin(self): - return _mscl.ChannelFieldQualifiers_begin(self) - - def end(self): - return _mscl.ChannelFieldQualifiers_end(self) - - def rbegin(self): - return _mscl.ChannelFieldQualifiers_rbegin(self) - - def rend(self): - return _mscl.ChannelFieldQualifiers_rend(self) - - def clear(self): - return _mscl.ChannelFieldQualifiers_clear(self) - - def get_allocator(self): - return _mscl.ChannelFieldQualifiers_get_allocator(self) - - def count(self, x): - return _mscl.ChannelFieldQualifiers_count(self, x) - - def erase(self, *args): - return _mscl.ChannelFieldQualifiers_erase(self, *args) - - def find(self, x): - return _mscl.ChannelFieldQualifiers_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelFieldQualifiers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelFieldQualifiers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelFieldQualifiers - -# Register ChannelFieldQualifiers in _mscl: -_mscl.ChannelFieldQualifiers_swigregister(ChannelFieldQualifiers) - -class GnssReceivers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssReceivers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssReceivers___nonzero__(self) - - def __bool__(self): - return _mscl.GnssReceivers___bool__(self) - - def __len__(self): - return _mscl.GnssReceivers___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssReceivers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssReceivers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssReceivers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssReceivers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssReceivers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssReceivers___setitem__(self, *args) - - def pop(self): - return _mscl.GnssReceivers_pop(self) - - def append(self, x): - return _mscl.GnssReceivers_append(self, x) - - def empty(self): - return _mscl.GnssReceivers_empty(self) - - def size(self): - return _mscl.GnssReceivers_size(self) - - def swap(self, v): - return _mscl.GnssReceivers_swap(self, v) - - def begin(self): - return _mscl.GnssReceivers_begin(self) - - def end(self): - return _mscl.GnssReceivers_end(self) - - def rbegin(self): - return _mscl.GnssReceivers_rbegin(self) - - def rend(self): - return _mscl.GnssReceivers_rend(self) - - def clear(self): - return _mscl.GnssReceivers_clear(self) - - def get_allocator(self): - return _mscl.GnssReceivers_get_allocator(self) - - def pop_back(self): - return _mscl.GnssReceivers_pop_back(self) - - def erase(self, *args): - return _mscl.GnssReceivers_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssReceivers_swiginit(self, _mscl.new_GnssReceivers(*args)) - - def push_back(self, x): - return _mscl.GnssReceivers_push_back(self, x) - - def front(self): - return _mscl.GnssReceivers_front(self) - - def back(self): - return _mscl.GnssReceivers_back(self) - - def assign(self, n, x): - return _mscl.GnssReceivers_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssReceivers_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssReceivers_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssReceivers_reserve(self, n) - - def capacity(self): - return _mscl.GnssReceivers_capacity(self) - __swig_destroy__ = _mscl.delete_GnssReceivers - -# Register GnssReceivers in _mscl: -_mscl.GnssReceivers_swigregister(GnssReceivers) - -class SensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRanges___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRanges___bool__(self) - - def __len__(self): - return _mscl.SensorRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorRanges___setitem__(self, *args) - - def pop(self): - return _mscl.SensorRanges_pop(self) - - def append(self, x): - return _mscl.SensorRanges_append(self, x) - - def empty(self): - return _mscl.SensorRanges_empty(self) - - def size(self): - return _mscl.SensorRanges_size(self) - - def swap(self, v): - return _mscl.SensorRanges_swap(self, v) - - def begin(self): - return _mscl.SensorRanges_begin(self) - - def end(self): - return _mscl.SensorRanges_end(self) - - def rbegin(self): - return _mscl.SensorRanges_rbegin(self) - - def rend(self): - return _mscl.SensorRanges_rend(self) - - def clear(self): - return _mscl.SensorRanges_clear(self) - - def get_allocator(self): - return _mscl.SensorRanges_get_allocator(self) - - def pop_back(self): - return _mscl.SensorRanges_pop_back(self) - - def erase(self, *args): - return _mscl.SensorRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorRanges_swiginit(self, _mscl.new_SensorRanges(*args)) - - def push_back(self, x): - return _mscl.SensorRanges_push_back(self, x) - - def front(self): - return _mscl.SensorRanges_front(self) - - def back(self): - return _mscl.SensorRanges_back(self) - - def assign(self, n, x): - return _mscl.SensorRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorRanges_reserve(self, n) - - def capacity(self): - return _mscl.SensorRanges_capacity(self) - __swig_destroy__ = _mscl.delete_SensorRanges - -# Register SensorRanges in _mscl: -_mscl.SensorRanges_swigregister(SensorRanges) - -class SensorRangeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRangeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRangeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRangeOptions___bool__(self) - - def __len__(self): - return _mscl.SensorRangeOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SensorRangeOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SensorRangeOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.SensorRangeOptions_has_key(self, key) - - def keys(self): - return _mscl.SensorRangeOptions_keys(self) - - def values(self): - return _mscl.SensorRangeOptions_values(self) - - def items(self): - return _mscl.SensorRangeOptions_items(self) - - def __contains__(self, key): - return _mscl.SensorRangeOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.SensorRangeOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.SensorRangeOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SensorRangeOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.SensorRangeOptions_asdict(self) - - def __init__(self, *args): - _mscl.SensorRangeOptions_swiginit(self, _mscl.new_SensorRangeOptions(*args)) - - def empty(self): - return _mscl.SensorRangeOptions_empty(self) - - def size(self): - return _mscl.SensorRangeOptions_size(self) - - def swap(self, v): - return _mscl.SensorRangeOptions_swap(self, v) - - def begin(self): - return _mscl.SensorRangeOptions_begin(self) - - def end(self): - return _mscl.SensorRangeOptions_end(self) - - def rbegin(self): - return _mscl.SensorRangeOptions_rbegin(self) - - def rend(self): - return _mscl.SensorRangeOptions_rend(self) - - def clear(self): - return _mscl.SensorRangeOptions_clear(self) - - def get_allocator(self): - return _mscl.SensorRangeOptions_get_allocator(self) - - def count(self, x): - return _mscl.SensorRangeOptions_count(self, x) - - def erase(self, *args): - return _mscl.SensorRangeOptions_erase(self, *args) - - def find(self, x): - return _mscl.SensorRangeOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.SensorRangeOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SensorRangeOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SensorRangeOptions - -# Register SensorRangeOptions in _mscl: -_mscl.SensorRangeOptions_swigregister(SensorRangeOptions) - -class CommPortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommPortInfo_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommPortInfo___nonzero__(self) - - def __bool__(self): - return _mscl.CommPortInfo___bool__(self) - - def __len__(self): - return _mscl.CommPortInfo___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommPortInfo___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommPortInfo___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommPortInfo___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommPortInfo___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommPortInfo___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommPortInfo___setitem__(self, *args) - - def pop(self): - return _mscl.CommPortInfo_pop(self) - - def append(self, x): - return _mscl.CommPortInfo_append(self, x) - - def empty(self): - return _mscl.CommPortInfo_empty(self) - - def size(self): - return _mscl.CommPortInfo_size(self) - - def swap(self, v): - return _mscl.CommPortInfo_swap(self, v) - - def begin(self): - return _mscl.CommPortInfo_begin(self) - - def end(self): - return _mscl.CommPortInfo_end(self) - - def rbegin(self): - return _mscl.CommPortInfo_rbegin(self) - - def rend(self): - return _mscl.CommPortInfo_rend(self) - - def clear(self): - return _mscl.CommPortInfo_clear(self) - - def get_allocator(self): - return _mscl.CommPortInfo_get_allocator(self) - - def pop_back(self): - return _mscl.CommPortInfo_pop_back(self) - - def erase(self, *args): - return _mscl.CommPortInfo_erase(self, *args) - - def __init__(self, *args): - _mscl.CommPortInfo_swiginit(self, _mscl.new_CommPortInfo(*args)) - - def push_back(self, x): - return _mscl.CommPortInfo_push_back(self, x) - - def front(self): - return _mscl.CommPortInfo_front(self) - - def back(self): - return _mscl.CommPortInfo_back(self) - - def assign(self, n, x): - return _mscl.CommPortInfo_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommPortInfo_resize(self, *args) - - def insert(self, *args): - return _mscl.CommPortInfo_insert(self, *args) - - def reserve(self, n): - return _mscl.CommPortInfo_reserve(self, n) - - def capacity(self): - return _mscl.CommPortInfo_capacity(self) - __swig_destroy__ = _mscl.delete_CommPortInfo - -# Register CommPortInfo in _mscl: -_mscl.CommPortInfo_swigregister(CommPortInfo) - -class EventTriggerStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTriggerStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTriggerStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventTriggerStatus___bool__(self) - - def __len__(self): - return _mscl.EventTriggerStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTriggerStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTriggerStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTriggerStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTriggerStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTriggerStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTriggerStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventTriggerStatus_pop(self) - - def append(self, x): - return _mscl.EventTriggerStatus_append(self, x) - - def empty(self): - return _mscl.EventTriggerStatus_empty(self) - - def size(self): - return _mscl.EventTriggerStatus_size(self) - - def swap(self, v): - return _mscl.EventTriggerStatus_swap(self, v) - - def begin(self): - return _mscl.EventTriggerStatus_begin(self) - - def end(self): - return _mscl.EventTriggerStatus_end(self) - - def rbegin(self): - return _mscl.EventTriggerStatus_rbegin(self) - - def rend(self): - return _mscl.EventTriggerStatus_rend(self) - - def clear(self): - return _mscl.EventTriggerStatus_clear(self) - - def get_allocator(self): - return _mscl.EventTriggerStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventTriggerStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventTriggerStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTriggerStatus_swiginit(self, _mscl.new_EventTriggerStatus(*args)) - - def push_back(self, x): - return _mscl.EventTriggerStatus_push_back(self, x) - - def front(self): - return _mscl.EventTriggerStatus_front(self) - - def back(self): - return _mscl.EventTriggerStatus_back(self) - - def assign(self, n, x): - return _mscl.EventTriggerStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTriggerStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTriggerStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTriggerStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventTriggerStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventTriggerStatus - -# Register EventTriggerStatus in _mscl: -_mscl.EventTriggerStatus_swigregister(EventTriggerStatus) - -class EventActionStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventActionStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventActionStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventActionStatus___bool__(self) - - def __len__(self): - return _mscl.EventActionStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventActionStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventActionStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventActionStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventActionStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventActionStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventActionStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventActionStatus_pop(self) - - def append(self, x): - return _mscl.EventActionStatus_append(self, x) - - def empty(self): - return _mscl.EventActionStatus_empty(self) - - def size(self): - return _mscl.EventActionStatus_size(self) - - def swap(self, v): - return _mscl.EventActionStatus_swap(self, v) - - def begin(self): - return _mscl.EventActionStatus_begin(self) - - def end(self): - return _mscl.EventActionStatus_end(self) - - def rbegin(self): - return _mscl.EventActionStatus_rbegin(self) - - def rend(self): - return _mscl.EventActionStatus_rend(self) - - def clear(self): - return _mscl.EventActionStatus_clear(self) - - def get_allocator(self): - return _mscl.EventActionStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventActionStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventActionStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventActionStatus_swiginit(self, _mscl.new_EventActionStatus(*args)) - - def push_back(self, x): - return _mscl.EventActionStatus_push_back(self, x) - - def front(self): - return _mscl.EventActionStatus_front(self) - - def back(self): - return _mscl.EventActionStatus_back(self) - - def assign(self, n, x): - return _mscl.EventActionStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventActionStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventActionStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventActionStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventActionStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventActionStatus - -# Register EventActionStatus in _mscl: -_mscl.EventActionStatus_swigregister(EventActionStatus) - -class ChannelGroups(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroups_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroups___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroups___bool__(self) - - def __len__(self): - return _mscl.ChannelGroups___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroups___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroups___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroups___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroups___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroups___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroups___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroups_pop(self) - - def append(self, x): - return _mscl.ChannelGroups_append(self, x) - - def empty(self): - return _mscl.ChannelGroups_empty(self) - - def size(self): - return _mscl.ChannelGroups_size(self) - - def swap(self, v): - return _mscl.ChannelGroups_swap(self, v) - - def begin(self): - return _mscl.ChannelGroups_begin(self) - - def end(self): - return _mscl.ChannelGroups_end(self) - - def rbegin(self): - return _mscl.ChannelGroups_rbegin(self) - - def rend(self): - return _mscl.ChannelGroups_rend(self) - - def clear(self): - return _mscl.ChannelGroups_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroups_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroups_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroups_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroups_swiginit(self, _mscl.new_ChannelGroups(*args)) - - def push_back(self, x): - return _mscl.ChannelGroups_push_back(self, x) - - def front(self): - return _mscl.ChannelGroups_front(self) - - def back(self): - return _mscl.ChannelGroups_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroups_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroups_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroups_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroups_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroups_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroups - -# Register ChannelGroups in _mscl: -_mscl.ChannelGroups_swigregister(ChannelGroups) - -class WirelessChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessChannels___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessChannels___bool__(self) - - def __len__(self): - return _mscl.WirelessChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessChannels___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessChannels_pop(self) - - def append(self, x): - return _mscl.WirelessChannels_append(self, x) - - def empty(self): - return _mscl.WirelessChannels_empty(self) - - def size(self): - return _mscl.WirelessChannels_size(self) - - def swap(self, v): - return _mscl.WirelessChannels_swap(self, v) - - def begin(self): - return _mscl.WirelessChannels_begin(self) - - def end(self): - return _mscl.WirelessChannels_end(self) - - def rbegin(self): - return _mscl.WirelessChannels_rbegin(self) - - def rend(self): - return _mscl.WirelessChannels_rend(self) - - def clear(self): - return _mscl.WirelessChannels_clear(self) - - def get_allocator(self): - return _mscl.WirelessChannels_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessChannels_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessChannels_swiginit(self, _mscl.new_WirelessChannels(*args)) - - def push_back(self, x): - return _mscl.WirelessChannels_push_back(self, x) - - def front(self): - return _mscl.WirelessChannels_front(self) - - def back(self): - return _mscl.WirelessChannels_back(self) - - def assign(self, n, x): - return _mscl.WirelessChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessChannels_reserve(self, n) - - def capacity(self): - return _mscl.WirelessChannels_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessChannels - -# Register WirelessChannels in _mscl: -_mscl.WirelessChannels_swigregister(WirelessChannels) - -class DamageAngles(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DamageAngles_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DamageAngles___nonzero__(self) - - def __bool__(self): - return _mscl.DamageAngles___bool__(self) - - def __len__(self): - return _mscl.DamageAngles___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DamageAngles___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DamageAngles___delitem__(self, key) - - def has_key(self, key): - return _mscl.DamageAngles_has_key(self, key) - - def keys(self): - return _mscl.DamageAngles_keys(self) - - def values(self): - return _mscl.DamageAngles_values(self) - - def items(self): - return _mscl.DamageAngles_items(self) - - def __contains__(self, key): - return _mscl.DamageAngles___contains__(self, key) - - def key_iterator(self): - return _mscl.DamageAngles_key_iterator(self) - - def value_iterator(self): - return _mscl.DamageAngles_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DamageAngles___setitem__(self, *args) - - def asdict(self): - return _mscl.DamageAngles_asdict(self) - - def __init__(self, *args): - _mscl.DamageAngles_swiginit(self, _mscl.new_DamageAngles(*args)) - - def empty(self): - return _mscl.DamageAngles_empty(self) - - def size(self): - return _mscl.DamageAngles_size(self) - - def swap(self, v): - return _mscl.DamageAngles_swap(self, v) - - def begin(self): - return _mscl.DamageAngles_begin(self) - - def end(self): - return _mscl.DamageAngles_end(self) - - def rbegin(self): - return _mscl.DamageAngles_rbegin(self) - - def rend(self): - return _mscl.DamageAngles_rend(self) - - def clear(self): - return _mscl.DamageAngles_clear(self) - - def get_allocator(self): - return _mscl.DamageAngles_get_allocator(self) - - def count(self, x): - return _mscl.DamageAngles_count(self, x) - - def erase(self, *args): - return _mscl.DamageAngles_erase(self, *args) - - def find(self, x): - return _mscl.DamageAngles_find(self, x) - - def lower_bound(self, x): - return _mscl.DamageAngles_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DamageAngles_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DamageAngles - -# Register DamageAngles in _mscl: -_mscl.DamageAngles_swigregister(DamageAngles) - -class SnCurveSegments(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SnCurveSegments_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SnCurveSegments___nonzero__(self) - - def __bool__(self): - return _mscl.SnCurveSegments___bool__(self) - - def __len__(self): - return _mscl.SnCurveSegments___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SnCurveSegments___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SnCurveSegments___delitem__(self, key) - - def has_key(self, key): - return _mscl.SnCurveSegments_has_key(self, key) - - def keys(self): - return _mscl.SnCurveSegments_keys(self) - - def values(self): - return _mscl.SnCurveSegments_values(self) - - def items(self): - return _mscl.SnCurveSegments_items(self) - - def __contains__(self, key): - return _mscl.SnCurveSegments___contains__(self, key) - - def key_iterator(self): - return _mscl.SnCurveSegments_key_iterator(self) - - def value_iterator(self): - return _mscl.SnCurveSegments_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SnCurveSegments___setitem__(self, *args) - - def asdict(self): - return _mscl.SnCurveSegments_asdict(self) - - def __init__(self, *args): - _mscl.SnCurveSegments_swiginit(self, _mscl.new_SnCurveSegments(*args)) - - def empty(self): - return _mscl.SnCurveSegments_empty(self) - - def size(self): - return _mscl.SnCurveSegments_size(self) - - def swap(self, v): - return _mscl.SnCurveSegments_swap(self, v) - - def begin(self): - return _mscl.SnCurveSegments_begin(self) - - def end(self): - return _mscl.SnCurveSegments_end(self) - - def rbegin(self): - return _mscl.SnCurveSegments_rbegin(self) - - def rend(self): - return _mscl.SnCurveSegments_rend(self) - - def clear(self): - return _mscl.SnCurveSegments_clear(self) - - def get_allocator(self): - return _mscl.SnCurveSegments_get_allocator(self) - - def count(self, x): - return _mscl.SnCurveSegments_count(self, x) - - def erase(self, *args): - return _mscl.SnCurveSegments_erase(self, *args) - - def find(self, x): - return _mscl.SnCurveSegments_find(self, x) - - def lower_bound(self, x): - return _mscl.SnCurveSegments_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SnCurveSegments_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SnCurveSegments - -# Register SnCurveSegments in _mscl: -_mscl.SnCurveSegments_swigregister(SnCurveSegments) - -class RfSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RfSweep_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RfSweep___nonzero__(self) - - def __bool__(self): - return _mscl.RfSweep___bool__(self) - - def __len__(self): - return _mscl.RfSweep___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.RfSweep___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.RfSweep___delitem__(self, key) - - def has_key(self, key): - return _mscl.RfSweep_has_key(self, key) - - def keys(self): - return _mscl.RfSweep_keys(self) - - def values(self): - return _mscl.RfSweep_values(self) - - def items(self): - return _mscl.RfSweep_items(self) - - def __contains__(self, key): - return _mscl.RfSweep___contains__(self, key) - - def key_iterator(self): - return _mscl.RfSweep_key_iterator(self) - - def value_iterator(self): - return _mscl.RfSweep_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.RfSweep___setitem__(self, *args) - - def asdict(self): - return _mscl.RfSweep_asdict(self) - - def __init__(self, *args): - _mscl.RfSweep_swiginit(self, _mscl.new_RfSweep(*args)) - - def empty(self): - return _mscl.RfSweep_empty(self) - - def size(self): - return _mscl.RfSweep_size(self) - - def swap(self, v): - return _mscl.RfSweep_swap(self, v) - - def begin(self): - return _mscl.RfSweep_begin(self) - - def end(self): - return _mscl.RfSweep_end(self) - - def rbegin(self): - return _mscl.RfSweep_rbegin(self) - - def rend(self): - return _mscl.RfSweep_rend(self) - - def clear(self): - return _mscl.RfSweep_clear(self) - - def get_allocator(self): - return _mscl.RfSweep_get_allocator(self) - - def count(self, x): - return _mscl.RfSweep_count(self, x) - - def erase(self, *args): - return _mscl.RfSweep_erase(self, *args) - - def find(self, x): - return _mscl.RfSweep_find(self, x) - - def lower_bound(self, x): - return _mscl.RfSweep_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.RfSweep_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_RfSweep - -# Register RfSweep in _mscl: -_mscl.RfSweep_swigregister(RfSweep) - -class Triggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Triggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Triggers___nonzero__(self) - - def __bool__(self): - return _mscl.Triggers___bool__(self) - - def __len__(self): - return _mscl.Triggers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.Triggers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.Triggers___delitem__(self, key) - - def has_key(self, key): - return _mscl.Triggers_has_key(self, key) - - def keys(self): - return _mscl.Triggers_keys(self) - - def values(self): - return _mscl.Triggers_values(self) - - def items(self): - return _mscl.Triggers_items(self) - - def __contains__(self, key): - return _mscl.Triggers___contains__(self, key) - - def key_iterator(self): - return _mscl.Triggers_key_iterator(self) - - def value_iterator(self): - return _mscl.Triggers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.Triggers___setitem__(self, *args) - - def asdict(self): - return _mscl.Triggers_asdict(self) - - def __init__(self, *args): - _mscl.Triggers_swiginit(self, _mscl.new_Triggers(*args)) - - def empty(self): - return _mscl.Triggers_empty(self) - - def size(self): - return _mscl.Triggers_size(self) - - def swap(self, v): - return _mscl.Triggers_swap(self, v) - - def begin(self): - return _mscl.Triggers_begin(self) - - def end(self): - return _mscl.Triggers_end(self) - - def rbegin(self): - return _mscl.Triggers_rbegin(self) - - def rend(self): - return _mscl.Triggers_rend(self) - - def clear(self): - return _mscl.Triggers_clear(self) - - def get_allocator(self): - return _mscl.Triggers_get_allocator(self) - - def count(self, x): - return _mscl.Triggers_count(self, x) - - def erase(self, *args): - return _mscl.Triggers_erase(self, *args) - - def find(self, x): - return _mscl.Triggers_find(self, x) - - def lower_bound(self, x): - return _mscl.Triggers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.Triggers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_Triggers - -# Register Triggers in _mscl: -_mscl.Triggers_swigregister(Triggers) - -class ChannelCalMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelCalMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelCalMap___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelCalMap___bool__(self) - - def __len__(self): - return _mscl.ChannelCalMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelCalMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelCalMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelCalMap_has_key(self, key) - - def keys(self): - return _mscl.ChannelCalMap_keys(self) - - def values(self): - return _mscl.ChannelCalMap_values(self) - - def items(self): - return _mscl.ChannelCalMap_items(self) - - def __contains__(self, key): - return _mscl.ChannelCalMap___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelCalMap_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelCalMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelCalMap___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelCalMap_asdict(self) - - def __init__(self, *args): - _mscl.ChannelCalMap_swiginit(self, _mscl.new_ChannelCalMap(*args)) - - def empty(self): - return _mscl.ChannelCalMap_empty(self) - - def size(self): - return _mscl.ChannelCalMap_size(self) - - def swap(self, v): - return _mscl.ChannelCalMap_swap(self, v) - - def begin(self): - return _mscl.ChannelCalMap_begin(self) - - def end(self): - return _mscl.ChannelCalMap_end(self) - - def rbegin(self): - return _mscl.ChannelCalMap_rbegin(self) - - def rend(self): - return _mscl.ChannelCalMap_rend(self) - - def clear(self): - return _mscl.ChannelCalMap_clear(self) - - def get_allocator(self): - return _mscl.ChannelCalMap_get_allocator(self) - - def count(self, x): - return _mscl.ChannelCalMap_count(self, x) - - def erase(self, *args): - return _mscl.ChannelCalMap_erase(self, *args) - - def find(self, x): - return _mscl.ChannelCalMap_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelCalMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelCalMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelCalMap - -# Register ChannelCalMap in _mscl: -_mscl.ChannelCalMap_swigregister(ChannelCalMap) - -class WirelessPollData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessPollData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessPollData___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessPollData___bool__(self) - - def __len__(self): - return _mscl.WirelessPollData___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.WirelessPollData___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.WirelessPollData___delitem__(self, key) - - def has_key(self, key): - return _mscl.WirelessPollData_has_key(self, key) - - def keys(self): - return _mscl.WirelessPollData_keys(self) - - def values(self): - return _mscl.WirelessPollData_values(self) - - def items(self): - return _mscl.WirelessPollData_items(self) - - def __contains__(self, key): - return _mscl.WirelessPollData___contains__(self, key) - - def key_iterator(self): - return _mscl.WirelessPollData_key_iterator(self) - - def value_iterator(self): - return _mscl.WirelessPollData_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.WirelessPollData___setitem__(self, *args) - - def asdict(self): - return _mscl.WirelessPollData_asdict(self) - - def __init__(self, *args): - _mscl.WirelessPollData_swiginit(self, _mscl.new_WirelessPollData(*args)) - - def empty(self): - return _mscl.WirelessPollData_empty(self) - - def size(self): - return _mscl.WirelessPollData_size(self) - - def swap(self, v): - return _mscl.WirelessPollData_swap(self, v) - - def begin(self): - return _mscl.WirelessPollData_begin(self) - - def end(self): - return _mscl.WirelessPollData_end(self) - - def rbegin(self): - return _mscl.WirelessPollData_rbegin(self) - - def rend(self): - return _mscl.WirelessPollData_rend(self) - - def clear(self): - return _mscl.WirelessPollData_clear(self) - - def get_allocator(self): - return _mscl.WirelessPollData_get_allocator(self) - - def count(self, x): - return _mscl.WirelessPollData_count(self, x) - - def erase(self, *args): - return _mscl.WirelessPollData_erase(self, *args) - - def find(self, x): - return _mscl.WirelessPollData_find(self, x) - - def lower_bound(self, x): - return _mscl.WirelessPollData_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.WirelessPollData_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_WirelessPollData - -# Register WirelessPollData in _mscl: -_mscl.WirelessPollData_swigregister(WirelessPollData) - -class ConnectionDebugDataVec(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConnectionDebugDataVec_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConnectionDebugDataVec___nonzero__(self) - - def __bool__(self): - return _mscl.ConnectionDebugDataVec___bool__(self) - - def __len__(self): - return _mscl.ConnectionDebugDataVec___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConnectionDebugDataVec___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConnectionDebugDataVec___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConnectionDebugDataVec___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConnectionDebugDataVec___setitem__(self, *args) - - def pop(self): - return _mscl.ConnectionDebugDataVec_pop(self) - - def append(self, x): - return _mscl.ConnectionDebugDataVec_append(self, x) - - def empty(self): - return _mscl.ConnectionDebugDataVec_empty(self) - - def size(self): - return _mscl.ConnectionDebugDataVec_size(self) - - def swap(self, v): - return _mscl.ConnectionDebugDataVec_swap(self, v) - - def begin(self): - return _mscl.ConnectionDebugDataVec_begin(self) - - def end(self): - return _mscl.ConnectionDebugDataVec_end(self) - - def rbegin(self): - return _mscl.ConnectionDebugDataVec_rbegin(self) - - def rend(self): - return _mscl.ConnectionDebugDataVec_rend(self) - - def clear(self): - return _mscl.ConnectionDebugDataVec_clear(self) - - def get_allocator(self): - return _mscl.ConnectionDebugDataVec_get_allocator(self) - - def pop_back(self): - return _mscl.ConnectionDebugDataVec_pop_back(self) - - def erase(self, *args): - return _mscl.ConnectionDebugDataVec_erase(self, *args) - - def __init__(self, *args): - _mscl.ConnectionDebugDataVec_swiginit(self, _mscl.new_ConnectionDebugDataVec(*args)) - - def push_back(self, x): - return _mscl.ConnectionDebugDataVec_push_back(self, x) - - def front(self): - return _mscl.ConnectionDebugDataVec_front(self) - - def back(self): - return _mscl.ConnectionDebugDataVec_back(self) - - def assign(self, n, x): - return _mscl.ConnectionDebugDataVec_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConnectionDebugDataVec_resize(self, *args) - - def insert(self, *args): - return _mscl.ConnectionDebugDataVec_insert(self, *args) - - def reserve(self, n): - return _mscl.ConnectionDebugDataVec_reserve(self, n) - - def capacity(self): - return _mscl.ConnectionDebugDataVec_capacity(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugDataVec - -# Register ConnectionDebugDataVec in _mscl: -_mscl.ConnectionDebugDataVec_swigregister(ConnectionDebugDataVec) - -class SatellitePRNs(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SatellitePRNs_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SatellitePRNs___nonzero__(self) - - def __bool__(self): - return _mscl.SatellitePRNs___bool__(self) - - def __len__(self): - return _mscl.SatellitePRNs___len__(self) - - def __getslice__(self, i, j): - return _mscl.SatellitePRNs___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SatellitePRNs___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SatellitePRNs___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SatellitePRNs___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SatellitePRNs___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SatellitePRNs___setitem__(self, *args) - - def pop(self): - return _mscl.SatellitePRNs_pop(self) - - def append(self, x): - return _mscl.SatellitePRNs_append(self, x) - - def empty(self): - return _mscl.SatellitePRNs_empty(self) - - def size(self): - return _mscl.SatellitePRNs_size(self) - - def swap(self, v): - return _mscl.SatellitePRNs_swap(self, v) - - def begin(self): - return _mscl.SatellitePRNs_begin(self) - - def end(self): - return _mscl.SatellitePRNs_end(self) - - def rbegin(self): - return _mscl.SatellitePRNs_rbegin(self) - - def rend(self): - return _mscl.SatellitePRNs_rend(self) - - def clear(self): - return _mscl.SatellitePRNs_clear(self) - - def get_allocator(self): - return _mscl.SatellitePRNs_get_allocator(self) - - def pop_back(self): - return _mscl.SatellitePRNs_pop_back(self) - - def erase(self, *args): - return _mscl.SatellitePRNs_erase(self, *args) - - def __init__(self, *args): - _mscl.SatellitePRNs_swiginit(self, _mscl.new_SatellitePRNs(*args)) - - def push_back(self, x): - return _mscl.SatellitePRNs_push_back(self, x) - - def front(self): - return _mscl.SatellitePRNs_front(self) - - def back(self): - return _mscl.SatellitePRNs_back(self) - - def assign(self, n, x): - return _mscl.SatellitePRNs_assign(self, n, x) - - def resize(self, *args): - return _mscl.SatellitePRNs_resize(self, *args) - - def insert(self, *args): - return _mscl.SatellitePRNs_insert(self, *args) - - def reserve(self, n): - return _mscl.SatellitePRNs_reserve(self, n) - - def capacity(self): - return _mscl.SatellitePRNs_capacity(self) - __swig_destroy__ = _mscl.delete_SatellitePRNs - -# Register SatellitePRNs in _mscl: -_mscl.SatellitePRNs_swigregister(SatellitePRNs) - -class Constellations(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Constellations_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Constellations___nonzero__(self) - - def __bool__(self): - return _mscl.Constellations___bool__(self) - - def __len__(self): - return _mscl.Constellations___len__(self) - - def __getslice__(self, i, j): - return _mscl.Constellations___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Constellations___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Constellations___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Constellations___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Constellations___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Constellations___setitem__(self, *args) - - def pop(self): - return _mscl.Constellations_pop(self) - - def append(self, x): - return _mscl.Constellations_append(self, x) - - def empty(self): - return _mscl.Constellations_empty(self) - - def size(self): - return _mscl.Constellations_size(self) - - def swap(self, v): - return _mscl.Constellations_swap(self, v) - - def begin(self): - return _mscl.Constellations_begin(self) - - def end(self): - return _mscl.Constellations_end(self) - - def rbegin(self): - return _mscl.Constellations_rbegin(self) - - def rend(self): - return _mscl.Constellations_rend(self) - - def clear(self): - return _mscl.Constellations_clear(self) - - def get_allocator(self): - return _mscl.Constellations_get_allocator(self) - - def pop_back(self): - return _mscl.Constellations_pop_back(self) - - def erase(self, *args): - return _mscl.Constellations_erase(self, *args) - - def __init__(self, *args): - _mscl.Constellations_swiginit(self, _mscl.new_Constellations(*args)) - - def push_back(self, x): - return _mscl.Constellations_push_back(self, x) - - def front(self): - return _mscl.Constellations_front(self) - - def back(self): - return _mscl.Constellations_back(self) - - def assign(self, n, x): - return _mscl.Constellations_assign(self, n, x) - - def resize(self, *args): - return _mscl.Constellations_resize(self, *args) - - def insert(self, *args): - return _mscl.Constellations_insert(self, *args) - - def reserve(self, n): - return _mscl.Constellations_reserve(self, n) - - def capacity(self): - return _mscl.Constellations_capacity(self) - __swig_destroy__ = _mscl.delete_Constellations - -# Register Constellations in _mscl: -_mscl.Constellations_swigregister(Constellations) - -class HeadingUpdateOptionsList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HeadingUpdateOptionsList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HeadingUpdateOptionsList___nonzero__(self) - - def __bool__(self): - return _mscl.HeadingUpdateOptionsList___bool__(self) - - def __len__(self): - return _mscl.HeadingUpdateOptionsList___len__(self) - - def __getslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HeadingUpdateOptionsList___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___setitem__(self, *args) - - def pop(self): - return _mscl.HeadingUpdateOptionsList_pop(self) - - def append(self, x): - return _mscl.HeadingUpdateOptionsList_append(self, x) - - def empty(self): - return _mscl.HeadingUpdateOptionsList_empty(self) - - def size(self): - return _mscl.HeadingUpdateOptionsList_size(self) - - def swap(self, v): - return _mscl.HeadingUpdateOptionsList_swap(self, v) - - def begin(self): - return _mscl.HeadingUpdateOptionsList_begin(self) - - def end(self): - return _mscl.HeadingUpdateOptionsList_end(self) - - def rbegin(self): - return _mscl.HeadingUpdateOptionsList_rbegin(self) - - def rend(self): - return _mscl.HeadingUpdateOptionsList_rend(self) - - def clear(self): - return _mscl.HeadingUpdateOptionsList_clear(self) - - def get_allocator(self): - return _mscl.HeadingUpdateOptionsList_get_allocator(self) - - def pop_back(self): - return _mscl.HeadingUpdateOptionsList_pop_back(self) - - def erase(self, *args): - return _mscl.HeadingUpdateOptionsList_erase(self, *args) - - def __init__(self, *args): - _mscl.HeadingUpdateOptionsList_swiginit(self, _mscl.new_HeadingUpdateOptionsList(*args)) - - def push_back(self, x): - return _mscl.HeadingUpdateOptionsList_push_back(self, x) - - def front(self): - return _mscl.HeadingUpdateOptionsList_front(self) - - def back(self): - return _mscl.HeadingUpdateOptionsList_back(self) - - def assign(self, n, x): - return _mscl.HeadingUpdateOptionsList_assign(self, n, x) - - def resize(self, *args): - return _mscl.HeadingUpdateOptionsList_resize(self, *args) - - def insert(self, *args): - return _mscl.HeadingUpdateOptionsList_insert(self, *args) - - def reserve(self, n): - return _mscl.HeadingUpdateOptionsList_reserve(self, n) - - def capacity(self): - return _mscl.HeadingUpdateOptionsList_capacity(self) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptionsList - -# Register HeadingUpdateOptionsList in _mscl: -_mscl.HeadingUpdateOptionsList_swigregister(HeadingUpdateOptionsList) - -class AdaptiveMeasurementModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveMeasurementModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveMeasurementModes___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveMeasurementModes___bool__(self) - - def __len__(self): - return _mscl.AdaptiveMeasurementModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveMeasurementModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveMeasurementModes_pop(self) - - def append(self, x): - return _mscl.AdaptiveMeasurementModes_append(self, x) - - def empty(self): - return _mscl.AdaptiveMeasurementModes_empty(self) - - def size(self): - return _mscl.AdaptiveMeasurementModes_size(self) - - def swap(self, v): - return _mscl.AdaptiveMeasurementModes_swap(self, v) - - def begin(self): - return _mscl.AdaptiveMeasurementModes_begin(self) - - def end(self): - return _mscl.AdaptiveMeasurementModes_end(self) - - def rbegin(self): - return _mscl.AdaptiveMeasurementModes_rbegin(self) - - def rend(self): - return _mscl.AdaptiveMeasurementModes_rend(self) - - def clear(self): - return _mscl.AdaptiveMeasurementModes_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveMeasurementModes_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveMeasurementModes_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveMeasurementModes_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveMeasurementModes_swiginit(self, _mscl.new_AdaptiveMeasurementModes(*args)) - - def push_back(self, x): - return _mscl.AdaptiveMeasurementModes_push_back(self, x) - - def front(self): - return _mscl.AdaptiveMeasurementModes_front(self) - - def back(self): - return _mscl.AdaptiveMeasurementModes_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveMeasurementModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveMeasurementModes_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveMeasurementModes_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveMeasurementModes_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveMeasurementModes_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementModes - -# Register AdaptiveMeasurementModes in _mscl: -_mscl.AdaptiveMeasurementModes_swigregister(AdaptiveMeasurementModes) - -class GeometricVectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeometricVectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeometricVectors___nonzero__(self) - - def __bool__(self): - return _mscl.GeometricVectors___bool__(self) - - def __len__(self): - return _mscl.GeometricVectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeometricVectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeometricVectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeometricVectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeometricVectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeometricVectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeometricVectors___setitem__(self, *args) - - def pop(self): - return _mscl.GeometricVectors_pop(self) - - def append(self, x): - return _mscl.GeometricVectors_append(self, x) - - def empty(self): - return _mscl.GeometricVectors_empty(self) - - def size(self): - return _mscl.GeometricVectors_size(self) - - def swap(self, v): - return _mscl.GeometricVectors_swap(self, v) - - def begin(self): - return _mscl.GeometricVectors_begin(self) - - def end(self): - return _mscl.GeometricVectors_end(self) - - def rbegin(self): - return _mscl.GeometricVectors_rbegin(self) - - def rend(self): - return _mscl.GeometricVectors_rend(self) - - def clear(self): - return _mscl.GeometricVectors_clear(self) - - def get_allocator(self): - return _mscl.GeometricVectors_get_allocator(self) - - def pop_back(self): - return _mscl.GeometricVectors_pop_back(self) - - def erase(self, *args): - return _mscl.GeometricVectors_erase(self, *args) - - def __init__(self, *args): - _mscl.GeometricVectors_swiginit(self, _mscl.new_GeometricVectors(*args)) - - def push_back(self, x): - return _mscl.GeometricVectors_push_back(self, x) - - def front(self): - return _mscl.GeometricVectors_front(self) - - def back(self): - return _mscl.GeometricVectors_back(self) - - def assign(self, n, x): - return _mscl.GeometricVectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeometricVectors_resize(self, *args) - - def insert(self, *args): - return _mscl.GeometricVectors_insert(self, *args) - - def reserve(self, n): - return _mscl.GeometricVectors_reserve(self, n) - - def capacity(self): - return _mscl.GeometricVectors_capacity(self) - __swig_destroy__ = _mscl.delete_GeometricVectors - -# Register GeometricVectors in _mscl: -_mscl.GeometricVectors_swigregister(GeometricVectors) - -class Matrix_3x3s(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Matrix_3x3s_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Matrix_3x3s___nonzero__(self) - - def __bool__(self): - return _mscl.Matrix_3x3s___bool__(self) - - def __len__(self): - return _mscl.Matrix_3x3s___len__(self) - - def __getslice__(self, i, j): - return _mscl.Matrix_3x3s___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Matrix_3x3s___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Matrix_3x3s___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Matrix_3x3s___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Matrix_3x3s___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Matrix_3x3s___setitem__(self, *args) - - def pop(self): - return _mscl.Matrix_3x3s_pop(self) - - def append(self, x): - return _mscl.Matrix_3x3s_append(self, x) - - def empty(self): - return _mscl.Matrix_3x3s_empty(self) - - def size(self): - return _mscl.Matrix_3x3s_size(self) - - def swap(self, v): - return _mscl.Matrix_3x3s_swap(self, v) - - def begin(self): - return _mscl.Matrix_3x3s_begin(self) - - def end(self): - return _mscl.Matrix_3x3s_end(self) - - def rbegin(self): - return _mscl.Matrix_3x3s_rbegin(self) - - def rend(self): - return _mscl.Matrix_3x3s_rend(self) - - def clear(self): - return _mscl.Matrix_3x3s_clear(self) - - def get_allocator(self): - return _mscl.Matrix_3x3s_get_allocator(self) - - def pop_back(self): - return _mscl.Matrix_3x3s_pop_back(self) - - def erase(self, *args): - return _mscl.Matrix_3x3s_erase(self, *args) - - def __init__(self, *args): - _mscl.Matrix_3x3s_swiginit(self, _mscl.new_Matrix_3x3s(*args)) - - def push_back(self, x): - return _mscl.Matrix_3x3s_push_back(self, x) - - def front(self): - return _mscl.Matrix_3x3s_front(self) - - def back(self): - return _mscl.Matrix_3x3s_back(self) - - def assign(self, n, x): - return _mscl.Matrix_3x3s_assign(self, n, x) - - def resize(self, *args): - return _mscl.Matrix_3x3s_resize(self, *args) - - def insert(self, *args): - return _mscl.Matrix_3x3s_insert(self, *args) - - def reserve(self, n): - return _mscl.Matrix_3x3s_reserve(self, n) - - def capacity(self): - return _mscl.Matrix_3x3s_capacity(self) - __swig_destroy__ = _mscl.delete_Matrix_3x3s - -# Register Matrix_3x3s in _mscl: -_mscl.Matrix_3x3s_swigregister(Matrix_3x3s) - -class StatusSelectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StatusSelectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StatusSelectors___nonzero__(self) - - def __bool__(self): - return _mscl.StatusSelectors___bool__(self) - - def __len__(self): - return _mscl.StatusSelectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.StatusSelectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StatusSelectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StatusSelectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StatusSelectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StatusSelectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StatusSelectors___setitem__(self, *args) - - def pop(self): - return _mscl.StatusSelectors_pop(self) - - def append(self, x): - return _mscl.StatusSelectors_append(self, x) - - def empty(self): - return _mscl.StatusSelectors_empty(self) - - def size(self): - return _mscl.StatusSelectors_size(self) - - def swap(self, v): - return _mscl.StatusSelectors_swap(self, v) - - def begin(self): - return _mscl.StatusSelectors_begin(self) - - def end(self): - return _mscl.StatusSelectors_end(self) - - def rbegin(self): - return _mscl.StatusSelectors_rbegin(self) - - def rend(self): - return _mscl.StatusSelectors_rend(self) - - def clear(self): - return _mscl.StatusSelectors_clear(self) - - def get_allocator(self): - return _mscl.StatusSelectors_get_allocator(self) - - def pop_back(self): - return _mscl.StatusSelectors_pop_back(self) - - def erase(self, *args): - return _mscl.StatusSelectors_erase(self, *args) - - def __init__(self, *args): - _mscl.StatusSelectors_swiginit(self, _mscl.new_StatusSelectors(*args)) - - def push_back(self, x): - return _mscl.StatusSelectors_push_back(self, x) - - def front(self): - return _mscl.StatusSelectors_front(self) - - def back(self): - return _mscl.StatusSelectors_back(self) - - def assign(self, n, x): - return _mscl.StatusSelectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.StatusSelectors_resize(self, *args) - - def insert(self, *args): - return _mscl.StatusSelectors_insert(self, *args) - - def reserve(self, n): - return _mscl.StatusSelectors_reserve(self, n) - - def capacity(self): - return _mscl.StatusSelectors_capacity(self) - __swig_destroy__ = _mscl.delete_StatusSelectors - -# Register StatusSelectors in _mscl: -_mscl.StatusSelectors_swigregister(StatusSelectors) - -class VehicleModeTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.VehicleModeTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.VehicleModeTypes___nonzero__(self) - - def __bool__(self): - return _mscl.VehicleModeTypes___bool__(self) - - def __len__(self): - return _mscl.VehicleModeTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.VehicleModeTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.VehicleModeTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.VehicleModeTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.VehicleModeTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.VehicleModeTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.VehicleModeTypes___setitem__(self, *args) - - def pop(self): - return _mscl.VehicleModeTypes_pop(self) - - def append(self, x): - return _mscl.VehicleModeTypes_append(self, x) - - def empty(self): - return _mscl.VehicleModeTypes_empty(self) - - def size(self): - return _mscl.VehicleModeTypes_size(self) - - def swap(self, v): - return _mscl.VehicleModeTypes_swap(self, v) - - def begin(self): - return _mscl.VehicleModeTypes_begin(self) - - def end(self): - return _mscl.VehicleModeTypes_end(self) - - def rbegin(self): - return _mscl.VehicleModeTypes_rbegin(self) - - def rend(self): - return _mscl.VehicleModeTypes_rend(self) - - def clear(self): - return _mscl.VehicleModeTypes_clear(self) - - def get_allocator(self): - return _mscl.VehicleModeTypes_get_allocator(self) - - def pop_back(self): - return _mscl.VehicleModeTypes_pop_back(self) - - def erase(self, *args): - return _mscl.VehicleModeTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.VehicleModeTypes_swiginit(self, _mscl.new_VehicleModeTypes(*args)) - - def push_back(self, x): - return _mscl.VehicleModeTypes_push_back(self, x) - - def front(self): - return _mscl.VehicleModeTypes_front(self) - - def back(self): - return _mscl.VehicleModeTypes_back(self) - - def assign(self, n, x): - return _mscl.VehicleModeTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.VehicleModeTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.VehicleModeTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.VehicleModeTypes_reserve(self, n) - - def capacity(self): - return _mscl.VehicleModeTypes_capacity(self) - __swig_destroy__ = _mscl.delete_VehicleModeTypes - -# Register VehicleModeTypes in _mscl: -_mscl.VehicleModeTypes_swigregister(VehicleModeTypes) - -class AdaptiveFilterLevels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveFilterLevels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveFilterLevels___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveFilterLevels___bool__(self) - - def __len__(self): - return _mscl.AdaptiveFilterLevels___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveFilterLevels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveFilterLevels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveFilterLevels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveFilterLevels___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveFilterLevels_pop(self) - - def append(self, x): - return _mscl.AdaptiveFilterLevels_append(self, x) - - def empty(self): - return _mscl.AdaptiveFilterLevels_empty(self) - - def size(self): - return _mscl.AdaptiveFilterLevels_size(self) - - def swap(self, v): - return _mscl.AdaptiveFilterLevels_swap(self, v) - - def begin(self): - return _mscl.AdaptiveFilterLevels_begin(self) - - def end(self): - return _mscl.AdaptiveFilterLevels_end(self) - - def rbegin(self): - return _mscl.AdaptiveFilterLevels_rbegin(self) - - def rend(self): - return _mscl.AdaptiveFilterLevels_rend(self) - - def clear(self): - return _mscl.AdaptiveFilterLevels_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveFilterLevels_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveFilterLevels_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveFilterLevels_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveFilterLevels_swiginit(self, _mscl.new_AdaptiveFilterLevels(*args)) - - def push_back(self, x): - return _mscl.AdaptiveFilterLevels_push_back(self, x) - - def front(self): - return _mscl.AdaptiveFilterLevels_front(self) - - def back(self): - return _mscl.AdaptiveFilterLevels_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveFilterLevels_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveFilterLevels_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveFilterLevels_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveFilterLevels_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveFilterLevels_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveFilterLevels - -# Register AdaptiveFilterLevels in _mscl: -_mscl.AdaptiveFilterLevels_swigregister(AdaptiveFilterLevels) - -class LowPassFilterConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LowPassFilterConfig_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LowPassFilterConfig___nonzero__(self) - - def __bool__(self): - return _mscl.LowPassFilterConfig___bool__(self) - - def __len__(self): - return _mscl.LowPassFilterConfig___len__(self) - - def __getslice__(self, i, j): - return _mscl.LowPassFilterConfig___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LowPassFilterConfig___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LowPassFilterConfig___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LowPassFilterConfig___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LowPassFilterConfig___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LowPassFilterConfig___setitem__(self, *args) - - def pop(self): - return _mscl.LowPassFilterConfig_pop(self) - - def append(self, x): - return _mscl.LowPassFilterConfig_append(self, x) - - def empty(self): - return _mscl.LowPassFilterConfig_empty(self) - - def size(self): - return _mscl.LowPassFilterConfig_size(self) - - def swap(self, v): - return _mscl.LowPassFilterConfig_swap(self, v) - - def begin(self): - return _mscl.LowPassFilterConfig_begin(self) - - def end(self): - return _mscl.LowPassFilterConfig_end(self) - - def rbegin(self): - return _mscl.LowPassFilterConfig_rbegin(self) - - def rend(self): - return _mscl.LowPassFilterConfig_rend(self) - - def clear(self): - return _mscl.LowPassFilterConfig_clear(self) - - def get_allocator(self): - return _mscl.LowPassFilterConfig_get_allocator(self) - - def pop_back(self): - return _mscl.LowPassFilterConfig_pop_back(self) - - def erase(self, *args): - return _mscl.LowPassFilterConfig_erase(self, *args) - - def __init__(self, *args): - _mscl.LowPassFilterConfig_swiginit(self, _mscl.new_LowPassFilterConfig(*args)) - - def push_back(self, x): - return _mscl.LowPassFilterConfig_push_back(self, x) - - def front(self): - return _mscl.LowPassFilterConfig_front(self) - - def back(self): - return _mscl.LowPassFilterConfig_back(self) - - def assign(self, n, x): - return _mscl.LowPassFilterConfig_assign(self, n, x) - - def resize(self, *args): - return _mscl.LowPassFilterConfig_resize(self, *args) - - def insert(self, *args): - return _mscl.LowPassFilterConfig_insert(self, *args) - - def reserve(self, n): - return _mscl.LowPassFilterConfig_reserve(self, n) - - def capacity(self): - return _mscl.LowPassFilterConfig_capacity(self) - __swig_destroy__ = _mscl.delete_LowPassFilterConfig - -# Register LowPassFilterConfig in _mscl: -_mscl.LowPassFilterConfig_swigregister(LowPassFilterConfig) - -class AidingMeasurementSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AidingMeasurementSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AidingMeasurementSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.AidingMeasurementSourceOptions___bool__(self) - - def __len__(self): - return _mscl.AidingMeasurementSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.AidingMeasurementSourceOptions_pop(self) - - def append(self, x): - return _mscl.AidingMeasurementSourceOptions_append(self, x) - - def empty(self): - return _mscl.AidingMeasurementSourceOptions_empty(self) - - def size(self): - return _mscl.AidingMeasurementSourceOptions_size(self) - - def swap(self, v): - return _mscl.AidingMeasurementSourceOptions_swap(self, v) - - def begin(self): - return _mscl.AidingMeasurementSourceOptions_begin(self) - - def end(self): - return _mscl.AidingMeasurementSourceOptions_end(self) - - def rbegin(self): - return _mscl.AidingMeasurementSourceOptions_rbegin(self) - - def rend(self): - return _mscl.AidingMeasurementSourceOptions_rend(self) - - def clear(self): - return _mscl.AidingMeasurementSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.AidingMeasurementSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.AidingMeasurementSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.AidingMeasurementSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.AidingMeasurementSourceOptions_swiginit(self, _mscl.new_AidingMeasurementSourceOptions(*args)) - - def push_back(self, x): - return _mscl.AidingMeasurementSourceOptions_push_back(self, x) - - def front(self): - return _mscl.AidingMeasurementSourceOptions_front(self) - - def back(self): - return _mscl.AidingMeasurementSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.AidingMeasurementSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.AidingMeasurementSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.AidingMeasurementSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.AidingMeasurementSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.AidingMeasurementSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_AidingMeasurementSourceOptions - -# Register AidingMeasurementSourceOptions in _mscl: -_mscl.AidingMeasurementSourceOptions_swigregister(AidingMeasurementSourceOptions) - -class PpsSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.PpsSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.PpsSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.PpsSourceOptions___bool__(self) - - def __len__(self): - return _mscl.PpsSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.PpsSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.PpsSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.PpsSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.PpsSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.PpsSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.PpsSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.PpsSourceOptions_pop(self) - - def append(self, x): - return _mscl.PpsSourceOptions_append(self, x) - - def empty(self): - return _mscl.PpsSourceOptions_empty(self) - - def size(self): - return _mscl.PpsSourceOptions_size(self) - - def swap(self, v): - return _mscl.PpsSourceOptions_swap(self, v) - - def begin(self): - return _mscl.PpsSourceOptions_begin(self) - - def end(self): - return _mscl.PpsSourceOptions_end(self) - - def rbegin(self): - return _mscl.PpsSourceOptions_rbegin(self) - - def rend(self): - return _mscl.PpsSourceOptions_rend(self) - - def clear(self): - return _mscl.PpsSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.PpsSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.PpsSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.PpsSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.PpsSourceOptions_swiginit(self, _mscl.new_PpsSourceOptions(*args)) - - def push_back(self, x): - return _mscl.PpsSourceOptions_push_back(self, x) - - def front(self): - return _mscl.PpsSourceOptions_front(self) - - def back(self): - return _mscl.PpsSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.PpsSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.PpsSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.PpsSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.PpsSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.PpsSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_PpsSourceOptions - -# Register PpsSourceOptions in _mscl: -_mscl.PpsSourceOptions_swigregister(PpsSourceOptions) - -class GeographicSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeographicSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeographicSources___nonzero__(self) - - def __bool__(self): - return _mscl.GeographicSources___bool__(self) - - def __len__(self): - return _mscl.GeographicSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeographicSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeographicSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeographicSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeographicSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeographicSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeographicSources___setitem__(self, *args) - - def pop(self): - return _mscl.GeographicSources_pop(self) - - def append(self, x): - return _mscl.GeographicSources_append(self, x) - - def empty(self): - return _mscl.GeographicSources_empty(self) - - def size(self): - return _mscl.GeographicSources_size(self) - - def swap(self, v): - return _mscl.GeographicSources_swap(self, v) - - def begin(self): - return _mscl.GeographicSources_begin(self) - - def end(self): - return _mscl.GeographicSources_end(self) - - def rbegin(self): - return _mscl.GeographicSources_rbegin(self) - - def rend(self): - return _mscl.GeographicSources_rend(self) - - def clear(self): - return _mscl.GeographicSources_clear(self) - - def get_allocator(self): - return _mscl.GeographicSources_get_allocator(self) - - def pop_back(self): - return _mscl.GeographicSources_pop_back(self) - - def erase(self, *args): - return _mscl.GeographicSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GeographicSources_swiginit(self, _mscl.new_GeographicSources(*args)) - - def push_back(self, x): - return _mscl.GeographicSources_push_back(self, x) - - def front(self): - return _mscl.GeographicSources_front(self) - - def back(self): - return _mscl.GeographicSources_back(self) - - def assign(self, n, x): - return _mscl.GeographicSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeographicSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GeographicSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GeographicSources_reserve(self, n) - - def capacity(self): - return _mscl.GeographicSources_capacity(self) - __swig_destroy__ = _mscl.delete_GeographicSources - -# Register GeographicSources in _mscl: -_mscl.GeographicSources_swigregister(GeographicSources) - -class GnssSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSources___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSources___bool__(self) - - def __len__(self): - return _mscl.GnssSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssSources___setitem__(self, *args) - - def pop(self): - return _mscl.GnssSources_pop(self) - - def append(self, x): - return _mscl.GnssSources_append(self, x) - - def empty(self): - return _mscl.GnssSources_empty(self) - - def size(self): - return _mscl.GnssSources_size(self) - - def swap(self, v): - return _mscl.GnssSources_swap(self, v) - - def begin(self): - return _mscl.GnssSources_begin(self) - - def end(self): - return _mscl.GnssSources_end(self) - - def rbegin(self): - return _mscl.GnssSources_rbegin(self) - - def rend(self): - return _mscl.GnssSources_rend(self) - - def clear(self): - return _mscl.GnssSources_clear(self) - - def get_allocator(self): - return _mscl.GnssSources_get_allocator(self) - - def pop_back(self): - return _mscl.GnssSources_pop_back(self) - - def erase(self, *args): - return _mscl.GnssSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssSources_swiginit(self, _mscl.new_GnssSources(*args)) - - def push_back(self, x): - return _mscl.GnssSources_push_back(self, x) - - def front(self): - return _mscl.GnssSources_front(self) - - def back(self): - return _mscl.GnssSources_back(self) - - def assign(self, n, x): - return _mscl.GnssSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssSources_reserve(self, n) - - def capacity(self): - return _mscl.GnssSources_capacity(self) - __swig_destroy__ = _mscl.delete_GnssSources - -# Register GnssSources in _mscl: -_mscl.GnssSources_swigregister(GnssSources) - -class GnssSignalConfigOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSignalConfigOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSignalConfigOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSignalConfigOptions___bool__(self) - - def __len__(self): - return _mscl.GnssSignalConfigOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GnssSignalConfigOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GnssSignalConfigOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GnssSignalConfigOptions_has_key(self, key) - - def keys(self): - return _mscl.GnssSignalConfigOptions_keys(self) - - def values(self): - return _mscl.GnssSignalConfigOptions_values(self) - - def items(self): - return _mscl.GnssSignalConfigOptions_items(self) - - def __contains__(self, key): - return _mscl.GnssSignalConfigOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GnssSignalConfigOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GnssSignalConfigOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GnssSignalConfigOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GnssSignalConfigOptions_asdict(self) - - def __init__(self, *args): - _mscl.GnssSignalConfigOptions_swiginit(self, _mscl.new_GnssSignalConfigOptions(*args)) - - def empty(self): - return _mscl.GnssSignalConfigOptions_empty(self) - - def size(self): - return _mscl.GnssSignalConfigOptions_size(self) - - def swap(self, v): - return _mscl.GnssSignalConfigOptions_swap(self, v) - - def begin(self): - return _mscl.GnssSignalConfigOptions_begin(self) - - def end(self): - return _mscl.GnssSignalConfigOptions_end(self) - - def rbegin(self): - return _mscl.GnssSignalConfigOptions_rbegin(self) - - def rend(self): - return _mscl.GnssSignalConfigOptions_rend(self) - - def clear(self): - return _mscl.GnssSignalConfigOptions_clear(self) - - def get_allocator(self): - return _mscl.GnssSignalConfigOptions_get_allocator(self) - - def count(self, x): - return _mscl.GnssSignalConfigOptions_count(self, x) - - def erase(self, *args): - return _mscl.GnssSignalConfigOptions_erase(self, *args) - - def find(self, x): - return _mscl.GnssSignalConfigOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GnssSignalConfigOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GnssSignalConfigOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GnssSignalConfigOptions - -# Register GnssSignalConfigOptions in _mscl: -_mscl.GnssSignalConfigOptions_swigregister(GnssSignalConfigOptions) - -class NmeaMessageFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NmeaMessageFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NmeaMessageFormats___nonzero__(self) - - def __bool__(self): - return _mscl.NmeaMessageFormats___bool__(self) - - def __len__(self): - return _mscl.NmeaMessageFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.NmeaMessageFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NmeaMessageFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NmeaMessageFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NmeaMessageFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NmeaMessageFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NmeaMessageFormats___setitem__(self, *args) - - def pop(self): - return _mscl.NmeaMessageFormats_pop(self) - - def append(self, x): - return _mscl.NmeaMessageFormats_append(self, x) - - def empty(self): - return _mscl.NmeaMessageFormats_empty(self) - - def size(self): - return _mscl.NmeaMessageFormats_size(self) - - def swap(self, v): - return _mscl.NmeaMessageFormats_swap(self, v) - - def begin(self): - return _mscl.NmeaMessageFormats_begin(self) - - def end(self): - return _mscl.NmeaMessageFormats_end(self) - - def rbegin(self): - return _mscl.NmeaMessageFormats_rbegin(self) - - def rend(self): - return _mscl.NmeaMessageFormats_rend(self) - - def clear(self): - return _mscl.NmeaMessageFormats_clear(self) - - def get_allocator(self): - return _mscl.NmeaMessageFormats_get_allocator(self) - - def pop_back(self): - return _mscl.NmeaMessageFormats_pop_back(self) - - def erase(self, *args): - return _mscl.NmeaMessageFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.NmeaMessageFormats_swiginit(self, _mscl.new_NmeaMessageFormats(*args)) - - def push_back(self, x): - return _mscl.NmeaMessageFormats_push_back(self, x) - - def front(self): - return _mscl.NmeaMessageFormats_front(self) - - def back(self): - return _mscl.NmeaMessageFormats_back(self) - - def assign(self, n, x): - return _mscl.NmeaMessageFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.NmeaMessageFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.NmeaMessageFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.NmeaMessageFormats_reserve(self, n) - - def capacity(self): - return _mscl.NmeaMessageFormats_capacity(self) - __swig_destroy__ = _mscl.delete_NmeaMessageFormats - -# Register NmeaMessageFormats in _mscl: -_mscl.NmeaMessageFormats_swigregister(NmeaMessageFormats) - -class GpioPinModeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinModeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinModeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinModeOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinModeOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.GpioPinModeOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GpioPinModeOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GpioPinModeOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GpioPinModeOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GpioPinModeOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GpioPinModeOptions___setitem__(self, *args) - - def pop(self): - return _mscl.GpioPinModeOptions_pop(self) - - def append(self, x): - return _mscl.GpioPinModeOptions_append(self, x) - - def empty(self): - return _mscl.GpioPinModeOptions_empty(self) - - def size(self): - return _mscl.GpioPinModeOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinModeOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinModeOptions_begin(self) - - def end(self): - return _mscl.GpioPinModeOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinModeOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinModeOptions_rend(self) - - def clear(self): - return _mscl.GpioPinModeOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinModeOptions_get_allocator(self) - - def pop_back(self): - return _mscl.GpioPinModeOptions_pop_back(self) - - def erase(self, *args): - return _mscl.GpioPinModeOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.GpioPinModeOptions_swiginit(self, _mscl.new_GpioPinModeOptions(*args)) - - def push_back(self, x): - return _mscl.GpioPinModeOptions_push_back(self, x) - - def front(self): - return _mscl.GpioPinModeOptions_front(self) - - def back(self): - return _mscl.GpioPinModeOptions_back(self) - - def assign(self, n, x): - return _mscl.GpioPinModeOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.GpioPinModeOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.GpioPinModeOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.GpioPinModeOptions_reserve(self, n) - - def capacity(self): - return _mscl.GpioPinModeOptions_capacity(self) - __swig_destroy__ = _mscl.delete_GpioPinModeOptions - -# Register GpioPinModeOptions in _mscl: -_mscl.GpioPinModeOptions_swigregister(GpioPinModeOptions) - -class GpioBehaviorModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioBehaviorModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioBehaviorModes___nonzero__(self) - - def __bool__(self): - return _mscl.GpioBehaviorModes___bool__(self) - - def __len__(self): - return _mscl.GpioBehaviorModes___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioBehaviorModes___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioBehaviorModes___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioBehaviorModes_has_key(self, key) - - def keys(self): - return _mscl.GpioBehaviorModes_keys(self) - - def values(self): - return _mscl.GpioBehaviorModes_values(self) - - def items(self): - return _mscl.GpioBehaviorModes_items(self) - - def __contains__(self, key): - return _mscl.GpioBehaviorModes___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioBehaviorModes_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioBehaviorModes_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioBehaviorModes___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioBehaviorModes_asdict(self) - - def __init__(self, *args): - _mscl.GpioBehaviorModes_swiginit(self, _mscl.new_GpioBehaviorModes(*args)) - - def empty(self): - return _mscl.GpioBehaviorModes_empty(self) - - def size(self): - return _mscl.GpioBehaviorModes_size(self) - - def swap(self, v): - return _mscl.GpioBehaviorModes_swap(self, v) - - def begin(self): - return _mscl.GpioBehaviorModes_begin(self) - - def end(self): - return _mscl.GpioBehaviorModes_end(self) - - def rbegin(self): - return _mscl.GpioBehaviorModes_rbegin(self) - - def rend(self): - return _mscl.GpioBehaviorModes_rend(self) - - def clear(self): - return _mscl.GpioBehaviorModes_clear(self) - - def get_allocator(self): - return _mscl.GpioBehaviorModes_get_allocator(self) - - def count(self, x): - return _mscl.GpioBehaviorModes_count(self, x) - - def erase(self, *args): - return _mscl.GpioBehaviorModes_erase(self, *args) - - def find(self, x): - return _mscl.GpioBehaviorModes_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioBehaviorModes_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioBehaviorModes_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioBehaviorModes - -# Register GpioBehaviorModes in _mscl: -_mscl.GpioBehaviorModes_swigregister(GpioBehaviorModes) - -class GpioFeatureBehaviors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioFeatureBehaviors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioFeatureBehaviors___nonzero__(self) - - def __bool__(self): - return _mscl.GpioFeatureBehaviors___bool__(self) - - def __len__(self): - return _mscl.GpioFeatureBehaviors___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioFeatureBehaviors___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioFeatureBehaviors___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioFeatureBehaviors_has_key(self, key) - - def keys(self): - return _mscl.GpioFeatureBehaviors_keys(self) - - def values(self): - return _mscl.GpioFeatureBehaviors_values(self) - - def items(self): - return _mscl.GpioFeatureBehaviors_items(self) - - def __contains__(self, key): - return _mscl.GpioFeatureBehaviors___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioFeatureBehaviors_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioFeatureBehaviors_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioFeatureBehaviors___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioFeatureBehaviors_asdict(self) - - def __init__(self, *args): - _mscl.GpioFeatureBehaviors_swiginit(self, _mscl.new_GpioFeatureBehaviors(*args)) - - def empty(self): - return _mscl.GpioFeatureBehaviors_empty(self) - - def size(self): - return _mscl.GpioFeatureBehaviors_size(self) - - def swap(self, v): - return _mscl.GpioFeatureBehaviors_swap(self, v) - - def begin(self): - return _mscl.GpioFeatureBehaviors_begin(self) - - def end(self): - return _mscl.GpioFeatureBehaviors_end(self) - - def rbegin(self): - return _mscl.GpioFeatureBehaviors_rbegin(self) - - def rend(self): - return _mscl.GpioFeatureBehaviors_rend(self) - - def clear(self): - return _mscl.GpioFeatureBehaviors_clear(self) - - def get_allocator(self): - return _mscl.GpioFeatureBehaviors_get_allocator(self) - - def count(self, x): - return _mscl.GpioFeatureBehaviors_count(self, x) - - def erase(self, *args): - return _mscl.GpioFeatureBehaviors_erase(self, *args) - - def find(self, x): - return _mscl.GpioFeatureBehaviors_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioFeatureBehaviors_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioFeatureBehaviors_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioFeatureBehaviors - -# Register GpioFeatureBehaviors in _mscl: -_mscl.GpioFeatureBehaviors_swigregister(GpioFeatureBehaviors) - -class GpioPinOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioPinOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioPinOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioPinOptions_has_key(self, key) - - def keys(self): - return _mscl.GpioPinOptions_keys(self) - - def values(self): - return _mscl.GpioPinOptions_values(self) - - def items(self): - return _mscl.GpioPinOptions_items(self) - - def __contains__(self, key): - return _mscl.GpioPinOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioPinOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioPinOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioPinOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioPinOptions_asdict(self) - - def __init__(self, *args): - _mscl.GpioPinOptions_swiginit(self, _mscl.new_GpioPinOptions(*args)) - - def empty(self): - return _mscl.GpioPinOptions_empty(self) - - def size(self): - return _mscl.GpioPinOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinOptions_begin(self) - - def end(self): - return _mscl.GpioPinOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinOptions_rend(self) - - def clear(self): - return _mscl.GpioPinOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinOptions_get_allocator(self) - - def count(self, x): - return _mscl.GpioPinOptions_count(self, x) - - def erase(self, *args): - return _mscl.GpioPinOptions_erase(self, *args) - - def find(self, x): - return _mscl.GpioPinOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioPinOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioPinOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioPinOptions - -# Register GpioPinOptions in _mscl: -_mscl.GpioPinOptions_swigregister(GpioPinOptions) - -class EventInputTriggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventInputTriggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventInputTriggers___nonzero__(self) - - def __bool__(self): - return _mscl.EventInputTriggers___bool__(self) - - def __len__(self): - return _mscl.EventInputTriggers___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventInputTriggers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventInputTriggers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventInputTriggers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventInputTriggers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventInputTriggers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventInputTriggers___setitem__(self, *args) - - def __init__(self, *args): - _mscl.EventInputTriggers_swiginit(self, _mscl.new_EventInputTriggers(*args)) - - def empty(self): - return _mscl.EventInputTriggers_empty(self) - - def size(self): - return _mscl.EventInputTriggers_size(self) - - def swap(self, v): - return _mscl.EventInputTriggers_swap(self, v) - - def begin(self): - return _mscl.EventInputTriggers_begin(self) - - def end(self): - return _mscl.EventInputTriggers_end(self) - - def rbegin(self): - return _mscl.EventInputTriggers_rbegin(self) - - def rend(self): - return _mscl.EventInputTriggers_rend(self) - - def front(self): - return _mscl.EventInputTriggers_front(self) - - def back(self): - return _mscl.EventInputTriggers_back(self) - - def fill(self, u): - return _mscl.EventInputTriggers_fill(self, u) - __swig_destroy__ = _mscl.delete_EventInputTriggers - -# Register EventInputTriggers in _mscl: -_mscl.EventInputTriggers_swigregister(EventInputTriggers) - -class EventTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTypes___nonzero__(self) - - def __bool__(self): - return _mscl.EventTypes___bool__(self) - - def __len__(self): - return _mscl.EventTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTypes___setitem__(self, *args) - - def pop(self): - return _mscl.EventTypes_pop(self) - - def append(self, x): - return _mscl.EventTypes_append(self, x) - - def empty(self): - return _mscl.EventTypes_empty(self) - - def size(self): - return _mscl.EventTypes_size(self) - - def swap(self, v): - return _mscl.EventTypes_swap(self, v) - - def begin(self): - return _mscl.EventTypes_begin(self) - - def end(self): - return _mscl.EventTypes_end(self) - - def rbegin(self): - return _mscl.EventTypes_rbegin(self) - - def rend(self): - return _mscl.EventTypes_rend(self) - - def clear(self): - return _mscl.EventTypes_clear(self) - - def get_allocator(self): - return _mscl.EventTypes_get_allocator(self) - - def pop_back(self): - return _mscl.EventTypes_pop_back(self) - - def erase(self, *args): - return _mscl.EventTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTypes_swiginit(self, _mscl.new_EventTypes(*args)) - - def push_back(self, x): - return _mscl.EventTypes_push_back(self, x) - - def front(self): - return _mscl.EventTypes_front(self) - - def back(self): - return _mscl.EventTypes_back(self) - - def assign(self, n, x): - return _mscl.EventTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTypes_reserve(self, n) - - def capacity(self): - return _mscl.EventTypes_capacity(self) - __swig_destroy__ = _mscl.delete_EventTypes - -# Register EventTypes in _mscl: -_mscl.EventTypes_swigregister(EventTypes) - -class MeasurementReferenceFrames(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MeasurementReferenceFrames_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MeasurementReferenceFrames___nonzero__(self) - - def __bool__(self): - return _mscl.MeasurementReferenceFrames___bool__(self) - - def __len__(self): - return _mscl.MeasurementReferenceFrames___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.MeasurementReferenceFrames___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.MeasurementReferenceFrames___delitem__(self, key) - - def has_key(self, key): - return _mscl.MeasurementReferenceFrames_has_key(self, key) - - def keys(self): - return _mscl.MeasurementReferenceFrames_keys(self) - - def values(self): - return _mscl.MeasurementReferenceFrames_values(self) - - def items(self): - return _mscl.MeasurementReferenceFrames_items(self) - - def __contains__(self, key): - return _mscl.MeasurementReferenceFrames___contains__(self, key) - - def key_iterator(self): - return _mscl.MeasurementReferenceFrames_key_iterator(self) - - def value_iterator(self): - return _mscl.MeasurementReferenceFrames_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.MeasurementReferenceFrames___setitem__(self, *args) - - def asdict(self): - return _mscl.MeasurementReferenceFrames_asdict(self) - - def __init__(self, *args): - _mscl.MeasurementReferenceFrames_swiginit(self, _mscl.new_MeasurementReferenceFrames(*args)) - - def empty(self): - return _mscl.MeasurementReferenceFrames_empty(self) - - def size(self): - return _mscl.MeasurementReferenceFrames_size(self) - - def swap(self, v): - return _mscl.MeasurementReferenceFrames_swap(self, v) - - def begin(self): - return _mscl.MeasurementReferenceFrames_begin(self) - - def end(self): - return _mscl.MeasurementReferenceFrames_end(self) - - def rbegin(self): - return _mscl.MeasurementReferenceFrames_rbegin(self) - - def rend(self): - return _mscl.MeasurementReferenceFrames_rend(self) - - def clear(self): - return _mscl.MeasurementReferenceFrames_clear(self) - - def get_allocator(self): - return _mscl.MeasurementReferenceFrames_get_allocator(self) - - def count(self, x): - return _mscl.MeasurementReferenceFrames_count(self, x) - - def erase(self, *args): - return _mscl.MeasurementReferenceFrames_erase(self, *args) - - def find(self, x): - return _mscl.MeasurementReferenceFrames_find(self, x) - - def lower_bound(self, x): - return _mscl.MeasurementReferenceFrames_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.MeasurementReferenceFrames_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrames - -# Register MeasurementReferenceFrames in _mscl: -_mscl.MeasurementReferenceFrames_swigregister(MeasurementReferenceFrames) - -class Bins(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bins_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bins___nonzero__(self) - - def __bool__(self): - return _mscl.Bins___bool__(self) - - def __len__(self): - return _mscl.Bins___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bins___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bins___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bins___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bins___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bins___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bins___setitem__(self, *args) - - def pop(self): - return _mscl.Bins_pop(self) - - def append(self, x): - return _mscl.Bins_append(self, x) - - def empty(self): - return _mscl.Bins_empty(self) - - def size(self): - return _mscl.Bins_size(self) - - def swap(self, v): - return _mscl.Bins_swap(self, v) - - def begin(self): - return _mscl.Bins_begin(self) - - def end(self): - return _mscl.Bins_end(self) - - def rbegin(self): - return _mscl.Bins_rbegin(self) - - def rend(self): - return _mscl.Bins_rend(self) - - def clear(self): - return _mscl.Bins_clear(self) - - def get_allocator(self): - return _mscl.Bins_get_allocator(self) - - def pop_back(self): - return _mscl.Bins_pop_back(self) - - def erase(self, *args): - return _mscl.Bins_erase(self, *args) - - def __init__(self, *args): - _mscl.Bins_swiginit(self, _mscl.new_Bins(*args)) - - def push_back(self, x): - return _mscl.Bins_push_back(self, x) - - def front(self): - return _mscl.Bins_front(self) - - def back(self): - return _mscl.Bins_back(self) - - def assign(self, n, x): - return _mscl.Bins_assign(self, n, x) - - def insert(self, *args): - return _mscl.Bins_insert(self, *args) - - def reserve(self, n): - return _mscl.Bins_reserve(self, n) - - def capacity(self): - return _mscl.Bins_capacity(self) - __swig_destroy__ = _mscl.delete_Bins - -# Register Bins in _mscl: -_mscl.Bins_swigregister(Bins) - -class Error(Exception): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_swiginit(self, _mscl.new_Error(*args)) - __swig_destroy__ = _mscl.delete_Error - - def what(self): - return _mscl.Error_what(self) - - def __str__(self): - return _mscl.Error___str__(self) - -# Register Error in _mscl: -_mscl.Error_swigregister(Error) - -class Error_NotSupported(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NotSupported_swiginit(self, _mscl.new_Error_NotSupported(*args)) - __swig_destroy__ = _mscl.delete_Error_NotSupported - -# Register Error_NotSupported in _mscl: -_mscl.Error_NotSupported_swigregister(Error_NotSupported) - -class Error_NoData(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NoData_swiginit(self, _mscl.new_Error_NoData(*args)) - __swig_destroy__ = _mscl.delete_Error_NoData - -# Register Error_NoData in _mscl: -_mscl.Error_NoData_swigregister(Error_NoData) - -class Error_BadDataType(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Error_BadDataType_swiginit(self, _mscl.new_Error_BadDataType()) - __swig_destroy__ = _mscl.delete_Error_BadDataType - -# Register Error_BadDataType in _mscl: -_mscl.Error_BadDataType_swigregister(Error_BadDataType) - -class Error_UnknownSampleRate(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_UnknownSampleRate_swiginit(self, _mscl.new_Error_UnknownSampleRate(*args)) - __swig_destroy__ = _mscl.delete_Error_UnknownSampleRate - -# Register Error_UnknownSampleRate in _mscl: -_mscl.Error_UnknownSampleRate_swigregister(Error_UnknownSampleRate) - -class Error_Communication(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Communication_swiginit(self, _mscl.new_Error_Communication(*args)) - __swig_destroy__ = _mscl.delete_Error_Communication - -# Register Error_Communication in _mscl: -_mscl.Error_Communication_swigregister(Error_Communication) - -class Error_NodeCommunication(Error_Communication): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NodeCommunication_swiginit(self, _mscl.new_Error_NodeCommunication(*args)) - - def nodeAddress(self): - return _mscl.Error_NodeCommunication_nodeAddress(self) - __swig_destroy__ = _mscl.delete_Error_NodeCommunication - -# Register Error_NodeCommunication in _mscl: -_mscl.Error_NodeCommunication_swigregister(Error_NodeCommunication) - -class Error_Connection(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Connection_swiginit(self, _mscl.new_Error_Connection(*args)) - __swig_destroy__ = _mscl.delete_Error_Connection - - def code(self): - return _mscl.Error_Connection_code(self) - - def value(self): - return _mscl.Error_Connection_value(self) - -# Register Error_Connection in _mscl: -_mscl.Error_Connection_swigregister(Error_Connection) - -class Error_InvalidSerialPort(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code): - _mscl.Error_InvalidSerialPort_swiginit(self, _mscl.new_Error_InvalidSerialPort(code)) - __swig_destroy__ = _mscl.delete_Error_InvalidSerialPort - -# Register Error_InvalidSerialPort in _mscl: -_mscl.Error_InvalidSerialPort_swigregister(Error_InvalidSerialPort) - -class Error_InvalidTcpServer(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidTcpServer_swiginit(self, _mscl.new_Error_InvalidTcpServer(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidTcpServer - -# Register Error_InvalidTcpServer in _mscl: -_mscl.Error_InvalidTcpServer_swigregister(Error_InvalidTcpServer) - -class Error_InvalidUnixSocket(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidUnixSocket_swiginit(self, _mscl.new_Error_InvalidUnixSocket(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidUnixSocket - -# Register Error_InvalidUnixSocket in _mscl: -_mscl.Error_InvalidUnixSocket_swigregister(Error_InvalidUnixSocket) - -class Error_MipCmdFailed(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_MipCmdFailed_swiginit(self, _mscl.new_Error_MipCmdFailed(*args)) - __swig_destroy__ = _mscl.delete_Error_MipCmdFailed - - def code(self): - return _mscl.Error_MipCmdFailed_code(self) - - def value(self): - return _mscl.Error_MipCmdFailed_value(self) - -# Register Error_MipCmdFailed in _mscl: -_mscl.Error_MipCmdFailed_swigregister(Error_MipCmdFailed) - -class Error_InvalidConfig(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_InvalidConfig_swiginit(self, _mscl.new_Error_InvalidConfig(*args)) - __swig_destroy__ = _mscl.delete_Error_InvalidConfig - - def issues(self): - return _mscl.Error_InvalidConfig_issues(self) - -# Register Error_InvalidConfig in _mscl: -_mscl.Error_InvalidConfig_swigregister(Error_InvalidConfig) - -class Error_InvalidNodeConfig(Error_InvalidConfig): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, issues, nodeAddress): - _mscl.Error_InvalidNodeConfig_swiginit(self, _mscl.new_Error_InvalidNodeConfig(issues, nodeAddress)) - __swig_destroy__ = _mscl.delete_Error_InvalidNodeConfig - - def nodeAddress(self): - return _mscl.Error_InvalidNodeConfig_nodeAddress(self) - -# Register Error_InvalidNodeConfig in _mscl: -_mscl.Error_InvalidNodeConfig_swigregister(Error_InvalidNodeConfig) - - - diff --git a/mscl_release_assets/mscl-armhf-Python3.9-v67.0.0/_mscl.so b/mscl_release_assets/mscl-armhf-Python3.9-v67.0.0/_mscl.so deleted file mode 100644 index 53dacf5..0000000 Binary files a/mscl_release_assets/mscl-armhf-Python3.9-v67.0.0/_mscl.so and /dev/null differ diff --git a/mscl_release_assets/mscl-armhf-Python3.9-v67.0.0/mscl.py b/mscl_release_assets/mscl-armhf-Python3.9-v67.0.0/mscl.py deleted file mode 100644 index daa6217..0000000 --- a/mscl_release_assets/mscl-armhf-Python3.9-v67.0.0/mscl.py +++ /dev/null @@ -1,18376 +0,0 @@ -# This file was automatically generated by SWIG (http://www.swig.org). -# Version 4.0.1 -# -# Do not make changes to this file unless you know what you are doing--modify -# the SWIG interface file instead. - -from sys import version_info as _swig_python_version_info -if _swig_python_version_info < (2, 7, 0): - raise RuntimeError("Python 2.7 or later required") - -# Import the low-level C/C++ module -if __package__ or "." in __name__: - from . import _mscl -else: - import _mscl - -try: - import builtins as __builtin__ -except ImportError: - import __builtin__ - -def _swig_repr(self): - try: - strthis = "proxy of " + self.this.__repr__() - except __builtin__.Exception: - strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - - -def _swig_setattr_nondynamic_instance_variable(set): - def set_instance_attr(self, name, value): - if name == "thisown": - self.this.own(value) - elif name == "this": - set(self, name, value) - elif hasattr(self, name) and isinstance(getattr(type(self), name), property): - set(self, name, value) - else: - raise AttributeError("You cannot add instance attributes to %s" % self) - return set_instance_attr - - -def _swig_setattr_nondynamic_class_variable(set): - def set_class_attr(cls, name, value): - if hasattr(cls, name) and not isinstance(getattr(cls, name), property): - set(cls, name, value) - else: - raise AttributeError("You cannot add class attributes to %s" % cls) - return set_class_attr - - -def _swig_add_metaclass(metaclass): - """Class decorator for adding a metaclass to a SWIG wrapped class - a slimmed down version of six.add_metaclass""" - def wrapper(cls): - return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy()) - return wrapper - - -class _SwigNonDynamicMeta(type): - """Meta class to enforce nondynamic attributes (no new attributes) for a class""" - __setattr__ = _swig_setattr_nondynamic_class_variable(type.__setattr__) - - -class SwigPyIterator(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_SwigPyIterator - - def value(self): - return _mscl.SwigPyIterator_value(self) - - def incr(self, n=1): - return _mscl.SwigPyIterator_incr(self, n) - - def decr(self, n=1): - return _mscl.SwigPyIterator_decr(self, n) - - def distance(self, x): - return _mscl.SwigPyIterator_distance(self, x) - - def equal(self, x): - return _mscl.SwigPyIterator_equal(self, x) - - def copy(self): - return _mscl.SwigPyIterator_copy(self) - - def next(self): - return _mscl.SwigPyIterator_next(self) - - def __next__(self): - return _mscl.SwigPyIterator___next__(self) - - def previous(self): - return _mscl.SwigPyIterator_previous(self) - - def advance(self, n): - return _mscl.SwigPyIterator_advance(self, n) - - def __eq__(self, x): - return _mscl.SwigPyIterator___eq__(self, x) - - def __ne__(self, x): - return _mscl.SwigPyIterator___ne__(self, x) - - def __iadd__(self, n): - return _mscl.SwigPyIterator___iadd__(self, n) - - def __isub__(self, n): - return _mscl.SwigPyIterator___isub__(self, n) - - def __add__(self, n): - return _mscl.SwigPyIterator___add__(self, n) - - def __sub__(self, *args): - return _mscl.SwigPyIterator___sub__(self, *args) - def __iter__(self): - return self - -# Register SwigPyIterator in _mscl: -_mscl.SwigPyIterator_swigregister(SwigPyIterator) - -SHARED_PTR_DISOWN = _mscl.SHARED_PTR_DISOWN -valueType_float = _mscl.valueType_float -valueType_double = _mscl.valueType_double -valueType_uint8 = _mscl.valueType_uint8 -valueType_uint16 = _mscl.valueType_uint16 -valueType_uint32 = _mscl.valueType_uint32 -valueType_int16 = _mscl.valueType_int16 -valueType_int32 = _mscl.valueType_int32 -valueType_bool = _mscl.valueType_bool -valueType_Vector = _mscl.valueType_Vector -valueType_Matrix = _mscl.valueType_Matrix -valueType_Timestamp = _mscl.valueType_Timestamp -valueType_string = _mscl.valueType_string -valueType_Bytes = _mscl.valueType_Bytes -valueType_StructuralHealth = _mscl.valueType_StructuralHealth -valueType_RfSweep = _mscl.valueType_RfSweep -valueType_ChannelMask = _mscl.valueType_ChannelMask -valueType_int8 = _mscl.valueType_int8 -valueType_uint64 = _mscl.valueType_uint64 -deviceState_idle = _mscl.deviceState_idle -deviceState_sleep = _mscl.deviceState_sleep -deviceState_sampling = _mscl.deviceState_sampling -deviceState_sampling_lostBeacon = _mscl.deviceState_sampling_lostBeacon -deviceState_sampling_inactive = _mscl.deviceState_sampling_inactive -deviceState_unknown = _mscl.deviceState_unknown -class BitMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BitMask_swiginit(self, _mscl.new_BitMask(*args)) - __swig_destroy__ = _mscl.delete_BitMask - - def __eq__(self, other): - return _mscl.BitMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.BitMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.BitMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.BitMask___gt__(self, other) - - def fromMask(self, val): - return _mscl.BitMask_fromMask(self, val) - - def toMask(self): - return _mscl.BitMask_toMask(self) - - def enabledCount(self): - return _mscl.BitMask_enabledCount(self) - - def enabled(self, bitIndex): - return _mscl.BitMask_enabled(self, bitIndex) - - def enable(self, bitIndex, enable=True): - return _mscl.BitMask_enable(self, bitIndex, enable) - - def lastBitEnabled(self): - return _mscl.BitMask_lastBitEnabled(self) - -# Register BitMask in _mscl: -_mscl.BitMask_swigregister(BitMask) - -class ChannelMask(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_CHANNELS = _mscl.ChannelMask_MAX_CHANNELS - - def __init__(self, *args): - _mscl.ChannelMask_swiginit(self, _mscl.new_ChannelMask(*args)) - __swig_destroy__ = _mscl.delete_ChannelMask - - def __eq__(self, other): - return _mscl.ChannelMask___eq__(self, other) - - def __ne__(self, other): - return _mscl.ChannelMask___ne__(self, other) - - def __lt__(self, other): - return _mscl.ChannelMask___lt__(self, other) - - def __gt__(self, other): - return _mscl.ChannelMask___gt__(self, other) - - def fromMask(self, channelMask): - return _mscl.ChannelMask_fromMask(self, channelMask) - - def toMask(self): - return _mscl.ChannelMask_toMask(self) - - def count(self): - return _mscl.ChannelMask_count(self) - - def enabled(self, channel): - return _mscl.ChannelMask_enabled(self, channel) - - def enable(self, channel, enable=True): - return _mscl.ChannelMask_enable(self, channel, enable) - - def lastChEnabled(self): - return _mscl.ChannelMask_lastChEnabled(self) - -# Register ChannelMask in _mscl: -_mscl.ChannelMask_swigregister(ChannelMask) - -class Value(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_Value - - def storedAs(self): - return _mscl.Value_storedAs(self) - - def as_float(self): - return _mscl.Value_as_float(self) - - def as_double(self): - return _mscl.Value_as_double(self) - - def as_uint8(self): - return _mscl.Value_as_uint8(self) - - def as_uint16(self): - return _mscl.Value_as_uint16(self) - - def as_uint32(self): - return _mscl.Value_as_uint32(self) - - def as_uint64(self): - return _mscl.Value_as_uint64(self) - - def as_int8(self): - return _mscl.Value_as_int8(self) - - def as_int16(self): - return _mscl.Value_as_int16(self) - - def as_int32(self): - return _mscl.Value_as_int32(self) - - def as_bool(self): - return _mscl.Value_as_bool(self) - - def as_ChannelMask(self): - return _mscl.Value_as_ChannelMask(self) - - def as_string(self): - return _mscl.Value_as_string(self) - - def __init__(self): - _mscl.Value_swiginit(self, _mscl.new_Value()) - -# Register Value in _mscl: -_mscl.Value_swigregister(Value) - -class Bin(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, start, end, count): - _mscl.Bin_swiginit(self, _mscl.new_Bin(start, end, count)) - - def start(self): - return _mscl.Bin_start(self) - - def end(self): - return _mscl.Bin_end(self) - - def count(self): - return _mscl.Bin_count(self) - __swig_destroy__ = _mscl.delete_Bin - -# Register Bin in _mscl: -_mscl.Bin_swigregister(Bin) - -class Histogram(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, binsStart, binsSize): - _mscl.Histogram_swiginit(self, _mscl.new_Histogram(binsStart, binsSize)) - - def binsStart(self): - return _mscl.Histogram_binsStart(self) - - def binsSize(self): - return _mscl.Histogram_binsSize(self) - - def bins(self): - return _mscl.Histogram_bins(self) - - def addBin(self, bin): - return _mscl.Histogram_addBin(self, bin) - __swig_destroy__ = _mscl.delete_Histogram - -# Register Histogram in _mscl: -_mscl.Histogram_swigregister(Histogram) - -class Timestamp(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INTERNAL = _mscl.Timestamp_INTERNAL - EXTERNAL = _mscl.Timestamp_EXTERNAL - TIME_OF_ARRIVAL = _mscl.Timestamp_TIME_OF_ARRIVAL - GPS = _mscl.Timestamp_GPS - UNIX = _mscl.Timestamp_UNIX - UTC = _mscl.Timestamp_UTC - - def __init__(self, *args): - _mscl.Timestamp_swiginit(self, _mscl.new_Timestamp(*args)) - __swig_destroy__ = _mscl.delete_Timestamp - - def nanoseconds(self, *args): - return _mscl.Timestamp_nanoseconds(self, *args) - - def seconds(self, *args): - return _mscl.Timestamp_seconds(self, *args) - - def storedEpoch(self): - return _mscl.Timestamp_storedEpoch(self) - - def __str__(self): - return _mscl.Timestamp___str__(self) - - def setTime(self, *args): - return _mscl.Timestamp_setTime(self, *args) - - def setTimeNow(self): - return _mscl.Timestamp_setTimeNow(self) - - @staticmethod - def timeNow(): - return _mscl.Timestamp_timeNow() - - @staticmethod - def setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - - @staticmethod - def getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - - @staticmethod - def gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - - @staticmethod - def utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -# Register Timestamp in _mscl: -_mscl.Timestamp_swigregister(Timestamp) - -def Timestamp_timeNow(): - return _mscl.Timestamp_timeNow() - -def Timestamp_setLeapSeconds(gpsLeapSeconds): - return _mscl.Timestamp_setLeapSeconds(gpsLeapSeconds) - -def Timestamp_getLeapSeconds(): - return _mscl.Timestamp_getLeapSeconds() - -def Timestamp_gpsTimeToUtcTime(*args): - return _mscl.Timestamp_gpsTimeToUtcTime(*args) - -def Timestamp_utcTimeToGpsTime(utcNanoseconds): - return _mscl.Timestamp_utcTimeToGpsTime(utcNanoseconds) - -class TimeSpan(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - NANOSECONDS_PER_MICROSECOND = _mscl.TimeSpan_NANOSECONDS_PER_MICROSECOND - NANOSECONDS_PER_MILLISECOND = _mscl.TimeSpan_NANOSECONDS_PER_MILLISECOND - NANOSECONDS_PER_SECOND = _mscl.TimeSpan_NANOSECONDS_PER_SECOND - - def getNanoseconds(self): - return _mscl.TimeSpan_getNanoseconds(self) - - def getMicroseconds(self): - return _mscl.TimeSpan_getMicroseconds(self) - - def getMilliseconds(self): - return _mscl.TimeSpan_getMilliseconds(self) - - def getSeconds(self): - return _mscl.TimeSpan_getSeconds(self) - - @staticmethod - def NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - - @staticmethod - def MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - - @staticmethod - def MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - - @staticmethod - def Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - - @staticmethod - def Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - - @staticmethod - def Hours(hours): - return _mscl.TimeSpan_Hours(hours) - - @staticmethod - def Days(days): - return _mscl.TimeSpan_Days(days) - __swig_destroy__ = _mscl.delete_TimeSpan - -# Register TimeSpan in _mscl: -_mscl.TimeSpan_swigregister(TimeSpan) - -def TimeSpan_NanoSeconds(nanoseconds): - return _mscl.TimeSpan_NanoSeconds(nanoseconds) - -def TimeSpan_MicroSeconds(microseconds): - return _mscl.TimeSpan_MicroSeconds(microseconds) - -def TimeSpan_MilliSeconds(milliseconds): - return _mscl.TimeSpan_MilliSeconds(milliseconds) - -def TimeSpan_Seconds(seconds): - return _mscl.TimeSpan_Seconds(seconds) - -def TimeSpan_Minutes(minutes): - return _mscl.TimeSpan_Minutes(minutes) - -def TimeSpan_Hours(hours): - return _mscl.TimeSpan_Hours(hours) - -def TimeSpan_Days(days): - return _mscl.TimeSpan_Days(days) - -class Version(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Version_swiginit(self, _mscl.new_Version(*args)) - - def __eq__(self, cmp): - return _mscl.Version___eq__(self, cmp) - - def __ne__(self, cmp): - return _mscl.Version___ne__(self, cmp) - - def __lt__(self, cmp): - return _mscl.Version___lt__(self, cmp) - - def __le__(self, cmp): - return _mscl.Version___le__(self, cmp) - - def __gt__(self, cmp): - return _mscl.Version___gt__(self, cmp) - - def __ge__(self, cmp): - return _mscl.Version___ge__(self, cmp) - - def __str__(self): - return _mscl.Version___str__(self) - - def fromString(self, strVersion): - return _mscl.Version_fromString(self, strVersion) - - def majorPart(self): - return _mscl.Version_majorPart(self) - - def minorPart(self): - return _mscl.Version_minorPart(self) - - def patchPart(self): - return _mscl.Version_patchPart(self) - __swig_destroy__ = _mscl.delete_Version - -# Register Version in _mscl: -_mscl.Version_swigregister(Version) - -class DeviceInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.DeviceInfo_connectionType_serial - connectionType_tcp = _mscl.DeviceInfo_connectionType_tcp - - def __init__(self, *args): - _mscl.DeviceInfo_swiginit(self, _mscl.new_DeviceInfo(*args)) - - def description(self): - return _mscl.DeviceInfo_description(self) - - def serial(self): - return _mscl.DeviceInfo_serial(self) - - def baudRate(self): - return _mscl.DeviceInfo_baudRate(self) - - def connectionType(self): - return _mscl.DeviceInfo_connectionType(self) - __swig_destroy__ = _mscl.delete_DeviceInfo - -# Register DeviceInfo in _mscl: -_mscl.DeviceInfo_swigregister(DeviceInfo) -cvar = _mscl.cvar -MSCL_VERSION = cvar.MSCL_VERSION - -class Devices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def listBaseStations(): - return _mscl.Devices_listBaseStations() - - @staticmethod - def listInertialDevices(): - return _mscl.Devices_listInertialDevices() - - @staticmethod - def listPorts(): - return _mscl.Devices_listPorts() - __swig_destroy__ = _mscl.delete_Devices - -# Register Devices in _mscl: -_mscl.Devices_swigregister(Devices) - -def Devices_listBaseStations(): - return _mscl.Devices_listBaseStations() - -def Devices_listInertialDevices(): - return _mscl.Devices_listInertialDevices() - -def Devices_listPorts(): - return _mscl.Devices_listPorts() - -class ConnectionDebugData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ConnectionDebugData_swiginit(self, _mscl.new_ConnectionDebugData(*args)) - - def fromRead(self): - return _mscl.ConnectionDebugData_fromRead(self) - - def timestamp(self): - return _mscl.ConnectionDebugData_timestamp(self) - - def data(self): - return _mscl.ConnectionDebugData_data(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugData - -# Register ConnectionDebugData in _mscl: -_mscl.ConnectionDebugData_swigregister(ConnectionDebugData) - -class Connection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - connectionType_serial = _mscl.Connection_connectionType_serial - connectionType_tcp = _mscl.Connection_connectionType_tcp - connectionType_webSocket = _mscl.Connection_connectionType_webSocket - connectionType_unixSocket = _mscl.Connection_connectionType_unixSocket - - def __init__(self): - _mscl.Connection_swiginit(self, _mscl.new_Connection()) - - @staticmethod - def Serial(*args): - return _mscl.Connection_Serial(*args) - - @staticmethod - def TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - - @staticmethod - def UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - - @staticmethod - def Mock(): - return _mscl.Connection_Mock() - - def description(self): - return _mscl.Connection_description(self) - - def port(self): - return _mscl.Connection_port(self) - - def type(self): - return _mscl.Connection_type(self) - - def disconnect(self): - return _mscl.Connection_disconnect(self) - - def reconnect(self): - return _mscl.Connection_reconnect(self) - - def write(self, bytes): - return _mscl.Connection_write(self, bytes) - - def writeStr(self, bytes): - return _mscl.Connection_writeStr(self, bytes) - - def clearBuffer(self): - return _mscl.Connection_clearBuffer(self) - - def byteReadPos(self): - return _mscl.Connection_byteReadPos(self) - - def byteAppendPos(self): - return _mscl.Connection_byteAppendPos(self) - - def rawByteMode(self, *args): - return _mscl.Connection_rawByteMode(self, *args) - - def getRawBytes(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytes(self, timeout, maxBytes, minBytes) - - def getRawBytesStr(self, timeout=0, maxBytes=0, minBytes=0): - return _mscl.Connection_getRawBytesStr(self, timeout, maxBytes, minBytes) - - def getRawBytesWithPattern(self, pattern, timeout=0): - return _mscl.Connection_getRawBytesWithPattern(self, pattern, timeout) - - def debugMode(self, *args): - return _mscl.Connection_debugMode(self, *args) - - def getDebugData(self, timeout=0): - return _mscl.Connection_getDebugData(self, timeout) - - def updateBaudRate(self, baudRate): - return _mscl.Connection_updateBaudRate(self, baudRate) - __swig_destroy__ = _mscl.delete_Connection - -# Register Connection in _mscl: -_mscl.Connection_swigregister(Connection) - -def Connection_Serial(*args): - return _mscl.Connection_Serial(*args) - -def Connection_TcpIp(*args): - return _mscl.Connection_TcpIp(*args) - -def Connection_UnixSocket(path): - return _mscl.Connection_UnixSocket(path) - -def Connection_Mock(): - return _mscl.Connection_Mock() - -class WirelessTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - beacon_none = _mscl.WirelessTypes_beacon_none - beacon_internalTimer = _mscl.WirelessTypes_beacon_internalTimer - beacon_internalPPS = _mscl.WirelessTypes_beacon_internalPPS - beacon_externalPPS = _mscl.WirelessTypes_beacon_externalPPS - microcontroller_18F452 = _mscl.WirelessTypes_microcontroller_18F452 - microcontroller_18F4620 = _mscl.WirelessTypes_microcontroller_18F4620 - microcontroller_18F46K20 = _mscl.WirelessTypes_microcontroller_18F46K20 - microcontroller_18F67K90 = _mscl.WirelessTypes_microcontroller_18F67K90 - microcontroller_EFM32WG990F256 = _mscl.WirelessTypes_microcontroller_EFM32WG990F256 - microcontroller_EFR32FG1P132F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32FG1P132F256GM48 - microcontroller_EFR32MG1P232F256GM48 = _mscl.WirelessTypes_microcontroller_EFR32MG1P232F256GM48 - collectionMethod_logOnly = _mscl.WirelessTypes_collectionMethod_logOnly - collectionMethod_transmitOnly = _mscl.WirelessTypes_collectionMethod_transmitOnly - collectionMethod_logAndTransmit = _mscl.WirelessTypes_collectionMethod_logAndTransmit - dataType_first = _mscl.WirelessTypes_dataType_first - dataType_uint16_shifted = _mscl.WirelessTypes_dataType_uint16_shifted - dataType_float32 = _mscl.WirelessTypes_dataType_float32 - dataType_uint16_12bitRes = _mscl.WirelessTypes_dataType_uint16_12bitRes - dataType_uint32 = _mscl.WirelessTypes_dataType_uint32 - dataType_uint16 = _mscl.WirelessTypes_dataType_uint16 - dataType_float32_noCals = _mscl.WirelessTypes_dataType_float32_noCals - dataType_uint24_18bitRes = _mscl.WirelessTypes_dataType_uint24_18bitRes - dataType_uint16_18bitTrunc = _mscl.WirelessTypes_dataType_uint16_18bitTrunc - dataType_int24_20bit = _mscl.WirelessTypes_dataType_int24_20bit - dataType_int16_20bitTrunc = _mscl.WirelessTypes_dataType_int16_20bitTrunc - dataType_uint24 = _mscl.WirelessTypes_dataType_uint24 - dataType_uint16_24bitTrunc = _mscl.WirelessTypes_dataType_uint16_24bitTrunc - dataType_int16_x10 = _mscl.WirelessTypes_dataType_int16_x10 - dataType_last = _mscl.WirelessTypes_dataType_last - dataFormat_raw_uint16 = _mscl.WirelessTypes_dataFormat_raw_uint16 - dataFormat_cal_float = _mscl.WirelessTypes_dataFormat_cal_float - dataFormat_raw_uint24 = _mscl.WirelessTypes_dataFormat_raw_uint24 - dataFormat_raw_int24 = _mscl.WirelessTypes_dataFormat_raw_int24 - dataFormat_raw_int16 = _mscl.WirelessTypes_dataFormat_raw_int16 - dataFormat_cal_int16_x10 = _mscl.WirelessTypes_dataFormat_cal_int16_x10 - syncMode_continuous = _mscl.WirelessTypes_syncMode_continuous - syncMode_burst = _mscl.WirelessTypes_syncMode_burst - samplingMode_sync = _mscl.WirelessTypes_samplingMode_sync - samplingMode_syncBurst = _mscl.WirelessTypes_samplingMode_syncBurst - samplingMode_nonSync = _mscl.WirelessTypes_samplingMode_nonSync - samplingMode_armedDatalog = _mscl.WirelessTypes_samplingMode_armedDatalog - samplingMode_syncEvent = _mscl.WirelessTypes_samplingMode_syncEvent - samplingMode_nonSyncEvent = _mscl.WirelessTypes_samplingMode_nonSyncEvent - defaultMode_idle = _mscl.WirelessTypes_defaultMode_idle - defaultMode_ldc = _mscl.WirelessTypes_defaultMode_ldc - defaultMode_datalog = _mscl.WirelessTypes_defaultMode_datalog - defaultMode_sleep = _mscl.WirelessTypes_defaultMode_sleep - defaultMode_sync = _mscl.WirelessTypes_defaultMode_sync - freq_unknown = _mscl.WirelessTypes_freq_unknown - freq_11 = _mscl.WirelessTypes_freq_11 - freq_12 = _mscl.WirelessTypes_freq_12 - freq_13 = _mscl.WirelessTypes_freq_13 - freq_14 = _mscl.WirelessTypes_freq_14 - freq_15 = _mscl.WirelessTypes_freq_15 - freq_16 = _mscl.WirelessTypes_freq_16 - freq_17 = _mscl.WirelessTypes_freq_17 - freq_18 = _mscl.WirelessTypes_freq_18 - freq_19 = _mscl.WirelessTypes_freq_19 - freq_20 = _mscl.WirelessTypes_freq_20 - freq_21 = _mscl.WirelessTypes_freq_21 - freq_22 = _mscl.WirelessTypes_freq_22 - freq_23 = _mscl.WirelessTypes_freq_23 - freq_24 = _mscl.WirelessTypes_freq_24 - freq_25 = _mscl.WirelessTypes_freq_25 - freq_26 = _mscl.WirelessTypes_freq_26 - power_20dBm = _mscl.WirelessTypes_power_20dBm - power_16dBm = _mscl.WirelessTypes_power_16dBm - power_15dBm = _mscl.WirelessTypes_power_15dBm - power_12dBm = _mscl.WirelessTypes_power_12dBm - power_11dBm = _mscl.WirelessTypes_power_11dBm - power_10dBm = _mscl.WirelessTypes_power_10dBm - power_5dBm = _mscl.WirelessTypes_power_5dBm - power_1dBm = _mscl.WirelessTypes_power_1dBm - power_0dBm = _mscl.WirelessTypes_power_0dBm - retransmission_off = _mscl.WirelessTypes_retransmission_off - retransmission_on = _mscl.WirelessTypes_retransmission_on - retransmission_disabled = _mscl.WirelessTypes_retransmission_disabled - trigger_userInit = _mscl.WirelessTypes_trigger_userInit - trigger_ceiling = _mscl.WirelessTypes_trigger_ceiling - trigger_floor = _mscl.WirelessTypes_trigger_floor - trigger_rampUp = _mscl.WirelessTypes_trigger_rampUp - trigger_rampDown = _mscl.WirelessTypes_trigger_rampDown - equation_none = _mscl.WirelessTypes_equation_none - equation_standard = _mscl.WirelessTypes_equation_standard - unit_none = _mscl.WirelessTypes_unit_none - unit_other_bits = _mscl.WirelessTypes_unit_other_bits - unit_strain_strain = _mscl.WirelessTypes_unit_strain_strain - unit_strain_microStrain = _mscl.WirelessTypes_unit_strain_microStrain - unit_accel_g = _mscl.WirelessTypes_unit_accel_g - unit_accel_mPerSec2 = _mscl.WirelessTypes_unit_accel_mPerSec2 - unit_volts_volts = _mscl.WirelessTypes_unit_volts_volts - unit_volts_millivolts = _mscl.WirelessTypes_unit_volts_millivolts - unit_volts_microvolts = _mscl.WirelessTypes_unit_volts_microvolts - unit_temp_celsius = _mscl.WirelessTypes_unit_temp_celsius - unit_temp_kelvin = _mscl.WirelessTypes_unit_temp_kelvin - unit_temp_fahrenheit = _mscl.WirelessTypes_unit_temp_fahrenheit - unit_displacement_meters = _mscl.WirelessTypes_unit_displacement_meters - unit_displacement_millimeters = _mscl.WirelessTypes_unit_displacement_millimeters - unit_displacement_micrometers = _mscl.WirelessTypes_unit_displacement_micrometers - unit_force_lbf = _mscl.WirelessTypes_unit_force_lbf - unit_force_newtons = _mscl.WirelessTypes_unit_force_newtons - unit_force_kiloNewtons = _mscl.WirelessTypes_unit_force_kiloNewtons - unit_mass_kilograms = _mscl.WirelessTypes_unit_mass_kilograms - unit_pressure_bar = _mscl.WirelessTypes_unit_pressure_bar - unit_pressure_psi = _mscl.WirelessTypes_unit_pressure_psi - unit_pressure_atm = _mscl.WirelessTypes_unit_pressure_atm - unit_pressure_mmHg = _mscl.WirelessTypes_unit_pressure_mmHg - unit_pressure_pascal = _mscl.WirelessTypes_unit_pressure_pascal - unit_pressure_megaPascal = _mscl.WirelessTypes_unit_pressure_megaPascal - unit_pressure_kiloPascal = _mscl.WirelessTypes_unit_pressure_kiloPascal - unit_angDisplacement_degrees = _mscl.WirelessTypes_unit_angDisplacement_degrees - unit_angVelocity_degreesPerSec = _mscl.WirelessTypes_unit_angVelocity_degreesPerSec - unit_angVelocity_radiansPerSec = _mscl.WirelessTypes_unit_angVelocity_radiansPerSec - unit_other_percent = _mscl.WirelessTypes_unit_other_percent - unit_freq_rpm = _mscl.WirelessTypes_unit_freq_rpm - unit_freq_hertz = _mscl.WirelessTypes_unit_freq_hertz - unit_rh_percentRh = _mscl.WirelessTypes_unit_rh_percentRh - unit_other_mVperV = _mscl.WirelessTypes_unit_other_mVperV - unit_accel_milliG = _mscl.WirelessTypes_unit_accel_milliG - unit_accel_ftPerSec2 = _mscl.WirelessTypes_unit_accel_ftPerSec2 - unit_other_percentLife = _mscl.WirelessTypes_unit_other_percentLife - unit_other_count = _mscl.WirelessTypes_unit_other_count - unit_displacement_feet = _mscl.WirelessTypes_unit_displacement_feet - unit_displacement_inches = _mscl.WirelessTypes_unit_displacement_inches - unit_displacement_yards = _mscl.WirelessTypes_unit_displacement_yards - unit_displacement_miles = _mscl.WirelessTypes_unit_displacement_miles - unit_displacement_nautMiles = _mscl.WirelessTypes_unit_displacement_nautMiles - unit_displacement_thouInch = _mscl.WirelessTypes_unit_displacement_thouInch - unit_displacement_hundInch = _mscl.WirelessTypes_unit_displacement_hundInch - unit_displacement_kilometers = _mscl.WirelessTypes_unit_displacement_kilometers - unit_displacement_centimeters = _mscl.WirelessTypes_unit_displacement_centimeters - unit_irradiance_wattsPerSqMeter = _mscl.WirelessTypes_unit_irradiance_wattsPerSqMeter - unit_par_microEinstein = _mscl.WirelessTypes_unit_par_microEinstein - unit_mass_pound = _mscl.WirelessTypes_unit_mass_pound - unit_power_watt = _mscl.WirelessTypes_unit_power_watt - unit_power_milliwatt = _mscl.WirelessTypes_unit_power_milliwatt - unit_power_horsepower = _mscl.WirelessTypes_unit_power_horsepower - unit_reactivePower_var = _mscl.WirelessTypes_unit_reactivePower_var - unit_energy_wattHour = _mscl.WirelessTypes_unit_energy_wattHour - unit_energy_kiloWattHour = _mscl.WirelessTypes_unit_energy_kiloWattHour - unit_reactiveEnergy_VARh = _mscl.WirelessTypes_unit_reactiveEnergy_VARh - unit_reactiveEnergy_kVARh = _mscl.WirelessTypes_unit_reactiveEnergy_kVARh - unit_current_ampere = _mscl.WirelessTypes_unit_current_ampere - unit_current_milliampere = _mscl.WirelessTypes_unit_current_milliampere - unit_current_microampere = _mscl.WirelessTypes_unit_current_microampere - unit_pressure_millibar = _mscl.WirelessTypes_unit_pressure_millibar - unit_pressure_inHg = _mscl.WirelessTypes_unit_pressure_inHg - unit_rssi_dBm = _mscl.WirelessTypes_unit_rssi_dBm - unit_freq_kiloHertz = _mscl.WirelessTypes_unit_freq_kiloHertz - unit_angDisplacement_radians = _mscl.WirelessTypes_unit_angDisplacement_radians - unit_velocity_metersPerSec = _mscl.WirelessTypes_unit_velocity_metersPerSec - unit_velocity_kilometersPerSec = _mscl.WirelessTypes_unit_velocity_kilometersPerSec - unit_velocity_kilometersPerHr = _mscl.WirelessTypes_unit_velocity_kilometersPerHr - unit_velocity_milesPerHr = _mscl.WirelessTypes_unit_velocity_milesPerHr - unit_velocity_knots = _mscl.WirelessTypes_unit_velocity_knots - unit_volume_cubicMeter = _mscl.WirelessTypes_unit_volume_cubicMeter - unit_volume_cubicFt = _mscl.WirelessTypes_unit_volume_cubicFt - unit_volume_liters = _mscl.WirelessTypes_unit_volume_liters - unit_volume_gallon = _mscl.WirelessTypes_unit_volume_gallon - unit_flowRate_cubicMetersPerSec = _mscl.WirelessTypes_unit_flowRate_cubicMetersPerSec - unit_flowRate_cubicFtPerSec = _mscl.WirelessTypes_unit_flowRate_cubicFtPerSec - unit_torque_newtonMeter = _mscl.WirelessTypes_unit_torque_newtonMeter - unit_torque_footPounds = _mscl.WirelessTypes_unit_torque_footPounds - unit_torque_inchPounds = _mscl.WirelessTypes_unit_torque_inchPounds - unit_time_secs = _mscl.WirelessTypes_unit_time_secs - unit_time_nanosecs = _mscl.WirelessTypes_unit_time_nanosecs - unit_time_microsecs = _mscl.WirelessTypes_unit_time_microsecs - unit_time_millisecs = _mscl.WirelessTypes_unit_time_millisecs - unit_time_minutes = _mscl.WirelessTypes_unit_time_minutes - unit_time_hours = _mscl.WirelessTypes_unit_time_hours - unit_time_days = _mscl.WirelessTypes_unit_time_days - unit_time_weeks = _mscl.WirelessTypes_unit_time_weeks - unit_other_value = _mscl.WirelessTypes_unit_other_value - unit_magneticFlux_gauss = _mscl.WirelessTypes_unit_magneticFlux_gauss - unit_other_gSec = _mscl.WirelessTypes_unit_other_gSec - unit_other_secsPerSec = _mscl.WirelessTypes_unit_other_secsPerSec - unit_rssi_dBHz = _mscl.WirelessTypes_unit_rssi_dBHz - unit_density_kgPerMeter3 = _mscl.WirelessTypes_unit_density_kgPerMeter3 - unit_other_unitless = _mscl.WirelessTypes_unit_other_unitless - unit_velocity_inchesPerSec = _mscl.WirelessTypes_unit_velocity_inchesPerSec - unit_force_kg = _mscl.WirelessTypes_unit_force_kg - unit_rawVoltage_volts = _mscl.WirelessTypes_unit_rawVoltage_volts - unit_rawVoltage_millivolts = _mscl.WirelessTypes_unit_rawVoltage_millivolts - unit_rawVoltage_microvolts = _mscl.WirelessTypes_unit_rawVoltage_microvolts - unit_resistance_ohm = _mscl.WirelessTypes_unit_resistance_ohm - unit_resistance_milliohm = _mscl.WirelessTypes_unit_resistance_milliohm - unit_resistance_kiloohm = _mscl.WirelessTypes_unit_resistance_kiloohm - unit_velocity_mmPerSec = _mscl.WirelessTypes_unit_velocity_mmPerSec - unit_mass_grams = _mscl.WirelessTypes_unit_mass_grams - unit_mass_ton = _mscl.WirelessTypes_unit_mass_ton - unit_mass_tonne = _mscl.WirelessTypes_unit_mass_tonne - chType_none = _mscl.WirelessTypes_chType_none - chType_fullDifferential = _mscl.WirelessTypes_chType_fullDifferential - chType_singleEnded = _mscl.WirelessTypes_chType_singleEnded - chType_battery = _mscl.WirelessTypes_chType_battery - chType_temperature = _mscl.WirelessTypes_chType_temperature - chType_rh = _mscl.WirelessTypes_chType_rh - chType_acceleration = _mscl.WirelessTypes_chType_acceleration - chType_displacement = _mscl.WirelessTypes_chType_displacement - chType_voltage = _mscl.WirelessTypes_chType_voltage - chType_diffTemperature = _mscl.WirelessTypes_chType_diffTemperature - chType_digital = _mscl.WirelessTypes_chType_digital - chType_tilt = _mscl.WirelessTypes_chType_tilt - voltageType_singleEnded = _mscl.WirelessTypes_voltageType_singleEnded - voltageType_differential = _mscl.WirelessTypes_voltageType_differential - settling_4ms = _mscl.WirelessTypes_settling_4ms - settling_8ms = _mscl.WirelessTypes_settling_8ms - settling_16ms = _mscl.WirelessTypes_settling_16ms - settling_32ms = _mscl.WirelessTypes_settling_32ms - settling_40ms = _mscl.WirelessTypes_settling_40ms - settling_48ms = _mscl.WirelessTypes_settling_48ms - settling_60ms = _mscl.WirelessTypes_settling_60ms - settling_101ms_90db = _mscl.WirelessTypes_settling_101ms_90db - settling_120ms_80db = _mscl.WirelessTypes_settling_120ms_80db - settling_120ms_65db = _mscl.WirelessTypes_settling_120ms_65db - settling_160ms_69db = _mscl.WirelessTypes_settling_160ms_69db - settling_200ms = _mscl.WirelessTypes_settling_200ms - transducer_thermocouple = _mscl.WirelessTypes_transducer_thermocouple - transducer_rtd = _mscl.WirelessTypes_transducer_rtd - transducer_thermistor = _mscl.WirelessTypes_transducer_thermistor - tc_uncompensated = _mscl.WirelessTypes_tc_uncompensated - tc_K = _mscl.WirelessTypes_tc_K - tc_J = _mscl.WirelessTypes_tc_J - tc_R = _mscl.WirelessTypes_tc_R - tc_S = _mscl.WirelessTypes_tc_S - tc_T = _mscl.WirelessTypes_tc_T - tc_E = _mscl.WirelessTypes_tc_E - tc_B = _mscl.WirelessTypes_tc_B - tc_N = _mscl.WirelessTypes_tc_N - tc_customPolynomial = _mscl.WirelessTypes_tc_customPolynomial - rtd_uncompensated = _mscl.WirelessTypes_rtd_uncompensated - rtd_pt10 = _mscl.WirelessTypes_rtd_pt10 - rtd_pt50 = _mscl.WirelessTypes_rtd_pt50 - rtd_pt100 = _mscl.WirelessTypes_rtd_pt100 - rtd_pt200 = _mscl.WirelessTypes_rtd_pt200 - rtd_pt500 = _mscl.WirelessTypes_rtd_pt500 - rtd_pt1000 = _mscl.WirelessTypes_rtd_pt1000 - rtd_2wire = _mscl.WirelessTypes_rtd_2wire - rtd_3wire = _mscl.WirelessTypes_rtd_3wire - rtd_4wire = _mscl.WirelessTypes_rtd_4wire - thermistor_uncompensated = _mscl.WirelessTypes_thermistor_uncompensated - thermistor_44004_44033 = _mscl.WirelessTypes_thermistor_44004_44033 - thermistor_44005_44030 = _mscl.WirelessTypes_thermistor_44005_44030 - thermistor_44007_44034 = _mscl.WirelessTypes_thermistor_44007_44034 - thermistor_44006_44031 = _mscl.WirelessTypes_thermistor_44006_44031 - thermistor_44008_44032 = _mscl.WirelessTypes_thermistor_44008_44032 - thermistor_ysi_400 = _mscl.WirelessTypes_thermistor_ysi_400 - sampleRate_104170Hz = _mscl.WirelessTypes_sampleRate_104170Hz - sampleRate_78125Hz = _mscl.WirelessTypes_sampleRate_78125Hz - sampleRate_62500Hz = _mscl.WirelessTypes_sampleRate_62500Hz - sampleRate_25000Hz = _mscl.WirelessTypes_sampleRate_25000Hz - sampleRate_12500Hz = _mscl.WirelessTypes_sampleRate_12500Hz - sampleRate_3200Hz = _mscl.WirelessTypes_sampleRate_3200Hz - sampleRate_1600Hz = _mscl.WirelessTypes_sampleRate_1600Hz - sampleRate_800Hz = _mscl.WirelessTypes_sampleRate_800Hz - sampleRate_300Hz = _mscl.WirelessTypes_sampleRate_300Hz - sampleRate_1kHz = _mscl.WirelessTypes_sampleRate_1kHz - sampleRate_2kHz = _mscl.WirelessTypes_sampleRate_2kHz - sampleRate_3kHz = _mscl.WirelessTypes_sampleRate_3kHz - sampleRate_4kHz = _mscl.WirelessTypes_sampleRate_4kHz - sampleRate_5kHz = _mscl.WirelessTypes_sampleRate_5kHz - sampleRate_6kHz = _mscl.WirelessTypes_sampleRate_6kHz - sampleRate_7kHz = _mscl.WirelessTypes_sampleRate_7kHz - sampleRate_8kHz = _mscl.WirelessTypes_sampleRate_8kHz - sampleRate_9kHz = _mscl.WirelessTypes_sampleRate_9kHz - sampleRate_10kHz = _mscl.WirelessTypes_sampleRate_10kHz - sampleRate_20kHz = _mscl.WirelessTypes_sampleRate_20kHz - sampleRate_30kHz = _mscl.WirelessTypes_sampleRate_30kHz - sampleRate_40kHz = _mscl.WirelessTypes_sampleRate_40kHz - sampleRate_50kHz = _mscl.WirelessTypes_sampleRate_50kHz - sampleRate_60kHz = _mscl.WirelessTypes_sampleRate_60kHz - sampleRate_70kHz = _mscl.WirelessTypes_sampleRate_70kHz - sampleRate_80kHz = _mscl.WirelessTypes_sampleRate_80kHz - sampleRate_90kHz = _mscl.WirelessTypes_sampleRate_90kHz - sampleRate_100kHz = _mscl.WirelessTypes_sampleRate_100kHz - sampleRate_887Hz = _mscl.WirelessTypes_sampleRate_887Hz - sampleRate_8192Hz = _mscl.WirelessTypes_sampleRate_8192Hz - sampleRate_4096Hz = _mscl.WirelessTypes_sampleRate_4096Hz - sampleRate_2048Hz = _mscl.WirelessTypes_sampleRate_2048Hz - sampleRate_1024Hz = _mscl.WirelessTypes_sampleRate_1024Hz - sampleRate_512Hz = _mscl.WirelessTypes_sampleRate_512Hz - sampleRate_256Hz = _mscl.WirelessTypes_sampleRate_256Hz - sampleRate_128Hz = _mscl.WirelessTypes_sampleRate_128Hz - sampleRate_64Hz = _mscl.WirelessTypes_sampleRate_64Hz - sampleRate_32Hz = _mscl.WirelessTypes_sampleRate_32Hz - sampleRate_16Hz = _mscl.WirelessTypes_sampleRate_16Hz - sampleRate_8Hz = _mscl.WirelessTypes_sampleRate_8Hz - sampleRate_4Hz = _mscl.WirelessTypes_sampleRate_4Hz - sampleRate_2Hz = _mscl.WirelessTypes_sampleRate_2Hz - sampleRate_1Hz = _mscl.WirelessTypes_sampleRate_1Hz - sampleRate_2Sec = _mscl.WirelessTypes_sampleRate_2Sec - sampleRate_5Sec = _mscl.WirelessTypes_sampleRate_5Sec - sampleRate_10Sec = _mscl.WirelessTypes_sampleRate_10Sec - sampleRate_30Sec = _mscl.WirelessTypes_sampleRate_30Sec - sampleRate_1Min = _mscl.WirelessTypes_sampleRate_1Min - sampleRate_2Min = _mscl.WirelessTypes_sampleRate_2Min - sampleRate_5Min = _mscl.WirelessTypes_sampleRate_5Min - sampleRate_10Min = _mscl.WirelessTypes_sampleRate_10Min - sampleRate_30Min = _mscl.WirelessTypes_sampleRate_30Min - sampleRate_60Min = _mscl.WirelessTypes_sampleRate_60Min - sampleRate_24Hours = _mscl.WirelessTypes_sampleRate_24Hours - region_usa = _mscl.WirelessTypes_region_usa - region_europeanUnion = _mscl.WirelessTypes_region_europeanUnion - region_japan = _mscl.WirelessTypes_region_japan - region_other = _mscl.WirelessTypes_region_other - region_brazil = _mscl.WirelessTypes_region_brazil - region_china = _mscl.WirelessTypes_region_china - region_australia_newzealand = _mscl.WirelessTypes_region_australia_newzealand - region_singapore = _mscl.WirelessTypes_region_singapore - region_canada = _mscl.WirelessTypes_region_canada - region_southAfrica = _mscl.WirelessTypes_region_southAfrica - region_indonesia = _mscl.WirelessTypes_region_indonesia - region_taiwan = _mscl.WirelessTypes_region_taiwan - chSetting_inputRange = _mscl.WirelessTypes_chSetting_inputRange - chSetting_filterSettlingTime = _mscl.WirelessTypes_chSetting_filterSettlingTime - chSetting_thermocoupleType = _mscl.WirelessTypes_chSetting_thermocoupleType - chSetting_linearEquation = _mscl.WirelessTypes_chSetting_linearEquation - chSetting_unit = _mscl.WirelessTypes_chSetting_unit - chSetting_equationType = _mscl.WirelessTypes_chSetting_equationType - chSetting_hardwareOffset = _mscl.WirelessTypes_chSetting_hardwareOffset - chSetting_autoBalance = _mscl.WirelessTypes_chSetting_autoBalance - chSetting_gaugeFactor = _mscl.WirelessTypes_chSetting_gaugeFactor - chSetting_antiAliasingFilter = _mscl.WirelessTypes_chSetting_antiAliasingFilter - chSetting_legacyShuntCal = _mscl.WirelessTypes_chSetting_legacyShuntCal - chSetting_autoShuntCal = _mscl.WirelessTypes_chSetting_autoShuntCal - chSetting_lowPassFilter = _mscl.WirelessTypes_chSetting_lowPassFilter - chSetting_highPassFilter = _mscl.WirelessTypes_chSetting_highPassFilter - chSetting_tempSensorOptions = _mscl.WirelessTypes_chSetting_tempSensorOptions - chSetting_debounceFilter = _mscl.WirelessTypes_chSetting_debounceFilter - chSetting_pullUpResistor = _mscl.WirelessTypes_chSetting_pullUpResistor - chSetting_factoryLinearEq = _mscl.WirelessTypes_chSetting_factoryLinearEq - chSetting_factoryUnit = _mscl.WirelessTypes_chSetting_factoryUnit - chSetting_factoryEqType = _mscl.WirelessTypes_chSetting_factoryEqType - autobalance_success = _mscl.WirelessTypes_autobalance_success - autobalance_maybeInvalid = _mscl.WirelessTypes_autobalance_maybeInvalid - autobalance_notSupportedByNode = _mscl.WirelessTypes_autobalance_notSupportedByNode - autobalance_notSupportedByCh = _mscl.WirelessTypes_autobalance_notSupportedByCh - autobalance_targetOutOfRange = _mscl.WirelessTypes_autobalance_targetOutOfRange - autobalance_failed = _mscl.WirelessTypes_autobalance_failed - autobalance_legacyNone = _mscl.WirelessTypes_autobalance_legacyNone - autobalance_notComplete = _mscl.WirelessTypes_autobalance_notComplete - autocal_success = _mscl.WirelessTypes_autocal_success - autocal_maybeInvalid_applied = _mscl.WirelessTypes_autocal_maybeInvalid_applied - autocal_maybeInvalid_notApplied = _mscl.WirelessTypes_autocal_maybeInvalid_notApplied - autocal_notComplete = _mscl.WirelessTypes_autocal_notComplete - autocalError_none = _mscl.WirelessTypes_autocalError_none - autocalError_sensorDetached = _mscl.WirelessTypes_autocalError_sensorDetached - autocalError_sensorShorted = _mscl.WirelessTypes_autocalError_sensorShorted - autocalError_unsupportedChannel = _mscl.WirelessTypes_autocalError_unsupportedChannel - autocalError_baseHighRail = _mscl.WirelessTypes_autocalError_baseHighRail - autocalError_baseLowRail = _mscl.WirelessTypes_autocalError_baseLowRail - autocalError_shuntHighRail = _mscl.WirelessTypes_autocalError_shuntHighRail - autocalError_shuntLowRail = _mscl.WirelessTypes_autocalError_shuntLowRail - autocalError_ramp = _mscl.WirelessTypes_autocalError_ramp - autocalError_noShunt = _mscl.WirelessTypes_autocalError_noShunt - autocalError_timeout = _mscl.WirelessTypes_autocalError_timeout - fatigueMode_angleStrain = _mscl.WirelessTypes_fatigueMode_angleStrain - fatigueMode_distributedAngle = _mscl.WirelessTypes_fatigueMode_distributedAngle - fatigueMode_rawGaugeStrain = _mscl.WirelessTypes_fatigueMode_rawGaugeStrain - eventTrigger_ceiling = _mscl.WirelessTypes_eventTrigger_ceiling - eventTrigger_floor = _mscl.WirelessTypes_eventTrigger_floor - filter_33000hz = _mscl.WirelessTypes_filter_33000hz - filter_20000hz = _mscl.WirelessTypes_filter_20000hz - filter_10000hz = _mscl.WirelessTypes_filter_10000hz - filter_5222hz = _mscl.WirelessTypes_filter_5222hz - filter_5000hz = _mscl.WirelessTypes_filter_5000hz - filter_4416hz = _mscl.WirelessTypes_filter_4416hz - filter_4096hz = _mscl.WirelessTypes_filter_4096hz - filter_4000hz = _mscl.WirelessTypes_filter_4000hz - filter_2208hz = _mscl.WirelessTypes_filter_2208hz - filter_2048hz = _mscl.WirelessTypes_filter_2048hz - filter_2000hz = _mscl.WirelessTypes_filter_2000hz - filter_1104hz = _mscl.WirelessTypes_filter_1104hz - filter_1024hz = _mscl.WirelessTypes_filter_1024hz - filter_1000hz = _mscl.WirelessTypes_filter_1000hz - filter_800hz = _mscl.WirelessTypes_filter_800hz - filter_552hz = _mscl.WirelessTypes_filter_552hz - filter_512hz = _mscl.WirelessTypes_filter_512hz - filter_500hz = _mscl.WirelessTypes_filter_500hz - filter_418hz = _mscl.WirelessTypes_filter_418hz - filter_294hz = _mscl.WirelessTypes_filter_294hz - filter_256hz = _mscl.WirelessTypes_filter_256hz - filter_250hz = _mscl.WirelessTypes_filter_250hz - filter_209hz = _mscl.WirelessTypes_filter_209hz - filter_200hz = _mscl.WirelessTypes_filter_200hz - filter_147hz = _mscl.WirelessTypes_filter_147hz - filter_128hz = _mscl.WirelessTypes_filter_128hz - filter_125hz = _mscl.WirelessTypes_filter_125hz - filter_104hz = _mscl.WirelessTypes_filter_104hz - filter_100hz = _mscl.WirelessTypes_filter_100hz - filter_62hz = _mscl.WirelessTypes_filter_62hz - filter_52hz = _mscl.WirelessTypes_filter_52hz - filter_50hz = _mscl.WirelessTypes_filter_50hz - filter_31hz = _mscl.WirelessTypes_filter_31hz - filter_26hz = _mscl.WirelessTypes_filter_26hz - filter_12_66hz = _mscl.WirelessTypes_filter_12_66hz - filter_2_6hz = _mscl.WirelessTypes_filter_2_6hz - highPass_off = _mscl.WirelessTypes_highPass_off - highPass_auto = _mscl.WirelessTypes_highPass_auto - cfc_10 = _mscl.WirelessTypes_cfc_10 - cfc_21 = _mscl.WirelessTypes_cfc_21 - cfc_60 = _mscl.WirelessTypes_cfc_60 - storageLimit_overwrite = _mscl.WirelessTypes_storageLimit_overwrite - storageLimit_stop = _mscl.WirelessTypes_storageLimit_stop - range_14_545mV = _mscl.WirelessTypes_range_14_545mV - range_10_236mV = _mscl.WirelessTypes_range_10_236mV - range_7_608mV = _mscl.WirelessTypes_range_7_608mV - range_4_046mV = _mscl.WirelessTypes_range_4_046mV - range_2_008mV = _mscl.WirelessTypes_range_2_008mV - range_1_511mV = _mscl.WirelessTypes_range_1_511mV - range_1_001mV = _mscl.WirelessTypes_range_1_001mV - range_0_812mV = _mscl.WirelessTypes_range_0_812mV - range_75mV = _mscl.WirelessTypes_range_75mV - range_37_5mV = _mscl.WirelessTypes_range_37_5mV - range_18_75mV = _mscl.WirelessTypes_range_18_75mV - range_9_38mV = _mscl.WirelessTypes_range_9_38mV - range_4_69mV = _mscl.WirelessTypes_range_4_69mV - range_2_34mV = _mscl.WirelessTypes_range_2_34mV - range_1_17mV = _mscl.WirelessTypes_range_1_17mV - range_0_586mV = _mscl.WirelessTypes_range_0_586mV - range_70mV = _mscl.WirelessTypes_range_70mV - range_35mV = _mscl.WirelessTypes_range_35mV - range_17_5mV = _mscl.WirelessTypes_range_17_5mV - range_8_75mV = _mscl.WirelessTypes_range_8_75mV - range_4_38mV = _mscl.WirelessTypes_range_4_38mV - range_2_19mV = _mscl.WirelessTypes_range_2_19mV - range_1_09mV = _mscl.WirelessTypes_range_1_09mV - range_0_547mV = _mscl.WirelessTypes_range_0_547mV - range_44mV = _mscl.WirelessTypes_range_44mV - range_30mV = _mscl.WirelessTypes_range_30mV - range_20mV = _mscl.WirelessTypes_range_20mV - range_15mV = _mscl.WirelessTypes_range_15mV - range_10mV = _mscl.WirelessTypes_range_10mV - range_5mV = _mscl.WirelessTypes_range_5mV - range_3mV = _mscl.WirelessTypes_range_3mV - range_2mV = _mscl.WirelessTypes_range_2mV - range_6mV = _mscl.WirelessTypes_range_6mV - range_1mV = _mscl.WirelessTypes_range_1mV - range_50mV = _mscl.WirelessTypes_range_50mV - range_2_5mV = _mscl.WirelessTypes_range_2_5mV - range_0_6mV = _mscl.WirelessTypes_range_0_6mV - range_0_35mV = _mscl.WirelessTypes_range_0_35mV - range_0_1mV = _mscl.WirelessTypes_range_0_1mV - range_156mV = _mscl.WirelessTypes_range_156mV - range_78_1mV = _mscl.WirelessTypes_range_78_1mV - range_39mV = _mscl.WirelessTypes_range_39mV - range_19_5mV = _mscl.WirelessTypes_range_19_5mV - range_9_76mV = _mscl.WirelessTypes_range_9_76mV - range_4_88mV = _mscl.WirelessTypes_range_4_88mV - range_2_44mV = _mscl.WirelessTypes_range_2_44mV - range_1_22mV = _mscl.WirelessTypes_range_1_22mV - range_10_24V = _mscl.WirelessTypes_range_10_24V - range_5_12V = _mscl.WirelessTypes_range_5_12V - range_2_56V = _mscl.WirelessTypes_range_2_56V - range_0to10_24V = _mscl.WirelessTypes_range_0to10_24V - range_0to5_12V = _mscl.WirelessTypes_range_0to5_12V - range_1_147V = _mscl.WirelessTypes_range_1_147V - range_585mV = _mscl.WirelessTypes_range_585mV - range_292_5mV = _mscl.WirelessTypes_range_292_5mV - range_146_25mV = _mscl.WirelessTypes_range_146_25mV - range_73_13mV = _mscl.WirelessTypes_range_73_13mV - range_36_56mV = _mscl.WirelessTypes_range_36_56mV - range_18_23mV = _mscl.WirelessTypes_range_18_23mV - range_9_14mV = _mscl.WirelessTypes_range_9_14mV - range_5_74V = _mscl.WirelessTypes_range_5_74V - range_2_93V = _mscl.WirelessTypes_range_2_93V - range_1_46V = _mscl.WirelessTypes_range_1_46V - range_731_3mV = _mscl.WirelessTypes_range_731_3mV - range_365_6mV = _mscl.WirelessTypes_range_365_6mV - range_182_8mV = _mscl.WirelessTypes_range_182_8mV - range_91_4mV = _mscl.WirelessTypes_range_91_4mV - range_45_7mV = _mscl.WirelessTypes_range_45_7mV - range_62_5mV = _mscl.WirelessTypes_range_62_5mV - range_31_25mV = _mscl.WirelessTypes_range_31_25mV - range_15_63mV = _mscl.WirelessTypes_range_15_63mV - range_7_81mV = _mscl.WirelessTypes_range_7_81mV - range_3_91mV = _mscl.WirelessTypes_range_3_91mV - range_1_95mV = _mscl.WirelessTypes_range_1_95mV - range_0_976mV = _mscl.WirelessTypes_range_0_976mV - range_0_488mV = _mscl.WirelessTypes_range_0_488mV - range_2G = _mscl.WirelessTypes_range_2G - range_4G = _mscl.WirelessTypes_range_4G - range_8G = _mscl.WirelessTypes_range_8G - range_10G = _mscl.WirelessTypes_range_10G - range_20G = _mscl.WirelessTypes_range_20G - range_40G = _mscl.WirelessTypes_range_40G - range_2_5V = _mscl.WirelessTypes_range_2_5V - range_1_25V = _mscl.WirelessTypes_range_1_25V - range_625mV = _mscl.WirelessTypes_range_625mV - range_312_5mV = _mscl.WirelessTypes_range_312_5mV - range_156_25mV = _mscl.WirelessTypes_range_156_25mV - range_78_125mV = _mscl.WirelessTypes_range_78_125mV - range_39_063mV = _mscl.WirelessTypes_range_39_063mV - range_19_532mV = _mscl.WirelessTypes_range_19_532mV - range_0to2_5V = _mscl.WirelessTypes_range_0to2_5V - range_0to1_25V = _mscl.WirelessTypes_range_0to1_25V - range_0to625mV = _mscl.WirelessTypes_range_0to625mV - range_0to312_5mV = _mscl.WirelessTypes_range_0to312_5mV - range_0to156_25mV = _mscl.WirelessTypes_range_0to156_25mV - range_0to78_125mV = _mscl.WirelessTypes_range_0to78_125mV - range_0to39_063mV = _mscl.WirelessTypes_range_0to39_063mV - range_0to19_532mV = _mscl.WirelessTypes_range_0to19_532mV - range_9_766mV = _mscl.WirelessTypes_range_9_766mV - range_1_35V_or_0to1000000ohm = _mscl.WirelessTypes_range_1_35V_or_0to1000000ohm - range_1_25V_or_0to10000ohm = _mscl.WirelessTypes_range_1_25V_or_0to10000ohm - range_625mV_or_0to3333_3ohm = _mscl.WirelessTypes_range_625mV_or_0to3333_3ohm - range_312_5mV_or_0to1428_6ohm = _mscl.WirelessTypes_range_312_5mV_or_0to1428_6ohm - range_156_25mV_or_0to666_67ohm = _mscl.WirelessTypes_range_156_25mV_or_0to666_67ohm - range_78_125mV_or_0to322_58ohm = _mscl.WirelessTypes_range_78_125mV_or_0to322_58ohm - range_39_0625mV_or_0to158_73ohm = _mscl.WirelessTypes_range_39_0625mV_or_0to158_73ohm - range_19_5313mV_or_0to78_74ohm = _mscl.WirelessTypes_range_19_5313mV_or_0to78_74ohm - range_750mV = _mscl.WirelessTypes_range_750mV - range_375mV = _mscl.WirelessTypes_range_375mV - range_187_5mV = _mscl.WirelessTypes_range_187_5mV - range_93_75mV = _mscl.WirelessTypes_range_93_75mV - range_46_875mV = _mscl.WirelessTypes_range_46_875mV - range_23_438mV = _mscl.WirelessTypes_range_23_438mV - range_11_719mV = _mscl.WirelessTypes_range_11_719mV - range_5_859mV = _mscl.WirelessTypes_range_5_859mV - range_0to1_5V = _mscl.WirelessTypes_range_0to1_5V - range_0to750mV = _mscl.WirelessTypes_range_0to750mV - range_0to375mV = _mscl.WirelessTypes_range_0to375mV - range_0to187_5mV = _mscl.WirelessTypes_range_0to187_5mV - range_0to93_75mV = _mscl.WirelessTypes_range_0to93_75mV - range_0to46_875mV = _mscl.WirelessTypes_range_0to46_875mV - range_0to23_438mV = _mscl.WirelessTypes_range_0to23_438mV - range_0to11_719mV = _mscl.WirelessTypes_range_0to11_719mV - range_1_5V = _mscl.WirelessTypes_range_1_5V - range_1_35V = _mscl.WirelessTypes_range_1_35V - range_0to1000000ohm = _mscl.WirelessTypes_range_0to1000000ohm - range_0to10000ohm = _mscl.WirelessTypes_range_0to10000ohm - range_0to3333_3ohm = _mscl.WirelessTypes_range_0to3333_3ohm - range_0to1428_6ohm = _mscl.WirelessTypes_range_0to1428_6ohm - range_0to666_67ohm = _mscl.WirelessTypes_range_0to666_67ohm - range_0to322_58ohm = _mscl.WirelessTypes_range_0to322_58ohm - range_0to158_73ohm = _mscl.WirelessTypes_range_0to158_73ohm - range_0to78_74ohm = _mscl.WirelessTypes_range_0to78_74ohm - range_39_0625mV = _mscl.WirelessTypes_range_39_0625mV - range_19_5313mV = _mscl.WirelessTypes_range_19_5313mV - range_125mV = _mscl.WirelessTypes_range_125mV - range_invalid = _mscl.WirelessTypes_range_invalid - dataMode_none = _mscl.WirelessTypes_dataMode_none - dataMode_raw = _mscl.WirelessTypes_dataMode_raw - dataMode_derived = _mscl.WirelessTypes_dataMode_derived - dataMode_raw_derived = _mscl.WirelessTypes_dataMode_raw_derived - derivedCategory_rms = _mscl.WirelessTypes_derivedCategory_rms - derivedCategory_peakToPeak = _mscl.WirelessTypes_derivedCategory_peakToPeak - derivedCategory_velocity = _mscl.WirelessTypes_derivedCategory_velocity - derivedCategory_crestFactor = _mscl.WirelessTypes_derivedCategory_crestFactor - derivedCategory_mean = _mscl.WirelessTypes_derivedCategory_mean - derivedAlgId_rms = _mscl.WirelessTypes_derivedAlgId_rms - derivedAlgId_peakToPeak = _mscl.WirelessTypes_derivedAlgId_peakToPeak - derivedAlgId_ips = _mscl.WirelessTypes_derivedAlgId_ips - derivedAlgId_crestFactor = _mscl.WirelessTypes_derivedAlgId_crestFactor - derivedAlgId_mean = _mscl.WirelessTypes_derivedAlgId_mean - derivedAlgId_mmps = _mscl.WirelessTypes_derivedAlgId_mmps - derivedVelocity_ips = _mscl.WirelessTypes_derivedVelocity_ips - derivedVelocity_mmps = _mscl.WirelessTypes_derivedVelocity_mmps - commProtocol_lxrs = _mscl.WirelessTypes_commProtocol_lxrs - commProtocol_lxrsPlus = _mscl.WirelessTypes_commProtocol_lxrsPlus - voltage_5120mV = _mscl.WirelessTypes_voltage_5120mV - voltage_5000mV = _mscl.WirelessTypes_voltage_5000mV - voltage_4096mV = _mscl.WirelessTypes_voltage_4096mV - voltage_3000mV = _mscl.WirelessTypes_voltage_3000mV - voltage_2800mV = _mscl.WirelessTypes_voltage_2800mV - voltage_2750mV = _mscl.WirelessTypes_voltage_2750mV - voltage_2700mV = _mscl.WirelessTypes_voltage_2700mV - voltage_2500mV = _mscl.WirelessTypes_voltage_2500mV - voltage_1500mV = _mscl.WirelessTypes_voltage_1500mV - sensorOutputMode_accel = _mscl.WirelessTypes_sensorOutputMode_accel - sensorOutputMode_tilt = _mscl.WirelessTypes_sensorOutputMode_tilt - batteryStatus_good = _mscl.WirelessTypes_batteryStatus_good - batteryStatus_low = _mscl.WirelessTypes_batteryStatus_low - batteryStatus_critical = _mscl.WirelessTypes_batteryStatus_critical - externalPower_notConnected = _mscl.WirelessTypes_externalPower_notConnected - externalPower_connected = _mscl.WirelessTypes_externalPower_connected - delayVersion_v1 = _mscl.WirelessTypes_delayVersion_v1 - delayVersion_v2 = _mscl.WirelessTypes_delayVersion_v2 - delayVersion_v3 = _mscl.WirelessTypes_delayVersion_v3 - delayVersion_v4 = _mscl.WirelessTypes_delayVersion_v4 - UNKNOWN_RSSI = _mscl.WirelessTypes_UNKNOWN_RSSI - - def __init__(self): - _mscl.WirelessTypes_swiginit(self, _mscl.new_WirelessTypes()) - __swig_destroy__ = _mscl.delete_WirelessTypes - -# Register WirelessTypes in _mscl: -_mscl.WirelessTypes_swigregister(WirelessTypes) - -class SampleRate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - rateType_seconds = _mscl.SampleRate_rateType_seconds - rateType_hertz = _mscl.SampleRate_rateType_hertz - rateType_event = _mscl.SampleRate_rateType_event - rateType_decimation = _mscl.SampleRate_rateType_decimation - - def __init__(self, *args): - _mscl.SampleRate_swiginit(self, _mscl.new_SampleRate(*args)) - - def __str__(self): - return _mscl.SampleRate___str__(self) - - def prettyStr(self): - return _mscl.SampleRate_prettyStr(self) - - def samplePeriod(self): - return _mscl.SampleRate_samplePeriod(self) - - def samplesPerSecond(self): - return _mscl.SampleRate_samplesPerSecond(self) - - def rateType(self): - return _mscl.SampleRate_rateType(self) - - def samples(self): - return _mscl.SampleRate_samples(self) - - def toWirelessSampleRate(self): - return _mscl.SampleRate_toWirelessSampleRate(self) - - def toDecimation(self, sampleRateBase): - return _mscl.SampleRate_toDecimation(self, sampleRateBase) - - @staticmethod - def Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - - @staticmethod - def KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - - @staticmethod - def Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - - @staticmethod - def Event(): - return _mscl.SampleRate_Event() - - @staticmethod - def Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - - @staticmethod - def FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - - @staticmethod - def FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - __swig_destroy__ = _mscl.delete_SampleRate - -# Register SampleRate in _mscl: -_mscl.SampleRate_swigregister(SampleRate) - -def SampleRate_Hertz(samplesPerSecond): - return _mscl.SampleRate_Hertz(samplesPerSecond) - -def SampleRate_KiloHertz(kSamplesPerSecond): - return _mscl.SampleRate_KiloHertz(kSamplesPerSecond) - -def SampleRate_Seconds(secondsBetweenSamples): - return _mscl.SampleRate_Seconds(secondsBetweenSamples) - -def SampleRate_Event(): - return _mscl.SampleRate_Event() - -def SampleRate_Decimation(rateDecimation): - return _mscl.SampleRate_Decimation(rateDecimation) - -def SampleRate_FromWirelessEepromValue(eepromValue): - return _mscl.SampleRate_FromWirelessEepromValue(eepromValue) - -def SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation): - return _mscl.SampleRate_FromInertialRateDecimationInfo(baseRate, rateDecimation) - -class Matrix(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Matrix_swiginit(self, _mscl.new_Matrix()) - - def valuesType(self): - return _mscl.Matrix_valuesType(self) - - def rows(self): - return _mscl.Matrix_rows(self) - - def columns(self): - return _mscl.Matrix_columns(self) - - def as_doubleAt(self, row, column): - return _mscl.Matrix_as_doubleAt(self, row, column) - - def as_floatAt(self, row, column): - return _mscl.Matrix_as_floatAt(self, row, column) - - def as_uint16At(self, row, column): - return _mscl.Matrix_as_uint16At(self, row, column) - - def as_uint8At(self, row, column): - return _mscl.Matrix_as_uint8At(self, row, column) - - def __str__(self): - return _mscl.Matrix___str__(self) - __swig_destroy__ = _mscl.delete_Matrix - -# Register Matrix in _mscl: -_mscl.Matrix_swigregister(Matrix) - -class Vector(Matrix): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Vector_swiginit(self, _mscl.new_Vector()) - - def size(self): - return _mscl.Vector_size(self) - - def as_doubleAt(self, index): - return _mscl.Vector_as_doubleAt(self, index) - - def as_floatAt(self, index): - return _mscl.Vector_as_floatAt(self, index) - - def as_uint16At(self, index): - return _mscl.Vector_as_uint16At(self, index) - - def as_uint8At(self, index): - return _mscl.Vector_as_uint8At(self, index) - __swig_destroy__ = _mscl.delete_Vector - -# Register Vector in _mscl: -_mscl.Vector_swigregister(Vector) - -class Bitfield(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Bitfield_swiginit(self, _mscl.new_Bitfield(*args)) - __swig_destroy__ = _mscl.delete_Bitfield - - def value(self, *args): - return _mscl.Bitfield_value(self, *args) - - def get(self, mask, shiftToLsb=True): - return _mscl.Bitfield_get(self, mask, shiftToLsb) - - def set(self, mask, value, shiftRequired=True): - return _mscl.Bitfield_set(self, mask, value, shiftRequired) - - def checkBit(self, bitIndex, indexBase=0): - return _mscl.Bitfield_checkBit(self, bitIndex, indexBase) - - def setBit(self, bitIndex, value, indexBase=0): - return _mscl.Bitfield_setBit(self, bitIndex, value, indexBase) - -# Register Bitfield in _mscl: -_mscl.Bitfield_swigregister(Bitfield) - -class StructuralHealth(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, angle, uptime, damage, processingRate, histogram): - _mscl.StructuralHealth_swiginit(self, _mscl.new_StructuralHealth(angle, uptime, damage, processingRate, histogram)) - - def angle(self): - return _mscl.StructuralHealth_angle(self) - - def uptime(self): - return _mscl.StructuralHealth_uptime(self) - - def damage(self): - return _mscl.StructuralHealth_damage(self) - - def processingRate(self): - return _mscl.StructuralHealth_processingRate(self) - - def histogram(self): - return _mscl.StructuralHealth_histogram(self) - __swig_destroy__ = _mscl.delete_StructuralHealth - -# Register StructuralHealth in _mscl: -_mscl.StructuralHealth_swigregister(StructuralHealth) - -class DataPoint(Value): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - channelPropertyId_angle = _mscl.DataPoint_channelPropertyId_angle - channelPropertyId_derivedFrom = _mscl.DataPoint_channelPropertyId_derivedFrom - channelPropertyId_derivedAlgorithmId = _mscl.DataPoint_channelPropertyId_derivedAlgorithmId - __swig_destroy__ = _mscl.delete_DataPoint - - def channelProperty(self, id): - return _mscl.DataPoint_channelProperty(self, id) - - def as_Vector(self): - return _mscl.DataPoint_as_Vector(self) - - def as_Matrix(self): - return _mscl.DataPoint_as_Matrix(self) - - def as_Timestamp(self): - return _mscl.DataPoint_as_Timestamp(self) - - def as_Bytes(self): - return _mscl.DataPoint_as_Bytes(self) - - def as_StructuralHealth(self): - return _mscl.DataPoint_as_StructuralHealth(self) - - def as_RfSweep(self): - return _mscl.DataPoint_as_RfSweep(self) - - def as_string(self): - return _mscl.DataPoint_as_string(self) - -# Register DataPoint in _mscl: -_mscl.DataPoint_swigregister(DataPoint) - -class ConfigIssue(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONFIG_SAMPLING_MODE = _mscl.ConfigIssue_CONFIG_SAMPLING_MODE - CONFIG_ACTIVE_CHANNELS = _mscl.ConfigIssue_CONFIG_ACTIVE_CHANNELS - CONFIG_SAMPLE_RATE = _mscl.ConfigIssue_CONFIG_SAMPLE_RATE - CONFIG_SWEEPS = _mscl.ConfigIssue_CONFIG_SWEEPS - CONFIG_UNLIMITED_DURATION = _mscl.ConfigIssue_CONFIG_UNLIMITED_DURATION - CONFIG_DATA_FORMAT = _mscl.ConfigIssue_CONFIG_DATA_FORMAT - CONFIG_DATA_COLLECTION_METHOD = _mscl.ConfigIssue_CONFIG_DATA_COLLECTION_METHOD - CONFIG_TIME_BETWEEN_BURSTS = _mscl.ConfigIssue_CONFIG_TIME_BETWEEN_BURSTS - CONFIG_THERMOCOUPLE_TYPE = _mscl.ConfigIssue_CONFIG_THERMOCOUPLE_TYPE - CONFIG_FILTER_SETTLING_TIME = _mscl.ConfigIssue_CONFIG_FILTER_SETTLING_TIME - CONFIG_BUTTON = _mscl.ConfigIssue_CONFIG_BUTTON - CONFIG_ANALOG_PAIR = _mscl.ConfigIssue_CONFIG_ANALOG_PAIR - CONFIG_INPUT_RANGE = _mscl.ConfigIssue_CONFIG_INPUT_RANGE - CONFIG_INACTIVITY_TIMEOUT = _mscl.ConfigIssue_CONFIG_INACTIVITY_TIMEOUT - CONFIG_CHECK_RADIO_INTERVAL = _mscl.ConfigIssue_CONFIG_CHECK_RADIO_INTERVAL - CONFIG_LOST_BEACON_TIMEOUT = _mscl.ConfigIssue_CONFIG_LOST_BEACON_TIMEOUT - CONFIG_DEFAULT_MODE = _mscl.ConfigIssue_CONFIG_DEFAULT_MODE - CONFIG_TRANSMIT_POWER = _mscl.ConfigIssue_CONFIG_TRANSMIT_POWER - CONFIG_LINEAR_EQUATION = _mscl.ConfigIssue_CONFIG_LINEAR_EQUATION - CONFIG_FATIGUE = _mscl.ConfigIssue_CONFIG_FATIGUE - CONFIG_FATIGUE_MODE = _mscl.ConfigIssue_CONFIG_FATIGUE_MODE - CONFIG_FATIGUE_ANGLE_ID = _mscl.ConfigIssue_CONFIG_FATIGUE_ANGLE_ID - CONFIG_FATIGUE_SN_CURVE = _mscl.ConfigIssue_CONFIG_FATIGUE_SN_CURVE - CONFIG_FATIGUE_DIST_NUM_ANGLES = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_NUM_ANGLES - CONFIG_FATIGUE_DIST_ANGLE = _mscl.ConfigIssue_CONFIG_FATIGUE_DIST_ANGLE - CONFIG_HISTOGRAM = _mscl.ConfigIssue_CONFIG_HISTOGRAM - CONFIG_HISTOGRAM_TX_RATE = _mscl.ConfigIssue_CONFIG_HISTOGRAM_TX_RATE - CONFIG_HARDWARE_OFFSET = _mscl.ConfigIssue_CONFIG_HARDWARE_OFFSET - CONFIG_ACTIVITY_SENSE = _mscl.ConfigIssue_CONFIG_ACTIVITY_SENSE - CONFIG_GAUGE_FACTOR = _mscl.ConfigIssue_CONFIG_GAUGE_FACTOR - CONFIG_EVENT_TRIGGER = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER - CONFIG_EVENT_TRIGGER_DURATION = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_DURATION - CONFIG_EVENT_TRIGGER_MASK = _mscl.ConfigIssue_CONFIG_EVENT_TRIGGER_MASK - CONFIG_DIAGNOSTIC_INTERVAL = _mscl.ConfigIssue_CONFIG_DIAGNOSTIC_INTERVAL - CONFIG_ANTI_ALIASING_FILTER = _mscl.ConfigIssue_CONFIG_ANTI_ALIASING_FILTER - CONFIG_STORAGE_LIMIT_MODE = _mscl.ConfigIssue_CONFIG_STORAGE_LIMIT_MODE - CONFIG_SENSOR_DELAY = _mscl.ConfigIssue_CONFIG_SENSOR_DELAY - CONFIG_LOW_PASS_FILTER = _mscl.ConfigIssue_CONFIG_LOW_PASS_FILTER - CONFIG_DATA_MODE = _mscl.ConfigIssue_CONFIG_DATA_MODE - CONFIG_DERIVED_DATA_RATE = _mscl.ConfigIssue_CONFIG_DERIVED_DATA_RATE - CONFIG_DERIVED_MASK_RMS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_RMS - CONFIG_DERIVED_MASK_P2P = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_P2P - CONFIG_DERIVED_MASK_IPS = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_IPS - CONFIG_DERIVED_MASK_CREST_FACTOR = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_CREST_FACTOR - CONFIG_HIGH_PASS_FILTER = _mscl.ConfigIssue_CONFIG_HIGH_PASS_FILTER - CONFIG_DERIVED_MASK = _mscl.ConfigIssue_CONFIG_DERIVED_MASK - CONFIG_COMM_PROTOCOL = _mscl.ConfigIssue_CONFIG_COMM_PROTOCOL - CONFIG_DERIVED_MASK_MEAN = _mscl.ConfigIssue_CONFIG_DERIVED_MASK_MEAN - CONFIG_GAUGE_RESISTANCE = _mscl.ConfigIssue_CONFIG_GAUGE_RESISTANCE - CONFIG_NUM_ACTIVE_GAUGES = _mscl.ConfigIssue_CONFIG_NUM_ACTIVE_GAUGES - CONFIG_TEMP_SENSOR_OPTS = _mscl.ConfigIssue_CONFIG_TEMP_SENSOR_OPTS - CONFIG_DEBOUNCE_FILTER = _mscl.ConfigIssue_CONFIG_DEBOUNCE_FILTER - CONFIG_PULLUP_RESISTOR = _mscl.ConfigIssue_CONFIG_PULLUP_RESISTOR - CONFIG_EXCITATION_VOLTAGE = _mscl.ConfigIssue_CONFIG_EXCITATION_VOLTAGE - CONFIG_DERIVED_UNIT = _mscl.ConfigIssue_CONFIG_DERIVED_UNIT - CONFIG_SENSOR_OUTPUT_MODE = _mscl.ConfigIssue_CONFIG_SENSOR_OUTPUT_MODE - CONFIG_LOW_BATTERY_THRESHOLD = _mscl.ConfigIssue_CONFIG_LOW_BATTERY_THRESHOLD - CONFIG_CFC_FILTER = _mscl.ConfigIssue_CONFIG_CFC_FILTER - - def __init__(self, *args): - _mscl.ConfigIssue_swiginit(self, _mscl.new_ConfigIssue(*args)) - - def id(self): - return _mscl.ConfigIssue_id(self) - - def description(self): - return _mscl.ConfigIssue_description(self) - - def isChannelGroupIssue(self): - return _mscl.ConfigIssue_isChannelGroupIssue(self) - - def channelMask(self): - return _mscl.ConfigIssue_channelMask(self) - __swig_destroy__ = _mscl.delete_ConfigIssue - -# Register ConfigIssue in _mscl: -_mscl.ConfigIssue_swigregister(ConfigIssue) - -class ActivitySense(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ActivitySense_swiginit(self, _mscl.new_ActivitySense()) - - def enabled(self, *args): - return _mscl.ActivitySense_enabled(self, *args) - - def activityThreshold(self, *args): - return _mscl.ActivitySense_activityThreshold(self, *args) - - def inactivityThreshold(self, *args): - return _mscl.ActivitySense_inactivityThreshold(self, *args) - - def activityTime(self, *args): - return _mscl.ActivitySense_activityTime(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.ActivitySense_inactivityTimeout(self, *args) - __swig_destroy__ = _mscl.delete_ActivitySense - -# Register ActivitySense in _mscl: -_mscl.ActivitySense_swigregister(ActivitySense) - -class Trigger(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Trigger_swiginit(self, _mscl.new_Trigger(*args)) - - def channelNumber(self, *args): - return _mscl.Trigger_channelNumber(self, *args) - - def triggerType(self, *args): - return _mscl.Trigger_triggerType(self, *args) - - def triggerValue(self, *args): - return _mscl.Trigger_triggerValue(self, *args) - __swig_destroy__ = _mscl.delete_Trigger - -# Register Trigger in _mscl: -_mscl.Trigger_swigregister(Trigger) - -class EventTriggerOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerOptions_swiginit(self, _mscl.new_EventTriggerOptions()) - - def triggerMask(self, *args): - return _mscl.EventTriggerOptions_triggerMask(self, *args) - - def anyTriggersEnabled(self): - return _mscl.EventTriggerOptions_anyTriggersEnabled(self) - - def triggerEnabled(self, triggerIndex): - return _mscl.EventTriggerOptions_triggerEnabled(self, triggerIndex) - - def enableTrigger(self, triggerIndex, enable=True): - return _mscl.EventTriggerOptions_enableTrigger(self, triggerIndex, enable) - - def preDuration(self, *args): - return _mscl.EventTriggerOptions_preDuration(self, *args) - - def postDuration(self, *args): - return _mscl.EventTriggerOptions_postDuration(self, *args) - - def trigger(self, *args): - return _mscl.EventTriggerOptions_trigger(self, *args) - - def triggers(self): - return _mscl.EventTriggerOptions_triggers(self) - __swig_destroy__ = _mscl.delete_EventTriggerOptions - -# Register EventTriggerOptions in _mscl: -_mscl.EventTriggerOptions_swigregister(EventTriggerOptions) - -class SnCurveSegment(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.SnCurveSegment_swiginit(self, _mscl.new_SnCurveSegment(*args)) - - def m(self, *args): - return _mscl.SnCurveSegment_m(self, *args) - - def logA(self, *args): - return _mscl.SnCurveSegment_logA(self, *args) - __swig_destroy__ = _mscl.delete_SnCurveSegment - -# Register SnCurveSegment in _mscl: -_mscl.SnCurveSegment_swigregister(SnCurveSegment) - -class FatigueOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FatigueOptions_swiginit(self, _mscl.new_FatigueOptions()) - - def youngsModulus(self, *args): - return _mscl.FatigueOptions_youngsModulus(self, *args) - - def poissonsRatio(self, *args): - return _mscl.FatigueOptions_poissonsRatio(self, *args) - - def peakValleyThreshold(self, *args): - return _mscl.FatigueOptions_peakValleyThreshold(self, *args) - - def debugMode(self, *args): - return _mscl.FatigueOptions_debugMode(self, *args) - - def damageAngles(self): - return _mscl.FatigueOptions_damageAngles(self) - - def damageAngle(self, *args): - return _mscl.FatigueOptions_damageAngle(self, *args) - - def snCurveSegments(self): - return _mscl.FatigueOptions_snCurveSegments(self) - - def snCurveSegment(self, *args): - return _mscl.FatigueOptions_snCurveSegment(self, *args) - - def fatigueMode(self, *args): - return _mscl.FatigueOptions_fatigueMode(self, *args) - - def distributedAngleMode_numAngles(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_numAngles(self, *args) - - def distributedAngleMode_lowerBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_lowerBound(self, *args) - - def distributedAngleMode_upperBound(self, *args): - return _mscl.FatigueOptions_distributedAngleMode_upperBound(self, *args) - - def histogramEnable(self, *args): - return _mscl.FatigueOptions_histogramEnable(self, *args) - __swig_destroy__ = _mscl.delete_FatigueOptions - -# Register FatigueOptions in _mscl: -_mscl.FatigueOptions_swigregister(FatigueOptions) - -class HistogramOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HistogramOptions_swiginit(self, _mscl.new_HistogramOptions()) - - def transmitRate(self, *args): - return _mscl.HistogramOptions_transmitRate(self, *args) - - def binsStart(self, *args): - return _mscl.HistogramOptions_binsStart(self, *args) - - def binsSize(self, *args): - return _mscl.HistogramOptions_binsSize(self, *args) - __swig_destroy__ = _mscl.delete_HistogramOptions - -# Register HistogramOptions in _mscl: -_mscl.HistogramOptions_swigregister(HistogramOptions) - -class InputRangeEntry(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - inputRange = property(_mscl.InputRangeEntry_inputRange_get, _mscl.InputRangeEntry_inputRange_set) - hasGain = property(_mscl.InputRangeEntry_hasGain_get, _mscl.InputRangeEntry_hasGain_set) - gain = property(_mscl.InputRangeEntry_gain_get, _mscl.InputRangeEntry_gain_set) - - def __init__(self, *args): - _mscl.InputRangeEntry_swiginit(self, _mscl.new_InputRangeEntry(*args)) - __swig_destroy__ = _mscl.delete_InputRangeEntry - -# Register InputRangeEntry in _mscl: -_mscl.InputRangeEntry_swigregister(InputRangeEntry) - -class TempSensorOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - @staticmethod - def Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - - @staticmethod - def RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - - @staticmethod - def Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - - def transducerType(self): - return _mscl.TempSensorOptions_transducerType(self) - - def thermocoupleType(self): - return _mscl.TempSensorOptions_thermocoupleType(self) - - def rtdType(self): - return _mscl.TempSensorOptions_rtdType(self) - - def rtdWireType(self): - return _mscl.TempSensorOptions_rtdWireType(self) - - def thermistorType(self): - return _mscl.TempSensorOptions_thermistorType(self) - __swig_destroy__ = _mscl.delete_TempSensorOptions - -# Register TempSensorOptions in _mscl: -_mscl.TempSensorOptions_swigregister(TempSensorOptions) - -def TempSensorOptions_Thermocouple(thermocouple): - return _mscl.TempSensorOptions_Thermocouple(thermocouple) - -def TempSensorOptions_RTD(wire, rtd): - return _mscl.TempSensorOptions_RTD(wire, rtd) - -def TempSensorOptions_Thermistor(thermistor): - return _mscl.TempSensorOptions_Thermistor(thermistor) - -class WirelessModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_vLink_legacy = _mscl.WirelessModels_node_vLink_legacy - node_cfBearingTempLink = _mscl.WirelessModels_node_cfBearingTempLink - node_envLink_pro = _mscl.WirelessModels_node_envLink_pro - node_gLink_2g = _mscl.WirelessModels_node_gLink_2g - node_gLink_10g = _mscl.WirelessModels_node_gLink_10g - node_gLinkII_cust_in = _mscl.WirelessModels_node_gLinkII_cust_in - node_gLinkII_2g_in = _mscl.WirelessModels_node_gLinkII_2g_in - node_gLinkII_10g_in = _mscl.WirelessModels_node_gLinkII_10g_in - node_gLinkII_cust_ex = _mscl.WirelessModels_node_gLinkII_cust_ex - node_gLinkII_2g_ex = _mscl.WirelessModels_node_gLinkII_2g_ex - node_gLinkII_10g_ex = _mscl.WirelessModels_node_gLinkII_10g_ex - node_gLink_rgd_10g = _mscl.WirelessModels_node_gLink_rgd_10g - node_gLink_200_8g = _mscl.WirelessModels_node_gLink_200_8g - node_gLink_200_40g = _mscl.WirelessModels_node_gLink_200_40g - node_gLink_200_8g_oem = _mscl.WirelessModels_node_gLink_200_8g_oem - node_gLink_200_40g_oem = _mscl.WirelessModels_node_gLink_200_40g_oem - node_gLink_200_8g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_8g_oem_mmcx - node_gLink_200_40g_oem_mmcx = _mscl.WirelessModels_node_gLink_200_40g_oem_mmcx - node_gLink_200_8g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_8g_oem_u_fl - node_gLink_200_40g_oem_u_fl = _mscl.WirelessModels_node_gLink_200_40g_oem_u_fl - node_gLink_200_r = _mscl.WirelessModels_node_gLink_200_r - node_sgLink_oem_S = _mscl.WirelessModels_node_sgLink_oem_S - node_sgLink = _mscl.WirelessModels_node_sgLink - node_sgLink200 = _mscl.WirelessModels_node_sgLink200 - node_sgLink200_hbridge_1K = _mscl.WirelessModels_node_sgLink200_hbridge_1K - node_sgLink200_hbridge_350 = _mscl.WirelessModels_node_sgLink200_hbridge_350 - node_sgLink200_hbridge_120 = _mscl.WirelessModels_node_sgLink200_hbridge_120 - node_sgLink200_qbridge_1K = _mscl.WirelessModels_node_sgLink200_qbridge_1K - node_sgLink200_qbridge_350 = _mscl.WirelessModels_node_sgLink200_qbridge_350 - node_sgLink200_qbridge_120 = _mscl.WirelessModels_node_sgLink200_qbridge_120 - node_sgLink_oem = _mscl.WirelessModels_node_sgLink_oem - node_sgLink_micro = _mscl.WirelessModels_node_sgLink_micro - node_sgLink200_oem = _mscl.WirelessModels_node_sgLink200_oem - node_sgLink200_oem_ufl = _mscl.WirelessModels_node_sgLink200_oem_ufl - node_sgLink200_oem_hbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K - node_sgLink200_oem_hbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_1K_ufl - node_sgLink200_oem_hbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120 - node_sgLink200_oem_hbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_120_ufl - node_sgLink200_oem_hbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350 - node_sgLink200_oem_hbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_hbridge_350_ufl - node_sgLink200_oem_qbridge_1K = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K - node_sgLink200_oem_qbridge_1K_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_1K_ufl - node_sgLink200_oem_qbridge_120 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120 - node_sgLink200_oem_qbridge_120_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_120_ufl - node_sgLink200_oem_qbridge_350 = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350 - node_sgLink200_oem_qbridge_350_ufl = _mscl.WirelessModels_node_sgLink200_oem_qbridge_350_ufl - node_sgLink_rgd = _mscl.WirelessModels_node_sgLink_rgd - node_shmLink = _mscl.WirelessModels_node_shmLink - node_tcLink_1ch = _mscl.WirelessModels_node_tcLink_1ch - node_tcLink_6ch = _mscl.WirelessModels_node_tcLink_6ch - node_tcLink_3ch = _mscl.WirelessModels_node_tcLink_3ch - node_tcLink_6ch_ip67 = _mscl.WirelessModels_node_tcLink_6ch_ip67 - node_tcLink200_oem = _mscl.WirelessModels_node_tcLink200_oem - node_tcLink200_oem_ufl = _mscl.WirelessModels_node_tcLink200_oem_ufl - node_tcLink200 = _mscl.WirelessModels_node_tcLink200 - node_rtdLink200 = _mscl.WirelessModels_node_rtdLink200 - node_tcLink_6ch_ip67_rht = _mscl.WirelessModels_node_tcLink_6ch_ip67_rht - node_vLink = _mscl.WirelessModels_node_vLink - node_vLink200 = _mscl.WirelessModels_node_vLink200 - node_vLink200_qbridge_1K = _mscl.WirelessModels_node_vLink200_qbridge_1K - node_vLink200_qbridge_120 = _mscl.WirelessModels_node_vLink200_qbridge_120 - node_vLink200_qbridge_350 = _mscl.WirelessModels_node_vLink200_qbridge_350 - node_vLink200_hbridge_1K = _mscl.WirelessModels_node_vLink200_hbridge_1K - node_vLink200_hbridge_120 = _mscl.WirelessModels_node_vLink200_hbridge_120 - node_vLink200_hbridge_350 = _mscl.WirelessModels_node_vLink200_hbridge_350 - node_iepeLink = _mscl.WirelessModels_node_iepeLink - node_dvrtLink = _mscl.WirelessModels_node_dvrtLink - node_envLink_mini = _mscl.WirelessModels_node_envLink_mini - node_wattLink = _mscl.WirelessModels_node_wattLink - node_wattLink_3Y208 = _mscl.WirelessModels_node_wattLink_3Y208 - node_wattLink_3D240 = _mscl.WirelessModels_node_wattLink_3D240 - node_wattLink_3Y400 = _mscl.WirelessModels_node_wattLink_3Y400 - node_wattLink_3D400 = _mscl.WirelessModels_node_wattLink_3D400 - node_wattLink_3Y480 = _mscl.WirelessModels_node_wattLink_3Y480 - node_wattLink_3D480 = _mscl.WirelessModels_node_wattLink_3D480 - node_wattLink_3Y600 = _mscl.WirelessModels_node_wattLink_3Y600 - node_ptLink200 = _mscl.WirelessModels_node_ptLink200 - node_rtdLink = _mscl.WirelessModels_node_rtdLink - node_shmLink2_cust1_oldNumber = _mscl.WirelessModels_node_shmLink2_cust1_oldNumber - node_shmLink2_cust1 = _mscl.WirelessModels_node_shmLink2_cust1 - node_shmLink200 = _mscl.WirelessModels_node_shmLink200 - node_shmLink201 = _mscl.WirelessModels_node_shmLink201 - node_shmLink201_qbridge_1K = _mscl.WirelessModels_node_shmLink201_qbridge_1K - node_shmLink201_qbridge_348 = _mscl.WirelessModels_node_shmLink201_qbridge_348 - node_shmLink201_hbridge_1K = _mscl.WirelessModels_node_shmLink201_hbridge_1K - node_shmLink201_hbridge_348 = _mscl.WirelessModels_node_shmLink201_hbridge_348 - node_shmLink201_fullbridge = _mscl.WirelessModels_node_shmLink201_fullbridge - node_shmLink210_fullbridge = _mscl.WirelessModels_node_shmLink210_fullbridge - node_shmLink210_qbridge_3K = _mscl.WirelessModels_node_shmLink210_qbridge_3K - node_torqueLink = _mscl.WirelessModels_node_torqueLink - node_torqueLink200_3ch = _mscl.WirelessModels_node_torqueLink200_3ch - node_torqueLink200 = _mscl.WirelessModels_node_torqueLink200 - node_torqueLink200_3ch_s = _mscl.WirelessModels_node_torqueLink200_3ch_s - node_sgLink_herm = _mscl.WirelessModels_node_sgLink_herm - node_sgLink_herm_2600 = _mscl.WirelessModels_node_sgLink_herm_2600 - node_sgLink_herm_2700 = _mscl.WirelessModels_node_sgLink_herm_2700 - node_sgLink_herm_2800 = _mscl.WirelessModels_node_sgLink_herm_2800 - node_sgLink_herm_2900 = _mscl.WirelessModels_node_sgLink_herm_2900 - node_wirelessImpactSensor = _mscl.WirelessModels_node_wirelessImpactSensor - node_gLink_200_40g_s = _mscl.WirelessModels_node_gLink_200_40g_s - base_wsda_1000 = _mscl.WirelessModels_base_wsda_1000 - base_wsda_1500 = _mscl.WirelessModels_base_wsda_1500 - base_wsda_2000 = _mscl.WirelessModels_base_wsda_2000 - base_wsdaBase_200_legacy = _mscl.WirelessModels_base_wsdaBase_200_legacy - base_wsdaBase_200 = _mscl.WirelessModels_base_wsdaBase_200 - base_wsdaBase_200_extAntenna = _mscl.WirelessModels_base_wsdaBase_200_extAntenna - base_wsdaBase_101_analog = _mscl.WirelessModels_base_wsdaBase_101_analog - base_wsdaBase_102_rs232 = _mscl.WirelessModels_base_wsdaBase_102_rs232 - base_wsdaBase_104_usb = _mscl.WirelessModels_base_wsdaBase_104_usb - base_wsi_104 = _mscl.WirelessModels_base_wsi_104 - base_wsdaBase_mini = _mscl.WirelessModels_base_wsdaBase_mini - - def __init__(self): - _mscl.WirelessModels_swiginit(self, _mscl.new_WirelessModels()) - __swig_destroy__ = _mscl.delete_WirelessModels - -# Register WirelessModels in _mscl: -_mscl.WirelessModels_swigregister(WirelessModels) - -class NodeDiscovery(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def nodeAddress(self): - return _mscl.NodeDiscovery_nodeAddress(self) - - def frequency(self): - return _mscl.NodeDiscovery_frequency(self) - - def panId(self): - return _mscl.NodeDiscovery_panId(self) - - def model(self): - return _mscl.NodeDiscovery_model(self) - - def serialNumber(self): - return _mscl.NodeDiscovery_serialNumber(self) - - def firmwareVersion(self): - return _mscl.NodeDiscovery_firmwareVersion(self) - - def defaultMode(self): - return _mscl.NodeDiscovery_defaultMode(self) - - def builtInTestResult(self): - return _mscl.NodeDiscovery_builtInTestResult(self) - - def communicationProtocol(self): - return _mscl.NodeDiscovery_communicationProtocol(self) - - def asppVersion_lxrs(self): - return _mscl.NodeDiscovery_asppVersion_lxrs(self) - - def asppVersion_lxrsPlus(self): - return _mscl.NodeDiscovery_asppVersion_lxrsPlus(self) - - def baseRssi(self): - return _mscl.NodeDiscovery_baseRssi(self) - - def timestamp(self): - return _mscl.NodeDiscovery_timestamp(self) - - def __init__(self): - _mscl.NodeDiscovery_swiginit(self, _mscl.new_NodeDiscovery()) - __swig_destroy__ = _mscl.delete_NodeDiscovery - -# Register NodeDiscovery in _mscl: -_mscl.NodeDiscovery_swigregister(NodeDiscovery) - -class LinearEquation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LinearEquation_swiginit(self, _mscl.new_LinearEquation(*args)) - - def slope(self, *args): - return _mscl.LinearEquation_slope(self, *args) - - def offset(self, *args): - return _mscl.LinearEquation_offset(self, *args) - __swig_destroy__ = _mscl.delete_LinearEquation - -# Register LinearEquation in _mscl: -_mscl.LinearEquation_swigregister(LinearEquation) - -class CalCoefficients(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CalCoefficients_swiginit(self, _mscl.new_CalCoefficients(*args)) - - def equationType(self): - return _mscl.CalCoefficients_equationType(self) - - def unit(self): - return _mscl.CalCoefficients_unit(self) - - def linearEquation(self): - return _mscl.CalCoefficients_linearEquation(self) - __swig_destroy__ = _mscl.delete_CalCoefficients - -# Register CalCoefficients in _mscl: -_mscl.CalCoefficients_swigregister(CalCoefficients) - -class ChannelGroup(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ChannelGroup_swiginit(self, _mscl.new_ChannelGroup()) - - def channels(self): - return _mscl.ChannelGroup_channels(self) - - def name(self): - return _mscl.ChannelGroup_name(self) - - def eepromLocation(self, setting): - return _mscl.ChannelGroup_eepromLocation(self, setting) - - def settings(self): - return _mscl.ChannelGroup_settings(self) - - def hasSetting(self, setting): - return _mscl.ChannelGroup_hasSetting(self, setting) - - def hasSettingAndChannel(self, setting, channelNumber): - return _mscl.ChannelGroup_hasSettingAndChannel(self, setting, channelNumber) - __swig_destroy__ = _mscl.delete_ChannelGroup - -# Register ChannelGroup in _mscl: -_mscl.ChannelGroup_swigregister(ChannelGroup) - -class WirelessChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - channel_unknown = _mscl.WirelessChannel_channel_unknown - channel_1 = _mscl.WirelessChannel_channel_1 - channel_2 = _mscl.WirelessChannel_channel_2 - channel_3 = _mscl.WirelessChannel_channel_3 - channel_4 = _mscl.WirelessChannel_channel_4 - channel_5 = _mscl.WirelessChannel_channel_5 - channel_6 = _mscl.WirelessChannel_channel_6 - channel_7 = _mscl.WirelessChannel_channel_7 - channel_8 = _mscl.WirelessChannel_channel_8 - channel_9 = _mscl.WirelessChannel_channel_9 - channel_10 = _mscl.WirelessChannel_channel_10 - channel_11 = _mscl.WirelessChannel_channel_11 - channel_12 = _mscl.WirelessChannel_channel_12 - channel_13 = _mscl.WirelessChannel_channel_13 - channel_14 = _mscl.WirelessChannel_channel_14 - channel_15 = _mscl.WirelessChannel_channel_15 - channel_16 = _mscl.WirelessChannel_channel_16 - channel_digital_1 = _mscl.WirelessChannel_channel_digital_1 - channel_digital_2 = _mscl.WirelessChannel_channel_digital_2 - channel_digital_3 = _mscl.WirelessChannel_channel_digital_3 - channel_digital_4 = _mscl.WirelessChannel_channel_digital_4 - channel_digital_5 = _mscl.WirelessChannel_channel_digital_5 - channel_digital_6 = _mscl.WirelessChannel_channel_digital_6 - channel_digital_7 = _mscl.WirelessChannel_channel_digital_7 - channel_digital_8 = _mscl.WirelessChannel_channel_digital_8 - channel_digital_9 = _mscl.WirelessChannel_channel_digital_9 - channel_digital_10 = _mscl.WirelessChannel_channel_digital_10 - channel_digital_11 = _mscl.WirelessChannel_channel_digital_11 - channel_digital_12 = _mscl.WirelessChannel_channel_digital_12 - channel_digital_13 = _mscl.WirelessChannel_channel_digital_13 - channel_digital_14 = _mscl.WirelessChannel_channel_digital_14 - channel_digital_15 = _mscl.WirelessChannel_channel_digital_15 - channel_digital_16 = _mscl.WirelessChannel_channel_digital_16 - channel_structuralHealth = _mscl.WirelessChannel_channel_structuralHealth - channel_hcl_rawBase_mag1_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_x - channel_hcl_rawBase_mag1_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_y - channel_hcl_rawBase_mag1_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag1_z - channel_hcl_rawBase_mag2_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_x - channel_hcl_rawBase_mag2_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_y - channel_hcl_rawBase_mag2_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag2_z - channel_hcl_rawBase_mag3_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_x - channel_hcl_rawBase_mag3_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_y - channel_hcl_rawBase_mag3_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag3_z - channel_hcl_rawBase_mag4_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_x - channel_hcl_rawBase_mag4_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_y - channel_hcl_rawBase_mag4_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag4_z - channel_hcl_rawBase_mag5_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_x - channel_hcl_rawBase_mag5_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_y - channel_hcl_rawBase_mag5_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag5_z - channel_hcl_rawBase_mag6_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_x - channel_hcl_rawBase_mag6_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_y - channel_hcl_rawBase_mag6_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag6_z - channel_hcl_rawBase_mag7_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_x - channel_hcl_rawBase_mag7_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_y - channel_hcl_rawBase_mag7_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag7_z - channel_hcl_rawBase_mag8_x = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_x - channel_hcl_rawBase_mag8_y = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_y - channel_hcl_rawBase_mag8_z = _mscl.WirelessChannel_channel_hcl_rawBase_mag8_z - channel_hcl_rawBase_gyro_x = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_x - channel_hcl_rawBase_gyro_y = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_y - channel_hcl_rawBase_gyro_z = _mscl.WirelessChannel_channel_hcl_rawBase_gyro_z - channel_error_code = _mscl.WirelessChannel_channel_error_code - channel_hcl_rawStrain_BL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL30 - channel_hcl_rawStrain_BL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL120 - channel_hcl_rawStrain_A60 = _mscl.WirelessChannel_channel_hcl_rawStrain_A60 - channel_hcl_rawStrain_A150 = _mscl.WirelessChannel_channel_hcl_rawStrain_A150 - channel_hcl_rawStrain_AL30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL30 - channel_hcl_rawStrain_AL120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL120 - channel_hcl_rawStrain_BR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR60 - channel_hcl_rawStrain_BR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR150 - channel_hcl_rawStrain_B30 = _mscl.WirelessChannel_channel_hcl_rawStrain_B30 - channel_hcl_rawStrain_T120 = _mscl.WirelessChannel_channel_hcl_rawStrain_T120 - channel_hcl_rawStrain_AR60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR60 - channel_hcl_rawStrain_AR150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR150 - channel_hcl_rawStrain_A30 = _mscl.WirelessChannel_channel_hcl_rawStrain_A30 - channel_hcl_rawStrain_A120 = _mscl.WirelessChannel_channel_hcl_rawStrain_A120 - channel_hcl_rawStrain_BL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL90 - channel_hcl_rawStrain_BL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL180 - channel_hcl_rawStrain_BR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR30 - channel_hcl_rawStrain_BR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR120 - channel_hcl_rawStrain_AL90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL90 - channel_hcl_rawStrain_AL180 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL180 - channel_hcl_rawStrain_AR30 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR30 - channel_hcl_rawStrain_AR120 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR120 - channel_hcl_rawStrain_B90 = _mscl.WirelessChannel_channel_hcl_rawStrain_B90 - channel_hcl_rawStrain_T0 = _mscl.WirelessChannel_channel_hcl_rawStrain_T0 - channel_hcl_rawStrain_BL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL60 - channel_hcl_rawStrain_BL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_BL150 - channel_hcl_rawStrain_A90 = _mscl.WirelessChannel_channel_hcl_rawStrain_A90 - channel_hcl_rawStrain_A0 = _mscl.WirelessChannel_channel_hcl_rawStrain_A0 - channel_hcl_rawStrain_AL60 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL60 - channel_hcl_rawStrain_AL150 = _mscl.WirelessChannel_channel_hcl_rawStrain_AL150 - channel_hcl_rawStrain_BR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR90 - channel_hcl_rawStrain_BR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_BR0 - channel_hcl_rawStrain_T60 = _mscl.WirelessChannel_channel_hcl_rawStrain_T60 - channel_hcl_rawStrain_B150 = _mscl.WirelessChannel_channel_hcl_rawStrain_B150 - channel_hcl_rawStrain_AR90 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR90 - channel_hcl_rawStrain_AR0 = _mscl.WirelessChannel_channel_hcl_rawStrain_AR0 - channel_hcl_rawInertial_accel1 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel1 - channel_hcl_rawInertial_accel2 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel2 - channel_hcl_rawInertial_accel3 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel3 - channel_hcl_rawInertial_accel4 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel4 - channel_hcl_rawInertial_accel5 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel5 - channel_hcl_rawInertial_accel6 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel6 - channel_hcl_rawInertial_accel7 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel7 - channel_hcl_rawInertial_accel8 = _mscl.WirelessChannel_channel_hcl_rawInertial_accel8 - channel_hcl_rawInertial_gyroX = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroX - channel_hcl_rawInertial_gyroY = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroY - channel_hcl_rawInertial_gyroZ = _mscl.WirelessChannel_channel_hcl_rawInertial_gyroZ - channel_rawAngleStrain = _mscl.WirelessChannel_channel_rawAngleStrain - channel_beaconEcho = _mscl.WirelessChannel_channel_beaconEcho - channel_rfSweep = _mscl.WirelessChannel_channel_rfSweep - channel_diag_state = _mscl.WirelessChannel_channel_diag_state - channel_diag_runtime_idle = _mscl.WirelessChannel_channel_diag_runtime_idle - channel_diag_runtime_sleep = _mscl.WirelessChannel_channel_diag_runtime_sleep - channel_diag_runtime_activeRun = _mscl.WirelessChannel_channel_diag_runtime_activeRun - channel_diag_runtime_inactiveRun = _mscl.WirelessChannel_channel_diag_runtime_inactiveRun - channel_diag_resetCounter = _mscl.WirelessChannel_channel_diag_resetCounter - channel_diag_lowBatteryFlag = _mscl.WirelessChannel_channel_diag_lowBatteryFlag - channel_diag_sweepIndex = _mscl.WirelessChannel_channel_diag_sweepIndex - channel_diag_badSweepCount = _mscl.WirelessChannel_channel_diag_badSweepCount - channel_diag_totalTx = _mscl.WirelessChannel_channel_diag_totalTx - channel_diag_totalReTx = _mscl.WirelessChannel_channel_diag_totalReTx - channel_diag_totalDroppedPackets = _mscl.WirelessChannel_channel_diag_totalDroppedPackets - channel_diag_builtInTestResult = _mscl.WirelessChannel_channel_diag_builtInTestResult - channel_diag_eventIndex = _mscl.WirelessChannel_channel_diag_eventIndex - channel_hcl_axialLoadX = _mscl.WirelessChannel_channel_hcl_axialLoadX - channel_hcl_axialLoadY = _mscl.WirelessChannel_channel_hcl_axialLoadY - channel_hcl_axialLoadZ = _mscl.WirelessChannel_channel_hcl_axialLoadZ - channel_hcl_bendingMomentFlap = _mscl.WirelessChannel_channel_hcl_bendingMomentFlap - channel_hcl_bendingMomentLag = _mscl.WirelessChannel_channel_hcl_bendingMomentLag - channel_hcl_bendingMomentPitch = _mscl.WirelessChannel_channel_hcl_bendingMomentPitch - channel_hcl_motionFlap_mag = _mscl.WirelessChannel_channel_hcl_motionFlap_mag - channel_hcl_motionLag_mag = _mscl.WirelessChannel_channel_hcl_motionLag_mag - channel_hcl_motionPitch_mag = _mscl.WirelessChannel_channel_hcl_motionPitch_mag - channel_hcl_motionFlap_inertial = _mscl.WirelessChannel_channel_hcl_motionFlap_inertial - channel_hcl_motionLag_inertial = _mscl.WirelessChannel_channel_hcl_motionLag_inertial - channel_hcl_motionPitch_inertial = _mscl.WirelessChannel_channel_hcl_motionPitch_inertial - channel_hcl_cockingStiffness_mag = _mscl.WirelessChannel_channel_hcl_cockingStiffness_mag - channel_hcl_cockingStiffness_inertial = _mscl.WirelessChannel_channel_hcl_cockingStiffness_inertial - channel_hcl_temperature = _mscl.WirelessChannel_channel_hcl_temperature - channel_diag_externalPower = _mscl.WirelessChannel_channel_diag_externalPower - channel_diag_internalTemp = _mscl.WirelessChannel_channel_diag_internalTemp - channel_1_rms = _mscl.WirelessChannel_channel_1_rms - channel_2_rms = _mscl.WirelessChannel_channel_2_rms - channel_3_rms = _mscl.WirelessChannel_channel_3_rms - channel_4_rms = _mscl.WirelessChannel_channel_4_rms - channel_5_rms = _mscl.WirelessChannel_channel_5_rms - channel_6_rms = _mscl.WirelessChannel_channel_6_rms - channel_7_rms = _mscl.WirelessChannel_channel_7_rms - channel_8_rms = _mscl.WirelessChannel_channel_8_rms - channel_9_rms = _mscl.WirelessChannel_channel_9_rms - channel_10_rms = _mscl.WirelessChannel_channel_10_rms - channel_11_rms = _mscl.WirelessChannel_channel_11_rms - channel_12_rms = _mscl.WirelessChannel_channel_12_rms - channel_13_rms = _mscl.WirelessChannel_channel_13_rms - channel_14_rms = _mscl.WirelessChannel_channel_14_rms - channel_15_rms = _mscl.WirelessChannel_channel_15_rms - channel_16_rms = _mscl.WirelessChannel_channel_16_rms - channel_1_peakToPeak = _mscl.WirelessChannel_channel_1_peakToPeak - channel_2_peakToPeak = _mscl.WirelessChannel_channel_2_peakToPeak - channel_3_peakToPeak = _mscl.WirelessChannel_channel_3_peakToPeak - channel_4_peakToPeak = _mscl.WirelessChannel_channel_4_peakToPeak - channel_5_peakToPeak = _mscl.WirelessChannel_channel_5_peakToPeak - channel_6_peakToPeak = _mscl.WirelessChannel_channel_6_peakToPeak - channel_7_peakToPeak = _mscl.WirelessChannel_channel_7_peakToPeak - channel_8_peakToPeak = _mscl.WirelessChannel_channel_8_peakToPeak - channel_9_peakToPeak = _mscl.WirelessChannel_channel_9_peakToPeak - channel_10_peakToPeak = _mscl.WirelessChannel_channel_10_peakToPeak - channel_11_peakToPeak = _mscl.WirelessChannel_channel_11_peakToPeak - channel_12_peakToPeak = _mscl.WirelessChannel_channel_12_peakToPeak - channel_13_peakToPeak = _mscl.WirelessChannel_channel_13_peakToPeak - channel_14_peakToPeak = _mscl.WirelessChannel_channel_14_peakToPeak - channel_15_peakToPeak = _mscl.WirelessChannel_channel_15_peakToPeak - channel_16_peakToPeak = _mscl.WirelessChannel_channel_16_peakToPeak - channel_1_ips = _mscl.WirelessChannel_channel_1_ips - channel_2_ips = _mscl.WirelessChannel_channel_2_ips - channel_3_ips = _mscl.WirelessChannel_channel_3_ips - channel_4_ips = _mscl.WirelessChannel_channel_4_ips - channel_5_ips = _mscl.WirelessChannel_channel_5_ips - channel_6_ips = _mscl.WirelessChannel_channel_6_ips - channel_7_ips = _mscl.WirelessChannel_channel_7_ips - channel_8_ips = _mscl.WirelessChannel_channel_8_ips - channel_9_ips = _mscl.WirelessChannel_channel_9_ips - channel_10_ips = _mscl.WirelessChannel_channel_10_ips - channel_11_ips = _mscl.WirelessChannel_channel_11_ips - channel_12_ips = _mscl.WirelessChannel_channel_12_ips - channel_13_ips = _mscl.WirelessChannel_channel_13_ips - channel_14_ips = _mscl.WirelessChannel_channel_14_ips - channel_15_ips = _mscl.WirelessChannel_channel_15_ips - channel_16_ips = _mscl.WirelessChannel_channel_16_ips - channel_1_crestFactor = _mscl.WirelessChannel_channel_1_crestFactor - channel_2_crestFactor = _mscl.WirelessChannel_channel_2_crestFactor - channel_3_crestFactor = _mscl.WirelessChannel_channel_3_crestFactor - channel_4_crestFactor = _mscl.WirelessChannel_channel_4_crestFactor - channel_5_crestFactor = _mscl.WirelessChannel_channel_5_crestFactor - channel_6_crestFactor = _mscl.WirelessChannel_channel_6_crestFactor - channel_7_crestFactor = _mscl.WirelessChannel_channel_7_crestFactor - channel_8_crestFactor = _mscl.WirelessChannel_channel_8_crestFactor - channel_9_crestFactor = _mscl.WirelessChannel_channel_9_crestFactor - channel_10_crestFactor = _mscl.WirelessChannel_channel_10_crestFactor - channel_11_crestFactor = _mscl.WirelessChannel_channel_11_crestFactor - channel_12_crestFactor = _mscl.WirelessChannel_channel_12_crestFactor - channel_13_crestFactor = _mscl.WirelessChannel_channel_13_crestFactor - channel_14_crestFactor = _mscl.WirelessChannel_channel_14_crestFactor - channel_15_crestFactor = _mscl.WirelessChannel_channel_15_crestFactor - channel_16_crestFactor = _mscl.WirelessChannel_channel_16_crestFactor - channel_diag_syncAttempts = _mscl.WirelessChannel_channel_diag_syncAttempts - channel_diag_syncFailures = _mscl.WirelessChannel_channel_diag_syncFailures - channel_diag_secsSinceLastSync = _mscl.WirelessChannel_channel_diag_secsSinceLastSync - channel_beaconConflict = _mscl.WirelessChannel_channel_beaconConflict - channel_1_mean = _mscl.WirelessChannel_channel_1_mean - channel_2_mean = _mscl.WirelessChannel_channel_2_mean - channel_3_mean = _mscl.WirelessChannel_channel_3_mean - channel_4_mean = _mscl.WirelessChannel_channel_4_mean - channel_5_mean = _mscl.WirelessChannel_channel_5_mean - channel_6_mean = _mscl.WirelessChannel_channel_6_mean - channel_7_mean = _mscl.WirelessChannel_channel_7_mean - channel_8_mean = _mscl.WirelessChannel_channel_8_mean - channel_9_mean = _mscl.WirelessChannel_channel_9_mean - channel_10_mean = _mscl.WirelessChannel_channel_10_mean - channel_11_mean = _mscl.WirelessChannel_channel_11_mean - channel_12_mean = _mscl.WirelessChannel_channel_12_mean - channel_13_mean = _mscl.WirelessChannel_channel_13_mean - channel_14_mean = _mscl.WirelessChannel_channel_14_mean - channel_15_mean = _mscl.WirelessChannel_channel_15_mean - channel_16_mean = _mscl.WirelessChannel_channel_16_mean - channel_1_mmps = _mscl.WirelessChannel_channel_1_mmps - channel_2_mmps = _mscl.WirelessChannel_channel_2_mmps - channel_3_mmps = _mscl.WirelessChannel_channel_3_mmps - channel_4_mmps = _mscl.WirelessChannel_channel_4_mmps - channel_5_mmps = _mscl.WirelessChannel_channel_5_mmps - channel_6_mmps = _mscl.WirelessChannel_channel_6_mmps - channel_7_mmps = _mscl.WirelessChannel_channel_7_mmps - channel_8_mmps = _mscl.WirelessChannel_channel_8_mmps - channel_9_mmps = _mscl.WirelessChannel_channel_9_mmps - channel_10_mmps = _mscl.WirelessChannel_channel_10_mmps - channel_11_mmps = _mscl.WirelessChannel_channel_11_mmps - channel_12_mmps = _mscl.WirelessChannel_channel_12_mmps - channel_13_mmps = _mscl.WirelessChannel_channel_13_mmps - channel_14_mmps = _mscl.WirelessChannel_channel_14_mmps - channel_15_mmps = _mscl.WirelessChannel_channel_15_mmps - channel_16_mmps = _mscl.WirelessChannel_channel_16_mmps - channel_diag_memoryFull = _mscl.WirelessChannel_channel_diag_memoryFull - - def __init__(self, *args): - _mscl.WirelessChannel_swiginit(self, _mscl.new_WirelessChannel(*args)) - - def channelNumber(self): - return _mscl.WirelessChannel_channelNumber(self) - - def id(self): - return _mscl.WirelessChannel_id(self) - - def type(self): - return _mscl.WirelessChannel_type(self) - - def description(self): - return _mscl.WirelessChannel_description(self) - - def adcResolution(self): - return _mscl.WirelessChannel_adcResolution(self) - - def adcMaxValue(self): - return _mscl.WirelessChannel_adcMaxValue(self) - - def name(self): - return _mscl.WirelessChannel_name(self) - __swig_destroy__ = _mscl.delete_WirelessChannel - -# Register WirelessChannel in _mscl: -_mscl.WirelessChannel_swigregister(WirelessChannel) - -class WirelessDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessDataPoint_swiginit(self, _mscl.new_WirelessDataPoint()) - - def channelId(self): - return _mscl.WirelessDataPoint_channelId(self) - - def channelNumber(self): - return _mscl.WirelessDataPoint_channelNumber(self) - - def channelName(self): - return _mscl.WirelessDataPoint_channelName(self) - __swig_destroy__ = _mscl.delete_WirelessDataPoint - -# Register WirelessDataPoint in _mscl: -_mscl.WirelessDataPoint_swigregister(WirelessDataPoint) - -class DataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - samplingType_NonSync = _mscl.DataSweep_samplingType_NonSync - samplingType_NonSync_Buffered = _mscl.DataSweep_samplingType_NonSync_Buffered - samplingType_SyncSampling = _mscl.DataSweep_samplingType_SyncSampling - samplingType_SyncSampling_Burst = _mscl.DataSweep_samplingType_SyncSampling_Burst - samplingType_AsyncDigital = _mscl.DataSweep_samplingType_AsyncDigital - samplingType_AsyncDigitalAnalog = _mscl.DataSweep_samplingType_AsyncDigitalAnalog - samplingType_SHM = _mscl.DataSweep_samplingType_SHM - samplingType_BeaconEcho = _mscl.DataSweep_samplingType_BeaconEcho - samplingType_RfSweep = _mscl.DataSweep_samplingType_RfSweep - samplingType_Diagnostic = _mscl.DataSweep_samplingType_Diagnostic - - def __init__(self): - _mscl.DataSweep_swiginit(self, _mscl.new_DataSweep()) - - def timestamp(self): - return _mscl.DataSweep_timestamp(self) - - def tick(self): - return _mscl.DataSweep_tick(self) - - def sampleRate(self): - return _mscl.DataSweep_sampleRate(self) - - def nodeAddress(self): - return _mscl.DataSweep_nodeAddress(self) - - def data(self): - return _mscl.DataSweep_data(self) - - def samplingType(self): - return _mscl.DataSweep_samplingType(self) - - def nodeRssi(self): - return _mscl.DataSweep_nodeRssi(self) - - def baseRssi(self): - return _mscl.DataSweep_baseRssi(self) - - def frequency(self): - return _mscl.DataSweep_frequency(self) - - def calApplied(self): - return _mscl.DataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_DataSweep - -# Register DataSweep in _mscl: -_mscl.DataSweep_swigregister(DataSweep) - -class BaseStationAnalogPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationAnalogPair_swiginit(self, _mscl.new_BaseStationAnalogPair()) - - @staticmethod - def Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - - @staticmethod - def NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - - def nodeAddress(self, *args): - return _mscl.BaseStationAnalogPair_nodeAddress(self, *args) - - def nodeChannel(self, *args): - return _mscl.BaseStationAnalogPair_nodeChannel(self, *args) - - def expectFloatData(self, *args): - return _mscl.BaseStationAnalogPair_expectFloatData(self, *args) - - def outputVal_0V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_0V(self, *args) - - def outputVal_3V(self, *args): - return _mscl.BaseStationAnalogPair_outputVal_3V(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationAnalogPair - -# Register BaseStationAnalogPair in _mscl: -_mscl.BaseStationAnalogPair_swigregister(BaseStationAnalogPair) -BaseStationAnalogPair.CHANNEL_NOT_FLOAT = _mscl.cvar.BaseStationAnalogPair_CHANNEL_NOT_FLOAT - -def BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V): - return _mscl.BaseStationAnalogPair_Float(nodeAddress, nodeChannel, output_0V, output_3V) - -def BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel): - return _mscl.BaseStationAnalogPair_NonFloat(nodeAddress, nodeChannel) - -class BaseStationButton(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - btn_nodeSleep = _mscl.BaseStationButton_btn_nodeSleep - btn_nodeStop = _mscl.BaseStationButton_btn_nodeStop - btn_enableBeacon = _mscl.BaseStationButton_btn_enableBeacon - btn_disableBeacon = _mscl.BaseStationButton_btn_disableBeacon - btn_nodeNonSyncSampling = _mscl.BaseStationButton_btn_nodeNonSyncSampling - btn_nodeSyncSampling = _mscl.BaseStationButton_btn_nodeSyncSampling - btn_nodeArmedDatalogging = _mscl.BaseStationButton_btn_nodeArmedDatalogging - btn_cyclePower = _mscl.BaseStationButton_btn_cyclePower - btn_disabled = _mscl.BaseStationButton_btn_disabled - - def __init__(self, *args): - _mscl.BaseStationButton_swiginit(self, _mscl.new_BaseStationButton(*args)) - - def command(self, *args): - return _mscl.BaseStationButton_command(self, *args) - - def nodeAddress(self, *args): - return _mscl.BaseStationButton_nodeAddress(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationButton - -# Register BaseStationButton in _mscl: -_mscl.BaseStationButton_swigregister(BaseStationButton) - -class BaseStationConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.BaseStationConfig_swiginit(self, _mscl.new_BaseStationConfig()) - - def transmitPower(self, *args): - return _mscl.BaseStationConfig_transmitPower(self, *args) - - def communicationProtocol(self, *args): - return _mscl.BaseStationConfig_communicationProtocol(self, *args) - - def buttonLongPress(self, *args): - return _mscl.BaseStationConfig_buttonLongPress(self, *args) - - def buttonShortPress(self, *args): - return _mscl.BaseStationConfig_buttonShortPress(self, *args) - - def analogPairingEnable(self, *args): - return _mscl.BaseStationConfig_analogPairingEnable(self, *args) - - def analogTimeoutTime(self, *args): - return _mscl.BaseStationConfig_analogTimeoutTime(self, *args) - - def analogTimeoutVoltage(self, *args): - return _mscl.BaseStationConfig_analogTimeoutVoltage(self, *args) - - def analogExceedanceEnable(self, *args): - return _mscl.BaseStationConfig_analogExceedanceEnable(self, *args) - - def analogPairing(self, *args): - return _mscl.BaseStationConfig_analogPairing(self, *args) - __swig_destroy__ = _mscl.delete_BaseStationConfig - -# Register BaseStationConfig in _mscl: -_mscl.BaseStationConfig_swigregister(BaseStationConfig) - -class BeaconStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.BeaconStatus_swiginit(self, _mscl.new_BeaconStatus(*args)) - - def enabled(self): - return _mscl.BeaconStatus_enabled(self) - - def timestamp(self): - return _mscl.BeaconStatus_timestamp(self) - __swig_destroy__ = _mscl.delete_BeaconStatus - -# Register BeaconStatus in _mscl: -_mscl.BeaconStatus_swigregister(BeaconStatus) - -class BaseStationInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region, asppVer_lxrs, asppVer_lxrsPlus): - _mscl.BaseStationInfo_swiginit(self, _mscl.new_BaseStationInfo(fw, model, region, asppVer_lxrs, asppVer_lxrsPlus)) - __swig_destroy__ = _mscl.delete_BaseStationInfo - -# Register BaseStationInfo in _mscl: -_mscl.BaseStationInfo_swigregister(BaseStationInfo) - -class BaseStation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_BASE_COMMANDS_DEFAULT_TIMEOUT - ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT = _mscl.BaseStation_ETHERNET_BASE_COMMANDS_DEFAULT_TIMEOUT - BROADCAST_NODE_ADDRESS = _mscl.BaseStation_BROADCAST_NODE_ADDRESS - BROADCAST_NODE_ADDRESS_ASPP3 = _mscl.BaseStation_BROADCAST_NODE_ADDRESS_ASPP3 - - def __init__(self, *args): - _mscl.BaseStation_swiginit(self, _mscl.new_BaseStation(*args)) - __swig_destroy__ = _mscl.delete_BaseStation - - @staticmethod - def Mock(*args): - return _mscl.BaseStation_Mock(*args) - - @staticmethod - def deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - - def connection(self): - return _mscl.BaseStation_connection(self) - - def features(self): - return _mscl.BaseStation_features(self) - - def lastCommunicationTime(self): - return _mscl.BaseStation_lastCommunicationTime(self) - - def readWriteRetries(self, *args): - return _mscl.BaseStation_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.BaseStation_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.BaseStation_clearEepromCache(self) - - def frequency(self): - return _mscl.BaseStation_frequency(self) - - def communicationProtocol(self): - return _mscl.BaseStation_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.BaseStation_firmwareVersion(self) - - def model(self): - return _mscl.BaseStation_model(self) - - def serial(self): - return _mscl.BaseStation_serial(self) - - def name(self): - return _mscl.BaseStation_name(self) - - def microcontroller(self): - return _mscl.BaseStation_microcontroller(self) - - def regionCode(self): - return _mscl.BaseStation_regionCode(self) - - def getData(self, timeout=0, maxSweeps=0): - return _mscl.BaseStation_getData(self, timeout, maxSweeps) - - def totalData(self): - return _mscl.BaseStation_totalData(self) - - def getNodeDiscoveries(self): - return _mscl.BaseStation_getNodeDiscoveries(self) - - def timeout(self, *args): - return _mscl.BaseStation_timeout(self, *args) - - def ping(self): - return _mscl.BaseStation_ping(self) - - def readEeprom(self, eepromAddress): - return _mscl.BaseStation_readEeprom(self, eepromAddress) - - def writeEeprom(self, eepromAddress, value): - return _mscl.BaseStation_writeEeprom(self, eepromAddress, value) - - def enableBeacon(self, *args): - return _mscl.BaseStation_enableBeacon(self, *args) - - def disableBeacon(self): - return _mscl.BaseStation_disableBeacon(self) - - def beaconStatus(self): - return _mscl.BaseStation_beaconStatus(self) - - def startRfSweepMode(self, *args): - return _mscl.BaseStation_startRfSweepMode(self, *args) - - def cyclePower(self, checkComm=True): - return _mscl.BaseStation_cyclePower(self, checkComm) - - def resetRadio(self): - return _mscl.BaseStation_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.BaseStation_changeFrequency(self, frequency) - - def broadcastSetToIdle(self): - return _mscl.BaseStation_broadcastSetToIdle(self) - - def verifyConfig(self, config, outIssues): - return _mscl.BaseStation_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.BaseStation_applyConfig(self, config) - - def getTransmitPower(self): - return _mscl.BaseStation_getTransmitPower(self) - - def getButtonLongPress(self, buttonNumber): - return _mscl.BaseStation_getButtonLongPress(self, buttonNumber) - - def getButtonShortPress(self, buttonNumber): - return _mscl.BaseStation_getButtonShortPress(self, buttonNumber) - - def getAnalogPairingEnabled(self): - return _mscl.BaseStation_getAnalogPairingEnabled(self) - - def getAnalogTimeoutTime(self): - return _mscl.BaseStation_getAnalogTimeoutTime(self) - - def getAnalogTimeoutVoltage(self): - return _mscl.BaseStation_getAnalogTimeoutVoltage(self) - - def getAnalogExceedanceEnabled(self): - return _mscl.BaseStation_getAnalogExceedanceEnabled(self) - - def getAnalogPair(self, portNumber): - return _mscl.BaseStation_getAnalogPair(self, portNumber) - -# Register BaseStation in _mscl: -_mscl.BaseStation_swigregister(BaseStation) - -def BaseStation_Mock(*args): - return _mscl.BaseStation_Mock(*args) - -def BaseStation_deviceName(serial): - return _mscl.BaseStation_deviceName(serial) - -class LoggedDataSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.LoggedDataSweep_swiginit(self, _mscl.new_LoggedDataSweep(*args)) - - def timestamp(self): - return _mscl.LoggedDataSweep_timestamp(self) - - def tick(self): - return _mscl.LoggedDataSweep_tick(self) - - def data(self): - return _mscl.LoggedDataSweep_data(self) - - def calApplied(self): - return _mscl.LoggedDataSweep_calApplied(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweep - -# Register LoggedDataSweep in _mscl: -_mscl.LoggedDataSweep_swigregister(LoggedDataSweep) - -class RadioFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.RadioFeatures_swiginit(self, _mscl.new_RadioFeatures(*args)) - - def extendedRange(self): - return _mscl.RadioFeatures_extendedRange(self) - __swig_destroy__ = _mscl.delete_RadioFeatures - -# Register RadioFeatures in _mscl: -_mscl.RadioFeatures_swigregister(RadioFeatures) - -class WirelessNodeConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.WirelessNodeConfig_swiginit(self, _mscl.new_WirelessNodeConfig()) - SENSOR_DELAY_ALWAYS_ON = _mscl.WirelessNodeConfig_SENSOR_DELAY_ALWAYS_ON - - def defaultMode(self, *args): - return _mscl.WirelessNodeConfig_defaultMode(self, *args) - - def inactivityTimeout(self, *args): - return _mscl.WirelessNodeConfig_inactivityTimeout(self, *args) - - def checkRadioInterval(self, *args): - return _mscl.WirelessNodeConfig_checkRadioInterval(self, *args) - - def transmitPower(self, *args): - return _mscl.WirelessNodeConfig_transmitPower(self, *args) - - def samplingMode(self, *args): - return _mscl.WirelessNodeConfig_samplingMode(self, *args) - - def sampleRate(self, *args): - return _mscl.WirelessNodeConfig_sampleRate(self, *args) - - def activeChannels(self, *args): - return _mscl.WirelessNodeConfig_activeChannels(self, *args) - - def numSweeps(self, *args): - return _mscl.WirelessNodeConfig_numSweeps(self, *args) - - def unlimitedDuration(self, *args): - return _mscl.WirelessNodeConfig_unlimitedDuration(self, *args) - - def dataFormat(self, *args): - return _mscl.WirelessNodeConfig_dataFormat(self, *args) - - def dataCollectionMethod(self, *args): - return _mscl.WirelessNodeConfig_dataCollectionMethod(self, *args) - - def timeBetweenBursts(self, *args): - return _mscl.WirelessNodeConfig_timeBetweenBursts(self, *args) - - def lostBeaconTimeout(self, *args): - return _mscl.WirelessNodeConfig_lostBeaconTimeout(self, *args) - - def pullUpResistor(self, *args): - return _mscl.WirelessNodeConfig_pullUpResistor(self, *args) - - def inputRange(self, *args): - return _mscl.WirelessNodeConfig_inputRange(self, *args) - - def hardwareOffset(self, *args): - return _mscl.WirelessNodeConfig_hardwareOffset(self, *args) - - def antiAliasingFilter(self, *args): - return _mscl.WirelessNodeConfig_antiAliasingFilter(self, *args) - - def cfcFilterConfig(self, *args): - return _mscl.WirelessNodeConfig_cfcFilterConfig(self, *args) - - def lowPassFilter(self, *args): - return _mscl.WirelessNodeConfig_lowPassFilter(self, *args) - - def highPassFilter(self, *args): - return _mscl.WirelessNodeConfig_highPassFilter(self, *args) - - def gaugeFactor(self, *args): - return _mscl.WirelessNodeConfig_gaugeFactor(self, *args) - - def gaugeResistance(self, *args): - return _mscl.WirelessNodeConfig_gaugeResistance(self, *args) - - def excitationVoltage(self, *args): - return _mscl.WirelessNodeConfig_excitationVoltage(self, *args) - - def numActiveGauges(self, *args): - return _mscl.WirelessNodeConfig_numActiveGauges(self, *args) - - def lowBatteryThreshold(self, *args): - return _mscl.WirelessNodeConfig_lowBatteryThreshold(self, *args) - - def linearEquation(self, *args): - return _mscl.WirelessNodeConfig_linearEquation(self, *args) - - def unit(self, *args): - return _mscl.WirelessNodeConfig_unit(self, *args) - - def equationType(self, *args): - return _mscl.WirelessNodeConfig_equationType(self, *args) - - def filterSettlingTime(self, *args): - return _mscl.WirelessNodeConfig_filterSettlingTime(self, *args) - - def thermocoupleType(self, *args): - return _mscl.WirelessNodeConfig_thermocoupleType(self, *args) - - def tempSensorOptions(self, *args): - return _mscl.WirelessNodeConfig_tempSensorOptions(self, *args) - - def debounceFilter(self, *args): - return _mscl.WirelessNodeConfig_debounceFilter(self, *args) - - def fatigueOptions(self, *args): - return _mscl.WirelessNodeConfig_fatigueOptions(self, *args) - - def histogramOptions(self, *args): - return _mscl.WirelessNodeConfig_histogramOptions(self, *args) - - def activitySense(self, *args): - return _mscl.WirelessNodeConfig_activitySense(self, *args) - - def eventTriggerOptions(self, *args): - return _mscl.WirelessNodeConfig_eventTriggerOptions(self, *args) - - def diagnosticInterval(self, *args): - return _mscl.WirelessNodeConfig_diagnosticInterval(self, *args) - - def storageLimitMode(self, *args): - return _mscl.WirelessNodeConfig_storageLimitMode(self, *args) - - def sensorDelay(self, *args): - return _mscl.WirelessNodeConfig_sensorDelay(self, *args) - - def dataMode(self, *args): - return _mscl.WirelessNodeConfig_dataMode(self, *args) - - def derivedDataRate(self, *args): - return _mscl.WirelessNodeConfig_derivedDataRate(self, *args) - - def derivedChannelMask(self, *args): - return _mscl.WirelessNodeConfig_derivedChannelMask(self, *args) - - def derivedVelocityUnit(self, *args): - return _mscl.WirelessNodeConfig_derivedVelocityUnit(self, *args) - - def communicationProtocol(self, *args): - return _mscl.WirelessNodeConfig_communicationProtocol(self, *args) - - def sensorOutputMode(self, *args): - return _mscl.WirelessNodeConfig_sensorOutputMode(self, *args) - - @staticmethod - def flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - - @staticmethod - def flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - __swig_destroy__ = _mscl.delete_WirelessNodeConfig - -# Register WirelessNodeConfig in _mscl: -_mscl.WirelessNodeConfig_swigregister(WirelessNodeConfig) - -def WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate): - return _mscl.WirelessNodeConfig_flashBandwidth(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, derivedRate) - -def WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts): - return _mscl.WirelessNodeConfig_flashBandwidth_burst(rawSampleRate, dataFormat, numRawChannels, derivedBytesPerSweep, numSweeps, timeBetweenBursts) - -class AutoBalanceResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoBalanceResult_swiginit(self, _mscl.new_AutoBalanceResult()) - - def errorCode(self): - return _mscl.AutoBalanceResult_errorCode(self) - - def percentAchieved(self): - return _mscl.AutoBalanceResult_percentAchieved(self) - - def hardwareOffset(self): - return _mscl.AutoBalanceResult_hardwareOffset(self) - __swig_destroy__ = _mscl.delete_AutoBalanceResult - -# Register AutoBalanceResult in _mscl: -_mscl.AutoBalanceResult_swigregister(AutoBalanceResult) - -class ShuntCalCmdInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - useInternalShunt = property(_mscl.ShuntCalCmdInfo_useInternalShunt_get, _mscl.ShuntCalCmdInfo_useInternalShunt_set) - numActiveGauges = property(_mscl.ShuntCalCmdInfo_numActiveGauges_get, _mscl.ShuntCalCmdInfo_numActiveGauges_set) - gaugeResistance = property(_mscl.ShuntCalCmdInfo_gaugeResistance_get, _mscl.ShuntCalCmdInfo_gaugeResistance_set) - shuntResistance = property(_mscl.ShuntCalCmdInfo_shuntResistance_get, _mscl.ShuntCalCmdInfo_shuntResistance_set) - gaugeFactor = property(_mscl.ShuntCalCmdInfo_gaugeFactor_get, _mscl.ShuntCalCmdInfo_gaugeFactor_set) - inputRange = property(_mscl.ShuntCalCmdInfo_inputRange_get, _mscl.ShuntCalCmdInfo_inputRange_set) - hardwareOffset = property(_mscl.ShuntCalCmdInfo_hardwareOffset_get, _mscl.ShuntCalCmdInfo_hardwareOffset_set) - excitationVoltage = property(_mscl.ShuntCalCmdInfo_excitationVoltage_get, _mscl.ShuntCalCmdInfo_excitationVoltage_set) - - def __init__(self): - _mscl.ShuntCalCmdInfo_swiginit(self, _mscl.new_ShuntCalCmdInfo()) - __swig_destroy__ = _mscl.delete_ShuntCalCmdInfo - -# Register ShuntCalCmdInfo in _mscl: -_mscl.ShuntCalCmdInfo_swigregister(ShuntCalCmdInfo) - -class AutoCalResult(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_AutoCalResult - - def completionFlag(self): - return _mscl.AutoCalResult_completionFlag(self) - -# Register AutoCalResult in _mscl: -_mscl.AutoCalResult_swigregister(AutoCalResult) - -class AutoCalResult_shmLink(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink_swiginit(self, _mscl.new_AutoCalResult_shmLink()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink_errorFlagCh3(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink_offsetCh1(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink_offsetCh2(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink_temperature(self) - -# Register AutoCalResult_shmLink in _mscl: -_mscl.AutoCalResult_shmLink_swigregister(AutoCalResult_shmLink) - -class AutoCalResult_shmLink201(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoCalResult_shmLink201_swiginit(self, _mscl.new_AutoCalResult_shmLink201()) - __swig_destroy__ = _mscl.delete_AutoCalResult_shmLink201 - - def errorFlagCh1(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh1(self) - - def errorFlagCh2(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh2(self) - - def errorFlagCh3(self): - return _mscl.AutoCalResult_shmLink201_errorFlagCh3(self) - - def slopeCh1(self): - return _mscl.AutoCalResult_shmLink201_slopeCh1(self) - - def offsetCh1(self): - return _mscl.AutoCalResult_shmLink201_offsetCh1(self) - - def slopeCh2(self): - return _mscl.AutoCalResult_shmLink201_slopeCh2(self) - - def offsetCh2(self): - return _mscl.AutoCalResult_shmLink201_offsetCh2(self) - - def slopeCh3(self): - return _mscl.AutoCalResult_shmLink201_slopeCh3(self) - - def offsetCh3(self): - return _mscl.AutoCalResult_shmLink201_offsetCh3(self) - - def temperature(self): - return _mscl.AutoCalResult_shmLink201_temperature(self) - -# Register AutoCalResult_shmLink201 in _mscl: -_mscl.AutoCalResult_shmLink201_swigregister(AutoCalResult_shmLink201) - -class AutoShuntCalResult(AutoCalResult): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AutoShuntCalResult_swiginit(self, _mscl.new_AutoShuntCalResult()) - __swig_destroy__ = _mscl.delete_AutoShuntCalResult - - def errorFlag(self): - return _mscl.AutoShuntCalResult_errorFlag(self) - - def slope(self): - return _mscl.AutoShuntCalResult_slope(self) - - def offset(self): - return _mscl.AutoShuntCalResult_offset(self) - - def baseMedian(self): - return _mscl.AutoShuntCalResult_baseMedian(self) - - def baseMin(self): - return _mscl.AutoShuntCalResult_baseMin(self) - - def baseMax(self): - return _mscl.AutoShuntCalResult_baseMax(self) - - def shuntMedian(self): - return _mscl.AutoShuntCalResult_shuntMedian(self) - - def shuntMin(self): - return _mscl.AutoShuntCalResult_shuntMin(self) - - def shuntMax(self): - return _mscl.AutoShuntCalResult_shuntMax(self) - -# Register AutoShuntCalResult in _mscl: -_mscl.AutoShuntCalResult_swigregister(AutoShuntCalResult) - -class PingResponse(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PingResponse_swiginit(self, _mscl.new_PingResponse()) - - def success(self): - return _mscl.PingResponse_success(self) - - def nodeRssi(self): - return _mscl.PingResponse_nodeRssi(self) - - def baseRssi(self): - return _mscl.PingResponse_baseRssi(self) - __swig_destroy__ = _mscl.delete_PingResponse - -# Register PingResponse in _mscl: -_mscl.PingResponse_swigregister(PingResponse) - -class SetToIdleStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - setToIdleResult_success = _mscl.SetToIdleStatus_setToIdleResult_success - setToIdleResult_canceled = _mscl.SetToIdleStatus_setToIdleResult_canceled - setToIdleResult_failed = _mscl.SetToIdleStatus_setToIdleResult_failed - setToIdleResult_notCompleted = _mscl.SetToIdleStatus_setToIdleResult_notCompleted - - def result(self): - return _mscl.SetToIdleStatus_result(self) - - def complete(self, timeout=10): - return _mscl.SetToIdleStatus_complete(self, timeout) - - def cancel(self): - return _mscl.SetToIdleStatus_cancel(self) - __swig_destroy__ = _mscl.delete_SetToIdleStatus - -# Register SetToIdleStatus in _mscl: -_mscl.SetToIdleStatus_swigregister(SetToIdleStatus) - -class NodeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, fw, model, region): - _mscl.NodeInfo_swiginit(self, _mscl.new_NodeInfo(fw, model, region)) - __swig_destroy__ = _mscl.delete_NodeInfo - -# Register NodeInfo in _mscl: -_mscl.NodeInfo_swigregister(NodeInfo) - -class WirelessNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, nodeAddress, basestation): - _mscl.WirelessNode_swiginit(self, _mscl.new_WirelessNode(nodeAddress, basestation)) - __swig_destroy__ = _mscl.delete_WirelessNode - - @staticmethod - def Mock(*args): - return _mscl.WirelessNode_Mock(*args) - - @staticmethod - def deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - - def features(self): - return _mscl.WirelessNode_features(self) - - def lastCommunicationTime(self): - return _mscl.WirelessNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.WirelessNode_lastDeviceState(self) - - def setBaseStation(self, basestation): - return _mscl.WirelessNode_setBaseStation(self, basestation) - - def getBaseStation(self): - return _mscl.WirelessNode_getBaseStation(self) - - def hasBaseStation(self, basestation): - return _mscl.WirelessNode_hasBaseStation(self, basestation) - - def useGroupRead(self, useGroup): - return _mscl.WirelessNode_useGroupRead(self, useGroup) - - def readWriteRetries(self, *args): - return _mscl.WirelessNode_readWriteRetries(self, *args) - - def useEepromCache(self, useCache): - return _mscl.WirelessNode_useEepromCache(self, useCache) - - def clearEepromCache(self): - return _mscl.WirelessNode_clearEepromCache(self) - - def updateEepromCacheFromNodeDiscovery(self, nodeDisovery): - return _mscl.WirelessNode_updateEepromCacheFromNodeDiscovery(self, nodeDisovery) - - def getEepromCache(self): - return _mscl.WirelessNode_getEepromCache(self) - - def nodeAddress(self): - return _mscl.WirelessNode_nodeAddress(self) - - def frequency(self): - return _mscl.WirelessNode_frequency(self) - - def communicationProtocol(self): - return _mscl.WirelessNode_communicationProtocol(self) - - def firmwareVersion(self): - return _mscl.WirelessNode_firmwareVersion(self) - - def model(self): - return _mscl.WirelessNode_model(self) - - def serial(self): - return _mscl.WirelessNode_serial(self) - - def name(self): - return _mscl.WirelessNode_name(self) - - def microcontroller(self): - return _mscl.WirelessNode_microcontroller(self) - - def radioFeatures(self): - return _mscl.WirelessNode_radioFeatures(self) - - def dataStorageSize(self): - return _mscl.WirelessNode_dataStorageSize(self) - - def regionCode(self): - return _mscl.WirelessNode_regionCode(self) - - def ping(self): - return _mscl.WirelessNode_ping(self) - - def sleep(self): - return _mscl.WirelessNode_sleep(self) - - def cyclePower(self): - return _mscl.WirelessNode_cyclePower(self) - - def resetRadio(self): - return _mscl.WirelessNode_resetRadio(self) - - def changeFrequency(self, frequency): - return _mscl.WirelessNode_changeFrequency(self, frequency) - - def setToIdle(self): - return _mscl.WirelessNode_setToIdle(self) - - def erase(self): - return _mscl.WirelessNode_erase(self) - - def startNonSyncSampling(self): - return _mscl.WirelessNode_startNonSyncSampling(self) - - def resendStartSyncSampling(self): - return _mscl.WirelessNode_resendStartSyncSampling(self) - - def clearHistogram(self): - return _mscl.WirelessNode_clearHistogram(self) - - def autoBalance(self, mask, targetPercent): - return _mscl.WirelessNode_autoBalance(self, mask, targetPercent) - - def autoCal_shmLink(self): - return _mscl.WirelessNode_autoCal_shmLink(self) - - def autoCal_shmLink201(self): - return _mscl.WirelessNode_autoCal_shmLink201(self) - - def autoShuntCal(self, mask, commandInfo): - return _mscl.WirelessNode_autoShuntCal(self, mask, commandInfo) - - def poll(self, mask): - return _mscl.WirelessNode_poll(self, mask) - - def readEeprom(self, location): - return _mscl.WirelessNode_readEeprom(self, location) - - def writeEeprom(self, location, value): - return _mscl.WirelessNode_writeEeprom(self, location, value) - - def getDiagnosticInfo(self): - return _mscl.WirelessNode_getDiagnosticInfo(self) - - def testCommunicationProtocol(self, protocol): - return _mscl.WirelessNode_testCommunicationProtocol(self, protocol) - - def verifyConfig(self, config, outIssues): - return _mscl.WirelessNode_verifyConfig(self, config, outIssues) - - def applyConfig(self, config): - return _mscl.WirelessNode_applyConfig(self, config) - - def getNumDatalogSessions(self): - return _mscl.WirelessNode_getNumDatalogSessions(self) - - def percentFull(self): - return _mscl.WirelessNode_percentFull(self) - - def getDefaultMode(self): - return _mscl.WirelessNode_getDefaultMode(self) - - def getInactivityTimeout(self): - return _mscl.WirelessNode_getInactivityTimeout(self) - - def getCheckRadioInterval(self): - return _mscl.WirelessNode_getCheckRadioInterval(self) - - def getTransmitPower(self): - return _mscl.WirelessNode_getTransmitPower(self) - - def getSamplingMode(self): - return _mscl.WirelessNode_getSamplingMode(self) - - def getActiveChannels(self): - return _mscl.WirelessNode_getActiveChannels(self) - - def getSampleRate(self): - return _mscl.WirelessNode_getSampleRate(self) - - def getNumSweeps(self): - return _mscl.WirelessNode_getNumSweeps(self) - - def getUnlimitedDuration(self): - return _mscl.WirelessNode_getUnlimitedDuration(self) - - def getDataFormat(self): - return _mscl.WirelessNode_getDataFormat(self) - - def getDataCollectionMethod(self): - return _mscl.WirelessNode_getDataCollectionMethod(self) - - def getTimeBetweenBursts(self): - return _mscl.WirelessNode_getTimeBetweenBursts(self) - - def getLostBeaconTimeout(self): - return _mscl.WirelessNode_getLostBeaconTimeout(self) - - def getInputRange(self, mask): - return _mscl.WirelessNode_getInputRange(self, mask) - - def getHardwareOffset(self, mask): - return _mscl.WirelessNode_getHardwareOffset(self, mask) - - def getAntiAliasingFilter(self, mask): - return _mscl.WirelessNode_getAntiAliasingFilter(self, mask) - - def getCfcFilterConfiguration(self): - return _mscl.WirelessNode_getCfcFilterConfiguration(self) - - def getLowPassFilter(self, mask): - return _mscl.WirelessNode_getLowPassFilter(self, mask) - - def getHighPassFilter(self, mask): - return _mscl.WirelessNode_getHighPassFilter(self, mask) - - def getDebounceFilter(self, mask): - return _mscl.WirelessNode_getDebounceFilter(self, mask) - - def getPullUpResistor(self, mask): - return _mscl.WirelessNode_getPullUpResistor(self, mask) - - def getSensorOutputMode(self): - return _mscl.WirelessNode_getSensorOutputMode(self) - - def getGaugeFactor(self, mask): - return _mscl.WirelessNode_getGaugeFactor(self, mask) - - def getExcitationVoltage(self): - return _mscl.WirelessNode_getExcitationVoltage(self) - - def getAdcVoltageRef(self): - return _mscl.WirelessNode_getAdcVoltageRef(self) - - def getGainAmplifierVoltageRef(self): - return _mscl.WirelessNode_getGainAmplifierVoltageRef(self) - - def getGaugeResistance(self): - return _mscl.WirelessNode_getGaugeResistance(self) - - def getNumActiveGauges(self): - return _mscl.WirelessNode_getNumActiveGauges(self) - - def getLowBatteryThreshold(self): - return _mscl.WirelessNode_getLowBatteryThreshold(self) - - def getLinearEquation(self, mask): - return _mscl.WirelessNode_getLinearEquation(self, mask) - - def getUnit(self, mask): - return _mscl.WirelessNode_getUnit(self, mask) - - def getEquationType(self, mask): - return _mscl.WirelessNode_getEquationType(self, mask) - - def getFactoryCalibrationLinearEq(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationLinearEq(self, mask) - - def getFactoryCalibrationUnit(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationUnit(self, mask) - - def getFactoryCalibrationEqType(self, mask): - return _mscl.WirelessNode_getFactoryCalibrationEqType(self, mask) - - def getFilterSettlingTime(self, mask): - return _mscl.WirelessNode_getFilterSettlingTime(self, mask) - - def getThermocoupleType(self, mask): - return _mscl.WirelessNode_getThermocoupleType(self, mask) - - def getTempSensorOptions(self, mask): - return _mscl.WirelessNode_getTempSensorOptions(self, mask) - - def getFatigueOptions(self): - return _mscl.WirelessNode_getFatigueOptions(self) - - def getHistogramOptions(self): - return _mscl.WirelessNode_getHistogramOptions(self) - - def getActivitySense(self): - return _mscl.WirelessNode_getActivitySense(self) - - def getEventTriggerOptions(self): - return _mscl.WirelessNode_getEventTriggerOptions(self) - - def getDiagnosticInterval(self): - return _mscl.WirelessNode_getDiagnosticInterval(self) - - def getStorageLimitMode(self): - return _mscl.WirelessNode_getStorageLimitMode(self) - - def getSensorDelay(self): - return _mscl.WirelessNode_getSensorDelay(self) - - def getDataMode(self): - return _mscl.WirelessNode_getDataMode(self) - - def getDerivedDataRate(self): - return _mscl.WirelessNode_getDerivedDataRate(self) - - def getDerivedChannelMask(self, category): - return _mscl.WirelessNode_getDerivedChannelMask(self, category) - - def getDerivedVelocityUnit(self): - return _mscl.WirelessNode_getDerivedVelocityUnit(self) - -# Register WirelessNode in _mscl: -_mscl.WirelessNode_swigregister(WirelessNode) - -def WirelessNode_Mock(*args): - return _mscl.WirelessNode_Mock(*args) - -def WirelessNode_deviceName(nodeAddress): - return _mscl.WirelessNode_deviceName(nodeAddress) - -class DatalogDownloader(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.DatalogDownloader_swiginit(self, _mscl.new_DatalogDownloader(*args)) - __swig_destroy__ = _mscl.delete_DatalogDownloader - - def complete(self): - return _mscl.DatalogDownloader_complete(self) - - def percentComplete(self): - return _mscl.DatalogDownloader_percentComplete(self) - - def getNextData(self): - return _mscl.DatalogDownloader_getNextData(self) - - def metaDataUpdated(self): - return _mscl.DatalogDownloader_metaDataUpdated(self) - - def calCoefficientsUpdated(self): - return _mscl.DatalogDownloader_calCoefficientsUpdated(self) - - def startOfSession(self): - return _mscl.DatalogDownloader_startOfSession(self) - - def sessionIndex(self): - return _mscl.DatalogDownloader_sessionIndex(self) - - def sampleRate(self): - return _mscl.DatalogDownloader_sampleRate(self) - - def userString(self): - return _mscl.DatalogDownloader_userString(self) - - def calCoefficients(self): - return _mscl.DatalogDownloader_calCoefficients(self) - -# Register DatalogDownloader in _mscl: -_mscl.DatalogDownloader_swigregister(DatalogDownloader) - -class ArmedDataloggingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.ArmedDataloggingNetwork_swiginit(self, _mscl.new_ArmedDataloggingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.ArmedDataloggingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.ArmedDataloggingNetwork_removeNode(self, nodeAddress) - - def startSampling(self): - return _mscl.ArmedDataloggingNetwork_startSampling(self) - __swig_destroy__ = _mscl.delete_ArmedDataloggingNetwork - -# Register ArmedDataloggingNetwork in _mscl: -_mscl.ArmedDataloggingNetwork_swigregister(ArmedDataloggingNetwork) - -class SyncNetworkInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - status_OK = _mscl.SyncNetworkInfo_status_OK - status_PoorCommunication = _mscl.SyncNetworkInfo_status_PoorCommunication - status_DoesNotFit = _mscl.SyncNetworkInfo_status_DoesNotFit - status_Contention = _mscl.SyncNetworkInfo_status_Contention - - def __init__(self, node): - _mscl.SyncNetworkInfo_swiginit(self, _mscl.new_SyncNetworkInfo(node)) - - def status(self): - return _mscl.SyncNetworkInfo_status(self) - - def startedSampling(self): - return _mscl.SyncNetworkInfo_startedSampling(self) - - def configurationApplied(self): - return _mscl.SyncNetworkInfo_configurationApplied(self) - - def percentBandwidth(self): - return _mscl.SyncNetworkInfo_percentBandwidth(self) - - def tdmaAddress(self): - return _mscl.SyncNetworkInfo_tdmaAddress(self) - - def maxTdmaAddress(self): - return _mscl.SyncNetworkInfo_maxTdmaAddress(self) - - def transmissionPerGroup(self): - return _mscl.SyncNetworkInfo_transmissionPerGroup(self) - - def groupSize(self): - return _mscl.SyncNetworkInfo_groupSize(self) - __swig_destroy__ = _mscl.delete_SyncNetworkInfo - -# Register SyncNetworkInfo in _mscl: -_mscl.SyncNetworkInfo_swigregister(SyncNetworkInfo) - -class SyncSamplingNetwork(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, networkBaseStation): - _mscl.SyncSamplingNetwork_swiginit(self, _mscl.new_SyncSamplingNetwork(networkBaseStation)) - - def addNode(self, *args): - return _mscl.SyncSamplingNetwork_addNode(self, *args) - - def removeNode(self, nodeAddress): - return _mscl.SyncSamplingNetwork_removeNode(self, nodeAddress) - - def percentBandwidth(self): - return _mscl.SyncSamplingNetwork_percentBandwidth(self) - - def ok(self): - return _mscl.SyncSamplingNetwork_ok(self) - - def refresh(self): - return _mscl.SyncSamplingNetwork_refresh(self) - - def lossless(self, *args): - return _mscl.SyncSamplingNetwork_lossless(self, *args) - - def communicationProtocol(self, *args): - return _mscl.SyncSamplingNetwork_communicationProtocol(self, *args) - - def applyConfiguration(self): - return _mscl.SyncSamplingNetwork_applyConfiguration(self) - - def startSampling(self, *args): - return _mscl.SyncSamplingNetwork_startSampling(self, *args) - - def startSampling_noBeacon(self): - return _mscl.SyncSamplingNetwork_startSampling_noBeacon(self) - - def getNodeNetworkInfo(self, nodeAddress): - return _mscl.SyncSamplingNetwork_getNodeNetworkInfo(self, nodeAddress) - __swig_destroy__ = _mscl.delete_SyncSamplingNetwork - -# Register SyncSamplingNetwork in _mscl: -_mscl.SyncSamplingNetwork_swigregister(SyncSamplingNetwork) - -class NodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_NodeFeatures - - def normalizeNumSweeps(self, sweeps): - return _mscl.NodeFeatures_normalizeNumSweeps(self, sweeps) - - def normalizeTimeBetweenBursts(self, time): - return _mscl.NodeFeatures_normalizeTimeBetweenBursts(self, time) - - def channels(self): - return _mscl.NodeFeatures_channels(self) - - def channelGroups(self): - return _mscl.NodeFeatures_channelGroups(self) - - def channelType(self, channelNumber): - return _mscl.NodeFeatures_channelType(self, channelNumber) - - def supportsChannelSetting(self, setting, mask): - return _mscl.NodeFeatures_supportsChannelSetting(self, setting, mask) - - def supportsInputRangePerExcitationVoltage(self): - return _mscl.NodeFeatures_supportsInputRangePerExcitationVoltage(self) - - def supportsHardwareOffset(self): - return _mscl.NodeFeatures_supportsHardwareOffset(self) - - def supportsAntiAliasingFilter(self): - return _mscl.NodeFeatures_supportsAntiAliasingFilter(self) - - def supportsLowPassFilter(self): - return _mscl.NodeFeatures_supportsLowPassFilter(self) - - def supportsHighPassFilter(self): - return _mscl.NodeFeatures_supportsHighPassFilter(self) - - def supportsGaugeFactor(self): - return _mscl.NodeFeatures_supportsGaugeFactor(self) - - def supportsGaugeResistance(self): - return _mscl.NodeFeatures_supportsGaugeResistance(self) - - def supportsNumActiveGauges(self): - return _mscl.NodeFeatures_supportsNumActiveGauges(self) - - def supportsLostBeaconTimeout(self): - return _mscl.NodeFeatures_supportsLostBeaconTimeout(self) - - def supportsPullUpResistor(self): - return _mscl.NodeFeatures_supportsPullUpResistor(self) - - def supportsFilterSettlingTime(self): - return _mscl.NodeFeatures_supportsFilterSettlingTime(self) - - def supportsThermocoupleType(self): - return _mscl.NodeFeatures_supportsThermocoupleType(self) - - def supportsTempSensorOptions(self): - return _mscl.NodeFeatures_supportsTempSensorOptions(self) - - def supportsDebounceFilter(self): - return _mscl.NodeFeatures_supportsDebounceFilter(self) - - def supportsFatigueConfig(self): - return _mscl.NodeFeatures_supportsFatigueConfig(self) - - def supportsYoungsModConfig(self): - return _mscl.NodeFeatures_supportsYoungsModConfig(self) - - def supportsPoissonsRatioConfig(self): - return _mscl.NodeFeatures_supportsPoissonsRatioConfig(self) - - def supportsFatigueDebugModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueDebugModeConfig(self) - - def supportsFatigueModeConfig(self): - return _mscl.NodeFeatures_supportsFatigueModeConfig(self) - - def supportsHistogramConfig(self): - return _mscl.NodeFeatures_supportsHistogramConfig(self) - - def supportsHistogramRateConfig(self): - return _mscl.NodeFeatures_supportsHistogramRateConfig(self) - - def supportsHistogramEnableConfig(self): - return _mscl.NodeFeatures_supportsHistogramEnableConfig(self) - - def supportsActivitySense(self): - return _mscl.NodeFeatures_supportsActivitySense(self) - - def supportsAutoBalance(self): - return _mscl.NodeFeatures_supportsAutoBalance(self) - - def supportsLegacyShuntCal(self): - return _mscl.NodeFeatures_supportsLegacyShuntCal(self) - - def supportsAutoCal_shm(self): - return _mscl.NodeFeatures_supportsAutoCal_shm(self) - - def supportsAutoCal_shm201(self): - return _mscl.NodeFeatures_supportsAutoCal_shm201(self) - - def supportsAutoShuntCal(self): - return _mscl.NodeFeatures_supportsAutoShuntCal(self) - - def supportsGetFactoryCal(self): - return _mscl.NodeFeatures_supportsGetFactoryCal(self) - - def supportsLimitedDuration(self): - return _mscl.NodeFeatures_supportsLimitedDuration(self) - - def supportsEventTrigger(self): - return _mscl.NodeFeatures_supportsEventTrigger(self) - - def supportsDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsDiagnosticInfo(self) - - def supportsLoggedData(self): - return _mscl.NodeFeatures_supportsLoggedData(self) - - def supportsPoll(self): - return _mscl.NodeFeatures_supportsPoll(self) - - def supportsSensorDelayConfig(self): - return _mscl.NodeFeatures_supportsSensorDelayConfig(self) - - def supportsSensorDelayAlwaysOn(self): - return _mscl.NodeFeatures_supportsSensorDelayAlwaysOn(self) - - def supportsSensorOutputMode(self): - return _mscl.NodeFeatures_supportsSensorOutputMode(self) - - def supportsCfcFilterConfiguration(self): - return _mscl.NodeFeatures_supportsCfcFilterConfiguration(self) - - def supportsChannel(self, channelNumber): - return _mscl.NodeFeatures_supportsChannel(self, channelNumber) - - def supportsSamplingMode(self, samplingMode): - return _mscl.NodeFeatures_supportsSamplingMode(self, samplingMode) - - def supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_supportsSampleRate(self, sampleRate, samplingMode, dataCollectionMethod, dataMode) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.NodeFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsDataFormat(self, dataFormat): - return _mscl.NodeFeatures_supportsDataFormat(self, dataFormat) - - def supportsDefaultMode(self, mode): - return _mscl.NodeFeatures_supportsDefaultMode(self, mode) - - def supportsDataCollectionMethod(self, collectionMethod): - return _mscl.NodeFeatures_supportsDataCollectionMethod(self, collectionMethod) - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.NodeFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsDataMode(self, dataMode): - return _mscl.NodeFeatures_supportsDataMode(self, dataMode) - - def supportsTransducerType(self, transducerType): - return _mscl.NodeFeatures_supportsTransducerType(self, transducerType) - - def supportsFatigueMode(self, mode): - return _mscl.NodeFeatures_supportsFatigueMode(self, mode) - - def supportsInputRange(self, *args): - return _mscl.NodeFeatures_supportsInputRange(self, *args) - - def supportsCentisecondEventDuration(self): - return _mscl.NodeFeatures_supportsCentisecondEventDuration(self) - - def supportsGetDiagnosticInfo(self): - return _mscl.NodeFeatures_supportsGetDiagnosticInfo(self) - - def supportsNonSyncLogWithTimestamps(self): - return _mscl.NodeFeatures_supportsNonSyncLogWithTimestamps(self) - - def supportsDerivedCategory(self, category): - return _mscl.NodeFeatures_supportsDerivedCategory(self, category) - - def supportsRawDataMode(self): - return _mscl.NodeFeatures_supportsRawDataMode(self) - - def supportsDerivedDataMode(self): - return _mscl.NodeFeatures_supportsDerivedDataMode(self) - - def supportsDerivedVelocityUnitConfig(self): - return _mscl.NodeFeatures_supportsDerivedVelocityUnitConfig(self) - - def supportsExcitationVoltageConfig(self): - return _mscl.NodeFeatures_supportsExcitationVoltageConfig(self) - - def supportsLowBatteryThresholdConfig(self): - return _mscl.NodeFeatures_supportsLowBatteryThresholdConfig(self) - - def maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRate(self, samplingMode, channels, dataCollectionMethod, dataMode) - - def maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_maxSampleRateForSettlingTime(self, filterSettlingTime, samplingMode, dataCollectionMethod, dataMode) - - def maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels): - return _mscl.NodeFeatures_maxSampleRateForLowPassFilter(self, lowPassFilter, samplingMode, dataCollectionMethod, dataMode, channels) - - def maxFilterSettlingTime(self, rate): - return _mscl.NodeFeatures_maxFilterSettlingTime(self, rate) - - def minInactivityTimeout(self): - return _mscl.NodeFeatures_minInactivityTimeout(self) - - def minLostBeaconTimeout(self): - return _mscl.NodeFeatures_minLostBeaconTimeout(self) - - def maxLostBeaconTimeout(self): - return _mscl.NodeFeatures_maxLostBeaconTimeout(self) - - def minCheckRadioInterval(self): - return _mscl.NodeFeatures_minCheckRadioInterval(self) - - def maxCheckRadioInterval(self): - return _mscl.NodeFeatures_maxCheckRadioInterval(self) - - def minSweeps(self): - return _mscl.NodeFeatures_minSweeps(self) - - def maxSweeps(self, samplingMode, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweeps(self, samplingMode, dataMode, dataFormat, channels) - - def maxSweepsPerBurst(self, dataMode, dataFormat, channels): - return _mscl.NodeFeatures_maxSweepsPerBurst(self, dataMode, dataFormat, channels) - - def minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol): - return _mscl.NodeFeatures_minTimeBetweenBursts(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, sweepsPerBurst, commProtocol) - - def minSensorDelay(self): - return _mscl.NodeFeatures_minSensorDelay(self) - - def maxSensorDelay(self): - return _mscl.NodeFeatures_maxSensorDelay(self) - - def defaultSensorDelay(self): - return _mscl.NodeFeatures_defaultSensorDelay(self) - - def maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate): - return _mscl.NodeFeatures_maxEventTriggerTotalDuration(self, dataMode, dataFormat, rawChannels, derivedChannelMasks, rawSampleRate, derivedDataRate) - - def normalizeEventDuration(self, duration): - return _mscl.NodeFeatures_normalizeEventDuration(self, duration) - - def normalizeSensorDelay(self, delay): - return _mscl.NodeFeatures_normalizeSensorDelay(self, delay) - - def numDamageAngles(self): - return _mscl.NodeFeatures_numDamageAngles(self) - - def numSnCurveSegments(self): - return _mscl.NodeFeatures_numSnCurveSegments(self) - - def numEventTriggers(self): - return _mscl.NodeFeatures_numEventTriggers(self) - - def defaultModes(self): - return _mscl.NodeFeatures_defaultModes(self) - - def dataCollectionMethods(self): - return _mscl.NodeFeatures_dataCollectionMethods(self) - - def dataFormats(self): - return _mscl.NodeFeatures_dataFormats(self) - - def samplingModes(self): - return _mscl.NodeFeatures_samplingModes(self) - - def sampleRates(self, samplingMode, dataCollectionMethod, dataMode): - return _mscl.NodeFeatures_sampleRates(self, samplingMode, dataCollectionMethod, dataMode) - - def derivedDataRates(self): - return _mscl.NodeFeatures_derivedDataRates(self) - - def transmitPowers(self, *args): - return _mscl.NodeFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.NodeFeatures_commProtocols(self) - - def sensorOutputModes(self): - return _mscl.NodeFeatures_sensorOutputModes(self) - - def cfcFilters(self): - return _mscl.NodeFeatures_cfcFilters(self) - - def histogramTransmitRates(self): - return _mscl.NodeFeatures_histogramTransmitRates(self) - - def fatigueModes(self): - return _mscl.NodeFeatures_fatigueModes(self) - - def antiAliasingFilters(self): - return _mscl.NodeFeatures_antiAliasingFilters(self) - - def lowPassFilters(self): - return _mscl.NodeFeatures_lowPassFilters(self) - - def highPassFilters(self): - return _mscl.NodeFeatures_highPassFilters(self) - - def storageLimitModes(self): - return _mscl.NodeFeatures_storageLimitModes(self) - - def inputRanges(self, *args): - return _mscl.NodeFeatures_inputRanges(self, *args) - - def dataModes(self): - return _mscl.NodeFeatures_dataModes(self) - - def transducerTypes(self): - return _mscl.NodeFeatures_transducerTypes(self) - - def channelsPerDerivedCategory(self): - return _mscl.NodeFeatures_channelsPerDerivedCategory(self) - - def excitationVoltages(self): - return _mscl.NodeFeatures_excitationVoltages(self) - - def adcVoltageInputType(self): - return _mscl.NodeFeatures_adcVoltageInputType(self) - - def maxTransmitPower(self, *args): - return _mscl.NodeFeatures_maxTransmitPower(self, *args) - - def minTransmitPower(self, *args): - return _mscl.NodeFeatures_minTransmitPower(self, *args) - -# Register NodeFeatures in _mscl: -_mscl.NodeFeatures_swigregister(NodeFeatures) - -class BaseStationFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_BaseStationFeatures - - def supportsTransmitPower(self, power, commProtocol): - return _mscl.BaseStationFeatures_supportsTransmitPower(self, power, commProtocol) - - def supportsCommunicationProtocol(self, protocol): - return _mscl.BaseStationFeatures_supportsCommunicationProtocol(self, protocol) - - def supportsButtons(self): - return _mscl.BaseStationFeatures_supportsButtons(self) - - def supportsAnalogPairing(self): - return _mscl.BaseStationFeatures_supportsAnalogPairing(self) - - def supportsBeaconStatus(self): - return _mscl.BaseStationFeatures_supportsBeaconStatus(self) - - def supportsRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsRfSweepMode(self) - - def supportsCustomRfSweepMode(self): - return _mscl.BaseStationFeatures_supportsCustomRfSweepMode(self) - - def buttonCount(self): - return _mscl.BaseStationFeatures_buttonCount(self) - - def analogPortCount(self): - return _mscl.BaseStationFeatures_analogPortCount(self) - - def transmitPowers(self, *args): - return _mscl.BaseStationFeatures_transmitPowers(self, *args) - - def commProtocols(self): - return _mscl.BaseStationFeatures_commProtocols(self) - - def maxTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_maxTransmitPower(self, region, commProtocol) - - def minTransmitPower(self, region, commProtocol): - return _mscl.BaseStationFeatures_minTransmitPower(self, region, commProtocol) - -# Register BaseStationFeatures in _mscl: -_mscl.BaseStationFeatures_swigregister(BaseStationFeatures) - -class EulerAngles(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EulerAngles_swiginit(self, _mscl.new_EulerAngles(*args)) - - def asMipFieldValues(self): - return _mscl.EulerAngles_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.EulerAngles_appendMipFieldValues(self, appendTo) - - def roll(self): - return _mscl.EulerAngles_roll(self) - - def pitch(self): - return _mscl.EulerAngles_pitch(self) - - def yaw(self): - return _mscl.EulerAngles_yaw(self) - - def heading(self): - return _mscl.EulerAngles_heading(self) - __swig_destroy__ = _mscl.delete_EulerAngles - -# Register EulerAngles in _mscl: -_mscl.EulerAngles_swigregister(EulerAngles) - -class Quaternion(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Quaternion_swiginit(self, _mscl.new_Quaternion(*args)) - - def asMipFieldValues(self): - return _mscl.Quaternion_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Quaternion_appendMipFieldValues(self, appendTo) - - def normalize(self): - return _mscl.Quaternion_normalize(self) - - def q0(self): - return _mscl.Quaternion_q0(self) - - def q1(self): - return _mscl.Quaternion_q1(self) - - def q2(self): - return _mscl.Quaternion_q2(self) - - def q3(self): - return _mscl.Quaternion_q3(self) - __swig_destroy__ = _mscl.delete_Quaternion - -# Register Quaternion in _mscl: -_mscl.Quaternion_swigregister(Quaternion) - -class Rotation(Vector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EULER_ANGLES = _mscl.Rotation_EULER_ANGLES - QUATERNION = _mscl.Rotation_QUATERNION - - def __init__(self, *args): - _mscl.Rotation_swiginit(self, _mscl.new_Rotation(*args)) - - @staticmethod - def FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - - @staticmethod - def FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - - def asEulerAngles(self): - return _mscl.Rotation_asEulerAngles(self) - - def asQuaternion(self): - return _mscl.Rotation_asQuaternion(self) - - def asMipFieldValues(self, includeFormat=True): - return _mscl.Rotation_asMipFieldValues(self, includeFormat) - - def appendMipFieldValues(self, appendTo, includeFormat=True): - return _mscl.Rotation_appendMipFieldValues(self, appendTo, includeFormat) - - def format(self): - return _mscl.Rotation_format(self) - __swig_destroy__ = _mscl.delete_Rotation - -# Register Rotation in _mscl: -_mscl.Rotation_swigregister(Rotation) - -def Rotation_FromEulerAngles(angles): - return _mscl.Rotation_FromEulerAngles(angles) - -def Rotation_FromQuaternion(quat): - return _mscl.Rotation_FromQuaternion(quat) - -class Vec3f(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Vec3f_swiginit(self, _mscl.new_Vec3f(*args)) - __swig_destroy__ = _mscl.delete_Vec3f - - def fromMipFieldValues(self, data, offset=0): - return _mscl.Vec3f_fromMipFieldValues(self, data, offset) - - def asMipFieldValues(self): - return _mscl.Vec3f_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.Vec3f_appendMipFieldValues(self, appendTo) - - def x(self, *args): - return _mscl.Vec3f_x(self, *args) - - def y(self, *args): - return _mscl.Vec3f_y(self, *args) - - def z(self, *args): - return _mscl.Vec3f_z(self, *args) - -# Register Vec3f in _mscl: -_mscl.Vec3f_swigregister(Vec3f) - -ECEF = _mscl.ECEF -LLH_NED = _mscl.LLH_NED -LOCAL = _mscl.LOCAL -VEHICLE = _mscl.VEHICLE -class GeometricVector(Vec3f): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - - @staticmethod - def VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - - def __init__(self, *args): - _mscl.GeometricVector_swiginit(self, _mscl.new_GeometricVector(*args)) - __swig_destroy__ = _mscl.delete_GeometricVector - - def fromMipFieldValues_includesFrame(self, data, offset=0): - return _mscl.GeometricVector_fromMipFieldValues_includesFrame(self, data, offset) - - def asMipFieldValues_includeFrame(self): - return _mscl.GeometricVector_asMipFieldValues_includeFrame(self) - - def appendMipFieldValues_includeFrame(self, appendTo): - return _mscl.GeometricVector_appendMipFieldValues_includeFrame(self, appendTo) - referenceFrame = property(_mscl.GeometricVector_referenceFrame_get, _mscl.GeometricVector_referenceFrame_set) - - def north(self, *args): - return _mscl.GeometricVector_north(self, *args) - - def east(self, *args): - return _mscl.GeometricVector_east(self, *args) - - def down(self, *args): - return _mscl.GeometricVector_down(self, *args) - -# Register GeometricVector in _mscl: -_mscl.GeometricVector_swigregister(GeometricVector) - -def GeometricVector_VectorECEF(x_init, y_init, z_init): - return _mscl.GeometricVector_VectorECEF(x_init, y_init, z_init) - -def GeometricVector_VectorNED(north, east, down): - return _mscl.GeometricVector_VectorNED(north, east, down) - -class PositionOffset(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.PositionOffset_swiginit(self, _mscl.new_PositionOffset(*args)) - __swig_destroy__ = _mscl.delete_PositionOffset - -# Register PositionOffset in _mscl: -_mscl.PositionOffset_swigregister(PositionOffset) - -class Velocity(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Velocity_swiginit(self, _mscl.new_Velocity(*args)) - __swig_destroy__ = _mscl.delete_Velocity - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - - @staticmethod - def NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - - @staticmethod - def Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -# Register Velocity in _mscl: -_mscl.Velocity_swigregister(Velocity) - -def Velocity_ECEF(x_init, y_init, z_init): - return _mscl.Velocity_ECEF(x_init, y_init, z_init) - -def Velocity_NED(north, east, down): - return _mscl.Velocity_NED(north, east, down) - -def Velocity_Vehicle(x, y, z): - return _mscl.Velocity_Vehicle(x, y, z) - -class Position(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - @staticmethod - def LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - - @staticmethod - def ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - - def __init__(self, *args): - _mscl.Position_swiginit(self, _mscl.new_Position(*args)) - __swig_destroy__ = _mscl.delete_Position - referenceFrame = property(_mscl.Position_referenceFrame_get, _mscl.Position_referenceFrame_set) - - def latitude(self, *args): - return _mscl.Position_latitude(self, *args) - - def longitude(self, *args): - return _mscl.Position_longitude(self, *args) - - def altitude(self, *args): - return _mscl.Position_altitude(self, *args) - - def height(self, *args): - return _mscl.Position_height(self, *args) - - def x(self, *args): - return _mscl.Position_x(self, *args) - - def y(self, *args): - return _mscl.Position_y(self, *args) - - def z(self, *args): - return _mscl.Position_z(self, *args) - -# Register Position in _mscl: -_mscl.Position_swigregister(Position) - -def Position_LLH(lat_init, long_init, alt_init): - return _mscl.Position_LLH(lat_init, long_init, alt_init) - -def Position_ECEF(x_init, y_init, z_init): - return _mscl.Position_ECEF(x_init, y_init, z_init) - -class GeometricUncertainty(GeometricVector): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeometricUncertainty_swiginit(self, _mscl.new_GeometricUncertainty(*args)) - __swig_destroy__ = _mscl.delete_GeometricUncertainty - -# Register GeometricUncertainty in _mscl: -_mscl.GeometricUncertainty_swigregister(GeometricUncertainty) - -class MipModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_3dm_dh3 = _mscl.MipModels_node_3dm_dh3 - node_3dm_gx3_15 = _mscl.MipModels_node_3dm_gx3_15 - node_3dm_gx3_25 = _mscl.MipModels_node_3dm_gx3_25 - node_3dm_gx3_35 = _mscl.MipModels_node_3dm_gx3_35 - node_3dm_gx3_45 = _mscl.MipModels_node_3dm_gx3_45 - node_3dm_rq1_45_lt = _mscl.MipModels_node_3dm_rq1_45_lt - node_3dm_gx4_15 = _mscl.MipModels_node_3dm_gx4_15 - node_3dm_gx4_25 = _mscl.MipModels_node_3dm_gx4_25 - node_3dm_gx4_45 = _mscl.MipModels_node_3dm_gx4_45 - node_3dm_rq1_45_st = _mscl.MipModels_node_3dm_rq1_45_st - node_mv5_ar = _mscl.MipModels_node_mv5_ar - node_3dm_gx5_10 = _mscl.MipModels_node_3dm_gx5_10 - node_3dm_gx5_15 = _mscl.MipModels_node_3dm_gx5_15 - node_3dm_gx5_25 = _mscl.MipModels_node_3dm_gx5_25 - node_3dm_gx5_35 = _mscl.MipModels_node_3dm_gx5_35 - node_3dm_gx5_45 = _mscl.MipModels_node_3dm_gx5_45 - node_3dm_cv5_10 = _mscl.MipModels_node_3dm_cv5_10 - node_3dm_cv5_15 = _mscl.MipModels_node_3dm_cv5_15 - node_3dm_cv5_25 = _mscl.MipModels_node_3dm_cv5_25 - node_3dm_cv5_45 = _mscl.MipModels_node_3dm_cv5_45 - node_3dm_gq4_45 = _mscl.MipModels_node_3dm_gq4_45 - node_3dm_cx5_45 = _mscl.MipModels_node_3dm_cx5_45 - node_3dm_cx5_35 = _mscl.MipModels_node_3dm_cx5_35 - node_3dm_cx5_25 = _mscl.MipModels_node_3dm_cx5_25 - node_3dm_cx5_15 = _mscl.MipModels_node_3dm_cx5_15 - node_3dm_cx5_10 = _mscl.MipModels_node_3dm_cx5_10 - node_3dm_cl5_15 = _mscl.MipModels_node_3dm_cl5_15 - node_3dm_cl5_25 = _mscl.MipModels_node_3dm_cl5_25 - node_3dm_gq7 = _mscl.MipModels_node_3dm_gq7 - node_3dm_rtk = _mscl.MipModels_node_3dm_rtk - node_3dm_cv7_ahrs = _mscl.MipModels_node_3dm_cv7_ahrs - node_3dm_cv7_ar = _mscl.MipModels_node_3dm_cv7_ar - node_3dm_gv7_ahrs = _mscl.MipModels_node_3dm_gv7_ahrs - node_3dm_gv7_ar = _mscl.MipModels_node_3dm_gv7_ar - node_3dm_gv7_ins = _mscl.MipModels_node_3dm_gv7_ins - node_3dm_cv7_ins = _mscl.MipModels_node_3dm_cv7_ins - node_3dm_cv7_gnss_ins = _mscl.MipModels_node_3dm_cv7_gnss_ins - placeholder_matchAll = _mscl.MipModels_placeholder_matchAll - rtk_v1 = _mscl.MipModels_rtk_v1 - rtk_v2 = _mscl.MipModels_rtk_v2 - model_3dm_dh3 = _mscl.MipModels_model_3dm_dh3 - model_3dm_gx3_15 = _mscl.MipModels_model_3dm_gx3_15 - model_3dm_gx3_25 = _mscl.MipModels_model_3dm_gx3_25 - model_3dm_gx3_35 = _mscl.MipModels_model_3dm_gx3_35 - model_3dm_gx3_45 = _mscl.MipModels_model_3dm_gx3_45 - model_3dm_rq1_45_lt = _mscl.MipModels_model_3dm_rq1_45_lt - model_3dm_gx4_15 = _mscl.MipModels_model_3dm_gx4_15 - model_3dm_gx4_25 = _mscl.MipModels_model_3dm_gx4_25 - model_3dm_gx4_45 = _mscl.MipModels_model_3dm_gx4_45 - model_3dm_rq1_45_st = _mscl.MipModels_model_3dm_rq1_45_st - model_mv5_ar = _mscl.MipModels_model_mv5_ar - model_3dm_gx5_10 = _mscl.MipModels_model_3dm_gx5_10 - model_3dm_gx5_15 = _mscl.MipModels_model_3dm_gx5_15 - model_3dm_gx5_25 = _mscl.MipModels_model_3dm_gx5_25 - model_3dm_gx5_35 = _mscl.MipModels_model_3dm_gx5_35 - model_3dm_gx5_45 = _mscl.MipModels_model_3dm_gx5_45 - model_3dm_cv5_10 = _mscl.MipModels_model_3dm_cv5_10 - model_3dm_cv5_15 = _mscl.MipModels_model_3dm_cv5_15 - model_3dm_cv5_25 = _mscl.MipModels_model_3dm_cv5_25 - model_3dm_cv5_45 = _mscl.MipModels_model_3dm_cv5_45 - model_3dm_gq4_45 = _mscl.MipModels_model_3dm_gq4_45 - model_3dm_cx5_45 = _mscl.MipModels_model_3dm_cx5_45 - model_3dm_cx5_35 = _mscl.MipModels_model_3dm_cx5_35 - model_3dm_cx5_25 = _mscl.MipModels_model_3dm_cx5_25 - model_3dm_cx5_15 = _mscl.MipModels_model_3dm_cx5_15 - model_3dm_cx5_10 = _mscl.MipModels_model_3dm_cx5_10 - model_3dm_cl5_15 = _mscl.MipModels_model_3dm_cl5_15 - model_3dm_cl5_25 = _mscl.MipModels_model_3dm_cl5_25 - model_3dm_gq7 = _mscl.MipModels_model_3dm_gq7 - model_3dm_rtk_v1 = _mscl.MipModels_model_3dm_rtk_v1 - model_3dm_rtk = _mscl.MipModels_model_3dm_rtk - model_3dm_cv7_ahrs = _mscl.MipModels_model_3dm_cv7_ahrs - model_3dm_cv7_ar = _mscl.MipModels_model_3dm_cv7_ar - model_3dm_gv7_ahrs = _mscl.MipModels_model_3dm_gv7_ahrs - model_3dm_gv7_ar = _mscl.MipModels_model_3dm_gv7_ar - model_3dm_gv7_ins = _mscl.MipModels_model_3dm_gv7_ins - model_3dm_cv7_ins = _mscl.MipModels_model_3dm_cv7_ins - model_3dm_cv7_gnss_ins = _mscl.MipModels_model_3dm_cv7_gnss_ins - - @staticmethod - def modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - - @staticmethod - def modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - - @staticmethod - def modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - - @staticmethod - def nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - - @staticmethod - def modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - - @staticmethod - def nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - - @staticmethod - def modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - - @staticmethod - def stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - - def __init__(self): - _mscl.MipModels_swiginit(self, _mscl.new_MipModels()) - __swig_destroy__ = _mscl.delete_MipModels - -# Register MipModels in _mscl: -_mscl.MipModels_swigregister(MipModels) - -def MipModels_modelNumbersEqual(model1, model2): - return _mscl.MipModels_modelNumbersEqual(model1, model2) - -def MipModels_modelNumberFromStr(modelNumberString): - return _mscl.MipModels_modelNumberFromStr(modelNumberString) - -def MipModels_modelNumberFromParts(nodeModel, modifier): - return _mscl.MipModels_modelNumberFromParts(nodeModel, modifier) - -def MipModels_nodeModelFromStr(modelNumberString): - return _mscl.MipModels_nodeModelFromStr(modelNumberString) - -def MipModels_modifierFromStr(modelNumberString): - return _mscl.MipModels_modifierFromStr(modelNumberString) - -def MipModels_nodeModelFromModelNumber(modelNumber): - return _mscl.MipModels_nodeModelFromModelNumber(modelNumber) - -def MipModels_modifierFromModelNumber(modelNumber): - return _mscl.MipModels_modifierFromModelNumber(modelNumber) - -def MipModels_stringFromModelNumber(modelNumber): - return _mscl.MipModels_stringFromModelNumber(modelNumber) - -class MipModel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipModel_swiginit(self, _mscl.new_MipModel(*args)) - - def equals(self, compare): - return _mscl.MipModel_equals(self, compare) - - def __str__(self): - return _mscl.MipModel___str__(self) - - def nodeModel(self): - return _mscl.MipModel_nodeModel(self) - - def modifier(self): - return _mscl.MipModel_modifier(self) - - def modelNumber(self): - return _mscl.MipModel_modelNumber(self) - - def baseModel(self): - return _mscl.MipModel_baseModel(self) - __swig_destroy__ = _mscl.delete_MipModel - -# Register MipModel in _mscl: -_mscl.MipModel_swigregister(MipModel) -MipModel.mip_model_none = _mscl.cvar.MipModel_mip_model_none -MipModel.mip_model_3dm_dh3 = _mscl.cvar.MipModel_mip_model_3dm_dh3 -MipModel.mip_model_3dm_gx3_15 = _mscl.cvar.MipModel_mip_model_3dm_gx3_15 -MipModel.mip_model_3dm_gx3_25 = _mscl.cvar.MipModel_mip_model_3dm_gx3_25 -MipModel.mip_model_3dm_gx3_35 = _mscl.cvar.MipModel_mip_model_3dm_gx3_35 -MipModel.mip_model_3dm_gx3_45 = _mscl.cvar.MipModel_mip_model_3dm_gx3_45 -MipModel.mip_model_3dm_rq1_45_lt = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_lt -MipModel.mip_model_3dm_rq1_45_st = _mscl.cvar.MipModel_mip_model_3dm_rq1_45_st -MipModel.mip_model_3dm_gx4_15 = _mscl.cvar.MipModel_mip_model_3dm_gx4_15 -MipModel.mip_model_3dm_gx4_25 = _mscl.cvar.MipModel_mip_model_3dm_gx4_25 -MipModel.mip_model_3dm_gx4_45 = _mscl.cvar.MipModel_mip_model_3dm_gx4_45 -MipModel.mip_model_mv5_ar = _mscl.cvar.MipModel_mip_model_mv5_ar -MipModel.mip_model_3dm_gx5_10 = _mscl.cvar.MipModel_mip_model_3dm_gx5_10 -MipModel.mip_model_3dm_gx5_15 = _mscl.cvar.MipModel_mip_model_3dm_gx5_15 -MipModel.mip_model_3dm_gx5_25 = _mscl.cvar.MipModel_mip_model_3dm_gx5_25 -MipModel.mip_model_3dm_gx5_35 = _mscl.cvar.MipModel_mip_model_3dm_gx5_35 -MipModel.mip_model_3dm_gx5_45 = _mscl.cvar.MipModel_mip_model_3dm_gx5_45 -MipModel.mip_model_3dm_cv5_10 = _mscl.cvar.MipModel_mip_model_3dm_cv5_10 -MipModel.mip_model_3dm_cv5_15 = _mscl.cvar.MipModel_mip_model_3dm_cv5_15 -MipModel.mip_model_3dm_cv5_25 = _mscl.cvar.MipModel_mip_model_3dm_cv5_25 -MipModel.mip_model_3dm_cv5_45 = _mscl.cvar.MipModel_mip_model_3dm_cv5_45 -MipModel.mip_model_3dm_gq4_45 = _mscl.cvar.MipModel_mip_model_3dm_gq4_45 -MipModel.mip_model_3dm_cx5_45 = _mscl.cvar.MipModel_mip_model_3dm_cx5_45 -MipModel.mip_model_3dm_cx5_35 = _mscl.cvar.MipModel_mip_model_3dm_cx5_35 -MipModel.mip_model_3dm_cx5_25 = _mscl.cvar.MipModel_mip_model_3dm_cx5_25 -MipModel.mip_model_3dm_cx5_15 = _mscl.cvar.MipModel_mip_model_3dm_cx5_15 -MipModel.mip_model_3dm_cx5_10 = _mscl.cvar.MipModel_mip_model_3dm_cx5_10 -MipModel.mip_model_3dm_cl5_15 = _mscl.cvar.MipModel_mip_model_3dm_cl5_15 -MipModel.mip_model_3dm_cl5_25 = _mscl.cvar.MipModel_mip_model_3dm_cl5_25 -MipModel.mip_model_3dm_gq7 = _mscl.cvar.MipModel_mip_model_3dm_gq7 -MipModel.mip_model_3dm_rtk_v1 = _mscl.cvar.MipModel_mip_model_3dm_rtk_v1 -MipModel.mip_model_3dm_rtk = _mscl.cvar.MipModel_mip_model_3dm_rtk -MipModel.mip_model_3dm_cv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_cv7_ahrs -MipModel.mip_model_3dm_cv7_ar = _mscl.cvar.MipModel_mip_model_3dm_cv7_ar -MipModel.mip_model_3dm_gv7_ahrs = _mscl.cvar.MipModel_mip_model_3dm_gv7_ahrs -MipModel.mip_model_3dm_gv7_ar = _mscl.cvar.MipModel_mip_model_3dm_gv7_ar -MipModel.mip_model_3dm_gv7_ins = _mscl.cvar.MipModel_mip_model_3dm_gv7_ins -MipModel.mip_model_3dm_cv7_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_ins -MipModel.mip_model_3dm_cv7_gnss_ins = _mscl.cvar.MipModel_mip_model_3dm_cv7_gnss_ins - -class DisplacementModels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - node_digitalDemod = _mscl.DisplacementModels_node_digitalDemod - - def __init__(self): - _mscl.DisplacementModels_swiginit(self, _mscl.new_DisplacementModels()) - __swig_destroy__ = _mscl.delete_DisplacementModels - -# Register DisplacementModels in _mscl: -_mscl.DisplacementModels_swigregister(DisplacementModels) - -class MipTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CLASS_AHRS_IMU = _mscl.MipTypes_CLASS_AHRS_IMU - CLASS_GNSS = _mscl.MipTypes_CLASS_GNSS - CLASS_ESTFILTER = _mscl.MipTypes_CLASS_ESTFILTER - CLASS_DISPLACEMENT = _mscl.MipTypes_CLASS_DISPLACEMENT - CLASS_GNSS1 = _mscl.MipTypes_CLASS_GNSS1 - CLASS_GNSS2 = _mscl.MipTypes_CLASS_GNSS2 - CLASS_GNSS3 = _mscl.MipTypes_CLASS_GNSS3 - CLASS_RTK = _mscl.MipTypes_CLASS_RTK - CLASS_GNSS4 = _mscl.MipTypes_CLASS_GNSS4 - CLASS_GNSS5 = _mscl.MipTypes_CLASS_GNSS5 - CLASS_SYSTEM = _mscl.MipTypes_CLASS_SYSTEM - USE_NEW_SETTINGS = _mscl.MipTypes_USE_NEW_SETTINGS - READ_BACK_CURRENT_SETTINGS = _mscl.MipTypes_READ_BACK_CURRENT_SETTINGS - SAVE_CURRENT_SETTINGS = _mscl.MipTypes_SAVE_CURRENT_SETTINGS - LOAD_STARTUP_SETTINGS = _mscl.MipTypes_LOAD_STARTUP_SETTINGS - RESET_TO_DEFAULT = _mscl.MipTypes_RESET_TO_DEFAULT - USE_NEW_SETTINGS_NO_ACKNACK = _mscl.MipTypes_USE_NEW_SETTINGS_NO_ACKNACK - DISABLED = _mscl.MipTypes_DISABLED - ENABLED = _mscl.MipTypes_ENABLED - TIME_FRAME_WEEKS = _mscl.MipTypes_TIME_FRAME_WEEKS - TIME_FRAME_SECONDS = _mscl.MipTypes_TIME_FRAME_SECONDS - CMD_PING = _mscl.MipTypes_CMD_PING - CMD_SET_IDLE = _mscl.MipTypes_CMD_SET_IDLE - CMD_GET_DEVICE_INFO = _mscl.MipTypes_CMD_GET_DEVICE_INFO - CMD_GET_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_DESCRIPTOR_SETS - CMD_BUILT_IN_TEST = _mscl.MipTypes_CMD_BUILT_IN_TEST - CMD_RESUME = _mscl.MipTypes_CMD_RESUME - CMD_GET_EXT_DESCRIPTOR_SETS = _mscl.MipTypes_CMD_GET_EXT_DESCRIPTOR_SETS - CMD_COMM_PORT_SPEED = _mscl.MipTypes_CMD_COMM_PORT_SPEED - CMD_GPS_TIME_UPDATE = _mscl.MipTypes_CMD_GPS_TIME_UPDATE - CMD_RESET = _mscl.MipTypes_CMD_RESET - CMD_POLL_SENSOR_DATA = _mscl.MipTypes_CMD_POLL_SENSOR_DATA - CMD_POLL_GNSS_DATA = _mscl.MipTypes_CMD_POLL_GNSS_DATA - CMD_POLL_EF_DATA = _mscl.MipTypes_CMD_POLL_EF_DATA - CMD_GET_SENSOR_RATE_BASE = _mscl.MipTypes_CMD_GET_SENSOR_RATE_BASE - CMD_GET_GNSS_RATE_BASE = _mscl.MipTypes_CMD_GET_GNSS_RATE_BASE - CMD_GET_EF_RATE_BASE = _mscl.MipTypes_CMD_GET_EF_RATE_BASE - CMD_SENSOR_MESSAGE_FORMAT = _mscl.MipTypes_CMD_SENSOR_MESSAGE_FORMAT - CMD_GNSS_MESSAGE_FORMAT = _mscl.MipTypes_CMD_GNSS_MESSAGE_FORMAT - CMD_EF_MESSAGE_FORMAT = _mscl.MipTypes_CMD_EF_MESSAGE_FORMAT - CMD_NMEA_MESSAGE_FORMAT = _mscl.MipTypes_CMD_NMEA_MESSAGE_FORMAT - CMD_POLL = _mscl.MipTypes_CMD_POLL - CMD_GET_BASE_RATE = _mscl.MipTypes_CMD_GET_BASE_RATE - CMD_MESSAGE_FORMAT = _mscl.MipTypes_CMD_MESSAGE_FORMAT - CMD_FACTORY_STREAMING = _mscl.MipTypes_CMD_FACTORY_STREAMING - CMD_CONTINUOUS_DATA_STREAM = _mscl.MipTypes_CMD_CONTINUOUS_DATA_STREAM - CMD_RAW_RTCM_2_3_MESSAGE = _mscl.MipTypes_CMD_RAW_RTCM_2_3_MESSAGE - CMD_GNSS_CONSTELLATION_SETTINGS = _mscl.MipTypes_CMD_GNSS_CONSTELLATION_SETTINGS - CMD_GNSS_SBAS_SETTINGS = _mscl.MipTypes_CMD_GNSS_SBAS_SETTINGS - CMD_GNSS_ASSIST_FIX_CONTROL = _mscl.MipTypes_CMD_GNSS_ASSIST_FIX_CONTROL - CMD_GNSS_ASSIST_TIME_UPDATE = _mscl.MipTypes_CMD_GNSS_ASSIST_TIME_UPDATE - CMD_PPS_SOURCE = _mscl.MipTypes_CMD_PPS_SOURCE - CMD_EVENT_SUPPORT = _mscl.MipTypes_CMD_EVENT_SUPPORT - CMD_EVENT_CONTROL = _mscl.MipTypes_CMD_EVENT_CONTROL - CMD_EVENT_TRIGGER_STATUS = _mscl.MipTypes_CMD_EVENT_TRIGGER_STATUS - CMD_EVENT_ACTION_STATUS = _mscl.MipTypes_CMD_EVENT_ACTION_STATUS - CMD_EVENT_TRIGGER_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_TRIGGER_CONFIGURATION - CMD_EVENT_ACTION_CONFIGURATION = _mscl.MipTypes_CMD_EVENT_ACTION_CONFIGURATION - CMD_SAVE_STARTUP_SETTINGS = _mscl.MipTypes_CMD_SAVE_STARTUP_SETTINGS - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_EULER - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_QUAT - CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_TRANSFORM_DCM - CMD_GPS_DYNAMICS_MODE = _mscl.MipTypes_CMD_GPS_DYNAMICS_MODE - CMD_SENSOR_SIG_COND_SETTINGS = _mscl.MipTypes_CMD_SENSOR_SIG_COND_SETTINGS - CMD_SENSOR_TIMESTAMP = _mscl.MipTypes_CMD_SENSOR_TIMESTAMP - CMD_ACCEL_BIAS = _mscl.MipTypes_CMD_ACCEL_BIAS - CMD_GYRO_BIAS = _mscl.MipTypes_CMD_GYRO_BIAS - CMD_CAP_GYRO_BIAS = _mscl.MipTypes_CMD_CAP_GYRO_BIAS - CMD_MAG_HARD_IRON_OFFSET = _mscl.MipTypes_CMD_MAG_HARD_IRON_OFFSET - CMD_MAG_SOFT_IRON_MATRIX = _mscl.MipTypes_CMD_MAG_SOFT_IRON_MATRIX - CMD_CF_REALIGN_UP = _mscl.MipTypes_CMD_CF_REALIGN_UP - CMD_CF_REALIGN_NORTH = _mscl.MipTypes_CMD_CF_REALIGN_NORTH - CMD_CONING_SCULLING = _mscl.MipTypes_CMD_CONING_SCULLING - CMD_UART_BAUD_RATE = _mscl.MipTypes_CMD_UART_BAUD_RATE - CMD_GPIO_CONFIGURATION = _mscl.MipTypes_CMD_GPIO_CONFIGURATION - CMD_GPIO_STATE = _mscl.MipTypes_CMD_GPIO_STATE - CMD_ODOMETER_SETTINGS = _mscl.MipTypes_CMD_ODOMETER_SETTINGS - CMD_LOWPASS_FILTER_SETTINGS = _mscl.MipTypes_CMD_LOWPASS_FILTER_SETTINGS - CMD_COMPLEMENTARY_FILTER_SETTINGS = _mscl.MipTypes_CMD_COMPLEMENTARY_FILTER_SETTINGS - CMD_SENSOR_RANGE = _mscl.MipTypes_CMD_SENSOR_RANGE - CMD_SUPPORTED_SENSOR_RANGES = _mscl.MipTypes_CMD_SUPPORTED_SENSOR_RANGES - CMD_LOWPASS_ANTIALIASING_FILTER = _mscl.MipTypes_CMD_LOWPASS_ANTIALIASING_FILTER - CMD_DATA_STREAM_FORMAT = _mscl.MipTypes_CMD_DATA_STREAM_FORMAT - CMD_POWER_STATES = _mscl.MipTypes_CMD_POWER_STATES - CMD_GPS_STARTUP_SETTINGS = _mscl.MipTypes_CMD_GPS_STARTUP_SETTINGS - CMD_DEVICE_STATUS = _mscl.MipTypes_CMD_DEVICE_STATUS - CMD_EF_RESET_FILTER = _mscl.MipTypes_CMD_EF_RESET_FILTER - CMD_EF_INIT_ATTITUDE = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE - CMD_EF_INIT_HEADING = _mscl.MipTypes_CMD_EF_INIT_HEADING - CMD_EF_INIT_ATTITUDE_FROM_AHRS = _mscl.MipTypes_CMD_EF_INIT_ATTITUDE_FROM_AHRS - CMD_EF_RUN_FILTER = _mscl.MipTypes_CMD_EF_RUN_FILTER - CMD_EF_VEHIC_DYNAMICS_MODE = _mscl.MipTypes_CMD_EF_VEHIC_DYNAMICS_MODE - CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_EULER - CMD_EF_SENS_VEHIC_FRAME_OFFSET = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_OFFSET - CMD_EF_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_ANTENNA_OFFSET - CMD_EF_BIAS_EST_CTRL = _mscl.MipTypes_CMD_EF_BIAS_EST_CTRL - CMD_EF_GNSS_SRC_CTRL = _mscl.MipTypes_CMD_EF_GNSS_SRC_CTRL - CMD_EF_EXTERN_GNSS_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_GNSS_UPDATE - CMD_EF_EXTERN_HEADING_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_HEADING_UPDATE - CMD_EF_HEADING_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_HEADING_UPDATE_CTRL - CMD_EF_AUTO_INIT_CTRL = _mscl.MipTypes_CMD_EF_AUTO_INIT_CTRL - CMD_EF_ACCEL_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_ACCEL_WHT_NSE_STD_DEV - CMD_EF_GYRO_WHT_NSE_STD_DEV = _mscl.MipTypes_CMD_EF_GYRO_WHT_NSE_STD_DEV - CMD_EF_ACCEL_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_ACCEL_BIAS_MODEL_PARAMS - CMD_EF_GYRO_BIAS_MODEL_PARAMS = _mscl.MipTypes_CMD_EF_GYRO_BIAS_MODEL_PARAMS - CMD_EF_ZERO_VEL_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_VEL_UPDATE_CTRL - CMD_EF_EXT_HEADING_UPDATE_TS = _mscl.MipTypes_CMD_EF_EXT_HEADING_UPDATE_TS - CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL = _mscl.MipTypes_CMD_EF_ZERO_ANG_RATE_UPDATE_CTRL - CMD_EF_TARE_ORIENT = _mscl.MipTypes_CMD_EF_TARE_ORIENT - CMD_EF_CMDED_ZERO_VEL_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_VEL_UPDATE - CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE = _mscl.MipTypes_CMD_EF_CMDED_ZERO_ANG_RATE_UPDATE - CMD_EF_SET_REF_POSITION = _mscl.MipTypes_CMD_EF_SET_REF_POSITION - CMD_EF_MAG_CAPTURE_AUTO_CAL = _mscl.MipTypes_CMD_EF_MAG_CAPTURE_AUTO_CAL - CMD_EF_GRAVITY_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_STD_DEV - CMD_EF_PRESS_ALT_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_PRESS_ALT_NOISE_STD_DEV - CMD_EF_GRAVITY_NOISE_MINIMUM = _mscl.MipTypes_CMD_EF_GRAVITY_NOISE_MINIMUM - CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_HARD_IRON_OFFSET_PROCESS_NOISE - CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE = _mscl.MipTypes_CMD_EF_SOFT_IRON_OFFSET_PROCESS_NOISE - CMD_EF_ENABLE_DISABLE_MEASUREMENTS = _mscl.MipTypes_CMD_EF_ENABLE_DISABLE_MEASUREMENTS - CMD_EF_MAG_NOISE_STD_DEV = _mscl.MipTypes_CMD_EF_MAG_NOISE_STD_DEV - CMD_EF_DECLINATION_SRC = _mscl.MipTypes_CMD_EF_DECLINATION_SRC - CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_GRAV_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_MAGNITUDE_ERR_ADAPT_MEASURE - CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE = _mscl.MipTypes_CMD_EF_MAG_DIP_ANGLE_ERR_ADAPT_MEASURE - CMD_EF_ALTITUDE_AID_CTRL = _mscl.MipTypes_CMD_EF_ALTITUDE_AID_CTRL - CMD_EF_PITCH_ROLL_AID_CTRL = _mscl.MipTypes_CMD_EF_PITCH_ROLL_AID_CTRL - CMD_EF_INCLINATION_SRC = _mscl.MipTypes_CMD_EF_INCLINATION_SRC - CMD_EF_FIELD_MAGNITUDE_SRC = _mscl.MipTypes_CMD_EF_FIELD_MAGNITUDE_SRC - CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_DCM - CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT = _mscl.MipTypes_CMD_EF_SENS_VEHIC_FRAME_ROTATION_QUAT - CMD_EF_AIDING_MEASUREMENT_ENABLE = _mscl.MipTypes_CMD_EF_AIDING_MEASUREMENT_ENABLE - CMD_EF_INITIALIZATION_CONFIG = _mscl.MipTypes_CMD_EF_INITIALIZATION_CONFIG - CMD_EF_ADAPTIVE_FILTER_OPTIONS = _mscl.MipTypes_CMD_EF_ADAPTIVE_FILTER_OPTIONS - CMD_EF_MULTI_ANTENNA_OFFSET = _mscl.MipTypes_CMD_EF_MULTI_ANTENNA_OFFSET - CMD_EF_RELATIVE_POSITION_REF = _mscl.MipTypes_CMD_EF_RELATIVE_POSITION_REF - CMD_EF_LEVER_ARM_OFFSET_REF = _mscl.MipTypes_CMD_EF_LEVER_ARM_OFFSET_REF - CMD_EF_EXTERN_SPEED_UPDATE = _mscl.MipTypes_CMD_EF_EXTERN_SPEED_UPDATE - CMD_EF_SPEED_MEASUREMENT_OFFSET = _mscl.MipTypes_CMD_EF_SPEED_MEASUREMENT_OFFSET - CMD_EF_VERTICAL_GYRO_CONSTRAINT = _mscl.MipTypes_CMD_EF_VERTICAL_GYRO_CONSTRAINT - CMD_EF_WHEELED_VEHICLE_CONSTRAINT = _mscl.MipTypes_CMD_EF_WHEELED_VEHICLE_CONSTRAINT - CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL = _mscl.MipTypes_CMD_EF_GNSS_ANTENNA_LEVER_ARM_CAL - CMD_GNSS_RECEIVER_INFO = _mscl.MipTypes_CMD_GNSS_RECEIVER_INFO - CMD_GNSS_SIGNAL_CONFIG = _mscl.MipTypes_CMD_GNSS_SIGNAL_CONFIG - CMD_GNSS_SPARTN_CONFIG = _mscl.MipTypes_CMD_GNSS_SPARTN_CONFIG - CMD_GNSS_RTK_CONFIG = _mscl.MipTypes_CMD_GNSS_RTK_CONFIG - CMD_INTERFACE_CONTROL = _mscl.MipTypes_CMD_INTERFACE_CONTROL - CMD_COMMUNICATION_MODE = _mscl.MipTypes_CMD_COMMUNICATION_MODE - CMD_HARDWARE_CTRL = _mscl.MipTypes_CMD_HARDWARE_CTRL - CMD_GET_ANALOG_DISPLACEMENT_CALS = _mscl.MipTypes_CMD_GET_ANALOG_DISPLACEMENT_CALS - CMD_DISPLACEMENT_OUTPUT_RATE = _mscl.MipTypes_CMD_DISPLACEMENT_OUTPUT_RATE - CMD_DISPLACEMENT_DEVICE_TIME = _mscl.MipTypes_CMD_DISPLACEMENT_DEVICE_TIME - CMD_RTK_DEVICE_STATUS_FLAGS = _mscl.MipTypes_CMD_RTK_DEVICE_STATUS_FLAGS - CMD_RTK_ACTIVATION_CODE = _mscl.MipTypes_CMD_RTK_ACTIVATION_CODE - CMD_AIDING_FRAME_CONFIG = _mscl.MipTypes_CMD_AIDING_FRAME_CONFIG - CMD_AIDING_ECHO_CONTROL = _mscl.MipTypes_CMD_AIDING_ECHO_CONTROL - CMD_AIDING_POS_ECEF = _mscl.MipTypes_CMD_AIDING_POS_ECEF - CMD_AIDING_POS_LLH = _mscl.MipTypes_CMD_AIDING_POS_LLH - CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CMD_AIDING_HEIGHT_ABOVE_ELLIPSOID - CMD_AIDING_VEL_ECEF = _mscl.MipTypes_CMD_AIDING_VEL_ECEF - CMD_AIDING_VEL_NED = _mscl.MipTypes_CMD_AIDING_VEL_NED - CMD_AIDING_VEL_BODY_FRAME = _mscl.MipTypes_CMD_AIDING_VEL_BODY_FRAME - CMD_AIDING_HEADING_TRUE = _mscl.MipTypes_CMD_AIDING_HEADING_TRUE - CMD_AIDING_MAGNETIC_FIELD = _mscl.MipTypes_CMD_AIDING_MAGNETIC_FIELD - CMD_AIDING_PRESSURE = _mscl.MipTypes_CMD_AIDING_PRESSURE - CH_FIELD_SENSOR_RAW_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_ACCEL_VEC - CH_FIELD_SENSOR_RAW_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_GYRO_VEC - CH_FIELD_SENSOR_RAW_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_MAG_VEC - CH_FIELD_SENSOR_SCALED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_ACCEL_VEC - CH_FIELD_SENSOR_SCALED_GYRO_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_GYRO_VEC - CH_FIELD_SENSOR_SCALED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_MAG_VEC - CH_FIELD_SENSOR_DELTA_THETA_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_THETA_VEC - CH_FIELD_SENSOR_DELTA_VELOCITY_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_DELTA_VELOCITY_VEC - CH_FIELD_SENSOR_ORIENTATION_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_MATRIX - CH_FIELD_SENSOR_ORIENTATION_QUATERNION = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_QUATERNION - CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX = _mscl.MipTypes_CH_FIELD_SENSOR_ORIENTATION_UPDATE_MATRIX - CH_FIELD_SENSOR_EULER_ANGLES = _mscl.MipTypes_CH_FIELD_SENSOR_EULER_ANGLES - CH_FIELD_SENSOR_INTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_INTERNAL_TIMESTAMP - CH_FIELD_SENSOR_BEACONED_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_BEACONED_TIMESTAMP - CH_FIELD_SENSOR_STABILIZED_MAG_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_MAG_VEC - CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC = _mscl.MipTypes_CH_FIELD_SENSOR_STABILIZED_ACCEL_VEC - CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_GPS_CORRELATION_TIMESTAMP - CH_FIELD_SENSOR_TEMPERATURE_STATISTICS = _mscl.MipTypes_CH_FIELD_SENSOR_TEMPERATURE_STATISTICS - CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_RAW_AMBIENT_PRESSURE - CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE = _mscl.MipTypes_CH_FIELD_SENSOR_SCALED_AMBIENT_PRESSURE - CH_FIELD_SENSOR_OVERRANGE_STATUS = _mscl.MipTypes_CH_FIELD_SENSOR_OVERRANGE_STATUS - CH_FIELD_SENSOR_ODOMETER_DATA = _mscl.MipTypes_CH_FIELD_SENSOR_ODOMETER_DATA - CH_FIELD_SENSOR_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EVENT_SOURCE - CH_FIELD_SENSOR_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_TICKS - CH_FIELD_SENSOR_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TICKS - CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_GPS_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_TIMESTAMP - CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SENSOR_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_LLH_POSITION - CH_FIELD_GNSS_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_POSITION - CH_FIELD_GNSS_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_NED_VELOCITY - CH_FIELD_GNSS_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_ECEF_VELOCITY - CH_FIELD_GNSS_DOP = _mscl.MipTypes_CH_FIELD_GNSS_DOP - CH_FIELD_GNSS_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_UTC_TIME - CH_FIELD_GNSS_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_GPS_TIME - CH_FIELD_GNSS_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO - CH_FIELD_GNSS_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_FIX_INFO - CH_FIELD_GNSS_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_HARDWARE_STATUS - CH_FIELD_GNSS_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_INFO - CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_CLOCK_INFO_2 - CH_FIELD_GNSS_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_LEAP_SECONDS - CH_FIELD_GNSS_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_INFO - CH_FIELD_GNSS_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_SBAS_CORRECTION - CH_FIELD_GNSS_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_RF_ERROR_DETECTION - CH_FIELD_GNSS_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_SATELLITE_STATUS - CH_FIELD_GNSS_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_RAW_OBSERVATION - CH_FIELD_GNSS_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_STATION_INFO - CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GPS_EPHEMERIS - CH_FIELD_GNSS_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GLONASS_EPHEMERIS - CH_FIELD_GNSS_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_EPHEMERIS - CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_TICKS - CH_FIELD_GNSS_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TICKS - CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_POS - CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_VELOCITY - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_QUATERNION - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_MATRIX - CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ORIENT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS - CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LLH_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_NED_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_EULER - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ACCEL_BIAS_UNCERT - CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_LINEAR_ACCEL - CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ANGULAR_RATE - CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_WGS84_LOC_GRAV_MAGNITUDE - CH_FIELD_ESTFILTER_FILTER_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_FILTER_STATUS - CH_FIELD_ESTFILTER_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_ATT_UNCERT_QUAT - CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GRAVITY_VECTOR - CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_HEADING_UPDATE_SOURCE - CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAGNETIC_MODEL_SLN - CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ESTIMATED_GYRO_SCALE_FACTOR - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR - CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GYRO_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ACCEL_SCALE_FACTOR_UNCERT - CH_FIELD_ESTFILTER_MAG_BIAS = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS - CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_BIAS_UNCERT - CH_FIELD_ESTFILTER_COMPENSATED_ACCEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_COMPENSATED_ACCEL - CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_STD_ATMOSPHERE_MODEL - CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE = _mscl.MipTypes_CH_FIELD_ESTFILTER_PRESSURE_ALTITUDE - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX - CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_HARD_IRON_OFFSET_UNCERT - CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_AUTO_SOFT_IRON_MATRIX_UNCERT - CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_COVARIANCE_MATRIX - CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR = _mscl.MipTypes_CH_FIELD_ESTFILTER_MAG_RESIDUAL_VECTOR - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION - CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_CLOCK_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION - CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_MULTI_ANTENNA_CORRECTION_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS_UNCERT - CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL_UNCERT - CH_FIELD_ESTFILTER_ECEF_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_POS - CH_FIELD_ESTFILTER_ECEF_VEL = _mscl.MipTypes_CH_FIELD_ESTFILTER_ECEF_VEL - CH_FIELD_ESTFILTER_NED_RELATIVE_POS = _mscl.MipTypes_CH_FIELD_ESTFILTER_NED_RELATIVE_POS - CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_POSITION_AIDING_STATUS - CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_ATTITUDE_AIDING_STATUS - CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY = _mscl.MipTypes_CH_FIELD_ESTFILTER_AIDING_MEASURE_SUMMARY - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR - CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_ODOMETER_SCALE_FACTOR_ERROR_UNCERT - CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS = _mscl.MipTypes_CH_FIELD_ESTFILTER_GNSS_DUAL_ANTENNA_STATUS - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR - CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT = _mscl.MipTypes_CH_FIELD_ESTFILTER_FRAME_CONFIG_ERROR_UNCERT - CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EVENT_SOURCE - CH_FIELD_ESTFILTER_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_TICKS - CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TICKS - CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_GPS_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_ESTFILTER_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_DISP_DISPLACEMENT_RAW = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_RAW - CH_FIELD_DISP_DISPLACEMENT_MM = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_MM - CH_FIELD_DISP_DISPLACEMENT_TS = _mscl.MipTypes_CH_FIELD_DISP_DISPLACEMENT_TS - CH_FIELD_GNSS_1_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_LLH_POSITION - CH_FIELD_GNSS_1_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_POSITION - CH_FIELD_GNSS_1_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_NED_VELOCITY - CH_FIELD_GNSS_1_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_1_ECEF_VELOCITY - CH_FIELD_GNSS_1_DOP = _mscl.MipTypes_CH_FIELD_GNSS_1_DOP - CH_FIELD_GNSS_1_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_UTC_TIME - CH_FIELD_GNSS_1_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_TIME - CH_FIELD_GNSS_1_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO - CH_FIELD_GNSS_1_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_FIX_INFO - CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_1_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_HARDWARE_STATUS - CH_FIELD_GNSS_1_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_INFO - CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_1_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_1_CLOCK_INFO_2 - CH_FIELD_GNSS_1_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_LEAP_SECONDS - CH_FIELD_GNSS_1_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_INFO - CH_FIELD_GNSS_1_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_SBAS_CORRECTION - CH_FIELD_GNSS_1_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_RF_ERROR_DETECTION - CH_FIELD_GNSS_1_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_SATELLITE_STATUS - CH_FIELD_GNSS_1_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_1_RAW_OBSERVATION - CH_FIELD_GNSS_1_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_1_STATION_INFO - CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_1_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_1_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_EPHEMERIS - CH_FIELD_GNSS_1_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GLONASS_EPHEMERIS - CH_FIELD_GNSS_1_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_EPHEMERIS - CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_1_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_1_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_TICKS - CH_FIELD_GNSS_1_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TICKS - CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_1_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_2_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_LLH_POSITION - CH_FIELD_GNSS_2_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_POSITION - CH_FIELD_GNSS_2_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_NED_VELOCITY - CH_FIELD_GNSS_2_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_2_ECEF_VELOCITY - CH_FIELD_GNSS_2_DOP = _mscl.MipTypes_CH_FIELD_GNSS_2_DOP - CH_FIELD_GNSS_2_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_UTC_TIME - CH_FIELD_GNSS_2_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_TIME - CH_FIELD_GNSS_2_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO - CH_FIELD_GNSS_2_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_FIX_INFO - CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_2_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_HARDWARE_STATUS - CH_FIELD_GNSS_2_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_INFO - CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_2_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_2_CLOCK_INFO_2 - CH_FIELD_GNSS_2_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_LEAP_SECONDS - CH_FIELD_GNSS_2_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_INFO - CH_FIELD_GNSS_2_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_SBAS_CORRECTION - CH_FIELD_GNSS_2_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_RF_ERROR_DETECTION - CH_FIELD_GNSS_2_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_SATELLITE_STATUS - CH_FIELD_GNSS_2_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_2_RAW_OBSERVATION - CH_FIELD_GNSS_2_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_2_STATION_INFO - CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_2_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_2_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_EPHEMERIS - CH_FIELD_GNSS_2_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GLONASS_EPHEMERIS - CH_FIELD_GNSS_2_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_EPHEMERIS - CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_2_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_2_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_TICKS - CH_FIELD_GNSS_2_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TICKS - CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_2_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_3_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_LLH_POSITION - CH_FIELD_GNSS_3_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_POSITION - CH_FIELD_GNSS_3_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_NED_VELOCITY - CH_FIELD_GNSS_3_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_3_ECEF_VELOCITY - CH_FIELD_GNSS_3_DOP = _mscl.MipTypes_CH_FIELD_GNSS_3_DOP - CH_FIELD_GNSS_3_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_UTC_TIME - CH_FIELD_GNSS_3_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_TIME - CH_FIELD_GNSS_3_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO - CH_FIELD_GNSS_3_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_FIX_INFO - CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_3_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_HARDWARE_STATUS - CH_FIELD_GNSS_3_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_INFO - CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_3_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_3_CLOCK_INFO_2 - CH_FIELD_GNSS_3_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_LEAP_SECONDS - CH_FIELD_GNSS_3_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_INFO - CH_FIELD_GNSS_3_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_SBAS_CORRECTION - CH_FIELD_GNSS_3_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_RF_ERROR_DETECTION - CH_FIELD_GNSS_3_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_SATELLITE_STATUS - CH_FIELD_GNSS_3_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_3_RAW_OBSERVATION - CH_FIELD_GNSS_3_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_3_STATION_INFO - CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_3_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_3_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_EPHEMERIS - CH_FIELD_GNSS_3_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GLONASS_EPHEMERIS - CH_FIELD_GNSS_3_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_EPHEMERIS - CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_3_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_3_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_TICKS - CH_FIELD_GNSS_3_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TICKS - CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_3_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_4_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_LLH_POSITION - CH_FIELD_GNSS_4_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_POSITION - CH_FIELD_GNSS_4_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_NED_VELOCITY - CH_FIELD_GNSS_4_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_4_ECEF_VELOCITY - CH_FIELD_GNSS_4_DOP = _mscl.MipTypes_CH_FIELD_GNSS_4_DOP - CH_FIELD_GNSS_4_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_UTC_TIME - CH_FIELD_GNSS_4_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_TIME - CH_FIELD_GNSS_4_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO - CH_FIELD_GNSS_4_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_FIX_INFO - CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_4_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_HARDWARE_STATUS - CH_FIELD_GNSS_4_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_INFO - CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_4_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_4_CLOCK_INFO_2 - CH_FIELD_GNSS_4_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_LEAP_SECONDS - CH_FIELD_GNSS_4_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_INFO - CH_FIELD_GNSS_4_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_SBAS_CORRECTION - CH_FIELD_GNSS_4_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_RF_ERROR_DETECTION - CH_FIELD_GNSS_4_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_SATELLITE_STATUS - CH_FIELD_GNSS_4_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_4_RAW_OBSERVATION - CH_FIELD_GNSS_4_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_4_STATION_INFO - CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_4_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_4_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_EPHEMERIS - CH_FIELD_GNSS_4_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GLONASS_EPHEMERIS - CH_FIELD_GNSS_4_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_EPHEMERIS - CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_4_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_4_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_TICKS - CH_FIELD_GNSS_4_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TICKS - CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_4_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_GNSS_5_LLH_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_LLH_POSITION - CH_FIELD_GNSS_5_ECEF_POSITION = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_POSITION - CH_FIELD_GNSS_5_NED_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_NED_VELOCITY - CH_FIELD_GNSS_5_ECEF_VELOCITY = _mscl.MipTypes_CH_FIELD_GNSS_5_ECEF_VELOCITY - CH_FIELD_GNSS_5_DOP = _mscl.MipTypes_CH_FIELD_GNSS_5_DOP - CH_FIELD_GNSS_5_UTC_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_UTC_TIME - CH_FIELD_GNSS_5_GPS_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_TIME - CH_FIELD_GNSS_5_CLOCK_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO - CH_FIELD_GNSS_5_FIX_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_FIX_INFO - CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SPACE_VEHICLE_INFO - CH_FIELD_GNSS_5_HARDWARE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_HARDWARE_STATUS - CH_FIELD_GNSS_5_DGNSS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_INFO - CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_DGNSS_CHANNEL_STATUS - CH_FIELD_GNSS_5_CLOCK_INFO_2 = _mscl.MipTypes_CH_FIELD_GNSS_5_CLOCK_INFO_2 - CH_FIELD_GNSS_5_GPS_LEAP_SECONDS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_LEAP_SECONDS - CH_FIELD_GNSS_5_SBAS_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_INFO - CH_FIELD_GNSS_5_SBAS_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_SBAS_CORRECTION - CH_FIELD_GNSS_5_RF_ERROR_DETECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_RF_ERROR_DETECTION - CH_FIELD_GNSS_5_SATELLITE_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_SATELLITE_STATUS - CH_FIELD_GNSS_5_RAW_OBSERVATION = _mscl.MipTypes_CH_FIELD_GNSS_5_RAW_OBSERVATION - CH_FIELD_GNSS_5_STATION_INFO = _mscl.MipTypes_CH_FIELD_GNSS_5_STATION_INFO - CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS = _mscl.MipTypes_CH_FIELD_GNSS_5_RTK_CORRECTIONS_STATUS - CH_FIELD_GNSS_5_GPS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_EPHEMERIS - CH_FIELD_GNSS_5_GLONASS_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GLONASS_EPHEMERIS - CH_FIELD_GNSS_5_GALILEO_EPHEMERIS = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_EPHEMERIS - CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GPS_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_FIELD_GNSS_5_GALILEO_IONOSPHERIC_CORRECTION - CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EVENT_SOURCE - CH_FIELD_GNSS_5_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_TICKS - CH_FIELD_GNSS_5_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TICKS - CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_GPS_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_GNSS_5_SHARED_DELTA_EXTERNAL_TIME - CH_FIELD_SYSTEM_BUILT_IN_TEST = _mscl.MipTypes_CH_FIELD_SYSTEM_BUILT_IN_TEST - CH_FIELD_SYSTEM_TIME_SYNC_STATUS = _mscl.MipTypes_CH_FIELD_SYSTEM_TIME_SYNC_STATUS - CH_FIELD_SYSTEM_GPIO_STATE = _mscl.MipTypes_CH_FIELD_SYSTEM_GPIO_STATE - CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EVENT_SOURCE - CH_FIELD_SYSTEM_SHARED_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_TICKS - CH_FIELD_SYSTEM_SHARED_DELTA_TICKS = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TICKS - CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_GPS_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_REFERENCE_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_REFERENCE_TIME - CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_EXTERNAL_TIMESTAMP - CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME = _mscl.MipTypes_CH_FIELD_SYSTEM_SHARED_DELTA_EXTERNAL_TIME - MIN_SHARED_FIELD_DESCRIPTOR = _mscl.MipTypes_MIN_SHARED_FIELD_DESCRIPTOR - CH_UNKNOWN = _mscl.MipTypes_CH_UNKNOWN - CH_X = _mscl.MipTypes_CH_X - CH_Y = _mscl.MipTypes_CH_Y - CH_Z = _mscl.MipTypes_CH_Z - CH_MATRIX = _mscl.MipTypes_CH_MATRIX - CH_QUATERNION = _mscl.MipTypes_CH_QUATERNION - CH_ROLL = _mscl.MipTypes_CH_ROLL - CH_PITCH = _mscl.MipTypes_CH_PITCH - CH_YAW = _mscl.MipTypes_CH_YAW - CH_TICK = _mscl.MipTypes_CH_TICK - CH_TIMESTAMP = _mscl.MipTypes_CH_TIMESTAMP - CH_STATUS = _mscl.MipTypes_CH_STATUS - CH_TIME_OF_WEEK = _mscl.MipTypes_CH_TIME_OF_WEEK - CH_WEEK_NUMBER = _mscl.MipTypes_CH_WEEK_NUMBER - CH_LATITUDE = _mscl.MipTypes_CH_LATITUDE - CH_LONGITUDE = _mscl.MipTypes_CH_LONGITUDE - CH_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipTypes_CH_HEIGHT_ABOVE_ELLIPSOID - CH_HEIGHT_ABOVE_MSL = _mscl.MipTypes_CH_HEIGHT_ABOVE_MSL - CH_HORIZONTAL_ACCURACY = _mscl.MipTypes_CH_HORIZONTAL_ACCURACY - CH_VERTICAL_ACCURACY = _mscl.MipTypes_CH_VERTICAL_ACCURACY - CH_POSITION_ACCURACY = _mscl.MipTypes_CH_POSITION_ACCURACY - CH_NORTH = _mscl.MipTypes_CH_NORTH - CH_EAST = _mscl.MipTypes_CH_EAST - CH_DOWN = _mscl.MipTypes_CH_DOWN - CH_SPEED = _mscl.MipTypes_CH_SPEED - CH_GROUND_SPEED = _mscl.MipTypes_CH_GROUND_SPEED - CH_HEADING = _mscl.MipTypes_CH_HEADING - CH_SPEED_ACCURACY = _mscl.MipTypes_CH_SPEED_ACCURACY - CH_HEADING_ACCURACY = _mscl.MipTypes_CH_HEADING_ACCURACY - CH_VELOCITY_ACCURACY = _mscl.MipTypes_CH_VELOCITY_ACCURACY - CH_GEOMETRIC_DOP = _mscl.MipTypes_CH_GEOMETRIC_DOP - CH_POSITION_DOP = _mscl.MipTypes_CH_POSITION_DOP - CH_HORIZONTAL_DOP = _mscl.MipTypes_CH_HORIZONTAL_DOP - CH_VERTICAL_DOP = _mscl.MipTypes_CH_VERTICAL_DOP - CH_TIME_DOP = _mscl.MipTypes_CH_TIME_DOP - CH_NORTHING_DOP = _mscl.MipTypes_CH_NORTHING_DOP - CH_EASTING_DOP = _mscl.MipTypes_CH_EASTING_DOP - CH_FLAGS = _mscl.MipTypes_CH_FLAGS - CH_BIAS = _mscl.MipTypes_CH_BIAS - CH_DRIFT = _mscl.MipTypes_CH_DRIFT - CH_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_ACCURACY_ESTIMATE - CH_FIX_TYPE = _mscl.MipTypes_CH_FIX_TYPE - CH_SV_COUNT = _mscl.MipTypes_CH_SV_COUNT - CH_CHANNEL = _mscl.MipTypes_CH_CHANNEL - CH_ID = _mscl.MipTypes_CH_ID - CH_CARRIER_TO_NOISE_RATIO = _mscl.MipTypes_CH_CARRIER_TO_NOISE_RATIO - CH_AZIMUTH = _mscl.MipTypes_CH_AZIMUTH - CH_ELEVATION = _mscl.MipTypes_CH_ELEVATION - CH_SENSOR_STATE = _mscl.MipTypes_CH_SENSOR_STATE - CH_ANTENNA_STATE = _mscl.MipTypes_CH_ANTENNA_STATE - CH_ANTENNA_POWER = _mscl.MipTypes_CH_ANTENNA_POWER - CH_FILTER_STATE = _mscl.MipTypes_CH_FILTER_STATE - CH_DYNAMICS_MODE = _mscl.MipTypes_CH_DYNAMICS_MODE - CH_MAGNITUDE = _mscl.MipTypes_CH_MAGNITUDE - CH_HEADING_UNCERTAINTY = _mscl.MipTypes_CH_HEADING_UNCERTAINTY - CH_SOURCE = _mscl.MipTypes_CH_SOURCE - CH_INCLINATION = _mscl.MipTypes_CH_INCLINATION - CH_DECLINATION = _mscl.MipTypes_CH_DECLINATION - CH_PRESSURE = _mscl.MipTypes_CH_PRESSURE - CH_AGE = _mscl.MipTypes_CH_AGE - CH_NUM_CHANNELS = _mscl.MipTypes_CH_NUM_CHANNELS - CH_CORRECTION = _mscl.MipTypes_CH_CORRECTION - CH_RATE_CORRECTION = _mscl.MipTypes_CH_RATE_CORRECTION - CH_GEOMETRIC_ALTITUDE = _mscl.MipTypes_CH_GEOMETRIC_ALTITUDE - CH_GEOPOTENTIAL_ALTITUDE = _mscl.MipTypes_CH_GEOPOTENTIAL_ALTITUDE - CH_TEMPERATURE = _mscl.MipTypes_CH_TEMPERATURE - CH_DENSITY = _mscl.MipTypes_CH_DENSITY - CH_ALTITUDE = _mscl.MipTypes_CH_ALTITUDE - CH_DISPLACEMENT = _mscl.MipTypes_CH_DISPLACEMENT - CH_MAX_TEMP = _mscl.MipTypes_CH_MAX_TEMP - CH_MIN_TEMP = _mscl.MipTypes_CH_MIN_TEMP - CH_MEAN_TEMP = _mscl.MipTypes_CH_MEAN_TEMP - CH_BIAS_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_BIAS_ACCURACY_ESTIMATE - CH_DRIFT_ACCURACY_ESTIMATE = _mscl.MipTypes_CH_DRIFT_ACCURACY_ESTIMATE - CH_SECONDS = _mscl.MipTypes_CH_SECONDS - CH_NUM_PACKETS = _mscl.MipTypes_CH_NUM_PACKETS - CH_GPS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GPS_CORRECTION_LATENCY - CH_GLONASS_CORRECTION_LATENCY = _mscl.MipTypes_CH_GLONASS_CORRECTION_LATENCY - CH_GALILEO_CORRECTION_LATENCY = _mscl.MipTypes_CH_GALILEO_CORRECTION_LATENCY - CH_BEIDOU_CORRECTION_LATENCY = _mscl.MipTypes_CH_BEIDOU_CORRECTION_LATENCY - CH_HEIGHT = _mscl.MipTypes_CH_HEIGHT - CH_HEALTH = _mscl.MipTypes_CH_HEALTH - CH_INDEX = _mscl.MipTypes_CH_INDEX - CH_COUNT = _mscl.MipTypes_CH_COUNT - CH_SIGNAL_STRENGTH = _mscl.MipTypes_CH_SIGNAL_STRENGTH - CH_SIGNAL_QUALITY = _mscl.MipTypes_CH_SIGNAL_QUALITY - CH_RANGE = _mscl.MipTypes_CH_RANGE - CH_RANGE_UNC = _mscl.MipTypes_CH_RANGE_UNC - CH_ALPHA = _mscl.MipTypes_CH_ALPHA - CH_BETA = _mscl.MipTypes_CH_BETA - CH_DISTURBANCE_FLAGS = _mscl.MipTypes_CH_DISTURBANCE_FLAGS - CH_CARRIER_PHASE = _mscl.MipTypes_CH_CARRIER_PHASE - CH_CARRIER_PHASE_UNC = _mscl.MipTypes_CH_CARRIER_PHASE_UNC - CH_DOPPLER = _mscl.MipTypes_CH_DOPPLER - CH_DOPPLER_UNC = _mscl.MipTypes_CH_DOPPLER_UNC - CH_DELTA_TIME = _mscl.MipTypes_CH_DELTA_TIME - CH_DELTA_TICK = _mscl.MipTypes_CH_DELTA_TICK - CH_ERROR = _mscl.MipTypes_CH_ERROR - CH_ERROR_UNC = _mscl.MipTypes_CH_ERROR_UNC - CH_W = _mscl.MipTypes_CH_W - CH_M0 = _mscl.MipTypes_CH_M0 - CH_M1 = _mscl.MipTypes_CH_M1 - CH_M2 = _mscl.MipTypes_CH_M2 - CH_M3 = _mscl.MipTypes_CH_M3 - CH_M4 = _mscl.MipTypes_CH_M4 - CH_M5 = _mscl.MipTypes_CH_M5 - CH_M6 = _mscl.MipTypes_CH_M6 - CH_M7 = _mscl.MipTypes_CH_M7 - CH_M8 = _mscl.MipTypes_CH_M8 - CH_NANOSECONDS = _mscl.MipTypes_CH_NANOSECONDS - CH_VALID_FLAGS = _mscl.MipTypes_CH_VALID_FLAGS - CH_PPS_VALID = _mscl.MipTypes_CH_PPS_VALID - CH_LAST_PPS = _mscl.MipTypes_CH_LAST_PPS - CH_UDREI = _mscl.MipTypes_CH_UDREI - CH_PSEUDORANGE_CORRECTION = _mscl.MipTypes_CH_PSEUDORANGE_CORRECTION - CH_IONOSPHERIC_CORRECTION = _mscl.MipTypes_CH_IONOSPHERIC_CORRECTION - CH_JAMMING_STATE = _mscl.MipTypes_CH_JAMMING_STATE - CH_SPOOFING_STATE = _mscl.MipTypes_CH_SPOOFING_STATE - CH_SYSTEM_ID = _mscl.MipTypes_CH_SYSTEM_ID - CH_SATELLITE_ID = _mscl.MipTypes_CH_SATELLITE_ID - CH_BIT_SYSTEM_GENERAL = _mscl.MipTypes_CH_BIT_SYSTEM_GENERAL - CH_BIT_SYSTEM_PROCESS = _mscl.MipTypes_CH_BIT_SYSTEM_PROCESS - CH_BIT_IMU_GENERAL = _mscl.MipTypes_CH_BIT_IMU_GENERAL - CH_BIT_IMU_SENSORS = _mscl.MipTypes_CH_BIT_IMU_SENSORS - CH_BIT_IMU_FACTORY_BITS = _mscl.MipTypes_CH_BIT_IMU_FACTORY_BITS - CH_BIT_FILTER_GENERAL = _mscl.MipTypes_CH_BIT_FILTER_GENERAL - CH_BIT_GNSS_GENERAL = _mscl.MipTypes_CH_BIT_GNSS_GENERAL - CH_BIT_GNSS_RECEIVERS = _mscl.MipTypes_CH_BIT_GNSS_RECEIVERS - - @staticmethod - def channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - - @staticmethod - def getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - - @staticmethod - def getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - - @staticmethod - def getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - - @staticmethod - def getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - - @staticmethod - def getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - - @staticmethod - def isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - - @staticmethod - def isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - - @staticmethod - def channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - - @staticmethod - def channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - - @staticmethod - def channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - - def __init__(self): - _mscl.MipTypes_swiginit(self, _mscl.new_MipTypes()) - __swig_destroy__ = _mscl.delete_MipTypes - -# Register MipTypes in _mscl: -_mscl.MipTypes_swigregister(MipTypes) - -def MipTypes_channelName(field, qualifier): - return _mscl.MipTypes_channelName(field, qualifier) - -def MipTypes_getChannelFields_allDataClasses(chField): - return _mscl.MipTypes_getChannelFields_allDataClasses(chField) - -def MipTypes_getChannelField_baseDataClass(chField): - return _mscl.MipTypes_getChannelField_baseDataClass(chField) - -def MipTypes_getChannelField_toDataClass(chField, dataClass): - return _mscl.MipTypes_getChannelField_toDataClass(chField, dataClass) - -def MipTypes_getChannelNamePrependText(chField): - return _mscl.MipTypes_getChannelNamePrependText(chField) - -def MipTypes_getChannelNameAppendText(chField): - return _mscl.MipTypes_getChannelNameAppendText(chField) - -def MipTypes_isGnssChannelField(chField): - return _mscl.MipTypes_isGnssChannelField(chField) - -def MipTypes_isSharedChannelField(chField): - return _mscl.MipTypes_isSharedChannelField(chField) - -def MipTypes_channelFieldQualifiers(fields): - return _mscl.MipTypes_channelFieldQualifiers(fields) - -def MipTypes_channelFieldQualifier(field, index): - return _mscl.MipTypes_channelFieldQualifier(field, index) - -def MipTypes_channelFieldQualifierIndex(field, qualifier): - return _mscl.MipTypes_channelFieldQualifierIndex(field, qualifier) - -class MipChannelIdentifier(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - GNSS_RECEIVER_ID = _mscl.MipChannelIdentifier_GNSS_RECEIVER_ID - GNSS_BASE_STATION_ID = _mscl.MipChannelIdentifier_GNSS_BASE_STATION_ID - GNSS_CONSTELLATION = _mscl.MipChannelIdentifier_GNSS_CONSTELLATION - GNSS_SATELLITE_ID = _mscl.MipChannelIdentifier_GNSS_SATELLITE_ID - GNSS_SIGNAL_ID = _mscl.MipChannelIdentifier_GNSS_SIGNAL_ID - AIDING_MEASUREMENT_TYPE = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_TYPE - GNSS_RF_BAND = _mscl.MipChannelIdentifier_GNSS_RF_BAND - AIDING_MEASUREMENT_FRAME_ID = _mscl.MipChannelIdentifier_AIDING_MEASUREMENT_FRAME_ID - GNSS = _mscl.MipChannelIdentifier_GNSS - DUAL_ANTENNA = _mscl.MipChannelIdentifier_DUAL_ANTENNA - HEADING = _mscl.MipChannelIdentifier_HEADING - PRESSURE = _mscl.MipChannelIdentifier_PRESSURE - MAGNETOMETER = _mscl.MipChannelIdentifier_MAGNETOMETER - SPEED = _mscl.MipChannelIdentifier_SPEED - AIDING_POS_ECEF = _mscl.MipChannelIdentifier_AIDING_POS_ECEF - AIDING_POS_LLH = _mscl.MipChannelIdentifier_AIDING_POS_LLH - AIDING_HEIGHT_ABOVE_ELLIPSOID = _mscl.MipChannelIdentifier_AIDING_HEIGHT_ABOVE_ELLIPSOID - AIDING_VEL_ECEF = _mscl.MipChannelIdentifier_AIDING_VEL_ECEF - AIDING_VEL_NED = _mscl.MipChannelIdentifier_AIDING_VEL_NED - AIDING_VEL_BODY_FRAME = _mscl.MipChannelIdentifier_AIDING_VEL_BODY_FRAME - AIDING_HEADING_TRUE = _mscl.MipChannelIdentifier_AIDING_HEADING_TRUE - AIDING_MAGNETIC_FIELD = _mscl.MipChannelIdentifier_AIDING_MAGNETIC_FIELD - AIDING_PRESSURE = _mscl.MipChannelIdentifier_AIDING_PRESSURE - UNKNOWN_CONSTELLATION = _mscl.MipChannelIdentifier_UNKNOWN_CONSTELLATION - GPS = _mscl.MipChannelIdentifier_GPS - GLONASS = _mscl.MipChannelIdentifier_GLONASS - GALILEO = _mscl.MipChannelIdentifier_GALILEO - BEIDOU = _mscl.MipChannelIdentifier_BEIDOU - UNKNOWN_SIGNAL = _mscl.MipChannelIdentifier_UNKNOWN_SIGNAL - GPS_L1CA = _mscl.MipChannelIdentifier_GPS_L1CA - GPS_L1P = _mscl.MipChannelIdentifier_GPS_L1P - GPS_L1Z = _mscl.MipChannelIdentifier_GPS_L1Z - GPS_L2CA = _mscl.MipChannelIdentifier_GPS_L2CA - GPS_L2P = _mscl.MipChannelIdentifier_GPS_L2P - GPS_L2Z = _mscl.MipChannelIdentifier_GPS_L2Z - GPS_L2CL = _mscl.MipChannelIdentifier_GPS_L2CL - GPS_L2CM = _mscl.MipChannelIdentifier_GPS_L2CM - GPS_L2CML = _mscl.MipChannelIdentifier_GPS_L2CML - GPS_L5I = _mscl.MipChannelIdentifier_GPS_L5I - GPS_L5Q = _mscl.MipChannelIdentifier_GPS_L5Q - GPS_L5IQ = _mscl.MipChannelIdentifier_GPS_L5IQ - GPS_L1CD = _mscl.MipChannelIdentifier_GPS_L1CD - GPS_L1CP = _mscl.MipChannelIdentifier_GPS_L1CP - GPS_L1CDP = _mscl.MipChannelIdentifier_GPS_L1CDP - GLONASS_G1CA = _mscl.MipChannelIdentifier_GLONASS_G1CA - GLONASS_G1P = _mscl.MipChannelIdentifier_GLONASS_G1P - GLONASS_G2C = _mscl.MipChannelIdentifier_GLONASS_G2C - GLONASS_G2P = _mscl.MipChannelIdentifier_GLONASS_G2P - GALILEO_E1C = _mscl.MipChannelIdentifier_GALILEO_E1C - GALILEO_E1A = _mscl.MipChannelIdentifier_GALILEO_E1A - GALILEO_E1B = _mscl.MipChannelIdentifier_GALILEO_E1B - GALILEO_E1BC = _mscl.MipChannelIdentifier_GALILEO_E1BC - GALILEO_E1ABC = _mscl.MipChannelIdentifier_GALILEO_E1ABC - GALILEO_E6C = _mscl.MipChannelIdentifier_GALILEO_E6C - GALILEO_E6A = _mscl.MipChannelIdentifier_GALILEO_E6A - GALILEO_E6B = _mscl.MipChannelIdentifier_GALILEO_E6B - GALILEO_E6BC = _mscl.MipChannelIdentifier_GALILEO_E6BC - GALILEO_E6ABC = _mscl.MipChannelIdentifier_GALILEO_E6ABC - GALILEO_E5BI = _mscl.MipChannelIdentifier_GALILEO_E5BI - GALILEO_E5BQ = _mscl.MipChannelIdentifier_GALILEO_E5BQ - GALILEO_E5BIQ = _mscl.MipChannelIdentifier_GALILEO_E5BIQ - GALILEO_E5ABI = _mscl.MipChannelIdentifier_GALILEO_E5ABI - GALILEO_E5ABQ = _mscl.MipChannelIdentifier_GALILEO_E5ABQ - GALILEO_E5ABIQ = _mscl.MipChannelIdentifier_GALILEO_E5ABIQ - GALILEO_E5AI = _mscl.MipChannelIdentifier_GALILEO_E5AI - GALILEO_E5AQ = _mscl.MipChannelIdentifier_GALILEO_E5AQ - GALILEO_E5AIQ = _mscl.MipChannelIdentifier_GALILEO_E5AIQ - SBAS_L1CA = _mscl.MipChannelIdentifier_SBAS_L1CA - SBAS_L5I = _mscl.MipChannelIdentifier_SBAS_L5I - SBAS_L5Q = _mscl.MipChannelIdentifier_SBAS_L5Q - SBAS_L5IQ = _mscl.MipChannelIdentifier_SBAS_L5IQ - QZSS_L1CA = _mscl.MipChannelIdentifier_QZSS_L1CA - QZSS_LEXS = _mscl.MipChannelIdentifier_QZSS_LEXS - QZSS_LEXL = _mscl.MipChannelIdentifier_QZSS_LEXL - QZSS_LEXSL = _mscl.MipChannelIdentifier_QZSS_LEXSL - QZSS_L2CM = _mscl.MipChannelIdentifier_QZSS_L2CM - QZSS_L2CL = _mscl.MipChannelIdentifier_QZSS_L2CL - QZSS_L2CML = _mscl.MipChannelIdentifier_QZSS_L2CML - QZSS_L5I = _mscl.MipChannelIdentifier_QZSS_L5I - QZSS_L5Q = _mscl.MipChannelIdentifier_QZSS_L5Q - QZSS_L5IQ = _mscl.MipChannelIdentifier_QZSS_L5IQ - QZSS_L1CD = _mscl.MipChannelIdentifier_QZSS_L1CD - QZSS_L1CP = _mscl.MipChannelIdentifier_QZSS_L1CP - QZSS_L1CDP = _mscl.MipChannelIdentifier_QZSS_L1CDP - BEIDOU_B1I = _mscl.MipChannelIdentifier_BEIDOU_B1I - BEIDOU_B1Q = _mscl.MipChannelIdentifier_BEIDOU_B1Q - BEIDOU_B1IQ = _mscl.MipChannelIdentifier_BEIDOU_B1IQ - BEIDOU_B3I = _mscl.MipChannelIdentifier_BEIDOU_B3I - BEIDOU_B3Q = _mscl.MipChannelIdentifier_BEIDOU_B3Q - BEIDOU_B3IQ = _mscl.MipChannelIdentifier_BEIDOU_B3IQ - BEIDOU_B2I = _mscl.MipChannelIdentifier_BEIDOU_B2I - BEIDOU_B2Q = _mscl.MipChannelIdentifier_BEIDOU_B2Q - BEIDOU_B2IQ = _mscl.MipChannelIdentifier_BEIDOU_B2IQ - UNKNOWN_RF_BAND = _mscl.MipChannelIdentifier_UNKNOWN_RF_BAND - RF_BAND_L1 = _mscl.MipChannelIdentifier_RF_BAND_L1 - RF_BAND_L2 = _mscl.MipChannelIdentifier_RF_BAND_L2 - RF_BAND_L5 = _mscl.MipChannelIdentifier_RF_BAND_L5 - - def __init__(self, *args): - _mscl.MipChannelIdentifier_swiginit(self, _mscl.new_MipChannelIdentifier(*args)) - __swig_destroy__ = _mscl.delete_MipChannelIdentifier - - def identifierType(self): - return _mscl.MipChannelIdentifier_identifierType(self) - - def id(self): - return _mscl.MipChannelIdentifier_id(self) - - def hasSpecifier(self): - return _mscl.MipChannelIdentifier_hasSpecifier(self) - - def specifier(self): - return _mscl.MipChannelIdentifier_specifier(self) - - def name(self, standardizedFormat=True): - return _mscl.MipChannelIdentifier_name(self, standardizedFormat) - -# Register MipChannelIdentifier in _mscl: -_mscl.MipChannelIdentifier_swigregister(MipChannelIdentifier) - -class MipCommandBytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - id = property(_mscl.MipCommandBytes_id_get, _mscl.MipCommandBytes_id_set) - commands = property(_mscl.MipCommandBytes_commands_get, _mscl.MipCommandBytes_commands_set) - buildCmdFailed = property(_mscl.MipCommandBytes_buildCmdFailed_get, _mscl.MipCommandBytes_buildCmdFailed_set) - sendCmdFailed = property(_mscl.MipCommandBytes_sendCmdFailed_get, _mscl.MipCommandBytes_sendCmdFailed_set) - - def __init__(self, *args): - _mscl.MipCommandBytes_swiginit(self, _mscl.new_MipCommandBytes(*args)) - - def add(self, cmd): - return _mscl.MipCommandBytes_add(self, cmd) - - def valid(self): - return _mscl.MipCommandBytes_valid(self) - __swig_destroy__ = _mscl.delete_MipCommandBytes - -# Register MipCommandBytes in _mscl: -_mscl.MipCommandBytes_swigregister(MipCommandBytes) - -class AidingMeasurementInput(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - ACK_NACK = _mscl.AidingMeasurementInput_ACK_NACK - ECHO_INPUT = _mscl.AidingMeasurementInput_ECHO_INPUT - - def toMipFieldValues(self): - return _mscl.AidingMeasurementInput_toMipFieldValues(self) - - def timestamp(self, *args): - return _mscl.AidingMeasurementInput_timestamp(self, *args) - - def timebase(self): - return _mscl.AidingMeasurementInput_timebase(self) - - def frameId(self, *args): - return _mscl.AidingMeasurementInput_frameId(self, *args) - - def validFlags(self, *args): - return _mscl.AidingMeasurementInput_validFlags(self, *args) - -# Register AidingMeasurementInput in _mscl: -_mscl.AidingMeasurementInput_swigregister(AidingMeasurementInput) - -class AidingMeasurementPosition(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementPosition_X - LATITUDE = _mscl.AidingMeasurementPosition_LATITUDE - Y = _mscl.AidingMeasurementPosition_Y - LONGITUDE = _mscl.AidingMeasurementPosition_LONGITUDE - Z = _mscl.AidingMeasurementPosition_Z - HEIGHT = _mscl.AidingMeasurementPosition_HEIGHT - ALTITUDE = _mscl.AidingMeasurementPosition_ALTITUDE - - def __init__(self, *args): - _mscl.AidingMeasurementPosition_swiginit(self, _mscl.new_AidingMeasurementPosition(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPosition - - def position(self, *args): - return _mscl.AidingMeasurementPosition_position(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPosition_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementPosition_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPosition_valid(self, *args) - -# Register AidingMeasurementPosition in _mscl: -_mscl.AidingMeasurementPosition_swigregister(AidingMeasurementPosition) - -class AidingMeasurementHeight(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeight_swiginit(self, _mscl.new_AidingMeasurementHeight(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeight - - def height(self, *args): - return _mscl.AidingMeasurementHeight_height(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeight_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeight_valid(self, *args) - -# Register AidingMeasurementHeight in _mscl: -_mscl.AidingMeasurementHeight_swigregister(AidingMeasurementHeight) - -class AidingMeasurementVelocity(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementVelocity_X - NORTH = _mscl.AidingMeasurementVelocity_NORTH - Y = _mscl.AidingMeasurementVelocity_Y - EAST = _mscl.AidingMeasurementVelocity_EAST - Z = _mscl.AidingMeasurementVelocity_Z - DOWN = _mscl.AidingMeasurementVelocity_DOWN - - def __init__(self, *args): - _mscl.AidingMeasurementVelocity_swiginit(self, _mscl.new_AidingMeasurementVelocity(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementVelocity - - def velocity(self, *args): - return _mscl.AidingMeasurementVelocity_velocity(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementVelocity_uncertainty(self, *args) - - def referenceFrame(self, *args): - return _mscl.AidingMeasurementVelocity_referenceFrame(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementVelocity_valid(self, *args) - -# Register AidingMeasurementVelocity in _mscl: -_mscl.AidingMeasurementVelocity_swigregister(AidingMeasurementVelocity) - -class AidingMeasurementHeading(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementHeading_swiginit(self, _mscl.new_AidingMeasurementHeading(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementHeading - - def heading(self, *args): - return _mscl.AidingMeasurementHeading_heading(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementHeading_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementHeading_valid(self, *args) - -# Register AidingMeasurementHeading in _mscl: -_mscl.AidingMeasurementHeading_swigregister(AidingMeasurementHeading) - -class AidingMeasurementMagneticField(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - X = _mscl.AidingMeasurementMagneticField_X - Y = _mscl.AidingMeasurementMagneticField_Y - Z = _mscl.AidingMeasurementMagneticField_Z - - def __init__(self, *args): - _mscl.AidingMeasurementMagneticField_swiginit(self, _mscl.new_AidingMeasurementMagneticField(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementMagneticField - - def magneticField(self, *args): - return _mscl.AidingMeasurementMagneticField_magneticField(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementMagneticField_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementMagneticField_valid(self, *args) - -# Register AidingMeasurementMagneticField in _mscl: -_mscl.AidingMeasurementMagneticField_swigregister(AidingMeasurementMagneticField) - -class AidingMeasurementPressure(AidingMeasurementInput): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AidingMeasurementPressure_swiginit(self, _mscl.new_AidingMeasurementPressure(*args)) - __swig_destroy__ = _mscl.delete_AidingMeasurementPressure - - def pressure(self, *args): - return _mscl.AidingMeasurementPressure_pressure(self, *args) - - def uncertainty(self, *args): - return _mscl.AidingMeasurementPressure_uncertainty(self, *args) - - def valid(self, *args): - return _mscl.AidingMeasurementPressure_valid(self, *args) - -# Register AidingMeasurementPressure in _mscl: -_mscl.AidingMeasurementPressure_swigregister(AidingMeasurementPressure) - -class GnssReceiverInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GnssReceiverInfo_swiginit(self, _mscl.new_GnssReceiverInfo(*args)) - id = property(_mscl.GnssReceiverInfo_id_get, _mscl.GnssReceiverInfo_id_set) - targetDataClass = property(_mscl.GnssReceiverInfo_targetDataClass_get, _mscl.GnssReceiverInfo_targetDataClass_set) - description = property(_mscl.GnssReceiverInfo_description_get, _mscl.GnssReceiverInfo_description_set) - module = property(_mscl.GnssReceiverInfo_module_get, _mscl.GnssReceiverInfo_module_set) - fwId = property(_mscl.GnssReceiverInfo_fwId_get, _mscl.GnssReceiverInfo_fwId_set) - fwVersion = property(_mscl.GnssReceiverInfo_fwVersion_get, _mscl.GnssReceiverInfo_fwVersion_set) - __swig_destroy__ = _mscl.delete_GnssReceiverInfo - -# Register GnssReceiverInfo in _mscl: -_mscl.GnssReceiverInfo_swigregister(GnssReceiverInfo) -GnssReceiverInfo.INFO_NOT_FOUND = _mscl.cvar.GnssReceiverInfo_INFO_NOT_FOUND - -class DeviceCommPort(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SPECIAL = _mscl.DeviceCommPort_SPECIAL - UART = _mscl.DeviceCommPort_UART - USB = _mscl.DeviceCommPort_USB - NONE = _mscl.DeviceCommPort_NONE - MIP_COMMANDS = _mscl.DeviceCommPort_MIP_COMMANDS - MIP_DATA = _mscl.DeviceCommPort_MIP_DATA - NMEA = _mscl.DeviceCommPort_NMEA - RTCM = _mscl.DeviceCommPort_RTCM - SPARTN = _mscl.DeviceCommPort_SPARTN - ALL = _mscl.DeviceCommPort_ALL - - def __init__(self, *args): - _mscl.DeviceCommPort_swiginit(self, _mscl.new_DeviceCommPort(*args)) - - def interfaceId(self): - return _mscl.DeviceCommPort_interfaceId(self) - type = property(_mscl.DeviceCommPort_type_get, _mscl.DeviceCommPort_type_set) - id = property(_mscl.DeviceCommPort_id_get, _mscl.DeviceCommPort_id_set) - inputProtocols = property(_mscl.DeviceCommPort_inputProtocols_get, _mscl.DeviceCommPort_inputProtocols_set) - outputProtocols = property(_mscl.DeviceCommPort_outputProtocols_get, _mscl.DeviceCommPort_outputProtocols_set) - __swig_destroy__ = _mscl.delete_DeviceCommPort - -# Register DeviceCommPort in _mscl: -_mscl.DeviceCommPort_swigregister(DeviceCommPort) - -class EventTypeInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTypeInfo_swiginit(self, _mscl.new_EventTypeInfo(*args)) - type = property(_mscl.EventTypeInfo_type_get, _mscl.EventTypeInfo_type_set) - maxInstances = property(_mscl.EventTypeInfo_maxInstances_get, _mscl.EventTypeInfo_maxInstances_set) - __swig_destroy__ = _mscl.delete_EventTypeInfo - -# Register EventTypeInfo in _mscl: -_mscl.EventTypeInfo_swigregister(EventTypeInfo) - -class EventSupportInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - TRIGGERS = _mscl.EventSupportInfo_TRIGGERS - ACTIONS = _mscl.EventSupportInfo_ACTIONS - query = property(_mscl.EventSupportInfo_query_get, _mscl.EventSupportInfo_query_set) - maxInstances = property(_mscl.EventSupportInfo_maxInstances_get, _mscl.EventSupportInfo_maxInstances_set) - entries = property(_mscl.EventSupportInfo_entries_get, _mscl.EventSupportInfo_entries_set) - - def __init__(self): - _mscl.EventSupportInfo_swiginit(self, _mscl.new_EventSupportInfo()) - __swig_destroy__ = _mscl.delete_EventSupportInfo - -# Register EventSupportInfo in _mscl: -_mscl.EventSupportInfo_swigregister(EventSupportInfo) - -class SensorRange(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ALL = _mscl.SensorRange_ALL - ACCEL_G = _mscl.SensorRange_ACCEL_G - GYRO_DPS = _mscl.SensorRange_GYRO_DPS - MAG_GAUSS = _mscl.SensorRange_MAG_GAUSS - PRESSURE_HPA = _mscl.SensorRange_PRESSURE_HPA - - def __init__(self): - _mscl.SensorRange_swiginit(self, _mscl.new_SensorRange()) - - def type(self): - return _mscl.SensorRange_type(self) - - def range(self): - return _mscl.SensorRange_range(self) - - def id(self): - return _mscl.SensorRange_id(self) - __swig_destroy__ = _mscl.delete_SensorRange - -# Register SensorRange in _mscl: -_mscl.SensorRange_swigregister(SensorRange) - -class SupportedSensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.SupportedSensorRanges_swiginit(self, _mscl.new_SupportedSensorRanges()) - - def options(self): - return _mscl.SupportedSensorRanges_options(self) - - def lookupRecommended(self, type, range): - return _mscl.SupportedSensorRanges_lookupRecommended(self, type, range) - __swig_destroy__ = _mscl.delete_SupportedSensorRanges - -# Register SupportedSensorRanges in _mscl: -_mscl.SupportedSensorRanges_swigregister(SupportedSensorRanges) - -class InertialTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - PORTABLE_VEHICLE = _mscl.InertialTypes_PORTABLE_VEHICLE - AUTOMOTIVE_VEHICLE = _mscl.InertialTypes_AUTOMOTIVE_VEHICLE - AIRBORNE_VEHICLE = _mscl.InertialTypes_AIRBORNE_VEHICLE - AIRBORNE_HIGH_G_VEHICLE = _mscl.InertialTypes_AIRBORNE_HIGH_G_VEHICLE - GPS_PORTABLE = _mscl.InertialTypes_GPS_PORTABLE - GPS_STATIONARY = _mscl.InertialTypes_GPS_STATIONARY - GPS_PEDESTRIAN = _mscl.InertialTypes_GPS_PEDESTRIAN - GPS_AUTOMOTIVE = _mscl.InertialTypes_GPS_AUTOMOTIVE - GPS_SEA = _mscl.InertialTypes_GPS_SEA - GPS_AIRBORNE_1G = _mscl.InertialTypes_GPS_AIRBORNE_1G - GPS_AIRBORNE_2G = _mscl.InertialTypes_GPS_AIRBORNE_2G - GPS_AIRBORNE_4G = _mscl.InertialTypes_GPS_AIRBORNE_4G - RESET_ALL_AXIS = _mscl.InertialTypes_RESET_ALL_AXIS - TARE_ROLL_AXIS = _mscl.InertialTypes_TARE_ROLL_AXIS - TARE_PITCH_AXIS = _mscl.InertialTypes_TARE_PITCH_AXIS - TARE_YAW_AXIS = _mscl.InertialTypes_TARE_YAW_AXIS - INTERNAL_GNSS_ALL = _mscl.InertialTypes_INTERNAL_GNSS_ALL - EXTERNAL_GNSS = _mscl.InertialTypes_EXTERNAL_GNSS - INTERNAL_GNSS1 = _mscl.InertialTypes_INTERNAL_GNSS1 - INTERNAL_GNSS2 = _mscl.InertialTypes_INTERNAL_GNSS2 - FIX_SBAS_CORRECTIONS = _mscl.InertialTypes_FIX_SBAS_CORRECTIONS - FIX_DGNSS_CORRECTIONS = _mscl.InertialTypes_FIX_DGNSS_CORRECTIONS - FIXTYPE_3D = _mscl.InertialTypes_FIXTYPE_3D - FIXTYPE_2D = _mscl.InertialTypes_FIXTYPE_2D - FIXTYPE_TIMEONLY = _mscl.InertialTypes_FIXTYPE_TIMEONLY - FIXTYPE_NONE = _mscl.InertialTypes_FIXTYPE_NONE - FIXTYPE_INVALID = _mscl.InertialTypes_FIXTYPE_INVALID - FIXTYPE_RTK_FLOAT = _mscl.InertialTypes_FIXTYPE_RTK_FLOAT - FIXTYPE_RTK_FIXED = _mscl.InertialTypes_FIXTYPE_RTK_FIXED - FIXTYPE_DUAL_ANTENNA_NONE = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_NONE - FIXTYPE_DUAL_ANTENNA_FLOAT = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FLOAT - FIXTYPE_DUAL_ANTENNA_FIXED = _mscl.InertialTypes_FIXTYPE_DUAL_ANTENNA_FIXED - DATA_VALID_REC_1 = _mscl.InertialTypes_DATA_VALID_REC_1 - DATA_VALID_REC_2 = _mscl.InertialTypes_DATA_VALID_REC_2 - ANTENNA_OFFSETS_VALID = _mscl.InertialTypes_ANTENNA_OFFSETS_VALID - SVFLAG_NAVIGATION = _mscl.InertialTypes_SVFLAG_NAVIGATION - SVFLAG_HEALTHY = _mscl.InertialTypes_SVFLAG_HEALTHY - DEVICE_AHRS = _mscl.InertialTypes_DEVICE_AHRS - DEVICE_GPS = _mscl.InertialTypes_DEVICE_GPS - ON_FULL_PERFORMANCE = _mscl.InertialTypes_ON_FULL_PERFORMANCE - ON_LOW_POWER = _mscl.InertialTypes_ON_LOW_POWER - SLEEP = _mscl.InertialTypes_SLEEP - OFF = _mscl.InertialTypes_OFF - STANDARD_MIP = _mscl.InertialTypes_STANDARD_MIP - WRAPPED_RAW = _mscl.InertialTypes_WRAPPED_RAW - SENSORSTATE_OFF = _mscl.InertialTypes_SENSORSTATE_OFF - SENSORSTATE_ON = _mscl.InertialTypes_SENSORSTATE_ON - SENSORSTATE_UNKNOWN = _mscl.InertialTypes_SENSORSTATE_UNKNOWN - ANTENNASTATE_INIT = _mscl.InertialTypes_ANTENNASTATE_INIT - ANTENNASTATE_SHORT = _mscl.InertialTypes_ANTENNASTATE_SHORT - ANTENNASTATE_OPEN = _mscl.InertialTypes_ANTENNASTATE_OPEN - ANTENNASTATE_GOOD = _mscl.InertialTypes_ANTENNASTATE_GOOD - ANTENNASTATE_UNKNOWN = _mscl.InertialTypes_ANTENNASTATE_UNKNOWN - ANTENNAPOWER_OFF = _mscl.InertialTypes_ANTENNAPOWER_OFF - ANTENNAPOWER_ON = _mscl.InertialTypes_ANTENNAPOWER_ON - ANTENNAPOWER_UNKNOWN = _mscl.InertialTypes_ANTENNAPOWER_UNKNOWN - FILTERSTATE_STARTUP = _mscl.InertialTypes_FILTERSTATE_STARTUP - FILTERSTATE_INIT = _mscl.InertialTypes_FILTERSTATE_INIT - FILTERSTATE_RUNNING_SLN_VALID = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_VALID - FILTERSTATE_RUNNING_SLN_ERROR = _mscl.InertialTypes_FILTERSTATE_RUNNING_SLN_ERROR - FILTERSTATE_VERT_GYRO = _mscl.InertialTypes_FILTERSTATE_VERT_GYRO - FILTERSTATE_AHRS = _mscl.InertialTypes_FILTERSTATE_AHRS - FILTERSTATE_FULL_NAV = _mscl.InertialTypes_FILTERSTATE_FULL_NAV - FILTERSTATUS_IMU_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_IMU_UNAVAILABLE - FILTERSTATUS_GPS_UNAVAILABLE = _mscl.InertialTypes_FILTERSTATUS_GPS_UNAVAILABLE - FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC = _mscl.InertialTypes_FILTERSTATUS_MATRIX_SINGULARITY_IN_CALC - FILTERSTATUS_POS_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_POS_COVARIANCE_HIGH_WARN - FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_VEL_COVARIANCE_HIGH_WARN - FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ATT_COVARIANCE_HIGH_WARN - FILTERSTATUS_NAN_IN_SOLUTION = _mscl.InertialTypes_FILTERSTATUS_NAN_IN_SOLUTION - FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_BIAS_EST_HIGH_WARN - FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_BIAS_EST_HIGH_WARN - FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_GYRO_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ACCEL_SCALE_FACTOR_EST_HIGH_WARN - FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_MAG_BIAS_EST_HIGH_WARN - FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_ANTENNA_OFFSET_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_HARD_IRON_OFFSET_EST_HIGH_WARN - FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN = _mscl.InertialTypes_FILTERSTATUS_SOFT_IRON_CORRECTION_EST_HIGH_WARN - FILTERSTATUS_CONDITION = _mscl.InertialTypes_FILTERSTATUS_CONDITION - FILTERSTATUS_ROLL_PITCH_WARNING = _mscl.InertialTypes_FILTERSTATUS_ROLL_PITCH_WARNING - FILTERSTATUS_HEADING_WARNING = _mscl.InertialTypes_FILTERSTATUS_HEADING_WARNING - FILTERSTATUS_POSITION_WARNING = _mscl.InertialTypes_FILTERSTATUS_POSITION_WARNING - FILTERSTATUS_VELOCITY_WARNING = _mscl.InertialTypes_FILTERSTATUS_VELOCITY_WARNING - FILTERSTATUS_IMU_BIAS_WARNING = _mscl.InertialTypes_FILTERSTATUS_IMU_BIAS_WARNING - FILTERSTATUS_GNSS_CLK_WARNING = _mscl.InertialTypes_FILTERSTATUS_GNSS_CLK_WARNING - FILTERSTATUS_ANT_LEVER_ARM_WARNING = _mscl.InertialTypes_FILTERSTATUS_ANT_LEVER_ARM_WARNING - FILTERSTATUS_MOUNTING_TRANSFORM_WARNING = _mscl.InertialTypes_FILTERSTATUS_MOUNTING_TRANSFORM_WARNING - FILTERSTATUS_ATT_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_ATT_NOT_INIT - FILTERSTATUS_POS_VEL_NOT_INIT = _mscl.InertialTypes_FILTERSTATUS_POS_VEL_NOT_INIT - STABLE = _mscl.InertialTypes_STABLE - CONVERGING = _mscl.InertialTypes_CONVERGING - UNSTABLE = _mscl.InertialTypes_UNSTABLE - DGNSSBASE_UDRE_SCALE_FACTOR_1_00 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_1_00 - DGNSSBASE_UDRE_SCALE_FACTOR_0_75 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_75 - DGNSSBASE_UDRE_SCALE_FACTOR_0_50 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_50 - DGNSSBASE_UDRE_SCALE_FACTOR_0_30 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_30 - DGNSSBASE_UDRE_SCALE_FACTOR_0_20 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_20 - DGNSSBASE_UDRE_SCALE_FACTOR_0_10 = _mscl.InertialTypes_DGNSSBASE_UDRE_SCALE_FACTOR_0_10 - DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_TRANSMISSION_NOT_MONITORED - DGNSSBASE_REFERENCE_STATION_NOT_WORKING = _mscl.InertialTypes_DGNSSBASE_REFERENCE_STATION_NOT_WORKING - HEADINGSOURCE_NONE = _mscl.InertialTypes_HEADINGSOURCE_NONE - HEADINGSOURCE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_MAGNETOMETER - HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR = _mscl.InertialTypes_HEADINGSOURCE_INTERNAL_GPS_VELOCITY_VECTOR - HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD = _mscl.InertialTypes_HEADINGSOURCE_EXTERNAL_HEADING_UPDATE_CMD - HEADINGSOURCE_GNSS_DUAL_ANTENNA = _mscl.InertialTypes_HEADINGSOURCE_GNSS_DUAL_ANTENNA - ENABLE_NONE = _mscl.InertialTypes_ENABLE_NONE - ENABLE_INTERNAL_MAGNETOMETER = _mscl.InertialTypes_ENABLE_INTERNAL_MAGNETOMETER - ENABLE_INTERNAL_GNSS = _mscl.InertialTypes_ENABLE_INTERNAL_GNSS - ENABLE_EXTERNAL_MESSAGES = _mscl.InertialTypes_ENABLE_EXTERNAL_MESSAGES - ENABLE_MAGNETOMETER_AND_GNSS = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_GNSS - ENABLE_GNSS_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_GNSS_AND_EXTERNAL - ENABLE_MAGNETOMETER_AND_EXTERNAL = _mscl.InertialTypes_ENABLE_MAGNETOMETER_AND_EXTERNAL - ENABLE_ALL = _mscl.InertialTypes_ENABLE_ALL - ENABLE_GYRO_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_BIAS_ESTIMATION - ENABLE_ACCEL_BIAS_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_BIAS_ESTIMATION - ENABLE_GYRO_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_GYRO_SCALE_FACTOR_ESTIMATION - ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION = _mscl.InertialTypes_ENABLE_ACCEL_SCALE_FACTOR_ESTIMATION - ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION = _mscl.InertialTypes_ENABLE_GNSS_ANTENNA_OFFSET_ESTIMATION - ENABLE_HARD_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_HARD_IRON_AUTO_CALIBRATION - ENABLE_SOFT_IRON_AUTO_CALIBRATION = _mscl.InertialTypes_ENABLE_SOFT_IRON_AUTO_CALIBRATION - NONE = _mscl.InertialTypes_NONE - WORLD_MAGNETIC_MODEL = _mscl.InertialTypes_WORLD_MAGNETIC_MODEL - MANUAL = _mscl.InertialTypes_MANUAL - ADAPTIVE_MEASUREMENT_DISABLE = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_DISABLE - ADAPTIVE_MEASUREMENT_ENABLE_FIXED = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_FIXED - ADAPTIVE_MEASUREMENT_ENABLE_AUTO = _mscl.InertialTypes_ADAPTIVE_MEASUREMENT_ENABLE_AUTO - GNSS_POS_VEL_AIDING = _mscl.InertialTypes_GNSS_POS_VEL_AIDING - GNSS_HEADING_AIDING = _mscl.InertialTypes_GNSS_HEADING_AIDING - ALTIMETER_AIDING = _mscl.InertialTypes_ALTIMETER_AIDING - ODOMETER_AIDING = _mscl.InertialTypes_ODOMETER_AIDING - MAGNETOMETER_AIDING = _mscl.InertialTypes_MAGNETOMETER_AIDING - EXTERNAL_HEADING_AIDING = _mscl.InertialTypes_EXTERNAL_HEADING_AIDING - EXTERNAL_ALTIMETER_AIDING = _mscl.InertialTypes_EXTERNAL_ALTIMETER_AIDING - EXTERNAL_MAGNETOMETER_AIDING = _mscl.InertialTypes_EXTERNAL_MAGNETOMETER_AIDING - BODY_FRAME_VEL_AIDING = _mscl.InertialTypes_BODY_FRAME_VEL_AIDING - ALL_AIDING_MEASUREMENTS = _mscl.InertialTypes_ALL_AIDING_MEASUREMENTS - GPS = _mscl.InertialTypes_GPS - SBAS = _mscl.InertialTypes_SBAS - GALILEO = _mscl.InertialTypes_GALILEO - BEIDOU = _mscl.InertialTypes_BEIDOU - QZSS = _mscl.InertialTypes_QZSS - GLONASS = _mscl.InertialTypes_GLONASS - FILTERING_OFF = _mscl.InertialTypes_FILTERING_OFF - FILTERING_CONSERVATIVE = _mscl.InertialTypes_FILTERING_CONSERVATIVE - FILTERING_MODERATE = _mscl.InertialTypes_FILTERING_MODERATE - FILTERING_AGGRESSIVE = _mscl.InertialTypes_FILTERING_AGGRESSIVE - FACTORY_STREAMING_OVERWRITE = _mscl.InertialTypes_FACTORY_STREAMING_OVERWRITE - FACTORY_STREAMING_MERGE = _mscl.InertialTypes_FACTORY_STREAMING_MERGE - FACTORY_STREAMING_ADDITIVE = _mscl.InertialTypes_FACTORY_STREAMING_ADDITIVE - PPS_DISABLED = _mscl.InertialTypes_PPS_DISABLED - PPS_RECEIVER_1 = _mscl.InertialTypes_PPS_RECEIVER_1 - PPS_RECEIVER_2 = _mscl.InertialTypes_PPS_RECEIVER_2 - PPS_GPIO = _mscl.InertialTypes_PPS_GPIO - PPS_GENERATED = _mscl.InertialTypes_PPS_GENERATED - GNSS_AIDING_TIGHT_COUPLING = _mscl.InertialTypes_GNSS_AIDING_TIGHT_COUPLING - GNSS_AIDING_DIFFERENTIAL = _mscl.InertialTypes_GNSS_AIDING_DIFFERENTIAL - GNSS_AIDING_INTEGER_FIX = _mscl.InertialTypes_GNSS_AIDING_INTEGER_FIX - GNSS_AIDING_GPS = _mscl.InertialTypes_GNSS_AIDING_GPS - GNSS_AIDING_GLONASS = _mscl.InertialTypes_GNSS_AIDING_GLONASS - GNSS_AIDING_GALILEO = _mscl.InertialTypes_GNSS_AIDING_GALILEO - GNSS_AIDING_BEIDOU = _mscl.InertialTypes_GNSS_AIDING_BEIDOU - GNSS_AIDING_NO_FIX = _mscl.InertialTypes_GNSS_AIDING_NO_FIX - GNSS_AIDING_CONFIG_ERROR = _mscl.InertialTypes_GNSS_AIDING_CONFIG_ERROR - AIDING_MEASUREMENT_ENABLED = _mscl.InertialTypes_AIDING_MEASUREMENT_ENABLED - AIDING_MEASUREMENT_USED = _mscl.InertialTypes_AIDING_MEASUREMENT_USED - AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_RESIDUAL_HIGH - AIDING_MEASUREMENT_WARNING_SAMPLE_TIME = _mscl.InertialTypes_AIDING_MEASUREMENT_WARNING_SAMPLE_TIME - AIDING_MEASUREMENT_CONFIG_ERROR = _mscl.InertialTypes_AIDING_MEASUREMENT_CONFIG_ERROR - AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED = _mscl.InertialTypes_AIDING_MEASUREMENT_MAX_COUNT_EXCEEDED - RTK_CORRECTION_ANTENNA_POS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_POS_RECEIVED - RTK_CORRECTION_ANTENNA_DESC_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_ANTENNA_DESC_RECEIVED - RTK_CORRECTION_GPS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GPS_RECEIVED - RTK_CORRECTION_GLONASS_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GLONASS_RECEIVED - RTK_CORRECTION_GALILEO_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_GALILEO_RECEIVED - RTK_CORRECTION_BEIDOU_RECEIVED = _mscl.InertialTypes_RTK_CORRECTION_BEIDOU_RECEIVED - RTK_CORRECTION_USING_GPS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GPS_MSM - RTK_CORRECTION_USING_GLONASS_MSM = _mscl.InertialTypes_RTK_CORRECTION_USING_GLONASS_MSM - SIGNAL_QUALITY_NONE = _mscl.InertialTypes_SIGNAL_QUALITY_NONE - SIGNAL_QUALITY_SEARCHING = _mscl.InertialTypes_SIGNAL_QUALITY_SEARCHING - SIGNAL_QUALITY_ACQUIRED = _mscl.InertialTypes_SIGNAL_QUALITY_ACQUIRED - SIGNAL_QUALITY_UNUSABLE = _mscl.InertialTypes_SIGNAL_QUALITY_UNUSABLE - SIGNAL_QUALITY_TIME_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_TIME_LOCKED - SIGNAL_QUALITY_FULLY_LOCKED = _mscl.InertialTypes_SIGNAL_QUALITY_FULLY_LOCKED - OVERRANGE_ACCEL_X = _mscl.InertialTypes_OVERRANGE_ACCEL_X - OVERRANGE_ACCEL_Y = _mscl.InertialTypes_OVERRANGE_ACCEL_Y - OVERRANGE_ACCEL_Z = _mscl.InertialTypes_OVERRANGE_ACCEL_Z - OVERRANGE_GYRO_X = _mscl.InertialTypes_OVERRANGE_GYRO_X - OVERRANGE_GYRO_Y = _mscl.InertialTypes_OVERRANGE_GYRO_Y - OVERRANGE_GYRO_Z = _mscl.InertialTypes_OVERRANGE_GYRO_Z - OVERRANGE_MAG_X = _mscl.InertialTypes_OVERRANGE_MAG_X - OVERRANGE_MAG_Y = _mscl.InertialTypes_OVERRANGE_MAG_Y - OVERRANGE_MAG_Z = _mscl.InertialTypes_OVERRANGE_MAG_Z - OVERRANGE_PRESSURE = _mscl.InertialTypes_OVERRANGE_PRESSURE - UNKNOWN_SBAS_SYSTEM = _mscl.InertialTypes_UNKNOWN_SBAS_SYSTEM - WAAS = _mscl.InertialTypes_WAAS - EGNOS = _mscl.InertialTypes_EGNOS - MSAS = _mscl.InertialTypes_MSAS - GAGAN = _mscl.InertialTypes_GAGAN - SBAS_INFO_RANGE_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_RANGE_AVAILABLE - SBAS_INFO_CORRECTIONS_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_CORRECTIONS_AVAILABLE - SBAS_INFO_INTEGRITY_AVAILABLE = _mscl.InertialTypes_SBAS_INFO_INTEGRITY_AVAILABLE - SBAS_INFO_TEST = _mscl.InertialTypes_SBAS_INFO_TEST - JAMMING_STATE_UNKNOWN = _mscl.InertialTypes_JAMMING_STATE_UNKNOWN - JAMMING_STATE_NONE = _mscl.InertialTypes_JAMMING_STATE_NONE - JAMMING_STATE_PARTIAL = _mscl.InertialTypes_JAMMING_STATE_PARTIAL - JAMMING_STATE_SIGNIFICANT = _mscl.InertialTypes_JAMMING_STATE_SIGNIFICANT - SPOOFING_STATE_UNKNOWN = _mscl.InertialTypes_SPOOFING_STATE_UNKNOWN - SPOOFING_STATE_NONE = _mscl.InertialTypes_SPOOFING_STATE_NONE - SPOOFING_STATE_PARTIAL = _mscl.InertialTypes_SPOOFING_STATE_PARTIAL - SPOOFING_STATE_SIGNIFICANT = _mscl.InertialTypes_SPOOFING_STATE_SIGNIFICANT - - def __init__(self): - _mscl.InertialTypes_swiginit(self, _mscl.new_InertialTypes()) - __swig_destroy__ = _mscl.delete_InertialTypes - -# Register InertialTypes in _mscl: -_mscl.InertialTypes_swigregister(InertialTypes) - -class NmeaMessageFormat(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_MESSAGES = _mscl.NmeaMessageFormat_MAX_MESSAGES - GGA = _mscl.NmeaMessageFormat_GGA - GLL = _mscl.NmeaMessageFormat_GLL - GSV = _mscl.NmeaMessageFormat_GSV - RMC = _mscl.NmeaMessageFormat_RMC - VTG = _mscl.NmeaMessageFormat_VTG - HDT = _mscl.NmeaMessageFormat_HDT - ZDA = _mscl.NmeaMessageFormat_ZDA - MSRA = _mscl.NmeaMessageFormat_MSRA - MSRR = _mscl.NmeaMessageFormat_MSRR - IGNORED = _mscl.NmeaMessageFormat_IGNORED - GNSS = _mscl.NmeaMessageFormat_GNSS - GPS = _mscl.NmeaMessageFormat_GPS - GALILEO = _mscl.NmeaMessageFormat_GALILEO - GLONASS = _mscl.NmeaMessageFormat_GLONASS - - def __init__(self): - _mscl.NmeaMessageFormat_swiginit(self, _mscl.new_NmeaMessageFormat()) - __swig_destroy__ = _mscl.delete_NmeaMessageFormat - - def sentenceType(self, *args): - return _mscl.NmeaMessageFormat_sentenceType(self, *args) - - def talkerId(self, *args): - return _mscl.NmeaMessageFormat_talkerId(self, *args) - - def sourceDataClass(self, *args): - return _mscl.NmeaMessageFormat_sourceDataClass(self, *args) - - def sampleRate(self, *args): - return _mscl.NmeaMessageFormat_sampleRate(self, *args) - - @staticmethod - def talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - - @staticmethod - def dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - - @staticmethod - def supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - - @staticmethod - def toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -# Register NmeaMessageFormat in _mscl: -_mscl.NmeaMessageFormat_swigregister(NmeaMessageFormat) -NmeaMessageFormat.MAX_FREQUENCY = _mscl.cvar.NmeaMessageFormat_MAX_FREQUENCY - -def NmeaMessageFormat_talkerIdRequired(sentenceType): - return _mscl.NmeaMessageFormat_talkerIdRequired(sentenceType) - -def NmeaMessageFormat_dataClassSupported(dataClass, sentenceType): - return _mscl.NmeaMessageFormat_dataClassSupported(dataClass, sentenceType) - -def NmeaMessageFormat_supportedDataClasses(sentenceType): - return _mscl.NmeaMessageFormat_supportedDataClasses(sentenceType) - -def NmeaMessageFormat_toCommandParameters(nmeaFormats): - return _mscl.NmeaMessageFormat_toCommandParameters(nmeaFormats) - -class Matrix_3x3(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Matrix_3x3_swiginit(self, _mscl.new_Matrix_3x3(*args)) - __swig_destroy__ = _mscl.delete_Matrix_3x3 - - def set(self, row, col, value): - return _mscl.Matrix_3x3_set(self, row, col, value) - - def at(self, row, col): - return _mscl.Matrix_3x3_at(self, row, col) - - def __str__(self): - return _mscl.Matrix_3x3___str__(self) - - def asMipFieldValues(self): - return _mscl.Matrix_3x3_asMipFieldValues(self) - -# Register Matrix_3x3 in _mscl: -_mscl.Matrix_3x3_swigregister(Matrix_3x3) - -class TimeUpdate(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, timeOfWeek, weekNumber, timeAccuracy=0): - _mscl.TimeUpdate_swiginit(self, _mscl.new_TimeUpdate(timeOfWeek, weekNumber, timeAccuracy)) - __swig_destroy__ = _mscl.delete_TimeUpdate - - def timeOfWeek(self): - return _mscl.TimeUpdate_timeOfWeek(self) - - def weekNumber(self): - return _mscl.TimeUpdate_weekNumber(self) - - def timeAccuracy(self): - return _mscl.TimeUpdate_timeAccuracy(self) - -# Register TimeUpdate in _mscl: -_mscl.TimeUpdate_swigregister(TimeUpdate) - -class ZUPTSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, enable, threshold): - _mscl.ZUPTSettingsData_swiginit(self, _mscl.new_ZUPTSettingsData(enable, threshold)) - enabled = property(_mscl.ZUPTSettingsData_enabled_get, _mscl.ZUPTSettingsData_enabled_set) - threshold = property(_mscl.ZUPTSettingsData_threshold_get, _mscl.ZUPTSettingsData_threshold_set) - __swig_destroy__ = _mscl.delete_ZUPTSettingsData - -# Register ZUPTSettingsData in _mscl: -_mscl.ZUPTSettingsData_swigregister(ZUPTSettingsData) - -class FixedReferencePositionData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.FixedReferencePositionData_swiginit(self, _mscl.new_FixedReferencePositionData(*args)) - enable = property(_mscl.FixedReferencePositionData_enable_get, _mscl.FixedReferencePositionData_enable_set) - referencePosition = property(_mscl.FixedReferencePositionData_referencePosition_get, _mscl.FixedReferencePositionData_referencePosition_set) - __swig_destroy__ = _mscl.delete_FixedReferencePositionData - -# Register FixedReferencePositionData in _mscl: -_mscl.FixedReferencePositionData_swigregister(FixedReferencePositionData) - -class SBASSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enableSBAS = property(_mscl.SBASSettingsData_enableSBAS_get, _mscl.SBASSettingsData_enableSBAS_set) - enableRanging = property(_mscl.SBASSettingsData_enableRanging_get, _mscl.SBASSettingsData_enableRanging_set) - enableCorrectionData = property(_mscl.SBASSettingsData_enableCorrectionData_get, _mscl.SBASSettingsData_enableCorrectionData_set) - applyIntegrityInfo = property(_mscl.SBASSettingsData_applyIntegrityInfo_get, _mscl.SBASSettingsData_applyIntegrityInfo_set) - satellitePRNs = property(_mscl.SBASSettingsData_satellitePRNs_get, _mscl.SBASSettingsData_satellitePRNs_set) - - def __init__(self): - _mscl.SBASSettingsData_swiginit(self, _mscl.new_SBASSettingsData()) - __swig_destroy__ = _mscl.delete_SBASSettingsData - -# Register SBASSettingsData in _mscl: -_mscl.SBASSettingsData_swigregister(SBASSettingsData) - -class Constellation(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - constellationID = property(_mscl.Constellation_constellationID_get, _mscl.Constellation_constellationID_set) - enabled = property(_mscl.Constellation_enabled_get, _mscl.Constellation_enabled_set) - reservedChannelCount = property(_mscl.Constellation_reservedChannelCount_get, _mscl.Constellation_reservedChannelCount_set) - maxChannels = property(_mscl.Constellation_maxChannels_get, _mscl.Constellation_maxChannels_set) - enableL1SAIF = property(_mscl.Constellation_enableL1SAIF_get, _mscl.Constellation_enableL1SAIF_set) - - def __init__(self): - _mscl.Constellation_swiginit(self, _mscl.new_Constellation()) - __swig_destroy__ = _mscl.delete_Constellation - -# Register Constellation in _mscl: -_mscl.Constellation_swigregister(Constellation) - -class ConstellationSettingsData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - maxChannelsAvailable = property(_mscl.ConstellationSettingsData_maxChannelsAvailable_get, _mscl.ConstellationSettingsData_maxChannelsAvailable_set) - maxChannelsToUse = property(_mscl.ConstellationSettingsData_maxChannelsToUse_get, _mscl.ConstellationSettingsData_maxChannelsToUse_set) - constellations = property(_mscl.ConstellationSettingsData_constellations_get, _mscl.ConstellationSettingsData_constellations_set) - - def __init__(self): - _mscl.ConstellationSettingsData_swiginit(self, _mscl.new_ConstellationSettingsData()) - __swig_destroy__ = _mscl.delete_ConstellationSettingsData - -# Register ConstellationSettingsData in _mscl: -_mscl.ConstellationSettingsData_swigregister(ConstellationSettingsData) - -class LowPassFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - SET_TO_HALF_REPORTING_RATE = _mscl.LowPassFilterData_SET_TO_HALF_REPORTING_RATE - USER_SPECIFIED_CUTOFF_FREQ = _mscl.LowPassFilterData_USER_SPECIFIED_CUTOFF_FREQ - - def __init__(self, *args): - _mscl.LowPassFilterData_swiginit(self, _mscl.new_LowPassFilterData(*args)) - dataDescriptor = property(_mscl.LowPassFilterData_dataDescriptor_get, _mscl.LowPassFilterData_dataDescriptor_set) - manualFilterBandwidthConfig = property(_mscl.LowPassFilterData_manualFilterBandwidthConfig_get, _mscl.LowPassFilterData_manualFilterBandwidthConfig_set) - applyLowPassFilter = property(_mscl.LowPassFilterData_applyLowPassFilter_get, _mscl.LowPassFilterData_applyLowPassFilter_set) - cutoffFrequency = property(_mscl.LowPassFilterData_cutoffFrequency_get, _mscl.LowPassFilterData_cutoffFrequency_set) - - @staticmethod - def getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - - @staticmethod - def getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - __swig_destroy__ = _mscl.delete_LowPassFilterData - -# Register LowPassFilterData in _mscl: -_mscl.LowPassFilterData_swigregister(LowPassFilterData) - -def LowPassFilterData_getDataDescriptorForCommand(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorForCommand(descriptor) - -def LowPassFilterData_getDataDescriptorFromUint8(descriptor): - return _mscl.LowPassFilterData_getDataDescriptorFromUint8(descriptor) - -class ComplementaryFilterData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.ComplementaryFilterData_swiginit(self, _mscl.new_ComplementaryFilterData()) - upCompensationEnabled = property(_mscl.ComplementaryFilterData_upCompensationEnabled_get, _mscl.ComplementaryFilterData_upCompensationEnabled_set) - upCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_upCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_upCompensationTimeInSeconds_set) - northCompensationEnabled = property(_mscl.ComplementaryFilterData_northCompensationEnabled_get, _mscl.ComplementaryFilterData_northCompensationEnabled_set) - northCompensationTimeInSeconds = property(_mscl.ComplementaryFilterData_northCompensationTimeInSeconds_get, _mscl.ComplementaryFilterData_northCompensationTimeInSeconds_set) - __swig_destroy__ = _mscl.delete_ComplementaryFilterData - -# Register ComplementaryFilterData in _mscl: -_mscl.ComplementaryFilterData_swigregister(ComplementaryFilterData) - -class PpsPulseInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PpsPulseInfo_swiginit(self, _mscl.new_PpsPulseInfo()) - count = property(_mscl.PpsPulseInfo_count_get, _mscl.PpsPulseInfo_count_set) - lastTimeinMS = property(_mscl.PpsPulseInfo_lastTimeinMS_get, _mscl.PpsPulseInfo_lastTimeinMS_set) - __swig_destroy__ = _mscl.delete_PpsPulseInfo - -# Register PpsPulseInfo in _mscl: -_mscl.PpsPulseInfo_swigregister(PpsPulseInfo) - -class StreamInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.StreamInfo_swiginit(self, _mscl.new_StreamInfo()) - enabled = property(_mscl.StreamInfo_enabled_get, _mscl.StreamInfo_enabled_set) - outgoingPacketsDropped = property(_mscl.StreamInfo_outgoingPacketsDropped_get, _mscl.StreamInfo_outgoingPacketsDropped_set) - __swig_destroy__ = _mscl.delete_StreamInfo - -# Register StreamInfo in _mscl: -_mscl.StreamInfo_swigregister(StreamInfo) - -class DeviceMessageInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.DeviceMessageInfo_swiginit(self, _mscl.new_DeviceMessageInfo()) - messageParsingErrors = property(_mscl.DeviceMessageInfo_messageParsingErrors_get, _mscl.DeviceMessageInfo_messageParsingErrors_set) - messagesRead = property(_mscl.DeviceMessageInfo_messagesRead_get, _mscl.DeviceMessageInfo_messagesRead_set) - lastMessageReadinMS = property(_mscl.DeviceMessageInfo_lastMessageReadinMS_get, _mscl.DeviceMessageInfo_lastMessageReadinMS_set) - __swig_destroy__ = _mscl.delete_DeviceMessageInfo - -# Register DeviceMessageInfo in _mscl: -_mscl.DeviceMessageInfo_swigregister(DeviceMessageInfo) - -class PortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.PortInfo_swiginit(self, _mscl.new_PortInfo()) - bytesWritten = property(_mscl.PortInfo_bytesWritten_get, _mscl.PortInfo_bytesWritten_set) - bytesRead = property(_mscl.PortInfo_bytesRead_get, _mscl.PortInfo_bytesRead_set) - overrunsOnWrite = property(_mscl.PortInfo_overrunsOnWrite_get, _mscl.PortInfo_overrunsOnWrite_set) - overrunsOnRead = property(_mscl.PortInfo_overrunsOnRead_get, _mscl.PortInfo_overrunsOnRead_set) - __swig_destroy__ = _mscl.delete_PortInfo - -# Register PortInfo in _mscl: -_mscl.PortInfo_swigregister(PortInfo) - -class TemperatureInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.TemperatureInfo_swiginit(self, _mscl.new_TemperatureInfo()) - onBoardTemp = property(_mscl.TemperatureInfo_onBoardTemp_get, _mscl.TemperatureInfo_onBoardTemp_set) - lastReadInMS = property(_mscl.TemperatureInfo_lastReadInMS_get, _mscl.TemperatureInfo_lastReadInMS_set) - error = property(_mscl.TemperatureInfo_error_get, _mscl.TemperatureInfo_error_set) - __swig_destroy__ = _mscl.delete_TemperatureInfo - -# Register TemperatureInfo in _mscl: -_mscl.TemperatureInfo_swigregister(TemperatureInfo) - -ModelNumber = _mscl.ModelNumber -StatusStructure_Value = _mscl.StatusStructure_Value -SystemState_Value = _mscl.SystemState_Value -gnss1PpsPulseInfo_Count = _mscl.gnss1PpsPulseInfo_Count -gnss1PpsPulseInfo_LastTimeinMS = _mscl.gnss1PpsPulseInfo_LastTimeinMS -GnssPowerStateOn = _mscl.GnssPowerStateOn -ImuStreamInfo_Enabled = _mscl.ImuStreamInfo_Enabled -ImuStreamInfo_PacketsDropped = _mscl.ImuStreamInfo_PacketsDropped -GnssStreamInfo_Enabled = _mscl.GnssStreamInfo_Enabled -GnssStreamInfo_PacketsDropped = _mscl.GnssStreamInfo_PacketsDropped -EstimationFilterStreamInfo_Enabled = _mscl.EstimationFilterStreamInfo_Enabled -EstimationFilterStreamInfo_PacketsDropped = _mscl.EstimationFilterStreamInfo_PacketsDropped -ComPortInfo_BytesRead = _mscl.ComPortInfo_BytesRead -ComPortInfo_BytesWritten = _mscl.ComPortInfo_BytesWritten -ComPortInfo_OverrunsOnRead = _mscl.ComPortInfo_OverrunsOnRead -ComPortInfo_OverrunsOnWrite = _mscl.ComPortInfo_OverrunsOnWrite -ImuMessageInfo_LastMessageReadinMS = _mscl.ImuMessageInfo_LastMessageReadinMS -ImuMessageInfo_MessageParsingErrors = _mscl.ImuMessageInfo_MessageParsingErrors -ImuMessageInfo_MessagesRead = _mscl.ImuMessageInfo_MessagesRead -GnssMessageInfo_LastMessageReadinMS = _mscl.GnssMessageInfo_LastMessageReadinMS -GnssMessageInfo_MessageParsingErrors = _mscl.GnssMessageInfo_MessageParsingErrors -GnssMessageInfo_MessagesRead = _mscl.GnssMessageInfo_MessagesRead -TemperatureInfo_Error = _mscl.TemperatureInfo_Error -TemperatureInfo_LastReadInMS = _mscl.TemperatureInfo_LastReadInMS -TemperatureInfo_OnBoardTemp = _mscl.TemperatureInfo_OnBoardTemp -PowerState = _mscl.PowerState -GyroRange = _mscl.GyroRange -AccelRange = _mscl.AccelRange -HasMagnetometer = _mscl.HasMagnetometer -HasPressure = _mscl.HasPressure -class DeviceStatusData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - BASIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_BASIC_STATUS_STRUCTURE - DIAGNOSTIC_STATUS_STRUCTURE = _mscl.DeviceStatusData_DIAGNOSTIC_STATUS_STRUCTURE - SYSTEM_INITIALIZATION = _mscl.DeviceStatusData_SYSTEM_INITIALIZATION - SYSTEM_STARTUP = _mscl.DeviceStatusData_SYSTEM_STARTUP - SYSTEM_RUNNING = _mscl.DeviceStatusData_SYSTEM_RUNNING - - def __init__(self): - _mscl.DeviceStatusData_swiginit(self, _mscl.new_DeviceStatusData()) - modelNumber = property(_mscl.DeviceStatusData_modelNumber_get, _mscl.DeviceStatusData_modelNumber_set) - statusStructure = property(_mscl.DeviceStatusData_statusStructure_get, _mscl.DeviceStatusData_statusStructure_set) - systemTimerInMS = property(_mscl.DeviceStatusData_systemTimerInMS_get, _mscl.DeviceStatusData_systemTimerInMS_set) - - def systemState(self, *args): - return _mscl.DeviceStatusData_systemState(self, *args) - - def gnssPowerStateOn(self, *args): - return _mscl.DeviceStatusData_gnssPowerStateOn(self, *args) - - def gnss1PpsPulseInfo(self, *args): - return _mscl.DeviceStatusData_gnss1PpsPulseInfo(self, *args) - - def imuStreamInfo(self, *args): - return _mscl.DeviceStatusData_imuStreamInfo(self, *args) - - def gnssStreamInfo(self, *args): - return _mscl.DeviceStatusData_gnssStreamInfo(self, *args) - - def estimationFilterStreamInfo(self, *args): - return _mscl.DeviceStatusData_estimationFilterStreamInfo(self, *args) - - def imuMessageInfo(self, *args): - return _mscl.DeviceStatusData_imuMessageInfo(self, *args) - - def gnssMessageInfo(self, *args): - return _mscl.DeviceStatusData_gnssMessageInfo(self, *args) - - def comPortInfo(self, *args): - return _mscl.DeviceStatusData_comPortInfo(self, *args) - - def usbPortInfo(self, *args): - return _mscl.DeviceStatusData_usbPortInfo(self, *args) - - def hasMagnetometer(self, *args): - return _mscl.DeviceStatusData_hasMagnetometer(self, *args) - - def magnetometerInitializationFailed(self, *args): - return _mscl.DeviceStatusData_magnetometerInitializationFailed(self, *args) - - def hasPressure(self, *args): - return _mscl.DeviceStatusData_hasPressure(self, *args) - - def pressureInitializationFailed(self, *args): - return _mscl.DeviceStatusData_pressureInitializationFailed(self, *args) - - def gnssReceiverInitializationFailed(self, *args): - return _mscl.DeviceStatusData_gnssReceiverInitializationFailed(self, *args) - - def coldStartOnPowerOn(self, *args): - return _mscl.DeviceStatusData_coldStartOnPowerOn(self, *args) - - def temperatureInfo(self, *args): - return _mscl.DeviceStatusData_temperatureInfo(self, *args) - - def powerState(self, *args): - return _mscl.DeviceStatusData_powerState(self, *args) - - def gyroRange(self, *args): - return _mscl.DeviceStatusData_gyroRange(self, *args) - - def accelRange(self, *args): - return _mscl.DeviceStatusData_accelRange(self, *args) - - def asMap(self): - return _mscl.DeviceStatusData_asMap(self) - - def asValueMap(self): - return _mscl.DeviceStatusData_asValueMap(self) - __swig_destroy__ = _mscl.delete_DeviceStatusData - -# Register DeviceStatusData in _mscl: -_mscl.DeviceStatusData_swigregister(DeviceStatusData) - -class ExternalGNSSUpdateData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - gpsTimeOfWeek = property(_mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_get, _mscl.ExternalGNSSUpdateData_gpsTimeOfWeek_set) - gpsWeekNumber = property(_mscl.ExternalGNSSUpdateData_gpsWeekNumber_get, _mscl.ExternalGNSSUpdateData_gpsWeekNumber_set) - lattitude = property(_mscl.ExternalGNSSUpdateData_lattitude_get, _mscl.ExternalGNSSUpdateData_lattitude_set) - longitude = property(_mscl.ExternalGNSSUpdateData_longitude_get, _mscl.ExternalGNSSUpdateData_longitude_set) - altitudeAboveWGS84Ellipsoid = property(_mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_get, _mscl.ExternalGNSSUpdateData_altitudeAboveWGS84Ellipsoid_set) - northVelocity = property(_mscl.ExternalGNSSUpdateData_northVelocity_get, _mscl.ExternalGNSSUpdateData_northVelocity_set) - eastVelocity = property(_mscl.ExternalGNSSUpdateData_eastVelocity_get, _mscl.ExternalGNSSUpdateData_eastVelocity_set) - downVelocity = property(_mscl.ExternalGNSSUpdateData_downVelocity_get, _mscl.ExternalGNSSUpdateData_downVelocity_set) - northPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_northPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_northPositionUncertainty_set) - eastPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_eastPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_eastPositionUncertainty_set) - downPositionUncertainty = property(_mscl.ExternalGNSSUpdateData_downPositionUncertainty_get, _mscl.ExternalGNSSUpdateData_downPositionUncertainty_set) - northVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_northVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_northVelocityUncertainty_set) - eastVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_eastVelocityUncertainty_set) - downVelocityUncertainty = property(_mscl.ExternalGNSSUpdateData_downVelocityUncertainty_get, _mscl.ExternalGNSSUpdateData_downVelocityUncertainty_set) - - def __init__(self): - _mscl.ExternalGNSSUpdateData_swiginit(self, _mscl.new_ExternalGNSSUpdateData()) - __swig_destroy__ = _mscl.delete_ExternalGNSSUpdateData - -# Register ExternalGNSSUpdateData in _mscl: -_mscl.ExternalGNSSUpdateData_swigregister(ExternalGNSSUpdateData) - -class HeadingUpdateOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsOptionId(self): - return _mscl.HeadingUpdateOptions_AsOptionId(self) - - def __init__(self, *args): - _mscl.HeadingUpdateOptions_swiginit(self, _mscl.new_HeadingUpdateOptions(*args)) - useInternalMagnetometer = property(_mscl.HeadingUpdateOptions_useInternalMagnetometer_get, _mscl.HeadingUpdateOptions_useInternalMagnetometer_set) - useInternalGNSSVelocityVector = property(_mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_get, _mscl.HeadingUpdateOptions_useInternalGNSSVelocityVector_set) - useExternalHeadingMessages = property(_mscl.HeadingUpdateOptions_useExternalHeadingMessages_get, _mscl.HeadingUpdateOptions_useExternalHeadingMessages_set) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptions - -# Register HeadingUpdateOptions in _mscl: -_mscl.HeadingUpdateOptions_swigregister(HeadingUpdateOptions) - -Automatic = _mscl.Automatic -UserSpecified_Heading = _mscl.UserSpecified_Heading -UserSpecified_Attitude = _mscl.UserSpecified_Attitude -UserSpecified_All = _mscl.UserSpecified_All -GNSS_DualAntenna = _mscl.GNSS_DualAntenna -GNSS_Kinematic = _mscl.GNSS_Kinematic -Magnetometer = _mscl.Magnetometer -External = _mscl.External -class HeadingAlignmentMethod(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.HeadingAlignmentMethod_swiginit(self, _mscl.new_HeadingAlignmentMethod(*args)) - value = property(_mscl.HeadingAlignmentMethod_value_get, _mscl.HeadingAlignmentMethod_value_set) - - def select(self, option): - return _mscl.HeadingAlignmentMethod_select(self, option) - - def deselect(self, option): - return _mscl.HeadingAlignmentMethod_deselect(self, option) - - def selected(self, option): - return _mscl.HeadingAlignmentMethod_selected(self, option) - __swig_destroy__ = _mscl.delete_HeadingAlignmentMethod - -# Register HeadingAlignmentMethod in _mscl: -_mscl.HeadingAlignmentMethod_swigregister(HeadingAlignmentMethod) - -class FilterInitializationValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.FilterInitializationValues_swiginit(self, _mscl.new_FilterInitializationValues()) - autoInitialize = property(_mscl.FilterInitializationValues_autoInitialize_get, _mscl.FilterInitializationValues_autoInitialize_set) - initialValuesSource = property(_mscl.FilterInitializationValues_initialValuesSource_get, _mscl.FilterInitializationValues_initialValuesSource_set) - autoHeadingAlignmentMethod = property(_mscl.FilterInitializationValues_autoHeadingAlignmentMethod_get, _mscl.FilterInitializationValues_autoHeadingAlignmentMethod_set) - initialAttitude = property(_mscl.FilterInitializationValues_initialAttitude_get, _mscl.FilterInitializationValues_initialAttitude_set) - initialPosition = property(_mscl.FilterInitializationValues_initialPosition_get, _mscl.FilterInitializationValues_initialPosition_set) - initialVelocity = property(_mscl.FilterInitializationValues_initialVelocity_get, _mscl.FilterInitializationValues_initialVelocity_set) - referenceFrame = property(_mscl.FilterInitializationValues_referenceFrame_get, _mscl.FilterInitializationValues_referenceFrame_set) - - def manualHeading(self): - return _mscl.FilterInitializationValues_manualHeading(self) - - def manualAttitude(self): - return _mscl.FilterInitializationValues_manualAttitude(self) - - def manualPositionVelocity(self): - return _mscl.FilterInitializationValues_manualPositionVelocity(self) - __swig_destroy__ = _mscl.delete_FilterInitializationValues - -# Register FilterInitializationValues in _mscl: -_mscl.FilterInitializationValues_swigregister(FilterInitializationValues) - -class TareAxisValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def asUint8(self): - return _mscl.TareAxisValues_asUint8(self) - - def __init__(self, tareRollAxis, tarePitchAxis, tareYawAxis): - _mscl.TareAxisValues_swiginit(self, _mscl.new_TareAxisValues(tareRollAxis, tarePitchAxis, tareYawAxis)) - tareRollAxis = property(_mscl.TareAxisValues_tareRollAxis_get, _mscl.TareAxisValues_tareRollAxis_set) - tarePitchAxis = property(_mscl.TareAxisValues_tarePitchAxis_get, _mscl.TareAxisValues_tarePitchAxis_set) - tareYawAxis = property(_mscl.TareAxisValues_tareYawAxis_get, _mscl.TareAxisValues_tareYawAxis_set) - __swig_destroy__ = _mscl.delete_TareAxisValues - -# Register TareAxisValues in _mscl: -_mscl.TareAxisValues_swigregister(TareAxisValues) - -class GeographicSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GeographicSourceOptions_swiginit(self, _mscl.new_GeographicSourceOptions(*args)) - source = property(_mscl.GeographicSourceOptions_source_get, _mscl.GeographicSourceOptions_source_set) - manual = property(_mscl.GeographicSourceOptions_manual_get, _mscl.GeographicSourceOptions_manual_set) - __swig_destroy__ = _mscl.delete_GeographicSourceOptions - -# Register GeographicSourceOptions in _mscl: -_mscl.GeographicSourceOptions_swigregister(GeographicSourceOptions) - -class EstimationControlOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def AsUint16(self): - return _mscl.EstimationControlOptions_AsUint16(self) - - def __init__(self, *args): - _mscl.EstimationControlOptions_swiginit(self, _mscl.new_EstimationControlOptions(*args)) - enableGyroBiasEstimation = property(_mscl.EstimationControlOptions_enableGyroBiasEstimation_get, _mscl.EstimationControlOptions_enableGyroBiasEstimation_set) - enableAccelBiasEstimation = property(_mscl.EstimationControlOptions_enableAccelBiasEstimation_get, _mscl.EstimationControlOptions_enableAccelBiasEstimation_set) - enableGyroScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableGyroScaleFactorEstimation_set) - enableAccelScaleFactorEstimation = property(_mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_get, _mscl.EstimationControlOptions_enableAccelScaleFactorEstimation_set) - enableGNSSAntennaOffsetEstimation = property(_mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_get, _mscl.EstimationControlOptions_enableGNSSAntennaOffsetEstimation_set) - enableHardIronAutoCalibration = property(_mscl.EstimationControlOptions_enableHardIronAutoCalibration_get, _mscl.EstimationControlOptions_enableHardIronAutoCalibration_set) - enableSoftIronAutoCalibration = property(_mscl.EstimationControlOptions_enableSoftIronAutoCalibration_get, _mscl.EstimationControlOptions_enableSoftIronAutoCalibration_set) - __swig_destroy__ = _mscl.delete_EstimationControlOptions - -# Register EstimationControlOptions in _mscl: -_mscl.EstimationControlOptions_swigregister(EstimationControlOptions) - -class HeadingData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.HeadingData_swiginit(self, _mscl.new_HeadingData()) - TRUE_HEADING = _mscl.HeadingData_TRUE_HEADING - MAGNETIC_HEADING = _mscl.HeadingData_MAGNETIC_HEADING - heading = property(_mscl.HeadingData_heading_get, _mscl.HeadingData_heading_set) - headingAngle = property(_mscl.HeadingData_headingAngle_get, _mscl.HeadingData_headingAngle_set) - headingAngleUncertainty = property(_mscl.HeadingData_headingAngleUncertainty_get, _mscl.HeadingData_headingAngleUncertainty_set) - __swig_destroy__ = _mscl.delete_HeadingData - -# Register HeadingData in _mscl: -_mscl.HeadingData_swigregister(HeadingData) - -class AdaptiveMeasurementData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.AdaptiveMeasurementData_swiginit(self, _mscl.new_AdaptiveMeasurementData()) - mode = property(_mscl.AdaptiveMeasurementData_mode_get, _mscl.AdaptiveMeasurementData_mode_set) - lowPassFilterCutoff = property(_mscl.AdaptiveMeasurementData_lowPassFilterCutoff_get, _mscl.AdaptiveMeasurementData_lowPassFilterCutoff_set) - lowLimit = property(_mscl.AdaptiveMeasurementData_lowLimit_get, _mscl.AdaptiveMeasurementData_lowLimit_set) - highLimit = property(_mscl.AdaptiveMeasurementData_highLimit_get, _mscl.AdaptiveMeasurementData_highLimit_set) - lowLimitUncertainty = property(_mscl.AdaptiveMeasurementData_lowLimitUncertainty_get, _mscl.AdaptiveMeasurementData_lowLimitUncertainty_set) - highLimitUncertainty = property(_mscl.AdaptiveMeasurementData_highLimitUncertainty_get, _mscl.AdaptiveMeasurementData_highLimitUncertainty_set) - minUncertainty = property(_mscl.AdaptiveMeasurementData_minUncertainty_get, _mscl.AdaptiveMeasurementData_minUncertainty_set) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementData - -# Register AdaptiveMeasurementData in _mscl: -_mscl.AdaptiveMeasurementData_swigregister(AdaptiveMeasurementData) - -class AutoAdaptiveFilterOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.AutoAdaptiveFilterOptions_swiginit(self, _mscl.new_AutoAdaptiveFilterOptions(*args)) - level = property(_mscl.AutoAdaptiveFilterOptions_level_get, _mscl.AutoAdaptiveFilterOptions_level_set) - timeLimit = property(_mscl.AutoAdaptiveFilterOptions_timeLimit_get, _mscl.AutoAdaptiveFilterOptions_timeLimit_set) - __swig_destroy__ = _mscl.delete_AutoAdaptiveFilterOptions - -# Register AutoAdaptiveFilterOptions in _mscl: -_mscl.AutoAdaptiveFilterOptions_swigregister(AutoAdaptiveFilterOptions) - -class SignalConditioningValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ENABLE_ORIENTATION_CALC = _mscl.SignalConditioningValues_ENABLE_ORIENTATION_CALC - ENABLE_CONING_SCULLING = _mscl.SignalConditioningValues_ENABLE_CONING_SCULLING - ENABLE_FINITE_SIZE_CORRECTION = _mscl.SignalConditioningValues_ENABLE_FINITE_SIZE_CORRECTION - DISABLE_MAGNETOMETER = _mscl.SignalConditioningValues_DISABLE_MAGNETOMETER - DISABLE_NORTH_COMP = _mscl.SignalConditioningValues_DISABLE_NORTH_COMP - DISABLE_UP_COMP = _mscl.SignalConditioningValues_DISABLE_UP_COMP - ENABLE_QUATERNION_CALC = _mscl.SignalConditioningValues_ENABLE_QUATERNION_CALC - HIGH = _mscl.SignalConditioningValues_HIGH - LOW = _mscl.SignalConditioningValues_LOW - dataConditioningFlags = property(_mscl.SignalConditioningValues_dataConditioningFlags_get, _mscl.SignalConditioningValues_dataConditioningFlags_set) - orientationCalcDecimation = property(_mscl.SignalConditioningValues_orientationCalcDecimation_get, _mscl.SignalConditioningValues_orientationCalcDecimation_set) - accelGyroFilterWidth = property(_mscl.SignalConditioningValues_accelGyroFilterWidth_get, _mscl.SignalConditioningValues_accelGyroFilterWidth_set) - magFilterWidth = property(_mscl.SignalConditioningValues_magFilterWidth_get, _mscl.SignalConditioningValues_magFilterWidth_set) - upCompensation = property(_mscl.SignalConditioningValues_upCompensation_get, _mscl.SignalConditioningValues_upCompensation_set) - northCompensation = property(_mscl.SignalConditioningValues_northCompensation_get, _mscl.SignalConditioningValues_northCompensation_set) - magBandwidthPower = property(_mscl.SignalConditioningValues_magBandwidthPower_get, _mscl.SignalConditioningValues_magBandwidthPower_set) - - def __init__(self): - _mscl.SignalConditioningValues_swiginit(self, _mscl.new_SignalConditioningValues()) - - def conditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_conditioningOptionOn(self, *args) - - def setConditioningOptionOn(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOn(self, *args) - - def setConditioningOptionOff(self, *args): - return _mscl.SignalConditioningValues_setConditioningOptionOff(self, *args) - __swig_destroy__ = _mscl.delete_SignalConditioningValues - -# Register SignalConditioningValues in _mscl: -_mscl.SignalConditioningValues_swigregister(SignalConditioningValues) - -class EnableDisableMeasurements(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - ACCELEROMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_ACCELEROMETER_MEASUREMENTS - MAGNETOMETER_MEASUREMENTS = _mscl.EnableDisableMeasurements_MAGNETOMETER_MEASUREMENTS - - def __init__(self, *args): - _mscl.EnableDisableMeasurements_swiginit(self, _mscl.new_EnableDisableMeasurements(*args)) - measurementOptions = property(_mscl.EnableDisableMeasurements_measurementOptions_get, _mscl.EnableDisableMeasurements_measurementOptions_set) - - def optionEnabled(self, *args): - return _mscl.EnableDisableMeasurements_optionEnabled(self, *args) - - def enableOption(self, *args): - return _mscl.EnableDisableMeasurements_enableOption(self, *args) - - def disableOption(self, *args): - return _mscl.EnableDisableMeasurements_disableOption(self, *args) - __swig_destroy__ = _mscl.delete_EnableDisableMeasurements - -# Register EnableDisableMeasurements in _mscl: -_mscl.EnableDisableMeasurements_swigregister(EnableDisableMeasurements) - -class RTKDeviceStatusFlags(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MODEM_STATE = _mscl.RTKDeviceStatusFlags_MODEM_STATE - CONNECTION_TYPE = _mscl.RTKDeviceStatusFlags_CONNECTION_TYPE - RSSI = _mscl.RTKDeviceStatusFlags_RSSI - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_SIGNAL_QUALITY - TOWER_CHANGE_INDICATOR = _mscl.RTKDeviceStatusFlags_TOWER_CHANGE_INDICATOR - NMEA_TIMEOUT = _mscl.RTKDeviceStatusFlags_NMEA_TIMEOUT - SERVER_TIMEOUT = _mscl.RTKDeviceStatusFlags_SERVER_TIMEOUT - RTCM_TIMEOUT = _mscl.RTKDeviceStatusFlags_RTCM_TIMEOUT - DEVICE_OUT_OF_RANGE = _mscl.RTKDeviceStatusFlags_DEVICE_OUT_OF_RANGE - CORRECTIONS_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_CORRECTIONS_UNAVAILABLE - VERSION = _mscl.RTKDeviceStatusFlags_VERSION - OFF = _mscl.RTKDeviceStatusFlags_OFF - NO_NETWORK = _mscl.RTKDeviceStatusFlags_NO_NETWORK - NETWORK_CONNECTED = _mscl.RTKDeviceStatusFlags_NETWORK_CONNECTED - CONFIGURING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_CONFIGURING_DATA_CONTEXT - ACTIVATING_DATA_CONTEXT = _mscl.RTKDeviceStatusFlags_ACTIVATING_DATA_CONTEXT - CONFIGURING_SOCKET = _mscl.RTKDeviceStatusFlags_CONFIGURING_SOCKET - WAITING_ON_SERVER_HANDSHAKE = _mscl.RTKDeviceStatusFlags_WAITING_ON_SERVER_HANDSHAKE - CONNECTED_AND_IDLE = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_IDLE - CONNECTED_AND_STREAMING = _mscl.RTKDeviceStatusFlags_CONNECTED_AND_STREAMING - NO_CONNECTION = _mscl.RTKDeviceStatusFlags_NO_CONNECTION - CONNECTION_2G = _mscl.RTKDeviceStatusFlags_CONNECTION_2G - CONNECTION_3G = _mscl.RTKDeviceStatusFlags_CONNECTION_3G - CONNECTION_4G = _mscl.RTKDeviceStatusFlags_CONNECTION_4G - CONNECTION_5G = _mscl.RTKDeviceStatusFlags_CONNECTION_5G - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_swiginit(self, _mscl.new_RTKDeviceStatusFlags(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_version(self) - - def modemState(self, *args): - return _mscl.RTKDeviceStatusFlags_modemState(self, *args) - - def connectionType(self, *args): - return _mscl.RTKDeviceStatusFlags_connectionType(self, *args) - - def rssi(self, *args): - return _mscl.RTKDeviceStatusFlags_rssi(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_signalQuality(self, *args) - - def towerChangeIndicator(self, *args): - return _mscl.RTKDeviceStatusFlags_towerChangeIndicator(self, *args) - - def nmeaTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_nmeaTimeout(self, *args) - - def serverTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_serverTimeout(self, *args) - - def rtcmTimeout(self, *args): - return _mscl.RTKDeviceStatusFlags_rtcmTimeout(self, *args) - - def deviceOutOfRange(self, *args): - return _mscl.RTKDeviceStatusFlags_deviceOutOfRange(self, *args) - - def correctionsUnavailable(self, *args): - return _mscl.RTKDeviceStatusFlags_correctionsUnavailable(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags - -# Register RTKDeviceStatusFlags in _mscl: -_mscl.RTKDeviceStatusFlags_swigregister(RTKDeviceStatusFlags) - -class RTKDeviceStatusFlags_v1(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - CONTROLLER_STATE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATE - PLATFORM_STATE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATE - CONTROLLER_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_STATUS_CODE - PLATFORM_STATUS_CODE = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_STATUS_CODE - RESET_REASON = _mscl.RTKDeviceStatusFlags_v1_RESET_REASON - SIGNAL_QUALITY = _mscl.RTKDeviceStatusFlags_v1_SIGNAL_QUALITY - VERSION = _mscl.RTKDeviceStatusFlags_v1_VERSION - IDLE = _mscl.RTKDeviceStatusFlags_v1_IDLE - ACTIVE = _mscl.RTKDeviceStatusFlags_v1_ACTIVE - MODEM_OFF = _mscl.RTKDeviceStatusFlags_v1_MODEM_OFF - MODEM_POWERING_ON = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_ON - MODEM_CONFIGURE = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONFIGURE - MODEM_POWERING_DOWN = _mscl.RTKDeviceStatusFlags_v1_MODEM_POWERING_DOWN - MODEM_READY = _mscl.RTKDeviceStatusFlags_v1_MODEM_READY - MODEM_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTING - MODEM_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_MODEM_DISCONNECTING - MODEM_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_MODEM_CONNECTED - SERVICE_CONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTING - SERVICE_CONNECTION_FAILED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_FAILED - SERVICE_CONNECTION_CANCELED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTION_CANCELED - SERVICE_DISCONNECTING = _mscl.RTKDeviceStatusFlags_v1_SERVICE_DISCONNECTING - SERVICE_CONNECTED = _mscl.RTKDeviceStatusFlags_v1_SERVICE_CONNECTED - PLATFORM_ERROR = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_ERROR - RESET_MODEM = _mscl.RTKDeviceStatusFlags_v1_RESET_MODEM - CONTROLLER_OK = _mscl.RTKDeviceStatusFlags_v1_CONTROLLER_OK - WAITING_NMEA = _mscl.RTKDeviceStatusFlags_v1_WAITING_NMEA - RTK_TIMEOUT = _mscl.RTKDeviceStatusFlags_v1_RTK_TIMEOUT - RTK_UNAVAILABLE = _mscl.RTKDeviceStatusFlags_v1_RTK_UNAVAILABLE - CONFIG_INVALID = _mscl.RTKDeviceStatusFlags_v1_CONFIG_INVALID - PLATFORM_OK = _mscl.RTKDeviceStatusFlags_v1_PLATFORM_OK - RTK_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_RTK_CONNECTION_DROPPED - CELL_CONNECTION_DROPPED = _mscl.RTKDeviceStatusFlags_v1_CELL_CONNECTION_DROPPED - MODEM_ERROR = _mscl.RTKDeviceStatusFlags_v1_MODEM_ERROR - POWER_ON = _mscl.RTKDeviceStatusFlags_v1_POWER_ON - UNKNOWN = _mscl.RTKDeviceStatusFlags_v1_UNKNOWN - SOFT_RESET = _mscl.RTKDeviceStatusFlags_v1_SOFT_RESET - HARDWARE_ERROR_RESET = _mscl.RTKDeviceStatusFlags_v1_HARDWARE_ERROR_RESET - - def __init__(self, *args): - _mscl.RTKDeviceStatusFlags_v1_swiginit(self, _mscl.new_RTKDeviceStatusFlags_v1(*args)) - - def version(self): - return _mscl.RTKDeviceStatusFlags_v1_version(self) - - def controllerState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerState(self, *args) - - def platformState(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformState(self, *args) - - def controllerStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_controllerStatusCode(self, *args) - - def platformStatusCode(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_platformStatusCode(self, *args) - - def resetReason(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_resetReason(self, *args) - - def signalQuality(self, *args): - return _mscl.RTKDeviceStatusFlags_v1_signalQuality(self, *args) - __swig_destroy__ = _mscl.delete_RTKDeviceStatusFlags_v1 - -# Register RTKDeviceStatusFlags_v1 in _mscl: -_mscl.RTKDeviceStatusFlags_v1_swigregister(RTKDeviceStatusFlags_v1) - -class GnssSignalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - L1CA = _mscl.GnssSignalConfiguration_L1CA - L2C = _mscl.GnssSignalConfiguration_L2C - L1OF = _mscl.GnssSignalConfiguration_L1OF - L2OF = _mscl.GnssSignalConfiguration_L2OF - E1 = _mscl.GnssSignalConfiguration_E1 - E5B = _mscl.GnssSignalConfiguration_E5B - B1 = _mscl.GnssSignalConfiguration_B1 - B2 = _mscl.GnssSignalConfiguration_B2 - - def __init__(self): - _mscl.GnssSignalConfiguration_swiginit(self, _mscl.new_GnssSignalConfiguration()) - - def enableGpsSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGpsSignal(self, signal, enable) - - def gpsSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_gpsSignalEnabled(self, signal) - - def gpsSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_gpsSignalValue(self, *args) - - def enableGlonassSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGlonassSignal(self, signal, enable) - - def glonassSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_glonassSignalEnabled(self, signal) - - def glonassSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_glonassSignalValue(self, *args) - - def enableGalileoSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableGalileoSignal(self, signal, enable) - - def galileoSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_galileoSignalEnabled(self, signal) - - def galileoSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_galileoSignalValue(self, *args) - - def enableBeiDouSignal(self, signal, enable=True): - return _mscl.GnssSignalConfiguration_enableBeiDouSignal(self, signal, enable) - - def beidouSignalEnabled(self, signal): - return _mscl.GnssSignalConfiguration_beidouSignalEnabled(self, signal) - - def beidouSignalValue(self, *args): - return _mscl.GnssSignalConfiguration_beidouSignalValue(self, *args) - __swig_destroy__ = _mscl.delete_GnssSignalConfiguration - -# Register GnssSignalConfiguration in _mscl: -_mscl.GnssSignalConfiguration_swigregister(GnssSignalConfiguration) - -class GnssSpartnConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - KEY_SIZE = _mscl.GnssSpartnConfiguration_KEY_SIZE - NONE = _mscl.GnssSpartnConfiguration_NONE - NETWORK = _mscl.GnssSpartnConfiguration_NETWORK - LBAND = _mscl.GnssSpartnConfiguration_LBAND - - def __init__(self): - _mscl.GnssSpartnConfiguration_swiginit(self, _mscl.new_GnssSpartnConfiguration()) - - def enable(self, enable): - return _mscl.GnssSpartnConfiguration_enable(self, enable) - - def enabled(self): - return _mscl.GnssSpartnConfiguration_enabled(self) - - def type(self, *args): - return _mscl.GnssSpartnConfiguration_type(self, *args) - - def currentKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyTow(self, *args) - - def currentKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_currentKeyWeek(self, *args) - - def currentKey(self, *args): - return _mscl.GnssSpartnConfiguration_currentKey(self, *args) - - def nextKeyTow(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyTow(self, *args) - - def nextKeyWeek(self, *args): - return _mscl.GnssSpartnConfiguration_nextKeyWeek(self, *args) - - def nextKey(self, *args): - return _mscl.GnssSpartnConfiguration_nextKey(self, *args) - __swig_destroy__ = _mscl.delete_GnssSpartnConfiguration - -# Register GnssSpartnConfiguration in _mscl: -_mscl.GnssSpartnConfiguration_swigregister(GnssSpartnConfiguration) - -class PositionReferenceConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - autoConfig = property(_mscl.PositionReferenceConfiguration_autoConfig_get, _mscl.PositionReferenceConfiguration_autoConfig_set) - position = property(_mscl.PositionReferenceConfiguration_position_get, _mscl.PositionReferenceConfiguration_position_set) - - def __init__(self): - _mscl.PositionReferenceConfiguration_swiginit(self, _mscl.new_PositionReferenceConfiguration()) - __swig_destroy__ = _mscl.delete_PositionReferenceConfiguration - -# Register PositionReferenceConfiguration in _mscl: -_mscl.PositionReferenceConfiguration_swigregister(PositionReferenceConfiguration) - -class AntennaLeverArmCalConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - enabled = property(_mscl.AntennaLeverArmCalConfiguration_enabled_get, _mscl.AntennaLeverArmCalConfiguration_enabled_set) - maxOffsetError = property(_mscl.AntennaLeverArmCalConfiguration_maxOffsetError_get, _mscl.AntennaLeverArmCalConfiguration_maxOffsetError_set) - - def __init__(self): - _mscl.AntennaLeverArmCalConfiguration_swiginit(self, _mscl.new_AntennaLeverArmCalConfiguration()) - __swig_destroy__ = _mscl.delete_AntennaLeverArmCalConfiguration - -# Register AntennaLeverArmCalConfiguration in _mscl: -_mscl.AntennaLeverArmCalConfiguration_swigregister(AntennaLeverArmCalConfiguration) - -class OdometerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.OdometerConfiguration_DISABLED - SINGLE = _mscl.OdometerConfiguration_SINGLE - QUADRATURE = _mscl.OdometerConfiguration_QUADRATURE - - def __init__(self): - _mscl.OdometerConfiguration_swiginit(self, _mscl.new_OdometerConfiguration()) - - def mode(self, *args): - return _mscl.OdometerConfiguration_mode(self, *args) - - def uncertainty(self, *args): - return _mscl.OdometerConfiguration_uncertainty(self, *args) - - def scaling(self, *args): - return _mscl.OdometerConfiguration_scaling(self, *args) - __swig_destroy__ = _mscl.delete_OdometerConfiguration - -# Register OdometerConfiguration in _mscl: -_mscl.OdometerConfiguration_swigregister(OdometerConfiguration) - -class GpioConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - UNUSED_FEATURE = _mscl.GpioConfiguration_UNUSED_FEATURE - GPIO_FEATURE = _mscl.GpioConfiguration_GPIO_FEATURE - PPS_FEATURE = _mscl.GpioConfiguration_PPS_FEATURE - ENCODER_FEATURE = _mscl.GpioConfiguration_ENCODER_FEATURE - EVENT_TIMESTAMP_FEATURE = _mscl.GpioConfiguration_EVENT_TIMESTAMP_FEATURE - UART_FEATURE = _mscl.GpioConfiguration_UART_FEATURE - GPIO_UNUSED = _mscl.GpioConfiguration_GPIO_UNUSED - GPIO_INPUT = _mscl.GpioConfiguration_GPIO_INPUT - GPIO_OUTPUT_LOW = _mscl.GpioConfiguration_GPIO_OUTPUT_LOW - GPIO_OUTPUT_HIGH = _mscl.GpioConfiguration_GPIO_OUTPUT_HIGH - PPS_UNUSED = _mscl.GpioConfiguration_PPS_UNUSED - PPS_INPUT = _mscl.GpioConfiguration_PPS_INPUT - PPS_OUTPUT = _mscl.GpioConfiguration_PPS_OUTPUT - ENCODER_UNUSED = _mscl.GpioConfiguration_ENCODER_UNUSED - ENCODER_A = _mscl.GpioConfiguration_ENCODER_A - ENCODER_B = _mscl.GpioConfiguration_ENCODER_B - TIMESTAMP_UNUSED = _mscl.GpioConfiguration_TIMESTAMP_UNUSED - TIMESTAMP_RISING = _mscl.GpioConfiguration_TIMESTAMP_RISING - TIMESTAMP_FALLING = _mscl.GpioConfiguration_TIMESTAMP_FALLING - TIMESTAMP_EITHER = _mscl.GpioConfiguration_TIMESTAMP_EITHER - UART_UNUSED = _mscl.GpioConfiguration_UART_UNUSED - UART_PORT2_TX = _mscl.GpioConfiguration_UART_PORT2_TX - UART_PORT2_RX = _mscl.GpioConfiguration_UART_PORT2_RX - UART_PORT3_TX = _mscl.GpioConfiguration_UART_PORT3_TX - UART_PORT3_RX = _mscl.GpioConfiguration_UART_PORT3_RX - NONE = _mscl.GpioConfiguration_NONE - OPEN_DRAIN = _mscl.GpioConfiguration_OPEN_DRAIN - PULLDOWN = _mscl.GpioConfiguration_PULLDOWN - PULLUP = _mscl.GpioConfiguration_PULLUP - pinMode = property(_mscl.GpioConfiguration_pinMode_get, _mscl.GpioConfiguration_pinMode_set) - pin = property(_mscl.GpioConfiguration_pin_get, _mscl.GpioConfiguration_pin_set) - feature = property(_mscl.GpioConfiguration_feature_get, _mscl.GpioConfiguration_feature_set) - behavior = property(_mscl.GpioConfiguration_behavior_get, _mscl.GpioConfiguration_behavior_set) - - def pinModeValue(self, *args): - return _mscl.GpioConfiguration_pinModeValue(self, *args) - - def __init__(self): - _mscl.GpioConfiguration_swiginit(self, _mscl.new_GpioConfiguration()) - __swig_destroy__ = _mscl.delete_GpioConfiguration - -# Register GpioConfiguration in _mscl: -_mscl.GpioConfiguration_swigregister(GpioConfiguration) - -DISABLED = _mscl.DISABLED -ENABLED = _mscl.ENABLED -TEST = _mscl.TEST -TEST_PULSE = _mscl.TEST_PULSE -class EventTriggerGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventTriggerGpioParameter_DISABLED - WHILE_HIGH = _mscl.EventTriggerGpioParameter_WHILE_HIGH - WHILE_LOW = _mscl.EventTriggerGpioParameter_WHILE_LOW - EDGE = _mscl.EventTriggerGpioParameter_EDGE - pin = property(_mscl.EventTriggerGpioParameter_pin_get, _mscl.EventTriggerGpioParameter_pin_set) - mode = property(_mscl.EventTriggerGpioParameter_mode_get, _mscl.EventTriggerGpioParameter_mode_set) - - def __init__(self): - _mscl.EventTriggerGpioParameter_swiginit(self, _mscl.new_EventTriggerGpioParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerGpioParameter - -# Register EventTriggerGpioParameter in _mscl: -_mscl.EventTriggerGpioParameter_swigregister(EventTriggerGpioParameter) - -class EventTriggerThresholdParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - WINDOW_TYPE = _mscl.EventTriggerThresholdParameter_WINDOW_TYPE - INTERVAL_TYPE = _mscl.EventTriggerThresholdParameter_INTERVAL_TYPE - type = property(_mscl.EventTriggerThresholdParameter_type_get, _mscl.EventTriggerThresholdParameter_type_set) - lowThreshold = property(_mscl.EventTriggerThresholdParameter_lowThreshold_get, _mscl.EventTriggerThresholdParameter_lowThreshold_set) - highThreshold = property(_mscl.EventTriggerThresholdParameter_highThreshold_get, _mscl.EventTriggerThresholdParameter_highThreshold_set) - - def channel(self, *args): - return _mscl.EventTriggerThresholdParameter_channel(self, *args) - - def channelField(self): - return _mscl.EventTriggerThresholdParameter_channelField(self) - - def channelQualifier(self): - return _mscl.EventTriggerThresholdParameter_channelQualifier(self) - - def channelIndex(self): - return _mscl.EventTriggerThresholdParameter_channelIndex(self) - - def __init__(self): - _mscl.EventTriggerThresholdParameter_swiginit(self, _mscl.new_EventTriggerThresholdParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerThresholdParameter - -# Register EventTriggerThresholdParameter in _mscl: -_mscl.EventTriggerThresholdParameter_swigregister(EventTriggerThresholdParameter) - -class EventTriggerCombinationParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_INPUT_TRIGGERS = _mscl.EventTriggerCombinationParameter_MAX_INPUT_TRIGGERS - LOGIC_NEVER = _mscl.EventTriggerCombinationParameter_LOGIC_NEVER - LOGIC_ALWAYS = _mscl.EventTriggerCombinationParameter_LOGIC_ALWAYS - LOGIC_NONE = _mscl.EventTriggerCombinationParameter_LOGIC_NONE - LOGIC_OR = _mscl.EventTriggerCombinationParameter_LOGIC_OR - LOGIC_NAND = _mscl.EventTriggerCombinationParameter_LOGIC_NAND - LOGIC_XOR_ONE = _mscl.EventTriggerCombinationParameter_LOGIC_XOR_ONE - LOGIC_ONLY_A = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_A - LOGIC_ONLY_B = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_B - LOGIC_ONLY_C = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_C - LOGIC_ONLY_D = _mscl.EventTriggerCombinationParameter_LOGIC_ONLY_D - LOGIC_AND_AB = _mscl.EventTriggerCombinationParameter_LOGIC_AND_AB - LOGIC_AB_OR_C = _mscl.EventTriggerCombinationParameter_LOGIC_AB_OR_C - LOGIC_AND = _mscl.EventTriggerCombinationParameter_LOGIC_AND - logicTable = property(_mscl.EventTriggerCombinationParameter_logicTable_get, _mscl.EventTriggerCombinationParameter_logicTable_set) - inputTriggers = property(_mscl.EventTriggerCombinationParameter_inputTriggers_get, _mscl.EventTriggerCombinationParameter_inputTriggers_set) - - def __init__(self): - _mscl.EventTriggerCombinationParameter_swiginit(self, _mscl.new_EventTriggerCombinationParameter()) - __swig_destroy__ = _mscl.delete_EventTriggerCombinationParameter - -# Register EventTriggerCombinationParameter in _mscl: -_mscl.EventTriggerCombinationParameter_swigregister(EventTriggerCombinationParameter) - -class EventTriggerParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventTriggerParameters_swiginit(self, _mscl.new_EventTriggerParameters()) - gpio = property(_mscl.EventTriggerParameters_gpio_get, _mscl.EventTriggerParameters_gpio_set) - threshold = property(_mscl.EventTriggerParameters_threshold_get, _mscl.EventTriggerParameters_threshold_set) - combination = property(_mscl.EventTriggerParameters_combination_get, _mscl.EventTriggerParameters_combination_set) - __swig_destroy__ = _mscl.delete_EventTriggerParameters - -# Register EventTriggerParameters in _mscl: -_mscl.EventTriggerParameters_swigregister(EventTriggerParameters) - -class EventTriggerConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventTriggerConfiguration_NONE - GPIO_TRIGGER = _mscl.EventTriggerConfiguration_GPIO_TRIGGER - THRESHOLD_TRIGGER = _mscl.EventTriggerConfiguration_THRESHOLD_TRIGGER - COMBINATION_TRIGGER = _mscl.EventTriggerConfiguration_COMBINATION_TRIGGER - instance = property(_mscl.EventTriggerConfiguration_instance_get, _mscl.EventTriggerConfiguration_instance_set) - trigger = property(_mscl.EventTriggerConfiguration_trigger_get, _mscl.EventTriggerConfiguration_trigger_set) - parameters = property(_mscl.EventTriggerConfiguration_parameters_get, _mscl.EventTriggerConfiguration_parameters_set) - - def __init__(self): - _mscl.EventTriggerConfiguration_swiginit(self, _mscl.new_EventTriggerConfiguration()) - __swig_destroy__ = _mscl.delete_EventTriggerConfiguration - -# Register EventTriggerConfiguration in _mscl: -_mscl.EventTriggerConfiguration_swigregister(EventTriggerConfiguration) - -class EventActionGpioParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - DISABLED = _mscl.EventActionGpioParameter_DISABLED - ACTIVE_HIGH = _mscl.EventActionGpioParameter_ACTIVE_HIGH - ACTIVE_LOW = _mscl.EventActionGpioParameter_ACTIVE_LOW - ONESHOT_HIGH = _mscl.EventActionGpioParameter_ONESHOT_HIGH - ONESHOT_LOW = _mscl.EventActionGpioParameter_ONESHOT_LOW - TOGGLE = _mscl.EventActionGpioParameter_TOGGLE - pin = property(_mscl.EventActionGpioParameter_pin_get, _mscl.EventActionGpioParameter_pin_set) - mode = property(_mscl.EventActionGpioParameter_mode_get, _mscl.EventActionGpioParameter_mode_set) - - def __init__(self): - _mscl.EventActionGpioParameter_swiginit(self, _mscl.new_EventActionGpioParameter()) - __swig_destroy__ = _mscl.delete_EventActionGpioParameter - -# Register EventActionGpioParameter in _mscl: -_mscl.EventActionGpioParameter_swigregister(EventActionGpioParameter) - -class EventActionMessageParameter(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MAX_DESCRIPTORS = _mscl.EventActionMessageParameter_MAX_DESCRIPTORS - sampleRate = property(_mscl.EventActionMessageParameter_sampleRate_get, _mscl.EventActionMessageParameter_sampleRate_set) - - def dataClass(self): - return _mscl.EventActionMessageParameter_dataClass(self) - - def setChannelFields(self, dataClass, fields): - return _mscl.EventActionMessageParameter_setChannelFields(self, dataClass, fields) - - def getChannelFields(self): - return _mscl.EventActionMessageParameter_getChannelFields(self) - - def __init__(self): - _mscl.EventActionMessageParameter_swiginit(self, _mscl.new_EventActionMessageParameter()) - __swig_destroy__ = _mscl.delete_EventActionMessageParameter - -# Register EventActionMessageParameter in _mscl: -_mscl.EventActionMessageParameter_swigregister(EventActionMessageParameter) - -class EventActionParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.EventActionParameters_swiginit(self, _mscl.new_EventActionParameters()) - gpio = property(_mscl.EventActionParameters_gpio_get, _mscl.EventActionParameters_gpio_set) - message = property(_mscl.EventActionParameters_message_get, _mscl.EventActionParameters_message_set) - __swig_destroy__ = _mscl.delete_EventActionParameters - -# Register EventActionParameters in _mscl: -_mscl.EventActionParameters_swigregister(EventActionParameters) - -class EventActionConfiguration(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - NONE = _mscl.EventActionConfiguration_NONE - GPIO = _mscl.EventActionConfiguration_GPIO - MESSAGE = _mscl.EventActionConfiguration_MESSAGE - instance = property(_mscl.EventActionConfiguration_instance_get, _mscl.EventActionConfiguration_instance_set) - trigger = property(_mscl.EventActionConfiguration_trigger_get, _mscl.EventActionConfiguration_trigger_set) - type = property(_mscl.EventActionConfiguration_type_get, _mscl.EventActionConfiguration_type_set) - parameters = property(_mscl.EventActionConfiguration_parameters_get, _mscl.EventActionConfiguration_parameters_set) - - def __init__(self): - _mscl.EventActionConfiguration_swiginit(self, _mscl.new_EventActionConfiguration()) - __swig_destroy__ = _mscl.delete_EventActionConfiguration - -# Register EventActionConfiguration in _mscl: -_mscl.EventActionConfiguration_swigregister(EventActionConfiguration) - -class EventTriggerInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventTriggerInfo_swiginit(self, _mscl.new_EventTriggerInfo(*args)) - ACTIVE = _mscl.EventTriggerInfo_ACTIVE - ENABLED = _mscl.EventTriggerInfo_ENABLED - TEST = _mscl.EventTriggerInfo_TEST - type = property(_mscl.EventTriggerInfo_type_get, _mscl.EventTriggerInfo_type_set) - instanceId = property(_mscl.EventTriggerInfo_instanceId_get, _mscl.EventTriggerInfo_instanceId_set) - - def isActive(self): - return _mscl.EventTriggerInfo_isActive(self) - - def isEnabled(self): - return _mscl.EventTriggerInfo_isEnabled(self) - - def isTestMode(self): - return _mscl.EventTriggerInfo_isTestMode(self) - - def setStatus(self, value): - return _mscl.EventTriggerInfo_setStatus(self, value) - __swig_destroy__ = _mscl.delete_EventTriggerInfo - -# Register EventTriggerInfo in _mscl: -_mscl.EventTriggerInfo_swigregister(EventTriggerInfo) - -class EventActionInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.EventActionInfo_swiginit(self, _mscl.new_EventActionInfo(*args)) - type = property(_mscl.EventActionInfo_type_get, _mscl.EventActionInfo_type_set) - triggerId = property(_mscl.EventActionInfo_triggerId_get, _mscl.EventActionInfo_triggerId_set) - instanceId = property(_mscl.EventActionInfo_instanceId_get, _mscl.EventActionInfo_instanceId_set) - __swig_destroy__ = _mscl.delete_EventActionInfo - -# Register EventActionInfo in _mscl: -_mscl.EventActionInfo_swigregister(EventActionInfo) - -class MeasurementReferenceFrame(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MeasurementReferenceFrame_swiginit(self, _mscl.new_MeasurementReferenceFrame(*args)) - - def asMipFieldValues(self): - return _mscl.MeasurementReferenceFrame_asMipFieldValues(self) - - def appendMipFieldValues(self, appendTo): - return _mscl.MeasurementReferenceFrame_appendMipFieldValues(self, appendTo) - - def translation(self, *args): - return _mscl.MeasurementReferenceFrame_translation(self, *args) - - def rotation(self, *args): - return _mscl.MeasurementReferenceFrame_rotation(self, *args) - - def errorTrackingEnabled(self): - return _mscl.MeasurementReferenceFrame_errorTrackingEnabled(self) - - def enableErrorTracking(self, enable=True): - return _mscl.MeasurementReferenceFrame_enableErrorTracking(self, enable) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrame - -# Register MeasurementReferenceFrame in _mscl: -_mscl.MeasurementReferenceFrame_swigregister(MeasurementReferenceFrame) - -class MipChannel(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipChannel_swiginit(self, _mscl.new_MipChannel(*args)) - - def channelField(self): - return _mscl.MipChannel_channelField(self) - - def sampleRate(self): - return _mscl.MipChannel_sampleRate(self) - - def rateDecimation(self, sampleRateBase): - return _mscl.MipChannel_rateDecimation(self, sampleRateBase) - __swig_destroy__ = _mscl.delete_MipChannel - -# Register MipChannel in _mscl: -_mscl.MipChannel_swigregister(MipChannel) - -class MipPacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - MIP_ACK_NACK_ERROR_NONE = _mscl.MipPacket_MIP_ACK_NACK_ERROR_NONE - MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_COMMAND - MIP_ACK_NACK_ERROR_CHECKSUM_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_CHECKSUM_INVALID - MIP_ACK_NACK_ERROR_PARAMETER_INVALID = _mscl.MipPacket_MIP_ACK_NACK_ERROR_PARAMETER_INVALID - MIP_ACK_NACK_ERROR_COMMAND_FAILED = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_FAILED - MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT = _mscl.MipPacket_MIP_ACK_NACK_ERROR_COMMAND_TIMEOUT - MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET = _mscl.MipPacket_MIP_ACK_NACK_ERROR_UNKNOWN_DESCRIPTOR_SET - - def __init__(self): - _mscl.MipPacket_swiginit(self, _mscl.new_MipPacket()) - - @staticmethod - def isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - - def descriptorSet(self): - return _mscl.MipPacket_descriptorSet(self) - - def payload(self): - return _mscl.MipPacket_payload(self) - __swig_destroy__ = _mscl.delete_MipPacket - -# Register MipPacket in _mscl: -_mscl.MipPacket_swigregister(MipPacket) - -def MipPacket_isDataPacket(descriptorSet): - return _mscl.MipPacket_isDataPacket(descriptorSet) - -class MipDataPoint(DataPoint): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def field(self): - return _mscl.MipDataPoint_field(self) - - def qualifier(self): - return _mscl.MipDataPoint_qualifier(self) - - def hasAddlIdentifiers(self): - return _mscl.MipDataPoint_hasAddlIdentifiers(self) - - def addlIdentifiers(self): - return _mscl.MipDataPoint_addlIdentifiers(self) - - def hasValidFlag(self): - return _mscl.MipDataPoint_hasValidFlag(self) - - def valid(self): - return _mscl.MipDataPoint_valid(self) - - def channelName(self, includeAddlIds=True, consolidatedFormat=False): - return _mscl.MipDataPoint_channelName(self, includeAddlIds, consolidatedFormat) - __swig_destroy__ = _mscl.delete_MipDataPoint - -# Register MipDataPoint in _mscl: -_mscl.MipDataPoint_swigregister(MipDataPoint) - -class ContinuousBIT(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def as_MipDataPoints(self): - return _mscl.ContinuousBIT_as_MipDataPoints(self) - - @staticmethod - def getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - - def data(self): - return _mscl.ContinuousBIT_data(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_bufferOverrun(self) - - def imuClockFault(self): - return _mscl.ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_pressureSelfTestFail(self) - - def filterTimingOverrun(self): - return _mscl.ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.ContinuousBIT_filterTimingUnderrun(self) - -# Register ContinuousBIT in _mscl: -_mscl.ContinuousBIT_swigregister(ContinuousBIT) - -def ContinuousBIT_getMipDataPoints(model, data): - return _mscl.ContinuousBIT_getMipDataPoints(model, data) - -class ContinuousBIT_System_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - SYSTEM_CLOCK_FAILURE = _mscl.ContinuousBIT_System_General_SYSTEM_CLOCK_FAILURE - POWER_FAULT = _mscl.ContinuousBIT_System_General_POWER_FAULT - FIRMWARE_FAULT = _mscl.ContinuousBIT_System_General_FIRMWARE_FAULT - TIMING_OVERLOAD = _mscl.ContinuousBIT_System_General_TIMING_OVERLOAD - BUFFER_OVERRUN = _mscl.ContinuousBIT_System_General_BUFFER_OVERRUN - - def flags(self): - return _mscl.ContinuousBIT_System_General_flags(self) - - def systemClockFailure(self): - return _mscl.ContinuousBIT_System_General_systemClockFailure(self) - - def powerFault(self): - return _mscl.ContinuousBIT_System_General_powerFault(self) - - def firmwareFault(self): - return _mscl.ContinuousBIT_System_General_firmwareFault(self) - - def timingOverload(self): - return _mscl.ContinuousBIT_System_General_timingOverload(self) - - def bufferOverrun(self): - return _mscl.ContinuousBIT_System_General_bufferOverrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_General - -# Register ContinuousBIT_System_General in _mscl: -_mscl.ContinuousBIT_System_General_swigregister(ContinuousBIT_System_General) - -class ContinuousBIT_System_Process(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - - def flags(self): - return _mscl.ContinuousBIT_System_Process_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System_Process - -# Register ContinuousBIT_System_Process in _mscl: -_mscl.ContinuousBIT_System_Process_swigregister(ContinuousBIT_System_Process) - -class ContinuousBIT_System(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_System_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_System_GENERAL_FLAGS - PROCESS_FLAGS = _mscl.ContinuousBIT_System_PROCESS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_System_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_System - -# Register ContinuousBIT_System in _mscl: -_mscl.ContinuousBIT_System_swigregister(ContinuousBIT_System) - -class ContinuousBIT_IMU_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - CLOCK_FAULT = _mscl.ContinuousBIT_IMU_General_CLOCK_FAULT - COMMUNICATION_FAULT = _mscl.ContinuousBIT_IMU_General_COMMUNICATION_FAULT - TIMING_OVERRUN = _mscl.ContinuousBIT_IMU_General_TIMING_OVERRUN - CALIBRATION_ERROR_ACCEL = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_ACCEL - CALIBRATION_ERROR_GYRO = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_GYRO - CALIBRATION_ERROR_MAG = _mscl.ContinuousBIT_IMU_General_CALIBRATION_ERROR_MAG - - def flags(self): - return _mscl.ContinuousBIT_IMU_General_flags(self) - - def clockFault(self): - return _mscl.ContinuousBIT_IMU_General_clockFault(self) - - def communicationFault(self): - return _mscl.ContinuousBIT_IMU_General_communicationFault(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_IMU_General_timingOverrun(self) - - def calibrationErrorAccel(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorAccel(self) - - def calibrationErrorGyro(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorGyro(self) - - def calibrationErrorMag(self): - return _mscl.ContinuousBIT_IMU_General_calibrationErrorMag(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_General - -# Register ContinuousBIT_IMU_General in _mscl: -_mscl.ContinuousBIT_IMU_General_swigregister(ContinuousBIT_IMU_General) - -class ContinuousBIT_IMU_Sensors(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - ACCEL_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_GENERAL_FAULT - ACCEL_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_OVERRANGE - ACCEL_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_ACCEL_SELF_TEST_FAIL - GYRO_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_GYRO_GENERAL_FAULT - GYRO_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_GYRO_OVERRANGE - GYRO_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_GYRO_SELF_TEST_FAIL - MAG_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_MAG_GENERAL_FAULT - MAG_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_MAG_OVERRANGE - MAG_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_MAG_SELF_TEST_FAIL - PRESSURE_GENERAL_FAULT = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_GENERAL_FAULT - PRESSURE_OVERRANGE = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_OVERRANGE - PRESSURE_SELF_TEST_FAIL = _mscl.ContinuousBIT_IMU_Sensors_PRESSURE_SELF_TEST_FAIL - - def flags(self): - return _mscl.ContinuousBIT_IMU_Sensors_flags(self) - - def accelGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_magGeneralFault(self) - - def magOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.ContinuousBIT_IMU_Sensors_pressureSelfTestFail(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU_Sensors - -# Register ContinuousBIT_IMU_Sensors in _mscl: -_mscl.ContinuousBIT_IMU_Sensors_swigregister(ContinuousBIT_IMU_Sensors) - -class ContinuousBIT_IMU(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_IMU_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_IMU_GENERAL_FLAGS - SENSORS_FLAGS = _mscl.ContinuousBIT_IMU_SENSORS_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_IMU_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_IMU - -# Register ContinuousBIT_IMU in _mscl: -_mscl.ContinuousBIT_IMU_swigregister(ContinuousBIT_IMU) - -class ContinuousBIT_Filter_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - TIMING_OVERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_OVERRUN - TIMING_UNDERRUN = _mscl.ContinuousBIT_Filter_General_TIMING_UNDERRUN - - def flags(self): - return _mscl.ContinuousBIT_Filter_General_flags(self) - - def timingOverrun(self): - return _mscl.ContinuousBIT_Filter_General_timingOverrun(self) - - def timingUnderrun(self): - return _mscl.ContinuousBIT_Filter_General_timingUnderrun(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter_General - -# Register ContinuousBIT_Filter_General in _mscl: -_mscl.ContinuousBIT_Filter_General_swigregister(ContinuousBIT_Filter_General) - -class ContinuousBIT_Filter(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - RESPONSE_OFFSET = _mscl.ContinuousBIT_Filter_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.ContinuousBIT_Filter_GENERAL_FLAGS - - def flags(self): - return _mscl.ContinuousBIT_Filter_flags(self) - __swig_destroy__ = _mscl.delete_ContinuousBIT_Filter - -# Register ContinuousBIT_Filter in _mscl: -_mscl.ContinuousBIT_Filter_swigregister(ContinuousBIT_Filter) - -class CV7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_General_swiginit(self, _mscl.new_CV7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_General - -# Register CV7ContinuousBIT_System_General in _mscl: -_mscl.CV7ContinuousBIT_System_General_swigregister(CV7ContinuousBIT_System_General) - -class CV7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_Process_swiginit(self, _mscl.new_CV7ContinuousBIT_System_Process(*args)) - IMU_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_IMU_PROCESS_FAULT - IMU_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_IMU_RATE_MISMATCH - IMU_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_IMU_DROPPED_DATA - IMU_STUCK = _mscl.CV7ContinuousBIT_System_Process_IMU_STUCK - FILTER_PROCESS_FAULT = _mscl.CV7ContinuousBIT_System_Process_FILTER_PROCESS_FAULT - FILTER_DROPPED_DATA = _mscl.CV7ContinuousBIT_System_Process_FILTER_DROPPED_DATA - FILTER_RATE_MISMATCH = _mscl.CV7ContinuousBIT_System_Process_FILTER_RATE_MISMATCH - FILTER_STUCK = _mscl.CV7ContinuousBIT_System_Process_FILTER_STUCK - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_System_Process_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_System_Process_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_System_Process_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_System_Process_filterStuck(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System_Process - -# Register CV7ContinuousBIT_System_Process in _mscl: -_mscl.CV7ContinuousBIT_System_Process_swigregister(CV7ContinuousBIT_System_Process) - -class CV7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_System_swiginit(self, _mscl.new_CV7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.CV7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_System - -# Register CV7ContinuousBIT_System in _mscl: -_mscl.CV7ContinuousBIT_System_swigregister(CV7ContinuousBIT_System) - -class CV7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_General - -# Register CV7ContinuousBIT_IMU_General in _mscl: -_mscl.CV7ContinuousBIT_IMU_General_swigregister(CV7ContinuousBIT_IMU_General) - -class CV7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU_Sensors - -# Register CV7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.CV7ContinuousBIT_IMU_Sensors_swigregister(CV7ContinuousBIT_IMU_Sensors) - -class CV7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_IMU_swiginit(self, _mscl.new_CV7ContinuousBIT_IMU(*args)) - FACTORY_BITS_INVALID = _mscl.CV7ContinuousBIT_IMU_FACTORY_BITS_INVALID - - def general(self): - return _mscl.CV7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.CV7ContinuousBIT_IMU_sensors(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_IMU_factoryBitsInvalid(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_IMU - -# Register CV7ContinuousBIT_IMU in _mscl: -_mscl.CV7ContinuousBIT_IMU_swigregister(CV7ContinuousBIT_IMU) - -class CV7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter_General(*args)) - FAULT = _mscl.CV7ContinuousBIT_Filter_General_FAULT - - def fault(self): - return _mscl.CV7ContinuousBIT_Filter_General_fault(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter_General - -# Register CV7ContinuousBIT_Filter_General in _mscl: -_mscl.CV7ContinuousBIT_Filter_General_swigregister(CV7ContinuousBIT_Filter_General) - -class CV7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.CV7ContinuousBIT_Filter_swiginit(self, _mscl.new_CV7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.CV7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT_Filter - -# Register CV7ContinuousBIT_Filter in _mscl: -_mscl.CV7ContinuousBIT_Filter_swigregister(CV7ContinuousBIT_Filter) - -class CV7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.CV7ContinuousBIT_swiginit(self, _mscl.new_CV7ContinuousBIT(bytes)) - - def system(self): - return _mscl.CV7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.CV7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.CV7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.CV7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.CV7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.CV7ContinuousBIT_bufferOverrun(self) - - def imuProcessFault(self): - return _mscl.CV7ContinuousBIT_imuProcessFault(self) - - def imuRateMismatch(self): - return _mscl.CV7ContinuousBIT_imuRateMismatch(self) - - def imuDroppedData(self): - return _mscl.CV7ContinuousBIT_imuDroppedData(self) - - def imuStuck(self): - return _mscl.CV7ContinuousBIT_imuStuck(self) - - def filterProcessFault(self): - return _mscl.CV7ContinuousBIT_filterProcessFault(self) - - def filterDroppedData(self): - return _mscl.CV7ContinuousBIT_filterDroppedData(self) - - def filterRateMismatch(self): - return _mscl.CV7ContinuousBIT_filterRateMismatch(self) - - def filterStuck(self): - return _mscl.CV7ContinuousBIT_filterStuck(self) - - def imu(self): - return _mscl.CV7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.CV7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.CV7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.CV7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.CV7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.CV7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.CV7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.CV7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.CV7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.CV7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.CV7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.CV7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.CV7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.CV7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.CV7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.CV7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.CV7ContinuousBIT_pressureSelfTestFail(self) - - def factoryBitsInvalid(self): - return _mscl.CV7ContinuousBIT_factoryBitsInvalid(self) - - def filter(self): - return _mscl.CV7ContinuousBIT_filter(self) - - def filterFault(self): - return _mscl.CV7ContinuousBIT_filterFault(self) - - def filterTimingOverrun(self): - return _mscl.CV7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.CV7ContinuousBIT_filterTimingUnderrun(self) - - def as_MipDataPoints(self): - return _mscl.CV7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_CV7ContinuousBIT - -# Register CV7ContinuousBIT in _mscl: -_mscl.CV7ContinuousBIT_swigregister(CV7ContinuousBIT) - -class GQ7ContinuousBIT_System_General(ContinuousBIT_System_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_General - -# Register GQ7ContinuousBIT_System_General in _mscl: -_mscl.GQ7ContinuousBIT_System_General_swigregister(GQ7ContinuousBIT_System_General) - -class GQ7ContinuousBIT_System_Process(ContinuousBIT_System_Process): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_Process_swiginit(self, _mscl.new_GQ7ContinuousBIT_System_Process(*args)) - IMU_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_CONTROL_LINE_FAULT - IMU_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_COMMAND_RESPONSE_FAULT - IMU_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_SPI_TRANSFER_FAULT - IMU_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_IMU_DATA_FRAME_FAULT - FILTER_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_CONTROL_LINE_FAULT - FILTER_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_COMMAND_RESPONSE_FAULT - FILTER_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_SPI_TRANSFER_FAULT - FILTER_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_FILTER_DATA_FRAME_FAULT - GNSS_CONTROL_LINE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_CONTROL_LINE_FAULT - GNSS_COMMAND_RESPONSE_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_COMMAND_RESPONSE_FAULT - GNSS_SPI_TRANSFER_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_SPI_TRANSFER_FAULT - GNSS_DATA_FRAME_FAULT = _mscl.GQ7ContinuousBIT_System_Process_GNSS_DATA_FRAME_FAULT - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_System_Process_gnssDataFrameFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System_Process - -# Register GQ7ContinuousBIT_System_Process in _mscl: -_mscl.GQ7ContinuousBIT_System_Process_swigregister(GQ7ContinuousBIT_System_Process) - -class GQ7ContinuousBIT_System(ContinuousBIT_System): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_System_swiginit(self, _mscl.new_GQ7ContinuousBIT_System(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_System_general(self) - - def process(self): - return _mscl.GQ7ContinuousBIT_System_process(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_System - -# Register GQ7ContinuousBIT_System in _mscl: -_mscl.GQ7ContinuousBIT_System_swigregister(GQ7ContinuousBIT_System) - -class GQ7ContinuousBIT_IMU_General(ContinuousBIT_IMU_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_General(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_General - -# Register GQ7ContinuousBIT_IMU_General in _mscl: -_mscl.GQ7ContinuousBIT_IMU_General_swigregister(GQ7ContinuousBIT_IMU_General) - -class GQ7ContinuousBIT_IMU_Sensors(ContinuousBIT_IMU_Sensors): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_Sensors_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU_Sensors(*args)) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU_Sensors - -# Register GQ7ContinuousBIT_IMU_Sensors in _mscl: -_mscl.GQ7ContinuousBIT_IMU_Sensors_swigregister(GQ7ContinuousBIT_IMU_Sensors) - -class GQ7ContinuousBIT_IMU(ContinuousBIT_IMU): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_IMU_swiginit(self, _mscl.new_GQ7ContinuousBIT_IMU(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_IMU_general(self) - - def sensors(self): - return _mscl.GQ7ContinuousBIT_IMU_sensors(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_IMU - -# Register GQ7ContinuousBIT_IMU in _mscl: -_mscl.GQ7ContinuousBIT_IMU_swigregister(GQ7ContinuousBIT_IMU) - -class GQ7ContinuousBIT_Filter_General(ContinuousBIT_Filter_General): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_Filter_General_HARDWARE_FAULT - COMMUNICATION_ERROR_IMU_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_IMU_SPI - COMMUNICATION_ERROR_GNSS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_GNSS_SPI - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_COMMS_UART = _mscl.GQ7ContinuousBIT_Filter_General_COMMUNICATION_ERROR_COMMS_UART - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_Filter_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationError(self) - - def communicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorImuSpi(self) - - def communicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorGnssSpi(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsSpi(self) - - def communicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_Filter_General_communicationErrorCommsUart(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter_General - -# Register GQ7ContinuousBIT_Filter_General in _mscl: -_mscl.GQ7ContinuousBIT_Filter_General_swigregister(GQ7ContinuousBIT_Filter_General) - -class GQ7ContinuousBIT_Filter(ContinuousBIT_Filter): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_Filter_swiginit(self, _mscl.new_GQ7ContinuousBIT_Filter(*args)) - - def general(self): - return _mscl.GQ7ContinuousBIT_Filter_general(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_Filter - -# Register GQ7ContinuousBIT_Filter in _mscl: -_mscl.GQ7ContinuousBIT_Filter_swigregister(GQ7ContinuousBIT_Filter) - -class GQ7ContinuousBIT_GNSS_General(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_General_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_General(*args)) - CLOCK_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_CLOCK_FAULT - HARDWARE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_HARDWARE_FAULT - COMMUNICATION_ERROR_COMMS_SERIAL = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SERIAL - COMMUNICATION_ERROR_COMMS_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_COMMS_SPI - COMMUNICATION_ERROR_NAV_SPI = _mscl.GQ7ContinuousBIT_GNSS_General_COMMUNICATION_ERROR_NAV_SPI - GPS_TIME_FAULT = _mscl.GQ7ContinuousBIT_GNSS_General_GPS_TIME_FAULT - TIMING_OVERRUN = _mscl.GQ7ContinuousBIT_GNSS_General_TIMING_OVERRUN - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_flags(self) - - def clockFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_clockFault(self) - - def hardwareFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_hardwareFault(self) - - def communicationError(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationError(self) - - def communicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSerial(self) - - def communicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorCommsSpi(self) - - def communicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_communicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_gpsTimeFault(self) - - def timingOverrun(self): - return _mscl.GQ7ContinuousBIT_GNSS_General_timingOverrun(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_General - -# Register GQ7ContinuousBIT_GNSS_General in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_General_swigregister(GQ7ContinuousBIT_GNSS_General) - -class GQ7ContinuousBIT_GNSS_Receivers(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_Receivers_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS_Receivers(*args)) - POWER_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_1 - FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_1 - SHORTED_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_1 - OPEN_ANTENNA_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_1 - SOLUTION_FAULT_RECEIVER_1 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_1 - POWER_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_POWER_FAULT_RECEIVER_2 - FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_FAULT_RECEIVER_2 - SHORTED_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SHORTED_ANTENNA_2 - OPEN_ANTENNA_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_OPEN_ANTENNA_2 - SOLUTION_FAULT_RECEIVER_2 = _mscl.GQ7ContinuousBIT_GNSS_Receivers_SOLUTION_FAULT_RECEIVER_2 - RTCM_COMMUNICATION_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTCM_COMMUNICATION_FAULT - RTK_DONGLE_FAULT = _mscl.GQ7ContinuousBIT_GNSS_Receivers_RTK_DONGLE_FAULT - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_flags(self) - - def powerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver1(self) - - def faultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver1(self) - - def shortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna1(self) - - def openAntenna1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna1(self) - - def solutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver1(self) - - def powerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_powerFaultReceiver2(self) - - def faultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_faultReceiver2(self) - - def shortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_shortedAntenna2(self) - - def openAntenna2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_openAntenna2(self) - - def solutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_solutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_GNSS_Receivers_rtkDongleFault(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS_Receivers - -# Register GQ7ContinuousBIT_GNSS_Receivers in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_Receivers_swigregister(GQ7ContinuousBIT_GNSS_Receivers) - -class GQ7ContinuousBIT_GNSS(Bitfield): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.GQ7ContinuousBIT_GNSS_swiginit(self, _mscl.new_GQ7ContinuousBIT_GNSS(*args)) - RESPONSE_OFFSET = _mscl.GQ7ContinuousBIT_GNSS_RESPONSE_OFFSET - GENERAL_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_GENERAL_FLAGS - RECEIVERS_FLAGS = _mscl.GQ7ContinuousBIT_GNSS_RECEIVERS_FLAGS - - def flags(self): - return _mscl.GQ7ContinuousBIT_GNSS_flags(self) - - def general(self): - return _mscl.GQ7ContinuousBIT_GNSS_general(self) - - def receivers(self): - return _mscl.GQ7ContinuousBIT_GNSS_receivers(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT_GNSS - -# Register GQ7ContinuousBIT_GNSS in _mscl: -_mscl.GQ7ContinuousBIT_GNSS_swigregister(GQ7ContinuousBIT_GNSS) - -class GQ7ContinuousBIT(ContinuousBIT): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, bytes): - _mscl.GQ7ContinuousBIT_swiginit(self, _mscl.new_GQ7ContinuousBIT(bytes)) - - def system(self): - return _mscl.GQ7ContinuousBIT_system(self) - - def systemClockFailure(self): - return _mscl.GQ7ContinuousBIT_systemClockFailure(self) - - def powerFault(self): - return _mscl.GQ7ContinuousBIT_powerFault(self) - - def firmwareFault(self): - return _mscl.GQ7ContinuousBIT_firmwareFault(self) - - def timingOverload(self): - return _mscl.GQ7ContinuousBIT_timingOverload(self) - - def bufferOverrun(self): - return _mscl.GQ7ContinuousBIT_bufferOverrun(self) - - def imuIpcFault(self): - return _mscl.GQ7ContinuousBIT_imuIpcFault(self) - - def imuControlLineFault(self): - return _mscl.GQ7ContinuousBIT_imuControlLineFault(self) - - def imuCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_imuCommandResponseFault(self) - - def imuSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_imuSpiTransferFault(self) - - def imuDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_imuDataFrameFault(self) - - def filterIpcFault(self): - return _mscl.GQ7ContinuousBIT_filterIpcFault(self) - - def filterControlLineFault(self): - return _mscl.GQ7ContinuousBIT_filterControlLineFault(self) - - def filterCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_filterCommandResponseFault(self) - - def filterSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_filterSpiTransferFault(self) - - def filterDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_filterDataFrameFault(self) - - def gnssIpcFault(self): - return _mscl.GQ7ContinuousBIT_gnssIpcFault(self) - - def gnssControlLineFault(self): - return _mscl.GQ7ContinuousBIT_gnssControlLineFault(self) - - def gnssCommandResponseFault(self): - return _mscl.GQ7ContinuousBIT_gnssCommandResponseFault(self) - - def gnssSpiTransferFault(self): - return _mscl.GQ7ContinuousBIT_gnssSpiTransferFault(self) - - def gnssDataFrameFault(self): - return _mscl.GQ7ContinuousBIT_gnssDataFrameFault(self) - - def imu(self): - return _mscl.GQ7ContinuousBIT_imu(self) - - def imuClockFault(self): - return _mscl.GQ7ContinuousBIT_imuClockFault(self) - - def imuCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_imuCommunicationFault(self) - - def imuTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_imuTimingOverrun(self) - - def imuCalibrationErrorAccel(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorAccel(self) - - def imuCalibrationErrorGyro(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorGyro(self) - - def imuCalibrationErrorMag(self): - return _mscl.GQ7ContinuousBIT_imuCalibrationErrorMag(self) - - def accelGeneralFault(self): - return _mscl.GQ7ContinuousBIT_accelGeneralFault(self) - - def accelOverrange(self): - return _mscl.GQ7ContinuousBIT_accelOverrange(self) - - def accelSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_accelSelfTestFail(self) - - def gyroGeneralFault(self): - return _mscl.GQ7ContinuousBIT_gyroGeneralFault(self) - - def gyroOverrange(self): - return _mscl.GQ7ContinuousBIT_gyroOverrange(self) - - def gyroSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_gyroSelfTestFail(self) - - def magGeneralFault(self): - return _mscl.GQ7ContinuousBIT_magGeneralFault(self) - - def magOverrange(self): - return _mscl.GQ7ContinuousBIT_magOverrange(self) - - def magSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_magSelfTestFail(self) - - def pressureGeneralFault(self): - return _mscl.GQ7ContinuousBIT_pressureGeneralFault(self) - - def pressureOverrange(self): - return _mscl.GQ7ContinuousBIT_pressureOverrange(self) - - def pressureSelfTestFail(self): - return _mscl.GQ7ContinuousBIT_pressureSelfTestFail(self) - - def filter(self): - return _mscl.GQ7ContinuousBIT_filter(self) - - def filterClockFault(self): - return _mscl.GQ7ContinuousBIT_filterClockFault(self) - - def filterHardwareFault(self): - return _mscl.GQ7ContinuousBIT_filterHardwareFault(self) - - def filterTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingOverrun(self) - - def filterTimingUnderrun(self): - return _mscl.GQ7ContinuousBIT_filterTimingUnderrun(self) - - def filterCommunicationError(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationError(self) - - def filterCommunicationErrorImuSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorImuSpi(self) - - def filterCommunicationErrorGnssSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorGnssSpi(self) - - def filterCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsSpi(self) - - def filterCommunicationErrorCommsUart(self): - return _mscl.GQ7ContinuousBIT_filterCommunicationErrorCommsUart(self) - - def gnss(self): - return _mscl.GQ7ContinuousBIT_gnss(self) - - def gnssClockFault(self): - return _mscl.GQ7ContinuousBIT_gnssClockFault(self) - - def gnssHardwareFault(self): - return _mscl.GQ7ContinuousBIT_gnssHardwareFault(self) - - def gnssCommunicationError(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationError(self) - - def gnssCommunicationErrorCommsSerial(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSerial(self) - - def gnssCommunicationErrorCommsSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorCommsSpi(self) - - def gnssCommunicationErrorNavSpi(self): - return _mscl.GQ7ContinuousBIT_gnssCommunicationErrorNavSpi(self) - - def gpsTimeFault(self): - return _mscl.GQ7ContinuousBIT_gpsTimeFault(self) - - def gnssTimingOverrun(self): - return _mscl.GQ7ContinuousBIT_gnssTimingOverrun(self) - - def gnssPowerFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver1(self) - - def gnssFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver1(self) - - def gnssShortedAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna1(self) - - def gnssOpenAntenna1(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna1(self) - - def gnssSolutionFaultReceiver1(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver1(self) - - def gnssPowerFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssPowerFaultReceiver2(self) - - def gnssFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssFaultReceiver2(self) - - def gnssShortedAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssShortedAntenna2(self) - - def gnssOpenAntenna2(self): - return _mscl.GQ7ContinuousBIT_gnssOpenAntenna2(self) - - def gnssSolutionFaultReceiver2(self): - return _mscl.GQ7ContinuousBIT_gnssSolutionFaultReceiver2(self) - - def rtcmCommunicationFault(self): - return _mscl.GQ7ContinuousBIT_rtcmCommunicationFault(self) - - def rtkDongleFault(self): - return _mscl.GQ7ContinuousBIT_rtkDongleFault(self) - - def as_MipDataPoints(self): - return _mscl.GQ7ContinuousBIT_as_MipDataPoints(self) - __swig_destroy__ = _mscl.delete_GQ7ContinuousBIT - -# Register GQ7ContinuousBIT in _mscl: -_mscl.GQ7ContinuousBIT_swigregister(GQ7ContinuousBIT) - -class MipSharedDataFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - EVENT_SOURCE_NONE = _mscl.MipSharedDataFields_EVENT_SOURCE_NONE - EVENT_SOURCE_UNKNOWN = _mscl.MipSharedDataFields_EVENT_SOURCE_UNKNOWN - - def __init__(self): - _mscl.MipSharedDataFields_swiginit(self, _mscl.new_MipSharedDataFields()) - - def hasEventSource(self): - return _mscl.MipSharedDataFields_hasEventSource(self) - - def eventSource(self): - return _mscl.MipSharedDataFields_eventSource(self) - - def hasTicks(self): - return _mscl.MipSharedDataFields_hasTicks(self) - - def ticks(self): - return _mscl.MipSharedDataFields_ticks(self) - - def hasDeltaTicks(self): - return _mscl.MipSharedDataFields_hasDeltaTicks(self) - - def deltaTicks(self): - return _mscl.MipSharedDataFields_deltaTicks(self) - - def hasGpsTimestamp(self): - return _mscl.MipSharedDataFields_hasGpsTimestamp(self) - - def gpsTimestamp(self): - return _mscl.MipSharedDataFields_gpsTimestamp(self) - - def gpsTimestampValid(self): - return _mscl.MipSharedDataFields_gpsTimestampValid(self) - - def hasDeltaTime(self): - return _mscl.MipSharedDataFields_hasDeltaTime(self) - - def deltaTime(self): - return _mscl.MipSharedDataFields_deltaTime(self) - - def hasReferenceTime(self): - return _mscl.MipSharedDataFields_hasReferenceTime(self) - - def referenceTime(self): - return _mscl.MipSharedDataFields_referenceTime(self) - - def hasDeltaReferenceTime(self): - return _mscl.MipSharedDataFields_hasDeltaReferenceTime(self) - - def deltaReferenceTime(self): - return _mscl.MipSharedDataFields_deltaReferenceTime(self) - - def hasExternalTimestamp(self): - return _mscl.MipSharedDataFields_hasExternalTimestamp(self) - - def externalTimestamp(self): - return _mscl.MipSharedDataFields_externalTimestamp(self) - - def externalTimestampValid(self): - return _mscl.MipSharedDataFields_externalTimestampValid(self) - - def hasDeltaExternalTime(self): - return _mscl.MipSharedDataFields_hasDeltaExternalTime(self) - - def deltaExternalTime(self): - return _mscl.MipSharedDataFields_deltaExternalTime(self) - - def deltaExternalTimeValid(self): - return _mscl.MipSharedDataFields_deltaExternalTimeValid(self) - - def get(self, *args): - return _mscl.MipSharedDataFields_get(self, *args) - __swig_destroy__ = _mscl.delete_MipSharedDataFields - -# Register MipSharedDataFields in _mscl: -_mscl.MipSharedDataFields_swigregister(MipSharedDataFields) - -class MipDataPacket(MipPacket): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipDataPacket_swiginit(self, _mscl.new_MipDataPacket(*args)) - - def data(self): - return _mscl.MipDataPacket_data(self) - - def shared(self): - return _mscl.MipDataPacket_shared(self) - - def collectedTimestamp(self): - return _mscl.MipDataPacket_collectedTimestamp(self) - - def deviceTimestamp(self): - return _mscl.MipDataPacket_deviceTimestamp(self) - - def hasDeviceTime(self): - return _mscl.MipDataPacket_hasDeviceTime(self) - - def deviceTimeValid(self): - return _mscl.MipDataPacket_deviceTimeValid(self) - - def deviceTimeFlags(self): - return _mscl.MipDataPacket_deviceTimeFlags(self) - __swig_destroy__ = _mscl.delete_MipDataPacket - -# Register MipDataPacket in _mscl: -_mscl.MipDataPacket_swigregister(MipDataPacket) - -class RawBytePacket(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - INVALID_PACKET = _mscl.RawBytePacket_INVALID_PACKET - DATA_PACKET = _mscl.RawBytePacket_DATA_PACKET - COMMAND_PACKET = _mscl.RawBytePacket_COMMAND_PACKET - NO_PACKET_FOUND = _mscl.RawBytePacket_NO_PACKET_FOUND - FROM_READ = _mscl.RawBytePacket_FROM_READ - FROM_SEND = _mscl.RawBytePacket_FROM_SEND - - def __init__(self): - _mscl.RawBytePacket_swiginit(self, _mscl.new_RawBytePacket()) - - def type(self, *args): - return _mscl.RawBytePacket_type(self, *args) - - def source(self, *args): - return _mscl.RawBytePacket_source(self, *args) - - def payload(self, *args): - return _mscl.RawBytePacket_payload(self, *args) - __swig_destroy__ = _mscl.delete_RawBytePacket - -# Register RawBytePacket in _mscl: -_mscl.RawBytePacket_swigregister(RawBytePacket) - -class MipNodeFeatures(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _mscl.delete_MipNodeFeatures - - @staticmethod - def isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - - def supportsCategory(self, dataClass): - return _mscl.MipNodeFeatures_supportsCategory(self, dataClass) - - def supportsCommand(self, commandId): - return _mscl.MipNodeFeatures_supportsCommand(self, commandId) - - def supportedCommands(self): - return _mscl.MipNodeFeatures_supportedCommands(self) - - def supportsChannelField(self, fieldId): - return _mscl.MipNodeFeatures_supportsChannelField(self, fieldId) - - def filterSupportedChannelFields(self, fields): - return _mscl.MipNodeFeatures_filterSupportedChannelFields(self, fields) - - def supportedChannelFields(self, *args): - return _mscl.MipNodeFeatures_supportedChannelFields(self, *args) - - def supportedSampleRates(self, dataClass): - return _mscl.MipNodeFeatures_supportedSampleRates(self, dataClass) - - def baseDataRate(self, dataClass): - return _mscl.MipNodeFeatures_baseDataRate(self, dataClass) - - def gnssReceiverInfo(self): - return _mscl.MipNodeFeatures_gnssReceiverInfo(self) - - def supportedGnssSources(self): - return _mscl.MipNodeFeatures_supportedGnssSources(self) - - def supportedSensorRanges(self, *args): - return _mscl.MipNodeFeatures_supportedSensorRanges(self, *args) - - def getCommPortInfo(self): - return _mscl.MipNodeFeatures_getCommPortInfo(self) - - def useLegacyIdsForEnableDataStream(self): - return _mscl.MipNodeFeatures_useLegacyIdsForEnableDataStream(self) - - def supportedHeadingUpdateOptions(self): - return _mscl.MipNodeFeatures_supportedHeadingUpdateOptions(self) - - def supportedHeadingAlignmentMethods(self): - return _mscl.MipNodeFeatures_supportedHeadingAlignmentMethods(self) - - def supportedStatusSelectors(self): - return _mscl.MipNodeFeatures_supportedStatusSelectors(self) - - def supportedEstimationControlOptions(self): - return _mscl.MipNodeFeatures_supportedEstimationControlOptions(self) - - def supportedVehicleModeTypes(self): - return _mscl.MipNodeFeatures_supportedVehicleModeTypes(self) - - def supportedAdaptiveMeasurementModes(self): - return _mscl.MipNodeFeatures_supportedAdaptiveMeasurementModes(self) - - def supportedAdaptiveFilterLevels(self): - return _mscl.MipNodeFeatures_supportedAdaptiveFilterLevels(self) - - def supportedAidingMeasurementOptions(self): - return _mscl.MipNodeFeatures_supportedAidingMeasurementOptions(self) - - def supportedPpsSourceOptions(self): - return _mscl.MipNodeFeatures_supportedPpsSourceOptions(self) - - def supportedGpioPins(self): - return _mscl.MipNodeFeatures_supportedGpioPins(self) - - def supportedGpioPinModes(self, feature, behavior): - return _mscl.MipNodeFeatures_supportedGpioPinModes(self, feature, behavior) - - def supportedGpioBehaviors(self, feature, pin): - return _mscl.MipNodeFeatures_supportedGpioBehaviors(self, feature, pin) - - def supportedGpioFeatures(self, pin): - return _mscl.MipNodeFeatures_supportedGpioFeatures(self, pin) - - def supportedGpioConfigurations(self): - return _mscl.MipNodeFeatures_supportedGpioConfigurations(self) - - def supportedGnssSignalConfigurations(self): - return _mscl.MipNodeFeatures_supportedGnssSignalConfigurations(self) - - def supportedDeclinationSources(self): - return _mscl.MipNodeFeatures_supportedDeclinationSources(self) - - def supportedInclinationSources(self): - return _mscl.MipNodeFeatures_supportedInclinationSources(self) - - def supportedMagneticMagnitudeSources(self): - return _mscl.MipNodeFeatures_supportedMagneticMagnitudeSources(self) - - def supportedEventThresholdChannels(self): - return _mscl.MipNodeFeatures_supportedEventThresholdChannels(self) - - def supportedEventActionInfo(self): - return _mscl.MipNodeFeatures_supportedEventActionInfo(self) - - def supportedEventTriggerInfo(self): - return _mscl.MipNodeFeatures_supportedEventTriggerInfo(self) - - def supportsNorthCompensation(self): - return _mscl.MipNodeFeatures_supportsNorthCompensation(self) - - def supportedLowPassFilterChannelFields(self): - return _mscl.MipNodeFeatures_supportedLowPassFilterChannelFields(self) - - def maxMeasurementReferenceFrameId(self): - return _mscl.MipNodeFeatures_maxMeasurementReferenceFrameId(self) - -# Register MipNodeFeatures in _mscl: -_mscl.MipNodeFeatures_swigregister(MipNodeFeatures) - -def MipNodeFeatures_isChannelField(descriptor): - return _mscl.MipNodeFeatures_isChannelField(descriptor) - -class MipNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - - def __init__(self, *args, **kwargs): - raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.MipNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - def getConfigCommandBytes(self): - return _mscl.MipNode_getConfigCommandBytes(self) - - def sendCommandBytes(self, *args): - return _mscl.MipNode_sendCommandBytes(self, *args) - - @staticmethod - def deviceName(serial): - return _mscl.MipNode_deviceName(serial) - - def connection(self): - return _mscl.MipNode_connection(self) - - def features(self): - return _mscl.MipNode_features(self) - - def clearDeviceInfo(self): - return _mscl.MipNode_clearDeviceInfo(self) - - def lastCommunicationTime(self): - return _mscl.MipNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.MipNode_lastDeviceState(self) - - def setLastDeviceState(self, state): - return _mscl.MipNode_setLastDeviceState(self, state) - - def firmwareVersion(self): - return _mscl.MipNode_firmwareVersion(self) - - def model(self): - return _mscl.MipNode_model(self) - - def modelName(self): - return _mscl.MipNode_modelName(self) - - def modelNumber(self): - return _mscl.MipNode_modelNumber(self) - - def serialNumber(self): - return _mscl.MipNode_serialNumber(self) - - def lotNumber(self): - return _mscl.MipNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.MipNode_deviceOptions(self) - - def timeout(self, *args): - return _mscl.MipNode_timeout(self, *args) - - def name(self): - return _mscl.MipNode_name(self) - - def ping(self): - return _mscl.MipNode_ping(self) - - def setToIdle(self): - return _mscl.MipNode_setToIdle(self) - - def cyclePower(self): - return _mscl.MipNode_cyclePower(self) - - def resume(self): - return _mscl.MipNode_resume(self) - - def getCommunicationMode(self): - return _mscl.MipNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.MipNode_setCommunicationMode(self, communicationMode) - - def saveSettingsAsStartup(self, *args): - return _mscl.MipNode_saveSettingsAsStartup(self, *args) - - def loadStartupSettings(self, *args): - return _mscl.MipNode_loadStartupSettings(self, *args) - - def loadFactoryDefaultSettings(self, *args): - return _mscl.MipNode_loadFactoryDefaultSettings(self, *args) - - def setUARTBaudRate(self, *args): - return _mscl.MipNode_setUARTBaudRate(self, *args) - - def getUARTBaudRate(self, portId=1): - return _mscl.MipNode_getUARTBaudRate(self, portId) - - def getRawBytePackets(self, timeout=0, maxPackets=0): - return _mscl.MipNode_getRawBytePackets(self, timeout, maxPackets) - -# Register MipNode in _mscl: -_mscl.MipNode_swigregister(MipNode) - -def MipNode_deviceName(serial): - return _mscl.MipNode_deviceName(serial) - -class InertialNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.InertialNode_swiginit(self, _mscl.new_InertialNode(connection)) - __swig_destroy__ = _mscl.delete_InertialNode - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.InertialNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.InertialNode_totalPackets(self) - - def pollData(self, *args): - return _mscl.InertialNode_pollData(self, *args) - - def getDataRateBase(self, dataClass): - return _mscl.InertialNode_getDataRateBase(self, dataClass) - - def getActiveChannelFields(self, dataClass): - return _mscl.InertialNode_getActiveChannelFields(self, dataClass) - - def setActiveChannelFields(self, dataClass, channels): - return _mscl.InertialNode_setActiveChannelFields(self, dataClass, channels) - - def saveActiveChannelFields(self, dataClass): - return _mscl.InertialNode_saveActiveChannelFields(self, dataClass) - - def setFactoryStreamingChannels(self, option): - return _mscl.InertialNode_setFactoryStreamingChannels(self, option) - - def getInterfaceControl(self, interfaceId): - return _mscl.InertialNode_getInterfaceControl(self, interfaceId) - - def setInterfaceControl(self, *args): - return _mscl.InertialNode_setInterfaceControl(self, *args) - - def getCommunicationMode(self): - return _mscl.InertialNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.InertialNode_setCommunicationMode(self, communicationMode) - - def isDataStreamEnabled(self, dataClass): - return _mscl.InertialNode_isDataStreamEnabled(self, dataClass) - - def enableDataStream(self, dataClass, enable=True, resumeStreaming=True): - return _mscl.InertialNode_enableDataStream(self, dataClass, enable, resumeStreaming) - - def resetFilter(self): - return _mscl.InertialNode_resetFilter(self) - - def runFilter(self): - return _mscl.InertialNode_runFilter(self) - - def getAutoInitialization(self): - return _mscl.InertialNode_getAutoInitialization(self) - - def setAutoInitialization(self, enable): - return _mscl.InertialNode_setAutoInitialization(self, enable) - - def getAltitudeAid(self): - return _mscl.InertialNode_getAltitudeAid(self) - - def setAltitudeAid(self, enable): - return _mscl.InertialNode_setAltitudeAid(self, enable) - - def getPitchRollAid(self): - return _mscl.InertialNode_getPitchRollAid(self) - - def setPitchRollAid(self, enable): - return _mscl.InertialNode_setPitchRollAid(self, enable) - - def enableVerticalGyroConstraint(self, enable): - return _mscl.InertialNode_enableVerticalGyroConstraint(self, enable) - - def verticalGyroConstraintEnabled(self): - return _mscl.InertialNode_verticalGyroConstraintEnabled(self) - - def enableWheeledVehicleConstraint(self, enable): - return _mscl.InertialNode_enableWheeledVehicleConstraint(self, enable) - - def wheeledVehicleConstraintEnabled(self): - return _mscl.InertialNode_wheeledVehicleConstraintEnabled(self) - - def setVelocityZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setVelocityZUPT(self, ZUPTSettings) - - def getVelocityZUPT(self): - return _mscl.InertialNode_getVelocityZUPT(self) - - def setAngularRateZUPT(self, ZUPTSettings): - return _mscl.InertialNode_setAngularRateZUPT(self, ZUPTSettings) - - def getAngularRateZUPT(self): - return _mscl.InertialNode_getAngularRateZUPT(self) - - def cmdedVelZUPT(self): - return _mscl.InertialNode_cmdedVelZUPT(self) - - def cmdedAngRateZUPT(self): - return _mscl.InertialNode_cmdedAngRateZUPT(self) - - def setInitialAttitude(self, attitude): - return _mscl.InertialNode_setInitialAttitude(self, attitude) - - def setInitialHeading(self, heading): - return _mscl.InertialNode_setInitialHeading(self, heading) - - def getInitialFilterConfiguration(self): - return _mscl.InertialNode_getInitialFilterConfiguration(self) - - def setInitialFilterConfiguration(self, filterConfig): - return _mscl.InertialNode_setInitialFilterConfiguration(self, filterConfig) - - def getSensorToVehicleRotation_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleRotation_eulerAngles(self) - - def setSensorToVehicleRotation_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleRotation_eulerAngles(self, angles) - - def getSensorToVehicleRotation_matrix(self): - return _mscl.InertialNode_getSensorToVehicleRotation_matrix(self) - - def setSensorToVehicleRotation_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleRotation_matrix(self, dcm) - - def getSensorToVehicleRotation_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleRotation_quaternion(self) - - def setSensorToVehicleRotation_quaternion(self, rotation): - return _mscl.InertialNode_setSensorToVehicleRotation_quaternion(self, rotation) - - def getSensorToVehicleTransform_eulerAngles(self): - return _mscl.InertialNode_getSensorToVehicleTransform_eulerAngles(self) - - def setSensorToVehicleTransform_eulerAngles(self, angles): - return _mscl.InertialNode_setSensorToVehicleTransform_eulerAngles(self, angles) - - def getSensorToVehicleTransform_matrix(self): - return _mscl.InertialNode_getSensorToVehicleTransform_matrix(self) - - def setSensorToVehicleTransform_matrix(self, dcm): - return _mscl.InertialNode_setSensorToVehicleTransform_matrix(self, dcm) - - def getSensorToVehicleTransform_quaternion(self): - return _mscl.InertialNode_getSensorToVehicleTransform_quaternion(self) - - def setSensorToVehicleTransform_quaternion(self, transformation): - return _mscl.InertialNode_setSensorToVehicleTransform_quaternion(self, transformation) - - def getSensorToVehicleOffset(self): - return _mscl.InertialNode_getSensorToVehicleOffset(self) - - def setSensorToVehicleOffset(self, offset): - return _mscl.InertialNode_setSensorToVehicleOffset(self, offset) - - def getAntennaOffset(self): - return _mscl.InertialNode_getAntennaOffset(self) - - def setAntennaOffset(self, offset): - return _mscl.InertialNode_setAntennaOffset(self, offset) - - def getGNSSAssistedFixControl(self): - return _mscl.InertialNode_getGNSSAssistedFixControl(self) - - def setGNSSAssistedFixControl(self, enableAssistedFix): - return _mscl.InertialNode_setGNSSAssistedFixControl(self, enableAssistedFix) - - def getGNSSAssistTimeUpdate(self): - return _mscl.InertialNode_getGNSSAssistTimeUpdate(self) - - def setGNSSAssistTimeUpdate(self, timeUpdate): - return _mscl.InertialNode_setGNSSAssistTimeUpdate(self, timeUpdate) - - def getGPSTimeUpdate(self, timeFrame): - return _mscl.InertialNode_getGPSTimeUpdate(self, timeFrame) - - def setGPSTimeUpdate(self, arg2, timeData): - return _mscl.InertialNode_setGPSTimeUpdate(self, arg2, timeData) - - def setConstellationSettings(self, dataToUse): - return _mscl.InertialNode_setConstellationSettings(self, dataToUse) - - def getConstellationSettings(self): - return _mscl.InertialNode_getConstellationSettings(self) - - def setSBASSettings(self, dataToUse): - return _mscl.InertialNode_setSBASSettings(self, dataToUse) - - def getSBASSettings(self): - return _mscl.InertialNode_getSBASSettings(self) - - def setAccelerometerBias(self, biasVector): - return _mscl.InertialNode_setAccelerometerBias(self, biasVector) - - def getAccelerometerBias(self): - return _mscl.InertialNode_getAccelerometerBias(self) - - def setGyroBias(self, biasVector): - return _mscl.InertialNode_setGyroBias(self, biasVector) - - def getGyroBias(self): - return _mscl.InertialNode_getGyroBias(self) - - def captureGyroBias(self, samplingTime): - return _mscl.InertialNode_captureGyroBias(self, samplingTime) - - def findMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_findMagnetometerCaptureAutoCalibration(self) - - def saveMagnetometerCaptureAutoCalibration(self): - return _mscl.InertialNode_saveMagnetometerCaptureAutoCalibration(self) - - def setMagnetometerSoftIronMatrix(self, matrix): - return _mscl.InertialNode_setMagnetometerSoftIronMatrix(self, matrix) - - def getMagnetometerSoftIronMatrix(self): - return _mscl.InertialNode_getMagnetometerSoftIronMatrix(self) - - def setMagnetometerHardIronOffset(self, offsetVector): - return _mscl.InertialNode_setMagnetometerHardIronOffset(self, offsetVector) - - def getMagnetometerHardIronOffset(self): - return _mscl.InertialNode_getMagnetometerHardIronOffset(self) - - def setConingAndScullingEnable(self, enable): - return _mscl.InertialNode_setConingAndScullingEnable(self, enable) - - def getConingAndScullingEnable(self): - return _mscl.InertialNode_getConingAndScullingEnable(self) - - def setLowPassFilterSettings(self, data): - return _mscl.InertialNode_setLowPassFilterSettings(self, data) - - def getLowPassFilterSettings(self, dataDescriptors): - return _mscl.InertialNode_getLowPassFilterSettings(self, dataDescriptors) - - def setComplementaryFilterSettings(self, data): - return _mscl.InertialNode_setComplementaryFilterSettings(self, data) - - def getComplementaryFilterSettings(self): - return _mscl.InertialNode_getComplementaryFilterSettings(self) - - def getBasicDeviceStatus(self): - return _mscl.InertialNode_getBasicDeviceStatus(self) - - def getDiagnosticDeviceStatus(self): - return _mscl.InertialNode_getDiagnosticDeviceStatus(self) - - def sendRawRTCM_2_3Message(self, theMessage): - return _mscl.InertialNode_sendRawRTCM_2_3Message(self, theMessage) - - def setVehicleDynamicsMode(self, mode): - return _mscl.InertialNode_setVehicleDynamicsMode(self, mode) - - def getVehicleDynamicsMode(self): - return _mscl.InertialNode_getVehicleDynamicsMode(self) - - def setEstimationControlFlags(self, flags): - return _mscl.InertialNode_setEstimationControlFlags(self, flags) - - def getEstimationControlFlags(self): - return _mscl.InertialNode_getEstimationControlFlags(self) - - def setInclinationSource(self, options): - return _mscl.InertialNode_setInclinationSource(self, options) - - def getInclinationSource(self): - return _mscl.InertialNode_getInclinationSource(self) - - def setDeclinationSource(self, options): - return _mscl.InertialNode_setDeclinationSource(self, options) - - def getDeclinationSource(self): - return _mscl.InertialNode_getDeclinationSource(self) - - def setMagneticFieldMagnitudeSource(self, options): - return _mscl.InertialNode_setMagneticFieldMagnitudeSource(self, options) - - def getMagneticFieldMagnitudeSource(self): - return _mscl.InertialNode_getMagneticFieldMagnitudeSource(self) - - def setGNSS_SourceControl(self, gnssSource): - return _mscl.InertialNode_setGNSS_SourceControl(self, gnssSource) - - def getGNSS_SourceControl(self): - return _mscl.InertialNode_getGNSS_SourceControl(self) - - def sendExternalGNSSUpdate(self, gnssUpdateData): - return _mscl.InertialNode_sendExternalGNSSUpdate(self, gnssUpdateData) - - def setHeadingUpdateControl(self, headingUpdateOptions): - return _mscl.InertialNode_setHeadingUpdateControl(self, headingUpdateOptions) - - def tareOrientation(self, axisValue): - return _mscl.InertialNode_tareOrientation(self, axisValue) - - def getHeadingUpdateControl(self): - return _mscl.InertialNode_getHeadingUpdateControl(self) - - def setGravityErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setGravityErrorAdaptiveMeasurement(self, data) - - def getGravityErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getGravityErrorAdaptiveMeasurement(self) - - def setMagnetometerErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagnetometerErrorAdaptiveMeasurement(self, data) - - def getMagnetometerErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagnetometerErrorAdaptiveMeasurement(self) - - def setMagDipAngleErrorAdaptiveMeasurement(self, data): - return _mscl.InertialNode_setMagDipAngleErrorAdaptiveMeasurement(self, data) - - def getMagDipAngleErrorAdaptiveMeasurement(self): - return _mscl.InertialNode_getMagDipAngleErrorAdaptiveMeasurement(self) - - def setMagNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setMagNoiseStandardDeviation(self, data) - - def getMagNoiseStandardDeviation(self): - return _mscl.InertialNode_getMagNoiseStandardDeviation(self) - - def setGravNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGravNoiseStandardDeviation(self, data) - - def getGravNoiseStandardDeviation(self): - return _mscl.InertialNode_getGravNoiseStandardDeviation(self) - - def setAccelNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setAccelNoiseStandardDeviation(self, data) - - def getAccelNoiseStandardDeviation(self): - return _mscl.InertialNode_getAccelNoiseStandardDeviation(self) - - def setGyroNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setGyroNoiseStandardDeviation(self, data) - - def getGyroNoiseStandardDeviation(self): - return _mscl.InertialNode_getGyroNoiseStandardDeviation(self) - - def setPressureAltNoiseStandardDeviation(self, data): - return _mscl.InertialNode_setPressureAltNoiseStandardDeviation(self, data) - - def getPressureAltNoiseStandardDeviation(self): - return _mscl.InertialNode_getPressureAltNoiseStandardDeviation(self) - - def setHardIronOffsetProcessNoise(self, data): - return _mscl.InertialNode_setHardIronOffsetProcessNoise(self, data) - - def getHardIronOffsetProcessNoise(self): - return _mscl.InertialNode_getHardIronOffsetProcessNoise(self) - - def setAccelBiasModelParams(self, data): - return _mscl.InertialNode_setAccelBiasModelParams(self, data) - - def getAccelBiasModelParams(self): - return _mscl.InertialNode_getAccelBiasModelParams(self) - - def setGyroBiasModelParams(self, data): - return _mscl.InertialNode_setGyroBiasModelParams(self, data) - - def getGyroBiasModelParams(self): - return _mscl.InertialNode_getGyroBiasModelParams(self) - - def setSoftIronMatrixProcessNoise(self, data): - return _mscl.InertialNode_setSoftIronMatrixProcessNoise(self, data) - - def getSoftIronMatrixProcessNoise(self): - return _mscl.InertialNode_getSoftIronMatrixProcessNoise(self) - - def setFixedReferencePosition(self, data): - return _mscl.InertialNode_setFixedReferencePosition(self, data) - - def getFixedReferencePosition(self): - return _mscl.InertialNode_getFixedReferencePosition(self) - - def setGPSDynamicsMode(self, data): - return _mscl.InertialNode_setGPSDynamicsMode(self, data) - - def getGPSDynamicsMode(self): - return _mscl.InertialNode_getGPSDynamicsMode(self) - - def setDevicePowerState(self, device, data): - return _mscl.InertialNode_setDevicePowerState(self, device, data) - - def getDevicePowerState(self, device): - return _mscl.InertialNode_getDevicePowerState(self, device) - - def setDeviceStreamFormat(self, device, data): - return _mscl.InertialNode_setDeviceStreamFormat(self, device, data) - - def getDeviceStreamFormat(self, device): - return _mscl.InertialNode_getDeviceStreamFormat(self, device) - - def setSignalConditioningSettings(self, data): - return _mscl.InertialNode_setSignalConditioningSettings(self, data) - - def getSignalConditioningSettings(self): - return _mscl.InertialNode_getSignalConditioningSettings(self) - - def setEnableDisableMeasurements(self, data): - return _mscl.InertialNode_setEnableDisableMeasurements(self, data) - - def getEnableDisableMeasurements(self): - return _mscl.InertialNode_getEnableDisableMeasurements(self) - - def setGravityNoiseMinimum(self, data): - return _mscl.InertialNode_setGravityNoiseMinimum(self, data) - - def getGravityNoiseMinimum(self): - return _mscl.InertialNode_getGravityNoiseMinimum(self) - - def sendExternalHeadingUpdate(self, *args): - return _mscl.InertialNode_sendExternalHeadingUpdate(self, *args) - - def aidingMeasurementEnabled(self, aidingSource): - return _mscl.InertialNode_aidingMeasurementEnabled(self, aidingSource) - - def enableDisableAidingMeasurement(self, aidingSource, enable): - return _mscl.InertialNode_enableDisableAidingMeasurement(self, aidingSource, enable) - - def getAdaptiveFilterOptions(self): - return _mscl.InertialNode_getAdaptiveFilterOptions(self) - - def setAdaptiveFilterOptions(self, options): - return _mscl.InertialNode_setAdaptiveFilterOptions(self, options) - - def getMultiAntennaOffset(self, receiverId): - return _mscl.InertialNode_getMultiAntennaOffset(self, receiverId) - - def setMultiAntennaOffset(self, receiverId, offset): - return _mscl.InertialNode_setMultiAntennaOffset(self, receiverId, offset) - - def getPpsSource(self): - return _mscl.InertialNode_getPpsSource(self) - - def setPpsSource(self, ppsSource): - return _mscl.InertialNode_setPpsSource(self, ppsSource) - - def getOdometerConfig(self): - return _mscl.InertialNode_getOdometerConfig(self) - - def setOdometerConfig(self, config): - return _mscl.InertialNode_setOdometerConfig(self, config) - - def getSensorRange(self, sensorRangeType): - return _mscl.InertialNode_getSensorRange(self, sensorRangeType) - - def setSensorRange(self, *args): - return _mscl.InertialNode_setSensorRange(self, *args) - - def getGpioConfig(self, pin): - return _mscl.InertialNode_getGpioConfig(self, pin) - - def setGpioConfig(self, config): - return _mscl.InertialNode_setGpioConfig(self, config) - - def getGpioState(self, pin): - return _mscl.InertialNode_getGpioState(self, pin) - - def setGpioState(self, pin, state): - return _mscl.InertialNode_setGpioState(self, pin, state) - - def getEventTriggerMode(self, instance): - return _mscl.InertialNode_getEventTriggerMode(self, instance) - - def setEventTriggerMode(self, instance, mode): - return _mscl.InertialNode_setEventTriggerMode(self, instance, mode) - - def getEventTriggerConfig(self, instance): - return _mscl.InertialNode_getEventTriggerConfig(self, instance) - - def setEventTriggerConfig(self, config): - return _mscl.InertialNode_setEventTriggerConfig(self, config) - - def getEventActionConfig(self, instance): - return _mscl.InertialNode_getEventActionConfig(self, instance) - - def setEventActionConfig(self, config, validateSupported=True): - return _mscl.InertialNode_setEventActionConfig(self, config, validateSupported) - - def getAntennaLeverArmCal(self): - return _mscl.InertialNode_getAntennaLeverArmCal(self) - - def setAntennaLeverArmCal(self, config): - return _mscl.InertialNode_setAntennaLeverArmCal(self, config) - - def getRelativePositionReference(self): - return _mscl.InertialNode_getRelativePositionReference(self) - - def setRelativePositionReference(self, ref): - return _mscl.InertialNode_setRelativePositionReference(self, ref) - - def getLeverArmReferenceOffset(self): - return _mscl.InertialNode_getLeverArmReferenceOffset(self) - - def setLeverArmReferenceOffset(self, offset): - return _mscl.InertialNode_setLeverArmReferenceOffset(self, offset) - - def sendExternalSpeedMeasurementUpdate(self, tow, speed, unc): - return _mscl.InertialNode_sendExternalSpeedMeasurementUpdate(self, tow, speed, unc) - - def getSpeedMeasurementOffset(self): - return _mscl.InertialNode_getSpeedMeasurementOffset(self) - - def setSpeedMeasurementOffset(self, offset): - return _mscl.InertialNode_setSpeedMeasurementOffset(self, offset) - - def getGnssSignalConfig(self): - return _mscl.InertialNode_getGnssSignalConfig(self) - - def setGnssSignalConfig(self, config): - return _mscl.InertialNode_setGnssSignalConfig(self, config) - - def getGnssSpartnConfig(self): - return _mscl.InertialNode_getGnssSpartnConfig(self) - - def setGnssSpartnConfig(self, config): - return _mscl.InertialNode_setGnssSpartnConfig(self, config) - - def rtkEnabled(self): - return _mscl.InertialNode_rtkEnabled(self) - - def enableRtk(self, enable): - return _mscl.InertialNode_enableRtk(self, enable) - - def getEventTriggerStatus(self, *args): - return _mscl.InertialNode_getEventTriggerStatus(self, *args) - - def getEventActionStatus(self, *args): - return _mscl.InertialNode_getEventActionStatus(self, *args) - - def getNmeaMessageFormat(self): - return _mscl.InertialNode_getNmeaMessageFormat(self) - - def setNmeaMessageFormat(self, nmeaFormats): - return _mscl.InertialNode_setNmeaMessageFormat(self, nmeaFormats) - - def getAidingMeasurementReferenceFrames(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrames(self, *args) - - def setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds=False): - return _mscl.InertialNode_setAidingMeasurementReferenceFrames(self, frames, clearExcludedIds) - - def getAidingMeasurementReferenceFrame(self, *args): - return _mscl.InertialNode_getAidingMeasurementReferenceFrame(self, *args) - - def setAidingMeasurementReferenceFrame(self, id, frame): - return _mscl.InertialNode_setAidingMeasurementReferenceFrame(self, id, frame) - - def setAidingMeasurementResponseMode(self, mode): - return _mscl.InertialNode_setAidingMeasurementResponseMode(self, mode) - - def getAidingMeasurementResponseMode(self): - return _mscl.InertialNode_getAidingMeasurementResponseMode(self) - - def sendAidingMeasurement(self, *args): - return _mscl.InertialNode_sendAidingMeasurement(self, *args) - - def sendAidingMeasurement_readEcho(self, *args): - return _mscl.InertialNode_sendAidingMeasurement_readEcho(self, *args) - -# Register InertialNode in _mscl: -_mscl.InertialNode_swigregister(InertialNode) - -class DisplacementNode(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.DisplacementNode_swiginit(self, _mscl.new_DisplacementNode(connection)) - __swig_destroy__ = _mscl.delete_DisplacementNode - - def doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor=0): - return _mscl.DisplacementNode_doCommand(self, descriptorSet, cmdDescriptor, fieldData, ackNackResponse, dataResponse, responseDataDescriptor) - - @staticmethod - def deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - - def connection(self): - return _mscl.DisplacementNode_connection(self) - - def features(self): - return _mscl.DisplacementNode_features(self) - - def lastCommunicationTime(self): - return _mscl.DisplacementNode_lastCommunicationTime(self) - - def lastDeviceState(self): - return _mscl.DisplacementNode_lastDeviceState(self) - - def firmwareVersion(self): - return _mscl.DisplacementNode_firmwareVersion(self) - - def model(self): - return _mscl.DisplacementNode_model(self) - - def modelName(self): - return _mscl.DisplacementNode_modelName(self) - - def modelNumber(self): - return _mscl.DisplacementNode_modelNumber(self) - - def serialNumber(self): - return _mscl.DisplacementNode_serialNumber(self) - - def lotNumber(self): - return _mscl.DisplacementNode_lotNumber(self) - - def deviceOptions(self): - return _mscl.DisplacementNode_deviceOptions(self) - - def getDataPackets(self, timeout=0, maxPackets=0): - return _mscl.DisplacementNode_getDataPackets(self, timeout, maxPackets) - - def totalPackets(self): - return _mscl.DisplacementNode_totalPackets(self) - - def timeout(self, *args): - return _mscl.DisplacementNode_timeout(self, *args) - - def name(self): - return _mscl.DisplacementNode_name(self) - - def ping(self): - return _mscl.DisplacementNode_ping(self) - - def setToIdle(self): - return _mscl.DisplacementNode_setToIdle(self) - - def cyclePower(self): - return _mscl.DisplacementNode_cyclePower(self) - - def resume(self): - return _mscl.DisplacementNode_resume(self) - - def getDisplacementOutputDataRate(self): - return _mscl.DisplacementNode_getDisplacementOutputDataRate(self) - - def getAnalogToDisplacementCal(self): - return _mscl.DisplacementNode_getAnalogToDisplacementCal(self) - - def setDeviceTime(self, *args): - return _mscl.DisplacementNode_setDeviceTime(self, *args) - -# Register DisplacementNode in _mscl: -_mscl.DisplacementNode_swigregister(DisplacementNode) - -def DisplacementNode_deviceName(serial): - return _mscl.DisplacementNode_deviceName(serial) - -class RTKNode(MipNode): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, connection): - _mscl.RTKNode_swiginit(self, _mscl.new_RTKNode(connection)) - __swig_destroy__ = _mscl.delete_RTKNode - - def getCommunicationMode(self): - return _mscl.RTKNode_getCommunicationMode(self) - - def setCommunicationMode(self, communicationMode): - return _mscl.RTKNode_setCommunicationMode(self, communicationMode) - - def getDeviceStatusFlags(self): - return _mscl.RTKNode_getDeviceStatusFlags(self) - - def getActivationCode(self): - return _mscl.RTKNode_getActivationCode(self) - - def getStatusBitfieldVersion(self): - return _mscl.RTKNode_getStatusBitfieldVersion(self) - -# Register RTKNode in _mscl: -_mscl.RTKNode_swigregister(RTKNode) - -class ChannelData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelData___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelData___bool__(self) - - def __len__(self): - return _mscl.ChannelData___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelData___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelData___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelData___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelData___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelData___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelData___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelData_pop(self) - - def append(self, x): - return _mscl.ChannelData_append(self, x) - - def empty(self): - return _mscl.ChannelData_empty(self) - - def size(self): - return _mscl.ChannelData_size(self) - - def swap(self, v): - return _mscl.ChannelData_swap(self, v) - - def begin(self): - return _mscl.ChannelData_begin(self) - - def end(self): - return _mscl.ChannelData_end(self) - - def rbegin(self): - return _mscl.ChannelData_rbegin(self) - - def rend(self): - return _mscl.ChannelData_rend(self) - - def clear(self): - return _mscl.ChannelData_clear(self) - - def get_allocator(self): - return _mscl.ChannelData_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelData_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelData_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelData_swiginit(self, _mscl.new_ChannelData(*args)) - - def push_back(self, x): - return _mscl.ChannelData_push_back(self, x) - - def front(self): - return _mscl.ChannelData_front(self) - - def back(self): - return _mscl.ChannelData_back(self) - - def assign(self, n, x): - return _mscl.ChannelData_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelData_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelData_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelData_reserve(self, n) - - def capacity(self): - return _mscl.ChannelData_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelData - -# Register ChannelData in _mscl: -_mscl.ChannelData_swigregister(ChannelData) - -class MipDataPoints(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPoints_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPoints___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPoints___bool__(self) - - def __len__(self): - return _mscl.MipDataPoints___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPoints___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPoints___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPoints___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPoints___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPoints___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPoints___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPoints_pop(self) - - def append(self, x): - return _mscl.MipDataPoints_append(self, x) - - def empty(self): - return _mscl.MipDataPoints_empty(self) - - def size(self): - return _mscl.MipDataPoints_size(self) - - def swap(self, v): - return _mscl.MipDataPoints_swap(self, v) - - def begin(self): - return _mscl.MipDataPoints_begin(self) - - def end(self): - return _mscl.MipDataPoints_end(self) - - def rbegin(self): - return _mscl.MipDataPoints_rbegin(self) - - def rend(self): - return _mscl.MipDataPoints_rend(self) - - def clear(self): - return _mscl.MipDataPoints_clear(self) - - def get_allocator(self): - return _mscl.MipDataPoints_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPoints_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPoints_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPoints_swiginit(self, _mscl.new_MipDataPoints(*args)) - - def push_back(self, x): - return _mscl.MipDataPoints_push_back(self, x) - - def front(self): - return _mscl.MipDataPoints_front(self) - - def back(self): - return _mscl.MipDataPoints_back(self) - - def assign(self, n, x): - return _mscl.MipDataPoints_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPoints_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPoints_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPoints_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPoints_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPoints - -# Register MipDataPoints in _mscl: -_mscl.MipDataPoints_swigregister(MipDataPoints) - -class Bytes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bytes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bytes___nonzero__(self) - - def __bool__(self): - return _mscl.Bytes___bool__(self) - - def __len__(self): - return _mscl.Bytes___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bytes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bytes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bytes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bytes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bytes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bytes___setitem__(self, *args) - - def pop(self): - return _mscl.Bytes_pop(self) - - def append(self, x): - return _mscl.Bytes_append(self, x) - - def empty(self): - return _mscl.Bytes_empty(self) - - def size(self): - return _mscl.Bytes_size(self) - - def swap(self, v): - return _mscl.Bytes_swap(self, v) - - def begin(self): - return _mscl.Bytes_begin(self) - - def end(self): - return _mscl.Bytes_end(self) - - def rbegin(self): - return _mscl.Bytes_rbegin(self) - - def rend(self): - return _mscl.Bytes_rend(self) - - def clear(self): - return _mscl.Bytes_clear(self) - - def get_allocator(self): - return _mscl.Bytes_get_allocator(self) - - def pop_back(self): - return _mscl.Bytes_pop_back(self) - - def erase(self, *args): - return _mscl.Bytes_erase(self, *args) - - def __init__(self, *args): - _mscl.Bytes_swiginit(self, _mscl.new_Bytes(*args)) - - def push_back(self, x): - return _mscl.Bytes_push_back(self, x) - - def front(self): - return _mscl.Bytes_front(self) - - def back(self): - return _mscl.Bytes_back(self) - - def assign(self, n, x): - return _mscl.Bytes_assign(self, n, x) - - def resize(self, *args): - return _mscl.Bytes_resize(self, *args) - - def insert(self, *args): - return _mscl.Bytes_insert(self, *args) - - def reserve(self, n): - return _mscl.Bytes_reserve(self, n) - - def capacity(self): - return _mscl.Bytes_capacity(self) - __swig_destroy__ = _mscl.delete_Bytes - -# Register Bytes in _mscl: -_mscl.Bytes_swigregister(Bytes) - -class BytesCollection(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.BytesCollection_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.BytesCollection___nonzero__(self) - - def __bool__(self): - return _mscl.BytesCollection___bool__(self) - - def __len__(self): - return _mscl.BytesCollection___len__(self) - - def __getslice__(self, i, j): - return _mscl.BytesCollection___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.BytesCollection___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.BytesCollection___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.BytesCollection___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.BytesCollection___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.BytesCollection___setitem__(self, *args) - - def pop(self): - return _mscl.BytesCollection_pop(self) - - def append(self, x): - return _mscl.BytesCollection_append(self, x) - - def empty(self): - return _mscl.BytesCollection_empty(self) - - def size(self): - return _mscl.BytesCollection_size(self) - - def swap(self, v): - return _mscl.BytesCollection_swap(self, v) - - def begin(self): - return _mscl.BytesCollection_begin(self) - - def end(self): - return _mscl.BytesCollection_end(self) - - def rbegin(self): - return _mscl.BytesCollection_rbegin(self) - - def rend(self): - return _mscl.BytesCollection_rend(self) - - def clear(self): - return _mscl.BytesCollection_clear(self) - - def get_allocator(self): - return _mscl.BytesCollection_get_allocator(self) - - def pop_back(self): - return _mscl.BytesCollection_pop_back(self) - - def erase(self, *args): - return _mscl.BytesCollection_erase(self, *args) - - def __init__(self, *args): - _mscl.BytesCollection_swiginit(self, _mscl.new_BytesCollection(*args)) - - def push_back(self, x): - return _mscl.BytesCollection_push_back(self, x) - - def front(self): - return _mscl.BytesCollection_front(self) - - def back(self): - return _mscl.BytesCollection_back(self) - - def assign(self, n, x): - return _mscl.BytesCollection_assign(self, n, x) - - def resize(self, *args): - return _mscl.BytesCollection_resize(self, *args) - - def insert(self, *args): - return _mscl.BytesCollection_insert(self, *args) - - def reserve(self, n): - return _mscl.BytesCollection_reserve(self, n) - - def capacity(self): - return _mscl.BytesCollection_capacity(self) - __swig_destroy__ = _mscl.delete_BytesCollection - -# Register BytesCollection in _mscl: -_mscl.BytesCollection_swigregister(BytesCollection) - -class DeviceList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceList___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceList___bool__(self) - - def __len__(self): - return _mscl.DeviceList___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceList___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceList___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceList_has_key(self, key) - - def keys(self): - return _mscl.DeviceList_keys(self) - - def values(self): - return _mscl.DeviceList_values(self) - - def items(self): - return _mscl.DeviceList_items(self) - - def __contains__(self, key): - return _mscl.DeviceList___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceList_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceList_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceList___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceList_asdict(self) - - def __init__(self, *args): - _mscl.DeviceList_swiginit(self, _mscl.new_DeviceList(*args)) - - def empty(self): - return _mscl.DeviceList_empty(self) - - def size(self): - return _mscl.DeviceList_size(self) - - def swap(self, v): - return _mscl.DeviceList_swap(self, v) - - def begin(self): - return _mscl.DeviceList_begin(self) - - def end(self): - return _mscl.DeviceList_end(self) - - def rbegin(self): - return _mscl.DeviceList_rbegin(self) - - def rend(self): - return _mscl.DeviceList_rend(self) - - def clear(self): - return _mscl.DeviceList_clear(self) - - def get_allocator(self): - return _mscl.DeviceList_get_allocator(self) - - def count(self, x): - return _mscl.DeviceList_count(self, x) - - def erase(self, *args): - return _mscl.DeviceList_erase(self, *args) - - def find(self, x): - return _mscl.DeviceList_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceList_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceList_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceList - -# Register DeviceList in _mscl: -_mscl.DeviceList_swigregister(DeviceList) - -class NodeDiscoveries(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NodeDiscoveries_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NodeDiscoveries___nonzero__(self) - - def __bool__(self): - return _mscl.NodeDiscoveries___bool__(self) - - def __len__(self): - return _mscl.NodeDiscoveries___len__(self) - - def __getslice__(self, i, j): - return _mscl.NodeDiscoveries___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NodeDiscoveries___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NodeDiscoveries___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NodeDiscoveries___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NodeDiscoveries___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NodeDiscoveries___setitem__(self, *args) - - def pop(self): - return _mscl.NodeDiscoveries_pop(self) - - def append(self, x): - return _mscl.NodeDiscoveries_append(self, x) - - def empty(self): - return _mscl.NodeDiscoveries_empty(self) - - def size(self): - return _mscl.NodeDiscoveries_size(self) - - def swap(self, v): - return _mscl.NodeDiscoveries_swap(self, v) - - def begin(self): - return _mscl.NodeDiscoveries_begin(self) - - def end(self): - return _mscl.NodeDiscoveries_end(self) - - def rbegin(self): - return _mscl.NodeDiscoveries_rbegin(self) - - def rend(self): - return _mscl.NodeDiscoveries_rend(self) - - def clear(self): - return _mscl.NodeDiscoveries_clear(self) - - def get_allocator(self): - return _mscl.NodeDiscoveries_get_allocator(self) - - def pop_back(self): - return _mscl.NodeDiscoveries_pop_back(self) - - def erase(self, *args): - return _mscl.NodeDiscoveries_erase(self, *args) - - def __init__(self, *args): - _mscl.NodeDiscoveries_swiginit(self, _mscl.new_NodeDiscoveries(*args)) - - def push_back(self, x): - return _mscl.NodeDiscoveries_push_back(self, x) - - def front(self): - return _mscl.NodeDiscoveries_front(self) - - def back(self): - return _mscl.NodeDiscoveries_back(self) - - def assign(self, n, x): - return _mscl.NodeDiscoveries_assign(self, n, x) - - def resize(self, *args): - return _mscl.NodeDiscoveries_resize(self, *args) - - def insert(self, *args): - return _mscl.NodeDiscoveries_insert(self, *args) - - def reserve(self, n): - return _mscl.NodeDiscoveries_reserve(self, n) - - def capacity(self): - return _mscl.NodeDiscoveries_capacity(self) - __swig_destroy__ = _mscl.delete_NodeDiscoveries - -# Register NodeDiscoveries in _mscl: -_mscl.NodeDiscoveries_swigregister(NodeDiscoveries) - -class DataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.DataSweeps___bool__(self) - - def __len__(self): - return _mscl.DataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.DataSweeps_pop(self) - - def append(self, x): - return _mscl.DataSweeps_append(self, x) - - def empty(self): - return _mscl.DataSweeps_empty(self) - - def size(self): - return _mscl.DataSweeps_size(self) - - def swap(self, v): - return _mscl.DataSweeps_swap(self, v) - - def begin(self): - return _mscl.DataSweeps_begin(self) - - def end(self): - return _mscl.DataSweeps_end(self) - - def rbegin(self): - return _mscl.DataSweeps_rbegin(self) - - def rend(self): - return _mscl.DataSweeps_rend(self) - - def clear(self): - return _mscl.DataSweeps_clear(self) - - def get_allocator(self): - return _mscl.DataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.DataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.DataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.DataSweeps_swiginit(self, _mscl.new_DataSweeps(*args)) - - def push_back(self, x): - return _mscl.DataSweeps_push_back(self, x) - - def front(self): - return _mscl.DataSweeps_front(self) - - def back(self): - return _mscl.DataSweeps_back(self) - - def assign(self, n, x): - return _mscl.DataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.DataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.DataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.DataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_DataSweeps - -# Register DataSweeps in _mscl: -_mscl.DataSweeps_swigregister(DataSweeps) - -class LoggedDataSweeps(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LoggedDataSweeps_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LoggedDataSweeps___nonzero__(self) - - def __bool__(self): - return _mscl.LoggedDataSweeps___bool__(self) - - def __len__(self): - return _mscl.LoggedDataSweeps___len__(self) - - def __getslice__(self, i, j): - return _mscl.LoggedDataSweeps___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LoggedDataSweeps___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LoggedDataSweeps___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LoggedDataSweeps___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LoggedDataSweeps___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LoggedDataSweeps___setitem__(self, *args) - - def pop(self): - return _mscl.LoggedDataSweeps_pop(self) - - def append(self, x): - return _mscl.LoggedDataSweeps_append(self, x) - - def empty(self): - return _mscl.LoggedDataSweeps_empty(self) - - def size(self): - return _mscl.LoggedDataSweeps_size(self) - - def swap(self, v): - return _mscl.LoggedDataSweeps_swap(self, v) - - def begin(self): - return _mscl.LoggedDataSweeps_begin(self) - - def end(self): - return _mscl.LoggedDataSweeps_end(self) - - def rbegin(self): - return _mscl.LoggedDataSweeps_rbegin(self) - - def rend(self): - return _mscl.LoggedDataSweeps_rend(self) - - def clear(self): - return _mscl.LoggedDataSweeps_clear(self) - - def get_allocator(self): - return _mscl.LoggedDataSweeps_get_allocator(self) - - def pop_back(self): - return _mscl.LoggedDataSweeps_pop_back(self) - - def erase(self, *args): - return _mscl.LoggedDataSweeps_erase(self, *args) - - def __init__(self, *args): - _mscl.LoggedDataSweeps_swiginit(self, _mscl.new_LoggedDataSweeps(*args)) - - def push_back(self, x): - return _mscl.LoggedDataSweeps_push_back(self, x) - - def front(self): - return _mscl.LoggedDataSweeps_front(self) - - def back(self): - return _mscl.LoggedDataSweeps_back(self) - - def assign(self, n, x): - return _mscl.LoggedDataSweeps_assign(self, n, x) - - def resize(self, *args): - return _mscl.LoggedDataSweeps_resize(self, *args) - - def insert(self, *args): - return _mscl.LoggedDataSweeps_insert(self, *args) - - def reserve(self, n): - return _mscl.LoggedDataSweeps_reserve(self, n) - - def capacity(self): - return _mscl.LoggedDataSweeps_capacity(self) - __swig_destroy__ = _mscl.delete_LoggedDataSweeps - -# Register LoggedDataSweeps in _mscl: -_mscl.LoggedDataSweeps_swigregister(LoggedDataSweeps) - -class MipDataPackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataPackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataPackets___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataPackets___bool__(self) - - def __len__(self): - return _mscl.MipDataPackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataPackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataPackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataPackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataPackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataPackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataPackets___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataPackets_pop(self) - - def append(self, x): - return _mscl.MipDataPackets_append(self, x) - - def empty(self): - return _mscl.MipDataPackets_empty(self) - - def size(self): - return _mscl.MipDataPackets_size(self) - - def swap(self, v): - return _mscl.MipDataPackets_swap(self, v) - - def begin(self): - return _mscl.MipDataPackets_begin(self) - - def end(self): - return _mscl.MipDataPackets_end(self) - - def rbegin(self): - return _mscl.MipDataPackets_rbegin(self) - - def rend(self): - return _mscl.MipDataPackets_rend(self) - - def clear(self): - return _mscl.MipDataPackets_clear(self) - - def get_allocator(self): - return _mscl.MipDataPackets_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataPackets_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataPackets_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataPackets_swiginit(self, _mscl.new_MipDataPackets(*args)) - - def push_back(self, x): - return _mscl.MipDataPackets_push_back(self, x) - - def front(self): - return _mscl.MipDataPackets_front(self) - - def back(self): - return _mscl.MipDataPackets_back(self) - - def assign(self, n, x): - return _mscl.MipDataPackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataPackets_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataPackets_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataPackets_reserve(self, n) - - def capacity(self): - return _mscl.MipDataPackets_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataPackets - -# Register MipDataPackets in _mscl: -_mscl.MipDataPackets_swigregister(MipDataPackets) - -class RawBytePackets(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RawBytePackets_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RawBytePackets___nonzero__(self) - - def __bool__(self): - return _mscl.RawBytePackets___bool__(self) - - def __len__(self): - return _mscl.RawBytePackets___len__(self) - - def __getslice__(self, i, j): - return _mscl.RawBytePackets___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.RawBytePackets___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.RawBytePackets___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.RawBytePackets___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.RawBytePackets___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.RawBytePackets___setitem__(self, *args) - - def pop(self): - return _mscl.RawBytePackets_pop(self) - - def append(self, x): - return _mscl.RawBytePackets_append(self, x) - - def empty(self): - return _mscl.RawBytePackets_empty(self) - - def size(self): - return _mscl.RawBytePackets_size(self) - - def swap(self, v): - return _mscl.RawBytePackets_swap(self, v) - - def begin(self): - return _mscl.RawBytePackets_begin(self) - - def end(self): - return _mscl.RawBytePackets_end(self) - - def rbegin(self): - return _mscl.RawBytePackets_rbegin(self) - - def rend(self): - return _mscl.RawBytePackets_rend(self) - - def clear(self): - return _mscl.RawBytePackets_clear(self) - - def get_allocator(self): - return _mscl.RawBytePackets_get_allocator(self) - - def pop_back(self): - return _mscl.RawBytePackets_pop_back(self) - - def erase(self, *args): - return _mscl.RawBytePackets_erase(self, *args) - - def __init__(self, *args): - _mscl.RawBytePackets_swiginit(self, _mscl.new_RawBytePackets(*args)) - - def push_back(self, x): - return _mscl.RawBytePackets_push_back(self, x) - - def front(self): - return _mscl.RawBytePackets_front(self) - - def back(self): - return _mscl.RawBytePackets_back(self) - - def assign(self, n, x): - return _mscl.RawBytePackets_assign(self, n, x) - - def resize(self, *args): - return _mscl.RawBytePackets_resize(self, *args) - - def insert(self, *args): - return _mscl.RawBytePackets_insert(self, *args) - - def reserve(self, n): - return _mscl.RawBytePackets_reserve(self, n) - - def capacity(self): - return _mscl.RawBytePackets_capacity(self) - __swig_destroy__ = _mscl.delete_RawBytePackets - -# Register RawBytePackets in _mscl: -_mscl.RawBytePackets_swigregister(RawBytePackets) - -class MipChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannels___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannels___bool__(self) - - def __len__(self): - return _mscl.MipChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannels___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannels_pop(self) - - def append(self, x): - return _mscl.MipChannels_append(self, x) - - def empty(self): - return _mscl.MipChannels_empty(self) - - def size(self): - return _mscl.MipChannels_size(self) - - def swap(self, v): - return _mscl.MipChannels_swap(self, v) - - def begin(self): - return _mscl.MipChannels_begin(self) - - def end(self): - return _mscl.MipChannels_end(self) - - def rbegin(self): - return _mscl.MipChannels_rbegin(self) - - def rend(self): - return _mscl.MipChannels_rend(self) - - def clear(self): - return _mscl.MipChannels_clear(self) - - def get_allocator(self): - return _mscl.MipChannels_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannels_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannels_swiginit(self, _mscl.new_MipChannels(*args)) - - def push_back(self, x): - return _mscl.MipChannels_push_back(self, x) - - def front(self): - return _mscl.MipChannels_front(self) - - def back(self): - return _mscl.MipChannels_back(self) - - def assign(self, n, x): - return _mscl.MipChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannels_reserve(self, n) - - def capacity(self): - return _mscl.MipChannels_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannels - -# Register MipChannels in _mscl: -_mscl.MipChannels_swigregister(MipChannels) - -class DataCollectionMethods(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataCollectionMethods_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataCollectionMethods___nonzero__(self) - - def __bool__(self): - return _mscl.DataCollectionMethods___bool__(self) - - def __len__(self): - return _mscl.DataCollectionMethods___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataCollectionMethods___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataCollectionMethods___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataCollectionMethods___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataCollectionMethods___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataCollectionMethods___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataCollectionMethods___setitem__(self, *args) - - def pop(self): - return _mscl.DataCollectionMethods_pop(self) - - def append(self, x): - return _mscl.DataCollectionMethods_append(self, x) - - def empty(self): - return _mscl.DataCollectionMethods_empty(self) - - def size(self): - return _mscl.DataCollectionMethods_size(self) - - def swap(self, v): - return _mscl.DataCollectionMethods_swap(self, v) - - def begin(self): - return _mscl.DataCollectionMethods_begin(self) - - def end(self): - return _mscl.DataCollectionMethods_end(self) - - def rbegin(self): - return _mscl.DataCollectionMethods_rbegin(self) - - def rend(self): - return _mscl.DataCollectionMethods_rend(self) - - def clear(self): - return _mscl.DataCollectionMethods_clear(self) - - def get_allocator(self): - return _mscl.DataCollectionMethods_get_allocator(self) - - def pop_back(self): - return _mscl.DataCollectionMethods_pop_back(self) - - def erase(self, *args): - return _mscl.DataCollectionMethods_erase(self, *args) - - def __init__(self, *args): - _mscl.DataCollectionMethods_swiginit(self, _mscl.new_DataCollectionMethods(*args)) - - def push_back(self, x): - return _mscl.DataCollectionMethods_push_back(self, x) - - def front(self): - return _mscl.DataCollectionMethods_front(self) - - def back(self): - return _mscl.DataCollectionMethods_back(self) - - def assign(self, n, x): - return _mscl.DataCollectionMethods_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataCollectionMethods_resize(self, *args) - - def insert(self, *args): - return _mscl.DataCollectionMethods_insert(self, *args) - - def reserve(self, n): - return _mscl.DataCollectionMethods_reserve(self, n) - - def capacity(self): - return _mscl.DataCollectionMethods_capacity(self) - __swig_destroy__ = _mscl.delete_DataCollectionMethods - -# Register DataCollectionMethods in _mscl: -_mscl.DataCollectionMethods_swigregister(DataCollectionMethods) - -class DataFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataFormats___nonzero__(self) - - def __bool__(self): - return _mscl.DataFormats___bool__(self) - - def __len__(self): - return _mscl.DataFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataFormats___setitem__(self, *args) - - def pop(self): - return _mscl.DataFormats_pop(self) - - def append(self, x): - return _mscl.DataFormats_append(self, x) - - def empty(self): - return _mscl.DataFormats_empty(self) - - def size(self): - return _mscl.DataFormats_size(self) - - def swap(self, v): - return _mscl.DataFormats_swap(self, v) - - def begin(self): - return _mscl.DataFormats_begin(self) - - def end(self): - return _mscl.DataFormats_end(self) - - def rbegin(self): - return _mscl.DataFormats_rbegin(self) - - def rend(self): - return _mscl.DataFormats_rend(self) - - def clear(self): - return _mscl.DataFormats_clear(self) - - def get_allocator(self): - return _mscl.DataFormats_get_allocator(self) - - def pop_back(self): - return _mscl.DataFormats_pop_back(self) - - def erase(self, *args): - return _mscl.DataFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.DataFormats_swiginit(self, _mscl.new_DataFormats(*args)) - - def push_back(self, x): - return _mscl.DataFormats_push_back(self, x) - - def front(self): - return _mscl.DataFormats_front(self) - - def back(self): - return _mscl.DataFormats_back(self) - - def assign(self, n, x): - return _mscl.DataFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.DataFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.DataFormats_reserve(self, n) - - def capacity(self): - return _mscl.DataFormats_capacity(self) - __swig_destroy__ = _mscl.delete_DataFormats - -# Register DataFormats in _mscl: -_mscl.DataFormats_swigregister(DataFormats) - -class WirelessSampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessSampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessSampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessSampleRates___bool__(self) - - def __len__(self): - return _mscl.WirelessSampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessSampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessSampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessSampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessSampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessSampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessSampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessSampleRates_pop(self) - - def append(self, x): - return _mscl.WirelessSampleRates_append(self, x) - - def empty(self): - return _mscl.WirelessSampleRates_empty(self) - - def size(self): - return _mscl.WirelessSampleRates_size(self) - - def swap(self, v): - return _mscl.WirelessSampleRates_swap(self, v) - - def begin(self): - return _mscl.WirelessSampleRates_begin(self) - - def end(self): - return _mscl.WirelessSampleRates_end(self) - - def rbegin(self): - return _mscl.WirelessSampleRates_rbegin(self) - - def rend(self): - return _mscl.WirelessSampleRates_rend(self) - - def clear(self): - return _mscl.WirelessSampleRates_clear(self) - - def get_allocator(self): - return _mscl.WirelessSampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessSampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessSampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessSampleRates_swiginit(self, _mscl.new_WirelessSampleRates(*args)) - - def push_back(self, x): - return _mscl.WirelessSampleRates_push_back(self, x) - - def front(self): - return _mscl.WirelessSampleRates_front(self) - - def back(self): - return _mscl.WirelessSampleRates_back(self) - - def assign(self, n, x): - return _mscl.WirelessSampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessSampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessSampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessSampleRates_reserve(self, n) - - def capacity(self): - return _mscl.WirelessSampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessSampleRates - -# Register WirelessSampleRates in _mscl: -_mscl.WirelessSampleRates_swigregister(WirelessSampleRates) - -class SamplingModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SamplingModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SamplingModes___nonzero__(self) - - def __bool__(self): - return _mscl.SamplingModes___bool__(self) - - def __len__(self): - return _mscl.SamplingModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SamplingModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SamplingModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SamplingModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SamplingModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SamplingModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SamplingModes___setitem__(self, *args) - - def pop(self): - return _mscl.SamplingModes_pop(self) - - def append(self, x): - return _mscl.SamplingModes_append(self, x) - - def empty(self): - return _mscl.SamplingModes_empty(self) - - def size(self): - return _mscl.SamplingModes_size(self) - - def swap(self, v): - return _mscl.SamplingModes_swap(self, v) - - def begin(self): - return _mscl.SamplingModes_begin(self) - - def end(self): - return _mscl.SamplingModes_end(self) - - def rbegin(self): - return _mscl.SamplingModes_rbegin(self) - - def rend(self): - return _mscl.SamplingModes_rend(self) - - def clear(self): - return _mscl.SamplingModes_clear(self) - - def get_allocator(self): - return _mscl.SamplingModes_get_allocator(self) - - def pop_back(self): - return _mscl.SamplingModes_pop_back(self) - - def erase(self, *args): - return _mscl.SamplingModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SamplingModes_swiginit(self, _mscl.new_SamplingModes(*args)) - - def push_back(self, x): - return _mscl.SamplingModes_push_back(self, x) - - def front(self): - return _mscl.SamplingModes_front(self) - - def back(self): - return _mscl.SamplingModes_back(self) - - def assign(self, n, x): - return _mscl.SamplingModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SamplingModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SamplingModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SamplingModes_reserve(self, n) - - def capacity(self): - return _mscl.SamplingModes_capacity(self) - __swig_destroy__ = _mscl.delete_SamplingModes - -# Register SamplingModes in _mscl: -_mscl.SamplingModes_swigregister(SamplingModes) - -class DefaultModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DefaultModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DefaultModes___nonzero__(self) - - def __bool__(self): - return _mscl.DefaultModes___bool__(self) - - def __len__(self): - return _mscl.DefaultModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DefaultModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DefaultModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DefaultModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DefaultModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DefaultModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DefaultModes___setitem__(self, *args) - - def pop(self): - return _mscl.DefaultModes_pop(self) - - def append(self, x): - return _mscl.DefaultModes_append(self, x) - - def empty(self): - return _mscl.DefaultModes_empty(self) - - def size(self): - return _mscl.DefaultModes_size(self) - - def swap(self, v): - return _mscl.DefaultModes_swap(self, v) - - def begin(self): - return _mscl.DefaultModes_begin(self) - - def end(self): - return _mscl.DefaultModes_end(self) - - def rbegin(self): - return _mscl.DefaultModes_rbegin(self) - - def rend(self): - return _mscl.DefaultModes_rend(self) - - def clear(self): - return _mscl.DefaultModes_clear(self) - - def get_allocator(self): - return _mscl.DefaultModes_get_allocator(self) - - def pop_back(self): - return _mscl.DefaultModes_pop_back(self) - - def erase(self, *args): - return _mscl.DefaultModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DefaultModes_swiginit(self, _mscl.new_DefaultModes(*args)) - - def push_back(self, x): - return _mscl.DefaultModes_push_back(self, x) - - def front(self): - return _mscl.DefaultModes_front(self) - - def back(self): - return _mscl.DefaultModes_back(self) - - def assign(self, n, x): - return _mscl.DefaultModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DefaultModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DefaultModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DefaultModes_reserve(self, n) - - def capacity(self): - return _mscl.DefaultModes_capacity(self) - __swig_destroy__ = _mscl.delete_DefaultModes - -# Register DefaultModes in _mscl: -_mscl.DefaultModes_swigregister(DefaultModes) - -class TransmitPowers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransmitPowers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransmitPowers___nonzero__(self) - - def __bool__(self): - return _mscl.TransmitPowers___bool__(self) - - def __len__(self): - return _mscl.TransmitPowers___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransmitPowers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransmitPowers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransmitPowers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransmitPowers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransmitPowers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransmitPowers___setitem__(self, *args) - - def pop(self): - return _mscl.TransmitPowers_pop(self) - - def append(self, x): - return _mscl.TransmitPowers_append(self, x) - - def empty(self): - return _mscl.TransmitPowers_empty(self) - - def size(self): - return _mscl.TransmitPowers_size(self) - - def swap(self, v): - return _mscl.TransmitPowers_swap(self, v) - - def begin(self): - return _mscl.TransmitPowers_begin(self) - - def end(self): - return _mscl.TransmitPowers_end(self) - - def rbegin(self): - return _mscl.TransmitPowers_rbegin(self) - - def rend(self): - return _mscl.TransmitPowers_rend(self) - - def clear(self): - return _mscl.TransmitPowers_clear(self) - - def get_allocator(self): - return _mscl.TransmitPowers_get_allocator(self) - - def pop_back(self): - return _mscl.TransmitPowers_pop_back(self) - - def erase(self, *args): - return _mscl.TransmitPowers_erase(self, *args) - - def __init__(self, *args): - _mscl.TransmitPowers_swiginit(self, _mscl.new_TransmitPowers(*args)) - - def push_back(self, x): - return _mscl.TransmitPowers_push_back(self, x) - - def front(self): - return _mscl.TransmitPowers_front(self) - - def back(self): - return _mscl.TransmitPowers_back(self) - - def assign(self, n, x): - return _mscl.TransmitPowers_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransmitPowers_resize(self, *args) - - def insert(self, *args): - return _mscl.TransmitPowers_insert(self, *args) - - def reserve(self, n): - return _mscl.TransmitPowers_reserve(self, n) - - def capacity(self): - return _mscl.TransmitPowers_capacity(self) - __swig_destroy__ = _mscl.delete_TransmitPowers - -# Register TransmitPowers in _mscl: -_mscl.TransmitPowers_swigregister(TransmitPowers) - -class ChannelGroupSettings(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroupSettings_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroupSettings___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroupSettings___bool__(self) - - def __len__(self): - return _mscl.ChannelGroupSettings___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroupSettings___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroupSettings___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroupSettings___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroupSettings___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroupSettings___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroupSettings___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroupSettings_pop(self) - - def append(self, x): - return _mscl.ChannelGroupSettings_append(self, x) - - def empty(self): - return _mscl.ChannelGroupSettings_empty(self) - - def size(self): - return _mscl.ChannelGroupSettings_size(self) - - def swap(self, v): - return _mscl.ChannelGroupSettings_swap(self, v) - - def begin(self): - return _mscl.ChannelGroupSettings_begin(self) - - def end(self): - return _mscl.ChannelGroupSettings_end(self) - - def rbegin(self): - return _mscl.ChannelGroupSettings_rbegin(self) - - def rend(self): - return _mscl.ChannelGroupSettings_rend(self) - - def clear(self): - return _mscl.ChannelGroupSettings_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroupSettings_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroupSettings_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroupSettings_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroupSettings_swiginit(self, _mscl.new_ChannelGroupSettings(*args)) - - def push_back(self, x): - return _mscl.ChannelGroupSettings_push_back(self, x) - - def front(self): - return _mscl.ChannelGroupSettings_front(self) - - def back(self): - return _mscl.ChannelGroupSettings_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroupSettings_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroupSettings_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroupSettings_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroupSettings_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroupSettings_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroupSettings - -# Register ChannelGroupSettings in _mscl: -_mscl.ChannelGroupSettings_swigregister(ChannelGroupSettings) - -class FatigueModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.FatigueModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.FatigueModes___nonzero__(self) - - def __bool__(self): - return _mscl.FatigueModes___bool__(self) - - def __len__(self): - return _mscl.FatigueModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.FatigueModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.FatigueModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.FatigueModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.FatigueModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.FatigueModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.FatigueModes___setitem__(self, *args) - - def pop(self): - return _mscl.FatigueModes_pop(self) - - def append(self, x): - return _mscl.FatigueModes_append(self, x) - - def empty(self): - return _mscl.FatigueModes_empty(self) - - def size(self): - return _mscl.FatigueModes_size(self) - - def swap(self, v): - return _mscl.FatigueModes_swap(self, v) - - def begin(self): - return _mscl.FatigueModes_begin(self) - - def end(self): - return _mscl.FatigueModes_end(self) - - def rbegin(self): - return _mscl.FatigueModes_rbegin(self) - - def rend(self): - return _mscl.FatigueModes_rend(self) - - def clear(self): - return _mscl.FatigueModes_clear(self) - - def get_allocator(self): - return _mscl.FatigueModes_get_allocator(self) - - def pop_back(self): - return _mscl.FatigueModes_pop_back(self) - - def erase(self, *args): - return _mscl.FatigueModes_erase(self, *args) - - def __init__(self, *args): - _mscl.FatigueModes_swiginit(self, _mscl.new_FatigueModes(*args)) - - def push_back(self, x): - return _mscl.FatigueModes_push_back(self, x) - - def front(self): - return _mscl.FatigueModes_front(self) - - def back(self): - return _mscl.FatigueModes_back(self) - - def assign(self, n, x): - return _mscl.FatigueModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.FatigueModes_resize(self, *args) - - def insert(self, *args): - return _mscl.FatigueModes_insert(self, *args) - - def reserve(self, n): - return _mscl.FatigueModes_reserve(self, n) - - def capacity(self): - return _mscl.FatigueModes_capacity(self) - __swig_destroy__ = _mscl.delete_FatigueModes - -# Register FatigueModes in _mscl: -_mscl.FatigueModes_swigregister(FatigueModes) - -class Filters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Filters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Filters___nonzero__(self) - - def __bool__(self): - return _mscl.Filters___bool__(self) - - def __len__(self): - return _mscl.Filters___len__(self) - - def __getslice__(self, i, j): - return _mscl.Filters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Filters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Filters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Filters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Filters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Filters___setitem__(self, *args) - - def pop(self): - return _mscl.Filters_pop(self) - - def append(self, x): - return _mscl.Filters_append(self, x) - - def empty(self): - return _mscl.Filters_empty(self) - - def size(self): - return _mscl.Filters_size(self) - - def swap(self, v): - return _mscl.Filters_swap(self, v) - - def begin(self): - return _mscl.Filters_begin(self) - - def end(self): - return _mscl.Filters_end(self) - - def rbegin(self): - return _mscl.Filters_rbegin(self) - - def rend(self): - return _mscl.Filters_rend(self) - - def clear(self): - return _mscl.Filters_clear(self) - - def get_allocator(self): - return _mscl.Filters_get_allocator(self) - - def pop_back(self): - return _mscl.Filters_pop_back(self) - - def erase(self, *args): - return _mscl.Filters_erase(self, *args) - - def __init__(self, *args): - _mscl.Filters_swiginit(self, _mscl.new_Filters(*args)) - - def push_back(self, x): - return _mscl.Filters_push_back(self, x) - - def front(self): - return _mscl.Filters_front(self) - - def back(self): - return _mscl.Filters_back(self) - - def assign(self, n, x): - return _mscl.Filters_assign(self, n, x) - - def resize(self, *args): - return _mscl.Filters_resize(self, *args) - - def insert(self, *args): - return _mscl.Filters_insert(self, *args) - - def reserve(self, n): - return _mscl.Filters_reserve(self, n) - - def capacity(self): - return _mscl.Filters_capacity(self) - __swig_destroy__ = _mscl.delete_Filters - -# Register Filters in _mscl: -_mscl.Filters_swigregister(Filters) - -class HighPassFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HighPassFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HighPassFilters___nonzero__(self) - - def __bool__(self): - return _mscl.HighPassFilters___bool__(self) - - def __len__(self): - return _mscl.HighPassFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.HighPassFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HighPassFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HighPassFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HighPassFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HighPassFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HighPassFilters___setitem__(self, *args) - - def pop(self): - return _mscl.HighPassFilters_pop(self) - - def append(self, x): - return _mscl.HighPassFilters_append(self, x) - - def empty(self): - return _mscl.HighPassFilters_empty(self) - - def size(self): - return _mscl.HighPassFilters_size(self) - - def swap(self, v): - return _mscl.HighPassFilters_swap(self, v) - - def begin(self): - return _mscl.HighPassFilters_begin(self) - - def end(self): - return _mscl.HighPassFilters_end(self) - - def rbegin(self): - return _mscl.HighPassFilters_rbegin(self) - - def rend(self): - return _mscl.HighPassFilters_rend(self) - - def clear(self): - return _mscl.HighPassFilters_clear(self) - - def get_allocator(self): - return _mscl.HighPassFilters_get_allocator(self) - - def pop_back(self): - return _mscl.HighPassFilters_pop_back(self) - - def erase(self, *args): - return _mscl.HighPassFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.HighPassFilters_swiginit(self, _mscl.new_HighPassFilters(*args)) - - def push_back(self, x): - return _mscl.HighPassFilters_push_back(self, x) - - def front(self): - return _mscl.HighPassFilters_front(self) - - def back(self): - return _mscl.HighPassFilters_back(self) - - def assign(self, n, x): - return _mscl.HighPassFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.HighPassFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.HighPassFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.HighPassFilters_reserve(self, n) - - def capacity(self): - return _mscl.HighPassFilters_capacity(self) - __swig_destroy__ = _mscl.delete_HighPassFilters - -# Register HighPassFilters in _mscl: -_mscl.HighPassFilters_swigregister(HighPassFilters) - -class StorageLimitModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StorageLimitModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StorageLimitModes___nonzero__(self) - - def __bool__(self): - return _mscl.StorageLimitModes___bool__(self) - - def __len__(self): - return _mscl.StorageLimitModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.StorageLimitModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StorageLimitModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StorageLimitModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StorageLimitModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StorageLimitModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StorageLimitModes___setitem__(self, *args) - - def pop(self): - return _mscl.StorageLimitModes_pop(self) - - def append(self, x): - return _mscl.StorageLimitModes_append(self, x) - - def empty(self): - return _mscl.StorageLimitModes_empty(self) - - def size(self): - return _mscl.StorageLimitModes_size(self) - - def swap(self, v): - return _mscl.StorageLimitModes_swap(self, v) - - def begin(self): - return _mscl.StorageLimitModes_begin(self) - - def end(self): - return _mscl.StorageLimitModes_end(self) - - def rbegin(self): - return _mscl.StorageLimitModes_rbegin(self) - - def rend(self): - return _mscl.StorageLimitModes_rend(self) - - def clear(self): - return _mscl.StorageLimitModes_clear(self) - - def get_allocator(self): - return _mscl.StorageLimitModes_get_allocator(self) - - def pop_back(self): - return _mscl.StorageLimitModes_pop_back(self) - - def erase(self, *args): - return _mscl.StorageLimitModes_erase(self, *args) - - def __init__(self, *args): - _mscl.StorageLimitModes_swiginit(self, _mscl.new_StorageLimitModes(*args)) - - def push_back(self, x): - return _mscl.StorageLimitModes_push_back(self, x) - - def front(self): - return _mscl.StorageLimitModes_front(self) - - def back(self): - return _mscl.StorageLimitModes_back(self) - - def assign(self, n, x): - return _mscl.StorageLimitModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.StorageLimitModes_resize(self, *args) - - def insert(self, *args): - return _mscl.StorageLimitModes_insert(self, *args) - - def reserve(self, n): - return _mscl.StorageLimitModes_reserve(self, n) - - def capacity(self): - return _mscl.StorageLimitModes_capacity(self) - __swig_destroy__ = _mscl.delete_StorageLimitModes - -# Register StorageLimitModes in _mscl: -_mscl.StorageLimitModes_swigregister(StorageLimitModes) - -class InputRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.InputRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.InputRanges___nonzero__(self) - - def __bool__(self): - return _mscl.InputRanges___bool__(self) - - def __len__(self): - return _mscl.InputRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.InputRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.InputRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.InputRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.InputRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.InputRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.InputRanges___setitem__(self, *args) - - def pop(self): - return _mscl.InputRanges_pop(self) - - def append(self, x): - return _mscl.InputRanges_append(self, x) - - def empty(self): - return _mscl.InputRanges_empty(self) - - def size(self): - return _mscl.InputRanges_size(self) - - def swap(self, v): - return _mscl.InputRanges_swap(self, v) - - def begin(self): - return _mscl.InputRanges_begin(self) - - def end(self): - return _mscl.InputRanges_end(self) - - def rbegin(self): - return _mscl.InputRanges_rbegin(self) - - def rend(self): - return _mscl.InputRanges_rend(self) - - def clear(self): - return _mscl.InputRanges_clear(self) - - def get_allocator(self): - return _mscl.InputRanges_get_allocator(self) - - def pop_back(self): - return _mscl.InputRanges_pop_back(self) - - def erase(self, *args): - return _mscl.InputRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.InputRanges_swiginit(self, _mscl.new_InputRanges(*args)) - - def push_back(self, x): - return _mscl.InputRanges_push_back(self, x) - - def front(self): - return _mscl.InputRanges_front(self) - - def back(self): - return _mscl.InputRanges_back(self) - - def assign(self, n, x): - return _mscl.InputRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.InputRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.InputRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.InputRanges_reserve(self, n) - - def capacity(self): - return _mscl.InputRanges_capacity(self) - __swig_destroy__ = _mscl.delete_InputRanges - -# Register InputRanges in _mscl: -_mscl.InputRanges_swigregister(InputRanges) - -class DataModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DataModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DataModes___nonzero__(self) - - def __bool__(self): - return _mscl.DataModes___bool__(self) - - def __len__(self): - return _mscl.DataModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.DataModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.DataModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.DataModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.DataModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.DataModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.DataModes___setitem__(self, *args) - - def pop(self): - return _mscl.DataModes_pop(self) - - def append(self, x): - return _mscl.DataModes_append(self, x) - - def empty(self): - return _mscl.DataModes_empty(self) - - def size(self): - return _mscl.DataModes_size(self) - - def swap(self, v): - return _mscl.DataModes_swap(self, v) - - def begin(self): - return _mscl.DataModes_begin(self) - - def end(self): - return _mscl.DataModes_end(self) - - def rbegin(self): - return _mscl.DataModes_rbegin(self) - - def rend(self): - return _mscl.DataModes_rend(self) - - def clear(self): - return _mscl.DataModes_clear(self) - - def get_allocator(self): - return _mscl.DataModes_get_allocator(self) - - def pop_back(self): - return _mscl.DataModes_pop_back(self) - - def erase(self, *args): - return _mscl.DataModes_erase(self, *args) - - def __init__(self, *args): - _mscl.DataModes_swiginit(self, _mscl.new_DataModes(*args)) - - def push_back(self, x): - return _mscl.DataModes_push_back(self, x) - - def front(self): - return _mscl.DataModes_front(self) - - def back(self): - return _mscl.DataModes_back(self) - - def assign(self, n, x): - return _mscl.DataModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.DataModes_resize(self, *args) - - def insert(self, *args): - return _mscl.DataModes_insert(self, *args) - - def reserve(self, n): - return _mscl.DataModes_reserve(self, n) - - def capacity(self): - return _mscl.DataModes_capacity(self) - __swig_destroy__ = _mscl.delete_DataModes - -# Register DataModes in _mscl: -_mscl.DataModes_swigregister(DataModes) - -class CommProtocols(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommProtocols_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommProtocols___nonzero__(self) - - def __bool__(self): - return _mscl.CommProtocols___bool__(self) - - def __len__(self): - return _mscl.CommProtocols___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommProtocols___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommProtocols___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommProtocols___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommProtocols___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommProtocols___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommProtocols___setitem__(self, *args) - - def pop(self): - return _mscl.CommProtocols_pop(self) - - def append(self, x): - return _mscl.CommProtocols_append(self, x) - - def empty(self): - return _mscl.CommProtocols_empty(self) - - def size(self): - return _mscl.CommProtocols_size(self) - - def swap(self, v): - return _mscl.CommProtocols_swap(self, v) - - def begin(self): - return _mscl.CommProtocols_begin(self) - - def end(self): - return _mscl.CommProtocols_end(self) - - def rbegin(self): - return _mscl.CommProtocols_rbegin(self) - - def rend(self): - return _mscl.CommProtocols_rend(self) - - def clear(self): - return _mscl.CommProtocols_clear(self) - - def get_allocator(self): - return _mscl.CommProtocols_get_allocator(self) - - def pop_back(self): - return _mscl.CommProtocols_pop_back(self) - - def erase(self, *args): - return _mscl.CommProtocols_erase(self, *args) - - def __init__(self, *args): - _mscl.CommProtocols_swiginit(self, _mscl.new_CommProtocols(*args)) - - def push_back(self, x): - return _mscl.CommProtocols_push_back(self, x) - - def front(self): - return _mscl.CommProtocols_front(self) - - def back(self): - return _mscl.CommProtocols_back(self) - - def assign(self, n, x): - return _mscl.CommProtocols_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommProtocols_resize(self, *args) - - def insert(self, *args): - return _mscl.CommProtocols_insert(self, *args) - - def reserve(self, n): - return _mscl.CommProtocols_reserve(self, n) - - def capacity(self): - return _mscl.CommProtocols_capacity(self) - __swig_destroy__ = _mscl.delete_CommProtocols - -# Register CommProtocols in _mscl: -_mscl.CommProtocols_swigregister(CommProtocols) - -class Voltages(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Voltages_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Voltages___nonzero__(self) - - def __bool__(self): - return _mscl.Voltages___bool__(self) - - def __len__(self): - return _mscl.Voltages___len__(self) - - def __getslice__(self, i, j): - return _mscl.Voltages___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Voltages___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Voltages___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Voltages___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Voltages___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Voltages___setitem__(self, *args) - - def pop(self): - return _mscl.Voltages_pop(self) - - def append(self, x): - return _mscl.Voltages_append(self, x) - - def empty(self): - return _mscl.Voltages_empty(self) - - def size(self): - return _mscl.Voltages_size(self) - - def swap(self, v): - return _mscl.Voltages_swap(self, v) - - def begin(self): - return _mscl.Voltages_begin(self) - - def end(self): - return _mscl.Voltages_end(self) - - def rbegin(self): - return _mscl.Voltages_rbegin(self) - - def rend(self): - return _mscl.Voltages_rend(self) - - def clear(self): - return _mscl.Voltages_clear(self) - - def get_allocator(self): - return _mscl.Voltages_get_allocator(self) - - def pop_back(self): - return _mscl.Voltages_pop_back(self) - - def erase(self, *args): - return _mscl.Voltages_erase(self, *args) - - def __init__(self, *args): - _mscl.Voltages_swiginit(self, _mscl.new_Voltages(*args)) - - def push_back(self, x): - return _mscl.Voltages_push_back(self, x) - - def front(self): - return _mscl.Voltages_front(self) - - def back(self): - return _mscl.Voltages_back(self) - - def assign(self, n, x): - return _mscl.Voltages_assign(self, n, x) - - def resize(self, *args): - return _mscl.Voltages_resize(self, *args) - - def insert(self, *args): - return _mscl.Voltages_insert(self, *args) - - def reserve(self, n): - return _mscl.Voltages_reserve(self, n) - - def capacity(self): - return _mscl.Voltages_capacity(self) - __swig_destroy__ = _mscl.delete_Voltages - -# Register Voltages in _mscl: -_mscl.Voltages_swigregister(Voltages) - -class SensorOutputModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorOutputModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorOutputModes___nonzero__(self) - - def __bool__(self): - return _mscl.SensorOutputModes___bool__(self) - - def __len__(self): - return _mscl.SensorOutputModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorOutputModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorOutputModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorOutputModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorOutputModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorOutputModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorOutputModes___setitem__(self, *args) - - def pop(self): - return _mscl.SensorOutputModes_pop(self) - - def append(self, x): - return _mscl.SensorOutputModes_append(self, x) - - def empty(self): - return _mscl.SensorOutputModes_empty(self) - - def size(self): - return _mscl.SensorOutputModes_size(self) - - def swap(self, v): - return _mscl.SensorOutputModes_swap(self, v) - - def begin(self): - return _mscl.SensorOutputModes_begin(self) - - def end(self): - return _mscl.SensorOutputModes_end(self) - - def rbegin(self): - return _mscl.SensorOutputModes_rbegin(self) - - def rend(self): - return _mscl.SensorOutputModes_rend(self) - - def clear(self): - return _mscl.SensorOutputModes_clear(self) - - def get_allocator(self): - return _mscl.SensorOutputModes_get_allocator(self) - - def pop_back(self): - return _mscl.SensorOutputModes_pop_back(self) - - def erase(self, *args): - return _mscl.SensorOutputModes_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorOutputModes_swiginit(self, _mscl.new_SensorOutputModes(*args)) - - def push_back(self, x): - return _mscl.SensorOutputModes_push_back(self, x) - - def front(self): - return _mscl.SensorOutputModes_front(self) - - def back(self): - return _mscl.SensorOutputModes_back(self) - - def assign(self, n, x): - return _mscl.SensorOutputModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorOutputModes_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorOutputModes_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorOutputModes_reserve(self, n) - - def capacity(self): - return _mscl.SensorOutputModes_capacity(self) - __swig_destroy__ = _mscl.delete_SensorOutputModes - -# Register SensorOutputModes in _mscl: -_mscl.SensorOutputModes_swigregister(SensorOutputModes) - -class CfcFilters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CfcFilters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CfcFilters___nonzero__(self) - - def __bool__(self): - return _mscl.CfcFilters___bool__(self) - - def __len__(self): - return _mscl.CfcFilters___len__(self) - - def __getslice__(self, i, j): - return _mscl.CfcFilters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CfcFilters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CfcFilters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CfcFilters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CfcFilters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CfcFilters___setitem__(self, *args) - - def pop(self): - return _mscl.CfcFilters_pop(self) - - def append(self, x): - return _mscl.CfcFilters_append(self, x) - - def empty(self): - return _mscl.CfcFilters_empty(self) - - def size(self): - return _mscl.CfcFilters_size(self) - - def swap(self, v): - return _mscl.CfcFilters_swap(self, v) - - def begin(self): - return _mscl.CfcFilters_begin(self) - - def end(self): - return _mscl.CfcFilters_end(self) - - def rbegin(self): - return _mscl.CfcFilters_rbegin(self) - - def rend(self): - return _mscl.CfcFilters_rend(self) - - def clear(self): - return _mscl.CfcFilters_clear(self) - - def get_allocator(self): - return _mscl.CfcFilters_get_allocator(self) - - def pop_back(self): - return _mscl.CfcFilters_pop_back(self) - - def erase(self, *args): - return _mscl.CfcFilters_erase(self, *args) - - def __init__(self, *args): - _mscl.CfcFilters_swiginit(self, _mscl.new_CfcFilters(*args)) - - def push_back(self, x): - return _mscl.CfcFilters_push_back(self, x) - - def front(self): - return _mscl.CfcFilters_front(self) - - def back(self): - return _mscl.CfcFilters_back(self) - - def assign(self, n, x): - return _mscl.CfcFilters_assign(self, n, x) - - def resize(self, *args): - return _mscl.CfcFilters_resize(self, *args) - - def insert(self, *args): - return _mscl.CfcFilters_insert(self, *args) - - def reserve(self, n): - return _mscl.CfcFilters_reserve(self, n) - - def capacity(self): - return _mscl.CfcFilters_capacity(self) - __swig_destroy__ = _mscl.delete_CfcFilters - -# Register CfcFilters in _mscl: -_mscl.CfcFilters_swigregister(CfcFilters) - -class TransducerTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.TransducerTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.TransducerTypes___nonzero__(self) - - def __bool__(self): - return _mscl.TransducerTypes___bool__(self) - - def __len__(self): - return _mscl.TransducerTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.TransducerTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.TransducerTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.TransducerTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.TransducerTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.TransducerTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.TransducerTypes___setitem__(self, *args) - - def pop(self): - return _mscl.TransducerTypes_pop(self) - - def append(self, x): - return _mscl.TransducerTypes_append(self, x) - - def empty(self): - return _mscl.TransducerTypes_empty(self) - - def size(self): - return _mscl.TransducerTypes_size(self) - - def swap(self, v): - return _mscl.TransducerTypes_swap(self, v) - - def begin(self): - return _mscl.TransducerTypes_begin(self) - - def end(self): - return _mscl.TransducerTypes_end(self) - - def rbegin(self): - return _mscl.TransducerTypes_rbegin(self) - - def rend(self): - return _mscl.TransducerTypes_rend(self) - - def clear(self): - return _mscl.TransducerTypes_clear(self) - - def get_allocator(self): - return _mscl.TransducerTypes_get_allocator(self) - - def pop_back(self): - return _mscl.TransducerTypes_pop_back(self) - - def erase(self, *args): - return _mscl.TransducerTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.TransducerTypes_swiginit(self, _mscl.new_TransducerTypes(*args)) - - def push_back(self, x): - return _mscl.TransducerTypes_push_back(self, x) - - def front(self): - return _mscl.TransducerTypes_front(self) - - def back(self): - return _mscl.TransducerTypes_back(self) - - def assign(self, n, x): - return _mscl.TransducerTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.TransducerTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.TransducerTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.TransducerTypes_reserve(self, n) - - def capacity(self): - return _mscl.TransducerTypes_capacity(self) - __swig_destroy__ = _mscl.delete_TransducerTypes - -# Register TransducerTypes in _mscl: -_mscl.TransducerTypes_swigregister(TransducerTypes) - -class EepromMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EepromMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EepromMap___nonzero__(self) - - def __bool__(self): - return _mscl.EepromMap___bool__(self) - - def __len__(self): - return _mscl.EepromMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.EepromMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.EepromMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.EepromMap_has_key(self, key) - - def keys(self): - return _mscl.EepromMap_keys(self) - - def values(self): - return _mscl.EepromMap_values(self) - - def items(self): - return _mscl.EepromMap_items(self) - - def __contains__(self, key): - return _mscl.EepromMap___contains__(self, key) - - def key_iterator(self): - return _mscl.EepromMap_key_iterator(self) - - def value_iterator(self): - return _mscl.EepromMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.EepromMap___setitem__(self, *args) - - def asdict(self): - return _mscl.EepromMap_asdict(self) - - def __init__(self, *args): - _mscl.EepromMap_swiginit(self, _mscl.new_EepromMap(*args)) - - def empty(self): - return _mscl.EepromMap_empty(self) - - def size(self): - return _mscl.EepromMap_size(self) - - def swap(self, v): - return _mscl.EepromMap_swap(self, v) - - def begin(self): - return _mscl.EepromMap_begin(self) - - def end(self): - return _mscl.EepromMap_end(self) - - def rbegin(self): - return _mscl.EepromMap_rbegin(self) - - def rend(self): - return _mscl.EepromMap_rend(self) - - def clear(self): - return _mscl.EepromMap_clear(self) - - def get_allocator(self): - return _mscl.EepromMap_get_allocator(self) - - def count(self, x): - return _mscl.EepromMap_count(self, x) - - def erase(self, *args): - return _mscl.EepromMap_erase(self, *args) - - def find(self, x): - return _mscl.EepromMap_find(self, x) - - def lower_bound(self, x): - return _mscl.EepromMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.EepromMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_EepromMap - -# Register EepromMap in _mscl: -_mscl.EepromMap_swigregister(EepromMap) - -class DerivedChannelMasks(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DerivedChannelMasks_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DerivedChannelMasks___nonzero__(self) - - def __bool__(self): - return _mscl.DerivedChannelMasks___bool__(self) - - def __len__(self): - return _mscl.DerivedChannelMasks___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DerivedChannelMasks___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DerivedChannelMasks___delitem__(self, key) - - def has_key(self, key): - return _mscl.DerivedChannelMasks_has_key(self, key) - - def keys(self): - return _mscl.DerivedChannelMasks_keys(self) - - def values(self): - return _mscl.DerivedChannelMasks_values(self) - - def items(self): - return _mscl.DerivedChannelMasks_items(self) - - def __contains__(self, key): - return _mscl.DerivedChannelMasks___contains__(self, key) - - def key_iterator(self): - return _mscl.DerivedChannelMasks_key_iterator(self) - - def value_iterator(self): - return _mscl.DerivedChannelMasks_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DerivedChannelMasks___setitem__(self, *args) - - def asdict(self): - return _mscl.DerivedChannelMasks_asdict(self) - - def __init__(self, *args): - _mscl.DerivedChannelMasks_swiginit(self, _mscl.new_DerivedChannelMasks(*args)) - - def empty(self): - return _mscl.DerivedChannelMasks_empty(self) - - def size(self): - return _mscl.DerivedChannelMasks_size(self) - - def swap(self, v): - return _mscl.DerivedChannelMasks_swap(self, v) - - def begin(self): - return _mscl.DerivedChannelMasks_begin(self) - - def end(self): - return _mscl.DerivedChannelMasks_end(self) - - def rbegin(self): - return _mscl.DerivedChannelMasks_rbegin(self) - - def rend(self): - return _mscl.DerivedChannelMasks_rend(self) - - def clear(self): - return _mscl.DerivedChannelMasks_clear(self) - - def get_allocator(self): - return _mscl.DerivedChannelMasks_get_allocator(self) - - def count(self, x): - return _mscl.DerivedChannelMasks_count(self, x) - - def erase(self, *args): - return _mscl.DerivedChannelMasks_erase(self, *args) - - def find(self, x): - return _mscl.DerivedChannelMasks_find(self, x) - - def lower_bound(self, x): - return _mscl.DerivedChannelMasks_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DerivedChannelMasks_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DerivedChannelMasks - -# Register DerivedChannelMasks in _mscl: -_mscl.DerivedChannelMasks_swigregister(DerivedChannelMasks) - -class DeviceStatusMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusMap_keys(self) - - def values(self): - return _mscl.DeviceStatusMap_values(self) - - def items(self): - return _mscl.DeviceStatusMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusMap_swiginit(self, _mscl.new_DeviceStatusMap(*args)) - - def empty(self): - return _mscl.DeviceStatusMap_empty(self) - - def size(self): - return _mscl.DeviceStatusMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusMap_begin(self) - - def end(self): - return _mscl.DeviceStatusMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusMap - -# Register DeviceStatusMap in _mscl: -_mscl.DeviceStatusMap_swigregister(DeviceStatusMap) - -class DeviceStatusValueMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DeviceStatusValueMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DeviceStatusValueMap___nonzero__(self) - - def __bool__(self): - return _mscl.DeviceStatusValueMap___bool__(self) - - def __len__(self): - return _mscl.DeviceStatusValueMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DeviceStatusValueMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DeviceStatusValueMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.DeviceStatusValueMap_has_key(self, key) - - def keys(self): - return _mscl.DeviceStatusValueMap_keys(self) - - def values(self): - return _mscl.DeviceStatusValueMap_values(self) - - def items(self): - return _mscl.DeviceStatusValueMap_items(self) - - def __contains__(self, key): - return _mscl.DeviceStatusValueMap___contains__(self, key) - - def key_iterator(self): - return _mscl.DeviceStatusValueMap_key_iterator(self) - - def value_iterator(self): - return _mscl.DeviceStatusValueMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DeviceStatusValueMap___setitem__(self, *args) - - def asdict(self): - return _mscl.DeviceStatusValueMap_asdict(self) - - def __init__(self, *args): - _mscl.DeviceStatusValueMap_swiginit(self, _mscl.new_DeviceStatusValueMap(*args)) - - def empty(self): - return _mscl.DeviceStatusValueMap_empty(self) - - def size(self): - return _mscl.DeviceStatusValueMap_size(self) - - def swap(self, v): - return _mscl.DeviceStatusValueMap_swap(self, v) - - def begin(self): - return _mscl.DeviceStatusValueMap_begin(self) - - def end(self): - return _mscl.DeviceStatusValueMap_end(self) - - def rbegin(self): - return _mscl.DeviceStatusValueMap_rbegin(self) - - def rend(self): - return _mscl.DeviceStatusValueMap_rend(self) - - def clear(self): - return _mscl.DeviceStatusValueMap_clear(self) - - def get_allocator(self): - return _mscl.DeviceStatusValueMap_get_allocator(self) - - def count(self, x): - return _mscl.DeviceStatusValueMap_count(self, x) - - def erase(self, *args): - return _mscl.DeviceStatusValueMap_erase(self, *args) - - def find(self, x): - return _mscl.DeviceStatusValueMap_find(self, x) - - def lower_bound(self, x): - return _mscl.DeviceStatusValueMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DeviceStatusValueMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DeviceStatusValueMap - -# Register DeviceStatusValueMap in _mscl: -_mscl.DeviceStatusValueMap_swigregister(DeviceStatusValueMap) - -class SampleRates(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SampleRates_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SampleRates___nonzero__(self) - - def __bool__(self): - return _mscl.SampleRates___bool__(self) - - def __len__(self): - return _mscl.SampleRates___len__(self) - - def __getslice__(self, i, j): - return _mscl.SampleRates___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SampleRates___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SampleRates___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SampleRates___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SampleRates___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SampleRates___setitem__(self, *args) - - def pop(self): - return _mscl.SampleRates_pop(self) - - def append(self, x): - return _mscl.SampleRates_append(self, x) - - def empty(self): - return _mscl.SampleRates_empty(self) - - def size(self): - return _mscl.SampleRates_size(self) - - def swap(self, v): - return _mscl.SampleRates_swap(self, v) - - def begin(self): - return _mscl.SampleRates_begin(self) - - def end(self): - return _mscl.SampleRates_end(self) - - def rbegin(self): - return _mscl.SampleRates_rbegin(self) - - def rend(self): - return _mscl.SampleRates_rend(self) - - def clear(self): - return _mscl.SampleRates_clear(self) - - def get_allocator(self): - return _mscl.SampleRates_get_allocator(self) - - def pop_back(self): - return _mscl.SampleRates_pop_back(self) - - def erase(self, *args): - return _mscl.SampleRates_erase(self, *args) - - def __init__(self, *args): - _mscl.SampleRates_swiginit(self, _mscl.new_SampleRates(*args)) - - def push_back(self, x): - return _mscl.SampleRates_push_back(self, x) - - def front(self): - return _mscl.SampleRates_front(self) - - def back(self): - return _mscl.SampleRates_back(self) - - def assign(self, n, x): - return _mscl.SampleRates_assign(self, n, x) - - def resize(self, *args): - return _mscl.SampleRates_resize(self, *args) - - def insert(self, *args): - return _mscl.SampleRates_insert(self, *args) - - def reserve(self, n): - return _mscl.SampleRates_reserve(self, n) - - def capacity(self): - return _mscl.SampleRates_capacity(self) - __swig_destroy__ = _mscl.delete_SampleRates - -# Register SampleRates in _mscl: -_mscl.SampleRates_swigregister(SampleRates) - -class ConfigIssues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConfigIssues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConfigIssues___nonzero__(self) - - def __bool__(self): - return _mscl.ConfigIssues___bool__(self) - - def __len__(self): - return _mscl.ConfigIssues___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConfigIssues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConfigIssues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConfigIssues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConfigIssues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConfigIssues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConfigIssues___setitem__(self, *args) - - def pop(self): - return _mscl.ConfigIssues_pop(self) - - def append(self, x): - return _mscl.ConfigIssues_append(self, x) - - def empty(self): - return _mscl.ConfigIssues_empty(self) - - def size(self): - return _mscl.ConfigIssues_size(self) - - def swap(self, v): - return _mscl.ConfigIssues_swap(self, v) - - def begin(self): - return _mscl.ConfigIssues_begin(self) - - def end(self): - return _mscl.ConfigIssues_end(self) - - def rbegin(self): - return _mscl.ConfigIssues_rbegin(self) - - def rend(self): - return _mscl.ConfigIssues_rend(self) - - def clear(self): - return _mscl.ConfigIssues_clear(self) - - def get_allocator(self): - return _mscl.ConfigIssues_get_allocator(self) - - def pop_back(self): - return _mscl.ConfigIssues_pop_back(self) - - def erase(self, *args): - return _mscl.ConfigIssues_erase(self, *args) - - def __init__(self, *args): - _mscl.ConfigIssues_swiginit(self, _mscl.new_ConfigIssues(*args)) - - def push_back(self, x): - return _mscl.ConfigIssues_push_back(self, x) - - def front(self): - return _mscl.ConfigIssues_front(self) - - def back(self): - return _mscl.ConfigIssues_back(self) - - def assign(self, n, x): - return _mscl.ConfigIssues_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConfigIssues_resize(self, *args) - - def insert(self, *args): - return _mscl.ConfigIssues_insert(self, *args) - - def reserve(self, n): - return _mscl.ConfigIssues_reserve(self, n) - - def capacity(self): - return _mscl.ConfigIssues_capacity(self) - __swig_destroy__ = _mscl.delete_ConfigIssues - -# Register ConfigIssues in _mscl: -_mscl.ConfigIssues_swigregister(ConfigIssues) - -class MipChannelFields(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelFields_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelFields___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelFields___bool__(self) - - def __len__(self): - return _mscl.MipChannelFields___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelFields___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelFields___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelFields___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelFields___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelFields___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelFields___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelFields_pop(self) - - def append(self, x): - return _mscl.MipChannelFields_append(self, x) - - def empty(self): - return _mscl.MipChannelFields_empty(self) - - def size(self): - return _mscl.MipChannelFields_size(self) - - def swap(self, v): - return _mscl.MipChannelFields_swap(self, v) - - def begin(self): - return _mscl.MipChannelFields_begin(self) - - def end(self): - return _mscl.MipChannelFields_end(self) - - def rbegin(self): - return _mscl.MipChannelFields_rbegin(self) - - def rend(self): - return _mscl.MipChannelFields_rend(self) - - def clear(self): - return _mscl.MipChannelFields_clear(self) - - def get_allocator(self): - return _mscl.MipChannelFields_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelFields_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelFields_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelFields_swiginit(self, _mscl.new_MipChannelFields(*args)) - - def push_back(self, x): - return _mscl.MipChannelFields_push_back(self, x) - - def front(self): - return _mscl.MipChannelFields_front(self) - - def back(self): - return _mscl.MipChannelFields_back(self) - - def assign(self, n, x): - return _mscl.MipChannelFields_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelFields_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelFields_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelFields_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelFields_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelFields - -# Register MipChannelFields in _mscl: -_mscl.MipChannelFields_swigregister(MipChannelFields) - -class MipCommands(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommands_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommands___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommands___bool__(self) - - def __len__(self): - return _mscl.MipCommands___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommands___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommands___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommands___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommands___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommands___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommands___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommands_pop(self) - - def append(self, x): - return _mscl.MipCommands_append(self, x) - - def empty(self): - return _mscl.MipCommands_empty(self) - - def size(self): - return _mscl.MipCommands_size(self) - - def swap(self, v): - return _mscl.MipCommands_swap(self, v) - - def begin(self): - return _mscl.MipCommands_begin(self) - - def end(self): - return _mscl.MipCommands_end(self) - - def rbegin(self): - return _mscl.MipCommands_rbegin(self) - - def rend(self): - return _mscl.MipCommands_rend(self) - - def clear(self): - return _mscl.MipCommands_clear(self) - - def get_allocator(self): - return _mscl.MipCommands_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommands_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommands_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommands_swiginit(self, _mscl.new_MipCommands(*args)) - - def push_back(self, x): - return _mscl.MipCommands_push_back(self, x) - - def front(self): - return _mscl.MipCommands_front(self) - - def back(self): - return _mscl.MipCommands_back(self) - - def assign(self, n, x): - return _mscl.MipCommands_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommands_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommands_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommands_reserve(self, n) - - def capacity(self): - return _mscl.MipCommands_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommands - -# Register MipCommands in _mscl: -_mscl.MipCommands_swigregister(MipCommands) - -class MipDataClasses(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipDataClasses_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipDataClasses___nonzero__(self) - - def __bool__(self): - return _mscl.MipDataClasses___bool__(self) - - def __len__(self): - return _mscl.MipDataClasses___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipDataClasses___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipDataClasses___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipDataClasses___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipDataClasses___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipDataClasses___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipDataClasses___setitem__(self, *args) - - def pop(self): - return _mscl.MipDataClasses_pop(self) - - def append(self, x): - return _mscl.MipDataClasses_append(self, x) - - def empty(self): - return _mscl.MipDataClasses_empty(self) - - def size(self): - return _mscl.MipDataClasses_size(self) - - def swap(self, v): - return _mscl.MipDataClasses_swap(self, v) - - def begin(self): - return _mscl.MipDataClasses_begin(self) - - def end(self): - return _mscl.MipDataClasses_end(self) - - def rbegin(self): - return _mscl.MipDataClasses_rbegin(self) - - def rend(self): - return _mscl.MipDataClasses_rend(self) - - def clear(self): - return _mscl.MipDataClasses_clear(self) - - def get_allocator(self): - return _mscl.MipDataClasses_get_allocator(self) - - def pop_back(self): - return _mscl.MipDataClasses_pop_back(self) - - def erase(self, *args): - return _mscl.MipDataClasses_erase(self, *args) - - def __init__(self, *args): - _mscl.MipDataClasses_swiginit(self, _mscl.new_MipDataClasses(*args)) - - def push_back(self, x): - return _mscl.MipDataClasses_push_back(self, x) - - def front(self): - return _mscl.MipDataClasses_front(self) - - def back(self): - return _mscl.MipDataClasses_back(self) - - def assign(self, n, x): - return _mscl.MipDataClasses_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipDataClasses_resize(self, *args) - - def insert(self, *args): - return _mscl.MipDataClasses_insert(self, *args) - - def reserve(self, n): - return _mscl.MipDataClasses_reserve(self, n) - - def capacity(self): - return _mscl.MipDataClasses_capacity(self) - __swig_destroy__ = _mscl.delete_MipDataClasses - -# Register MipDataClasses in _mscl: -_mscl.MipDataClasses_swigregister(MipDataClasses) - -class MipChannelIdentifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipChannelIdentifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipChannelIdentifiers___nonzero__(self) - - def __bool__(self): - return _mscl.MipChannelIdentifiers___bool__(self) - - def __len__(self): - return _mscl.MipChannelIdentifiers___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipChannelIdentifiers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipChannelIdentifiers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipChannelIdentifiers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipChannelIdentifiers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipChannelIdentifiers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipChannelIdentifiers___setitem__(self, *args) - - def pop(self): - return _mscl.MipChannelIdentifiers_pop(self) - - def append(self, x): - return _mscl.MipChannelIdentifiers_append(self, x) - - def empty(self): - return _mscl.MipChannelIdentifiers_empty(self) - - def size(self): - return _mscl.MipChannelIdentifiers_size(self) - - def swap(self, v): - return _mscl.MipChannelIdentifiers_swap(self, v) - - def begin(self): - return _mscl.MipChannelIdentifiers_begin(self) - - def end(self): - return _mscl.MipChannelIdentifiers_end(self) - - def rbegin(self): - return _mscl.MipChannelIdentifiers_rbegin(self) - - def rend(self): - return _mscl.MipChannelIdentifiers_rend(self) - - def clear(self): - return _mscl.MipChannelIdentifiers_clear(self) - - def get_allocator(self): - return _mscl.MipChannelIdentifiers_get_allocator(self) - - def pop_back(self): - return _mscl.MipChannelIdentifiers_pop_back(self) - - def erase(self, *args): - return _mscl.MipChannelIdentifiers_erase(self, *args) - - def __init__(self, *args): - _mscl.MipChannelIdentifiers_swiginit(self, _mscl.new_MipChannelIdentifiers(*args)) - - def push_back(self, x): - return _mscl.MipChannelIdentifiers_push_back(self, x) - - def front(self): - return _mscl.MipChannelIdentifiers_front(self) - - def back(self): - return _mscl.MipChannelIdentifiers_back(self) - - def assign(self, n, x): - return _mscl.MipChannelIdentifiers_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipChannelIdentifiers_resize(self, *args) - - def insert(self, *args): - return _mscl.MipChannelIdentifiers_insert(self, *args) - - def reserve(self, n): - return _mscl.MipChannelIdentifiers_reserve(self, n) - - def capacity(self): - return _mscl.MipChannelIdentifiers_capacity(self) - __swig_destroy__ = _mscl.delete_MipChannelIdentifiers - -# Register MipChannelIdentifiers in _mscl: -_mscl.MipChannelIdentifiers_swigregister(MipChannelIdentifiers) - -class MipCommandSet(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandSet_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandSet___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandSet___bool__(self) - - def __len__(self): - return _mscl.MipCommandSet___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandSet___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandSet___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandSet___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandSet___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandSet___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandSet___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandSet_pop(self) - - def append(self, x): - return _mscl.MipCommandSet_append(self, x) - - def empty(self): - return _mscl.MipCommandSet_empty(self) - - def size(self): - return _mscl.MipCommandSet_size(self) - - def swap(self, v): - return _mscl.MipCommandSet_swap(self, v) - - def begin(self): - return _mscl.MipCommandSet_begin(self) - - def end(self): - return _mscl.MipCommandSet_end(self) - - def rbegin(self): - return _mscl.MipCommandSet_rbegin(self) - - def rend(self): - return _mscl.MipCommandSet_rend(self) - - def clear(self): - return _mscl.MipCommandSet_clear(self) - - def get_allocator(self): - return _mscl.MipCommandSet_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandSet_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandSet_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandSet_swiginit(self, _mscl.new_MipCommandSet(*args)) - - def push_back(self, x): - return _mscl.MipCommandSet_push_back(self, x) - - def front(self): - return _mscl.MipCommandSet_front(self) - - def back(self): - return _mscl.MipCommandSet_back(self) - - def assign(self, n, x): - return _mscl.MipCommandSet_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandSet_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandSet_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandSet_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandSet_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandSet - -# Register MipCommandSet in _mscl: -_mscl.MipCommandSet_swigregister(MipCommandSet) - -class MipFieldValues(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipFieldValues_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipFieldValues___nonzero__(self) - - def __bool__(self): - return _mscl.MipFieldValues___bool__(self) - - def __len__(self): - return _mscl.MipFieldValues___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipFieldValues___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipFieldValues___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipFieldValues___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipFieldValues___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipFieldValues___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipFieldValues___setitem__(self, *args) - - def pop(self): - return _mscl.MipFieldValues_pop(self) - - def append(self, x): - return _mscl.MipFieldValues_append(self, x) - - def empty(self): - return _mscl.MipFieldValues_empty(self) - - def size(self): - return _mscl.MipFieldValues_size(self) - - def swap(self, v): - return _mscl.MipFieldValues_swap(self, v) - - def begin(self): - return _mscl.MipFieldValues_begin(self) - - def end(self): - return _mscl.MipFieldValues_end(self) - - def rbegin(self): - return _mscl.MipFieldValues_rbegin(self) - - def rend(self): - return _mscl.MipFieldValues_rend(self) - - def clear(self): - return _mscl.MipFieldValues_clear(self) - - def get_allocator(self): - return _mscl.MipFieldValues_get_allocator(self) - - def pop_back(self): - return _mscl.MipFieldValues_pop_back(self) - - def erase(self, *args): - return _mscl.MipFieldValues_erase(self, *args) - - def __init__(self, *args): - _mscl.MipFieldValues_swiginit(self, _mscl.new_MipFieldValues(*args)) - - def push_back(self, x): - return _mscl.MipFieldValues_push_back(self, x) - - def front(self): - return _mscl.MipFieldValues_front(self) - - def back(self): - return _mscl.MipFieldValues_back(self) - - def assign(self, n, x): - return _mscl.MipFieldValues_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipFieldValues_resize(self, *args) - - def insert(self, *args): - return _mscl.MipFieldValues_insert(self, *args) - - def reserve(self, n): - return _mscl.MipFieldValues_reserve(self, n) - - def capacity(self): - return _mscl.MipFieldValues_capacity(self) - __swig_destroy__ = _mscl.delete_MipFieldValues - -# Register MipFieldValues in _mscl: -_mscl.MipFieldValues_swigregister(MipFieldValues) - -class MipCommandParamPair(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.MipCommandParamPair_swiginit(self, _mscl.new_MipCommandParamPair(*args)) - first = property(_mscl.MipCommandParamPair_first_get, _mscl.MipCommandParamPair_first_set) - second = property(_mscl.MipCommandParamPair_second_get, _mscl.MipCommandParamPair_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_MipCommandParamPair - -# Register MipCommandParamPair in _mscl: -_mscl.MipCommandParamPair_swigregister(MipCommandParamPair) - -class MipCommandParameters(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MipCommandParameters_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MipCommandParameters___nonzero__(self) - - def __bool__(self): - return _mscl.MipCommandParameters___bool__(self) - - def __len__(self): - return _mscl.MipCommandParameters___len__(self) - - def __getslice__(self, i, j): - return _mscl.MipCommandParameters___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.MipCommandParameters___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.MipCommandParameters___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.MipCommandParameters___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.MipCommandParameters___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.MipCommandParameters___setitem__(self, *args) - - def pop(self): - return _mscl.MipCommandParameters_pop(self) - - def append(self, x): - return _mscl.MipCommandParameters_append(self, x) - - def empty(self): - return _mscl.MipCommandParameters_empty(self) - - def size(self): - return _mscl.MipCommandParameters_size(self) - - def swap(self, v): - return _mscl.MipCommandParameters_swap(self, v) - - def begin(self): - return _mscl.MipCommandParameters_begin(self) - - def end(self): - return _mscl.MipCommandParameters_end(self) - - def rbegin(self): - return _mscl.MipCommandParameters_rbegin(self) - - def rend(self): - return _mscl.MipCommandParameters_rend(self) - - def clear(self): - return _mscl.MipCommandParameters_clear(self) - - def get_allocator(self): - return _mscl.MipCommandParameters_get_allocator(self) - - def pop_back(self): - return _mscl.MipCommandParameters_pop_back(self) - - def erase(self, *args): - return _mscl.MipCommandParameters_erase(self, *args) - - def __init__(self, *args): - _mscl.MipCommandParameters_swiginit(self, _mscl.new_MipCommandParameters(*args)) - - def push_back(self, x): - return _mscl.MipCommandParameters_push_back(self, x) - - def front(self): - return _mscl.MipCommandParameters_front(self) - - def back(self): - return _mscl.MipCommandParameters_back(self) - - def assign(self, n, x): - return _mscl.MipCommandParameters_assign(self, n, x) - - def resize(self, *args): - return _mscl.MipCommandParameters_resize(self, *args) - - def insert(self, *args): - return _mscl.MipCommandParameters_insert(self, *args) - - def reserve(self, n): - return _mscl.MipCommandParameters_reserve(self, n) - - def capacity(self): - return _mscl.MipCommandParameters_capacity(self) - __swig_destroy__ = _mscl.delete_MipCommandParameters - -# Register MipCommandParameters in _mscl: -_mscl.MipCommandParameters_swigregister(MipCommandParameters) - -class ChannelIndex(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.ChannelIndex_swiginit(self, _mscl.new_ChannelIndex(*args)) - first = property(_mscl.ChannelIndex_first_get, _mscl.ChannelIndex_first_set) - second = property(_mscl.ChannelIndex_second_get, _mscl.ChannelIndex_second_set) - def __len__(self): - return 2 - def __repr__(self): - return str((self.first, self.second)) - def __getitem__(self, index): - if not (index % 2): - return self.first - else: - return self.second - def __setitem__(self, index, val): - if not (index % 2): - self.first = val - else: - self.second = val - __swig_destroy__ = _mscl.delete_ChannelIndex - -# Register ChannelIndex in _mscl: -_mscl.ChannelIndex_swigregister(ChannelIndex) - -class ChannelIndices(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelIndices_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelIndices___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelIndices___bool__(self) - - def __len__(self): - return _mscl.ChannelIndices___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelIndices___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelIndices___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelIndices___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelIndices___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelIndices___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelIndices___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelIndices_pop(self) - - def append(self, x): - return _mscl.ChannelIndices_append(self, x) - - def empty(self): - return _mscl.ChannelIndices_empty(self) - - def size(self): - return _mscl.ChannelIndices_size(self) - - def swap(self, v): - return _mscl.ChannelIndices_swap(self, v) - - def begin(self): - return _mscl.ChannelIndices_begin(self) - - def end(self): - return _mscl.ChannelIndices_end(self) - - def rbegin(self): - return _mscl.ChannelIndices_rbegin(self) - - def rend(self): - return _mscl.ChannelIndices_rend(self) - - def clear(self): - return _mscl.ChannelIndices_clear(self) - - def get_allocator(self): - return _mscl.ChannelIndices_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelIndices_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelIndices_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelIndices_swiginit(self, _mscl.new_ChannelIndices(*args)) - - def push_back(self, x): - return _mscl.ChannelIndices_push_back(self, x) - - def front(self): - return _mscl.ChannelIndices_front(self) - - def back(self): - return _mscl.ChannelIndices_back(self) - - def assign(self, n, x): - return _mscl.ChannelIndices_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelIndices_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelIndices_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelIndices_reserve(self, n) - - def capacity(self): - return _mscl.ChannelIndices_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelIndices - -# Register ChannelIndices in _mscl: -_mscl.ChannelIndices_swigregister(ChannelIndices) - -class ChannelFieldQualifiers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelFieldQualifiers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelFieldQualifiers___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelFieldQualifiers___bool__(self) - - def __len__(self): - return _mscl.ChannelFieldQualifiers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelFieldQualifiers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelFieldQualifiers___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelFieldQualifiers_has_key(self, key) - - def keys(self): - return _mscl.ChannelFieldQualifiers_keys(self) - - def values(self): - return _mscl.ChannelFieldQualifiers_values(self) - - def items(self): - return _mscl.ChannelFieldQualifiers_items(self) - - def __contains__(self, key): - return _mscl.ChannelFieldQualifiers___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelFieldQualifiers_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelFieldQualifiers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelFieldQualifiers___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelFieldQualifiers_asdict(self) - - def __init__(self, *args): - _mscl.ChannelFieldQualifiers_swiginit(self, _mscl.new_ChannelFieldQualifiers(*args)) - - def empty(self): - return _mscl.ChannelFieldQualifiers_empty(self) - - def size(self): - return _mscl.ChannelFieldQualifiers_size(self) - - def swap(self, v): - return _mscl.ChannelFieldQualifiers_swap(self, v) - - def begin(self): - return _mscl.ChannelFieldQualifiers_begin(self) - - def end(self): - return _mscl.ChannelFieldQualifiers_end(self) - - def rbegin(self): - return _mscl.ChannelFieldQualifiers_rbegin(self) - - def rend(self): - return _mscl.ChannelFieldQualifiers_rend(self) - - def clear(self): - return _mscl.ChannelFieldQualifiers_clear(self) - - def get_allocator(self): - return _mscl.ChannelFieldQualifiers_get_allocator(self) - - def count(self, x): - return _mscl.ChannelFieldQualifiers_count(self, x) - - def erase(self, *args): - return _mscl.ChannelFieldQualifiers_erase(self, *args) - - def find(self, x): - return _mscl.ChannelFieldQualifiers_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelFieldQualifiers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelFieldQualifiers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelFieldQualifiers - -# Register ChannelFieldQualifiers in _mscl: -_mscl.ChannelFieldQualifiers_swigregister(ChannelFieldQualifiers) - -class GnssReceivers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssReceivers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssReceivers___nonzero__(self) - - def __bool__(self): - return _mscl.GnssReceivers___bool__(self) - - def __len__(self): - return _mscl.GnssReceivers___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssReceivers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssReceivers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssReceivers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssReceivers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssReceivers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssReceivers___setitem__(self, *args) - - def pop(self): - return _mscl.GnssReceivers_pop(self) - - def append(self, x): - return _mscl.GnssReceivers_append(self, x) - - def empty(self): - return _mscl.GnssReceivers_empty(self) - - def size(self): - return _mscl.GnssReceivers_size(self) - - def swap(self, v): - return _mscl.GnssReceivers_swap(self, v) - - def begin(self): - return _mscl.GnssReceivers_begin(self) - - def end(self): - return _mscl.GnssReceivers_end(self) - - def rbegin(self): - return _mscl.GnssReceivers_rbegin(self) - - def rend(self): - return _mscl.GnssReceivers_rend(self) - - def clear(self): - return _mscl.GnssReceivers_clear(self) - - def get_allocator(self): - return _mscl.GnssReceivers_get_allocator(self) - - def pop_back(self): - return _mscl.GnssReceivers_pop_back(self) - - def erase(self, *args): - return _mscl.GnssReceivers_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssReceivers_swiginit(self, _mscl.new_GnssReceivers(*args)) - - def push_back(self, x): - return _mscl.GnssReceivers_push_back(self, x) - - def front(self): - return _mscl.GnssReceivers_front(self) - - def back(self): - return _mscl.GnssReceivers_back(self) - - def assign(self, n, x): - return _mscl.GnssReceivers_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssReceivers_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssReceivers_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssReceivers_reserve(self, n) - - def capacity(self): - return _mscl.GnssReceivers_capacity(self) - __swig_destroy__ = _mscl.delete_GnssReceivers - -# Register GnssReceivers in _mscl: -_mscl.GnssReceivers_swigregister(GnssReceivers) - -class SensorRanges(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRanges_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRanges___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRanges___bool__(self) - - def __len__(self): - return _mscl.SensorRanges___len__(self) - - def __getslice__(self, i, j): - return _mscl.SensorRanges___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SensorRanges___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SensorRanges___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SensorRanges___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SensorRanges___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SensorRanges___setitem__(self, *args) - - def pop(self): - return _mscl.SensorRanges_pop(self) - - def append(self, x): - return _mscl.SensorRanges_append(self, x) - - def empty(self): - return _mscl.SensorRanges_empty(self) - - def size(self): - return _mscl.SensorRanges_size(self) - - def swap(self, v): - return _mscl.SensorRanges_swap(self, v) - - def begin(self): - return _mscl.SensorRanges_begin(self) - - def end(self): - return _mscl.SensorRanges_end(self) - - def rbegin(self): - return _mscl.SensorRanges_rbegin(self) - - def rend(self): - return _mscl.SensorRanges_rend(self) - - def clear(self): - return _mscl.SensorRanges_clear(self) - - def get_allocator(self): - return _mscl.SensorRanges_get_allocator(self) - - def pop_back(self): - return _mscl.SensorRanges_pop_back(self) - - def erase(self, *args): - return _mscl.SensorRanges_erase(self, *args) - - def __init__(self, *args): - _mscl.SensorRanges_swiginit(self, _mscl.new_SensorRanges(*args)) - - def push_back(self, x): - return _mscl.SensorRanges_push_back(self, x) - - def front(self): - return _mscl.SensorRanges_front(self) - - def back(self): - return _mscl.SensorRanges_back(self) - - def assign(self, n, x): - return _mscl.SensorRanges_assign(self, n, x) - - def resize(self, *args): - return _mscl.SensorRanges_resize(self, *args) - - def insert(self, *args): - return _mscl.SensorRanges_insert(self, *args) - - def reserve(self, n): - return _mscl.SensorRanges_reserve(self, n) - - def capacity(self): - return _mscl.SensorRanges_capacity(self) - __swig_destroy__ = _mscl.delete_SensorRanges - -# Register SensorRanges in _mscl: -_mscl.SensorRanges_swigregister(SensorRanges) - -class SensorRangeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SensorRangeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SensorRangeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.SensorRangeOptions___bool__(self) - - def __len__(self): - return _mscl.SensorRangeOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SensorRangeOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SensorRangeOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.SensorRangeOptions_has_key(self, key) - - def keys(self): - return _mscl.SensorRangeOptions_keys(self) - - def values(self): - return _mscl.SensorRangeOptions_values(self) - - def items(self): - return _mscl.SensorRangeOptions_items(self) - - def __contains__(self, key): - return _mscl.SensorRangeOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.SensorRangeOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.SensorRangeOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SensorRangeOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.SensorRangeOptions_asdict(self) - - def __init__(self, *args): - _mscl.SensorRangeOptions_swiginit(self, _mscl.new_SensorRangeOptions(*args)) - - def empty(self): - return _mscl.SensorRangeOptions_empty(self) - - def size(self): - return _mscl.SensorRangeOptions_size(self) - - def swap(self, v): - return _mscl.SensorRangeOptions_swap(self, v) - - def begin(self): - return _mscl.SensorRangeOptions_begin(self) - - def end(self): - return _mscl.SensorRangeOptions_end(self) - - def rbegin(self): - return _mscl.SensorRangeOptions_rbegin(self) - - def rend(self): - return _mscl.SensorRangeOptions_rend(self) - - def clear(self): - return _mscl.SensorRangeOptions_clear(self) - - def get_allocator(self): - return _mscl.SensorRangeOptions_get_allocator(self) - - def count(self, x): - return _mscl.SensorRangeOptions_count(self, x) - - def erase(self, *args): - return _mscl.SensorRangeOptions_erase(self, *args) - - def find(self, x): - return _mscl.SensorRangeOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.SensorRangeOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SensorRangeOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SensorRangeOptions - -# Register SensorRangeOptions in _mscl: -_mscl.SensorRangeOptions_swigregister(SensorRangeOptions) - -class CommPortInfo(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.CommPortInfo_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.CommPortInfo___nonzero__(self) - - def __bool__(self): - return _mscl.CommPortInfo___bool__(self) - - def __len__(self): - return _mscl.CommPortInfo___len__(self) - - def __getslice__(self, i, j): - return _mscl.CommPortInfo___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.CommPortInfo___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.CommPortInfo___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.CommPortInfo___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.CommPortInfo___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.CommPortInfo___setitem__(self, *args) - - def pop(self): - return _mscl.CommPortInfo_pop(self) - - def append(self, x): - return _mscl.CommPortInfo_append(self, x) - - def empty(self): - return _mscl.CommPortInfo_empty(self) - - def size(self): - return _mscl.CommPortInfo_size(self) - - def swap(self, v): - return _mscl.CommPortInfo_swap(self, v) - - def begin(self): - return _mscl.CommPortInfo_begin(self) - - def end(self): - return _mscl.CommPortInfo_end(self) - - def rbegin(self): - return _mscl.CommPortInfo_rbegin(self) - - def rend(self): - return _mscl.CommPortInfo_rend(self) - - def clear(self): - return _mscl.CommPortInfo_clear(self) - - def get_allocator(self): - return _mscl.CommPortInfo_get_allocator(self) - - def pop_back(self): - return _mscl.CommPortInfo_pop_back(self) - - def erase(self, *args): - return _mscl.CommPortInfo_erase(self, *args) - - def __init__(self, *args): - _mscl.CommPortInfo_swiginit(self, _mscl.new_CommPortInfo(*args)) - - def push_back(self, x): - return _mscl.CommPortInfo_push_back(self, x) - - def front(self): - return _mscl.CommPortInfo_front(self) - - def back(self): - return _mscl.CommPortInfo_back(self) - - def assign(self, n, x): - return _mscl.CommPortInfo_assign(self, n, x) - - def resize(self, *args): - return _mscl.CommPortInfo_resize(self, *args) - - def insert(self, *args): - return _mscl.CommPortInfo_insert(self, *args) - - def reserve(self, n): - return _mscl.CommPortInfo_reserve(self, n) - - def capacity(self): - return _mscl.CommPortInfo_capacity(self) - __swig_destroy__ = _mscl.delete_CommPortInfo - -# Register CommPortInfo in _mscl: -_mscl.CommPortInfo_swigregister(CommPortInfo) - -class EventTriggerStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTriggerStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTriggerStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventTriggerStatus___bool__(self) - - def __len__(self): - return _mscl.EventTriggerStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTriggerStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTriggerStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTriggerStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTriggerStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTriggerStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTriggerStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventTriggerStatus_pop(self) - - def append(self, x): - return _mscl.EventTriggerStatus_append(self, x) - - def empty(self): - return _mscl.EventTriggerStatus_empty(self) - - def size(self): - return _mscl.EventTriggerStatus_size(self) - - def swap(self, v): - return _mscl.EventTriggerStatus_swap(self, v) - - def begin(self): - return _mscl.EventTriggerStatus_begin(self) - - def end(self): - return _mscl.EventTriggerStatus_end(self) - - def rbegin(self): - return _mscl.EventTriggerStatus_rbegin(self) - - def rend(self): - return _mscl.EventTriggerStatus_rend(self) - - def clear(self): - return _mscl.EventTriggerStatus_clear(self) - - def get_allocator(self): - return _mscl.EventTriggerStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventTriggerStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventTriggerStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTriggerStatus_swiginit(self, _mscl.new_EventTriggerStatus(*args)) - - def push_back(self, x): - return _mscl.EventTriggerStatus_push_back(self, x) - - def front(self): - return _mscl.EventTriggerStatus_front(self) - - def back(self): - return _mscl.EventTriggerStatus_back(self) - - def assign(self, n, x): - return _mscl.EventTriggerStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTriggerStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTriggerStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTriggerStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventTriggerStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventTriggerStatus - -# Register EventTriggerStatus in _mscl: -_mscl.EventTriggerStatus_swigregister(EventTriggerStatus) - -class EventActionStatus(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventActionStatus_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventActionStatus___nonzero__(self) - - def __bool__(self): - return _mscl.EventActionStatus___bool__(self) - - def __len__(self): - return _mscl.EventActionStatus___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventActionStatus___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventActionStatus___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventActionStatus___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventActionStatus___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventActionStatus___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventActionStatus___setitem__(self, *args) - - def pop(self): - return _mscl.EventActionStatus_pop(self) - - def append(self, x): - return _mscl.EventActionStatus_append(self, x) - - def empty(self): - return _mscl.EventActionStatus_empty(self) - - def size(self): - return _mscl.EventActionStatus_size(self) - - def swap(self, v): - return _mscl.EventActionStatus_swap(self, v) - - def begin(self): - return _mscl.EventActionStatus_begin(self) - - def end(self): - return _mscl.EventActionStatus_end(self) - - def rbegin(self): - return _mscl.EventActionStatus_rbegin(self) - - def rend(self): - return _mscl.EventActionStatus_rend(self) - - def clear(self): - return _mscl.EventActionStatus_clear(self) - - def get_allocator(self): - return _mscl.EventActionStatus_get_allocator(self) - - def pop_back(self): - return _mscl.EventActionStatus_pop_back(self) - - def erase(self, *args): - return _mscl.EventActionStatus_erase(self, *args) - - def __init__(self, *args): - _mscl.EventActionStatus_swiginit(self, _mscl.new_EventActionStatus(*args)) - - def push_back(self, x): - return _mscl.EventActionStatus_push_back(self, x) - - def front(self): - return _mscl.EventActionStatus_front(self) - - def back(self): - return _mscl.EventActionStatus_back(self) - - def assign(self, n, x): - return _mscl.EventActionStatus_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventActionStatus_resize(self, *args) - - def insert(self, *args): - return _mscl.EventActionStatus_insert(self, *args) - - def reserve(self, n): - return _mscl.EventActionStatus_reserve(self, n) - - def capacity(self): - return _mscl.EventActionStatus_capacity(self) - __swig_destroy__ = _mscl.delete_EventActionStatus - -# Register EventActionStatus in _mscl: -_mscl.EventActionStatus_swigregister(EventActionStatus) - -class ChannelGroups(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelGroups_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelGroups___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelGroups___bool__(self) - - def __len__(self): - return _mscl.ChannelGroups___len__(self) - - def __getslice__(self, i, j): - return _mscl.ChannelGroups___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ChannelGroups___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ChannelGroups___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ChannelGroups___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ChannelGroups___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ChannelGroups___setitem__(self, *args) - - def pop(self): - return _mscl.ChannelGroups_pop(self) - - def append(self, x): - return _mscl.ChannelGroups_append(self, x) - - def empty(self): - return _mscl.ChannelGroups_empty(self) - - def size(self): - return _mscl.ChannelGroups_size(self) - - def swap(self, v): - return _mscl.ChannelGroups_swap(self, v) - - def begin(self): - return _mscl.ChannelGroups_begin(self) - - def end(self): - return _mscl.ChannelGroups_end(self) - - def rbegin(self): - return _mscl.ChannelGroups_rbegin(self) - - def rend(self): - return _mscl.ChannelGroups_rend(self) - - def clear(self): - return _mscl.ChannelGroups_clear(self) - - def get_allocator(self): - return _mscl.ChannelGroups_get_allocator(self) - - def pop_back(self): - return _mscl.ChannelGroups_pop_back(self) - - def erase(self, *args): - return _mscl.ChannelGroups_erase(self, *args) - - def __init__(self, *args): - _mscl.ChannelGroups_swiginit(self, _mscl.new_ChannelGroups(*args)) - - def push_back(self, x): - return _mscl.ChannelGroups_push_back(self, x) - - def front(self): - return _mscl.ChannelGroups_front(self) - - def back(self): - return _mscl.ChannelGroups_back(self) - - def assign(self, n, x): - return _mscl.ChannelGroups_assign(self, n, x) - - def resize(self, *args): - return _mscl.ChannelGroups_resize(self, *args) - - def insert(self, *args): - return _mscl.ChannelGroups_insert(self, *args) - - def reserve(self, n): - return _mscl.ChannelGroups_reserve(self, n) - - def capacity(self): - return _mscl.ChannelGroups_capacity(self) - __swig_destroy__ = _mscl.delete_ChannelGroups - -# Register ChannelGroups in _mscl: -_mscl.ChannelGroups_swigregister(ChannelGroups) - -class WirelessChannels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessChannels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessChannels___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessChannels___bool__(self) - - def __len__(self): - return _mscl.WirelessChannels___len__(self) - - def __getslice__(self, i, j): - return _mscl.WirelessChannels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.WirelessChannels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.WirelessChannels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.WirelessChannels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.WirelessChannels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.WirelessChannels___setitem__(self, *args) - - def pop(self): - return _mscl.WirelessChannels_pop(self) - - def append(self, x): - return _mscl.WirelessChannels_append(self, x) - - def empty(self): - return _mscl.WirelessChannels_empty(self) - - def size(self): - return _mscl.WirelessChannels_size(self) - - def swap(self, v): - return _mscl.WirelessChannels_swap(self, v) - - def begin(self): - return _mscl.WirelessChannels_begin(self) - - def end(self): - return _mscl.WirelessChannels_end(self) - - def rbegin(self): - return _mscl.WirelessChannels_rbegin(self) - - def rend(self): - return _mscl.WirelessChannels_rend(self) - - def clear(self): - return _mscl.WirelessChannels_clear(self) - - def get_allocator(self): - return _mscl.WirelessChannels_get_allocator(self) - - def pop_back(self): - return _mscl.WirelessChannels_pop_back(self) - - def erase(self, *args): - return _mscl.WirelessChannels_erase(self, *args) - - def __init__(self, *args): - _mscl.WirelessChannels_swiginit(self, _mscl.new_WirelessChannels(*args)) - - def push_back(self, x): - return _mscl.WirelessChannels_push_back(self, x) - - def front(self): - return _mscl.WirelessChannels_front(self) - - def back(self): - return _mscl.WirelessChannels_back(self) - - def assign(self, n, x): - return _mscl.WirelessChannels_assign(self, n, x) - - def resize(self, *args): - return _mscl.WirelessChannels_resize(self, *args) - - def insert(self, *args): - return _mscl.WirelessChannels_insert(self, *args) - - def reserve(self, n): - return _mscl.WirelessChannels_reserve(self, n) - - def capacity(self): - return _mscl.WirelessChannels_capacity(self) - __swig_destroy__ = _mscl.delete_WirelessChannels - -# Register WirelessChannels in _mscl: -_mscl.WirelessChannels_swigregister(WirelessChannels) - -class DamageAngles(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.DamageAngles_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.DamageAngles___nonzero__(self) - - def __bool__(self): - return _mscl.DamageAngles___bool__(self) - - def __len__(self): - return _mscl.DamageAngles___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.DamageAngles___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.DamageAngles___delitem__(self, key) - - def has_key(self, key): - return _mscl.DamageAngles_has_key(self, key) - - def keys(self): - return _mscl.DamageAngles_keys(self) - - def values(self): - return _mscl.DamageAngles_values(self) - - def items(self): - return _mscl.DamageAngles_items(self) - - def __contains__(self, key): - return _mscl.DamageAngles___contains__(self, key) - - def key_iterator(self): - return _mscl.DamageAngles_key_iterator(self) - - def value_iterator(self): - return _mscl.DamageAngles_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.DamageAngles___setitem__(self, *args) - - def asdict(self): - return _mscl.DamageAngles_asdict(self) - - def __init__(self, *args): - _mscl.DamageAngles_swiginit(self, _mscl.new_DamageAngles(*args)) - - def empty(self): - return _mscl.DamageAngles_empty(self) - - def size(self): - return _mscl.DamageAngles_size(self) - - def swap(self, v): - return _mscl.DamageAngles_swap(self, v) - - def begin(self): - return _mscl.DamageAngles_begin(self) - - def end(self): - return _mscl.DamageAngles_end(self) - - def rbegin(self): - return _mscl.DamageAngles_rbegin(self) - - def rend(self): - return _mscl.DamageAngles_rend(self) - - def clear(self): - return _mscl.DamageAngles_clear(self) - - def get_allocator(self): - return _mscl.DamageAngles_get_allocator(self) - - def count(self, x): - return _mscl.DamageAngles_count(self, x) - - def erase(self, *args): - return _mscl.DamageAngles_erase(self, *args) - - def find(self, x): - return _mscl.DamageAngles_find(self, x) - - def lower_bound(self, x): - return _mscl.DamageAngles_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.DamageAngles_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_DamageAngles - -# Register DamageAngles in _mscl: -_mscl.DamageAngles_swigregister(DamageAngles) - -class SnCurveSegments(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SnCurveSegments_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SnCurveSegments___nonzero__(self) - - def __bool__(self): - return _mscl.SnCurveSegments___bool__(self) - - def __len__(self): - return _mscl.SnCurveSegments___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.SnCurveSegments___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.SnCurveSegments___delitem__(self, key) - - def has_key(self, key): - return _mscl.SnCurveSegments_has_key(self, key) - - def keys(self): - return _mscl.SnCurveSegments_keys(self) - - def values(self): - return _mscl.SnCurveSegments_values(self) - - def items(self): - return _mscl.SnCurveSegments_items(self) - - def __contains__(self, key): - return _mscl.SnCurveSegments___contains__(self, key) - - def key_iterator(self): - return _mscl.SnCurveSegments_key_iterator(self) - - def value_iterator(self): - return _mscl.SnCurveSegments_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.SnCurveSegments___setitem__(self, *args) - - def asdict(self): - return _mscl.SnCurveSegments_asdict(self) - - def __init__(self, *args): - _mscl.SnCurveSegments_swiginit(self, _mscl.new_SnCurveSegments(*args)) - - def empty(self): - return _mscl.SnCurveSegments_empty(self) - - def size(self): - return _mscl.SnCurveSegments_size(self) - - def swap(self, v): - return _mscl.SnCurveSegments_swap(self, v) - - def begin(self): - return _mscl.SnCurveSegments_begin(self) - - def end(self): - return _mscl.SnCurveSegments_end(self) - - def rbegin(self): - return _mscl.SnCurveSegments_rbegin(self) - - def rend(self): - return _mscl.SnCurveSegments_rend(self) - - def clear(self): - return _mscl.SnCurveSegments_clear(self) - - def get_allocator(self): - return _mscl.SnCurveSegments_get_allocator(self) - - def count(self, x): - return _mscl.SnCurveSegments_count(self, x) - - def erase(self, *args): - return _mscl.SnCurveSegments_erase(self, *args) - - def find(self, x): - return _mscl.SnCurveSegments_find(self, x) - - def lower_bound(self, x): - return _mscl.SnCurveSegments_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.SnCurveSegments_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_SnCurveSegments - -# Register SnCurveSegments in _mscl: -_mscl.SnCurveSegments_swigregister(SnCurveSegments) - -class RfSweep(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.RfSweep_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.RfSweep___nonzero__(self) - - def __bool__(self): - return _mscl.RfSweep___bool__(self) - - def __len__(self): - return _mscl.RfSweep___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.RfSweep___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.RfSweep___delitem__(self, key) - - def has_key(self, key): - return _mscl.RfSweep_has_key(self, key) - - def keys(self): - return _mscl.RfSweep_keys(self) - - def values(self): - return _mscl.RfSweep_values(self) - - def items(self): - return _mscl.RfSweep_items(self) - - def __contains__(self, key): - return _mscl.RfSweep___contains__(self, key) - - def key_iterator(self): - return _mscl.RfSweep_key_iterator(self) - - def value_iterator(self): - return _mscl.RfSweep_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.RfSweep___setitem__(self, *args) - - def asdict(self): - return _mscl.RfSweep_asdict(self) - - def __init__(self, *args): - _mscl.RfSweep_swiginit(self, _mscl.new_RfSweep(*args)) - - def empty(self): - return _mscl.RfSweep_empty(self) - - def size(self): - return _mscl.RfSweep_size(self) - - def swap(self, v): - return _mscl.RfSweep_swap(self, v) - - def begin(self): - return _mscl.RfSweep_begin(self) - - def end(self): - return _mscl.RfSweep_end(self) - - def rbegin(self): - return _mscl.RfSweep_rbegin(self) - - def rend(self): - return _mscl.RfSweep_rend(self) - - def clear(self): - return _mscl.RfSweep_clear(self) - - def get_allocator(self): - return _mscl.RfSweep_get_allocator(self) - - def count(self, x): - return _mscl.RfSweep_count(self, x) - - def erase(self, *args): - return _mscl.RfSweep_erase(self, *args) - - def find(self, x): - return _mscl.RfSweep_find(self, x) - - def lower_bound(self, x): - return _mscl.RfSweep_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.RfSweep_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_RfSweep - -# Register RfSweep in _mscl: -_mscl.RfSweep_swigregister(RfSweep) - -class Triggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Triggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Triggers___nonzero__(self) - - def __bool__(self): - return _mscl.Triggers___bool__(self) - - def __len__(self): - return _mscl.Triggers___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.Triggers___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.Triggers___delitem__(self, key) - - def has_key(self, key): - return _mscl.Triggers_has_key(self, key) - - def keys(self): - return _mscl.Triggers_keys(self) - - def values(self): - return _mscl.Triggers_values(self) - - def items(self): - return _mscl.Triggers_items(self) - - def __contains__(self, key): - return _mscl.Triggers___contains__(self, key) - - def key_iterator(self): - return _mscl.Triggers_key_iterator(self) - - def value_iterator(self): - return _mscl.Triggers_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.Triggers___setitem__(self, *args) - - def asdict(self): - return _mscl.Triggers_asdict(self) - - def __init__(self, *args): - _mscl.Triggers_swiginit(self, _mscl.new_Triggers(*args)) - - def empty(self): - return _mscl.Triggers_empty(self) - - def size(self): - return _mscl.Triggers_size(self) - - def swap(self, v): - return _mscl.Triggers_swap(self, v) - - def begin(self): - return _mscl.Triggers_begin(self) - - def end(self): - return _mscl.Triggers_end(self) - - def rbegin(self): - return _mscl.Triggers_rbegin(self) - - def rend(self): - return _mscl.Triggers_rend(self) - - def clear(self): - return _mscl.Triggers_clear(self) - - def get_allocator(self): - return _mscl.Triggers_get_allocator(self) - - def count(self, x): - return _mscl.Triggers_count(self, x) - - def erase(self, *args): - return _mscl.Triggers_erase(self, *args) - - def find(self, x): - return _mscl.Triggers_find(self, x) - - def lower_bound(self, x): - return _mscl.Triggers_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.Triggers_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_Triggers - -# Register Triggers in _mscl: -_mscl.Triggers_swigregister(Triggers) - -class ChannelCalMap(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ChannelCalMap_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ChannelCalMap___nonzero__(self) - - def __bool__(self): - return _mscl.ChannelCalMap___bool__(self) - - def __len__(self): - return _mscl.ChannelCalMap___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.ChannelCalMap___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.ChannelCalMap___delitem__(self, key) - - def has_key(self, key): - return _mscl.ChannelCalMap_has_key(self, key) - - def keys(self): - return _mscl.ChannelCalMap_keys(self) - - def values(self): - return _mscl.ChannelCalMap_values(self) - - def items(self): - return _mscl.ChannelCalMap_items(self) - - def __contains__(self, key): - return _mscl.ChannelCalMap___contains__(self, key) - - def key_iterator(self): - return _mscl.ChannelCalMap_key_iterator(self) - - def value_iterator(self): - return _mscl.ChannelCalMap_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.ChannelCalMap___setitem__(self, *args) - - def asdict(self): - return _mscl.ChannelCalMap_asdict(self) - - def __init__(self, *args): - _mscl.ChannelCalMap_swiginit(self, _mscl.new_ChannelCalMap(*args)) - - def empty(self): - return _mscl.ChannelCalMap_empty(self) - - def size(self): - return _mscl.ChannelCalMap_size(self) - - def swap(self, v): - return _mscl.ChannelCalMap_swap(self, v) - - def begin(self): - return _mscl.ChannelCalMap_begin(self) - - def end(self): - return _mscl.ChannelCalMap_end(self) - - def rbegin(self): - return _mscl.ChannelCalMap_rbegin(self) - - def rend(self): - return _mscl.ChannelCalMap_rend(self) - - def clear(self): - return _mscl.ChannelCalMap_clear(self) - - def get_allocator(self): - return _mscl.ChannelCalMap_get_allocator(self) - - def count(self, x): - return _mscl.ChannelCalMap_count(self, x) - - def erase(self, *args): - return _mscl.ChannelCalMap_erase(self, *args) - - def find(self, x): - return _mscl.ChannelCalMap_find(self, x) - - def lower_bound(self, x): - return _mscl.ChannelCalMap_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.ChannelCalMap_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_ChannelCalMap - -# Register ChannelCalMap in _mscl: -_mscl.ChannelCalMap_swigregister(ChannelCalMap) - -class WirelessPollData(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.WirelessPollData_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.WirelessPollData___nonzero__(self) - - def __bool__(self): - return _mscl.WirelessPollData___bool__(self) - - def __len__(self): - return _mscl.WirelessPollData___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.WirelessPollData___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.WirelessPollData___delitem__(self, key) - - def has_key(self, key): - return _mscl.WirelessPollData_has_key(self, key) - - def keys(self): - return _mscl.WirelessPollData_keys(self) - - def values(self): - return _mscl.WirelessPollData_values(self) - - def items(self): - return _mscl.WirelessPollData_items(self) - - def __contains__(self, key): - return _mscl.WirelessPollData___contains__(self, key) - - def key_iterator(self): - return _mscl.WirelessPollData_key_iterator(self) - - def value_iterator(self): - return _mscl.WirelessPollData_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.WirelessPollData___setitem__(self, *args) - - def asdict(self): - return _mscl.WirelessPollData_asdict(self) - - def __init__(self, *args): - _mscl.WirelessPollData_swiginit(self, _mscl.new_WirelessPollData(*args)) - - def empty(self): - return _mscl.WirelessPollData_empty(self) - - def size(self): - return _mscl.WirelessPollData_size(self) - - def swap(self, v): - return _mscl.WirelessPollData_swap(self, v) - - def begin(self): - return _mscl.WirelessPollData_begin(self) - - def end(self): - return _mscl.WirelessPollData_end(self) - - def rbegin(self): - return _mscl.WirelessPollData_rbegin(self) - - def rend(self): - return _mscl.WirelessPollData_rend(self) - - def clear(self): - return _mscl.WirelessPollData_clear(self) - - def get_allocator(self): - return _mscl.WirelessPollData_get_allocator(self) - - def count(self, x): - return _mscl.WirelessPollData_count(self, x) - - def erase(self, *args): - return _mscl.WirelessPollData_erase(self, *args) - - def find(self, x): - return _mscl.WirelessPollData_find(self, x) - - def lower_bound(self, x): - return _mscl.WirelessPollData_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.WirelessPollData_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_WirelessPollData - -# Register WirelessPollData in _mscl: -_mscl.WirelessPollData_swigregister(WirelessPollData) - -class ConnectionDebugDataVec(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.ConnectionDebugDataVec_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.ConnectionDebugDataVec___nonzero__(self) - - def __bool__(self): - return _mscl.ConnectionDebugDataVec___bool__(self) - - def __len__(self): - return _mscl.ConnectionDebugDataVec___len__(self) - - def __getslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.ConnectionDebugDataVec___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.ConnectionDebugDataVec___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.ConnectionDebugDataVec___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.ConnectionDebugDataVec___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.ConnectionDebugDataVec___setitem__(self, *args) - - def pop(self): - return _mscl.ConnectionDebugDataVec_pop(self) - - def append(self, x): - return _mscl.ConnectionDebugDataVec_append(self, x) - - def empty(self): - return _mscl.ConnectionDebugDataVec_empty(self) - - def size(self): - return _mscl.ConnectionDebugDataVec_size(self) - - def swap(self, v): - return _mscl.ConnectionDebugDataVec_swap(self, v) - - def begin(self): - return _mscl.ConnectionDebugDataVec_begin(self) - - def end(self): - return _mscl.ConnectionDebugDataVec_end(self) - - def rbegin(self): - return _mscl.ConnectionDebugDataVec_rbegin(self) - - def rend(self): - return _mscl.ConnectionDebugDataVec_rend(self) - - def clear(self): - return _mscl.ConnectionDebugDataVec_clear(self) - - def get_allocator(self): - return _mscl.ConnectionDebugDataVec_get_allocator(self) - - def pop_back(self): - return _mscl.ConnectionDebugDataVec_pop_back(self) - - def erase(self, *args): - return _mscl.ConnectionDebugDataVec_erase(self, *args) - - def __init__(self, *args): - _mscl.ConnectionDebugDataVec_swiginit(self, _mscl.new_ConnectionDebugDataVec(*args)) - - def push_back(self, x): - return _mscl.ConnectionDebugDataVec_push_back(self, x) - - def front(self): - return _mscl.ConnectionDebugDataVec_front(self) - - def back(self): - return _mscl.ConnectionDebugDataVec_back(self) - - def assign(self, n, x): - return _mscl.ConnectionDebugDataVec_assign(self, n, x) - - def resize(self, *args): - return _mscl.ConnectionDebugDataVec_resize(self, *args) - - def insert(self, *args): - return _mscl.ConnectionDebugDataVec_insert(self, *args) - - def reserve(self, n): - return _mscl.ConnectionDebugDataVec_reserve(self, n) - - def capacity(self): - return _mscl.ConnectionDebugDataVec_capacity(self) - __swig_destroy__ = _mscl.delete_ConnectionDebugDataVec - -# Register ConnectionDebugDataVec in _mscl: -_mscl.ConnectionDebugDataVec_swigregister(ConnectionDebugDataVec) - -class SatellitePRNs(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.SatellitePRNs_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.SatellitePRNs___nonzero__(self) - - def __bool__(self): - return _mscl.SatellitePRNs___bool__(self) - - def __len__(self): - return _mscl.SatellitePRNs___len__(self) - - def __getslice__(self, i, j): - return _mscl.SatellitePRNs___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.SatellitePRNs___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.SatellitePRNs___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.SatellitePRNs___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.SatellitePRNs___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.SatellitePRNs___setitem__(self, *args) - - def pop(self): - return _mscl.SatellitePRNs_pop(self) - - def append(self, x): - return _mscl.SatellitePRNs_append(self, x) - - def empty(self): - return _mscl.SatellitePRNs_empty(self) - - def size(self): - return _mscl.SatellitePRNs_size(self) - - def swap(self, v): - return _mscl.SatellitePRNs_swap(self, v) - - def begin(self): - return _mscl.SatellitePRNs_begin(self) - - def end(self): - return _mscl.SatellitePRNs_end(self) - - def rbegin(self): - return _mscl.SatellitePRNs_rbegin(self) - - def rend(self): - return _mscl.SatellitePRNs_rend(self) - - def clear(self): - return _mscl.SatellitePRNs_clear(self) - - def get_allocator(self): - return _mscl.SatellitePRNs_get_allocator(self) - - def pop_back(self): - return _mscl.SatellitePRNs_pop_back(self) - - def erase(self, *args): - return _mscl.SatellitePRNs_erase(self, *args) - - def __init__(self, *args): - _mscl.SatellitePRNs_swiginit(self, _mscl.new_SatellitePRNs(*args)) - - def push_back(self, x): - return _mscl.SatellitePRNs_push_back(self, x) - - def front(self): - return _mscl.SatellitePRNs_front(self) - - def back(self): - return _mscl.SatellitePRNs_back(self) - - def assign(self, n, x): - return _mscl.SatellitePRNs_assign(self, n, x) - - def resize(self, *args): - return _mscl.SatellitePRNs_resize(self, *args) - - def insert(self, *args): - return _mscl.SatellitePRNs_insert(self, *args) - - def reserve(self, n): - return _mscl.SatellitePRNs_reserve(self, n) - - def capacity(self): - return _mscl.SatellitePRNs_capacity(self) - __swig_destroy__ = _mscl.delete_SatellitePRNs - -# Register SatellitePRNs in _mscl: -_mscl.SatellitePRNs_swigregister(SatellitePRNs) - -class Constellations(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Constellations_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Constellations___nonzero__(self) - - def __bool__(self): - return _mscl.Constellations___bool__(self) - - def __len__(self): - return _mscl.Constellations___len__(self) - - def __getslice__(self, i, j): - return _mscl.Constellations___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Constellations___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Constellations___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Constellations___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Constellations___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Constellations___setitem__(self, *args) - - def pop(self): - return _mscl.Constellations_pop(self) - - def append(self, x): - return _mscl.Constellations_append(self, x) - - def empty(self): - return _mscl.Constellations_empty(self) - - def size(self): - return _mscl.Constellations_size(self) - - def swap(self, v): - return _mscl.Constellations_swap(self, v) - - def begin(self): - return _mscl.Constellations_begin(self) - - def end(self): - return _mscl.Constellations_end(self) - - def rbegin(self): - return _mscl.Constellations_rbegin(self) - - def rend(self): - return _mscl.Constellations_rend(self) - - def clear(self): - return _mscl.Constellations_clear(self) - - def get_allocator(self): - return _mscl.Constellations_get_allocator(self) - - def pop_back(self): - return _mscl.Constellations_pop_back(self) - - def erase(self, *args): - return _mscl.Constellations_erase(self, *args) - - def __init__(self, *args): - _mscl.Constellations_swiginit(self, _mscl.new_Constellations(*args)) - - def push_back(self, x): - return _mscl.Constellations_push_back(self, x) - - def front(self): - return _mscl.Constellations_front(self) - - def back(self): - return _mscl.Constellations_back(self) - - def assign(self, n, x): - return _mscl.Constellations_assign(self, n, x) - - def resize(self, *args): - return _mscl.Constellations_resize(self, *args) - - def insert(self, *args): - return _mscl.Constellations_insert(self, *args) - - def reserve(self, n): - return _mscl.Constellations_reserve(self, n) - - def capacity(self): - return _mscl.Constellations_capacity(self) - __swig_destroy__ = _mscl.delete_Constellations - -# Register Constellations in _mscl: -_mscl.Constellations_swigregister(Constellations) - -class HeadingUpdateOptionsList(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.HeadingUpdateOptionsList_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.HeadingUpdateOptionsList___nonzero__(self) - - def __bool__(self): - return _mscl.HeadingUpdateOptionsList___bool__(self) - - def __len__(self): - return _mscl.HeadingUpdateOptionsList___len__(self) - - def __getslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.HeadingUpdateOptionsList___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.HeadingUpdateOptionsList___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.HeadingUpdateOptionsList___setitem__(self, *args) - - def pop(self): - return _mscl.HeadingUpdateOptionsList_pop(self) - - def append(self, x): - return _mscl.HeadingUpdateOptionsList_append(self, x) - - def empty(self): - return _mscl.HeadingUpdateOptionsList_empty(self) - - def size(self): - return _mscl.HeadingUpdateOptionsList_size(self) - - def swap(self, v): - return _mscl.HeadingUpdateOptionsList_swap(self, v) - - def begin(self): - return _mscl.HeadingUpdateOptionsList_begin(self) - - def end(self): - return _mscl.HeadingUpdateOptionsList_end(self) - - def rbegin(self): - return _mscl.HeadingUpdateOptionsList_rbegin(self) - - def rend(self): - return _mscl.HeadingUpdateOptionsList_rend(self) - - def clear(self): - return _mscl.HeadingUpdateOptionsList_clear(self) - - def get_allocator(self): - return _mscl.HeadingUpdateOptionsList_get_allocator(self) - - def pop_back(self): - return _mscl.HeadingUpdateOptionsList_pop_back(self) - - def erase(self, *args): - return _mscl.HeadingUpdateOptionsList_erase(self, *args) - - def __init__(self, *args): - _mscl.HeadingUpdateOptionsList_swiginit(self, _mscl.new_HeadingUpdateOptionsList(*args)) - - def push_back(self, x): - return _mscl.HeadingUpdateOptionsList_push_back(self, x) - - def front(self): - return _mscl.HeadingUpdateOptionsList_front(self) - - def back(self): - return _mscl.HeadingUpdateOptionsList_back(self) - - def assign(self, n, x): - return _mscl.HeadingUpdateOptionsList_assign(self, n, x) - - def resize(self, *args): - return _mscl.HeadingUpdateOptionsList_resize(self, *args) - - def insert(self, *args): - return _mscl.HeadingUpdateOptionsList_insert(self, *args) - - def reserve(self, n): - return _mscl.HeadingUpdateOptionsList_reserve(self, n) - - def capacity(self): - return _mscl.HeadingUpdateOptionsList_capacity(self) - __swig_destroy__ = _mscl.delete_HeadingUpdateOptionsList - -# Register HeadingUpdateOptionsList in _mscl: -_mscl.HeadingUpdateOptionsList_swigregister(HeadingUpdateOptionsList) - -class AdaptiveMeasurementModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveMeasurementModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveMeasurementModes___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveMeasurementModes___bool__(self) - - def __len__(self): - return _mscl.AdaptiveMeasurementModes___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveMeasurementModes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveMeasurementModes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveMeasurementModes___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveMeasurementModes_pop(self) - - def append(self, x): - return _mscl.AdaptiveMeasurementModes_append(self, x) - - def empty(self): - return _mscl.AdaptiveMeasurementModes_empty(self) - - def size(self): - return _mscl.AdaptiveMeasurementModes_size(self) - - def swap(self, v): - return _mscl.AdaptiveMeasurementModes_swap(self, v) - - def begin(self): - return _mscl.AdaptiveMeasurementModes_begin(self) - - def end(self): - return _mscl.AdaptiveMeasurementModes_end(self) - - def rbegin(self): - return _mscl.AdaptiveMeasurementModes_rbegin(self) - - def rend(self): - return _mscl.AdaptiveMeasurementModes_rend(self) - - def clear(self): - return _mscl.AdaptiveMeasurementModes_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveMeasurementModes_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveMeasurementModes_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveMeasurementModes_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveMeasurementModes_swiginit(self, _mscl.new_AdaptiveMeasurementModes(*args)) - - def push_back(self, x): - return _mscl.AdaptiveMeasurementModes_push_back(self, x) - - def front(self): - return _mscl.AdaptiveMeasurementModes_front(self) - - def back(self): - return _mscl.AdaptiveMeasurementModes_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveMeasurementModes_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveMeasurementModes_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveMeasurementModes_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveMeasurementModes_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveMeasurementModes_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveMeasurementModes - -# Register AdaptiveMeasurementModes in _mscl: -_mscl.AdaptiveMeasurementModes_swigregister(AdaptiveMeasurementModes) - -class GeometricVectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeometricVectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeometricVectors___nonzero__(self) - - def __bool__(self): - return _mscl.GeometricVectors___bool__(self) - - def __len__(self): - return _mscl.GeometricVectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeometricVectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeometricVectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeometricVectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeometricVectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeometricVectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeometricVectors___setitem__(self, *args) - - def pop(self): - return _mscl.GeometricVectors_pop(self) - - def append(self, x): - return _mscl.GeometricVectors_append(self, x) - - def empty(self): - return _mscl.GeometricVectors_empty(self) - - def size(self): - return _mscl.GeometricVectors_size(self) - - def swap(self, v): - return _mscl.GeometricVectors_swap(self, v) - - def begin(self): - return _mscl.GeometricVectors_begin(self) - - def end(self): - return _mscl.GeometricVectors_end(self) - - def rbegin(self): - return _mscl.GeometricVectors_rbegin(self) - - def rend(self): - return _mscl.GeometricVectors_rend(self) - - def clear(self): - return _mscl.GeometricVectors_clear(self) - - def get_allocator(self): - return _mscl.GeometricVectors_get_allocator(self) - - def pop_back(self): - return _mscl.GeometricVectors_pop_back(self) - - def erase(self, *args): - return _mscl.GeometricVectors_erase(self, *args) - - def __init__(self, *args): - _mscl.GeometricVectors_swiginit(self, _mscl.new_GeometricVectors(*args)) - - def push_back(self, x): - return _mscl.GeometricVectors_push_back(self, x) - - def front(self): - return _mscl.GeometricVectors_front(self) - - def back(self): - return _mscl.GeometricVectors_back(self) - - def assign(self, n, x): - return _mscl.GeometricVectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeometricVectors_resize(self, *args) - - def insert(self, *args): - return _mscl.GeometricVectors_insert(self, *args) - - def reserve(self, n): - return _mscl.GeometricVectors_reserve(self, n) - - def capacity(self): - return _mscl.GeometricVectors_capacity(self) - __swig_destroy__ = _mscl.delete_GeometricVectors - -# Register GeometricVectors in _mscl: -_mscl.GeometricVectors_swigregister(GeometricVectors) - -class Matrix_3x3s(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Matrix_3x3s_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Matrix_3x3s___nonzero__(self) - - def __bool__(self): - return _mscl.Matrix_3x3s___bool__(self) - - def __len__(self): - return _mscl.Matrix_3x3s___len__(self) - - def __getslice__(self, i, j): - return _mscl.Matrix_3x3s___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Matrix_3x3s___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Matrix_3x3s___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Matrix_3x3s___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Matrix_3x3s___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Matrix_3x3s___setitem__(self, *args) - - def pop(self): - return _mscl.Matrix_3x3s_pop(self) - - def append(self, x): - return _mscl.Matrix_3x3s_append(self, x) - - def empty(self): - return _mscl.Matrix_3x3s_empty(self) - - def size(self): - return _mscl.Matrix_3x3s_size(self) - - def swap(self, v): - return _mscl.Matrix_3x3s_swap(self, v) - - def begin(self): - return _mscl.Matrix_3x3s_begin(self) - - def end(self): - return _mscl.Matrix_3x3s_end(self) - - def rbegin(self): - return _mscl.Matrix_3x3s_rbegin(self) - - def rend(self): - return _mscl.Matrix_3x3s_rend(self) - - def clear(self): - return _mscl.Matrix_3x3s_clear(self) - - def get_allocator(self): - return _mscl.Matrix_3x3s_get_allocator(self) - - def pop_back(self): - return _mscl.Matrix_3x3s_pop_back(self) - - def erase(self, *args): - return _mscl.Matrix_3x3s_erase(self, *args) - - def __init__(self, *args): - _mscl.Matrix_3x3s_swiginit(self, _mscl.new_Matrix_3x3s(*args)) - - def push_back(self, x): - return _mscl.Matrix_3x3s_push_back(self, x) - - def front(self): - return _mscl.Matrix_3x3s_front(self) - - def back(self): - return _mscl.Matrix_3x3s_back(self) - - def assign(self, n, x): - return _mscl.Matrix_3x3s_assign(self, n, x) - - def resize(self, *args): - return _mscl.Matrix_3x3s_resize(self, *args) - - def insert(self, *args): - return _mscl.Matrix_3x3s_insert(self, *args) - - def reserve(self, n): - return _mscl.Matrix_3x3s_reserve(self, n) - - def capacity(self): - return _mscl.Matrix_3x3s_capacity(self) - __swig_destroy__ = _mscl.delete_Matrix_3x3s - -# Register Matrix_3x3s in _mscl: -_mscl.Matrix_3x3s_swigregister(Matrix_3x3s) - -class StatusSelectors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.StatusSelectors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.StatusSelectors___nonzero__(self) - - def __bool__(self): - return _mscl.StatusSelectors___bool__(self) - - def __len__(self): - return _mscl.StatusSelectors___len__(self) - - def __getslice__(self, i, j): - return _mscl.StatusSelectors___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.StatusSelectors___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.StatusSelectors___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.StatusSelectors___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.StatusSelectors___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.StatusSelectors___setitem__(self, *args) - - def pop(self): - return _mscl.StatusSelectors_pop(self) - - def append(self, x): - return _mscl.StatusSelectors_append(self, x) - - def empty(self): - return _mscl.StatusSelectors_empty(self) - - def size(self): - return _mscl.StatusSelectors_size(self) - - def swap(self, v): - return _mscl.StatusSelectors_swap(self, v) - - def begin(self): - return _mscl.StatusSelectors_begin(self) - - def end(self): - return _mscl.StatusSelectors_end(self) - - def rbegin(self): - return _mscl.StatusSelectors_rbegin(self) - - def rend(self): - return _mscl.StatusSelectors_rend(self) - - def clear(self): - return _mscl.StatusSelectors_clear(self) - - def get_allocator(self): - return _mscl.StatusSelectors_get_allocator(self) - - def pop_back(self): - return _mscl.StatusSelectors_pop_back(self) - - def erase(self, *args): - return _mscl.StatusSelectors_erase(self, *args) - - def __init__(self, *args): - _mscl.StatusSelectors_swiginit(self, _mscl.new_StatusSelectors(*args)) - - def push_back(self, x): - return _mscl.StatusSelectors_push_back(self, x) - - def front(self): - return _mscl.StatusSelectors_front(self) - - def back(self): - return _mscl.StatusSelectors_back(self) - - def assign(self, n, x): - return _mscl.StatusSelectors_assign(self, n, x) - - def resize(self, *args): - return _mscl.StatusSelectors_resize(self, *args) - - def insert(self, *args): - return _mscl.StatusSelectors_insert(self, *args) - - def reserve(self, n): - return _mscl.StatusSelectors_reserve(self, n) - - def capacity(self): - return _mscl.StatusSelectors_capacity(self) - __swig_destroy__ = _mscl.delete_StatusSelectors - -# Register StatusSelectors in _mscl: -_mscl.StatusSelectors_swigregister(StatusSelectors) - -class VehicleModeTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.VehicleModeTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.VehicleModeTypes___nonzero__(self) - - def __bool__(self): - return _mscl.VehicleModeTypes___bool__(self) - - def __len__(self): - return _mscl.VehicleModeTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.VehicleModeTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.VehicleModeTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.VehicleModeTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.VehicleModeTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.VehicleModeTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.VehicleModeTypes___setitem__(self, *args) - - def pop(self): - return _mscl.VehicleModeTypes_pop(self) - - def append(self, x): - return _mscl.VehicleModeTypes_append(self, x) - - def empty(self): - return _mscl.VehicleModeTypes_empty(self) - - def size(self): - return _mscl.VehicleModeTypes_size(self) - - def swap(self, v): - return _mscl.VehicleModeTypes_swap(self, v) - - def begin(self): - return _mscl.VehicleModeTypes_begin(self) - - def end(self): - return _mscl.VehicleModeTypes_end(self) - - def rbegin(self): - return _mscl.VehicleModeTypes_rbegin(self) - - def rend(self): - return _mscl.VehicleModeTypes_rend(self) - - def clear(self): - return _mscl.VehicleModeTypes_clear(self) - - def get_allocator(self): - return _mscl.VehicleModeTypes_get_allocator(self) - - def pop_back(self): - return _mscl.VehicleModeTypes_pop_back(self) - - def erase(self, *args): - return _mscl.VehicleModeTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.VehicleModeTypes_swiginit(self, _mscl.new_VehicleModeTypes(*args)) - - def push_back(self, x): - return _mscl.VehicleModeTypes_push_back(self, x) - - def front(self): - return _mscl.VehicleModeTypes_front(self) - - def back(self): - return _mscl.VehicleModeTypes_back(self) - - def assign(self, n, x): - return _mscl.VehicleModeTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.VehicleModeTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.VehicleModeTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.VehicleModeTypes_reserve(self, n) - - def capacity(self): - return _mscl.VehicleModeTypes_capacity(self) - __swig_destroy__ = _mscl.delete_VehicleModeTypes - -# Register VehicleModeTypes in _mscl: -_mscl.VehicleModeTypes_swigregister(VehicleModeTypes) - -class AdaptiveFilterLevels(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AdaptiveFilterLevels_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AdaptiveFilterLevels___nonzero__(self) - - def __bool__(self): - return _mscl.AdaptiveFilterLevels___bool__(self) - - def __len__(self): - return _mscl.AdaptiveFilterLevels___len__(self) - - def __getslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AdaptiveFilterLevels___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AdaptiveFilterLevels___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AdaptiveFilterLevels___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AdaptiveFilterLevels___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AdaptiveFilterLevels___setitem__(self, *args) - - def pop(self): - return _mscl.AdaptiveFilterLevels_pop(self) - - def append(self, x): - return _mscl.AdaptiveFilterLevels_append(self, x) - - def empty(self): - return _mscl.AdaptiveFilterLevels_empty(self) - - def size(self): - return _mscl.AdaptiveFilterLevels_size(self) - - def swap(self, v): - return _mscl.AdaptiveFilterLevels_swap(self, v) - - def begin(self): - return _mscl.AdaptiveFilterLevels_begin(self) - - def end(self): - return _mscl.AdaptiveFilterLevels_end(self) - - def rbegin(self): - return _mscl.AdaptiveFilterLevels_rbegin(self) - - def rend(self): - return _mscl.AdaptiveFilterLevels_rend(self) - - def clear(self): - return _mscl.AdaptiveFilterLevels_clear(self) - - def get_allocator(self): - return _mscl.AdaptiveFilterLevels_get_allocator(self) - - def pop_back(self): - return _mscl.AdaptiveFilterLevels_pop_back(self) - - def erase(self, *args): - return _mscl.AdaptiveFilterLevels_erase(self, *args) - - def __init__(self, *args): - _mscl.AdaptiveFilterLevels_swiginit(self, _mscl.new_AdaptiveFilterLevels(*args)) - - def push_back(self, x): - return _mscl.AdaptiveFilterLevels_push_back(self, x) - - def front(self): - return _mscl.AdaptiveFilterLevels_front(self) - - def back(self): - return _mscl.AdaptiveFilterLevels_back(self) - - def assign(self, n, x): - return _mscl.AdaptiveFilterLevels_assign(self, n, x) - - def resize(self, *args): - return _mscl.AdaptiveFilterLevels_resize(self, *args) - - def insert(self, *args): - return _mscl.AdaptiveFilterLevels_insert(self, *args) - - def reserve(self, n): - return _mscl.AdaptiveFilterLevels_reserve(self, n) - - def capacity(self): - return _mscl.AdaptiveFilterLevels_capacity(self) - __swig_destroy__ = _mscl.delete_AdaptiveFilterLevels - -# Register AdaptiveFilterLevels in _mscl: -_mscl.AdaptiveFilterLevels_swigregister(AdaptiveFilterLevels) - -class LowPassFilterConfig(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.LowPassFilterConfig_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.LowPassFilterConfig___nonzero__(self) - - def __bool__(self): - return _mscl.LowPassFilterConfig___bool__(self) - - def __len__(self): - return _mscl.LowPassFilterConfig___len__(self) - - def __getslice__(self, i, j): - return _mscl.LowPassFilterConfig___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.LowPassFilterConfig___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.LowPassFilterConfig___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.LowPassFilterConfig___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.LowPassFilterConfig___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.LowPassFilterConfig___setitem__(self, *args) - - def pop(self): - return _mscl.LowPassFilterConfig_pop(self) - - def append(self, x): - return _mscl.LowPassFilterConfig_append(self, x) - - def empty(self): - return _mscl.LowPassFilterConfig_empty(self) - - def size(self): - return _mscl.LowPassFilterConfig_size(self) - - def swap(self, v): - return _mscl.LowPassFilterConfig_swap(self, v) - - def begin(self): - return _mscl.LowPassFilterConfig_begin(self) - - def end(self): - return _mscl.LowPassFilterConfig_end(self) - - def rbegin(self): - return _mscl.LowPassFilterConfig_rbegin(self) - - def rend(self): - return _mscl.LowPassFilterConfig_rend(self) - - def clear(self): - return _mscl.LowPassFilterConfig_clear(self) - - def get_allocator(self): - return _mscl.LowPassFilterConfig_get_allocator(self) - - def pop_back(self): - return _mscl.LowPassFilterConfig_pop_back(self) - - def erase(self, *args): - return _mscl.LowPassFilterConfig_erase(self, *args) - - def __init__(self, *args): - _mscl.LowPassFilterConfig_swiginit(self, _mscl.new_LowPassFilterConfig(*args)) - - def push_back(self, x): - return _mscl.LowPassFilterConfig_push_back(self, x) - - def front(self): - return _mscl.LowPassFilterConfig_front(self) - - def back(self): - return _mscl.LowPassFilterConfig_back(self) - - def assign(self, n, x): - return _mscl.LowPassFilterConfig_assign(self, n, x) - - def resize(self, *args): - return _mscl.LowPassFilterConfig_resize(self, *args) - - def insert(self, *args): - return _mscl.LowPassFilterConfig_insert(self, *args) - - def reserve(self, n): - return _mscl.LowPassFilterConfig_reserve(self, n) - - def capacity(self): - return _mscl.LowPassFilterConfig_capacity(self) - __swig_destroy__ = _mscl.delete_LowPassFilterConfig - -# Register LowPassFilterConfig in _mscl: -_mscl.LowPassFilterConfig_swigregister(LowPassFilterConfig) - -class AidingMeasurementSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.AidingMeasurementSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.AidingMeasurementSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.AidingMeasurementSourceOptions___bool__(self) - - def __len__(self): - return _mscl.AidingMeasurementSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.AidingMeasurementSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.AidingMeasurementSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.AidingMeasurementSourceOptions_pop(self) - - def append(self, x): - return _mscl.AidingMeasurementSourceOptions_append(self, x) - - def empty(self): - return _mscl.AidingMeasurementSourceOptions_empty(self) - - def size(self): - return _mscl.AidingMeasurementSourceOptions_size(self) - - def swap(self, v): - return _mscl.AidingMeasurementSourceOptions_swap(self, v) - - def begin(self): - return _mscl.AidingMeasurementSourceOptions_begin(self) - - def end(self): - return _mscl.AidingMeasurementSourceOptions_end(self) - - def rbegin(self): - return _mscl.AidingMeasurementSourceOptions_rbegin(self) - - def rend(self): - return _mscl.AidingMeasurementSourceOptions_rend(self) - - def clear(self): - return _mscl.AidingMeasurementSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.AidingMeasurementSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.AidingMeasurementSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.AidingMeasurementSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.AidingMeasurementSourceOptions_swiginit(self, _mscl.new_AidingMeasurementSourceOptions(*args)) - - def push_back(self, x): - return _mscl.AidingMeasurementSourceOptions_push_back(self, x) - - def front(self): - return _mscl.AidingMeasurementSourceOptions_front(self) - - def back(self): - return _mscl.AidingMeasurementSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.AidingMeasurementSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.AidingMeasurementSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.AidingMeasurementSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.AidingMeasurementSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.AidingMeasurementSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_AidingMeasurementSourceOptions - -# Register AidingMeasurementSourceOptions in _mscl: -_mscl.AidingMeasurementSourceOptions_swigregister(AidingMeasurementSourceOptions) - -class PpsSourceOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.PpsSourceOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.PpsSourceOptions___nonzero__(self) - - def __bool__(self): - return _mscl.PpsSourceOptions___bool__(self) - - def __len__(self): - return _mscl.PpsSourceOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.PpsSourceOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.PpsSourceOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.PpsSourceOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.PpsSourceOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.PpsSourceOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.PpsSourceOptions___setitem__(self, *args) - - def pop(self): - return _mscl.PpsSourceOptions_pop(self) - - def append(self, x): - return _mscl.PpsSourceOptions_append(self, x) - - def empty(self): - return _mscl.PpsSourceOptions_empty(self) - - def size(self): - return _mscl.PpsSourceOptions_size(self) - - def swap(self, v): - return _mscl.PpsSourceOptions_swap(self, v) - - def begin(self): - return _mscl.PpsSourceOptions_begin(self) - - def end(self): - return _mscl.PpsSourceOptions_end(self) - - def rbegin(self): - return _mscl.PpsSourceOptions_rbegin(self) - - def rend(self): - return _mscl.PpsSourceOptions_rend(self) - - def clear(self): - return _mscl.PpsSourceOptions_clear(self) - - def get_allocator(self): - return _mscl.PpsSourceOptions_get_allocator(self) - - def pop_back(self): - return _mscl.PpsSourceOptions_pop_back(self) - - def erase(self, *args): - return _mscl.PpsSourceOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.PpsSourceOptions_swiginit(self, _mscl.new_PpsSourceOptions(*args)) - - def push_back(self, x): - return _mscl.PpsSourceOptions_push_back(self, x) - - def front(self): - return _mscl.PpsSourceOptions_front(self) - - def back(self): - return _mscl.PpsSourceOptions_back(self) - - def assign(self, n, x): - return _mscl.PpsSourceOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.PpsSourceOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.PpsSourceOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.PpsSourceOptions_reserve(self, n) - - def capacity(self): - return _mscl.PpsSourceOptions_capacity(self) - __swig_destroy__ = _mscl.delete_PpsSourceOptions - -# Register PpsSourceOptions in _mscl: -_mscl.PpsSourceOptions_swigregister(PpsSourceOptions) - -class GeographicSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GeographicSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GeographicSources___nonzero__(self) - - def __bool__(self): - return _mscl.GeographicSources___bool__(self) - - def __len__(self): - return _mscl.GeographicSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GeographicSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GeographicSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GeographicSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GeographicSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GeographicSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GeographicSources___setitem__(self, *args) - - def pop(self): - return _mscl.GeographicSources_pop(self) - - def append(self, x): - return _mscl.GeographicSources_append(self, x) - - def empty(self): - return _mscl.GeographicSources_empty(self) - - def size(self): - return _mscl.GeographicSources_size(self) - - def swap(self, v): - return _mscl.GeographicSources_swap(self, v) - - def begin(self): - return _mscl.GeographicSources_begin(self) - - def end(self): - return _mscl.GeographicSources_end(self) - - def rbegin(self): - return _mscl.GeographicSources_rbegin(self) - - def rend(self): - return _mscl.GeographicSources_rend(self) - - def clear(self): - return _mscl.GeographicSources_clear(self) - - def get_allocator(self): - return _mscl.GeographicSources_get_allocator(self) - - def pop_back(self): - return _mscl.GeographicSources_pop_back(self) - - def erase(self, *args): - return _mscl.GeographicSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GeographicSources_swiginit(self, _mscl.new_GeographicSources(*args)) - - def push_back(self, x): - return _mscl.GeographicSources_push_back(self, x) - - def front(self): - return _mscl.GeographicSources_front(self) - - def back(self): - return _mscl.GeographicSources_back(self) - - def assign(self, n, x): - return _mscl.GeographicSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GeographicSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GeographicSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GeographicSources_reserve(self, n) - - def capacity(self): - return _mscl.GeographicSources_capacity(self) - __swig_destroy__ = _mscl.delete_GeographicSources - -# Register GeographicSources in _mscl: -_mscl.GeographicSources_swigregister(GeographicSources) - -class GnssSources(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSources_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSources___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSources___bool__(self) - - def __len__(self): - return _mscl.GnssSources___len__(self) - - def __getslice__(self, i, j): - return _mscl.GnssSources___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GnssSources___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GnssSources___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GnssSources___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GnssSources___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GnssSources___setitem__(self, *args) - - def pop(self): - return _mscl.GnssSources_pop(self) - - def append(self, x): - return _mscl.GnssSources_append(self, x) - - def empty(self): - return _mscl.GnssSources_empty(self) - - def size(self): - return _mscl.GnssSources_size(self) - - def swap(self, v): - return _mscl.GnssSources_swap(self, v) - - def begin(self): - return _mscl.GnssSources_begin(self) - - def end(self): - return _mscl.GnssSources_end(self) - - def rbegin(self): - return _mscl.GnssSources_rbegin(self) - - def rend(self): - return _mscl.GnssSources_rend(self) - - def clear(self): - return _mscl.GnssSources_clear(self) - - def get_allocator(self): - return _mscl.GnssSources_get_allocator(self) - - def pop_back(self): - return _mscl.GnssSources_pop_back(self) - - def erase(self, *args): - return _mscl.GnssSources_erase(self, *args) - - def __init__(self, *args): - _mscl.GnssSources_swiginit(self, _mscl.new_GnssSources(*args)) - - def push_back(self, x): - return _mscl.GnssSources_push_back(self, x) - - def front(self): - return _mscl.GnssSources_front(self) - - def back(self): - return _mscl.GnssSources_back(self) - - def assign(self, n, x): - return _mscl.GnssSources_assign(self, n, x) - - def resize(self, *args): - return _mscl.GnssSources_resize(self, *args) - - def insert(self, *args): - return _mscl.GnssSources_insert(self, *args) - - def reserve(self, n): - return _mscl.GnssSources_reserve(self, n) - - def capacity(self): - return _mscl.GnssSources_capacity(self) - __swig_destroy__ = _mscl.delete_GnssSources - -# Register GnssSources in _mscl: -_mscl.GnssSources_swigregister(GnssSources) - -class GnssSignalConfigOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GnssSignalConfigOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GnssSignalConfigOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GnssSignalConfigOptions___bool__(self) - - def __len__(self): - return _mscl.GnssSignalConfigOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GnssSignalConfigOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GnssSignalConfigOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GnssSignalConfigOptions_has_key(self, key) - - def keys(self): - return _mscl.GnssSignalConfigOptions_keys(self) - - def values(self): - return _mscl.GnssSignalConfigOptions_values(self) - - def items(self): - return _mscl.GnssSignalConfigOptions_items(self) - - def __contains__(self, key): - return _mscl.GnssSignalConfigOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GnssSignalConfigOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GnssSignalConfigOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GnssSignalConfigOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GnssSignalConfigOptions_asdict(self) - - def __init__(self, *args): - _mscl.GnssSignalConfigOptions_swiginit(self, _mscl.new_GnssSignalConfigOptions(*args)) - - def empty(self): - return _mscl.GnssSignalConfigOptions_empty(self) - - def size(self): - return _mscl.GnssSignalConfigOptions_size(self) - - def swap(self, v): - return _mscl.GnssSignalConfigOptions_swap(self, v) - - def begin(self): - return _mscl.GnssSignalConfigOptions_begin(self) - - def end(self): - return _mscl.GnssSignalConfigOptions_end(self) - - def rbegin(self): - return _mscl.GnssSignalConfigOptions_rbegin(self) - - def rend(self): - return _mscl.GnssSignalConfigOptions_rend(self) - - def clear(self): - return _mscl.GnssSignalConfigOptions_clear(self) - - def get_allocator(self): - return _mscl.GnssSignalConfigOptions_get_allocator(self) - - def count(self, x): - return _mscl.GnssSignalConfigOptions_count(self, x) - - def erase(self, *args): - return _mscl.GnssSignalConfigOptions_erase(self, *args) - - def find(self, x): - return _mscl.GnssSignalConfigOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GnssSignalConfigOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GnssSignalConfigOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GnssSignalConfigOptions - -# Register GnssSignalConfigOptions in _mscl: -_mscl.GnssSignalConfigOptions_swigregister(GnssSignalConfigOptions) - -class NmeaMessageFormats(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.NmeaMessageFormats_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.NmeaMessageFormats___nonzero__(self) - - def __bool__(self): - return _mscl.NmeaMessageFormats___bool__(self) - - def __len__(self): - return _mscl.NmeaMessageFormats___len__(self) - - def __getslice__(self, i, j): - return _mscl.NmeaMessageFormats___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.NmeaMessageFormats___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.NmeaMessageFormats___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.NmeaMessageFormats___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.NmeaMessageFormats___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.NmeaMessageFormats___setitem__(self, *args) - - def pop(self): - return _mscl.NmeaMessageFormats_pop(self) - - def append(self, x): - return _mscl.NmeaMessageFormats_append(self, x) - - def empty(self): - return _mscl.NmeaMessageFormats_empty(self) - - def size(self): - return _mscl.NmeaMessageFormats_size(self) - - def swap(self, v): - return _mscl.NmeaMessageFormats_swap(self, v) - - def begin(self): - return _mscl.NmeaMessageFormats_begin(self) - - def end(self): - return _mscl.NmeaMessageFormats_end(self) - - def rbegin(self): - return _mscl.NmeaMessageFormats_rbegin(self) - - def rend(self): - return _mscl.NmeaMessageFormats_rend(self) - - def clear(self): - return _mscl.NmeaMessageFormats_clear(self) - - def get_allocator(self): - return _mscl.NmeaMessageFormats_get_allocator(self) - - def pop_back(self): - return _mscl.NmeaMessageFormats_pop_back(self) - - def erase(self, *args): - return _mscl.NmeaMessageFormats_erase(self, *args) - - def __init__(self, *args): - _mscl.NmeaMessageFormats_swiginit(self, _mscl.new_NmeaMessageFormats(*args)) - - def push_back(self, x): - return _mscl.NmeaMessageFormats_push_back(self, x) - - def front(self): - return _mscl.NmeaMessageFormats_front(self) - - def back(self): - return _mscl.NmeaMessageFormats_back(self) - - def assign(self, n, x): - return _mscl.NmeaMessageFormats_assign(self, n, x) - - def resize(self, *args): - return _mscl.NmeaMessageFormats_resize(self, *args) - - def insert(self, *args): - return _mscl.NmeaMessageFormats_insert(self, *args) - - def reserve(self, n): - return _mscl.NmeaMessageFormats_reserve(self, n) - - def capacity(self): - return _mscl.NmeaMessageFormats_capacity(self) - __swig_destroy__ = _mscl.delete_NmeaMessageFormats - -# Register NmeaMessageFormats in _mscl: -_mscl.NmeaMessageFormats_swigregister(NmeaMessageFormats) - -class GpioPinModeOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinModeOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinModeOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinModeOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinModeOptions___len__(self) - - def __getslice__(self, i, j): - return _mscl.GpioPinModeOptions___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.GpioPinModeOptions___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.GpioPinModeOptions___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.GpioPinModeOptions___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.GpioPinModeOptions___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.GpioPinModeOptions___setitem__(self, *args) - - def pop(self): - return _mscl.GpioPinModeOptions_pop(self) - - def append(self, x): - return _mscl.GpioPinModeOptions_append(self, x) - - def empty(self): - return _mscl.GpioPinModeOptions_empty(self) - - def size(self): - return _mscl.GpioPinModeOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinModeOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinModeOptions_begin(self) - - def end(self): - return _mscl.GpioPinModeOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinModeOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinModeOptions_rend(self) - - def clear(self): - return _mscl.GpioPinModeOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinModeOptions_get_allocator(self) - - def pop_back(self): - return _mscl.GpioPinModeOptions_pop_back(self) - - def erase(self, *args): - return _mscl.GpioPinModeOptions_erase(self, *args) - - def __init__(self, *args): - _mscl.GpioPinModeOptions_swiginit(self, _mscl.new_GpioPinModeOptions(*args)) - - def push_back(self, x): - return _mscl.GpioPinModeOptions_push_back(self, x) - - def front(self): - return _mscl.GpioPinModeOptions_front(self) - - def back(self): - return _mscl.GpioPinModeOptions_back(self) - - def assign(self, n, x): - return _mscl.GpioPinModeOptions_assign(self, n, x) - - def resize(self, *args): - return _mscl.GpioPinModeOptions_resize(self, *args) - - def insert(self, *args): - return _mscl.GpioPinModeOptions_insert(self, *args) - - def reserve(self, n): - return _mscl.GpioPinModeOptions_reserve(self, n) - - def capacity(self): - return _mscl.GpioPinModeOptions_capacity(self) - __swig_destroy__ = _mscl.delete_GpioPinModeOptions - -# Register GpioPinModeOptions in _mscl: -_mscl.GpioPinModeOptions_swigregister(GpioPinModeOptions) - -class GpioBehaviorModes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioBehaviorModes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioBehaviorModes___nonzero__(self) - - def __bool__(self): - return _mscl.GpioBehaviorModes___bool__(self) - - def __len__(self): - return _mscl.GpioBehaviorModes___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioBehaviorModes___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioBehaviorModes___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioBehaviorModes_has_key(self, key) - - def keys(self): - return _mscl.GpioBehaviorModes_keys(self) - - def values(self): - return _mscl.GpioBehaviorModes_values(self) - - def items(self): - return _mscl.GpioBehaviorModes_items(self) - - def __contains__(self, key): - return _mscl.GpioBehaviorModes___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioBehaviorModes_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioBehaviorModes_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioBehaviorModes___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioBehaviorModes_asdict(self) - - def __init__(self, *args): - _mscl.GpioBehaviorModes_swiginit(self, _mscl.new_GpioBehaviorModes(*args)) - - def empty(self): - return _mscl.GpioBehaviorModes_empty(self) - - def size(self): - return _mscl.GpioBehaviorModes_size(self) - - def swap(self, v): - return _mscl.GpioBehaviorModes_swap(self, v) - - def begin(self): - return _mscl.GpioBehaviorModes_begin(self) - - def end(self): - return _mscl.GpioBehaviorModes_end(self) - - def rbegin(self): - return _mscl.GpioBehaviorModes_rbegin(self) - - def rend(self): - return _mscl.GpioBehaviorModes_rend(self) - - def clear(self): - return _mscl.GpioBehaviorModes_clear(self) - - def get_allocator(self): - return _mscl.GpioBehaviorModes_get_allocator(self) - - def count(self, x): - return _mscl.GpioBehaviorModes_count(self, x) - - def erase(self, *args): - return _mscl.GpioBehaviorModes_erase(self, *args) - - def find(self, x): - return _mscl.GpioBehaviorModes_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioBehaviorModes_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioBehaviorModes_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioBehaviorModes - -# Register GpioBehaviorModes in _mscl: -_mscl.GpioBehaviorModes_swigregister(GpioBehaviorModes) - -class GpioFeatureBehaviors(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioFeatureBehaviors_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioFeatureBehaviors___nonzero__(self) - - def __bool__(self): - return _mscl.GpioFeatureBehaviors___bool__(self) - - def __len__(self): - return _mscl.GpioFeatureBehaviors___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioFeatureBehaviors___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioFeatureBehaviors___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioFeatureBehaviors_has_key(self, key) - - def keys(self): - return _mscl.GpioFeatureBehaviors_keys(self) - - def values(self): - return _mscl.GpioFeatureBehaviors_values(self) - - def items(self): - return _mscl.GpioFeatureBehaviors_items(self) - - def __contains__(self, key): - return _mscl.GpioFeatureBehaviors___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioFeatureBehaviors_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioFeatureBehaviors_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioFeatureBehaviors___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioFeatureBehaviors_asdict(self) - - def __init__(self, *args): - _mscl.GpioFeatureBehaviors_swiginit(self, _mscl.new_GpioFeatureBehaviors(*args)) - - def empty(self): - return _mscl.GpioFeatureBehaviors_empty(self) - - def size(self): - return _mscl.GpioFeatureBehaviors_size(self) - - def swap(self, v): - return _mscl.GpioFeatureBehaviors_swap(self, v) - - def begin(self): - return _mscl.GpioFeatureBehaviors_begin(self) - - def end(self): - return _mscl.GpioFeatureBehaviors_end(self) - - def rbegin(self): - return _mscl.GpioFeatureBehaviors_rbegin(self) - - def rend(self): - return _mscl.GpioFeatureBehaviors_rend(self) - - def clear(self): - return _mscl.GpioFeatureBehaviors_clear(self) - - def get_allocator(self): - return _mscl.GpioFeatureBehaviors_get_allocator(self) - - def count(self, x): - return _mscl.GpioFeatureBehaviors_count(self, x) - - def erase(self, *args): - return _mscl.GpioFeatureBehaviors_erase(self, *args) - - def find(self, x): - return _mscl.GpioFeatureBehaviors_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioFeatureBehaviors_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioFeatureBehaviors_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioFeatureBehaviors - -# Register GpioFeatureBehaviors in _mscl: -_mscl.GpioFeatureBehaviors_swigregister(GpioFeatureBehaviors) - -class GpioPinOptions(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.GpioPinOptions_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.GpioPinOptions___nonzero__(self) - - def __bool__(self): - return _mscl.GpioPinOptions___bool__(self) - - def __len__(self): - return _mscl.GpioPinOptions___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.GpioPinOptions___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.GpioPinOptions___delitem__(self, key) - - def has_key(self, key): - return _mscl.GpioPinOptions_has_key(self, key) - - def keys(self): - return _mscl.GpioPinOptions_keys(self) - - def values(self): - return _mscl.GpioPinOptions_values(self) - - def items(self): - return _mscl.GpioPinOptions_items(self) - - def __contains__(self, key): - return _mscl.GpioPinOptions___contains__(self, key) - - def key_iterator(self): - return _mscl.GpioPinOptions_key_iterator(self) - - def value_iterator(self): - return _mscl.GpioPinOptions_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.GpioPinOptions___setitem__(self, *args) - - def asdict(self): - return _mscl.GpioPinOptions_asdict(self) - - def __init__(self, *args): - _mscl.GpioPinOptions_swiginit(self, _mscl.new_GpioPinOptions(*args)) - - def empty(self): - return _mscl.GpioPinOptions_empty(self) - - def size(self): - return _mscl.GpioPinOptions_size(self) - - def swap(self, v): - return _mscl.GpioPinOptions_swap(self, v) - - def begin(self): - return _mscl.GpioPinOptions_begin(self) - - def end(self): - return _mscl.GpioPinOptions_end(self) - - def rbegin(self): - return _mscl.GpioPinOptions_rbegin(self) - - def rend(self): - return _mscl.GpioPinOptions_rend(self) - - def clear(self): - return _mscl.GpioPinOptions_clear(self) - - def get_allocator(self): - return _mscl.GpioPinOptions_get_allocator(self) - - def count(self, x): - return _mscl.GpioPinOptions_count(self, x) - - def erase(self, *args): - return _mscl.GpioPinOptions_erase(self, *args) - - def find(self, x): - return _mscl.GpioPinOptions_find(self, x) - - def lower_bound(self, x): - return _mscl.GpioPinOptions_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.GpioPinOptions_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_GpioPinOptions - -# Register GpioPinOptions in _mscl: -_mscl.GpioPinOptions_swigregister(GpioPinOptions) - -class EventInputTriggers(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventInputTriggers_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventInputTriggers___nonzero__(self) - - def __bool__(self): - return _mscl.EventInputTriggers___bool__(self) - - def __len__(self): - return _mscl.EventInputTriggers___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventInputTriggers___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventInputTriggers___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventInputTriggers___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventInputTriggers___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventInputTriggers___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventInputTriggers___setitem__(self, *args) - - def __init__(self, *args): - _mscl.EventInputTriggers_swiginit(self, _mscl.new_EventInputTriggers(*args)) - - def empty(self): - return _mscl.EventInputTriggers_empty(self) - - def size(self): - return _mscl.EventInputTriggers_size(self) - - def swap(self, v): - return _mscl.EventInputTriggers_swap(self, v) - - def begin(self): - return _mscl.EventInputTriggers_begin(self) - - def end(self): - return _mscl.EventInputTriggers_end(self) - - def rbegin(self): - return _mscl.EventInputTriggers_rbegin(self) - - def rend(self): - return _mscl.EventInputTriggers_rend(self) - - def front(self): - return _mscl.EventInputTriggers_front(self) - - def back(self): - return _mscl.EventInputTriggers_back(self) - - def fill(self, u): - return _mscl.EventInputTriggers_fill(self, u) - __swig_destroy__ = _mscl.delete_EventInputTriggers - -# Register EventInputTriggers in _mscl: -_mscl.EventInputTriggers_swigregister(EventInputTriggers) - -class EventTypes(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.EventTypes_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.EventTypes___nonzero__(self) - - def __bool__(self): - return _mscl.EventTypes___bool__(self) - - def __len__(self): - return _mscl.EventTypes___len__(self) - - def __getslice__(self, i, j): - return _mscl.EventTypes___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.EventTypes___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.EventTypes___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.EventTypes___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.EventTypes___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.EventTypes___setitem__(self, *args) - - def pop(self): - return _mscl.EventTypes_pop(self) - - def append(self, x): - return _mscl.EventTypes_append(self, x) - - def empty(self): - return _mscl.EventTypes_empty(self) - - def size(self): - return _mscl.EventTypes_size(self) - - def swap(self, v): - return _mscl.EventTypes_swap(self, v) - - def begin(self): - return _mscl.EventTypes_begin(self) - - def end(self): - return _mscl.EventTypes_end(self) - - def rbegin(self): - return _mscl.EventTypes_rbegin(self) - - def rend(self): - return _mscl.EventTypes_rend(self) - - def clear(self): - return _mscl.EventTypes_clear(self) - - def get_allocator(self): - return _mscl.EventTypes_get_allocator(self) - - def pop_back(self): - return _mscl.EventTypes_pop_back(self) - - def erase(self, *args): - return _mscl.EventTypes_erase(self, *args) - - def __init__(self, *args): - _mscl.EventTypes_swiginit(self, _mscl.new_EventTypes(*args)) - - def push_back(self, x): - return _mscl.EventTypes_push_back(self, x) - - def front(self): - return _mscl.EventTypes_front(self) - - def back(self): - return _mscl.EventTypes_back(self) - - def assign(self, n, x): - return _mscl.EventTypes_assign(self, n, x) - - def resize(self, *args): - return _mscl.EventTypes_resize(self, *args) - - def insert(self, *args): - return _mscl.EventTypes_insert(self, *args) - - def reserve(self, n): - return _mscl.EventTypes_reserve(self, n) - - def capacity(self): - return _mscl.EventTypes_capacity(self) - __swig_destroy__ = _mscl.delete_EventTypes - -# Register EventTypes in _mscl: -_mscl.EventTypes_swigregister(EventTypes) - -class MeasurementReferenceFrames(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.MeasurementReferenceFrames_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.MeasurementReferenceFrames___nonzero__(self) - - def __bool__(self): - return _mscl.MeasurementReferenceFrames___bool__(self) - - def __len__(self): - return _mscl.MeasurementReferenceFrames___len__(self) - def __iter__(self): - return self.key_iterator() - def iterkeys(self): - return self.key_iterator() - def itervalues(self): - return self.value_iterator() - def iteritems(self): - return self.iterator() - - def __getitem__(self, key): - return _mscl.MeasurementReferenceFrames___getitem__(self, key) - - def __delitem__(self, key): - return _mscl.MeasurementReferenceFrames___delitem__(self, key) - - def has_key(self, key): - return _mscl.MeasurementReferenceFrames_has_key(self, key) - - def keys(self): - return _mscl.MeasurementReferenceFrames_keys(self) - - def values(self): - return _mscl.MeasurementReferenceFrames_values(self) - - def items(self): - return _mscl.MeasurementReferenceFrames_items(self) - - def __contains__(self, key): - return _mscl.MeasurementReferenceFrames___contains__(self, key) - - def key_iterator(self): - return _mscl.MeasurementReferenceFrames_key_iterator(self) - - def value_iterator(self): - return _mscl.MeasurementReferenceFrames_value_iterator(self) - - def __setitem__(self, *args): - return _mscl.MeasurementReferenceFrames___setitem__(self, *args) - - def asdict(self): - return _mscl.MeasurementReferenceFrames_asdict(self) - - def __init__(self, *args): - _mscl.MeasurementReferenceFrames_swiginit(self, _mscl.new_MeasurementReferenceFrames(*args)) - - def empty(self): - return _mscl.MeasurementReferenceFrames_empty(self) - - def size(self): - return _mscl.MeasurementReferenceFrames_size(self) - - def swap(self, v): - return _mscl.MeasurementReferenceFrames_swap(self, v) - - def begin(self): - return _mscl.MeasurementReferenceFrames_begin(self) - - def end(self): - return _mscl.MeasurementReferenceFrames_end(self) - - def rbegin(self): - return _mscl.MeasurementReferenceFrames_rbegin(self) - - def rend(self): - return _mscl.MeasurementReferenceFrames_rend(self) - - def clear(self): - return _mscl.MeasurementReferenceFrames_clear(self) - - def get_allocator(self): - return _mscl.MeasurementReferenceFrames_get_allocator(self) - - def count(self, x): - return _mscl.MeasurementReferenceFrames_count(self, x) - - def erase(self, *args): - return _mscl.MeasurementReferenceFrames_erase(self, *args) - - def find(self, x): - return _mscl.MeasurementReferenceFrames_find(self, x) - - def lower_bound(self, x): - return _mscl.MeasurementReferenceFrames_lower_bound(self, x) - - def upper_bound(self, x): - return _mscl.MeasurementReferenceFrames_upper_bound(self, x) - __swig_destroy__ = _mscl.delete_MeasurementReferenceFrames - -# Register MeasurementReferenceFrames in _mscl: -_mscl.MeasurementReferenceFrames_swigregister(MeasurementReferenceFrames) - -class Bins(object): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def iterator(self): - return _mscl.Bins_iterator(self) - def __iter__(self): - return self.iterator() - - def __nonzero__(self): - return _mscl.Bins___nonzero__(self) - - def __bool__(self): - return _mscl.Bins___bool__(self) - - def __len__(self): - return _mscl.Bins___len__(self) - - def __getslice__(self, i, j): - return _mscl.Bins___getslice__(self, i, j) - - def __setslice__(self, *args): - return _mscl.Bins___setslice__(self, *args) - - def __delslice__(self, i, j): - return _mscl.Bins___delslice__(self, i, j) - - def __delitem__(self, *args): - return _mscl.Bins___delitem__(self, *args) - - def __getitem__(self, *args): - return _mscl.Bins___getitem__(self, *args) - - def __setitem__(self, *args): - return _mscl.Bins___setitem__(self, *args) - - def pop(self): - return _mscl.Bins_pop(self) - - def append(self, x): - return _mscl.Bins_append(self, x) - - def empty(self): - return _mscl.Bins_empty(self) - - def size(self): - return _mscl.Bins_size(self) - - def swap(self, v): - return _mscl.Bins_swap(self, v) - - def begin(self): - return _mscl.Bins_begin(self) - - def end(self): - return _mscl.Bins_end(self) - - def rbegin(self): - return _mscl.Bins_rbegin(self) - - def rend(self): - return _mscl.Bins_rend(self) - - def clear(self): - return _mscl.Bins_clear(self) - - def get_allocator(self): - return _mscl.Bins_get_allocator(self) - - def pop_back(self): - return _mscl.Bins_pop_back(self) - - def erase(self, *args): - return _mscl.Bins_erase(self, *args) - - def __init__(self, *args): - _mscl.Bins_swiginit(self, _mscl.new_Bins(*args)) - - def push_back(self, x): - return _mscl.Bins_push_back(self, x) - - def front(self): - return _mscl.Bins_front(self) - - def back(self): - return _mscl.Bins_back(self) - - def assign(self, n, x): - return _mscl.Bins_assign(self, n, x) - - def insert(self, *args): - return _mscl.Bins_insert(self, *args) - - def reserve(self, n): - return _mscl.Bins_reserve(self, n) - - def capacity(self): - return _mscl.Bins_capacity(self) - __swig_destroy__ = _mscl.delete_Bins - -# Register Bins in _mscl: -_mscl.Bins_swigregister(Bins) - -class Error(Exception): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_swiginit(self, _mscl.new_Error(*args)) - __swig_destroy__ = _mscl.delete_Error - - def what(self): - return _mscl.Error_what(self) - - def __str__(self): - return _mscl.Error___str__(self) - -# Register Error in _mscl: -_mscl.Error_swigregister(Error) - -class Error_NotSupported(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NotSupported_swiginit(self, _mscl.new_Error_NotSupported(*args)) - __swig_destroy__ = _mscl.delete_Error_NotSupported - -# Register Error_NotSupported in _mscl: -_mscl.Error_NotSupported_swigregister(Error_NotSupported) - -class Error_NoData(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NoData_swiginit(self, _mscl.new_Error_NoData(*args)) - __swig_destroy__ = _mscl.delete_Error_NoData - -# Register Error_NoData in _mscl: -_mscl.Error_NoData_swigregister(Error_NoData) - -class Error_BadDataType(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self): - _mscl.Error_BadDataType_swiginit(self, _mscl.new_Error_BadDataType()) - __swig_destroy__ = _mscl.delete_Error_BadDataType - -# Register Error_BadDataType in _mscl: -_mscl.Error_BadDataType_swigregister(Error_BadDataType) - -class Error_UnknownSampleRate(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_UnknownSampleRate_swiginit(self, _mscl.new_Error_UnknownSampleRate(*args)) - __swig_destroy__ = _mscl.delete_Error_UnknownSampleRate - -# Register Error_UnknownSampleRate in _mscl: -_mscl.Error_UnknownSampleRate_swigregister(Error_UnknownSampleRate) - -class Error_Communication(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Communication_swiginit(self, _mscl.new_Error_Communication(*args)) - __swig_destroy__ = _mscl.delete_Error_Communication - -# Register Error_Communication in _mscl: -_mscl.Error_Communication_swigregister(Error_Communication) - -class Error_NodeCommunication(Error_Communication): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_NodeCommunication_swiginit(self, _mscl.new_Error_NodeCommunication(*args)) - - def nodeAddress(self): - return _mscl.Error_NodeCommunication_nodeAddress(self) - __swig_destroy__ = _mscl.delete_Error_NodeCommunication - -# Register Error_NodeCommunication in _mscl: -_mscl.Error_NodeCommunication_swigregister(Error_NodeCommunication) - -class Error_Connection(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_Connection_swiginit(self, _mscl.new_Error_Connection(*args)) - __swig_destroy__ = _mscl.delete_Error_Connection - - def code(self): - return _mscl.Error_Connection_code(self) - - def value(self): - return _mscl.Error_Connection_value(self) - -# Register Error_Connection in _mscl: -_mscl.Error_Connection_swigregister(Error_Connection) - -class Error_InvalidSerialPort(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code): - _mscl.Error_InvalidSerialPort_swiginit(self, _mscl.new_Error_InvalidSerialPort(code)) - __swig_destroy__ = _mscl.delete_Error_InvalidSerialPort - -# Register Error_InvalidSerialPort in _mscl: -_mscl.Error_InvalidSerialPort_swigregister(Error_InvalidSerialPort) - -class Error_InvalidTcpServer(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidTcpServer_swiginit(self, _mscl.new_Error_InvalidTcpServer(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidTcpServer - -# Register Error_InvalidTcpServer in _mscl: -_mscl.Error_InvalidTcpServer_swigregister(Error_InvalidTcpServer) - -class Error_InvalidUnixSocket(Error_Connection): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, code, message): - _mscl.Error_InvalidUnixSocket_swiginit(self, _mscl.new_Error_InvalidUnixSocket(code, message)) - __swig_destroy__ = _mscl.delete_Error_InvalidUnixSocket - -# Register Error_InvalidUnixSocket in _mscl: -_mscl.Error_InvalidUnixSocket_swigregister(Error_InvalidUnixSocket) - -class Error_MipCmdFailed(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_MipCmdFailed_swiginit(self, _mscl.new_Error_MipCmdFailed(*args)) - __swig_destroy__ = _mscl.delete_Error_MipCmdFailed - - def code(self): - return _mscl.Error_MipCmdFailed_code(self) - - def value(self): - return _mscl.Error_MipCmdFailed_value(self) - -# Register Error_MipCmdFailed in _mscl: -_mscl.Error_MipCmdFailed_swigregister(Error_MipCmdFailed) - -class Error_InvalidConfig(Error): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, *args): - _mscl.Error_InvalidConfig_swiginit(self, _mscl.new_Error_InvalidConfig(*args)) - __swig_destroy__ = _mscl.delete_Error_InvalidConfig - - def issues(self): - return _mscl.Error_InvalidConfig_issues(self) - -# Register Error_InvalidConfig in _mscl: -_mscl.Error_InvalidConfig_swigregister(Error_InvalidConfig) - -class Error_InvalidNodeConfig(Error_InvalidConfig): - thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") - __repr__ = _swig_repr - - def __init__(self, issues, nodeAddress): - _mscl.Error_InvalidNodeConfig_swiginit(self, _mscl.new_Error_InvalidNodeConfig(issues, nodeAddress)) - __swig_destroy__ = _mscl.delete_Error_InvalidNodeConfig - - def nodeAddress(self): - return _mscl.Error_InvalidNodeConfig_nodeAddress(self) - -# Register Error_InvalidNodeConfig in _mscl: -_mscl.Error_InvalidNodeConfig_swigregister(Error_InvalidNodeConfig) - - - diff --git a/pyproject.toml b/pyproject.toml index 8782113..c9742fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "python-mscl" -version = "67.0.0" +version = "67.0.1.0" description = "Easy to install python wrapper for the MSCL library." readme = "README.md" authors = [ @@ -23,7 +23,11 @@ classifiers = [ dependencies = [] [dependency-groups] -dev = ["ruff", "hatchling"] +dev = [ + "ruff", + "hatchling", + "pygithub>=2.5.0", +] [tool.hatch.build.targets.wheel] packages = ["src/python_mscl"] @@ -33,10 +37,10 @@ path = "hatch_build.py" [tool.hatch.build.targets.sdist] exclude = ["mscl_release_assets/", "uv.lock", "main.py", "src/python_mscl/_mscl.so", -"src/python_mscl/mscl.py"] +"src/python_mscl/mscl.py", "src/python_mscl/mscl.pyd"] [build-system] -requires = ["hatchling", "requests", "pygithub"] +requires = ["hatchling"] build-backend = "hatchling.build" # [[tool.uv.index]] @@ -53,8 +57,8 @@ show-fixes = true exclude = ["mscl_release_assets/"] [tool.ruff.lint] -ignore = ["ISC001", "S603", "S605", "S607", "PLR0912"] +ignore = ["ISC001", "S603", "S605", "S607", "PLR0912", "T201"] select = ["E", "F", "I", "PL", "UP", "RUF", "PTH", "C4", "B", "PIE", "SIM", "RET", "RSE", "G", "ISC", "PT", "ASYNC", "TCH", "SLOT", "PERF", "PYI", "FLY", "AIR", "Q", "INP", "W", "YTT", "DTZ", "ARG", "T20", "FURB", "D100", "D101", "D300", "D418", - "D419", "S", "NPY"] \ No newline at end of file + "D419", "S", "NPY"] diff --git a/run_build.py b/run_build.py new file mode 100644 index 0000000..2529bcb --- /dev/null +++ b/run_build.py @@ -0,0 +1,57 @@ +"""Script to run the hatch build for a given python version and architecture.""" + +import itertools +import os +import platform +import subprocess +import sys + +from constants import MACHINE_MAPPING_TO_ARCH + + +def run_hatch_build(python_version: str, build_arch: str) -> None: + """Run the hatch build for the given Python version and architecture.""" + + # modify_pyproject_toml(python_version, build_arch) + env = os.environ.copy() + env["PYTHON_BUILD_VERSION"] = python_version + env["BUILD_ARCH"] = build_arch + + # Run the hatch build with the environment variables set: + subprocess.run(["uv", "build", "--wheel"], check=True, env=env) + + +def main(github_actions: bool = False) -> None: + """Entry point to run the hatch build for the given Python version and architecture. + + Make sure to have first downloaded and extracted the release assets from the Github repository. + i.e. run `uv run download_and_extract_assets.py` before running this script. + + Args: + github_actions: If the script is running in a Github Actions environment. If true, the + script will run the hatch build for only the Python version and architecture detected. + """ + + # Iterate through the Python versions and architectures: + # See the file names in the extracted folder for the exact names: + # This must be the same as the dictionary in the hatch_build.py file + python_versions = ["Python3.9", "Python3.10", "Python3.11", "Python3.12", "Python3.13"] + build_architectures = ["amd64", "arm64", "armhf", "Windows_x64", "Windows_x86"] + + if github_actions: + detected_python_version = f"Python{sys.version_info.major}.{sys.version_info.minor}" + detected_arch = MACHINE_MAPPING_TO_ARCH.get(platform.machine()) + run_hatch_build(detected_python_version, detected_arch) + + else: + for python_version, build_arch in itertools.product(python_versions, build_architectures): + run_hatch_build(python_version, build_arch) + + +if __name__ == "__main__": + if os.getenv("GITHUB_ACTIONS", "false") == "true": + print("Building in Github Actions environment.") + main(github_actions=True) + else: + print("Building locally") + main() diff --git a/uv.lock b/uv.lock index 11828b7..9f53dc7 100644 --- a/uv.lock +++ b/uv.lock @@ -1,6 +1,211 @@ version = 1 requires-python = ">=3.9" +[[package]] +name = "certifi" +version = "2025.1.31" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1c/ab/c9f1e32b7b1bf505bf26f0ef697775960db7932abeb7b516de930ba2705f/certifi-2025.1.31.tar.gz", hash = "sha256:3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651", size = 167577 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl", hash = "sha256:ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe", size = 166393 }, +] + +[[package]] +name = "cffi" +version = "1.17.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pycparser" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fc/97/c783634659c2920c3fc70419e3af40972dbaf758daa229a7d6ea6135c90d/cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824", size = 516621 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/90/07/f44ca684db4e4f08a3fdc6eeb9a0d15dc6883efc7b8c90357fdbf74e186c/cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14", size = 182191 }, + { url = "https://files.pythonhosted.org/packages/08/fd/cc2fedbd887223f9f5d170c96e57cbf655df9831a6546c1727ae13fa977a/cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67", size = 178592 }, + { url = "https://files.pythonhosted.org/packages/de/cc/4635c320081c78d6ffc2cab0a76025b691a91204f4aa317d568ff9280a2d/cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382", size = 426024 }, + { url = "https://files.pythonhosted.org/packages/b6/7b/3b2b250f3aab91abe5f8a51ada1b717935fdaec53f790ad4100fe2ec64d1/cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702", size = 448188 }, + { url = "https://files.pythonhosted.org/packages/d3/48/1b9283ebbf0ec065148d8de05d647a986c5f22586b18120020452fff8f5d/cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3", size = 455571 }, + { url = "https://files.pythonhosted.org/packages/40/87/3b8452525437b40f39ca7ff70276679772ee7e8b394934ff60e63b7b090c/cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6", size = 436687 }, + { url = "https://files.pythonhosted.org/packages/8d/fb/4da72871d177d63649ac449aec2e8a29efe0274035880c7af59101ca2232/cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17", size = 446211 }, + { url = "https://files.pythonhosted.org/packages/ab/a0/62f00bcb411332106c02b663b26f3545a9ef136f80d5df746c05878f8c4b/cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8", size = 461325 }, + { url = "https://files.pythonhosted.org/packages/36/83/76127035ed2e7e27b0787604d99da630ac3123bfb02d8e80c633f218a11d/cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e", size = 438784 }, + { url = "https://files.pythonhosted.org/packages/21/81/a6cd025db2f08ac88b901b745c163d884641909641f9b826e8cb87645942/cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be", size = 461564 }, + { url = "https://files.pythonhosted.org/packages/f8/fe/4d41c2f200c4a457933dbd98d3cf4e911870877bd94d9656cc0fcb390681/cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c", size = 171804 }, + { url = "https://files.pythonhosted.org/packages/d1/b6/0b0f5ab93b0df4acc49cae758c81fe4e5ef26c3ae2e10cc69249dfd8b3ab/cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15", size = 181299 }, + { url = "https://files.pythonhosted.org/packages/6b/f4/927e3a8899e52a27fa57a48607ff7dc91a9ebe97399b357b85a0c7892e00/cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401", size = 182264 }, + { url = "https://files.pythonhosted.org/packages/6c/f5/6c3a8efe5f503175aaddcbea6ad0d2c96dad6f5abb205750d1b3df44ef29/cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf", size = 178651 }, + { url = "https://files.pythonhosted.org/packages/94/dd/a3f0118e688d1b1a57553da23b16bdade96d2f9bcda4d32e7d2838047ff7/cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4", size = 445259 }, + { url = "https://files.pythonhosted.org/packages/2e/ea/70ce63780f096e16ce8588efe039d3c4f91deb1dc01e9c73a287939c79a6/cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41", size = 469200 }, + { url = "https://files.pythonhosted.org/packages/1c/a0/a4fa9f4f781bda074c3ddd57a572b060fa0df7655d2a4247bbe277200146/cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1", size = 477235 }, + { url = "https://files.pythonhosted.org/packages/62/12/ce8710b5b8affbcdd5c6e367217c242524ad17a02fe5beec3ee339f69f85/cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6", size = 459721 }, + { url = "https://files.pythonhosted.org/packages/ff/6b/d45873c5e0242196f042d555526f92aa9e0c32355a1be1ff8c27f077fd37/cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d", size = 467242 }, + { url = "https://files.pythonhosted.org/packages/1a/52/d9a0e523a572fbccf2955f5abe883cfa8bcc570d7faeee06336fbd50c9fc/cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6", size = 477999 }, + { url = "https://files.pythonhosted.org/packages/44/74/f2a2460684a1a2d00ca799ad880d54652841a780c4c97b87754f660c7603/cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f", size = 454242 }, + { url = "https://files.pythonhosted.org/packages/f8/4a/34599cac7dfcd888ff54e801afe06a19c17787dfd94495ab0c8d35fe99fb/cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b", size = 478604 }, + { url = "https://files.pythonhosted.org/packages/34/33/e1b8a1ba29025adbdcda5fb3a36f94c03d771c1b7b12f726ff7fef2ebe36/cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655", size = 171727 }, + { url = "https://files.pythonhosted.org/packages/3d/97/50228be003bb2802627d28ec0627837ac0bf35c90cf769812056f235b2d1/cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0", size = 181400 }, + { url = "https://files.pythonhosted.org/packages/5a/84/e94227139ee5fb4d600a7a4927f322e1d4aea6fdc50bd3fca8493caba23f/cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4", size = 183178 }, + { url = "https://files.pythonhosted.org/packages/da/ee/fb72c2b48656111c4ef27f0f91da355e130a923473bf5ee75c5643d00cca/cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c", size = 178840 }, + { url = "https://files.pythonhosted.org/packages/cc/b6/db007700f67d151abadf508cbfd6a1884f57eab90b1bb985c4c8c02b0f28/cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36", size = 454803 }, + { url = "https://files.pythonhosted.org/packages/1a/df/f8d151540d8c200eb1c6fba8cd0dfd40904f1b0682ea705c36e6c2e97ab3/cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5", size = 478850 }, + { url = "https://files.pythonhosted.org/packages/28/c0/b31116332a547fd2677ae5b78a2ef662dfc8023d67f41b2a83f7c2aa78b1/cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff", size = 485729 }, + { url = "https://files.pythonhosted.org/packages/91/2b/9a1ddfa5c7f13cab007a2c9cc295b70fbbda7cb10a286aa6810338e60ea1/cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99", size = 471256 }, + { url = "https://files.pythonhosted.org/packages/b2/d5/da47df7004cb17e4955df6a43d14b3b4ae77737dff8bf7f8f333196717bf/cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93", size = 479424 }, + { url = "https://files.pythonhosted.org/packages/0b/ac/2a28bcf513e93a219c8a4e8e125534f4f6db03e3179ba1c45e949b76212c/cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3", size = 484568 }, + { url = "https://files.pythonhosted.org/packages/d4/38/ca8a4f639065f14ae0f1d9751e70447a261f1a30fa7547a828ae08142465/cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8", size = 488736 }, + { url = "https://files.pythonhosted.org/packages/86/c5/28b2d6f799ec0bdecf44dced2ec5ed43e0eb63097b0f58c293583b406582/cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65", size = 172448 }, + { url = "https://files.pythonhosted.org/packages/50/b9/db34c4755a7bd1cb2d1603ac3863f22bcecbd1ba29e5ee841a4bc510b294/cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903", size = 181976 }, + { url = "https://files.pythonhosted.org/packages/8d/f8/dd6c246b148639254dad4d6803eb6a54e8c85c6e11ec9df2cffa87571dbe/cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e", size = 182989 }, + { url = "https://files.pythonhosted.org/packages/8b/f1/672d303ddf17c24fc83afd712316fda78dc6fce1cd53011b839483e1ecc8/cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2", size = 178802 }, + { url = "https://files.pythonhosted.org/packages/0e/2d/eab2e858a91fdff70533cab61dcff4a1f55ec60425832ddfdc9cd36bc8af/cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3", size = 454792 }, + { url = "https://files.pythonhosted.org/packages/75/b2/fbaec7c4455c604e29388d55599b99ebcc250a60050610fadde58932b7ee/cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683", size = 478893 }, + { url = "https://files.pythonhosted.org/packages/4f/b7/6e4a2162178bf1935c336d4da8a9352cccab4d3a5d7914065490f08c0690/cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5", size = 485810 }, + { url = "https://files.pythonhosted.org/packages/c7/8a/1d0e4a9c26e54746dc08c2c6c037889124d4f59dffd853a659fa545f1b40/cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4", size = 471200 }, + { url = "https://files.pythonhosted.org/packages/26/9f/1aab65a6c0db35f43c4d1b4f580e8df53914310afc10ae0397d29d697af4/cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd", size = 479447 }, + { url = "https://files.pythonhosted.org/packages/5f/e4/fb8b3dd8dc0e98edf1135ff067ae070bb32ef9d509d6cb0f538cd6f7483f/cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed", size = 484358 }, + { url = "https://files.pythonhosted.org/packages/f1/47/d7145bf2dc04684935d57d67dff9d6d795b2ba2796806bb109864be3a151/cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9", size = 488469 }, + { url = "https://files.pythonhosted.org/packages/bf/ee/f94057fa6426481d663b88637a9a10e859e492c73d0384514a17d78ee205/cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d", size = 172475 }, + { url = "https://files.pythonhosted.org/packages/7c/fc/6a8cb64e5f0324877d503c854da15d76c1e50eb722e320b15345c4d0c6de/cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a", size = 182009 }, + { url = "https://files.pythonhosted.org/packages/b9/ea/8bb50596b8ffbc49ddd7a1ad305035daa770202a6b782fc164647c2673ad/cffi-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2ab587605f4ba0bf81dc0cb08a41bd1c0a5906bd59243d56bad7668a6fc6c16", size = 182220 }, + { url = "https://files.pythonhosted.org/packages/ae/11/e77c8cd24f58285a82c23af484cf5b124a376b32644e445960d1a4654c3a/cffi-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28b16024becceed8c6dfbc75629e27788d8a3f9030691a1dbf9821a128b22c36", size = 178605 }, + { url = "https://files.pythonhosted.org/packages/ed/65/25a8dc32c53bf5b7b6c2686b42ae2ad58743f7ff644844af7cdb29b49361/cffi-1.17.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d599671f396c4723d016dbddb72fe8e0397082b0a77a4fab8028923bec050e8", size = 424910 }, + { url = "https://files.pythonhosted.org/packages/42/7a/9d086fab7c66bd7c4d0f27c57a1b6b068ced810afc498cc8c49e0088661c/cffi-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca74b8dbe6e8e8263c0ffd60277de77dcee6c837a3d0881d8c1ead7268c9e576", size = 447200 }, + { url = "https://files.pythonhosted.org/packages/da/63/1785ced118ce92a993b0ec9e0d0ac8dc3e5dbfbcaa81135be56c69cabbb6/cffi-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7f5baafcc48261359e14bcd6d9bff6d4b28d9103847c9e136694cb0501aef87", size = 454565 }, + { url = "https://files.pythonhosted.org/packages/74/06/90b8a44abf3556599cdec107f7290277ae8901a58f75e6fe8f970cd72418/cffi-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98e3969bcff97cae1b2def8ba499ea3d6f31ddfdb7635374834cf89a1a08ecf0", size = 435635 }, + { url = "https://files.pythonhosted.org/packages/bd/62/a1f468e5708a70b1d86ead5bab5520861d9c7eacce4a885ded9faa7729c3/cffi-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdf5ce3acdfd1661132f2a9c19cac174758dc2352bfe37d98aa7512c6b7178b3", size = 445218 }, + { url = "https://files.pythonhosted.org/packages/5b/95/b34462f3ccb09c2594aa782d90a90b045de4ff1f70148ee79c69d37a0a5a/cffi-1.17.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9755e4345d1ec879e3849e62222a18c7174d65a6a92d5b346b1863912168b595", size = 460486 }, + { url = "https://files.pythonhosted.org/packages/fc/fc/a1e4bebd8d680febd29cf6c8a40067182b64f00c7d105f8f26b5bc54317b/cffi-1.17.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f1e22e8c4419538cb197e4dd60acc919d7696e5ef98ee4da4e01d3f8cfa4cc5a", size = 437911 }, + { url = "https://files.pythonhosted.org/packages/e6/c3/21cab7a6154b6a5ea330ae80de386e7665254835b9e98ecc1340b3a7de9a/cffi-1.17.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c03e868a0b3bc35839ba98e74211ed2b05d2119be4e8a0f224fba9384f1fe02e", size = 460632 }, + { url = "https://files.pythonhosted.org/packages/cb/b5/fd9f8b5a84010ca169ee49f4e4ad6f8c05f4e3545b72ee041dbbcb159882/cffi-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e31ae45bc2e29f6b2abd0de1cc3b9d5205aa847cafaecb8af1476a609a2f6eb7", size = 171820 }, + { url = "https://files.pythonhosted.org/packages/8c/52/b08750ce0bce45c143e1b5d7357ee8c55341b52bdef4b0f081af1eb248c2/cffi-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d016c76bdd850f3c626af19b0542c9677ba156e4ee4fccfdd7848803533ef662", size = 181290 }, +] + +[[package]] +name = "charset-normalizer" +version = "3.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz", hash = "sha256:44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3", size = 123188 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0d/58/5580c1716040bc89206c77d8f74418caf82ce519aae06450393ca73475d1/charset_normalizer-3.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:91b36a978b5ae0ee86c394f5a54d6ef44db1de0815eb43de826d41d21e4af3de", size = 198013 }, + { url = "https://files.pythonhosted.org/packages/d0/11/00341177ae71c6f5159a08168bcb98c6e6d196d372c94511f9f6c9afe0c6/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7461baadb4dc00fd9e0acbe254e3d7d2112e7f92ced2adc96e54ef6501c5f176", size = 141285 }, + { url = "https://files.pythonhosted.org/packages/01/09/11d684ea5819e5a8f5100fb0b38cf8d02b514746607934134d31233e02c8/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e218488cd232553829be0664c2292d3af2eeeb94b32bea483cf79ac6a694e037", size = 151449 }, + { url = "https://files.pythonhosted.org/packages/08/06/9f5a12939db324d905dc1f70591ae7d7898d030d7662f0d426e2286f68c9/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80ed5e856eb7f30115aaf94e4a08114ccc8813e6ed1b5efa74f9f82e8509858f", size = 143892 }, + { url = "https://files.pythonhosted.org/packages/93/62/5e89cdfe04584cb7f4d36003ffa2936681b03ecc0754f8e969c2becb7e24/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b010a7a4fd316c3c484d482922d13044979e78d1861f0e0650423144c616a46a", size = 146123 }, + { url = "https://files.pythonhosted.org/packages/a9/ac/ab729a15c516da2ab70a05f8722ecfccc3f04ed7a18e45c75bbbaa347d61/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4532bff1b8421fd0a320463030c7520f56a79c9024a4e88f01c537316019005a", size = 147943 }, + { url = "https://files.pythonhosted.org/packages/03/d2/3f392f23f042615689456e9a274640c1d2e5dd1d52de36ab8f7955f8f050/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d973f03c0cb71c5ed99037b870f2be986c3c05e63622c017ea9816881d2dd247", size = 142063 }, + { url = "https://files.pythonhosted.org/packages/f2/e3/e20aae5e1039a2cd9b08d9205f52142329f887f8cf70da3650326670bddf/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3a3bd0dcd373514dcec91c411ddb9632c0d7d92aed7093b8c3bbb6d69ca74408", size = 150578 }, + { url = "https://files.pythonhosted.org/packages/8d/af/779ad72a4da0aed925e1139d458adc486e61076d7ecdcc09e610ea8678db/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:d9c3cdf5390dcd29aa8056d13e8e99526cda0305acc038b96b30352aff5ff2bb", size = 153629 }, + { url = "https://files.pythonhosted.org/packages/c2/b6/7aa450b278e7aa92cf7732140bfd8be21f5f29d5bf334ae987c945276639/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2bdfe3ac2e1bbe5b59a1a63721eb3b95fc9b6817ae4a46debbb4e11f6232428d", size = 150778 }, + { url = "https://files.pythonhosted.org/packages/39/f4/d9f4f712d0951dcbfd42920d3db81b00dd23b6ab520419626f4023334056/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:eab677309cdb30d047996b36d34caeda1dc91149e4fdca0b1a039b3f79d9a807", size = 146453 }, + { url = "https://files.pythonhosted.org/packages/49/2b/999d0314e4ee0cff3cb83e6bc9aeddd397eeed693edb4facb901eb8fbb69/charset_normalizer-3.4.1-cp310-cp310-win32.whl", hash = "sha256:c0429126cf75e16c4f0ad00ee0eae4242dc652290f940152ca8c75c3a4b6ee8f", size = 95479 }, + { url = "https://files.pythonhosted.org/packages/2d/ce/3cbed41cff67e455a386fb5e5dd8906cdda2ed92fbc6297921f2e4419309/charset_normalizer-3.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:9f0b8b1c6d84c8034a44893aba5e767bf9c7a211e313a9605d9c617d7083829f", size = 102790 }, + { url = "https://files.pythonhosted.org/packages/72/80/41ef5d5a7935d2d3a773e3eaebf0a9350542f2cab4eac59a7a4741fbbbbe/charset_normalizer-3.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8bfa33f4f2672964266e940dd22a195989ba31669bd84629f05fab3ef4e2d125", size = 194995 }, + { url = "https://files.pythonhosted.org/packages/7a/28/0b9fefa7b8b080ec492110af6d88aa3dea91c464b17d53474b6e9ba5d2c5/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28bf57629c75e810b6ae989f03c0828d64d6b26a5e205535585f96093e405ed1", size = 139471 }, + { url = "https://files.pythonhosted.org/packages/71/64/d24ab1a997efb06402e3fc07317e94da358e2585165930d9d59ad45fcae2/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f08ff5e948271dc7e18a35641d2f11a4cd8dfd5634f55228b691e62b37125eb3", size = 149831 }, + { url = "https://files.pythonhosted.org/packages/37/ed/be39e5258e198655240db5e19e0b11379163ad7070962d6b0c87ed2c4d39/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:234ac59ea147c59ee4da87a0c0f098e9c8d169f4dc2a159ef720f1a61bbe27cd", size = 142335 }, + { url = "https://files.pythonhosted.org/packages/88/83/489e9504711fa05d8dde1574996408026bdbdbd938f23be67deebb5eca92/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd4ec41f914fa74ad1b8304bbc634b3de73d2a0889bd32076342a573e0779e00", size = 143862 }, + { url = "https://files.pythonhosted.org/packages/c6/c7/32da20821cf387b759ad24627a9aca289d2822de929b8a41b6241767b461/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eea6ee1db730b3483adf394ea72f808b6e18cf3cb6454b4d86e04fa8c4327a12", size = 145673 }, + { url = "https://files.pythonhosted.org/packages/68/85/f4288e96039abdd5aeb5c546fa20a37b50da71b5cf01e75e87f16cd43304/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c96836c97b1238e9c9e3fe90844c947d5afbf4f4c92762679acfe19927d81d77", size = 140211 }, + { url = "https://files.pythonhosted.org/packages/28/a3/a42e70d03cbdabc18997baf4f0227c73591a08041c149e710045c281f97b/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d86f7aff21ee58f26dcf5ae81a9addbd914115cdebcbb2217e4f0ed8982e146", size = 148039 }, + { url = "https://files.pythonhosted.org/packages/85/e4/65699e8ab3014ecbe6f5c71d1a55d810fb716bbfd74f6283d5c2aa87febf/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:09b5e6733cbd160dcc09589227187e242a30a49ca5cefa5a7edd3f9d19ed53fd", size = 151939 }, + { url = "https://files.pythonhosted.org/packages/b1/82/8e9fe624cc5374193de6860aba3ea8070f584c8565ee77c168ec13274bd2/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:5777ee0881f9499ed0f71cc82cf873d9a0ca8af166dfa0af8ec4e675b7df48e6", size = 149075 }, + { url = "https://files.pythonhosted.org/packages/3d/7b/82865ba54c765560c8433f65e8acb9217cb839a9e32b42af4aa8e945870f/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:237bdbe6159cff53b4f24f397d43c6336c6b0b42affbe857970cefbb620911c8", size = 144340 }, + { url = "https://files.pythonhosted.org/packages/b5/b6/9674a4b7d4d99a0d2df9b215da766ee682718f88055751e1e5e753c82db0/charset_normalizer-3.4.1-cp311-cp311-win32.whl", hash = "sha256:8417cb1f36cc0bc7eaba8ccb0e04d55f0ee52df06df3ad55259b9a323555fc8b", size = 95205 }, + { url = "https://files.pythonhosted.org/packages/1e/ab/45b180e175de4402dcf7547e4fb617283bae54ce35c27930a6f35b6bef15/charset_normalizer-3.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:d7f50a1f8c450f3925cb367d011448c39239bb3eb4117c36a6d354794de4ce76", size = 102441 }, + { url = "https://files.pythonhosted.org/packages/0a/9a/dd1e1cdceb841925b7798369a09279bd1cf183cef0f9ddf15a3a6502ee45/charset_normalizer-3.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:73d94b58ec7fecbc7366247d3b0b10a21681004153238750bb67bd9012414545", size = 196105 }, + { url = "https://files.pythonhosted.org/packages/d3/8c/90bfabf8c4809ecb648f39794cf2a84ff2e7d2a6cf159fe68d9a26160467/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dad3e487649f498dd991eeb901125411559b22e8d7ab25d3aeb1af367df5efd7", size = 140404 }, + { url = "https://files.pythonhosted.org/packages/ad/8f/e410d57c721945ea3b4f1a04b74f70ce8fa800d393d72899f0a40526401f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c30197aa96e8eed02200a83fba2657b4c3acd0f0aa4bdc9f6c1af8e8962e0757", size = 150423 }, + { url = "https://files.pythonhosted.org/packages/f0/b8/e6825e25deb691ff98cf5c9072ee0605dc2acfca98af70c2d1b1bc75190d/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2369eea1ee4a7610a860d88f268eb39b95cb588acd7235e02fd5a5601773d4fa", size = 143184 }, + { url = "https://files.pythonhosted.org/packages/3e/a2/513f6cbe752421f16d969e32f3583762bfd583848b763913ddab8d9bfd4f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc2722592d8998c870fa4e290c2eec2c1569b87fe58618e67d38b4665dfa680d", size = 145268 }, + { url = "https://files.pythonhosted.org/packages/74/94/8a5277664f27c3c438546f3eb53b33f5b19568eb7424736bdc440a88a31f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffc9202a29ab3920fa812879e95a9e78b2465fd10be7fcbd042899695d75e616", size = 147601 }, + { url = "https://files.pythonhosted.org/packages/7c/5f/6d352c51ee763623a98e31194823518e09bfa48be2a7e8383cf691bbb3d0/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:804a4d582ba6e5b747c625bf1255e6b1507465494a40a2130978bda7b932c90b", size = 141098 }, + { url = "https://files.pythonhosted.org/packages/78/d4/f5704cb629ba5ab16d1d3d741396aec6dc3ca2b67757c45b0599bb010478/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f55e69f030f7163dffe9fd0752b32f070566451afe180f99dbeeb81f511ad8d", size = 149520 }, + { url = "https://files.pythonhosted.org/packages/c5/96/64120b1d02b81785f222b976c0fb79a35875457fa9bb40827678e54d1bc8/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c4c3e6da02df6fa1410a7680bd3f63d4f710232d3139089536310d027950696a", size = 152852 }, + { url = "https://files.pythonhosted.org/packages/84/c9/98e3732278a99f47d487fd3468bc60b882920cef29d1fa6ca460a1fdf4e6/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:5df196eb874dae23dcfb968c83d4f8fdccb333330fe1fc278ac5ceeb101003a9", size = 150488 }, + { url = "https://files.pythonhosted.org/packages/13/0e/9c8d4cb99c98c1007cc11eda969ebfe837bbbd0acdb4736d228ccaabcd22/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e358e64305fe12299a08e08978f51fc21fac060dcfcddd95453eabe5b93ed0e1", size = 146192 }, + { url = "https://files.pythonhosted.org/packages/b2/21/2b6b5b860781a0b49427309cb8670785aa543fb2178de875b87b9cc97746/charset_normalizer-3.4.1-cp312-cp312-win32.whl", hash = "sha256:9b23ca7ef998bc739bf6ffc077c2116917eabcc901f88da1b9856b210ef63f35", size = 95550 }, + { url = "https://files.pythonhosted.org/packages/21/5b/1b390b03b1d16c7e382b561c5329f83cc06623916aab983e8ab9239c7d5c/charset_normalizer-3.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:6ff8a4a60c227ad87030d76e99cd1698345d4491638dfa6673027c48b3cd395f", size = 102785 }, + { url = "https://files.pythonhosted.org/packages/38/94/ce8e6f63d18049672c76d07d119304e1e2d7c6098f0841b51c666e9f44a0/charset_normalizer-3.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:aabfa34badd18f1da5ec1bc2715cadc8dca465868a4e73a0173466b688f29dda", size = 195698 }, + { url = "https://files.pythonhosted.org/packages/24/2e/dfdd9770664aae179a96561cc6952ff08f9a8cd09a908f259a9dfa063568/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22e14b5d70560b8dd51ec22863f370d1e595ac3d024cb8ad7d308b4cd95f8313", size = 140162 }, + { url = "https://files.pythonhosted.org/packages/24/4e/f646b9093cff8fc86f2d60af2de4dc17c759de9d554f130b140ea4738ca6/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8436c508b408b82d87dc5f62496973a1805cd46727c34440b0d29d8a2f50a6c9", size = 150263 }, + { url = "https://files.pythonhosted.org/packages/5e/67/2937f8d548c3ef6e2f9aab0f6e21001056f692d43282b165e7c56023e6dd/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2d074908e1aecee37a7635990b2c6d504cd4766c7bc9fc86d63f9c09af3fa11b", size = 142966 }, + { url = "https://files.pythonhosted.org/packages/52/ed/b7f4f07de100bdb95c1756d3a4d17b90c1a3c53715c1a476f8738058e0fa/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:955f8851919303c92343d2f66165294848d57e9bba6cf6e3625485a70a038d11", size = 144992 }, + { url = "https://files.pythonhosted.org/packages/96/2c/d49710a6dbcd3776265f4c923bb73ebe83933dfbaa841c5da850fe0fd20b/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:44ecbf16649486d4aebafeaa7ec4c9fed8b88101f4dd612dcaf65d5e815f837f", size = 147162 }, + { url = "https://files.pythonhosted.org/packages/b4/41/35ff1f9a6bd380303dea55e44c4933b4cc3c4850988927d4082ada230273/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0924e81d3d5e70f8126529951dac65c1010cdf117bb75eb02dd12339b57749dd", size = 140972 }, + { url = "https://files.pythonhosted.org/packages/fb/43/c6a0b685fe6910d08ba971f62cd9c3e862a85770395ba5d9cad4fede33ab/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2967f74ad52c3b98de4c3b32e1a44e32975e008a9cd2a8cc8966d6a5218c5cb2", size = 149095 }, + { url = "https://files.pythonhosted.org/packages/4c/ff/a9a504662452e2d2878512115638966e75633519ec11f25fca3d2049a94a/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c75cb2a3e389853835e84a2d8fb2b81a10645b503eca9bcb98df6b5a43eb8886", size = 152668 }, + { url = "https://files.pythonhosted.org/packages/6c/71/189996b6d9a4b932564701628af5cee6716733e9165af1d5e1b285c530ed/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:09b26ae6b1abf0d27570633b2b078a2a20419c99d66fb2823173d73f188ce601", size = 150073 }, + { url = "https://files.pythonhosted.org/packages/e4/93/946a86ce20790e11312c87c75ba68d5f6ad2208cfb52b2d6a2c32840d922/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa88b843d6e211393a37219e6a1c1df99d35e8fd90446f1118f4216e307e48cd", size = 145732 }, + { url = "https://files.pythonhosted.org/packages/cd/e5/131d2fb1b0dddafc37be4f3a2fa79aa4c037368be9423061dccadfd90091/charset_normalizer-3.4.1-cp313-cp313-win32.whl", hash = "sha256:eb8178fe3dba6450a3e024e95ac49ed3400e506fd4e9e5c32d30adda88cbd407", size = 95391 }, + { url = "https://files.pythonhosted.org/packages/27/f2/4f9a69cc7712b9b5ad8fdb87039fd89abba997ad5cbe690d1835d40405b0/charset_normalizer-3.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:b1ac5992a838106edb89654e0aebfc24f5848ae2547d22c2c3f66454daa11971", size = 102702 }, + { url = "https://files.pythonhosted.org/packages/7f/c0/b913f8f02836ed9ab32ea643c6fe4d3325c3d8627cf6e78098671cafff86/charset_normalizer-3.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b97e690a2118911e39b4042088092771b4ae3fc3aa86518f84b8cf6888dbdb41", size = 197867 }, + { url = "https://files.pythonhosted.org/packages/0f/6c/2bee440303d705b6fb1e2ec789543edec83d32d258299b16eed28aad48e0/charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78baa6d91634dfb69ec52a463534bc0df05dbd546209b79a3880a34487f4b84f", size = 141385 }, + { url = "https://files.pythonhosted.org/packages/3d/04/cb42585f07f6f9fd3219ffb6f37d5a39b4fd2db2355b23683060029c35f7/charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a2bc9f351a75ef49d664206d51f8e5ede9da246602dc2d2726837620ea034b2", size = 151367 }, + { url = "https://files.pythonhosted.org/packages/54/54/2412a5b093acb17f0222de007cc129ec0e0df198b5ad2ce5699355269dfe/charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75832c08354f595c760a804588b9357d34ec00ba1c940c15e31e96d902093770", size = 143928 }, + { url = "https://files.pythonhosted.org/packages/5a/6d/e2773862b043dcf8a221342954f375392bb2ce6487bcd9f2c1b34e1d6781/charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0af291f4fe114be0280cdd29d533696a77b5b49cfde5467176ecab32353395c4", size = 146203 }, + { url = "https://files.pythonhosted.org/packages/b9/f8/ca440ef60d8f8916022859885f231abb07ada3c347c03d63f283bec32ef5/charset_normalizer-3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0167ddc8ab6508fe81860a57dd472b2ef4060e8d378f0cc555707126830f2537", size = 148082 }, + { url = "https://files.pythonhosted.org/packages/04/d2/42fd330901aaa4b805a1097856c2edf5095e260a597f65def493f4b8c833/charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2a75d49014d118e4198bcee5ee0a6f25856b29b12dbf7cd012791f8a6cc5c496", size = 142053 }, + { url = "https://files.pythonhosted.org/packages/9e/af/3a97a4fa3c53586f1910dadfc916e9c4f35eeada36de4108f5096cb7215f/charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:363e2f92b0f0174b2f8238240a1a30142e3db7b957a5dd5689b0e75fb717cc78", size = 150625 }, + { url = "https://files.pythonhosted.org/packages/26/ae/23d6041322a3556e4da139663d02fb1b3c59a23ab2e2b56432bd2ad63ded/charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ab36c8eb7e454e34e60eb55ca5d241a5d18b2c6244f6827a30e451c42410b5f7", size = 153549 }, + { url = "https://files.pythonhosted.org/packages/94/22/b8f2081c6a77cb20d97e57e0b385b481887aa08019d2459dc2858ed64871/charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:4c0907b1928a36d5a998d72d64d8eaa7244989f7aaaf947500d3a800c83a3fd6", size = 150945 }, + { url = "https://files.pythonhosted.org/packages/c7/0b/c5ec5092747f801b8b093cdf5610e732b809d6cb11f4c51e35fc28d1d389/charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:04432ad9479fa40ec0f387795ddad4437a2b50417c69fa275e212933519ff294", size = 146595 }, + { url = "https://files.pythonhosted.org/packages/0c/5a/0b59704c38470df6768aa154cc87b1ac7c9bb687990a1559dc8765e8627e/charset_normalizer-3.4.1-cp39-cp39-win32.whl", hash = "sha256:3bed14e9c89dcb10e8f3a29f9ccac4955aebe93c71ae803af79265c9ca5644c5", size = 95453 }, + { url = "https://files.pythonhosted.org/packages/85/2d/a9790237cb4d01a6d57afadc8573c8b73c609ade20b80f4cda30802009ee/charset_normalizer-3.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:49402233c892a461407c512a19435d1ce275543138294f7ef013f0b63d5d3765", size = 102811 }, + { url = "https://files.pythonhosted.org/packages/0e/f6/65ecc6878a89bb1c23a086ea335ad4bf21a588990c3f535a227b9eea9108/charset_normalizer-3.4.1-py3-none-any.whl", hash = "sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85", size = 49767 }, +] + +[[package]] +name = "cryptography" +version = "44.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "platform_python_implementation != 'PyPy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c7/67/545c79fe50f7af51dbad56d16b23fe33f63ee6a5d956b3cb68ea110cbe64/cryptography-44.0.1.tar.gz", hash = "sha256:f51f5705ab27898afda1aaa430f34ad90dc117421057782022edf0600bec5f14", size = 710819 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/72/27/5e3524053b4c8889da65cf7814a9d0d8514a05194a25e1e34f46852ee6eb/cryptography-44.0.1-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:bf688f615c29bfe9dfc44312ca470989279f0e94bb9f631f85e3459af8efc009", size = 6642022 }, + { url = "https://files.pythonhosted.org/packages/34/b9/4d1fa8d73ae6ec350012f89c3abfbff19fc95fe5420cf972e12a8d182986/cryptography-44.0.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd7c7e2d71d908dc0f8d2027e1604102140d84b155e658c20e8ad1304317691f", size = 3943865 }, + { url = "https://files.pythonhosted.org/packages/6e/57/371a9f3f3a4500807b5fcd29fec77f418ba27ffc629d88597d0d1049696e/cryptography-44.0.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:887143b9ff6bad2b7570da75a7fe8bbf5f65276365ac259a5d2d5147a73775f2", size = 4162562 }, + { url = "https://files.pythonhosted.org/packages/c5/1d/5b77815e7d9cf1e3166988647f336f87d5634a5ccecec2ffbe08ef8dd481/cryptography-44.0.1-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:322eb03ecc62784536bc173f1483e76747aafeb69c8728df48537eb431cd1911", size = 3951923 }, + { url = "https://files.pythonhosted.org/packages/28/01/604508cd34a4024467cd4105887cf27da128cba3edd435b54e2395064bfb/cryptography-44.0.1-cp37-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:21377472ca4ada2906bc313168c9dc7b1d7ca417b63c1c3011d0c74b7de9ae69", size = 3685194 }, + { url = "https://files.pythonhosted.org/packages/c6/3d/d3c55d4f1d24580a236a6753902ef6d8aafd04da942a1ee9efb9dc8fd0cb/cryptography-44.0.1-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:df978682c1504fc93b3209de21aeabf2375cb1571d4e61907b3e7a2540e83026", size = 4187790 }, + { url = "https://files.pythonhosted.org/packages/ea/a6/44d63950c8588bfa8594fd234d3d46e93c3841b8e84a066649c566afb972/cryptography-44.0.1-cp37-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:eb3889330f2a4a148abead555399ec9a32b13b7c8ba969b72d8e500eb7ef84cd", size = 3951343 }, + { url = "https://files.pythonhosted.org/packages/c1/17/f5282661b57301204cbf188254c1a0267dbd8b18f76337f0a7ce1038888c/cryptography-44.0.1-cp37-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:8e6a85a93d0642bd774460a86513c5d9d80b5c002ca9693e63f6e540f1815ed0", size = 4187127 }, + { url = "https://files.pythonhosted.org/packages/f3/68/abbae29ed4f9d96596687f3ceea8e233f65c9645fbbec68adb7c756bb85a/cryptography-44.0.1-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:6f76fdd6fd048576a04c5210d53aa04ca34d2ed63336d4abd306d0cbe298fddf", size = 4070666 }, + { url = "https://files.pythonhosted.org/packages/0f/10/cf91691064a9e0a88ae27e31779200b1505d3aee877dbe1e4e0d73b4f155/cryptography-44.0.1-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:6c8acf6f3d1f47acb2248ec3ea261171a671f3d9428e34ad0357148d492c7864", size = 4288811 }, + { url = "https://files.pythonhosted.org/packages/38/78/74ea9eb547d13c34e984e07ec8a473eb55b19c1451fe7fc8077c6a4b0548/cryptography-44.0.1-cp37-abi3-win32.whl", hash = "sha256:24979e9f2040c953a94bf3c6782e67795a4c260734e5264dceea65c8f4bae64a", size = 2771882 }, + { url = "https://files.pythonhosted.org/packages/cf/6c/3907271ee485679e15c9f5e93eac6aa318f859b0aed8d369afd636fafa87/cryptography-44.0.1-cp37-abi3-win_amd64.whl", hash = "sha256:fd0ee90072861e276b0ff08bd627abec29e32a53b2be44e41dbcdf87cbee2b00", size = 3206989 }, + { url = "https://files.pythonhosted.org/packages/9f/f1/676e69c56a9be9fd1bffa9bc3492366901f6e1f8f4079428b05f1414e65c/cryptography-44.0.1-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:a2d8a7045e1ab9b9f803f0d9531ead85f90c5f2859e653b61497228b18452008", size = 6643714 }, + { url = "https://files.pythonhosted.org/packages/ba/9f/1775600eb69e72d8f9931a104120f2667107a0ee478f6ad4fe4001559345/cryptography-44.0.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b8272f257cf1cbd3f2e120f14c68bff2b6bdfcc157fafdee84a1b795efd72862", size = 3943269 }, + { url = "https://files.pythonhosted.org/packages/25/ba/e00d5ad6b58183829615be7f11f55a7b6baa5a06910faabdc9961527ba44/cryptography-44.0.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e8d181e90a777b63f3f0caa836844a1182f1f265687fac2115fcf245f5fbec3", size = 4166461 }, + { url = "https://files.pythonhosted.org/packages/b3/45/690a02c748d719a95ab08b6e4decb9d81e0ec1bac510358f61624c86e8a3/cryptography-44.0.1-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:436df4f203482f41aad60ed1813811ac4ab102765ecae7a2bbb1dbb66dcff5a7", size = 3950314 }, + { url = "https://files.pythonhosted.org/packages/e6/50/bf8d090911347f9b75adc20f6f6569ed6ca9b9bff552e6e390f53c2a1233/cryptography-44.0.1-cp39-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:4f422e8c6a28cf8b7f883eb790695d6d45b0c385a2583073f3cec434cc705e1a", size = 3686675 }, + { url = "https://files.pythonhosted.org/packages/e1/e7/cfb18011821cc5f9b21efb3f94f3241e3a658d267a3bf3a0f45543858ed8/cryptography-44.0.1-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:72198e2b5925155497a5a3e8c216c7fb3e64c16ccee11f0e7da272fa93b35c4c", size = 4190429 }, + { url = "https://files.pythonhosted.org/packages/07/ef/77c74d94a8bfc1a8a47b3cafe54af3db537f081742ee7a8a9bd982b62774/cryptography-44.0.1-cp39-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:2a46a89ad3e6176223b632056f321bc7de36b9f9b93b2cc1cccf935a3849dc62", size = 3950039 }, + { url = "https://files.pythonhosted.org/packages/6d/b9/8be0ff57c4592382b77406269b1e15650c9f1a167f9e34941b8515b97159/cryptography-44.0.1-cp39-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:53f23339864b617a3dfc2b0ac8d5c432625c80014c25caac9082314e9de56f41", size = 4189713 }, + { url = "https://files.pythonhosted.org/packages/78/e1/4b6ac5f4100545513b0847a4d276fe3c7ce0eacfa73e3b5ebd31776816ee/cryptography-44.0.1-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:888fcc3fce0c888785a4876ca55f9f43787f4c5c1cc1e2e0da71ad481ff82c5b", size = 4071193 }, + { url = "https://files.pythonhosted.org/packages/3d/cb/afff48ceaed15531eab70445abe500f07f8f96af2bb35d98af6bfa89ebd4/cryptography-44.0.1-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:00918d859aa4e57db8299607086f793fa7813ae2ff5a4637e318a25ef82730f7", size = 4289566 }, + { url = "https://files.pythonhosted.org/packages/30/6f/4eca9e2e0f13ae459acd1ca7d9f0257ab86e68f44304847610afcb813dc9/cryptography-44.0.1-cp39-abi3-win32.whl", hash = "sha256:9b336599e2cb77b1008cb2ac264b290803ec5e8e89d618a5e978ff5eb6f715d9", size = 2772371 }, + { url = "https://files.pythonhosted.org/packages/d2/05/5533d30f53f10239616a357f080892026db2d550a40c393d0a8a7af834a9/cryptography-44.0.1-cp39-abi3-win_amd64.whl", hash = "sha256:e403f7f766ded778ecdb790da786b418a9f2394f36e8cc8b796cc056ab05f44f", size = 3207303 }, + { url = "https://files.pythonhosted.org/packages/15/06/507bfb5c7e048114a0185dd65f7814677a2ba285d15705c3d69e660c21d7/cryptography-44.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:1f9a92144fa0c877117e9748c74501bea842f93d21ee00b0cf922846d9d0b183", size = 3380782 }, + { url = "https://files.pythonhosted.org/packages/e0/f1/7fb4982d59aa86e1a116c812b545e7fc045352be07738ae3fb278835a9a4/cryptography-44.0.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:610a83540765a8d8ce0f351ce42e26e53e1f774a6efb71eb1b41eb01d01c3d12", size = 3888155 }, + { url = "https://files.pythonhosted.org/packages/60/7b/cbc203838d3092203493d18b923fbbb1de64e0530b332a713ba376905b0b/cryptography-44.0.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:5fed5cd6102bb4eb843e3315d2bf25fede494509bddadb81e03a859c1bc17b83", size = 4106417 }, + { url = "https://files.pythonhosted.org/packages/12/c7/2fe59fb085ab418acc82e91e040a6acaa7b1696fcc1c1055317537fbf0d3/cryptography-44.0.1-pp310-pypy310_pp73-manylinux_2_34_aarch64.whl", hash = "sha256:f4daefc971c2d1f82f03097dc6f216744a6cd2ac0f04c68fb935ea2ba2a0d420", size = 3887540 }, + { url = "https://files.pythonhosted.org/packages/48/89/09fc7b115f60f5bd970b80e32244f8e9aeeb9244bf870b63420cec3b5cd5/cryptography-44.0.1-pp310-pypy310_pp73-manylinux_2_34_x86_64.whl", hash = "sha256:94f99f2b943b354a5b6307d7e8d19f5c423a794462bde2bf310c770ba052b1c4", size = 4106040 }, + { url = "https://files.pythonhosted.org/packages/2e/38/3fd83c4690dc7d753a442a284b3826ea5e5c380a411443c66421cd823898/cryptography-44.0.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:d9c5b9f698a83c8bd71e0f4d3f9f839ef244798e5ffe96febfa9714717db7af7", size = 3134657 }, +] + +[[package]] +name = "deprecated" +version = "1.2.18" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "wrapt" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/98/97/06afe62762c9a8a86af0cfb7bfdab22a43ad17138b07af5b1a58442690a2/deprecated-1.2.18.tar.gz", hash = "sha256:422b6f6d859da6f2ef57857761bfb392480502a64c3028ca9bbe86085d72115d", size = 2928744 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6e/c6/ac0b6c1e2d138f1002bcf799d330bd6d85084fece321e662a14223794041/Deprecated-1.2.18-py2.py3-none-any.whl", hash = "sha256:bd5011788200372a32418f888e326a09ff80d0214bd961147cfed01b5c018eec", size = 9998 }, +] + [[package]] name = "hatchling" version = "1.27.0" @@ -17,6 +222,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/08/e7/ae38d7a6dfba0533684e0b2136817d667588ae3ec984c1a4e5df5eb88482/hatchling-1.27.0-py3-none-any.whl", hash = "sha256:d3a2f3567c4f926ea39849cdf924c7e99e6686c9c8e288ae1037c8fa2a5d937b", size = 75794 }, ] +[[package]] +name = "idna" +version = "3.10" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442 }, +] + [[package]] name = "packaging" version = "24.2" @@ -44,14 +258,75 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556 }, ] +[[package]] +name = "pycparser" +version = "2.22" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1d/b2/31537cf4b1ca988837256c910a668b553fceb8f069bedc4b1c826024b52c/pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", size = 172736 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", size = 117552 }, +] + +[[package]] +name = "pygithub" +version = "2.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "deprecated" }, + { name = "pyjwt", extra = ["crypto"] }, + { name = "pynacl" }, + { name = "requests" }, + { name = "typing-extensions" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/16/ce/aa91d30040d9552c274e7ea8bd10a977600d508d579a4bb262b95eccf961/pygithub-2.5.0.tar.gz", hash = "sha256:e1613ac508a9be710920d26eb18b1905ebd9926aa49398e88151c1b526aad3cf", size = 3552804 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/05/bfbdbbc5d8aafd8dae9b3b6877edca561fccd8528ef5edc4e7b6d23721b5/PyGithub-2.5.0-py3-none-any.whl", hash = "sha256:b0b635999a658ab8e08720bdd3318893ff20e2275f6446fcf35bf3f44f2c0fd2", size = 375935 }, +] + +[[package]] +name = "pyjwt" +version = "2.10.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/46/bd74733ff231675599650d3e47f361794b22ef3e3770998dda30d3b63726/pyjwt-2.10.1.tar.gz", hash = "sha256:3cc5772eb20009233caf06e9d8a0577824723b44e6648ee0a2aedb6cf9381953", size = 87785 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/61/ad/689f02752eeec26aed679477e80e632ef1b682313be70793d798c1d5fc8f/PyJWT-2.10.1-py3-none-any.whl", hash = "sha256:dcdd193e30abefd5debf142f9adfcdd2b58004e644f25406ffaebd50bd98dacb", size = 22997 }, +] + +[package.optional-dependencies] +crypto = [ + { name = "cryptography" }, +] + +[[package]] +name = "pynacl" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a7/22/27582568be639dfe22ddb3902225f91f2f17ceff88ce80e4db396c8986da/PyNaCl-1.5.0.tar.gz", hash = "sha256:8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba", size = 3392854 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ce/75/0b8ede18506041c0bf23ac4d8e2971b4161cd6ce630b177d0a08eb0d8857/PyNaCl-1.5.0-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:401002a4aaa07c9414132aaed7f6836ff98f59277a234704ff66878c2ee4a0d1", size = 349920 }, + { url = "https://files.pythonhosted.org/packages/59/bb/fddf10acd09637327a97ef89d2a9d621328850a72f1fdc8c08bdf72e385f/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:52cb72a79269189d4e0dc537556f4740f7f0a9ec41c1322598799b0bdad4ef92", size = 601722 }, + { url = "https://files.pythonhosted.org/packages/5d/70/87a065c37cca41a75f2ce113a5a2c2aa7533be648b184ade58971b5f7ccc/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a36d4a9dda1f19ce6e03c9a784a2921a4b726b02e1c736600ca9c22029474394", size = 680087 }, + { url = "https://files.pythonhosted.org/packages/ee/87/f1bb6a595f14a327e8285b9eb54d41fef76c585a0edef0a45f6fc95de125/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:0c84947a22519e013607c9be43706dd42513f9e6ae5d39d3613ca1e142fba44d", size = 856678 }, + { url = "https://files.pythonhosted.org/packages/66/28/ca86676b69bf9f90e710571b67450508484388bfce09acf8a46f0b8c785f/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06b8f6fa7f5de8d5d2f7573fe8c863c051225a27b61e6860fd047b1775807858", size = 1133660 }, + { url = "https://files.pythonhosted.org/packages/3d/85/c262db650e86812585e2bc59e497a8f59948a005325a11bbbc9ecd3fe26b/PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:a422368fc821589c228f4c49438a368831cb5bbc0eab5ebe1d7fac9dded6567b", size = 663824 }, + { url = "https://files.pythonhosted.org/packages/fd/1a/cc308a884bd299b651f1633acb978e8596c71c33ca85e9dc9fa33a5399b9/PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:61f642bf2378713e2c2e1de73444a3778e5f0a38be6fee0fe532fe30060282ff", size = 1117912 }, + { url = "https://files.pythonhosted.org/packages/25/2d/b7df6ddb0c2a33afdb358f8af6ea3b8c4d1196ca45497dd37a56f0c122be/PyNaCl-1.5.0-cp36-abi3-win32.whl", hash = "sha256:e46dae94e34b085175f8abb3b0aaa7da40767865ac82c928eeb9e57e1ea8a543", size = 204624 }, + { url = "https://files.pythonhosted.org/packages/5e/22/d3db169895faaf3e2eda892f005f433a62db2decbcfbc2f61e6517adfa87/PyNaCl-1.5.0-cp36-abi3-win_amd64.whl", hash = "sha256:20f42270d27e1b6a29f54032090b972d97f0a1b0948cc52392041ef7831fee93", size = 212141 }, +] + [[package]] name = "python-mscl" -version = "67.0.0" +version = "67.0.1.0" source = { editable = "." } [package.dev-dependencies] dev = [ { name = "hatchling" }, + { name = "pygithub" }, { name = "ruff" }, ] @@ -60,9 +335,25 @@ dev = [ [package.metadata.requires-dev] dev = [ { name = "hatchling" }, + { name = "pygithub", specifier = ">=2.5.0" }, { name = "ruff" }, ] +[[package]] +name = "requests" +version = "2.32.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "charset-normalizer" }, + { name = "idna" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", size = 131218 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928 }, +] + [[package]] name = "ruff" version = "0.8.5" @@ -135,3 +426,96 @@ sdist = { url = "https://files.pythonhosted.org/packages/99/85/92c2667cf221b3764 wheels = [ { url = "https://files.pythonhosted.org/packages/35/35/5055ab8d215af853d07bbff1a74edf48f91ed308f037380a5ca52dd73348/trove_classifiers-2024.10.21.16-py3-none-any.whl", hash = "sha256:0fb11f1e995a757807a8ef1c03829fbd4998d817319abcef1f33165750f103be", size = 13546 }, ] + +[[package]] +name = "typing-extensions" +version = "4.12.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/df/db/f35a00659bc03fec321ba8bce9420de607a1d37f8342eee1863174c69557/typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8", size = 85321 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", size = 37438 }, +] + +[[package]] +name = "urllib3" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/aa/63/e53da845320b757bf29ef6a9062f5c669fe997973f966045cb019c3f4b66/urllib3-2.3.0.tar.gz", hash = "sha256:f8c5449b3cf0861679ce7e0503c7b44b5ec981bec0d1d3795a07f1ba96f0204d", size = 307268 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c8/19/4ec628951a74043532ca2cf5d97b7b14863931476d117c471e8e2b1eb39f/urllib3-2.3.0-py3-none-any.whl", hash = "sha256:1cee9ad369867bfdbbb48b7dd50374c0967a0bb7710050facf0dd6911440e3df", size = 128369 }, +] + +[[package]] +name = "wrapt" +version = "1.17.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c3/fc/e91cc220803d7bc4db93fb02facd8461c37364151b8494762cc88b0fbcef/wrapt-1.17.2.tar.gz", hash = "sha256:41388e9d4d1522446fe79d3213196bd9e3b301a336965b9e27ca2788ebd122f3", size = 55531 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/d1/1daec934997e8b160040c78d7b31789f19b122110a75eca3d4e8da0049e1/wrapt-1.17.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3d57c572081fed831ad2d26fd430d565b76aa277ed1d30ff4d40670b1c0dd984", size = 53307 }, + { url = "https://files.pythonhosted.org/packages/1b/7b/13369d42651b809389c1a7153baa01d9700430576c81a2f5c5e460df0ed9/wrapt-1.17.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b5e251054542ae57ac7f3fba5d10bfff615b6c2fb09abeb37d2f1463f841ae22", size = 38486 }, + { url = "https://files.pythonhosted.org/packages/62/bf/e0105016f907c30b4bd9e377867c48c34dc9c6c0c104556c9c9126bd89ed/wrapt-1.17.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:80dd7db6a7cb57ffbc279c4394246414ec99537ae81ffd702443335a61dbf3a7", size = 38777 }, + { url = "https://files.pythonhosted.org/packages/27/70/0f6e0679845cbf8b165e027d43402a55494779295c4b08414097b258ac87/wrapt-1.17.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a6e821770cf99cc586d33833b2ff32faebdbe886bd6322395606cf55153246c", size = 83314 }, + { url = "https://files.pythonhosted.org/packages/0f/77/0576d841bf84af8579124a93d216f55d6f74374e4445264cb378a6ed33eb/wrapt-1.17.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b60fb58b90c6d63779cb0c0c54eeb38941bae3ecf7a73c764c52c88c2dcb9d72", size = 74947 }, + { url = "https://files.pythonhosted.org/packages/90/ec/00759565518f268ed707dcc40f7eeec38637d46b098a1f5143bff488fe97/wrapt-1.17.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b870b5df5b71d8c3359d21be8f0d6c485fa0ebdb6477dda51a1ea54a9b558061", size = 82778 }, + { url = "https://files.pythonhosted.org/packages/f8/5a/7cffd26b1c607b0b0c8a9ca9d75757ad7620c9c0a9b4a25d3f8a1480fafc/wrapt-1.17.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4011d137b9955791f9084749cba9a367c68d50ab8d11d64c50ba1688c9b457f2", size = 81716 }, + { url = "https://files.pythonhosted.org/packages/7e/09/dccf68fa98e862df7e6a60a61d43d644b7d095a5fc36dbb591bbd4a1c7b2/wrapt-1.17.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:1473400e5b2733e58b396a04eb7f35f541e1fb976d0c0724d0223dd607e0f74c", size = 74548 }, + { url = "https://files.pythonhosted.org/packages/b7/8e/067021fa3c8814952c5e228d916963c1115b983e21393289de15128e867e/wrapt-1.17.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3cedbfa9c940fdad3e6e941db7138e26ce8aad38ab5fe9dcfadfed9db7a54e62", size = 81334 }, + { url = "https://files.pythonhosted.org/packages/4b/0d/9d4b5219ae4393f718699ca1c05f5ebc0c40d076f7e65fd48f5f693294fb/wrapt-1.17.2-cp310-cp310-win32.whl", hash = "sha256:582530701bff1dec6779efa00c516496968edd851fba224fbd86e46cc6b73563", size = 36427 }, + { url = "https://files.pythonhosted.org/packages/72/6a/c5a83e8f61aec1e1aeef939807602fb880e5872371e95df2137142f5c58e/wrapt-1.17.2-cp310-cp310-win_amd64.whl", hash = "sha256:58705da316756681ad3c9c73fd15499aa4d8c69f9fd38dc8a35e06c12468582f", size = 38774 }, + { url = "https://files.pythonhosted.org/packages/cd/f7/a2aab2cbc7a665efab072344a8949a71081eed1d2f451f7f7d2b966594a2/wrapt-1.17.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ff04ef6eec3eee8a5efef2401495967a916feaa353643defcc03fc74fe213b58", size = 53308 }, + { url = "https://files.pythonhosted.org/packages/50/ff/149aba8365fdacef52b31a258c4dc1c57c79759c335eff0b3316a2664a64/wrapt-1.17.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4db983e7bca53819efdbd64590ee96c9213894272c776966ca6306b73e4affda", size = 38488 }, + { url = "https://files.pythonhosted.org/packages/65/46/5a917ce85b5c3b490d35c02bf71aedaa9f2f63f2d15d9949cc4ba56e8ba9/wrapt-1.17.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9abc77a4ce4c6f2a3168ff34b1da9b0f311a8f1cfd694ec96b0603dff1c79438", size = 38776 }, + { url = "https://files.pythonhosted.org/packages/ca/74/336c918d2915a4943501c77566db41d1bd6e9f4dbc317f356b9a244dfe83/wrapt-1.17.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0b929ac182f5ace000d459c59c2c9c33047e20e935f8e39371fa6e3b85d56f4a", size = 83776 }, + { url = "https://files.pythonhosted.org/packages/09/99/c0c844a5ccde0fe5761d4305485297f91d67cf2a1a824c5f282e661ec7ff/wrapt-1.17.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f09b286faeff3c750a879d336fb6d8713206fc97af3adc14def0cdd349df6000", size = 75420 }, + { url = "https://files.pythonhosted.org/packages/b4/b0/9fc566b0fe08b282c850063591a756057c3247b2362b9286429ec5bf1721/wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a7ed2d9d039bd41e889f6fb9364554052ca21ce823580f6a07c4ec245c1f5d6", size = 83199 }, + { url = "https://files.pythonhosted.org/packages/9d/4b/71996e62d543b0a0bd95dda485219856def3347e3e9380cc0d6cf10cfb2f/wrapt-1.17.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:129a150f5c445165ff941fc02ee27df65940fcb8a22a61828b1853c98763a64b", size = 82307 }, + { url = "https://files.pythonhosted.org/packages/39/35/0282c0d8789c0dc9bcc738911776c762a701f95cfe113fb8f0b40e45c2b9/wrapt-1.17.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:1fb5699e4464afe5c7e65fa51d4f99e0b2eadcc176e4aa33600a3df7801d6662", size = 75025 }, + { url = "https://files.pythonhosted.org/packages/4f/6d/90c9fd2c3c6fee181feecb620d95105370198b6b98a0770cba090441a828/wrapt-1.17.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9a2bce789a5ea90e51a02dfcc39e31b7f1e662bc3317979aa7e5538e3a034f72", size = 81879 }, + { url = "https://files.pythonhosted.org/packages/8f/fa/9fb6e594f2ce03ef03eddbdb5f4f90acb1452221a5351116c7c4708ac865/wrapt-1.17.2-cp311-cp311-win32.whl", hash = "sha256:4afd5814270fdf6380616b321fd31435a462019d834f83c8611a0ce7484c7317", size = 36419 }, + { url = "https://files.pythonhosted.org/packages/47/f8/fb1773491a253cbc123c5d5dc15c86041f746ed30416535f2a8df1f4a392/wrapt-1.17.2-cp311-cp311-win_amd64.whl", hash = "sha256:acc130bc0375999da18e3d19e5a86403667ac0c4042a094fefb7eec8ebac7cf3", size = 38773 }, + { url = "https://files.pythonhosted.org/packages/a1/bd/ab55f849fd1f9a58ed7ea47f5559ff09741b25f00c191231f9f059c83949/wrapt-1.17.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d5e2439eecc762cd85e7bd37161d4714aa03a33c5ba884e26c81559817ca0925", size = 53799 }, + { url = "https://files.pythonhosted.org/packages/53/18/75ddc64c3f63988f5a1d7e10fb204ffe5762bc663f8023f18ecaf31a332e/wrapt-1.17.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3fc7cb4c1c744f8c05cd5f9438a3caa6ab94ce8344e952d7c45a8ed59dd88392", size = 38821 }, + { url = "https://files.pythonhosted.org/packages/48/2a/97928387d6ed1c1ebbfd4efc4133a0633546bec8481a2dd5ec961313a1c7/wrapt-1.17.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8fdbdb757d5390f7c675e558fd3186d590973244fab0c5fe63d373ade3e99d40", size = 38919 }, + { url = "https://files.pythonhosted.org/packages/73/54/3bfe5a1febbbccb7a2f77de47b989c0b85ed3a6a41614b104204a788c20e/wrapt-1.17.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb1d0dbf99411f3d871deb6faa9aabb9d4e744d67dcaaa05399af89d847a91d", size = 88721 }, + { url = "https://files.pythonhosted.org/packages/25/cb/7262bc1b0300b4b64af50c2720ef958c2c1917525238d661c3e9a2b71b7b/wrapt-1.17.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d18a4865f46b8579d44e4fe1e2bcbc6472ad83d98e22a26c963d46e4c125ef0b", size = 80899 }, + { url = "https://files.pythonhosted.org/packages/2a/5a/04cde32b07a7431d4ed0553a76fdb7a61270e78c5fd5a603e190ac389f14/wrapt-1.17.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc570b5f14a79734437cb7b0500376b6b791153314986074486e0b0fa8d71d98", size = 89222 }, + { url = "https://files.pythonhosted.org/packages/09/28/2e45a4f4771fcfb109e244d5dbe54259e970362a311b67a965555ba65026/wrapt-1.17.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6d9187b01bebc3875bac9b087948a2bccefe464a7d8f627cf6e48b1bbae30f82", size = 86707 }, + { url = "https://files.pythonhosted.org/packages/c6/d2/dcb56bf5f32fcd4bd9aacc77b50a539abdd5b6536872413fd3f428b21bed/wrapt-1.17.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:9e8659775f1adf02eb1e6f109751268e493c73716ca5761f8acb695e52a756ae", size = 79685 }, + { url = "https://files.pythonhosted.org/packages/80/4e/eb8b353e36711347893f502ce91c770b0b0929f8f0bed2670a6856e667a9/wrapt-1.17.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e8b2816ebef96d83657b56306152a93909a83f23994f4b30ad4573b00bd11bb9", size = 87567 }, + { url = "https://files.pythonhosted.org/packages/17/27/4fe749a54e7fae6e7146f1c7d914d28ef599dacd4416566c055564080fe2/wrapt-1.17.2-cp312-cp312-win32.whl", hash = "sha256:468090021f391fe0056ad3e807e3d9034e0fd01adcd3bdfba977b6fdf4213ea9", size = 36672 }, + { url = "https://files.pythonhosted.org/packages/15/06/1dbf478ea45c03e78a6a8c4be4fdc3c3bddea5c8de8a93bc971415e47f0f/wrapt-1.17.2-cp312-cp312-win_amd64.whl", hash = "sha256:ec89ed91f2fa8e3f52ae53cd3cf640d6feff92ba90d62236a81e4e563ac0e991", size = 38865 }, + { url = "https://files.pythonhosted.org/packages/ce/b9/0ffd557a92f3b11d4c5d5e0c5e4ad057bd9eb8586615cdaf901409920b14/wrapt-1.17.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:6ed6ffac43aecfe6d86ec5b74b06a5be33d5bb9243d055141e8cabb12aa08125", size = 53800 }, + { url = "https://files.pythonhosted.org/packages/c0/ef/8be90a0b7e73c32e550c73cfb2fa09db62234227ece47b0e80a05073b375/wrapt-1.17.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:35621ae4c00e056adb0009f8e86e28eb4a41a4bfa8f9bfa9fca7d343fe94f998", size = 38824 }, + { url = "https://files.pythonhosted.org/packages/36/89/0aae34c10fe524cce30fe5fc433210376bce94cf74d05b0d68344c8ba46e/wrapt-1.17.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a604bf7a053f8362d27eb9fefd2097f82600b856d5abe996d623babd067b1ab5", size = 38920 }, + { url = "https://files.pythonhosted.org/packages/3b/24/11c4510de906d77e0cfb5197f1b1445d4fec42c9a39ea853d482698ac681/wrapt-1.17.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cbabee4f083b6b4cd282f5b817a867cf0b1028c54d445b7ec7cfe6505057cf8", size = 88690 }, + { url = "https://files.pythonhosted.org/packages/71/d7/cfcf842291267bf455b3e266c0c29dcb675b5540ee8b50ba1699abf3af45/wrapt-1.17.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49703ce2ddc220df165bd2962f8e03b84c89fee2d65e1c24a7defff6f988f4d6", size = 80861 }, + { url = "https://files.pythonhosted.org/packages/d5/66/5d973e9f3e7370fd686fb47a9af3319418ed925c27d72ce16b791231576d/wrapt-1.17.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8112e52c5822fc4253f3901b676c55ddf288614dc7011634e2719718eaa187dc", size = 89174 }, + { url = "https://files.pythonhosted.org/packages/a7/d3/8e17bb70f6ae25dabc1aaf990f86824e4fd98ee9cadf197054e068500d27/wrapt-1.17.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9fee687dce376205d9a494e9c121e27183b2a3df18037f89d69bd7b35bcf59e2", size = 86721 }, + { url = "https://files.pythonhosted.org/packages/6f/54/f170dfb278fe1c30d0ff864513cff526d624ab8de3254b20abb9cffedc24/wrapt-1.17.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:18983c537e04d11cf027fbb60a1e8dfd5190e2b60cc27bc0808e653e7b218d1b", size = 79763 }, + { url = "https://files.pythonhosted.org/packages/4a/98/de07243751f1c4a9b15c76019250210dd3486ce098c3d80d5f729cba029c/wrapt-1.17.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:703919b1633412ab54bcf920ab388735832fdcb9f9a00ae49387f0fe67dad504", size = 87585 }, + { url = "https://files.pythonhosted.org/packages/f9/f0/13925f4bd6548013038cdeb11ee2cbd4e37c30f8bfd5db9e5a2a370d6e20/wrapt-1.17.2-cp313-cp313-win32.whl", hash = "sha256:abbb9e76177c35d4e8568e58650aa6926040d6a9f6f03435b7a522bf1c487f9a", size = 36676 }, + { url = "https://files.pythonhosted.org/packages/bf/ae/743f16ef8c2e3628df3ddfd652b7d4c555d12c84b53f3d8218498f4ade9b/wrapt-1.17.2-cp313-cp313-win_amd64.whl", hash = "sha256:69606d7bb691b50a4240ce6b22ebb319c1cfb164e5f6569835058196e0f3a845", size = 38871 }, + { url = "https://files.pythonhosted.org/packages/3d/bc/30f903f891a82d402ffb5fda27ec1d621cc97cb74c16fea0b6141f1d4e87/wrapt-1.17.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:4a721d3c943dae44f8e243b380cb645a709ba5bd35d3ad27bc2ed947e9c68192", size = 56312 }, + { url = "https://files.pythonhosted.org/packages/8a/04/c97273eb491b5f1c918857cd26f314b74fc9b29224521f5b83f872253725/wrapt-1.17.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:766d8bbefcb9e00c3ac3b000d9acc51f1b399513f44d77dfe0eb026ad7c9a19b", size = 40062 }, + { url = "https://files.pythonhosted.org/packages/4e/ca/3b7afa1eae3a9e7fefe499db9b96813f41828b9fdb016ee836c4c379dadb/wrapt-1.17.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e496a8ce2c256da1eb98bd15803a79bee00fc351f5dfb9ea82594a3f058309e0", size = 40155 }, + { url = "https://files.pythonhosted.org/packages/89/be/7c1baed43290775cb9030c774bc53c860db140397047cc49aedaf0a15477/wrapt-1.17.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d615e4fe22f4ad3528448c193b218e077656ca9ccb22ce2cb20db730f8d306", size = 113471 }, + { url = "https://files.pythonhosted.org/packages/32/98/4ed894cf012b6d6aae5f5cc974006bdeb92f0241775addad3f8cd6ab71c8/wrapt-1.17.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a5aaeff38654462bc4b09023918b7f21790efb807f54c000a39d41d69cf552cb", size = 101208 }, + { url = "https://files.pythonhosted.org/packages/ea/fd/0c30f2301ca94e655e5e057012e83284ce8c545df7661a78d8bfca2fac7a/wrapt-1.17.2-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a7d15bbd2bc99e92e39f49a04653062ee6085c0e18b3b7512a4f2fe91f2d681", size = 109339 }, + { url = "https://files.pythonhosted.org/packages/75/56/05d000de894c4cfcb84bcd6b1df6214297b8089a7bd324c21a4765e49b14/wrapt-1.17.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:e3890b508a23299083e065f435a492b5435eba6e304a7114d2f919d400888cc6", size = 110232 }, + { url = "https://files.pythonhosted.org/packages/53/f8/c3f6b2cf9b9277fb0813418e1503e68414cd036b3b099c823379c9575e6d/wrapt-1.17.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:8c8b293cd65ad716d13d8dd3624e42e5a19cc2a2f1acc74b30c2c13f15cb61a6", size = 100476 }, + { url = "https://files.pythonhosted.org/packages/a7/b1/0bb11e29aa5139d90b770ebbfa167267b1fc548d2302c30c8f7572851738/wrapt-1.17.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:4c82b8785d98cdd9fed4cac84d765d234ed3251bd6afe34cb7ac523cb93e8b4f", size = 106377 }, + { url = "https://files.pythonhosted.org/packages/6a/e1/0122853035b40b3f333bbb25f1939fc1045e21dd518f7f0922b60c156f7c/wrapt-1.17.2-cp313-cp313t-win32.whl", hash = "sha256:13e6afb7fe71fe7485a4550a8844cc9ffbe263c0f1a1eea569bc7091d4898555", size = 37986 }, + { url = "https://files.pythonhosted.org/packages/09/5e/1655cf481e079c1f22d0cabdd4e51733679932718dc23bf2db175f329b76/wrapt-1.17.2-cp313-cp313t-win_amd64.whl", hash = "sha256:eaf675418ed6b3b31c7a989fd007fa7c3be66ce14e5c3b27336383604c9da85c", size = 40750 }, + { url = "https://files.pythonhosted.org/packages/8a/f4/6ed2b8f6f1c832933283974839b88ec7c983fd12905e01e97889dadf7559/wrapt-1.17.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:99039fa9e6306880572915728d7f6c24a86ec57b0a83f6b2491e1d8ab0235b9a", size = 53308 }, + { url = "https://files.pythonhosted.org/packages/a2/a9/712a53f8f4f4545768ac532619f6e56d5d0364a87b2212531685e89aeef8/wrapt-1.17.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2696993ee1eebd20b8e4ee4356483c4cb696066ddc24bd70bcbb80fa56ff9061", size = 38489 }, + { url = "https://files.pythonhosted.org/packages/fa/9b/e172c8f28a489a2888df18f953e2f6cb8d33b1a2e78c9dfc52d8bf6a5ead/wrapt-1.17.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:612dff5db80beef9e649c6d803a8d50c409082f1fedc9dbcdfde2983b2025b82", size = 38776 }, + { url = "https://files.pythonhosted.org/packages/cf/cb/7a07b51762dcd59bdbe07aa97f87b3169766cadf240f48d1cbe70a1be9db/wrapt-1.17.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:62c2caa1585c82b3f7a7ab56afef7b3602021d6da34fbc1cf234ff139fed3cd9", size = 83050 }, + { url = "https://files.pythonhosted.org/packages/a5/51/a42757dd41032afd6d8037617aa3bc6803ba971850733b24dfb7d5c627c4/wrapt-1.17.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c958bcfd59bacc2d0249dcfe575e71da54f9dcf4a8bdf89c4cb9a68a1170d73f", size = 74718 }, + { url = "https://files.pythonhosted.org/packages/bf/bb/d552bfe47db02fcfc950fc563073a33500f8108efa5f7b41db2f83a59028/wrapt-1.17.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc78a84e2dfbc27afe4b2bd7c80c8db9bca75cc5b85df52bfe634596a1da846b", size = 82590 }, + { url = "https://files.pythonhosted.org/packages/77/99/77b06b3c3c410dbae411105bf22496facf03a5496bfaca8fbcf9da381889/wrapt-1.17.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:ba0f0eb61ef00ea10e00eb53a9129501f52385c44853dbd6c4ad3f403603083f", size = 81462 }, + { url = "https://files.pythonhosted.org/packages/2d/21/cf0bd85ae66f92600829ea1de8e1da778e5e9f6e574ccbe74b66db0d95db/wrapt-1.17.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1e1fe0e6ab7775fd842bc39e86f6dcfc4507ab0ffe206093e76d61cde37225c8", size = 74309 }, + { url = "https://files.pythonhosted.org/packages/6d/16/112d25e9092398a0dd6fec50ab7ac1b775a0c19b428f049785096067ada9/wrapt-1.17.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:c86563182421896d73858e08e1db93afdd2b947a70064b813d515d66549e15f9", size = 81081 }, + { url = "https://files.pythonhosted.org/packages/2b/49/364a615a0cc0872685646c495c7172e4fc7bf1959e3b12a1807a03014e05/wrapt-1.17.2-cp39-cp39-win32.whl", hash = "sha256:f393cda562f79828f38a819f4788641ac7c4085f30f1ce1a68672baa686482bb", size = 36423 }, + { url = "https://files.pythonhosted.org/packages/00/ad/5d2c1b34ba3202cd833d9221833e74d6500ce66730974993a8dc9a94fb8c/wrapt-1.17.2-cp39-cp39-win_amd64.whl", hash = "sha256:36ccae62f64235cf8ddb682073a60519426fdd4725524ae38874adf72b5f2aeb", size = 38772 }, + { url = "https://files.pythonhosted.org/packages/2d/82/f56956041adef78f849db6b289b282e72b55ab8045a75abad81898c28d19/wrapt-1.17.2-py3-none-any.whl", hash = "sha256:b18f2d1533a71f069c7f82d524a52599053d4c7166e9dd374ae2136b7f40f7c8", size = 23594 }, +]